diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..8a923ae --- /dev/null +++ b/.env.example @@ -0,0 +1,47 @@ +# 🌐 Frontend +PUBLIC_SERVER_URL=http://server:8000 # PLEASE DON'T CHANGE :) - Should be the service name of the backend with port 8000, even if you change the port in the backend service. Only change if you are using a custom more complex setup. +ORIGIN=http://localhost:8015 +BODY_SIZE_LIMIT=Infinity +FRONTEND_PORT=8015 + +# 🐘 PostgreSQL Database +PGHOST=db +POSTGRES_DB=database +POSTGRES_USER=adventure +POSTGRES_PASSWORD=changeme123 + +# 🔒 Django Backend +SECRET_KEY=changeme123 +DJANGO_ADMIN_USERNAME=admin +DJANGO_ADMIN_PASSWORD=admin +DJANGO_ADMIN_EMAIL=admin@example.com +PUBLIC_URL=http://localhost:8016 # Match the outward port, used for the creation of image urls +CSRF_TRUSTED_ORIGINS=http://localhost:8016,http://localhost:8015 +DEBUG=False +FRONTEND_URL=http://localhost:8015 # Used for email generation. This should be the url of the frontend +BACKEND_PORT=8016 + +# Optional: use Google Maps integration +# https://adventurelog.app/docs/configuration/google_maps_integration.html +# GOOGLE_MAPS_API_KEY=your_google_maps_api_key + +# Optional: disable registration +# https://adventurelog.app/docs/configuration/disable_registration.html +DISABLE_REGISTRATION=False +# DISABLE_REGISTRATION_MESSAGE=Registration is disabled for this instance of AdventureLog. + +# Optional: Use email +# https://adventurelog.app/docs/configuration/email.html +# EMAIL_BACKEND=email +# EMAIL_HOST=smtp.gmail.com +# EMAIL_USE_TLS=True +# EMAIL_PORT=587 +# EMAIL_USE_SSL=False +# EMAIL_HOST_USER=user +# EMAIL_HOST_PASSWORD=password +# DEFAULT_FROM_EMAIL=user@example.com + +# Optional: Use Umami for analytics +# https://adventurelog.app/docs/configuration/analytics.html +# PUBLIC_UMAMI_SRC=https://cloud.umami.is/script.js # If you are using the hosted version of Umami +# PUBLIC_UMAMI_WEBSITE_ID= \ No newline at end of file diff --git a/.github/.docker-compose-database.yml b/.github/.docker-compose-database.yml new file mode 100644 index 0000000..aa187bd --- /dev/null +++ b/.github/.docker-compose-database.yml @@ -0,0 +1,16 @@ +services: + db: + image: postgis/postgis:15-3.3 + container_name: adventurelog-db + restart: unless-stopped + ports: + - "127.0.0.1:5432:5432" + environment: + POSTGRES_DB: database + POSTGRES_USER: adventure + POSTGRES_PASSWORD: changeme123 + volumes: + - postgres_data:/var/lib/postgresql/data/ + +volumes: + postgres_data: diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..ca0f2f6 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @seanmorley15 \ No newline at end of file diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..80c427d --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +github: seanmorley15 +buy_me_a_coffee: seanmorley15 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..dac7165 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,27 @@ +--- +name: Bug report +about: Detailed bug reports help me diagnose and fix bugs quicker! Thanks! +title: "[BUG]" +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Docker Compose** +If the issue is related to deployment and docker, please post an **obfuscated** (remove secrets and confidential information) version of your compose file. + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/deployment-issue.md b/.github/ISSUE_TEMPLATE/deployment-issue.md new file mode 100644 index 0000000..fcc8228 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/deployment-issue.md @@ -0,0 +1,15 @@ +--- +name: Deployment Issue +about: Request help deploying AdventureLog on your machine. The more details, the + better I can help! +title: "[DEPLOYMENT]" +labels: deployment +assignees: '' + +--- + +## Explain your issue + +## Provide an **obfuscated** `docker-compose.yml` + +## Provide any necessary logs from the containers and browser diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..696e895 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for AdventureLog +title: "[REQUEST]" +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/backend-beta.yml b/.github/workflows/backend-beta.yml new file mode 100644 index 0000000..a02bbaf --- /dev/null +++ b/.github/workflows/backend-beta.yml @@ -0,0 +1,46 @@ +name: Upload beta backend image to GHCR and Docker Hub + +on: + push: + branches: + - development + paths: + - "backend/**" + +env: + IMAGE_NAME: "adventurelog-backend" + +jobs: + upload: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.ACCESS_TOKEN }} + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: "${{ github.repository_owner }}" + + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:beta -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:beta ./backend diff --git a/.github/workflows/backend-latest.yml b/.github/workflows/backend-latest.yml index 7a8d427..5351d9d 100644 --- a/.github/workflows/backend-latest.yml +++ b/.github/workflows/backend-latest.yml @@ -1,4 +1,4 @@ -name: Upload latest backend image to GHCR +name: Upload latest backend image to GHCR and Docker Hub on: push: @@ -24,11 +24,23 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.ACCESS_TOKEN }} - - name: Build Docker image - run: docker build -t $IMAGE_NAME:latest ./backend + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Tag Docker image - run: docker tag $IMAGE_NAME:latest ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: '${{ github.repository_owner }}' - - name: Push Docker image to GHCR - run: docker push ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:latest -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:latest ./backend diff --git a/.github/workflows/backend-release.yml b/.github/workflows/backend-release.yml index cfe6012..696f8b5 100644 --- a/.github/workflows/backend-release.yml +++ b/.github/workflows/backend-release.yml @@ -1,8 +1,8 @@ -name: Publish backend release +name: Upload the tagged release backend image to GHCR and Docker Hub on: release: - types: [published] + types: [released] env: IMAGE_NAME: "adventurelog-backend" @@ -21,11 +21,23 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.ACCESS_TOKEN }} - - name: Build Docker image - run: docker build -t $IMAGE_NAME:${{ github.event.release.tag_name }} ./backend + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Tag Docker image - run: docker tag $IMAGE_NAME:${{ github.event.release.tag_name }} ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:${{ github.event.release.tag_name }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 - - name: Push Docker image to GHCR - run: docker push ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:${{ github.event.release.tag_name }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: "${{ github.repository_owner }}" + + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:${{ github.event.release.tag_name }} -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:${{ github.event.release.tag_name }} ./backend diff --git a/.github/workflows/backend-test.yml b/.github/workflows/backend-test.yml new file mode 100644 index 0000000..0ce9d7c --- /dev/null +++ b/.github/workflows/backend-test.yml @@ -0,0 +1,64 @@ +name: Test Backend + +permissions: + contents: read + +on: + pull_request: + paths: + - 'backend/server/**' + - '.github/workflows/backend-test.yml' + push: + paths: + - 'backend/server/**' + - '.github/workflows/backend-test.yml' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: set up python 3.12 + uses: actions/setup-python@v5 + with: + python-version: '3.12' + + - name: install dependencies + run: | + sudo apt update -q + sudo apt install -y -q \ + python3-gdal + + - name: start database + run: | + docker compose -f .github/.docker-compose-database.yml up -d + + - name: install python libreries + working-directory: backend/server + run: | + pip install -r requirements.txt + + - name: run server + working-directory: backend/server + env: + PGHOST: "127.0.0.1" + PGDATABASE: "database" + PGUSER: "adventure" + PGPASSWORD: "changeme123" + SECRET_KEY: "changeme123" + DJANGO_ADMIN_USERNAME: "admin" + DJANGO_ADMIN_PASSWORD: "admin" + DJANGO_ADMIN_EMAIL: "admin@example.com" + PUBLIC_URL: "http://localhost:8000" + CSRF_TRUSTED_ORIGINS: "http://localhost:5173,http://localhost:8000" + DEBUG: "True" + FRONTEND_URL: "http://localhost:5173" + run: | + python manage.py migrate + python manage.py runserver & + + - name: wait for backend to boot + run: > + curl -fisS --retry 60 --retry-delay 1 --retry-all-errors + http://localhost:8000/ diff --git a/.github/workflows/cdn-beta.yml b/.github/workflows/cdn-beta.yml new file mode 100644 index 0000000..d5c2c85 --- /dev/null +++ b/.github/workflows/cdn-beta.yml @@ -0,0 +1,46 @@ +name: Upload beta CDN image to GHCR and Docker Hub + +on: + push: + branches: + - development + paths: + - "cdn/**" + +env: + IMAGE_NAME: "adventurelog-cdn" + +jobs: + upload: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.ACCESS_TOKEN }} + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: "${{ github.repository_owner }}" + + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:beta -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:beta ./cdn diff --git a/.github/workflows/cdn-latest.yml b/.github/workflows/cdn-latest.yml new file mode 100644 index 0000000..376ede9 --- /dev/null +++ b/.github/workflows/cdn-latest.yml @@ -0,0 +1,46 @@ +name: Upload latest CDN image to GHCR and Docker Hub + +on: + push: + branches: + - main + paths: + - "cdn/**" + +env: + IMAGE_NAME: "adventurelog-cdn" + +jobs: + upload: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.ACCESS_TOKEN }} + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: "${{ github.repository_owner }}" + + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:latest -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:latest ./cdn diff --git a/.github/workflows/cdn-release.yml b/.github/workflows/cdn-release.yml new file mode 100644 index 0000000..2bba9af --- /dev/null +++ b/.github/workflows/cdn-release.yml @@ -0,0 +1,43 @@ +name: Upload the tagged release CDN image to GHCR and Docker Hub + +on: + release: + types: [released] + +env: + IMAGE_NAME: "adventurelog-cdn" + +jobs: + upload: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.ACCESS_TOKEN }} + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: "${{ github.repository_owner }}" + + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:${{ github.event.release.tag_name }} -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:${{ github.event.release.tag_name }} ./cdn diff --git a/.github/workflows/frontend-beta.yml b/.github/workflows/frontend-beta.yml new file mode 100644 index 0000000..29597ae --- /dev/null +++ b/.github/workflows/frontend-beta.yml @@ -0,0 +1,46 @@ +name: Upload beta frontend image to GHCR and Docker Hub + +on: + push: + branches: + - development + paths: + - "frontend/**" + +env: + IMAGE_NAME: "adventurelog-frontend" + +jobs: + upload: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.ACCESS_TOKEN }} + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: "${{ github.repository_owner }}" + + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:beta -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:beta ./frontend diff --git a/.github/workflows/frontend-latest.yml b/.github/workflows/frontend-latest.yml index ef61048..a74ae2f 100644 --- a/.github/workflows/frontend-latest.yml +++ b/.github/workflows/frontend-latest.yml @@ -1,4 +1,4 @@ -name: Upload latest frontend image to GHCR +name: Upload latest frontend image to GHCR and Docker Hub on: push: @@ -24,11 +24,23 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.ACCESS_TOKEN }} - - name: Build Docker image - run: docker build -t $IMAGE_NAME:latest ./frontend + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: '${{ github.repository_owner }}' - - name: Tag Docker image - run: docker tag $IMAGE_NAME:latest ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest - - - name: Push Docker image to GHCR - run: docker push ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:latest -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:latest ./frontend diff --git a/.github/workflows/frontend-release.yml b/.github/workflows/frontend-release.yml index 7962e25..bb7fc6b 100644 --- a/.github/workflows/frontend-release.yml +++ b/.github/workflows/frontend-release.yml @@ -1,8 +1,8 @@ -name: Publish frontend release +name: Upload tagged release frontend image to GHCR and Docker Hub on: release: - types: [published] + types: [released] env: IMAGE_NAME: "adventurelog-frontend" @@ -21,11 +21,23 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.ACCESS_TOKEN }} - - name: Build Docker image - run: docker build -t $IMAGE_NAME:${{ github.event.release.tag_name }} ./frontend + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Tag Docker image - run: docker tag $IMAGE_NAME:${{ github.event.release.tag_name }} ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:${{ github.event.release.tag_name }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 - - name: Push Docker image to GHCR - run: docker push ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:${{ github.event.release.tag_name }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: set lower case owner name + run: | + echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV} + env: + OWNER: "${{ github.repository_owner }}" + + - name: Build Docker images + run: docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/$REPO_OWNER/$IMAGE_NAME:${{ github.event.release.tag_name }} -t ${{ secrets.DOCKERHUB_USERNAME }}/$IMAGE_NAME:${{ github.event.release.tag_name }} ./frontend diff --git a/.github/workflows/frontend-test.yml b/.github/workflows/frontend-test.yml new file mode 100644 index 0000000..73d9b24 --- /dev/null +++ b/.github/workflows/frontend-test.yml @@ -0,0 +1,32 @@ +name: Test Frontend + +permissions: + contents: read + +on: + pull_request: + paths: + - "frontend/**" + - ".github/workflows/frontend-test.yml" + push: + paths: + - "frontend/**" + - ".github/workflows/frontend-test.yml" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: install dependencies + working-directory: frontend + run: npm i + + - name: build frontend + working-directory: frontend + run: npm run build diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..090b681 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Ignore everything in the .venv folder +.venv/ +.vscode/settings.json +.pnpm-store/ +.env diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..8777355 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "lokalise.i18n-ally", + "svelte.svelte-vscode" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..80fe952 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,40 @@ +{ + "git.ignoreLimitWarning": true, + "i18n-ally.localesPaths": [ + "frontend/src/locales", + "backend/server/backend/lib/python3.12/site-packages/allauth/locale", + "backend/server/backend/lib/python3.12/site-packages/dj_rest_auth/locale", + "backend/server/backend/lib/python3.12/site-packages/rest_framework/locale", + "backend/server/backend/lib/python3.12/site-packages/rest_framework_simplejwt/locale", + "backend/server/backend/lib/python3.12/site-packages/django/conf/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/messages", + "backend/server/backend/lib/python3.12/site-packages/allauth/templates/account/messages", + "backend/server/backend/lib/python3.12/site-packages/allauth/templates/mfa/messages", + "backend/server/backend/lib/python3.12/site-packages/allauth/templates/socialaccount/messages", + "backend/server/backend/lib/python3.12/site-packages/allauth/templates/usersessions/messages", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/admindocs/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/auth/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/admin/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/contenttypes/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/flatpages/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/humanize/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/gis/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/redirects/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/postgres/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/sessions/locale", + "backend/server/backend/lib/python3.12/site-packages/django/contrib/sites/locale", + "backend/server/backend/lib/python3.12/site-packages/rest_framework/templates/rest_framework/docs/langs" + ], + "i18n-ally.keystyle": "nested", + "i18n-ally.keysInUse": [ + "navbar.themes.dim", + "navbar.themes.northernLights", + "navbar.themes.aqua", + "navbar.themes.aestheticDark", + "navbar.themes.aestheticLight", + "navbar.themes.forest", + "navbar.themes.night", + "navbar.themes.dark", + "navbar.themes.light" + ] +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c980b88..7b49b3d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,91 +1,50 @@ # Contributing to AdventureLog -When contributing to this repository, please first discuss the change you wish to make via issue, -email, or any other method with the owners of this repository before making a change. - -Please note we have a code of conduct, please follow it in all your interactions with the project. +We’re excited to have you contribute to AdventureLog! To ensure that this community remains welcoming and productive for all users and developers, please follow this simple Code of Conduct. ## Pull Request Process -1. Please make sure you create an issue first for your change so you can link any pull requests to this issue. There should be a clear relationship between pull requests and issues. -2. Update the README.md with details of changes to the interface, this includes new environment - variables, exposed ports, useful file locations and container parameters. -3. Increase the version numbers in any examples files and the README.md to the new version that this - Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). -4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you - do not have permission to do that, you may request the second reviewer to merge it for you. +1. **Open an Issue First**: Discuss any changes or features you plan to implement by opening an issue. This helps to clarify your idea and ensures there’s a shared understanding. +2. **Document Changes**: If your changes impact the user interface, add new environment variables, or introduce new container configurations, make sure to update the documentation accordingly. The documentation is located in the `documentation` folder. +3. **Pull Request**: Submit a pull request with your changes. Make sure to reference the issue you opened in the description. ## Code of Conduct ### Our Pledge -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, gender identity and expression, level of experience, -nationality, personal appearance, race, religion, or sexual identity and -orientation. +At AdventureLog, we are committed to creating a community that fosters adventure, exploration, and innovation. We encourage diverse participation and strive to maintain a space where everyone feels welcome to contribute, regardless of their background or experience level. We ask that you contribute with respect and kindness, making sure to prioritize collaboration and mutual growth. ### Our Standards -Examples of behavior that contributes to creating a positive environment -include: +In order to maintain a positive environment, we encourage the following behaviors: -- Using welcoming and inclusive language -- Being respectful of differing viewpoints and experiences -- Gracefully accepting constructive criticism -- Focusing on what is best for the community -- Showing empathy towards other community members +- **Inclusivity**: Use welcoming and inclusive language that fosters collaboration across all perspectives and experiences. +- **Respect**: Respect differing opinions and engage with empathy, understanding that each person’s perspective is valuable. +- **Constructive Feedback**: Offer feedback that helps improve the project and allows contributors to grow from it. +- **Adventure Spirit**: Bring the same sense of curiosity, discovery, and positivity that drives AdventureLog into all interactions with the community. -Examples of unacceptable behavior by participants include: +Examples of unacceptable behavior include: -- The use of sexualized language or imagery and unwelcome sexual attention or - advances -- Trolling, insulting/derogatory comments, and personal or political attacks -- Public or private harassment -- Publishing others' private information, such as a physical or electronic - address, without explicit permission -- Other conduct which could reasonably be considered inappropriate in a - professional setting +- Personal attacks, trolling, or any form of harassment. +- Insensitive or discriminatory language, including sexualized comments or imagery. +- Spamming or misusing project spaces for personal gain. +- Publishing or using others’ private information without permission. +- Anything else that could be seen as disrespectful or unprofessional in a collaborative environment. ### Our Responsibilities -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. +As maintainers of AdventureLog, we are committed to enforcing this Code of Conduct and taking corrective action when necessary. This may involve moderating comments, pulling code, or banning users who engage in harmful behaviors. -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. +We strive to foster a community that balances open collaboration with respect for all contributors. ### Scope -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. +This Code of Conduct applies in all spaces related to AdventureLog. This includes our GitHub repository, discussions, documentation, social media accounts, and events—both online and in person. ### Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at [INSERT EMAIL ADDRESS]. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. +If you experience or witness unacceptable behavior, please report it to the project team at `contact@adventurelog.app`. All reports will be confidential and handled swiftly. The maintainers will investigate the issue and take appropriate action as needed. ### Attribution -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at [http://contributor-covenant.org/version/1/4][version] - -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ +This Code of Conduct is inspired by the [Contributor Covenant](http://contributor-covenant.org), version 1.4, and adapted to fit the unique spirit of AdventureLog. diff --git a/LICENSE b/LICENSE index e13fb3a..792a64f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ AdventureLog: Self-hostable travel tracker and trip planner. - Copyright (C) 2024 Sean Morley + Copyright (C) 2023-2025 Sean Morley Contact: contact@seanmorley.com This program is free software: you can redistribute it and/or modify diff --git a/README.md b/README.md index ae52447..73aa31b 100644 --- a/README.md +++ b/README.md @@ -1,154 +1,150 @@ -# AdventureLog: Embark, Explore, Remember. 🌍 +
-### _"Never forget an adventure with AdventureLog - Your ultimate travel companion!"_ + logo +

AdventureLog

+ +

+ The ultimate travel companion for the modern-day explorer. +

+ +

+ View Demo + · + Documentation + · + Discord + · + Support 💖 +

+
-**Documentation can be found [here](https://docs.adventurelog.app).** +
+ + # Table of Contents -- [Installation](#installation) - - [Docker 🐋](#docker-) - - [Prerequisites](#prerequisites) - - [Getting Started](#getting-started) - - [Configuration](#configuration) - - [Frontend Container (web)](#frontend-container-web) - - [Backend Container (server)](#backend-container-server) - - [Proxy Container (nginx) Configuration](#proxy-container-nginx-configuration) - - [Running the Containers](#running-the-containers) -- [Screenshots 🖼️](#screenshots) -- [About AdventureLog](#about-adventurelog) -- [Attribution](#attribution) +- [About the Project](#-about-the-project) + - [Screenshots](#-screenshots) + - [Tech Stack](#-tech-stack) + - [Features](#-features) +- [Roadmap](#-roadmap) +- [Contributing](#-contributing) +- [License](#-license) +- [Contact](#-contact) +- [Acknowledgements](#-acknowledgements) -# Installation + -# Docker 🐋 +## ⭐ About the Project -Docker is the preferred way to run AdventureLog on your local machine. It is a lightweight containerization technology that allows you to run applications in isolated environments called containers. -**Note**: This guide mainly focuses on installation with a linux based host machine, but the steps are similar for other operating systems. +Starting from a simple idea of tracking travel locations (called adventures), AdventureLog has grown into a full-fledged travel companion. With AdventureLog, you can log your adventures, keep track of where you've been on the world map, plan your next trip collaboratively, and share your experiences with friends and family. -## Prerequisites +AdventureLog was created to solve a problem: the lack of a modern, open-source, user-friendly travel companion. Many existing travel apps are either too complex, too expensive, or too closed-off to be useful for the average traveler. AdventureLog aims to be the opposite: simple, beautiful, and open to everyone. -- Docker installed on your machine/server. You can learn how to download it [here](https://docs.docker.com/engine/install/). + -## Getting Started +### 📷 Screenshots -Get the `docker-compose.yml` file from the AdventureLog repository. You can download it from [here](https://github.com/seanmorley15/AdventureLog/blob/main/docker-compose.yml) or run this command to download it directly to your machine: +
+ Adventures +

Displays the adventures you have visited and the ones you plan to embark on. You can also filter and sort the adventures.

+ Adventure Details +

Shows specific details about an adventure, including the name, date, location, description, and rating.

+ Edit Modal + Adventure Details +

View all of your adventures on a map, with the ability to filter by visit status and add new ones by click on the map

+ Dashboard +

Displays a summary of your adventures, including your world travel stats.

+ Itinerary +

Plan your adventures and travel itinerary with a list of activities and a map view. View your trip in a variety of ways, including an itinerary list, a map view, and a calendar view.

+ Countries +

Lists all the countries you have visited and plan to visit, with the ability to filter by visit status.

+ Regions +

Displays the regions for a specific country, includes a map view to visually select regions.

+
-```bash -wget https://raw.githubusercontent.com/seanmorley15/AdventureLog/main/docker-compose.yml -``` + -## Configuration +### 🚀 Tech Stack -Here is a summary of the configuration options available in the `docker-compose.yml` file: +
+ Client + +
- +
+ Server + +
+ -### Frontend Container (web) +### 🎯 Features -| Name | Required | Description | Default Value | -| ------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -| `PUBLIC_SERVER_URL` | Yes | What the frontend SSR server uses to connect to the backend. | http://server:8000 | -| `ORIGIN` | Sometimes | Not needed if using HTTPS. If not, set it to the domain of what you will acess the app from. | http://localhost:8080 | -| `BODY_SIZE_LIMIT` | Yes | Used to set the maximum upload size to the server. Should be changed to prevent someone from uploading too much! Custom values must be set in **kiliobytes**. | Infinity | +- **Track Your Adventures** 🌍: Log your adventures and keep track of where you've been on the world map. + - Adventures can store a variety of information, including the location, date, and description. + - Adventures can be sorted into custom categories for easy organization. + - Adventures can be marked as private or public, allowing you to share your adventures with friends and family. + - Keep track of the countries and regions you've visited with the world travel book. +- **Plan Your Next Trip** 📃: Take the guesswork out of planning your next adventure with an easy-to-use itinerary planner. + - Itineraries can be created for any number of days and can include multiple destinations. + - Itineraries include many planning features like flight information, notes, checklists, and links to external resources. + - Itineraries can be shared with friends and family for collaborative planning. +- **Share Your Experiences** 📸: Share your adventures with friends and family and collaborate on trips together. + - Adventures and itineraries can be shared via a public link or directly with other AdventureLog users. + - Collaborators can view and edit shared itineraries (collections), making planning a breeze. -### Backend Container (server) + -| Name | Required | Description | Default Value | -| ----------------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -| `PGHOST` | Yes | Databse host. | db | -| `PGDATABASE` | Yes | Database. | database | -| `PGUSER` | Yes | Database user. | adventure | -| `PGPASSWORD` | Yes | Database password. | changeme123 | -| `DJANGO_ADMIN_USERNAME` | Yes | Default username. | admin | -| `DJANGO_ADMIN_PASSWORD` | Yes | Default password, change after inital login. | admin | -| `DJANGO_ADMIN_EMAIL` | Yes | Default user's email. | admin@example.com | -| `PUBLIC_URL` | Yes | This is the publically accessible url to the **nginx** container. You should be able to acess nginx from this url where you access your app. | http://127.0.0.1:81 | -| `CSRF_TRUSTED_ORIGINS` | Yes | Need to be changed to the orgins where you use your backend server and frontend. These values are comma seperated. | Needs to be changed. | -| `FRONTEND_URL` | Yes | This is the publically accessible url to the **frontend** container. This link should be accessable for all users. Used for email generation. | http://localhost:3000 | +## 🧭 Roadmap -### Proxy Container (nginx) Configuration +The AdventureLog Roadmap can be found [here](https://github.com/users/seanmorley15/projects/5) -In order to use media files in a production environment, you need to configure the `nginx` container to serve the media files. The container is already in the docker compose file but you need to do a few things to make it work. + -1. Create a directory called `proxy` in the same directory as the `docker-compose.yml` file. -2. Create a file called `nginx.conf` in the `proxy` directory. -3. Add the following configuration to the `nginx.conf` file: +## 👋 Contributing -```nginx -server { - listen 80; - server_name localhost; + + + - location /media/ { - alias /app/media/; - } -} -``` +Contributions are always welcome! -## Running the Containers +See `contributing.md` for ways to get started. -To start the containers, run the following command: + -```bash -docker compose up -d -``` +## 📃 License -Enjoy AdventureLog! 🎉 +Distributed under the GNU General Public License v3.0. See `LICENSE` for more information. -# Screenshots + -![Adventure Page](screenshots/adventures.png) -Displaying the adventures you have visited and the ones you plan to embark on. You can also filter and sort the adventures. +## 🤝 Contact -![Detail Page](screenshots/details.png) -Shows specific details about an adventure, including the name, date, location, description, and rating. +Sean Morley - [website](https://seanmorley.com) -![Edit](screenshots/edit.png) +Hi! I'm Sean, the creator of AdventureLog. I'm a college student and software developer with a passion for travel and adventure. I created AdventureLog to help people like me document their adventures and plan new ones effortlessly. As a student, I am always looking for more opportunities to learn and grow, so feel free to reach out via the contact on my website if you would like to collaborate or chat! -![Map Page](screenshots/map.png) -View all of your adventures on a map, with the ability to filter by visit status and add new ones by click on the map. + -![Itinerary Page](screenshots/itinerary.png) +## 💎 Acknowledgements -![Country Page](screenshots/countries.png) +- Logo Design by [nordtektiger](https://github.com/nordtektiger) +- WorldTravel Dataset [dr5hn/countries-states-cities-database](https://github.com/dr5hn/countries-states-cities-database) -![Region Page](screenshots/regions.png) +### Top Supporters 💖 -️ - -# About AdventureLog - -AdventureLog is a Svelte Kit and Django application that utilizes a PostgreSQL database. Users can log the adventures they have experienced, as well as plan future ones. Key features include: - -- Logging past adventures with fields like name, date, location, description, and rating. -- Planning future adventures with similar fields. -- Tagging different activity types for better organization. -- Viewing countries, regions, and marking visited regions. - -AdventureLog aims to be your ultimate travel companion, helping you document your adventures and plan new ones effortlessly. - -AdventureLog is licensed under the GNU General Public License v3.0. - - - -# Attribution - -- [Mexico GEOJSON](https://cartographyvectors.com/map/784-mexico-with-states) -- [Japan GEOJSON](https://cartographyvectors.com/map/361-japan) -- [Ireland GEOJSON](https://cartographyvectors.com/map/1399-ireland-provinces) -- [Sweden GEOJSON](https://cartographyvectors.com/map/1521-sweden-with-regions) -- [Switzerland GEOJSON](https://cartographyvectors.com/map/1522-switzerland-with-regions) -- [Iceland GEOJSON](https://cartographyvectors.com/map/1453-iceland-with-regions) +- [Veymax](https://x.com/veymax) +- [nebriv](https://github.com/nebriv) +- [Victor Butler](https://x.com/victor_butler) diff --git a/backend/AUTHORS b/backend/AUTHORS deleted file mode 100644 index c5ba2ed..0000000 --- a/backend/AUTHORS +++ /dev/null @@ -1 +0,0 @@ -http://github.com/iMerica/dj-rest-auth/contributors diff --git a/backend/Dockerfile b/backend/Dockerfile index a093cdf..b3f41b7 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,32 +1,60 @@ -# Dockerfile +# Use the official Python slim image as the base image +FROM python:3.13-slim -FROM python:3.10-slim - -LABEL Developers="Sean Morley" +# Metadata labels for the AdventureLog image +LABEL maintainer="Sean Morley" \ + version="v0.10.0" \ + description="AdventureLog — the ultimate self-hosted travel companion." \ + org.opencontainers.image.title="AdventureLog" \ + org.opencontainers.image.description="AdventureLog is a self-hosted travel companion that helps you plan, track, and share your adventures." \ + org.opencontainers.image.version="v0.10.0" \ + org.opencontainers.image.authors="Sean Morley" \ + org.opencontainers.image.url="https://raw.githubusercontent.com/seanmorley15/AdventureLog/refs/heads/main/brand/banner.png" \ + org.opencontainers.image.source="https://github.com/seanmorley15/AdventureLog" \ + org.opencontainers.image.vendor="Sean Morley" \ + org.opencontainers.image.created="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \ + org.opencontainers.image.licenses="GPL-3.0" # Set environment variables -ENV PYTHONDONTWRITEBYTECODE 1 -ENV PYTHONUNBUFFERED 1 +ENV PYTHONDONTWRITEBYTECODE=1 +ENV PYTHONUNBUFFERED=1 # Set the working directory WORKDIR /code -# Install system dependencies +# Install system dependencies (Nginx included) RUN apt-get update \ - && apt-get install -y git postgresql-client \ - && apt-get clean + && apt-get install -y git postgresql-client gdal-bin libgdal-dev nginx supervisor \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* # Install Python dependencies COPY ./server/requirements.txt /code/ -RUN pip install --upgrade pip -RUN pip install -r requirements.txt +RUN pip install --upgrade pip \ + && pip install -r requirements.txt + +# Create necessary directories +RUN mkdir -p /code/static /code/media +# RUN mkdir -p /code/staticfiles /code/media # Copy the Django project code into the Docker image COPY ./server /code/ -RUN python3 manage.py collectstatic --verbosity 2 +# Copy Nginx configuration +COPY ./nginx.conf /etc/nginx/nginx.conf + +# Copy Supervisor configuration +COPY ./supervisord.conf /etc/supervisor/conf.d/supervisord.conf + +# Collect static files +RUN python3 manage.py collectstatic --noinput --verbosity 2 # Set the entrypoint script COPY ./entrypoint.sh /code/entrypoint.sh RUN chmod +x /code/entrypoint.sh -ENTRYPOINT ["/code/entrypoint.sh"] \ No newline at end of file + +# Expose ports for NGINX and Gunicorn +EXPOSE 80 8000 + +# Command to start Supervisor (which starts Nginx and Gunicorn) +CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] diff --git a/backend/LICENSE b/backend/LICENSE deleted file mode 100644 index 42a0292..0000000 --- a/backend/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014 iMerica https://github.com/iMerica/ - -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/backend/MANIFEST.in b/backend/MANIFEST.in deleted file mode 100644 index c2d4208..0000000 --- a/backend/MANIFEST.in +++ /dev/null @@ -1,5 +0,0 @@ -include AUTHORS -include LICENSE -include MANIFEST.in -include README.md -graft dj_rest_auth diff --git a/backend/README.md b/backend/README.md deleted file mode 100644 index 349b7be..0000000 --- a/backend/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# AdventureLog Django Backend -A demo of a possible AdventureLog 2.0 version using Django as the backend with a REST API. - -Based of django-rest-framework and dj-rest-auth. \ No newline at end of file diff --git a/backend/entrypoint.sh b/backend/entrypoint.sh index b72181b..1031cb1 100644 --- a/backend/entrypoint.sh +++ b/backend/entrypoint.sh @@ -1,10 +1,32 @@ #!/bin/bash # Function to check PostgreSQL availability -check_postgres() { - PGPASSWORD=$PGPASSWORD psql -h "$PGHOST" -U "$PGUSER" -d "$PGDATABASE" -c '\q' >/dev/null 2>&1 +# Helper to get the first non-empty environment variable +get_env() { + for var in "$@"; do + value="${!var}" + if [ -n "$value" ]; then + echo "$value" + return + fi + done } +check_postgres() { + local db_host + local db_user + local db_name + local db_pass + + db_host=$(get_env PGHOST) + db_user=$(get_env PGUSER POSTGRES_USER) + db_name=$(get_env PGDATABASE POSTGRES_DB) + db_pass=$(get_env PGPASSWORD POSTGRES_PASSWORD) + + PGPASSWORD="$db_pass" psql -h "$db_host" -U "$db_user" -d "$db_name" -c '\q' >/dev/null 2>&1 +} + + # Wait for PostgreSQL to become available until check_postgres; do >&2 echo "PostgreSQL is unavailable - sleeping" @@ -13,25 +35,57 @@ done >&2 echo "PostgreSQL is up - continuing..." +# run sql commands +# psql -h "$PGHOST" -U "$PGUSER" -d "$PGDATABASE" -f /app/backend/init-postgis.sql + # Apply Django migrations python manage.py migrate -# Check for default data -python manage.py worldtravel-seed - -# Create superuser if environment variables are set -if [ -n "$DJANGO_ADMIN_USERNAME" ] && [ -n "$DJANGO_ADMIN_PASSWORD" ]; then +# Create superuser if environment variables are set and there are no users present at all. +if [ -n "$DJANGO_ADMIN_USERNAME" ] && [ -n "$DJANGO_ADMIN_PASSWORD" ] && [ -n "$DJANGO_ADMIN_EMAIL" ]; then echo "Creating superuser..." python manage.py shell << EOF from django.contrib.auth import get_user_model +from allauth.account.models import EmailAddress + User = get_user_model() + +# Check if the user already exists if not User.objects.filter(username='$DJANGO_ADMIN_USERNAME').exists(): - User.objects.create_superuser('$DJANGO_ADMIN_USERNAME', '$DJANGO_ADMIN_EMAIL', '$DJANGO_ADMIN_PASSWORD') + # Create the superuser + superuser = User.objects.create_superuser( + username='$DJANGO_ADMIN_USERNAME', + email='$DJANGO_ADMIN_EMAIL', + password='$DJANGO_ADMIN_PASSWORD' + ) print("Superuser created successfully.") + + # Create the EmailAddress object for AllAuth + EmailAddress.objects.create( + user=superuser, + email='$DJANGO_ADMIN_EMAIL', + verified=True, + primary=True + ) + print("EmailAddress object created successfully for AllAuth.") else: print("Superuser already exists.") EOF fi -# Start Django server -python manage.py runserver 0.0.0.0:8000 + +# Sync the countries and world travel regions +# Sync the countries and world travel regions +python manage.py download-countries +if [ $? -eq 137 ]; then + >&2 echo "WARNING: The download-countries command was interrupted. This is likely due to lack of memory allocated to the container or the host. Please try again with more memory." + exit 1 +fi + +cat /code/adventurelog.txt + +# Start Gunicorn in foreground +exec gunicorn main.wsgi:application \ + --bind [::]:8000 \ + --workers 2 \ + --timeout 120 diff --git a/backend/nginx.conf b/backend/nginx.conf new file mode 100644 index 0000000..23dba44 --- /dev/null +++ b/backend/nginx.conf @@ -0,0 +1,42 @@ +worker_processes 1; +events { + worker_connections 1024; +} +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + sendfile on; + keepalive_timeout 65; + client_max_body_size 100M; + # The backend is running in the same container, so reference localhost + upstream django { + server 127.0.0.1:8000; # Use localhost to point to Gunicorn running internally + } + server { + listen 80; + server_name localhost; + location / { + proxy_pass http://django; # Forward to the upstream block + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + location /static/ { + alias /code/staticfiles/; # Serve static files directly + } + # Serve protected media files with X-Accel-Redirect + location /protectedMedia/ { + internal; # Only internal requests are allowed + alias /code/media/; # This should match Django MEDIA_ROOT + try_files $uri =404; # Return a 404 if the file doesn't exist + + # Security headers for all protected files + add_header Content-Security-Policy "default-src 'self'; script-src 'none'; object-src 'none'; base-uri 'none'" always; + add_header X-Content-Type-Options nosniff always; + add_header X-Frame-Options SAMEORIGIN always; + add_header X-XSS-Protection "1; mode=block" always; + add_header Referrer-Policy "strict-origin-when-cross-origin" always; + } + } +} \ No newline at end of file diff --git a/backend/server/.env.example b/backend/server/.env.example index 04eb77f..2c93208 100644 --- a/backend/server/.env.example +++ b/backend/server/.env.example @@ -20,4 +20,17 @@ EMAIL_BACKEND='console' # EMAIL_USE_SSL=True # EMAIL_HOST_USER='user' # EMAIL_HOST_PASSWORD='password' -# DEFAULT_FROM_EMAIL='user@example.com' \ No newline at end of file +# DEFAULT_FROM_EMAIL='user@example.com' + +# GOOGLE_MAPS_API_KEY='key' + + +# ------------------- # +# For Developers to start a Demo Database +# docker run --name adventurelog-development -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=admin -e POSTGRES_DB=adventurelog -p 5432:5432 -d postgis/postgis:15-3.3 + +# PGHOST='localhost' +# PGDATABASE='adventurelog' +# PGUSER='admin' +# PGPASSWORD='admin' +# ------------------- # \ No newline at end of file diff --git a/documentation/static/.nojekyll b/backend/server/achievements/__init__.py similarity index 100% rename from documentation/static/.nojekyll rename to backend/server/achievements/__init__.py diff --git a/backend/server/achievements/admin.py b/backend/server/achievements/admin.py new file mode 100644 index 0000000..af087ce --- /dev/null +++ b/backend/server/achievements/admin.py @@ -0,0 +1,9 @@ +from django.contrib import admin +from allauth.account.decorators import secure_admin_login +from achievements.models import Achievement, UserAchievement + +admin.autodiscover() +admin.site.login = secure_admin_login(admin.site.login) + +admin.site.register(Achievement) +admin.site.register(UserAchievement) \ No newline at end of file diff --git a/backend/server/achievements/apps.py b/backend/server/achievements/apps.py new file mode 100644 index 0000000..2a635e2 --- /dev/null +++ b/backend/server/achievements/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class AchievementsConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'achievements' diff --git a/backend/server/achievements/management/__init__.py b/backend/server/achievements/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/server/achievements/management/commands/__init__.py b/backend/server/achievements/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/server/achievements/management/commands/achievement-seed.py b/backend/server/achievements/management/commands/achievement-seed.py new file mode 100644 index 0000000..7713e88 --- /dev/null +++ b/backend/server/achievements/management/commands/achievement-seed.py @@ -0,0 +1,66 @@ +import json +from django.core.management.base import BaseCommand +from achievements.models import Achievement + +US_STATE_CODES = [ + 'US-AL', 'US-AK', 'US-AZ', 'US-AR', 'US-CA', 'US-CO', 'US-CT', 'US-DE', + 'US-FL', 'US-GA', 'US-HI', 'US-ID', 'US-IL', 'US-IN', 'US-IA', 'US-KS', + 'US-KY', 'US-LA', 'US-ME', 'US-MD', 'US-MA', 'US-MI', 'US-MN', 'US-MS', + 'US-MO', 'US-MT', 'US-NE', 'US-NV', 'US-NH', 'US-NJ', 'US-NM', 'US-NY', + 'US-NC', 'US-ND', 'US-OH', 'US-OK', 'US-OR', 'US-PA', 'US-RI', 'US-SC', + 'US-SD', 'US-TN', 'US-TX', 'US-UT', 'US-VT', 'US-VA', 'US-WA', 'US-WV', + 'US-WI', 'US-WY' +] + +ACHIEVEMENTS = [ + { + "name": "First Adventure", + "key": "achievements.first_adventure", + "type": "adventure_count", + "description": "Log your first adventure!", + "condition": {"type": "adventure_count", "value": 1}, + }, + { + "name": "Explorer", + "key": "achievements.explorer", + "type": "adventure_count", + "description": "Log 10 adventures.", + "condition": {"type": "adventure_count", "value": 10}, + }, + { + "name": "Globetrotter", + "key": "achievements.globetrotter", + "type": "country_count", + "description": "Visit 5 different countries.", + "condition": {"type": "country_count", "value": 5}, + }, + { + "name": "American Dream", + "key": "achievements.american_dream", + "type": "country_count", + "description": "Visit all 50 states in the USA.", + "condition": {"type": "country_count", "items": US_STATE_CODES}, + } +] + + + + +class Command(BaseCommand): + help = "Seeds the database with predefined achievements" + + def handle(self, *args, **kwargs): + for achievement_data in ACHIEVEMENTS: + achievement, created = Achievement.objects.update_or_create( + name=achievement_data["name"], + defaults={ + "description": achievement_data["description"], + "condition": json.dumps(achievement_data["condition"]), + "type": achievement_data["type"], + "key": achievement_data["key"], + }, + ) + if created: + self.stdout.write(self.style.SUCCESS(f"✅ Created: {achievement.name}")) + else: + self.stdout.write(self.style.WARNING(f"🔄 Updated: {achievement.name}")) diff --git a/backend/server/achievements/models.py b/backend/server/achievements/models.py new file mode 100644 index 0000000..c23bb31 --- /dev/null +++ b/backend/server/achievements/models.py @@ -0,0 +1,34 @@ +import uuid +from django.db import models +from django.contrib.auth import get_user_model + +User = get_user_model() + +VALID_ACHIEVEMENT_TYPES = [ + "adventure_count", + "country_count", +] + +class Achievement(models.Model): + """Stores all possible achievements""" + name = models.CharField(max_length=255, unique=True) + key = models.CharField(max_length=255, unique=True, default='achievements.other') # Used for frontend lookups, e.g. "achievements.first_adventure" + type = models.CharField(max_length=255, choices=[(tag, tag) for tag in VALID_ACHIEVEMENT_TYPES], default='adventure_count') # adventure_count, country_count, etc. + description = models.TextField() + icon = models.ImageField(upload_to="achievements/", null=True, blank=True) + condition = models.JSONField() # Stores rules like {"type": "adventure_count", "value": 10} + + def __str__(self): + return self.name + +class UserAchievement(models.Model): + """Tracks which achievements a user has earned""" + user = models.ForeignKey(User, on_delete=models.CASCADE) + achievement = models.ForeignKey(Achievement, on_delete=models.CASCADE) + earned_at = models.DateTimeField(auto_now_add=True) + + class Meta: + unique_together = ("user", "achievement") # Prevent duplicates + + def __str__(self): + return f"{self.user.username} - {self.achievement.name}" diff --git a/backend/server/achievements/tests.py b/backend/server/achievements/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/backend/server/achievements/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/backend/server/achievements/views.py b/backend/server/achievements/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/backend/server/achievements/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/backend/server/adventurelog.txt b/backend/server/adventurelog.txt new file mode 100644 index 0000000..229c771 --- /dev/null +++ b/backend/server/adventurelog.txt @@ -0,0 +1,7 @@ + █████╗ ██████╗ ██╗ ██╗███████╗███╗ ██╗████████╗██╗ ██╗██████╗ ███████╗██╗ ██████╗ ██████╗ +██╔══██╗██╔══██╗██║ ██║██╔════╝████╗ ██║╚══██╔══╝██║ ██║██╔══██╗██╔════╝██║ ██╔═══██╗██╔════╝ +███████║██║ ██║██║ ██║█████╗ ██╔██╗ ██║ ██║ ██║ ██║██████╔╝█████╗ ██║ ██║ ██║██║ ███╗ +██╔══██║██║ ██║╚██╗ ██╔╝██╔══╝ ██║╚██╗██║ ██║ ██║ ██║██╔══██╗██╔══╝ ██║ ██║ ██║██║ ██║ +██║ ██║██████╔╝ ╚████╔╝ ███████╗██║ ╚████║ ██║ ╚██████╔╝██║ ██║███████╗███████╗╚██████╔╝╚██████╔╝ +╚═╝ ╚═╝╚═════╝ ╚═══╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝ ╚═════╝ ╚═════╝ +“The world is full of wonderful things you haven't seen yet. Don't ever give up on the chance of seeing them.” - J.K. Rowling diff --git a/backend/server/adventures/admin.py b/backend/server/adventures/admin.py index 0029499..e23fa15 100644 --- a/backend/server/adventures/admin.py +++ b/backend/server/adventures/admin.py @@ -1,28 +1,53 @@ import os from django.contrib import admin from django.utils.html import mark_safe -from .models import Adventure, Checklist, ChecklistItem, Collection, Transportation, Note -from worldtravel.models import Country, Region, VisitedRegion +from .models import Adventure, Checklist, ChecklistItem, Collection, Transportation, Note, AdventureImage, Visit, Category, Attachment, Lodging +from worldtravel.models import Country, Region, VisitedRegion, City, VisitedCity +from allauth.account.decorators import secure_admin_login + +admin.autodiscover() +admin.site.login = secure_admin_login(admin.site.login) + +@admin.action(description="Trigger geocoding") +def trigger_geocoding(modeladmin, request, queryset): + count = 0 + for adventure in queryset: + try: + adventure.save() # Triggers geocoding logic in your model + count += 1 + except Exception as e: + modeladmin.message_user(request, f"Error geocoding {adventure}: {e}", level='error') + modeladmin.message_user(request, f"Geocoding triggered for {count} adventures.", level='success') + class AdventureAdmin(admin.ModelAdmin): - list_display = ('name', 'type', 'user_id', 'date', 'is_public', 'image_display') - list_filter = ('type', 'user_id', 'is_public') + list_display = ('name', 'get_category', 'get_visit_count', 'user_id', 'is_public') + list_filter = ( 'user_id', 'is_public') + search_fields = ('name',) + readonly_fields = ('city', 'region', 'country') + actions = [trigger_geocoding] - def image_display(self, obj): - if obj.image: - public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/') - public_url = public_url.replace("'", "") - return mark_safe(f' bool: + try: + socket.gethostbyname(hostname) + return True + except socket.error: + return False + +def reverse_geocode(lat, lon, user): + if getattr(settings, 'GOOGLE_MAPS_API_KEY', None): + return reverse_geocode_google(lat, lon, user) + return reverse_geocode_osm(lat, lon, user) + +def reverse_geocode_osm(lat, lon, user): + url = f"https://nominatim.openstreetmap.org/reverse?format=jsonv2&lat={lat}&lon={lon}" + headers = {'User-Agent': 'AdventureLog Server'} + connect_timeout = 1 + read_timeout = 5 + + if not is_host_resolvable("nominatim.openstreetmap.org"): + return {"error": "DNS resolution failed"} + + try: + response = requests.get(url, headers=headers, timeout=(connect_timeout, read_timeout)) + response.raise_for_status() + data = response.json() + return extractIsoCode(user, data) + except Exception: + return {"error": "An internal error occurred while processing the request"} + +def reverse_geocode_google(lat, lon, user): + api_key = settings.GOOGLE_MAPS_API_KEY + + # Updated to use the new Geocoding API endpoint (this one is still supported) + # The Geocoding API is separate from Places API and still uses the old format + url = "https://maps.googleapis.com/maps/api/geocode/json" + params = {"latlng": f"{lat},{lon}", "key": api_key} + + try: + response = requests.get(url, params=params) + response.raise_for_status() + data = response.json() + + if data.get("status") != "OK": + return {"error": "Geocoding failed"} + + # Convert Google schema to Nominatim-style for extractIsoCode + first_result = data.get("results", [])[0] + result_data = { + "name": first_result.get("formatted_address"), + "address": _parse_google_address_components(first_result.get("address_components", [])) + } + return extractIsoCode(user, result_data) + except Exception: + return {"error": "An internal error occurred while processing the request"} + +def _parse_google_address_components(components): + parsed = {} + country_code = None + state_code = None + + for comp in components: + types = comp.get("types", []) + long_name = comp.get("long_name") + short_name = comp.get("short_name") + + if "country" in types: + parsed["country"] = long_name + country_code = short_name + parsed["ISO3166-1"] = short_name + if "administrative_area_level_1" in types: + parsed["state"] = long_name + state_code = short_name + if "administrative_area_level_2" in types: + parsed["county"] = long_name + if "locality" in types: + parsed["city"] = long_name + if "sublocality" in types: + parsed["town"] = long_name + + # Build composite ISO 3166-2 code like US-ME + if country_code and state_code: + parsed["ISO3166-2-lvl1"] = f"{country_code}-{state_code}" + + return parsed \ No newline at end of file diff --git a/backend/server/adventures/managers.py b/backend/server/adventures/managers.py new file mode 100644 index 0000000..4a12194 --- /dev/null +++ b/backend/server/adventures/managers.py @@ -0,0 +1,17 @@ +from django.db import models +from django.db.models import Q + +class AdventureManager(models.Manager): + def retrieve_adventures(self, user, include_owned=False, include_shared=False, include_public=False): + query = Q() + + if include_owned: + query |= Q(user_id=user) + + if include_shared: + query |= Q(collections__shared_with=user) + + if include_public: + query |= Q(is_public=True) + + return self.filter(query).distinct() diff --git a/backend/server/adventures/middleware.py b/backend/server/adventures/middleware.py index af54b68..fae6b0b 100644 --- a/backend/server/adventures/middleware.py +++ b/backend/server/adventures/middleware.py @@ -1,13 +1,40 @@ -class AppVersionMiddleware: +from django.conf import settings +from django.utils.deprecation import MiddlewareMixin +import os + +class OverrideHostMiddleware: def __init__(self, get_response): self.get_response = get_response def __call__(self, request): - # Process request (if needed) + public_url = os.getenv('PUBLIC_URL', None) + if public_url: + # Extract host and scheme + scheme, host = public_url.split("://") + request.META['HTTP_HOST'] = host + request.META['wsgi.url_scheme'] = scheme + + # Set X-Forwarded-Proto for Django + request.META['HTTP_X_FORWARDED_PROTO'] = scheme + response = self.get_response(request) - - # Add custom header to response - # Replace with your app version - response['X-AdventureLog-Version'] = '1.0.0' - return response + +class XSessionTokenMiddleware(MiddlewareMixin): + def process_request(self, request): + session_token = request.headers.get('X-Session-Token') + if session_token: + request.COOKIES[settings.SESSION_COOKIE_NAME] = session_token + +class DisableCSRFForSessionTokenMiddleware(MiddlewareMixin): + def process_request(self, request): + if 'X-Session-Token' in request.headers: + setattr(request, '_dont_enforce_csrf_checks', True) + +class DisableCSRFForMobileLoginSignup(MiddlewareMixin): + def process_request(self, request): + is_mobile = request.headers.get('X-Is-Mobile', '').lower() == 'true' + is_login_or_signup = request.path in ['/auth/browser/v1/auth/login', '/auth/browser/v1/auth/signup'] + if is_mobile and is_login_or_signup: + setattr(request, '_dont_enforce_csrf_checks', True) + \ No newline at end of file diff --git a/backend/server/adventures/migrations/0001_adventure_image.py b/backend/server/adventures/migrations/0001_adventure_image.py new file mode 100644 index 0000000..6906db4 --- /dev/null +++ b/backend/server/adventures/migrations/0001_adventure_image.py @@ -0,0 +1,19 @@ +# Generated by Django 5.0.8 on 2024-08-15 23:20 + +import django_resized.forms +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', 'migrate_images'), + ] + + operations = [ + migrations.AddField( + model_name='adventure', + name='image', + field=django_resized.forms.ResizedImageField(blank=True, crop=None, force_format='WEBP', keep_meta=True, null=True, quality=75, scale=None, size=[1920, 1080], upload_to='images/'), + ), + ] diff --git a/backend/server/adventures/migrations/0002_adventureimage.py b/backend/server/adventures/migrations/0002_adventureimage.py new file mode 100644 index 0000000..bf80832 --- /dev/null +++ b/backend/server/adventures/migrations/0002_adventureimage.py @@ -0,0 +1,27 @@ +# Generated by Django 5.0.8 on 2024-08-15 23:17 + +import django.db.models.deletion +import django_resized.forms +import uuid +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0001_initial'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='AdventureImage', + fields=[ + ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), + ('image', django_resized.forms.ResizedImageField(crop=None, force_format='WEBP', keep_meta=True, quality=75, scale=None, size=[1920, 1080], upload_to='images/')), + ('adventure', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='adventures.adventure')), + ('user_id', models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + ] diff --git a/backend/server/adventures/migrations/0002_alter_adventureimage_adventure.py b/backend/server/adventures/migrations/0002_alter_adventureimage_adventure.py new file mode 100644 index 0000000..b03c3ad --- /dev/null +++ b/backend/server/adventures/migrations/0002_alter_adventureimage_adventure.py @@ -0,0 +1,19 @@ +# Generated by Django 5.0.8 on 2024-08-15 23:31 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0001_adventure_image'), + ] + + operations = [ + migrations.AlterField( + model_name='adventureimage', + name='adventure', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='images', to='adventures.adventure'), + ), + ] diff --git a/backend/server/adventures/migrations/0003_adventure_end_date.py b/backend/server/adventures/migrations/0003_adventure_end_date.py new file mode 100644 index 0000000..a04bbdb --- /dev/null +++ b/backend/server/adventures/migrations/0003_adventure_end_date.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.8 on 2024-08-18 16:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0002_alter_adventureimage_adventure'), + ] + + operations = [ + migrations.AddField( + model_name='adventure', + name='end_date', + field=models.DateField(blank=True, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0004_transportation_end_date.py b/backend/server/adventures/migrations/0004_transportation_end_date.py new file mode 100644 index 0000000..04f3b57 --- /dev/null +++ b/backend/server/adventures/migrations/0004_transportation_end_date.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.8 on 2024-08-19 20:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0003_adventure_end_date'), + ] + + operations = [ + migrations.AddField( + model_name='transportation', + name='end_date', + field=models.DateTimeField(blank=True, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0005_collection_shared_with.py b/backend/server/adventures/migrations/0005_collection_shared_with.py new file mode 100644 index 0000000..c3ee3ac --- /dev/null +++ b/backend/server/adventures/migrations/0005_collection_shared_with.py @@ -0,0 +1,20 @@ +# Generated by Django 5.0.8 on 2024-09-02 13:21 + +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0004_transportation_end_date'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.AddField( + model_name='collection', + name='shared_with', + field=models.ManyToManyField(blank=True, related_name='shared_with', to=settings.AUTH_USER_MODEL), + ), + ] diff --git a/backend/server/adventures/migrations/0006_alter_adventure_link.py b/backend/server/adventures/migrations/0006_alter_adventure_link.py new file mode 100644 index 0000000..1a78820 --- /dev/null +++ b/backend/server/adventures/migrations/0006_alter_adventure_link.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.8 on 2024-09-17 14:18 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0005_collection_shared_with'), + ] + + operations = [ + migrations.AlterField( + model_name='adventure', + name='link', + field=models.URLField(blank=True, max_length=2083, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0007_visit_model.py b/backend/server/adventures/migrations/0007_visit_model.py new file mode 100644 index 0000000..8197c08 --- /dev/null +++ b/backend/server/adventures/migrations/0007_visit_model.py @@ -0,0 +1,32 @@ +# Generated by Django 5.0.8 on 2024-09-23 18:06 + +import django.db.models.deletion +import uuid +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0006_alter_adventure_link'), + ] + + operations = [ + migrations.AlterField( + model_name='adventure', + name='type', + field=models.CharField(choices=[('general', 'General 🌍'), ('Outdoor', 'Outdoor 🏞️'), ('lodging', 'Lodging 🛌'), ('dining', 'Dining 🍽️'), ('activity', 'Activity 🏄'), ('attraction', 'Attraction 🎢'), ('shopping', 'Shopping 🛍️'), ('nightlife', 'Nightlife 🌃'), ('event', 'Event 🎉'), ('transportation', 'Transportation 🚗'), ('culture', 'Culture 🎭'), ('water_sports', 'Water Sports 🚤'), ('hiking', 'Hiking 🥾'), ('wildlife', 'Wildlife 🦒'), ('historical_sites', 'Historical Sites 🏛️'), ('music_concerts', 'Music & Concerts 🎶'), ('fitness', 'Fitness 🏋️'), ('art_museums', 'Art & Museums 🎨'), ('festivals', 'Festivals 🎪'), ('spiritual_journeys', 'Spiritual Journeys 🧘\u200d♀️'), ('volunteer_work', 'Volunteer Work 🤝'), ('other', 'Other')], default='general', max_length=100), + ), + migrations.CreateModel( + name='Visit', + fields=[ + ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), + ('start_date', models.DateField(blank=True, null=True)), + ('end_date', models.DateField(blank=True, null=True)), + ('notes', models.TextField(blank=True, null=True)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), + ('adventure', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='visits', to='adventures.adventure')), + ], + ), + ] diff --git a/backend/server/adventures/migrations/0008_remove_date_field.py b/backend/server/adventures/migrations/0008_remove_date_field.py new file mode 100644 index 0000000..0260097 --- /dev/null +++ b/backend/server/adventures/migrations/0008_remove_date_field.py @@ -0,0 +1,28 @@ +# Generated by Django 5.0.8 on 2024-09-23 18:06 + +import django.db.models.deletion +import uuid +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', 'migrate_visits_categories'), + ('adventures', 'migrate_images'), + ] + + operations = [ + migrations.RemoveField( + model_name='adventure', + name='date', + ), + migrations.RemoveField( + model_name='adventure', + name='end_date', + ), + migrations.RemoveField( + model_name='adventure', + name='image', + ), + ] diff --git a/backend/server/adventures/migrations/0009_alter_adventure_type.py b/backend/server/adventures/migrations/0009_alter_adventure_type.py new file mode 100644 index 0000000..72178f9 --- /dev/null +++ b/backend/server/adventures/migrations/0009_alter_adventure_type.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.8 on 2024-09-30 00:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0008_remove_date_field'), + ] + + operations = [ + migrations.AlterField( + model_name='adventure', + name='type', + field=models.CharField(choices=[('general', 'General 🌍'), ('outdoor', 'Outdoor 🏞️'), ('lodging', 'Lodging 🛌'), ('dining', 'Dining 🍽️'), ('activity', 'Activity 🏄'), ('attraction', 'Attraction 🎢'), ('shopping', 'Shopping 🛍️'), ('nightlife', 'Nightlife 🌃'), ('event', 'Event 🎉'), ('transportation', 'Transportation 🚗'), ('culture', 'Culture 🎭'), ('water_sports', 'Water Sports 🚤'), ('hiking', 'Hiking 🥾'), ('wildlife', 'Wildlife 🦒'), ('historical_sites', 'Historical Sites 🏛️'), ('music_concerts', 'Music & Concerts 🎶'), ('fitness', 'Fitness 🏋️'), ('art_museums', 'Art & Museums 🎨'), ('festivals', 'Festivals 🎪'), ('spiritual_journeys', 'Spiritual Journeys 🧘\u200d♀️'), ('volunteer_work', 'Volunteer Work 🤝'), ('other', 'Other')], default='general', max_length=100), + ), + ] diff --git a/backend/server/adventures/migrations/0010_collection_link.py b/backend/server/adventures/migrations/0010_collection_link.py new file mode 100644 index 0000000..85a5341 --- /dev/null +++ b/backend/server/adventures/migrations/0010_collection_link.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.8 on 2024-10-08 03:05 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0009_alter_adventure_type'), + ] + + operations = [ + migrations.AddField( + model_name='collection', + name='link', + field=models.URLField(blank=True, max_length=2083, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0011_category_adventure_category.py b/backend/server/adventures/migrations/0011_category_adventure_category.py new file mode 100644 index 0000000..6413454 --- /dev/null +++ b/backend/server/adventures/migrations/0011_category_adventure_category.py @@ -0,0 +1,34 @@ +# Generated by Django 5.0.8 on 2024-11-14 04:30 + +from django.conf import settings +import django.db.models.deletion +import uuid +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0010_collection_link'), + ] + + operations = [ + migrations.CreateModel( + name='Category', + fields=[ + ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), + ('name', models.CharField(max_length=200)), + ('display_name', models.CharField(max_length=200)), + ('icon', models.CharField(default='🌍', max_length=200)), + ('user_id', models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + options={ + 'verbose_name_plural': 'Categories', + }, + ), + migrations.AddField( + model_name='adventure', + name='category', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='adventures.category'), + ), + ] diff --git a/backend/server/adventures/migrations/0012_migrate_types_to_categories.py b/backend/server/adventures/migrations/0012_migrate_types_to_categories.py new file mode 100644 index 0000000..8aea132 --- /dev/null +++ b/backend/server/adventures/migrations/0012_migrate_types_to_categories.py @@ -0,0 +1,59 @@ +from django.db import migrations + +def migrate_categories(apps, schema_editor): + # Use the historical models + Adventure = apps.get_model('adventures', 'Adventure') + Category = apps.get_model('adventures', 'Category') + + ADVENTURE_TYPES = { + 'general': ('General', '🌍'), + 'outdoor': ('Outdoor', '🏞️'), + 'lodging': ('Lodging', '🛌'), + 'dining': ('Dining', '🍽️'), + 'activity': ('Activity', '🏄'), + 'attraction': ('Attraction', '🎢'), + 'shopping': ('Shopping', '🛍️'), + 'nightlife': ('Nightlife', '🌃'), + 'event': ('Event', '🎉'), + 'transportation': ('Transportation', '🚗'), + 'culture': ('Culture', '🎭'), + 'water_sports': ('Water Sports', '🚤'), + 'hiking': ('Hiking', '🥾'), + 'wildlife': ('Wildlife', '🦒'), + 'historical_sites': ('Historical Sites', '🏛️'), + 'music_concerts': ('Music & Concerts', '🎶'), + 'fitness': ('Fitness', '🏋️'), + 'art_museums': ('Art & Museums', '🎨'), + 'festivals': ('Festivals', '🎪'), + 'spiritual_journeys': ('Spiritual Journeys', '🧘‍♀️'), + 'volunteer_work': ('Volunteer Work', '🤝'), + 'other': ('Other', '❓'), + } + + adventures = Adventure.objects.all() + for adventure in adventures: + # Access the old 'type' field using __dict__ because it's not in the model anymore + old_type = adventure.__dict__.get('type') + if old_type in ADVENTURE_TYPES: + category, created = Category.objects.get_or_create( + name=old_type, + user_id=adventure.user_id, + defaults={ + 'display_name': ADVENTURE_TYPES[old_type][0], + 'icon': ADVENTURE_TYPES[old_type][1], + } + ) + adventure.category = category + adventure.save() + else: + print(f"Unknown type: {old_type}") + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0011_category_adventure_category'), + ] + + operations = [ + migrations.RunPython(migrate_categories), + ] \ No newline at end of file diff --git a/backend/server/adventures/migrations/0013_remove_adventure_type_alter_adventure_category.py b/backend/server/adventures/migrations/0013_remove_adventure_type_alter_adventure_category.py new file mode 100644 index 0000000..d52f950 --- /dev/null +++ b/backend/server/adventures/migrations/0013_remove_adventure_type_alter_adventure_category.py @@ -0,0 +1,23 @@ +# Generated by Django 5.0.8 on 2024-11-14 04:51 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0012_migrate_types_to_categories'), + ] + + operations = [ + migrations.RemoveField( + model_name='adventure', + name='type', + ), + migrations.AlterField( + model_name='adventure', + name='category', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='adventures.category'), + ), + ] diff --git a/backend/server/adventures/migrations/0014_alter_category_unique_together.py b/backend/server/adventures/migrations/0014_alter_category_unique_together.py new file mode 100644 index 0000000..79b0bdf --- /dev/null +++ b/backend/server/adventures/migrations/0014_alter_category_unique_together.py @@ -0,0 +1,19 @@ +# Generated by Django 5.0.8 on 2024-11-17 21:43 + +from django.conf import settings +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0013_remove_adventure_type_alter_adventure_category'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='category', + unique_together={('name', 'user_id')}, + ), + ] diff --git a/backend/server/adventures/migrations/0015_transportation_destination_latitude_and_more.py b/backend/server/adventures/migrations/0015_transportation_destination_latitude_and_more.py new file mode 100644 index 0000000..7971839 --- /dev/null +++ b/backend/server/adventures/migrations/0015_transportation_destination_latitude_and_more.py @@ -0,0 +1,33 @@ +# Generated by Django 5.0.8 on 2024-12-19 17:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0014_alter_category_unique_together'), + ] + + operations = [ + migrations.AddField( + model_name='transportation', + name='destination_latitude', + field=models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True), + ), + migrations.AddField( + model_name='transportation', + name='destination_longitude', + field=models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True), + ), + migrations.AddField( + model_name='transportation', + name='origin_latitude', + field=models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True), + ), + migrations.AddField( + model_name='transportation', + name='origin_longitude', + field=models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0016_alter_adventureimage_image.py b/backend/server/adventures/migrations/0016_alter_adventureimage_image.py new file mode 100644 index 0000000..a226fe1 --- /dev/null +++ b/backend/server/adventures/migrations/0016_alter_adventureimage_image.py @@ -0,0 +1,20 @@ +# Generated by Django 5.0.8 on 2025-01-01 21:40 + +import adventures.models +import django_resized.forms +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0015_transportation_destination_latitude_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='adventureimage', + name='image', + field=django_resized.forms.ResizedImageField(crop=None, force_format='WEBP', keep_meta=True, quality=75, scale=None, size=[1920, 1080], upload_to=adventures.models.PathAndRename('images/')), + ), + ] diff --git a/backend/server/adventures/migrations/0017_adventureimage_is_primary.py b/backend/server/adventures/migrations/0017_adventureimage_is_primary.py new file mode 100644 index 0000000..9a920a3 --- /dev/null +++ b/backend/server/adventures/migrations/0017_adventureimage_is_primary.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.8 on 2025-01-03 04:05 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0016_alter_adventureimage_image'), + ] + + operations = [ + migrations.AddField( + model_name='adventureimage', + name='is_primary', + field=models.BooleanField(default=False), + ), + ] diff --git a/backend/server/adventures/migrations/0018_attachment.py b/backend/server/adventures/migrations/0018_attachment.py new file mode 100644 index 0000000..f41c44b --- /dev/null +++ b/backend/server/adventures/migrations/0018_attachment.py @@ -0,0 +1,26 @@ +# Generated by Django 5.0.8 on 2025-01-19 00:39 + +import django.db.models.deletion +import uuid +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0017_adventureimage_is_primary'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='Attachment', + fields=[ + ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), + ('file', models.FileField(upload_to='attachments/')), + ('adventure', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='attachments', to='adventures.adventure')), + ('user_id', models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + ] diff --git a/backend/server/adventures/migrations/0019_alter_attachment_file.py b/backend/server/adventures/migrations/0019_alter_attachment_file.py new file mode 100644 index 0000000..bb48fae --- /dev/null +++ b/backend/server/adventures/migrations/0019_alter_attachment_file.py @@ -0,0 +1,19 @@ +# Generated by Django 5.0.8 on 2025-01-19 22:17 + +import adventures.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0018_attachment'), + ] + + operations = [ + migrations.AlterField( + model_name='attachment', + name='file', + field=models.FileField(upload_to=adventures.models.PathAndRename('attachments/')), + ), + ] diff --git a/backend/server/adventures/migrations/0020_attachment_name.py b/backend/server/adventures/migrations/0020_attachment_name.py new file mode 100644 index 0000000..4773250 --- /dev/null +++ b/backend/server/adventures/migrations/0020_attachment_name.py @@ -0,0 +1,19 @@ +# Generated by Django 5.0.8 on 2025-01-19 22:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0019_alter_attachment_file'), + ] + + operations = [ + migrations.AddField( + model_name='attachment', + name='name', + field=models.CharField(default='', max_length=200), + preserve_default=False, + ), + ] diff --git a/backend/server/adventures/migrations/0021_alter_attachment_name.py b/backend/server/adventures/migrations/0021_alter_attachment_name.py new file mode 100644 index 0000000..93b7eb3 --- /dev/null +++ b/backend/server/adventures/migrations/0021_alter_attachment_name.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.8 on 2025-01-19 22:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0020_attachment_name'), + ] + + operations = [ + migrations.AlterField( + model_name='attachment', + name='name', + field=models.CharField(blank=True, max_length=200, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0022_hotel.py b/backend/server/adventures/migrations/0022_hotel.py new file mode 100644 index 0000000..56a6097 --- /dev/null +++ b/backend/server/adventures/migrations/0022_hotel.py @@ -0,0 +1,39 @@ +# Generated by Django 5.0.8 on 2025-02-02 15:36 + +import django.db.models.deletion +import uuid +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0021_alter_attachment_name'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='Hotel', + fields=[ + ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), + ('name', models.CharField(max_length=200)), + ('description', models.TextField(blank=True, null=True)), + ('rating', models.FloatField(blank=True, null=True)), + ('link', models.URLField(blank=True, max_length=2083, null=True)), + ('check_in', models.DateTimeField(blank=True, null=True)), + ('check_out', models.DateTimeField(blank=True, null=True)), + ('reservation_number', models.CharField(blank=True, max_length=100, null=True)), + ('price', models.DecimalField(blank=True, decimal_places=2, max_digits=9, null=True)), + ('latitude', models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True)), + ('longitude', models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True)), + ('location', models.CharField(blank=True, max_length=200, null=True)), + ('is_public', models.BooleanField(default=False)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), + ('collection', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='adventures.collection')), + ('user_id', models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + ] diff --git a/backend/server/adventures/migrations/0023_lodging_delete_hotel.py b/backend/server/adventures/migrations/0023_lodging_delete_hotel.py new file mode 100644 index 0000000..44e502c --- /dev/null +++ b/backend/server/adventures/migrations/0023_lodging_delete_hotel.py @@ -0,0 +1,43 @@ +# Generated by Django 5.0.8 on 2025-02-08 01:50 + +import django.db.models.deletion +import uuid +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0022_hotel'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='Lodging', + fields=[ + ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), + ('name', models.CharField(max_length=200)), + ('type', models.CharField(choices=[('hotel', 'Hotel'), ('hostel', 'Hostel'), ('resort', 'Resort'), ('bnb', 'Bed & Breakfast'), ('campground', 'Campground'), ('cabin', 'Cabin'), ('apartment', 'Apartment'), ('house', 'House'), ('villa', 'Villa'), ('motel', 'Motel'), ('other', 'Other')], default='other', max_length=100)), + ('description', models.TextField(blank=True, null=True)), + ('rating', models.FloatField(blank=True, null=True)), + ('link', models.URLField(blank=True, max_length=2083, null=True)), + ('check_in', models.DateTimeField(blank=True, null=True)), + ('check_out', models.DateTimeField(blank=True, null=True)), + ('reservation_number', models.CharField(blank=True, max_length=100, null=True)), + ('price', models.DecimalField(blank=True, decimal_places=2, max_digits=9, null=True)), + ('latitude', models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True)), + ('longitude', models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True)), + ('location', models.CharField(blank=True, max_length=200, null=True)), + ('is_public', models.BooleanField(default=False)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), + ('collection', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='adventures.collection')), + ('user_id', models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + migrations.DeleteModel( + name='Hotel', + ), + ] diff --git a/backend/server/adventures/migrations/0024_alter_attachment_file.py b/backend/server/adventures/migrations/0024_alter_attachment_file.py new file mode 100644 index 0000000..e63bb0e --- /dev/null +++ b/backend/server/adventures/migrations/0024_alter_attachment_file.py @@ -0,0 +1,19 @@ +# Generated by Django 5.0.8 on 2025-03-17 01:15 + +import adventures.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0023_lodging_delete_hotel'), + ] + + operations = [ + migrations.AlterField( + model_name='attachment', + name='file', + field=models.FileField(upload_to=adventures.models.PathAndRename('attachments/'), validators=[adventures.models.validate_file_extension]), + ), + ] diff --git a/backend/server/adventures/migrations/0025_alter_visit_end_date_alter_visit_start_date.py b/backend/server/adventures/migrations/0025_alter_visit_end_date_alter_visit_start_date.py new file mode 100644 index 0000000..668e968 --- /dev/null +++ b/backend/server/adventures/migrations/0025_alter_visit_end_date_alter_visit_start_date.py @@ -0,0 +1,23 @@ +# Generated by Django 5.0.8 on 2025-03-17 21:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0024_alter_attachment_file'), + ] + + operations = [ + migrations.AlterField( + model_name='visit', + name='end_date', + field=models.DateTimeField(blank=True, null=True), + ), + migrations.AlterField( + model_name='visit', + name='start_date', + field=models.DateTimeField(blank=True, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0026_visit_timezone.py b/backend/server/adventures/migrations/0026_visit_timezone.py new file mode 100644 index 0000000..f0642dd --- /dev/null +++ b/backend/server/adventures/migrations/0026_visit_timezone.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.11 on 2025-05-10 14:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0025_alter_visit_end_date_alter_visit_start_date'), + ] + + operations = [ + migrations.AddField( + model_name='visit', + name='timezone', + field=models.CharField(blank=True, choices=[('Africa/Abidjan', 'Africa/Abidjan'), ('Africa/Accra', 'Africa/Accra'), ('Africa/Addis_Ababa', 'Africa/Addis_Ababa'), ('Africa/Algiers', 'Africa/Algiers'), ('Africa/Asmera', 'Africa/Asmera'), ('Africa/Bamako', 'Africa/Bamako'), ('Africa/Bangui', 'Africa/Bangui'), ('Africa/Banjul', 'Africa/Banjul'), ('Africa/Bissau', 'Africa/Bissau'), ('Africa/Blantyre', 'Africa/Blantyre'), ('Africa/Brazzaville', 'Africa/Brazzaville'), ('Africa/Bujumbura', 'Africa/Bujumbura'), ('Africa/Cairo', 'Africa/Cairo'), ('Africa/Casablanca', 'Africa/Casablanca'), ('Africa/Ceuta', 'Africa/Ceuta'), ('Africa/Conakry', 'Africa/Conakry'), ('Africa/Dakar', 'Africa/Dakar'), ('Africa/Dar_es_Salaam', 'Africa/Dar_es_Salaam'), ('Africa/Djibouti', 'Africa/Djibouti'), ('Africa/Douala', 'Africa/Douala'), ('Africa/El_Aaiun', 'Africa/El_Aaiun'), ('Africa/Freetown', 'Africa/Freetown'), ('Africa/Gaborone', 'Africa/Gaborone'), ('Africa/Harare', 'Africa/Harare'), ('Africa/Johannesburg', 'Africa/Johannesburg'), ('Africa/Juba', 'Africa/Juba'), ('Africa/Kampala', 'Africa/Kampala'), ('Africa/Khartoum', 'Africa/Khartoum'), ('Africa/Kigali', 'Africa/Kigali'), ('Africa/Kinshasa', 'Africa/Kinshasa'), ('Africa/Lagos', 'Africa/Lagos'), ('Africa/Libreville', 'Africa/Libreville'), ('Africa/Lome', 'Africa/Lome'), ('Africa/Luanda', 'Africa/Luanda'), ('Africa/Lubumbashi', 'Africa/Lubumbashi'), ('Africa/Lusaka', 'Africa/Lusaka'), ('Africa/Malabo', 'Africa/Malabo'), ('Africa/Maputo', 'Africa/Maputo'), ('Africa/Maseru', 'Africa/Maseru'), ('Africa/Mbabane', 'Africa/Mbabane'), ('Africa/Mogadishu', 'Africa/Mogadishu'), ('Africa/Monrovia', 'Africa/Monrovia'), ('Africa/Nairobi', 'Africa/Nairobi'), ('Africa/Ndjamena', 'Africa/Ndjamena'), ('Africa/Niamey', 'Africa/Niamey'), ('Africa/Nouakchott', 'Africa/Nouakchott'), ('Africa/Ouagadougou', 'Africa/Ouagadougou'), ('Africa/Porto-Novo', 'Africa/Porto-Novo'), ('Africa/Sao_Tome', 'Africa/Sao_Tome'), ('Africa/Tripoli', 'Africa/Tripoli'), ('Africa/Tunis', 'Africa/Tunis'), ('Africa/Windhoek', 'Africa/Windhoek'), ('America/Adak', 'America/Adak'), ('America/Anchorage', 'America/Anchorage'), ('America/Anguilla', 'America/Anguilla'), ('America/Antigua', 'America/Antigua'), ('America/Araguaina', 'America/Araguaina'), ('America/Argentina/La_Rioja', 'America/Argentina/La_Rioja'), ('America/Argentina/Rio_Gallegos', 'America/Argentina/Rio_Gallegos'), ('America/Argentina/Salta', 'America/Argentina/Salta'), ('America/Argentina/San_Juan', 'America/Argentina/San_Juan'), ('America/Argentina/San_Luis', 'America/Argentina/San_Luis'), ('America/Argentina/Tucuman', 'America/Argentina/Tucuman'), ('America/Argentina/Ushuaia', 'America/Argentina/Ushuaia'), ('America/Aruba', 'America/Aruba'), ('America/Asuncion', 'America/Asuncion'), ('America/Bahia', 'America/Bahia'), ('America/Bahia_Banderas', 'America/Bahia_Banderas'), ('America/Barbados', 'America/Barbados'), ('America/Belem', 'America/Belem'), ('America/Belize', 'America/Belize'), ('America/Blanc-Sablon', 'America/Blanc-Sablon'), ('America/Boa_Vista', 'America/Boa_Vista'), ('America/Bogota', 'America/Bogota'), ('America/Boise', 'America/Boise'), ('America/Buenos_Aires', 'America/Buenos_Aires'), ('America/Cambridge_Bay', 'America/Cambridge_Bay'), ('America/Campo_Grande', 'America/Campo_Grande'), ('America/Cancun', 'America/Cancun'), ('America/Caracas', 'America/Caracas'), ('America/Catamarca', 'America/Catamarca'), ('America/Cayenne', 'America/Cayenne'), ('America/Cayman', 'America/Cayman'), ('America/Chicago', 'America/Chicago'), ('America/Chihuahua', 'America/Chihuahua'), ('America/Ciudad_Juarez', 'America/Ciudad_Juarez'), ('America/Coral_Harbour', 'America/Coral_Harbour'), ('America/Cordoba', 'America/Cordoba'), ('America/Costa_Rica', 'America/Costa_Rica'), ('America/Creston', 'America/Creston'), ('America/Cuiaba', 'America/Cuiaba'), ('America/Curacao', 'America/Curacao'), ('America/Danmarkshavn', 'America/Danmarkshavn'), ('America/Dawson', 'America/Dawson'), ('America/Dawson_Creek', 'America/Dawson_Creek'), ('America/Denver', 'America/Denver'), ('America/Detroit', 'America/Detroit'), ('America/Dominica', 'America/Dominica'), ('America/Edmonton', 'America/Edmonton'), ('America/Eirunepe', 'America/Eirunepe'), ('America/El_Salvador', 'America/El_Salvador'), ('America/Fort_Nelson', 'America/Fort_Nelson'), ('America/Fortaleza', 'America/Fortaleza'), ('America/Glace_Bay', 'America/Glace_Bay'), ('America/Godthab', 'America/Godthab'), ('America/Goose_Bay', 'America/Goose_Bay'), ('America/Grand_Turk', 'America/Grand_Turk'), ('America/Grenada', 'America/Grenada'), ('America/Guadeloupe', 'America/Guadeloupe'), ('America/Guatemala', 'America/Guatemala'), ('America/Guayaquil', 'America/Guayaquil'), ('America/Guyana', 'America/Guyana'), ('America/Halifax', 'America/Halifax'), ('America/Havana', 'America/Havana'), ('America/Hermosillo', 'America/Hermosillo'), ('America/Indiana/Knox', 'America/Indiana/Knox'), ('America/Indiana/Marengo', 'America/Indiana/Marengo'), ('America/Indiana/Petersburg', 'America/Indiana/Petersburg'), ('America/Indiana/Tell_City', 'America/Indiana/Tell_City'), ('America/Indiana/Vevay', 'America/Indiana/Vevay'), ('America/Indiana/Vincennes', 'America/Indiana/Vincennes'), ('America/Indiana/Winamac', 'America/Indiana/Winamac'), ('America/Indianapolis', 'America/Indianapolis'), ('America/Inuvik', 'America/Inuvik'), ('America/Iqaluit', 'America/Iqaluit'), ('America/Jamaica', 'America/Jamaica'), ('America/Jujuy', 'America/Jujuy'), ('America/Juneau', 'America/Juneau'), ('America/Kentucky/Monticello', 'America/Kentucky/Monticello'), ('America/Kralendijk', 'America/Kralendijk'), ('America/La_Paz', 'America/La_Paz'), ('America/Lima', 'America/Lima'), ('America/Los_Angeles', 'America/Los_Angeles'), ('America/Louisville', 'America/Louisville'), ('America/Lower_Princes', 'America/Lower_Princes'), ('America/Maceio', 'America/Maceio'), ('America/Managua', 'America/Managua'), ('America/Manaus', 'America/Manaus'), ('America/Marigot', 'America/Marigot'), ('America/Martinique', 'America/Martinique'), ('America/Matamoros', 'America/Matamoros'), ('America/Mazatlan', 'America/Mazatlan'), ('America/Mendoza', 'America/Mendoza'), ('America/Menominee', 'America/Menominee'), ('America/Merida', 'America/Merida'), ('America/Metlakatla', 'America/Metlakatla'), ('America/Mexico_City', 'America/Mexico_City'), ('America/Miquelon', 'America/Miquelon'), ('America/Moncton', 'America/Moncton'), ('America/Monterrey', 'America/Monterrey'), ('America/Montevideo', 'America/Montevideo'), ('America/Montserrat', 'America/Montserrat'), ('America/Nassau', 'America/Nassau'), ('America/New_York', 'America/New_York'), ('America/Nome', 'America/Nome'), ('America/Noronha', 'America/Noronha'), ('America/North_Dakota/Beulah', 'America/North_Dakota/Beulah'), ('America/North_Dakota/Center', 'America/North_Dakota/Center'), ('America/North_Dakota/New_Salem', 'America/North_Dakota/New_Salem'), ('America/Ojinaga', 'America/Ojinaga'), ('America/Panama', 'America/Panama'), ('America/Paramaribo', 'America/Paramaribo'), ('America/Phoenix', 'America/Phoenix'), ('America/Port-au-Prince', 'America/Port-au-Prince'), ('America/Port_of_Spain', 'America/Port_of_Spain'), ('America/Porto_Velho', 'America/Porto_Velho'), ('America/Puerto_Rico', 'America/Puerto_Rico'), ('America/Punta_Arenas', 'America/Punta_Arenas'), ('America/Rankin_Inlet', 'America/Rankin_Inlet'), ('America/Recife', 'America/Recife'), ('America/Regina', 'America/Regina'), ('America/Resolute', 'America/Resolute'), ('America/Rio_Branco', 'America/Rio_Branco'), ('America/Santarem', 'America/Santarem'), ('America/Santiago', 'America/Santiago'), ('America/Santo_Domingo', 'America/Santo_Domingo'), ('America/Sao_Paulo', 'America/Sao_Paulo'), ('America/Scoresbysund', 'America/Scoresbysund'), ('America/Sitka', 'America/Sitka'), ('America/St_Barthelemy', 'America/St_Barthelemy'), ('America/St_Johns', 'America/St_Johns'), ('America/St_Kitts', 'America/St_Kitts'), ('America/St_Lucia', 'America/St_Lucia'), ('America/St_Thomas', 'America/St_Thomas'), ('America/St_Vincent', 'America/St_Vincent'), ('America/Swift_Current', 'America/Swift_Current'), ('America/Tegucigalpa', 'America/Tegucigalpa'), ('America/Thule', 'America/Thule'), ('America/Tijuana', 'America/Tijuana'), ('America/Toronto', 'America/Toronto'), ('America/Tortola', 'America/Tortola'), ('America/Vancouver', 'America/Vancouver'), ('America/Whitehorse', 'America/Whitehorse'), ('America/Winnipeg', 'America/Winnipeg'), ('America/Yakutat', 'America/Yakutat'), ('Antarctica/Casey', 'Antarctica/Casey'), ('Antarctica/Davis', 'Antarctica/Davis'), ('Antarctica/DumontDUrville', 'Antarctica/DumontDUrville'), ('Antarctica/Macquarie', 'Antarctica/Macquarie'), ('Antarctica/Mawson', 'Antarctica/Mawson'), ('Antarctica/McMurdo', 'Antarctica/McMurdo'), ('Antarctica/Palmer', 'Antarctica/Palmer'), ('Antarctica/Rothera', 'Antarctica/Rothera'), ('Antarctica/Syowa', 'Antarctica/Syowa'), ('Antarctica/Troll', 'Antarctica/Troll'), ('Antarctica/Vostok', 'Antarctica/Vostok'), ('Arctic/Longyearbyen', 'Arctic/Longyearbyen'), ('Asia/Aden', 'Asia/Aden'), ('Asia/Almaty', 'Asia/Almaty'), ('Asia/Amman', 'Asia/Amman'), ('Asia/Anadyr', 'Asia/Anadyr'), ('Asia/Aqtau', 'Asia/Aqtau'), ('Asia/Aqtobe', 'Asia/Aqtobe'), ('Asia/Ashgabat', 'Asia/Ashgabat'), ('Asia/Atyrau', 'Asia/Atyrau'), ('Asia/Baghdad', 'Asia/Baghdad'), ('Asia/Bahrain', 'Asia/Bahrain'), ('Asia/Baku', 'Asia/Baku'), ('Asia/Bangkok', 'Asia/Bangkok'), ('Asia/Barnaul', 'Asia/Barnaul'), ('Asia/Beirut', 'Asia/Beirut'), ('Asia/Bishkek', 'Asia/Bishkek'), ('Asia/Brunei', 'Asia/Brunei'), ('Asia/Calcutta', 'Asia/Calcutta'), ('Asia/Chita', 'Asia/Chita'), ('Asia/Colombo', 'Asia/Colombo'), ('Asia/Damascus', 'Asia/Damascus'), ('Asia/Dhaka', 'Asia/Dhaka'), ('Asia/Dili', 'Asia/Dili'), ('Asia/Dubai', 'Asia/Dubai'), ('Asia/Dushanbe', 'Asia/Dushanbe'), ('Asia/Famagusta', 'Asia/Famagusta'), ('Asia/Gaza', 'Asia/Gaza'), ('Asia/Hebron', 'Asia/Hebron'), ('Asia/Hong_Kong', 'Asia/Hong_Kong'), ('Asia/Hovd', 'Asia/Hovd'), ('Asia/Irkutsk', 'Asia/Irkutsk'), ('Asia/Jakarta', 'Asia/Jakarta'), ('Asia/Jayapura', 'Asia/Jayapura'), ('Asia/Jerusalem', 'Asia/Jerusalem'), ('Asia/Kabul', 'Asia/Kabul'), ('Asia/Kamchatka', 'Asia/Kamchatka'), ('Asia/Karachi', 'Asia/Karachi'), ('Asia/Katmandu', 'Asia/Katmandu'), ('Asia/Khandyga', 'Asia/Khandyga'), ('Asia/Krasnoyarsk', 'Asia/Krasnoyarsk'), ('Asia/Kuala_Lumpur', 'Asia/Kuala_Lumpur'), ('Asia/Kuching', 'Asia/Kuching'), ('Asia/Kuwait', 'Asia/Kuwait'), ('Asia/Macau', 'Asia/Macau'), ('Asia/Magadan', 'Asia/Magadan'), ('Asia/Makassar', 'Asia/Makassar'), ('Asia/Manila', 'Asia/Manila'), ('Asia/Muscat', 'Asia/Muscat'), ('Asia/Nicosia', 'Asia/Nicosia'), ('Asia/Novokuznetsk', 'Asia/Novokuznetsk'), ('Asia/Novosibirsk', 'Asia/Novosibirsk'), ('Asia/Omsk', 'Asia/Omsk'), ('Asia/Oral', 'Asia/Oral'), ('Asia/Phnom_Penh', 'Asia/Phnom_Penh'), ('Asia/Pontianak', 'Asia/Pontianak'), ('Asia/Pyongyang', 'Asia/Pyongyang'), ('Asia/Qatar', 'Asia/Qatar'), ('Asia/Qostanay', 'Asia/Qostanay'), ('Asia/Qyzylorda', 'Asia/Qyzylorda'), ('Asia/Rangoon', 'Asia/Rangoon'), ('Asia/Riyadh', 'Asia/Riyadh'), ('Asia/Saigon', 'Asia/Saigon'), ('Asia/Sakhalin', 'Asia/Sakhalin'), ('Asia/Samarkand', 'Asia/Samarkand'), ('Asia/Seoul', 'Asia/Seoul'), ('Asia/Shanghai', 'Asia/Shanghai'), ('Asia/Singapore', 'Asia/Singapore'), ('Asia/Srednekolymsk', 'Asia/Srednekolymsk'), ('Asia/Taipei', 'Asia/Taipei'), ('Asia/Tashkent', 'Asia/Tashkent'), ('Asia/Tbilisi', 'Asia/Tbilisi'), ('Asia/Tehran', 'Asia/Tehran'), ('Asia/Thimphu', 'Asia/Thimphu'), ('Asia/Tokyo', 'Asia/Tokyo'), ('Asia/Tomsk', 'Asia/Tomsk'), ('Asia/Ulaanbaatar', 'Asia/Ulaanbaatar'), ('Asia/Urumqi', 'Asia/Urumqi'), ('Asia/Ust-Nera', 'Asia/Ust-Nera'), ('Asia/Vientiane', 'Asia/Vientiane'), ('Asia/Vladivostok', 'Asia/Vladivostok'), ('Asia/Yakutsk', 'Asia/Yakutsk'), ('Asia/Yekaterinburg', 'Asia/Yekaterinburg'), ('Asia/Yerevan', 'Asia/Yerevan'), ('Atlantic/Azores', 'Atlantic/Azores'), ('Atlantic/Bermuda', 'Atlantic/Bermuda'), ('Atlantic/Canary', 'Atlantic/Canary'), ('Atlantic/Cape_Verde', 'Atlantic/Cape_Verde'), ('Atlantic/Faeroe', 'Atlantic/Faeroe'), ('Atlantic/Madeira', 'Atlantic/Madeira'), ('Atlantic/Reykjavik', 'Atlantic/Reykjavik'), ('Atlantic/South_Georgia', 'Atlantic/South_Georgia'), ('Atlantic/St_Helena', 'Atlantic/St_Helena'), ('Atlantic/Stanley', 'Atlantic/Stanley'), ('Australia/Adelaide', 'Australia/Adelaide'), ('Australia/Brisbane', 'Australia/Brisbane'), ('Australia/Broken_Hill', 'Australia/Broken_Hill'), ('Australia/Darwin', 'Australia/Darwin'), ('Australia/Eucla', 'Australia/Eucla'), ('Australia/Hobart', 'Australia/Hobart'), ('Australia/Lindeman', 'Australia/Lindeman'), ('Australia/Lord_Howe', 'Australia/Lord_Howe'), ('Australia/Melbourne', 'Australia/Melbourne'), ('Australia/Perth', 'Australia/Perth'), ('Australia/Sydney', 'Australia/Sydney'), ('Europe/Amsterdam', 'Europe/Amsterdam'), ('Europe/Andorra', 'Europe/Andorra'), ('Europe/Astrakhan', 'Europe/Astrakhan'), ('Europe/Athens', 'Europe/Athens'), ('Europe/Belgrade', 'Europe/Belgrade'), ('Europe/Berlin', 'Europe/Berlin'), ('Europe/Bratislava', 'Europe/Bratislava'), ('Europe/Brussels', 'Europe/Brussels'), ('Europe/Bucharest', 'Europe/Bucharest'), ('Europe/Budapest', 'Europe/Budapest'), ('Europe/Busingen', 'Europe/Busingen'), ('Europe/Chisinau', 'Europe/Chisinau'), ('Europe/Copenhagen', 'Europe/Copenhagen'), ('Europe/Dublin', 'Europe/Dublin'), ('Europe/Gibraltar', 'Europe/Gibraltar'), ('Europe/Guernsey', 'Europe/Guernsey'), ('Europe/Helsinki', 'Europe/Helsinki'), ('Europe/Isle_of_Man', 'Europe/Isle_of_Man'), ('Europe/Istanbul', 'Europe/Istanbul'), ('Europe/Jersey', 'Europe/Jersey'), ('Europe/Kaliningrad', 'Europe/Kaliningrad'), ('Europe/Kiev', 'Europe/Kiev'), ('Europe/Kirov', 'Europe/Kirov'), ('Europe/Lisbon', 'Europe/Lisbon'), ('Europe/Ljubljana', 'Europe/Ljubljana'), ('Europe/London', 'Europe/London'), ('Europe/Luxembourg', 'Europe/Luxembourg'), ('Europe/Madrid', 'Europe/Madrid'), ('Europe/Malta', 'Europe/Malta'), ('Europe/Mariehamn', 'Europe/Mariehamn'), ('Europe/Minsk', 'Europe/Minsk'), ('Europe/Monaco', 'Europe/Monaco'), ('Europe/Moscow', 'Europe/Moscow'), ('Europe/Oslo', 'Europe/Oslo'), ('Europe/Paris', 'Europe/Paris'), ('Europe/Podgorica', 'Europe/Podgorica'), ('Europe/Prague', 'Europe/Prague'), ('Europe/Riga', 'Europe/Riga'), ('Europe/Rome', 'Europe/Rome'), ('Europe/Samara', 'Europe/Samara'), ('Europe/San_Marino', 'Europe/San_Marino'), ('Europe/Sarajevo', 'Europe/Sarajevo'), ('Europe/Saratov', 'Europe/Saratov'), ('Europe/Simferopol', 'Europe/Simferopol'), ('Europe/Skopje', 'Europe/Skopje'), ('Europe/Sofia', 'Europe/Sofia'), ('Europe/Stockholm', 'Europe/Stockholm'), ('Europe/Tallinn', 'Europe/Tallinn'), ('Europe/Tirane', 'Europe/Tirane'), ('Europe/Ulyanovsk', 'Europe/Ulyanovsk'), ('Europe/Vaduz', 'Europe/Vaduz'), ('Europe/Vatican', 'Europe/Vatican'), ('Europe/Vienna', 'Europe/Vienna'), ('Europe/Vilnius', 'Europe/Vilnius'), ('Europe/Volgograd', 'Europe/Volgograd'), ('Europe/Warsaw', 'Europe/Warsaw'), ('Europe/Zagreb', 'Europe/Zagreb'), ('Europe/Zurich', 'Europe/Zurich'), ('Indian/Antananarivo', 'Indian/Antananarivo'), ('Indian/Chagos', 'Indian/Chagos'), ('Indian/Christmas', 'Indian/Christmas'), ('Indian/Cocos', 'Indian/Cocos'), ('Indian/Comoro', 'Indian/Comoro'), ('Indian/Kerguelen', 'Indian/Kerguelen'), ('Indian/Mahe', 'Indian/Mahe'), ('Indian/Maldives', 'Indian/Maldives'), ('Indian/Mauritius', 'Indian/Mauritius'), ('Indian/Mayotte', 'Indian/Mayotte'), ('Indian/Reunion', 'Indian/Reunion'), ('Pacific/Apia', 'Pacific/Apia'), ('Pacific/Auckland', 'Pacific/Auckland'), ('Pacific/Bougainville', 'Pacific/Bougainville'), ('Pacific/Chatham', 'Pacific/Chatham'), ('Pacific/Easter', 'Pacific/Easter'), ('Pacific/Efate', 'Pacific/Efate'), ('Pacific/Enderbury', 'Pacific/Enderbury'), ('Pacific/Fakaofo', 'Pacific/Fakaofo'), ('Pacific/Fiji', 'Pacific/Fiji'), ('Pacific/Funafuti', 'Pacific/Funafuti'), ('Pacific/Galapagos', 'Pacific/Galapagos'), ('Pacific/Gambier', 'Pacific/Gambier'), ('Pacific/Guadalcanal', 'Pacific/Guadalcanal'), ('Pacific/Guam', 'Pacific/Guam'), ('Pacific/Honolulu', 'Pacific/Honolulu'), ('Pacific/Kiritimati', 'Pacific/Kiritimati'), ('Pacific/Kosrae', 'Pacific/Kosrae'), ('Pacific/Kwajalein', 'Pacific/Kwajalein'), ('Pacific/Majuro', 'Pacific/Majuro'), ('Pacific/Marquesas', 'Pacific/Marquesas'), ('Pacific/Midway', 'Pacific/Midway'), ('Pacific/Nauru', 'Pacific/Nauru'), ('Pacific/Niue', 'Pacific/Niue'), ('Pacific/Norfolk', 'Pacific/Norfolk'), ('Pacific/Noumea', 'Pacific/Noumea'), ('Pacific/Pago_Pago', 'Pacific/Pago_Pago'), ('Pacific/Palau', 'Pacific/Palau'), ('Pacific/Pitcairn', 'Pacific/Pitcairn'), ('Pacific/Ponape', 'Pacific/Ponape'), ('Pacific/Port_Moresby', 'Pacific/Port_Moresby'), ('Pacific/Rarotonga', 'Pacific/Rarotonga'), ('Pacific/Saipan', 'Pacific/Saipan'), ('Pacific/Tahiti', 'Pacific/Tahiti'), ('Pacific/Tarawa', 'Pacific/Tarawa'), ('Pacific/Tongatapu', 'Pacific/Tongatapu'), ('Pacific/Truk', 'Pacific/Truk'), ('Pacific/Wake', 'Pacific/Wake'), ('Pacific/Wallis', 'Pacific/Wallis')], max_length=50, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0027_transportation_end_timezone_and_more.py b/backend/server/adventures/migrations/0027_transportation_end_timezone_and_more.py new file mode 100644 index 0000000..6331225 --- /dev/null +++ b/backend/server/adventures/migrations/0027_transportation_end_timezone_and_more.py @@ -0,0 +1,23 @@ +# Generated by Django 5.0.11 on 2025-05-10 15:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0026_visit_timezone'), + ] + + operations = [ + migrations.AddField( + model_name='transportation', + name='end_timezone', + field=models.CharField(blank=True, choices=[('Africa/Abidjan', 'Africa/Abidjan'), ('Africa/Accra', 'Africa/Accra'), ('Africa/Addis_Ababa', 'Africa/Addis_Ababa'), ('Africa/Algiers', 'Africa/Algiers'), ('Africa/Asmera', 'Africa/Asmera'), ('Africa/Bamako', 'Africa/Bamako'), ('Africa/Bangui', 'Africa/Bangui'), ('Africa/Banjul', 'Africa/Banjul'), ('Africa/Bissau', 'Africa/Bissau'), ('Africa/Blantyre', 'Africa/Blantyre'), ('Africa/Brazzaville', 'Africa/Brazzaville'), ('Africa/Bujumbura', 'Africa/Bujumbura'), ('Africa/Cairo', 'Africa/Cairo'), ('Africa/Casablanca', 'Africa/Casablanca'), ('Africa/Ceuta', 'Africa/Ceuta'), ('Africa/Conakry', 'Africa/Conakry'), ('Africa/Dakar', 'Africa/Dakar'), ('Africa/Dar_es_Salaam', 'Africa/Dar_es_Salaam'), ('Africa/Djibouti', 'Africa/Djibouti'), ('Africa/Douala', 'Africa/Douala'), ('Africa/El_Aaiun', 'Africa/El_Aaiun'), ('Africa/Freetown', 'Africa/Freetown'), ('Africa/Gaborone', 'Africa/Gaborone'), ('Africa/Harare', 'Africa/Harare'), ('Africa/Johannesburg', 'Africa/Johannesburg'), ('Africa/Juba', 'Africa/Juba'), ('Africa/Kampala', 'Africa/Kampala'), ('Africa/Khartoum', 'Africa/Khartoum'), ('Africa/Kigali', 'Africa/Kigali'), ('Africa/Kinshasa', 'Africa/Kinshasa'), ('Africa/Lagos', 'Africa/Lagos'), ('Africa/Libreville', 'Africa/Libreville'), ('Africa/Lome', 'Africa/Lome'), ('Africa/Luanda', 'Africa/Luanda'), ('Africa/Lubumbashi', 'Africa/Lubumbashi'), ('Africa/Lusaka', 'Africa/Lusaka'), ('Africa/Malabo', 'Africa/Malabo'), ('Africa/Maputo', 'Africa/Maputo'), ('Africa/Maseru', 'Africa/Maseru'), ('Africa/Mbabane', 'Africa/Mbabane'), ('Africa/Mogadishu', 'Africa/Mogadishu'), ('Africa/Monrovia', 'Africa/Monrovia'), ('Africa/Nairobi', 'Africa/Nairobi'), ('Africa/Ndjamena', 'Africa/Ndjamena'), ('Africa/Niamey', 'Africa/Niamey'), ('Africa/Nouakchott', 'Africa/Nouakchott'), ('Africa/Ouagadougou', 'Africa/Ouagadougou'), ('Africa/Porto-Novo', 'Africa/Porto-Novo'), ('Africa/Sao_Tome', 'Africa/Sao_Tome'), ('Africa/Tripoli', 'Africa/Tripoli'), ('Africa/Tunis', 'Africa/Tunis'), ('Africa/Windhoek', 'Africa/Windhoek'), ('America/Adak', 'America/Adak'), ('America/Anchorage', 'America/Anchorage'), ('America/Anguilla', 'America/Anguilla'), ('America/Antigua', 'America/Antigua'), ('America/Araguaina', 'America/Araguaina'), ('America/Argentina/La_Rioja', 'America/Argentina/La_Rioja'), ('America/Argentina/Rio_Gallegos', 'America/Argentina/Rio_Gallegos'), ('America/Argentina/Salta', 'America/Argentina/Salta'), ('America/Argentina/San_Juan', 'America/Argentina/San_Juan'), ('America/Argentina/San_Luis', 'America/Argentina/San_Luis'), ('America/Argentina/Tucuman', 'America/Argentina/Tucuman'), ('America/Argentina/Ushuaia', 'America/Argentina/Ushuaia'), ('America/Aruba', 'America/Aruba'), ('America/Asuncion', 'America/Asuncion'), ('America/Bahia', 'America/Bahia'), ('America/Bahia_Banderas', 'America/Bahia_Banderas'), ('America/Barbados', 'America/Barbados'), ('America/Belem', 'America/Belem'), ('America/Belize', 'America/Belize'), ('America/Blanc-Sablon', 'America/Blanc-Sablon'), ('America/Boa_Vista', 'America/Boa_Vista'), ('America/Bogota', 'America/Bogota'), ('America/Boise', 'America/Boise'), ('America/Buenos_Aires', 'America/Buenos_Aires'), ('America/Cambridge_Bay', 'America/Cambridge_Bay'), ('America/Campo_Grande', 'America/Campo_Grande'), ('America/Cancun', 'America/Cancun'), ('America/Caracas', 'America/Caracas'), ('America/Catamarca', 'America/Catamarca'), ('America/Cayenne', 'America/Cayenne'), ('America/Cayman', 'America/Cayman'), ('America/Chicago', 'America/Chicago'), ('America/Chihuahua', 'America/Chihuahua'), ('America/Ciudad_Juarez', 'America/Ciudad_Juarez'), ('America/Coral_Harbour', 'America/Coral_Harbour'), ('America/Cordoba', 'America/Cordoba'), ('America/Costa_Rica', 'America/Costa_Rica'), ('America/Creston', 'America/Creston'), ('America/Cuiaba', 'America/Cuiaba'), ('America/Curacao', 'America/Curacao'), ('America/Danmarkshavn', 'America/Danmarkshavn'), ('America/Dawson', 'America/Dawson'), ('America/Dawson_Creek', 'America/Dawson_Creek'), ('America/Denver', 'America/Denver'), ('America/Detroit', 'America/Detroit'), ('America/Dominica', 'America/Dominica'), ('America/Edmonton', 'America/Edmonton'), ('America/Eirunepe', 'America/Eirunepe'), ('America/El_Salvador', 'America/El_Salvador'), ('America/Fort_Nelson', 'America/Fort_Nelson'), ('America/Fortaleza', 'America/Fortaleza'), ('America/Glace_Bay', 'America/Glace_Bay'), ('America/Godthab', 'America/Godthab'), ('America/Goose_Bay', 'America/Goose_Bay'), ('America/Grand_Turk', 'America/Grand_Turk'), ('America/Grenada', 'America/Grenada'), ('America/Guadeloupe', 'America/Guadeloupe'), ('America/Guatemala', 'America/Guatemala'), ('America/Guayaquil', 'America/Guayaquil'), ('America/Guyana', 'America/Guyana'), ('America/Halifax', 'America/Halifax'), ('America/Havana', 'America/Havana'), ('America/Hermosillo', 'America/Hermosillo'), ('America/Indiana/Knox', 'America/Indiana/Knox'), ('America/Indiana/Marengo', 'America/Indiana/Marengo'), ('America/Indiana/Petersburg', 'America/Indiana/Petersburg'), ('America/Indiana/Tell_City', 'America/Indiana/Tell_City'), ('America/Indiana/Vevay', 'America/Indiana/Vevay'), ('America/Indiana/Vincennes', 'America/Indiana/Vincennes'), ('America/Indiana/Winamac', 'America/Indiana/Winamac'), ('America/Indianapolis', 'America/Indianapolis'), ('America/Inuvik', 'America/Inuvik'), ('America/Iqaluit', 'America/Iqaluit'), ('America/Jamaica', 'America/Jamaica'), ('America/Jujuy', 'America/Jujuy'), ('America/Juneau', 'America/Juneau'), ('America/Kentucky/Monticello', 'America/Kentucky/Monticello'), ('America/Kralendijk', 'America/Kralendijk'), ('America/La_Paz', 'America/La_Paz'), ('America/Lima', 'America/Lima'), ('America/Los_Angeles', 'America/Los_Angeles'), ('America/Louisville', 'America/Louisville'), ('America/Lower_Princes', 'America/Lower_Princes'), ('America/Maceio', 'America/Maceio'), ('America/Managua', 'America/Managua'), ('America/Manaus', 'America/Manaus'), ('America/Marigot', 'America/Marigot'), ('America/Martinique', 'America/Martinique'), ('America/Matamoros', 'America/Matamoros'), ('America/Mazatlan', 'America/Mazatlan'), ('America/Mendoza', 'America/Mendoza'), ('America/Menominee', 'America/Menominee'), ('America/Merida', 'America/Merida'), ('America/Metlakatla', 'America/Metlakatla'), ('America/Mexico_City', 'America/Mexico_City'), ('America/Miquelon', 'America/Miquelon'), ('America/Moncton', 'America/Moncton'), ('America/Monterrey', 'America/Monterrey'), ('America/Montevideo', 'America/Montevideo'), ('America/Montserrat', 'America/Montserrat'), ('America/Nassau', 'America/Nassau'), ('America/New_York', 'America/New_York'), ('America/Nome', 'America/Nome'), ('America/Noronha', 'America/Noronha'), ('America/North_Dakota/Beulah', 'America/North_Dakota/Beulah'), ('America/North_Dakota/Center', 'America/North_Dakota/Center'), ('America/North_Dakota/New_Salem', 'America/North_Dakota/New_Salem'), ('America/Ojinaga', 'America/Ojinaga'), ('America/Panama', 'America/Panama'), ('America/Paramaribo', 'America/Paramaribo'), ('America/Phoenix', 'America/Phoenix'), ('America/Port-au-Prince', 'America/Port-au-Prince'), ('America/Port_of_Spain', 'America/Port_of_Spain'), ('America/Porto_Velho', 'America/Porto_Velho'), ('America/Puerto_Rico', 'America/Puerto_Rico'), ('America/Punta_Arenas', 'America/Punta_Arenas'), ('America/Rankin_Inlet', 'America/Rankin_Inlet'), ('America/Recife', 'America/Recife'), ('America/Regina', 'America/Regina'), ('America/Resolute', 'America/Resolute'), ('America/Rio_Branco', 'America/Rio_Branco'), ('America/Santarem', 'America/Santarem'), ('America/Santiago', 'America/Santiago'), ('America/Santo_Domingo', 'America/Santo_Domingo'), ('America/Sao_Paulo', 'America/Sao_Paulo'), ('America/Scoresbysund', 'America/Scoresbysund'), ('America/Sitka', 'America/Sitka'), ('America/St_Barthelemy', 'America/St_Barthelemy'), ('America/St_Johns', 'America/St_Johns'), ('America/St_Kitts', 'America/St_Kitts'), ('America/St_Lucia', 'America/St_Lucia'), ('America/St_Thomas', 'America/St_Thomas'), ('America/St_Vincent', 'America/St_Vincent'), ('America/Swift_Current', 'America/Swift_Current'), ('America/Tegucigalpa', 'America/Tegucigalpa'), ('America/Thule', 'America/Thule'), ('America/Tijuana', 'America/Tijuana'), ('America/Toronto', 'America/Toronto'), ('America/Tortola', 'America/Tortola'), ('America/Vancouver', 'America/Vancouver'), ('America/Whitehorse', 'America/Whitehorse'), ('America/Winnipeg', 'America/Winnipeg'), ('America/Yakutat', 'America/Yakutat'), ('Antarctica/Casey', 'Antarctica/Casey'), ('Antarctica/Davis', 'Antarctica/Davis'), ('Antarctica/DumontDUrville', 'Antarctica/DumontDUrville'), ('Antarctica/Macquarie', 'Antarctica/Macquarie'), ('Antarctica/Mawson', 'Antarctica/Mawson'), ('Antarctica/McMurdo', 'Antarctica/McMurdo'), ('Antarctica/Palmer', 'Antarctica/Palmer'), ('Antarctica/Rothera', 'Antarctica/Rothera'), ('Antarctica/Syowa', 'Antarctica/Syowa'), ('Antarctica/Troll', 'Antarctica/Troll'), ('Antarctica/Vostok', 'Antarctica/Vostok'), ('Arctic/Longyearbyen', 'Arctic/Longyearbyen'), ('Asia/Aden', 'Asia/Aden'), ('Asia/Almaty', 'Asia/Almaty'), ('Asia/Amman', 'Asia/Amman'), ('Asia/Anadyr', 'Asia/Anadyr'), ('Asia/Aqtau', 'Asia/Aqtau'), ('Asia/Aqtobe', 'Asia/Aqtobe'), ('Asia/Ashgabat', 'Asia/Ashgabat'), ('Asia/Atyrau', 'Asia/Atyrau'), ('Asia/Baghdad', 'Asia/Baghdad'), ('Asia/Bahrain', 'Asia/Bahrain'), ('Asia/Baku', 'Asia/Baku'), ('Asia/Bangkok', 'Asia/Bangkok'), ('Asia/Barnaul', 'Asia/Barnaul'), ('Asia/Beirut', 'Asia/Beirut'), ('Asia/Bishkek', 'Asia/Bishkek'), ('Asia/Brunei', 'Asia/Brunei'), ('Asia/Calcutta', 'Asia/Calcutta'), ('Asia/Chita', 'Asia/Chita'), ('Asia/Colombo', 'Asia/Colombo'), ('Asia/Damascus', 'Asia/Damascus'), ('Asia/Dhaka', 'Asia/Dhaka'), ('Asia/Dili', 'Asia/Dili'), ('Asia/Dubai', 'Asia/Dubai'), ('Asia/Dushanbe', 'Asia/Dushanbe'), ('Asia/Famagusta', 'Asia/Famagusta'), ('Asia/Gaza', 'Asia/Gaza'), ('Asia/Hebron', 'Asia/Hebron'), ('Asia/Hong_Kong', 'Asia/Hong_Kong'), ('Asia/Hovd', 'Asia/Hovd'), ('Asia/Irkutsk', 'Asia/Irkutsk'), ('Asia/Jakarta', 'Asia/Jakarta'), ('Asia/Jayapura', 'Asia/Jayapura'), ('Asia/Jerusalem', 'Asia/Jerusalem'), ('Asia/Kabul', 'Asia/Kabul'), ('Asia/Kamchatka', 'Asia/Kamchatka'), ('Asia/Karachi', 'Asia/Karachi'), ('Asia/Katmandu', 'Asia/Katmandu'), ('Asia/Khandyga', 'Asia/Khandyga'), ('Asia/Krasnoyarsk', 'Asia/Krasnoyarsk'), ('Asia/Kuala_Lumpur', 'Asia/Kuala_Lumpur'), ('Asia/Kuching', 'Asia/Kuching'), ('Asia/Kuwait', 'Asia/Kuwait'), ('Asia/Macau', 'Asia/Macau'), ('Asia/Magadan', 'Asia/Magadan'), ('Asia/Makassar', 'Asia/Makassar'), ('Asia/Manila', 'Asia/Manila'), ('Asia/Muscat', 'Asia/Muscat'), ('Asia/Nicosia', 'Asia/Nicosia'), ('Asia/Novokuznetsk', 'Asia/Novokuznetsk'), ('Asia/Novosibirsk', 'Asia/Novosibirsk'), ('Asia/Omsk', 'Asia/Omsk'), ('Asia/Oral', 'Asia/Oral'), ('Asia/Phnom_Penh', 'Asia/Phnom_Penh'), ('Asia/Pontianak', 'Asia/Pontianak'), ('Asia/Pyongyang', 'Asia/Pyongyang'), ('Asia/Qatar', 'Asia/Qatar'), ('Asia/Qostanay', 'Asia/Qostanay'), ('Asia/Qyzylorda', 'Asia/Qyzylorda'), ('Asia/Rangoon', 'Asia/Rangoon'), ('Asia/Riyadh', 'Asia/Riyadh'), ('Asia/Saigon', 'Asia/Saigon'), ('Asia/Sakhalin', 'Asia/Sakhalin'), ('Asia/Samarkand', 'Asia/Samarkand'), ('Asia/Seoul', 'Asia/Seoul'), ('Asia/Shanghai', 'Asia/Shanghai'), ('Asia/Singapore', 'Asia/Singapore'), ('Asia/Srednekolymsk', 'Asia/Srednekolymsk'), ('Asia/Taipei', 'Asia/Taipei'), ('Asia/Tashkent', 'Asia/Tashkent'), ('Asia/Tbilisi', 'Asia/Tbilisi'), ('Asia/Tehran', 'Asia/Tehran'), ('Asia/Thimphu', 'Asia/Thimphu'), ('Asia/Tokyo', 'Asia/Tokyo'), ('Asia/Tomsk', 'Asia/Tomsk'), ('Asia/Ulaanbaatar', 'Asia/Ulaanbaatar'), ('Asia/Urumqi', 'Asia/Urumqi'), ('Asia/Ust-Nera', 'Asia/Ust-Nera'), ('Asia/Vientiane', 'Asia/Vientiane'), ('Asia/Vladivostok', 'Asia/Vladivostok'), ('Asia/Yakutsk', 'Asia/Yakutsk'), ('Asia/Yekaterinburg', 'Asia/Yekaterinburg'), ('Asia/Yerevan', 'Asia/Yerevan'), ('Atlantic/Azores', 'Atlantic/Azores'), ('Atlantic/Bermuda', 'Atlantic/Bermuda'), ('Atlantic/Canary', 'Atlantic/Canary'), ('Atlantic/Cape_Verde', 'Atlantic/Cape_Verde'), ('Atlantic/Faeroe', 'Atlantic/Faeroe'), ('Atlantic/Madeira', 'Atlantic/Madeira'), ('Atlantic/Reykjavik', 'Atlantic/Reykjavik'), ('Atlantic/South_Georgia', 'Atlantic/South_Georgia'), ('Atlantic/St_Helena', 'Atlantic/St_Helena'), ('Atlantic/Stanley', 'Atlantic/Stanley'), ('Australia/Adelaide', 'Australia/Adelaide'), ('Australia/Brisbane', 'Australia/Brisbane'), ('Australia/Broken_Hill', 'Australia/Broken_Hill'), ('Australia/Darwin', 'Australia/Darwin'), ('Australia/Eucla', 'Australia/Eucla'), ('Australia/Hobart', 'Australia/Hobart'), ('Australia/Lindeman', 'Australia/Lindeman'), ('Australia/Lord_Howe', 'Australia/Lord_Howe'), ('Australia/Melbourne', 'Australia/Melbourne'), ('Australia/Perth', 'Australia/Perth'), ('Australia/Sydney', 'Australia/Sydney'), ('Europe/Amsterdam', 'Europe/Amsterdam'), ('Europe/Andorra', 'Europe/Andorra'), ('Europe/Astrakhan', 'Europe/Astrakhan'), ('Europe/Athens', 'Europe/Athens'), ('Europe/Belgrade', 'Europe/Belgrade'), ('Europe/Berlin', 'Europe/Berlin'), ('Europe/Bratislava', 'Europe/Bratislava'), ('Europe/Brussels', 'Europe/Brussels'), ('Europe/Bucharest', 'Europe/Bucharest'), ('Europe/Budapest', 'Europe/Budapest'), ('Europe/Busingen', 'Europe/Busingen'), ('Europe/Chisinau', 'Europe/Chisinau'), ('Europe/Copenhagen', 'Europe/Copenhagen'), ('Europe/Dublin', 'Europe/Dublin'), ('Europe/Gibraltar', 'Europe/Gibraltar'), ('Europe/Guernsey', 'Europe/Guernsey'), ('Europe/Helsinki', 'Europe/Helsinki'), ('Europe/Isle_of_Man', 'Europe/Isle_of_Man'), ('Europe/Istanbul', 'Europe/Istanbul'), ('Europe/Jersey', 'Europe/Jersey'), ('Europe/Kaliningrad', 'Europe/Kaliningrad'), ('Europe/Kiev', 'Europe/Kiev'), ('Europe/Kirov', 'Europe/Kirov'), ('Europe/Lisbon', 'Europe/Lisbon'), ('Europe/Ljubljana', 'Europe/Ljubljana'), ('Europe/London', 'Europe/London'), ('Europe/Luxembourg', 'Europe/Luxembourg'), ('Europe/Madrid', 'Europe/Madrid'), ('Europe/Malta', 'Europe/Malta'), ('Europe/Mariehamn', 'Europe/Mariehamn'), ('Europe/Minsk', 'Europe/Minsk'), ('Europe/Monaco', 'Europe/Monaco'), ('Europe/Moscow', 'Europe/Moscow'), ('Europe/Oslo', 'Europe/Oslo'), ('Europe/Paris', 'Europe/Paris'), ('Europe/Podgorica', 'Europe/Podgorica'), ('Europe/Prague', 'Europe/Prague'), ('Europe/Riga', 'Europe/Riga'), ('Europe/Rome', 'Europe/Rome'), ('Europe/Samara', 'Europe/Samara'), ('Europe/San_Marino', 'Europe/San_Marino'), ('Europe/Sarajevo', 'Europe/Sarajevo'), ('Europe/Saratov', 'Europe/Saratov'), ('Europe/Simferopol', 'Europe/Simferopol'), ('Europe/Skopje', 'Europe/Skopje'), ('Europe/Sofia', 'Europe/Sofia'), ('Europe/Stockholm', 'Europe/Stockholm'), ('Europe/Tallinn', 'Europe/Tallinn'), ('Europe/Tirane', 'Europe/Tirane'), ('Europe/Ulyanovsk', 'Europe/Ulyanovsk'), ('Europe/Vaduz', 'Europe/Vaduz'), ('Europe/Vatican', 'Europe/Vatican'), ('Europe/Vienna', 'Europe/Vienna'), ('Europe/Vilnius', 'Europe/Vilnius'), ('Europe/Volgograd', 'Europe/Volgograd'), ('Europe/Warsaw', 'Europe/Warsaw'), ('Europe/Zagreb', 'Europe/Zagreb'), ('Europe/Zurich', 'Europe/Zurich'), ('Indian/Antananarivo', 'Indian/Antananarivo'), ('Indian/Chagos', 'Indian/Chagos'), ('Indian/Christmas', 'Indian/Christmas'), ('Indian/Cocos', 'Indian/Cocos'), ('Indian/Comoro', 'Indian/Comoro'), ('Indian/Kerguelen', 'Indian/Kerguelen'), ('Indian/Mahe', 'Indian/Mahe'), ('Indian/Maldives', 'Indian/Maldives'), ('Indian/Mauritius', 'Indian/Mauritius'), ('Indian/Mayotte', 'Indian/Mayotte'), ('Indian/Reunion', 'Indian/Reunion'), ('Pacific/Apia', 'Pacific/Apia'), ('Pacific/Auckland', 'Pacific/Auckland'), ('Pacific/Bougainville', 'Pacific/Bougainville'), ('Pacific/Chatham', 'Pacific/Chatham'), ('Pacific/Easter', 'Pacific/Easter'), ('Pacific/Efate', 'Pacific/Efate'), ('Pacific/Enderbury', 'Pacific/Enderbury'), ('Pacific/Fakaofo', 'Pacific/Fakaofo'), ('Pacific/Fiji', 'Pacific/Fiji'), ('Pacific/Funafuti', 'Pacific/Funafuti'), ('Pacific/Galapagos', 'Pacific/Galapagos'), ('Pacific/Gambier', 'Pacific/Gambier'), ('Pacific/Guadalcanal', 'Pacific/Guadalcanal'), ('Pacific/Guam', 'Pacific/Guam'), ('Pacific/Honolulu', 'Pacific/Honolulu'), ('Pacific/Kiritimati', 'Pacific/Kiritimati'), ('Pacific/Kosrae', 'Pacific/Kosrae'), ('Pacific/Kwajalein', 'Pacific/Kwajalein'), ('Pacific/Majuro', 'Pacific/Majuro'), ('Pacific/Marquesas', 'Pacific/Marquesas'), ('Pacific/Midway', 'Pacific/Midway'), ('Pacific/Nauru', 'Pacific/Nauru'), ('Pacific/Niue', 'Pacific/Niue'), ('Pacific/Norfolk', 'Pacific/Norfolk'), ('Pacific/Noumea', 'Pacific/Noumea'), ('Pacific/Pago_Pago', 'Pacific/Pago_Pago'), ('Pacific/Palau', 'Pacific/Palau'), ('Pacific/Pitcairn', 'Pacific/Pitcairn'), ('Pacific/Ponape', 'Pacific/Ponape'), ('Pacific/Port_Moresby', 'Pacific/Port_Moresby'), ('Pacific/Rarotonga', 'Pacific/Rarotonga'), ('Pacific/Saipan', 'Pacific/Saipan'), ('Pacific/Tahiti', 'Pacific/Tahiti'), ('Pacific/Tarawa', 'Pacific/Tarawa'), ('Pacific/Tongatapu', 'Pacific/Tongatapu'), ('Pacific/Truk', 'Pacific/Truk'), ('Pacific/Wake', 'Pacific/Wake'), ('Pacific/Wallis', 'Pacific/Wallis')], max_length=50, null=True), + ), + migrations.AddField( + model_name='transportation', + name='start_timezone', + field=models.CharField(blank=True, choices=[('Africa/Abidjan', 'Africa/Abidjan'), ('Africa/Accra', 'Africa/Accra'), ('Africa/Addis_Ababa', 'Africa/Addis_Ababa'), ('Africa/Algiers', 'Africa/Algiers'), ('Africa/Asmera', 'Africa/Asmera'), ('Africa/Bamako', 'Africa/Bamako'), ('Africa/Bangui', 'Africa/Bangui'), ('Africa/Banjul', 'Africa/Banjul'), ('Africa/Bissau', 'Africa/Bissau'), ('Africa/Blantyre', 'Africa/Blantyre'), ('Africa/Brazzaville', 'Africa/Brazzaville'), ('Africa/Bujumbura', 'Africa/Bujumbura'), ('Africa/Cairo', 'Africa/Cairo'), ('Africa/Casablanca', 'Africa/Casablanca'), ('Africa/Ceuta', 'Africa/Ceuta'), ('Africa/Conakry', 'Africa/Conakry'), ('Africa/Dakar', 'Africa/Dakar'), ('Africa/Dar_es_Salaam', 'Africa/Dar_es_Salaam'), ('Africa/Djibouti', 'Africa/Djibouti'), ('Africa/Douala', 'Africa/Douala'), ('Africa/El_Aaiun', 'Africa/El_Aaiun'), ('Africa/Freetown', 'Africa/Freetown'), ('Africa/Gaborone', 'Africa/Gaborone'), ('Africa/Harare', 'Africa/Harare'), ('Africa/Johannesburg', 'Africa/Johannesburg'), ('Africa/Juba', 'Africa/Juba'), ('Africa/Kampala', 'Africa/Kampala'), ('Africa/Khartoum', 'Africa/Khartoum'), ('Africa/Kigali', 'Africa/Kigali'), ('Africa/Kinshasa', 'Africa/Kinshasa'), ('Africa/Lagos', 'Africa/Lagos'), ('Africa/Libreville', 'Africa/Libreville'), ('Africa/Lome', 'Africa/Lome'), ('Africa/Luanda', 'Africa/Luanda'), ('Africa/Lubumbashi', 'Africa/Lubumbashi'), ('Africa/Lusaka', 'Africa/Lusaka'), ('Africa/Malabo', 'Africa/Malabo'), ('Africa/Maputo', 'Africa/Maputo'), ('Africa/Maseru', 'Africa/Maseru'), ('Africa/Mbabane', 'Africa/Mbabane'), ('Africa/Mogadishu', 'Africa/Mogadishu'), ('Africa/Monrovia', 'Africa/Monrovia'), ('Africa/Nairobi', 'Africa/Nairobi'), ('Africa/Ndjamena', 'Africa/Ndjamena'), ('Africa/Niamey', 'Africa/Niamey'), ('Africa/Nouakchott', 'Africa/Nouakchott'), ('Africa/Ouagadougou', 'Africa/Ouagadougou'), ('Africa/Porto-Novo', 'Africa/Porto-Novo'), ('Africa/Sao_Tome', 'Africa/Sao_Tome'), ('Africa/Tripoli', 'Africa/Tripoli'), ('Africa/Tunis', 'Africa/Tunis'), ('Africa/Windhoek', 'Africa/Windhoek'), ('America/Adak', 'America/Adak'), ('America/Anchorage', 'America/Anchorage'), ('America/Anguilla', 'America/Anguilla'), ('America/Antigua', 'America/Antigua'), ('America/Araguaina', 'America/Araguaina'), ('America/Argentina/La_Rioja', 'America/Argentina/La_Rioja'), ('America/Argentina/Rio_Gallegos', 'America/Argentina/Rio_Gallegos'), ('America/Argentina/Salta', 'America/Argentina/Salta'), ('America/Argentina/San_Juan', 'America/Argentina/San_Juan'), ('America/Argentina/San_Luis', 'America/Argentina/San_Luis'), ('America/Argentina/Tucuman', 'America/Argentina/Tucuman'), ('America/Argentina/Ushuaia', 'America/Argentina/Ushuaia'), ('America/Aruba', 'America/Aruba'), ('America/Asuncion', 'America/Asuncion'), ('America/Bahia', 'America/Bahia'), ('America/Bahia_Banderas', 'America/Bahia_Banderas'), ('America/Barbados', 'America/Barbados'), ('America/Belem', 'America/Belem'), ('America/Belize', 'America/Belize'), ('America/Blanc-Sablon', 'America/Blanc-Sablon'), ('America/Boa_Vista', 'America/Boa_Vista'), ('America/Bogota', 'America/Bogota'), ('America/Boise', 'America/Boise'), ('America/Buenos_Aires', 'America/Buenos_Aires'), ('America/Cambridge_Bay', 'America/Cambridge_Bay'), ('America/Campo_Grande', 'America/Campo_Grande'), ('America/Cancun', 'America/Cancun'), ('America/Caracas', 'America/Caracas'), ('America/Catamarca', 'America/Catamarca'), ('America/Cayenne', 'America/Cayenne'), ('America/Cayman', 'America/Cayman'), ('America/Chicago', 'America/Chicago'), ('America/Chihuahua', 'America/Chihuahua'), ('America/Ciudad_Juarez', 'America/Ciudad_Juarez'), ('America/Coral_Harbour', 'America/Coral_Harbour'), ('America/Cordoba', 'America/Cordoba'), ('America/Costa_Rica', 'America/Costa_Rica'), ('America/Creston', 'America/Creston'), ('America/Cuiaba', 'America/Cuiaba'), ('America/Curacao', 'America/Curacao'), ('America/Danmarkshavn', 'America/Danmarkshavn'), ('America/Dawson', 'America/Dawson'), ('America/Dawson_Creek', 'America/Dawson_Creek'), ('America/Denver', 'America/Denver'), ('America/Detroit', 'America/Detroit'), ('America/Dominica', 'America/Dominica'), ('America/Edmonton', 'America/Edmonton'), ('America/Eirunepe', 'America/Eirunepe'), ('America/El_Salvador', 'America/El_Salvador'), ('America/Fort_Nelson', 'America/Fort_Nelson'), ('America/Fortaleza', 'America/Fortaleza'), ('America/Glace_Bay', 'America/Glace_Bay'), ('America/Godthab', 'America/Godthab'), ('America/Goose_Bay', 'America/Goose_Bay'), ('America/Grand_Turk', 'America/Grand_Turk'), ('America/Grenada', 'America/Grenada'), ('America/Guadeloupe', 'America/Guadeloupe'), ('America/Guatemala', 'America/Guatemala'), ('America/Guayaquil', 'America/Guayaquil'), ('America/Guyana', 'America/Guyana'), ('America/Halifax', 'America/Halifax'), ('America/Havana', 'America/Havana'), ('America/Hermosillo', 'America/Hermosillo'), ('America/Indiana/Knox', 'America/Indiana/Knox'), ('America/Indiana/Marengo', 'America/Indiana/Marengo'), ('America/Indiana/Petersburg', 'America/Indiana/Petersburg'), ('America/Indiana/Tell_City', 'America/Indiana/Tell_City'), ('America/Indiana/Vevay', 'America/Indiana/Vevay'), ('America/Indiana/Vincennes', 'America/Indiana/Vincennes'), ('America/Indiana/Winamac', 'America/Indiana/Winamac'), ('America/Indianapolis', 'America/Indianapolis'), ('America/Inuvik', 'America/Inuvik'), ('America/Iqaluit', 'America/Iqaluit'), ('America/Jamaica', 'America/Jamaica'), ('America/Jujuy', 'America/Jujuy'), ('America/Juneau', 'America/Juneau'), ('America/Kentucky/Monticello', 'America/Kentucky/Monticello'), ('America/Kralendijk', 'America/Kralendijk'), ('America/La_Paz', 'America/La_Paz'), ('America/Lima', 'America/Lima'), ('America/Los_Angeles', 'America/Los_Angeles'), ('America/Louisville', 'America/Louisville'), ('America/Lower_Princes', 'America/Lower_Princes'), ('America/Maceio', 'America/Maceio'), ('America/Managua', 'America/Managua'), ('America/Manaus', 'America/Manaus'), ('America/Marigot', 'America/Marigot'), ('America/Martinique', 'America/Martinique'), ('America/Matamoros', 'America/Matamoros'), ('America/Mazatlan', 'America/Mazatlan'), ('America/Mendoza', 'America/Mendoza'), ('America/Menominee', 'America/Menominee'), ('America/Merida', 'America/Merida'), ('America/Metlakatla', 'America/Metlakatla'), ('America/Mexico_City', 'America/Mexico_City'), ('America/Miquelon', 'America/Miquelon'), ('America/Moncton', 'America/Moncton'), ('America/Monterrey', 'America/Monterrey'), ('America/Montevideo', 'America/Montevideo'), ('America/Montserrat', 'America/Montserrat'), ('America/Nassau', 'America/Nassau'), ('America/New_York', 'America/New_York'), ('America/Nome', 'America/Nome'), ('America/Noronha', 'America/Noronha'), ('America/North_Dakota/Beulah', 'America/North_Dakota/Beulah'), ('America/North_Dakota/Center', 'America/North_Dakota/Center'), ('America/North_Dakota/New_Salem', 'America/North_Dakota/New_Salem'), ('America/Ojinaga', 'America/Ojinaga'), ('America/Panama', 'America/Panama'), ('America/Paramaribo', 'America/Paramaribo'), ('America/Phoenix', 'America/Phoenix'), ('America/Port-au-Prince', 'America/Port-au-Prince'), ('America/Port_of_Spain', 'America/Port_of_Spain'), ('America/Porto_Velho', 'America/Porto_Velho'), ('America/Puerto_Rico', 'America/Puerto_Rico'), ('America/Punta_Arenas', 'America/Punta_Arenas'), ('America/Rankin_Inlet', 'America/Rankin_Inlet'), ('America/Recife', 'America/Recife'), ('America/Regina', 'America/Regina'), ('America/Resolute', 'America/Resolute'), ('America/Rio_Branco', 'America/Rio_Branco'), ('America/Santarem', 'America/Santarem'), ('America/Santiago', 'America/Santiago'), ('America/Santo_Domingo', 'America/Santo_Domingo'), ('America/Sao_Paulo', 'America/Sao_Paulo'), ('America/Scoresbysund', 'America/Scoresbysund'), ('America/Sitka', 'America/Sitka'), ('America/St_Barthelemy', 'America/St_Barthelemy'), ('America/St_Johns', 'America/St_Johns'), ('America/St_Kitts', 'America/St_Kitts'), ('America/St_Lucia', 'America/St_Lucia'), ('America/St_Thomas', 'America/St_Thomas'), ('America/St_Vincent', 'America/St_Vincent'), ('America/Swift_Current', 'America/Swift_Current'), ('America/Tegucigalpa', 'America/Tegucigalpa'), ('America/Thule', 'America/Thule'), ('America/Tijuana', 'America/Tijuana'), ('America/Toronto', 'America/Toronto'), ('America/Tortola', 'America/Tortola'), ('America/Vancouver', 'America/Vancouver'), ('America/Whitehorse', 'America/Whitehorse'), ('America/Winnipeg', 'America/Winnipeg'), ('America/Yakutat', 'America/Yakutat'), ('Antarctica/Casey', 'Antarctica/Casey'), ('Antarctica/Davis', 'Antarctica/Davis'), ('Antarctica/DumontDUrville', 'Antarctica/DumontDUrville'), ('Antarctica/Macquarie', 'Antarctica/Macquarie'), ('Antarctica/Mawson', 'Antarctica/Mawson'), ('Antarctica/McMurdo', 'Antarctica/McMurdo'), ('Antarctica/Palmer', 'Antarctica/Palmer'), ('Antarctica/Rothera', 'Antarctica/Rothera'), ('Antarctica/Syowa', 'Antarctica/Syowa'), ('Antarctica/Troll', 'Antarctica/Troll'), ('Antarctica/Vostok', 'Antarctica/Vostok'), ('Arctic/Longyearbyen', 'Arctic/Longyearbyen'), ('Asia/Aden', 'Asia/Aden'), ('Asia/Almaty', 'Asia/Almaty'), ('Asia/Amman', 'Asia/Amman'), ('Asia/Anadyr', 'Asia/Anadyr'), ('Asia/Aqtau', 'Asia/Aqtau'), ('Asia/Aqtobe', 'Asia/Aqtobe'), ('Asia/Ashgabat', 'Asia/Ashgabat'), ('Asia/Atyrau', 'Asia/Atyrau'), ('Asia/Baghdad', 'Asia/Baghdad'), ('Asia/Bahrain', 'Asia/Bahrain'), ('Asia/Baku', 'Asia/Baku'), ('Asia/Bangkok', 'Asia/Bangkok'), ('Asia/Barnaul', 'Asia/Barnaul'), ('Asia/Beirut', 'Asia/Beirut'), ('Asia/Bishkek', 'Asia/Bishkek'), ('Asia/Brunei', 'Asia/Brunei'), ('Asia/Calcutta', 'Asia/Calcutta'), ('Asia/Chita', 'Asia/Chita'), ('Asia/Colombo', 'Asia/Colombo'), ('Asia/Damascus', 'Asia/Damascus'), ('Asia/Dhaka', 'Asia/Dhaka'), ('Asia/Dili', 'Asia/Dili'), ('Asia/Dubai', 'Asia/Dubai'), ('Asia/Dushanbe', 'Asia/Dushanbe'), ('Asia/Famagusta', 'Asia/Famagusta'), ('Asia/Gaza', 'Asia/Gaza'), ('Asia/Hebron', 'Asia/Hebron'), ('Asia/Hong_Kong', 'Asia/Hong_Kong'), ('Asia/Hovd', 'Asia/Hovd'), ('Asia/Irkutsk', 'Asia/Irkutsk'), ('Asia/Jakarta', 'Asia/Jakarta'), ('Asia/Jayapura', 'Asia/Jayapura'), ('Asia/Jerusalem', 'Asia/Jerusalem'), ('Asia/Kabul', 'Asia/Kabul'), ('Asia/Kamchatka', 'Asia/Kamchatka'), ('Asia/Karachi', 'Asia/Karachi'), ('Asia/Katmandu', 'Asia/Katmandu'), ('Asia/Khandyga', 'Asia/Khandyga'), ('Asia/Krasnoyarsk', 'Asia/Krasnoyarsk'), ('Asia/Kuala_Lumpur', 'Asia/Kuala_Lumpur'), ('Asia/Kuching', 'Asia/Kuching'), ('Asia/Kuwait', 'Asia/Kuwait'), ('Asia/Macau', 'Asia/Macau'), ('Asia/Magadan', 'Asia/Magadan'), ('Asia/Makassar', 'Asia/Makassar'), ('Asia/Manila', 'Asia/Manila'), ('Asia/Muscat', 'Asia/Muscat'), ('Asia/Nicosia', 'Asia/Nicosia'), ('Asia/Novokuznetsk', 'Asia/Novokuznetsk'), ('Asia/Novosibirsk', 'Asia/Novosibirsk'), ('Asia/Omsk', 'Asia/Omsk'), ('Asia/Oral', 'Asia/Oral'), ('Asia/Phnom_Penh', 'Asia/Phnom_Penh'), ('Asia/Pontianak', 'Asia/Pontianak'), ('Asia/Pyongyang', 'Asia/Pyongyang'), ('Asia/Qatar', 'Asia/Qatar'), ('Asia/Qostanay', 'Asia/Qostanay'), ('Asia/Qyzylorda', 'Asia/Qyzylorda'), ('Asia/Rangoon', 'Asia/Rangoon'), ('Asia/Riyadh', 'Asia/Riyadh'), ('Asia/Saigon', 'Asia/Saigon'), ('Asia/Sakhalin', 'Asia/Sakhalin'), ('Asia/Samarkand', 'Asia/Samarkand'), ('Asia/Seoul', 'Asia/Seoul'), ('Asia/Shanghai', 'Asia/Shanghai'), ('Asia/Singapore', 'Asia/Singapore'), ('Asia/Srednekolymsk', 'Asia/Srednekolymsk'), ('Asia/Taipei', 'Asia/Taipei'), ('Asia/Tashkent', 'Asia/Tashkent'), ('Asia/Tbilisi', 'Asia/Tbilisi'), ('Asia/Tehran', 'Asia/Tehran'), ('Asia/Thimphu', 'Asia/Thimphu'), ('Asia/Tokyo', 'Asia/Tokyo'), ('Asia/Tomsk', 'Asia/Tomsk'), ('Asia/Ulaanbaatar', 'Asia/Ulaanbaatar'), ('Asia/Urumqi', 'Asia/Urumqi'), ('Asia/Ust-Nera', 'Asia/Ust-Nera'), ('Asia/Vientiane', 'Asia/Vientiane'), ('Asia/Vladivostok', 'Asia/Vladivostok'), ('Asia/Yakutsk', 'Asia/Yakutsk'), ('Asia/Yekaterinburg', 'Asia/Yekaterinburg'), ('Asia/Yerevan', 'Asia/Yerevan'), ('Atlantic/Azores', 'Atlantic/Azores'), ('Atlantic/Bermuda', 'Atlantic/Bermuda'), ('Atlantic/Canary', 'Atlantic/Canary'), ('Atlantic/Cape_Verde', 'Atlantic/Cape_Verde'), ('Atlantic/Faeroe', 'Atlantic/Faeroe'), ('Atlantic/Madeira', 'Atlantic/Madeira'), ('Atlantic/Reykjavik', 'Atlantic/Reykjavik'), ('Atlantic/South_Georgia', 'Atlantic/South_Georgia'), ('Atlantic/St_Helena', 'Atlantic/St_Helena'), ('Atlantic/Stanley', 'Atlantic/Stanley'), ('Australia/Adelaide', 'Australia/Adelaide'), ('Australia/Brisbane', 'Australia/Brisbane'), ('Australia/Broken_Hill', 'Australia/Broken_Hill'), ('Australia/Darwin', 'Australia/Darwin'), ('Australia/Eucla', 'Australia/Eucla'), ('Australia/Hobart', 'Australia/Hobart'), ('Australia/Lindeman', 'Australia/Lindeman'), ('Australia/Lord_Howe', 'Australia/Lord_Howe'), ('Australia/Melbourne', 'Australia/Melbourne'), ('Australia/Perth', 'Australia/Perth'), ('Australia/Sydney', 'Australia/Sydney'), ('Europe/Amsterdam', 'Europe/Amsterdam'), ('Europe/Andorra', 'Europe/Andorra'), ('Europe/Astrakhan', 'Europe/Astrakhan'), ('Europe/Athens', 'Europe/Athens'), ('Europe/Belgrade', 'Europe/Belgrade'), ('Europe/Berlin', 'Europe/Berlin'), ('Europe/Bratislava', 'Europe/Bratislava'), ('Europe/Brussels', 'Europe/Brussels'), ('Europe/Bucharest', 'Europe/Bucharest'), ('Europe/Budapest', 'Europe/Budapest'), ('Europe/Busingen', 'Europe/Busingen'), ('Europe/Chisinau', 'Europe/Chisinau'), ('Europe/Copenhagen', 'Europe/Copenhagen'), ('Europe/Dublin', 'Europe/Dublin'), ('Europe/Gibraltar', 'Europe/Gibraltar'), ('Europe/Guernsey', 'Europe/Guernsey'), ('Europe/Helsinki', 'Europe/Helsinki'), ('Europe/Isle_of_Man', 'Europe/Isle_of_Man'), ('Europe/Istanbul', 'Europe/Istanbul'), ('Europe/Jersey', 'Europe/Jersey'), ('Europe/Kaliningrad', 'Europe/Kaliningrad'), ('Europe/Kiev', 'Europe/Kiev'), ('Europe/Kirov', 'Europe/Kirov'), ('Europe/Lisbon', 'Europe/Lisbon'), ('Europe/Ljubljana', 'Europe/Ljubljana'), ('Europe/London', 'Europe/London'), ('Europe/Luxembourg', 'Europe/Luxembourg'), ('Europe/Madrid', 'Europe/Madrid'), ('Europe/Malta', 'Europe/Malta'), ('Europe/Mariehamn', 'Europe/Mariehamn'), ('Europe/Minsk', 'Europe/Minsk'), ('Europe/Monaco', 'Europe/Monaco'), ('Europe/Moscow', 'Europe/Moscow'), ('Europe/Oslo', 'Europe/Oslo'), ('Europe/Paris', 'Europe/Paris'), ('Europe/Podgorica', 'Europe/Podgorica'), ('Europe/Prague', 'Europe/Prague'), ('Europe/Riga', 'Europe/Riga'), ('Europe/Rome', 'Europe/Rome'), ('Europe/Samara', 'Europe/Samara'), ('Europe/San_Marino', 'Europe/San_Marino'), ('Europe/Sarajevo', 'Europe/Sarajevo'), ('Europe/Saratov', 'Europe/Saratov'), ('Europe/Simferopol', 'Europe/Simferopol'), ('Europe/Skopje', 'Europe/Skopje'), ('Europe/Sofia', 'Europe/Sofia'), ('Europe/Stockholm', 'Europe/Stockholm'), ('Europe/Tallinn', 'Europe/Tallinn'), ('Europe/Tirane', 'Europe/Tirane'), ('Europe/Ulyanovsk', 'Europe/Ulyanovsk'), ('Europe/Vaduz', 'Europe/Vaduz'), ('Europe/Vatican', 'Europe/Vatican'), ('Europe/Vienna', 'Europe/Vienna'), ('Europe/Vilnius', 'Europe/Vilnius'), ('Europe/Volgograd', 'Europe/Volgograd'), ('Europe/Warsaw', 'Europe/Warsaw'), ('Europe/Zagreb', 'Europe/Zagreb'), ('Europe/Zurich', 'Europe/Zurich'), ('Indian/Antananarivo', 'Indian/Antananarivo'), ('Indian/Chagos', 'Indian/Chagos'), ('Indian/Christmas', 'Indian/Christmas'), ('Indian/Cocos', 'Indian/Cocos'), ('Indian/Comoro', 'Indian/Comoro'), ('Indian/Kerguelen', 'Indian/Kerguelen'), ('Indian/Mahe', 'Indian/Mahe'), ('Indian/Maldives', 'Indian/Maldives'), ('Indian/Mauritius', 'Indian/Mauritius'), ('Indian/Mayotte', 'Indian/Mayotte'), ('Indian/Reunion', 'Indian/Reunion'), ('Pacific/Apia', 'Pacific/Apia'), ('Pacific/Auckland', 'Pacific/Auckland'), ('Pacific/Bougainville', 'Pacific/Bougainville'), ('Pacific/Chatham', 'Pacific/Chatham'), ('Pacific/Easter', 'Pacific/Easter'), ('Pacific/Efate', 'Pacific/Efate'), ('Pacific/Enderbury', 'Pacific/Enderbury'), ('Pacific/Fakaofo', 'Pacific/Fakaofo'), ('Pacific/Fiji', 'Pacific/Fiji'), ('Pacific/Funafuti', 'Pacific/Funafuti'), ('Pacific/Galapagos', 'Pacific/Galapagos'), ('Pacific/Gambier', 'Pacific/Gambier'), ('Pacific/Guadalcanal', 'Pacific/Guadalcanal'), ('Pacific/Guam', 'Pacific/Guam'), ('Pacific/Honolulu', 'Pacific/Honolulu'), ('Pacific/Kiritimati', 'Pacific/Kiritimati'), ('Pacific/Kosrae', 'Pacific/Kosrae'), ('Pacific/Kwajalein', 'Pacific/Kwajalein'), ('Pacific/Majuro', 'Pacific/Majuro'), ('Pacific/Marquesas', 'Pacific/Marquesas'), ('Pacific/Midway', 'Pacific/Midway'), ('Pacific/Nauru', 'Pacific/Nauru'), ('Pacific/Niue', 'Pacific/Niue'), ('Pacific/Norfolk', 'Pacific/Norfolk'), ('Pacific/Noumea', 'Pacific/Noumea'), ('Pacific/Pago_Pago', 'Pacific/Pago_Pago'), ('Pacific/Palau', 'Pacific/Palau'), ('Pacific/Pitcairn', 'Pacific/Pitcairn'), ('Pacific/Ponape', 'Pacific/Ponape'), ('Pacific/Port_Moresby', 'Pacific/Port_Moresby'), ('Pacific/Rarotonga', 'Pacific/Rarotonga'), ('Pacific/Saipan', 'Pacific/Saipan'), ('Pacific/Tahiti', 'Pacific/Tahiti'), ('Pacific/Tarawa', 'Pacific/Tarawa'), ('Pacific/Tongatapu', 'Pacific/Tongatapu'), ('Pacific/Truk', 'Pacific/Truk'), ('Pacific/Wake', 'Pacific/Wake'), ('Pacific/Wallis', 'Pacific/Wallis')], max_length=50, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0028_lodging_timezone.py b/backend/server/adventures/migrations/0028_lodging_timezone.py new file mode 100644 index 0000000..d9513f7 --- /dev/null +++ b/backend/server/adventures/migrations/0028_lodging_timezone.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.11 on 2025-05-10 15:54 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0027_transportation_end_timezone_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='lodging', + name='timezone', + field=models.CharField(blank=True, choices=[('Africa/Abidjan', 'Africa/Abidjan'), ('Africa/Accra', 'Africa/Accra'), ('Africa/Addis_Ababa', 'Africa/Addis_Ababa'), ('Africa/Algiers', 'Africa/Algiers'), ('Africa/Asmera', 'Africa/Asmera'), ('Africa/Bamako', 'Africa/Bamako'), ('Africa/Bangui', 'Africa/Bangui'), ('Africa/Banjul', 'Africa/Banjul'), ('Africa/Bissau', 'Africa/Bissau'), ('Africa/Blantyre', 'Africa/Blantyre'), ('Africa/Brazzaville', 'Africa/Brazzaville'), ('Africa/Bujumbura', 'Africa/Bujumbura'), ('Africa/Cairo', 'Africa/Cairo'), ('Africa/Casablanca', 'Africa/Casablanca'), ('Africa/Ceuta', 'Africa/Ceuta'), ('Africa/Conakry', 'Africa/Conakry'), ('Africa/Dakar', 'Africa/Dakar'), ('Africa/Dar_es_Salaam', 'Africa/Dar_es_Salaam'), ('Africa/Djibouti', 'Africa/Djibouti'), ('Africa/Douala', 'Africa/Douala'), ('Africa/El_Aaiun', 'Africa/El_Aaiun'), ('Africa/Freetown', 'Africa/Freetown'), ('Africa/Gaborone', 'Africa/Gaborone'), ('Africa/Harare', 'Africa/Harare'), ('Africa/Johannesburg', 'Africa/Johannesburg'), ('Africa/Juba', 'Africa/Juba'), ('Africa/Kampala', 'Africa/Kampala'), ('Africa/Khartoum', 'Africa/Khartoum'), ('Africa/Kigali', 'Africa/Kigali'), ('Africa/Kinshasa', 'Africa/Kinshasa'), ('Africa/Lagos', 'Africa/Lagos'), ('Africa/Libreville', 'Africa/Libreville'), ('Africa/Lome', 'Africa/Lome'), ('Africa/Luanda', 'Africa/Luanda'), ('Africa/Lubumbashi', 'Africa/Lubumbashi'), ('Africa/Lusaka', 'Africa/Lusaka'), ('Africa/Malabo', 'Africa/Malabo'), ('Africa/Maputo', 'Africa/Maputo'), ('Africa/Maseru', 'Africa/Maseru'), ('Africa/Mbabane', 'Africa/Mbabane'), ('Africa/Mogadishu', 'Africa/Mogadishu'), ('Africa/Monrovia', 'Africa/Monrovia'), ('Africa/Nairobi', 'Africa/Nairobi'), ('Africa/Ndjamena', 'Africa/Ndjamena'), ('Africa/Niamey', 'Africa/Niamey'), ('Africa/Nouakchott', 'Africa/Nouakchott'), ('Africa/Ouagadougou', 'Africa/Ouagadougou'), ('Africa/Porto-Novo', 'Africa/Porto-Novo'), ('Africa/Sao_Tome', 'Africa/Sao_Tome'), ('Africa/Tripoli', 'Africa/Tripoli'), ('Africa/Tunis', 'Africa/Tunis'), ('Africa/Windhoek', 'Africa/Windhoek'), ('America/Adak', 'America/Adak'), ('America/Anchorage', 'America/Anchorage'), ('America/Anguilla', 'America/Anguilla'), ('America/Antigua', 'America/Antigua'), ('America/Araguaina', 'America/Araguaina'), ('America/Argentina/La_Rioja', 'America/Argentina/La_Rioja'), ('America/Argentina/Rio_Gallegos', 'America/Argentina/Rio_Gallegos'), ('America/Argentina/Salta', 'America/Argentina/Salta'), ('America/Argentina/San_Juan', 'America/Argentina/San_Juan'), ('America/Argentina/San_Luis', 'America/Argentina/San_Luis'), ('America/Argentina/Tucuman', 'America/Argentina/Tucuman'), ('America/Argentina/Ushuaia', 'America/Argentina/Ushuaia'), ('America/Aruba', 'America/Aruba'), ('America/Asuncion', 'America/Asuncion'), ('America/Bahia', 'America/Bahia'), ('America/Bahia_Banderas', 'America/Bahia_Banderas'), ('America/Barbados', 'America/Barbados'), ('America/Belem', 'America/Belem'), ('America/Belize', 'America/Belize'), ('America/Blanc-Sablon', 'America/Blanc-Sablon'), ('America/Boa_Vista', 'America/Boa_Vista'), ('America/Bogota', 'America/Bogota'), ('America/Boise', 'America/Boise'), ('America/Buenos_Aires', 'America/Buenos_Aires'), ('America/Cambridge_Bay', 'America/Cambridge_Bay'), ('America/Campo_Grande', 'America/Campo_Grande'), ('America/Cancun', 'America/Cancun'), ('America/Caracas', 'America/Caracas'), ('America/Catamarca', 'America/Catamarca'), ('America/Cayenne', 'America/Cayenne'), ('America/Cayman', 'America/Cayman'), ('America/Chicago', 'America/Chicago'), ('America/Chihuahua', 'America/Chihuahua'), ('America/Ciudad_Juarez', 'America/Ciudad_Juarez'), ('America/Coral_Harbour', 'America/Coral_Harbour'), ('America/Cordoba', 'America/Cordoba'), ('America/Costa_Rica', 'America/Costa_Rica'), ('America/Creston', 'America/Creston'), ('America/Cuiaba', 'America/Cuiaba'), ('America/Curacao', 'America/Curacao'), ('America/Danmarkshavn', 'America/Danmarkshavn'), ('America/Dawson', 'America/Dawson'), ('America/Dawson_Creek', 'America/Dawson_Creek'), ('America/Denver', 'America/Denver'), ('America/Detroit', 'America/Detroit'), ('America/Dominica', 'America/Dominica'), ('America/Edmonton', 'America/Edmonton'), ('America/Eirunepe', 'America/Eirunepe'), ('America/El_Salvador', 'America/El_Salvador'), ('America/Fort_Nelson', 'America/Fort_Nelson'), ('America/Fortaleza', 'America/Fortaleza'), ('America/Glace_Bay', 'America/Glace_Bay'), ('America/Godthab', 'America/Godthab'), ('America/Goose_Bay', 'America/Goose_Bay'), ('America/Grand_Turk', 'America/Grand_Turk'), ('America/Grenada', 'America/Grenada'), ('America/Guadeloupe', 'America/Guadeloupe'), ('America/Guatemala', 'America/Guatemala'), ('America/Guayaquil', 'America/Guayaquil'), ('America/Guyana', 'America/Guyana'), ('America/Halifax', 'America/Halifax'), ('America/Havana', 'America/Havana'), ('America/Hermosillo', 'America/Hermosillo'), ('America/Indiana/Knox', 'America/Indiana/Knox'), ('America/Indiana/Marengo', 'America/Indiana/Marengo'), ('America/Indiana/Petersburg', 'America/Indiana/Petersburg'), ('America/Indiana/Tell_City', 'America/Indiana/Tell_City'), ('America/Indiana/Vevay', 'America/Indiana/Vevay'), ('America/Indiana/Vincennes', 'America/Indiana/Vincennes'), ('America/Indiana/Winamac', 'America/Indiana/Winamac'), ('America/Indianapolis', 'America/Indianapolis'), ('America/Inuvik', 'America/Inuvik'), ('America/Iqaluit', 'America/Iqaluit'), ('America/Jamaica', 'America/Jamaica'), ('America/Jujuy', 'America/Jujuy'), ('America/Juneau', 'America/Juneau'), ('America/Kentucky/Monticello', 'America/Kentucky/Monticello'), ('America/Kralendijk', 'America/Kralendijk'), ('America/La_Paz', 'America/La_Paz'), ('America/Lima', 'America/Lima'), ('America/Los_Angeles', 'America/Los_Angeles'), ('America/Louisville', 'America/Louisville'), ('America/Lower_Princes', 'America/Lower_Princes'), ('America/Maceio', 'America/Maceio'), ('America/Managua', 'America/Managua'), ('America/Manaus', 'America/Manaus'), ('America/Marigot', 'America/Marigot'), ('America/Martinique', 'America/Martinique'), ('America/Matamoros', 'America/Matamoros'), ('America/Mazatlan', 'America/Mazatlan'), ('America/Mendoza', 'America/Mendoza'), ('America/Menominee', 'America/Menominee'), ('America/Merida', 'America/Merida'), ('America/Metlakatla', 'America/Metlakatla'), ('America/Mexico_City', 'America/Mexico_City'), ('America/Miquelon', 'America/Miquelon'), ('America/Moncton', 'America/Moncton'), ('America/Monterrey', 'America/Monterrey'), ('America/Montevideo', 'America/Montevideo'), ('America/Montserrat', 'America/Montserrat'), ('America/Nassau', 'America/Nassau'), ('America/New_York', 'America/New_York'), ('America/Nome', 'America/Nome'), ('America/Noronha', 'America/Noronha'), ('America/North_Dakota/Beulah', 'America/North_Dakota/Beulah'), ('America/North_Dakota/Center', 'America/North_Dakota/Center'), ('America/North_Dakota/New_Salem', 'America/North_Dakota/New_Salem'), ('America/Ojinaga', 'America/Ojinaga'), ('America/Panama', 'America/Panama'), ('America/Paramaribo', 'America/Paramaribo'), ('America/Phoenix', 'America/Phoenix'), ('America/Port-au-Prince', 'America/Port-au-Prince'), ('America/Port_of_Spain', 'America/Port_of_Spain'), ('America/Porto_Velho', 'America/Porto_Velho'), ('America/Puerto_Rico', 'America/Puerto_Rico'), ('America/Punta_Arenas', 'America/Punta_Arenas'), ('America/Rankin_Inlet', 'America/Rankin_Inlet'), ('America/Recife', 'America/Recife'), ('America/Regina', 'America/Regina'), ('America/Resolute', 'America/Resolute'), ('America/Rio_Branco', 'America/Rio_Branco'), ('America/Santarem', 'America/Santarem'), ('America/Santiago', 'America/Santiago'), ('America/Santo_Domingo', 'America/Santo_Domingo'), ('America/Sao_Paulo', 'America/Sao_Paulo'), ('America/Scoresbysund', 'America/Scoresbysund'), ('America/Sitka', 'America/Sitka'), ('America/St_Barthelemy', 'America/St_Barthelemy'), ('America/St_Johns', 'America/St_Johns'), ('America/St_Kitts', 'America/St_Kitts'), ('America/St_Lucia', 'America/St_Lucia'), ('America/St_Thomas', 'America/St_Thomas'), ('America/St_Vincent', 'America/St_Vincent'), ('America/Swift_Current', 'America/Swift_Current'), ('America/Tegucigalpa', 'America/Tegucigalpa'), ('America/Thule', 'America/Thule'), ('America/Tijuana', 'America/Tijuana'), ('America/Toronto', 'America/Toronto'), ('America/Tortola', 'America/Tortola'), ('America/Vancouver', 'America/Vancouver'), ('America/Whitehorse', 'America/Whitehorse'), ('America/Winnipeg', 'America/Winnipeg'), ('America/Yakutat', 'America/Yakutat'), ('Antarctica/Casey', 'Antarctica/Casey'), ('Antarctica/Davis', 'Antarctica/Davis'), ('Antarctica/DumontDUrville', 'Antarctica/DumontDUrville'), ('Antarctica/Macquarie', 'Antarctica/Macquarie'), ('Antarctica/Mawson', 'Antarctica/Mawson'), ('Antarctica/McMurdo', 'Antarctica/McMurdo'), ('Antarctica/Palmer', 'Antarctica/Palmer'), ('Antarctica/Rothera', 'Antarctica/Rothera'), ('Antarctica/Syowa', 'Antarctica/Syowa'), ('Antarctica/Troll', 'Antarctica/Troll'), ('Antarctica/Vostok', 'Antarctica/Vostok'), ('Arctic/Longyearbyen', 'Arctic/Longyearbyen'), ('Asia/Aden', 'Asia/Aden'), ('Asia/Almaty', 'Asia/Almaty'), ('Asia/Amman', 'Asia/Amman'), ('Asia/Anadyr', 'Asia/Anadyr'), ('Asia/Aqtau', 'Asia/Aqtau'), ('Asia/Aqtobe', 'Asia/Aqtobe'), ('Asia/Ashgabat', 'Asia/Ashgabat'), ('Asia/Atyrau', 'Asia/Atyrau'), ('Asia/Baghdad', 'Asia/Baghdad'), ('Asia/Bahrain', 'Asia/Bahrain'), ('Asia/Baku', 'Asia/Baku'), ('Asia/Bangkok', 'Asia/Bangkok'), ('Asia/Barnaul', 'Asia/Barnaul'), ('Asia/Beirut', 'Asia/Beirut'), ('Asia/Bishkek', 'Asia/Bishkek'), ('Asia/Brunei', 'Asia/Brunei'), ('Asia/Calcutta', 'Asia/Calcutta'), ('Asia/Chita', 'Asia/Chita'), ('Asia/Colombo', 'Asia/Colombo'), ('Asia/Damascus', 'Asia/Damascus'), ('Asia/Dhaka', 'Asia/Dhaka'), ('Asia/Dili', 'Asia/Dili'), ('Asia/Dubai', 'Asia/Dubai'), ('Asia/Dushanbe', 'Asia/Dushanbe'), ('Asia/Famagusta', 'Asia/Famagusta'), ('Asia/Gaza', 'Asia/Gaza'), ('Asia/Hebron', 'Asia/Hebron'), ('Asia/Hong_Kong', 'Asia/Hong_Kong'), ('Asia/Hovd', 'Asia/Hovd'), ('Asia/Irkutsk', 'Asia/Irkutsk'), ('Asia/Jakarta', 'Asia/Jakarta'), ('Asia/Jayapura', 'Asia/Jayapura'), ('Asia/Jerusalem', 'Asia/Jerusalem'), ('Asia/Kabul', 'Asia/Kabul'), ('Asia/Kamchatka', 'Asia/Kamchatka'), ('Asia/Karachi', 'Asia/Karachi'), ('Asia/Katmandu', 'Asia/Katmandu'), ('Asia/Khandyga', 'Asia/Khandyga'), ('Asia/Krasnoyarsk', 'Asia/Krasnoyarsk'), ('Asia/Kuala_Lumpur', 'Asia/Kuala_Lumpur'), ('Asia/Kuching', 'Asia/Kuching'), ('Asia/Kuwait', 'Asia/Kuwait'), ('Asia/Macau', 'Asia/Macau'), ('Asia/Magadan', 'Asia/Magadan'), ('Asia/Makassar', 'Asia/Makassar'), ('Asia/Manila', 'Asia/Manila'), ('Asia/Muscat', 'Asia/Muscat'), ('Asia/Nicosia', 'Asia/Nicosia'), ('Asia/Novokuznetsk', 'Asia/Novokuznetsk'), ('Asia/Novosibirsk', 'Asia/Novosibirsk'), ('Asia/Omsk', 'Asia/Omsk'), ('Asia/Oral', 'Asia/Oral'), ('Asia/Phnom_Penh', 'Asia/Phnom_Penh'), ('Asia/Pontianak', 'Asia/Pontianak'), ('Asia/Pyongyang', 'Asia/Pyongyang'), ('Asia/Qatar', 'Asia/Qatar'), ('Asia/Qostanay', 'Asia/Qostanay'), ('Asia/Qyzylorda', 'Asia/Qyzylorda'), ('Asia/Rangoon', 'Asia/Rangoon'), ('Asia/Riyadh', 'Asia/Riyadh'), ('Asia/Saigon', 'Asia/Saigon'), ('Asia/Sakhalin', 'Asia/Sakhalin'), ('Asia/Samarkand', 'Asia/Samarkand'), ('Asia/Seoul', 'Asia/Seoul'), ('Asia/Shanghai', 'Asia/Shanghai'), ('Asia/Singapore', 'Asia/Singapore'), ('Asia/Srednekolymsk', 'Asia/Srednekolymsk'), ('Asia/Taipei', 'Asia/Taipei'), ('Asia/Tashkent', 'Asia/Tashkent'), ('Asia/Tbilisi', 'Asia/Tbilisi'), ('Asia/Tehran', 'Asia/Tehran'), ('Asia/Thimphu', 'Asia/Thimphu'), ('Asia/Tokyo', 'Asia/Tokyo'), ('Asia/Tomsk', 'Asia/Tomsk'), ('Asia/Ulaanbaatar', 'Asia/Ulaanbaatar'), ('Asia/Urumqi', 'Asia/Urumqi'), ('Asia/Ust-Nera', 'Asia/Ust-Nera'), ('Asia/Vientiane', 'Asia/Vientiane'), ('Asia/Vladivostok', 'Asia/Vladivostok'), ('Asia/Yakutsk', 'Asia/Yakutsk'), ('Asia/Yekaterinburg', 'Asia/Yekaterinburg'), ('Asia/Yerevan', 'Asia/Yerevan'), ('Atlantic/Azores', 'Atlantic/Azores'), ('Atlantic/Bermuda', 'Atlantic/Bermuda'), ('Atlantic/Canary', 'Atlantic/Canary'), ('Atlantic/Cape_Verde', 'Atlantic/Cape_Verde'), ('Atlantic/Faeroe', 'Atlantic/Faeroe'), ('Atlantic/Madeira', 'Atlantic/Madeira'), ('Atlantic/Reykjavik', 'Atlantic/Reykjavik'), ('Atlantic/South_Georgia', 'Atlantic/South_Georgia'), ('Atlantic/St_Helena', 'Atlantic/St_Helena'), ('Atlantic/Stanley', 'Atlantic/Stanley'), ('Australia/Adelaide', 'Australia/Adelaide'), ('Australia/Brisbane', 'Australia/Brisbane'), ('Australia/Broken_Hill', 'Australia/Broken_Hill'), ('Australia/Darwin', 'Australia/Darwin'), ('Australia/Eucla', 'Australia/Eucla'), ('Australia/Hobart', 'Australia/Hobart'), ('Australia/Lindeman', 'Australia/Lindeman'), ('Australia/Lord_Howe', 'Australia/Lord_Howe'), ('Australia/Melbourne', 'Australia/Melbourne'), ('Australia/Perth', 'Australia/Perth'), ('Australia/Sydney', 'Australia/Sydney'), ('Europe/Amsterdam', 'Europe/Amsterdam'), ('Europe/Andorra', 'Europe/Andorra'), ('Europe/Astrakhan', 'Europe/Astrakhan'), ('Europe/Athens', 'Europe/Athens'), ('Europe/Belgrade', 'Europe/Belgrade'), ('Europe/Berlin', 'Europe/Berlin'), ('Europe/Bratislava', 'Europe/Bratislava'), ('Europe/Brussels', 'Europe/Brussels'), ('Europe/Bucharest', 'Europe/Bucharest'), ('Europe/Budapest', 'Europe/Budapest'), ('Europe/Busingen', 'Europe/Busingen'), ('Europe/Chisinau', 'Europe/Chisinau'), ('Europe/Copenhagen', 'Europe/Copenhagen'), ('Europe/Dublin', 'Europe/Dublin'), ('Europe/Gibraltar', 'Europe/Gibraltar'), ('Europe/Guernsey', 'Europe/Guernsey'), ('Europe/Helsinki', 'Europe/Helsinki'), ('Europe/Isle_of_Man', 'Europe/Isle_of_Man'), ('Europe/Istanbul', 'Europe/Istanbul'), ('Europe/Jersey', 'Europe/Jersey'), ('Europe/Kaliningrad', 'Europe/Kaliningrad'), ('Europe/Kiev', 'Europe/Kiev'), ('Europe/Kirov', 'Europe/Kirov'), ('Europe/Lisbon', 'Europe/Lisbon'), ('Europe/Ljubljana', 'Europe/Ljubljana'), ('Europe/London', 'Europe/London'), ('Europe/Luxembourg', 'Europe/Luxembourg'), ('Europe/Madrid', 'Europe/Madrid'), ('Europe/Malta', 'Europe/Malta'), ('Europe/Mariehamn', 'Europe/Mariehamn'), ('Europe/Minsk', 'Europe/Minsk'), ('Europe/Monaco', 'Europe/Monaco'), ('Europe/Moscow', 'Europe/Moscow'), ('Europe/Oslo', 'Europe/Oslo'), ('Europe/Paris', 'Europe/Paris'), ('Europe/Podgorica', 'Europe/Podgorica'), ('Europe/Prague', 'Europe/Prague'), ('Europe/Riga', 'Europe/Riga'), ('Europe/Rome', 'Europe/Rome'), ('Europe/Samara', 'Europe/Samara'), ('Europe/San_Marino', 'Europe/San_Marino'), ('Europe/Sarajevo', 'Europe/Sarajevo'), ('Europe/Saratov', 'Europe/Saratov'), ('Europe/Simferopol', 'Europe/Simferopol'), ('Europe/Skopje', 'Europe/Skopje'), ('Europe/Sofia', 'Europe/Sofia'), ('Europe/Stockholm', 'Europe/Stockholm'), ('Europe/Tallinn', 'Europe/Tallinn'), ('Europe/Tirane', 'Europe/Tirane'), ('Europe/Ulyanovsk', 'Europe/Ulyanovsk'), ('Europe/Vaduz', 'Europe/Vaduz'), ('Europe/Vatican', 'Europe/Vatican'), ('Europe/Vienna', 'Europe/Vienna'), ('Europe/Vilnius', 'Europe/Vilnius'), ('Europe/Volgograd', 'Europe/Volgograd'), ('Europe/Warsaw', 'Europe/Warsaw'), ('Europe/Zagreb', 'Europe/Zagreb'), ('Europe/Zurich', 'Europe/Zurich'), ('Indian/Antananarivo', 'Indian/Antananarivo'), ('Indian/Chagos', 'Indian/Chagos'), ('Indian/Christmas', 'Indian/Christmas'), ('Indian/Cocos', 'Indian/Cocos'), ('Indian/Comoro', 'Indian/Comoro'), ('Indian/Kerguelen', 'Indian/Kerguelen'), ('Indian/Mahe', 'Indian/Mahe'), ('Indian/Maldives', 'Indian/Maldives'), ('Indian/Mauritius', 'Indian/Mauritius'), ('Indian/Mayotte', 'Indian/Mayotte'), ('Indian/Reunion', 'Indian/Reunion'), ('Pacific/Apia', 'Pacific/Apia'), ('Pacific/Auckland', 'Pacific/Auckland'), ('Pacific/Bougainville', 'Pacific/Bougainville'), ('Pacific/Chatham', 'Pacific/Chatham'), ('Pacific/Easter', 'Pacific/Easter'), ('Pacific/Efate', 'Pacific/Efate'), ('Pacific/Enderbury', 'Pacific/Enderbury'), ('Pacific/Fakaofo', 'Pacific/Fakaofo'), ('Pacific/Fiji', 'Pacific/Fiji'), ('Pacific/Funafuti', 'Pacific/Funafuti'), ('Pacific/Galapagos', 'Pacific/Galapagos'), ('Pacific/Gambier', 'Pacific/Gambier'), ('Pacific/Guadalcanal', 'Pacific/Guadalcanal'), ('Pacific/Guam', 'Pacific/Guam'), ('Pacific/Honolulu', 'Pacific/Honolulu'), ('Pacific/Kiritimati', 'Pacific/Kiritimati'), ('Pacific/Kosrae', 'Pacific/Kosrae'), ('Pacific/Kwajalein', 'Pacific/Kwajalein'), ('Pacific/Majuro', 'Pacific/Majuro'), ('Pacific/Marquesas', 'Pacific/Marquesas'), ('Pacific/Midway', 'Pacific/Midway'), ('Pacific/Nauru', 'Pacific/Nauru'), ('Pacific/Niue', 'Pacific/Niue'), ('Pacific/Norfolk', 'Pacific/Norfolk'), ('Pacific/Noumea', 'Pacific/Noumea'), ('Pacific/Pago_Pago', 'Pacific/Pago_Pago'), ('Pacific/Palau', 'Pacific/Palau'), ('Pacific/Pitcairn', 'Pacific/Pitcairn'), ('Pacific/Ponape', 'Pacific/Ponape'), ('Pacific/Port_Moresby', 'Pacific/Port_Moresby'), ('Pacific/Rarotonga', 'Pacific/Rarotonga'), ('Pacific/Saipan', 'Pacific/Saipan'), ('Pacific/Tahiti', 'Pacific/Tahiti'), ('Pacific/Tarawa', 'Pacific/Tarawa'), ('Pacific/Tongatapu', 'Pacific/Tongatapu'), ('Pacific/Truk', 'Pacific/Truk'), ('Pacific/Wake', 'Pacific/Wake'), ('Pacific/Wallis', 'Pacific/Wallis')], max_length=50, null=True), + ), + ] diff --git a/backend/server/adventures/migrations/0029_adventure_city_adventure_country_adventure_region.py b/backend/server/adventures/migrations/0029_adventure_city_adventure_country_adventure_region.py new file mode 100644 index 0000000..3df78e0 --- /dev/null +++ b/backend/server/adventures/migrations/0029_adventure_city_adventure_country_adventure_region.py @@ -0,0 +1,30 @@ +# Generated by Django 5.0.11 on 2025-05-22 22:48 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0028_lodging_timezone'), + ('worldtravel', '0015_city_insert_id_country_insert_id_region_insert_id'), + ] + + operations = [ + migrations.AddField( + model_name='adventure', + name='city', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='worldtravel.city'), + ), + migrations.AddField( + model_name='adventure', + name='country', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='worldtravel.country'), + ), + migrations.AddField( + model_name='adventure', + name='region', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='worldtravel.region'), + ), + ] diff --git a/backend/server/adventures/migrations/0030_set_end_date_equal_start.py b/backend/server/adventures/migrations/0030_set_end_date_equal_start.py new file mode 100644 index 0000000..55d5f93 --- /dev/null +++ b/backend/server/adventures/migrations/0030_set_end_date_equal_start.py @@ -0,0 +1,18 @@ +from django.db import migrations + +def set_end_date_equal_to_start(apps, schema_editor): + Visit = apps.get_model('adventures', 'Visit') + for visit in Visit.objects.filter(end_date__isnull=True): + if visit.start_date: + visit.end_date = visit.start_date + visit.save() + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0029_adventure_city_adventure_country_adventure_region'), + ] + + operations = [ + migrations.RunPython(set_end_date_equal_to_start), + ] diff --git a/backend/server/adventures/migrations/0031_adventureimage_immich_id_alter_adventureimage_image_and_more.py b/backend/server/adventures/migrations/0031_adventureimage_immich_id_alter_adventureimage_image_and_more.py new file mode 100644 index 0000000..75ebb60 --- /dev/null +++ b/backend/server/adventures/migrations/0031_adventureimage_immich_id_alter_adventureimage_image_and_more.py @@ -0,0 +1,31 @@ +# Generated by Django 5.2.1 on 2025-06-01 16:57 + +import adventures.models +import django_resized.forms +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0030_set_end_date_equal_start'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.AddField( + model_name='adventureimage', + name='immich_id', + field=models.CharField(blank=True, max_length=200, null=True), + ), + migrations.AlterField( + model_name='adventureimage', + name='image', + field=django_resized.forms.ResizedImageField(blank=True, crop=None, force_format='WEBP', keep_meta=True, null=True, quality=75, scale=None, size=[1920, 1080], upload_to=adventures.models.PathAndRename('images/')), + ), + migrations.AddConstraint( + model_name='adventureimage', + constraint=models.CheckConstraint(condition=models.Q(models.Q(('image__isnull', False), ('immich_id__isnull', True)), models.Q(('image__isnull', True), ('immich_id__isnull', False)), _connector='OR'), name='image_xor_immich_id'), + ), + ] diff --git a/backend/server/adventures/migrations/0032_remove_adventureimage_image_xor_immich_id.py b/backend/server/adventures/migrations/0032_remove_adventureimage_image_xor_immich_id.py new file mode 100644 index 0000000..2ae8076 --- /dev/null +++ b/backend/server/adventures/migrations/0032_remove_adventureimage_image_xor_immich_id.py @@ -0,0 +1,17 @@ +# Generated by Django 5.2.1 on 2025-06-01 17:18 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0031_adventureimage_immich_id_alter_adventureimage_image_and_more'), + ] + + operations = [ + migrations.RemoveConstraint( + model_name='adventureimage', + name='image_xor_immich_id', + ), + ] diff --git a/backend/server/adventures/migrations/0033_adventureimage_unique_immich_id_per_user.py b/backend/server/adventures/migrations/0033_adventureimage_unique_immich_id_per_user.py new file mode 100644 index 0000000..d3b1bb5 --- /dev/null +++ b/backend/server/adventures/migrations/0033_adventureimage_unique_immich_id_per_user.py @@ -0,0 +1,19 @@ +# Generated by Django 5.2.1 on 2025-06-02 02:31 + +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0032_remove_adventureimage_image_xor_immich_id'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.AddConstraint( + model_name='adventureimage', + constraint=models.UniqueConstraint(fields=('immich_id', 'user_id'), name='unique_immich_id_per_user'), + ), + ] diff --git a/backend/server/adventures/migrations/0034_remove_adventureimage_unique_immich_id_per_user.py b/backend/server/adventures/migrations/0034_remove_adventureimage_unique_immich_id_per_user.py new file mode 100644 index 0000000..52b3e52 --- /dev/null +++ b/backend/server/adventures/migrations/0034_remove_adventureimage_unique_immich_id_per_user.py @@ -0,0 +1,17 @@ +# Generated by Django 5.2.1 on 2025-06-02 02:44 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0033_adventureimage_unique_immich_id_per_user'), + ] + + operations = [ + migrations.RemoveConstraint( + model_name='adventureimage', + name='unique_immich_id_per_user', + ), + ] diff --git a/backend/server/adventures/migrations/0035_remove_adventure_collection_adventure_collections.py b/backend/server/adventures/migrations/0035_remove_adventure_collection_adventure_collections.py new file mode 100644 index 0000000..59d3580 --- /dev/null +++ b/backend/server/adventures/migrations/0035_remove_adventure_collection_adventure_collections.py @@ -0,0 +1,59 @@ +# Generated by Django 5.2.1 on 2025-06-10 03:04 + +from django.db import migrations, models + + +def migrate_collection_relationships(apps, schema_editor): + """ + Migrate existing ForeignKey relationships to ManyToMany relationships + """ + Adventure = apps.get_model('adventures', 'Adventure') + + # Get all adventures that have a collection assigned + adventures_with_collections = Adventure.objects.filter(collection__isnull=False) + + for adventure in adventures_with_collections: + # Add the existing collection to the new many-to-many field + adventure.collections.add(adventure.collection_id) + + +def reverse_migrate_collection_relationships(apps, schema_editor): + """ + Reverse migration - convert first collection back to ForeignKey + Note: This will only preserve the first collection if an adventure has multiple + """ + Adventure = apps.get_model('adventures', 'Adventure') + + for adventure in Adventure.objects.all(): + first_collection = adventure.collections.first() + if first_collection: + adventure.collection = first_collection + adventure.save() + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0034_remove_adventureimage_unique_immich_id_per_user'), + ] + + operations = [ + # First, add the new ManyToMany field + migrations.AddField( + model_name='adventure', + name='collections', + field=models.ManyToManyField(blank=True, related_name='adventures', to='adventures.collection'), + ), + + # Migrate existing data from old field to new field + migrations.RunPython( + migrate_collection_relationships, + reverse_migrate_collection_relationships + ), + + # Finally, remove the old ForeignKey field + migrations.RemoveField( + model_name='adventure', + name='collection', + ), + ] \ No newline at end of file diff --git a/backend/server/adventures/migrations/migrate_images.py b/backend/server/adventures/migrations/migrate_images.py new file mode 100644 index 0000000..9ef361f --- /dev/null +++ b/backend/server/adventures/migrations/migrate_images.py @@ -0,0 +1,29 @@ +from django.db import migrations + +def move_images_to_new_model(apps, schema_editor): + Adventure = apps.get_model('adventures', 'Adventure') + AdventureImage = apps.get_model('adventures', 'AdventureImage') + + for adventure in Adventure.objects.all(): + if adventure.image: + AdventureImage.objects.create( + adventure=adventure, + image=adventure.image, + user_id=adventure.user_id, + ) + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0001_initial'), + ('adventures', '0002_adventureimage'), + ] + + operations = [ + migrations.RunPython(move_images_to_new_model), + migrations.RemoveField( + model_name='Adventure', + name='image', + ), + ] \ No newline at end of file diff --git a/backend/server/adventures/migrations/migrate_visits_categories.py b/backend/server/adventures/migrations/migrate_visits_categories.py new file mode 100644 index 0000000..c9afb4a --- /dev/null +++ b/backend/server/adventures/migrations/migrate_visits_categories.py @@ -0,0 +1,31 @@ +from django.db import migrations +from django.db import migrations, models + +def move_images_to_new_model(apps, schema_editor): + Adventure = apps.get_model('adventures', 'Adventure') + Visit = apps.get_model('adventures', 'Visit') + + for adventure in Adventure.objects.all(): + # if the type is visited and there is no date, set note to 'No date provided.' + note = 'No date provided.' if adventure.type == 'visited' and not adventure.date else '' + if adventure.date or adventure.type == 'visited': + Visit.objects.create( + adventure=adventure, + start_date=adventure.date, + end_date=adventure.end_date, + notes=note, + ) + if adventure.type == 'visited' or adventure.type == 'planned': + adventure.type = 'general' + adventure.save() + + +class Migration(migrations.Migration): + + dependencies = [ + ('adventures', '0007_visit_model'), + ] + + operations = [ + migrations.RunPython(move_images_to_new_model), + ] \ No newline at end of file diff --git a/backend/server/adventures/models.py b/backend/server/adventures/models.py index 524674d..40bb680 100644 --- a/backend/server/adventures/models.py +++ b/backend/server/adventures/models.py @@ -1,16 +1,524 @@ +from django.core.exceptions import ValidationError +import os +from typing import Iterable import uuid from django.db import models - +from django.utils.deconstruct import deconstructible +from adventures.managers import AdventureManager +import threading from django.contrib.auth import get_user_model from django.contrib.postgres.fields import ArrayField from django.forms import ValidationError from django_resized import ResizedImageField +from worldtravel.models import City, Country, Region, VisitedCity, VisitedRegion +from django.core.exceptions import ValidationError +from django.utils import timezone + +def background_geocode_and_assign(adventure_id: str): + print(f"[Adventure Geocode Thread] Starting geocode for adventure {adventure_id}") + try: + adventure = Adventure.objects.get(id=adventure_id) + if not (adventure.latitude and adventure.longitude): + return + + from adventures.geocoding import reverse_geocode # or wherever you defined it + is_visited = adventure.is_visited_status() + result = reverse_geocode(adventure.latitude, adventure.longitude, adventure.user_id) + + if 'region_id' in result: + region = Region.objects.filter(id=result['region_id']).first() + if region: + adventure.region = region + if is_visited: + VisitedRegion.objects.get_or_create(user_id=adventure.user_id, region=region) + + if 'city_id' in result: + city = City.objects.filter(id=result['city_id']).first() + if city: + adventure.city = city + if is_visited: + VisitedCity.objects.get_or_create(user_id=adventure.user_id, city=city) + + if 'country_id' in result: + country = Country.objects.filter(country_code=result['country_id']).first() + if country: + adventure.country = country + + # Save updated location info + # Save updated location info, skip geocode threading + adventure.save(update_fields=["region", "city", "country"], _skip_geocode=True) + + # print(f"[Adventure Geocode Thread] Successfully processed {adventure_id}: {adventure.name} - {adventure.latitude}, {adventure.longitude}") + + except Exception as e: + # Optional: log or print the error + print(f"[Adventure Geocode Thread] Error processing {adventure_id}: {e}") + +def validate_file_extension(value): + import os + from django.core.exceptions import ValidationError + ext = os.path.splitext(value.name)[1] # [0] returns path+filename + valid_extensions = ['.pdf', '.doc', '.docx', '.xls', '.xlsx', '.ppt', '.pptx', '.txt', '.png', '.jpg', '.jpeg', '.gif', '.webp', '.mp4', '.mov', '.avi', '.mkv', '.mp3', '.wav', '.flac', '.ogg', '.m4a', '.wma', '.aac', '.opus', '.zip', '.rar', '.7z', '.tar', '.gz', '.bz2', '.xz', '.zst', '.lz4', '.lzma', '.lzo', '.z', '.tar.gz', '.tar.bz2', '.tar.xz', '.tar.zst', '.tar.lz4', '.tar.lzma', '.tar.lzo', '.tar.z', '.gpx', '.md'] + if not ext.lower() in valid_extensions: + raise ValidationError('Unsupported file extension.') ADVENTURE_TYPES = [ - ('visited', 'Visited'), - ('planned', 'Planned'), - ('lodging', 'Lodging'), - ('dining', 'Dining') + ('general', 'General 🌍'), + ('outdoor', 'Outdoor 🏞️'), + ('lodging', 'Lodging 🛌'), + ('dining', 'Dining 🍽️'), + ('activity', 'Activity 🏄'), + ('attraction', 'Attraction 🎢'), + ('shopping', 'Shopping 🛍️'), + ('nightlife', 'Nightlife 🌃'), + ('event', 'Event 🎉'), + ('transportation', 'Transportation 🚗'), + ('culture', 'Culture 🎭'), + ('water_sports', 'Water Sports 🚤'), + ('hiking', 'Hiking 🥾'), + ('wildlife', 'Wildlife 🦒'), + ('historical_sites', 'Historical Sites 🏛️'), + ('music_concerts', 'Music & Concerts 🎶'), + ('fitness', 'Fitness 🏋️'), + ('art_museums', 'Art & Museums 🎨'), + ('festivals', 'Festivals 🎪'), + ('spiritual_journeys', 'Spiritual Journeys 🧘‍♀️'), + ('volunteer_work', 'Volunteer Work 🤝'), + ('other', 'Other') +] + +TIMEZONES = [ + "Africa/Abidjan", + "Africa/Accra", + "Africa/Addis_Ababa", + "Africa/Algiers", + "Africa/Asmera", + "Africa/Bamako", + "Africa/Bangui", + "Africa/Banjul", + "Africa/Bissau", + "Africa/Blantyre", + "Africa/Brazzaville", + "Africa/Bujumbura", + "Africa/Cairo", + "Africa/Casablanca", + "Africa/Ceuta", + "Africa/Conakry", + "Africa/Dakar", + "Africa/Dar_es_Salaam", + "Africa/Djibouti", + "Africa/Douala", + "Africa/El_Aaiun", + "Africa/Freetown", + "Africa/Gaborone", + "Africa/Harare", + "Africa/Johannesburg", + "Africa/Juba", + "Africa/Kampala", + "Africa/Khartoum", + "Africa/Kigali", + "Africa/Kinshasa", + "Africa/Lagos", + "Africa/Libreville", + "Africa/Lome", + "Africa/Luanda", + "Africa/Lubumbashi", + "Africa/Lusaka", + "Africa/Malabo", + "Africa/Maputo", + "Africa/Maseru", + "Africa/Mbabane", + "Africa/Mogadishu", + "Africa/Monrovia", + "Africa/Nairobi", + "Africa/Ndjamena", + "Africa/Niamey", + "Africa/Nouakchott", + "Africa/Ouagadougou", + "Africa/Porto-Novo", + "Africa/Sao_Tome", + "Africa/Tripoli", + "Africa/Tunis", + "Africa/Windhoek", + "America/Adak", + "America/Anchorage", + "America/Anguilla", + "America/Antigua", + "America/Araguaina", + "America/Argentina/La_Rioja", + "America/Argentina/Rio_Gallegos", + "America/Argentina/Salta", + "America/Argentina/San_Juan", + "America/Argentina/San_Luis", + "America/Argentina/Tucuman", + "America/Argentina/Ushuaia", + "America/Aruba", + "America/Asuncion", + "America/Bahia", + "America/Bahia_Banderas", + "America/Barbados", + "America/Belem", + "America/Belize", + "America/Blanc-Sablon", + "America/Boa_Vista", + "America/Bogota", + "America/Boise", + "America/Buenos_Aires", + "America/Cambridge_Bay", + "America/Campo_Grande", + "America/Cancun", + "America/Caracas", + "America/Catamarca", + "America/Cayenne", + "America/Cayman", + "America/Chicago", + "America/Chihuahua", + "America/Ciudad_Juarez", + "America/Coral_Harbour", + "America/Cordoba", + "America/Costa_Rica", + "America/Creston", + "America/Cuiaba", + "America/Curacao", + "America/Danmarkshavn", + "America/Dawson", + "America/Dawson_Creek", + "America/Denver", + "America/Detroit", + "America/Dominica", + "America/Edmonton", + "America/Eirunepe", + "America/El_Salvador", + "America/Fort_Nelson", + "America/Fortaleza", + "America/Glace_Bay", + "America/Godthab", + "America/Goose_Bay", + "America/Grand_Turk", + "America/Grenada", + "America/Guadeloupe", + "America/Guatemala", + "America/Guayaquil", + "America/Guyana", + "America/Halifax", + "America/Havana", + "America/Hermosillo", + "America/Indiana/Knox", + "America/Indiana/Marengo", + "America/Indiana/Petersburg", + "America/Indiana/Tell_City", + "America/Indiana/Vevay", + "America/Indiana/Vincennes", + "America/Indiana/Winamac", + "America/Indianapolis", + "America/Inuvik", + "America/Iqaluit", + "America/Jamaica", + "America/Jujuy", + "America/Juneau", + "America/Kentucky/Monticello", + "America/Kralendijk", + "America/La_Paz", + "America/Lima", + "America/Los_Angeles", + "America/Louisville", + "America/Lower_Princes", + "America/Maceio", + "America/Managua", + "America/Manaus", + "America/Marigot", + "America/Martinique", + "America/Matamoros", + "America/Mazatlan", + "America/Mendoza", + "America/Menominee", + "America/Merida", + "America/Metlakatla", + "America/Mexico_City", + "America/Miquelon", + "America/Moncton", + "America/Monterrey", + "America/Montevideo", + "America/Montserrat", + "America/Nassau", + "America/New_York", + "America/Nome", + "America/Noronha", + "America/North_Dakota/Beulah", + "America/North_Dakota/Center", + "America/North_Dakota/New_Salem", + "America/Ojinaga", + "America/Panama", + "America/Paramaribo", + "America/Phoenix", + "America/Port-au-Prince", + "America/Port_of_Spain", + "America/Porto_Velho", + "America/Puerto_Rico", + "America/Punta_Arenas", + "America/Rankin_Inlet", + "America/Recife", + "America/Regina", + "America/Resolute", + "America/Rio_Branco", + "America/Santarem", + "America/Santiago", + "America/Santo_Domingo", + "America/Sao_Paulo", + "America/Scoresbysund", + "America/Sitka", + "America/St_Barthelemy", + "America/St_Johns", + "America/St_Kitts", + "America/St_Lucia", + "America/St_Thomas", + "America/St_Vincent", + "America/Swift_Current", + "America/Tegucigalpa", + "America/Thule", + "America/Tijuana", + "America/Toronto", + "America/Tortola", + "America/Vancouver", + "America/Whitehorse", + "America/Winnipeg", + "America/Yakutat", + "Antarctica/Casey", + "Antarctica/Davis", + "Antarctica/DumontDUrville", + "Antarctica/Macquarie", + "Antarctica/Mawson", + "Antarctica/McMurdo", + "Antarctica/Palmer", + "Antarctica/Rothera", + "Antarctica/Syowa", + "Antarctica/Troll", + "Antarctica/Vostok", + "Arctic/Longyearbyen", + "Asia/Aden", + "Asia/Almaty", + "Asia/Amman", + "Asia/Anadyr", + "Asia/Aqtau", + "Asia/Aqtobe", + "Asia/Ashgabat", + "Asia/Atyrau", + "Asia/Baghdad", + "Asia/Bahrain", + "Asia/Baku", + "Asia/Bangkok", + "Asia/Barnaul", + "Asia/Beirut", + "Asia/Bishkek", + "Asia/Brunei", + "Asia/Calcutta", + "Asia/Chita", + "Asia/Colombo", + "Asia/Damascus", + "Asia/Dhaka", + "Asia/Dili", + "Asia/Dubai", + "Asia/Dushanbe", + "Asia/Famagusta", + "Asia/Gaza", + "Asia/Hebron", + "Asia/Hong_Kong", + "Asia/Hovd", + "Asia/Irkutsk", + "Asia/Jakarta", + "Asia/Jayapura", + "Asia/Jerusalem", + "Asia/Kabul", + "Asia/Kamchatka", + "Asia/Karachi", + "Asia/Katmandu", + "Asia/Khandyga", + "Asia/Krasnoyarsk", + "Asia/Kuala_Lumpur", + "Asia/Kuching", + "Asia/Kuwait", + "Asia/Macau", + "Asia/Magadan", + "Asia/Makassar", + "Asia/Manila", + "Asia/Muscat", + "Asia/Nicosia", + "Asia/Novokuznetsk", + "Asia/Novosibirsk", + "Asia/Omsk", + "Asia/Oral", + "Asia/Phnom_Penh", + "Asia/Pontianak", + "Asia/Pyongyang", + "Asia/Qatar", + "Asia/Qostanay", + "Asia/Qyzylorda", + "Asia/Rangoon", + "Asia/Riyadh", + "Asia/Saigon", + "Asia/Sakhalin", + "Asia/Samarkand", + "Asia/Seoul", + "Asia/Shanghai", + "Asia/Singapore", + "Asia/Srednekolymsk", + "Asia/Taipei", + "Asia/Tashkent", + "Asia/Tbilisi", + "Asia/Tehran", + "Asia/Thimphu", + "Asia/Tokyo", + "Asia/Tomsk", + "Asia/Ulaanbaatar", + "Asia/Urumqi", + "Asia/Ust-Nera", + "Asia/Vientiane", + "Asia/Vladivostok", + "Asia/Yakutsk", + "Asia/Yekaterinburg", + "Asia/Yerevan", + "Atlantic/Azores", + "Atlantic/Bermuda", + "Atlantic/Canary", + "Atlantic/Cape_Verde", + "Atlantic/Faeroe", + "Atlantic/Madeira", + "Atlantic/Reykjavik", + "Atlantic/South_Georgia", + "Atlantic/St_Helena", + "Atlantic/Stanley", + "Australia/Adelaide", + "Australia/Brisbane", + "Australia/Broken_Hill", + "Australia/Darwin", + "Australia/Eucla", + "Australia/Hobart", + "Australia/Lindeman", + "Australia/Lord_Howe", + "Australia/Melbourne", + "Australia/Perth", + "Australia/Sydney", + "Europe/Amsterdam", + "Europe/Andorra", + "Europe/Astrakhan", + "Europe/Athens", + "Europe/Belgrade", + "Europe/Berlin", + "Europe/Bratislava", + "Europe/Brussels", + "Europe/Bucharest", + "Europe/Budapest", + "Europe/Busingen", + "Europe/Chisinau", + "Europe/Copenhagen", + "Europe/Dublin", + "Europe/Gibraltar", + "Europe/Guernsey", + "Europe/Helsinki", + "Europe/Isle_of_Man", + "Europe/Istanbul", + "Europe/Jersey", + "Europe/Kaliningrad", + "Europe/Kiev", + "Europe/Kirov", + "Europe/Lisbon", + "Europe/Ljubljana", + "Europe/London", + "Europe/Luxembourg", + "Europe/Madrid", + "Europe/Malta", + "Europe/Mariehamn", + "Europe/Minsk", + "Europe/Monaco", + "Europe/Moscow", + "Europe/Oslo", + "Europe/Paris", + "Europe/Podgorica", + "Europe/Prague", + "Europe/Riga", + "Europe/Rome", + "Europe/Samara", + "Europe/San_Marino", + "Europe/Sarajevo", + "Europe/Saratov", + "Europe/Simferopol", + "Europe/Skopje", + "Europe/Sofia", + "Europe/Stockholm", + "Europe/Tallinn", + "Europe/Tirane", + "Europe/Ulyanovsk", + "Europe/Vaduz", + "Europe/Vatican", + "Europe/Vienna", + "Europe/Vilnius", + "Europe/Volgograd", + "Europe/Warsaw", + "Europe/Zagreb", + "Europe/Zurich", + "Indian/Antananarivo", + "Indian/Chagos", + "Indian/Christmas", + "Indian/Cocos", + "Indian/Comoro", + "Indian/Kerguelen", + "Indian/Mahe", + "Indian/Maldives", + "Indian/Mauritius", + "Indian/Mayotte", + "Indian/Reunion", + "Pacific/Apia", + "Pacific/Auckland", + "Pacific/Bougainville", + "Pacific/Chatham", + "Pacific/Easter", + "Pacific/Efate", + "Pacific/Enderbury", + "Pacific/Fakaofo", + "Pacific/Fiji", + "Pacific/Funafuti", + "Pacific/Galapagos", + "Pacific/Gambier", + "Pacific/Guadalcanal", + "Pacific/Guam", + "Pacific/Honolulu", + "Pacific/Kiritimati", + "Pacific/Kosrae", + "Pacific/Kwajalein", + "Pacific/Majuro", + "Pacific/Marquesas", + "Pacific/Midway", + "Pacific/Nauru", + "Pacific/Niue", + "Pacific/Norfolk", + "Pacific/Noumea", + "Pacific/Pago_Pago", + "Pacific/Palau", + "Pacific/Pitcairn", + "Pacific/Ponape", + "Pacific/Port_Moresby", + "Pacific/Rarotonga", + "Pacific/Saipan", + "Pacific/Tahiti", + "Pacific/Tarawa", + "Pacific/Tongatapu", + "Pacific/Truk", + "Pacific/Wake", + "Pacific/Wallis" +] + +LODGING_TYPES = [ + ('hotel', 'Hotel'), + ('hostel', 'Hostel'), + ('resort', 'Resort'), + ('bnb', 'Bed & Breakfast'), + ('campground', 'Campground'), + ('cabin', 'Cabin'), + ('apartment', 'Apartment'), + ('house', 'House'), + ('villa', 'Villa'), + ('motel', 'Motel'), + ('other', 'Other') ] TRANSPORTATION_TYPES = [ @@ -24,41 +532,129 @@ TRANSPORTATION_TYPES = [ ('other', 'Other') ] - # Assuming you have a default user ID you want to use default_user_id = 1 # Replace with an actual user ID User = get_user_model() +class Visit(models.Model): + id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True, primary_key=True) + adventure = models.ForeignKey('Adventure', on_delete=models.CASCADE, related_name='visits') + start_date = models.DateTimeField(null=True, blank=True) + end_date = models.DateTimeField(null=True, blank=True) + timezone = models.CharField(max_length=50, choices=[(tz, tz) for tz in TIMEZONES], null=True, blank=True) + notes = models.TextField(blank=True, null=True) + created_at = models.DateTimeField(auto_now_add=True) + updated_at = models.DateTimeField(auto_now=True) + + def clean(self): + if self.start_date > self.end_date: + raise ValidationError('The start date must be before or equal to the end date.') + + def __str__(self): + return f"{self.adventure.name} - {self.start_date} to {self.end_date}" class Adventure(models.Model): #id = models.AutoField(primary_key=True) id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True, primary_key=True) user_id = models.ForeignKey( User, on_delete=models.CASCADE, default=default_user_id) - type = models.CharField(max_length=100, choices=ADVENTURE_TYPES) + + category = models.ForeignKey('Category', on_delete=models.SET_NULL, blank=True, null=True) name = models.CharField(max_length=200) location = models.CharField(max_length=200, blank=True, null=True) activity_types = ArrayField(models.CharField( max_length=100), blank=True, null=True) description = models.TextField(blank=True, null=True) rating = models.FloatField(blank=True, null=True) - link = models.URLField(blank=True, null=True) - image = ResizedImageField(force_format="WEBP", quality=75, null=True, blank=True, upload_to='images/') - date = models.DateField(blank=True, null=True) + link = models.URLField(blank=True, null=True, max_length=2083) is_public = models.BooleanField(default=False) + longitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) latitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) - collection = models.ForeignKey('Collection', on_delete=models.CASCADE, blank=True, null=True) + + city = models.ForeignKey(City, on_delete=models.SET_NULL, blank=True, null=True) + region = models.ForeignKey(Region, on_delete=models.SET_NULL, blank=True, null=True) + country = models.ForeignKey(Country, on_delete=models.SET_NULL, blank=True, null=True) + + # Changed from ForeignKey to ManyToManyField + collections = models.ManyToManyField('Collection', blank=True, related_name='adventures') + created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) - def clean(self): - if self.collection: - if self.collection.is_public and not self.is_public: - raise ValidationError('Adventures associated with a public collection must be public. Collection: ' + self.trip.name + ' Adventure: ' + self.name) - if self.user_id != self.collection.user_id: - raise ValidationError('Adventures must be associated with collections owned by the same user. Collection owner: ' + self.collection.user_id.username + ' Adventure owner: ' + self.user_id.username) + objects = AdventureManager() + + def is_visited_status(self): + current_date = timezone.now().date() + for visit in self.visits.all(): + start_date = visit.start_date.date() if isinstance(visit.start_date, timezone.datetime) else visit.start_date + end_date = visit.end_date.date() if isinstance(visit.end_date, timezone.datetime) else visit.end_date + if start_date and end_date and (start_date <= current_date): + return True + elif start_date and not end_date and (start_date <= current_date): + return True + return False + + def clean(self, skip_shared_validation=False): + """ + Validate model constraints. + skip_shared_validation: Skip validation when called by shared users + """ + # Skip validation if this is a shared user update + if skip_shared_validation: + return + + # Check collections after the instance is saved (in save method or separate validation) + if self.pk: # Only check if the instance has been saved + for collection in self.collections.all(): + if collection.is_public and not self.is_public: + raise ValidationError(f'Adventures associated with a public collection must be public. Collection: {collection.name} Adventure: {self.name}') + + # Only enforce same-user constraint for non-shared collections + if self.user_id != collection.user_id: + # Check if this is a shared collection scenario + # Allow if the adventure owner has access to the collection through sharing + if not collection.shared_with.filter(uuid=self.user_id.uuid).exists(): + raise ValidationError(f'Adventures must be associated with collections owned by the same user or shared collections. Collection owner: {collection.user_id.username} Adventure owner: {self.user_id.username}') + + if self.category: + if self.user_id != self.category.user_id: + raise ValidationError(f'Adventures must be associated with categories owned by the same user. Category owner: {self.category.user_id.username} Adventure owner: {self.user_id.username}') + + def save(self, force_insert=False, force_update=False, using=None, update_fields=None, _skip_geocode=False, _skip_shared_validation=False): + if force_insert and force_update: + raise ValueError("Cannot force both insert and updating in model saving.") + + if not self.category: + category, _ = Category.objects.get_or_create( + user_id=self.user_id, + name='general', + defaults={'display_name': 'General', 'icon': '🌍'} + ) + self.category = category + + result = super().save(force_insert, force_update, using, update_fields) + + # Validate collections after saving (since M2M relationships require saved instance) + if self.pk: + try: + self.clean(skip_shared_validation=_skip_shared_validation) + except ValidationError as e: + # If validation fails, you might want to handle this differently + # For now, we'll re-raise the error + raise e + + # ⛔ Skip threading if called from geocode background thread + if _skip_geocode: + return result + + if self.latitude and self.longitude: + thread = threading.Thread(target=background_geocode_and_assign, args=(str(self.id),)) + thread.daemon = True # Allows the thread to exit when the main program ends + thread.start() + + return result def __str__(self): return self.name @@ -76,14 +672,16 @@ class Collection(models.Model): end_date = models.DateField(blank=True, null=True) updated_at = models.DateTimeField(auto_now=True) is_archived = models.BooleanField(default=False) - + shared_with = models.ManyToManyField(User, related_name='shared_with', blank=True) + link = models.URLField(blank=True, null=True, max_length=2083) # if connected adventures are private and collection is public, raise an error def clean(self): if self.is_public and self.pk: # Only check if the instance has a primary key - for adventure in self.adventure_set.all(): + # Updated to use the new related_name 'adventures' + for adventure in self.adventures.all(): if not adventure.is_public: - raise ValidationError('Public collections cannot be associated with private adventures. Collection: ' + self.name + ' Adventure: ' + adventure.name) + raise ValidationError(f'Public collections cannot be associated with private adventures. Collection: {self.name} Adventure: {adventure.name}') def __str__(self): return self.name @@ -99,8 +697,15 @@ class Transportation(models.Model): rating = models.FloatField(blank=True, null=True) link = models.URLField(blank=True, null=True) date = models.DateTimeField(blank=True, null=True) + end_date = models.DateTimeField(blank=True, null=True) + start_timezone = models.CharField(max_length=50, choices=[(tz, tz) for tz in TIMEZONES], null=True, blank=True) + end_timezone = models.CharField(max_length=50, choices=[(tz, tz) for tz in TIMEZONES], null=True, blank=True) flight_number = models.CharField(max_length=100, blank=True, null=True) from_location = models.CharField(max_length=200, blank=True, null=True) + origin_latitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) + origin_longitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) + destination_latitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) + destination_longitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) to_location = models.CharField(max_length=200, blank=True, null=True) is_public = models.BooleanField(default=False) collection = models.ForeignKey('Collection', on_delete=models.CASCADE, blank=True, null=True) @@ -108,6 +713,10 @@ class Transportation(models.Model): updated_at = models.DateTimeField(auto_now=True) def clean(self): + print(self.date) + if self.date and self.end_date and self.date > self.end_date: + raise ValidationError('The start date must be before the end date. Start date: ' + str(self.date) + ' End date: ' + str(self.end_date)) + if self.collection: if self.collection.is_public and not self.is_public: raise ValidationError('Transportations associated with a public collection must be public. Collection: ' + self.collection.name + ' Transportation: ' + self.name) @@ -182,3 +791,119 @@ class ChecklistItem(models.Model): def __str__(self): return self.name + +@deconstructible +class PathAndRename: + def __init__(self, path): + self.path = path + + def __call__(self, instance, filename): + ext = filename.split('.')[-1] + # Generate a new UUID for the filename + filename = f"{uuid.uuid4()}.{ext}" + return os.path.join(self.path, filename) + +class AdventureImage(models.Model): + id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True, primary_key=True) + user_id = models.ForeignKey(User, on_delete=models.CASCADE, default=default_user_id) + image = ResizedImageField( + force_format="WEBP", + quality=75, + upload_to=PathAndRename('images/'), + blank=True, + null=True, + ) + immich_id = models.CharField(max_length=200, null=True, blank=True) + adventure = models.ForeignKey(Adventure, related_name='images', on_delete=models.CASCADE) + is_primary = models.BooleanField(default=False) + + def clean(self): + + # One of image or immich_id must be set, but not both + has_image = bool(self.image and str(self.image).strip()) + has_immich_id = bool(self.immich_id and str(self.immich_id).strip()) + + if has_image and has_immich_id: + raise ValidationError("Cannot have both image file and Immich ID. Please provide only one.") + if not has_image and not has_immich_id: + raise ValidationError("Must provide either an image file or an Immich ID.") + + def save(self, *args, **kwargs): + # Clean empty strings to None for proper database storage + if not self.image: + self.image = None + if not self.immich_id or not str(self.immich_id).strip(): + self.immich_id = None + + self.full_clean() # This calls clean() method + super().save(*args, **kwargs) + + def __str__(self): + return self.image.url if self.image else f"Immich ID: {self.immich_id or 'No image'}" + +class Attachment(models.Model): + id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True, primary_key=True) + user_id = models.ForeignKey( + User, on_delete=models.CASCADE, default=default_user_id) + file = models.FileField(upload_to=PathAndRename('attachments/'),validators=[validate_file_extension]) + adventure = models.ForeignKey(Adventure, related_name='attachments', on_delete=models.CASCADE) + name = models.CharField(max_length=200, null=True, blank=True) + + def __str__(self): + return self.file.url + +class Category(models.Model): + id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True, primary_key=True) + user_id = models.ForeignKey( + User, on_delete=models.CASCADE, default=default_user_id) + name = models.CharField(max_length=200) + display_name = models.CharField(max_length=200) + icon = models.CharField(max_length=200, default='🌍') + + class Meta: + verbose_name_plural = 'Categories' + unique_together = ['name', 'user_id'] + + def clean(self) -> None: + self.name = self.name.lower().strip() + + return super().clean() + + + def __str__(self): + return self.name + ' - ' + self.display_name + ' - ' + self.icon + +class Lodging(models.Model): + id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True, primary_key=True) + user_id = models.ForeignKey( + User, on_delete=models.CASCADE, default=default_user_id) + name = models.CharField(max_length=200) + type = models.CharField(max_length=100, choices=LODGING_TYPES, default='other') + description = models.TextField(blank=True, null=True) + rating = models.FloatField(blank=True, null=True) + link = models.URLField(blank=True, null=True, max_length=2083) + check_in = models.DateTimeField(blank=True, null=True) + check_out = models.DateTimeField(blank=True, null=True) + timezone = models.CharField(max_length=50, choices=[(tz, tz) for tz in TIMEZONES], null=True, blank=True) + reservation_number = models.CharField(max_length=100, blank=True, null=True) + price = models.DecimalField(max_digits=9, decimal_places=2, blank=True, null=True) + latitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) + longitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True) + location = models.CharField(max_length=200, blank=True, null=True) + is_public = models.BooleanField(default=False) + collection = models.ForeignKey('Collection', on_delete=models.CASCADE, blank=True, null=True) + created_at = models.DateTimeField(auto_now_add=True) + updated_at = models.DateTimeField(auto_now=True) + + def clean(self): + if self.check_in and self.check_out and self.check_in > self.check_out: + raise ValidationError('The start date must be before the end date. Start date: ' + str(self.check_in) + ' End date: ' + str(self.check_out)) + + if self.collection: + if self.collection.is_public and not self.is_public: + raise ValidationError('Lodging associated with a public collection must be public. Collection: ' + self.collection.name + ' Loging: ' + self.name) + if self.user_id != self.collection.user_id: + raise ValidationError('Lodging must be associated with collections owned by the same user. Collection owner: ' + self.collection.user_id.username + ' Lodging owner: ' + self.user_id.username) + + def __str__(self): + return self.name \ No newline at end of file diff --git a/backend/server/adventures/permissions.py b/backend/server/adventures/permissions.py index b4241c2..ce38f74 100644 --- a/backend/server/adventures/permissions.py +++ b/backend/server/adventures/permissions.py @@ -2,29 +2,99 @@ from rest_framework import permissions class IsOwnerOrReadOnly(permissions.BasePermission): """ - Custom permission to only allow owners of an object to edit it. + Owners can edit, others have read-only access. """ - def has_object_permission(self, request, view, obj): - # Read permissions are allowed to any request, - # so we'll always allow GET, HEAD or OPTIONS requests. if request.method in permissions.SAFE_METHODS: return True - - # Write permissions are only allowed to the owner of the object. + # obj.user_id is FK to User, compare with request.user return obj.user_id == request.user class IsPublicReadOnly(permissions.BasePermission): """ - Custom permission to only allow read-only access to public objects, - and write access to the owner of the object. + Read-only if public or owner, write only for owner. """ - def has_object_permission(self, request, view, obj): - # Read permissions are allowed if the object is public if request.method in permissions.SAFE_METHODS: return obj.is_public or obj.user_id == request.user + return obj.user_id == request.user - # Write permissions are only allowed to the owner of the object - return obj.user_id == request.user \ No newline at end of file + +class CollectionShared(permissions.BasePermission): + """ + Allow full access if user is in shared_with of collection(s) or owner, + read-only if public or shared_with, + write only if owner or shared_with. + """ + def has_object_permission(self, request, view, obj): + user = request.user + if not user or not user.is_authenticated: + # Anonymous: only read public + return request.method in permissions.SAFE_METHODS and obj.is_public + + # Check if user is in shared_with of any collections related to the obj + # If obj is a Collection itself: + if hasattr(obj, 'shared_with'): + if obj.shared_with.filter(id=user.id).exists(): + return True + + # If obj is an Adventure (has collections M2M) + if hasattr(obj, 'collections'): + # Check if user is in shared_with of any related collection + shared_collections = obj.collections.filter(shared_with=user) + if shared_collections.exists(): + return True + + # Read permission if public or owner + if request.method in permissions.SAFE_METHODS: + return obj.is_public or obj.user_id == user + + # Write permission only if owner or shared user via collections + if obj.user_id == user: + return True + + if hasattr(obj, 'collections'): + if obj.collections.filter(shared_with=user).exists(): + return True + + # Default deny + return False + + +class IsOwnerOrSharedWithFullAccess(permissions.BasePermission): + """ + Full access for owners and users shared via collections, + read-only for others if public. + """ + def has_object_permission(self, request, view, obj): + user = request.user + if not user or not user.is_authenticated: + return request.method in permissions.SAFE_METHODS and obj.is_public + + # If safe method (read), allow if: + if request.method in permissions.SAFE_METHODS: + if obj.is_public: + return True + if obj.user_id == user: + return True + # If user in shared_with of any collection related to obj + if hasattr(obj, 'collections') and obj.collections.filter(shared_with=user).exists(): + return True + if hasattr(obj, 'collection') and obj.collection and obj.collection.shared_with.filter(id=user.id).exists(): + return True + if hasattr(obj, 'shared_with') and obj.shared_with.filter(id=user.id).exists(): + return True + return False + + # For write methods, allow if owner or shared user + if obj.user_id == user: + return True + if hasattr(obj, 'collections') and obj.collections.filter(shared_with=user).exists(): + return True + if hasattr(obj, 'collection') and obj.collection and obj.collection.shared_with.filter(id=user.id).exists(): + return True + if hasattr(obj, 'shared_with') and obj.shared_with.filter(id=user.id).exists(): + return True + + return False diff --git a/backend/server/adventures/serializers.py b/backend/server/adventures/serializers.py index 56be627..622e2eb 100644 --- a/backend/server/adventures/serializers.py +++ b/backend/server/adventures/serializers.py @@ -1,64 +1,296 @@ +from django.utils import timezone import os -from .models import Adventure, ChecklistItem, Collection, Note, Transportation, Checklist +from .models import Adventure, AdventureImage, ChecklistItem, Collection, Note, Transportation, Checklist, Visit, Category, Attachment, Lodging from rest_framework import serializers +from main.utils import CustomModelSerializer +from users.serializers import CustomUserDetailsSerializer +from worldtravel.serializers import CountrySerializer, RegionSerializer, CitySerializer +from geopy.distance import geodesic +from integrations.models import ImmichIntegration -class AdventureSerializer(serializers.ModelSerializer): +class AdventureImageSerializer(CustomModelSerializer): class Meta: - model = Adventure - fields = '__all__' - read_only_fields = ['id', 'created_at', 'updated_at', 'user_id'] + model = AdventureImage + fields = ['id', 'image', 'adventure', 'is_primary', 'user_id', 'immich_id'] + read_only_fields = ['id', 'user_id'] + + def to_representation(self, instance): + # If immich_id is set, check for user integration once + integration = None + if instance.immich_id: + integration = ImmichIntegration.objects.filter(user=instance.user_id).first() + if not integration: + return None # Skip if Immich image but no integration + + # Base representation + representation = super().to_representation(instance) + + # Prepare public URL once + public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/').replace("'", "") + + if instance.immich_id: + # Use Immich integration URL + representation['image'] = f"{public_url}/api/integrations/immich/{integration.id}/get/{instance.immich_id}" + elif instance.image: + # Use local image URL + representation['image'] = f"{public_url}/media/{instance.image.name}" + + return representation + +class AttachmentSerializer(CustomModelSerializer): + extension = serializers.SerializerMethodField() + class Meta: + model = Attachment + fields = ['id', 'file', 'adventure', 'extension', 'name', 'user_id'] + read_only_fields = ['id', 'user_id'] + + def get_extension(self, obj): + return obj.file.name.split('.')[-1] def to_representation(self, instance): representation = super().to_representation(instance) - if instance.image: + if instance.file: public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/') - print(public_url) + #print(public_url) # remove any ' from the url public_url = public_url.replace("'", "") - representation['image'] = f"{public_url}/media/{instance.image.name}" + representation['file'] = f"{public_url}/media/{instance.file.name}" return representation - def validate_activity_types(self, value): - if value: - return [activity.lower() for activity in value] - return value +class CategorySerializer(serializers.ModelSerializer): + num_adventures = serializers.SerializerMethodField() + class Meta: + model = Category + fields = ['id', 'name', 'display_name', 'icon', 'num_adventures'] + read_only_fields = ['id', 'num_adventures'] + + def validate_name(self, value): + return value.lower() + + def create(self, validated_data): + user = self.context['request'].user + validated_data['name'] = validated_data['name'].lower() + return Category.objects.create(user_id=user, **validated_data) + + def update(self, instance, validated_data): + for attr, value in validated_data.items(): + setattr(instance, attr, value) + if 'name' in validated_data: + instance.name = validated_data['name'].lower() + instance.save() + return instance -class TransportationSerializer(serializers.ModelSerializer): + def get_num_adventures(self, obj): + return Adventure.objects.filter(category=obj, user_id=obj.user_id).count() + +class VisitSerializer(serializers.ModelSerializer): + + class Meta: + model = Visit + fields = ['id', 'start_date', 'end_date', 'timezone', 'notes'] + read_only_fields = ['id'] + +class AdventureSerializer(CustomModelSerializer): + images = serializers.SerializerMethodField() + visits = VisitSerializer(many=True, read_only=False, required=False) + attachments = AttachmentSerializer(many=True, read_only=True) + category = CategorySerializer(read_only=False, required=False) + is_visited = serializers.SerializerMethodField() + user = serializers.SerializerMethodField() + country = CountrySerializer(read_only=True) + region = RegionSerializer(read_only=True) + city = CitySerializer(read_only=True) + collections = serializers.PrimaryKeyRelatedField( + many=True, + queryset=Collection.objects.all(), + required=False + ) + + class Meta: + model = Adventure + fields = [ + 'id', 'user_id', 'name', 'description', 'rating', 'activity_types', 'location', + 'is_public', 'collections', 'created_at', 'updated_at', 'images', 'link', 'longitude', + 'latitude', 'visits', 'is_visited', 'category', 'attachments', 'user', 'city', 'country', 'region' + ] + read_only_fields = ['id', 'created_at', 'updated_at', 'user_id', 'is_visited', 'user'] + + def get_images(self, obj): + serializer = AdventureImageSerializer(obj.images.all(), many=True, context=self.context) + # Filter out None values from the serialized data + return [image for image in serializer.data if image is not None] + + def validate_collections(self, collections): + """Validate that collections belong to the same user""" + if not collections: + return collections + + user = self.context['request'].user + for collection in collections: + if collection.user_id != user and not collection.shared_with.filter(id=user.id).exists(): + raise serializers.ValidationError( + f"Collection '{collection.name}' does not belong to the current user." + ) + return collections + + def validate_category(self, category_data): + if isinstance(category_data, Category): + return category_data + if category_data: + user = self.context['request'].user + name = category_data.get('name', '').lower() + existing_category = Category.objects.filter(user_id=user, name=name).first() + if existing_category: + return existing_category + category_data['name'] = name + return category_data + + def get_or_create_category(self, category_data): + user = self.context['request'].user + + if isinstance(category_data, Category): + return category_data + + if isinstance(category_data, dict): + name = category_data.get('name', '').lower() + display_name = category_data.get('display_name', name) + icon = category_data.get('icon', '🌍') + else: + name = category_data.name.lower() + display_name = category_data.display_name + icon = category_data.icon + + category, created = Category.objects.get_or_create( + user_id=user, + name=name, + defaults={ + 'display_name': display_name, + 'icon': icon + } + ) + return category + + def get_user(self, obj): + user = obj.user_id + return CustomUserDetailsSerializer(user).data + + def get_is_visited(self, obj): + return obj.is_visited_status() + + def create(self, validated_data): + visits_data = validated_data.pop('visits', None) + category_data = validated_data.pop('category', None) + collections_data = validated_data.pop('collections', []) + + print(category_data) + adventure = Adventure.objects.create(**validated_data) + + # Handle visits + for visit_data in visits_data: + Visit.objects.create(adventure=adventure, **visit_data) + + # Handle category + if category_data: + category = self.get_or_create_category(category_data) + adventure.category = category + + # Handle collections - set after adventure is saved + if collections_data: + adventure.collections.set(collections_data) + + adventure.save() + + return adventure + + def update(self, instance, validated_data): + has_visits = 'visits' in validated_data + visits_data = validated_data.pop('visits', []) + category_data = validated_data.pop('category', None) + + collections_data = validated_data.pop('collections', None) + + # Update regular fields + for attr, value in validated_data.items(): + setattr(instance, attr, value) + + # Handle category - ONLY allow the adventure owner to change categories + user = self.context['request'].user + if category_data and instance.user_id == user: + # Only the owner can set categories + category = self.get_or_create_category(category_data) + instance.category = category + # If not the owner, ignore category changes + + # Handle collections - only update if collections were provided + if collections_data is not None: + instance.collections.set(collections_data) + + # Handle visits + if has_visits: + current_visits = instance.visits.all() + current_visit_ids = set(current_visits.values_list('id', flat=True)) + + updated_visit_ids = set() + for visit_data in visits_data: + visit_id = visit_data.get('id') + if visit_id and visit_id in current_visit_ids: + visit = current_visits.get(id=visit_id) + for attr, value in visit_data.items(): + setattr(visit, attr, value) + visit.save() + updated_visit_ids.add(visit_id) + else: + new_visit = Visit.objects.create(adventure=instance, **visit_data) + updated_visit_ids.add(new_visit.id) + + visits_to_delete = current_visit_ids - updated_visit_ids + instance.visits.filter(id__in=visits_to_delete).delete() + + # call save on the adventure to update the updated_at field and trigger any geocoding + instance.save() + + return instance + +class TransportationSerializer(CustomModelSerializer): + distance = serializers.SerializerMethodField() class Meta: model = Transportation fields = [ 'id', 'user_id', 'type', 'name', 'description', 'rating', 'link', 'date', 'flight_number', 'from_location', 'to_location', - 'is_public', 'collection', 'created_at', 'updated_at' + 'is_public', 'collection', 'created_at', 'updated_at', 'end_date', + 'origin_latitude', 'origin_longitude', 'destination_latitude', 'destination_longitude', + 'start_timezone', 'end_timezone', 'distance' # ✅ Add distance here + ] + read_only_fields = ['id', 'created_at', 'updated_at', 'user_id', 'distance'] + + def get_distance(self, obj): + if ( + obj.origin_latitude and obj.origin_longitude and + obj.destination_latitude and obj.destination_longitude + ): + try: + origin = (float(obj.origin_latitude), float(obj.origin_longitude)) + destination = (float(obj.destination_latitude), float(obj.destination_longitude)) + return round(geodesic(origin, destination).km, 2) + except ValueError: + return None + return None + +class LodgingSerializer(CustomModelSerializer): + + class Meta: + model = Lodging + fields = [ + 'id', 'user_id', 'name', 'description', 'rating', 'link', 'check_in', 'check_out', + 'reservation_number', 'price', 'latitude', 'longitude', 'location', 'is_public', + 'collection', 'created_at', 'updated_at', 'type', 'timezone' ] read_only_fields = ['id', 'created_at', 'updated_at', 'user_id'] - def validate(self, data): - # Check if the collection is public and the transportation is not - collection = data.get('collection') - is_public = data.get('is_public', False) - if collection and collection.is_public and not is_public: - raise serializers.ValidationError( - 'Transportations associated with a public collection must be public.' - ) - - # Check if the user owns the collection - request = self.context.get('request') - if request and collection and collection.user_id != request.user: - raise serializers.ValidationError( - 'Transportations must be associated with collections owned by the same user.' - ) - - return data - - def create(self, validated_data): - # Set the user_id to the current user - validated_data['user_id'] = self.context['request'].user - return super().create(validated_data) - -class NoteSerializer(serializers.ModelSerializer): +class NoteSerializer(CustomModelSerializer): class Meta: model = Note @@ -67,64 +299,18 @@ class NoteSerializer(serializers.ModelSerializer): 'is_public', 'collection', 'created_at', 'updated_at' ] read_only_fields = ['id', 'created_at', 'updated_at', 'user_id'] - - def validate(self, data): - # Check if the collection is public and the transportation is not - collection = data.get('collection') - is_public = data.get('is_public', False) - if collection and collection.is_public and not is_public: - raise serializers.ValidationError( - 'Notes associated with a public collection must be public.' - ) - - # Check if the user owns the collection - request = self.context.get('request') - if request and collection and collection.user_id != request.user: - raise serializers.ValidationError( - 'Notes must be associated with collections owned by the same user.' - ) - - return data - - def create(self, validated_data): - # Set the user_id to the current user - validated_data['user_id'] = self.context['request'].user - return super().create(validated_data) -class ChecklistItemSerializer(serializers.ModelSerializer): +class ChecklistItemSerializer(CustomModelSerializer): class Meta: model = ChecklistItem fields = [ 'id', 'user_id', 'name', 'is_checked', 'checklist', 'created_at', 'updated_at' ] read_only_fields = ['id', 'created_at', 'updated_at', 'user_id', 'checklist'] - - def validate(self, data): - # Check if the checklist is public and the checklist item is not - checklist = data.get('checklist') - is_checked = data.get('is_checked', False) - if checklist and checklist.is_public and not is_checked: - raise serializers.ValidationError( - 'Checklist items associated with a public checklist must be checked.' - ) - - # Check if the user owns the checklist - request = self.context.get('request') - if request and checklist and checklist.user_id != request.user: - raise serializers.ValidationError( - 'Checklist items must be associated with checklists owned by the same user.' - ) - - return data - - def create(self, validated_data): - # Set the user_id to the current user - validated_data['user_id'] = self.context['request'].user - return super().create(validated_data) - - -class ChecklistSerializer(serializers.ModelSerializer): + +class ChecklistSerializer(CustomModelSerializer): items = ChecklistItemSerializer(many=True, source='checklistitem_set') + class Meta: model = Checklist fields = [ @@ -135,8 +321,16 @@ class ChecklistSerializer(serializers.ModelSerializer): def create(self, validated_data): items_data = validated_data.pop('checklistitem_set') checklist = Checklist.objects.create(**validated_data) + for item_data in items_data: - ChecklistItem.objects.create(checklist=checklist, **item_data) + # Remove user_id from item_data to avoid constraint issues + item_data.pop('user_id', None) + # Set user_id from the parent checklist + ChecklistItem.objects.create( + checklist=checklist, + user_id=checklist.user_id, + **item_data + ) return checklist def update(self, instance, validated_data): @@ -154,6 +348,9 @@ class ChecklistSerializer(serializers.ModelSerializer): # Update or create items updated_item_ids = set() for item_data in items_data: + # Remove user_id from item_data to avoid constraint issues + item_data.pop('user_id', None) + item_id = item_data.get('id') if item_id: if item_id in current_item_ids: @@ -164,10 +361,18 @@ class ChecklistSerializer(serializers.ModelSerializer): updated_item_ids.add(item_id) else: # If ID is provided but doesn't exist, create new item - ChecklistItem.objects.create(checklist=instance, **item_data) + ChecklistItem.objects.create( + checklist=instance, + user_id=instance.user_id, + **item_data + ) else: # If no ID is provided, create new item - ChecklistItem.objects.create(checklist=instance, **item_data) + ChecklistItem.objects.create( + checklist=instance, + user_id=instance.user_id, + **item_data + ) # Delete items that are not in the updated data items_to_delete = current_item_ids - updated_item_ids @@ -183,27 +388,25 @@ class ChecklistSerializer(serializers.ModelSerializer): raise serializers.ValidationError( 'Checklists associated with a public collection must be public.' ) - - # Check if the user owns the checklist - request = self.context.get('request') - if request and collection and collection.user_id != request.user: - raise serializers.ValidationError( - 'Checklists must be associated with collections owned by the same user.' - ) - return data - - - -class CollectionSerializer(serializers.ModelSerializer): - adventures = AdventureSerializer(many=True, read_only=True, source='adventure_set') +class CollectionSerializer(CustomModelSerializer): + adventures = AdventureSerializer(many=True, read_only=True) transportations = TransportationSerializer(many=True, read_only=True, source='transportation_set') notes = NoteSerializer(many=True, read_only=True, source='note_set') checklists = ChecklistSerializer(many=True, read_only=True, source='checklist_set') + lodging = LodgingSerializer(many=True, read_only=True, source='lodging_set') class Meta: model = Collection - # fields are all plus the adventures field - fields = ['id', 'description', 'user_id', 'name', 'is_public', 'adventures', 'created_at', 'start_date', 'end_date', 'transportations', 'notes', 'updated_at', 'checklists', 'is_archived'] + fields = ['id', 'description', 'user_id', 'name', 'is_public', 'adventures', 'created_at', 'start_date', 'end_date', 'transportations', 'notes', 'updated_at', 'checklists', 'is_archived', 'shared_with', 'link', 'lodging'] read_only_fields = ['id', 'created_at', 'updated_at', 'user_id'] + + def to_representation(self, instance): + representation = super().to_representation(instance) + # Make it display the user uuid for the shared users instead of the PK + shared_uuids = [] + for user in instance.shared_with.all(): + shared_uuids.append(str(user.uuid)) + representation['shared_with'] = shared_uuids + return representation \ No newline at end of file diff --git a/backend/server/adventures/signals.py b/backend/server/adventures/signals.py new file mode 100644 index 0000000..b8501c8 --- /dev/null +++ b/backend/server/adventures/signals.py @@ -0,0 +1,23 @@ +from django.db.models.signals import m2m_changed +from django.dispatch import receiver +from adventures.models import Adventure + +@receiver(m2m_changed, sender=Adventure.collections.through) +def update_adventure_publicity(sender, instance, action, **kwargs): + """ + Signal handler to update adventure publicity when collections are added/removed + """ + # Only process when collections are added or removed + if action in ('post_add', 'post_remove', 'post_clear'): + collections = instance.collections.all() + + if collections.exists(): + # If any collection is public, make the adventure public + has_public_collection = collections.filter(is_public=True).exists() + + if has_public_collection and not instance.is_public: + instance.is_public = True + instance.save(update_fields=['is_public']) + elif not has_public_collection and instance.is_public: + instance.is_public = False + instance.save(update_fields=['is_public']) diff --git a/backend/server/adventures/urls.py b/backend/server/adventures/urls.py index 8bdd6b7..d1bf6cb 100644 --- a/backend/server/adventures/urls.py +++ b/backend/server/adventures/urls.py @@ -1,6 +1,6 @@ from django.urls import include, path from rest_framework.routers import DefaultRouter -from .views import AdventureViewSet, ChecklistViewSet, CollectionViewSet, NoteViewSet, StatsViewSet, GenerateDescription, ActivityTypesView, TransportationViewSet +from adventures.views import * router = DefaultRouter() router.register(r'adventures', AdventureViewSet, basename='adventures') @@ -11,7 +11,14 @@ router.register(r'activity-types', ActivityTypesView, basename='activity-types') router.register(r'transportations', TransportationViewSet, basename='transportations') router.register(r'notes', NoteViewSet, basename='notes') router.register(r'checklists', ChecklistViewSet, basename='checklists') - +router.register(r'images', AdventureImageViewSet, basename='images') +router.register(r'reverse-geocode', ReverseGeocodeViewSet, basename='reverse-geocode') +router.register(r'categories', CategoryViewSet, basename='categories') +router.register(r'ics-calendar', IcsCalendarGeneratorViewSet, basename='ics-calendar') +router.register(r'search', GlobalSearchView, basename='search') +router.register(r'attachments', AttachmentViewSet, basename='attachments') +router.register(r'lodging', LodgingViewSet, basename='lodging') +router.register(r'recommendations', RecommendationsViewSet, basename='recommendations') urlpatterns = [ # Include the router under the 'api/' prefix diff --git a/backend/server/adventures/utils/file_permissions.py b/backend/server/adventures/utils/file_permissions.py new file mode 100644 index 0000000..b9a63f0 --- /dev/null +++ b/backend/server/adventures/utils/file_permissions.py @@ -0,0 +1,48 @@ +from adventures.models import AdventureImage, Attachment + +protected_paths = ['images/', 'attachments/'] + +def checkFilePermission(fileId, user, mediaType): + if mediaType not in protected_paths: + return True + if mediaType == 'images/': + try: + # Construct the full relative path to match the database field + image_path = f"images/{fileId}" + # Fetch the AdventureImage object + adventure = AdventureImage.objects.get(image=image_path).adventure + if adventure.is_public: + return True + elif adventure.user_id == user: + return True + elif adventure.collections.exists(): + # Check if the user is in any collection's shared_with list + for collection in adventure.collections.all(): + if collection.shared_with.filter(id=user.id).exists(): + return True + return False + else: + return False + except AdventureImage.DoesNotExist: + return False + elif mediaType == 'attachments/': + try: + # Construct the full relative path to match the database field + attachment_path = f"attachments/{fileId}" + # Fetch the Attachment object + attachment = Attachment.objects.get(file=attachment_path) + adventure = attachment.adventure + if adventure.is_public: + return True + elif adventure.user_id == user: + return True + elif adventure.collections.exists(): + # Check if the user is in any collection's shared_with list + for collection in adventure.collections.all(): + if collection.shared_with.filter(id=user.id).exists(): + return True + return False + else: + return False + except Attachment.DoesNotExist: + return False \ No newline at end of file diff --git a/backend/server/adventures/utils/pagination.py b/backend/server/adventures/utils/pagination.py new file mode 100644 index 0000000..4337190 --- /dev/null +++ b/backend/server/adventures/utils/pagination.py @@ -0,0 +1,6 @@ +from rest_framework.pagination import PageNumberPagination + +class StandardResultsSetPagination(PageNumberPagination): + page_size = 25 + page_size_query_param = 'page_size' + max_page_size = 1000 \ No newline at end of file diff --git a/backend/server/adventures/views.py b/backend/server/adventures/views.py deleted file mode 100644 index 4ba7bf8..0000000 --- a/backend/server/adventures/views.py +++ /dev/null @@ -1,532 +0,0 @@ -import requests -from django.db import transaction -from rest_framework.decorators import action -from rest_framework import viewsets -from django.db.models.functions import Lower -from rest_framework.response import Response -from .models import Adventure, Checklist, Collection, Transportation, Note -from worldtravel.models import VisitedRegion, Region, Country -from .serializers import AdventureSerializer, CollectionSerializer, NoteSerializer, TransportationSerializer, ChecklistSerializer -from rest_framework.permissions import IsAuthenticated -from django.db.models import Q, Prefetch -from .permissions import IsOwnerOrReadOnly, IsPublicReadOnly -from rest_framework.pagination import PageNumberPagination -from django.shortcuts import get_object_or_404 -from rest_framework import status - -class StandardResultsSetPagination(PageNumberPagination): - page_size = 25 - page_size_query_param = 'page_size' - max_page_size = 1000 - -from rest_framework.pagination import PageNumberPagination - -from rest_framework.decorators import action -from rest_framework.response import Response -from django.db.models import Q - -class AdventureViewSet(viewsets.ModelViewSet): - serializer_class = AdventureSerializer - permission_classes = [IsOwnerOrReadOnly, IsPublicReadOnly] - pagination_class = StandardResultsSetPagination - - def apply_sorting(self, queryset): - order_by = self.request.query_params.get('order_by', 'updated_at') - order_direction = self.request.query_params.get('order_direction', 'asc') - include_collections = self.request.query_params.get('include_collections', 'true') - - valid_order_by = ['name', 'type', 'date', 'rating', 'updated_at'] - if order_by not in valid_order_by: - order_by = 'name' - - if order_direction not in ['asc', 'desc']: - order_direction = 'asc' - - # Apply case-insensitive sorting for the 'name' field - if order_by == 'name': - queryset = queryset.annotate(lower_name=Lower('name')) - ordering = 'lower_name' - else: - ordering = order_by - - if order_direction == 'desc': - ordering = f'-{ordering}' - - # reverse ordering for updated_at field - if order_by == 'updated_at': - if order_direction == 'asc': - ordering = '-updated_at' - else: - ordering = 'updated_at' - - print(f"Ordering by: {ordering}") # For debugging - - if include_collections == 'false': - queryset = queryset.filter(collection = None) - - return queryset.order_by(ordering) - - def get_queryset(self): - if self.action == 'retrieve': - # For individual adventure retrieval, include public adventures - return Adventure.objects.filter( - Q(is_public=True) | Q(user_id=self.request.user.id) - ) - else: - # For other actions, only include user's own adventures - return Adventure.objects.filter(user_id=self.request.user.id) - - def list(self, request, *args, **kwargs): - # Prevent listing all adventures - return Response({"detail": "Listing all adventures is not allowed."}, - status=status.HTTP_403_FORBIDDEN) - - def retrieve(self, request, *args, **kwargs): - queryset = self.get_queryset() - adventure = get_object_or_404(queryset, pk=kwargs['pk']) - serializer = self.get_serializer(adventure) - return Response(serializer.data) - - def perform_create(self, serializer): - adventure = serializer.save(user_id=self.request.user) - if adventure.collection: - adventure.is_public = adventure.collection.is_public - adventure.save() - - def perform_update(self, serializer): - adventure = serializer.save() - if adventure.collection: - adventure.is_public = adventure.collection.is_public - adventure.save() - - def perform_create(self, serializer): - serializer.save(user_id=self.request.user) - - @action(detail=False, methods=['get']) - def filtered(self, request): - types = request.query_params.get('types', '').split(',') - valid_types = ['visited', 'planned'] - types = [t for t in types if t in valid_types] - - if not types: - return Response({"error": "No valid types provided"}, status=400) - - queryset = Adventure.objects.none() - - for adventure_type in types: - if adventure_type in ['visited', 'planned']: - queryset |= Adventure.objects.filter( - type=adventure_type, user_id=request.user.id) - - queryset = self.apply_sorting(queryset) - adventures = self.paginate_and_respond(queryset, request) - return adventures - - @action(detail=False, methods=['get']) - def all(self, request): - if not request.user.is_authenticated: - return Response({"error": "User is not authenticated"}, status=400) - # include_collections = request.query_params.get('include_collections', 'false') - # if include_collections not in ['true', 'false']: - # include_collections = 'false' - - # if include_collections == 'true': - # queryset = Adventure.objects.filter( - # Q(is_public=True) | Q(user_id=request.user.id) - # ) - # else: - # queryset = Adventure.objects.filter( - # Q(is_public=True) | Q(user_id=request.user.id), collection=None - # ) - allowed_types = ['visited', 'planned'] - queryset = Adventure.objects.filter( - Q(user_id=request.user.id) & Q(type__in=allowed_types) - ) - - queryset = self.apply_sorting(queryset) - serializer = self.get_serializer(queryset, many=True) - - return Response(serializer.data) - - @action(detail=False, methods=['get']) - def search(self, request): - query = self.request.query_params.get('query', '') - property = self.request.query_params.get('property', 'all') - if len(query) < 2: - return Response({"error": "Query must be at least 2 characters long"}, status=400) - - if property not in ['name', 'type', 'location', 'description', 'activity_types']: - property = 'all' - - queryset = Adventure.objects.none() - - if property == 'name': - queryset = Adventure.objects.filter( - (Q(name__icontains=query)) & - (Q(user_id=request.user.id) | Q(is_public=True)) - ) - elif property == 'type': - queryset = Adventure.objects.filter( - (Q(type__icontains=query)) & - (Q(user_id=request.user.id) | Q(is_public=True)) - ) - elif property == 'location': - queryset = Adventure.objects.filter( - (Q(location__icontains=query)) & - (Q(user_id=request.user.id) | Q(is_public=True)) - ) - elif property == 'description': - queryset = Adventure.objects.filter( - (Q(description__icontains=query)) & - (Q(user_id=request.user.id) | Q(is_public=True)) - ) - elif property == 'activity_types': - queryset = Adventure.objects.filter( - (Q(activity_types__icontains=query)) & - (Q(user_id=request.user.id) | Q(is_public=True)) - ) - else: - queryset = Adventure.objects.filter( - (Q(name__icontains=query) | Q(description__icontains=query) | Q(location__icontains=query) | Q(activity_types__icontains=query)) & - (Q(user_id=request.user.id) | Q(is_public=True)) - ) - - queryset = self.apply_sorting(queryset) - serializer = self.get_serializer(queryset, many=True) - return Response(serializer.data) - - def paginate_and_respond(self, queryset, request): - paginator = self.pagination_class() - page = paginator.paginate_queryset(queryset, request) - if page is not None: - serializer = self.get_serializer(page, many=True) - return paginator.get_paginated_response(serializer.data) - serializer = self.get_serializer(queryset, many=True) - return Response(serializer.data) - -class CollectionViewSet(viewsets.ModelViewSet): - serializer_class = CollectionSerializer - permission_classes = [IsOwnerOrReadOnly, IsPublicReadOnly] - pagination_class = StandardResultsSetPagination - - # def get_queryset(self): - # return Collection.objects.filter(Q(user_id=self.request.user.id) & Q(is_archived=False)) - - def apply_sorting(self, queryset): - order_by = self.request.query_params.get('order_by', 'name') - order_direction = self.request.query_params.get('order_direction', 'asc') - - valid_order_by = ['name', 'upated_at'] - if order_by not in valid_order_by: - order_by = 'updated_at' - - if order_direction not in ['asc', 'desc']: - order_direction = 'asc' - - # Apply case-insensitive sorting for the 'name' field - if order_by == 'name': - queryset = queryset.annotate(lower_name=Lower('name')) - ordering = 'lower_name' - if order_direction == 'desc': - ordering = f'-{ordering}' - else: - order_by == 'updated_at' - ordering = 'updated_at' - if order_direction == 'asc': - ordering = '-updated_at' - - #print(f"Ordering by: {ordering}") # For debugging - - return queryset.order_by(ordering) - - def list(self, request, *args, **kwargs): - # make sure the user is authenticated - if not request.user.is_authenticated: - return Response({"error": "User is not authenticated"}, status=400) - queryset = self.get_queryset() - queryset = self.apply_sorting(queryset) - collections = self.paginate_and_respond(queryset, request) - return collections - - @action(detail=False, methods=['get']) - def all(self, request): - if not request.user.is_authenticated: - return Response({"error": "User is not authenticated"}, status=400) - - queryset = Collection.objects.filter( - Q(user_id=request.user.id) - ) - - queryset = self.apply_sorting(queryset) - serializer = self.get_serializer(queryset, many=True) - - return Response(serializer.data) - - @action(detail=False, methods=['get']) - def archived(self, request): - if not request.user.is_authenticated: - return Response({"error": "User is not authenticated"}, status=400) - - queryset = Collection.objects.filter( - Q(user_id=request.user.id) & Q(is_archived=True) - ) - - queryset = self.apply_sorting(queryset) - serializer = self.get_serializer(queryset, many=True) - - return Response(serializer.data) - - # this make the is_public field of the collection cascade to the adventures - @transaction.atomic - def update(self, request, *args, **kwargs): - partial = kwargs.pop('partial', False) - instance = self.get_object() - serializer = self.get_serializer(instance, data=request.data, partial=partial) - serializer.is_valid(raise_exception=True) - - # Check if the 'is_public' field is present in the update data - if 'is_public' in serializer.validated_data: - new_public_status = serializer.validated_data['is_public'] - - # Update associated adventures to match the collection's is_public status - Adventure.objects.filter(collection=instance).update(is_public=new_public_status) - - # do the same for transportations - Transportation.objects.filter(collection=instance).update(is_public=new_public_status) - - # do the same for notes - Note.objects.filter(collection=instance).update(is_public=new_public_status) - - # Log the action (optional) - action = "public" if new_public_status else "private" - print(f"Collection {instance.id} and its adventures were set to {action}") - - self.perform_update(serializer) - - if getattr(instance, '_prefetched_objects_cache', None): - # If 'prefetch_related' has been applied to a queryset, we need to - # forcibly invalidate the prefetch cache on the instance. - instance._prefetched_objects_cache = {} - - return Response(serializer.data) - - def get_queryset(self): - if self.action == 'destroy': - return Collection.objects.filter(user_id=self.request.user.id) - - if self.action in ['update', 'partial_update']: - return Collection.objects.filter(user_id=self.request.user.id) - - if self.action == 'retrieve': - return Collection.objects.filter( - Q(is_public=True) | Q(user_id=self.request.user.id) - ) - - # For other actions (like list), only include user's non-archived collections - return Collection.objects.filter( - Q(user_id=self.request.user.id) & Q(is_archived=False) - ) - - def perform_create(self, serializer): - serializer.save(user_id=self.request.user) - - def paginate_and_respond(self, queryset, request): - paginator = self.pagination_class() - page = paginator.paginate_queryset(queryset, request) - if page is not None: - serializer = self.get_serializer(page, many=True) - return paginator.get_paginated_response(serializer.data) - serializer = self.get_serializer(queryset, many=True) - return Response(serializer.data) - -class StatsViewSet(viewsets.ViewSet): - permission_classes = [IsAuthenticated] - - @action(detail=False, methods=['get']) - def counts(self, request): - visited_count = Adventure.objects.filter( - type='visited', user_id=request.user.id).count() - planned_count = Adventure.objects.filter( - type='planned', user_id=request.user.id).count() - trips_count = Collection.objects.filter( - user_id=request.user.id).count() - visited_region_count = VisitedRegion.objects.filter( - user_id=request.user.id).count() - total_regions = Region.objects.count() - country_count = VisitedRegion.objects.filter( - user_id=request.user.id).values('region__country').distinct().count() - total_countries = Country.objects.count() - return Response({ - 'visited_count': visited_count, - 'planned_count': planned_count, - 'trips_count': trips_count, - 'visited_region_count': visited_region_count, - 'total_regions': total_regions, - 'country_count': country_count, - 'total_countries': total_countries - }) - -class GenerateDescription(viewsets.ViewSet): - permission_classes = [IsAuthenticated] - - @action(detail=False, methods=['get'],) - def desc(self, request): - name = self.request.query_params.get('name', '') - # un url encode the name - name = name.replace('%20', ' ') - print(name) - url = 'https://en.wikipedia.org/w/api.php?origin=*&action=query&prop=extracts&exintro&explaintext&format=json&titles=%s' % name - response = requests.get(url) - data = response.json() - data = response.json() - page_id = next(iter(data["query"]["pages"])) - extract = data["query"]["pages"][page_id] - if extract.get('extract') is None: - return Response({"error": "No description found"}, status=400) - return Response(extract) - @action(detail=False, methods=['get'],) - def img(self, request): - name = self.request.query_params.get('name', '') - # un url encode the name - name = name.replace('%20', ' ') - url = 'https://en.wikipedia.org/w/api.php?origin=*&action=query&prop=pageimages&format=json&piprop=original&titles=%s' % name - response = requests.get(url) - data = response.json() - page_id = next(iter(data["query"]["pages"])) - extract = data["query"]["pages"][page_id] - if extract.get('original') is None: - return Response({"error": "No image found"}, status=400) - return Response(extract["original"]) - - -class ActivityTypesView(viewsets.ViewSet): - permission_classes = [IsAuthenticated] - - @action(detail=False, methods=['get']) - def types(self, request): - """ - Retrieve a list of distinct activity types for adventures associated with the current user. - - Args: - request (HttpRequest): The HTTP request object. - - Returns: - Response: A response containing a list of distinct activity types. - """ - types = Adventure.objects.filter(user_id=request.user.id).values_list('activity_types', flat=True).distinct() - - allTypes = [] - - for i in types: - if not i: - continue - for x in i: - if x and x not in allTypes: - allTypes.append(x) - - return Response(allTypes) - -class TransportationViewSet(viewsets.ModelViewSet): - queryset = Transportation.objects.all() - serializer_class = TransportationSerializer - permission_classes = [IsAuthenticated] - filterset_fields = ['type', 'is_public', 'collection'] - - # return error message if user is not authenticated on the root endpoint - def list(self, request, *args, **kwargs): - # Prevent listing all adventures - return Response({"detail": "Listing all transportations is not allowed."}, - status=status.HTTP_403_FORBIDDEN) - - @action(detail=False, methods=['get']) - def all(self, request): - if not request.user.is_authenticated: - return Response({"error": "User is not authenticated"}, status=400) - queryset = Transportation.objects.filter( - Q(user_id=request.user.id) - ) - serializer = self.get_serializer(queryset, many=True) - return Response(serializer.data) - - - def get_queryset(self): - - """ - This view should return a list of all transportations - for the currently authenticated user. - """ - user = self.request.user - return Transportation.objects.filter(user_id=user) - - def perform_create(self, serializer): - serializer.save(user_id=self.request.user) - -class NoteViewSet(viewsets.ModelViewSet): - queryset = Note.objects.all() - serializer_class = NoteSerializer - permission_classes = [IsAuthenticated] - filterset_fields = ['is_public', 'collection'] - - # return error message if user is not authenticated on the root endpoint - def list(self, request, *args, **kwargs): - # Prevent listing all adventures - return Response({"detail": "Listing all notes is not allowed."}, - status=status.HTTP_403_FORBIDDEN) - - @action(detail=False, methods=['get']) - def all(self, request): - if not request.user.is_authenticated: - return Response({"error": "User is not authenticated"}, status=400) - queryset = Note.objects.filter( - Q(user_id=request.user.id) - ) - serializer = self.get_serializer(queryset, many=True) - return Response(serializer.data) - - - def get_queryset(self): - - """ - This view should return a list of all notes - for the currently authenticated user. - """ - user = self.request.user - return Note.objects.filter(user_id=user) - - def perform_create(self, serializer): - serializer.save(user_id=self.request.user) - -class ChecklistViewSet(viewsets.ModelViewSet): - queryset = Checklist.objects.all() - serializer_class = ChecklistSerializer - permission_classes = [IsAuthenticated] - filterset_fields = ['is_public', 'collection'] - - # return error message if user is not authenticated on the root endpoint - def list(self, request, *args, **kwargs): - # Prevent listing all adventures - return Response({"detail": "Listing all checklists is not allowed."}, - status=status.HTTP_403_FORBIDDEN) - - @action(detail=False, methods=['get']) - def all(self, request): - if not request.user.is_authenticated: - return Response({"error": "User is not authenticated"}, status=400) - queryset = Checklist.objects.filter( - Q(user_id=request.user.id) - ) - serializer = self.get_serializer(queryset, many=True) - return Response(serializer.data) - - - def get_queryset(self): - - """ - This view should return a list of all checklists - for the currently authenticated user. - """ - user = self.request.user - return Checklist.objects.filter(user_id=user) - - def perform_create(self, serializer): - serializer.save(user_id=self.request.user) \ No newline at end of file diff --git a/backend/server/adventures/views/__init__.py b/backend/server/adventures/views/__init__.py new file mode 100644 index 0000000..c9aedb0 --- /dev/null +++ b/backend/server/adventures/views/__init__.py @@ -0,0 +1,16 @@ +from .activity_types_view import * +from .adventure_image_view import * +from .adventure_view import * +from .category_view import * +from .checklist_view import * +from .collection_view import * +from .generate_description_view import * +from .ics_calendar_view import * +from .note_view import * +from .reverse_geocode_view import * +from .stats_view import * +from .transportation_view import * +from .global_search_view import * +from .attachment_view import * +from .lodging_view import * +from .recommendations_view import * \ No newline at end of file diff --git a/backend/server/adventures/views/activity_types_view.py b/backend/server/adventures/views/activity_types_view.py new file mode 100644 index 0000000..438c0d0 --- /dev/null +++ b/backend/server/adventures/views/activity_types_view.py @@ -0,0 +1,32 @@ +from rest_framework import viewsets +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +from adventures.models import Adventure + +class ActivityTypesView(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + + @action(detail=False, methods=['get']) + def types(self, request): + """ + Retrieve a list of distinct activity types for adventures associated with the current user. + + Args: + request (HttpRequest): The HTTP request object. + + Returns: + Response: A response containing a list of distinct activity types. + """ + types = Adventure.objects.filter(user_id=request.user.id).values_list('activity_types', flat=True).distinct() + + allTypes = [] + + for i in types: + if not i: + continue + for x in i: + if x and x not in allTypes: + allTypes.append(x) + + return Response(allTypes) \ No newline at end of file diff --git a/backend/server/adventures/views/adventure_image_view.py b/backend/server/adventures/views/adventure_image_view.py new file mode 100644 index 0000000..ab7f8e1 --- /dev/null +++ b/backend/server/adventures/views/adventure_image_view.py @@ -0,0 +1,215 @@ +from rest_framework import viewsets, status +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +from django.db.models import Q +from django.core.files.base import ContentFile +from adventures.models import Adventure, AdventureImage +from adventures.serializers import AdventureImageSerializer +from integrations.models import ImmichIntegration +import uuid +import requests + +class AdventureImageViewSet(viewsets.ModelViewSet): + serializer_class = AdventureImageSerializer + permission_classes = [IsAuthenticated] + + @action(detail=True, methods=['post']) + def image_delete(self, request, *args, **kwargs): + return self.destroy(request, *args, **kwargs) + + @action(detail=True, methods=['post']) + def toggle_primary(self, request, *args, **kwargs): + # Makes the image the primary image for the adventure, if there is already a primary image linked to the adventure, it is set to false and the new image is set to true. make sure that the permission is set to the owner of the adventure + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=status.HTTP_401_UNAUTHORIZED) + + instance = self.get_object() + adventure = instance.adventure + if adventure.user_id != request.user: + return Response({"error": "User does not own this adventure"}, status=status.HTTP_403_FORBIDDEN) + + # Check if the image is already the primary image + if instance.is_primary: + return Response({"error": "Image is already the primary image"}, status=status.HTTP_400_BAD_REQUEST) + + # Set the current primary image to false + AdventureImage.objects.filter(adventure=adventure, is_primary=True).update(is_primary=False) + + # Set the new image to true + instance.is_primary = True + instance.save() + return Response({"success": "Image set as primary image"}) + + def create(self, request, *args, **kwargs): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=status.HTTP_401_UNAUTHORIZED) + adventure_id = request.data.get('adventure') + try: + adventure = Adventure.objects.get(id=adventure_id) + except Adventure.DoesNotExist: + return Response({"error": "Adventure not found"}, status=status.HTTP_404_NOT_FOUND) + + if adventure.user_id != request.user: + # Check if the adventure has any collections + if adventure.collections.exists(): + # Check if the user is in the shared_with list of any of the adventure's collections + user_has_access = False + for collection in adventure.collections.all(): + if collection.shared_with.filter(id=request.user.id).exists(): + user_has_access = True + break + + if not user_has_access: + return Response({"error": "User does not have permission to access this adventure"}, status=status.HTTP_403_FORBIDDEN) + else: + return Response({"error": "User does not own this adventure"}, status=status.HTTP_403_FORBIDDEN) + + # Handle Immich ID for shared users by downloading the image + if (request.user != adventure.user_id and + 'immich_id' in request.data and + request.data.get('immich_id')): + + immich_id = request.data.get('immich_id') + + # Get the shared user's Immich integration + try: + user_integration = ImmichIntegration.objects.get(user_id=request.user) + except ImmichIntegration.DoesNotExist: + return Response({ + "error": "No Immich integration found for your account. Please set up Immich integration first.", + "code": "immich_integration_not_found" + }, status=status.HTTP_400_BAD_REQUEST) + + # Download the image from the shared user's Immich server + try: + immich_response = requests.get( + f'{user_integration.server_url}/assets/{immich_id}/thumbnail?size=preview', + headers={'x-api-key': user_integration.api_key}, + timeout=10 + ) + immich_response.raise_for_status() + + # Create a temporary file with the downloaded content + content_type = immich_response.headers.get('Content-Type', 'image/jpeg') + if not content_type.startswith('image/'): + return Response({ + "error": "Invalid content type returned from Immich server.", + "code": "invalid_content_type" + }, status=status.HTTP_400_BAD_REQUEST) + + # Determine file extension from content type + ext_map = { + 'image/jpeg': '.jpg', + 'image/png': '.png', + 'image/webp': '.webp', + 'image/gif': '.gif' + } + file_ext = ext_map.get(content_type, '.jpg') + filename = f"immich_{immich_id}{file_ext}" + + # Create a Django ContentFile from the downloaded image + image_file = ContentFile(immich_response.content, name=filename) + + # Modify request data to use the downloaded image instead of immich_id + request_data = request.data.copy() + request_data.pop('immich_id', None) # Remove immich_id + request_data['image'] = image_file # Add the image file + + # Create the serializer with the modified data + serializer = self.get_serializer(data=request_data) + serializer.is_valid(raise_exception=True) + + # Save with the downloaded image + adventure = serializer.validated_data['adventure'] + serializer.save(user_id=adventure.user_id, image=image_file) + + return Response(serializer.data, status=status.HTTP_201_CREATED) + + except requests.exceptions.RequestException: + return Response({ + "error": f"Failed to fetch image from Immich server", + "code": "immich_fetch_failed" + }, status=status.HTTP_502_BAD_GATEWAY) + except Exception: + return Response({ + "error": f"Unexpected error processing Immich image", + "code": "immich_processing_error" + }, status=status.HTTP_500_INTERNAL_SERVER_ERROR) + + return super().create(request, *args, **kwargs) + + def update(self, request, *args, **kwargs): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=status.HTTP_401_UNAUTHORIZED) + + adventure_id = request.data.get('adventure') + try: + adventure = Adventure.objects.get(id=adventure_id) + except Adventure.DoesNotExist: + return Response({"error": "Adventure not found"}, status=status.HTTP_404_NOT_FOUND) + + if adventure.user_id != request.user: + return Response({"error": "User does not own this adventure"}, status=status.HTTP_403_FORBIDDEN) + + return super().update(request, *args, **kwargs) + + def perform_destroy(self, instance): + print("perform_destroy") + return super().perform_destroy(instance) + + def destroy(self, request, *args, **kwargs): + print("destroy") + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=status.HTTP_401_UNAUTHORIZED) + + instance = self.get_object() + adventure = instance.adventure + if adventure.user_id != request.user: + return Response({"error": "User does not own this adventure"}, status=status.HTTP_403_FORBIDDEN) + + return super().destroy(request, *args, **kwargs) + + def partial_update(self, request, *args, **kwargs): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=status.HTTP_401_UNAUTHORIZED) + + instance = self.get_object() + adventure = instance.adventure + if adventure.user_id != request.user: + return Response({"error": "User does not own this adventure"}, status=status.HTTP_403_FORBIDDEN) + + return super().partial_update(request, *args, **kwargs) + + @action(detail=False, methods=['GET'], url_path='(?P[0-9a-f-]+)') + def adventure_images(self, request, adventure_id=None, *args, **kwargs): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=status.HTTP_401_UNAUTHORIZED) + + try: + adventure_uuid = uuid.UUID(adventure_id) + except ValueError: + return Response({"error": "Invalid adventure ID"}, status=status.HTTP_400_BAD_REQUEST) + + # Updated queryset to include images from adventures the user owns OR has shared access to + queryset = AdventureImage.objects.filter( + Q(adventure__id=adventure_uuid) & ( + Q(adventure__user_id=request.user) | # User owns the adventure + Q(adventure__collections__shared_with=request.user) # User has shared access via collection + ) + ).distinct() + + serializer = self.get_serializer(queryset, many=True, context={'request': request}) + return Response(serializer.data) + + def get_queryset(self): + # Updated to include images from adventures the user owns OR has shared access to + return AdventureImage.objects.filter( + Q(adventure__user_id=self.request.user) | # User owns the adventure + Q(adventure__collections__shared_with=self.request.user) # User has shared access via collection + ).distinct() + + def perform_create(self, serializer): + # Always set the image owner to the adventure owner, not the current user + adventure = serializer.validated_data['adventure'] + serializer.save(user_id=adventure.user_id) \ No newline at end of file diff --git a/backend/server/adventures/views/adventure_view.py b/backend/server/adventures/views/adventure_view.py new file mode 100644 index 0000000..b4bbfb9 --- /dev/null +++ b/backend/server/adventures/views/adventure_view.py @@ -0,0 +1,341 @@ +from django.utils import timezone +from django.db import transaction +from django.core.exceptions import PermissionDenied +from django.db.models import Q, Max +from django.db.models.functions import Lower +from rest_framework import viewsets, status +from rest_framework.decorators import action +from rest_framework.response import Response +import requests + +from adventures.models import Adventure, Category, Transportation, Lodging +from adventures.permissions import IsOwnerOrSharedWithFullAccess +from adventures.serializers import AdventureSerializer, TransportationSerializer, LodgingSerializer +from adventures.utils import pagination + + +class AdventureViewSet(viewsets.ModelViewSet): + """ + ViewSet for managing Adventure objects with support for filtering, sorting, + and sharing functionality. + """ + serializer_class = AdventureSerializer + permission_classes = [IsOwnerOrSharedWithFullAccess] + pagination_class = pagination.StandardResultsSetPagination + + # ==================== QUERYSET & PERMISSIONS ==================== + + def get_queryset(self): + """ + Returns queryset based on user authentication and action type. + Public actions allow unauthenticated access to public adventures. + """ + user = self.request.user + public_allowed_actions = {'retrieve', 'additional_info'} + + if not user.is_authenticated: + if self.action in public_allowed_actions: + return Adventure.objects.retrieve_adventures( + user, include_public=True + ).order_by('-updated_at') + return Adventure.objects.none() + + include_public = self.action in public_allowed_actions + return Adventure.objects.retrieve_adventures( + user, + include_public=include_public, + include_owned=True, + include_shared=True + ).order_by('-updated_at') + + # ==================== SORTING & FILTERING ==================== + + def apply_sorting(self, queryset): + """Apply sorting and collection filtering to queryset.""" + order_by = self.request.query_params.get('order_by', 'updated_at') + order_direction = self.request.query_params.get('order_direction', 'asc') + include_collections = self.request.query_params.get('include_collections', 'true') + + # Validate parameters + valid_order_by = ['name', 'type', 'date', 'rating', 'updated_at'] + if order_by not in valid_order_by: + order_by = 'name' + + if order_direction not in ['asc', 'desc']: + order_direction = 'asc' + + # Apply sorting logic + queryset = self._apply_ordering(queryset, order_by, order_direction) + + # Filter adventures without collections if requested + if include_collections == 'false': + queryset = queryset.filter(collections__isnull=True) + + return queryset + + def _apply_ordering(self, queryset, order_by, order_direction): + """Apply ordering to queryset based on field type.""" + if order_by == 'date': + queryset = queryset.annotate( + latest_visit=Max('visits__start_date') + ).filter(latest_visit__isnull=False) + ordering = 'latest_visit' + elif order_by == 'name': + queryset = queryset.annotate(lower_name=Lower('name')) + ordering = 'lower_name' + elif order_by == 'rating': + queryset = queryset.filter(rating__isnull=False) + ordering = 'rating' + elif order_by == 'updated_at': + # Special handling for updated_at (reverse default order) + ordering = '-updated_at' if order_direction == 'asc' else 'updated_at' + return queryset.order_by(ordering) + else: + ordering = order_by + + # Apply direction + if order_direction == 'desc': + ordering = f'-{ordering}' + + return queryset.order_by(ordering) + + # ==================== CRUD OPERATIONS ==================== + + @transaction.atomic + def perform_create(self, serializer): + """Create adventure with collection validation and ownership logic.""" + collections = serializer.validated_data.get('collections', []) + + # Validate permissions for all collections + self._validate_collection_permissions(collections) + + # Determine what user to assign as owner + user_to_assign = self.request.user + + if collections: + # Use the current user as owner since ManyToMany allows multiple collection owners + user_to_assign = self.request.user + + serializer.save(user_id=user_to_assign) + + def perform_update(self, serializer): + """Update adventure.""" + # Just save the adventure - the signal will handle publicity updates + serializer.save() + + def update(self, request, *args, **kwargs): + """Handle adventure updates with collection permission validation.""" + instance = self.get_object() + partial = kwargs.pop('partial', False) + + serializer = self.get_serializer(instance, data=request.data, partial=partial) + serializer.is_valid(raise_exception=True) + + # Validate collection permissions if collections are being updated + if 'collections' in serializer.validated_data: + self._validate_collection_update_permissions( + instance, serializer.validated_data['collections'] + ) + else: + # Remove collections from validated_data if not provided + serializer.validated_data.pop('collections', None) + + self.perform_update(serializer) + return Response(serializer.data) + + # ==================== CUSTOM ACTIONS ==================== + + @action(detail=False, methods=['get']) + def filtered(self, request): + """Filter adventures by category types and visit status.""" + types = request.query_params.get('types', '').split(',') + + # Handle 'all' types + if 'all' in types: + types = Category.objects.filter( + user_id=request.user + ).values_list('name', flat=True) + else: + # Validate provided types + if not types or not all( + Category.objects.filter(user_id=request.user, name=type_name).exists() + for type_name in types + ): + return Response( + {"error": "Invalid category or no types provided"}, + status=400 + ) + + # Build base queryset + queryset = Adventure.objects.filter( + category__in=Category.objects.filter(name__in=types, user_id=request.user), + user_id=request.user.id + ) + + # Apply visit status filtering + queryset = self._apply_visit_filtering(queryset, request) + queryset = self.apply_sorting(queryset) + + return self.paginate_and_respond(queryset, request) + + @action(detail=False, methods=['get']) + def all(self, request): + """Get all adventures (public and owned) with optional collection filtering.""" + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + + include_collections = request.query_params.get('include_collections', 'false') == 'true' + + # Build queryset with collection filtering + base_filter = Q(user_id=request.user.id) + + if include_collections: + queryset = Adventure.objects.filter(base_filter) + else: + queryset = Adventure.objects.filter(base_filter, collections__isnull=True) + + queryset = self.apply_sorting(queryset) + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) + + @action(detail=True, methods=['get'], url_path='additional-info') + def additional_info(self, request, pk=None): + """Get adventure with additional sunrise/sunset information.""" + adventure = self.get_object() + user = request.user + + # Validate access permissions + if not self._has_adventure_access(adventure, user): + return Response( + {"error": "User does not have permission to access this adventure"}, + status=status.HTTP_403_FORBIDDEN + ) + + # Get base adventure data + serializer = self.get_serializer(adventure) + response_data = serializer.data + + # Add sunrise/sunset data + response_data['sun_times'] = self._get_sun_times(adventure, response_data.get('visits', [])) + + return Response(response_data) + + # ==================== HELPER METHODS ==================== + + def _validate_collection_permissions(self, collections): + """Validate user has permission to use all provided collections. Only the owner or shared users can use collections.""" + for collection in collections: + if not (collection.user_id == self.request.user or + collection.shared_with.filter(uuid=self.request.user.uuid).exists()): + raise PermissionDenied( + f"You do not have permission to use collection '{collection.name}'." + ) + + def _validate_collection_update_permissions(self, instance, new_collections): + """Validate permissions for collection updates (add/remove).""" + # Check permissions for new collections being added + for collection in new_collections: + if (collection.user_id != self.request.user and + not collection.shared_with.filter(uuid=self.request.user.uuid).exists()): + raise PermissionDenied( + f"You do not have permission to use collection '{collection.name}'." + ) + + # Check permissions for collections being removed + current_collections = set(instance.collections.all()) + new_collections_set = set(new_collections) + collections_to_remove = current_collections - new_collections_set + + for collection in collections_to_remove: + if (collection.user_id != self.request.user and + not collection.shared_with.filter(uuid=self.request.user.uuid).exists()): + raise PermissionDenied( + f"You cannot remove the adventure from collection '{collection.name}' " + f"as you don't have permission." + ) + + def _apply_visit_filtering(self, queryset, request): + """Apply visit status filtering to queryset.""" + is_visited_param = request.query_params.get('is_visited') + if is_visited_param is None: + return queryset + + # Convert parameter to boolean + if is_visited_param.lower() == 'true': + is_visited_bool = True + elif is_visited_param.lower() == 'false': + is_visited_bool = False + else: + return queryset + + # Apply visit filtering + now = timezone.now().date() + if is_visited_bool: + queryset = queryset.filter(visits__start_date__lte=now).distinct() + else: + queryset = queryset.exclude(visits__start_date__lte=now).distinct() + + return queryset + + def _has_adventure_access(self, adventure, user): + """Check if user has access to adventure.""" + # Allow if public + if adventure.is_public: + return True + + # Check ownership + if user.is_authenticated and adventure.user_id == user: + return True + + # Check shared collection access + if user.is_authenticated: + for collection in adventure.collections.all(): + if collection.shared_with.filter(uuid=user.uuid).exists(): + return True + + return False + + def _get_sun_times(self, adventure, visits): + """Get sunrise/sunset times for adventure visits.""" + sun_times = [] + + for visit in visits: + date = visit.get('start_date') + if not (date and adventure.longitude and adventure.latitude): + continue + + api_url = ( + f'https://api.sunrisesunset.io/json?' + f'lat={adventure.latitude}&lng={adventure.longitude}&date={date}' + ) + + try: + response = requests.get(api_url) + if response.status_code == 200: + data = response.json() + results = data.get('results', {}) + + if results.get('sunrise') and results.get('sunset'): + sun_times.append({ + "date": date, + "visit_id": visit.get('id'), + "sunrise": results.get('sunrise'), + "sunset": results.get('sunset') + }) + except requests.RequestException: + # Skip this visit if API call fails + continue + + return sun_times + + def paginate_and_respond(self, queryset, request): + """Paginate queryset and return response.""" + paginator = self.pagination_class() + page = paginator.paginate_queryset(queryset, request) + + if page is not None: + serializer = self.get_serializer(page, many=True) + return paginator.get_paginated_response(serializer.data) + + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) \ No newline at end of file diff --git a/backend/server/adventures/views/attachment_view.py b/backend/server/adventures/views/attachment_view.py new file mode 100644 index 0000000..2ca4770 --- /dev/null +++ b/backend/server/adventures/views/attachment_view.py @@ -0,0 +1,56 @@ +from rest_framework import viewsets, status +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +from adventures.models import Adventure, Attachment +from adventures.serializers import AttachmentSerializer + +class AttachmentViewSet(viewsets.ModelViewSet): + serializer_class = AttachmentSerializer + permission_classes = [IsAuthenticated] + + def get_queryset(self): + return Attachment.objects.filter(user_id=self.request.user) + + @action(detail=True, methods=['post']) + def attachment_delete(self, request, *args, **kwargs): + return self.destroy(request, *args, **kwargs) + + def create(self, request, *args, **kwargs): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=status.HTTP_401_UNAUTHORIZED) + adventure_id = request.data.get('adventure') + try: + adventure = Adventure.objects.get(id=adventure_id) + except Adventure.DoesNotExist: + return Response({"error": "Adventure not found"}, status=status.HTTP_404_NOT_FOUND) + + if adventure.user_id != request.user: + # Check if the adventure has any collections + if adventure.collections.exists(): + # Check if the user is in the shared_with list of any of the adventure's collections + user_has_access = False + for collection in adventure.collections.all(): + if collection.shared_with.filter(id=request.user.id).exists(): + user_has_access = True + break + + if not user_has_access: + return Response({"error": "User does not have permission to access this adventure"}, status=status.HTTP_403_FORBIDDEN) + else: + return Response({"error": "User does not own this adventure"}, status=status.HTTP_403_FORBIDDEN) + + return super().create(request, *args, **kwargs) + + def perform_create(self, serializer): + adventure_id = self.request.data.get('adventure') + adventure = Adventure.objects.get(id=adventure_id) + + # If the adventure belongs to collections, set the owner to the collection owner + if adventure.collections.exists(): + # Get the first collection's owner (assuming all collections have the same owner) + collection = adventure.collections.first() + serializer.save(user_id=collection.user_id) + else: + # Otherwise, set the owner to the request user + serializer.save(user_id=self.request.user) \ No newline at end of file diff --git a/backend/server/adventures/views/category_view.py b/backend/server/adventures/views/category_view.py new file mode 100644 index 0000000..4bde278 --- /dev/null +++ b/backend/server/adventures/views/category_view.py @@ -0,0 +1,42 @@ +from rest_framework import viewsets +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +from adventures.models import Category, Adventure +from adventures.serializers import CategorySerializer + +class CategoryViewSet(viewsets.ModelViewSet): + queryset = Category.objects.all() + serializer_class = CategorySerializer + permission_classes = [IsAuthenticated] + + def get_queryset(self): + return Category.objects.filter(user_id=self.request.user) + + @action(detail=False, methods=['get']) + def categories(self, request): + """ + Retrieve a list of distinct categories for adventures associated with the current user. + """ + categories = self.get_queryset().distinct() + serializer = self.get_serializer(categories, many=True) + return Response(serializer.data) + + def destroy(self, request, *args, **kwargs): + instance = self.get_object() + if instance.user_id != request.user: + return Response({"error": "User does not own this category"}, status + =400) + + if instance.name == 'general': + return Response({"error": "Cannot delete the general category"}, status=400) + + # set any adventures with this category to a default category called general before deleting the category, if general does not exist create it for the user + general_category = Category.objects.filter(user_id=request.user, name='general').first() + + if not general_category: + general_category = Category.objects.create(user_id=request.user, name='general', icon='🌍', display_name='General') + + Adventure.objects.filter(category=instance).update(category=general_category) + + return super().destroy(request, *args, **kwargs) \ No newline at end of file diff --git a/backend/server/adventures/views/checklist_view.py b/backend/server/adventures/views/checklist_view.py new file mode 100644 index 0000000..6824f03 --- /dev/null +++ b/backend/server/adventures/views/checklist_view.py @@ -0,0 +1,130 @@ +from rest_framework import viewsets, status +from rest_framework.decorators import action +from rest_framework.response import Response +from django.db.models import Q +from adventures.models import Checklist +from adventures.serializers import ChecklistSerializer +from rest_framework.exceptions import PermissionDenied +from adventures.permissions import IsOwnerOrSharedWithFullAccess + +class ChecklistViewSet(viewsets.ModelViewSet): + queryset = Checklist.objects.all() + serializer_class = ChecklistSerializer + permission_classes = [IsOwnerOrSharedWithFullAccess] + filterset_fields = ['is_public', 'collection'] + + # return error message if user is not authenticated on the root endpoint + def list(self, request, *args, **kwargs): + # Prevent listing all adventures + return Response({"detail": "Listing all checklists is not allowed."}, + status=status.HTTP_403_FORBIDDEN) + + @action(detail=False, methods=['get']) + def all(self, request): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + queryset = Checklist.objects.filter( + Q(user_id=request.user.id) + ) + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) + + + def get_queryset(self): + # if the user is not authenticated return only public transportations for retrieve action + if not self.request.user.is_authenticated: + if self.action == 'retrieve': + return Checklist.objects.filter(is_public=True).distinct().order_by('-updated_at') + return Checklist.objects.none() + + + if self.action == 'retrieve': + # For individual adventure retrieval, include public adventures + return Checklist.objects.filter( + Q(is_public=True) | Q(user_id=self.request.user.id) | Q(collection__shared_with=self.request.user) + ).distinct().order_by('-updated_at') + else: + # For other actions, include user's own adventures and shared adventures + return Checklist.objects.filter( + Q(user_id=self.request.user.id) | Q(collection__shared_with=self.request.user) + ).distinct().order_by('-updated_at') + + def partial_update(self, request, *args, **kwargs): + # Retrieve the current object + instance = self.get_object() + + # Partially update the instance with the request data + serializer = self.get_serializer(instance, data=request.data, partial=True) + serializer.is_valid(raise_exception=True) + + # Retrieve the collection from the validated data + new_collection = serializer.validated_data.get('collection') + + user = request.user + print(new_collection) + + if new_collection is not None and new_collection!=instance.collection: + # Check if the user is the owner of the new collection + if new_collection.user_id != user or instance.user_id != user: + raise PermissionDenied("You do not have permission to use this collection.") + elif new_collection is None: + # Handle the case where the user is trying to set the collection to None + if instance.collection is not None and instance.collection.user_id != user: + raise PermissionDenied("You cannot remove the collection as you are not the owner.") + + # Perform the update + self.perform_update(serializer) + + # Return the updated instance + return Response(serializer.data) + + def partial_update(self, request, *args, **kwargs): + # Retrieve the current object + instance = self.get_object() + + # Partially update the instance with the request data + serializer = self.get_serializer(instance, data=request.data, partial=True) + serializer.is_valid(raise_exception=True) + + # Retrieve the collection from the validated data + new_collection = serializer.validated_data.get('collection') + + user = request.user + print(new_collection) + + if new_collection is not None and new_collection!=instance.collection: + # Check if the user is the owner of the new collection + if new_collection.user_id != user or instance.user_id != user: + raise PermissionDenied("You do not have permission to use this collection.") + elif new_collection is None: + # Handle the case where the user is trying to set the collection to None + if instance.collection is not None and instance.collection.user_id != user: + raise PermissionDenied("You cannot remove the collection as you are not the owner.") + + # Perform the update + self.perform_update(serializer) + + # Return the updated instance + return Response(serializer.data) + + def perform_update(self, serializer): + serializer.save() + + # when creating an adventure, make sure the user is the owner of the collection or shared with the collection + def perform_create(self, serializer): + # Retrieve the collection from the validated data + collection = serializer.validated_data.get('collection') + + # Check if a collection is provided + if collection: + user = self.request.user + # Check if the user is the owner or is in the shared_with list + if collection.user_id != user and not collection.shared_with.filter(id=user.id).exists(): + # Return an error response if the user does not have permission + raise PermissionDenied("You do not have permission to use this collection.") + # if collection the owner of the adventure is the owner of the collection + serializer.save(user_id=collection.user_id) + return + + # Save the adventure with the current user as the owner + serializer.save(user_id=self.request.user) \ No newline at end of file diff --git a/backend/server/adventures/views/collection_view.py b/backend/server/adventures/views/collection_view.py new file mode 100644 index 0000000..40ebbd6 --- /dev/null +++ b/backend/server/adventures/views/collection_view.py @@ -0,0 +1,240 @@ +from django.db.models import Q +from django.db.models.functions import Lower +from django.db import transaction +from rest_framework import viewsets +from rest_framework.decorators import action +from rest_framework.response import Response +from adventures.models import Collection, Adventure, Transportation, Note, Checklist +from adventures.permissions import CollectionShared +from adventures.serializers import CollectionSerializer +from users.models import CustomUser as User +from adventures.utils import pagination + +class CollectionViewSet(viewsets.ModelViewSet): + serializer_class = CollectionSerializer + permission_classes = [CollectionShared] + pagination_class = pagination.StandardResultsSetPagination + + # def get_queryset(self): + # return Collection.objects.filter(Q(user_id=self.request.user.id) & Q(is_archived=False)) + + def apply_sorting(self, queryset): + order_by = self.request.query_params.get('order_by', 'name') + order_direction = self.request.query_params.get('order_direction', 'asc') + + valid_order_by = ['name', 'updated_at', 'start_date'] + if order_by not in valid_order_by: + order_by = 'updated_at' + + if order_direction not in ['asc', 'desc']: + order_direction = 'asc' + + # Apply case-insensitive sorting for the 'name' field + if order_by == 'name': + queryset = queryset.annotate(lower_name=Lower('name')) + ordering = 'lower_name' + if order_direction == 'desc': + ordering = f'-{ordering}' + elif order_by == 'start_date': + ordering = 'start_date' + if order_direction == 'asc': + ordering = 'start_date' + else: + ordering = '-start_date' + else: + order_by == 'updated_at' + ordering = 'updated_at' + if order_direction == 'asc': + ordering = '-updated_at' + + #print(f"Ordering by: {ordering}") # For debugging + + return queryset.order_by(ordering) + + def list(self, request, *args, **kwargs): + # make sure the user is authenticated + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + queryset = Collection.objects.filter(user_id=request.user.id, is_archived=False) + queryset = self.apply_sorting(queryset) + collections = self.paginate_and_respond(queryset, request) + return collections + + @action(detail=False, methods=['get']) + def all(self, request): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + + queryset = Collection.objects.filter( + Q(user_id=request.user.id) + ) + + queryset = self.apply_sorting(queryset) + serializer = self.get_serializer(queryset, many=True) + + return Response(serializer.data) + + @action(detail=False, methods=['get']) + def archived(self, request): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + + queryset = Collection.objects.filter( + Q(user_id=request.user.id) & Q(is_archived=True) + ) + + queryset = self.apply_sorting(queryset) + serializer = self.get_serializer(queryset, many=True) + + return Response(serializer.data) + + # this make the is_public field of the collection cascade to the adventures + @transaction.atomic + def update(self, request, *args, **kwargs): + partial = kwargs.pop('partial', False) + instance = self.get_object() + serializer = self.get_serializer(instance, data=request.data, partial=partial) + serializer.is_valid(raise_exception=True) + + if 'collection' in serializer.validated_data: + new_collection = serializer.validated_data['collection'] + # if the new collection is different from the old one and the user making the request is not the owner of the new collection return an error + if new_collection != instance.collection and new_collection.user_id != request.user: + return Response({"error": "User does not own the new collection"}, status=400) + + # Check if the 'is_public' field is present in the update data + if 'is_public' in serializer.validated_data: + new_public_status = serializer.validated_data['is_public'] + + # if is_public has changed and the user is not the owner of the collection return an error + if new_public_status != instance.is_public and instance.user_id != request.user: + print(f"User {request.user.id} does not own the collection {instance.id} that is owned by {instance.user_id}") + return Response({"error": "User does not own the collection"}, status=400) + + # Get all adventures in this collection + adventures_in_collection = Adventure.objects.filter(collections=instance) + + if new_public_status: + # If collection becomes public, make all adventures public + adventures_in_collection.update(is_public=True) + else: + # If collection becomes private, check each adventure + # Only set an adventure to private if ALL of its collections are private + # Collect adventures that do NOT belong to any other public collection (excluding the current one) + adventure_ids_to_set_private = [] + + for adventure in adventures_in_collection: + has_public_collection = adventure.collections.filter(is_public=True).exclude(id=instance.id).exists() + if not has_public_collection: + adventure_ids_to_set_private.append(adventure.id) + + # Bulk update those adventures + Adventure.objects.filter(id__in=adventure_ids_to_set_private).update(is_public=False) + + # Update transportations, notes, and checklists related to this collection + # These still use direct ForeignKey relationships + Transportation.objects.filter(collection=instance).update(is_public=new_public_status) + Note.objects.filter(collection=instance).update(is_public=new_public_status) + Checklist.objects.filter(collection=instance).update(is_public=new_public_status) + + # Log the action (optional) + action = "public" if new_public_status else "private" + print(f"Collection {instance.id} and its related objects were set to {action}") + + self.perform_update(serializer) + + if getattr(instance, '_prefetched_objects_cache', None): + # If 'prefetch_related' has been applied to a queryset, we need to + # forcibly invalidate the prefetch cache on the instance. + instance._prefetched_objects_cache = {} + + return Response(serializer.data) + + # make an action to retreive all adventures that are shared with the user + @action(detail=False, methods=['get']) + def shared(self, request): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + queryset = Collection.objects.filter( + shared_with=request.user + ) + queryset = self.apply_sorting(queryset) + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) + + # Adds a new user to the shared_with field of an adventure + @action(detail=True, methods=['post'], url_path='share/(?P[^/.]+)') + def share(self, request, pk=None, uuid=None): + collection = self.get_object() + if not uuid: + return Response({"error": "User UUID is required"}, status=400) + try: + user = User.objects.get(uuid=uuid, public_profile=True) + except User.DoesNotExist: + return Response({"error": "User not found"}, status=404) + + if user == request.user: + return Response({"error": "Cannot share with yourself"}, status=400) + + if collection.shared_with.filter(id=user.id).exists(): + return Response({"error": "Adventure is already shared with this user"}, status=400) + + collection.shared_with.add(user) + collection.save() + return Response({"success": f"Shared with {user.username}"}) + + @action(detail=True, methods=['post'], url_path='unshare/(?P[^/.]+)') + def unshare(self, request, pk=None, uuid=None): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + collection = self.get_object() + if not uuid: + return Response({"error": "User UUID is required"}, status=400) + try: + user = User.objects.get(uuid=uuid, public_profile=True) + except User.DoesNotExist: + return Response({"error": "User not found"}, status=404) + + if user == request.user: + return Response({"error": "Cannot unshare with yourself"}, status=400) + + if not collection.shared_with.filter(id=user.id).exists(): + return Response({"error": "Collection is not shared with this user"}, status=400) + + collection.shared_with.remove(user) + collection.save() + return Response({"success": f"Unshared with {user.username}"}) + + def get_queryset(self): + if self.action == 'destroy': + return Collection.objects.filter(user_id=self.request.user.id) + + if self.action in ['update', 'partial_update']: + return Collection.objects.filter( + Q(user_id=self.request.user.id) | Q(shared_with=self.request.user) + ).distinct() + + if self.action == 'retrieve': + if not self.request.user.is_authenticated: + return Collection.objects.filter(is_public=True) + return Collection.objects.filter( + Q(is_public=True) | Q(user_id=self.request.user.id) | Q(shared_with=self.request.user) + ).distinct() + + # For list action, include collections owned by the user or shared with the user, that are not archived + return Collection.objects.filter( + (Q(user_id=self.request.user.id) | Q(shared_with=self.request.user)) & Q(is_archived=False) + ).distinct() + + def perform_create(self, serializer): + # This is ok because you cannot share a collection when creating it + serializer.save(user_id=self.request.user) + + def paginate_and_respond(self, queryset, request): + paginator = self.pagination_class() + page = paginator.paginate_queryset(queryset, request) + if page is not None: + serializer = self.get_serializer(page, many=True) + return paginator.get_paginated_response(serializer.data) + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) diff --git a/backend/server/adventures/views/generate_description_view.py b/backend/server/adventures/views/generate_description_view.py new file mode 100644 index 0000000..988773a --- /dev/null +++ b/backend/server/adventures/views/generate_description_view.py @@ -0,0 +1,44 @@ +from rest_framework import viewsets +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +import requests + +class GenerateDescription(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + + @action(detail=False, methods=['get'],) + def desc(self, request): + name = self.request.query_params.get('name', '') + # un url encode the name + name = name.replace('%20', ' ') + name = self.get_search_term(name) + url = 'https://en.wikipedia.org/w/api.php?origin=*&action=query&prop=extracts&exintro&explaintext&format=json&titles=%s' % name + response = requests.get(url) + data = response.json() + data = response.json() + page_id = next(iter(data["query"]["pages"])) + extract = data["query"]["pages"][page_id] + if extract.get('extract') is None: + return Response({"error": "No description found"}, status=400) + return Response(extract) + @action(detail=False, methods=['get'],) + def img(self, request): + name = self.request.query_params.get('name', '') + # un url encode the name + name = name.replace('%20', ' ') + name = self.get_search_term(name) + url = 'https://en.wikipedia.org/w/api.php?origin=*&action=query&prop=pageimages&format=json&piprop=original&titles=%s' % name + response = requests.get(url) + data = response.json() + page_id = next(iter(data["query"]["pages"])) + extract = data["query"]["pages"][page_id] + if extract.get('original') is None: + return Response({"error": "No image found"}, status=400) + return Response(extract["original"]) + + def get_search_term(self, term): + response = requests.get(f'https://en.wikipedia.org/w/api.php?action=opensearch&search={term}&limit=10&namespace=0&format=json') + data = response.json() + if data[1] and len(data[1]) > 0: + return data[1][0] \ No newline at end of file diff --git a/backend/server/adventures/views/global_search_view.py b/backend/server/adventures/views/global_search_view.py new file mode 100644 index 0000000..d2fa5d3 --- /dev/null +++ b/backend/server/adventures/views/global_search_view.py @@ -0,0 +1,73 @@ +from rest_framework import viewsets +from rest_framework.response import Response +from rest_framework.permissions import IsAuthenticated +from django.db.models import Q +from django.contrib.postgres.search import SearchVector, SearchQuery +from adventures.models import Adventure, Collection +from adventures.serializers import AdventureSerializer, CollectionSerializer +from worldtravel.models import Country, Region, City, VisitedCity, VisitedRegion +from worldtravel.serializers import CountrySerializer, RegionSerializer, CitySerializer, VisitedCitySerializer, VisitedRegionSerializer +from users.models import CustomUser as User +from users.serializers import CustomUserDetailsSerializer as UserSerializer + +class GlobalSearchView(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + + def list(self, request): + search_term = request.query_params.get('query', '').strip() + if not search_term: + return Response({"error": "Search query is required"}, status=400) + + # Initialize empty results + results = { + "adventures": [], + "collections": [], + "users": [], + "countries": [], + "regions": [], + "cities": [], + "visited_regions": [], + "visited_cities": [] + } + + # Adventures: Full-Text Search + adventures = Adventure.objects.annotate( + search=SearchVector('name', 'description', 'location') + ).filter(search=SearchQuery(search_term), user_id=request.user) + results["adventures"] = AdventureSerializer(adventures, many=True).data + + # Collections: Partial Match Search + collections = Collection.objects.filter( + Q(name__icontains=search_term) & Q(user_id=request.user) + ) + results["collections"] = CollectionSerializer(collections, many=True).data + + # Users: Public Profiles Only + users = User.objects.filter( + (Q(username__icontains=search_term) | + Q(first_name__icontains=search_term) | + Q(last_name__icontains=search_term)) & Q(public_profile=True) + ) + results["users"] = UserSerializer(users, many=True).data + + # Countries: Full-Text Search + countries = Country.objects.annotate( + search=SearchVector('name', 'country_code') + ).filter(search=SearchQuery(search_term)) + results["countries"] = CountrySerializer(countries, many=True).data + + # Regions and Cities: Partial Match Search + regions = Region.objects.filter(Q(name__icontains=search_term)) + results["regions"] = RegionSerializer(regions, many=True).data + + cities = City.objects.filter(Q(name__icontains=search_term)) + results["cities"] = CitySerializer(cities, many=True).data + + # Visited Regions and Cities + visited_regions = VisitedRegion.objects.filter(user_id=request.user) + results["visited_regions"] = VisitedRegionSerializer(visited_regions, many=True).data + + visited_cities = VisitedCity.objects.filter(user_id=request.user) + results["visited_cities"] = VisitedCitySerializer(visited_cities, many=True).data + + return Response(results) diff --git a/backend/server/adventures/views/ics_calendar_view.py b/backend/server/adventures/views/ics_calendar_view.py new file mode 100644 index 0000000..9d120e4 --- /dev/null +++ b/backend/server/adventures/views/ics_calendar_view.py @@ -0,0 +1,67 @@ +from django.http import HttpResponse +from rest_framework import viewsets +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from icalendar import Calendar, Event, vText, vCalAddress +from datetime import datetime, timedelta +from adventures.models import Adventure +from adventures.serializers import AdventureSerializer + +class IcsCalendarGeneratorViewSet(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + + @action(detail=False, methods=['get']) + def generate(self, request): + adventures = Adventure.objects.filter(user_id=request.user) + serializer = AdventureSerializer(adventures, many=True) + user = request.user + name = f"{user.first_name} {user.last_name}" + print(serializer.data) + + cal = Calendar() + cal.add('prodid', '-//My Adventure Calendar//example.com//') + cal.add('version', '2.0') + + for adventure in serializer.data: + if adventure['visits']: + for visit in adventure['visits']: + # Skip if start_date is missing + if not visit.get('start_date'): + continue + + # Parse start_date and handle end_date + try: + start_date = datetime.strptime(visit['start_date'], '%Y-%m-%d').date() + except ValueError: + continue # Skip if the start_date is invalid + + end_date = ( + datetime.strptime(visit['end_date'], '%Y-%m-%d').date() + timedelta(days=1) + if visit.get('end_date') else start_date + timedelta(days=1) + ) + + # Create event + event = Event() + event.add('summary', adventure['name']) + event.add('dtstart', start_date) + event.add('dtend', end_date) + event.add('dtstamp', datetime.now()) + event.add('transp', 'TRANSPARENT') + event.add('class', 'PUBLIC') + event.add('created', datetime.now()) + event.add('last-modified', datetime.now()) + event.add('description', adventure['description']) + if adventure.get('location'): + event.add('location', adventure['location']) + if adventure.get('link'): + event.add('url', adventure['link']) + + organizer = vCalAddress(f'MAILTO:{user.email}') + organizer.params['cn'] = vText(name) + event.add('organizer', organizer) + + cal.add_component(event) + + response = HttpResponse(cal.to_ical(), content_type='text/calendar') + response['Content-Disposition'] = 'attachment; filename=adventures.ics' + return response \ No newline at end of file diff --git a/backend/server/adventures/views/lodging_view.py b/backend/server/adventures/views/lodging_view.py new file mode 100644 index 0000000..16114ba --- /dev/null +++ b/backend/server/adventures/views/lodging_view.py @@ -0,0 +1,84 @@ +from rest_framework import viewsets, status +from rest_framework.decorators import action +from rest_framework.response import Response +from django.db.models import Q +from adventures.models import Lodging +from adventures.serializers import LodgingSerializer +from rest_framework.exceptions import PermissionDenied +from adventures.permissions import IsOwnerOrSharedWithFullAccess +from rest_framework.permissions import IsAuthenticated + +class LodgingViewSet(viewsets.ModelViewSet): + queryset = Lodging.objects.all() + serializer_class = LodgingSerializer + permission_classes = [IsOwnerOrSharedWithFullAccess] + + def list(self, request, *args, **kwargs): + if not request.user.is_authenticated: + return Response(status=status.HTTP_403_FORBIDDEN) + queryset = Lodging.objects.filter( + Q(user_id=request.user.id) + ) + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) + + def get_queryset(self): + user = self.request.user + if self.action == 'retrieve': + # For individual adventure retrieval, include public adventures, user's own adventures and shared adventures + return Lodging.objects.filter( + Q(is_public=True) | Q(user_id=user.id) | Q(collection__shared_with=user.id) + ).distinct().order_by('-updated_at') + # For other actions, include user's own adventures and shared adventures + return Lodging.objects.filter( + Q(user_id=user.id) | Q(collection__shared_with=user.id) + ).distinct().order_by('-updated_at') + + def partial_update(self, request, *args, **kwargs): + # Retrieve the current object + instance = self.get_object() + user = request.user + + # Partially update the instance with the request data + serializer = self.get_serializer(instance, data=request.data, partial=True) + serializer.is_valid(raise_exception=True) + + # Retrieve the collection from the validated data + new_collection = serializer.validated_data.get('collection') + + if new_collection is not None and new_collection != instance.collection: + # Check if the user is the owner of the new collection + if new_collection.user_id != user or instance.user_id != user: + raise PermissionDenied("You do not have permission to use this collection.") + elif new_collection is None: + # Handle the case where the user is trying to set the collection to None + if instance.collection is not None and instance.collection.user_id != user: + raise PermissionDenied("You cannot remove the collection as you are not the owner.") + + # Perform the update + self.perform_update(serializer) + + # Return the updated instance + return Response(serializer.data) + + def perform_update(self, serializer): + serializer.save() + + # when creating an adventure, make sure the user is the owner of the collection or shared with the collection + def perform_create(self, serializer): + # Retrieve the collection from the validated data + collection = serializer.validated_data.get('collection') + + # Check if a collection is provided + if collection: + user = self.request.user + # Check if the user is the owner or is in the shared_with list + if collection.user_id != user and not collection.shared_with.filter(id=user.id).exists(): + # Return an error response if the user does not have permission + raise PermissionDenied("You do not have permission to use this collection.") + # if collection the owner of the adventure is the owner of the collection + serializer.save(user_id=collection.user_id) + return + + # Save the adventure with the current user as the owner + serializer.save(user_id=self.request.user) \ No newline at end of file diff --git a/backend/server/adventures/views/note_view.py b/backend/server/adventures/views/note_view.py new file mode 100644 index 0000000..5f5f314 --- /dev/null +++ b/backend/server/adventures/views/note_view.py @@ -0,0 +1,130 @@ +from rest_framework import viewsets, status +from rest_framework.response import Response +from django.db.models import Q +from adventures.models import Note +from adventures.serializers import NoteSerializer +from rest_framework.exceptions import PermissionDenied +from adventures.permissions import IsOwnerOrSharedWithFullAccess +from rest_framework.decorators import action + +class NoteViewSet(viewsets.ModelViewSet): + queryset = Note.objects.all() + serializer_class = NoteSerializer + permission_classes = [IsOwnerOrSharedWithFullAccess] + filterset_fields = ['is_public', 'collection'] + + # return error message if user is not authenticated on the root endpoint + def list(self, request, *args, **kwargs): + # Prevent listing all adventures + return Response({"detail": "Listing all notes is not allowed."}, + status=status.HTTP_403_FORBIDDEN) + + @action(detail=False, methods=['get']) + def all(self, request): + if not request.user.is_authenticated: + return Response({"error": "User is not authenticated"}, status=400) + queryset = Note.objects.filter( + Q(user_id=request.user.id) + ) + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) + + + def get_queryset(self): + # if the user is not authenticated return only public transportations for retrieve action + if not self.request.user.is_authenticated: + if self.action == 'retrieve': + return Note.objects.filter(is_public=True).distinct().order_by('-updated_at') + return Note.objects.none() + + + if self.action == 'retrieve': + # For individual adventure retrieval, include public adventures + return Note.objects.filter( + Q(is_public=True) | Q(user_id=self.request.user.id) | Q(collection__shared_with=self.request.user) + ).distinct().order_by('-updated_at') + else: + # For other actions, include user's own adventures and shared adventures + return Note.objects.filter( + Q(user_id=self.request.user.id) | Q(collection__shared_with=self.request.user) + ).distinct().order_by('-updated_at') + + def partial_update(self, request, *args, **kwargs): + # Retrieve the current object + instance = self.get_object() + + # Partially update the instance with the request data + serializer = self.get_serializer(instance, data=request.data, partial=True) + serializer.is_valid(raise_exception=True) + + # Retrieve the collection from the validated data + new_collection = serializer.validated_data.get('collection') + + user = request.user + print(new_collection) + + if new_collection is not None and new_collection!=instance.collection: + # Check if the user is the owner of the new collection + if new_collection.user_id != user or instance.user_id != user: + raise PermissionDenied("You do not have permission to use this collection.") + elif new_collection is None: + # Handle the case where the user is trying to set the collection to None + if instance.collection is not None and instance.collection.user_id != user: + raise PermissionDenied("You cannot remove the collection as you are not the owner.") + + # Perform the update + self.perform_update(serializer) + + # Return the updated instance + return Response(serializer.data) + + def partial_update(self, request, *args, **kwargs): + # Retrieve the current object + instance = self.get_object() + + # Partially update the instance with the request data + serializer = self.get_serializer(instance, data=request.data, partial=True) + serializer.is_valid(raise_exception=True) + + # Retrieve the collection from the validated data + new_collection = serializer.validated_data.get('collection') + + user = request.user + print(new_collection) + + if new_collection is not None and new_collection!=instance.collection: + # Check if the user is the owner of the new collection + if new_collection.user_id != user or instance.user_id != user: + raise PermissionDenied("You do not have permission to use this collection.") + elif new_collection is None: + # Handle the case where the user is trying to set the collection to None + if instance.collection is not None and instance.collection.user_id != user: + raise PermissionDenied("You cannot remove the collection as you are not the owner.") + + # Perform the update + self.perform_update(serializer) + + # Return the updated instance + return Response(serializer.data) + + def perform_update(self, serializer): + serializer.save() + + # when creating an adventure, make sure the user is the owner of the collection or shared with the collection + def perform_create(self, serializer): + # Retrieve the collection from the validated data + collection = serializer.validated_data.get('collection') + + # Check if a collection is provided + if collection: + user = self.request.user + # Check if the user is the owner or is in the shared_with list + if collection.user_id != user and not collection.shared_with.filter(id=user.id).exists(): + # Return an error response if the user does not have permission + raise PermissionDenied("You do not have permission to use this collection.") + # if collection the owner of the adventure is the owner of the collection + serializer.save(user_id=collection.user_id) + return + + # Save the adventure with the current user as the owner + serializer.save(user_id=self.request.user) diff --git a/backend/server/adventures/views/recommendations_view.py b/backend/server/adventures/views/recommendations_view.py new file mode 100644 index 0000000..e759f9c --- /dev/null +++ b/backend/server/adventures/views/recommendations_view.py @@ -0,0 +1,258 @@ +from rest_framework import viewsets +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +from django.conf import settings +import requests +from geopy.distance import geodesic +import time + + +class RecommendationsViewSet(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + BASE_URL = "https://overpass-api.de/api/interpreter" + HEADERS = {'User-Agent': 'AdventureLog Server'} + + def parse_google_places(self, places, origin): + adventures = [] + + for place in places: + location = place.get('location', {}) + types = place.get('types', []) + + # Updated for new API response structure + formatted_address = place.get("formattedAddress") or place.get("shortFormattedAddress") + display_name = place.get("displayName", {}) + name = display_name.get("text") if isinstance(display_name, dict) else display_name + + lat = location.get('latitude') + lon = location.get('longitude') + + if not name or not lat or not lon: + continue + + distance_km = geodesic(origin, (lat, lon)).km + + adventure = { + "id": place.get('id'), + "type": 'place', + "name": name, + "description": place.get('businessStatus', None), + "latitude": lat, + "longitude": lon, + "address": formatted_address, + "tag": types[0] if types else None, + "distance_km": round(distance_km, 2), + } + + adventures.append(adventure) + + # Sort by distance ascending + adventures.sort(key=lambda x: x["distance_km"]) + + return adventures + + def parse_overpass_response(self, data, request): + nodes = data.get('elements', []) + adventures = [] + all = request.query_params.get('all', False) + + origin = None + try: + origin = ( + float(request.query_params.get('lat')), + float(request.query_params.get('lon')) + ) + except(ValueError, TypeError): + origin = None + + for node in nodes: + if node.get('type') not in ['node', 'way', 'relation']: + continue + + tags = node.get('tags', {}) + lat = node.get('lat') + lon = node.get('lon') + name = tags.get('name', tags.get('official_name', '')) + + if not name or lat is None or lon is None: + if not all: + continue + + # Flatten address + address_parts = [tags.get(f'addr:{k}') for k in ['housenumber', 'street', 'suburb', 'city', 'state', 'postcode', 'country']] + formatted_address = ", ".join(filter(None, address_parts)) or name + + # Calculate distance if possible + distance_km = None + if origin: + distance_km = round(geodesic(origin, (lat, lon)).km, 2) + + # Unified format + adventure = { + "id": f"osm:{node.get('id')}", + "type": "place", + "name": name, + "description": tags.get('description'), + "latitude": lat, + "longitude": lon, + "address": formatted_address, + "tag": next((tags.get(key) for key in ['leisure', 'tourism', 'natural', 'historic', 'amenity'] if key in tags), None), + "distance_km": distance_km, + "powered_by": "osm" + } + + adventures.append(adventure) + + # Sort by distance if available + if origin: + adventures.sort(key=lambda x: x.get("distance_km") or float("inf")) + + return adventures + + + def query_overpass(self, lat, lon, radius, category, request): + if category == 'tourism': + query = f""" + [out:json]; + ( + node(around:{radius},{lat},{lon})["tourism"]; + node(around:{radius},{lat},{lon})["leisure"]; + node(around:{radius},{lat},{lon})["historic"]; + node(around:{radius},{lat},{lon})["sport"]; + node(around:{radius},{lat},{lon})["natural"]; + node(around:{radius},{lat},{lon})["attraction"]; + node(around:{radius},{lat},{lon})["museum"]; + node(around:{radius},{lat},{lon})["zoo"]; + node(around:{radius},{lat},{lon})["aquarium"]; + ); + out; + """ + elif category == 'lodging': + query = f""" + [out:json]; + ( + node(around:{radius},{lat},{lon})["tourism"="hotel"]; + node(around:{radius},{lat},{lon})["tourism"="motel"]; + node(around:{radius},{lat},{lon})["tourism"="guest_house"]; + node(around:{radius},{lat},{lon})["tourism"="hostel"]; + node(around:{radius},{lat},{lon})["tourism"="camp_site"]; + node(around:{radius},{lat},{lon})["tourism"="caravan_site"]; + node(around:{radius},{lat},{lon})["tourism"="chalet"]; + node(around:{radius},{lat},{lon})["tourism"="alpine_hut"]; + node(around:{radius},{lat},{lon})["tourism"="apartment"]; + ); + out; + """ + elif category == 'food': + query = f""" + [out:json]; + ( + node(around:{radius},{lat},{lon})["amenity"="restaurant"]; + node(around:{radius},{lat},{lon})["amenity"="cafe"]; + node(around:{radius},{lat},{lon})["amenity"="fast_food"]; + node(around:{radius},{lat},{lon})["amenity"="pub"]; + node(around:{radius},{lat},{lon})["amenity"="bar"]; + node(around:{radius},{lat},{lon})["amenity"="food_court"]; + node(around:{radius},{lat},{lon})["amenity"="ice_cream"]; + node(around:{radius},{lat},{lon})["amenity"="bakery"]; + node(around:{radius},{lat},{lon})["amenity"="confectionery"]; + ); + out; + """ + else: + return Response({"error": "Invalid category."}, status=400) + + overpass_url = f"{self.BASE_URL}?data={query}" + try: + response = requests.get(overpass_url, headers=self.HEADERS) + response.raise_for_status() + data = response.json() + except Exception as e: + print("Overpass API error:", e) + return Response({"error": "Failed to retrieve data from Overpass API."}, status=500) + + adventures = self.parse_overpass_response(data, request) + return Response(adventures) + + def query_google_nearby(self, lat, lon, radius, category, request): + """Query Google Places API (New) for nearby places""" + api_key = settings.GOOGLE_MAPS_API_KEY + + # Updated to use new Places API endpoint + url = "https://places.googleapis.com/v1/places:searchNearby" + + headers = { + 'Content-Type': 'application/json', + 'X-Goog-Api-Key': api_key, + 'X-Goog-FieldMask': 'places.displayName.text,places.formattedAddress,places.location,places.types,places.rating,places.userRatingCount,places.businessStatus,places.id' + } + + # Map categories to place types for the new API + type_mapping = { + 'lodging': 'lodging', + 'food': 'restaurant', + 'tourism': 'tourist_attraction', + } + + payload = { + "includedTypes": [type_mapping[category]], + "maxResultCount": 20, + "locationRestriction": { + "circle": { + "center": { + "latitude": float(lat), + "longitude": float(lon) + }, + "radius": float(radius) + } + } + } + + try: + response = requests.post(url, json=payload, headers=headers, timeout=10) + response.raise_for_status() + data = response.json() + + places = data.get('places', []) + origin = (float(lat), float(lon)) + adventures = self.parse_google_places(places, origin) + + return Response(adventures) + + except requests.exceptions.RequestException as e: + print(f"Google Places API error: {e}") + # Fallback to Overpass API + return self.query_overpass(lat, lon, radius, category, request) + except Exception as e: + print(f"Unexpected error with Google Places API: {e}") + # Fallback to Overpass API + return self.query_overpass(lat, lon, radius, category, request) + + @action(detail=False, methods=['get']) + def query(self, request): + lat = request.query_params.get('lat') + lon = request.query_params.get('lon') + radius = request.query_params.get('radius', '1000') + category = request.query_params.get('category', 'all') + + if not lat or not lon: + return Response({"error": "Latitude and longitude parameters are required."}, status=400) + + valid_categories = { + 'lodging': 'lodging', + 'food': 'restaurant', + 'tourism': 'tourist_attraction', + } + + if category not in valid_categories: + return Response({"error": f"Invalid category. Valid categories: {', '.join(valid_categories)}"}, status=400) + + api_key = getattr(settings, 'GOOGLE_MAPS_API_KEY', None) + + # Fallback to Overpass if no API key configured + if not api_key: + return self.query_overpass(lat, lon, radius, category, request) + + # Use the new Google Places API + return self.query_google_nearby(lat, lon, radius, category, request) \ No newline at end of file diff --git a/backend/server/adventures/views/reverse_geocode_view.py b/backend/server/adventures/views/reverse_geocode_view.py new file mode 100644 index 0000000..df45f13 --- /dev/null +++ b/backend/server/adventures/views/reverse_geocode_view.py @@ -0,0 +1,87 @@ +from rest_framework import viewsets +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +from worldtravel.models import Region, City, VisitedRegion, VisitedCity +from adventures.models import Adventure +from adventures.serializers import AdventureSerializer +import requests +from adventures.geocoding import reverse_geocode +from adventures.geocoding import extractIsoCode +from django.conf import settings +from adventures.geocoding import search_google, search_osm + +class ReverseGeocodeViewSet(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + + @action(detail=False, methods=['get']) + def reverse_geocode(self, request): + lat = request.query_params.get('lat', '') + lon = request.query_params.get('lon', '') + if not lat or not lon: + return Response({"error": "Latitude and longitude are required"}, status=400) + try: + lat = float(lat) + lon = float(lon) + except ValueError: + return Response({"error": "Invalid latitude or longitude"}, status=400) + data = reverse_geocode(lat, lon, self.request.user) + if 'error' in data: + return Response({"error": "An internal error occurred while processing the request"}, status=400) + return Response(data) + + @action(detail=False, methods=['get']) + def search(self, request): + query = request.query_params.get('query', '') + if not query: + return Response({"error": "Query parameter is required"}, status=400) + + try: + if getattr(settings, 'GOOGLE_MAPS_API_KEY', None): + results = search_google(query) + else: + results = search_osm(query) + return Response(results) + except Exception: + return Response({"error": "An internal error occurred while processing the request"}, status=500) + + @action(detail=False, methods=['post']) + def mark_visited_region(self, request): + # searches through all of the users adventures, if the serialized data is_visited, is true, runs reverse geocode on the adventures and if a region is found, marks it as visited. Use the extractIsoCode function to get the region + new_region_count = 0 + new_regions = {} + new_city_count = 0 + new_cities = {} + adventures = Adventure.objects.filter(user_id=self.request.user) + serializer = AdventureSerializer(adventures, many=True) + for adventure, serialized_adventure in zip(adventures, serializer.data): + if serialized_adventure['is_visited'] == True: + lat = adventure.latitude + lon = adventure.longitude + if not lat or not lon: + continue + + # Use the existing reverse_geocode function which handles both Google and OSM + data = reverse_geocode(lat, lon, self.request.user) + if 'error' in data: + continue + + # data already contains region_id and city_id + if 'region_id' in data and data['region_id'] is not None: + region = Region.objects.filter(id=data['region_id']).first() + visited_region = VisitedRegion.objects.filter(region=region, user_id=self.request.user).first() + if not visited_region: + visited_region = VisitedRegion(region=region, user_id=self.request.user) + visited_region.save() + new_region_count += 1 + new_regions[region.id] = region.name + + if 'city_id' in data and data['city_id'] is not None: + city = City.objects.filter(id=data['city_id']).first() + visited_city = VisitedCity.objects.filter(city=city, user_id=self.request.user).first() + if not visited_city: + visited_city = VisitedCity(city=city, user_id=self.request.user) + visited_city.save() + new_city_count += 1 + new_cities[city.id] = city.name + return Response({"new_regions": new_region_count, "regions": new_regions, "new_cities": new_city_count, "cities": new_cities}) \ No newline at end of file diff --git a/backend/server/adventures/views/stats_view.py b/backend/server/adventures/views/stats_view.py new file mode 100644 index 0000000..8b56f26 --- /dev/null +++ b/backend/server/adventures/views/stats_view.py @@ -0,0 +1,51 @@ +from rest_framework import viewsets +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response +from rest_framework.decorators import action +from django.shortcuts import get_object_or_404 +from worldtravel.models import City, Region, Country, VisitedCity, VisitedRegion +from adventures.models import Adventure, Collection +from users.serializers import CustomUserDetailsSerializer as PublicUserSerializer +from django.contrib.auth import get_user_model + +User = get_user_model() + +class StatsViewSet(viewsets.ViewSet): + """ + A simple ViewSet for listing the stats of a user. + """ + @action(detail=False, methods=['get'], url_path=r'counts/(?P[\w.@+-]+)') + def counts(self, request, username): + if request.user.username == username: + user = get_object_or_404(User, username=username) + else: + user = get_object_or_404(User, username=username, public_profile=True) + # serializer = PublicUserSerializer(user) + + # remove the email address from the response + user.email = None + + # get the counts for the user + adventure_count = Adventure.objects.filter( + user_id=user.id).count() + trips_count = Collection.objects.filter( + user_id=user.id).count() + visited_city_count = VisitedCity.objects.filter( + user_id=user.id).count() + total_cities = City.objects.count() + visited_region_count = VisitedRegion.objects.filter( + user_id=user.id).count() + total_regions = Region.objects.count() + visited_country_count = VisitedRegion.objects.filter( + user_id=user.id).values('region__country').distinct().count() + total_countries = Country.objects.count() + return Response({ + 'adventure_count': adventure_count, + 'trips_count': trips_count, + 'visited_city_count': visited_city_count, + 'total_cities': total_cities, + 'visited_region_count': visited_region_count, + 'total_regions': total_regions, + 'visited_country_count': visited_country_count, + 'total_countries': total_countries + }) \ No newline at end of file diff --git a/backend/server/adventures/views/transportation_view.py b/backend/server/adventures/views/transportation_view.py new file mode 100644 index 0000000..2bd1e8c --- /dev/null +++ b/backend/server/adventures/views/transportation_view.py @@ -0,0 +1,84 @@ +from rest_framework import viewsets, status +from rest_framework.decorators import action +from rest_framework.response import Response +from django.db.models import Q +from adventures.models import Transportation +from adventures.serializers import TransportationSerializer +from rest_framework.exceptions import PermissionDenied +from adventures.permissions import IsOwnerOrSharedWithFullAccess +from rest_framework.permissions import IsAuthenticated + +class TransportationViewSet(viewsets.ModelViewSet): + queryset = Transportation.objects.all() + serializer_class = TransportationSerializer + permission_classes = [IsOwnerOrSharedWithFullAccess] + + def list(self, request, *args, **kwargs): + if not request.user.is_authenticated: + return Response(status=status.HTTP_403_FORBIDDEN) + queryset = Transportation.objects.filter( + Q(user_id=request.user.id) + ) + serializer = self.get_serializer(queryset, many=True) + return Response(serializer.data) + + def get_queryset(self): + user = self.request.user + if self.action == 'retrieve': + # For individual adventure retrieval, include public adventures, user's own adventures and shared adventures + return Transportation.objects.filter( + Q(is_public=True) | Q(user_id=user.id) | Q(collection__shared_with=user.id) + ).distinct().order_by('-updated_at') + # For other actions, include user's own adventures and shared adventures + return Transportation.objects.filter( + Q(user_id=user.id) | Q(collection__shared_with=user.id) + ).distinct().order_by('-updated_at') + + def partial_update(self, request, *args, **kwargs): + # Retrieve the current object + instance = self.get_object() + user = request.user + + # Partially update the instance with the request data + serializer = self.get_serializer(instance, data=request.data, partial=True) + serializer.is_valid(raise_exception=True) + + # Retrieve the collection from the validated data + new_collection = serializer.validated_data.get('collection') + + if new_collection is not None and new_collection != instance.collection: + # Check if the user is the owner of the new collection + if new_collection.user_id != user or instance.user_id != user: + raise PermissionDenied("You do not have permission to use this collection.") + elif new_collection is None: + # Handle the case where the user is trying to set the collection to None + if instance.collection is not None and instance.collection.user_id != user: + raise PermissionDenied("You cannot remove the collection as you are not the owner.") + + # Perform the update + self.perform_update(serializer) + + # Return the updated instance + return Response(serializer.data) + + def perform_update(self, serializer): + serializer.save() + + # when creating an adventure, make sure the user is the owner of the collection or shared with the collection + def perform_create(self, serializer): + # Retrieve the collection from the validated data + collection = serializer.validated_data.get('collection') + + # Check if a collection is provided + if collection: + user = self.request.user + # Check if the user is the owner or is in the shared_with list + if collection.user_id != user and not collection.shared_with.filter(id=user.id).exists(): + # Return an error response if the user does not have permission + raise PermissionDenied("You do not have permission to use this collection.") + # if collection the owner of the adventure is the owner of the collection + serializer.save(user_id=collection.user_id) + return + + # Save the adventure with the current user as the owner + serializer.save(user_id=self.request.user) \ No newline at end of file diff --git a/backend/server/integrations/__init__.py b/backend/server/integrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/server/integrations/admin.py b/backend/server/integrations/admin.py new file mode 100644 index 0000000..d561cf4 --- /dev/null +++ b/backend/server/integrations/admin.py @@ -0,0 +1,9 @@ +from django.contrib import admin +from allauth.account.decorators import secure_admin_login + +from .models import ImmichIntegration + +admin.autodiscover() +admin.site.login = secure_admin_login(admin.site.login) + +admin.site.register(ImmichIntegration) \ No newline at end of file diff --git a/backend/server/integrations/apps.py b/backend/server/integrations/apps.py new file mode 100644 index 0000000..73adb7a --- /dev/null +++ b/backend/server/integrations/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class IntegrationsConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'integrations' diff --git a/backend/server/integrations/migrations/0001_initial.py b/backend/server/integrations/migrations/0001_initial.py new file mode 100644 index 0000000..1bf029b --- /dev/null +++ b/backend/server/integrations/migrations/0001_initial.py @@ -0,0 +1,27 @@ +# Generated by Django 5.0.8 on 2025-01-02 23:16 + +import django.db.models.deletion +import uuid +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='ImmichIntegration', + fields=[ + ('server_url', models.CharField(max_length=255)), + ('api_key', models.CharField(max_length=255)), + ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), + ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + ] diff --git a/backend/server/integrations/migrations/0002_immichintegration_copy_locally.py b/backend/server/integrations/migrations/0002_immichintegration_copy_locally.py new file mode 100644 index 0000000..cdd59cc --- /dev/null +++ b/backend/server/integrations/migrations/0002_immichintegration_copy_locally.py @@ -0,0 +1,18 @@ +# Generated by Django 5.2.1 on 2025-06-01 21:38 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('integrations', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='immichintegration', + name='copy_locally', + field=models.BooleanField(default=True, help_text='Copy image to local storage, instead of just linking to the remote URL.'), + ), + ] diff --git a/backend/server/integrations/migrations/__init__.py b/backend/server/integrations/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/server/integrations/models.py b/backend/server/integrations/models.py new file mode 100644 index 0000000..7b0400a --- /dev/null +++ b/backend/server/integrations/models.py @@ -0,0 +1,16 @@ +from django.db import models +from django.contrib.auth import get_user_model +import uuid + +User = get_user_model() + +class ImmichIntegration(models.Model): + server_url = models.CharField(max_length=255) + api_key = models.CharField(max_length=255) + user = models.ForeignKey( + User, on_delete=models.CASCADE) + copy_locally = models.BooleanField(default=True, help_text="Copy image to local storage, instead of just linking to the remote URL.") + id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True, primary_key=True) + + def __str__(self): + return self.user.username + ' - ' + self.server_url \ No newline at end of file diff --git a/backend/server/integrations/serializers.py b/backend/server/integrations/serializers.py new file mode 100644 index 0000000..cc92d21 --- /dev/null +++ b/backend/server/integrations/serializers.py @@ -0,0 +1,13 @@ +from .models import ImmichIntegration +from rest_framework import serializers + +class ImmichIntegrationSerializer(serializers.ModelSerializer): + class Meta: + model = ImmichIntegration + fields = '__all__' + read_only_fields = ['id', 'user'] + + def to_representation(self, instance): + representation = super().to_representation(instance) + representation.pop('user', None) + return representation diff --git a/backend/server/integrations/tests.py b/backend/server/integrations/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/backend/server/integrations/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/backend/server/integrations/urls.py b/backend/server/integrations/urls.py new file mode 100644 index 0000000..a15bbd0 --- /dev/null +++ b/backend/server/integrations/urls.py @@ -0,0 +1,14 @@ +from django.urls import path, include +from rest_framework.routers import DefaultRouter +from integrations.views import ImmichIntegrationView, IntegrationView, ImmichIntegrationViewSet + +# Create the router and register the ViewSet +router = DefaultRouter() +router.register(r'immich', ImmichIntegrationView, basename='immich') +router.register(r'', IntegrationView, basename='integrations') +router.register(r'immich', ImmichIntegrationViewSet, basename='immich_viewset') + +# Include the router URLs +urlpatterns = [ + path("", include(router.urls)), # Includes /immich/ routes +] diff --git a/backend/server/integrations/views.py b/backend/server/integrations/views.py new file mode 100644 index 0000000..e5540b9 --- /dev/null +++ b/backend/server/integrations/views.py @@ -0,0 +1,566 @@ +import os +from rest_framework.response import Response +from rest_framework import viewsets, status +from .serializers import ImmichIntegrationSerializer +from .models import ImmichIntegration +from rest_framework.decorators import action +from rest_framework.permissions import IsAuthenticated +import requests +from rest_framework.pagination import PageNumberPagination +from django.conf import settings +from adventures.models import AdventureImage +from django.http import HttpResponse +from django.shortcuts import get_object_or_404 +import logging + +logger = logging.getLogger(__name__) + +class IntegrationView(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + def list(self, request): + """ + RESTful GET method for listing all integrations. + """ + immich_integrations = ImmichIntegration.objects.filter(user=request.user) + google_map_integration = settings.GOOGLE_MAPS_API_KEY != '' + + return Response( + { + 'immich': immich_integrations.exists(), + 'google_maps': google_map_integration + }, + status=status.HTTP_200_OK + ) + +class StandardResultsSetPagination(PageNumberPagination): + page_size = 25 + page_size_query_param = 'page_size' + max_page_size = 1000 + +class ImmichIntegrationView(viewsets.ViewSet): + permission_classes = [IsAuthenticated] + pagination_class = StandardResultsSetPagination + + def check_integration(self, request): + """ + Checks if the user has an active Immich integration. + Returns: + - The integration object if it exists. + - A Response with an error message if the integration is missing. + """ + if not request.user.is_authenticated: + return Response( + { + 'message': 'You need to be authenticated to use this feature.', + 'error': True, + 'code': 'immich.authentication_required' + }, + status=status.HTTP_403_FORBIDDEN + ) + + user_integrations = ImmichIntegration.objects.filter(user=request.user) + if not user_integrations.exists(): + return Response( + { + 'message': 'You need to have an active Immich integration to use this feature.', + 'error': True, + 'code': 'immich.integration_missing' + }, + status=status.HTTP_403_FORBIDDEN + ) + + return user_integrations.first() + + @action(detail=False, methods=['get'], url_path='search') + def search(self, request): + """ + Handles the logic for searching Immich images. + """ + # Check for integration before proceeding + integration = self.check_integration(request) + if isinstance(integration, Response): + return integration + + query = request.query_params.get('query', '') + date = request.query_params.get('date', '') + + if not query and not date: + return Response( + { + 'message': 'Query or date is required.', + 'error': True, + 'code': 'immich.query_required' + }, + status=status.HTTP_400_BAD_REQUEST + ) + + arguments = {} + if query: + arguments['query'] = query + if date: + # Create date range for the entire selected day + from datetime import datetime, timedelta + try: + # Parse the date and create start/end of day + selected_date = datetime.strptime(date, '%Y-%m-%d') + start_of_day = selected_date.strftime('%Y-%m-%d') + end_of_day = (selected_date + timedelta(days=1)).strftime('%Y-%m-%d') + + arguments['takenAfter'] = start_of_day + arguments['takenBefore'] = end_of_day + except ValueError: + return Response( + { + 'message': 'Invalid date format. Use YYYY-MM-DD.', + 'error': True, + 'code': 'immich.invalid_date_format' + }, + status=status.HTTP_400_BAD_REQUEST + ) + + # check so if the server is down, it does not tweak out like a madman and crash the server with a 500 error code + try: + url = f'{integration.server_url}/search/{"smart" if query else "metadata"}' + immich_fetch = requests.post(url, headers={ + 'x-api-key': integration.api_key + }, + json = arguments + ) + res = immich_fetch.json() + except requests.exceptions.ConnectionError: + return Response( + { + 'message': 'The Immich server is currently down or unreachable.', + 'error': True, + 'code': 'immich.server_down' + }, + status=status.HTTP_503_SERVICE_UNAVAILABLE + ) + + if 'assets' in res and 'items' in res['assets']: + paginator = self.pagination_class() + # for each item in the items, we need to add the image url to the item so we can display it in the frontend + public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/') + public_url = public_url.replace("'", "") + for item in res['assets']['items']: + item['image_url'] = f'{public_url}/api/integrations/immich/{integration.id}/get/{item["id"]}' + result_page = paginator.paginate_queryset(res['assets']['items'], request) + return paginator.get_paginated_response(result_page) + else: + return Response( + { + 'message': 'No items found.', + 'error': True, + 'code': 'immich.no_items_found' + }, + status=status.HTTP_404_NOT_FOUND + ) + + @action(detail=False, methods=['get']) + def albums(self, request): + """ + RESTful GET method for retrieving all Immich albums. + """ + # Check for integration before proceeding + integration = self.check_integration(request) + if isinstance(integration, Response): + return integration + + # check so if the server is down, it does not tweak out like a madman and crash the server with a 500 error code + try: + immich_fetch = requests.get(f'{integration.server_url}/albums', headers={ + 'x-api-key': integration.api_key + }) + res = immich_fetch.json() + except requests.exceptions.ConnectionError: + return Response( + { + 'message': 'The Immich server is currently down or unreachable.', + 'error': True, + 'code': 'immich.server_down' + }, + status=status.HTTP_503_SERVICE_UNAVAILABLE + ) + + return Response( + res, + status=status.HTTP_200_OK + ) + + @action(detail=False, methods=['get'], url_path='albums/(?P[^/.]+)') + def album(self, request, albumid=None): + """ + RESTful GET method for retrieving a specific Immich album by ID. + """ + # Check for integration before proceeding + integration = self.check_integration(request) + print(integration.user) + if isinstance(integration, Response): + return integration + + if not albumid: + return Response( + { + 'message': 'Album ID is required.', + 'error': True, + 'code': 'immich.albumid_required' + }, + status=status.HTTP_400_BAD_REQUEST + ) + + # check so if the server is down, it does not tweak out like a madman and crash the server with a 500 error code + try: + immich_fetch = requests.get(f'{integration.server_url}/albums/{albumid}', headers={ + 'x-api-key': integration.api_key + }) + res = immich_fetch.json() + except requests.exceptions.ConnectionError: + return Response( + { + 'message': 'The Immich server is currently down or unreachable.', + 'error': True, + 'code': 'immich.server_down' + }, + status=status.HTTP_503_SERVICE_UNAVAILABLE + ) + + if 'assets' in res: + paginator = self.pagination_class() + # for each item in the items, we need to add the image url to the item so we can display it in the frontend + public_url = os.environ.get('PUBLIC_URL', 'http://127.0.0.1:8000').rstrip('/') + public_url = public_url.replace("'", "") + for item in res['assets']: + item['image_url'] = f'{public_url}/api/integrations/immich/{integration.id}/get/{item["id"]}' + result_page = paginator.paginate_queryset(res['assets'], request) + return paginator.get_paginated_response(result_page) + else: + return Response( + { + 'message': 'No assets found in this album.', + 'error': True, + 'code': 'immich.no_assets_found' + }, + status=status.HTTP_404_NOT_FOUND + ) + + @action( + detail=False, + methods=['get'], + url_path='(?P[^/.]+)/get/(?P[^/.]+)', + permission_classes=[] + ) + def get_by_integration(self, request, integration_id=None, imageid=None): + """ + GET an Immich image using the integration and asset ID. + Access levels (in order of priority): + 1. Public adventures: accessible by anyone + 2. Private adventures in public collections: accessible by anyone + 3. Private adventures in private collections shared with user: accessible by shared users + 4. Private adventures: accessible only to the owner + 5. No AdventureImage: owner can still view via integration + """ + if not imageid or not integration_id: + return Response({ + 'message': 'Image ID and Integration ID are required.', + 'error': True, + 'code': 'immich.missing_params' + }, status=status.HTTP_400_BAD_REQUEST) + + # Lookup integration and user + integration = get_object_or_404(ImmichIntegration, id=integration_id) + owner_id = integration.user_id + + # Try to find the image entry with collections and sharing information + image_entry = ( + AdventureImage.objects + .filter(immich_id=imageid, user_id=owner_id) + .select_related('adventure') + .prefetch_related('adventure__collections', 'adventure__collections__shared_with') + .order_by('-adventure__is_public') # Public adventures first + .first() + ) + + # Access control + if image_entry: + adventure = image_entry.adventure + collections = adventure.collections.all() + + # Determine access level + is_authorized = False + + # Level 1: Public adventure (highest priority) + if adventure.is_public: + is_authorized = True + + # Level 2: Private adventure in any public collection + elif any(collection.is_public for collection in collections): + is_authorized = True + + # Level 3: Owner access + elif request.user.is_authenticated and request.user.id == owner_id: + is_authorized = True + + # Level 4: Shared collection access - check if user has access to any collection + elif (request.user.is_authenticated and + any(collection.shared_with.filter(id=request.user.id).exists() + for collection in collections)): + is_authorized = True + + if not is_authorized: + return Response({ + 'message': 'This image belongs to a private adventure and you are not authorized.', + 'error': True, + 'code': 'immich.permission_denied' + }, status=status.HTTP_403_FORBIDDEN) + else: + # No AdventureImage exists; allow only the integration owner + if not request.user.is_authenticated or request.user.id != owner_id: + return Response({ + 'message': 'Image is not linked to any adventure and you are not the owner.', + 'error': True, + 'code': 'immich.not_found' + }, status=status.HTTP_404_NOT_FOUND) + + # Fetch from Immich + try: + immich_response = requests.get( + f'{integration.server_url}/assets/{imageid}/thumbnail?size=preview', + headers={'x-api-key': integration.api_key}, + timeout=5 + ) + content_type = immich_response.headers.get('Content-Type', 'image/jpeg') + if not content_type.startswith('image/'): + return Response({ + 'message': 'Invalid content type returned from Immich.', + 'error': True, + 'code': 'immich.invalid_content' + }, status=status.HTTP_502_BAD_GATEWAY) + + response = HttpResponse(immich_response.content, content_type=content_type, status=200) + response['Cache-Control'] = 'public, max-age=86400, stale-while-revalidate=3600' + return response + + except requests.exceptions.ConnectionError: + return Response({ + 'message': 'The Immich server is unreachable.', + 'error': True, + 'code': 'immich.server_down' + }, status=status.HTTP_503_SERVICE_UNAVAILABLE) + + except requests.exceptions.Timeout: + return Response({ + 'message': 'The Immich server request timed out.', + 'error': True, + 'code': 'immich.timeout' + }, status=status.HTTP_504_GATEWAY_TIMEOUT) + +class ImmichIntegrationViewSet(viewsets.ModelViewSet): + permission_classes = [IsAuthenticated] + serializer_class = ImmichIntegrationSerializer + queryset = ImmichIntegration.objects.all() + + def get_queryset(self): + return ImmichIntegration.objects.filter(user=self.request.user) + + def _validate_immich_connection(self, server_url, api_key): + """ + Validate connection to Immich server before saving integration. + Returns tuple: (is_valid, corrected_server_url, error_message) + """ + if not server_url or not api_key: + return False, server_url, "Server URL and API key are required" + + # Ensure server_url has proper format + if not server_url.startswith(('http://', 'https://')): + server_url = f"https://{server_url}" + + # Remove trailing slash if present + original_server_url = server_url.rstrip('/') + + # Try both with and without /api prefix + test_configs = [ + (original_server_url, f"{original_server_url}/users/me"), + (f"{original_server_url}/api", f"{original_server_url}/api/users/me") + ] + + headers = { + 'X-API-Key': api_key, + 'Content-Type': 'application/json' + } + + for corrected_url, test_endpoint in test_configs: + try: + response = requests.get( + test_endpoint, + headers=headers, + timeout=10, # 10 second timeout + verify=True # SSL verification + ) + + if response.status_code == 200: + try: + json_response = response.json() + # Validate expected Immich user response structure + required_fields = ['id', 'email', 'name', 'isAdmin', 'createdAt'] + if all(field in json_response for field in required_fields): + return True, corrected_url, None + else: + continue # Try next endpoint + except (ValueError, KeyError): + continue # Try next endpoint + elif response.status_code == 401: + return False, original_server_url, "Invalid API key or unauthorized access" + elif response.status_code == 403: + return False, original_server_url, "Access forbidden - check API key permissions" + # Continue to next endpoint for 404 errors + + except requests.exceptions.ConnectTimeout: + return False, original_server_url, "Connection timeout - server may be unreachable" + except requests.exceptions.ConnectionError: + return False, original_server_url, "Cannot connect to server - check URL and network connectivity" + except requests.exceptions.SSLError: + return False, original_server_url, "SSL certificate error - check server certificate" + except requests.exceptions.RequestException as e: + logger.error(f"RequestException during Immich connection validation: {str(e)}") + return False, original_server_url, "Connection failed due to a network error." + except Exception as e: + logger.error(f"Unexpected error during Immich connection validation: {str(e)}") + return False, original_server_url, "An unexpected error occurred while validating the connection." + + # If we get here, none of the endpoints worked + return False, original_server_url, "Immich server endpoint not found - check server URL" + + def create(self, request): + """ + RESTful POST method for creating a new Immich integration. + """ + # Check if the user already has an integration + user_integrations = ImmichIntegration.objects.filter(user=request.user) + if user_integrations.exists(): + return Response( + { + 'message': 'You already have an active Immich integration.', + 'error': True, + 'code': 'immich.integration_exists' + }, + status=status.HTTP_400_BAD_REQUEST + ) + + serializer = self.serializer_class(data=request.data) + if serializer.is_valid(): + # Validate Immich server connection before saving + server_url = serializer.validated_data.get('server_url') + api_key = serializer.validated_data.get('api_key') + + is_valid, corrected_server_url, error_message = self._validate_immich_connection(server_url, api_key) + + if not is_valid: + return Response( + { + 'message': f'Cannot connect to Immich server: {error_message}', + 'error': True, + 'code': 'immich.connection_failed', + 'details': error_message + }, + status=status.HTTP_400_BAD_REQUEST + ) + + # If validation passes, save the integration with the corrected URL + serializer.save(user=request.user, server_url=corrected_server_url) + return Response( + serializer.data, + status=status.HTTP_201_CREATED + ) + + return Response( + serializer.errors, + status=status.HTTP_400_BAD_REQUEST + ) + + def update(self, request, pk=None): + """ + RESTful PUT method for updating an existing Immich integration. + """ + integration = ImmichIntegration.objects.filter(user=request.user, id=pk).first() + if not integration: + return Response( + { + 'message': 'Integration not found.', + 'error': True, + 'code': 'immich.integration_not_found' + }, + status=status.HTTP_404_NOT_FOUND + ) + + serializer = self.serializer_class(integration, data=request.data, partial=True) + if serializer.is_valid(): + # Validate Immich server connection before updating + server_url = serializer.validated_data.get('server_url', integration.server_url) + api_key = serializer.validated_data.get('api_key', integration.api_key) + + is_valid, corrected_server_url, error_message = self._validate_immich_connection(server_url, api_key) + + if not is_valid: + return Response( + { + 'message': f'Cannot connect to Immich server: {error_message}', + 'error': True, + 'code': 'immich.connection_failed', + 'details': error_message + }, + status=status.HTTP_400_BAD_REQUEST + ) + + # If validation passes, save the integration with the corrected URL + serializer.save(server_url=corrected_server_url) + return Response( + serializer.data, + status=status.HTTP_200_OK + ) + + return Response( + serializer.errors, + status=status.HTTP_400_BAD_REQUEST + ) + + def destroy(self, request, pk=None): + """ + RESTful DELETE method for deleting an existing Immich integration. + """ + integration = ImmichIntegration.objects.filter(user=request.user, id=pk).first() + if not integration: + return Response( + { + 'message': 'Integration not found.', + 'error': True, + 'code': 'immich.integration_not_found' + }, + status=status.HTTP_404_NOT_FOUND + ) + integration.delete() + return Response( + { + 'message': 'Integration deleted successfully.' + }, + status=status.HTTP_200_OK + ) + + def list(self, request, *args, **kwargs): + # If the user has an integration, we only want to return that integration + user_integrations = ImmichIntegration.objects.filter(user=request.user) + if user_integrations.exists(): + integration = user_integrations.first() + serializer = self.serializer_class(integration) + return Response( + serializer.data, + status=status.HTTP_200_OK + ) + else: + return Response( + { + 'message': 'No integration found.', + 'error': True, + 'code': 'immich.integration_not_found' + }, + status=status.HTTP_404_NOT_FOUND + ) \ No newline at end of file diff --git a/backend/server/main/settings.py b/backend/server/main/settings.py index fa2ac62..073fd77 100644 --- a/backend/server/main/settings.py +++ b/backend/server/main/settings.py @@ -11,9 +11,10 @@ https://docs.djangoproject.com/en/1.7/ref/settings/ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os from dotenv import load_dotenv -from datetime import timedelta from os import getenv from pathlib import Path +from urllib.parse import urlparse +from publicsuffix2 import get_sld # Load environment variables from .env file load_dotenv() @@ -26,7 +27,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__)) SECRET_KEY = getenv('SECRET_KEY') # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = getenv('DEBUG', 'True') == 'True' +DEBUG = getenv('DEBUG', 'true').lower() == 'true' # ALLOWED_HOSTS = [ # 'localhost', @@ -35,8 +36,6 @@ DEBUG = getenv('DEBUG', 'True') == 'True' # ] ALLOWED_HOSTS = ['*'] -# Application definition - INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', @@ -45,38 +44,54 @@ INSTALLED_APPS = ( 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.sites', + # "allauth_ui", 'rest_framework', 'rest_framework.authtoken', - 'dj_rest_auth', 'allauth', 'allauth.account', - 'dj_rest_auth.registration', + 'allauth.mfa', + 'allauth.headless', 'allauth.socialaccount', - 'allauth.socialaccount.providers.facebook', + 'allauth.socialaccount.providers.github', + 'allauth.socialaccount.providers.openid_connect', 'drf_yasg', 'corsheaders', 'adventures', 'worldtravel', 'users', + 'integrations', + 'django.contrib.gis', + # 'achievements', # Not done yet, will be added later in a future update + # 'widget_tweaks', + # 'slippers', ) MIDDLEWARE = ( 'whitenoise.middleware.WhiteNoiseMiddleware', + 'adventures.middleware.XSessionTokenMiddleware', + 'adventures.middleware.DisableCSRFForSessionTokenMiddleware', + 'adventures.middleware.DisableCSRFForMobileLoginSignup', 'corsheaders.middleware.CorsMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', + 'adventures.middleware.OverrideHostMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'allauth.account.middleware.AccountMiddleware', - ) # disable verifications for new users ACCOUNT_EMAIL_VERIFICATION = 'none' +CACHES = { + 'default': { + 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', + } +} + # For backwards compatibility for Django 1.8 MIDDLEWARE_CLASSES = MIDDLEWARE @@ -84,35 +99,39 @@ ROOT_URLCONF = 'main.urls' # WSGI_APPLICATION = 'demo.wsgi.application' -SIMPLE_JWT = { - "ACCESS_TOKEN_LIFETIME": timedelta(minutes=60), - "REFRESH_TOKEN_LIFETIME": timedelta(days=365), -} - # Database # https://docs.djangoproject.com/en/1.7/ref/settings/#databases +# Using legacy PG environment variables for compatibility with existing setups + +def env(*keys, default=None): + """Return the first non-empty environment variable from a list of keys.""" + for key in keys: + value = os.getenv(key) + if value: + return value + return default + DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.postgresql', - 'NAME': getenv('PGDATABASE'), - 'USER': getenv('PGUSER'), - 'PASSWORD': getenv('PGPASSWORD'), - 'HOST': getenv('PGHOST'), - 'PORT': getenv('PGPORT', 5432), + 'ENGINE': 'django.contrib.gis.db.backends.postgis', + 'NAME': env('PGDATABASE', 'POSTGRES_DB'), + 'USER': env('PGUSER', 'POSTGRES_USER'), + 'PASSWORD': env('PGPASSWORD', 'POSTGRES_PASSWORD'), + 'HOST': env('PGHOST', default='localhost'), + 'PORT': int(env('PGPORT', default='5432')), 'OPTIONS': { 'sslmode': 'prefer', # Prefer SSL, but allow non-SSL connections }, } } - # Internationalization # https://docs.djangoproject.com/en/1.7/topics/i18n/ LANGUAGE_CODE = 'en-us' -TIME_ZONE = 'America/New_York' +TIME_ZONE = 'UTC' USE_I18N = True @@ -120,20 +139,60 @@ USE_L10N = True USE_TZ = True +unParsedFrontenedUrl = getenv('FRONTEND_URL', 'http://localhost:3000') +FRONTEND_URL = unParsedFrontenedUrl.translate(str.maketrans('', '', '\'"')) + +SESSION_COOKIE_SAMESITE = 'Lax' + +SESSION_COOKIE_NAME = 'sessionid' + +SESSION_COOKIE_SECURE = FRONTEND_URL.startswith('https') +CSRF_COOKIE_SECURE = FRONTEND_URL.startswith('https') + + +hostname = urlparse(FRONTEND_URL).hostname +is_ip_address = hostname.replace('.', '').isdigit() + +# Check if the hostname is single-label (no dots) +is_single_label = '.' not in hostname + +if is_ip_address or is_single_label: + # Do not set a domain for IP addresses or single-label hostnames + SESSION_COOKIE_DOMAIN = None +else: + # Use publicsuffix2 to calculate the correct cookie domain + cookie_domain = get_sld(hostname) + if cookie_domain: + SESSION_COOKIE_DOMAIN = f".{cookie_domain}" + else: + # Fallback to the hostname if parsing fails + SESSION_COOKIE_DOMAIN = hostname + + # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.7/howto/static-files/ +SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') + BASE_DIR = Path(__file__).resolve().parent.parent STATIC_ROOT = BASE_DIR / "staticfiles" STATIC_URL = '/static/' MEDIA_URL = '/media/' -MEDIA_ROOT = os.path.join(BASE_DIR, 'media') -STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')] +MEDIA_ROOT = BASE_DIR / 'media' # This path must match the NGINX root +STATICFILES_DIRS = [BASE_DIR / 'static'] +STORAGES = { + "staticfiles": { + "BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage", + }, + "default": { + "BACKEND": "django.core.files.storage.FileSystemStorage", + } +} -# TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')] +SILENCED_SYSTEM_CHECKS = ["slippers.E001"] TEMPLATES = [ { @@ -151,28 +210,39 @@ TEMPLATES = [ }, ] -REST_AUTH = { - 'SESSION_LOGIN': True, - 'USE_JWT': True, - 'JWT_AUTH_COOKIE': 'auth', - 'JWT_AUTH_HTTPONLY': False, - 'REGISTER_SERIALIZER': 'users.serializers.RegisterSerializer', - 'USER_DETAILS_SERIALIZER': 'users.serializers.CustomUserDetailsSerializer', - 'PASSWORD_RESET_SERIALIZER': 'users.serializers.MyPasswordResetSerializer' -} +# Authentication settings -STORAGES = { - "staticfiles": { - "BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage", - }, - "default": { - "BACKEND": "django.core.files.storage.FileSystemStorage", - } -} +DISABLE_REGISTRATION = getenv('DISABLE_REGISTRATION', 'false').lower() == 'true' +DISABLE_REGISTRATION_MESSAGE = getenv('DISABLE_REGISTRATION_MESSAGE', 'Registration is disabled. Please contact the administrator if you need an account.') AUTH_USER_MODEL = 'users.CustomUser' -FRONTEND_URL = getenv('FRONTEND_URL', 'http://localhost:3000') +ACCOUNT_ADAPTER = 'users.adapters.NoNewUsersAccountAdapter' + +ACCOUNT_SIGNUP_FORM_CLASS = 'users.form_overrides.CustomSignupForm' + +SESSION_SAVE_EVERY_REQUEST = True + +# Set login redirect URL to the frontend +LOGIN_REDIRECT_URL = FRONTEND_URL + +SOCIALACCOUNT_LOGIN_ON_GET = True + +HEADLESS_FRONTEND_URLS = { + "account_confirm_email": f"{FRONTEND_URL}/user/verify-email/{{key}}", + "account_reset_password": f"{FRONTEND_URL}/user/reset-password", + "account_reset_password_from_key": f"{FRONTEND_URL}/user/reset-password/{{key}}", + "account_signup": f"{FRONTEND_URL}/signup", + # Fallback in case the state containing the `next` URL is lost and the handshake + # with the third-party provider fails. + "socialaccount_login_error": f"{FRONTEND_URL}/account/provider/callback", +} + +AUTHENTICATION_BACKENDS = [ + 'users.backends.NoPasswordAuthBackend', + # 'allauth.account.auth_backends.AuthenticationBackend', + # 'django.contrib.auth.backends.ModelBackend', +] EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' SITE_ID = 1 @@ -185,9 +255,9 @@ if getenv('EMAIL_BACKEND', 'console') == 'console': else: EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = getenv('EMAIL_HOST') - EMAIL_USE_TLS = getenv('EMAIL_USE_TLS', 'True') == 'True' + EMAIL_USE_TLS = getenv('EMAIL_USE_TLS', 'true').lower() == 'true' EMAIL_PORT = getenv('EMAIL_PORT', 587) - EMAIL_USE_SSL = getenv('EMAIL_USE_SSL', 'False') == 'True' + EMAIL_USE_SSL = getenv('EMAIL_USE_SSL', 'false').lower() == 'true' EMAIL_HOST_USER = getenv('EMAIL_HOST_USER') EMAIL_HOST_PASSWORD = getenv('EMAIL_HOST_PASSWORD') DEFAULT_FROM_EMAIL = getenv('DEFAULT_FROM_EMAIL') @@ -205,26 +275,56 @@ else: REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework.authentication.SessionAuthentication', - 'rest_framework.authentication.TokenAuthentication', - 'dj_rest_auth.jwt_auth.JWTCookieAuthentication' ), 'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.coreapi.AutoSchema', - # 'DEFAULT_PERMISSION_CLASSES': [ - # 'rest_framework.permissions.IsAuthenticated', - # ], } -SWAGGER_SETTINGS = { - 'LOGIN_URL': 'login', - 'LOGOUT_URL': 'logout', -} +if DEBUG: + REST_FRAMEWORK['DEFAULT_RENDERER_CLASSES'] = ( + 'rest_framework.renderers.JSONRenderer', + 'rest_framework.renderers.BrowsableAPIRenderer', + ) +else: + REST_FRAMEWORK['DEFAULT_RENDERER_CLASSES'] = ( + 'rest_framework.renderers.JSONRenderer', + ) -# For demo purposes only. Use a white list in the real world. -CORS_ORIGIN_ALLOW_ALL = True +CORS_ALLOWED_ORIGINS = [origin.strip() for origin in getenv('CSRF_TRUSTED_ORIGINS', 'http://localhost').split(',') if origin.strip()] -from os import getenv - CSRF_TRUSTED_ORIGINS = [origin.strip() for origin in getenv('CSRF_TRUSTED_ORIGINS', 'http://localhost').split(',') if origin.strip()] + DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' + +LOGGING = { + 'version': 1, + 'disable_existing_loggers': False, + 'handlers': { + 'console': { + 'class': 'logging.StreamHandler', + }, + 'file': { + 'class': 'logging.FileHandler', + 'filename': 'scheduler.log', + }, + }, + 'root': { + 'handlers': ['console', 'file'], + 'level': 'INFO', + }, + 'loggers': { + 'django': { + 'handlers': ['console', 'file'], + 'level': 'INFO', + 'propagate': False, + }, + }, +} + +# ADVENTURELOG_CDN_URL = getenv('ADVENTURELOG_CDN_URL', 'https://cdn.adventurelog.app') + +# https://github.com/dr5hn/countries-states-cities-database/tags +COUNTRY_REGION_JSON_VERSION = 'v2.6' + +GOOGLE_MAPS_API_KEY = getenv('GOOGLE_MAPS_API_KEY', '') \ No newline at end of file diff --git a/backend/server/main/urls.py b/backend/server/main/urls.py index b5d705b..3b8415e 100644 --- a/backend/server/main/urls.py +++ b/backend/server/main/urls.py @@ -1,13 +1,9 @@ from django.urls import include, re_path, path from django.contrib import admin from django.views.generic import RedirectView, TemplateView -from django.conf import settings -from django.conf.urls.static import static -from adventures import urls as adventures -from users.views import ChangeEmailView -from .views import get_csrf_token +from users.views import IsRegistrationDisabled, PublicUserListView, PublicUserDetailView, UserMetadataView, UpdateUserMetadataView, EnabledSocialProvidersView, DisablePasswordAuthenticationView +from .views import get_csrf_token, get_public_url, serve_protected_media from drf_yasg.views import get_schema_view - from drf_yasg import openapi schema_view = get_schema_view( @@ -19,53 +15,36 @@ schema_view = get_schema_view( urlpatterns = [ path('api/', include('adventures.urls')), path('api/', include('worldtravel.urls')), + path("auth/", include("allauth.headless.urls")), - path('auth/change-email/', ChangeEmailView.as_view(), name='change_email'), + # Serve protected media files + re_path(r'^media/(?P.*)$', serve_protected_media, name='serve-protected-media'), + + path('auth/is-registration-disabled/', IsRegistrationDisabled.as_view(), name='is_registration_disabled'), + path('auth/users/', PublicUserListView.as_view(), name='public-user-list'), + path('auth/user//', PublicUserDetailView.as_view(), name='public-user-detail'), + path('auth/update-user/', UpdateUserMetadataView.as_view(), name='update-user-metadata'), + + path('auth/user-metadata/', UserMetadataView.as_view(), name='user-metadata'), + + path('auth/social-providers/', EnabledSocialProvidersView.as_view(), name='enabled-social-providers'), + + path('auth/disable-password/', DisablePasswordAuthenticationView.as_view(), name='disable-password-authentication'), path('csrf/', get_csrf_token, name='get_csrf_token'), - re_path(r'^$', TemplateView.as_view( - template_name="home.html"), name='home'), - re_path(r'^signup/$', TemplateView.as_view(template_name="signup.html"), - name='signup'), - re_path(r'^email-verification/$', - TemplateView.as_view(template_name="email_verification.html"), - name='email-verification'), - re_path(r'^login/$', TemplateView.as_view(template_name="login.html"), - name='login'), - re_path(r'^logout/$', TemplateView.as_view(template_name="logout.html"), - name='logout'), - re_path(r'^password-reset/$', - TemplateView.as_view(template_name="password_reset.html"), - name='password-reset'), - re_path(r'^password-reset/confirm/$', - TemplateView.as_view(template_name="password_reset_confirm.html"), - name='password-reset-confirm'), - - re_path(r'^user-details/$', - TemplateView.as_view(template_name="user_details.html"), - name='user-details'), - re_path(r'^password-change/$', - TemplateView.as_view(template_name="password_change.html"), - name='password-change'), - re_path(r'^resend-email-verification/$', - TemplateView.as_view( - template_name="resend_email_verification.html"), - name='resend-email-verification'), - - - # this url is used to generate email content - re_path(r'^password-reset/confirm/(?P[0-9A-Za-z_\-]+)/(?P[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,32})/$', - TemplateView.as_view(template_name="password_reset_confirm.html"), - name='password_reset_confirm'), - - re_path(r'^auth/', include('dj_rest_auth.urls')), - re_path(r'^auth/registration/', - include('dj_rest_auth.registration.urls')), - re_path(r'^account/', include('allauth.urls')), + path('public-url/', get_public_url, name='get_public_url'), + + path('', TemplateView.as_view(template_name='home.html')), + re_path(r'^admin/', admin.site.urls), re_path(r'^accounts/profile/$', RedirectView.as_view(url='/', permanent=True), name='profile-redirect'), re_path(r'^docs/$', schema_view.with_ui('swagger', cache_timeout=0), name='api_docs'), # path('auth/account-confirm-email/', VerifyEmailView.as_view(), name='account_email_verification_sent'), -] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + path("accounts/", include("allauth.urls")), + + path("api/integrations/", include("integrations.urls")), + + # Include the API endpoints: +] \ No newline at end of file diff --git a/backend/server/main/utils.py b/backend/server/main/utils.py new file mode 100644 index 0000000..0963ba6 --- /dev/null +++ b/backend/server/main/utils.py @@ -0,0 +1,10 @@ +from rest_framework import serializers + +def get_user_uuid(user): + return str(user.uuid) + +class CustomModelSerializer(serializers.ModelSerializer): + def to_representation(self, instance): + representation = super().to_representation(instance) + representation['user_id'] = get_user_uuid(instance.user_id) + return representation \ No newline at end of file diff --git a/backend/server/main/views.py b/backend/server/main/views.py index 7a7507d..3393e13 100644 --- a/backend/server/main/views.py +++ b/backend/server/main/views.py @@ -1,6 +1,42 @@ from django.http import JsonResponse from django.middleware.csrf import get_token +from os import getenv +from django.conf import settings +from django.http import HttpResponse, HttpResponseForbidden +from django.views.static import serve +from adventures.utils.file_permissions import checkFilePermission def get_csrf_token(request): csrf_token = get_token(request) return JsonResponse({'csrfToken': csrf_token}) + +def get_public_url(request): + return JsonResponse({'PUBLIC_URL': getenv('PUBLIC_URL')}) + +protected_paths = ['images/', 'attachments/'] + +def serve_protected_media(request, path): + if any([path.startswith(protected_path) for protected_path in protected_paths]): + image_id = path.split('/')[1] + user = request.user + media_type = path.split('/')[0] + '/' + if checkFilePermission(image_id, user, media_type): + if settings.DEBUG: + # In debug mode, serve the file directly + return serve(request, path, document_root=settings.MEDIA_ROOT) + else: + # In production, use X-Accel-Redirect to serve the file using Nginx + response = HttpResponse() + response['Content-Type'] = '' + response['X-Accel-Redirect'] = '/protectedMedia/' + path + return response + else: + return HttpResponseForbidden() + else: + if settings.DEBUG: + return serve(request, path, document_root=settings.MEDIA_ROOT) + else: + response = HttpResponse() + response['Content-Type'] = '' + response['X-Accel-Redirect'] = '/protectedMedia/' + path + return response \ No newline at end of file diff --git a/backend/server/main/wsgi.py b/backend/server/main/wsgi.py index 71ca83e..0a4407a 100644 --- a/backend/server/main/wsgi.py +++ b/backend/server/main/wsgi.py @@ -11,7 +11,7 @@ import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "demo.settings") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "main.settings") application = get_wsgi_application() # add this vercel variable diff --git a/backend/server/requirements.txt b/backend/server/requirements.txt index 2bd5846..c679ecc 100644 --- a/backend/server/requirements.txt +++ b/backend/server/requirements.txt @@ -1,13 +1,26 @@ -Django==5.0.8 -dj-rest-auth @ git+https://github.com/iMerica/dj-rest-auth.git@master +Django==5.2.1 djangorestframework>=3.15.2 -djangorestframework-simplejwt==5.3.1 django-allauth==0.63.3 drf-yasg==1.21.4 django-cors-headers==4.4.0 coreapi==2.3.3 -python-dotenv -psycopg2-binary -Pillow -whitenoise -django-resized \ No newline at end of file +python-dotenv==1.1.0 +psycopg2-binary==2.9.10 +pillow==11.2.1 +whitenoise==6.9.0 +django-resized==1.0.3 +django-geojson==4.2.0 +setuptools==79.0.1 +gunicorn==23.0.0 +qrcode==8.0 +slippers==0.6.2 +django-allauth-ui==1.5.1 +django-widget-tweaks==1.5.0 +django-ical==1.9.2 +icalendar==6.1.0 +ijson==3.3.0 +tqdm==4.67.1 +overpy==0.7 +publicsuffix2==2.20191221 +geopy==2.4.1 +psutil==6.1.1 \ No newline at end of file diff --git a/backend/server/static/data/au.json b/backend/server/static/data/au.json deleted file mode 100644 index aadefff..0000000 --- a/backend/server/static/data/au.json +++ /dev/null @@ -1,26581 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "id": 0, - "properties": { - "name": "New South Wales", - "ISOCODE": "AU-NSW" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [159.10542, -31.563994], - [159.09775, -31.564275], - [159.099634, -31.573372], - [159.094217, -31.57097], - [159.074599, -31.597285], - [159.06874, -31.595697], - [159.077238, -31.543533], - [159.056995, -31.519772], - [159.038463, -31.522425], - [159.03796, -31.512156], - [159.064657, -31.509666], - [159.06379, -31.517379], - [159.081178, -31.526607], - [159.081913, -31.539767], - [159.094678, -31.545036], - [159.10542, -31.563994] - ] - ], - [ - [ - [151.14555, -33.824079], - [151.143844, -33.829174], - [151.169325, -33.839309], - [151.180206, -33.836165], - [151.174277, -33.843006], - [151.143088, -33.835565], - [151.135902, -33.836469], - [151.148783, -33.839386], - [151.133837, -33.844837], - [151.112863, -33.829724], - [151.108625, -33.835555], - [151.092828, -33.819609], - [151.070345, -33.816445], - [151.051336, -33.823662], - [151.084007, -33.82208], - [151.075192, -33.832683], - [151.080873, -33.84575], - [151.083228, -33.827897], - [151.093817, -33.824443], - [151.089778, -33.833044], - [151.098921, -33.831641], - [151.093602, -33.839764], - [151.102215, -33.838102], - [151.099653, -33.844209], - [151.104144, -33.834387], - [151.120767, -33.841788], - [151.113783, -33.853971], - [151.122305, -33.856994], - [151.11907, -33.864711], - [151.128397, -33.860961], - [151.122165, -33.848934], - [151.126983, -33.844195], - [151.142064, -33.845845], - [151.142273, -33.853358], - [151.149526, -33.846908], - [151.144434, -33.843531], - [151.154043, -33.84207], - [151.164849, -33.855249], - [151.14452, -33.863162], - [151.149559, -33.866131], - [151.141168, -33.869844], - [151.15087, -33.872265], - [151.18549, -33.846008], - [151.190538, -33.852375], - [151.184547, -33.853645], - [151.196507, -33.859694], - [151.173504, -33.871203], - [151.189337, -33.87584], - [151.185985, -33.868381], - [151.194011, -33.862376], - [151.201538, -33.873175], - [151.200176, -33.855383], - [151.208045, -33.853512], - [151.2097, -33.861004], - [151.222724, -33.859227], - [151.220606, -33.869096], - [151.229928, -33.858256], - [151.231825, -33.874752], - [151.240091, -33.866392], - [151.246131, -33.873421], - [151.252331, -33.863738], - [151.254657, -33.870793], - [151.266971, -33.870651], - [151.264376, -33.850885], - [151.277581, -33.85109], - [151.281068, -33.832821], - [151.287848, -33.850202], - [151.285699, -33.891955], - [151.274326, -33.893627], - [151.271398, -33.914235], - [151.257621, -33.922461], - [151.265693, -33.941447], - [151.257087, -33.95232], - [151.265965, -33.96803], - [151.251886, -33.964671], - [151.258952, -33.975768], - [151.251185, -33.978936], - [151.249211, -34.001814], - [151.230804, -33.992554], - [151.226024, -33.976737], - [151.208864, -33.982165], - [151.22008, -33.967204], - [151.207515, -33.969846], - [151.211072, -33.961847], - [151.192349, -33.954223], - [151.192722, -33.973925], - [151.186067, -33.952356], - [151.18172, -33.967898], - [151.168033, -33.949774], - [151.139781, -34.003281], - [151.1227, -34.000518], - [151.13074, -33.983977], - [151.118302, -33.990491], - [151.112694, -34.005369], - [151.117358, -34.013775], - [151.107858, -34.014364], - [151.109517, -34.022705], - [151.126957, -34.009899], - [151.137635, -34.037053], - [151.159864, -34.032201], - [151.141756, -34.014559], - [151.157393, -34.013218], - [151.162119, -34.000028], - [151.178624, -34.012843], - [151.158315, -34.014511], - [151.159558, -34.023258], - [151.196318, -34.021228], - [151.20643, -34.014045], - [151.186751, -34.00753], - [151.221931, -34.001214], - [151.231455, -34.011663], - [151.230295, -34.026401], - [151.21452, -34.04193], - [151.185918, -34.034563], - [151.165543, -34.040719], - [151.15588, -34.051861], - [151.153407, -34.073152], - [151.147416, -34.073366], - [151.148906, -34.054581], - [151.140341, -34.073794], - [151.133934, -34.05555], - [151.129658, -34.069298], - [151.111637, -34.072455], - [151.114401, -34.059429], - [151.105961, -34.059439], - [151.112134, -34.043153], - [151.105231, -34.042091], - [151.10177, -34.058999], - [151.096978, -34.047053], - [151.092183, -34.057661], - [151.077022, -34.053923], - [151.089079, -34.058214], - [151.088837, -34.065546], - [151.061128, -34.064351], - [151.057465, -34.073609], - [151.063033, -34.06465], - [151.088446, -34.069568], - [151.095785, -34.058002], - [151.10198, -34.065367], - [151.105556, -34.079512], - [151.078582, -34.089316], - [151.099223, -34.089631], - [151.110204, -34.078284], - [151.132195, -34.075984], - [151.124191, -34.092213], - [151.135161, -34.08226], - [151.13315, -34.073528], - [151.136951, -34.0817], - [151.150032, -34.083695], - [151.168974, -34.074918], - [151.171761, -34.086503], - [151.151792, -34.115075], - [151.135794, -34.120303], - [151.127882, -34.137919], - [151.118696, -34.137011], - [151.11144, -34.148009], - [151.045254, -34.186193], - [150.988696, -34.231862], - [150.928023, -34.316624], - [150.924432, -34.327458], - [150.930286, -34.331102], - [150.919412, -34.358542], - [150.9313, -34.368752], - [150.902085, -34.407696], - [150.904246, -34.42078], - [150.910846, -34.421307], - [150.902392, -34.433215], - [150.901079, -34.459318], - [150.90981, -34.464763], - [150.898757, -34.462019], - [150.894896, -34.451032], - [150.884085, -34.457706], - [150.907936, -34.475512], - [150.913644, -34.4648], - [150.921906, -34.493851], - [150.90884, -34.49317], - [150.891364, -34.506365], - [150.87457, -34.538312], - [150.862742, -34.529093], - [150.873463, -34.498847], - [150.886849, -34.497801], - [150.886605, -34.491595], - [150.832395, -34.486299], - [150.837644, -34.500485], - [150.811748, -34.507363], - [150.819484, -34.517631], - [150.80893, -34.524891], - [150.812573, -34.530276], - [150.807644, -34.525073], - [150.813506, -34.534186], - [150.796795, -34.546199], - [150.810358, -34.549251], - [150.795312, -34.555201], - [150.804238, -34.561351], - [150.81644, -34.553547], - [150.832287, -34.556869], - [150.837573, -34.542704], - [150.862037, -34.537457], - [150.873652, -34.544441], - [150.868446, -34.570207], - [150.877301, -34.579955], - [150.875128, -34.589351], - [150.904456, -34.596968], - [150.887547, -34.598338], - [150.876885, -34.608024], - [150.866629, -34.604505], - [150.855877, -34.614649], - [150.862068, -34.628953], - [150.856594, -34.64603], - [150.865478, -34.64889], - [150.854772, -34.663378], - [150.864679, -34.671917], - [150.855094, -34.676398], - [150.860942, -34.688143], - [150.833299, -34.738644], - [150.837007, -34.754547], - [150.822899, -34.773159], - [150.825135, -34.782505], - [150.811494, -34.772974], - [150.782121, -34.791323], - [150.760547, -34.820646], - [150.749538, -34.85516], - [150.751467, -34.890586], - [150.760049, -34.900442], - [150.770895, -34.895815], - [150.768621, -34.926048], - [150.785753, -34.930429], - [150.776325, -34.947837], - [150.784718, -34.986574], - [150.810238, -35.012456], - [150.821423, -35.014745], - [150.829846, -35.002907], - [150.849715, -35.012891], - [150.831646, -35.041184], - [150.842983, -35.050636], - [150.833758, -35.074355], - [150.805821, -35.094438], - [150.786259, -35.072542], - [150.776154, -35.083012], - [150.775738, -35.054144], - [150.787111, -35.036227], - [150.767252, -35.015173], - [150.778271, -35.002448], - [150.750987, -34.990845], - [150.726267, -34.99665], - [150.728397, -35.007549], - [150.692061, -35.014115], - [150.67113, -35.037153], - [150.67951, -35.049259], - [150.676828, -35.069026], - [150.697959, -35.071135], - [150.691608, -35.083161], - [150.701604, -35.122862], - [150.661053, -35.117824], - [150.657742, -35.105186], - [150.647068, -35.101652], - [150.638256, -35.116681], - [150.614193, -35.116536], - [150.620558, -35.106175], - [150.59525, -35.101546], - [150.58714, -35.088315], - [150.586233, -35.093915], - [150.576903, -35.088371], - [150.579468, -35.099236], - [150.563048, -35.093674], - [150.549499, -35.10304], - [150.565456, -35.102507], - [150.568716, -35.112856], - [150.54138, -35.118777], - [150.544818, -35.12293], - [150.565494, -35.119567], - [150.574358, -35.122863], - [150.569959, -35.13035], - [150.586461, -35.120235], - [150.598912, -35.127192], - [150.585885, -35.138164], - [150.605105, -35.156175], - [150.601334, -35.170066], - [150.591249, -35.172472], - [150.59742, -35.190064], - [150.572751, -35.193035], - [150.540543, -35.215675], - [150.5302, -35.235074], - [150.545226, -35.248436], - [150.478024, -35.291824], - [150.471901, -35.316547], - [150.487294, -35.324977], - [150.475899, -35.330281], - [150.475586, -35.346446], - [150.485034, -35.353284], - [150.474882, -35.356554], - [150.492479, -35.366331], - [150.478544, -35.367845], - [150.452093, -35.389968], - [150.449098, -35.406757], - [150.423084, -35.420975], - [150.410745, -35.436522], - [150.415734, -35.445422], - [150.406091, -35.445871], - [150.403749, -35.458115], - [150.392847, -35.464609], - [150.390874, -35.498431], - [150.401584, -35.506192], - [150.406331, -35.533928], - [150.396202, -35.53312], - [150.385042, -35.546132], - [150.386919, -35.562708], - [150.375839, -35.563551], - [150.376802, -35.571802], - [150.364873, -35.570642], - [150.346391, -35.587906], - [150.340029, -35.597308], - [150.34564, -35.604252], - [150.322605, -35.613539], - [150.326048, -35.637215], - [150.313561, -35.635562], - [150.299254, -35.647388], - [150.29743, -35.663088], - [150.307557, -35.668763], - [150.299687, -35.678853], - [150.306552, -35.686106], - [150.299061, -35.683723], - [150.29744, -35.6961], - [150.280941, -35.703348], - [150.2766, -35.723524], - [150.270352, -35.719129], - [150.265411, -35.726463], - [150.262428, -35.717863], - [150.251028, -35.7194], - [150.250492, -35.711488], - [150.233969, -35.702933], - [150.212214, -35.711807], - [150.210273, -35.702356], - [150.177263, -35.703075], - [150.21448, -35.737926], - [150.211872, -35.75999], - [150.234944, -35.771762], - [150.237379, -35.791939], - [150.230108, -35.801106], - [150.237153, -35.801716], - [150.224191, -35.808749], - [150.230793, -35.818402], - [150.224934, -35.827793], - [150.235278, -35.835527], - [150.217544, -35.830701], - [150.210168, -35.835846], - [150.199136, -35.828596], - [150.186699, -35.833116], - [150.189893, -35.838464], - [150.17766, -35.850199], - [150.191359, -35.860505], - [150.169215, -35.86252], - [150.150243, -35.891139], - [150.152075, -35.907795], - [150.161817, -35.908667], - [150.155057, -35.945862], - [150.160404, -35.953897], - [150.151067, -35.97886], - [150.154079, -35.991911], - [150.164327, -35.99364], - [150.157407, -36.007989], - [150.164553, -36.013024], - [150.149238, -36.02881], - [150.144535, -36.056992], - [150.134469, -36.06594], - [150.13396, -36.090214], - [150.141502, -36.094435], - [150.124334, -36.141924], - [150.125418, -36.16014], - [150.135854, -36.172495], - [150.130935, -36.199788], - [150.142489, -36.217796], - [150.148569, -36.266969], - [150.130773, -36.288866], - [150.139723, -36.304902], - [150.089788, -36.353992], - [150.066831, -36.398525], - [150.06764, -36.41941], - [150.08476, -36.429194], - [150.054818, -36.488115], - [150.062206, -36.50655], - [150.055537, -36.540206], - [150.068288, -36.554137], - [150.055783, -36.570668], - [150.056813, -36.582939], - [150.044143, -36.589002], - [149.999881, -36.665002], - [149.999328, -36.685645], - [149.992487, -36.687797], - [149.997116, -36.692217], - [149.982757, -36.702281], - [149.979306, -36.722228], - [149.991869, -36.725572], - [149.98185, -36.73708], - [149.977198, -36.769631], - [149.940621, -36.811683], - [149.934352, -36.844126], - [149.950011, -36.85539], - [149.939116, -36.857512], - [149.930172, -36.873988], - [149.935305, -36.884159], - [149.929592, -36.894714], - [149.938102, -36.902453], - [149.919697, -36.895441], - [149.904788, -36.914648], - [149.913436, -36.944592], - [149.945918, -36.94913], - [149.933505, -36.959335], - [149.926665, -36.99206], - [149.930788, -37.007831], - [149.947732, -37.017556], - [149.939898, -37.031216], - [149.944652, -37.053996], - [149.923414, -37.046306], - [149.909916, -37.062083], - [149.914847, -37.076119], - [149.901876, -37.069158], - [149.872514, -37.083208], - [149.878305, -37.101044], - [149.893487, -37.097087], - [149.911385, -37.1118], - [149.929726, -37.110113], - [149.926203, -37.100315], - [149.953789, -37.100888], - [149.95232, -37.108727], - [149.971312, -37.117834], - [149.968962, -37.125682], - [149.987616, -37.141124], - [150.004869, -37.141269], - [150.00955, -37.161268], - [150.002958, -37.168505], - [150.02086, -37.185414], - [150.015523, -37.201106], - [150.023399, -37.211966], - [150.010766, -37.211813], - [150.027744, -37.222497], - [150.030825, -37.23786], - [150.051842, -37.262255], - [150.013021, -37.255478], - [149.98678, -37.239932], - [149.966025, -37.249843], - [149.944008, -37.277729], - [149.950848, -37.295648], - [149.969726, -37.309697], - [149.972162, -37.328523], - [149.949831, -37.374669], - [149.956554, -37.423509], - [149.97541, -37.44545], - [149.976679, -37.50506], - [148.194946, -36.796253], - [148.182473, -36.804895], - [148.179595, -36.796326], - [148.156663, -36.790013], - [148.126771, -36.796451], - [148.120152, -36.806079], - [148.108888, -36.800865], - [148.097983, -36.787161], - [148.126081, -36.759417], - [148.120472, -36.756303], - [148.132654, -36.750847], - [148.136703, -36.738436], - [148.130703, -36.734683], - [148.170243, -36.712799], - [148.211171, -36.650519], - [148.219547, -36.619558], - [148.214196, -36.61049], - [148.202781, -36.611915], - [148.217563, -36.598239], - [148.20599, -36.586932], - [148.19033, -36.584891], - [148.190134, -36.57662], - [148.169411, -36.573696], - [148.160713, -36.579776], - [148.150489, -36.558336], - [148.13341, -36.566921], - [148.124337, -36.550642], - [148.139815, -36.525445], - [148.11763, -36.495476], - [148.126424, -36.485274], - [148.119093, -36.481884], - [148.124663, -36.464713], - [148.087601, -36.451895], - [148.08028, -36.422101], - [148.059945, -36.415538], - [148.058163, -36.400804], - [148.037583, -36.390225], - [148.045966, -36.367038], - [148.037836, -36.366246], - [148.048959, -36.355632], - [148.055613, -36.334386], - [148.051243, -36.324557], - [148.058941, -36.320046], - [148.035011, -36.310577], - [148.043928, -36.299479], - [148.035234, -36.292329], - [148.040119, -36.284157], - [148.033753, -36.28223], - [148.032828, -36.26586], - [148.038676, -36.259221], - [148.02884, -36.247044], - [148.0349, -36.234116], - [148.026096, -36.223042], - [148.04062, -36.206951], - [148.021819, -36.176462], - [148.034795, -36.162983], - [148.022899, -36.153457], - [148.035191, -36.152536], - [148.037726, -36.140797], - [148.002388, -36.140057], - [148.000537, -36.124355], - [147.990652, -36.121272], - [147.998229, -36.115919], - [147.991074, -36.111251], - [147.999218, -36.098655], - [147.980247, -36.086482], - [147.982389, -36.077891], - [147.992889, -36.081071], - [147.989467, -36.068478], - [147.999692, -36.046204], - [147.99126, -36.052559], - [147.981774, -36.040254], - [147.973234, -36.046314], - [147.97426, -36.038505], - [147.964964, -36.046853], - [147.958994, -36.040974], - [147.934261, -36.047637], - [147.923974, -36.042491], - [147.923752, -36.035709], - [147.931559, -36.035267], - [147.91149, -36.026597], - [147.917083, -36.011204], - [147.908543, -36.001473], - [147.912342, -35.995198], - [147.895698, -35.993018], - [147.897506, -35.999861], - [147.88288, -36.001798], - [147.873121, -35.991006], - [147.817498, -35.979741], - [147.806153, -35.965057], - [147.776849, -35.968614], - [147.766797, -35.964158], - [147.773261, -35.958863], - [147.741292, -35.95649], - [147.718672, -35.945513], - [147.708415, -35.928545], - [147.68001, -35.944439], - [147.646777, -35.946008], - [147.637771, -35.96211], - [147.601438, -35.979118], - [147.591893, -35.969859], - [147.549115, -35.96455], - [147.547654, -35.978625], - [147.558887, -35.972489], - [147.584027, -35.984648], - [147.551873, -36.004095], - [147.521359, -35.986936], - [147.514925, -35.976369], - [147.525267, -35.963338], - [147.511421, -35.962412], - [147.494112, -35.943549], - [147.481553, -35.949223], - [147.478835, -35.942689], - [147.464072, -35.944137], - [147.450685, -35.960804], - [147.404631, -35.943495], - [147.390342, -35.949266], - [147.392344, -35.973533], - [147.383679, -35.972352], - [147.358193, -35.991276], - [147.355287, -36.009832], - [147.345681, -36.018772], - [147.352825, -36.031749], - [147.319949, -36.060987], - [147.285177, -36.039439], - [147.242378, -36.038482], - [147.206299, -36.050136], - [147.164456, -36.030798], - [147.144361, -36.037765], - [147.127391, -36.018047], - [147.123357, -35.994498], - [147.111931, -36.000922], - [147.11628, -36.007635], - [147.10682, -36.004825], - [147.109228, -36.012549], - [147.098074, -36.010246], - [147.106364, -36.016455], - [147.097671, -36.015823], - [147.099095, -36.026194], - [147.09214, -36.02765], - [147.103712, -36.032854], - [147.097003, -36.046784], - [147.091582, -36.043861], - [147.095444, -36.05271], - [147.0904, -36.049226], - [147.061812, -36.066155], - [147.052963, -36.107881], - [147.042344, -36.104305], - [147.034141, -36.115239], - [147.022777, -36.099895], - [147.013473, -36.104721], - [147.016319, -36.089798], - [147.006396, -36.089115], - [147.007444, -36.083732], - [146.981298, -36.094876], - [146.972589, -36.082113], - [146.956824, -36.078061], - [146.952498, -36.110788], - [146.943705, -36.115989], - [146.926804, -36.097178], - [146.924058, -36.108315], - [146.907763, -36.111284], - [146.90691, -36.084946], - [146.880556, -36.087524], - [146.872952, -36.073681], - [146.86453, -36.073084], - [146.857158, -36.084918], - [146.8367, -36.082073], - [146.825026, -36.088724], - [146.825542, -36.070847], - [146.816301, -36.074377], - [146.81838, -36.067834], - [146.803936, -36.055194], - [146.79457, -36.058545], - [146.796181, -36.065138], - [146.762818, -36.059519], - [146.762315, -36.051665], - [146.749851, -36.061277], - [146.752929, -36.042113], - [146.730065, -36.044724], - [146.731645, -36.023725], - [146.708878, -36.029435], - [146.707141, -36.036122], - [146.689603, -36.030446], - [146.695002, -36.034315], - [146.685812, -36.040576], - [146.675365, -36.028599], - [146.680199, -36.022376], - [146.655996, -36.026252], - [146.650336, -36.018411], - [146.658574, -36.014488], - [146.650178, -36.013796], - [146.650868, -36.007735], - [146.614299, -35.99648], - [146.60782, -35.986372], - [146.618716, -35.975937], - [146.61252, -35.972858], - [146.584147, -35.974987], - [146.583967, -35.983864], - [146.560301, -35.976391], - [146.552029, -35.979592], - [146.555958, -35.989182], - [146.549581, -35.992457], - [146.532293, -35.984299], - [146.519681, -35.960604], - [146.502585, -35.958235], - [146.500674, -35.979244], - [146.49248, -35.985012], - [146.502134, -35.983188], - [146.499726, -35.99087], - [146.467407, -35.98424], - [146.469966, -35.976201], - [146.454595, -35.962247], - [146.444738, -35.977991], - [146.437159, -35.967015], - [146.421673, -35.965831], - [146.425169, -35.973027], - [146.402962, -35.98878], - [146.399134, -36.007199], - [146.380606, -36.012895], - [146.379594, -36.028127], - [146.387557, -36.035639], - [146.368684, -36.050862], - [146.33889, -36.026395], - [146.325022, -36.033543], - [146.329072, -36.043144], - [146.315875, -36.038453], - [146.312986, -36.045568], - [146.300963, -36.03659], - [146.299009, -36.047859], - [146.291396, -36.038952], - [146.283023, -36.041488], - [146.293104, -36.029503], - [146.282181, -36.026188], - [146.291125, -36.020163], - [146.278803, -36.01585], - [146.282895, -36.011048], - [146.27503, -36.012441], - [146.272859, -36.026631], - [146.257183, -36.012053], - [146.244593, -36.01834], - [146.250889, -36.02313], - [146.241433, -36.023524], - [146.24298, -36.028784], - [146.222171, -36.029921], - [146.211155, -36.03886], - [146.211581, -36.028559], - [146.204747, -36.039158], - [146.199244, -36.027453], - [146.185976, -36.042071], - [146.173104, -36.019293], - [146.15468, -36.025159], - [146.145863, -36.013776], - [146.131357, -36.019413], - [146.132045, -36.010095], - [146.14065, -36.008954], - [146.134761, -36.002547], - [146.118718, -36.018014], - [146.107678, -36.014369], - [146.112378, -36.006811], - [146.09147, -36.009477], - [146.092199, -36.021266], - [146.075639, -36.018177], - [146.07355, -36.009637], - [146.059295, -36.014548], - [146.052346, -35.995465], - [146.048421, -36.003158], - [146.031488, -35.994714], - [146.016143, -36.006962], - [146.005866, -36.003569], - [145.97207, -36.015747], - [145.971314, -36.005651], - [145.958336, -36.006973], - [145.964818, -35.99677], - [145.945744, -35.983809], - [145.951071, -35.976626], - [145.944304, -35.966495], - [145.953701, -35.9615], - [145.928, -35.973947], - [145.925821, -35.964563], - [145.902934, -35.968856], - [145.900756, -35.961529], - [145.910314, -35.955962], - [145.902693, -35.952496], - [145.854042, -35.959927], - [145.847975, -35.968689], - [145.858624, -35.974814], - [145.845548, -35.97346], - [145.848589, -35.980899], - [145.840021, -35.983244], - [145.827548, -35.975438], - [145.828252, -35.982982], - [145.811353, -35.984102], - [145.81668, -35.9882], - [145.811662, -35.991769], - [145.80798, -35.983762], - [145.793445, -35.982817], - [145.792732, -35.972801], - [145.777006, -35.972559], - [145.778211, -35.960243], - [145.746109, -35.964239], - [145.731027, -35.958734], - [145.734238, -35.951348], - [145.716766, -35.950594], - [145.7263, -35.942312], - [145.720274, -35.934449], - [145.697327, -35.936501], - [145.695763, -35.925792], - [145.703269, -35.925702], - [145.698181, -35.920977], - [145.685852, -35.930615], - [145.673992, -35.925924], - [145.679053, -35.916829], - [145.669121, -35.919586], - [145.657449, -35.900686], - [145.63973, -35.894239], - [145.62957, -35.880105], - [145.620321, -35.883884], - [145.628134, -35.875409], - [145.614857, -35.87257], - [145.62832, -35.867775], - [145.626347, -35.862758], - [145.601748, -35.867857], - [145.606474, -35.874998], - [145.601134, -35.875008], - [145.598028, -35.861458], - [145.586792, -35.861245], - [145.59323, -35.849077], - [145.564011, -35.83419], - [145.56684, -35.826497], - [145.557997, -35.82823], - [145.562836, -35.813449], - [145.546741, -35.812894], - [145.538763, -35.821813], - [145.541889, -35.808905], - [145.535398, -35.801983], - [145.52251, -35.818486], - [145.502556, -35.809449], - [145.491977, -35.815076], - [145.472128, -35.80923], - [145.46344, -35.826274], - [145.450658, -35.821418], - [145.442293, -35.835642], - [145.412575, -35.830601], - [145.410625, -35.848613], - [145.38715, -35.850142], - [145.3554, -35.867067], - [145.324453, -35.850686], - [145.296542, -35.860566], - [145.272698, -35.845203], - [145.258317, -35.850588], - [145.260717, -35.835426], - [145.246178, -35.830321], - [145.225029, -35.832184], - [145.22276, -35.84244], - [145.189806, -35.834267], - [145.181014, -35.842026], - [145.153456, -35.843045], - [145.15917, -35.831077], - [145.139579, -35.828538], - [145.136636, -35.83427], - [145.127683, -35.820716], - [145.126435, -35.829671], - [145.114092, -35.820548], - [145.091922, -35.835957], - [145.089998, -35.825457], - [145.061056, -35.837309], - [145.049713, -35.833671], - [145.018998, -35.856647], - [144.992263, -35.852338], - [144.991436, -35.858984], - [144.968187, -35.865528], - [144.974954, -35.883845], - [144.948917, -35.931602], - [144.957378, -35.961005], - [144.931005, -35.96847], - [144.923606, -35.988768], - [144.945759, -36.004312], - [144.945499, -36.012186], - [144.961831, -36.018216], - [144.967808, -36.042078], - [144.985932, -36.056509], - [144.981909, -36.072316], - [144.94829, -36.082904], - [144.932614, -36.067049], - [144.86346, -36.059112], - [144.861373, -36.071838], - [144.857534, -36.065171], - [144.856474, -36.073553], - [144.847176, -36.072881], - [144.850851, -36.080645], - [144.841901, -36.083098], - [144.841922, -36.100576], - [144.819903, -36.107947], - [144.809893, -36.102428], - [144.81634, -36.109865], - [144.806398, -36.107457], - [144.813362, -36.113912], - [144.80787, -36.123628], - [144.794782, -36.117285], - [144.777064, -36.129837], - [144.771896, -36.116132], - [144.748239, -36.121746], - [144.740569, -36.107576], - [144.726379, -36.117781], - [144.717445, -36.112113], - [144.725675, -36.089438], - [144.715385, -36.086214], - [144.706461, -36.092948], - [144.698886, -36.087259], - [144.697522, -36.094047], - [144.683907, -36.095138], - [144.689004, -36.061417], - [144.667856, -36.068596], - [144.664631, -36.077042], - [144.658022, -36.07038], - [144.654966, -36.075349], - [144.653191, -36.05324], - [144.643921, -36.056664], - [144.632744, -36.048097], - [144.624999, -36.052081], - [144.626288, -36.0618], - [144.6183, -36.059708], - [144.628221, -36.065259], - [144.61767, -36.077192], - [144.608432, -36.063641], - [144.617551, -36.046904], - [144.615473, -36.031593], - [144.605957, -36.036542], - [144.608761, -36.041808], - [144.598917, -36.037411], - [144.590991, -36.043318], - [144.582515, -36.038135], - [144.586445, -36.027182], - [144.571127, -36.024079], - [144.563385, -36.007806], - [144.557655, -36.014107], - [144.553661, -36.002984], - [144.51614, -35.995438], - [144.512009, -35.988895], - [144.521099, -35.970266], - [144.50995, -35.973945], - [144.513047, -35.965202], - [144.501128, -35.970606], - [144.5019, -35.958039], - [144.493963, -35.968592], - [144.488638, -35.957123], - [144.48123, -35.958609], - [144.487583, -35.949511], - [144.479758, -35.953295], - [144.479415, -35.945275], - [144.466691, -35.945927], - [144.472233, -35.940725], - [144.464123, -35.940942], - [144.466553, -35.933602], - [144.460553, -35.939596], - [144.446974, -35.935531], - [144.426505, -35.918744], - [144.423428, -35.906005], - [144.416979, -35.910472], - [144.424381, -35.900194], - [144.407927, -35.904013], - [144.418183, -35.89322], - [144.403628, -35.880666], - [144.410936, -35.871189], - [144.401926, -35.86802], - [144.411388, -35.859003], - [144.398635, -35.862667], - [144.388885, -35.85848], - [144.390318, -35.850553], - [144.381433, -35.852423], - [144.384314, -35.841922], - [144.372936, -35.83815], - [144.382044, -35.833175], - [144.372189, -35.83195], - [144.384118, -35.819565], - [144.364806, -35.820937], - [144.377484, -35.814346], - [144.366709, -35.811253], - [144.37685, -35.792979], - [144.362329, -35.795834], - [144.355338, -35.788479], - [144.360283, -35.784811], - [144.351546, -35.785069], - [144.349111, -35.767142], - [144.318651, -35.766574], - [144.327832, -35.752646], - [144.295276, -35.754379], - [144.301278, -35.742986], - [144.29606, -35.737091], - [144.264496, -35.751403], - [144.24815, -35.721034], - [144.215952, -35.706477], - [144.221647, -35.693952], - [144.213483, -35.686671], - [144.195139, -35.685858], - [144.186788, -35.670431], - [144.162351, -35.671526], - [144.152629, -35.642678], - [144.142927, -35.647253], - [144.131488, -35.640761], - [144.117546, -35.625926], - [144.105015, -35.59078], - [144.062285, -35.576768], - [144.063958, -35.570545], - [144.0468, -35.563141], - [144.039215, -35.549257], - [144.034082, -35.555971], - [144.012702, -35.554073], - [144.009646, -35.563307], - [143.989865, -35.554663], - [143.999221, -35.545367], - [143.996841, -35.53625], - [143.974476, -35.532309], - [143.962441, -35.51398], - [143.972536, -35.509249], - [143.970101, -35.500078], - [143.933355, -35.50661], - [143.935045, -35.499288], - [143.906183, -35.499958], - [143.907733, -35.494162], - [143.876584, -35.486166], - [143.87138, -35.477828], - [143.858784, -35.479978], - [143.855435, -35.461838], - [143.813021, -35.446265], - [143.818018, -35.437545], - [143.790117, -35.422477], - [143.762852, -35.423066], - [143.765962, -35.415858], - [143.758802, -35.415427], - [143.768823, -35.401809], - [143.751004, -35.387835], - [143.709175, -35.392538], - [143.711685, -35.38469], - [143.703349, -35.389408], - [143.702284, -35.377882], - [143.693148, -35.383917], - [143.684521, -35.368446], - [143.682627, -35.374091], - [143.667922, -35.371554], - [143.668081, -35.385735], - [143.65714, -35.384999], - [143.642338, -35.401037], - [143.629381, -35.392368], - [143.633019, -35.383467], - [143.620416, -35.387682], - [143.616037, -35.368884], - [143.603015, -35.365407], - [143.598448, -35.352111], - [143.562074, -35.337244], - [143.569019, -35.302447], - [143.577937, -35.303197], - [143.59086, -35.281659], - [143.583507, -35.265005], - [143.57169, -35.267959], - [143.574076, -35.256505], - [143.563717, -35.243545], - [143.580984, -35.220036], - [143.570828, -35.206905], - [143.547023, -35.206173], - [143.548335, -35.21379], - [143.529155, -35.219921], - [143.518322, -35.21162], - [143.471482, -35.219293], - [143.449486, -35.189112], - [143.394677, -35.192377], - [143.386969, -35.183462], - [143.39182, -35.172567], - [143.381936, -35.17312], - [143.390647, -35.145107], - [143.361967, -35.1169], - [143.360762, -35.103032], - [143.348103, -35.10544], - [143.340858, -35.095714], - [143.345023, -35.08702], - [143.337446, -35.080418], - [143.34552, -35.074056], - [143.339058, -35.068191], - [143.350838, -35.064702], - [143.337663, -35.061294], - [143.337264, -35.048645], - [143.330492, -35.05388], - [143.336543, -35.043219], - [143.328679, -35.0459], - [143.322081, -35.036727], - [143.335987, -35.037375], - [143.331864, -35.023804], - [143.338117, -35.010891], - [143.329708, -34.995744], - [143.318825, -34.992943], - [143.323717, -34.979085], - [143.317704, -34.952598], - [143.322014, -34.942339], - [143.339492, -34.943632], - [143.342789, -34.932533], - [143.340526, -34.91374], - [143.321389, -34.88846], - [143.341732, -34.88112], - [143.338404, -34.870312], - [143.352563, -34.858235], - [143.34521, -34.853463], - [143.354957, -34.846039], - [143.341191, -34.846309], - [143.359559, -34.816899], - [143.347559, -34.807302], - [143.347876, -34.791635], - [143.318269, -34.790842], - [143.308844, -34.779939], - [143.294285, -34.790822], - [143.284327, -34.785245], - [143.286873, -34.794985], - [143.276736, -34.79226], - [143.273005, -34.776412], - [143.25213, -34.772803], - [143.274016, -34.752685], - [143.265285, -34.748558], - [143.248933, -34.757853], - [143.24066, -34.74546], - [143.228775, -34.747789], - [143.224384, -34.758733], - [143.213847, -34.738496], - [143.218847, -34.729471], - [143.200006, -34.733418], - [143.199179, -34.717034], - [143.179282, -34.717329], - [143.180987, -34.709482], - [143.173197, -34.719709], - [143.16536, -34.718136], - [143.161689, -34.697916], - [143.1474, -34.714757], - [143.133463, -34.700577], - [143.117841, -34.703076], - [143.127791, -34.692661], - [143.107243, -34.701466], - [143.111605, -34.687127], - [143.121272, -34.687401], - [143.112525, -34.680819], - [143.092828, -34.701273], - [143.076222, -34.695958], - [143.070763, -34.67838], - [143.054822, -34.698855], - [143.040422, -34.685888], - [143.039468, -34.702611], - [143.029424, -34.691851], - [143.032502, -34.682928], - [143.010179, -34.693658], - [143.017281, -34.67366], - [142.994573, -34.673872], - [142.989313, -34.662579], - [142.975282, -34.670861], - [142.982428, -34.68274], - [142.972708, -34.695207], - [142.959264, -34.664982], - [142.948867, -34.669674], - [142.932606, -34.655515], - [142.922267, -34.656482], - [142.923844, -34.647856], - [142.901526, -34.654958], - [142.893269, -34.665679], - [142.900176, -34.671464], - [142.886815, -34.679808], - [142.886457, -34.672085], - [142.875881, -34.674859], - [142.872151, -34.664119], - [142.860551, -34.665162], - [142.871867, -34.650292], - [142.855209, -34.639522], - [142.868177, -34.627306], - [142.852466, -34.619195], - [142.840679, -34.625752], - [142.83824, -34.613044], - [142.825038, -34.60878], - [142.823118, -34.600251], - [142.818507, -34.612357], - [142.804997, -34.608401], - [142.810259, -34.589093], - [142.797919, -34.597628], - [142.787687, -34.590178], - [142.810104, -34.560855], - [142.791428, -34.546389], - [142.782512, -34.564933], - [142.769991, -34.568882], - [142.784068, -34.580393], - [142.748291, -34.576759], - [142.746897, -34.587779], - [142.763405, -34.590436], - [142.759173, -34.600136], - [142.743192, -34.602811], - [142.723616, -34.592285], - [142.714821, -34.600442], - [142.69998, -34.59938], - [142.703966, -34.613507], - [142.689504, -34.618298], - [142.708789, -34.622664], - [142.700788, -34.624516], - [142.689206, -34.652547], - [142.708607, -34.662167], - [142.710754, -34.675769], - [142.684144, -34.670884], - [142.678899, -34.680848], - [142.691089, -34.701397], - [142.684489, -34.714057], - [142.699406, -34.724474], - [142.678646, -34.722345], - [142.676553, -34.729046], - [142.686657, -34.733929], - [142.678954, -34.739202], - [142.667412, -34.735908], - [142.661412, -34.721707], - [142.637334, -34.735043], - [142.618316, -34.728751], - [142.620498, -34.757128], - [142.646364, -34.763315], - [142.639323, -34.780272], - [142.616821, -34.785499], - [142.567176, -34.766928], - [142.556744, -34.775373], - [142.53356, -34.753067], - [142.524215, -34.75938], - [142.507428, -34.748839], - [142.511671, -34.740888], - [142.499559, -34.739117], - [142.518864, -34.703671], - [142.49906, -34.700026], - [142.51417, -34.690931], - [142.498646, -34.681025], - [142.497078, -34.669376], - [142.479002, -34.673551], - [142.471582, -34.666869], - [142.472261, -34.650003], - [142.483644, -34.636435], - [142.452327, -34.633498], - [142.463988, -34.626677], - [142.45916, -34.616289], - [142.468257, -34.612934], - [142.461307, -34.606565], - [142.471264, -34.592677], - [142.458363, -34.587575], - [142.472705, -34.576695], - [142.467968, -34.564295], - [142.448847, -34.559483], - [142.458747, -34.581498], - [142.451622, -34.584265], - [142.444922, -34.57549], - [142.430178, -34.574793], - [142.426062, -34.562348], - [142.407693, -34.567972], - [142.405558, -34.541508], - [142.390211, -34.549119], - [142.376705, -34.540985], - [142.378183, -34.532145], - [142.367695, -34.530446], - [142.400571, -34.522747], - [142.374942, -34.515284], - [142.394681, -34.493484], - [142.377726, -34.491397], - [142.369722, -34.503819], - [142.359576, -34.498779], - [142.364268, -34.484715], - [142.384163, -34.478091], - [142.379267, -34.466704], - [142.353334, -34.469582], - [142.367936, -34.435415], - [142.359897, -34.431933], - [142.364539, -34.422704], - [142.351836, -34.422288], - [142.360695, -34.411768], - [142.350969, -34.396629], - [142.363897, -34.38568], - [142.373927, -34.388151], - [142.368057, -34.37065], - [142.378269, -34.36475], - [142.36353, -34.362158], - [142.389752, -34.362799], - [142.384459, -34.346915], - [142.397, -34.343802], - [142.396566, -34.337749], - [142.367747, -34.326908], - [142.330924, -34.339378], - [142.294386, -34.32345], - [142.283873, -34.326567], - [142.284023, -34.31076], - [142.298886, -34.305703], - [142.286132, -34.296536], - [142.273673, -34.304021], - [142.267332, -34.295284], - [142.253057, -34.306139], - [142.235894, -34.306973], - [142.232465, -34.296749], - [142.248845, -34.284983], - [142.248993, -34.265054], - [142.23229, -34.255036], - [142.243579, -34.245768], - [142.24403, -34.232457], - [142.235334, -34.223748], - [142.244111, -34.21093], - [142.236518, -34.203765], - [142.23313, -34.214407], - [142.220713, -34.182046], - [142.198195, -34.183432], - [142.183613, -34.175672], - [142.167293, -34.183487], - [142.166529, -34.171395], - [142.159255, -34.171482], - [142.166629, -34.153134], - [142.14829, -34.148718], - [142.138001, -34.160131], - [142.120113, -34.156891], - [142.119613, -34.174909], - [142.08277, -34.173545], - [142.077538, -34.157346], - [142.065345, -34.150611], - [142.075638, -34.131418], - [142.027564, -34.122981], - [142.023852, -34.115054], - [142.0294, -34.118211], - [142.042265, -34.105298], - [142.037535, -34.099426], - [142.012927, -34.105246], - [142.022207, -34.12495], - [141.977651, -34.112702], - [141.969742, -34.119898], - [141.970437, -34.136107], - [141.945003, -34.119477], - [141.934053, -34.138257], - [141.925629, -34.134605], - [141.929784, -34.12579], - [141.922592, -34.11457], - [141.903505, -34.11115], - [141.884744, -34.114984], - [141.888789, -34.124415], - [141.876627, -34.137418], - [141.867763, -34.128652], - [141.853257, -34.131233], - [141.850694, -34.124307], - [141.841383, -34.132452], - [141.786445, -34.111685], - [141.776886, -34.116878], - [141.777897, -34.101774], - [141.756947, -34.112097], - [141.752623, -34.106242], - [141.761836, -34.097537], - [141.746343, -34.103403], - [141.731459, -34.090957], - [141.725469, -34.094023], - [141.729871, -34.105577], - [141.719012, -34.114894], - [141.708284, -34.096352], - [141.67745, -34.101225], - [141.632653, -34.121484], - [141.627982, -34.145417], - [141.611817, -34.139023], - [141.618538, -34.156287], - [141.60458, -34.149115], - [141.583902, -34.151965], - [141.602959, -34.162254], - [141.589383, -34.177353], - [141.604947, -34.183933], - [141.603285, -34.191228], - [141.589743, -34.186893], - [141.583921, -34.198816], - [141.560468, -34.1909], - [141.547738, -34.200841], - [141.533546, -34.191434], - [141.533863, -34.210697], - [141.510071, -34.216479], - [141.506149, -34.210498], - [141.518577, -34.203159], - [141.506669, -34.190619], - [141.518744, -34.18091], - [141.496794, -34.155523], - [141.465933, -34.165754], - [141.450241, -34.161077], - [141.444539, -34.168015], - [141.432802, -34.15994], - [141.433901, -34.145904], - [141.407404, -34.1464], - [141.408248, -34.127856], - [141.388118, -34.13473], - [141.381587, -34.122143], - [141.369693, -34.120204], - [141.368758, -34.127115], - [141.358972, -34.110723], - [141.348504, -34.112311], - [141.346407, -34.124348], - [141.324937, -34.138782], - [141.325922, -34.126866], - [141.31353, -34.12486], - [141.317451, -34.112413], - [141.30079, -34.113718], - [141.283701, -34.103874], - [141.259566, -34.078134], - [141.242543, -34.087341], - [141.247217, -34.073209], - [141.241808, -34.061315], - [141.228468, -34.073651], - [141.222119, -34.061677], - [141.205907, -34.061723], - [141.187449, -34.079294], - [141.193531, -34.089576], - [141.184951, -34.091951], - [141.174668, -34.073334], - [141.165854, -34.083212], - [141.15367, -34.082118], - [141.15318, -34.068915], - [141.143847, -34.067799], - [141.153443, -34.064189], - [141.153111, -34.054521], - [141.142973, -34.063534], - [141.137307, -34.057561], - [141.120338, -34.064866], - [141.094238, -34.050656], - [141.087257, -34.057173], - [141.097587, -34.070035], - [141.089218, -34.076696], - [141.08491, -34.062288], - [141.071951, -34.06291], - [141.065601, -34.050062], - [141.042463, -34.061101], - [141.04358, -34.0432], - [141.036145, -34.03605], - [141.024324, -34.059906], - [141.001935, -34.039284], - [141.003776, -34.027604], - [141.012366, -34.024736], - [141.002957, -34.022537], - [140.999278, -28.999103], - [148.958308, -28.999064], - [148.976321, -28.976413], - [148.998297, -28.972645], - [149.009223, -28.956919], - [149.032686, -28.955958], - [149.04832, -28.916989], - [149.058652, -28.910358], - [149.063984, -28.888645], - [149.055338, -28.884099], - [149.080061, -28.858362], - [149.080762, -28.841801], - [149.097078, -28.83168], - [149.103225, -28.838124], - [149.112444, -28.829575], - [149.128192, -28.835262], - [149.143444, -28.822215], - [149.139757, -28.807197], - [149.160386, -28.810739], - [149.179183, -28.802996], - [149.19236, -28.7806], - [149.188805, -28.775118], - [149.224974, -28.764462], - [149.246912, -28.738899], - [149.253764, -28.742235], - [149.262342, -28.734297], - [149.269197, -28.743452], - [149.297081, -28.709947], - [149.317964, -28.714058], - [149.329862, -28.698194], - [149.346685, -28.696672], - [149.358975, -28.68433], - [149.387389, -28.695803], - [149.393867, -28.677292], - [149.405469, -28.675241], - [149.423022, -28.655209], - [149.417037, -28.651315], - [149.426129, -28.650136], - [149.432856, -28.635031], - [149.428298, -28.629225], - [149.442976, -28.620323], - [149.439518, -28.612053], - [149.452554, -28.594867], - [149.474862, -28.593894], - [149.481514, -28.582818], - [149.502704, -28.580399], - [149.502977, -28.574351], - [149.513949, -28.581674], - [149.528925, -28.57422], - [149.552587, -28.580137], - [149.568553, -28.571079], - [149.587938, -28.572815], - [149.610654, -28.60088], - [149.625491, -28.593342], - [149.642282, -28.599207], - [149.647886, -28.61211], - [149.655991, -28.615489], - [149.660712, -28.609311], - [149.674008, -28.624156], - [149.666654, -28.631859], - [149.703104, -28.633712], - [149.709917, -28.620299], - [149.7039, -28.616464], - [149.721169, -28.609183], - [149.74497, -28.618388], - [149.754943, -28.609441], - [149.784005, -28.614132], - [149.811439, -28.605773], - [149.819292, -28.615843], - [149.83036, -28.603748], - [149.844852, -28.610477], - [149.8623, -28.602199], - [149.899141, -28.621909], - [149.917404, -28.608056], - [149.936331, -28.610132], - [149.941892, -28.617922], - [149.950561, -28.60804], - [149.976953, -28.613464], - [150.016091, -28.580656], - [150.045836, -28.582399], - [150.04874, -28.589196], - [150.073281, -28.576562], - [150.079904, -28.584396], - [150.085176, -28.575843], - [150.092923, -28.578618], - [150.091932, -28.564239], - [150.110908, -28.570297], - [150.121475, -28.559734], - [150.138555, -28.565316], - [150.15228, -28.55021], - [150.15409, -28.557155], - [150.169233, -28.550587], - [150.171551, -28.56389], - [150.182694, -28.556287], - [150.17789, -28.563474], - [150.186598, -28.565211], - [150.186688, -28.572795], - [150.192465, -28.566742], - [150.212287, -28.574181], - [150.213149, -28.567549], - [150.229074, -28.567687], - [150.230399, -28.555713], - [150.238805, -28.559711], - [150.236053, -28.55381], - [150.289648, -28.537157], - [150.320591, -28.557182], - [150.327556, -28.571045], - [150.3513, -28.575348], - [150.352542, -28.587759], - [150.369675, -28.598511], - [150.363767, -28.60751], - [150.370045, -28.62068], - [150.387493, -28.625354], - [150.387879, -28.633924], - [150.401823, -28.627281], - [150.413973, -28.633892], - [150.415222, -28.650834], - [150.429277, -28.651122], - [150.445551, -28.665141], - [150.460085, -28.668912], - [150.487084, -28.657421], - [150.51481, -28.661759], - [150.525002, -28.654311], - [150.5392, -28.660519], - [150.527008, -28.668879], - [150.544079, -28.671524], - [150.552333, -28.668026], - [150.548167, -28.658494], - [150.554094, -28.653064], - [150.561392, -28.661817], - [150.580641, -28.655465], - [150.600191, -28.670758], - [150.625827, -28.668979], - [150.632541, -28.676572], - [150.6734, -28.65018], - [150.681695, -28.661351], - [150.708625, -28.651951], - [150.728255, -28.63449], - [150.752343, -28.633464], - [150.795757, -28.655236], - [150.818847, -28.657336], - [150.819279, -28.666631], - [150.848417, -28.673119], - [150.874008, -28.693797], - [150.906384, -28.687706], - [150.930908, -28.705519], - [150.938189, -28.730938], - [151.01065, -28.740805], - [151.028277, -28.761415], - [151.028963, -28.770497], - [151.019308, -28.772049], - [151.024763, -28.793127], - [151.041903, -28.799153], - [151.037362, -28.827649], - [151.045321, -28.844482], - [151.054835, -28.849373], - [151.083206, -28.83438], - [151.102759, -28.836369], - [151.1044, -28.844291], - [151.132965, -28.860242], - [151.200196, -28.884349], - [151.208752, -28.90147], - [151.234722, -28.904656], - [151.243908, -28.924297], - [151.274808, -28.938926], - [151.28234, -28.95408], - [151.272148, -28.973172], - [151.282556, -28.980593], - [151.276414, -28.986967], - [151.283956, -29.005871], - [151.271058, -29.030275], - [151.284865, -29.037356], - [151.288861, -29.050251], - [151.275509, -29.077791], - [151.279649, -29.100769], - [151.315471, -29.134499], - [151.308844, -29.147526], - [151.314762, -29.165531], - [151.33931, -29.177266], - [151.393784, -29.177893], - [151.410638, -29.152566], - [151.428307, -29.147477], - [151.451744, -29.126859], - [151.463025, -29.098943], - [151.486066, -29.088818], - [151.502292, -29.070805], - [151.49149, -29.056244], - [151.49823, -29.019909], - [151.536094, -28.980619], - [151.545566, -28.952998], - [151.566806, -28.941731], - [151.577091, -28.945031], - [151.609616, -28.923279], - [151.634688, -28.929234], - [151.644389, -28.916839], - [151.674758, -28.907595], - [151.706536, -28.871784], - [151.73386, -28.871578], - [151.743471, -28.918646], - [151.772735, -28.938251], - [151.770227, -28.955846], - [151.777834, -28.959885], - [151.806394, -28.944636], - [151.813804, -28.959374], - [151.832232, -28.959829], - [151.839557, -28.942665], - [151.837909, -28.916547], - [151.849363, -28.90785], - [151.900358, -28.914966], - [151.916048, -28.929307], - [151.968198, -28.916567], - [151.997593, -28.895483], - [152.00109, -28.90973], - [152.009703, -28.907663], - [152.038126, -28.864696], - [152.036909, -28.851794], - [152.025956, -28.858253], - [152.015064, -28.850626], - [152.017057, -28.838514], - [152.037291, -28.819231], - [152.034743, -28.79071], - [152.041726, -28.778581], - [152.036326, -28.756992], - [152.047714, -28.740329], - [152.042726, -28.731623], - [152.076049, -28.708175], - [152.066079, -28.697454], - [152.066354, -28.680968], - [152.052567, -28.68194], - [152.03915, -28.664448], - [152.010168, -28.664951], - [151.990804, -28.6244], - [151.985979, -28.581498], - [151.957677, -28.563409], - [151.955645, -28.518904], - [151.982893, -28.503395], - [151.988951, -28.525613], - [152.016864, -28.525281], - [152.045672, -28.494966], - [152.067033, -28.48559], - [152.0702, -28.468003], - [152.121134, -28.462669], - [152.160504, -28.433123], - [152.184519, -28.438872], - [152.190266, -28.433948], - [152.217189, -28.449236], - [152.267606, -28.390047], - [152.288432, -28.393151], - [152.309659, -28.363168], - [152.341582, -28.36786], - [152.355946, -28.361197], - [152.38616, -28.368554], - [152.417259, -28.333089], - [152.409517, -28.315734], - [152.414572, -28.298101], - [152.444831, -28.298822], - [152.442877, -28.290442], - [152.463586, -28.259373], - [152.508643, -28.249249], - [152.534221, -28.262631], - [152.525981, -28.30625], - [152.548142, -28.321019], - [152.555508, -28.316663], - [152.556437, -28.323355], - [152.568635, -28.323575], - [152.579242, -28.338976], - [152.6017, -28.307381], - [152.600303, -28.283836], - [152.614517, -28.269555], - [152.624513, -28.298204], - [152.638288, -28.310997], - [152.667228, -28.311752], - [152.679339, -28.330416], - [152.72288, -28.344096], - [152.751062, -28.363914], - [152.775455, -28.346625], - [152.804226, -28.353594], - [152.831138, -28.320265], - [152.880013, -28.309607], - [152.933856, -28.338311], - [152.972614, -28.331853], - [153.008199, -28.341717], - [153.04606, -28.339455], - [153.108829, -28.357543], - [153.12989, -28.330665], - [153.124665, -28.318641], - [153.143405, -28.311993], - [153.154794, -28.295691], - [153.168505, -28.294163], - [153.161067, -28.279824], - [153.174911, -28.274777], - [153.177921, -28.24752], - [153.231833, -28.26511], - [153.245848, -28.245832], - [153.262409, -28.246788], - [153.278912, -28.233636], - [153.330213, -28.237064], - [153.33958, -28.250311], - [153.361237, -28.24835], - [153.389527, -28.234935], - [153.40661, -28.210415], - [153.4356, -28.187207], - [153.457134, -28.18054], - [153.476931, -28.15702], - [153.534643, -28.17763], - [153.542419, -28.168567], - [153.556101, -28.168449], - [153.54439, -28.169618], - [153.546326, -28.184622], - [153.538953, -28.1831], - [153.545506, -28.183393], - [153.542434, -28.178038], - [153.528129, -28.1908], - [153.508776, -28.190014], - [153.511639, -28.201256], - [153.507945, -28.194172], - [153.493754, -28.207082], - [153.500088, -28.205997], - [153.500738, -28.213867], - [153.494688, -28.220227], - [153.518655, -28.221669], - [153.509758, -28.217616], - [153.517015, -28.193591], - [153.535176, -28.191657], - [153.537846, -28.183815], - [153.542877, -28.194353], - [153.55437, -28.192899], - [153.561819, -28.208462], - [153.554756, -28.209336], - [153.559427, -28.2169], - [153.541705, -28.234473], - [153.552827, -28.234553], - [153.53941, -28.236277], - [153.541272, -28.243385], - [153.554731, -28.236006], - [153.5652, -28.204997], - [153.549948, -28.17138], - [153.556465, -28.170067], - [153.571431, -28.199438], - [153.568614, -28.238466], - [153.586296, -28.258206], - [153.571396, -28.32713], - [153.580705, -28.362971], - [153.555192, -28.452871], - [153.55335, -28.531179], - [153.568497, -28.589701], - [153.590668, -28.624827], - [153.618008, -28.642001], - [153.638727, -28.636102], - [153.617653, -28.678142], - [153.618866, -28.722255], - [153.595813, -28.775189], - [153.608834, -28.843251], - [153.592039, -28.875592], - [153.577043, -28.868449], - [153.574869, -28.840165], - [153.563443, -28.847083], - [153.571057, -28.849291], - [153.576789, -28.869838], - [153.526945, -28.872891], - [153.570746, -28.88507], - [153.572912, -28.876931], - [153.590086, -28.877612], - [153.539511, -28.923112], - [153.463999, -29.018714], - [153.4328, -29.10083], - [153.435275, -29.113103], - [153.451395, -29.118875], - [153.448568, -29.133389], - [153.456659, -29.140191], - [153.400519, -29.201378], - [153.344322, -29.296579], - [153.344441, -29.344446], - [153.353928, -29.357709], - [153.362896, -29.355398], - [153.376682, -29.365596], - [153.363282, -29.421572], - [153.372817, -29.425122], - [153.363994, -29.430211], - [153.372774, -29.440342], - [153.35837, -29.466503], - [153.368842, -29.484052], - [153.358735, -29.496081], - [153.362578, -29.5254], - [153.349468, -29.539915], - [153.332441, -29.586645], - [153.334558, -29.604816], - [153.342784, -29.608281], - [153.326894, -29.632866], - [153.32059, -29.661397], - [153.333974, -29.674551], - [153.305161, -29.715407], - [153.291992, -29.753621], - [153.303944, -29.774537], - [153.288043, -29.798317], - [153.294417, -29.82508], - [153.282471, -29.83383], - [153.267648, -29.86525], - [153.267554, -29.885679], - [153.276875, -29.893112], - [153.272771, -29.916864], - [153.261147, -29.930649], - [153.260047, -29.952097], - [153.233366, -29.979753], - [153.197084, -30.040577], - [153.19634, -30.054904], - [153.206343, -30.058314], - [153.207861, -30.068526], - [153.199641, -30.103902], - [153.213714, -30.109724], - [153.199564, -30.141272], - [153.206858, -30.156386], - [153.166987, -30.198029], - [153.140185, -30.255886], - [153.147838, -30.277603], - [153.139825, -30.299669], - [153.154572, -30.305148], - [153.142501, -30.303102], - [153.140125, -30.309882], - [153.152929, -30.309492], - [153.136083, -30.315935], - [153.113451, -30.340617], - [153.104516, -30.376997], - [153.075807, -30.410593], - [153.076319, -30.43189], - [153.045956, -30.467008], - [153.031711, -30.499017], - [153.025013, -30.533623], - [153.02959, -30.546964], - [153.017103, -30.564111], - [153.010084, -30.607866], - [153.020362, -30.647583], - [152.997491, -30.678914], - [152.988454, -30.731967], - [153.001661, -30.748638], - [152.997264, -30.786115], - [153.013744, -30.860782], - [153.037184, -30.882482], - [153.060289, -30.886687], - [153.069048, -30.881776], - [153.06637, -30.875077], - [153.075491, -30.877935], - [153.088672, -30.911293], - [153.09054, -30.922062], - [153.056592, -30.959548], - [153.038958, -31.003181], - [153.041007, -31.041426], - [153.054389, -31.053706], - [153.065814, -31.046969], - [153.064737, -31.056619], - [153.053565, -31.069897], - [153.05528, -31.079436], - [153.006635, -31.123408], - [152.97736, -31.171432], - [152.97639, -31.184027], - [152.984243, -31.186655], - [152.966471, -31.212969], - [152.960197, -31.242051], - [152.97116, -31.252606], - [152.964537, -31.30634], - [152.976418, -31.314141], - [152.93773, -31.360849], - [152.914979, -31.409392], - [152.937829, -31.47576], - [152.876935, -31.529605], - [152.845329, -31.572928], - [152.840123, -31.58938], - [152.848288, -31.601575], - [152.833993, -31.632314], - [152.849523, -31.641347], - [152.804917, -31.68186], - [152.792759, -31.710722], - [152.80563, -31.73032], - [152.76395, -31.768836], - [152.736092, -31.811104], - [152.73665, -31.836518], - [152.754557, -31.845077], - [152.690985, -31.877659], - [152.608794, -31.94714], - [152.565872, -32.004019], - [152.569525, -32.009961], - [152.547924, -32.028103], - [152.541556, -32.046409], - [152.54789, -32.073587], - [152.512818, -32.116957], - [152.50565, -32.14506], - [152.508886, -32.172395], - [152.536228, -32.182798], - [152.543249, -32.201587], - [152.570872, -32.215633], - [152.566357, -32.229514], - [152.536688, -32.259276], - [152.523695, -32.29441], - [152.523441, -32.311726], - [152.53638, -32.328984], - [152.55169, -32.33461], - [152.534505, -32.35565], - [152.533712, -32.37977], - [152.522735, -32.388081], - [152.516316, -32.408505], - [152.519552, -32.428291], - [152.537527, -32.433604], - [152.539907, -32.443464], - [152.418854, -32.482549], - [152.33563, -32.527079], - [152.302933, -32.559295], - [152.285026, -32.594775], - [152.231255, -32.615845], - [152.195678, -32.647922], - [152.186671, -32.685393], - [152.191883, -32.694347], - [152.208707, -32.695583], - [152.205043, -32.70122], - [152.191753, -32.70048], - [152.173103, -32.67834], - [152.145532, -32.67743], - [152.12949, -32.685677], - [152.127617, -32.676114], - [152.137652, -32.67098], - [152.121898, -32.657751], - [152.114385, -32.681105], - [152.068787, -32.689564], - [152.050357, -32.676504], - [152.061384, -32.669615], - [152.061467, -32.65], - [152.04379, -32.660358], - [152.042612, -32.679646], - [152.029803, -32.664021], - [151.994013, -32.668876], - [151.99168, -32.659583], - [151.984275, -32.664883], - [151.968364, -32.654379], - [151.963409, -32.671408], - [151.957776, -32.666832], - [151.956364, -32.674973], - [151.944606, -32.676772], - [151.954872, -32.677334], - [151.960137, -32.697447], - [151.977628, -32.687684], - [151.978206, -32.705855], - [151.969262, -32.714807], - [151.944489, -32.71705], - [151.946428, -32.733945], - [151.936455, -32.736885], - [151.987309, -32.725755], - [151.988084, -32.719213], - [151.997967, -32.727457], - [152.021508, -32.72038], - [152.048507, -32.728703], - [152.058568, -32.716154], - [152.059998, -32.735879], - [152.069545, -32.735976], - [152.071941, -32.726715], - [152.059497, -32.710303], - [152.063803, -32.698469], - [152.091073, -32.728176], - [152.102071, -32.726871], - [152.103643, -32.716227], - [152.145766, -32.719509], - [152.161846, -32.709604], - [152.17616, -32.719839], - [152.187501, -32.711553], - [152.18685, -32.741132], - [152.170981, -32.744437], - [152.172615, -32.761656], - [152.121561, -32.769243], - [152.116236, -32.777911], - [152.123304, -32.784799], - [152.111698, -32.787974], - [152.115602, -32.792876], - [152.053106, -32.78531], - [151.885443, -32.838213], - [151.801417, -32.88492], - [151.786574, -32.919935], - [151.777611, -32.911426], - [151.793943, -32.882876], - [151.783797, -32.884869], - [151.774851, -32.902307], - [151.774609, -32.889578], - [151.733832, -32.877639], - [151.768029, -32.894878], - [151.776972, -32.92356], - [151.770255, -32.916329], - [151.764245, -32.922065], - [151.761465, -32.90766], - [151.763509, -32.924458], - [151.785514, -32.925525], - [151.803968, -32.915741], - [151.737709, -32.963353], - [151.726931, -32.978167], - [151.728705, -33.01075], - [151.668856, -33.051945], - [151.658193, -33.070693], - [151.66112, -33.08383], - [151.640292, -33.084991], - [151.641187, -33.064539], - [151.649545, -33.062843], - [151.638894, -33.055128], - [151.651868, -33.053377], - [151.657496, -33.036095], - [151.633459, -33.028544], - [151.628274, -33.015497], - [151.640583, -33.003987], - [151.629554, -32.993874], - [151.64325, -32.984246], - [151.643898, -32.974847], - [151.616572, -32.962553], - [151.60807, -32.966099], - [151.62106, -32.976261], - [151.616745, -33.005668], - [151.589056, -32.989255], - [151.584081, -32.996124], - [151.59257, -32.998229], - [151.589852, -33.004481], - [151.597706, -32.997245], - [151.595758, -33.010552], - [151.619654, -33.047954], - [151.613787, -33.050514], - [151.593563, -33.026737], - [151.577324, -33.032883], - [151.600043, -33.04114], - [151.594665, -33.043292], - [151.600064, -33.059344], - [151.585937, -33.047209], - [151.581997, -33.056642], - [151.58852, -33.059987], - [151.580757, -33.068462], - [151.611159, -33.072148], - [151.613787, -33.082133], - [151.607169, -33.085181], - [151.594108, -33.071742], - [151.571749, -33.075132], - [151.549206, -33.062517], - [151.550349, -33.073672], - [151.541549, -33.072959], - [151.525678, -33.090967], - [151.512457, -33.090022], - [151.509516, -33.102519], - [151.537841, -33.104583], - [151.548437, -33.088561], - [151.565141, -33.100586], - [151.568733, -33.114279], - [151.550304, -33.114624], - [151.552476, -33.120858], - [151.538059, -33.114729], - [151.541834, -33.126061], - [151.525946, -33.130739], - [151.522107, -33.124081], - [151.509848, -33.137719], - [151.527274, -33.139059], - [151.522881, -33.147104], - [151.530182, -33.160823], - [151.54118, -33.143798], - [151.544865, -33.15742], - [151.56787, -33.175275], - [151.571936, -33.154804], - [151.552814, -33.145742], - [151.557224, -33.131612], - [151.566724, -33.13629], - [151.583901, -33.122911], - [151.58141, -33.102652], - [151.590516, -33.12014], - [151.584364, -33.126462], - [151.591254, -33.131842], - [151.587921, -33.14991], - [151.597195, -33.161559], - [151.603313, -33.131872], - [151.614959, -33.124545], - [151.617358, -33.100809], - [151.627493, -33.093656], - [151.636071, -33.069334], - [151.640623, -33.095894], - [151.654694, -33.093899], - [151.64299, -33.095275], - [151.642009, -33.08724], - [151.657848, -33.092206], - [151.665749, -33.086915], - [151.64704, -33.111626], - [151.65351, -33.120664], - [151.647489, -33.121138], - [151.643037, -33.140524], - [151.630001, -33.154232], - [151.638668, -33.175835], - [151.622819, -33.188011], - [151.625142, -33.19803], - [151.599754, -33.210699], - [151.566629, -33.244307], - [151.563591, -33.271727], - [151.579025, -33.282227], - [151.525332, -33.314954], - [151.503129, -33.343895], - [151.502808, -33.326908], - [151.545637, -33.277746], - [151.537339, -33.266962], - [151.520419, -33.262676], - [151.539206, -33.261537], - [151.553239, -33.244192], - [151.557901, -33.252009], - [151.562175, -33.237346], - [151.547632, -33.233061], - [151.534677, -33.239427], - [151.527336, -33.220286], - [151.508584, -33.222659], - [151.519037, -33.261667], - [151.494578, -33.263796], - [151.488073, -33.280616], - [151.475091, -33.282436], - [151.465006, -33.301936], - [151.45251, -33.298624], - [151.441615, -33.30706], - [151.449002, -33.319884], - [151.468581, -33.328497], - [151.441795, -33.329918], - [151.439052, -33.34166], - [151.448791, -33.354628], - [151.474091, -33.365857], - [151.494014, -33.336508], - [151.504234, -33.345265], - [151.504443, -33.362511], - [151.487366, -33.374543], - [151.485003, -33.398629], - [151.444997, -33.435403], - [151.452589, -33.451147], - [151.435481, -33.468021], - [151.446881, -33.486472], - [151.427905, -33.494641], - [151.417169, -33.523284], - [151.364297, -33.530711], - [151.345402, -33.547164], - [151.335924, -33.522342], - [151.346747, -33.527254], - [151.3634, -33.520863], - [151.347599, -33.506378], - [151.350263, -33.515864], - [151.336359, -33.515189], - [151.312461, -33.530086], - [151.30974, -33.554623], - [151.273893, -33.550947], - [151.258662, -33.570636], - [151.245917, -33.555585], - [151.255013, -33.535301], - [151.236771, -33.528081], - [151.237267, -33.510917], - [151.247042, -33.508309], - [151.245737, -33.499693], - [151.259087, -33.499089], - [151.265719, -33.484947], - [151.231401, -33.507395], - [151.227008, -33.530454], - [151.226676, -33.521859], - [151.210233, -33.521154], - [151.197561, -33.495174], - [151.206701, -33.48124], - [151.212717, -33.486223], - [151.214263, -33.476384], - [151.237683, -33.47559], - [151.237478, -33.453752], - [151.229342, -33.456264], - [151.232011, -33.473148], - [151.214715, -33.470455], - [151.191913, -33.488793], - [151.193563, -33.512028], - [151.204685, -33.520701], - [151.199445, -33.536131], - [151.181942, -33.50083], - [151.170437, -33.502055], - [151.164381, -33.515279], - [151.159804, -33.511002], - [151.162607, -33.493346], - [151.153503, -33.486741], - [151.162184, -33.470601], - [151.172142, -33.469454], - [151.153539, -33.455007], - [151.172882, -33.43806], - [151.166434, -33.426707], - [151.145703, -33.447874], - [151.148157, -33.461168], - [151.138847, -33.469669], - [151.114844, -33.463841], - [151.09705, -33.480337], - [151.079385, -33.445388], - [151.07276, -33.449154], - [151.074647, -33.459803], - [151.069064, -33.456876], - [151.076489, -33.461394], - [151.079761, -33.448845], - [151.085611, -33.475512], - [151.102507, -33.484221], - [151.122384, -33.466638], - [151.138404, -33.475394], - [151.15553, -33.467097], - [151.143281, -33.490999], - [151.131294, -33.491264], - [151.155275, -33.49895], - [151.153931, -33.523913], - [151.140763, -33.524378], - [151.133765, -33.513375], - [151.125504, -33.517763], - [151.121259, -33.510594], - [151.130175, -33.50509], - [151.111449, -33.507042], - [151.121711, -33.521528], - [151.131303, -33.519283], - [151.12637, -33.531096], - [151.135789, -33.522252], - [151.14335, -33.529813], - [151.137583, -33.541965], - [151.127088, -33.537627], - [151.116951, -33.546207], - [151.128267, -33.541631], - [151.138763, -33.550485], - [151.144903, -33.542073], - [151.15146, -33.56195], - [151.130975, -33.567866], - [151.131477, -33.578359], - [151.120054, -33.586003], - [151.102778, -33.587778], - [151.116067, -33.587465], - [151.120785, -33.599548], - [151.125734, -33.600316], - [151.118642, -33.590379], - [151.12343, -33.585845], - [151.144343, -33.587085], - [151.133713, -33.57096], - [151.15015, -33.568554], - [151.162249, -33.575775], - [151.151753, -33.551425], - [151.169581, -33.55851], - [151.148863, -33.536804], - [151.170059, -33.538633], - [151.164184, -33.529131], - [151.175085, -33.514246], - [151.186148, -33.536773], - [151.19994, -33.541837], - [151.19853, -33.549974], - [151.225898, -33.54703], - [151.228985, -33.541529], - [151.202188, -33.544055], - [151.231422, -33.538989], - [151.221956, -33.569449], - [151.211241, -33.567209], - [151.212894, -33.572681], - [151.224131, -33.574986], - [151.231023, -33.561429], - [151.24708, -33.579071], - [151.232759, -33.594043], - [151.186312, -33.592116], - [151.209258, -33.594065], - [151.213153, -33.607756], - [151.163926, -33.625865], - [151.170368, -33.629078], - [151.158467, -33.641126], - [151.162978, -33.646504], - [151.149449, -33.655463], - [151.158845, -33.652388], - [151.15969, -33.660497], - [151.173247, -33.626361], - [151.218503, -33.609099], - [151.228875, -33.618176], - [151.219376, -33.599658], - [151.236764, -33.602641], - [151.24354, -33.594445], - [151.256728, -33.605445], - [151.251948, -33.598074], - [151.262623, -33.597718], - [151.250085, -33.588022], - [151.273011, -33.588959], - [151.283609, -33.572979], - [151.292976, -33.571875], - [151.310837, -33.579569], - [151.292518, -33.605329], - [151.304428, -33.603191], - [151.302857, -33.620541], - [151.28291, -33.62185], - [151.290538, -33.628413], - [151.270419, -33.631536], - [151.282663, -33.636655], - [151.269812, -33.656249], - [151.284916, -33.644351], - [151.304603, -33.660531], - [151.301046, -33.667283], - [151.312041, -33.666731], - [151.301965, -33.651961], - [151.309411, -33.639235], - [151.30467, -33.635343], - [151.314897, -33.631082], - [151.316085, -33.614179], - [151.332148, -33.623364], - [151.315979, -33.601569], - [151.322838, -33.579441], - [151.335315, -33.582332], - [151.325275, -33.597025], - [151.343021, -33.624508], - [151.309786, -33.68635], - [151.315268, -33.696384], - [151.310084, -33.703966], - [151.30777, -33.703902], - [151.300198, -33.727048], - [151.317714, -33.74198], - [151.291375, -33.746666], - [151.303191, -33.746821], - [151.297447, -33.753568], - [151.302525, -33.768177], - [151.293171, -33.773222], - [151.295954, -33.781772], - [151.287866, -33.791943], - [151.307405, -33.807083], - [151.301448, -33.823391], - [151.285578, -33.8189], - [151.291085, -33.80805], - [151.282571, -33.809236], - [151.281754, -33.798739], - [151.265818, -33.798401], - [151.27512, -33.810006], - [151.261106, -33.817937], - [151.250481, -33.800292], - [151.235145, -33.803407], - [151.230781, -33.77272], - [151.224654, -33.783754], - [151.204366, -33.772481], - [151.213378, -33.784277], - [151.232505, -33.787491], - [151.214736, -33.789889], - [151.222836, -33.79426], - [151.217667, -33.797279], - [151.230871, -33.795676], - [151.230544, -33.802375], - [151.217526, -33.805385], - [151.230558, -33.805497], - [151.23213, -33.813652], - [151.219385, -33.818789], - [151.238973, -33.816961], - [151.235118, -33.811573], - [151.245898, -33.803343], - [151.252506, -33.827195], - [151.268876, -33.827056], - [151.254319, -33.844043], - [151.246155, -33.842673], - [151.246701, -33.853448], - [151.232521, -33.836312], - [151.232899, -33.848749], - [151.224781, -33.839354], - [151.224854, -33.84664], - [151.215204, -33.841088], - [151.218865, -33.852803], - [151.207956, -33.844141], - [151.203597, -33.850528], - [151.199094, -33.841172], - [151.192949, -33.847731], - [151.189009, -33.833486], - [151.187598, -33.843118], - [151.181118, -33.842257], - [151.181633, -33.82952], - [151.173094, -33.828188], - [151.16898, -33.836077], - [151.152033, -33.821841], - [151.145874, -33.828989], - [151.14555, -33.824079] - ], - [ - [151.145228, -33.819212], - [151.144157, -33.802992], - [151.143724, -33.816767], - [151.136883, -33.815139], - [151.145228, -33.819212] - ], - [ - [151.306067, -33.703855], - [151.297748, -33.703626], - [151.293722, -33.714532], - [151.28119, -33.708689], - [151.269693, -33.714981], - [151.274725, -33.723664], - [151.282554, -33.713518], - [151.293206, -33.721428], - [151.299954, -33.704976], - [151.306067, -33.703855] - ], - [ - [151.696572, -32.844091], - [151.696455, -32.832942], - [151.726219, -32.838129], - [151.72816, -32.84691], - [151.746513, -32.853629], - [151.773765, -32.856276], - [151.783752, -32.884307], - [151.794071, -32.880601], - [151.792438, -32.856892], - [151.818614, -32.830965], - [151.808691, -32.820564], - [151.783973, -32.820293], - [151.770283, -32.828355], - [151.768297, -32.852278], - [151.756742, -32.852628], - [151.727293, -32.835469], - [151.685247, -32.824087], - [151.696572, -32.844091] - ], - [ - [151.700776, -32.851517], - [151.711837, -32.871054], - [151.732806, -32.879605], - [151.700776, -32.851517] - ], - [ - [151.585876, -33.207801], - [151.577003, -33.196558], - [151.557077, -33.197317], - [151.563648, -33.207493], - [151.554302, -33.227804], - [151.568557, -33.232948], - [151.585876, -33.207801] - ], - [ - [151.455178, -33.417566], - [151.44399, -33.423311], - [151.448047, -33.429788], - [151.455178, -33.417566] - ], - [ - [151.435641, -33.456501], - [151.422558, -33.460044], - [151.429533, -33.46304], - [151.425744, -33.471373], - [151.435641, -33.456501] - ], - [ - [151.382814, -33.471893], - [151.365287, -33.477195], - [151.373431, -33.490622], - [151.352561, -33.488875], - [151.335922, -33.474252], - [151.359859, -33.469491], - [151.353753, -33.459686], - [151.369466, -33.438742], - [151.351264, -33.445212], - [151.345341, -33.44061], - [151.341916, -33.450655], - [151.338695, -33.429917], - [151.318424, -33.431432], - [151.33211, -33.436342], - [151.328932, -33.45156], - [151.31861, -33.451542], - [151.313467, -33.460629], - [151.324561, -33.483225], - [151.336551, -33.484434], - [151.333613, -33.502023], - [151.344635, -33.507517], - [151.352265, -33.501627], - [151.341328, -33.489082], - [151.352491, -33.501436], - [151.358572, -33.48978], - [151.36991, -33.493748], - [151.366009, -33.50247], - [151.377349, -33.49962], - [151.382048, -33.490067], - [151.372977, -33.486403], - [151.382814, -33.471893] - ], - [ - [151.316571, -33.486321], - [151.323983, -33.482929], - [151.307118, -33.467896], - [151.304525, -33.481579], - [151.316571, -33.486321] - ], - [ - [151.033594, -33.984756], - [151.03281, -33.992545], - [151.066072, -33.991887], - [151.039851, -34.005495], - [151.048829, -34.02058], - [151.051443, -34.016762], - [151.046488, -34.00761], - [151.058809, -34.008153], - [151.059507, -33.998177], - [151.069702, -33.995968], - [151.072161, -34.00609], - [151.075292, -33.997841], - [151.08941, -33.997472], - [151.077713, -34.01258], - [151.090471, -34.011887], - [151.094428, -33.997849], - [151.097649, -34.005821], - [151.109528, -34.006689], - [151.11551, -33.997327], - [151.102494, -34.000906], - [151.103798, -33.989403], - [151.086437, -33.990453], - [151.085403, -33.992662], - [151.071663, -33.994262], - [151.074759, -33.984036], - [151.054461, -33.985123], - [151.061823, -33.975238], - [151.049359, -33.980172], - [151.052862, -33.991004], - [151.03653, -33.990931], - [151.033594, -33.984756] - ], - [ - [151.033626, -33.984447], - [151.046513, -33.970533], - [151.044672, -33.947705], - [151.04434, -33.970126], - [151.024802, -33.977307], - [151.022601, -33.964096], - [151.015331, -33.982597], - [151.034336, -33.977395], - [151.033626, -33.984447] - ], - [ - [149.399284, -35.319175], - [149.39479, -35.303157], - [149.361948, -35.308998], - [149.341384, -35.286648], - [149.322394, -35.286708], - [149.315286, -35.276286], - [149.272048, -35.273644], - [149.273132, -35.259287], - [149.234884, -35.242822], - [149.24679, -35.229217], - [149.238597, -35.222127], - [149.214063, -35.219507], - [149.204883, -35.229549], - [149.208568, -35.211501], - [149.189701, -35.203308], - [149.197037, -35.185499], - [149.183629, -35.175618], - [149.189097, -35.165677], - [149.167696, -35.159881], - [149.164312, -35.142046], - [149.146775, -35.144856], - [149.149637, -35.138669], - [149.1386, -35.135257], - [149.138819, -35.128466], - [149.120902, -35.124517], - [148.807854, -35.309647], - [148.793247, -35.339156], - [148.808702, -35.382373], - [148.795719, -35.39292], - [148.796119, -35.406549], - [148.785764, -35.408748], - [148.788868, -35.426382], - [148.767058, -35.465405], - [148.774354, -35.486003], - [148.762675, -35.495505], - [148.772364, -35.529329], - [148.769231, -35.544096], - [148.778231, -35.558852], - [148.773039, -35.568157], - [148.788758, -35.588179], - [148.768473, -35.603186], - [148.783462, -35.628342], - [148.767495, -35.647323], - [148.798434, -35.666492], - [148.791182, -35.703449], - [148.822423, -35.7209], - [148.835715, -35.741884], - [148.856132, -35.753518], - [148.855652, -35.760874], - [148.872491, -35.721422], - [148.877693, -35.714936], - [148.886633, -35.719136], - [148.894087, -35.751288], - [148.903348, -35.757798], - [148.894887, -35.771654], - [148.897776, -35.79465], - [148.886623, -35.810063], - [148.907065, -35.829563], - [148.909367, -35.853065], - [148.959133, -35.895456], - [149.012198, -35.899697], - [149.048811, -35.92041], - [149.064408, -35.874932], - [149.095682, -35.845716], - [149.093517, -35.824221], - [149.101481, -35.803698], - [149.090716, -35.7656], - [149.109483, -35.69664], - [149.095379, -35.679285], - [149.097495, -35.647313], - [149.087612, -35.639697], - [149.078043, -35.586127], - [149.084514, -35.580594], - [149.14251, -35.59257], - [149.131376, -35.554173], - [149.151279, -35.506926], - [149.13555, -35.454422], - [149.155134, -35.436628], - [149.139052, -35.432543], - [149.146586, -35.414836], - [149.207546, -35.345305], - [149.254815, -35.330079], - [149.336502, -35.339914], - [149.352134, -35.351317], - [149.399284, -35.319175] - ] - ], - [ - [ - [152.328627, -32.617406], - [152.315824, -32.617576], - [152.319219, -32.627907], - [152.312026, -32.626782], - [152.305258, -32.607247], - [152.328627, -32.617406] - ] - ], - [ - [ - [152.2287, -32.687163], - [152.223921, -32.692407], - [152.222668, -32.684061], - [152.2287, -32.687163] - ] - ], - [ - [ - [152.203513, -32.747611], - [152.184939, -32.749721], - [152.192662, -32.739777], - [152.203513, -32.747611] - ] - ], - [ - [ - [151.982089, -32.670746], - [151.979795, -32.677524], - [151.973989, -32.665379], - [151.982089, -32.670746] - ] - ], - [ - [ - [151.975014, -32.679871], - [151.965513, -32.674177], - [151.969517, -32.667628], - [151.975014, -32.679871] - ] - ], - [ - [ - [150.421112, -35.531174], - [150.411333, -35.530274], - [150.42057, -35.525966], - [150.421112, -35.531174] - ] - ], - [ - [ - [150.230948, -36.250533], - [150.22909, -36.258943], - [150.222919, -36.25637], - [150.224006, -36.243903], - [150.230948, -36.250533] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 1, - "properties": { - "name": "Victoria", - "ISOCODE": "AU-VIC" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [145.131889, -38.390694], - [145.129935, -38.390452], - [145.096149, -38.402507], - [145.076384, -38.425446], - [145.050185, -38.430022], - [145.025135, -38.475332], - [145.032399, -38.486451], - [145.010999, -38.479662], - [144.976631, -38.490335], - [144.948813, -38.488548], - [144.93741, -38.497082], - [144.918641, -38.497017], - [144.911152, -38.489253], - [144.887256, -38.498852], - [144.886653, -38.477217], - [144.838574, -38.430328], - [144.741749, -38.353947], - [144.651908, -38.304077], - [144.680224, -38.305219], - [144.734143, -38.32248], - [144.766733, -38.356385], - [144.814684, -38.368549], - [144.850929, -38.368747], - [144.923174, -38.349256], - [144.988387, -38.316711], - [144.994327, -38.304469], - [144.98283, -38.296413], - [145.02561, -38.253352], - [145.03242, -38.212673], - [145.044952, -38.213405], - [145.061688, -38.201202], - [145.08755, -38.164238], - [145.118468, -38.145695], - [145.124504, -38.108031], - [145.119793, -38.074099], - [145.125612, -38.071656], - [145.119588, -38.073219], - [145.099517, -38.026878], - [145.062214, -37.990841], - [145.051408, -37.986726], - [145.037916, -37.996447], - [145.017945, -37.981804], - [144.985526, -37.926238], - [144.985912, -37.893195], - [144.970308, -37.860787], - [144.935592, -37.842548], - [144.929856, -37.847323], - [144.925849, -37.839845], - [144.913404, -37.841967], - [144.912499, -37.849458], - [144.905739, -37.840155], - [144.907213, -37.849526], - [144.897148, -37.842552], - [144.905593, -37.851732], - [144.895277, -37.848421], - [144.903624, -37.861466], - [144.915524, -37.865543], - [144.904253, -37.872525], - [144.878621, -37.868083], - [144.868582, -37.858712], - [144.81439, -37.875144], - [144.79795, -37.905305], - [144.79917, -37.92317], - [144.735586, -37.943135], - [144.651639, -38.001638], - [144.592488, -38.004581], - [144.558663, -38.037541], - [144.515692, -38.045604], - [144.506846, -38.091508], - [144.487431, -38.07828], - [144.470912, -38.083542], - [144.464016, -38.076715], - [144.444841, -38.0918], - [144.397943, -38.073816], - [144.38069, -38.085264], - [144.381575, -38.097352], - [144.361606, -38.105136], - [144.366582, -38.109905], - [144.355617, -38.137201], - [144.365166, -38.144831], - [144.3848, -38.143255], - [144.40264, -38.155458], - [144.416599, -38.155329], - [144.425598, -38.123813], - [144.442823, -38.149522], - [144.478136, -38.164482], - [144.557972, -38.154858], - [144.631382, -38.107385], - [144.692223, -38.119967], - [144.7202, -38.146631], - [144.71963, -38.173256], - [144.706371, -38.21022], - [144.695743, -38.21976], - [144.703393, -38.201527], - [144.686582, -38.197462], - [144.623171, -38.251465], - [144.637022, -38.2661], - [144.632984, -38.269788], - [144.672246, -38.265268], - [144.659776, -38.273912], - [144.620173, -38.275913], - [144.613879, -38.292253], - [144.538709, -38.271631], - [144.508432, -38.274791], - [144.494878, -38.282627], - [144.499893, -38.29049], - [144.428618, -38.281629], - [144.332286, -38.323258], - [144.327444, -38.340177], - [144.30348, -38.348258], - [144.27951, -38.372347], - [144.256633, -38.382747], - [144.254013, -38.395472], - [144.200022, -38.406675], - [144.180587, -38.418909], - [144.184016, -38.428699], - [144.133818, -38.434529], - [144.104758, -38.469255], - [144.036497, -38.475775], - [143.979728, -38.532276], - [143.977136, -38.542552], - [143.986836, -38.548451], - [143.974348, -38.565237], - [143.923066, -38.593108], - [143.910271, -38.623094], - [143.870284, -38.655271], - [143.866226, -38.671668], - [143.842147, -38.679003], - [143.837008, -38.692793], - [143.756722, -38.706707], - [143.681545, -38.737487], - [143.670413, -38.752384], - [143.679941, -38.760838], - [143.666695, -38.768315], - [143.666012, -38.779379], - [143.646427, -38.791286], - [143.616031, -38.795509], - [143.554064, -38.855695], - [143.510919, -38.85758], - [143.428687, -38.783354], - [143.403133, -38.780987], - [143.356589, -38.75395], - [143.327535, -38.757208], - [143.302169, -38.750179], - [143.267387, -38.763093], - [143.259696, -38.772964], - [143.232964, -38.766436], - [143.080833, -38.651018], - [143.05499, -38.64787], - [143.05503, -38.641398], - [143.015378, -38.6245], - [142.947884, -38.619768], - [142.937026, -38.627336], - [142.90065, -38.610166], - [142.857631, -38.605289], - [142.852333, -38.591827], - [142.787658, -38.569124], - [142.684028, -38.495133], - [142.563319, -38.422004], - [142.492181, -38.393871], - [142.478862, -38.395027], - [142.480598, -38.401392], - [142.471653, -38.40431], - [142.372518, -38.349483], - [142.309371, -38.356322], - [142.28596, -38.366494], - [142.261528, -38.364586], - [142.244323, -38.378032], - [142.243958, -38.387985], - [142.255037, -38.39119], - [142.244905, -38.396468], - [142.1458, -38.391487], - [142.00267, -38.310335], - [141.929505, -38.278215], - [141.88151, -38.265811], - [141.742014, -38.253109], - [141.679524, -38.267864], - [141.601621, -38.313185], - [141.607931, -38.342272], - [141.623594, -38.341701], - [141.625059, -38.361992], - [141.650257, -38.393048], - [141.627968, -38.393458], - [141.626417, -38.406344], - [141.614846, -38.39302], - [141.573078, -38.389705], - [141.557894, -38.405684], - [141.555861, -38.42627], - [141.542787, -38.432968], - [141.521271, -38.41471], - [141.528466, -38.404854], - [141.519235, -38.390029], - [141.46102, -38.362096], - [141.434371, -38.360306], - [141.407068, -38.369077], - [141.413232, -38.396287], - [141.374319, -38.386757], - [141.364091, -38.377011], - [141.365531, -38.365317], - [141.397693, -38.338554], - [141.392104, -38.319729], - [141.35761, -38.274759], - [141.29528, -38.220641], - [141.227776, -38.170649], - [141.150129, -38.126841], - [141.028512, -38.071588], - [140.965735, -38.055989], - [140.973872, -37.462093], - [140.963103, -35.748535], - [140.963616, -33.980648], - [140.969273, -33.997216], - [140.980575, -33.999996], - [140.97532, -34.009321], - [140.986747, -34.010237], - [140.980453, -34.016013], - [140.988431, -34.030777], - [140.998139, -34.019698], - [141.012311, -34.024655], - [141.003776, -34.027604], - [141.00187, -34.039103], - [141.023262, -34.059699], - [141.034336, -34.035735], - [141.043439, -34.042704], - [141.042463, -34.061101], - [141.065601, -34.050062], - [141.071951, -34.06291], - [141.08491, -34.062288], - [141.089218, -34.076696], - [141.097587, -34.070035], - [141.087257, -34.057173], - [141.094238, -34.050656], - [141.120338, -34.064866], - [141.137307, -34.057561], - [141.142973, -34.063534], - [141.153111, -34.054521], - [141.153443, -34.064189], - [141.143847, -34.067799], - [141.15318, -34.068915], - [141.15367, -34.082118], - [141.165854, -34.083212], - [141.174668, -34.073334], - [141.18623, -34.091977], - [141.194437, -34.087608], - [141.187449, -34.079294], - [141.205907, -34.061723], - [141.222119, -34.061677], - [141.228468, -34.073651], - [141.241808, -34.061315], - [141.247217, -34.073209], - [141.242543, -34.087341], - [141.259566, -34.078134], - [141.283701, -34.103874], - [141.30079, -34.113718], - [141.317451, -34.112413], - [141.31353, -34.12486], - [141.325922, -34.126866], - [141.324937, -34.138782], - [141.346407, -34.124348], - [141.348504, -34.112311], - [141.358972, -34.110723], - [141.368758, -34.127115], - [141.369693, -34.120204], - [141.381587, -34.122143], - [141.388118, -34.13473], - [141.408248, -34.127856], - [141.407404, -34.1464], - [141.433901, -34.145904], - [141.432802, -34.15994], - [141.444539, -34.168015], - [141.450643, -34.161004], - [141.482801, -34.163425], - [141.494967, -34.154611], - [141.518744, -34.18091], - [141.506669, -34.190619], - [141.518577, -34.203159], - [141.506149, -34.210498], - [141.510071, -34.216479], - [141.533863, -34.210697], - [141.533546, -34.191434], - [141.547738, -34.200841], - [141.560468, -34.1909], - [141.583921, -34.198816], - [141.589743, -34.186893], - [141.603285, -34.191228], - [141.604947, -34.183933], - [141.589383, -34.177353], - [141.602959, -34.162254], - [141.584484, -34.151403], - [141.60458, -34.149115], - [141.618538, -34.156287], - [141.611817, -34.139023], - [141.627982, -34.145417], - [141.632653, -34.121484], - [141.67745, -34.101225], - [141.707415, -34.096068], - [141.720288, -34.114589], - [141.729935, -34.105442], - [141.729691, -34.090896], - [141.746343, -34.103403], - [141.761836, -34.097537], - [141.752623, -34.106242], - [141.756947, -34.112097], - [141.777897, -34.101774], - [141.776886, -34.116878], - [141.786445, -34.111685], - [141.841383, -34.132452], - [141.850694, -34.124307], - [141.853257, -34.131233], - [141.867763, -34.128652], - [141.876627, -34.137418], - [141.888789, -34.124415], - [141.884744, -34.114984], - [141.900686, -34.111198], - [141.922592, -34.11457], - [141.929784, -34.12579], - [141.925629, -34.134605], - [141.93299, -34.138238], - [141.945003, -34.119477], - [141.970437, -34.136107], - [141.969742, -34.119898], - [141.978235, -34.112616], - [142.02124, -34.125258], - [142.012927, -34.105246], - [142.036848, -34.099306], - [142.042265, -34.105298], - [142.0294, -34.118211], - [142.023852, -34.115054], - [142.027564, -34.122981], - [142.075638, -34.131418], - [142.065345, -34.150611], - [142.077538, -34.157346], - [142.08277, -34.173545], - [142.119613, -34.174909], - [142.120343, -34.156705], - [142.135161, -34.160738], - [142.146367, -34.148972], - [142.165577, -34.152124], - [142.159255, -34.171482], - [142.166529, -34.171395], - [142.166148, -34.182923], - [142.178309, -34.183743], - [142.183613, -34.175672], - [142.19858, -34.183496], - [142.219102, -34.181064], - [142.23313, -34.214407], - [142.235645, -34.204042], - [142.24372, -34.20987], - [142.235334, -34.223748], - [142.24403, -34.232457], - [142.243579, -34.245768], - [142.23229, -34.255036], - [142.248993, -34.265054], - [142.248845, -34.284983], - [142.232465, -34.296749], - [142.235894, -34.306973], - [142.253057, -34.306139], - [142.267332, -34.295284], - [142.273673, -34.304021], - [142.286132, -34.296536], - [142.298886, -34.305703], - [142.284023, -34.31076], - [142.283873, -34.326567], - [142.294386, -34.32345], - [142.330924, -34.339378], - [142.368436, -34.326913], - [142.396798, -34.338095], - [142.384459, -34.346915], - [142.389752, -34.362799], - [142.36353, -34.362158], - [142.378269, -34.36475], - [142.368057, -34.37065], - [142.373927, -34.388151], - [142.363897, -34.38568], - [142.350969, -34.396629], - [142.360695, -34.411768], - [142.351836, -34.422288], - [142.364539, -34.422704], - [142.359897, -34.431933], - [142.367936, -34.435415], - [142.353334, -34.469582], - [142.379267, -34.466704], - [142.384163, -34.478091], - [142.364268, -34.484715], - [142.359576, -34.498779], - [142.369722, -34.503819], - [142.377726, -34.491397], - [142.394681, -34.493484], - [142.374942, -34.515284], - [142.400571, -34.522747], - [142.367695, -34.530446], - [142.378183, -34.532145], - [142.376705, -34.540985], - [142.390211, -34.549119], - [142.405558, -34.541508], - [142.407693, -34.567972], - [142.426062, -34.562348], - [142.430178, -34.574793], - [142.444922, -34.57549], - [142.451622, -34.584265], - [142.458747, -34.581498], - [142.448847, -34.559483], - [142.467968, -34.564295], - [142.472705, -34.576695], - [142.458363, -34.587575], - [142.471264, -34.592677], - [142.461307, -34.606565], - [142.468257, -34.612934], - [142.45916, -34.616289], - [142.463988, -34.626677], - [142.45239, -34.63365], - [142.471077, -34.640135], - [142.483148, -34.635824], - [142.471654, -34.651796], - [142.472932, -34.670098], - [142.497078, -34.669376], - [142.498646, -34.681025], - [142.51417, -34.690931], - [142.49906, -34.700026], - [142.518864, -34.703671], - [142.499673, -34.739364], - [142.511671, -34.740888], - [142.507428, -34.748839], - [142.524612, -34.759584], - [142.533406, -34.753025], - [142.538793, -34.762876], - [142.55014, -34.76266], - [142.556744, -34.775373], - [142.567176, -34.766928], - [142.61578, -34.785261], - [142.632212, -34.784136], - [142.64444, -34.775338], - [142.646391, -34.763394], - [142.620498, -34.757128], - [142.618316, -34.728751], - [142.637334, -34.735043], - [142.661412, -34.721707], - [142.667412, -34.735908], - [142.678954, -34.739202], - [142.686657, -34.733929], - [142.676553, -34.729046], - [142.678646, -34.722345], - [142.698961, -34.725138], - [142.684489, -34.714057], - [142.691089, -34.701397], - [142.678929, -34.680153], - [142.68496, -34.670774], - [142.710436, -34.676748], - [142.709066, -34.662674], - [142.689172, -34.651925], - [142.700788, -34.624516], - [142.708902, -34.621788], - [142.689383, -34.61664], - [142.703692, -34.613953], - [142.700852, -34.598276], - [142.714821, -34.600442], - [142.722756, -34.59236], - [142.743966, -34.60296], - [142.761766, -34.598485], - [142.762411, -34.589287], - [142.745699, -34.586273], - [142.748291, -34.576759], - [142.784068, -34.580393], - [142.769991, -34.568882], - [142.782512, -34.564933], - [142.791428, -34.546389], - [142.810104, -34.560855], - [142.787687, -34.590178], - [142.797919, -34.597628], - [142.810259, -34.589093], - [142.804997, -34.608401], - [142.818507, -34.612357], - [142.823118, -34.600251], - [142.825038, -34.60878], - [142.83824, -34.613044], - [142.840679, -34.625752], - [142.852466, -34.619195], - [142.868177, -34.627306], - [142.855209, -34.639522], - [142.871867, -34.650292], - [142.860551, -34.665162], - [142.872151, -34.664119], - [142.875881, -34.674859], - [142.886457, -34.672085], - [142.886815, -34.679808], - [142.900176, -34.671464], - [142.893269, -34.665679], - [142.901526, -34.654958], - [142.923844, -34.647856], - [142.922267, -34.656482], - [142.932606, -34.655515], - [142.948867, -34.669674], - [142.959264, -34.664982], - [142.972708, -34.695207], - [142.982428, -34.68274], - [142.975282, -34.670861], - [142.989313, -34.662579], - [142.994573, -34.673872], - [143.017281, -34.67366], - [143.010179, -34.693658], - [143.032502, -34.682928], - [143.029424, -34.691851], - [143.039468, -34.702611], - [143.040422, -34.685888], - [143.054822, -34.698855], - [143.070763, -34.67838], - [143.076222, -34.695958], - [143.092828, -34.701273], - [143.112525, -34.680819], - [143.121272, -34.687401], - [143.111605, -34.687127], - [143.107243, -34.701466], - [143.127791, -34.692661], - [143.117841, -34.703076], - [143.133463, -34.700577], - [143.1474, -34.714757], - [143.161689, -34.697916], - [143.16536, -34.718136], - [143.173197, -34.719709], - [143.180987, -34.709482], - [143.179282, -34.717329], - [143.199179, -34.717034], - [143.200006, -34.733418], - [143.218847, -34.729471], - [143.213847, -34.738496], - [143.224384, -34.758733], - [143.228775, -34.747789], - [143.24066, -34.74546], - [143.248933, -34.757853], - [143.265285, -34.748558], - [143.274016, -34.752685], - [143.25213, -34.772803], - [143.273005, -34.776412], - [143.276736, -34.79226], - [143.286873, -34.794985], - [143.284327, -34.785245], - [143.294285, -34.790822], - [143.308844, -34.779939], - [143.318269, -34.790842], - [143.347876, -34.791635], - [143.347559, -34.807302], - [143.359559, -34.816899], - [143.341191, -34.846309], - [143.354957, -34.846039], - [143.34521, -34.853463], - [143.352563, -34.858235], - [143.338404, -34.870312], - [143.341732, -34.88112], - [143.321389, -34.88846], - [143.340526, -34.91374], - [143.342789, -34.932533], - [143.339492, -34.943632], - [143.322014, -34.942339], - [143.317704, -34.952598], - [143.323717, -34.979085], - [143.318825, -34.992943], - [143.329708, -34.995744], - [143.338117, -35.010891], - [143.331864, -35.023804], - [143.335987, -35.037375], - [143.322081, -35.036727], - [143.328679, -35.0459], - [143.336543, -35.043219], - [143.330492, -35.05388], - [143.337264, -35.048645], - [143.337663, -35.061294], - [143.350838, -35.064702], - [143.339058, -35.068191], - [143.34552, -35.074056], - [143.337446, -35.080418], - [143.345023, -35.08702], - [143.340858, -35.095714], - [143.348103, -35.10544], - [143.360762, -35.103032], - [143.361967, -35.1169], - [143.390647, -35.145107], - [143.381936, -35.17312], - [143.39182, -35.172567], - [143.386969, -35.183462], - [143.394677, -35.192377], - [143.449486, -35.189112], - [143.471482, -35.219293], - [143.518322, -35.21162], - [143.529155, -35.219921], - [143.548335, -35.21379], - [143.547023, -35.206173], - [143.570828, -35.206905], - [143.580984, -35.220036], - [143.563717, -35.243545], - [143.574076, -35.256505], - [143.57169, -35.267959], - [143.583507, -35.265005], - [143.59086, -35.281659], - [143.577937, -35.303197], - [143.569019, -35.302447], - [143.562074, -35.337244], - [143.598448, -35.352111], - [143.603015, -35.365407], - [143.616037, -35.368884], - [143.620416, -35.387682], - [143.633019, -35.383467], - [143.629381, -35.392368], - [143.642338, -35.401037], - [143.65714, -35.384999], - [143.668081, -35.385735], - [143.667922, -35.371554], - [143.682627, -35.374091], - [143.684521, -35.368446], - [143.693148, -35.383917], - [143.702284, -35.377882], - [143.703349, -35.389408], - [143.711685, -35.38469], - [143.709175, -35.392538], - [143.751004, -35.387835], - [143.768823, -35.401809], - [143.758802, -35.415427], - [143.765962, -35.415858], - [143.762852, -35.423066], - [143.790117, -35.422477], - [143.818018, -35.437545], - [143.813021, -35.446265], - [143.855435, -35.461838], - [143.858784, -35.479978], - [143.87138, -35.477828], - [143.876584, -35.486166], - [143.907733, -35.494162], - [143.906183, -35.499958], - [143.935045, -35.499288], - [143.933355, -35.50661], - [143.970101, -35.500078], - [143.972536, -35.509249], - [143.962441, -35.51398], - [143.974476, -35.532309], - [143.996841, -35.53625], - [143.999221, -35.545367], - [143.989865, -35.554663], - [144.009646, -35.563307], - [144.012702, -35.554073], - [144.034082, -35.555971], - [144.039215, -35.549257], - [144.0468, -35.563141], - [144.063958, -35.570545], - [144.062285, -35.576768], - [144.105015, -35.59078], - [144.117546, -35.625926], - [144.131488, -35.640761], - [144.142927, -35.647253], - [144.152629, -35.642678], - [144.162351, -35.671526], - [144.186788, -35.670431], - [144.195139, -35.685858], - [144.213483, -35.686671], - [144.221647, -35.693952], - [144.215952, -35.706477], - [144.24815, -35.721034], - [144.264496, -35.751403], - [144.29606, -35.737091], - [144.301278, -35.742986], - [144.295276, -35.754379], - [144.327832, -35.752646], - [144.318651, -35.766574], - [144.349111, -35.767142], - [144.351546, -35.785069], - [144.360283, -35.784811], - [144.355338, -35.788479], - [144.362329, -35.795834], - [144.37685, -35.792979], - [144.366709, -35.811253], - [144.377484, -35.814346], - [144.364806, -35.820937], - [144.384118, -35.819565], - [144.372189, -35.83195], - [144.382044, -35.833175], - [144.372936, -35.83815], - [144.384314, -35.841922], - [144.381433, -35.852423], - [144.390318, -35.850553], - [144.388885, -35.85848], - [144.398635, -35.862667], - [144.411388, -35.859003], - [144.401926, -35.86802], - [144.410936, -35.871189], - [144.403628, -35.880666], - [144.418183, -35.89322], - [144.407927, -35.904013], - [144.424381, -35.900194], - [144.416979, -35.910472], - [144.423428, -35.906005], - [144.426505, -35.918744], - [144.446974, -35.935531], - [144.460553, -35.939596], - [144.466553, -35.933602], - [144.464123, -35.940942], - [144.472233, -35.940725], - [144.466691, -35.945927], - [144.479415, -35.945275], - [144.479758, -35.953295], - [144.487583, -35.949511], - [144.48123, -35.958609], - [144.488638, -35.957123], - [144.493963, -35.968592], - [144.5019, -35.958039], - [144.501128, -35.970606], - [144.513047, -35.965202], - [144.50995, -35.973945], - [144.521099, -35.970266], - [144.512009, -35.988895], - [144.51614, -35.995438], - [144.553661, -36.002984], - [144.557655, -36.014107], - [144.563385, -36.007806], - [144.571127, -36.024079], - [144.586445, -36.027182], - [144.582515, -36.038135], - [144.590991, -36.043318], - [144.598917, -36.037411], - [144.608761, -36.041808], - [144.605957, -36.036542], - [144.615473, -36.031593], - [144.617551, -36.046904], - [144.608432, -36.063641], - [144.61767, -36.077192], - [144.628221, -36.065259], - [144.6183, -36.059708], - [144.626288, -36.0618], - [144.624999, -36.052081], - [144.632744, -36.048097], - [144.643921, -36.056664], - [144.653191, -36.05324], - [144.654966, -36.075349], - [144.658022, -36.07038], - [144.664631, -36.077042], - [144.667856, -36.068596], - [144.689004, -36.061417], - [144.683907, -36.095138], - [144.697522, -36.094047], - [144.698886, -36.087259], - [144.706461, -36.092948], - [144.715385, -36.086214], - [144.725675, -36.089438], - [144.717445, -36.112113], - [144.726379, -36.117781], - [144.740569, -36.107576], - [144.748239, -36.121746], - [144.771896, -36.116132], - [144.777064, -36.129837], - [144.794782, -36.117285], - [144.80787, -36.123628], - [144.813362, -36.113912], - [144.806398, -36.107457], - [144.81634, -36.109865], - [144.809893, -36.102428], - [144.819903, -36.107947], - [144.841922, -36.100576], - [144.841901, -36.083098], - [144.850851, -36.080645], - [144.847176, -36.072881], - [144.856474, -36.073553], - [144.857534, -36.065171], - [144.861373, -36.071838], - [144.86346, -36.059112], - [144.932614, -36.067049], - [144.94829, -36.082904], - [144.981909, -36.072316], - [144.985932, -36.056509], - [144.967808, -36.042078], - [144.961831, -36.018216], - [144.945499, -36.012186], - [144.945759, -36.004312], - [144.923606, -35.988768], - [144.931005, -35.96847], - [144.957378, -35.961005], - [144.948917, -35.931602], - [144.974954, -35.883845], - [144.968187, -35.865528], - [144.991436, -35.858984], - [144.992263, -35.852338], - [145.018998, -35.856647], - [145.049713, -35.833671], - [145.061056, -35.837309], - [145.089998, -35.825457], - [145.091922, -35.835957], - [145.114092, -35.820548], - [145.126435, -35.829671], - [145.127683, -35.820716], - [145.136636, -35.83427], - [145.139579, -35.828538], - [145.15917, -35.831077], - [145.153456, -35.843045], - [145.181014, -35.842026], - [145.189806, -35.834267], - [145.22276, -35.84244], - [145.225029, -35.832184], - [145.246178, -35.830321], - [145.260717, -35.835426], - [145.258317, -35.850588], - [145.272698, -35.845203], - [145.296542, -35.860566], - [145.324453, -35.850686], - [145.3554, -35.867067], - [145.38715, -35.850142], - [145.410625, -35.848613], - [145.412575, -35.830601], - [145.442293, -35.835642], - [145.450658, -35.821418], - [145.46344, -35.826274], - [145.472128, -35.80923], - [145.491977, -35.815076], - [145.502556, -35.809449], - [145.52251, -35.818486], - [145.535398, -35.801983], - [145.541889, -35.808905], - [145.538763, -35.821813], - [145.546741, -35.812894], - [145.562836, -35.813449], - [145.557997, -35.82823], - [145.56684, -35.826497], - [145.564011, -35.83419], - [145.59323, -35.849077], - [145.586792, -35.861245], - [145.598028, -35.861458], - [145.601134, -35.875008], - [145.606474, -35.874998], - [145.601748, -35.867857], - [145.626347, -35.862758], - [145.62832, -35.867775], - [145.614857, -35.87257], - [145.628134, -35.875409], - [145.620321, -35.883884], - [145.62957, -35.880105], - [145.63973, -35.894239], - [145.657449, -35.900686], - [145.669121, -35.919586], - [145.679053, -35.916829], - [145.673992, -35.925924], - [145.685852, -35.930615], - [145.698181, -35.920977], - [145.703269, -35.925702], - [145.695763, -35.925792], - [145.697327, -35.936501], - [145.720274, -35.934449], - [145.7263, -35.942312], - [145.716766, -35.950594], - [145.734238, -35.951348], - [145.731027, -35.958734], - [145.746109, -35.964239], - [145.778211, -35.960243], - [145.777006, -35.972559], - [145.792732, -35.972801], - [145.793445, -35.982817], - [145.80798, -35.983762], - [145.811662, -35.991769], - [145.81668, -35.9882], - [145.811353, -35.984102], - [145.828252, -35.982982], - [145.827548, -35.975438], - [145.840021, -35.983244], - [145.848589, -35.980899], - [145.845548, -35.97346], - [145.858624, -35.974814], - [145.847975, -35.968689], - [145.854042, -35.959927], - [145.902693, -35.952496], - [145.910314, -35.955962], - [145.900756, -35.961529], - [145.902934, -35.968856], - [145.925821, -35.964563], - [145.928, -35.973947], - [145.953701, -35.9615], - [145.944304, -35.966495], - [145.951071, -35.976626], - [145.945744, -35.983809], - [145.964818, -35.99677], - [145.958336, -36.006973], - [145.971314, -36.005651], - [145.97207, -36.015747], - [146.005866, -36.003569], - [146.016143, -36.006962], - [146.031488, -35.994714], - [146.048421, -36.003158], - [146.052346, -35.995465], - [146.059295, -36.014548], - [146.07355, -36.009637], - [146.075639, -36.018177], - [146.092199, -36.021266], - [146.09147, -36.009477], - [146.112378, -36.006811], - [146.107678, -36.014369], - [146.118718, -36.018014], - [146.134761, -36.002547], - [146.14065, -36.008954], - [146.132045, -36.010095], - [146.131357, -36.019413], - [146.145863, -36.013776], - [146.15468, -36.025159], - [146.173104, -36.019293], - [146.185976, -36.042071], - [146.199244, -36.027453], - [146.204747, -36.039158], - [146.211581, -36.028559], - [146.211155, -36.03886], - [146.222171, -36.029921], - [146.24298, -36.028784], - [146.241433, -36.023524], - [146.250889, -36.02313], - [146.244593, -36.01834], - [146.257183, -36.012053], - [146.272859, -36.026631], - [146.27503, -36.012441], - [146.282895, -36.011048], - [146.278803, -36.01585], - [146.291125, -36.020163], - [146.282181, -36.026188], - [146.293104, -36.029503], - [146.283023, -36.041488], - [146.291396, -36.038952], - [146.299009, -36.047859], - [146.300963, -36.03659], - [146.312986, -36.045568], - [146.315875, -36.038453], - [146.329072, -36.043144], - [146.325022, -36.033543], - [146.33889, -36.026395], - [146.368684, -36.050862], - [146.387557, -36.035639], - [146.379594, -36.028127], - [146.380606, -36.012895], - [146.399134, -36.007199], - [146.402962, -35.98878], - [146.425169, -35.973027], - [146.421673, -35.965831], - [146.437159, -35.967015], - [146.444738, -35.977991], - [146.454595, -35.962247], - [146.469966, -35.976201], - [146.467407, -35.98424], - [146.499726, -35.99087], - [146.502134, -35.983188], - [146.49248, -35.985012], - [146.500674, -35.979244], - [146.502585, -35.958235], - [146.519681, -35.960604], - [146.532293, -35.984299], - [146.549581, -35.992457], - [146.555958, -35.989182], - [146.552029, -35.979592], - [146.560301, -35.976391], - [146.583967, -35.983864], - [146.584147, -35.974987], - [146.61252, -35.972858], - [146.618716, -35.975937], - [146.60782, -35.986372], - [146.614299, -35.99648], - [146.650868, -36.007735], - [146.650178, -36.013796], - [146.658574, -36.014488], - [146.650336, -36.018411], - [146.655996, -36.026252], - [146.680199, -36.022376], - [146.675365, -36.028599], - [146.685812, -36.040576], - [146.695002, -36.034315], - [146.689603, -36.030446], - [146.707141, -36.036122], - [146.708878, -36.029435], - [146.731645, -36.023725], - [146.730065, -36.044724], - [146.752929, -36.042113], - [146.749851, -36.061277], - [146.762315, -36.051665], - [146.762818, -36.059519], - [146.796181, -36.065138], - [146.79457, -36.058545], - [146.803936, -36.055194], - [146.81838, -36.067834], - [146.816301, -36.074377], - [146.825542, -36.070847], - [146.825026, -36.088724], - [146.8367, -36.082073], - [146.857158, -36.084918], - [146.86453, -36.073084], - [146.872952, -36.073681], - [146.880556, -36.087524], - [146.90691, -36.084946], - [146.907763, -36.111284], - [146.924058, -36.108315], - [146.926804, -36.097178], - [146.943705, -36.115989], - [146.952498, -36.110788], - [146.956824, -36.078061], - [146.972589, -36.082113], - [146.981298, -36.094876], - [147.007444, -36.083732], - [147.006396, -36.089115], - [147.016319, -36.089798], - [147.013473, -36.104721], - [147.022777, -36.099895], - [147.034141, -36.115239], - [147.042344, -36.104305], - [147.052963, -36.107881], - [147.061812, -36.066155], - [147.0904, -36.049226], - [147.095444, -36.05271], - [147.091582, -36.043861], - [147.097003, -36.046784], - [147.103712, -36.032854], - [147.09214, -36.02765], - [147.099095, -36.026194], - [147.097671, -36.015823], - [147.106364, -36.016455], - [147.098074, -36.010246], - [147.109228, -36.012549], - [147.10682, -36.004825], - [147.11628, -36.007635], - [147.111931, -36.000922], - [147.123357, -35.994498], - [147.127391, -36.018047], - [147.144361, -36.037765], - [147.164456, -36.030798], - [147.206299, -36.050136], - [147.242378, -36.038482], - [147.285177, -36.039439], - [147.319949, -36.060987], - [147.352825, -36.031749], - [147.345681, -36.018772], - [147.355287, -36.009832], - [147.358193, -35.991276], - [147.383679, -35.972352], - [147.392344, -35.973533], - [147.390342, -35.949266], - [147.404631, -35.943495], - [147.450685, -35.960804], - [147.464072, -35.944137], - [147.478835, -35.942689], - [147.481553, -35.949223], - [147.494112, -35.943549], - [147.511421, -35.962412], - [147.525267, -35.963338], - [147.514925, -35.976369], - [147.521359, -35.986936], - [147.551873, -36.004095], - [147.584027, -35.984648], - [147.558887, -35.972489], - [147.547654, -35.978625], - [147.549115, -35.96455], - [147.591893, -35.969859], - [147.601438, -35.979118], - [147.637771, -35.96211], - [147.646777, -35.946008], - [147.68001, -35.944439], - [147.708415, -35.928545], - [147.718672, -35.945513], - [147.741292, -35.95649], - [147.773261, -35.958863], - [147.766797, -35.964158], - [147.776849, -35.968614], - [147.806153, -35.965057], - [147.817498, -35.979741], - [147.873121, -35.991006], - [147.88288, -36.001798], - [147.897506, -35.999861], - [147.895698, -35.993018], - [147.912342, -35.995198], - [147.908543, -36.001473], - [147.917083, -36.011204], - [147.91149, -36.026597], - [147.931559, -36.035267], - [147.923752, -36.035709], - [147.923974, -36.042491], - [147.934261, -36.047637], - [147.958994, -36.040974], - [147.964964, -36.046853], - [147.97426, -36.038505], - [147.973234, -36.046314], - [147.981774, -36.040254], - [147.99126, -36.052559], - [147.999692, -36.046204], - [147.989467, -36.068478], - [147.992889, -36.081071], - [147.982389, -36.077891], - [147.980247, -36.086482], - [147.999218, -36.098655], - [147.991074, -36.111251], - [147.998229, -36.115919], - [147.990652, -36.121272], - [148.000537, -36.124355], - [148.002388, -36.140057], - [148.037726, -36.140797], - [148.035191, -36.152536], - [148.022899, -36.153457], - [148.034795, -36.162983], - [148.021819, -36.176462], - [148.04062, -36.206951], - [148.026096, -36.223042], - [148.0349, -36.234116], - [148.02884, -36.247044], - [148.038676, -36.259221], - [148.032828, -36.26586], - [148.033753, -36.28223], - [148.040119, -36.284157], - [148.035234, -36.292329], - [148.043928, -36.299479], - [148.035011, -36.310577], - [148.058941, -36.320046], - [148.051243, -36.324557], - [148.055613, -36.334386], - [148.048959, -36.355632], - [148.037836, -36.366246], - [148.045966, -36.367038], - [148.037583, -36.390225], - [148.058163, -36.400804], - [148.059945, -36.415538], - [148.08028, -36.422101], - [148.087601, -36.451895], - [148.124663, -36.464713], - [148.119093, -36.481884], - [148.126424, -36.485274], - [148.11763, -36.495476], - [148.139815, -36.525445], - [148.124337, -36.550642], - [148.13341, -36.566921], - [148.150489, -36.558336], - [148.160713, -36.579776], - [148.169411, -36.573696], - [148.190134, -36.57662], - [148.19033, -36.584891], - [148.20599, -36.586932], - [148.217563, -36.598239], - [148.202781, -36.611915], - [148.214196, -36.61049], - [148.219547, -36.619558], - [148.211171, -36.650519], - [148.170243, -36.712799], - [148.130703, -36.734683], - [148.136703, -36.738436], - [148.132654, -36.750847], - [148.120472, -36.756303], - [148.126081, -36.759417], - [148.097983, -36.787161], - [148.108888, -36.800865], - [148.120152, -36.806079], - [148.126771, -36.796451], - [148.156663, -36.790013], - [148.179595, -36.796326], - [148.182473, -36.804895], - [148.194946, -36.796253], - [149.976679, -37.50506], - [149.964395, -37.517956], - [149.92477, -37.526348], - [149.906609, -37.542865], - [149.819715, -37.544829], - [149.775248, -37.557838], - [149.760994, -37.566909], - [149.765416, -37.573855], - [149.738748, -37.585037], - [149.706531, -37.643525], - [149.682392, -37.664158], - [149.677329, -37.685082], - [149.616596, -37.700613], - [149.600828, -37.712062], - [149.595839, -37.726576], - [149.56629, -37.724577], - [149.525501, -37.737284], - [149.516419, -37.749082], - [149.496934, -37.753367], - [149.495556, -37.768225], - [149.484958, -37.775441], - [149.461888, -37.769302], - [149.431022, -37.777377], - [149.340379, -37.776913], - [149.292448, -37.78746], - [149.275498, -37.803777], - [149.265391, -37.798457], - [149.265928, -37.789319], - [149.246711, -37.780474], - [149.124226, -37.777287], - [148.926358, -37.781403], - [148.88415, -37.789958], - [148.808733, -37.786417], - [148.749187, -37.797037], - [148.727786, -37.815437], - [148.717029, -37.804438], - [148.691027, -37.801441], - [148.626577, -37.808219], - [148.448176, -37.80172], - [148.289615, -37.810988], - [148.179178, -37.831635], - [147.951982, -37.894066], - [147.788216, -37.955322], - [147.642131, -38.036875], - [147.476303, -38.15175], - [147.067248, -38.475119], - [146.883139, -38.634634], - [146.887146, -38.620153], - [146.925517, -38.594225], - [146.898674, -38.612218], - [146.886424, -38.614398], - [146.882549, -38.604607], - [146.844005, -38.604835], - [146.842214, -38.615343], - [146.851407, -38.612415], - [146.880623, -38.616834], - [146.87821, -38.626484], - [146.815353, -38.648874], - [146.793687, -38.644809], - [146.791507, -38.633329], - [146.785908, -38.646241], - [146.766508, -38.650138], - [146.776554, -38.654217], - [146.753518, -38.652583], - [146.742174, -38.664925], - [146.712913, -38.647777], - [146.716388, -38.660899], - [146.696106, -38.669995], - [146.697708, -38.67535], - [146.657551, -38.671491], - [146.670659, -38.66291], - [146.65312, -38.642985], - [146.645934, -38.650711], - [146.652795, -38.658737], - [146.641029, -38.668902], - [146.58442, -38.677087], - [146.59367, -38.684768], - [146.582693, -38.698475], - [146.580423, -38.679462], - [146.576824, -38.692143], - [146.572005, -38.6777], - [146.57214, -38.683307], - [146.562535, -38.67824], - [146.54651, -38.68452], - [146.563125, -38.68318], - [146.566746, -38.691119], - [146.562451, -38.698048], - [146.552764, -38.68929], - [146.551209, -38.703789], - [146.539161, -38.698269], - [146.5412, -38.685376], - [146.514712, -38.694242], - [146.494669, -38.679739], - [146.492968, -38.69676], - [146.463062, -38.70208], - [146.437202, -38.694436], - [146.4391, -38.699711], - [146.410331, -38.711911], - [146.411203, -38.721218], - [146.387054, -38.720748], - [146.380986, -38.685645], - [146.350706, -38.67292], - [146.331821, -38.681068], - [146.33884, -38.690666], - [146.291719, -38.695268], - [146.26056, -38.687323], - [146.252627, -38.697512], - [146.243754, -38.695281], - [146.243941, -38.682832], - [146.227605, -38.689144], - [146.231156, -38.695179], - [146.212059, -38.692854], - [146.229248, -38.701188], - [146.202718, -38.71335], - [146.213181, -38.719708], - [146.199527, -38.716096], - [146.192048, -38.726245], - [146.200636, -38.733016], - [146.210668, -38.728486], - [146.204663, -38.735404], - [146.210699, -38.737946], - [146.195376, -38.735871], - [146.192597, -38.728737], - [146.18556, -38.74337], - [146.218497, -38.771826], - [146.233048, -38.809044], - [146.272814, -38.806048], - [146.263936, -38.823443], - [146.270271, -38.86014], - [146.292728, -38.876466], - [146.287195, -38.894454], - [146.292616, -38.904551], - [146.323098, -38.903579], - [146.352575, -38.868224], - [146.393215, -38.850494], - [146.414861, -38.852078], - [146.42073, -38.803807], - [146.435645, -38.795912], - [146.43796, -38.778922], - [146.467056, -38.780916], - [146.478636, -38.79178], - [146.46785, -38.871049], - [146.484472, -38.883179], - [146.480599, -38.89139], - [146.48741, -38.894269], - [146.489295, -38.910464], - [146.474089, -38.916245], - [146.450981, -38.947851], - [146.43611, -38.981022], - [146.445691, -39.003708], - [146.431755, -39.010977], - [146.437194, -39.021014], - [146.475392, -39.025666], - [146.464, -39.028932], - [146.470757, -39.035718], - [146.460439, -39.036915], - [146.477728, -39.043765], - [146.47446, -39.05494], - [146.48335, -39.061028], - [146.47977, -39.066834], - [146.455289, -39.054116], - [146.43112, -39.065527], - [146.425291, -39.083549], - [146.441603, -39.089754], - [146.434851, -39.107727], - [146.42686, -39.108278], - [146.431753, -39.114822], - [146.424079, -39.114799], - [146.42651, -39.129986], - [146.416015, -39.125521], - [146.389544, -39.133959], - [146.387825, -39.125091], - [146.374563, -39.136721], - [146.345818, -39.125384], - [146.342561, -39.1106], - [146.321444, -39.087887], - [146.32143, -39.077981], - [146.340665, -39.076953], - [146.342982, -39.060987], - [146.352339, -39.058857], - [146.316942, -39.052255], - [146.326362, -39.041118], - [146.316484, -39.033666], - [146.304711, -39.039363], - [146.303027, -39.02347], - [146.283915, -39.024887], - [146.291848, -39.013118], - [146.274329, -38.996389], - [146.248966, -38.99602], - [146.267295, -38.991191], - [146.269497, -38.97296], - [146.233903, -38.918669], - [146.189408, -38.873545], - [146.133534, -38.837409], - [146.083966, -38.815933], - [146.033608, -38.813189], - [146.009458, -38.825703], - [145.997901, -38.846406], - [146.006286, -38.87792], - [145.979368, -38.895077], - [145.940007, -38.896113], - [145.921197, -38.90961], - [145.910638, -38.892758], - [145.914922, -38.872133], - [145.869527, -38.776148], - [145.818249, -38.712973], - [145.765547, -38.666752], - [145.729472, -38.64484], - [145.714004, -38.645141], - [145.688938, -38.651209], - [145.672021, -38.671595], - [145.656874, -38.676923], - [145.638566, -38.672436], - [145.606696, -38.678782], - [145.560625, -38.651407], - [145.537514, -38.61109], - [145.483686, -38.556001], - [145.423688, -38.536479], - [145.372012, -38.536297], - [145.36342, -38.52097], - [145.41917, -38.51319], - [145.43448, -38.493623], - [145.432528, -38.480368], - [145.417718, -38.471373], - [145.428272, -38.46083], - [145.433813, -38.434868], - [145.416381, -38.406995], - [145.453556, -38.41266], - [145.481275, -38.407126], - [145.489876, -38.415096], - [145.515409, -38.415475], - [145.548933, -38.371688], - [145.552463, -38.35245], - [145.545145, -38.339536], - [145.515332, -38.3378], - [145.522134, -38.298944], - [145.497964, -38.274077], - [145.488988, -38.233414], - [145.459991, -38.228038], - [145.438385, -38.214401], - [145.410917, -38.228048], - [145.347072, -38.21357], - [145.341337, -38.229565], - [145.324841, -38.242155], - [145.298309, -38.248493], - [145.274132, -38.244101], - [145.278629, -38.2344], - [145.271575, -38.222965], - [145.254773, -38.223062], - [145.253302, -38.235679], - [145.261731, -38.242426], - [145.225654, -38.272428], - [145.22302, -38.306462], - [145.206203, -38.3038], - [145.199986, -38.293078], - [145.192934, -38.296557], - [145.199945, -38.310851], - [145.192849, -38.324507], - [145.218781, -38.347604], - [145.213463, -38.365909], - [145.221952, -38.377797], - [145.210923, -38.378673], - [145.196407, -38.366586], - [145.183986, -38.374587], - [145.215199, -38.383113], - [145.234486, -38.409689], - [145.131889, -38.390694] - ], - [ - [146.84068, -38.615832], - [146.825352, -38.609723], - [146.798097, -38.620209], - [146.799439, -38.628656], - [146.794402, -38.626652], - [146.79191, -38.632399], - [146.800977, -38.632991], - [146.803176, -38.620368], - [146.819121, -38.613196], - [146.825275, -38.620739], - [146.84068, -38.615832] - ] - ], - [ - [ - [149.918469, -37.568333], - [149.906303, -37.567536], - [149.904809, -37.548305], - [149.918469, -37.568333] - ] - ], - [ - [ - [146.879039, -38.638149], - [146.828437, -38.679496], - [146.858094, -38.652723], - [146.835528, -38.654171], - [146.879039, -38.638149] - ] - ], - [ - [ - [146.826421, -38.683449], - [146.787947, -38.68068], - [146.752869, -38.689586], - [146.798672, -38.675767], - [146.826421, -38.683449] - ] - ], - [ - [ - [146.815451, -38.659376], - [146.786029, -38.669118], - [146.794058, -38.65682], - [146.815451, -38.659376] - ] - ], - [ - [ - [146.739461, -38.672911], - [146.726511, -38.672302], - [146.71549, -38.683892], - [146.709894, -38.676575], - [146.72062, -38.67646], - [146.727793, -38.661227], - [146.739461, -38.672911] - ] - ], - [ - [ - [146.715739, -38.687077], - [146.696231, -38.690865], - [146.707733, -38.67673], - [146.715739, -38.687077] - ] - ], - [ - [ - [146.685401, -38.677859], - [146.676565, -38.684137], - [146.683364, -38.689702], - [146.668862, -38.684012], - [146.685401, -38.677859] - ] - ], - [ - [ - [146.677547, -38.708481], - [146.626289, -38.724626], - [146.60183, -38.722403], - [146.606399, -38.717974], - [146.601021, -38.71654], - [146.595562, -38.720188], - [146.602819, -38.726884], - [146.585294, -38.715426], - [146.618435, -38.697518], - [146.614453, -38.701181], - [146.636787, -38.698702], - [146.630293, -38.705779], - [146.642945, -38.699638], - [146.677547, -38.708481] - ] - ], - [ - [ - [146.669254, -38.718406], - [146.652636, -38.727206], - [146.62974, -38.724665], - [146.669254, -38.718406] - ] - ], - [ - [ - [146.620487, -38.75788], - [146.597634, -38.759484], - [146.54534, -38.790889], - [146.494759, -38.774837], - [146.464605, -38.739122], - [146.471343, -38.728367], - [146.495, -38.729122], - [146.509663, -38.718527], - [146.503076, -38.726791], - [146.515585, -38.730698], - [146.508177, -38.73723], - [146.541851, -38.728365], - [146.508245, -38.752904], - [146.523886, -38.752655], - [146.500179, -38.762913], - [146.547905, -38.757144], - [146.54172, -38.756131], - [146.576886, -38.735022], - [146.59191, -38.742404], - [146.584271, -38.747864], - [146.60293, -38.744193], - [146.601349, -38.752087], - [146.620487, -38.75788] - ] - ], - [ - [ - [146.623101, -38.757696], - [146.667725, -38.747737], - [146.656002, -38.755387], - [146.623101, -38.757696] - ] - ], - [ - [ - [146.634077, -38.697163], - [146.621698, -38.694456], - [146.626852, -38.690059], - [146.634077, -38.697163] - ] - ], - [ - [ - [146.501883, -38.716446], - [146.493338, -38.725194], - [146.468395, -38.717321], - [146.438615, -38.727515], - [146.451102, -38.710531], - [146.501883, -38.716446] - ] - ], - [ - [ - [146.329832, -39.141577], - [146.325447, -39.14728], - [146.312072, -39.134765], - [146.329832, -39.141577] - ] - ], - [ - [ - [146.246238, -39.024357], - [146.240787, -39.029639], - [146.236406, -39.022245], - [146.24111, -39.016688], - [146.246238, -39.024357] - ] - ], - [ - [ - [146.241476, -39.089053], - [146.23555, -39.097594], - [146.222171, -39.07132], - [146.241476, -39.089053] - ] - ], - [ - [ - [145.503419, -38.354364], - [145.476252, -38.366455], - [145.406087, -38.372763], - [145.390367, -38.385129], - [145.386038, -38.406628], - [145.363825, -38.405562], - [145.352532, -38.419991], - [145.287996, -38.395663], - [145.275541, -38.394869], - [145.281426, -38.404317], - [145.272813, -38.409592], - [145.265575, -38.402882], - [145.27667, -38.391631], - [145.27351, -38.357488], - [145.287229, -38.309622], - [145.297586, -38.30934], - [145.285955, -38.305325], - [145.289378, -38.284665], - [145.297026, -38.282054], - [145.33036, -38.292367], - [145.351993, -38.311261], - [145.45237, -38.306856], - [145.503419, -38.354364] - ] - ], - [ - [ - [145.364351, -38.553403], - [145.360927, -38.566071], - [145.351273, -38.567099], - [145.34216, -38.559018], - [145.344009, -38.54938], - [145.316751, -38.524459], - [145.271133, -38.504866], - [145.240044, -38.506828], - [145.221203, -38.529953], - [145.203572, -38.517309], - [145.17066, -38.509575], - [145.116156, -38.518351], - [145.127384, -38.505541], - [145.147128, -38.503198], - [145.165431, -38.465358], - [145.200057, -38.451025], - [145.290603, -38.450182], - [145.302496, -38.453855], - [145.275161, -38.454122], - [145.27325, -38.460288], - [145.310365, -38.460544], - [145.290741, -38.48049], - [145.293145, -38.488543], - [145.305573, -38.485438], - [145.297319, -38.506446], - [145.35916, -38.509312], - [145.363649, -38.515623], - [145.347089, -38.520963], - [145.340937, -38.535771], - [145.364351, -38.553403] - ] - ], - [ - [ - [145.346151, -38.508609], - [145.332958, -38.499493], - [145.336761, -38.493663], - [145.346151, -38.508609] - ] - ], - [ - [ - [144.702137, -38.243412], - [144.667849, -38.255016], - [144.672019, -38.264367], - [144.663095, -38.252993], - [144.67872, -38.237599], - [144.678828, -38.250631], - [144.702137, -38.243412] - ] - ], - [ - [ - [142.014239, -38.412576], - [141.999012, -38.425446], - [141.993481, -38.417372], - [142.014239, -38.412576] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 2, - "properties": { - "name": "Queensland", - "ISOCODE": "AU-QLD" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [141.663509, -15.003962], - [141.590263, -14.857313], - [141.566982, -14.740314], - [141.553601, -14.592565], - [141.52561, -14.487086], - [141.552048, -14.375277], - [141.601637, -14.242417], - [141.593972, -14.155358], - [141.599046, -14.101668], - [141.568572, -14.051248], - [141.481812, -13.953329], - [141.468182, -13.923139], - [141.467192, -13.864249], - [141.523282, -13.572129], - [141.550602, -13.506939], - [141.593261, -13.459149], - [141.625401, -13.378009], - [141.682104, -13.302759], - [141.69539, -13.270078], - [141.690764, -13.236639], - [141.679924, -13.217539], - [141.657764, -13.204199], - [141.645073, -13.16893], - [141.629493, -13.15943], - [141.613943, -13.09195], - [141.617772, -13.03996], - [141.604512, -13.0204], - [141.588712, -13.017231], - [141.583162, -12.996721], - [141.599741, -12.952071], - [141.63598, -12.90875], - [141.64099, -12.91839], - [141.65275, -12.91676], - [141.67029, -12.89413], - [141.710019, -12.87898], - [141.739899, -12.85347], - [141.762458, -12.81661], - [141.795327, -12.72914], - [141.803777, -12.67953], - [141.820167, -12.67181], - [141.827282, -12.67682], - [141.817508, -12.700095], - [141.830572, -12.68633], - [141.854522, -12.68623], - [141.863112, -12.69341], - [141.877741, -12.67131], - [141.859246, -12.664557], - [141.839532, -12.66828], - [141.827326, -12.64855], - [141.859272, -12.63774], - [141.886082, -12.61729], - [141.893743, -12.593527], - [141.879236, -12.5839], - [141.819877, -12.60146], - [141.811457, -12.58422], - [141.793507, -12.5822], - [141.768407, -12.56566], - [141.769747, -12.552661], - [141.760047, -12.539141], - [141.709417, -12.518951], - [141.702007, -12.519571], - [141.695757, -12.533801], - [141.694807, -12.556981], - [141.654488, -12.563411], - [141.643238, -12.577601], - [141.625708, -12.583261], - [141.600688, -12.571791], - [141.591918, -12.558962], - [141.673419, -12.369542], - [141.714829, -12.234722], - [141.735389, -12.218212], - [141.81038, -12.048632], - [141.85044, -11.984452], - [141.87998, -11.954412], - [141.90902, -11.955462], - [141.89585, -11.964312], - [141.8865, -11.985032], - [141.91417, -12.032331], - [141.922475, -12.107571], - [141.944354, -12.148747], - [141.915249, -12.165088], - [141.929601, -12.167335], - [141.947961, -12.151173], - [141.928906, -12.104043], - [141.932345, -12.070881], - [141.957978, -12.042323], - [141.994195, -12.059651], - [142.012235, -12.039111], - [142.000825, -12.012891], - [141.971675, -11.980111], - [141.942845, -11.976481], - [141.942175, -11.945512], - [141.961964, -11.820772], - [141.977424, -11.776973], - [142.001893, -11.753273], - [142.015953, -11.673083], - [142.026003, -11.662313], - [142.051312, -11.554844], - [142.088582, -11.464734], - [142.100492, -11.463214], - [142.097332, -11.445034], - [142.119961, -11.368544], - [142.126801, -11.268365], - [142.116221, -11.224665], - [142.12858, -11.221675], - [142.13768, -11.206955], - [142.1475, -11.138305], - [142.157281, -11.121775], - [142.147351, -11.098745], - [142.152941, -11.093865], - [142.144731, -11.039075], - [142.125936, -10.981375], - [142.132786, -10.948445], - [142.193636, -10.914974], - [142.221806, -10.922214], - [142.248187, -10.909323], - [142.284486, -10.917763], - [142.313237, -10.901143], - [142.315016, -10.915153], - [142.334127, -10.890193], - [142.351137, -10.883343], - [142.365382, -10.846412], - [142.390446, -10.826413], - [142.424926, -10.742142], - [142.422807, -10.727902], - [142.438257, -10.708162], - [142.459356, -10.720282], - [142.498206, -10.716813], - [142.530935, -10.687543], - [142.540634, -10.696253], - [142.541305, -10.709483], - [142.551724, -10.708363], - [142.556824, -10.726463], - [142.567004, -10.722073], - [142.573964, -10.732813], - [142.581064, -10.724803], - [142.583224, -10.733843], - [142.609273, -10.749023], - [142.597024, -10.758393], - [142.599654, -10.764393], - [142.578574, -10.795782], - [142.566455, -10.795322], - [142.549255, -10.831822], - [142.517215, -10.843762], - [142.510445, -10.861152], - [142.516095, -10.909442], - [142.501115, -10.917702], - [142.503365, -10.930662], - [142.488695, -10.944083], - [142.497815, -10.939062], - [142.500065, -10.954432], - [142.482115, -10.978373], - [142.498655, -10.968122], - [142.512395, -10.939722], - [142.525665, -10.934882], - [142.543325, -10.907892], - [142.555785, -10.913442], - [142.542645, -10.902232], - [142.557545, -10.874102], - [142.558225, -10.880092], - [142.571019, -10.877778], - [142.568985, -10.872312], - [142.575055, -10.869602], - [142.593516, -10.888215], - [142.585455, -10.874932], - [142.592885, -10.875162], - [142.589235, -10.868152], - [142.616544, -10.892262], - [142.616744, -10.915102], - [142.604285, -10.912142], - [142.619144, -10.916462], - [142.609294, -10.933852], - [142.614774, -10.941882], - [142.629875, -10.945182], - [142.638005, -10.937162], - [142.646005, -10.939311], - [142.644395, -10.945761], - [142.649785, -10.940001], - [142.667844, -10.944651], - [142.680704, -10.971581], - [142.698134, -10.977901], - [142.716333, -10.961072], - [142.752619, -11.007101], - [142.749459, -11.026831], - [142.756439, -11.042091], - [142.786058, -11.074181], - [142.787679, -11.12676], - [142.799359, -11.15723], - [142.783159, -11.22267], - [142.793549, -11.27855], - [142.802399, -11.29145], - [142.819809, -11.29181], - [142.828869, -11.31444], - [142.840358, -11.319459], - [142.868658, -11.381579], - [142.832959, -11.433529], - [142.826833, -11.476509], - [142.839668, -11.492619], - [142.834328, -11.559689], - [142.852167, -11.586389], - [142.859487, -11.635889], - [142.862418, -11.750998], - [142.850378, -11.806098], - [142.854158, -11.822658], - [142.847488, -11.823918], - [142.856358, -11.845518], - [142.881798, -11.871858], - [142.901078, -11.872128], - [142.909318, -11.890098], - [142.928968, -11.904377], - [142.922478, -11.892658], - [142.945898, -11.900438], - [142.974597, -11.932917], - [143.015387, -11.937648], - [143.060916, -11.923668], - [143.066136, -11.928258], - [143.066476, -11.920118], - [143.093195, -11.904088], - [143.098295, -11.892178], - [143.109465, -11.906108], - [143.122104, -11.905138], - [143.147504, -11.919368], - [143.149524, -11.948888], - [143.161964, -11.954358], - [143.167454, -11.973298], - [143.209833, -11.962188], - [143.213153, -11.954438], - [143.224633, -11.954128], - [143.244062, -11.968728], - [143.228083, -11.989087], - [143.216553, -11.974818], - [143.185584, -11.990818], - [143.101208, -12.145645], - [143.092949, -12.157625], - [143.078709, -12.159225], - [143.084929, -12.172775], - [143.094913, -12.173455], - [143.087593, -12.201015], - [143.095072, -12.203964], - [143.097043, -12.218295], - [143.086043, -12.242135], - [143.094903, -12.25907], - [143.081253, -12.288905], - [143.078573, -12.337485], - [143.084633, -12.348225], - [143.115583, -12.338685], - [143.128013, -12.347365], - [143.180291, -12.343105], - [143.182601, -12.350445], - [143.194901, -12.349076], - [143.21504, -12.362706], - [143.23012, -12.382005], - [143.24737, -12.379146], - [143.2498, -12.390095], - [143.266129, -12.394355], - [143.273859, -12.407105], - [143.27246, -12.507515], - [143.29689, -12.532535], - [143.30315, -12.551605], - [143.33136, -12.565215], - [143.354819, -12.563915], - [143.393429, -12.595554], - [143.414238, -12.593244], - [143.418829, -12.615954], - [143.438448, -12.611814], - [143.438164, -12.623334], - [143.402469, -12.662274], - [143.402929, -12.678584], - [143.418729, -12.676014], - [143.418861, -12.681659], - [143.390015, -12.714834], - [143.38211, -12.749964], - [143.357726, -12.798353], - [143.351337, -12.899033], - [143.359586, -12.890613], - [143.375846, -12.899373], - [143.391466, -12.884773], - [143.392776, -12.897983], - [143.401416, -12.900213], - [143.40512, -12.867803], - [143.449499, -12.848823], - [143.475459, -12.864103], - [143.502498, -12.858603], - [143.533628, -12.838973], - [143.544117, -12.842773], - [143.512348, -12.903583], - [143.498648, -12.949623], - [143.512858, -12.962453], - [143.504298, -12.986533], - [143.515448, -13.007853], - [143.503408, -13.109882], - [143.507368, -13.152892], - [143.523068, -13.176492], - [143.515869, -13.259291], - [143.533418, -13.341301], - [143.557388, -13.365201], - [143.580587, -13.371951], - [143.598187, -13.42231], - [143.579913, -13.48572], - [143.584876, -13.478674], - [143.579608, -13.51031], - [143.587831, -13.532395], - [143.543529, -13.638879], - [143.550189, -13.631199], - [143.54303, -13.719418], - [143.53174, -13.754558], - [143.54556, -13.800278], - [143.59135, -13.857577], - [143.601575, -13.914237], - [143.622395, -13.967536], - [143.681059, -14.014576], - [143.70369, -14.126626], - [143.69848, -14.180085], - [143.7038, -14.208565], - [143.73039, -14.266395], - [143.745771, -14.333114], - [143.781071, -14.399224], - [143.81912, -14.441843], - [143.88442, -14.482093], - [143.9323, -14.483533], - [143.94828, -14.495552], - [143.960259, -14.484892], - [144.029259, -14.481322], - [144.095208, -14.445142], - [144.130827, -14.402042], - [144.141677, -14.405022], - [144.151137, -14.389712], - [144.168306, -14.381412], - [144.196716, -14.339412], - [144.196065, -14.260973], - [144.208905, -14.262473], - [144.216345, -14.254143], - [144.231915, -14.269092], - [144.244555, -14.264172], - [144.262295, -14.290752], - [144.281934, -14.302552], - [144.293414, -14.297952], - [144.315604, -14.308632], - [144.343043, -14.307922], - [144.359763, -14.291142], - [144.374703, -14.291072], - [144.396752, -14.273062], - [144.436141, -14.258592], - [144.465391, -14.227732], - [144.49145, -14.166023], - [144.51621, -14.166643], - [144.558109, -14.228472], - [144.577539, -14.235062], - [144.576479, -14.247362], - [144.596249, -14.260612], - [144.581119, -14.306081], - [144.58704, -14.360741], - [144.622369, -14.362041], - [144.644159, -14.348301], - [144.651099, -14.358361], - [144.620731, -14.43746], - [144.614721, -14.43067], - [144.621871, -14.44582], - [144.618812, -14.47539], - [144.665112, -14.51104], - [144.679311, -14.546729], - [144.693331, -14.553299], - [144.692962, -14.567079], - [144.695181, -14.555449], - [144.715111, -14.561019], - [144.77426, -14.545499], - [144.782671, -14.593619], - [144.838781, -14.614338], - [144.910229, -14.614048], - [144.923899, -14.638778], - [144.92384, -14.663168], - [144.94268, -14.663748], - [144.950221, -14.677187], - [144.956112, -14.744837], - [144.961102, -14.738857], - [144.981992, -14.749587], - [144.980012, -14.755117], - [144.993822, -14.751967], - [144.994052, -14.763596], - [145.004272, -14.751736], - [145.004732, -14.772406], - [145.021562, -14.782686], - [145.024112, -14.795106], - [145.090172, -14.802785], - [145.135112, -14.834964], - [145.190621, -14.843184], - [145.188641, -14.837424], - [145.229631, -14.831414], - [145.220029, -14.882814], - [145.264669, -14.926825], - [145.282239, -14.955165], - [145.298157, -14.963165], - [145.314186, -14.953105], - [145.332776, -14.955005], - [145.340665, -14.945055], - [145.351825, -14.951025], - [145.354425, -14.982535], - [145.289367, -15.042444], - [145.23379, -15.139043], - [145.24, -15.150834], - [145.23821, -15.195553], - [145.263337, -15.251053], - [145.271207, -15.258093], - [145.314836, -15.258792], - [145.339456, -15.226402], - [145.356166, -15.276531], - [145.329736, -15.278191], - [145.285636, -15.316242], - [145.282996, -15.328312], - [145.297105, -15.343302], - [145.284765, -15.363112], - [145.287255, -15.375332], - [145.247296, -15.416212], - [145.240617, -15.460111], - [145.228487, -15.461961], - [145.240813, -15.466201], - [145.251703, -15.457451], - [145.2616, -15.459583], - [145.283008, -15.49854], - [145.272518, -15.51791], - [145.272019, -15.541291], - [145.287289, -15.559111], - [145.304239, -15.551411], - [145.322768, -15.570271], - [145.319399, -15.586971], - [145.328879, -15.601031], - [145.316379, -15.605362], - [145.31913, -15.632262], - [145.31275, -15.646802], - [145.33305, -15.662612], - [145.3355, -15.681492], - [145.361279, -15.719592], - [145.368609, -15.762102], - [145.351779, -15.806742], - [145.358289, -15.830392], - [145.376669, -15.838852], - [145.35641, -15.890132], - [145.35734, -15.910472], - [145.362645, -15.922011], - [145.382119, -15.924162], - [145.413839, -15.951002], - [145.434348, -15.998091], - [145.450718, -16.009321], - [145.463617, -16.035981], - [145.464827, -16.066401], - [145.476887, -16.076101], - [145.451968, -16.141161], - [145.439888, -16.141941], - [145.450448, -16.142751], - [145.441278, -16.174651], - [145.444913, -16.20087], - [145.469257, -16.210901], - [145.470347, -16.235841], - [145.481937, -16.241411], - [145.478937, -16.267991], - [145.488897, -16.276681], - [145.447568, -16.289641], - [145.418168, -16.338301], - [145.412129, -16.376181], - [145.419868, -16.387931], - [145.404883, -16.433469], - [145.410108, -16.45929], - [145.432268, -16.47657], - [145.442218, -16.47237], - [145.468583, -16.479899], - [145.470043, -16.514379], - [145.500033, -16.552869], - [145.513664, -16.584406], - [145.522083, -16.586255], - [145.523001, -16.600962], - [145.564978, -16.643166], - [145.581937, -16.687196], - [145.62153, -16.699544], - [145.651225, -16.729489], - [145.670996, -16.737356], - [145.682708, -16.775579], - [145.695344, -16.775609], - [145.714992, -16.802725], - [145.724854, -16.803881], - [145.744836, -16.845446], - [145.774867, -16.870016], - [145.765473, -16.869253], - [145.777029, -16.880369], - [145.768622, -16.882253], - [145.762438, -16.897883], - [145.764944, -16.907311], - [145.782282, -16.916654], - [145.779215, -16.940451], - [145.785005, -16.94112], - [145.793096, -16.910558], - [145.810054, -16.909296], - [145.848883, -16.871187], - [145.86975, -16.906641], - [145.906489, -16.897216], - [145.919205, -16.864294], - [145.95765, -16.896578], - [145.956178, -16.905488], - [145.944284, -16.906528], - [145.931008, -16.922994], - [145.934326, -16.947528], - [145.900704, -16.981681], - [145.889406, -17.057605], - [145.916021, -17.087024], - [145.929016, -17.117334], - [145.949206, -17.130704], - [145.952926, -17.157714], - [145.964546, -17.168464], - [145.961341, -17.190143], - [145.971611, -17.242033], - [145.995681, -17.273253], - [146.020756, -17.346753], - [146.050956, -17.384523], - [146.073196, -17.394723], - [146.064886, -17.458893], - [146.077936, -17.478233], - [146.076972, -17.504552], - [146.051617, -17.505453], - [146.057537, -17.507143], - [146.056347, -17.520933], - [146.036087, -17.523053], - [146.032707, -17.512255], - [146.027815, -17.550271], - [146.033216, -17.525349], - [146.058607, -17.524883], - [146.060287, -17.511283], - [146.068176, -17.510403], - [146.092116, -17.561573], - [146.127926, -17.592542], - [146.128606, -17.599332], - [146.112666, -17.608882], - [146.125846, -17.612542], - [146.126126, -17.601472], - [146.132366, -17.601382], - [146.140586, -17.639712], - [146.149046, -17.648552], - [146.113397, -17.692952], - [146.104528, -17.727952], - [146.111788, -17.771592], - [146.090909, -17.799982], - [146.105828, -17.815632], - [146.099739, -17.833242], - [146.106509, -17.852022], - [146.119588, -17.855802], - [146.097949, -17.896852], - [146.091528, -17.95512], - [146.101389, -17.976861], - [146.094319, -17.973781], - [146.07386, -17.989941], - [146.041036, -18.04366], - [146.027261, -18.091021], - [146.008032, -18.120531], - [146.016188, -18.245019], - [146.081542, -18.314669], - [146.085113, -18.331279], - [146.102762, -18.348539], - [146.133202, -18.368729], - [146.141122, -18.364079], - [146.159162, -18.396929], - [146.161223, -18.424498], - [146.173552, -18.434868], - [146.167503, -18.445338], - [146.190742, -18.443998], - [146.200462, -18.452338], - [146.188522, -18.460048], - [146.189373, -18.473828], - [146.213052, -18.472768], - [146.225892, -18.498278], - [146.257262, -18.494938], - [146.267952, -18.505198], - [146.290691, -18.506847], - [146.313471, -18.521937], - [146.337881, -18.526627], - [146.345431, -18.559257], - [146.321141, -18.557277], - [146.334071, -18.565267], - [146.322262, -18.577727], - [146.339171, -18.564467], - [146.341551, -18.570227], - [146.338922, -18.606837], - [146.319377, -18.646066], - [146.332142, -18.640977], - [146.339212, -18.623337], - [146.338512, -18.630337], - [146.301843, -18.705106], - [146.273274, -18.811606], - [146.273046, -18.860081], - [146.289834, -18.891896], - [146.321254, -18.923686], - [146.335829, -18.955955], - [146.363769, -18.967975], - [146.380119, -18.997654], - [146.396268, -18.998504], - [146.454158, -19.073694], - [146.472922, -19.076499], - [146.490402, -19.095135], - [146.516612, -19.099867], - [146.562233, -19.142458], - [146.597675, -19.148266], - [146.619064, -19.166734], - [146.678484, -19.190592], - [146.71422, -19.193935], - [146.723095, -19.181596], - [146.751196, -19.184335], - [146.730586, -19.181629], - [146.736162, -19.180332], - [146.767909, -19.184747], - [146.790875, -19.240479], - [146.805157, -19.238539], - [146.820076, -19.253125], - [146.833297, -19.243609], - [146.826132, -19.25537], - [146.835727, -19.242859], - [146.846774, -19.255496], - [146.835115, -19.270653], - [146.847858, -19.273273], - [146.842853, -19.274131], - [146.882572, -19.303572], - [146.942462, -19.295367], - [146.95803, -19.308763], - [146.960511, -19.293305], - [146.978229, -19.284667], - [147.001846, -19.24938], - [147.002298, -19.234673], - [147.021775, -19.215849], - [147.016266, -19.182294], - [147.039992, -19.206935], - [147.044939, -19.237325], - [147.060578, -19.25631], - [147.061436, -19.276699], - [147.046654, -19.274518], - [147.039126, -19.296994], - [147.047864, -19.299327], - [147.064978, -19.342182], - [147.113928, -19.387779], - [147.110219, -19.3971], - [147.1261, -19.422471], - [147.135756, -19.4176], - [147.135054, -19.406806], - [147.161539, -19.405439], - [147.212841, -19.423941], - [147.234598, -19.41863], - [147.246905, -19.43246], - [147.304177, -19.407635], - [147.410445, -19.42596], - [147.441009, -19.421161], - [147.455161, -19.395188], - [147.446045, -19.365197], - [147.417069, -19.333208], - [147.421087, -19.322341], - [147.4572, -19.374345], - [147.486996, -19.465523], - [147.501095, -19.485051], - [147.510235, -19.484808], - [147.500249, -19.469631], - [147.507735, -19.476318], - [147.559283, -19.55051], - [147.580988, -19.624886], - [147.574092, -19.629301], - [147.585439, -19.648531], - [147.600985, -19.646408], - [147.615437, -19.6731], - [147.616991, -19.685965], - [147.599654, -19.68704], - [147.586804, -19.725095], - [147.601361, -19.757456], - [147.663298, -19.809681], - [147.671351, -19.828357], - [147.70592, -19.832018], - [147.699507, -19.835572], - [147.707429, -19.840872], - [147.703843, -19.836084], - [147.738402, -19.847056], - [147.760707, -19.841212], - [147.773234, -19.826567], - [147.766767, -19.81572], - [147.780695, -19.817997], - [147.776332, -19.807068], - [147.782421, -19.805358], - [147.771729, -19.803795], - [147.767967, -19.794397], - [147.777875, -19.788982], - [147.769586, -19.791693], - [147.771169, -19.786103], - [147.767568, -19.790298], - [147.767896, -19.783452], - [147.744959, -19.769102], - [147.761022, -19.727363], - [147.752342, -19.706598], - [147.82355, -19.709652], - [147.851391, -19.739251], - [147.845667, -19.782071], - [147.864839, -19.850986], - [147.917833, -19.908314], - [147.99218, -19.927621], - [148.01756, -19.913135], - [148.026229, -19.894015], - [148.080109, -19.881865], - [148.097219, -19.924945], - [148.111949, -19.941575], - [148.164528, -19.957954], - [148.186208, -19.944074], - [148.220127, -19.956044], - [148.239247, -19.984565], - [148.255476, -19.986003], - [148.260137, -19.976814], - [148.266897, -19.985984], - [148.267497, -20.023654], - [148.25924, -20.012547], - [148.248892, -20.017802], - [148.251479, -20.024241], - [148.248641, -20.017995], - [148.239668, -20.021594], - [148.228018, -20.035494], - [148.230578, -20.045324], - [148.270267, -20.070613], - [148.266597, -20.078323], - [148.274777, -20.072213], - [148.283517, -20.077473], - [148.274217, -20.086573], - [148.277677, -20.099563], - [148.303397, -20.110673], - [148.320827, -20.136103], - [148.338647, -20.139583], - [148.352527, -20.162703], - [148.369406, -20.156962], - [148.396116, -20.169042], - [148.396146, -20.161722], - [148.421776, -20.160522], - [148.434856, -20.168462], - [148.441666, -20.149432], - [148.465955, -20.138392], - [148.478765, -20.116602], - [148.443805, -20.111202], - [148.441465, -20.074542], - [148.452014, -20.059357], - [148.474521, -20.064583], - [148.487234, -20.081482], - [148.494194, -20.079252], - [148.495044, -20.088462], - [148.513314, -20.093272], - [148.529864, -20.093762], - [148.540884, -20.076322], - [148.562873, -20.066731], - [148.566083, -20.082151], - [148.552724, -20.094191], - [148.554834, -20.113871], - [148.567884, -20.118811], - [148.566974, -20.132731], - [148.578393, -20.127301], - [148.579903, -20.134421], - [148.565994, -20.150001], - [148.576944, -20.154511], - [148.570314, -20.170281], - [148.598013, -20.166331], - [148.582774, -20.181651], - [148.582644, -20.197641], - [148.599234, -20.201281], - [148.619933, -20.176701], - [148.601154, -20.210931], - [148.614644, -20.220381], - [148.630043, -20.219521], - [148.628603, -20.190981], - [148.639393, -20.170921], - [148.646263, -20.178171], - [148.642903, -20.213891], - [148.652973, -20.21614], - [148.677932, -20.17869], - [148.660643, -20.2167], - [148.667703, -20.23335], - [148.662783, -20.24748], - [148.678973, -20.23098], - [148.685113, -20.2414], - [148.673151, -20.282328], - [148.689291, -20.278935], - [148.693727, -20.270449], - [148.702819, -20.273368], - [148.708756, -20.262698], - [148.738593, -20.281753], - [148.733082, -20.253784], - [148.753196, -20.264379], - [148.752342, -20.23568], - [148.769282, -20.23596], - [148.777648, -20.274114], - [148.801845, -20.277982], - [148.790971, -20.278788], - [148.793544, -20.29125], - [148.766376, -20.286925], - [148.769116, -20.299708], - [148.792996, -20.313718], - [148.791925, -20.321269], - [148.816349, -20.321452], - [148.822346, -20.331937], - [148.807002, -20.342616], - [148.816608, -20.343832], - [148.818407, -20.354473], - [148.825698, -20.337722], - [148.840711, -20.351944], - [148.837212, -20.366232], - [148.827887, -20.365425], - [148.831062, -20.384403], - [148.816384, -20.384908], - [148.820008, -20.392198], - [148.823733, -20.386794], - [148.839583, -20.391641], - [148.838684, -20.430952], - [148.846807, -20.431738], - [148.88024, -20.472264], - [148.902785, -20.467044], - [148.91123, -20.479457], - [148.890949, -20.477035], - [148.884123, -20.488102], - [148.919725, -20.51364], - [148.930143, -20.533787], - [148.906041, -20.535454], - [148.899025, -20.545231], - [148.884806, -20.523211], - [148.85686, -20.527893], - [148.856562, -20.515517], - [148.850387, -20.510276], - [148.846327, -20.515312], - [148.844955, -20.503168], - [148.821488, -20.496763], - [148.823216, -20.477737], - [148.831079, -20.475004], - [148.817398, -20.459189], - [148.823336, -20.44958], - [148.831756, -20.450811], - [148.824021, -20.426102], - [148.820537, -20.44354], - [148.813447, -20.43992], - [148.813726, -20.420824], - [148.800674, -20.423677], - [148.790881, -20.415232], - [148.793852, -20.45366], - [148.785911, -20.430393], - [148.75613, -20.41892], - [148.775656, -20.431747], - [148.784429, -20.451789], - [148.782173, -20.464256], - [148.763609, -20.479701], - [148.752566, -20.472877], - [148.736461, -20.482013], - [148.692808, -20.441293], - [148.684255, -20.436008], - [148.680172, -20.441259], - [148.692066, -20.446153], - [148.692698, -20.462628], - [148.713484, -20.483623], - [148.715093, -20.49484], - [148.662046, -20.585768], - [148.690309, -20.59909], - [148.686869, -20.620521], - [148.699939, -20.639731], - [148.71806, -20.642498], - [148.727163, -20.633001], - [148.730859, -20.644586], - [148.706317, -20.670681], - [148.732576, -20.688476], - [148.730798, -20.716657], - [148.758577, -20.724379], - [148.766828, -20.734395], - [148.777901, -20.732122], - [148.78081, -20.762469], - [148.80267, -20.775879], - [148.82966, -20.776589], - [148.84079, -20.791109], - [148.81466, -20.791019], - [148.82043, -20.799629], - [148.81328, -20.803679], - [148.79629, -20.796999], - [148.80082, -20.806699], - [148.787301, -20.816599], - [148.81119, -20.814179], - [148.820245, -20.832048], - [148.82386, -20.821449], - [148.83889, -20.824539], - [148.84944, -20.846558], - [148.83247, -20.849719], - [148.847055, -20.855967], - [148.843075, -20.875967], - [148.866225, -20.867587], - [148.87545, -20.883038], - [148.874915, -20.862527], - [148.884825, -20.848777], - [148.880975, -20.856047], - [148.892585, -20.862157], - [148.89018, -20.877908], - [148.915065, -20.891977], - [148.927934, -20.883797], - [148.938464, -20.888287], - [148.951184, -20.875587], - [148.971014, -20.900376], - [148.995409, -20.892247], - [149.005394, -20.912346], - [149.017403, -20.912206], - [149.029033, -20.897706], - [149.046113, -20.903015], - [149.046153, -20.919995], - [149.058963, -20.928685], - [149.028223, -20.923366], - [149.011654, -20.935396], - [149.030694, -20.956846], - [149.015949, -20.954407], - [149.021634, -20.962556], - [149.015164, -20.967326], - [149.019894, -20.975846], - [149.014244, -20.991906], - [149.041614, -20.989315], - [149.050123, -20.978825], - [149.064828, -20.985346], - [149.066118, -20.995176], - [149.067978, -20.984136], - [149.085758, -20.989966], - [149.064883, -20.974855], - [149.088933, -20.975915], - [149.108093, -20.998435], - [149.128642, -21.006634], - [149.122743, -21.033304], - [149.131763, -21.031464], - [149.132972, -20.996144], - [149.158072, -21.000314], - [149.157542, -21.016234], - [149.170522, -21.042154], - [149.174732, -21.032668], - [149.186722, -21.034064], - [149.205562, -21.076763], - [149.227032, -21.062793], - [149.223252, -21.103103], - [149.231109, -21.109737], - [149.223573, -21.118223], - [149.222753, -21.147693], - [149.209083, -21.131273], - [149.216853, -21.122653], - [149.209433, -21.130033], - [149.196026, -21.125687], - [149.192723, -21.132243], - [149.204033, -21.132753], - [149.199243, -21.137633], - [149.163474, -21.132023], - [149.152814, -21.143013], - [149.172634, -21.134123], - [149.215163, -21.145353], - [149.199823, -21.158963], - [149.192474, -21.182703], - [149.195984, -21.211013], - [149.185574, -21.198633], - [149.173918, -21.198783], - [149.214069, -21.241534], - [149.199274, -21.268113], - [149.181725, -21.274403], - [149.179245, -21.284683], - [149.201364, -21.277253], - [149.189155, -21.294003], - [149.198084, -21.296443], - [149.224904, -21.263713], - [149.255873, -21.244713], - [149.273993, -21.277593], - [149.298663, -21.273292], - [149.291203, -21.318022], - [149.301543, -21.335132], - [149.297233, -21.340672], - [149.315143, -21.354472], - [149.308573, -21.364672], - [149.31185, -21.37425], - [149.318603, -21.369572], - [149.317293, -21.392722], - [149.306444, -21.391423], - [149.302154, -21.400023], - [149.276174, -21.389093], - [149.283194, -21.394693], - [149.276359, -21.400724], - [149.288904, -21.401673], - [149.282184, -21.409603], - [149.295364, -21.415743], - [149.331263, -21.410262], - [149.338223, -21.426922], - [149.335483, -21.432352], - [149.322024, -21.418312], - [149.312554, -21.426832], - [149.297954, -21.426223], - [149.289124, -21.463072], - [149.298454, -21.470812], - [149.274255, -21.477703], - [149.289045, -21.491282], - [149.290455, -21.506842], - [149.300485, -21.511112], - [149.307665, -21.499432], - [149.326874, -21.505092], - [149.309214, -21.496712], - [149.334729, -21.486543], - [149.339589, -21.474553], - [149.357094, -21.496232], - [149.350059, -21.509373], - [149.395788, -21.493103], - [149.373619, -21.535083], - [149.398989, -21.540593], - [149.392779, -21.549993], - [149.400439, -21.560443], - [149.408694, -21.558751], - [149.400444, -21.558961], - [149.400979, -21.549823], - [149.414233, -21.546251], - [149.437813, -21.553781], - [149.444238, -21.577572], - [149.422019, -21.575102], - [149.436898, -21.579872], - [149.432349, -21.584292], - [149.449683, -21.578201], - [149.443393, -21.593361], - [149.453323, -21.581671], - [149.453323, -21.562711], - [149.465008, -21.561192], - [149.457373, -21.555811], - [149.472358, -21.559562], - [149.457713, -21.553101], - [149.468202, -21.534871], - [149.484592, -21.531711], - [149.486188, -21.570652], - [149.477748, -21.571612], - [149.473293, -21.589341], - [149.453473, -21.602891], - [149.438644, -21.639991], - [149.455934, -21.679621], - [149.444764, -21.687921], - [149.452744, -21.688321], - [149.458184, -21.708031], - [149.449284, -21.713171], - [149.470634, -21.708411], - [149.479704, -21.74289], - [149.455057, -21.731123], - [149.439715, -21.743471], - [149.425215, -21.743441], - [149.42165, -21.771692], - [149.430795, -21.745901], - [149.434306, -21.8181], - [149.438966, -21.8104], - [149.458355, -21.8175], - [149.463105, -21.82221], - [149.455936, -21.8301], - [149.471685, -21.83852], - [149.462276, -21.87593], - [149.465736, -21.90254], - [149.459826, -21.90404], - [149.465416, -21.92568], - [149.485256, -21.9585], - [149.490087, -21.9895], - [149.523372, -22.027111], - [149.517052, -22.07532], - [149.543228, -22.134179], - [149.553658, -22.140479], - [149.558938, -22.168229], - [149.566948, -22.171939], - [149.554378, -22.187319], - [149.562268, -22.191469], - [149.574128, -22.233208], - [149.598798, -22.253918], - [149.603203, -22.271639], - [149.597293, -22.281469], - [149.629358, -22.297178], - [149.656283, -22.336049], - [149.658283, -22.354889], - [149.684217, -22.345097], - [149.710507, -22.369737], - [149.713257, -22.356637], - [149.731057, -22.347777], - [149.766696, -22.371347], - [149.746857, -22.386997], - [149.743592, -22.421438], - [149.752103, -22.436384], - [149.774279, -22.41592], - [149.784309, -22.380323], - [149.811071, -22.382068], - [149.849895, -22.416176], - [149.88826, -22.492757], - [149.96283, -22.539457], - [149.991289, -22.586706], - [149.99137, -22.601826], - [150.003914, -22.608705], - [150.018199, -22.639636], - [150.046749, -22.661066], - [150.010519, -22.581976], - [150.002839, -22.530116], - [149.984749, -22.506977], - [149.976789, -22.473387], - [149.912858, -22.342687], - [149.961867, -22.343817], - [149.932098, -22.333577], - [149.971857, -22.329777], - [149.914938, -22.321237], - [149.922368, -22.305077], - [149.915778, -22.295177], - [149.917967, -22.274397], - [149.931137, -22.264297], - [149.955936, -22.185317], - [150.001079, -22.143836], - [150.035524, -22.146437], - [150.030279, -22.136456], - [150.042988, -22.126106], - [150.052448, -22.135446], - [150.059018, -22.132686], - [150.065568, -22.152926], - [150.080833, -22.151857], - [150.099653, -22.212336], - [150.092564, -22.217556], - [150.151598, -22.259825], - [150.157403, -22.304966], - [150.192233, -22.325246], - [150.178843, -22.340896], - [150.177423, -22.360496], - [150.205838, -22.369094], - [150.217108, -22.393924], - [150.293686, -22.403134], - [150.300536, -22.397664], - [150.301027, -22.421344], - [150.322206, -22.426824], - [150.331906, -22.440323], - [150.383866, -22.465443], - [150.40289, -22.481274], - [150.405021, -22.498314], - [150.424345, -22.498903], - [150.435425, -22.508913], - [150.430725, -22.517263], - [150.439275, -22.512443], - [150.44867, -22.534734], - [150.450725, -22.522673], - [150.483905, -22.534313], - [150.497645, -22.560233], - [150.50167, -22.543484], - [150.48868, -22.529174], - [150.4862, -22.521384], - [150.491779, -22.521424], - [150.502094, -22.537953], - [150.544769, -22.561384], - [150.53787, -22.572384], - [150.5148, -22.557444], - [150.522485, -22.567523], - [150.515765, -22.572433], - [150.532524, -22.573123], - [150.53039, -22.581344], - [150.544059, -22.573554], - [150.52984, -22.602304], - [150.538025, -22.598413], - [150.548565, -22.617093], - [150.537365, -22.590183], - [150.547444, -22.576043], - [150.559934, -22.603412], - [150.551534, -22.566492], - [150.562364, -22.564322], - [150.573019, -22.577264], - [150.591803, -22.574782], - [150.588413, -22.559092], - [150.597558, -22.559433], - [150.585279, -22.555244], - [150.581708, -22.545414], - [150.587458, -22.544174], - [150.569588, -22.527184], - [150.568933, -22.504732], - [150.552458, -22.483994], - [150.574145, -22.482119], - [150.556283, -22.477022], - [150.533073, -22.450022], - [150.534573, -22.445182], - [150.590022, -22.464062], - [150.575547, -22.451013], - [150.539083, -22.442962], - [150.539942, -22.426962], - [150.556417, -22.430584], - [150.541432, -22.422692], - [150.544817, -22.408894], - [150.529952, -22.402422], - [150.539347, -22.351894], - [150.561946, -22.316763], - [150.604135, -22.335093], - [150.62591, -22.327672], - [150.64579, -22.345502], - [150.640065, -22.363963], - [150.617505, -22.347693], - [150.6425, -22.379642], - [150.623376, -22.388433], - [150.615216, -22.381843], - [150.618636, -22.389643], - [150.610936, -22.388893], - [150.630696, -22.399413], - [150.64387, -22.391262], - [150.65778, -22.414242], - [150.650201, -22.421522], - [150.627986, -22.421043], - [150.646286, -22.423983], - [150.627336, -22.441673], - [150.65529, -22.422112], - [150.650306, -22.439003], - [150.666336, -22.454103], - [150.661376, -22.419463], - [150.672305, -22.402503], - [150.650465, -22.368993], - [150.667129, -22.346542], - [150.680935, -22.366263], - [150.678459, -22.374691], - [150.687049, -22.377111], - [150.693215, -22.430603], - [150.716555, -22.443822], - [150.753324, -22.446292], - [150.747379, -22.453011], - [150.758515, -22.468872], - [150.748255, -22.477502], - [150.74088, -22.473381], - [150.730955, -22.485062], - [150.723931, -22.518601], - [150.697536, -22.506053], - [150.696196, -22.489583], - [150.685971, -22.492441], - [150.678336, -22.473233], - [150.671906, -22.472853], - [150.681416, -22.484753], - [150.673656, -22.482333], - [150.674301, -22.494732], - [150.644267, -22.474283], - [150.673771, -22.501042], - [150.664957, -22.508883], - [150.667047, -22.522543], - [150.688867, -22.544663], - [150.679552, -22.573452], - [150.685717, -22.577683], - [150.681407, -22.567843], - [150.691721, -22.553582], - [150.717236, -22.553633], - [150.724826, -22.563153], - [150.718972, -22.600202], - [150.732174, -22.623428], - [150.714551, -22.633365], - [150.715323, -22.623442], - [150.694127, -22.606373], - [150.707253, -22.636196], - [150.727109, -22.633811], - [150.733302, -22.641393], - [150.728307, -22.633119], - [150.736141, -22.623572], - [150.748397, -22.635896], - [150.758852, -22.626706], - [150.748735, -22.633605], - [150.738273, -22.624083], - [150.751641, -22.621591], - [150.743647, -22.617273], - [150.741311, -22.603831], - [150.748526, -22.610123], - [150.752966, -22.604593], - [150.740966, -22.600573], - [150.742876, -22.587843], - [150.748196, -22.591483], - [150.744116, -22.584923], - [150.753556, -22.589483], - [150.748401, -22.580311], - [150.75604, -22.57695], - [150.762627, -22.552274], - [150.774148, -22.552404], - [150.756248, -22.539397], - [150.754424, -22.523769], - [150.783941, -22.529159], - [150.789315, -22.536857], - [150.780256, -22.545318], - [150.790639, -22.555007], - [150.784333, -22.555674], - [150.779138, -22.577601], - [150.777735, -22.638967], - [150.786458, -22.650021], - [150.80373, -22.646849], - [150.804404, -22.671503], - [150.812327, -22.679697], - [150.835158, -22.684207], - [150.821845, -22.715349], - [150.825062, -22.730958], - [150.812284, -22.749195], - [150.805956, -22.791219], - [150.815439, -22.798389], - [150.806843, -22.804534], - [150.810789, -22.817808], - [150.803827, -22.815856], - [150.796933, -22.82527], - [150.789701, -22.865746], - [150.786974, -22.922219], - [150.799992, -22.933073], - [150.777351, -22.961919], - [150.771499, -23.055917], - [150.749647, -23.128814], - [150.774816, -23.165245], - [150.794481, -23.162962], - [150.792261, -23.175039], - [150.799901, -23.18291], - [150.793094, -23.187063], - [150.791628, -23.208575], - [150.787931, -23.201702], - [150.798692, -23.227819], - [150.819339, -23.221535], - [150.82139, -23.235928], - [150.828377, -23.236169], - [150.825005, -23.280195], - [150.789579, -23.309769], - [150.767831, -23.303035], - [150.775645, -23.323231], - [150.792315, -23.321955], - [150.799482, -23.339702], - [150.793388, -23.336312], - [150.790968, -23.357574], - [150.810145, -23.406846], - [150.871371, -23.480594], - [150.860914, -23.502002], - [150.850034, -23.506892], - [150.79615, -23.501093], - [150.789945, -23.510082], - [150.878143, -23.552292], - [150.876483, -23.565282], - [150.834244, -23.553782], - [150.833894, -23.562492], - [150.866233, -23.575472], - [150.857223, -23.620772], - [150.874813, -23.576802], - [150.934553, -23.543952], - [150.959092, -23.553452], - [150.959182, -23.598612], - [150.932532, -23.609672], - [150.92531, -23.622773], - [150.968042, -23.605122], - [150.975392, -23.555412], - [151.026551, -23.572012], - [151.037969, -23.623571], - [151.041751, -23.619812], - [151.046681, -23.629691], - [151.040249, -23.636971], - [151.047795, -23.629886], - [151.068466, -23.638407], - [151.084687, -23.647362], - [151.079727, -23.653631], - [151.085843, -23.648383], - [151.092258, -23.654291], - [151.086404, -23.657055], - [151.097211, -23.658864], - [151.088649, -23.660247], - [151.109457, -23.661357], - [151.121765, -23.671403], - [151.134643, -23.698387], - [151.111054, -23.696442], - [151.117694, -23.700295], - [151.109567, -23.704094], - [151.124057, -23.704255], - [151.123751, -23.713047], - [151.132696, -23.70731], - [151.151126, -23.72841], - [151.159405, -23.74761], - [151.144189, -23.770023], - [151.17292, -23.815879], - [151.191392, -23.821402], - [151.192115, -23.831685], - [151.193076, -23.825214], - [151.236605, -23.817992], - [151.244858, -23.826859], - [151.235699, -23.82016], - [151.232966, -23.830597], - [151.271431, -23.83732], - [151.278032, -23.854385], - [151.296245, -23.853841], - [151.29762, -23.860351], - [151.318017, -23.85459], - [151.315069, -23.882733], - [151.302712, -23.873515], - [151.304569, -23.900085], - [151.324134, -23.875064], - [151.354824, -23.935767], - [151.366421, -23.93744], - [151.426636, -23.987175], - [151.429165, -24.023516], - [151.435432, -24.026444], - [151.424559, -24.04602], - [151.435346, -24.058123], - [151.437907, -24.076862], - [151.447977, -24.062355], - [151.442315, -24.058465], - [151.448235, -24.047253], - [151.440366, -24.035194], - [151.443492, -24.026038], - [151.457268, -24.037436], - [151.455317, -24.056819], - [151.460416, -24.064995], - [151.46195, -24.05505], - [151.466803, -24.059308], - [151.465782, -24.071957], - [151.47178, -24.07282], - [151.471903, -24.063899], - [151.48053, -24.064534], - [151.484324, -24.07471], - [151.493784, -24.067012], - [151.479508, -24.060672], - [151.474802, -24.033643], - [151.470354, -24.038215], - [151.441582, -24.015814], - [151.440501, -23.992033], - [151.467554, -23.994732], - [151.543937, -24.029292], - [151.544387, -24.037532], - [151.526828, -24.035102], - [151.501059, -24.045001], - [151.526838, -24.060272], - [151.517318, -24.070282], - [151.524738, -24.088932], - [151.547727, -24.089352], - [151.545417, -24.113282], - [151.552067, -24.110252], - [151.552807, -24.081702], - [151.555147, -24.109132], - [151.559857, -24.099782], - [151.563632, -24.111411], - [151.560467, -24.073602], - [151.580087, -24.087102], - [151.575937, -24.077602], - [151.555317, -24.069972], - [151.564917, -24.036932], - [151.573657, -24.035722], - [151.582697, -24.049862], - [151.610386, -24.042502], - [151.621031, -24.05505], - [151.634676, -24.055782], - [151.645036, -24.080412], - [151.65195, -24.07365], - [151.657295, -24.090502], - [151.665305, -24.084652], - [151.671165, -24.098552], - [151.67551, -24.0885], - [151.67826, -24.1103], - [151.682465, -24.104111], - [151.684115, -24.088881], - [151.664655, -24.060492], - [151.685655, -24.067321], - [151.677475, -24.049582], - [151.669105, -24.051932], - [151.651965, -24.032242], - [151.637586, -24.032872], - [151.64683, -24.02758], - [151.632866, -24.011302], - [151.634283, -24.004774], - [151.630156, -24.013102], - [151.604366, -24.008841], - [151.610556, -23.979251], - [151.644285, -23.977381], - [151.67305, -23.98938], - [151.697639, -24.01158], - [151.730299, -24.022499], - [151.704559, -24.03982], - [151.711524, -24.052371], - [151.702789, -24.05641], - [151.715804, -24.058141], - [151.720819, -24.06898], - [151.715844, -24.087261], - [151.732154, -24.061911], - [151.725309, -24.0498], - [151.738344, -24.046791], - [151.741424, -24.042291], - [151.734919, -24.04192], - [151.744894, -24.032021], - [151.738409, -24.003259], - [151.753378, -24.018399], - [151.764638, -24.015229], - [151.767938, -24.060169], - [151.786728, -24.117659], - [151.771478, -24.129529], - [151.784248, -24.124319], - [151.785098, -24.129399], - [151.784748, -24.121949], - [151.793108, -24.126259], - [151.804748, -24.145809], - [151.840618, -24.170699], - [151.821308, -24.165369], - [151.835928, -24.176899], - [151.875817, -24.171549], - [151.849138, -24.218469], - [151.878977, -24.193679], - [151.869007, -24.189599], - [151.882817, -24.175509], - [151.886317, -24.149438], - [151.906147, -24.208049], - [151.920427, -24.210888], - [151.943407, -24.240148], - [152.005857, -24.433677], - [152.040527, -24.497587], - [152.057576, -24.511996], - [152.044022, -24.52505], - [152.058583, -24.517771], - [152.064714, -24.52219], - [152.092274, -24.566083], - [152.148304, -24.626559], - [152.206262, -24.657206], - [152.274277, -24.711928], - [152.347777, -24.738073], - [152.33365, -24.743637], - [152.365042, -24.736684], - [152.346558, -24.732477], - [152.37888, -24.732047], - [152.396717, -24.75063], - [152.391174, -24.747755], - [152.377633, -24.768278], - [152.38135, -24.796634], - [152.384354, -24.763064], - [152.412788, -24.757738], - [152.421184, -24.775327], - [152.468174, -24.816086], - [152.494549, -24.916321], - [152.486776, -24.93045], - [152.486069, -24.970557], - [152.550688, -25.073693], - [152.542139, -25.069324], - [152.533094, -25.078387], - [152.536084, -25.0811], - [152.533678, -25.089609], - [152.546227, -25.073848], - [152.577064, -25.119009], - [152.633032, -25.151782], - [152.617739, -25.173267], - [152.577962, -25.166879], - [152.555448, -25.171668], - [152.540259, -25.190003], - [152.54703, -25.205], - [152.548334, -25.188253], - [152.557037, -25.182103], - [152.614968, -25.183275], - [152.649715, -25.227158], - [152.644218, -25.233911], - [152.651022, -25.229992], - [152.663543, -25.244018], - [152.722444, -25.26961], - [152.806173, -25.264371], - [152.804595, -25.247609], - [152.81388, -25.243491], - [152.827847, -25.247807], - [152.834364, -25.276345], - [152.85972, -25.283695], - [152.899632, -25.280881], - [152.914399, -25.293372], - [152.901449, -25.314013], - [152.917988, -25.363276], - [152.909563, -25.378182], - [152.924357, -25.430789], - [152.909435, -25.418816], - [152.896511, -25.418902], - [152.889863, -25.426966], - [152.908245, -25.429336], - [152.871627, -25.443527], - [152.850713, -25.484874], - [152.823736, -25.494003], - [152.84854, -25.498311], - [152.885249, -25.461935], - [152.927981, -25.447936], - [152.934231, -25.431864], - [152.956344, -25.433649], - [152.948351, -25.451845], - [152.941699, -25.451856], - [152.946577, -25.461248], - [152.926372, -25.469691], - [152.896595, -25.498879], - [152.895778, -25.504799], - [152.903208, -25.500974], - [152.90995, -25.529443], - [152.897264, -25.533855], - [152.902572, -25.541591], - [152.875293, -25.556387], - [152.861913, -25.553437], - [152.87792, -25.561303], - [152.877635, -25.56632], - [152.883284, -25.562123], - [152.884657, -25.568976], - [152.880632, -25.575447], - [152.877291, -25.572368], - [152.875166, -25.609736], - [152.89211, -25.617972], - [152.901161, -25.646862], - [152.896449, -25.658074], - [152.911482, -25.674799], - [152.883661, -25.673677], - [152.878424, -25.683629], - [152.920244, -25.70634], - [152.907195, -25.728034], - [152.916792, -25.733561], - [152.912192, -25.73846], - [152.937548, -25.744364], - [152.937109, -25.759688], - [152.95667, -25.757463], - [152.97329, -25.7623], - [152.976007, -25.771169], - [152.971981, -25.79412], - [152.950656, -25.801675], - [152.939799, -25.795193], - [152.936701, -25.815048], - [152.941105, -25.819768], - [152.949192, -25.81844], - [152.944386, -25.810479], - [152.978301, -25.809483], - [152.983162, -25.824584], - [152.987162, -25.803433], - [153.020496, -25.829565], - [153.025888, -25.852149], - [153.015011, -25.8538], - [153.016583, -25.865548], - [152.993584, -25.881116], - [153.010355, -25.877364], - [153.009254, -25.885447], - [153.022094, -25.866297], - [153.031811, -25.877608], - [153.029973, -25.888788], - [153.025816, -25.896685], - [153.019815, -25.891322], - [153.003841, -25.899235], - [153.009335, -25.903938], - [153.001382, -25.907307], - [153.016418, -25.903843], - [153.006708, -25.917686], - [153.015653, -25.930923], - [152.997193, -25.934884], - [153.031298, -25.934041], - [152.998456, -25.953359], - [153.003359, -25.961146], - [153.009004, -25.956614], - [152.999139, -25.969023], - [153.007302, -25.968118], - [153.005557, -25.981332], - [153.016279, -25.982746], - [153.011199, -25.990006], - [153.016521, -25.99732], - [153.018696, -25.986753], - [153.026671, -25.987973], - [153.01478, -25.976872], - [153.031164, -25.978048], - [153.023982, -25.959046], - [153.03005, -25.955821], - [153.039089, -25.969612], - [153.042294, -25.95106], - [153.03225, -25.946145], - [153.040705, -25.935971], - [153.049083, -25.944123], - [153.046251, -25.931613], - [153.056353, -25.931338], - [153.027653, -25.922316], - [153.024576, -25.908171], - [153.034727, -25.905047], - [153.029748, -25.911331], - [153.037302, -25.912291], - [153.0514, -25.898159], - [153.050271, -25.908878], - [153.058282, -25.914447], - [153.052986, -25.906195], - [153.057335, -25.887497], - [153.066124, -25.885597], - [153.061091, -25.871078], - [153.047323, -25.861882], - [153.046452, -25.849378], - [153.054275, -25.827039], - [153.071615, -25.822673], - [153.046437, -25.808007], - [153.072249, -25.811775], - [153.085906, -25.888748], - [153.119893, -25.933571], - [153.161979, -25.949801], - [153.176516, -25.945843], - [153.182262, -25.928339], - [153.192335, -25.932922], - [153.152157, -26.006326], - [153.113189, -26.10351], - [153.076557, -26.224779], - [153.061367, -26.313167], - [153.063427, -26.346903], - [153.077224, -26.379318], - [153.092898, -26.386399], - [153.107715, -26.376908], - [153.119947, -26.379249], - [153.091911, -26.51765], - [153.102645, -26.546541], - [153.098687, -26.642594], - [153.108823, -26.670734], - [153.127094, -26.683675], - [153.139398, -26.679196], - [153.136998, -26.773419], - [153.151353, -26.802186], - [153.124729, -26.806371], - [153.11943, -26.833292], - [153.109102, -26.841653], - [153.112183, -26.869574], - [153.102459, -26.881422], - [153.094822, -26.878696], - [153.10171, -26.883961], - [153.092061, -26.895315], - [153.083224, -26.894516], - [153.069828, -26.908013], - [153.061082, -26.892914], - [153.061998, -26.928299], - [153.043135, -26.946226], - [153.06636, -26.965067], - [153.065016, -26.976283], - [153.043374, -26.969362], - [153.045258, -26.985946], - [153.024597, -26.988098], - [153.060155, -26.988809], - [153.075697, -27.017376], - [153.085032, -27.016644], - [153.083213, -27.028424], - [153.100416, -27.032684], - [153.111963, -27.051015], - [153.107325, -27.057968], - [153.096659, -27.053288], - [153.100203, -27.062537], - [153.110051, -27.06225], - [153.0989, -27.063962], - [153.126057, -27.062782], - [153.144158, -27.075363], - [153.132981, -27.085943], - [153.099109, -27.090624], - [153.066494, -27.110509], - [153.043352, -27.149381], - [153.035471, -27.148811], - [153.037897, -27.127727], - [153.022017, -27.124097], - [153.035161, -27.131197], - [153.033133, -27.153997], - [153.043356, -27.156184], - [153.030614, -27.158517], - [153.036581, -27.165439], - [153.029627, -27.18267], - [153.037481, -27.196644], - [153.088845, -27.206278], - [153.106349, -27.19087], - [153.116631, -27.19826], - [153.117923, -27.233565], - [153.107842, -27.261695], - [153.092921, -27.255942], - [153.077528, -27.262641], - [153.068411, -27.247135], - [153.075715, -27.227985], - [153.053859, -27.230291], - [153.077877, -27.264359], - [153.063699, -27.283303], - [153.069598, -27.313956], - [153.086758, -27.325287], - [153.082602, -27.333821], - [153.094306, -27.343033], - [153.155628, -27.362939], - [153.160525, -27.377412], - [153.146237, -27.387932], - [153.150412, -27.394649], - [153.141523, -27.415904], - [153.109678, -27.438948], - [153.090074, -27.445666], - [153.049781, -27.440183], - [153.053307, -27.460432], - [153.053493, -27.442264], - [153.088144, -27.450227], - [153.110598, -27.443217], - [153.142465, -27.421564], - [153.154775, -27.401874], - [153.165017, -27.400598], - [153.15799, -27.39194], - [153.1773, -27.362169], - [153.191259, -27.367309], - [153.179168, -27.383072], - [153.183347, -27.393561], - [153.165137, -27.397288], - [153.174157, -27.407389], - [153.173696, -27.415885], - [153.167551, -27.413546], - [153.175427, -27.440383], - [153.191389, -27.450929], - [153.189305, -27.459984], - [153.192153, -27.451931], - [153.194716, -27.456362], - [153.188581, -27.475775], - [153.194586, -27.478986], - [153.201022, -27.47278], - [153.207301, -27.481805], - [153.231516, -27.481781], - [153.241007, -27.46503], - [153.241638, -27.480719], - [153.260585, -27.484399], - [153.261627, -27.516181], - [153.290715, -27.510992], - [153.277905, -27.540517], - [153.281099, -27.549513], - [153.290254, -27.565182], - [153.307839, -27.565002], - [153.305318, -27.57489], - [153.317869, -27.581545], - [153.297344, -27.594969], - [153.311751, -27.621266], - [153.315098, -27.63942], - [153.308149, -27.656447], - [153.320757, -27.674298], - [153.315871, -27.679951], - [153.323032, -27.700306], - [153.30149, -27.70676], - [153.293164, -27.69175], - [153.298842, -27.710656], - [153.318216, -27.711817], - [153.327968, -27.697024], - [153.3481, -27.695121], - [153.356505, -27.711694], - [153.383078, -27.708796], - [153.369041, -27.703081], - [153.366158, -27.693146], - [153.378633, -27.674634], - [153.366053, -27.670557], - [153.367568, -27.648676], - [153.401058, -27.644826], - [153.402865, -27.634174], - [153.415913, -27.641576], - [153.388259, -27.657371], - [153.397494, -27.696919], - [153.385484, -27.708533], - [153.392498, -27.707768], - [153.412276, -27.740923], - [153.439283, -27.73576], - [153.426636, -27.778544], - [153.384271, -27.784379], - [153.385483, -27.785974], - [153.406446, -27.782969], - [153.411637, -27.790509], - [153.394902, -27.818661], - [153.373671, -27.814022], - [153.39207, -27.794167], - [153.390442, -27.792498], - [153.391554, -27.793961], - [153.381539, -27.801307], - [153.371244, -27.800938], - [153.381149, -27.801654], - [153.373182, -27.807325], - [153.370365, -27.800907], - [153.366521, -27.800769], - [153.371704, -27.817867], - [153.385794, -27.829136], - [153.377288, -27.835064], - [153.376473, -27.845482], - [153.392663, -27.839186], - [153.385722, -27.840543], - [153.381797, -27.834071], - [153.395478, -27.831592], - [153.39643, -27.83845], - [153.393036, -27.839113], - [153.395584, -27.86419], - [153.398364, -27.857462], - [153.401922, -27.863237], - [153.39515, -27.872758], - [153.40019, -27.872353], - [153.40012, -27.868649], - [153.410678, -27.870379], - [153.400363, -27.88155], - [153.400211, -27.873449], - [153.396297, -27.886195], - [153.407553, -27.907035], - [153.410302, -27.954956], - [153.421129, -27.974506], - [153.41898, -27.982992], - [153.427548, -27.971494], - [153.421281, -27.940901], - [153.434598, -27.934002], - [153.429127, -27.938144], - [153.431462, -28.002705], - [153.450361, -28.083606], - [153.477935, -28.125574], - [153.486379, -28.125653], - [153.514318, -28.161019], - [153.55214, -28.164275], - [153.534643, -28.17763], - [153.476931, -28.15702], - [153.457134, -28.18054], - [153.4356, -28.187207], - [153.40661, -28.210415], - [153.389527, -28.234935], - [153.356812, -28.249619], - [153.33518, -28.248412], - [153.330213, -28.237064], - [153.278912, -28.233636], - [153.262409, -28.246788], - [153.245848, -28.245832], - [153.231833, -28.26511], - [153.178049, -28.247458], - [153.174911, -28.274777], - [153.161067, -28.279824], - [153.168505, -28.294163], - [153.154794, -28.295691], - [153.143405, -28.311993], - [153.124665, -28.318641], - [153.12989, -28.330665], - [153.108829, -28.357543], - [153.04606, -28.339455], - [153.008199, -28.341717], - [152.972614, -28.331853], - [152.933856, -28.338311], - [152.880013, -28.309607], - [152.831138, -28.320265], - [152.804226, -28.353594], - [152.775455, -28.346625], - [152.751062, -28.363914], - [152.72288, -28.344096], - [152.679339, -28.330416], - [152.667228, -28.311752], - [152.638288, -28.310997], - [152.624513, -28.298204], - [152.614517, -28.269555], - [152.600303, -28.283836], - [152.6017, -28.307381], - [152.579242, -28.338976], - [152.568635, -28.323575], - [152.556437, -28.323355], - [152.555508, -28.316663], - [152.548142, -28.321019], - [152.525981, -28.30625], - [152.534221, -28.262631], - [152.508643, -28.249249], - [152.463586, -28.259373], - [152.442877, -28.290442], - [152.444831, -28.298822], - [152.414572, -28.298101], - [152.409517, -28.315734], - [152.417259, -28.333089], - [152.38616, -28.368554], - [152.355946, -28.361197], - [152.341582, -28.36786], - [152.309659, -28.363168], - [152.288432, -28.393151], - [152.267606, -28.390047], - [152.217189, -28.449236], - [152.190266, -28.433948], - [152.184519, -28.438872], - [152.160504, -28.433123], - [152.121134, -28.462669], - [152.0702, -28.468003], - [152.067033, -28.48559], - [152.045672, -28.494966], - [152.016864, -28.525281], - [151.988951, -28.525613], - [151.982893, -28.503395], - [151.955645, -28.518904], - [151.957677, -28.563409], - [151.985979, -28.581498], - [151.990804, -28.6244], - [152.010168, -28.664951], - [152.03915, -28.664448], - [152.052567, -28.68194], - [152.066354, -28.680968], - [152.066079, -28.697454], - [152.076049, -28.708175], - [152.042726, -28.731623], - [152.047714, -28.740329], - [152.036326, -28.756992], - [152.041726, -28.778581], - [152.034743, -28.79071], - [152.037291, -28.819231], - [152.017057, -28.838514], - [152.015064, -28.850626], - [152.025956, -28.858253], - [152.036909, -28.851794], - [152.038126, -28.864696], - [152.009703, -28.907663], - [152.00109, -28.90973], - [151.997593, -28.895483], - [151.968198, -28.916567], - [151.916048, -28.929307], - [151.900358, -28.914966], - [151.849363, -28.90785], - [151.837909, -28.916547], - [151.839557, -28.942665], - [151.832232, -28.959829], - [151.813804, -28.959374], - [151.806394, -28.944636], - [151.777834, -28.959885], - [151.770227, -28.955846], - [151.772735, -28.938251], - [151.743471, -28.918646], - [151.73386, -28.871578], - [151.706536, -28.871784], - [151.674758, -28.907595], - [151.644389, -28.916839], - [151.634688, -28.929234], - [151.609616, -28.923279], - [151.577091, -28.945031], - [151.566806, -28.941731], - [151.545566, -28.952998], - [151.536094, -28.980619], - [151.49823, -29.019909], - [151.49149, -29.056244], - [151.502292, -29.070805], - [151.486066, -29.088818], - [151.463025, -29.098943], - [151.451744, -29.126859], - [151.428307, -29.147477], - [151.410638, -29.152566], - [151.393784, -29.177893], - [151.33931, -29.177266], - [151.314762, -29.165531], - [151.308844, -29.147526], - [151.315471, -29.134499], - [151.279649, -29.100769], - [151.275509, -29.077791], - [151.288861, -29.050251], - [151.284865, -29.037356], - [151.271058, -29.030275], - [151.283956, -29.005871], - [151.276414, -28.986967], - [151.282556, -28.980593], - [151.272148, -28.973172], - [151.28234, -28.95408], - [151.274808, -28.938926], - [151.243908, -28.924297], - [151.234722, -28.904656], - [151.208752, -28.90147], - [151.200196, -28.884349], - [151.132965, -28.860242], - [151.1044, -28.844291], - [151.102759, -28.836369], - [151.083206, -28.83438], - [151.054835, -28.849373], - [151.045321, -28.844482], - [151.037362, -28.827649], - [151.041903, -28.799153], - [151.024763, -28.793127], - [151.019308, -28.772049], - [151.028963, -28.770497], - [151.028277, -28.761415], - [151.01065, -28.740805], - [150.938189, -28.730938], - [150.930908, -28.705519], - [150.906384, -28.687706], - [150.874008, -28.693797], - [150.848417, -28.673119], - [150.819279, -28.666631], - [150.818847, -28.657336], - [150.795757, -28.655236], - [150.752343, -28.633464], - [150.728255, -28.63449], - [150.708625, -28.651951], - [150.681695, -28.661351], - [150.6734, -28.65018], - [150.632541, -28.676572], - [150.625827, -28.668979], - [150.600191, -28.670758], - [150.580641, -28.655465], - [150.561392, -28.661817], - [150.554094, -28.653064], - [150.548167, -28.658494], - [150.552333, -28.668026], - [150.544079, -28.671524], - [150.527008, -28.668879], - [150.5392, -28.660519], - [150.525002, -28.654311], - [150.51481, -28.661759], - [150.487084, -28.657421], - [150.460085, -28.668912], - [150.445551, -28.665141], - [150.429277, -28.651122], - [150.415222, -28.650834], - [150.413973, -28.633892], - [150.401823, -28.627281], - [150.387879, -28.633924], - [150.387493, -28.625354], - [150.370045, -28.62068], - [150.363767, -28.60751], - [150.369675, -28.598511], - [150.352542, -28.587759], - [150.3513, -28.575348], - [150.327556, -28.571045], - [150.320591, -28.557182], - [150.289648, -28.537157], - [150.236053, -28.55381], - [150.238805, -28.559711], - [150.230399, -28.555713], - [150.229074, -28.567687], - [150.213149, -28.567549], - [150.212287, -28.574181], - [150.192465, -28.566742], - [150.186688, -28.572795], - [150.186598, -28.565211], - [150.17789, -28.563474], - [150.182694, -28.556287], - [150.171551, -28.56389], - [150.169233, -28.550587], - [150.15409, -28.557155], - [150.15228, -28.55021], - [150.138555, -28.565316], - [150.121475, -28.559734], - [150.110908, -28.570297], - [150.091932, -28.564239], - [150.092923, -28.578618], - [150.085176, -28.575843], - [150.079904, -28.584396], - [150.073281, -28.576562], - [150.04874, -28.589196], - [150.045836, -28.582399], - [150.016091, -28.580656], - [149.976953, -28.613464], - [149.950561, -28.60804], - [149.941892, -28.617922], - [149.936331, -28.610132], - [149.917404, -28.608056], - [149.899141, -28.621909], - [149.8623, -28.602199], - [149.844852, -28.610477], - [149.83036, -28.603748], - [149.819292, -28.615843], - [149.811439, -28.605773], - [149.784005, -28.614132], - [149.754943, -28.609441], - [149.74497, -28.618388], - [149.721169, -28.609183], - [149.7039, -28.616464], - [149.709917, -28.620299], - [149.703104, -28.633712], - [149.666654, -28.631859], - [149.674008, -28.624156], - [149.660712, -28.609311], - [149.655991, -28.615489], - [149.647886, -28.61211], - [149.642282, -28.599207], - [149.625491, -28.593342], - [149.610654, -28.60088], - [149.587938, -28.572815], - [149.568553, -28.571079], - [149.552587, -28.580137], - [149.528925, -28.57422], - [149.513949, -28.581674], - [149.502977, -28.574351], - [149.502704, -28.580399], - [149.481514, -28.582818], - [149.474862, -28.593894], - [149.452554, -28.594867], - [149.439518, -28.612053], - [149.442976, -28.620323], - [149.428298, -28.629225], - [149.432856, -28.635031], - [149.426129, -28.650136], - [149.417037, -28.651315], - [149.423022, -28.655209], - [149.405469, -28.675241], - [149.393867, -28.677292], - [149.387389, -28.695803], - [149.358975, -28.68433], - [149.346685, -28.696672], - [149.329862, -28.698194], - [149.317964, -28.714058], - [149.297081, -28.709947], - [149.269197, -28.743452], - [149.262342, -28.734297], - [149.253764, -28.742235], - [149.246912, -28.738899], - [149.224974, -28.764462], - [149.188805, -28.775118], - [149.19236, -28.7806], - [149.179183, -28.802996], - [149.160386, -28.810739], - [149.139757, -28.807197], - [149.143444, -28.822215], - [149.128192, -28.835262], - [149.112444, -28.829575], - [149.103225, -28.838124], - [149.097078, -28.83168], - [149.080762, -28.841801], - [149.080061, -28.858362], - [149.055338, -28.884099], - [149.063984, -28.888645], - [149.058652, -28.910358], - [149.04832, -28.916989], - [149.032686, -28.955958], - [149.009223, -28.956919], - [148.998297, -28.972645], - [148.976321, -28.976413], - [148.958308, -28.999064], - [140.999278, -28.999103], - [140.999394, -25.996376], - [137.999054, -25.996867], - [138.00118, -16.544509], - [138.047224, -16.57832], - [138.116737, -16.648019], - [138.175687, -16.686169], - [138.272896, -16.719388], - [138.323615, -16.750458], - [138.329075, -16.736358], - [138.362114, -16.740338], - [138.427904, -16.777257], - [138.450593, -16.773217], - [138.479513, -16.783607], - [138.471573, -16.775447], - [138.486433, -16.783067], - [138.539991, -16.781957], - [138.628959, -16.767936], - [138.657419, -16.778186], - [138.658579, -16.784176], - [138.650929, -16.778886], - [138.681159, -16.800166], - [138.822848, -16.852805], - [138.844638, -16.867985], - [138.880648, -16.877314], - [138.883798, -16.884774], - [138.915967, -16.876014], - [138.945167, -16.888944], - [138.979207, -16.887294], - [139.038676, -16.912443], - [139.034787, -16.927983], - [139.043217, -16.950193], - [139.079236, -16.977793], - [139.086716, -16.998513], - [139.157926, -17.029233], - [139.140556, -17.078693], - [139.155047, -17.163892], - [139.201159, -17.270472], - [139.23767, -17.319781], - [139.3058, -17.364841], - [139.34151, -17.37458], - [139.41741, -17.3746], - [139.45049, -17.39383], - [139.436441, -17.42251], - [139.4525, -17.39551], - [139.4769, -17.400899], - [139.53532, -17.441359], - [139.55236, -17.460479], - [139.550341, -17.468949], - [139.59095, -17.482358], - [139.603281, -17.505418], - [139.64669, -17.538138], - [139.7123, -17.553468], - [139.721619, -17.548398], - [139.751769, -17.563677], - [139.757299, -17.577017], - [139.808928, -17.578087], - [139.821768, -17.570617], - [139.839198, -17.589827], - [139.833888, -17.605417], - [139.845078, -17.604747], - [139.847208, -17.596047], - [139.937737, -17.630976], - [139.948817, -17.673796], - [140.004377, -17.714575], - [140.093435, -17.722545], - [140.199923, -17.702984], - [140.216683, -17.709174], - [140.384571, -17.677883], - [140.44792, -17.641683], - [140.46221, -17.648873], - [140.47918, -17.644873], - [140.565939, -17.601542], - [140.593629, -17.597832], - [140.709837, -17.509932], - [140.735497, -17.512221], - [140.769436, -17.477701], - [140.828396, -17.465341], - [140.828816, -17.455171], - [140.887415, -17.382311], - [140.893405, -17.349411], - [140.900835, -17.348651], - [140.893715, -17.342291], - [140.904994, -17.316241], - [140.899394, -17.302821], - [140.909664, -17.277411], - [140.912554, -17.233131], - [140.925543, -17.198591], - [140.940433, -17.184611], - [140.953912, -17.098541], - [140.962232, -17.092841], - [140.946891, -17.040591], - [140.958021, -16.998141], - [140.97359, -16.969841], - [141.01122, -16.940721], - [141.064849, -16.870241], - [141.082288, -16.803161], - [141.093878, -16.803771], - [141.128817, -16.779761], - [141.204446, -16.69199], - [141.221186, -16.6561], - [141.233035, -16.58798], - [141.251375, -16.55773], - [141.270655, -16.55775], - [141.296484, -16.49621], - [141.304864, -16.45712], - [141.287214, -16.425691], - [141.286073, -16.408171], - [141.320833, -16.342451], - [141.351082, -16.218871], - [141.41237, -16.122771], - [141.43277, -16.074761], - [141.40966, -16.023891], - [141.392669, -15.951202], - [141.373379, -15.916912], - [141.397569, -15.909632], - [141.409308, -15.871292], - [141.434677, -15.657593], - [141.479496, -15.498773], - [141.497286, -15.479172], - [141.541205, -15.351972], - [141.548655, -15.350862], - [141.545115, -15.332542], - [141.569345, -15.296572], - [141.580144, -15.235252], - [141.575594, -15.205402], - [141.580104, -15.212542], - [141.585964, -15.201712], - [141.580264, -15.198752], - [141.632334, -15.161722], - [141.642174, -15.126282], - [141.631654, -15.103872], - [141.641753, -15.075092], - [141.660193, -15.054692], - [141.667143, -15.023522], - [141.663509, -15.003962] - ], - [ - [141.663264, -15.002642], - [141.659633, -14.983102], - [141.652643, -14.973722], - [141.663264, -15.002642] - ], - [ - [153.418782, -27.983775], - [153.414918, -27.999034], - [153.418593, -27.991038], - [153.42641, -27.998556], - [153.428083, -27.9887], - [153.421946, -27.991747], - [153.418782, -27.983775] - ], - [ - [153.384533, -27.873611], - [153.381187, -27.861126], - [153.380745, -27.873915], - [153.384533, -27.873611] - ], - [ - [153.380463, -27.882054], - [153.38024, -27.888522], - [153.351138, -27.890017], - [153.357695, -27.891006], - [153.352334, -27.902052], - [153.342355, -27.894883], - [153.348417, -27.901758], - [153.343328, -27.910546], - [153.348841, -27.91929], - [153.357839, -27.911845], - [153.358452, -27.893345], - [153.381965, -27.891385], - [153.380463, -27.882054] - ], - [ - [153.380611, -27.858976], - [153.379578, -27.855123], - [153.365183, -27.849873], - [153.36759, -27.848937], - [153.360362, -27.84854], - [153.380611, -27.858976] - ], - [ - [153.189041, -27.489295], - [153.18727, -27.491334], - [153.192737, -27.495081], - [153.189041, -27.489295] - ], - [ - [153.053206, -27.470205], - [153.049071, -27.474133], - [153.036853, -27.462407], - [153.035625, -27.465476], - [153.042924, -27.477473], - [153.053158, -27.474863], - [153.053206, -27.470205] - ], - [ - [153.034401, -27.468537], - [153.030055, -27.479401], - [153.016591, -27.467591], - [153.003576, -27.474761], - [152.994671, -27.48996], - [153.0151, -27.492494], - [153.020615, -27.500563], - [153.000384, -27.506686], - [152.997869, -27.514944], - [153.008303, -27.520945], - [153.001187, -27.509937], - [153.023266, -27.50033], - [153.015508, -27.490914], - [152.996449, -27.488859], - [153.005487, -27.475966], - [153.016242, -27.469481], - [153.031672, -27.481851], - [153.034401, -27.468537] - ], - [ - [153.008332, -27.520989], - [152.996948, -27.521667], - [152.970607, -27.504557], - [152.965751, -27.51441], - [152.973545, -27.542577], - [152.938563, -27.525358], - [152.926836, -27.529063], - [152.924928, -27.540832], - [152.903432, -27.544263], - [152.906095, -27.554386], - [152.894252, -27.560344], - [152.900985, -27.566915], - [152.89318, -27.577266], - [152.905339, -27.600726], - [152.89664, -27.601187], - [152.874073, -27.57857], - [152.862014, -27.596959], - [152.855671, -27.595594], - [152.862395, -27.598111], - [152.874271, -27.579575], - [152.895854, -27.601917], - [152.906082, -27.601893], - [152.894645, -27.579249], - [152.902405, -27.566557], - [152.895476, -27.560735], - [152.907246, -27.555607], - [152.904281, -27.544945], - [152.924542, -27.542538], - [152.928825, -27.529015], - [152.940604, -27.528123], - [152.974146, -27.544639], - [152.967828, -27.515666], - [152.972495, -27.505962], - [152.995168, -27.524705], - [153.009663, -27.523049], - [153.008332, -27.520989] - ], - [ - [152.937083, -25.76062], - [152.936869, -25.76809], - [152.941918, -25.765354], - [152.937083, -25.76062] - ], - [ - [152.525074, -25.071108], - [152.523429, -25.068824], - [152.507522, -25.077532], - [152.523325, -25.069521], - [152.525074, -25.071108] - ], - [ - [150.574294, -22.482161], - [150.607817, -22.500843], - [150.587402, -22.487502], - [150.601857, -22.486143], - [150.590708, -22.484483], - [150.593027, -22.475803], - [150.587052, -22.485802], - [150.574294, -22.482161] - ], - [ - [142.594143, -10.889247], - [142.587955, -10.888612], - [142.583365, -10.901272], - [142.588755, -10.889512], - [142.595275, -10.891112], - [142.594143, -10.889247] - ], - [ - [149.451231, -21.729296], - [149.435825, -21.721941], - [149.432715, -21.727041], - [149.451231, -21.729296] - ], - [ - [151.636498, -24.000305], - [151.641625, -24.002631], - [151.638165, -23.996941], - [151.636498, -24.000305] - ] - ], - [ - [ - [143.587838, -13.53238], - [143.585163, -13.517198], - [143.591058, -13.52464], - [143.587838, -13.53238] - ] - ], - [ - [ - [147.420305, -19.321215], - [147.384578, -19.302496], - [147.414341, -19.312627], - [147.420305, -19.321215] - ] - ], - [ - [ - [153.546708, -27.434827], - [153.527186, -27.461592], - [153.480873, -27.580785], - [153.458708, -27.67062], - [153.453997, -27.728758], - [153.438435, -27.733191], - [153.446265, -27.716514], - [153.439943, -27.715469], - [153.432158, -27.728161], - [153.436187, -27.734647], - [153.412751, -27.738998], - [153.392899, -27.707127], - [153.402075, -27.692963], - [153.398836, -27.662602], - [153.421663, -27.642054], - [153.407077, -27.611009], - [153.413532, -27.599202], - [153.412537, -27.511639], - [153.398385, -27.496423], - [153.409129, -27.47601], - [153.423033, -27.470118], - [153.44045, -27.411344], - [153.436199, -27.405505], - [153.432456, -27.411206], - [153.438495, -27.394897], - [153.455838, -27.388291], - [153.483166, -27.415556], - [153.543327, -27.425346], - [153.546708, -27.434827] - ] - ], - [ - [ - [153.468489, -27.028478], - [153.434044, -27.131235], - [153.419661, -27.20357], - [153.41758, -27.274423], - [153.437286, -27.333965], - [153.427959, -27.36364], - [153.41864, -27.35502], - [153.421218, -27.331066], - [153.365502, -27.201245], - [153.373262, -27.176285], - [153.361611, -27.13566], - [153.370134, -27.103027], - [153.3614, -27.061041], - [153.402396, -27.035267], - [153.387805, -27.047619], - [153.407102, -27.040074], - [153.38873, -27.050345], - [153.454481, -27.022003], - [153.468489, -27.028478] - ] - ], - [ - [ - [153.445354, -27.757379], - [153.427189, -27.868386], - [153.42553, -27.923964], - [153.431489, -27.933127], - [153.426455, -27.933921], - [153.418943, -27.92114], - [153.4235, -27.873558], - [153.409414, -27.857256], - [153.406535, -27.83397], - [153.437815, -27.778226], - [153.437091, -27.753164], - [153.445354, -27.757379] - ] - ], - [ - [ - [153.419051, -27.931575], - [153.416219, -27.940147], - [153.411533, -27.931464], - [153.419051, -27.931575] - ] - ], - [ - [ - [153.397645, -27.823099], - [153.390059, -27.82992], - [153.382115, -27.822919], - [153.397645, -27.823099] - ] - ], - [ - [ - [153.390463, -27.620217], - [153.372437, -27.630754], - [153.383042, -27.61585], - [153.390463, -27.620217] - ] - ], - [ - [ - [153.376281, -27.618272], - [153.362416, -27.632403], - [153.346774, -27.622307], - [153.360837, -27.580348], - [153.367779, -27.591278], - [153.360363, -27.61432], - [153.368145, -27.616073], - [153.36825, -27.605871], - [153.376281, -27.618272] - ] - ], - [ - [ - [153.374756, -27.498101], - [153.345019, -27.51423], - [153.336635, -27.498094], - [153.35911, -27.485742], - [153.374756, -27.498101] - ] - ], - [ - [ - [153.361765, -27.683956], - [153.349681, -27.681842], - [153.353855, -27.649222], - [153.361765, -27.683956] - ] - ], - [ - [ - [152.95018, -25.573919], - [152.949924, -25.561256], - [152.95953, -25.560827], - [152.951004, -25.551935], - [152.9887, -25.512107], - [152.993434, -25.484536], - [152.983831, -25.468563], - [152.986802, -25.448296], - [153.007945, -25.411261], - [153.034132, -25.384775], - [153.051422, -25.34532], - [153.039991, -25.276699], - [153.051353, -25.262671], - [153.045751, -25.247605], - [153.051534, -25.244659], - [153.038673, -25.223162], - [152.995353, -25.230323], - [152.992301, -25.220705], - [153.029533, -25.176303], - [153.076841, -25.152851], - [153.160286, -25.083602], - [153.222258, -24.995656], - [153.234004, -24.942465], - [153.226223, -24.912011], - [153.169105, -24.832034], - [153.144138, -24.816753], - [153.118924, -24.815058], - [153.176828, -24.743396], - [153.24973, -24.69762], - [153.264622, -24.697089], - [153.266901, -24.70436], - [153.259634, -24.823713], - [153.270255, -24.893474], - [153.304181, -24.949901], - [153.325286, -24.963937], - [153.350721, -24.963441], - [153.352266, -24.999593], - [153.360352, -25.006351], - [153.18822, -25.370615], - [153.107901, -25.560023], - [153.078329, -25.668662], - [153.089358, -25.757713], - [153.077662, -25.79234], - [153.038935, -25.792544], - [153.015095, -25.769062], - [152.990494, -25.71778], - [152.991996, -25.697164], - [152.982456, -25.676569], - [152.98717, -25.671992], - [152.980329, -25.670686], - [152.983046, -25.660247], - [152.96983, -25.639832], - [152.974675, -25.62468], - [152.961913, -25.605494], - [152.955499, -25.613069], - [152.95587, -25.59886], - [152.959554, -25.601948], - [152.955282, -25.595525], - [152.964234, -25.57668], - [152.956113, -25.589134], - [152.952425, -25.584519], - [152.952676, -25.594422], - [152.942505, -25.585859], - [152.95018, -25.573919] - ] - ], - [ - [ - [153.352586, -27.632497], - [153.347064, -27.638539], - [153.335139, -27.621186], - [153.352586, -27.632497] - ] - ], - [ - [ - [153.341562, -27.605001], - [153.33683, -27.620871], - [153.33344, -27.614301], - [153.341562, -27.605001] - ] - ], - [ - [ - [153.341439, -27.648566], - [153.329074, -27.670436], - [153.322939, -27.651959], - [153.328599, -27.635049], - [153.341439, -27.648566] - ] - ], - [ - [ - [153.339912, -27.690426], - [153.327446, -27.694839], - [153.31959, -27.680217], - [153.326488, -27.677403], - [153.339912, -27.690426] - ] - ], - [ - [ - [153.33877, -27.566762], - [153.335164, -27.574963], - [153.318673, -27.573471], - [153.330106, -27.563115], - [153.33877, -27.566762] - ] - ], - [ - [ - [153.241558, -27.39114], - [153.23913, -27.397299], - [153.225927, -27.391912], - [153.235054, -27.37765], - [153.241558, -27.39114] - ] - ], - [ - [ - [153.207558, -27.081683], - [153.197319, -27.096589], - [153.16572, -27.099444], - [153.155417, -27.072152], - [153.135343, -27.054075], - [153.132554, -27.03628], - [153.099075, -27.013777], - [153.093119, -26.991818], - [153.098616, -26.985759], - [153.079019, -26.972384], - [153.090917, -26.944968], - [153.0752, -26.920269], - [153.077223, -26.91015], - [153.129999, -26.874151], - [153.129951, -26.814082], - [153.130523, -26.872422], - [153.141534, -26.918363], - [153.168082, -27.001748], - [153.207558, -27.081683] - ] - ], - [ - [ - [153.188501, -27.401757], - [153.178023, -27.3967], - [153.183789, -27.39343], - [153.188501, -27.401757] - ] - ], - [ - [ - [153.08553, -27.008147], - [153.077628, -27.0098], - [153.078823, -27.001741], - [153.08553, -27.008147] - ] - ], - [ - [ - [152.993723, -25.334914], - [152.977217, -25.309973], - [152.959055, -25.302812], - [152.943013, -25.272831], - [152.988579, -25.313966], - [152.993723, -25.334914] - ] - ], - [ - [ - [152.969339, -25.477287], - [152.9612, -25.491444], - [152.960351, -25.477359], - [152.969339, -25.477287] - ] - ], - [ - [ - [152.964241, -25.620138], - [152.957638, -25.637489], - [152.952811, -25.616189], - [152.964241, -25.620138] - ] - ], - [ - [ - [152.955833, -25.494834], - [152.935971, -25.522798], - [152.915032, -25.529163], - [152.909266, -25.499854], - [152.942185, -25.478995], - [152.952524, -25.482803], - [152.955833, -25.494834] - ] - ], - [ - [ - [152.949727, -25.558276], - [152.941926, -25.583345], - [152.937963, -25.562785], - [152.949727, -25.558276] - ] - ], - [ - [ - [152.938475, -25.61055], - [152.928925, -25.598976], - [152.931179, -25.586306], - [152.938475, -25.61055] - ] - ], - [ - [ - [152.930181, -25.618306], - [152.927026, -25.624367], - [152.921184, -25.614228], - [152.930181, -25.618306] - ] - ], - [ - [ - [152.927744, -25.583076], - [152.924186, -25.598071], - [152.92036, -25.574699], - [152.927744, -25.583076] - ] - ], - [ - [ - [152.92185, -25.560239], - [152.920682, -25.568012], - [152.91503, -25.562742], - [152.92185, -25.560239] - ] - ], - [ - [ - [152.912179, -25.549367], - [152.906687, -25.563753], - [152.902534, -25.555341], - [152.912179, -25.549367] - ] - ], - [ - [ - [152.903871, -25.570965], - [152.889168, -25.56988], - [152.898518, -25.56008], - [152.903871, -25.570965] - ] - ], - [ - [ - [152.901002, -25.592536], - [152.891518, -25.59461], - [152.888908, -25.579162], - [152.898973, -25.578439], - [152.901002, -25.592536] - ] - ], - [ - [ - [151.664085, -24.047172], - [151.660625, -24.052692], - [151.64886, -24.04452], - [151.664085, -24.047172] - ] - ], - [ - [ - [151.547662, -24.078401], - [151.536212, -24.082191], - [151.541652, -24.074651], - [151.547662, -24.078401] - ] - ], - [ - [ - [151.462018, -24.04397], - [151.459437, -24.05645], - [151.459686, -24.039352], - [151.462018, -24.04397] - ] - ], - [ - [ - [151.439928, -24.047055], - [151.436493, -24.054062], - [151.428035, -24.039902], - [151.434802, -24.036193], - [151.43456, -24.04644], - [151.436791, -24.037108], - [151.439928, -24.047055] - ] - ], - [ - [ - [151.39422, -23.864592], - [151.38926, -23.875615], - [151.373897, -23.881055], - [151.366349, -23.874802], - [151.362915, -23.859744], - [151.370687, -23.842698], - [151.364155, -23.84746], - [151.360707, -23.824056], - [151.353963, -23.818983], - [151.336418, -23.824672], - [151.339784, -23.806141], - [151.328042, -23.798079], - [151.323601, -23.77751], - [151.332707, -23.768365], - [151.332516, -23.754008], - [151.34082, -23.785146], - [151.373704, -23.812615], - [151.39422, -23.864592] - ] - ], - [ - [ - [151.31528, -23.759224], - [151.296673, -23.75396], - [151.290901, -23.759258], - [151.285269, -23.79742], - [151.264781, -23.77791], - [151.276278, -23.764664], - [151.26262, -23.774577], - [151.262505, -23.7588], - [151.274567, -23.75253], - [151.262054, -23.757379], - [151.262094, -23.749114], - [151.252553, -23.75686], - [151.260182, -23.75713], - [151.2589, -23.776659], - [151.245224, -23.779691], - [151.245684, -23.76742], - [151.24196, -23.775067], - [151.245212, -23.79414], - [151.227272, -23.79033], - [151.221974, -23.799438], - [151.214545, -23.79437], - [151.215777, -23.783396], - [151.198446, -23.779682], - [151.172194, -23.745155], - [151.129744, -23.669241], - [151.104231, -23.658133], - [151.103401, -23.649587], - [151.096724, -23.657269], - [151.092083, -23.644795], - [151.047671, -23.622893], - [151.045781, -23.616412], - [151.052181, -23.621582], - [151.053861, -23.615582], - [151.044911, -23.614272], - [151.032541, -23.570402], - [151.012611, -23.553672], - [150.989632, -23.497612], - [150.979467, -23.488793], - [151.013912, -23.473622], - [151.017102, -23.452263], - [151.051631, -23.456172], - [151.047941, -23.452463], - [151.056971, -23.447673], - [151.080941, -23.466642], - [151.071931, -23.473682], - [151.077851, -23.482802], - [151.072741, -23.488362], - [151.08498, -23.487852], - [151.08677, -23.479932], - [151.12569, -23.498932], - [151.12307, -23.490702], - [151.155149, -23.511312], - [151.202419, -23.512072], - [151.199289, -23.520102], - [151.191449, -23.518682], - [151.195519, -23.523402], - [151.182639, -23.520872], - [151.193459, -23.527472], - [151.183689, -23.531252], - [151.193119, -23.530982], - [151.183389, -23.541312], - [151.217398, -23.518422], - [151.218528, -23.503502], - [151.235158, -23.483652], - [151.225618, -23.609492], - [151.248449, -23.656938], - [151.266969, -23.665706], - [151.264228, -23.671256], - [151.27224, -23.662863], - [151.286574, -23.684109], - [151.296245, -23.738597], - [151.31528, -23.759224] - ] - ], - [ - [ - [151.288596, -23.805152], - [151.286117, -23.818702], - [151.281871, -23.801427], - [151.288596, -23.805152] - ] - ], - [ - [ - [151.162989, -23.396661], - [151.156079, -23.405621], - [151.145019, -23.398901], - [151.162989, -23.396661] - ] - ], - [ - [ - [150.994716, -23.181226], - [150.986712, -23.184132], - [150.988037, -23.192356], - [150.977597, -23.18328], - [150.939011, -23.19829], - [150.93178, -23.178545], - [150.934829, -23.168652], - [150.951112, -23.171192], - [150.95624, -23.156287], - [150.975542, -23.148842], - [150.975532, -23.171202], - [150.994716, -23.181226] - ] - ], - [ - [ - [150.975637, -23.215244], - [150.964892, -23.215732], - [150.972552, -23.209152], - [150.975637, -23.215244] - ] - ], - [ - [ - [150.914408, -23.079684], - [150.913228, -23.087584], - [150.901108, -23.079164], - [150.889409, -23.083164], - [150.884619, -23.077424], - [150.892078, -23.054474], - [150.914408, -23.079684] - ] - ], - [ - [ - [150.871819, -23.505923], - [150.864524, -23.517002], - [150.850544, -23.511742], - [150.871819, -23.505923] - ] - ], - [ - [ - [150.865299, -23.527853], - [150.846954, -23.532642], - [150.837854, -23.521162], - [150.865299, -23.527853] - ] - ], - [ - [ - [150.698291, -21.953413], - [150.691421, -21.953504], - [150.690421, -21.967213], - [150.677381, -21.965404], - [150.686121, -21.945934], - [150.698291, -21.953413] - ] - ], - [ - [ - [150.676942, -22.090083], - [150.669862, -22.094403], - [150.669412, -22.082893], - [150.676942, -22.090083] - ] - ], - [ - [ - [150.662604, -22.334683], - [150.660625, -22.339523], - [150.656205, -22.330923], - [150.662604, -22.334683] - ] - ], - [ - [ - [150.647652, -22.008794], - [150.641792, -22.008334], - [150.644912, -22.001774], - [150.647652, -22.008794] - ] - ], - [ - [ - [150.56079, -22.294982], - [150.554526, -22.305104], - [150.544256, -22.299504], - [150.542506, -22.321134], - [150.527506, -22.316634], - [150.529136, -22.324424], - [150.516517, -22.325794], - [150.522997, -22.333504], - [150.510567, -22.340064], - [150.504797, -22.334274], - [150.482958, -22.349334], - [150.475678, -22.335184], - [150.489957, -22.325064], - [150.478482, -22.320653], - [150.500037, -22.303084], - [150.485957, -22.311024], - [150.472637, -22.294924], - [150.463972, -22.301153], - [150.459157, -22.296624], - [150.470567, -22.281264], - [150.482787, -22.278744], - [150.472187, -22.276654], - [150.475472, -22.261113], - [150.500496, -22.269634], - [150.478307, -22.255394], - [150.492306, -22.255474], - [150.486166, -22.243274], - [150.497726, -22.240754], - [150.490056, -22.227524], - [150.474746, -22.232034], - [150.470236, -22.221624], - [150.479211, -22.206573], - [150.518936, -22.224244], - [150.534876, -22.275424], - [150.55255, -22.279932], - [150.56079, -22.294982] - ] - ], - [ - [ - [150.528487, -22.373564], - [150.515397, -22.372124], - [150.520907, -22.366524], - [150.528487, -22.373564] - ] - ], - [ - [ - [150.50043, -22.546404], - [150.498065, -22.554493], - [150.496965, -22.540503], - [150.50043, -22.546404] - ] - ], - [ - [ - [150.465407, -22.247854], - [150.454737, -22.247324], - [150.463372, -22.259213], - [150.443962, -22.274063], - [150.438068, -22.268054], - [150.427463, -22.275733], - [150.429888, -22.288394], - [150.421668, -22.299374], - [150.415543, -22.279583], - [150.442557, -22.254554], - [150.430468, -22.251084], - [150.440702, -22.231533], - [150.464031, -22.225173], - [150.454132, -22.234233], - [150.465407, -22.247854] - ] - ], - [ - [ - [150.450148, -22.314584], - [150.449608, -22.321014], - [150.442518, -22.313624], - [150.450148, -22.314584] - ] - ], - [ - [ - [150.373931, -22.020774], - [150.369171, -22.024234], - [150.359471, -22.013784], - [150.366871, -22.011364], - [150.373931, -22.020774] - ] - ], - [ - [ - [150.364129, -21.720525], - [150.345734, -21.742986], - [150.348159, -21.763955], - [150.338865, -21.769956], - [150.325355, -21.768746], - [150.29978, -21.746385], - [150.31383, -21.739395], - [150.339779, -21.741345], - [150.364129, -21.720525] - ] - ], - [ - [ - [150.350514, -21.667046], - [150.339094, -21.668406], - [150.340044, -21.674376], - [150.325844, -21.658617], - [150.338449, -21.656015], - [150.350514, -21.667046] - ] - ], - [ - [ - [150.323344, -22.235664], - [150.31974, -22.244885], - [150.30357, -22.249705], - [150.29757, -22.243685], - [150.314164, -22.233104], - [150.323344, -22.235664] - ] - ], - [ - [ - [150.301974, -21.664917], - [150.274145, -21.680887], - [150.253435, -21.667817], - [150.24306, -21.675306], - [150.242585, -21.654277], - [150.250415, -21.650997], - [150.24732, -21.619046], - [150.26389, -21.641166], - [150.290874, -21.643787], - [150.301974, -21.664917] - ] - ], - [ - [ - [150.282671, -22.351765], - [150.272352, -22.352345], - [150.261852, -22.371075], - [150.259382, -22.363615], - [150.251002, -22.364555], - [150.273131, -22.347165], - [150.282671, -22.351765] - ] - ], - [ - [ - [150.280543, -21.483377], - [150.272984, -21.490567], - [150.262894, -21.483637], - [150.266488, -21.476826], - [150.280543, -21.483377] - ] - ], - [ - [ - [150.276454, -21.516627], - [150.257514, -21.528507], - [150.245184, -21.517197], - [150.276454, -21.516627] - ] - ], - [ - [ - [150.186054, -21.977925], - [150.178019, -21.982756], - [150.180269, -21.998436], - [150.16875, -22.004146], - [150.151544, -21.971365], - [150.159929, -21.977567], - [150.179144, -21.970035], - [150.186054, -21.977925] - ] - ], - [ - [ - [150.149904, -21.961135], - [150.14265, -21.960847], - [150.143035, -21.980425], - [150.139894, -21.958436], - [150.149904, -21.961135] - ] - ], - [ - [ - [150.139395, -21.998185], - [150.12547, -22.001377], - [150.128085, -21.987656], - [150.139395, -21.998185] - ] - ], - [ - [ - [150.120384, -21.918196], - [150.11828, -21.931267], - [150.108305, -21.932066], - [150.108315, -21.922226], - [150.120384, -21.918196] - ] - ], - [ - [ - [150.040373, -22.111437], - [150.013514, -22.109927], - [150.020694, -22.126907], - [150.008694, -22.128017], - [149.975295, -22.158827], - [149.945206, -22.172048], - [149.933226, -22.152358], - [149.950645, -22.134258], - [149.970075, -22.134027], - [149.978464, -22.117627], - [149.992244, -22.113497], - [150.001074, -22.122257], - [150.001074, -22.105247], - [150.010469, -22.100986], - [150.040373, -22.111437] - ] - ], - [ - [ - [150.019029, -22.620936], - [150.016019, -22.628796], - [150.012739, -22.618846], - [150.019029, -22.620936] - ] - ], - [ - [ - [149.931706, -22.187348], - [149.919657, -22.200488], - [149.925351, -22.175176], - [149.931706, -22.187348] - ] - ], - [ - [ - [149.92999, -22.133736], - [149.920646, -22.154668], - [149.918597, -22.205008], - [149.909107, -22.223548], - [149.896082, -22.234766], - [149.869738, -22.226308], - [149.865953, -22.219087], - [149.879147, -22.206808], - [149.861842, -22.169687], - [149.871547, -22.146748], - [149.869726, -22.118548], - [149.874366, -22.100698], - [149.883196, -22.099418], - [149.881596, -22.067948], - [149.901375, -22.052068], - [149.910245, -22.058238], - [149.904275, -22.076878], - [149.918786, -22.122748], - [149.92999, -22.133736] - ] - ], - [ - [ - [149.917109, -21.506599], - [149.907149, -21.50014], - [149.909249, -21.49256], - [149.917109, -21.506599] - ] - ], - [ - [ - [149.915512, -22.235726], - [149.909877, -22.256048], - [149.898632, -22.260256], - [149.904807, -22.234738], - [149.912887, -22.227258], - [149.915512, -22.235726] - ] - ], - [ - [ - [149.911386, -21.018141], - [149.897586, -21.020951], - [149.894196, -21.004851], - [149.903786, -21.002861], - [149.911386, -21.018141] - ] - ], - [ - [ - [149.90977, -22.474037], - [149.90517, -22.476877], - [149.897945, -22.462916], - [149.90977, -22.474037] - ] - ], - [ - [ - [149.900687, -22.235998], - [149.894552, -22.244246], - [149.888822, -22.237956], - [149.900687, -22.235998] - ] - ], - [ - [ - [149.89653, -21.49786], - [149.888105, -21.499388], - [149.891104, -21.485268], - [149.89653, -21.49786] - ] - ], - [ - [ - [149.894853, -22.256316], - [149.884703, -22.263246], - [149.877633, -22.255037], - [149.894853, -22.256316] - ] - ], - [ - [ - [149.892748, -22.247988], - [149.877008, -22.251448], - [149.874518, -22.238138], - [149.884572, -22.235717], - [149.892748, -22.247988] - ] - ], - [ - [ - [149.88061, -21.993587], - [149.86175, -22.013057], - [149.844036, -22.004219], - [149.88061, -21.993587] - ] - ], - [ - [ - [149.842112, -21.659429], - [149.833932, -21.66221], - [149.831507, -21.647438], - [149.842112, -21.659429] - ] - ], - [ - [ - [149.837414, -21.379099], - [149.833235, -21.383199], - [149.821925, -21.371669], - [149.837414, -21.379099] - ] - ], - [ - [ - [149.818927, -21.605799], - [149.791507, -21.616409], - [149.788652, -21.60922], - [149.780737, -21.612649], - [149.784962, -21.60056], - [149.805862, -21.59091], - [149.818927, -21.605799] - ] - ], - [ - [ - [149.804274, -21.832029], - [149.793214, -21.839349], - [149.793499, -21.830308], - [149.804274, -21.832029] - ] - ], - [ - [ - [149.763432, -22.405678], - [149.753502, -22.411808], - [149.755527, -22.400847], - [149.763432, -22.405678] - ] - ], - [ - [ - [149.717587, -21.45598], - [149.706187, -21.44806], - [149.709967, -21.43899], - [149.717587, -21.45598] - ] - ], - [ - [ - [149.694666, -21.3239], - [149.685572, -21.332441], - [149.663957, -21.31059], - [149.666177, -21.30244], - [149.690581, -21.312211], - [149.694666, -21.3239] - ] - ], - [ - [ - [149.664699, -21.97497], - [149.664029, -21.98186], - [149.657829, -21.9784], - [149.654943, -21.966109], - [149.664699, -21.97497] - ] - ], - [ - [ - [149.653888, -21.9289], - [149.651308, -21.93648], - [149.642548, -21.93192], - [149.653888, -21.9289] - ] - ], - [ - [ - [149.626443, -20.770392], - [149.612939, -20.778103], - [149.622148, -20.760803], - [149.626443, -20.770392] - ] - ], - [ - [ - [149.626129, -20.868733], - [149.617274, -20.884202], - [149.606434, -20.879402], - [149.59673, -20.885163], - [149.57811, -20.869193], - [149.584695, -20.861222], - [149.6057, -20.864983], - [149.603464, -20.846492], - [149.623224, -20.856302], - [149.626129, -20.868733] - ] - ], - [ - [ - [149.588542, -22.13827], - [149.572642, -22.12498], - [149.577227, -22.119209], - [149.588542, -22.13827] - ] - ], - [ - [ - [149.58253, -21.97444], - [149.56622, -21.99205], - [149.558565, -21.987569], - [149.576795, -21.967929], - [149.58253, -21.97444] - ] - ], - [ - [ - [149.50038, -21.829431], - [149.4869, -21.836521], - [149.46902, -21.821731], - [149.485795, -21.81789], - [149.50038, -21.829431] - ] - ], - [ - [ - [149.498568, -21.597772], - [149.493318, -21.605032], - [149.485418, -21.597402], - [149.498568, -21.597772] - ] - ], - [ - [ - [149.483695, -20.741003], - [149.472275, -20.747213], - [149.466275, -20.726713], - [149.483695, -20.741003] - ] - ], - [ - [ - [149.469552, -20.928214], - [149.466927, -20.937362], - [149.464232, -20.925944], - [149.469552, -20.928214] - ] - ], - [ - [ - [149.460697, -20.914972], - [149.451302, -20.934264], - [149.447002, -20.930074], - [149.441893, -20.941254], - [149.432608, -20.937133], - [149.426493, -20.945544], - [149.422453, -20.939184], - [149.435058, -20.927893], - [149.427638, -20.926733], - [149.425488, -20.906803], - [149.446757, -20.902893], - [149.460697, -20.914972] - ] - ], - [ - [ - [149.422713, -20.919684], - [149.418983, -20.926774], - [149.414143, -20.918624], - [149.405488, -20.924243], - [149.385858, -20.904113], - [149.414178, -20.896853], - [149.422713, -20.919684] - ] - ], - [ - [ - [149.412301, -20.772914], - [149.397802, -20.779164], - [149.390066, -20.769333], - [149.412301, -20.772914] - ] - ], - [ - [ - [149.300993, -20.796835], - [149.276558, -20.793444], - [149.273648, -20.778404], - [149.291153, -20.774485], - [149.300993, -20.796835] - ] - ], - [ - [ - [149.289968, -20.809974], - [149.286084, -20.820335], - [149.279784, -20.810395], - [149.264904, -20.823325], - [149.268254, -20.810095], - [149.249279, -20.805914], - [149.274388, -20.796364], - [149.289968, -20.809974] - ] - ], - [ - [ - [149.209084, -20.690576], - [149.203544, -20.698776], - [149.197274, -20.689826], - [149.209084, -20.690576] - ] - ], - [ - [ - [149.193939, -20.671615], - [149.186794, -20.675596], - [149.189194, -20.689206], - [149.172544, -20.672256], - [149.181574, -20.666186], - [149.193939, -20.671615] - ] - ], - [ - [ - [149.178166, -20.247617], - [149.171886, -20.250407], - [149.173006, -20.241187], - [149.178166, -20.247617] - ] - ], - [ - [ - [149.166659, -20.683335], - [149.156454, -20.674447], - [149.158119, -20.683265], - [149.14579, -20.693805], - [149.138505, -20.694717], - [149.136085, -20.686447], - [149.148255, -20.684937], - [149.145509, -20.673485], - [149.154749, -20.662175], - [149.163614, -20.665237], - [149.166659, -20.683335] - ] - ], - [ - [ - [149.157156, -20.237227], - [149.154846, -20.243217], - [149.150576, -20.238927], - [149.157156, -20.237227] - ] - ], - [ - [ - [149.132848, -20.467096], - [149.132283, -20.482017], - [149.120703, -20.469427], - [149.132848, -20.467096] - ] - ], - [ - [ - [149.126855, -20.348028], - [149.124097, -20.35703], - [149.117759, -20.355752], - [149.118181, -20.3438], - [149.126855, -20.348028] - ] - ], - [ - [ - [149.124987, -20.271127], - [149.119157, -20.271557], - [149.123377, -20.264907], - [149.124987, -20.271127] - ] - ], - [ - [ - [149.124414, -20.543977], - [149.118354, -20.542247], - [149.114959, -20.552936], - [149.095989, -20.547206], - [149.112639, -20.537796], - [149.124414, -20.543977] - ] - ], - [ - [ - [149.111722, -20.274368], - [149.111042, -20.287828], - [149.104912, -20.266228], - [149.111722, -20.274368] - ] - ], - [ - [ - [149.104678, -20.481176], - [149.095279, -20.480566], - [149.098289, -20.490736], - [149.082009, -20.484337], - [149.066939, -20.525967], - [149.065174, -20.516248], - [149.043585, -20.522198], - [149.04683, -20.513387], - [149.03672, -20.503027], - [149.04995, -20.509647], - [149.065369, -20.502147], - [149.068674, -20.477368], - [149.075639, -20.481527], - [149.074269, -20.464827], - [149.082334, -20.459778], - [149.074279, -20.451827], - [149.080398, -20.436397], - [149.089288, -20.448847], - [149.084249, -20.459287], - [149.104678, -20.481176] - ] - ], - [ - [ - [149.103562, -20.250888], - [149.101762, -20.266448], - [149.088262, -20.280968], - [149.093412, -20.300868], - [149.084942, -20.304488], - [149.085482, -20.294728], - [149.075233, -20.301178], - [149.077132, -20.293298], - [149.070243, -20.293108], - [149.075582, -20.270188], - [149.089492, -20.265148], - [149.094352, -20.270868], - [149.103562, -20.250888] - ] - ], - [ - [ - [149.089709, -20.522086], - [149.080839, -20.525626], - [149.079169, -20.515797], - [149.089709, -20.522086] - ] - ], - [ - [ - [149.08909, -20.660006], - [149.066665, -20.641137], - [149.055225, -20.618427], - [149.08909, -20.660006] - ] - ], - [ - [ - [149.074593, -20.303888], - [149.070078, -20.309447], - [149.065883, -20.303818], - [149.074593, -20.303888] - ] - ], - [ - [ - [149.064619, -20.453027], - [149.052794, -20.450558], - [149.034049, -20.460247], - [149.024314, -20.441408], - [149.036719, -20.430407], - [149.040079, -20.438137], - [149.052999, -20.436267], - [149.064619, -20.453027] - ] - ], - [ - [ - [149.062018, -20.293457], - [149.046818, -20.309537], - [149.043363, -20.302179], - [149.034643, -20.308699], - [149.032913, -20.300499], - [149.022073, -20.321399], - [148.990261, -20.30076], - [148.978533, -20.313661], - [148.986585, -20.322515], - [148.963191, -20.328759], - [148.962392, -20.303594], - [148.9499, -20.303021], - [148.974867, -20.268843], - [148.968451, -20.265306], - [148.966294, -20.280216], - [148.959159, -20.287995], - [148.957395, -20.280696], - [148.93756, -20.307124], - [148.932188, -20.294449], - [148.923039, -20.295794], - [148.928952, -20.286217], - [148.912699, -20.290958], - [148.91294, -20.2819], - [148.927148, -20.281475], - [148.936299, -20.263722], - [148.942787, -20.268185], - [148.962034, -20.244859], - [148.954794, -20.239519], - [148.958474, -20.227639], - [148.942114, -20.243359], - [148.937944, -20.23961], - [148.939884, -20.22586], - [148.952054, -20.219399], - [148.960263, -20.187339], - [148.955973, -20.15803], - [148.978318, -20.161928], - [148.973203, -20.174369], - [148.983768, -20.185078], - [148.976173, -20.205229], - [148.996058, -20.203178], - [148.991628, -20.250372], - [149.010783, -20.232919], - [149.004478, -20.255478], - [149.025938, -20.234908], - [149.014993, -20.269729], - [149.025338, -20.255418], - [149.040648, -20.284588], - [149.062018, -20.293457] - ] - ], - [ - [ - [149.044232, -20.155939], - [149.036602, -20.164879], - [149.038652, -20.182929], - [149.020662, -20.160819], - [149.036332, -20.159379], - [149.038132, -20.150229], - [149.044232, -20.155939] - ] - ], - [ - [ - [149.036284, -20.397008], - [149.034079, -20.403797], - [149.023064, -20.397438], - [149.036284, -20.397008] - ] - ], - [ - [ - [148.996016, -20.352742], - [148.989086, -20.356558], - [148.990664, -20.349645], - [148.996016, -20.352742] - ] - ], - [ - [ - [148.982644, -20.35187], - [148.977171, -20.364386], - [148.965653, -20.366564], - [148.967053, -20.35298], - [148.956302, -20.361372], - [148.952834, -20.377405], - [148.948581, -20.368537], - [148.955269, -20.356846], - [148.94488, -20.364437], - [148.946392, -20.332614], - [148.958925, -20.347499], - [148.976357, -20.34423], - [148.982644, -20.35187] - ] - ], - [ - [ - [148.967942, -20.06766], - [148.948543, -20.0835], - [148.949993, -20.09252], - [148.959293, -20.09459], - [148.957333, -20.10626], - [148.945423, -20.09375], - [148.937013, -20.1017], - [148.951263, -20.15655], - [148.931544, -20.17826], - [148.930024, -20.13276], - [148.915044, -20.1742], - [148.902224, -20.16612], - [148.915574, -20.12343], - [148.887624, -20.16916], - [148.881699, -20.161629], - [148.884284, -20.12268], - [148.889319, -20.111419], - [148.904124, -20.10991], - [148.911564, -20.10044], - [148.911883, -20.08806], - [148.902224, -20.07958], - [148.906818, -20.071299], - [148.922663, -20.06211], - [148.926433, -20.08167], - [148.926713, -20.07327], - [148.942668, -20.063779], - [148.959347, -20.059799], - [148.967942, -20.06766] - ] - ], - [ - [ - [148.941687, -20.376094], - [148.928113, -20.369498], - [148.927809, -20.337306], - [148.935578, -20.339826], - [148.941687, -20.376094] - ] - ], - [ - [ - [148.929134, -20.318732], - [148.927129, -20.325538], - [148.923918, -20.311178], - [148.929134, -20.318732] - ] - ], - [ - [ - [148.927724, -20.852097], - [148.917864, -20.854737], - [148.917764, -20.847327], - [148.927724, -20.852097] - ] - ], - [ - [ - [148.924298, -20.255996], - [148.921284, -20.271186], - [148.908498, -20.274167], - [148.909994, -20.25755], - [148.924298, -20.255996] - ] - ], - [ - [ - [148.915139, -20.852698], - [148.897579, -20.854978], - [148.891499, -20.829298], - [148.902424, -20.826817], - [148.915139, -20.852698] - ] - ], - [ - [ - [148.898053, -20.05045], - [148.894654, -20.06259], - [148.881, -20.061911], - [148.880974, -20.037], - [148.898053, -20.05045] - ] - ], - [ - [ - [148.882793, -20.601334], - [148.876062, -20.599328], - [148.878675, -20.590579], - [148.882793, -20.601334] - ] - ], - [ - [ - [148.875858, -20.613492], - [148.866008, -20.61901], - [148.864236, -20.607159], - [148.875858, -20.613492] - ] - ], - [ - [ - [148.875368, -20.38524], - [148.875253, -20.394064], - [148.866487, -20.396576], - [148.851674, -20.381613], - [148.844541, -20.335626], - [148.853481, -20.316017], - [148.850643, -20.347399], - [148.875368, -20.38524] - ] - ], - [ - [ - [148.85049, -20.261236], - [148.83977, -20.280417], - [148.826745, -20.285208], - [148.830208, -20.255839], - [148.85049, -20.261236] - ] - ], - [ - [ - [148.829856, -20.23581], - [148.829826, -20.24123], - [148.822706, -20.23823], - [148.810081, -20.214139], - [148.829856, -20.23581] - ] - ], - [ - [ - [148.614098, -20.148852], - [148.600258, -20.152502], - [148.607568, -20.137532], - [148.614098, -20.148852] - ] - ], - [ - [ - [148.576033, -20.101301], - [148.569743, -20.103801], - [148.570723, -20.096471], - [148.576033, -20.101301] - ] - ], - [ - [ - [148.478544, -20.001782], - [148.474689, -20.049703], - [148.457315, -20.051822], - [148.444535, -20.044432], - [148.438, -20.021094], - [148.445214, -19.973952], - [148.457744, -19.974672], - [148.467394, -19.995912], - [148.478544, -20.001782] - ] - ], - [ - [ - [148.294237, -20.031863], - [148.286087, -20.040683], - [148.277657, -20.038033], - [148.282627, -20.026973], - [148.284787, -20.033643], - [148.294237, -20.031863] - ] - ], - [ - [ - [146.883736, -19.1136], - [146.872826, -19.153078], - [146.850816, -19.160137], - [146.846112, -19.18176], - [146.804245, -19.161279], - [146.779033, -19.129171], - [146.789986, -19.115137], - [146.8155, -19.117516], - [146.832454, -19.10483], - [146.849446, -19.117944], - [146.864249, -19.115523], - [146.862175, -19.102522], - [146.883736, -19.1136] - ] - ], - [ - [ - [146.693728, -18.755685], - [146.693758, -18.761905], - [146.687918, -18.757185], - [146.647918, -18.776445], - [146.632788, -18.762605], - [146.616789, -18.764925], - [146.609879, -18.757955], - [146.587109, -18.758495], - [146.579689, -18.770715], - [146.568499, -18.762966], - [146.566909, -18.750546], - [146.576989, -18.749946], - [146.578326, -18.725158], - [146.589049, -18.712046], - [146.572429, -18.677646], - [146.594969, -18.682536], - [146.597889, -18.698226], - [146.619628, -18.707746], - [146.641868, -18.749695], - [146.685337, -18.738215], - [146.693728, -18.755685] - ] - ], - [ - [ - [146.643071, -19.031949], - [146.629061, -19.033123], - [146.633503, -19.02239], - [146.643071, -19.031949] - ] - ], - [ - [ - [146.621541, -19.031736], - [146.59803, -19.035242], - [146.614807, -19.02523], - [146.621541, -19.031736] - ] - ], - [ - [ - [146.567539, -18.670886], - [146.556349, -18.687876], - [146.538559, -18.658106], - [146.547909, -18.652196], - [146.567539, -18.670886] - ] - ], - [ - [ - [146.55102, -18.842345], - [146.54855, -18.848685], - [146.53213, -18.835185], - [146.55102, -18.842345] - ] - ], - [ - [ - [146.52688, -18.672386], - [146.51981, -18.714776], - [146.50861, -18.700016], - [146.51851, -18.684276], - [146.50585, -18.659806], - [146.520559, -18.660766], - [146.52688, -18.672386] - ] - ], - [ - [ - [146.508094, -18.622835], - [146.50335, -18.656076], - [146.489405, -18.667525], - [146.486975, -18.650135], - [146.500069, -18.633606], - [146.483639, -18.614446], - [146.494729, -18.598936], - [146.481289, -18.585416], - [146.484314, -18.567436], - [146.497164, -18.581735], - [146.508094, -18.622835] - ] - ], - [ - [ - [146.505109, -18.554046], - [146.500409, -18.563326], - [146.489009, -18.557826], - [146.490599, -18.539177], - [146.502228, -18.543096], - [146.505109, -18.554046] - ] - ], - [ - [ - [146.237398, -18.282148], - [146.23051, -18.272299], - [146.232619, -18.265509], - [146.244209, -18.266169], - [146.232479, -18.257489], - [146.227819, -18.234449], - [146.216459, -18.227359], - [146.224469, -18.213669], - [146.223009, -18.19458], - [146.231169, -18.197159], - [146.231689, -18.219529], - [146.250529, -18.237119], - [146.274539, -18.239889], - [146.298758, -18.231479], - [146.305528, -18.241969], - [146.285969, -18.271729], - [146.275559, -18.317509], - [146.290009, -18.325618], - [146.306059, -18.355748], - [146.318119, -18.351988], - [146.331399, -18.362348], - [146.339609, -18.380748], - [146.334419, -18.386298], - [146.327309, -18.381458], - [146.32416, -18.400218], - [146.358419, -18.418328], - [146.33632, -18.432278], - [146.323921, -18.486427], - [146.301201, -18.494057], - [146.289691, -18.487417], - [146.247902, -18.488858], - [146.224192, -18.478958], - [146.200902, -18.437418], - [146.206982, -18.397758], - [146.191301, -18.366709], - [146.151691, -18.312989], - [146.101022, -18.28595], - [146.070812, -18.24667], - [146.103791, -18.23443], - [146.127081, -18.23462], - [146.19634, -18.277899], - [146.247, -18.295879], - [146.237973, -18.282971], - [146.23978, -18.293069], - [146.22564, -18.277299], - [146.237398, -18.282148] - ] - ], - [ - [ - [146.287188, -18.14235], - [146.277138, -18.13876], - [146.282088, -18.13513], - [146.287188, -18.14235] - ] - ], - [ - [ - [146.208762, -18.460688], - [146.206062, -18.471768], - [146.189963, -18.470778], - [146.192782, -18.459698], - [146.208762, -18.460688] - ] - ], - [ - [ - [146.179222, -18.396718], - [146.178302, -18.373169], - [146.193842, -18.395858], - [146.195662, -18.418338], - [146.192602, -18.429418], - [146.180032, -18.417458], - [146.17995, -18.415342], - [146.172582, -18.420298], - [146.167942, -18.407988], - [146.179842, -18.412587], - [146.179589, -18.406121], - [146.178722, -18.409668], - [146.167232, -18.404718], - [146.145022, -18.358089], - [146.163362, -18.368999], - [146.171062, -18.365619], - [146.179222, -18.396718] - ] - ], - [ - [ - [146.192099, -18.16639], - [146.17605, -18.18099], - [146.1524, -18.17538], - [146.16052, -18.1522], - [146.17198, -18.15117], - [146.192099, -18.16639] - ] - ], - [ - [ - [146.187042, -18.430448], - [146.177702, -18.434408], - [146.182302, -18.426268], - [146.187042, -18.430448] - ] - ], - [ - [ - [146.180752, -18.419718], - [146.176392, -18.432378], - [146.170572, -18.423468], - [146.180752, -18.419718] - ] - ], - [ - [ - [146.178178, -17.966971], - [146.134149, -17.935401], - [146.151528, -17.927661], - [146.173178, -17.945931], - [146.178178, -17.966971] - ] - ], - [ - [ - [146.016754, -17.155424], - [146.011805, -17.165024], - [146.004885, -17.154394], - [146.016754, -17.155424] - ] - ], - [ - [ - [146.005128, -16.924182], - [146.000307, -16.936674], - [145.985538, -16.942179], - [145.99079, -16.925325], - [146.005128, -16.924182] - ] - ], - [ - [ - [145.477366, -14.670246], - [145.467406, -14.679976], - [145.470666, -14.685506], - [145.448257, -14.680236], - [145.444866, -14.667366], - [145.455786, -14.672086], - [145.450626, -14.647026], - [145.467116, -14.654336], - [145.477366, -14.670246] - ] - ], - [ - [ - [144.989702, -14.502708], - [144.978802, -14.511518], - [144.950633, -14.499318], - [144.978692, -14.492998], - [144.989702, -14.502708] - ] - ], - [ - [ - [144.817504, -14.431719], - [144.810894, -14.437809], - [144.804174, -14.432829], - [144.815534, -14.425169], - [144.817504, -14.431719] - ] - ], - [ - [ - [144.532854, -14.118902], - [144.531924, -14.124552], - [144.525444, -14.120252], - [144.525464, -14.112122], - [144.532854, -14.118902] - ] - ], - [ - [ - [144.338099, -14.095325], - [144.335647, -14.102323], - [144.326277, -14.102303], - [144.327687, -14.095183], - [144.338099, -14.095325] - ] - ], - [ - [ - [144.338124, -14.095252], - [144.328497, -14.093843], - [144.331877, -14.085953], - [144.340426, -14.088683], - [144.338124, -14.095252] - ] - ], - [ - [ - [144.283659, -14.194862], - [144.240279, -14.191333], - [144.232459, -14.175403], - [144.251439, -14.175913], - [144.250329, -14.160443], - [144.272898, -14.158703], - [144.283659, -14.194862] - ] - ], - [ - [ - [144.278709, -14.226112], - [144.269759, -14.238612], - [144.24539, -14.221042], - [144.266099, -14.225052], - [144.276419, -14.216622], - [144.278709, -14.226112] - ] - ], - [ - [ - [144.268188, -14.148073], - [144.245039, -14.151733], - [144.20952, -14.184813], - [144.228599, -14.154733], - [144.231219, -14.132833], - [144.237239, -14.129703], - [144.243449, -14.142923], - [144.268188, -14.148073] - ] - ], - [ - [ - [144.23131, -14.209942], - [144.20254, -14.230392], - [144.22241, -14.206292], - [144.23131, -14.209942] - ] - ], - [ - [ - [144.063809, -9.91276], - [144.057899, -9.92374], - [144.039199, -9.92315], - [144.051549, -9.90843], - [144.063809, -9.91276] - ] - ], - [ - [ - [143.78451, -9.577153], - [143.775831, -9.598423], - [143.760011, -9.597023], - [143.759251, -9.580523], - [143.772461, -9.580473], - [143.777661, -9.570963], - [143.78451, -9.577153] - ] - ], - [ - [ - [143.779395, -14.221694], - [143.772635, -14.220164], - [143.775035, -14.214054], - [143.779395, -14.221694] - ] - ], - [ - [ - [143.721987, -13.866067], - [143.717843, -13.870137], - [143.715161, -13.862125], - [143.721987, -13.866067] - ] - ], - [ - [ - [143.501861, -12.526884], - [143.475112, -12.521365], - [143.454362, -12.504375], - [143.475222, -12.520465], - [143.501861, -12.526884] - ] - ], - [ - [ - [143.422975, -9.750263], - [143.398315, -9.754583], - [143.404565, -9.748233], - [143.422975, -9.750263] - ] - ], - [ - [ - [143.415166, -12.289466], - [143.403683, -12.287791], - [143.413206, -12.284046], - [143.415166, -12.289466] - ] - ], - [ - [ - [143.401295, -12.868873], - [143.392476, -12.875953], - [143.389006, -12.868853], - [143.401295, -12.868873] - ] - ], - [ - [ - [143.400826, -12.895923], - [143.393566, -12.894363], - [143.394896, -12.876513], - [143.400826, -12.895923] - ] - ], - [ - [ - [143.390646, -12.878563], - [143.383976, -12.883323], - [143.379126, -12.876673], - [143.390646, -12.878563] - ] - ], - [ - [ - [143.388316, -12.869873], - [143.376686, -12.870463], - [143.385076, -12.864793], - [143.388316, -12.869873] - ] - ], - [ - [ - [143.378456, -12.886273], - [143.374456, -12.895763], - [143.358766, -12.887003], - [143.378456, -12.886273] - ] - ], - [ - [ - [143.275986, -11.985288], - [143.267332, -11.989577], - [143.262231, -11.975052], - [143.275986, -11.985288] - ] - ], - [ - [ - [142.977396, -9.80498], - [142.971796, -9.80544], - [142.975476, -9.79509], - [142.977396, -9.80498] - ] - ], - [ - [ - [142.948447, -9.85391], - [142.912558, -9.866849], - [142.897758, -9.853439], - [142.900448, -9.846079], - [142.917257, -9.842999], - [142.948447, -9.85391] - ] - ], - [ - [ - [142.867649, -10.039029], - [142.857599, -10.053148], - [142.82604, -10.024858], - [142.83288, -10.018308], - [142.857289, -10.019578], - [142.867649, -10.039029] - ] - ], - [ - [ - [142.800857, -9.375672], - [142.794837, -9.389352], - [142.754198, -9.400472], - [142.743739, -9.419021], - [142.70725, -9.428321], - [142.651571, -9.427961], - [142.609372, -9.414711], - [142.596612, -9.403411], - [142.603782, -9.383171], - [142.646921, -9.364721], - [142.707499, -9.381752], - [142.743128, -9.366912], - [142.800857, -9.375672] - ] - ], - [ - [ - [142.783441, -9.904118], - [142.768611, -9.904698], - [142.764381, -9.894078], - [142.781371, -9.895868], - [142.783441, -9.904118] - ] - ], - [ - [ - [142.725479, -9.368282], - [142.69885, -9.377342], - [142.6673, -9.369791], - [142.68893, -9.358252], - [142.725479, -9.368282] - ] - ], - [ - [ - [142.705703, -10.953042], - [142.692314, -10.958571], - [142.686954, -10.936972], - [142.666714, -10.936282], - [142.651164, -10.923612], - [142.651864, -10.914792], - [142.690173, -10.920132], - [142.705703, -10.953042] - ] - ], - [ - [ - [142.666442, -10.629033], - [142.654073, -10.651403], - [142.638413, -10.653193], - [142.650883, -10.638623], - [142.632273, -10.627073], - [142.639373, -10.618263], - [142.666442, -10.629033] - ] - ], - [ - [ - [142.649234, -9.764488], - [142.647984, -9.772568], - [142.621995, -9.772588], - [142.628365, -9.757778], - [142.649234, -9.764488] - ] - ], - [ - [ - [142.639044, -10.920432], - [142.635264, -10.926992], - [142.620744, -10.918722], - [142.634024, -10.914212], - [142.639044, -10.920432] - ] - ], - [ - [ - [142.627853, -10.598243], - [142.615163, -10.600713], - [142.609233, -10.592683], - [142.619973, -10.589754], - [142.627853, -10.598243] - ] - ], - [ - [ - [142.622543, -10.743163], - [142.611903, -10.745413], - [142.584394, -10.714403], - [142.595253, -10.712833], - [142.608843, -10.726303], - [142.615023, -10.720883], - [142.615453, -10.738183], - [142.622543, -10.743163] - ] - ], - [ - [ - [142.551753, -9.419591], - [142.531603, -9.435991], - [142.528863, -9.410781], - [142.551753, -9.419591] - ] - ], - [ - [ - [142.517682, -10.192006], - [142.513112, -10.195276], - [142.504112, -10.183846], - [142.517682, -10.192006] - ] - ], - [ - [ - [142.514652, -10.158086], - [142.508252, -10.163276], - [142.502222, -10.157276], - [142.514652, -10.158086] - ] - ], - [ - [ - [142.490332, -10.243286], - [142.480023, -10.260396], - [142.474043, -10.250256], - [142.490332, -10.243286] - ] - ], - [ - [ - [142.410957, -10.711573], - [142.385637, -10.750123], - [142.393437, -10.730423], - [142.389727, -10.717993], - [142.396547, -10.709253], - [142.410957, -10.711573] - ] - ], - [ - [ - [142.344168, -10.172237], - [142.331609, -10.199197], - [142.278669, -10.259777], - [142.241128, -10.234258], - [142.226388, -10.230358], - [142.218088, -10.238878], - [142.183887, -10.18948], - [142.205827, -10.166549], - [142.210747, -10.170829], - [142.206037, -10.161699], - [142.219837, -10.128859], - [142.236927, -10.121329], - [142.253827, -10.125449], - [142.265887, -10.115789], - [142.288637, -10.127798], - [142.300147, -10.124018], - [142.312078, -10.138558], - [142.325528, -10.135108], - [142.330418, -10.158157], - [142.344168, -10.172237] - ] - ], - [ - [ - [142.326393, -10.611193], - [142.302723, -10.634243], - [142.267664, -10.642303], - [142.236094, -10.607263], - [142.243174, -10.606453], - [142.240974, -10.597863], - [142.257124, -10.579483], - [142.306333, -10.570583], - [142.326393, -10.611193] - ] - ], - [ - [ - [142.321023, -10.531173], - [142.315813, -10.541373], - [142.300273, -10.542343], - [142.284103, -10.527934], - [142.304293, -10.520614], - [142.312232, -10.505544], - [142.321023, -10.531173] - ] - ], - [ - [ - [142.319433, -9.567913], - [142.306693, -9.574293], - [142.283773, -9.569863], - [142.258312, -9.553914], - [142.290603, -9.551303], - [142.319433, -9.567913] - ] - ], - [ - [ - [142.304918, -10.721873], - [142.290218, -10.733913], - [142.281688, -10.716313], - [142.295108, -10.701673], - [142.304918, -10.721873] - ] - ], - [ - [ - [142.294921, -9.262735], - [142.284021, -9.284645], - [142.245401, -9.290786], - [142.160671, -9.281257], - [142.131871, -9.264447], - [142.222421, -9.229597], - [142.242551, -9.258916], - [142.266541, -9.250686], - [142.294921, -9.262735] - ] - ], - [ - [ - [142.277423, -10.706483], - [142.264814, -10.727223], - [142.255044, -10.713813], - [142.242914, -10.711143], - [142.245694, -10.720063], - [142.230224, -10.739463], - [142.227404, -10.720703], - [142.206854, -10.726433], - [142.195723, -10.746274], - [142.187943, -10.746184], - [142.186313, -10.765974], - [142.177863, -10.770874], - [142.158273, -10.761334], - [142.150053, -10.764874], - [142.138633, -10.737094], - [142.112843, -10.719665], - [142.119103, -10.710815], - [142.109633, -10.685085], - [142.119713, -10.690575], - [142.110464, -10.661784], - [142.122544, -10.652124], - [142.121934, -10.642974], - [142.139994, -10.642574], - [142.152494, -10.622854], - [142.168724, -10.623354], - [142.186914, -10.597964], - [142.203704, -10.594844], - [142.210184, -10.616523], - [142.245394, -10.647253], - [142.249704, -10.667023], - [142.277423, -10.706483] - ] - ], - [ - [ - [142.250871, -9.229096], - [142.242411, -9.234726], - [142.23354, -9.221187], - [142.250871, -9.229096] - ] - ], - [ - [ - [142.232533, -10.573924], - [142.210654, -10.589044], - [142.205594, -10.581494], - [142.221487, -10.569771], - [142.232533, -10.573924] - ] - ], - [ - [ - [142.229863, -10.534034], - [142.213993, -10.566314], - [142.194943, -10.574864], - [142.184063, -10.568354], - [142.182853, -10.552644], - [142.204073, -10.544074], - [142.213013, -10.521654], - [142.229863, -10.534034] - ] - ], - [ - [ - [142.201174, -9.948772], - [142.178455, -9.972832], - [142.164694, -9.951742], - [142.187014, -9.942382], - [142.201174, -9.948772] - ] - ], - [ - [ - [142.192476, -10.10589], - [142.187847, -10.14842], - [142.170987, -10.15786], - [142.163427, -10.18096], - [142.153917, -10.17262], - [142.134317, -10.1788], - [142.121646, -10.148091], - [142.108876, -10.148811], - [142.087466, -10.130111], - [142.091896, -10.122861], - [142.085356, -10.112592], - [142.112755, -10.082542], - [142.114185, -10.068512], - [142.127895, -10.072881], - [142.161975, -10.063601], - [142.168266, -10.069001], - [142.181926, -10.059341], - [142.192476, -10.10589] - ] - ], - [ - [ - [142.18843, -9.232797], - [142.156401, -9.246727], - [142.16435, -9.223927], - [142.18843, -9.232797] - ] - ], - [ - [ - [142.178983, -10.585664], - [142.169004, -10.605944], - [142.146333, -10.595054], - [142.178983, -10.585664] - ] - ], - [ - [ - [142.173227, -10.207719], - [142.168848, -10.228199], - [142.163437, -10.216909], - [142.173227, -10.207719] - ] - ], - [ - [ - [142.170973, -10.553585], - [142.157783, -10.570035], - [142.145653, -10.565665], - [142.170973, -10.553585] - ] - ], - [ - [ - [142.140715, -10.373367], - [142.134365, -10.386847], - [142.125905, -10.384057], - [142.124654, -10.353408], - [142.132764, -10.354288], - [142.140715, -10.373367] - ] - ], - [ - [ - [142.115326, -10.991465], - [142.107635, -10.998365], - [142.098845, -10.989496], - [142.099596, -10.975245], - [142.108716, -10.967305], - [142.114906, -10.971235], - [142.099295, -10.986556], - [142.115326, -10.991465] - ] - ], - [ - [ - [142.076853, -10.26538], - [142.065883, -10.26248], - [142.073973, -10.25918], - [142.076853, -10.26538] - ] - ], - [ - [ - [142.060474, -10.353859], - [142.048074, -10.365769], - [142.048604, -10.354689], - [142.060474, -10.353859] - ] - ], - [ - [ - [139.887477, -16.653029], - [139.855767, -16.677089], - [139.848137, -16.663479], - [139.868217, -16.658209], - [139.871947, -16.645349], - [139.887477, -16.653029] - ] - ], - [ - [ - [139.813616, -16.49131], - [139.806556, -16.49679], - [139.802206, -16.48797], - [139.813616, -16.49131] - ] - ], - [ - [ - [139.734697, -16.477391], - [139.730877, -16.501301], - [139.723347, -16.490971], - [139.709537, -16.490181], - [139.701237, -16.474411], - [139.717717, -16.450141], - [139.726367, -16.450781], - [139.734697, -16.477391] - ] - ], - [ - [ - [139.712128, -16.530531], - [139.689608, -16.534981], - [139.683758, -16.520471], - [139.657218, -16.519401], - [139.639278, -16.532321], - [139.626268, -16.530421], - [139.595979, -16.554211], - [139.589039, -16.532241], - [139.579709, -16.527081], - [139.578299, -16.502671], - [139.558499, -16.490752], - [139.566579, -16.474502], - [139.546629, -16.460532], - [139.560819, -16.480272], - [139.540659, -16.488212], - [139.531339, -16.515482], - [139.506779, -16.511992], - [139.47502, -16.526232], - [139.48556, -16.542112], - [139.51432, -16.545152], - [139.5068, -16.576682], - [139.4837, -16.556022], - [139.45308, -16.569502], - [139.4583, -16.575382], - [139.46743, -16.568582], - [139.47307, -16.583162], - [139.45527, -16.580312], - [139.4712, -16.588132], - [139.465631, -16.627932], - [139.439141, -16.630692], - [139.447111, -16.633152], - [139.451261, -16.666262], - [139.438131, -16.674752], - [139.417381, -16.672402], - [139.401991, -16.640432], - [139.393081, -16.637272], - [139.380071, -16.647112], - [139.375851, -16.642032], - [139.383012, -16.656382], - [139.368602, -16.672102], - [139.373892, -16.686342], - [139.365692, -16.693352], - [139.358742, -16.684572], - [139.350562, -16.688952], - [139.321982, -16.710182], - [139.313053, -16.730232], - [139.305073, -16.724132], - [139.274583, -16.733523], - [139.254353, -16.723583], - [139.230023, -16.731153], - [139.221573, -16.709793], - [139.199764, -16.707653], - [139.195023, -16.661933], - [139.166244, -16.667973], - [139.151014, -16.633843], - [139.161923, -16.608643], - [139.212783, -16.568533], - [139.218522, -16.535753], - [139.239262, -16.523663], - [139.241832, -16.504333], - [139.292081, -16.477193], - [139.304131, -16.462833], - [139.338331, -16.464503], - [139.36362, -16.452393], - [139.42042, -16.444882], - [139.465389, -16.446072], - [139.535249, -16.408552], - [139.548048, -16.390702], - [139.604468, -16.403041], - [139.650178, -16.449501], - [139.676387, -16.450611], - [139.680237, -16.468881], - [139.690287, -16.468001], - [139.698507, -16.478801], - [139.700878, -16.514421], - [139.712128, -16.530531] - ] - ], - [ - [ - [139.639482, -17.07442], - [139.611912, -17.12094], - [139.614462, -17.13948], - [139.603772, -17.13833], - [139.596492, -17.1329], - [139.595112, -17.11222], - [139.614042, -17.10626], - [139.625512, -17.06209], - [139.639482, -17.07442] - ] - ], - [ - [ - [139.472553, -17.09595], - [139.427284, -17.105591], - [139.425524, -17.123461], - [139.439824, -17.135691], - [139.434554, -17.139451], - [139.411174, -17.122191], - [139.394114, -17.082971], - [139.423344, -17.078611], - [139.450443, -17.055281], - [139.456743, -17.031281], - [139.468593, -17.029171], - [139.461633, -17.025261], - [139.469723, -17.023851], - [139.472983, -17.035581], - [139.486073, -17.036241], - [139.490133, -17.044571], - [139.486953, -17.034701], - [139.473763, -17.030381], - [139.477453, -17.019511], - [139.490573, -17.015811], - [139.494582, -17.000981], - [139.500462, -17.002301], - [139.492632, -16.996501], - [139.494472, -16.979621], - [139.543542, -17.03135], - [139.556342, -17.03431], - [139.549272, -17.04797], - [139.554432, -17.06973], - [139.577982, -17.09355], - [139.522693, -17.10276], - [139.514473, -17.11186], - [139.518683, -17.12316], - [139.509863, -17.12315], - [139.478003, -17.115791], - [139.472553, -17.09595] - ], - [ - [139.479806, -17.093717], - [139.484533, -17.092811], - [139.480753, -17.084631], - [139.479806, -17.093717] - ] - ], - [ - [ - [139.560553, -17.11442], - [139.549473, -17.12921], - [139.552203, -17.11452], - [139.560553, -17.11442] - ] - ], - [ - [ - [139.477661, -16.679452], - [139.464551, -16.700382], - [139.453651, -16.707512], - [139.441331, -16.703682], - [139.438391, -16.694532], - [139.452441, -16.674392], - [139.467561, -16.667032], - [139.477661, -16.679452] - ] - ], - [ - [ - [139.28366, -16.264043], - [139.27372, -16.275354], - [139.2729, -16.264384], - [139.28366, -16.264043] - ] - ], - [ - [ - [139.279795, -16.993792], - [139.262625, -16.999202], - [139.260655, -16.989832], - [139.265475, -16.984412], - [139.279795, -16.993792] - ] - ], - [ - [ - [139.265675, -17.058282], - [139.250745, -17.055642], - [139.247865, -17.045382], - [139.233225, -17.046142], - [139.222885, -17.031722], - [139.214685, -17.036402], - [139.207345, -17.003332], - [139.243075, -17.029472], - [139.265675, -17.058282] - ] - ], - [ - [ - [139.188754, -16.681543], - [139.182644, -16.698383], - [139.188624, -16.719283], - [139.173964, -16.728443], - [139.184754, -16.733643], - [139.169974, -16.730693], - [139.162344, -16.748893], - [139.141354, -16.754083], - [139.145954, -16.691933], - [139.171284, -16.671033], - [139.188754, -16.681543] - ] - ], - [ - [ - [139.152225, -16.821893], - [139.128405, -16.826063], - [139.113855, -16.837583], - [139.113255, -16.849443], - [139.094725, -16.843103], - [139.090625, -16.826713], - [139.094865, -16.812703], - [139.132535, -16.797813], - [139.152225, -16.821893] - ] - ], - [ - [ - [139.076836, -16.902193], - [139.046216, -16.885333], - [139.073676, -16.891113], - [139.076836, -16.902193] - ] - ], - [ - [ - [139.067596, -16.865003], - [139.058906, -16.876863], - [139.063146, -16.860593], - [139.067596, -16.865003] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 3, - "properties": { - "name": "South Australia", - "ISOCODE": "AU-SA" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [138.500217, -34.843571], - [138.510797, -34.842304], - [138.51616, -34.810835], - [138.532889, -34.815026], - [138.530822, -34.822573], - [138.545732, -34.81061], - [138.56628, -34.825093], - [138.547525, -34.809537], - [138.553914, -34.789902], - [138.543501, -34.774809], - [138.541428, -34.752951], - [138.52975, -34.745246], - [138.532602, -34.737353], - [138.491739, -34.721322], - [138.475866, -34.698481], - [138.463876, -34.697038], - [138.454697, -34.682072], - [138.43615, -34.672481], - [138.444655, -34.670494], - [138.430566, -34.668154], - [138.436243, -34.653886], - [138.445781, -34.653393], - [138.426467, -34.621629], - [138.413243, -34.620852], - [138.416988, -34.614387], - [138.408432, -34.60026], - [138.364309, -34.578149], - [138.349516, -34.557529], - [138.344385, -34.531212], - [138.265632, -34.476802], - [138.246978, -34.400897], - [138.225222, -34.365908], - [138.230858, -34.343908], - [138.223029, -34.311262], - [138.192401, -34.272173], - [138.146203, -34.265618], - [138.167524, -34.245335], - [138.165702, -34.221296], - [138.102306, -34.138883], - [138.077415, -34.133551], - [138.04372, -34.174353], - [138.029348, -34.221086], - [138.012405, -34.231329], - [138.001543, -34.257058], - [138.021736, -34.28507], - [138.007096, -34.349032], - [137.917537, -34.428156], - [137.898839, -34.493836], - [137.887583, -34.507362], - [137.875809, -34.597683], - [137.907676, -34.615868], - [137.87681, -34.66841], - [137.880758, -34.695263], - [137.868851, -34.722633], - [137.864947, -34.76608], - [137.857788, -34.7712], - [137.865023, -34.777911], - [137.8317, -34.812719], - [137.800063, -34.877546], - [137.796073, -34.906192], - [137.805024, -34.912187], - [137.79029, -34.922297], - [137.757304, -34.99657], - [137.76399, -35.040599], - [137.733807, -35.044159], - [137.72473, -35.053743], - [137.745477, -35.074885], - [137.743274, -35.102896], - [137.758661, -35.114743], - [137.697314, -35.141537], - [137.677887, -35.167742], - [137.637498, -35.168201], - [137.554817, -35.117455], - [137.525835, -35.112928], - [137.510698, -35.119016], - [137.464103, -35.099218], - [137.42284, -35.098095], - [137.352267, -35.13396], - [137.340748, -35.149462], - [137.342809, -35.16172], - [137.334579, -35.163878], - [137.347808, -35.163004], - [137.334887, -35.167858], - [137.29811, -35.168308], - [137.264701, -35.159041], - [137.237741, -35.164515], - [137.203511, -35.191922], - [137.190399, -35.208941], - [137.190574, -35.229175], - [137.173992, -35.237359], - [137.111428, -35.242931], - [137.076687, -35.226357], - [137.001389, -35.223207], - [136.982979, -35.235541], - [136.9827, -35.24955], - [136.969755, -35.25208], - [136.966855, -35.26703], - [136.945243, -35.269335], - [136.944022, -35.282153], - [136.89975, -35.285811], - [136.883, -35.300346], - [136.870503, -35.286886], - [136.848565, -35.282106], - [136.821927, -35.24528], - [136.834107, -35.241945], - [136.829351, -35.233226], - [136.846425, -35.228823], - [136.84574, -35.190101], - [136.865972, -35.194123], - [136.888337, -35.185252], - [136.89761, -35.156673], - [136.913125, -35.153594], - [136.941123, -35.129111], - [136.941788, -35.105674], - [136.961072, -35.082302], - [136.930287, -35.02905], - [136.944086, -35.022033], - [136.943678, -35.012642], - [136.968239, -35.000414], - [136.976385, -34.94124], - [137.012553, -34.92048], - [137.013614, -34.892979], - [137.093376, -34.919948], - [137.146064, -34.9182], - [137.194414, -34.901017], - [137.224498, -34.904483], - [137.276479, -34.8939], - [137.291011, -34.90102], - [137.309245, -34.927825], - [137.346955, -34.9298], - [137.356422, -34.946584], - [137.374945, -34.953745], - [137.41535, -34.938659], - [137.448758, -34.910318], - [137.457725, -34.884498], - [137.459607, -34.80763], - [137.50944, -34.617955], - [137.506741, -34.582015], - [137.473817, -34.511303], - [137.486637, -34.481665], - [137.483189, -34.439275], - [137.463169, -34.426672], - [137.446005, -34.436891], - [137.427025, -34.472597], - [137.415149, -34.459593], - [137.416933, -34.444675], - [137.438119, -34.427953], - [137.446657, -34.398039], - [137.465117, -34.400688], - [137.47608, -34.392463], - [137.483663, -34.343124], - [137.500299, -34.312], - [137.499904, -34.226504], - [137.449856, -34.135518], - [137.506757, -34.137625], - [137.522273, -34.129251], - [137.526001, -34.10829], - [137.567535, -34.043536], - [137.552323, -34.014424], - [137.527125, -34.004388], - [137.538706, -33.992451], - [137.558632, -33.988852], - [137.563706, -33.971636], - [137.575722, -33.967168], - [137.600263, -33.936313], - [137.63064, -33.921822], - [137.62546, -33.895162], - [137.600358, -33.876794], - [137.643791, -33.830437], - [137.725471, -33.769922], - [137.736431, -33.737836], - [137.755144, -33.714222], - [137.800547, -33.683113], - [137.834527, -33.642457], - [137.857277, -33.631321], - [137.879023, -33.596782], - [137.892462, -33.587902], - [137.919659, -33.58733], - [137.924238, -33.597412], - [137.913797, -33.612915], - [137.903569, -33.614486], - [137.905083, -33.596919], - [137.89323, -33.625613], - [137.917547, -33.624978], - [137.935597, -33.580101], - [137.935352, -33.552675], - [137.946766, -33.554549], - [137.951782, -33.573302], - [137.964795, -33.574318], - [137.977463, -33.558834], - [137.971121, -33.539426], - [137.962976, -33.550773], - [137.939426, -33.547918], - [137.94143, -33.518107], - [137.949068, -33.512444], - [137.932892, -33.499684], - [137.906643, -33.434132], - [137.870496, -33.39654], - [137.8755, -33.362386], - [137.883258, -33.359406], - [137.890944, -33.366841], - [137.882871, -33.357762], - [137.891216, -33.353978], - [137.883687, -33.3524], - [137.881243, -33.323158], - [137.87414, -33.316092], - [137.878627, -33.329884], - [137.8656, -33.317356], - [137.858829, -33.320776], - [137.873503, -33.330279], - [137.85183, -33.32618], - [137.842526, -33.316505], - [137.844915, -33.30467], - [137.817427, -33.286669], - [137.811132, -33.266254], - [137.82675, -33.248593], - [137.821262, -33.244931], - [137.837982, -33.207238], - [137.852958, -33.209589], - [137.853601, -33.196834], - [137.907816, -33.171441], - [137.925484, -33.176496], - [137.939986, -33.15815], - [137.958306, -33.167765], - [137.963533, -33.160505], - [137.954364, -33.154713], - [137.987635, -33.143951], - [138.000807, -33.131649], - [138.007072, -33.133387], - [138.001337, -33.144027], - [138.013031, -33.153719], - [138.011854, -33.178027], - [138.024228, -33.181884], - [138.036289, -33.169499], - [138.014093, -33.178089], - [138.018263, -33.159353], - [138.028292, -33.15501], - [138.020918, -33.149031], - [138.048044, -33.135837], - [138.054408, -33.115096], - [138.036705, -33.102965], - [138.02463, -33.10578], - [138.030634, -33.09837], - [138.039252, -33.101157], - [138.045942, -33.0867], - [138.018784, -33.035621], - [137.952082, -33.00601], - [137.956632, -32.981391], - [137.912322, -32.853486], - [137.90089, -32.777649], - [137.916527, -32.768858], - [137.916821, -32.759413], - [137.936655, -32.766652], - [137.944458, -32.757655], - [137.887464, -32.715447], - [137.837571, -32.69581], - [137.860025, -32.6894], - [137.867648, -32.663933], - [137.852028, -32.640869], - [137.836291, -32.637649], - [137.802716, -32.608002], - [137.82182, -32.58058], - [137.828519, -32.591178], - [137.825333, -32.603699], - [137.829153, -32.594097], - [137.839055, -32.603632], - [137.829893, -32.594301], - [137.838248, -32.587284], - [137.829686, -32.584703], - [137.83577, -32.574669], - [137.823014, -32.560252], - [137.782259, -32.550341], - [137.789296, -32.545782], - [137.78184, -32.543439], - [137.785277, -32.52852], - [137.768971, -32.523867], - [137.772488, -32.505119], - [137.758759, -32.491348], - [137.770628, -32.480322], - [137.757935, -32.456053], - [137.766047, -32.43951], - [137.75036, -32.415371], - [137.752415, -32.43129], - [137.763815, -32.442118], - [137.753371, -32.457178], - [137.764511, -32.476162], - [137.751739, -32.503471], - [137.76201, -32.510099], - [137.749653, -32.53156], - [137.764897, -32.596744], - [137.750393, -32.673305], - [137.757119, -32.694254], - [137.749747, -32.708266], - [137.753152, -32.721238], - [137.781324, -32.713734], - [137.809507, -32.74859], - [137.793206, -32.779971], - [137.798497, -32.784695], - [137.798826, -32.779387], - [137.803563, -32.796932], - [137.810557, -32.845255], - [137.800485, -32.868142], - [137.791768, -32.870953], - [137.798263, -32.89354], - [137.789289, -32.915205], - [137.758283, -32.907355], - [137.749516, -32.921517], - [137.786511, -32.999915], - [137.759169, -32.988972], - [137.760331, -32.995383], - [137.721268, -32.990512], - [137.713268, -32.974483], - [137.691496, -32.95956], - [137.661043, -32.950959], - [137.641418, -32.955318], - [137.611458, -32.974561], - [137.595198, -32.998551], - [137.596336, -33.006782], - [137.60323, -33.001786], - [137.595789, -33.012108], - [137.599742, -33.021089], - [137.585736, -33.022086], - [137.596979, -33.03615], - [137.552961, -33.058059], - [137.557292, -33.065908], - [137.538685, -33.082123], - [137.536023, -33.094818], - [137.499752, -33.109622], - [137.486076, -33.124658], - [137.4576, -33.135572], - [137.451979, -33.130701], - [137.442264, -33.152177], - [137.434062, -33.230088], - [137.397534, -33.2853], - [137.389738, -33.285318], - [137.393686, -33.28989], - [137.383491, -33.290892], - [137.385368, -33.298338], - [137.374434, -33.292726], - [137.384526, -33.298507], - [137.377221, -33.344211], - [137.385585, -33.372166], - [137.360741, -33.414838], - [137.360521, -33.439166], - [137.314614, -33.471529], - [137.305001, -33.500116], - [137.295283, -33.507413], - [137.278833, -33.565015], - [137.263916, -33.577687], - [137.252397, -33.608277], - [137.213306, -33.661082], - [137.182092, -33.673153], - [137.168508, -33.690294], - [137.124328, -33.700746], - [137.069734, -33.698743], - [137.03728, -33.70801], - [137.025511, -33.719722], - [136.991674, -33.724793], - [136.951489, -33.755299], - [136.857218, -33.798387], - [136.799629, -33.80333], - [136.778484, -33.831012], - [136.73046, -33.834978], - [136.668362, -33.878689], - [136.592684, -33.899562], - [136.572195, -33.923038], - [136.57475, -33.943438], - [136.497478, -33.992615], - [136.434749, -34.011595], - [136.363136, -34.069349], - [136.346688, -34.099496], - [136.356851, -34.122758], - [136.331378, -34.148126], - [136.32439, -34.181602], - [136.278006, -34.220835], - [136.260573, -34.267704], - [136.233584, -34.296136], - [136.187841, -34.33484], - [136.138538, -34.341141], - [136.112245, -34.359384], - [136.10378, -34.382528], - [136.130148, -34.407111], - [136.116359, -34.408422], - [136.091801, -34.429572], - [136.116687, -34.425739], - [136.114089, -34.459054], - [136.121769, -34.467421], - [136.109917, -34.478434], - [136.117536, -34.489264], - [136.112519, -34.515817], - [136.096279, -34.524595], - [136.092173, -34.542734], - [136.083513, -34.532224], - [136.091281, -34.520841], - [136.073225, -34.506203], - [136.0829, -34.495306], - [136.056326, -34.47902], - [136.02502, -34.484048], - [136.015488, -34.499011], - [136.021803, -34.516206], - [136.008306, -34.507749], - [135.993143, -34.51856], - [135.974127, -34.504699], - [135.93231, -34.528521], - [135.928238, -34.538091], - [135.934827, -34.543962], - [135.922751, -34.549984], - [135.902127, -34.592584], - [135.913887, -34.611309], - [135.933423, -34.609826], - [135.937413, -34.64902], - [135.912623, -34.631482], - [135.913136, -34.620512], - [135.891144, -34.615732], - [135.861765, -34.633575], - [135.853962, -34.665381], - [135.853777, -34.715444], - [135.884862, -34.724936], - [135.870055, -34.74443], - [135.8921, -34.744097], - [135.891409, -34.751447], - [135.86472, -34.769666], - [135.863448, -34.754873], - [135.846373, -34.752882], - [135.785731, -34.80933], - [135.834373, -34.819008], - [135.860612, -34.807459], - [135.893494, -34.805599], - [135.928895, -34.768824], - [135.949624, -34.765659], - [135.956396, -34.757148], - [135.960864, -34.783816], - [135.980602, -34.784618], - [135.990068, -34.769453], - [135.983633, -34.757852], - [135.99126, -34.750348], - [135.979243, -34.730501], - [135.995092, -34.725326], - [136.006531, -34.735939], - [136.014332, -34.756514], - [136.001927, -34.787262], - [136.015783, -34.794216], - [136.004306, -34.79881], - [136.008467, -34.805694], - [135.993522, -34.82779], - [135.959953, -34.848601], - [135.96267, -34.87545], - [135.993163, -34.929897], - [135.986455, -34.933799], - [135.992985, -34.944914], - [135.987292, -34.958681], - [135.997972, -34.959234], - [136.004524, -34.980343], - [136.00263, -34.985854], - [135.987209, -34.981705], - [135.976579, -34.994656], - [135.960257, -34.991911], - [135.960935, -35.004769], - [135.954463, -35.006352], - [135.943382, -35.002954], - [135.94134, -34.985684], - [135.948555, -34.980702], - [135.931669, -34.970804], - [135.928877, -34.948295], - [135.867748, -34.919894], - [135.856062, -34.927288], - [135.853755, -34.886649], - [135.79209, -34.860956], - [135.751833, -34.85615], - [135.712711, -34.865101], - [135.705738, -34.905736], - [135.679212, -34.913706], - [135.688404, -34.92331], - [135.685876, -34.944856], - [135.668666, -34.946723], - [135.653561, -34.936363], - [135.618827, -34.944466], - [135.622174, -34.924155], - [135.61472, -34.924474], - [135.624044, -34.906359], - [135.604931, -34.891673], - [135.604502, -34.878667], - [135.54065, -34.814131], - [135.495893, -34.782583], - [135.494109, -34.765676], - [135.47434, -34.744108], - [135.379698, -34.687117], - [135.350491, -34.680472], - [135.325022, -34.686375], - [135.320817, -34.680297], - [135.329374, -34.669383], - [135.347275, -34.666046], - [135.341687, -34.629108], - [135.321377, -34.607997], - [135.297102, -34.603172], - [135.283699, -34.576035], - [135.25243, -34.55187], - [135.225242, -34.543618], - [135.206611, -34.549956], - [135.208808, -34.558634], - [135.173727, -34.555002], - [135.149892, -34.568884], - [135.143498, -34.591838], - [135.109197, -34.588234], - [135.125345, -34.576533], - [135.12329, -34.557401], - [135.134241, -34.544351], - [135.129869, -34.527798], - [135.143601, -34.519773], - [135.138982, -34.503296], - [135.159564, -34.488896], - [135.173227, -34.464768], - [135.18658, -34.459933], - [135.194978, -34.43406], - [135.206319, -34.429307], - [135.217378, -34.433353], - [135.211506, -34.440781], - [135.212554, -34.481453], - [135.221384, -34.49863], - [135.3539, -34.522063], - [135.316249, -34.520659], - [135.297586, -34.552295], - [135.309491, -34.56369], - [135.354688, -34.580068], - [135.350464, -34.60351], - [135.361623, -34.620736], - [135.391139, -34.623034], - [135.402196, -34.633402], - [135.392045, -34.637662], - [135.390367, -34.630065], - [135.374297, -34.628815], - [135.376859, -34.640746], - [135.363762, -34.637309], - [135.365757, -34.642091], - [135.438272, -34.633633], - [135.451066, -34.626783], - [135.451529, -34.614405], - [135.474023, -34.622819], - [135.494016, -34.613292], - [135.510428, -34.620955], - [135.51676, -34.612968], - [135.50804, -34.594986], - [135.478234, -34.59736], - [135.45807, -34.58644], - [135.443137, -34.600557], - [135.472966, -34.61665], - [135.431694, -34.603432], - [135.444031, -34.570027], - [135.435742, -34.541643], - [135.445784, -34.537188], - [135.428658, -34.527388], - [135.42034, -34.539237], - [135.410348, -34.538834], - [135.414586, -34.520801], - [135.405086, -34.507235], - [135.395231, -34.524262], - [135.401244, -34.533371], - [135.391444, -34.534024], - [135.42219, -34.548857], - [135.406384, -34.555048], - [135.413637, -34.587853], - [135.396341, -34.593077], - [135.422243, -34.601453], - [135.389235, -34.595065], - [135.398323, -34.55567], - [135.376918, -34.515206], - [135.395769, -34.496803], - [135.388359, -34.441275], - [135.358934, -34.418703], - [135.365597, -34.384994], - [135.349857, -34.368618], - [135.357365, -34.366161], - [135.35984, -34.344051], - [135.346224, -34.267559], - [135.303512, -34.184088], - [135.28003, -34.170303], - [135.267879, -34.177283], - [135.255685, -34.155217], - [135.241237, -34.150131], - [135.244041, -34.140787], - [135.279477, -34.119738], - [135.272741, -34.094594], - [135.281119, -34.070257], - [135.264772, -34.032148], - [135.271551, -34.019591], - [135.252174, -33.981334], - [135.194027, -33.919801], - [135.182152, -33.877771], - [135.170374, -33.872562], - [135.161747, -33.877516], - [135.145846, -33.852366], - [135.082236, -33.804127], - [135.040271, -33.755003], - [134.878917, -33.653908], - [134.886099, -33.643037], - [134.879138, -33.636109], - [134.860762, -33.643979], - [134.830247, -33.626318], - [134.842694, -33.621398], - [134.840484, -33.5929], - [134.863402, -33.546591], - [134.845066, -33.43649], - [134.802047, -33.328782], - [134.760683, -33.309046], - [134.736774, -33.273849], - [134.719308, -33.263939], - [134.696622, -33.26348], - [134.688007, -33.250199], - [134.658294, -33.233584], - [134.691346, -33.229487], - [134.6985, -33.221831], - [134.711261, -33.227607], - [134.708922, -33.233074], - [134.719097, -33.229984], - [134.722438, -33.218774], - [134.709636, -33.214788], - [134.718293, -33.207371], - [134.717401, -33.195677], - [134.702148, -33.17467], - [134.666654, -33.161002], - [134.632418, -33.162198], - [134.595151, -33.13879], - [134.558351, -33.161347], - [134.576362, -33.189315], - [134.598184, -33.196556], - [134.613473, -33.189094], - [134.62554, -33.195113], - [134.640753, -33.182719], - [134.647444, -33.19539], - [134.623148, -33.197901], - [134.631218, -33.213751], - [134.663776, -33.223077], - [134.642472, -33.224337], - [134.630838, -33.245163], - [134.59576, -33.203417], - [134.547666, -33.18987], - [134.506204, -33.161407], - [134.450885, -33.144657], - [134.415463, -33.148863], - [134.391888, -33.166091], - [134.38855, -33.177345], - [134.368885, -33.175899], - [134.358474, -33.125341], - [134.324366, -33.090625], - [134.307047, -33.088982], - [134.292566, -33.07592], - [134.289983, -33.060373], - [134.299682, -33.049216], - [134.293337, -33.039983], - [134.281484, -33.03942], - [134.284078, -33.028506], - [134.275541, -33.024783], - [134.264013, -33.032125], - [134.278535, -33.036229], - [134.271537, -33.042322], - [134.281739, -33.050437], - [134.262433, -33.060006], - [134.261001, -33.073092], - [134.266137, -33.08802], - [134.284236, -33.100396], - [134.278781, -33.107431], - [134.292343, -33.118565], - [134.312594, -33.11201], - [134.321623, -33.118288], - [134.316547, -33.125254], - [134.35847, -33.148298], - [134.344935, -33.161236], - [134.352804, -33.157392], - [134.344837, -33.162215], - [134.351334, -33.190301], - [134.328367, -33.199477], - [134.260225, -33.152631], - [134.266773, -33.138511], - [134.261749, -33.098203], - [134.247206, -33.08727], - [134.230283, -33.043313], - [134.192038, -33.035167], - [134.167922, -33.055687], - [134.165246, -33.041359], - [134.138526, -33.018087], - [134.167286, -33.009282], - [134.193542, -33.013532], - [134.204837, -32.995309], - [134.201879, -32.963783], - [134.189083, -32.942369], - [134.167393, -32.926769], - [134.14406, -32.928168], - [134.141184, -32.944267], - [134.123646, -32.932117], - [134.12927, -32.926433], - [134.119181, -32.914597], - [134.106442, -32.91238], - [134.080901, -32.926517], - [134.081098, -32.918626], - [134.06053, -32.907934], - [134.070384, -32.909397], - [134.078646, -32.89912], - [134.071527, -32.883815], - [134.096119, -32.878643], - [134.099301, -32.867198], - [134.11686, -32.868108], - [134.138498, -32.839715], - [134.118901, -32.783386], - [134.060323, -32.722498], - [134.080595, -32.709573], - [134.107069, -32.721285], - [134.174283, -32.717947], - [134.204935, -32.725202], - [134.215088, -32.730782], - [134.152814, -32.723976], - [134.164646, -32.736988], - [134.200135, -32.746691], - [134.189241, -32.769701], - [134.196647, -32.795305], - [134.221859, -32.789845], - [134.24095, -32.748056], - [134.260472, -32.734768], - [134.290382, -32.692865], - [134.283746, -32.68494], - [134.294307, -32.661955], - [134.279388, -32.648207], - [134.277802, -32.608656], - [134.266342, -32.573809], - [134.214223, -32.511148], - [134.163101, -32.469053], - [134.121275, -32.454073], - [134.092181, -32.457869], - [134.102837, -32.450116], - [134.081033, -32.455382], - [134.082349, -32.465578], - [134.073909, -32.460686], - [134.081218, -32.45731], - [134.062832, -32.455795], - [134.057125, -32.440708], - [134.061924, -32.456321], - [134.086216, -32.470786], - [134.036977, -32.459813], - [133.995073, -32.484451], - [133.991564, -32.505353], - [133.954956, -32.494361], - [133.922739, -32.49485], - [133.907426, -32.508794], - [133.908794, -32.517545], - [133.89619, -32.523342], - [133.893695, -32.541219], - [133.861052, -32.531912], - [133.849, -32.541726], - [133.85712, -32.519484], - [133.846992, -32.503696], - [133.862406, -32.483536], - [133.85062, -32.461417], - [133.867482, -32.420449], - [133.866818, -32.399186], - [133.897186, -32.399574], - [133.886749, -32.402351], - [133.893665, -32.408599], - [133.889012, -32.41151], - [133.905579, -32.413412], - [133.887446, -32.423126], - [133.919317, -32.428318], - [133.94693, -32.411577], - [133.951086, -32.388513], - [133.932709, -32.379879], - [133.931014, -32.361804], - [133.901989, -32.318217], - [133.880096, -32.306173], - [133.86936, -32.280505], - [133.842866, -32.256313], - [133.818172, -32.247234], - [133.827154, -32.242835], - [133.821407, -32.23397], - [133.806014, -32.231165], - [133.808341, -32.243115], - [133.769731, -32.263826], - [133.755353, -32.235325], - [133.762215, -32.224313], - [133.756726, -32.205846], - [133.745056, -32.201553], - [133.736068, -32.207596], - [133.733206, -32.198675], - [133.714932, -32.194992], - [133.679113, -32.202643], - [133.692908, -32.15524], - [133.674713, -32.142638], - [133.648205, -32.152014], - [133.642718, -32.144576], - [133.670702, -32.134991], - [133.666883, -32.103832], - [133.643775, -32.095913], - [133.63055, -32.100079], - [133.62822, -32.090614], - [133.613619, -32.086022], - [133.592256, -32.087258], - [133.572514, -32.117454], - [133.584683, -32.140992], - [133.555852, -32.158998], - [133.553457, -32.169582], - [133.522105, -32.155301], - [133.525112, -32.137132], - [133.519074, -32.135729], - [133.525297, -32.127439], - [133.50477, -32.141927], - [133.51903, -32.143533], - [133.511304, -32.153307], - [133.496786, -32.150609], - [133.502926, -32.131086], - [133.483142, -32.126292], - [133.480031, -32.115968], - [133.489479, -32.10982], - [133.47279, -32.100107], - [133.451048, -32.112658], - [133.451453, -32.136008], - [133.438088, -32.12304], - [133.39511, -32.141578], - [133.398041, -32.156673], - [133.392332, -32.159361], - [133.400865, -32.169053], - [133.414843, -32.169899], - [133.411752, -32.177752], - [133.464309, -32.172158], - [133.491804, -32.195616], - [133.487729, -32.206108], - [133.485628, -32.196247], - [133.44624, -32.17852], - [133.425612, -32.184688], - [133.423492, -32.197973], - [133.389785, -32.200207], - [133.371437, -32.188838], - [133.322792, -32.179875], - [133.278238, -32.18353], - [133.275245, -32.194901], - [133.253192, -32.21087], - [133.230029, -32.190844], - [133.164662, -32.170052], - [133.146617, -32.174835], - [133.147535, -32.194517], - [133.125756, -32.208783], - [133.138132, -32.174878], - [133.088342, -32.127021], - [133.006622, -32.083401], - [132.979569, -32.106513], - [132.98157, -32.081999], - [132.963634, -32.065239], - [132.903772, -32.036233], - [132.826487, -31.981566], - [132.746588, -31.949342], - [132.734266, -31.956579], - [132.686927, -31.950662], - [132.660581, -31.957185], - [132.655504, -31.948156], - [132.595204, -31.934328], - [132.531329, -31.934945], - [132.478447, -31.946285], - [132.446417, -31.970725], - [132.437926, -32.000986], - [132.461607, -32.010634], - [132.473232, -32.030092], - [132.415452, -31.998806], - [132.393408, -32.001747], - [132.383915, -32.015743], - [132.38046, -32.009867], - [132.343188, -32.014498], - [132.335197, -32.029089], - [132.285618, -32.022479], - [132.271202, -32.033754], - [132.200614, -32.02728], - [132.176409, -32.018313], - [132.166219, -32.004709], - [132.151178, -32.003035], - [132.112775, -31.946543], - [132.072997, -31.91774], - [131.758577, -31.72026], - [131.442176, -31.571825], - [131.244776, -31.492277], - [131.148637, -31.463654], - [131.128507, -31.464717], - [131.081798, -31.490898], - [131.057558, -31.521546], - [131.026398, -31.537626], - [130.806132, -31.60563], - [130.734472, -31.606052], - [130.567923, -31.585733], - [130.488804, -31.593044], - [130.275063, -31.573662], - [130.152187, -31.576538], - [130.120404, -31.586414], - [129.918215, -31.590296], - [129.843095, -31.607747], - [129.527784, -31.622684], - [129.05281, -31.67418], - [129.00134, -31.687068], - [129.001854, -25.998613], - [140.999394, -25.996376], - [141.002937, -33.99851], - [141.002956, -34.021892], - [140.989765, -34.031708], - [140.980453, -34.016013], - [140.986747, -34.010237], - [140.97532, -34.009321], - [140.980575, -33.999996], - [140.969273, -33.997216], - [140.963616, -33.980648], - [140.963103, -35.748535], - [140.973872, -37.462093], - [140.965735, -38.055989], - [140.873073, -38.051014], - [140.837839, -38.041051], - [140.807612, -38.049008], - [140.782998, -38.04552], - [140.770478, -38.059708], - [140.716881, -38.051013], - [140.662442, -38.061474], - [140.642658, -38.041452], - [140.620936, -38.040256], - [140.608192, -38.027659], - [140.590339, -38.023614], - [140.579385, -38.029701], - [140.567291, -38.008596], - [140.517006, -37.98996], - [140.491164, -37.96087], - [140.454015, -37.935846], - [140.39645, -37.919006], - [140.388676, -37.901501], - [140.375888, -37.897846], - [140.353977, -37.849536], - [140.328417, -37.81817], - [140.318866, -37.789123], - [140.24789, -37.686113], - [140.178709, -37.617223], - [140.112713, -37.578417], - [140.107588, -37.565571], - [140.120189, -37.569746], - [140.131312, -37.556224], - [140.12084, -37.530865], - [140.049823, -37.478617], - [140.020089, -37.476952], - [140.011347, -37.493125], - [139.993117, -37.48589], - [139.996576, -37.476743], - [139.960106, -37.443363], - [139.949224, -37.44182], - [139.946727, -37.42933], - [139.890441, -37.375874], - [139.865514, -37.335612], - [139.840749, -37.32219], - [139.761627, -37.199707], - [139.74001, -37.182126], - [139.743061, -37.155849], - [139.776534, -37.165216], - [139.788459, -37.157799], - [139.795818, -37.137468], - [139.791482, -37.112869], - [139.768416, -37.081579], - [139.743931, -37.07419], - [139.740535, -37.021304], - [139.669972, -36.957431], - [139.675909, -36.942056], - [139.698355, -36.94011], - [139.73239, -36.916809], - [139.787616, -36.894859], - [139.842891, -36.839575], - [139.863159, -36.753479], - [139.861979, -36.692328], - [139.851109, -36.647474], - [139.782926, -36.458816], - [139.655207, -36.221918], - [139.52302, -36.043505], - [139.37702, -35.892234], - [139.211957, -35.754559], - [139.055313, -35.649577], - [138.883656, -35.55729], - [138.762908, -35.520673], - [138.710269, -35.513587], - [138.692927, -35.522923], - [138.684432, -35.538108], - [138.631522, -35.543844], - [138.626004, -35.557911], - [138.59822, -35.579469], - [138.603774, -35.594283], - [138.565936, -35.608529], - [138.52236, -35.642968], - [138.494522, -35.63353], - [138.431096, -35.629274], - [138.410026, -35.640576], - [138.275956, -35.639375], - [138.232054, -35.659589], - [138.191358, -35.66509], - [138.156886, -35.658167], - [138.096166, -35.625221], - [138.093913, -35.603403], - [138.108686, -35.592452], - [138.12743, -35.555371], - [138.165488, -35.519377], - [138.193862, -35.52365], - [138.24454, -35.500848], - [138.294318, -35.468183], - [138.341253, -35.392864], - [138.441044, -35.349994], - [138.447529, -35.320045], - [138.443202, -35.272135], - [138.459911, -35.261545], - [138.46993, -35.239157], - [138.469061, -35.109436], - [138.493568, -35.084609], - [138.517614, -35.03213], - [138.510356, -34.969695], - [138.47606, -34.856766], - [138.490256, -34.810966], - [138.477997, -34.78294], - [138.496325, -34.764612], - [138.515343, -34.770168], - [138.511546, -34.818085], - [138.500217, -34.843571] - ] - ], - [ - [ - [138.546309, -34.799042], - [138.518591, -34.805594], - [138.522502, -34.769668], - [138.514615, -34.756904], - [138.546309, -34.799042] - ] - ], - [ - [ - [138.544072, -34.80597], - [138.524303, -34.810078], - [138.537721, -34.801407], - [138.544072, -34.80597] - ] - ], - [ - [ - [138.134901, -35.841399], - [138.110893, -35.848409], - [138.040822, -35.904274], - [137.911134, -35.859789], - [137.874263, -35.870569], - [137.856083, -35.859755], - [137.803232, -35.850616], - [137.741097, -35.853115], - [137.726115, -35.876742], - [137.660289, -35.884899], - [137.611978, -35.913111], - [137.598172, -35.942693], - [137.605102, -35.964858], - [137.620444, -35.978592], - [137.602643, -36.00929], - [137.58664, -36.019559], - [137.535973, -36.025864], - [137.504002, -36.055873], - [137.485394, -36.057029], - [137.48278, -36.065675], - [137.460723, -36.074971], - [137.420237, -36.041416], - [137.405605, -36.038791], - [137.406806, -36.032412], - [137.379444, -36.013892], - [137.371018, -35.998416], - [137.278364, -35.994258], - [137.257945, -35.982221], - [137.20949, -35.973988], - [137.180849, -35.983985], - [137.179962, -35.993958], - [137.189772, -35.997078], - [137.161316, -36.016479], - [137.162682, -36.024739], - [137.145803, -36.020706], - [137.130947, -36.033985], - [137.102588, -36.018171], - [137.092381, -36.025105], - [137.05762, -36.0201], - [137.036082, -36.027651], - [136.997279, -36.017338], - [136.942162, -36.026688], - [136.915453, -36.043576], - [136.854045, -36.016575], - [136.831686, -36.019765], - [136.81674, -36.038845], - [136.781837, -36.031408], - [136.774976, -36.043631], - [136.75799, -36.049731], - [136.727088, -36.045071], - [136.705236, -36.064064], - [136.696256, -36.054659], - [136.705634, -36.051282], - [136.708435, -36.036926], - [136.66562, -35.975745], - [136.625028, -35.954423], - [136.59835, -35.961762], - [136.581743, -35.950849], - [136.579779, -35.930728], - [136.550767, -35.90193], - [136.538853, -35.899329], - [136.550604, -35.885701], - [136.53441, -35.886475], - [136.532942, -35.876557], - [136.541723, -35.85823], - [136.563908, -35.849535], - [136.560478, -35.828319], - [136.579361, -35.792374], - [136.573788, -35.76589], - [136.587436, -35.748857], - [136.697258, -35.739468], - [136.720292, -35.720286], - [136.758786, -35.722716], - [136.778416, -35.71221], - [136.783664, -35.700213], - [136.86171, -35.693844], - [136.952722, -35.674107], - [137.069652, -35.669155], - [137.12178, -35.651733], - [137.141189, -35.629762], - [137.16347, -35.633111], - [137.184955, -35.621209], - [137.203466, -35.624715], - [137.239456, -35.604191], - [137.285143, -35.598036], - [137.313489, -35.57924], - [137.446932, -35.596223], - [137.490998, -35.579767], - [137.518809, -35.595531], - [137.545784, -35.587221], - [137.564368, -35.571125], - [137.591737, -35.564088], - [137.605438, -35.57151], - [137.621661, -35.561188], - [137.634199, -35.565733], - [137.626677, -35.597161], - [137.615658, -35.589155], - [137.598203, -35.595276], - [137.569625, -35.618675], - [137.569756, -35.63243], - [137.589341, -35.643213], - [137.641217, -35.638891], - [137.64369, -35.654125], - [137.605689, -35.678765], - [137.603349, -35.692678], - [137.579197, -35.709027], - [137.577915, -35.725671], - [137.596038, -35.735349], - [137.626884, -35.731666], - [137.69626, -35.739791], - [137.780334, -35.723932], - [137.803452, -35.757605], - [137.771947, -35.780922], - [137.772751, -35.788005], - [137.746078, -35.800946], - [137.754379, -35.842984], - [137.762208, -35.838863], - [137.754157, -35.833933], - [137.772401, -35.822796], - [137.796662, -35.834287], - [137.814758, -35.822033], - [137.798297, -35.810204], - [137.770736, -35.814085], - [137.758373, -35.806042], - [137.762804, -35.798023], - [137.778092, -35.796203], - [137.777351, -35.784445], - [137.822554, -35.800182], - [137.852159, -35.79495], - [137.892535, -35.757945], - [137.893642, -35.728166], - [137.900608, -35.719757], - [137.940728, -35.716206], - [138.005581, -35.726301], - [138.045983, -35.742821], - [138.06779, -35.759784], - [138.066857, -35.780365], - [138.07695, -35.795898], - [138.106517, -35.809476], - [138.125725, -35.80235], - [138.119071, -35.819876], - [138.123264, -35.83424], - [138.134901, -35.841399] - ] - ], - [ - [ - [137.381767, -34.497301], - [137.371478, -34.505908], - [137.36523, -34.529483], - [137.351512, -34.534103], - [137.340983, -34.52633], - [137.338346, -34.488509], - [137.361392, -34.462878], - [137.374861, -34.468847], - [137.381767, -34.497301] - ] - ], - [ - [ - [136.867216, -35.37131], - [136.858413, -35.378187], - [136.85435, -35.371055], - [136.860653, -35.365574], - [136.867216, -35.37131] - ] - ], - [ - [ - [136.494692, -35.166527], - [136.489641, -35.176526], - [136.468701, -35.163436], - [136.453071, -35.166073], - [136.441521, -35.148699], - [136.453826, -35.144714], - [136.453584, -35.134301], - [136.494692, -35.166527] - ] - ], - [ - [ - [136.359072, -34.663679], - [136.345884, -34.671253], - [136.344484, -34.682606], - [136.329893, -34.658364], - [136.344605, -34.650539], - [136.359072, -34.663679] - ] - ], - [ - [ - [136.305585, -34.505339], - [136.284472, -34.515536], - [136.287571, -34.530193], - [136.278582, -34.537655], - [136.286523, -34.545408], - [136.274889, -34.549303], - [136.270571, -34.542143], - [136.279936, -34.50389], - [136.305585, -34.505339] - ] - ], - [ - [ - [136.279752, -34.681504], - [136.269174, -34.68333], - [136.26689, -34.673204], - [136.279752, -34.681504] - ] - ], - [ - [ - [136.204543, -35.052982], - [136.200019, -35.06541], - [136.1894, -35.052299], - [136.176914, -35.061493], - [136.163326, -35.05516], - [136.146785, -35.026593], - [136.159193, -35.020844], - [136.156605, -35.006405], - [136.111885, -34.977026], - [136.109902, -34.96874], - [136.084155, -34.966901], - [136.089183, -34.956008], - [136.078739, -34.952161], - [136.082766, -34.94543], - [136.107292, -34.93245], - [136.129531, -34.952374], - [136.149943, -34.987895], - [136.176086, -35.005754], - [136.189708, -35.004449], - [136.192501, -35.044324], - [136.204543, -35.052982] - ] - ], - [ - [ - [136.185876, -34.646672], - [136.180123, -34.647575], - [136.181304, -34.640457], - [136.185876, -34.646672] - ] - ], - [ - [ - [136.073126, -35.227388], - [136.07102, -35.238131], - [136.055516, -35.235491], - [136.063705, -35.222945], - [136.073126, -35.227388] - ] - ], - [ - [ - [136.069945, -34.962707], - [136.050632, -34.96822], - [136.059975, -34.957347], - [136.069945, -34.962707] - ] - ], - [ - [ - [136.038216, -34.907363], - [136.027948, -34.916969], - [136.032156, -34.905921], - [136.038216, -34.907363] - ] - ], - [ - [ - [136.014585, -34.882591], - [136.010196, -34.891351], - [136.000885, -34.880386], - [136.008219, -34.865101], - [136.014585, -34.882591] - ] - ], - [ - [ - [135.983063, -35.033605], - [135.97409, -35.037425], - [135.965616, -35.022049], - [135.974324, -35.027879], - [135.9789, -35.019936], - [135.983063, -35.033605] - ] - ], - [ - [ - [135.960402, -34.583104], - [135.952445, -34.593633], - [135.94614, -34.568367], - [135.955741, -34.56956], - [135.960402, -34.583104] - ] - ], - [ - [ - [135.953064, -34.723721], - [135.937263, -34.719738], - [135.929026, -34.732851], - [135.923401, -34.701869], - [135.911382, -34.695469], - [135.916855, -34.673059], - [135.921373, -34.683079], - [135.938574, -34.687447], - [135.939865, -34.711598], - [135.953064, -34.723721] - ] - ], - [ - [ - [135.626345, -34.982111], - [135.617531, -35.001798], - [135.61736, -34.980197], - [135.626345, -34.982111] - ] - ], - [ - [ - [134.813029, -33.594219], - [134.806786, -33.610433], - [134.776026, -33.595175], - [134.813029, -33.594219] - ] - ], - [ - [ - [134.681803, -33.2081], - [134.676802, -33.216999], - [134.666412, -33.214363], - [134.67076, -33.202427], - [134.681803, -33.2081] - ] - ], - [ - [ - [134.547689, -33.721441], - [134.506727, -33.723013], - [134.496082, -33.745812], - [134.446961, -33.772204], - [134.458137, -33.750746], - [134.453848, -33.740567], - [134.467848, -33.733433], - [134.471997, -33.690427], - [134.483397, -33.694013], - [134.527562, -33.677685], - [134.537786, -33.712614], - [134.547689, -33.721441] - ] - ], - [ - [ - [134.279578, -32.679966], - [134.259737, -32.678381], - [134.27497, -32.674265], - [134.279578, -32.679966] - ] - ], - [ - [ - [133.857514, -32.387369], - [133.788077, -32.358797], - [133.814528, -32.355451], - [133.806843, -32.358759], - [133.840764, -32.371959], - [133.857514, -32.387369] - ] - ], - [ - [ - [133.835456, -32.359889], - [133.816229, -32.35472], - [133.829955, -32.352285], - [133.835456, -32.359889] - ] - ], - [ - [ - [133.68352, -32.440256], - [133.657781, -32.454898], - [133.669125, -32.43642], - [133.68352, -32.440256] - ] - ], - [ - [ - [133.673997, -32.232494], - [133.644302, -32.2376], - [133.614344, -32.256815], - [133.615093, -32.270341], - [133.628394, -32.27136], - [133.611962, -32.282841], - [133.600296, -32.307921], - [133.580315, -32.306581], - [133.572989, -32.319107], - [133.549729, -32.308098], - [133.540236, -32.279], - [133.551372, -32.273134], - [133.550914, -32.263677], - [133.567216, -32.266873], - [133.593579, -32.251043], - [133.575415, -32.264464], - [133.581729, -32.268444], - [133.623823, -32.239292], - [133.673997, -32.232494] - ] - ], - [ - [ - [133.654949, -32.451097], - [133.639648, -32.463219], - [133.625508, -32.457157], - [133.634055, -32.449993], - [133.654949, -32.451097] - ] - ], - [ - [ - [133.530727, -32.304603], - [133.501381, -32.318356], - [133.513051, -32.302166], - [133.530727, -32.304603] - ] - ], - [ - [ - [133.487081, -32.371099], - [133.483864, -32.382613], - [133.47563, -32.381062], - [133.477016, -32.370624], - [133.487081, -32.371099] - ] - ], - [ - [ - [133.381916, -32.394907], - [133.366691, -32.402932], - [133.367743, -32.393433], - [133.381916, -32.394907] - ] - ], - [ - [ - [133.311036, -32.510125], - [133.304489, -32.521998], - [133.287616, -32.528476], - [133.287642, -32.517276], - [133.277379, -32.517608], - [133.283384, -32.511092], - [133.267768, -32.50049], - [133.288553, -32.490551], - [133.292226, -32.502113], - [133.310109, -32.499284], - [133.311036, -32.510125] - ] - ], - [ - [ - [133.298957, -32.557689], - [133.291466, -32.567595], - [133.275341, -32.565373], - [133.28604, -32.564128], - [133.283701, -32.554077], - [133.298957, -32.557689] - ] - ], - [ - [ - [133.289921, -32.585392], - [133.276318, -32.584805], - [133.284988, -32.578711], - [133.289921, -32.585392] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 4, - "properties": { - "name": "Western Australia", - "ISOCODE": "AU-WA" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [113.394175, -26.39303], - [113.382303, -26.385244], - [113.382563, -26.360994], - [113.370693, -26.357564], - [113.354662, -26.300853], - [113.336382, -26.300353], - [113.354172, -26.276373], - [113.357451, -26.245352], - [113.366341, -26.237572], - [113.364601, -26.210722], - [113.375871, -26.205202], - [113.386501, -26.212652], - [113.37851, -26.165042], - [113.38054, -26.119591], - [113.3873, -26.111471], - [113.373429, -26.097131], - [113.377939, -26.078641], - [113.358699, -26.065091], - [113.367579, -26.054151], - [113.356979, -26.03327], - [113.363739, -26.01748], - [113.386319, -26.06082], - [113.385559, -26.092181], - [113.4003, -26.105721], - [113.39672, -26.113951], - [113.42917, -26.138551], - [113.42442, -26.161001], - [113.43693, -26.167541], - [113.44468, -26.163261], - [113.448311, -26.212552], - [113.459571, -26.221802], - [113.462211, -26.253382], - [113.479871, -26.271092], - [113.482772, -26.320722], - [113.498812, -26.336053], - [113.487802, -26.357043], - [113.506592, -26.363913], - [113.502232, -26.400233], - [113.496452, -26.378133], - [113.484682, -26.383553], - [113.502253, -26.420313], - [113.485333, -26.430584], - [113.476963, -26.477054], - [113.486493, -26.484834], - [113.503293, -26.468814], - [113.506003, -26.409143], - [113.528272, -26.362212], - [113.512462, -26.336502], - [113.515962, -26.322062], - [113.507072, -26.323982], - [113.493912, -26.310342], - [113.513692, -26.302102], - [113.518311, -26.284501], - [113.511541, -26.276831], - [113.530451, -26.284381], - [113.537211, -26.27952], - [113.545491, -26.30275], - [113.540512, -26.324751], - [113.559482, -26.353482], - [113.548712, -26.380912], - [113.567072, -26.433343], - [113.561713, -26.461323], - [113.552323, -26.469113], - [113.563013, -26.493923], - [113.575554, -26.495823], - [113.577194, -26.504623], - [113.559825, -26.547154], - [113.558225, -26.574004], - [113.571785, -26.578164], - [113.583745, -26.600184], - [113.596295, -26.601934], - [113.598086, -26.614194], - [113.607105, -26.606204], - [113.588235, -26.585584], - [113.589205, -26.560214], - [113.599215, -26.544634], - [113.593394, -26.511933], - [113.609824, -26.514733], - [113.614084, -26.489423], - [113.618465, -26.518418], - [113.618064, -26.489683], - [113.630553, -26.463272], - [113.638153, -26.502853], - [113.628695, -26.540193], - [113.633505, -26.563643], - [113.625615, -26.571213], - [113.642026, -26.619454], - [113.653905, -26.594623], - [113.663695, -26.596193], - [113.657086, -26.616164], - [113.666416, -26.630354], - [113.657807, -26.654165], - [113.664009, -26.674456], - [113.680928, -26.658415], - [113.704918, -26.662085], - [113.688937, -26.649034], - [113.699957, -26.639314], - [113.697557, -26.632554], - [113.690737, -26.643904], - [113.686397, -26.637874], - [113.696146, -26.619244], - [113.686806, -26.601673], - [113.697006, -26.611464], - [113.714186, -26.606803], - [113.738446, -26.617583], - [113.769357, -26.587282], - [113.787617, -26.605053], - [113.807717, -26.610972], - [113.814227, -26.603852], - [113.812366, -26.576002], - [113.833105, -26.551251], - [113.863654, -26.536721], - [113.882864, -26.50847], - [113.887384, -26.4497], - [113.870232, -26.39134], - [113.885442, -26.371449], - [113.880661, -26.335378], - [113.836641, -26.280818], - [113.79775, -26.252269], - [113.68805, -26.217539], - [113.687479, -26.186189], - [113.663129, -26.165389], - [113.639458, -26.121969], - [113.614819, -26.108689], - [113.620809, -26.100899], - [113.5803, -26.097219], - [113.57354, -26.086279], - [113.585899, -26.071049], - [113.580019, -26.071839], - [113.567249, -26.044329], - [113.575338, -26.014548], - [113.560576, -25.998749], - [113.559108, -25.946398], - [113.517617, -25.919578], - [113.525307, -25.884177], - [113.512917, -25.852117], - [113.461056, -25.809357], - [113.478696, -25.783337], - [113.466285, -25.768077], - [113.479255, -25.764046], - [113.460525, -25.733766], - [113.462295, -25.725766], - [113.473245, -25.730526], - [113.471405, -25.720146], - [113.459465, -25.715606], - [113.472435, -25.709316], - [113.458624, -25.702856], - [113.444665, -25.709476], - [113.456855, -25.713116], - [113.446485, -25.723016], - [113.460265, -25.739746], - [113.459475, -25.752606], - [113.449625, -25.756417], - [113.464335, -25.751146], - [113.454205, -25.764887], - [113.467135, -25.773837], - [113.469346, -25.785457], - [113.414475, -25.724737], - [113.415234, -25.683786], - [113.431983, -25.625725], - [113.449083, -25.610885], - [113.472752, -25.558264], - [113.488952, -25.547814], - [113.499732, -25.513773], - [113.511082, -25.503303], - [113.525233, -25.607794], - [113.537754, -25.625765], - [113.558634, -25.635505], - [113.574684, -25.636894], - [113.581314, -25.620774], - [113.592765, -25.683625], - [113.606655, -25.714325], - [113.626415, -25.733535], - [113.659025, -25.748575], - [113.691116, -25.789215], - [113.721766, -25.793645], - [113.721717, -25.868086], - [113.761857, -25.878595], - [113.758477, -25.905095], - [113.731638, -25.949526], - [113.729936, -26.001947], - [113.738917, -25.999667], - [113.734327, -26.013658], - [113.699924, -26.044962], - [113.706085, -26.061982], - [113.703642, -26.096375], - [113.706197, -26.11239], - [113.704968, -26.12356], - [113.703554, -26.097609], - [113.701118, -26.13191], - [113.728259, -26.187239], - [113.7249, -26.194689], - [113.70321, -26.199769], - [113.72102, -26.196729], - [113.72818, -26.206749], - [113.74232, -26.206839], - [113.7528, -26.197909], - [113.753519, -26.185049], - [113.76222, -26.212209], - [113.77399, -26.214889], - [113.78998, -26.207408], - [113.813279, -26.178818], - [113.836409, -26.140187], - [113.835199, -26.115607], - [113.845569, -26.113657], - [113.836329, -26.116727], - [113.837649, -26.138657], - [113.883738, -26.060216], - [113.879018, -26.068116], - [113.885248, -26.029306], - [113.865247, -25.955965], - [113.877217, -25.945125], - [113.887457, -25.959105], - [113.906417, -25.960115], - [113.914427, -25.982435], - [113.902487, -25.998745], - [113.893518, -26.035146], - [113.908458, -26.054496], - [113.904588, -26.088906], - [113.910849, -26.122376], - [113.924519, -26.133386], - [113.938879, -26.129846], - [113.947559, -26.143006], - [113.93431, -26.203947], - [113.959511, -26.244227], - [113.950481, -26.267597], - [113.967251, -26.293926], - [113.972862, -26.342507], - [114.053862, -26.419217], - [114.082562, -26.454547], - [114.074362, -26.451227], - [114.075132, -26.459277], - [114.072592, -26.452337], - [114.076792, -26.466587], - [114.089562, -26.467617], - [114.094812, -26.459327], - [114.089562, -26.458487], - [114.156462, -26.410107], - [114.166352, -26.390016], - [114.210282, -26.372056], - [114.219851, -26.357256], - [114.215901, -26.341546], - [114.237651, -26.312765], - [114.231651, -26.300875], - [114.23798, -26.283905], - [114.20403, -26.244795], - [114.20553, -26.224064], - [114.19189, -26.203644], - [114.18829, -26.180263], - [114.191179, -26.168333], - [114.210679, -26.157803], - [114.223509, -26.119022], - [114.230689, -26.124612], - [114.219899, -26.139513], - [114.225349, -26.165043], - [114.241339, -26.165863], - [114.254709, -26.144892], - [114.236019, -26.117782], - [114.239278, -26.072702], - [114.209147, -26.031612], - [114.194667, -25.983571], - [114.218447, -25.968891], - [114.225667, -25.973651], - [114.223607, -25.987401], - [114.245047, -25.992551], - [114.265307, -25.982131], - [114.257567, -25.983341], - [114.252867, -25.972951], - [114.247036, -25.936501], - [114.266835, -25.88774], - [114.232095, -25.87567], - [114.227045, -25.862], - [114.205395, -25.85302], - [114.198745, -25.83563], - [114.167955, -25.81127], - [114.175545, -25.81265], - [114.172095, -25.80644], - [114.134484, -25.778099], - [114.132524, -25.772338], - [114.146304, -25.780169], - [114.119404, -25.755256], - [114.114114, -25.743165], - [114.122245, -25.735975], - [114.113586, -25.725455], - [114.119555, -25.728185], - [114.091091, -25.696372], - [114.035389, -25.662525], - [114.048427, -25.667324], - [114.019199, -25.624117], - [114.01965, -25.632347], - [114.004183, -25.618519], - [114.01536, -25.620488], - [113.990189, -25.58992], - [113.982191, -25.560829], - [113.99166, -25.57514], - [113.99164, -25.56488], - [113.954523, -25.493408], - [113.93401, -25.475488], - [113.93922, -25.470638], - [113.939731, -25.480228], - [113.94121, -25.473228], - [113.948421, -25.477168], - [113.944179, -25.458678], - [113.90205, -25.410088], - [113.9136, -25.413468], - [113.90813, -25.406708], - [113.91384, -25.400948], - [113.891109, -25.372988], - [113.896689, -25.357417], - [113.891339, -25.337007], - [113.856719, -25.292457], - [113.868629, -25.299337], - [113.864909, -25.287607], - [113.871479, -25.290317], - [113.842578, -25.264597], - [113.842088, -25.255907], - [113.848158, -25.256927], - [113.839617, -25.216997], - [113.817067, -25.173566], - [113.802207, -25.157316], - [113.739897, -25.127367], - [113.712426, -25.103316], - [113.665985, -25.022706], - [113.664234, -24.958656], - [113.679944, -24.932985], - [113.691924, -24.928535], - [113.677804, -24.924985], - [113.665146, -24.895891], - [113.652354, -24.905115], - [113.651491, -24.897891], - [113.65519, -24.882163], - [113.644444, -24.878065], - [113.666133, -24.861964], - [113.706889, -24.850707], - [113.676463, -24.848724], - [113.646983, -24.864515], - [113.617533, -24.858645], - [113.615863, -24.844545], - [113.620883, -24.831784], - [113.620213, -24.849725], - [113.632723, -24.797444], - [113.623242, -24.746034], - [113.489939, -24.575957], - [113.427619, -24.515616], - [113.419178, -24.491706], - [113.406958, -24.484176], - [113.399528, -24.411406], - [113.406196, -24.303065], - [113.390165, -24.223995], - [113.409115, -24.223505], - [113.443343, -24.181694], - [113.442382, -24.136784], - [113.419422, -24.090333], - [113.428122, -24.080733], - [113.422151, -24.042933], - [113.429991, -24.032653], - [113.446941, -24.032173], - [113.4587, -24.013642], - [113.470909, -23.966452], - [113.464999, -23.925572], - [113.470308, -23.898561], - [113.513827, -23.84733], - [113.520177, -23.797639], - [113.531906, -23.774839], - [113.567276, -23.752229], - [113.591695, -23.698938], - [113.596614, -23.663358], - [113.614153, -23.646688], - [113.613213, -23.630908], - [113.636191, -23.618921], - [113.650858, -23.599586], - [113.70047, -23.575201], - [113.72587, -23.545007], - [113.75326, -23.528236], - [113.778119, -23.478055], - [113.783468, -23.416074], - [113.776938, -23.378934], - [113.788108, -23.365153], - [113.794447, -23.296052], - [113.770376, -23.217841], - [113.774436, -23.194561], - [113.763826, -23.177771], - [113.770855, -23.13065], - [113.760475, -23.1213], - [113.789665, -23.10674], - [113.812495, -23.082769], - [113.829426, -23.030908], - [113.829485, -22.994887], - [113.819755, -22.977056], - [113.826185, -22.956016], - [113.816655, -22.906935], - [113.801184, -22.886805], - [113.793804, -22.842664], - [113.755254, -22.756224], - [113.709393, -22.715284], - [113.677123, -22.723044], - [113.670493, -22.717134], - [113.686423, -22.664414], - [113.668262, -22.628723], - [113.673612, -22.596863], - [113.654082, -22.578773], - [113.665302, -22.550123], - [113.693132, -22.540952], - [113.713761, -22.517962], - [113.707921, -22.496702], - [113.722981, -22.496212], - [113.737741, -22.471031], - [113.74938, -22.408421], - [113.76547, -22.38435], - [113.78031, -22.37676], - [113.820809, -22.305849], - [113.866887, -22.151067], - [113.933246, -21.998885], - [113.933596, -21.973225], - [113.963945, -21.938004], - [113.995084, -21.875463], - [114.023922, -21.851153], - [114.072079, -21.827572], - [114.078749, -21.815962], - [114.10802, -21.803272], - [114.131572, -21.805571], - [114.165205, -21.785761], - [114.191014, -21.814581], - [114.148873, -21.866652], - [114.138063, -21.957822], - [114.080266, -22.154135], - [114.084757, -22.191275], - [114.133007, -22.261584], - [114.123738, -22.279275], - [114.126418, -22.313925], - [114.117078, -22.314915], - [114.115818, -22.331156], - [114.149498, -22.301463], - [114.178468, -22.305374], - [114.178218, -22.353442], - [114.135518, -22.393165], - [114.140118, -22.398025], - [114.129918, -22.399916], - [114.147038, -22.396805], - [114.140929, -22.409195], - [114.128189, -22.407806], - [114.122099, -22.415806], - [114.128329, -22.441656], - [114.121799, -22.472668], - [114.13859, -22.497539], - [114.135628, -22.500663], - [114.14391, -22.506699], - [114.14381, -22.538059], - [114.15104, -22.517099], - [114.1618, -22.534049], - [114.16073, -22.523779], - [114.1888, -22.520809], - [114.21861, -22.497188], - [114.21621, -22.486008], - [114.23069, -22.473288], - [114.22563, -22.457368], - [114.24117, -22.459207], - [114.28237, -22.433786], - [114.31744, -22.440617], - [114.32279, -22.503707], - [114.32404, -22.479567], - [114.32718, -22.489727], - [114.33896, -22.492117], - [114.34032, -22.516307], - [114.34503, -22.490207], - [114.35485, -22.500606], - [114.35765, -22.494287], - [114.35874, -22.503896], - [114.36276, -22.492827], - [114.36785, -22.500166], - [114.37708, -22.498146], - [114.36458, -22.490347], - [114.38377, -22.490786], - [114.37261, -22.483027], - [114.38608, -22.484616], - [114.37711, -22.476147], - [114.38356, -22.464757], - [114.40383, -22.469407], - [114.39, -22.461037], - [114.38031, -22.441277], - [114.39298, -22.446257], - [114.39173, -22.439037], - [114.4053, -22.438947], - [114.38627, -22.434067], - [114.38604, -22.426617], - [114.40788, -22.429237], - [114.39236, -22.421547], - [114.390439, -22.402587], - [114.402089, -22.403047], - [114.394809, -22.401687], - [114.393369, -22.390967], - [114.42333, -22.395737], - [114.396409, -22.382957], - [114.40129, -22.359597], - [114.408706, -22.36145], - [114.407, -22.350917], - [114.42302, -22.351497], - [114.44083, -22.367537], - [114.44569, -22.363706], - [114.4366, -22.357147], - [114.45164, -22.362576], - [114.4309, -22.351727], - [114.44328, -22.342937], - [114.42314, -22.345967], - [114.40872, -22.331167], - [114.41468, -22.316167], - [114.42644, -22.319787], - [114.41651, -22.310527], - [114.423059, -22.300597], - [114.439679, -22.303997], - [114.43362, -22.294967], - [114.46088, -22.329296], - [114.449019, -22.300057], - [114.46139, -22.292616], - [114.43726, -22.289326], - [114.42976, -22.275436], - [114.43983, -22.264945], - [114.46093, -22.271896], - [114.45038, -22.259655], - [114.47257, -22.264406], - [114.44869, -22.253554], - [114.44397, -22.242045], - [114.454045, -22.244557], - [114.45137, -22.238325], - [114.463731, -22.244985], - [114.458602, -22.245694], - [114.48187, -22.251497], - [114.45222, -22.235045], - [114.4532, -22.207968], - [114.46932, -22.217947], - [114.46642, -22.204248], - [114.47842, -22.204818], - [114.48899, -22.219118], - [114.500461, -22.220498], - [114.47176, -22.190368], - [114.481568, -22.18803], - [114.4536, -22.166098], - [114.45566, -22.159548], - [114.48946, -22.157647], - [114.49069, -22.171057], - [114.49952, -22.162957], - [114.50799, -22.183507], - [114.50085, -22.150317], - [114.50582, -22.158217], - [114.50691, -22.152916], - [114.5149, -22.156646], - [114.50134, -22.129886], - [114.519389, -22.123235], - [114.526329, -22.141576], - [114.518059, -22.105855], - [114.527749, -22.101794], - [114.531389, -22.095344], - [114.525809, -22.100324], - [114.523149, -22.093434], - [114.535739, -22.078764], - [114.520239, -22.082714], - [114.517339, -22.066464], - [114.542519, -22.060823], - [114.551599, -22.066463], - [114.547849, -22.052133], - [114.558978, -22.020301], - [114.574359, -22.043662], - [114.564189, -22.026842], - [114.575438, -22.015781], - [114.570598, -22.001781], - [114.585028, -21.99688], - [114.589378, -22.019481], - [114.586568, -22.003811], - [114.601358, -21.98772], - [114.605908, -22.00686], - [114.604868, -21.98749], - [114.615748, -21.97619], - [114.612938, -21.96152], - [114.626148, -21.97358], - [114.615218, -21.947629], - [114.637127, -21.944579], - [114.619328, -21.944779], - [114.621497, -21.935879], - [114.639367, -21.917348], - [114.651637, -21.922518], - [114.664297, -21.910538], - [114.647597, -21.919928], - [114.642507, -21.909328], - [114.648076, -21.844517], - [114.675486, -21.827656], - [114.686136, -21.832946], - [114.693166, -21.839366], - [114.685247, -21.867827], - [114.697647, -21.843086], - [114.693386, -21.830816], - [114.683356, -21.828996], - [114.698796, -21.813726], - [114.720886, -21.798786], - [114.778396, -21.790546], - [114.857156, -21.734465], - [114.860906, -21.738045], - [114.858956, -21.732655], - [114.903446, -21.705314], - [114.914256, -21.688344], - [114.936136, -21.690764], - [114.973136, -21.669643], - [114.988376, -21.673993], - [114.972296, -21.670773], - [114.945196, -21.690393], - [114.958346, -21.686173], - [114.962986, -21.692613], - [114.963037, -21.68583], - [114.958696, -21.683693], - [114.966276, -21.677233], - [114.973816, -21.681793], - [114.967966, -21.675413], - [114.974716, -21.671553], - [114.984046, -21.679543], - [115.029006, -21.684683], - [115.016716, -21.692863], - [115.026126, -21.688193], - [115.027846, -21.694883], - [115.029496, -21.686713], - [115.040396, -21.692212], - [115.037106, -21.684883], - [115.043246, -21.682142], - [115.030336, -21.685583], - [115.054706, -21.677582], - [115.055956, -21.686052], - [115.057116, -21.675882], - [115.108956, -21.631741], - [115.131126, -21.644862], - [115.131686, -21.659842], - [115.142186, -21.659042], - [115.132206, -21.644852], - [115.160617, -21.626211], - [115.176586, -21.636612], - [115.161576, -21.625072], - [115.178526, -21.611331], - [115.194926, -21.628312], - [115.193786, -21.620291], - [115.210136, -21.627892], - [115.186866, -21.612421], - [115.211046, -21.597741], - [115.219856, -21.616211], - [115.219776, -21.602551], - [115.234417, -21.596221], - [115.229977, -21.592561], - [115.242317, -21.576801], - [115.252147, -21.585001], - [115.243107, -21.587071], - [115.245947, -21.595891], - [115.244677, -21.588201], - [115.298207, -21.594131], - [115.327218, -21.5803], - [115.328417, -21.58316], - [115.331168, -21.57599], - [115.381689, -21.54814], - [115.399119, -21.556059], - [115.401449, -21.547009], - [115.418299, -21.539879], - [115.414159, -21.534689], - [115.381169, -21.543289], - [115.404719, -21.528238], - [115.416339, -21.532568], - [115.408099, -21.527878], - [115.412909, -21.524798], - [115.433338, -21.529188], - [115.428139, -21.545369], - [115.436598, -21.530188], - [115.435319, -21.542018], - [115.440673, -21.53814], - [115.439559, -21.538188], - [115.438168, -21.529608], - [115.457316, -21.508477], - [115.458668, -21.527558], - [115.443498, -21.532848], - [115.4474, -21.53785], - [115.444495, -21.537976], - [115.446529, -21.543788], - [115.448352, -21.539071], - [115.45569, -21.548478], - [115.456349, -21.539778], - [115.445068, -21.532838], - [115.459058, -21.531058], - [115.46387, -21.547228], - [115.460388, -21.531728], - [115.467747, -21.514737], - [115.476168, -21.527107], - [115.47558, -21.547188], - [115.477278, -21.530037], - [115.491459, -21.537397], - [115.49243, -21.545807], - [115.498209, -21.536058], - [115.493239, -21.534337], - [115.493444, -21.52791], - [115.492399, -21.534347], - [115.480899, -21.530127], - [115.475037, -21.505767], - [115.496198, -21.510937], - [115.495312, -21.516397], - [115.499928, -21.508877], - [115.510698, -21.509527], - [115.510869, -21.524847], - [115.520308, -21.509176], - [115.495158, -21.501457], - [115.491127, -21.495497], - [115.494612, -21.492555], - [115.492557, -21.492437], - [115.492747, -21.485766], - [115.506617, -21.477336], - [115.516477, -21.483476], - [115.528267, -21.464786], - [115.515287, -21.481206], - [115.508427, -21.475996], - [115.526357, -21.459466], - [115.506267, -21.474406], - [115.509716, -21.457936], - [115.516966, -21.454696], - [115.518147, -21.461466], - [115.518576, -21.446576], - [115.549255, -21.434726], - [115.558646, -21.437695], - [115.565447, -21.457255], - [115.561056, -21.438835], - [115.571627, -21.448805], - [115.563346, -21.438955], - [115.572695, -21.427545], - [115.562156, -21.435905], - [115.550914, -21.413065], - [115.583583, -21.384845], - [115.591003, -21.397405], - [115.580864, -21.401885], - [115.585784, -21.406185], - [115.592693, -21.397865], - [115.597464, -21.410855], - [115.593073, -21.391655], - [115.609033, -21.382045], - [115.602163, -21.379385], - [115.595733, -21.389515], - [115.588783, -21.379895], - [115.605012, -21.361104], - [115.617963, -21.377344], - [115.619193, -21.366854], - [115.608763, -21.356264], - [115.621074, -21.351674], - [115.627954, -21.363184], - [115.637415, -21.345554], - [115.627454, -21.354744], - [115.618084, -21.345684], - [115.640326, -21.327134], - [115.652917, -21.346364], - [115.648726, -21.337434], - [115.662207, -21.342214], - [115.649696, -21.336644], - [115.668266, -21.333764], - [115.648386, -21.331674], - [115.652546, -21.315654], - [115.683226, -21.319314], - [115.678946, -21.309984], - [115.703144, -21.279463], - [115.705095, -21.299573], - [115.716284, -21.276673], - [115.719964, -21.288723], - [115.735854, -21.283833], - [115.737974, -21.274923], - [115.744593, -21.278637], - [115.744104, -21.277313], - [115.756344, -21.253863], - [115.752614, -21.284013], - [115.762314, -21.271823], - [115.770344, -21.284603], - [115.761724, -21.268093], - [115.769244, -21.267891], - [115.767424, -21.254113], - [115.783794, -21.256743], - [115.779274, -21.288553], - [115.787864, -21.265673], - [115.794433, -21.262797], - [115.787544, -21.251563], - [115.791894, -21.246493], - [115.804654, -21.245843], - [115.816655, -21.265623], - [115.808864, -21.248903], - [115.831246, -21.251437], - [115.819345, -21.247453], - [115.829245, -21.239803], - [115.830964, -21.225243], - [115.844875, -21.227893], - [115.833533, -21.205602], - [115.850303, -21.191862], - [115.856418, -21.194914], - [115.854553, -21.176072], - [115.869993, -21.157362], - [115.876543, -21.164142], - [115.869043, -21.151712], - [115.877983, -21.135362], - [115.887543, -21.138812], - [115.881502, -21.121142], - [115.893376, -21.117304], - [115.889342, -21.112682], - [115.918152, -21.078751], - [115.925732, -21.077861], - [115.923423, -21.093551], - [115.917776, -21.093008], - [115.923783, -21.095691], - [115.927662, -21.077411], - [115.989382, -21.040109], - [116.069422, -21.017038], - [116.097092, -21.000447], - [116.093712, -21.024268], - [116.105226, -21.037917], - [116.095522, -21.024498], - [116.103222, -21.001127], - [116.130452, -20.997017], - [116.146142, -21.012727], - [116.140302, -20.991917], - [116.164532, -20.968736], - [116.176822, -20.977626], - [116.188102, -20.967896], - [116.189741, -20.901295], - [116.226741, -20.883454], - [116.210131, -20.888494], - [116.214021, -20.879854], - [116.207011, -20.889604], - [116.19103, -20.888425], - [116.20459, -20.833754], - [116.236371, -20.860333], - [116.256172, -20.857773], - [116.241431, -20.865733], - [116.246722, -20.865953], - [116.241341, -20.876574], - [116.252972, -20.866163], - [116.259561, -20.867633], - [116.255571, -20.880183], - [116.272441, -20.868933], - [116.28929, -20.877023], - [116.286, -20.881323], - [116.29734, -20.877113], - [116.297932, -20.880271], - [116.30263, -20.876313], - [116.32903, -20.868003], - [116.345391, -20.838822], - [116.366911, -20.841922], - [116.399031, -20.822181], - [116.400171, -20.830301], - [116.439771, -20.826671], - [116.453791, -20.844471], - [116.459009, -20.842679], - [116.453162, -20.840171], - [116.442401, -20.824181], - [116.45945, -20.822651], - [116.464803, -20.825627], - [116.46686, -20.814951], - [116.480531, -20.808011], - [116.488152, -20.815441], - [116.483151, -20.804281], - [116.49242, -20.799511], - [116.502271, -20.807821], - [116.50065, -20.798501], - [116.48929, -20.797171], - [116.51378, -20.778531], - [116.527729, -20.782771], - [116.52783, -20.791521], - [116.535647, -20.785559], - [116.51339, -20.77176], - [116.524128, -20.758061], - [116.531508, -20.768751], - [116.53525, -20.76739], - [116.532098, -20.767851], - [116.525909, -20.752861], - [116.549777, -20.748361], - [116.551857, -20.755011], - [116.553368, -20.746431], - [116.578324, -20.74169], - [116.560572, -20.74681], - [116.579184, -20.74519], - [116.583064, -20.75172], - [116.590204, -20.74042], - [116.594494, -20.74467], - [116.587394, -20.75242], - [116.597554, -20.74567], - [116.605204, -20.75382], - [116.591744, -20.73451], - [116.601645, -20.728406], - [116.574794, -20.7311], - [116.590744, -20.717199], - [116.573714, -20.708299], - [116.579034, -20.692129], - [116.593494, -20.684569], - [116.592914, -20.705949], - [116.607454, -20.686469], - [116.628384, -20.683609], - [116.636794, -20.674709], - [116.647994, -20.682339], - [116.602277, -20.728017], - [116.623084, -20.715189], - [116.616084, -20.729109], - [116.624034, -20.734039], - [116.630624, -20.710729], - [116.636114, -20.726199], - [116.629904, -20.732089], - [116.633662, -20.734922], - [116.633634, -20.734839], - [116.639594, -20.725949], - [116.654034, -20.732319], - [116.652501, -20.735413], - [116.662944, -20.733249], - [116.663774, -20.741369], - [116.663514, -20.732049], - [116.642074, -20.721939], - [116.668238, -20.726694], - [116.682624, -20.714229], - [116.684744, -20.723029], - [116.688884, -20.705779], - [116.666704, -20.722209], - [116.656594, -20.717859], - [116.661214, -20.713889], - [116.650224, -20.715859], - [116.666794, -20.711709], - [116.644934, -20.714529], - [116.642474, -20.704719], - [116.668054, -20.684839], - [116.696484, -20.683088], - [116.692134, -20.677608], - [116.721668, -20.646594], - [116.721658, -20.637941], - [116.740594, -20.641238], - [116.765153, -20.633147], - [116.746393, -20.621328], - [116.770663, -20.588797], - [116.780043, -20.583177], - [116.784493, -20.589277], - [116.798162, -20.575437], - [116.778143, -20.576797], - [116.789782, -20.560137], - [116.810581, -20.549857], - [116.815071, -20.539557], - [116.804531, -20.541537], - [116.811161, -20.529187], - [116.867491, -20.526156], - [116.819793, -20.581637], - [116.822893, -20.597997], - [116.819273, -20.606307], - [116.808093, -20.606417], - [116.814903, -20.607177], - [116.812813, -20.614757], - [116.797913, -20.630087], - [116.802423, -20.640447], - [116.787262, -20.665297], - [116.792573, -20.675388], - [116.787843, -20.686928], - [116.797442, -20.667567], - [116.799803, -20.680658], - [116.828193, -20.708718], - [116.898773, -20.724107], - [116.923653, -20.712327], - [116.927533, -20.725087], - [116.919903, -20.740687], - [116.927913, -20.725687], - [116.931653, -20.730926], - [116.927073, -20.720087], - [116.952673, -20.724336], - [116.926423, -20.713207], - [116.956812, -20.701226], - [116.945572, -20.698196], - [116.956322, -20.683326], - [116.965442, -20.683266], - [116.973632, -20.671016], - [116.979252, -20.687446], - [116.979152, -20.671095], - [116.982442, -20.670807], - [116.976262, -20.668966], - [116.990212, -20.658155], - [117.036232, -20.648204], - [117.029502, -20.658244], - [117.038022, -20.659494], - [117.038802, -20.667574], - [117.066372, -20.639543], - [117.084502, -20.636063], - [117.094351, -20.623993], - [117.105332, -20.654783], - [117.128192, -20.654393], - [117.138272, -20.626753], - [117.171421, -20.593562], - [117.182811, -20.592332], - [117.175851, -20.606112], - [117.180651, -20.616122], - [117.191201, -20.613342], - [117.199223, -20.631731], - [117.192972, -20.638582], - [117.176194, -20.632304], - [117.181592, -20.639662], - [117.156852, -20.657153], - [117.181362, -20.645062], - [117.175908, -20.664591], - [117.190092, -20.673322], - [117.189132, -20.665082], - [117.200422, -20.666552], - [117.171942, -20.700593], - [117.182642, -20.691842], - [117.187154, -20.695515], - [117.195172, -20.680332], - [117.214452, -20.705982], - [117.227292, -20.706772], - [117.217282, -20.713322], - [117.216423, -20.724842], - [117.228972, -20.705532], - [117.211932, -20.697732], - [117.223092, -20.695142], - [117.242282, -20.702532], - [117.245012, -20.714202], - [117.244762, -20.704312], - [117.276731, -20.723394], - [117.284682, -20.720252], - [117.283923, -20.735322], - [117.292012, -20.723622], - [117.287933, -20.734912], - [117.299922, -20.726502], - [117.297992, -20.738032], - [117.302672, -20.726802], - [117.347532, -20.735652], - [117.357832, -20.743033], - [117.346672, -20.759303], - [117.340148, -20.75911], - [117.337302, -20.774213], - [117.340472, -20.764283], - [117.349652, -20.763033], - [117.349702, -20.778983], - [117.357872, -20.775772], - [117.350712, -20.771633], - [117.352302, -20.757123], - [117.366722, -20.745742], - [117.362752, -20.734332], - [117.369832, -20.734222], - [117.382811, -20.750712], - [117.377051, -20.758842], - [117.381762, -20.784363], - [117.390151, -20.760982], - [117.397962, -20.771023], - [117.397352, -20.758832], - [117.386081, -20.760442], - [117.388341, -20.752732], - [117.403842, -20.760062], - [117.387441, -20.744782], - [117.395171, -20.730592], - [117.426992, -20.731132], - [117.436492, -20.746492], - [117.429782, -20.758012], - [117.441062, -20.753602], - [117.441422, -20.745352], - [117.457401, -20.757222], - [117.461121, -20.751662], - [117.434562, -20.740502], - [117.442572, -20.730602], - [117.544521, -20.707741], - [117.551302, -20.710321], - [117.552551, -20.704001], - [117.573301, -20.694031], - [117.594911, -20.703641], - [117.585011, -20.694171], - [117.590691, -20.688011], - [117.598871, -20.694771], - [117.589961, -20.679771], - [117.630731, -20.663771], - [117.64833, -20.66199], - [117.618871, -20.678851], - [117.616571, -20.687271], - [117.625961, -20.677101], - [117.641691, -20.677981], - [117.637162, -20.693351], - [117.645072, -20.689441], - [117.646552, -20.702141], - [117.628292, -20.709091], - [117.643982, -20.711651], - [117.651362, -20.703931], - [117.656312, -20.715471], - [117.654322, -20.688911], - [117.667362, -20.672281], - [117.664152, -20.684141], - [117.675362, -20.699031], - [117.666782, -20.679391], - [117.680432, -20.666601], - [117.689442, -20.66872], - [117.686822, -20.677311], - [117.697292, -20.687], - [117.688182, -20.691541], - [117.700652, -20.68677], - [117.704112, -20.69455], - [117.713972, -20.68222], - [117.736281, -20.67889], - [117.737391, -20.68657], - [117.739281, -20.67764], - [117.746241, -20.68229], - [117.747311, -20.67412], - [117.769461, -20.66608], - [117.770181, -20.67633], - [117.774191, -20.67009], - [117.793421, -20.6793], - [117.809731, -20.67417], - [117.794851, -20.67534], - [117.774281, -20.66354], - [117.782781, -20.65437], - [117.794181, -20.65558], - [117.814141, -20.63214], - [117.85412, -20.606039], - [117.86457, -20.607469], - [117.859369, -20.597439], - [117.867469, -20.581939], - [117.897989, -20.585259], - [117.884729, -20.578269], - [117.891418, -20.573049], - [117.878379, -20.581109], - [117.871029, -20.571759], - [117.881738, -20.551958], - [117.895298, -20.551798], - [117.890138, -20.558178], - [117.903338, -20.553688], - [117.900368, -20.561948], - [117.915899, -20.567298], - [117.912169, -20.576598], - [117.920299, -20.566728], - [117.930279, -20.570878], - [117.914649, -20.562688], - [117.924569, -20.561048], - [117.912258, -20.555528], - [117.919848, -20.543578], - [117.941329, -20.546668], - [117.943769, -20.556818], - [117.934539, -20.558548], - [117.941779, -20.566988], - [117.949509, -20.551828], - [117.945399, -20.546198], - [117.957759, -20.547847], - [117.960229, -20.561958], - [117.959329, -20.549418], - [117.970579, -20.544407], - [117.975049, -20.550487], - [117.972849, -20.541687], - [117.964119, -20.546917], - [117.970969, -20.525207], - [117.959679, -20.546817], - [117.942719, -20.536837], - [117.959189, -20.517007], - [117.948409, -20.519987], - [117.951369, -20.511617], - [117.961689, -20.506646], - [117.949409, -20.510437], - [117.942939, -20.530507], - [117.931528, -20.526597], - [117.942168, -20.510907], - [117.940918, -20.479916], - [117.965299, -20.491116], - [117.952538, -20.479196], - [117.992309, -20.472155], - [118.017779, -20.458715], - [118.050079, -20.422104], - [118.103248, -20.394765], - [118.109758, -20.401053], - [118.110288, -20.387724], - [118.160907, -20.357893], - [118.181566, -20.336413], - [118.196726, -20.337923], - [118.200207, -20.360063], - [118.184787, -20.345573], - [118.172967, -20.350943], - [118.172297, -20.359123], - [118.182097, -20.355983], - [118.175987, -20.354883], - [118.183717, -20.346713], - [118.184127, -20.356003], - [118.199827, -20.368943], - [118.180077, -20.358133], - [118.198227, -20.369453], - [118.169527, -20.368983], - [118.165128, -20.382943], - [118.205457, -20.376413], - [118.196158, -20.403754], - [118.213937, -20.373203], - [118.224707, -20.370553], - [118.215487, -20.370943], - [118.232717, -20.368144], - [118.240166, -20.371944], - [118.235996, -20.375234], - [118.244226, -20.369774], - [118.257216, -20.377723], - [118.257336, -20.358853], - [118.281016, -20.353423], - [118.283496, -20.367413], - [118.297766, -20.351633], - [118.308396, -20.364343], - [118.314806, -20.356053], - [118.318336, -20.365403], - [118.315396, -20.354693], - [118.288766, -20.348633], - [118.346126, -20.329892], - [118.353606, -20.355253], - [118.344056, -20.360053], - [118.359136, -20.358723], - [118.363596, -20.373963], - [118.368666, -20.351432], - [118.379196, -20.369622], - [118.379086, -20.351372], - [118.400626, -20.348642], - [118.409436, -20.358522], - [118.403846, -20.364302], - [118.411626, -20.361082], - [118.408896, -20.349152], - [118.416856, -20.339562], - [118.439586, -20.338452], - [118.428016, -20.344722], - [118.450305, -20.346742], - [118.448915, -20.337152], - [118.455845, -20.335072], - [118.477516, -20.349491], - [118.493035, -20.343631], - [118.489266, -20.350991], - [118.495915, -20.343641], - [118.479395, -20.329151], - [118.487515, -20.325971], - [118.494955, -20.328141], - [118.486585, -20.330461], - [118.491045, -20.334271], - [118.510725, -20.330641], - [118.506386, -20.348781], - [118.517905, -20.330811], - [118.506205, -20.327661], - [118.536745, -20.311651], - [118.539555, -20.319231], - [118.530895, -20.323911], - [118.541859, -20.329756], - [118.540485, -20.321721], - [118.548125, -20.310611], - [118.557315, -20.31361], - [118.547335, -20.304851], - [118.526265, -20.305361], - [118.561962, -20.294396], - [118.573745, -20.3016], - [118.563712, -20.310819], - [118.570425, -20.32014], - [118.565445, -20.31805], - [118.566425, -20.32576], - [118.558485, -20.316671], - [118.563285, -20.329571], - [118.552016, -20.346311], - [118.556246, -20.349761], - [118.574425, -20.32796], - [118.571295, -20.345211], - [118.576025, -20.33779], - [118.578566, -20.357681], - [118.580215, -20.33726], - [118.595936, -20.35449], - [118.596675, -20.34494], - [118.603086, -20.35154], - [118.612845, -20.34755], - [118.602866, -20.34905], - [118.587415, -20.33539], - [118.605635, -20.33124], - [118.617285, -20.34243], - [118.608505, -20.3316], - [118.629555, -20.33437], - [118.606775, -20.32459], - [118.591765, -20.32967], - [118.573033, -20.316187], - [118.591016, -20.308092], - [118.597995, -20.286556], - [118.59819, -20.308261], - [118.640369, -20.298496], - [118.64181, -20.312455], - [118.667325, -20.325349], - [118.655135, -20.33112], - [118.674455, -20.33228], - [118.665685, -20.34286], - [118.678345, -20.340319], - [118.678655, -20.330279], - [118.687325, -20.327159], - [118.676765, -20.326659], - [118.690255, -20.315799], - [118.768224, -20.281728], - [118.797844, -20.278908], - [118.805914, -20.288098], - [118.805964, -20.281098], - [118.820704, -20.278028], - [118.820874, -20.287848], - [118.822624, -20.276008], - [118.845254, -20.286293], - [118.827794, -20.272658], - [118.832404, -20.262298], - [118.847263, -20.262328], - [118.829794, -20.258898], - [118.842063, -20.230647], - [118.851303, -20.225507], - [118.874524, -20.242347], - [118.869544, -20.253377], - [118.882655, -20.261126], - [118.871454, -20.253727], - [118.878214, -20.242516], - [118.860273, -20.225447], - [118.896502, -20.167756], - [118.959141, -20.127025], - [118.99383, -20.035794], - [119.068349, -20.015393], - [119.093699, -19.988453], - [119.088349, -19.970373], - [119.099709, -19.959323], - [119.14709, -19.978573], - [119.16063, -20.012123], - [119.15868, -20.004063], - [119.16842, -20.015163], - [119.20707, -20.023673], - [119.21056, -20.017253], - [119.17215, -20.007733], - [119.17159, -19.956573], - [119.218269, -19.953213], - [119.238089, -19.961353], - [119.239959, -19.971703], - [119.248449, -19.970593], - [119.241549, -19.971063], - [119.242619, -19.964513], - [119.32078, -19.990369], - [119.373371, -19.991488], - [119.38125, -19.996448], - [119.371671, -20.008108], - [119.415161, -19.994507], - [119.443042, -20.017226], - [119.466093, -20.013336], - [119.471004, -20.005676], - [119.512931, -20.046507], - [119.569839, -20.070986], - [119.572449, -20.077196], - [119.562789, -20.078977], - [119.569339, -20.080347], - [119.655498, -20.046535], - [119.673188, -20.032005], - [119.680508, -20.003815], - [119.700867, -19.995104], - [119.709368, -20.021334], - [119.696675, -20.03502], - [119.704818, -20.037234], - [119.702678, -20.029904], - [119.714498, -20.022464], - [119.724888, -20.026204], - [119.733008, -20.013354], - [119.745323, -20.01106], - [119.741138, -20.005914], - [119.746508, -20.003214], - [119.741308, -19.984394], - [119.752745, -19.983716], - [119.730067, -19.976184], - [119.757368, -19.963594], - [119.755358, -19.971724], - [119.765198, -19.976433], - [119.772538, -19.969753], - [119.764148, -19.955563], - [119.791508, -19.968123], - [119.787758, -19.973303], - [119.861547, -19.962162], - [119.866227, -19.969592], - [119.884437, -19.955312], - [119.972766, -19.933001], - [120.081236, -19.926479], - [120.087397, -19.925279], - [120.080296, -19.921249], - [120.133206, -19.912429], - [120.195936, -19.913908], - [120.631003, -19.770045], - [120.981888, -19.621038], - [121.113922, -19.538571], - [121.210132, -19.466302], - [121.333221, -19.341653], - [121.412999, -19.237982], - [121.511139, -19.093872], - [121.525358, -19.053121], - [121.518018, -19.042821], - [121.540748, -19.021291], - [121.564597, -18.96926], - [121.553177, -18.94346], - [121.578207, -18.95089], - [121.600087, -18.940679], - [121.575957, -18.94738], - [121.600707, -18.903179], - [121.602727, -18.869179], - [121.618176, -18.864369], - [121.628106, -18.841579], - [121.637696, -18.847709], - [121.631316, -18.840009], - [121.642666, -18.818009], - [121.651446, -18.819059], - [121.653186, -18.835929], - [121.654906, -18.813189], - [121.645466, -18.79588], - [121.655526, -18.767209], - [121.634496, -18.743309], - [121.619796, -18.742019], - [121.618145, -18.706309], - [121.628835, -18.700249], - [121.630775, -18.721939], - [121.635465, -18.704219], - [121.639355, -18.709989], - [121.657264, -18.707108], - [121.665014, -18.720258], - [121.681173, -18.720618], - [121.677753, -18.715638], - [121.698082, -18.698637], - [121.717273, -18.706368], - [121.737335, -18.696819], - [121.741115, -18.704738], - [121.751867, -18.674829], - [121.766926, -18.673049], - [121.786896, -18.653888], - [121.788186, -18.660788], - [121.793046, -18.657178], - [121.783805, -18.610838], - [121.790825, -18.609258], - [121.729385, -18.575678], - [121.764754, -18.552828], - [121.790934, -18.503848], - [121.798384, -18.509858], - [121.795278, -18.518299], - [121.817024, -18.491818], - [121.810174, -18.481068], - [121.803245, -18.508058], - [121.788974, -18.484188], - [121.815214, -18.451138], - [121.839983, -18.443727], - [121.851664, -18.461707], - [121.872013, -18.471687], - [121.903643, -18.464057], - [121.946672, -18.439267], - [121.982593, -18.404847], - [122.017415, -18.390527], - [122.063513, -18.325816], - [122.083382, -18.327636], - [122.130022, -18.307426], - [122.166232, -18.266645], - [122.168122, -18.273425], - [122.177943, -18.266075], - [122.172143, -18.262915], - [122.183033, -18.239416], - [122.198293, -18.230706], - [122.201603, -18.235346], - [122.190603, -18.241216], - [122.200653, -18.237606], - [122.199113, -18.243136], - [122.185043, -18.247885], - [122.199823, -18.249696], - [122.212013, -18.228566], - [122.204913, -18.217376], - [122.214613, -18.204036], - [122.315051, -18.172326], - [122.370266, -18.116445], - [122.380958, -18.070664], - [122.372597, -17.993713], - [122.378069, -17.989814], - [122.351888, -17.975223], - [122.335949, -17.979884], - [122.301692, -17.973614], - [122.250641, -17.952334], - [122.210771, -17.989225], - [122.207141, -18.008875], - [122.175331, -17.974005], - [122.189731, -17.970715], - [122.204931, -17.945275], - [122.21287, -17.873734], - [122.1987, -17.774314], - [122.199649, -17.684823], - [122.187585, -17.665576], - [122.184069, -17.667663], - [122.172549, -17.601233], - [122.145169, -17.560353], - [122.150017, -17.355372], - [122.162007, -17.341572], - [122.173206, -17.263592], - [122.187296, -17.240411], - [122.201656, -17.245921], - [122.211056, -17.240371], - [122.214916, -17.228171], - [122.204706, -17.240381], - [122.206566, -17.229191], - [122.226375, -17.186451], - [122.234365, -17.181021], - [122.225685, -17.192331], - [122.229335, -17.198201], - [122.234025, -17.185761], - [122.243095, -17.196031], - [122.239425, -17.184171], - [122.247055, -17.173311], - [122.241045, -17.169251], - [122.251615, -17.1576], - [122.258775, -17.15566], - [122.246565, -17.163931], - [122.257395, -17.169], - [122.254905, -17.16064], - [122.274645, -17.15044], - [122.279825, -17.15744], - [122.282035, -17.14512], - [122.318985, -17.15895], - [122.317205, -17.15127], - [122.288145, -17.13957], - [122.313526, -17.136127], - [122.317864, -17.12968], - [122.311984, -17.12709], - [122.292595, -17.13029], - [122.293266, -17.119348], - [122.267215, -17.13701], - [122.253805, -17.13172], - [122.253195, -17.11985], - [122.295524, -17.06723], - [122.351043, -17.036949], - [122.369773, -17.008089], - [122.366353, -16.997639], - [122.469652, -16.936298], - [122.460552, -16.956878], - [122.440732, -16.967098], - [122.447202, -16.969788], - [122.443472, -16.980528], - [122.431033, -16.983388], - [122.444433, -16.987758], - [122.467632, -16.968838], - [122.461432, -16.977778], - [122.468742, -16.986348], - [122.472122, -16.976958], - [122.481052, -16.981348], - [122.475032, -16.968148], - [122.485552, -16.951627], - [122.476882, -16.957178], - [122.485512, -16.937277], - [122.476892, -16.921707], - [122.480221, -16.894587], - [122.489682, -16.918507], - [122.503291, -16.915987], - [122.503082, -16.923677], - [122.519782, -16.933687], - [122.507952, -16.954367], - [122.527572, -16.947677], - [122.554002, -16.962397], - [122.572342, -16.955677], - [122.587612, -16.957217], - [122.602102, -16.971297], - [122.612161, -16.965257], - [122.595622, -16.964307], - [122.591361, -16.954947], - [122.597471, -16.954927], - [122.585581, -16.948077], - [122.582201, -16.933217], - [122.570371, -16.929367], - [122.569461, -16.903267], - [122.556531, -16.896417], - [122.551491, -16.864457], - [122.543501, -16.861427], - [122.533801, -16.836947], - [122.54935, -16.819836], - [122.55104, -16.834526], - [122.56055, -16.835516], - [122.55114, -16.828876], - [122.56429, -16.829286], - [122.56537, -16.837986], - [122.56781, -16.829056], - [122.57123, -16.836156], - [122.5713, -16.822606], - [122.55329, -16.805366], - [122.57411, -16.785766], - [122.57749, -16.777286], - [122.56949, -16.771426], - [122.57943, -16.762136], - [122.609939, -16.765655], - [122.62014, -16.794666], - [122.63741, -16.800705], - [122.693508, -16.777244], - [122.706578, -16.787474], - [122.734458, -16.777653], - [122.757428, -16.746053], - [122.764968, -16.752013], - [122.742698, -16.772203], - [122.761948, -16.765513], - [122.766738, -16.754373], - [122.771638, -16.761563], - [122.769657, -16.752673], - [122.777207, -16.760883], - [122.773527, -16.751413], - [122.788947, -16.763552], - [122.786637, -16.771692], - [122.792097, -16.760602], - [122.781597, -16.747423], - [122.803017, -16.762142], - [122.800607, -16.767022], - [122.810187, -16.766172], - [122.809847, -16.774302], - [122.813617, -16.770112], - [122.845567, -16.792031], - [122.827587, -16.773562], - [122.833417, -16.772412], - [122.823467, -16.769852], - [122.833387, -16.758282], - [122.821407, -16.756982], - [122.838417, -16.744482], - [122.810017, -16.752842], - [122.790807, -16.733722], - [122.775687, -16.735473], - [122.773087, -16.704523], - [122.785297, -16.704153], - [122.784137, -16.695973], - [122.773757, -16.694013], - [122.762787, -16.710333], - [122.743868, -16.700123], - [122.741798, -16.683403], - [122.771107, -16.628613], - [122.778997, -16.584943], - [122.771287, -16.590313], - [122.810106, -16.545303], - [122.817926, -16.539172], - [122.794756, -16.571693], - [122.811576, -16.558293], - [122.833406, -16.560702], - [122.816486, -16.556122], - [122.847726, -16.546502], - [122.861415, -16.519102], - [122.884225, -16.530251], - [122.861255, -16.509952], - [122.853885, -16.512692], - [122.863075, -16.499102], - [122.867225, -16.509362], - [122.884095, -16.508041], - [122.904375, -16.488521], - [122.905705, -16.473601], - [122.895845, -16.468221], - [122.898075, -16.447201], - [122.901774, -16.436671], - [122.911494, -16.437081], - [122.901524, -16.434981], - [122.925294, -16.389451], - [122.955224, -16.401741], - [122.987654, -16.3809], - [122.992024, -16.38755], - [122.982414, -16.4059], - [122.993694, -16.39341], - [122.991634, -16.38009], - [123.038893, -16.35921], - [123.020273, -16.37821], - [123.034123, -16.38561], - [123.034884, -16.4002], - [123.014754, -16.40577], - [123.023984, -16.41997], - [123.034054, -16.42076], - [123.031004, -16.43056], - [123.043074, -16.43986], - [123.076683, -16.440339], - [123.047244, -16.462969], - [123.045014, -16.473789], - [123.042844, -16.458959], - [123.023824, -16.4627], - [123.015404, -16.45175], - [122.982984, -16.46513], - [122.979094, -16.47709], - [122.995694, -16.47757], - [122.997494, -16.48581], - [122.971064, -16.51611], - [123.006694, -16.5222], - [123.008024, -16.528429], - [122.989784, -16.53251], - [122.981074, -16.55246], - [122.985014, -16.55875], - [122.968734, -16.56188], - [122.954425, -16.58014], - [122.960695, -16.59061], - [122.984734, -16.59309], - [122.986564, -16.607089], - [122.996504, -16.601849], - [122.988314, -16.625609], - [122.995744, -16.640849], - [123.023274, -16.604569], - [123.027104, -16.617049], - [123.038664, -16.621359], - [123.036184, -16.671528], - [123.050614, -16.690788], - [123.078734, -16.693248], - [123.083754, -16.664818], - [123.084883, -16.698287], - [123.094023, -16.709127], - [123.126613, -16.711067], - [123.138833, -16.688477], - [123.145053, -16.708437], - [123.132633, -16.738037], - [123.118743, -16.731557], - [123.103453, -16.745297], - [123.107823, -16.772587], - [123.102533, -16.783717], - [123.110683, -16.779057], - [123.109923, -16.794197], - [123.119853, -16.787297], - [123.134833, -16.790736], - [123.156963, -16.805666], - [123.161403, -16.817926], - [123.162123, -16.846646], - [123.173493, -16.858976], - [123.163393, -16.858986], - [123.153544, -16.878438], - [123.149104, -16.924718], - [123.168634, -16.924948], - [123.234835, -16.969948], - [123.263354, -17.011833], - [123.278176, -17.035544], - [123.290602, -17.107721], - [123.344578, -17.162732], - [123.383408, -17.240033], - [123.394348, -17.280663], - [123.392728, -17.316253], - [123.405198, -17.327513], - [123.425168, -17.325463], - [123.442709, -17.345443], - [123.459279, -17.350613], - [123.48328, -17.397063], - [123.51426, -17.418462], - [123.51229, -17.435522], - [123.51479, -17.429542], - [123.51557, -17.437172], - [123.52419, -17.433202], - [123.52315, -17.452292], - [123.53751, -17.454392], - [123.533859, -17.481901], - [123.540999, -17.463792], - [123.545209, -17.469231], - [123.543548, -17.501081], - [123.562707, -17.503891], - [123.576869, -17.523841], - [123.57239, -17.555842], - [123.58035, -17.584192], - [123.59314, -17.573752], - [123.58993, -17.552611], - [123.59705, -17.542691], - [123.591339, -17.529441], - [123.600118, -17.515581], - [123.579648, -17.483621], - [123.582759, -17.424752], - [123.564479, -17.405802], - [123.580988, -17.350152], - [123.593778, -17.361531], - [123.602928, -17.339401], - [123.623806, -17.198661], - [123.641706, -17.193651], - [123.646226, -17.183951], - [123.608086, -17.139381], - [123.590635, -17.100991], - [123.583544, -17.03326], - [123.600693, -17.010619], - [123.647972, -16.999738], - [123.659322, -17.010179], - [123.660033, -17.039649], - [123.679143, -17.045069], - [123.680253, -17.059229], - [123.689193, -17.060029], - [123.704423, -17.042679], - [123.740863, -17.068349], - [123.761123, -17.087749], - [123.773073, -17.129039], - [123.786093, -17.138809], - [123.789214, -17.152289], - [123.829924, -17.178389], - [123.836234, -17.191629], - [123.851974, -17.195409], - [123.862494, -17.216569], - [123.888704, -17.221728], - [123.912493, -17.211858], - [123.914863, -17.205648], - [123.887704, -17.202518], - [123.885523, -17.186579], - [123.829603, -17.134649], - [123.834243, -17.118049], - [123.796449, -17.004007], - [123.820389, -16.997896], - [123.802559, -16.986377], - [123.82687, -16.957277], - [123.894389, -16.907427], - [123.902589, -16.887496], - [123.915838, -16.886506], - [123.928378, -16.871306], - [123.951508, -16.867516], - [123.959268, -16.852416], - [123.949288, -16.836416], - [123.951418, -16.818116], - [123.942228, -16.822806], - [123.942128, -16.852076], - [123.920968, -16.852076], - [123.903628, -16.863777], - [123.893328, -16.857227], - [123.883959, -16.877897], - [123.79612, -16.911838], - [123.760959, -16.875858], - [123.758339, -16.837748], - [123.717589, -16.784868], - [123.711529, -16.752718], - [123.681509, -16.751687], - [123.61776, -16.679497], - [123.59994, -16.679007], - [123.58761, -16.667597], - [123.57138, -16.672767], - [123.552161, -16.659717], - [123.523001, -16.667826], - [123.502801, -16.658826], - [123.520551, -16.650066], - [123.506591, -16.643146], - [123.573871, -16.625236], - [123.555651, -16.612606], - [123.572451, -16.608006], - [123.563031, -16.600806], - [123.563381, -16.588255], - [123.581141, -16.594516], - [123.588392, -16.582825], - [123.602002, -16.582145], - [123.589242, -16.567454], - [123.619432, -16.573783], - [123.615142, -16.554332], - [123.588582, -16.538302], - [123.578622, -16.549843], - [123.526052, -16.544414], - [123.520752, -16.548174], - [123.533852, -16.550474], - [123.542202, -16.572025], - [123.517742, -16.566135], - [123.511602, -16.597756], - [123.494272, -16.570805], - [123.498082, -16.565075], - [123.513442, -16.568415], - [123.503112, -16.566025], - [123.491002, -16.546015], - [123.463692, -16.534805], - [123.460392, -16.524605], - [123.468072, -16.518225], - [123.428532, -16.511196], - [123.428542, -16.498866], - [123.442233, -16.500465], - [123.431082, -16.502966], - [123.445302, -16.509875], - [123.496582, -16.514535], - [123.492952, -16.501725], - [123.502072, -16.504064], - [123.495132, -16.494055], - [123.472503, -16.484015], - [123.469553, -16.475055], - [123.461443, -16.477015], - [123.473462, -16.470005], - [123.544012, -16.504553], - [123.534132, -16.508644], - [123.546352, -16.504233], - [123.594543, -16.525902], - [123.584313, -16.517452], - [123.643023, -16.53004], - [123.637033, -16.51801], - [123.607623, -16.504871], - [123.588483, -16.510472], - [123.582963, -16.498562], - [123.602723, -16.490701], - [123.625213, -16.49044], - [123.632873, -16.498639], - [123.662934, -16.49109], - [123.648273, -16.479889], - [123.651363, -16.474949], - [123.619823, -16.464731], - [123.599233, -16.448731], - [123.568233, -16.445533], - [123.542982, -16.427224], - [123.505342, -16.419995], - [123.497942, -16.409865], - [123.502772, -16.407085], - [123.582213, -16.427682], - [123.547842, -16.408504], - [123.563072, -16.407953], - [123.511242, -16.391335], - [123.518632, -16.389254], - [123.509122, -16.380235], - [123.535882, -16.397994], - [123.567482, -16.399853], - [123.556682, -16.403153], - [123.571732, -16.408373], - [123.571922, -16.400803], - [123.597992, -16.405662], - [123.605162, -16.415552], - [123.591802, -16.417132], - [123.607993, -16.425752], - [123.621393, -16.429971], - [123.629572, -16.422992], - [123.665523, -16.43663], - [123.676563, -16.43356], - [123.671683, -16.428321], - [123.681483, -16.43269], - [123.697213, -16.414851], - [123.679752, -16.416171], - [123.688282, -16.404832], - [123.647942, -16.385393], - [123.629232, -16.356753], - [123.658682, -16.362873], - [123.651362, -16.369483], - [123.663532, -16.383373], - [123.673022, -16.383112], - [123.662962, -16.367993], - [123.681402, -16.375382], - [123.716902, -16.372392], - [123.698871, -16.359133], - [123.710621, -16.354033], - [123.700111, -16.351003], - [123.697421, -16.337533], - [123.679991, -16.335583], - [123.662391, -16.313513], - [123.640321, -16.308693], - [123.627141, -16.290494], - [123.61137, -16.287084], - [123.624441, -16.317263], - [123.593361, -16.311233], - [123.598751, -16.322803], - [123.550201, -16.283154], - [123.549571, -16.262805], - [123.566061, -16.276294], - [123.58213, -16.272024], - [123.58388, -16.260614], - [123.59929, -16.264084], - [123.576061, -16.245294], - [123.61663, -16.261804], - [123.60351, -16.250954], - [123.60966, -16.243774], - [123.5909, -16.247684], - [123.5801, -16.239224], - [123.60192, -16.232404], - [123.58655, -16.224924], - [123.58225, -16.233704], - [123.5637, -16.216245], - [123.60112, -16.216364], - [123.58169, -16.205884], - [123.56387, -16.210365], - [123.57246, -16.192125], - [123.55669, -16.177745], - [123.56926, -16.172315], - [123.5707, -16.180805], - [123.58418, -16.164424], - [123.61334, -16.160494], - [123.63577, -16.176164], - [123.62043, -16.157694], - [123.65526, -16.168304], - [123.65984, -16.153424], - [123.67575, -16.163214], - [123.66535, -16.151204], - [123.68346, -16.153614], - [123.67977, -16.160594], - [123.69342, -16.151104], - [123.69683, -16.162244], - [123.68984, -16.160004], - [123.69604, -16.173274], - [123.70098, -16.169474], - [123.70141, -16.190264], - [123.70214, -16.171174], - [123.71363, -16.167543], - [123.70311, -16.153894], - [123.70897, -16.152243], - [123.72343, -16.170893], - [123.71316, -16.154083], - [123.72846, -16.156813], - [123.703089, -16.128683], - [123.726609, -16.140513], - [123.7379, -16.160613], - [123.741819, -16.153523], - [123.747239, -16.162773], - [123.750909, -16.157443], - [123.770559, -16.170593], - [123.79055, -16.200473], - [123.80316, -16.203513], - [123.7968, -16.209233], - [123.80665, -16.206143], - [123.81461, -16.219653], - [123.80037, -16.216153], - [123.79856, -16.222923], - [123.78861, -16.209503], - [123.78907, -16.223643], - [123.77159, -16.216153], - [123.77569, -16.228843], - [123.78502, -16.233443], - [123.78833, -16.228263], - [123.79503, -16.238833], - [123.79694, -16.263033], - [123.79109, -16.263553], - [123.7833, -16.243033], - [123.78349, -16.262143], - [123.77714, -16.251803], - [123.76947, -16.259543], - [123.74296, -16.253123], - [123.740651, -16.263273], - [123.778031, -16.285833], - [123.782711, -16.297653], - [123.783191, -16.284063], - [123.795821, -16.299763], - [123.784441, -16.303063], - [123.796371, -16.316123], - [123.810051, -16.320673], - [123.799531, -16.303973], - [123.825361, -16.322823], - [123.842971, -16.326223], - [123.835221, -16.319613], - [123.843921, -16.315043], - [123.86594, -16.327873], - [123.856671, -16.330173], - [123.858461, -16.340583], - [123.864591, -16.336113], - [123.860141, -16.350323], - [123.867621, -16.351733], - [123.865471, -16.342443], - [123.876441, -16.347053], - [123.878721, -16.355203], - [123.865791, -16.362233], - [123.878831, -16.371253], - [123.876081, -16.377674], - [123.851431, -16.371734], - [123.836461, -16.354373], - [123.850571, -16.376474], - [123.842031, -16.382834], - [123.85409, -16.435165], - [123.8711, -16.447055], - [123.86703, -16.412874], - [123.88304, -16.416724], - [123.88837, -16.409534], - [123.89997, -16.422833], - [123.889541, -16.394503], - [123.899381, -16.392203], - [123.895031, -16.365043], - [123.88435, -16.353663], - [123.90897, -16.362923], - [123.88572, -16.342823], - [123.91702, -16.352203], - [123.89281, -16.333713], - [123.8838, -16.304033], - [123.89536, -16.307393], - [123.9058, -16.335163], - [123.94131, -16.359833], - [123.97571, -16.378943], - [123.98384, -16.379503], - [123.98759, -16.370433], - [123.97728, -16.340413], - [123.95515, -16.325003], - [123.94933, -16.304383], - [123.93358, -16.297723], - [123.960979, -16.279823], - [124.000079, -16.291832], - [123.993739, -16.281402], - [123.961179, -16.268633], - [123.963819, -16.260183], - [123.953369, -16.264743], - [123.950239, -16.260533], - [123.962469, -16.252823], - [123.950729, -16.257713], - [123.945749, -16.250903], - [123.951989, -16.246193], - [123.941669, -16.249173], - [123.925899, -16.229623], - [123.915949, -16.231473], - [123.909909, -16.210293], - [123.939909, -16.233563], - [123.972119, -16.245312], - [123.970069, -16.253662], - [123.979929, -16.248302], - [123.995519, -16.261632], - [124.002819, -16.254562], - [123.999819, -16.264722], - [124.009939, -16.257442], - [124.017819, -16.268342], - [124.014949, -16.259392], - [124.026209, -16.255742], - [124.042379, -16.268952], - [124.041969, -16.278332], - [124.052429, -16.271962], - [124.068258, -16.284152], - [124.056988, -16.271422], - [124.075478, -16.270972], - [124.104808, -16.277832], - [124.101428, -16.285392], - [124.107838, -16.278642], - [124.124448, -16.280432], - [124.124538, -16.288902], - [124.179728, -16.309581], - [124.175048, -16.328211], - [124.194858, -16.342561], - [124.185658, -16.352681], - [124.194648, -16.356571], - [124.193538, -16.366401], - [124.199308, -16.360561], - [124.196978, -16.377041], - [124.199698, -16.372541], - [124.205838, -16.383881], - [124.195858, -16.389021], - [124.204878, -16.386921], - [124.210088, -16.397011], - [124.201848, -16.404761], - [124.211488, -16.398491], - [124.222718, -16.418441], - [124.256728, -16.409591], - [124.264078, -16.413811], - [124.261098, -16.419421], - [124.282927, -16.414481], - [124.294697, -16.423921], - [124.300137, -16.414911], - [124.311227, -16.420161], - [124.324957, -16.414921], - [124.322697, -16.421461], - [124.334247, -16.428531], - [124.331847, -16.439481], - [124.315098, -16.441541], - [124.322198, -16.448811], - [124.308098, -16.455421], - [124.319158, -16.468691], - [124.332338, -16.458471], - [124.344978, -16.465571], - [124.353438, -16.454171], - [124.363677, -16.458231], - [124.361077, -16.448671], - [124.373397, -16.442741], - [124.390137, -16.445191], - [124.390297, -16.458981], - [124.407297, -16.478611], - [124.391618, -16.504581], - [124.400878, -16.497341], - [124.405888, -16.503581], - [124.399068, -16.506421], - [124.415218, -16.509951], - [124.407528, -16.525511], - [124.392268, -16.533011], - [124.406438, -16.533871], - [124.410298, -16.543251], - [124.426248, -16.531701], - [124.427598, -16.517921], - [124.435528, -16.525531], - [124.429807, -16.498491], - [124.441167, -16.497531], - [124.442637, -16.508911], - [124.444657, -16.502741], - [124.449367, -16.506741], - [124.443527, -16.494941], - [124.449237, -16.501181], - [124.448047, -16.496081], - [124.468217, -16.498551], - [124.440067, -16.482831], - [124.441377, -16.475411], - [124.419097, -16.485221], - [124.402777, -16.469661], - [124.401897, -16.429011], - [124.388797, -16.415221], - [124.346447, -16.424751], - [124.336527, -16.418821], - [124.344267, -16.416381], - [124.348867, -16.389161], - [124.365657, -16.378731], - [124.387487, -16.34562], - [124.402547, -16.35224], - [124.407377, -16.37329], - [124.426237, -16.36682], - [124.431257, -16.39408], - [124.449537, -16.38862], - [124.449227, -16.41091], - [124.494416, -16.4043], - [124.494537, -16.41168], - [124.501276, -16.4008], - [124.513646, -16.40856], - [124.599746, -16.4143], - [124.745415, -16.389979], - [124.840514, -16.43432], - [124.917184, -16.420818], - [124.922285, -16.391137], - [124.947665, -16.393327], - [124.953335, -16.371327], - [124.943945, -16.383957], - [124.917735, -16.388077], - [124.901265, -16.416048], - [124.881884, -16.408779], - [124.874394, -16.416219], - [124.830524, -16.40907], - [124.814465, -16.416409], - [124.787665, -16.385858], - [124.725195, -16.372199], - [124.715185, -16.355839], - [124.693485, -16.344719], - [124.673426, -16.350389], - [124.570956, -16.32929], - [124.506596, -16.34285], - [124.480476, -16.35644], - [124.477586, -16.34497], - [124.464286, -16.34123], - [124.457436, -16.35284], - [124.424167, -16.35958], - [124.411657, -16.35726], - [124.405937, -16.33421], - [124.394547, -16.33853], - [124.410707, -16.29363], - [124.402947, -16.29811], - [124.385157, -16.2761], - [124.398967, -16.27402], - [124.407867, -16.25067], - [124.402667, -16.23799], - [124.378747, -16.22702], - [124.379037, -16.21663], - [124.400167, -16.2017], - [124.388757, -16.19091], - [124.400967, -16.18272], - [124.398577, -16.169479], - [124.427696, -16.182809], - [124.434656, -16.178809], - [124.449676, -16.122029], - [124.443286, -16.113529], - [124.448916, -16.110279], - [124.444346, -16.065389], - [124.453276, -16.078429], - [124.462736, -16.079479], - [124.464066, -16.071809], - [124.477236, -16.078539], - [124.479966, -16.094139], - [124.458426, -16.102519], - [124.486616, -16.122199], - [124.514136, -16.164669], - [124.517026, -16.173599], - [124.501436, -16.182689], - [124.501496, -16.189239], - [124.516776, -16.177439], - [124.508166, -16.206029], - [124.518836, -16.178819], - [124.526396, -16.194759], - [124.525136, -16.188199], - [124.532616, -16.189359], - [124.525406, -16.181199], - [124.536686, -16.184239], - [124.526976, -16.162009], - [124.541436, -16.157619], - [124.560716, -16.119458], - [124.599256, -16.127398], - [124.646945, -16.098108], - [124.634105, -16.091848], - [124.622976, -16.099708], - [124.618106, -16.089758], - [124.607146, -16.113428], - [124.592446, -16.116078], - [124.588116, -16.109518], - [124.580536, -16.023228], - [124.595486, -16.027418], - [124.579456, -16.000528], - [124.591275, -15.997678], - [124.588885, -15.973497], - [124.615185, -15.983727], - [124.619885, -15.996267], - [124.616235, -15.982487], - [124.637135, -15.984137], - [124.634041, -15.99857], - [124.642635, -15.988417], - [124.639015, -15.980897], - [124.605575, -15.969967], - [124.615545, -15.964507], - [124.598445, -15.967607], - [124.596865, -15.942977], - [124.605985, -15.944427], - [124.610495, -15.927357], - [124.626005, -15.920887], - [124.616065, -15.912997], - [124.621185, -15.906097], - [124.605295, -15.898437], - [124.607845, -15.891317], - [124.629415, -15.881557], - [124.654555, -15.853597], - [124.668465, -15.862727], - [124.681575, -15.888916], - [124.686845, -15.881886], - [124.677845, -15.877276], - [124.675825, -15.862816], - [124.686535, -15.856586], - [124.682005, -15.849516], - [124.711935, -15.839466], - [124.704515, -15.814056], - [124.741585, -15.822276], - [124.700815, -15.784466], - [124.704275, -15.768976], - [124.719004, -15.770066], - [124.709155, -15.762296], - [124.702985, -15.766496], - [124.704344, -15.750216], - [124.701695, -15.763896], - [124.696434, -15.759046], - [124.700775, -15.767746], - [124.691195, -15.765166], - [124.697865, -15.769216], - [124.693585, -15.783006], - [124.675385, -15.784746], - [124.678965, -15.769706], - [124.704784, -15.741066], - [124.688694, -15.745626], - [124.660445, -15.781617], - [124.633865, -15.790477], - [124.632785, -15.778957], - [124.631765, -15.790487], - [124.625685, -15.786087], - [124.629485, -15.795637], - [124.607895, -15.810867], - [124.572015, -15.861227], - [124.531746, -15.957318], - [124.520326, -15.972368], - [124.513546, -15.968078], - [124.516376, -15.979718], - [124.498596, -15.998068], - [124.490246, -15.987488], - [124.492126, -15.975498], - [124.498076, -15.977248], - [124.491966, -15.959128], - [124.497006, -15.943248], - [124.508266, -15.946368], - [124.512456, -15.934418], - [124.506116, -15.927868], - [124.499316, -15.935708], - [124.498016, -15.928318], - [124.492426, -15.935968], - [124.487306, -15.920408], - [124.476696, -15.941578], - [124.480476, -15.896948], - [124.474886, -15.885678], - [124.478906, -15.893378], - [124.499406, -15.889778], - [124.483656, -15.889818], - [124.489946, -15.886058], - [124.475166, -15.873708], - [124.484256, -15.866628], - [124.475256, -15.868398], - [124.477616, -15.863378], - [124.460946, -15.854118], - [124.459346, -15.817708], - [124.476646, -15.820258], - [124.460276, -15.816018], - [124.461202, -15.802971], - [124.443376, -15.809198], - [124.458276, -15.811438], - [124.451256, -15.831348], - [124.444636, -15.829048], - [124.439056, -15.870368], - [124.429536, -15.867388], - [124.424846, -15.847618], - [124.417516, -15.876798], - [124.409286, -15.863848], - [124.410286, -15.805898], - [124.385946, -15.717558], - [124.395926, -15.731178], - [124.407656, -15.720058], - [124.423796, -15.732568], - [124.419216, -15.723958], - [124.437256, -15.711468], - [124.416856, -15.720398], - [124.411476, -15.715068], - [124.417826, -15.711408], - [124.409026, -15.710998], - [124.397346, -15.726028], - [124.402536, -15.698618], - [124.393216, -15.677308], - [124.386356, -15.672178], - [124.375976, -15.680098], - [124.368816, -15.671878], - [124.379266, -15.660198], - [124.385716, -15.669318], - [124.390236, -15.662408], - [124.402466, -15.685178], - [124.412666, -15.681428], - [124.414366, -15.637228], - [124.421516, -15.667358], - [124.430726, -15.673888], - [124.429656, -15.664268], - [124.443686, -15.669738], - [124.444656, -15.654828], - [124.457196, -15.656338], - [124.436506, -15.643498], - [124.433775, -15.623017], - [124.450455, -15.602767], - [124.452465, -15.616207], - [124.482955, -15.618837], - [124.500625, -15.636687], - [124.488215, -15.621527], - [124.497125, -15.615687], - [124.454365, -15.613547], - [124.459585, -15.608557], - [124.453875, -15.591877], - [124.450685, -15.601137], - [124.433465, -15.608447], - [124.430595, -15.588087], - [124.409575, -15.609457], - [124.416035, -15.620168], - [124.404585, -15.615128], - [124.430035, -15.574467], - [124.424655, -15.559357], - [124.430075, -15.560787], - [124.417525, -15.549247], - [124.425115, -15.540787], - [124.436315, -15.546987], - [124.446425, -15.528717], - [124.458595, -15.539507], - [124.461995, -15.532067], - [124.465785, -15.536897], - [124.461695, -15.511707], - [124.470145, -15.506397], - [124.472685, -15.512367], - [124.473045, -15.503557], - [124.486525, -15.497277], - [124.496185, -15.516547], - [124.510425, -15.525127], - [124.500265, -15.516417], - [124.505805, -15.504087], - [124.498575, -15.505807], - [124.492535, -15.486177], - [124.468615, -15.504257], - [124.455825, -15.508487], - [124.461595, -15.498187], - [124.446375, -15.506277], - [124.476645, -15.477897], - [124.498065, -15.474967], - [124.507385, -15.483737], - [124.508594, -15.470327], - [124.518254, -15.468737], - [124.521494, -15.485127], - [124.529804, -15.477197], - [124.528974, -15.484437], - [124.551694, -15.490806], - [124.554674, -15.502796], - [124.579944, -15.499606], - [124.580334, -15.520056], - [124.595824, -15.523406], - [124.599064, -15.506476], - [124.617474, -15.503846], - [124.620644, -15.514456], - [124.614444, -15.519576], - [124.628764, -15.525666], - [124.632144, -15.516306], - [124.624364, -15.512756], - [124.638794, -15.503916], - [124.621544, -15.500666], - [124.626384, -15.472426], - [124.617854, -15.466096], - [124.628214, -15.462806], - [124.633404, -15.436696], - [124.645724, -15.424696], - [124.653784, -15.435186], - [124.645674, -15.434136], - [124.642194, -15.463116], - [124.667524, -15.483746], - [124.677064, -15.478196], - [124.674194, -15.498086], - [124.679864, -15.480336], - [124.686104, -15.480916], - [124.682054, -15.473216], - [124.690774, -15.468026], - [124.686664, -15.455806], - [124.676554, -15.462826], - [124.671644, -15.452896], - [124.668904, -15.428606], - [124.687084, -15.413716], - [124.678184, -15.411636], - [124.676174, -15.400686], - [124.723743, -15.376745], - [124.727203, -15.363405], - [124.744773, -15.361785], - [124.726643, -15.360495], - [124.723483, -15.352805], - [124.704723, -15.359836], - [124.705333, -15.343555], - [124.688763, -15.357496], - [124.666774, -15.361946], - [124.661984, -15.354946], - [124.662084, -15.347946], - [124.672353, -15.346246], - [124.656463, -15.336876], - [124.661913, -15.324886], - [124.666473, -15.334256], - [124.674243, -15.324526], - [124.691033, -15.333196], - [124.707193, -15.320805], - [124.692483, -15.309125], - [124.696883, -15.296465], - [124.667313, -15.296636], - [124.679283, -15.288586], - [124.672743, -15.278996], - [124.678893, -15.270166], - [124.672843, -15.269046], - [124.674673, -15.255036], - [124.681763, -15.254006], - [124.678763, -15.264066], - [124.701373, -15.278375], - [124.705033, -15.253395], - [124.770573, -15.302065], - [124.761793, -15.326155], - [124.736123, -15.343165], - [124.753253, -15.354425], - [124.759363, -15.333275], - [124.783853, -15.311885], - [124.783233, -15.294465], - [124.810393, -15.308755], - [124.817193, -15.323535], - [124.831293, -15.325915], - [124.836983, -15.324725], - [124.822163, -15.311885], - [124.846793, -15.299055], - [124.836373, -15.316365], - [124.847703, -15.328535], - [124.849473, -15.335425], - [124.840523, -15.340645], - [124.847663, -15.353175], - [124.860933, -15.351775], - [124.862333, -15.359115], - [124.875693, -15.343495], - [124.888623, -15.356435], - [124.907062, -15.360235], - [124.915252, -15.373315], - [124.932372, -15.374735], - [124.937082, -15.389855], - [124.925322, -15.388875], - [124.926742, -15.393845], - [124.945192, -15.395785], - [124.940572, -15.383625], - [124.945912, -15.383725], - [124.971323, -15.420935], - [124.978842, -15.409605], - [124.979942, -15.421805], - [125.003773, -15.440144], - [125.002983, -15.448394], - [124.984083, -15.469585], - [124.952193, -15.475225], - [124.958033, -15.479725], - [124.952943, -15.489225], - [124.960243, -15.479945], - [124.984463, -15.476015], - [124.961793, -15.488745], - [124.973223, -15.491195], - [124.981343, -15.483485], - [124.981743, -15.495005], - [124.982983, -15.484275], - [124.996233, -15.476995], - [124.995723, -15.495635], - [124.986903, -15.505835], - [124.995973, -15.500835], - [124.999513, -15.510445], - [124.997823, -15.496305], - [125.001393, -15.503625], - [125.010163, -15.496494], - [124.999793, -15.495054], - [125.004033, -15.476634], - [125.009493, -15.473224], - [125.011283, -15.480144], - [125.018333, -15.471494], - [125.025963, -15.485704], - [125.017603, -15.505324], - [125.022903, -15.505934], - [125.015273, -15.519864], - [125.002103, -15.517755], - [125.014113, -15.521784], - [125.004593, -15.528485], - [125.011343, -15.528575], - [125.017103, -15.544665], - [125.013013, -15.530545], - [125.017843, -15.522114], - [125.025553, -15.525814], - [125.022053, -15.514764], - [125.026773, -15.511124], - [125.029373, -15.522184], - [125.030123, -15.513814], - [125.033158, -15.516397], - [125.030933, -15.504444], - [125.039873, -15.497854], - [125.044243, -15.511504], - [125.045003, -15.497044], - [125.054793, -15.498594], - [125.041693, -15.486434], - [125.046883, -15.473764], - [125.052273, -15.482554], - [125.049203, -15.472624], - [125.062622, -15.460934], - [125.088652, -15.463214], - [125.123099, -15.484205], - [125.12124, -15.491535], - [125.137358, -15.495446], - [125.140927, -15.509086], - [125.174716, -15.534266], - [125.202236, -15.543866], - [125.225298, -15.572295], - [125.291007, -15.604725], - [125.305398, -15.622804], - [125.421186, -15.696025], - [125.300717, -15.613775], - [125.276688, -15.588135], - [125.287617, -15.583565], - [125.271448, -15.588054], - [125.254859, -15.580894], - [125.225236, -15.552796], - [125.225865, -15.540026], - [125.217086, -15.553396], - [125.188466, -15.521966], - [125.146096, -15.497106], - [125.141497, -15.481946], - [125.101922, -15.463394], - [125.081702, -15.446414], - [125.087702, -15.441514], - [125.070032, -15.440244], - [125.082532, -15.412294], - [125.084312, -15.377714], - [125.095002, -15.371304], - [125.088822, -15.369454], - [125.090851, -15.354984], - [125.111261, -15.338864], - [125.137341, -15.339444], - [125.140451, -15.333104], - [125.143821, -15.347914], - [125.144531, -15.333874], - [125.152091, -15.332494], - [125.138811, -15.331304], - [125.144261, -15.326534], - [125.156011, -15.324564], - [125.159121, -15.335264], - [125.164091, -15.330574], - [125.156381, -15.323464], - [125.162971, -15.321034], - [125.155061, -15.321404], - [125.162561, -15.316964], - [125.160361, -15.310094], - [125.154771, -15.317424], - [125.157741, -15.306144], - [125.152511, -15.322434], - [125.146541, -15.314114], - [125.149591, -15.322104], - [125.143451, -15.317884], - [125.130531, -15.327834], - [125.136771, -15.316854], - [125.128651, -15.323994], - [125.124781, -15.316554], - [125.126571, -15.326604], - [125.120651, -15.328774], - [125.117001, -15.319294], - [125.118781, -15.328894], - [125.088561, -15.337704], - [125.098371, -15.318464], - [125.110131, -15.320234], - [125.110341, -15.314584], - [125.099171, -15.314174], - [125.115521, -15.302024], - [125.101911, -15.302634], - [125.110011, -15.292444], - [125.102481, -15.299354], - [125.101861, -15.290434], - [125.107671, -15.263074], - [125.118921, -15.255614], - [125.105101, -15.261394], - [125.100321, -15.285924], - [125.094301, -15.265044], - [125.088141, -15.266764], - [125.090001, -15.247804], - [125.086621, -15.264394], - [125.077451, -15.247674], - [125.073421, -15.253924], - [125.081001, -15.255604], - [125.095661, -15.283114], - [125.094991, -15.289674], - [125.086821, -15.283764], - [125.087541, -15.290154], - [125.079761, -15.290854], - [125.094301, -15.292044], - [125.081251, -15.314354], - [125.065431, -15.316214], - [125.052142, -15.302394], - [125.039642, -15.301394], - [125.036012, -15.295534], - [125.044951, -15.283864], - [125.034942, -15.288194], - [125.030672, -15.274794], - [125.026372, -15.300314], - [124.984202, -15.319974], - [124.979122, -15.329394], - [124.920082, -15.356465], - [124.897912, -15.339925], - [124.898232, -15.332125], - [124.907792, -15.335035], - [124.902412, -15.329635], - [124.906782, -15.317425], - [124.891472, -15.327745], - [124.883052, -15.315905], - [124.895232, -15.305355], - [124.880122, -15.310485], - [124.876132, -15.302025], - [124.893842, -15.271805], - [124.903252, -15.268955], - [124.904642, -15.275725], - [124.904602, -15.255504], - [124.912982, -15.256384], - [124.914052, -15.271194], - [124.922812, -15.270484], - [124.918802, -15.254564], - [124.931922, -15.247404], - [124.918652, -15.245294], - [124.933372, -15.231134], - [124.927432, -15.229224], - [124.951502, -15.225084], - [124.969492, -15.212154], - [124.979172, -15.219914], - [124.972102, -15.227244], - [124.981512, -15.224204], - [125.005642, -15.241934], - [125.004551, -15.224464], - [125.019861, -15.213574], - [125.021981, -15.218534], - [125.028521, -15.197044], - [125.046801, -15.188714], - [125.041481, -15.178584], - [125.060211, -15.180784], - [125.056031, -15.164434], - [125.048641, -15.166364], - [125.045811, -15.157674], - [125.020161, -15.169504], - [125.022781, -15.156164], - [125.013821, -15.154504], - [125.005831, -15.163344], - [125.014251, -15.175854], - [124.992821, -15.197844], - [124.981971, -15.190984], - [124.994911, -15.162004], - [124.984821, -15.175954], - [124.985371, -15.166124], - [124.976101, -15.176314], - [124.978281, -15.168174], - [124.970141, -15.164254], - [124.971241, -15.182994], - [124.961052, -15.195574], - [124.971102, -15.208304], - [124.939892, -15.197104], - [124.935172, -15.187414], - [124.942822, -15.205114], - [124.935902, -15.209734], - [124.943782, -15.213134], - [124.923002, -15.225734], - [124.917152, -15.215134], - [124.917542, -15.228244], - [124.900982, -15.240224], - [124.909902, -15.238994], - [124.907942, -15.245664], - [124.875772, -15.261915], - [124.891822, -15.230334], - [124.868842, -15.243635], - [124.867492, -15.221605], - [124.881142, -15.208434], - [124.867672, -15.204085], - [124.864272, -15.194945], - [124.896372, -15.173444], - [124.854812, -15.183565], - [124.861542, -15.169044], - [124.847462, -15.177935], - [124.844662, -15.173195], - [124.837712, -15.183155], - [124.845792, -15.162704], - [124.833912, -15.157965], - [124.868992, -15.144884], - [124.870682, -15.126234], - [124.877902, -15.130614], - [124.893082, -15.114314], - [124.906811, -15.115854], - [124.910381, -15.106804], - [124.922051, -15.116714], - [124.926441, -15.108684], - [124.943241, -15.125574], - [124.951681, -15.113234], - [124.949461, -15.123544], - [124.961471, -15.118744], - [124.974441, -15.135314], - [124.981151, -15.126474], - [124.985051, -15.133284], - [124.987731, -15.114254], - [124.997071, -15.122814], - [124.997581, -15.104844], - [125.008631, -15.104694], - [125.011141, -15.093504], - [125.029861, -15.113284], - [125.047701, -15.077114], - [125.029411, -15.066214], - [125.035511, -15.051964], - [125.020271, -15.047044], - [125.026201, -15.031344], - [125.014181, -15.035084], - [125.02354, -15.022064], - [125.01895, -15.007954], - [125.02517, -14.992374], - [125.01197, -14.983164], - [125.028, -14.984254], - [125.03306, -14.996014], - [125.04462, -14.984444], - [125.05565, -14.999784], - [125.05448, -14.988094], - [125.07429, -14.975763], - [125.07472, -14.984233], - [125.09283, -14.988153], - [125.05901, -15.028274], - [125.06732, -15.041464], - [125.08347, -15.040613], - [125.07237, -15.064904], - [125.1008, -15.064473], - [125.09655, -15.056263], - [125.10552, -15.033183], - [125.12567, -15.043503], - [125.13341, -15.058953], - [125.12562, -15.058983], - [125.12205, -15.091643], - [125.13847, -15.102933], - [125.14502, -15.134713], - [125.16324, -15.151363], - [125.1743, -15.130073], - [125.22426, -15.121173], - [125.21249, -15.116363], - [125.2234, -15.113043], - [125.22198, -15.106273], - [125.22701, -15.113823], - [125.22545, -15.103433], - [125.24053, -15.102513], - [125.24445, -15.112953], - [125.24196, -15.104263], - [125.266, -15.099983], - [125.26504, -15.112673], - [125.27102, -15.113733], - [125.2811, -15.097543], - [125.28972, -15.099653], - [125.2823, -15.143623], - [125.30586, -15.142163], - [125.30679, -15.151633], - [125.32534, -15.152463], - [125.33493, -15.162923], - [125.33158, -15.146453], - [125.345979, -15.143103], - [125.368199, -15.155863], - [125.378299, -15.142613], - [125.411869, -15.157572], - [125.443089, -15.148722], - [125.481329, -15.154802], - [125.480176, -15.143002], - [125.476659, -15.150472], - [125.448139, -15.137622], - [125.479907, -15.140257], - [125.479299, -15.134032], - [125.397089, -15.131702], - [125.375949, -15.116982], - [125.380459, -15.112322], - [125.357649, -15.108373], - [125.377529, -15.108842], - [125.373079, -15.103322], - [125.401919, -15.084662], - [125.402149, -15.063762], - [125.370129, -15.073742], - [125.367399, -15.062462], - [125.375479, -15.052712], - [125.387009, -15.056492], - [125.401919, -15.042532], - [125.411479, -15.047452], - [125.428438, -15.026812], - [125.459278, -15.014902], - [125.462448, -15.000202], - [125.474788, -15.004772], - [125.481598, -14.998582], - [125.475118, -15.001492], - [125.471498, -14.992512], - [125.449898, -14.999932], - [125.448429, -15.007052], - [125.441378, -14.999442], - [125.443938, -15.013852], - [125.420979, -15.021652], - [125.408979, -14.998582], - [125.409369, -15.025102], - [125.385939, -15.032552], - [125.365369, -14.991422], - [125.363489, -15.005782], - [125.352929, -15.008882], - [125.347199, -15.000892], - [125.337329, -15.002632], - [125.339509, -14.986812], - [125.318749, -15.005873], - [125.303589, -14.996303], - [125.301659, -15.003353], - [125.295459, -14.995933], - [125.285599, -14.999193], - [125.278089, -14.978823], - [125.295989, -14.976633], - [125.304639, -14.961642], - [125.288589, -14.965993], - [125.271199, -14.959593], - [125.265069, -14.976143], - [125.254389, -14.978403], - [125.250369, -14.965523], - [125.262409, -14.945913], - [125.257649, -14.943753], - [125.239579, -14.942323], - [125.234219, -14.965343], - [125.231559, -14.960593], - [125.227699, -14.968933], - [125.222109, -14.963673], - [125.222459, -14.970493], - [125.213719, -14.969813], - [125.207809, -14.947173], - [125.213589, -14.951833], - [125.214899, -14.942803], - [125.220569, -14.948583], - [125.218789, -14.929273], - [125.225759, -14.924003], - [125.232979, -14.931573], - [125.230709, -14.919133], - [125.239259, -14.923253], - [125.244539, -14.913953], - [125.255039, -14.926583], - [125.256299, -14.899833], - [125.269899, -14.933283], - [125.287209, -14.928732], - [125.294689, -14.937972], - [125.307689, -14.920222], - [125.294619, -14.903582], - [125.303349, -14.898192], - [125.308079, -14.908702], - [125.307089, -14.891202], - [125.311399, -14.900052], - [125.318919, -14.897002], - [125.316739, -14.887622], - [125.333978, -14.881312], - [125.305039, -14.881492], - [125.305659, -14.869632], - [125.295889, -14.875282], - [125.286669, -14.852972], - [125.273949, -14.870092], - [125.271689, -14.853712], - [125.264099, -14.865422], - [125.254279, -14.852522], - [125.250949, -14.872263], - [125.235519, -14.867573], - [125.249119, -14.834542], - [125.244139, -14.831702], - [125.231739, -14.854463], - [125.224569, -14.848003], - [125.223559, -14.866613], - [125.210099, -14.864883], - [125.208909, -14.842863], - [125.200539, -14.844073], - [125.196869, -14.833333], - [125.186169, -14.837353], - [125.184119, -14.826953], - [125.195269, -14.827563], - [125.189499, -14.803773], - [125.205169, -14.791023], - [125.201709, -14.785133], - [125.192979, -14.791203], - [125.195479, -14.776193], - [125.189429, -14.782683], - [125.190029, -14.775383], - [125.166789, -14.790513], - [125.169699, -14.778803], - [125.154659, -14.766543], - [125.150789, -14.775103], - [125.141429, -14.747673], - [125.146709, -14.752173], - [125.159799, -14.732123], - [125.188979, -14.747033], - [125.187739, -14.738673], - [125.195288, -14.738372], - [125.182908, -14.726913], - [125.179848, -14.709853], - [125.199248, -14.706542], - [125.201138, -14.697972], - [125.211478, -14.721712], - [125.217468, -14.705712], - [125.210558, -14.692252], - [125.212858, -14.668662], - [125.218438, -14.666872], - [125.218748, -14.675232], - [125.234358, -14.661182], - [125.245648, -14.682222], - [125.245558, -14.675562], - [125.262108, -14.693082], - [125.268238, -14.691002], - [125.254288, -14.668482], - [125.261008, -14.670652], - [125.260828, -14.657782], - [125.271388, -14.655222], - [125.273688, -14.661332], - [125.279288, -14.653672], - [125.308418, -14.649942], - [125.288448, -14.623222], - [125.280348, -14.640212], - [125.257406, -14.630754], - [125.267378, -14.642792], - [125.247968, -14.652992], - [125.236098, -14.632812], - [125.228338, -14.658452], - [125.204228, -14.651462], - [125.218878, -14.643842], - [125.217988, -14.636682], - [125.225558, -14.640832], - [125.227768, -14.627512], - [125.234988, -14.631122], - [125.232118, -14.623082], - [125.243828, -14.614362], - [125.256529, -14.629695], - [125.249018, -14.611132], - [125.260868, -14.615552], - [125.255378, -14.597692], - [125.265497, -14.589492], - [125.274497, -14.595092], - [125.282477, -14.578602], - [125.303577, -14.579582], - [125.300407, -14.558232], - [125.325707, -14.584412], - [125.328237, -14.559242], - [125.335667, -14.555772], - [125.347587, -14.564732], - [125.350097, -14.543852], - [125.342577, -14.538972], - [125.342057, -14.521583], - [125.364136, -14.505743], - [125.355047, -14.551771], - [125.368927, -14.563561], - [125.354587, -14.584062], - [125.374667, -14.585501], - [125.374447, -14.575771], - [125.385837, -14.568241], - [125.391607, -14.576161], - [125.394427, -14.565111], - [125.400087, -14.572811], - [125.399597, -14.547181], - [125.410267, -14.545631], - [125.410657, -14.566631], - [125.415187, -14.563941], - [125.415487, -14.579181], - [125.424977, -14.586431], - [125.413447, -14.600511], - [125.427247, -14.600781], - [125.438227, -14.613791], - [125.427157, -14.630582], - [125.429947, -14.641492], - [125.450027, -14.623762], - [125.437247, -14.594601], - [125.463416, -14.605291], - [125.452366, -14.579181], - [125.466636, -14.576061], - [125.471196, -14.564451], - [125.483426, -14.568031], - [125.467386, -14.559241], - [125.466526, -14.535531], - [125.480456, -14.532192], - [125.491386, -14.560332], - [125.495646, -14.530434], - [125.488606, -14.519234], - [125.515286, -14.512984], - [125.520306, -14.500245], - [125.528766, -14.502753], - [125.519936, -14.509164], - [125.529546, -14.511893], - [125.529056, -14.522282], - [125.541376, -14.509891], - [125.560606, -14.514799], - [125.557786, -14.530709], - [125.544676, -14.53496], - [125.547995, -14.548409], - [125.529916, -14.546101], - [125.534786, -14.563911], - [125.550415, -14.55654], - [125.557345, -14.56593], - [125.569426, -14.55828], - [125.599326, -14.56264], - [125.572466, -14.547679], - [125.580975, -14.527829], - [125.596486, -14.536559], - [125.600125, -14.517499], - [125.613705, -14.510638], - [125.602375, -14.498308], - [125.588215, -14.505729], - [125.597975, -14.496718], - [125.591035, -14.493659], - [125.600655, -14.494019], - [125.594484, -14.458782], - [125.599454, -14.461622], - [125.601264, -14.433523], - [125.621944, -14.412914], - [125.616884, -14.395855], - [125.622704, -14.385715], - [125.610414, -14.390425], - [125.608014, -14.374955], - [125.588564, -14.369935], - [125.587904, -14.357856], - [125.603694, -14.343566], - [125.582784, -14.321836], - [125.582253, -14.305357], - [125.598783, -14.273786], - [125.583923, -14.260127], - [125.573683, -14.261647], - [125.592142, -14.243746], - [125.608253, -14.262376], - [125.605922, -14.242996], - [125.596212, -14.237326], - [125.609042, -14.243676], - [125.629212, -14.233576], - [125.633382, -14.240246], - [125.626292, -14.244856], - [125.640962, -14.247506], - [125.641522, -14.265886], - [125.649142, -14.259596], - [125.648562, -14.243426], - [125.655072, -14.266816], - [125.665032, -14.263116], - [125.666713, -14.288186], - [125.695303, -14.292425], - [125.703273, -14.304065], - [125.718123, -14.288635], - [125.717913, -14.277455], - [125.730063, -14.280985], - [125.714523, -14.296635], - [125.721573, -14.298465], - [125.723753, -14.312235], - [125.712684, -14.315156], - [125.710864, -14.327676], - [125.697204, -14.325386], - [125.704594, -14.333646], - [125.725694, -14.324545], - [125.717564, -14.334116], - [125.726354, -14.341815], - [125.705854, -14.340977], - [125.699584, -14.347627], - [125.695464, -14.338767], - [125.693454, -14.345807], - [125.669514, -14.331757], - [125.663374, -14.335537], - [125.672954, -14.345197], - [125.668294, -14.357267], - [125.673864, -14.350957], - [125.678024, -14.356727], - [125.666304, -14.366966], - [125.666134, -14.383836], - [125.657274, -14.379206], - [125.651544, -14.386005], - [125.670704, -14.420364], - [125.660844, -14.424744], - [125.659294, -14.441673], - [125.677584, -14.451981], - [125.674995, -14.470029], - [125.682415, -14.469369], - [125.688726, -14.499406], - [125.676255, -14.523458], - [125.675275, -14.55672], - [125.652015, -14.60205], - [125.646906, -14.648196], - [125.669335, -14.60922], - [125.708916, -14.486577], - [125.731015, -14.476989], - [125.747165, -14.48474], - [125.765385, -14.47224], - [125.774405, -14.47971], - [125.781145, -14.46776], - [125.794595, -14.46642], - [125.797984, -14.44532], - [125.806095, -14.44432], - [125.816165, -14.45167], - [125.802565, -14.47908], - [125.852075, -14.45669], - [125.859125, -14.47498], - [125.828055, -14.48092], - [125.817205, -14.49759], - [125.849884, -14.53591], - [125.828664, -14.54277], - [125.850194, -14.56402], - [125.835584, -14.56806], - [125.830574, -14.58509], - [125.849264, -14.59168], - [125.851414, -14.612131], - [125.876234, -14.60626], - [125.881294, -14.62333], - [125.894764, -14.62309], - [125.910034, -14.66159], - [125.921304, -14.63982], - [125.928484, -14.64581], - [125.920994, -14.65092], - [125.930556, -14.64609], - [125.927334, -14.63971], - [125.933824, -14.64265], - [125.932689, -14.645013], - [125.936734, -14.64297], - [125.930514, -14.63317], - [125.933034, -14.60925], - [125.919144, -14.58281], - [125.902694, -14.57649], - [125.903864, -14.56442], - [125.920684, -14.5521], - [125.920584, -14.53724], - [125.932514, -14.53061], - [125.945674, -14.53873], - [125.949224, -14.5235], - [125.955594, -14.53129], - [125.964754, -14.51923], - [125.972524, -14.54574], - [125.981893, -14.54046], - [126.000293, -14.55499], - [126.013863, -14.53417], - [126.005733, -14.52503], - [126.015463, -14.51948], - [126.041913, -14.53672], - [126.050933, -14.52964], - [126.042223, -14.50871], - [126.053453, -14.50395], - [126.042893, -14.49436], - [126.046333, -14.47222], - [126.031503, -14.47055], - [126.024763, -14.4578], - [126.019604, -14.41138], - [125.985464, -14.41953], - [125.976674, -14.3933], - [125.992424, -14.40257], - [125.996134, -14.39637], - [126.006154, -14.39977], - [126.009843, -14.38779], - [126.021753, -14.37761], - [126.027903, -14.382], - [126.045812, -14.35916], - [126.069332, -14.362279], - [126.075451, -14.352209], - [126.081902, -14.358909], - [126.088431, -14.351209], - [126.084231, -14.342819], - [126.072891, -14.343749], - [126.073901, -14.325669], - [126.086411, -14.330619], - [126.090221, -14.323149], - [126.080491, -14.320909], - [126.082891, -14.303509], - [126.073041, -14.297769], - [126.053401, -14.254209], - [126.081261, -14.234159], - [126.096542, -14.239239], - [126.093932, -14.243999], - [126.13322, -14.231448], - [126.139799, -14.219798], - [126.136639, -14.204338], - [126.147759, -14.209168], - [126.160189, -14.176488], - [126.141279, -14.157778], - [126.169718, -14.146188], - [126.153278, -14.140128], - [126.152198, -14.125679], - [126.133328, -14.118039], - [126.126217, -14.09693], - [126.104427, -14.07575], - [126.087797, -14.08617], - [126.064057, -14.07335], - [126.032518, -14.0951], - [126.004138, -14.069511], - [125.993078, -14.068211], - [125.992058, -14.050161], - [125.976228, -14.039641], - [125.982957, -14.016401], - [125.972917, -13.998672], - [125.983847, -13.989812], - [125.984127, -14.006141], - [126.014357, -14.025441], - [126.005357, -14.040031], - [126.010148, -14.065431], - [126.029287, -14.034671], - [126.026707, -14.016721], - [126.040027, -14.02516], - [126.034767, -14.0383], - [126.055987, -14.0266], - [126.043337, -14.003241], - [126.021867, -13.996861], - [126.031706, -13.988411], - [126.038526, -13.991581], - [126.038186, -13.981531], - [126.065356, -13.988221], - [126.074746, -14.04147], - [126.083056, -14.03467], - [126.102616, -14.04084], - [126.086386, -14.01908], - [126.095626, -14.01477], - [126.089946, -14.00755], - [126.096645, -13.99858], - [126.086406, -13.98768], - [126.107235, -13.97675], - [126.100415, -13.97279], - [126.083866, -13.98203], - [126.082265, -13.96961], - [126.046546, -13.954331], - [126.051416, -13.948011], - [126.036036, -13.943481], - [126.031316, -13.932181], - [126.021126, -13.939281], - [126.011206, -13.925722], - [126.038725, -13.921011], - [126.050266, -13.941691], - [126.062745, -13.942951], - [126.065075, -13.927261], - [126.094815, -13.89534], - [126.100705, -13.90008], - [126.085315, -13.92095], - [126.107865, -13.91906], - [126.085635, -13.94568], - [126.104965, -13.9256], - [126.132355, -13.94449], - [126.134225, -13.91897], - [126.158385, -13.91504], - [126.152835, -13.92655], - [126.161615, -13.9243], - [126.148425, -13.94969], - [126.136855, -13.94957], - [126.126205, -13.96401], - [126.141355, -13.95985], - [126.158695, -13.97014], - [126.130935, -13.98694], - [126.135785, -13.98943], - [126.128665, -14.00091], - [126.110075, -14.01383], - [126.109766, -14.02829], - [126.126785, -14.02704], - [126.117255, -14.01867], - [126.187035, -13.968129], - [126.215825, -13.967579], - [126.221025, -13.987908], - [126.193385, -13.980099], - [126.157755, -13.9978], - [126.144305, -14.01499], - [126.154145, -14.01915], - [126.173325, -14.00972], - [126.185025, -14.015809], - [126.200705, -14.000949], - [126.202245, -14.012578], - [126.220415, -14.017498], - [126.224715, -14.026419], - [126.217475, -14.042929], - [126.160256, -14.05754], - [126.149526, -14.06751], - [126.150826, -14.08016], - [126.159126, -14.06873], - [126.191856, -14.066269], - [126.170376, -14.08214], - [126.162547, -14.09899], - [126.165707, -14.114239], - [126.178147, -14.091379], - [126.214206, -14.076488], - [126.205797, -14.091539], - [126.221697, -14.110478], - [126.211997, -14.115918], - [126.216517, -14.120878], - [126.179398, -14.130359], - [126.185678, -14.140388], - [126.208928, -14.136488], - [126.185969, -14.166938], - [126.196429, -14.182728], - [126.207869, -14.177048], - [126.204649, -14.185188], - [126.243279, -14.175718], - [126.233119, -14.186808], - [126.248049, -14.185637], - [126.240099, -14.198087], - [126.24812, -14.210717], - [126.233399, -14.203647], - [126.216, -14.236568], - [126.23071, -14.237088], - [126.24097, -14.223397], - [126.25363, -14.239177], - [126.2706, -14.221057], - [126.27253, -14.207147], - [126.26972, -14.236537], - [126.28217, -14.216727], - [126.30085, -14.233617], - [126.312679, -14.201277], - [126.318689, -14.197867], - [126.323849, -14.207487], - [126.339398, -14.192717], - [126.360798, -14.189937], - [126.353697, -14.177307], - [126.323087, -14.158197], - [126.320887, -14.140977], - [126.305488, -14.154747], - [126.304048, -14.138817], - [126.297568, -14.138837], - [126.315217, -14.119016], - [126.314457, -14.097326], - [126.345006, -14.098007], - [126.343836, -14.058816], - [126.334326, -14.050036], - [126.371905, -14.045167], - [126.394325, -14.051776], - [126.387615, -14.037886], - [126.396554, -14.014916], - [126.425344, -14.012066], - [126.438364, -13.982726], - [126.446014, -14.002306], - [126.454354, -14.005216], - [126.485223, -13.995696], - [126.495853, -13.977166], - [126.495263, -13.957636], - [126.511483, -13.964726], - [126.536992, -13.934446], - [126.554362, -13.951825], - [126.565248, -13.944527], - [126.565932, -13.954755], - [126.539223, -13.964375], - [126.508963, -14.008846], - [126.491033, -14.008576], - [126.487414, -14.028476], - [126.497194, -14.045846], - [126.483544, -14.047366], - [126.449465, -14.083736], - [126.454675, -14.103526], - [126.478804, -14.109646], - [126.481304, -14.097426], - [126.492184, -14.098746], - [126.511864, -14.086026], - [126.513734, -14.075496], - [126.525444, -14.081666], - [126.525144, -14.092406], - [126.499484, -14.100186], - [126.499154, -14.130286], - [126.517254, -14.147236], - [126.515445, -14.157416], - [126.537854, -14.147156], - [126.555814, -14.151036], - [126.569774, -14.139795], - [126.574924, -14.154575], - [126.562614, -14.169996], - [126.570464, -14.194595], - [126.564995, -14.216765], - [126.575465, -14.228705], - [126.601665, -14.235825], - [126.610414, -14.198385], - [126.606984, -14.180095], - [126.633614, -14.191215], - [126.651414, -14.173455], - [126.647314, -14.137545], - [126.660983, -14.114764], - [126.644843, -14.077095], - [126.663253, -14.078134], - [126.685593, -14.103694], - [126.689353, -14.091244], - [126.686294, -14.131034], - [126.693834, -14.134724], - [126.719663, -14.120604], - [126.717883, -14.104104], - [126.710223, -14.100294], - [126.718163, -14.090204], - [126.729743, -14.092184], - [126.737163, -14.070444], - [126.723133, -14.065204], - [126.762732, -14.050093], - [126.747153, -14.031294], - [126.753093, -14.016123], - [126.745913, -14.014683], - [126.757773, -14.016353], - [126.753993, -14.011363], - [126.738623, -14.013934], - [126.723313, -14.029374], - [126.701862, -14.021224], - [126.695932, -13.999014], - [126.706052, -13.973334], - [126.728763, -13.996574], - [126.751553, -13.991793], - [126.750702, -13.972143], - [126.768062, -13.975383], - [126.772132, -13.983173], - [126.786802, -13.970273], - [126.796982, -13.972513], - [126.789767, -13.975674], - [126.791802, -13.983813], - [126.798032, -13.976013], - [126.807192, -13.986383], - [126.793432, -13.989343], - [126.801312, -13.992613], - [126.810312, -13.984123], - [126.810002, -13.997903], - [126.817372, -13.982073], - [126.838291, -13.971073], - [126.878691, -13.982063], - [126.882141, -13.998573], - [126.905371, -13.985232], - [126.865071, -13.945582], - [126.840061, -13.937523], - [126.839461, -13.927693], - [126.805571, -13.930473], - [126.809481, -13.916793], - [126.799571, -13.883033], - [126.772811, -13.860723], - [126.758402, -13.826063], - [126.760452, -13.808213], - [126.743302, -13.791753], - [126.766621, -13.776463], - [126.757742, -13.786983], - [126.767112, -13.787083], - [126.764342, -13.791493], - [126.778191, -13.781523], - [126.789172, -13.791303], - [126.794021, -13.776413], - [126.81874, -13.769352], - [126.818201, -13.784383], - [126.8315, -13.786842], - [126.826231, -13.808542], - [126.84232, -13.816982], - [126.84737, -13.797762], - [126.87294, -13.799002], - [126.85159, -13.774482], - [126.851319, -13.758212], - [126.86843, -13.761342], - [126.87049, -13.751392], - [126.881, -13.748662], - [126.89779, -13.758672], - [126.89758, -13.766352], - [126.92047, -13.768332], - [126.921769, -13.776122], - [126.944399, -13.767592], - [126.91439, -13.741232], - [126.954289, -13.747572], - [126.963289, -13.741672], - [126.969558, -13.752502], - [126.984018, -13.754161], - [126.977909, -13.761412], - [126.985739, -13.787482], - [126.996269, -13.790842], - [126.998279, -13.768691], - [127.002059, -13.793992], - [127.012349, -13.795772], - [127.013479, -13.785372], - [127.030769, -13.803962], - [127.017699, -13.803552], - [127.00607, -13.823782], - [127.03046, -13.816962], - [127.02598, -13.827032], - [127.03664, -13.832081], - [127.047079, -13.805722], - [127.05582, -13.828181], - [127.04578, -13.833411], - [127.04432, -13.848891], - [127.05751, -13.847831], - [127.06857, -13.835941], - [127.08142, -13.839971], - [127.08112, -13.854541], - [127.06508, -13.864191], - [127.07666, -13.869811], - [127.06058, -13.907921], - [127.06935, -13.896161], - [127.10285, -13.884301], - [127.09864, -13.903301], - [127.10932, -13.913881], - [127.10076, -13.914021], - [127.09386, -13.927381], - [127.10461, -13.925311], - [127.11147, -13.934441], - [127.10769, -13.944621], - [127.12274, -13.948191], - [127.11377, -13.962791], - [127.1175, -13.970581], - [127.1272, -13.965691], - [127.14288, -13.982251], - [127.14503, -13.96687], - [127.15313, -13.96707], - [127.14823, -13.95613], - [127.15764, -13.93373], - [127.17878, -13.92586], - [127.16625, -13.91788], - [127.16981, -13.91064], - [127.190729, -13.90401], - [127.195539, -13.9223], - [127.18623, -13.93883], - [127.18989, -13.95723], - [127.19522, -13.95947], - [127.19875, -13.94477], - [127.20775, -13.97359], - [127.2143, -13.96649], - [127.20702, -13.95661], - [127.21044, -13.94462], - [127.226629, -13.94252], - [127.235169, -13.90781], - [127.246709, -13.90042], - [127.249049, -13.90685], - [127.265579, -13.90193], - [127.282769, -13.91926], - [127.275789, -13.93797], - [127.290699, -13.93381], - [127.318129, -13.96116], - [127.334408, -13.963249], - [127.345758, -13.954949], - [127.345279, -13.939549], - [127.329579, -13.933659], - [127.321859, -13.9147], - [127.347398, -13.906579], - [127.359788, -13.908669], - [127.360578, -13.918919], - [127.377458, -13.928029], - [127.374108, -13.939149], - [127.395568, -13.939479], - [127.410758, -13.961389], - [127.430068, -13.942949], - [127.424978, -13.966699], - [127.444448, -13.972489], - [127.439628, -13.980189], - [127.455478, -13.980239], - [127.454258, -13.990069], - [127.467208, -14.000889], - [127.448538, -14.024779], - [127.459268, -14.035099], - [127.452509, -14.058779], - [127.477548, -14.062309], - [127.482908, -14.085069], - [127.493398, -14.060719], - [127.504618, -14.074668], - [127.515198, -14.073068], - [127.514428, -14.066278], - [127.523668, -14.069278], - [127.508498, -14.087828], - [127.514828, -14.094188], - [127.521018, -14.085418], - [127.537568, -14.086318], - [127.523918, -14.119788], - [127.543498, -14.099808], - [127.549568, -14.110468], - [127.556778, -14.104638], - [127.589128, -14.144257], - [127.615928, -14.143657], - [127.624628, -14.160547], - [127.648428, -14.169617], - [127.634228, -14.179437], - [127.669848, -14.190547], - [127.665328, -14.209727], - [127.677248, -14.211607], - [127.671778, -14.221567], - [127.683728, -14.212327], - [127.692188, -14.231927], - [127.691198, -14.242767], - [127.684628, -14.236627], - [127.683198, -14.243397], - [127.710598, -14.252707], - [127.719348, -14.276646], - [127.738237, -14.281346], - [127.737617, -14.287785], - [127.762677, -14.303185], - [127.779667, -14.333224], - [127.780117, -14.344414], - [127.765877, -14.352134], - [127.760697, -14.367134], - [127.782117, -14.350534], - [127.788277, -14.388424], - [127.797077, -14.390954], - [127.806517, -14.382534], - [127.810467, -14.402104], - [127.819307, -14.395824], - [127.828427, -14.402544], - [127.819757, -14.440574], - [127.834657, -14.451954], - [127.850137, -14.484474], - [127.880247, -14.470844], - [127.882267, -14.484754], - [127.902097, -14.505064], - [127.929266, -14.502854], - [127.949346, -14.524204], - [127.952566, -14.529414], - [127.938877, -14.530134], - [127.940227, -14.543374], - [127.927367, -14.557995], - [127.953527, -14.570555], - [127.952637, -14.586036], - [127.962707, -14.590376], - [127.984806, -14.579635], - [127.993046, -14.556164], - [128.000516, -14.570555], - [128.027856, -14.579275], - [128.069336, -14.620711], - [128.069376, -14.650229], - [128.085937, -14.64689], - [128.086787, -14.63898], - [128.101917, -14.656341], - [128.130907, -14.66414], - [128.137237, -14.67762], - [128.131267, -14.687091], - [128.150207, -14.685579], - [128.161137, -14.708009], - [128.184217, -14.714649], - [128.201207, -14.706468], - [128.221707, -14.721238], - [128.214227, -14.733188], - [128.225111, -14.740276], - [128.218437, -14.754568], - [128.200627, -14.737549], - [128.183877, -14.744259], - [128.175206, -14.791808], - [128.193996, -14.828048], - [128.192446, -14.838658], - [128.151186, -14.841889], - [128.118506, -14.86134], - [128.122946, -14.87104], - [128.139096, -14.870769], - [128.107867, -14.946912], - [128.113357, -14.993273], - [128.100067, -15.011153], - [128.101407, -15.037263], - [128.094407, -15.044714], - [128.103087, -15.064504], - [128.092127, -15.070924], - [128.074948, -15.103994], - [128.083549, -15.152394], - [128.098879, -15.167344], - [128.09167, -15.214224], - [128.080241, -15.233044], - [128.087771, -15.237614], - [128.081921, -15.258505], - [128.092781, -15.281025], - [128.065941, -15.301185], - [128.044771, -15.288255], - [128.040359, -15.292772], - [128.066031, -15.312265], - [128.067131, -15.335325], - [128.08663, -15.366225], - [128.08936, -15.390305], - [128.07736, -15.433896], - [128.05241, -15.479496], - [128.01949, -15.494326], - [127.99553, -15.514146], - [127.99878, -15.518106], - [128.01842, -15.501776], - [128.06812, -15.492076], - [128.0964, -15.467166], - [128.11433, -15.427996], - [128.12471, -15.375356], - [128.128171, -15.291725], - [128.11613, -15.260055], - [128.100201, -15.250185], - [128.11514, -15.234624], - [128.11008, -15.209634], - [128.128299, -15.183684], - [128.188169, -15.228784], - [128.258018, -15.306325], - [128.256028, -15.316375], - [128.281608, -15.345915], - [128.281309, -15.390565], - [128.296279, -15.431045], - [128.292269, -15.459855], - [128.321489, -15.487814], - [128.327369, -15.505114], - [128.341638, -15.501284], - [128.329629, -15.501044], - [128.324288, -15.483854], - [128.299139, -15.460205], - [128.307258, -15.413995], - [128.295269, -15.401315], - [128.292298, -15.363675], - [128.300758, -15.319724], - [128.278108, -15.278554], - [128.239588, -15.247524], - [128.220238, -15.203753], - [128.221067, -15.130853], - [128.194027, -15.093513], - [128.228166, -15.003152], - [128.265466, -14.982582], - [128.289216, -14.974082], - [128.307286, -14.994602], - [128.324676, -15.036072], - [128.331196, -15.035402], - [128.314716, -14.995872], - [128.292496, -14.966752], - [128.295856, -14.937371], - [128.313916, -14.925681], - [128.323066, -14.933171], - [128.328045, -14.974102], - [128.361855, -15.066602], - [128.373975, -15.061442], - [128.364115, -15.040862], - [128.358105, -14.991272], - [128.378605, -15.000572], - [128.410375, -15.032072], - [128.387495, -14.997802], - [128.349105, -14.967962], - [128.358205, -14.885031], - [128.368655, -14.889931], - [128.401045, -14.938512], - [128.418915, -14.950322], - [128.429984, -14.980532], - [128.448614, -15.002052], - [128.455874, -14.995642], - [128.438024, -14.974452], - [128.419215, -14.927722], - [128.417765, -14.904322], - [128.402385, -14.878961], - [128.421665, -14.881731], - [128.473884, -14.956702], - [128.501724, -14.978472], - [128.511423, -15.013612], - [128.518983, -15.014752], - [128.507784, -14.973742], - [128.470344, -14.931262], - [128.477134, -14.911612], - [128.466974, -14.889092], - [128.427475, -14.841061], - [128.395465, -14.821751], - [128.380945, -14.8234], - [128.393426, -14.80445], - [128.418545, -14.795261], - [128.436395, -14.812151], - [128.465935, -14.799691], - [128.475265, -14.786151], - [128.485125, -14.791381], - [128.506635, -14.781042], - [128.535895, -14.786992], - [128.528475, -14.779962], - [128.550455, -14.767932], - [128.554145, -14.780822], - [128.588494, -14.797402], - [128.587074, -14.807682], - [128.596034, -14.800692], - [128.623444, -14.803922], - [128.627874, -14.798952], - [128.608834, -14.789872], - [128.613484, -14.787402], - [128.678874, -14.795782], - [128.718104, -14.816083], - [128.718904, -14.826593], - [128.738404, -14.839283], - [128.777323, -14.840583], - [128.767903, -14.853113], - [128.777203, -14.847483], - [128.787763, -14.860493], - [128.789163, -14.851453], - [128.793573, -14.860273], - [128.808563, -14.856453], - [128.818893, -14.866523], - [128.827503, -14.855683], - [128.830403, -14.864053], - [128.832733, -14.858293], - [128.906063, -14.855543], - [128.914072, -14.858483], - [128.912912, -14.867303], - [128.916392, -14.862673], - [128.931732, -14.872743], - [128.953922, -14.872753], - [128.967402, -14.884743], - [128.972172, -14.876613], - [129.001242, -14.879473], - [129.00134, -31.687068], - [128.896362, -31.717043], - [128.706703, -31.808653], - [128.642335, -31.850935], - [128.55175, -31.878161], - [128.494827, -31.911905], - [128.314269, -31.979367], - [128.022372, -32.073979], - [127.705705, -32.136702], - [127.585376, -32.175053], - [127.548597, -32.190753], - [127.518817, -32.214124], - [127.452078, -32.222294], - [127.32596, -32.256526], - [127.213371, -32.276387], - [127.089312, -32.280569], - [126.956523, -32.297599], - [126.772578, -32.292341], - [126.73424, -32.305883], - [126.672789, -32.308371], - [126.422025, -32.284084], - [126.203139, -32.232277], - [126.160689, -32.237738], - [126.081171, -32.27512], - [126.037052, -32.268591], - [125.95101, -32.290542], - [125.801225, -32.366725], - [125.53206, -32.549232], - [125.48507, -32.559642], - [125.439021, -32.582893], - [125.315272, -32.607915], - [125.230343, -32.643236], - [125.102415, -32.715398], - [125.026186, -32.728859], - [124.993076, -32.7627], - [124.928047, -32.794161], - [124.894578, -32.832831], - [124.814039, -32.872863], - [124.741, -32.900144], - [124.393573, -32.949078], - [124.305384, -32.98091], - [124.238655, -33.017591], - [124.154307, -33.096063], - [124.101189, -33.176154], - [124.07911, -33.249225], - [123.998, -33.426375], - [123.97602, -33.558606], - [123.935731, -33.576858], - [123.930731, -33.586658], - [123.875072, -33.599018], - [123.866822, -33.618738], - [123.877712, -33.633178], - [123.810233, -33.664769], - [123.774417, -33.698186], - [123.756934, -33.723069], - [123.747493, -33.76533], - [123.749193, -33.78314], - [123.764154, -33.79524], - [123.742364, -33.809171], - [123.707623, -33.81642], - [123.693654, -33.831491], - [123.656293, -33.84695], - [123.639134, -33.877], - [123.573375, -33.887731], - [123.558005, -33.906052], - [123.553025, -33.927792], - [123.534286, -33.940132], - [123.512086, -33.942523], - [123.508005, -33.922102], - [123.474015, -33.906182], - [123.412296, -33.893833], - [123.371446, -33.895893], - [123.330286, -33.918783], - [123.328676, -33.934673], - [123.299967, -33.953684], - [123.303027, -33.961144], - [123.286897, -33.979874], - [123.275427, -33.975864], - [123.251957, -33.997484], - [123.227257, -33.988924], - [123.212948, -34.001854], - [123.163068, -34.016635], - [123.151988, -34.010635], - [123.165398, -34.008405], - [123.172148, -33.989535], - [123.148458, -33.976295], - [123.162437, -33.968564], - [123.161067, -33.945934], - [123.134157, -33.917684], - [123.139767, -33.911514], - [123.133887, -33.904374], - [123.083117, -33.871534], - [123.022718, -33.856644], - [123.004848, -33.870814], - [123.002258, -33.885514], - [122.979058, -33.887415], - [122.975888, -33.902315], - [122.970008, -33.890045], - [122.935088, -33.886105], - [122.829389, -33.909975], - [122.812679, -33.889385], - [122.773819, -33.877735], - [122.754619, -33.881275], - [122.747759, -33.895826], - [122.669819, -33.888616], - [122.65346, -33.889316], - [122.64927, -33.897436], - [122.61869, -33.892836], - [122.59801, -33.902436], - [122.6014, -33.913366], - [122.59165, -33.909656], - [122.58165, -33.916316], - [122.58558, -33.932886], - [122.59736, -33.937277], - [122.58072, -33.945177], - [122.57653, -33.955217], - [122.58263, -33.958037], - [122.57153, -33.961417], - [122.57504, -33.948337], - [122.56082, -33.944847], - [122.55757, -33.936617], - [122.53605, -33.935267], - [122.50966, -33.953417], - [122.50072, -33.936507], - [122.49111, -33.938987], - [122.444431, -33.919227], - [122.364201, -33.913517], - [122.349301, -33.921837], - [122.354151, -33.933118], - [122.326281, -33.928908], - [122.274502, -33.959478], - [122.268242, -33.968148], - [122.280641, -33.989818], - [122.277312, -34.000749], - [122.264102, -33.995879], - [122.249432, -34.004599], - [122.243791, -33.994139], - [122.227021, -33.988009], - [122.211532, -34.008729], - [122.209432, -34.000759], - [122.197792, -34.000309], - [122.200762, -34.008499], - [122.188992, -34.008159], - [122.193252, -34.017189], - [122.171452, -34.011419], - [122.165303, -34.002439], - [122.156563, -34.013559], - [122.136743, -34.006599], - [122.113573, -34.017199], - [122.112523, -34.000369], - [122.093293, -34.002839], - [122.093193, -33.993929], - [122.109852, -33.992519], - [122.118982, -33.980029], - [122.085382, -33.902798], - [122.030782, -33.844979], - [122.001002, -33.829299], - [121.986272, -33.829229], - [121.982962, -33.839139], - [121.956102, -33.833489], - [121.915102, -33.838259], - [121.893972, -33.863519], - [121.901804, -33.87258], - [121.908096, -33.867508], - [121.900482, -33.878999], - [121.874532, -33.876839], - [121.863402, -33.881959], - [121.864832, -33.890649], - [121.829272, -33.888879], - [121.789874, -33.909049], - [121.756933, -33.885968], - [121.763143, -33.886908], - [121.695084, -33.86121], - [121.676684, -33.863118], - [121.674814, -33.874485], - [121.644684, -33.898179], - [121.646554, -33.887368], - [121.627666, -33.86931], - [121.546584, -33.82799], - [121.531603, -33.825729], - [121.504836, -33.839601], - [121.467732, -33.822859], - [121.459999, -33.828358], - [121.435524, -33.82008], - [121.428551, -33.830231], - [121.361874, -33.815443], - [121.350196, -33.82025], - [121.349451, -33.830252], - [121.323819, -33.821575], - [121.298993, -33.825045], - [121.296339, -33.840199], - [121.2759, -33.842241], - [121.268492, -33.850711], - [121.198696, -33.844581], - [121.177135, -33.877608], - [121.172767, -33.867086], - [121.099835, -33.848509], - [121.083487, -33.851131], - [121.079426, -33.8623], - [121.013914, -33.860947], - [121.007921, -33.872749], - [120.939765, -33.862264], - [120.918118, -33.870538], - [120.906146, -33.861448], - [120.868536, -33.85626], - [120.841095, -33.865697], - [120.840007, -33.873364], - [120.811364, -33.886397], - [120.813474, -33.89265], - [120.779753, -33.885942], - [120.712683, -33.893222], - [120.671874, -33.885044], - [120.639, -33.891729], - [120.593472, -33.886246], - [120.55337, -33.903171], - [120.562314, -33.920466], - [120.558378, -33.926413], - [120.518014, -33.935412], - [120.494711, -33.953202], - [120.471276, -33.956781], - [120.469348, -33.966734], - [120.447181, -33.963548], - [120.43657, -33.971882], - [120.315466, -33.942267], - [120.231065, -33.932406], - [120.176725, -33.934825], - [120.126592, -33.954487], - [120.042168, -33.923368], - [120.011342, -33.936773], - [119.991368, -33.935898], - [119.984181, -33.954596], - [119.967498, -33.95607], - [119.944395, -33.977887], - [119.920455, -33.968332], - [119.850753, -33.969836], - [119.81637, -33.983476], - [119.788001, -34.005408], - [119.781732, -34.026733], - [119.750434, -34.040828], - [119.73385, -34.060742], - [119.710912, -34.061702], - [119.681199, -34.081399], - [119.650299, -34.087697], - [119.634353, -34.102267], - [119.640269, -34.11263], - [119.597462, -34.134587], - [119.578523, -34.160146], - [119.587825, -34.170846], - [119.534915, -34.221382], - [119.503722, -34.288015], - [119.482109, -34.279528], - [119.45712, -34.289075], - [119.461742, -34.295256], - [119.469828, -34.288846], - [119.486654, -34.295244], - [119.503207, -34.29035], - [119.499148, -34.330005], - [119.507448, -34.359128], - [119.528815, -34.364261], - [119.54184, -34.382834], - [119.569888, -34.376625], - [119.576278, -34.387181], - [119.54744, -34.389647], - [119.502718, -34.411473], - [119.478108, -34.40216], - [119.492468, -34.393046], - [119.482512, -34.375228], - [119.453434, -34.378806], - [119.441935, -34.366471], - [119.415734, -34.373289], - [119.398674, -34.386873], - [119.407986, -34.395823], - [119.390842, -34.419446], - [119.403232, -34.426487], - [119.397248, -34.440185], - [119.402417, -34.4525], - [119.418618, -34.458921], - [119.39019, -34.459595], - [119.382143, -34.485365], - [119.355734, -34.474705], - [119.36619, -34.462483], - [119.346392, -34.446224], - [119.289851, -34.45198], - [119.271141, -34.469061], - [119.279837, -34.476825], - [119.277469, -34.490228], - [119.288592, -34.493436], - [119.284847, -34.513085], - [119.277191, -34.515537], - [119.27886, -34.523533], - [119.266819, -34.515404], - [119.257808, -34.51887], - [119.25449, -34.5346], - [119.222245, -34.531332], - [119.23936, -34.516177], - [119.217883, -34.497961], - [119.180712, -34.485889], - [119.17354, -34.494425], - [119.15223, -34.494511], - [119.117503, -34.47012], - [119.069109, -34.458813], - [119.058059, -34.463512], - [118.960905, -34.451277], - [118.911791, -34.462878], - [118.900958, -34.47644], - [118.912935, -34.488036], - [118.905782, -34.496859], - [118.914168, -34.503178], - [118.856164, -34.501178], - [118.811598, -34.509473], - [118.755351, -34.545573], - [118.739631, -34.573564], - [118.745441, -34.593669], - [118.781709, -34.609001], - [118.751991, -34.622448], - [118.745957, -34.638323], - [118.722385, -34.656893], - [118.701391, -34.654836], - [118.666082, -34.667801], - [118.645197, -34.691221], - [118.620074, -34.6866], - [118.579204, -34.705715], - [118.561918, -34.703689], - [118.519837, -34.717451], - [118.440144, -34.760757], - [118.400428, -34.823854], - [118.397075, -34.876645], - [118.422406, -34.881459], - [118.427747, -34.898744], - [118.402601, -34.905161], - [118.403425, -34.916704], - [118.389714, -34.915], - [118.390579, -34.907659], - [118.378616, -34.902794], - [118.339161, -34.90269], - [118.331264, -34.898061], - [118.334039, -34.891437], - [118.32091, -34.904264], - [118.298682, -34.903639], - [118.299691, -34.911858], - [118.259873, -34.908552], - [118.254962, -34.918009], - [118.223654, -34.919858], - [118.20681, -34.93499], - [118.210999, -34.943949], - [118.175323, -34.940093], - [118.172558, -34.967746], - [118.182607, -34.972948], - [118.190393, -34.967373], - [118.2107, -34.978845], - [118.212122, -34.989093], - [118.199929, -35.0035], - [118.2059, -35.009216], - [118.194646, -35.023122], - [118.187455, -35.024623], - [118.192117, -35.01349], - [118.17698, -35.013817], - [118.167453, -34.995229], - [118.108758, -34.985902], - [118.07182, -34.993908], - [118.034801, -35.020426], - [118.004005, -35.020806], - [117.998839, -35.010009], - [117.961875, -35.01313], - [117.948802, -35.001889], - [117.97971, -34.990929], - [117.97342, -34.960262], - [117.976718, -34.951961], - [117.94893, -34.94365], - [117.946188, -34.980004], - [117.939387, -34.985854], - [117.948679, -34.998172], - [117.918679, -35.016578], - [117.919537, -35.035785], - [117.859596, -35.026856], - [117.848248, -35.044897], - [117.854368, -35.056429], - [117.86786, -35.05721], - [117.887888, -35.077541], - [117.90929, -35.084445], - [117.927854, -35.072885], - [117.927755, -35.062451], - [117.910393, -35.053563], - [117.920354, -35.04087], - [117.918972, -35.051111], - [117.938926, -35.059312], - [117.934674, -35.075488], - [117.943593, -35.091664], - [117.979115, -35.096385], - [118.00226, -35.087523], - [118.021209, -35.107929], - [118.005966, -35.098825], - [117.976193, -35.098641], - [117.96721, -35.104098], - [117.969247, -35.114578], - [117.948254, -35.128275], - [117.940863, -35.114699], - [117.924451, -35.121839], - [117.904428, -35.11468], - [117.898808, -35.123447], - [117.885538, -35.110087], - [117.865886, -35.109255], - [117.838897, -35.08732], - [117.762152, -35.054515], - [117.70938, -35.044846], - [117.699847, -35.051865], - [117.685596, -35.043346], - [117.644602, -35.062122], - [117.65139, -35.083771], - [117.637161, -35.088609], - [117.628417, -35.112842], - [117.641724, -35.125584], - [117.639695, -35.134481], - [117.629383, -35.127747], - [117.611236, -35.133337], - [117.605589, -35.115308], - [117.548633, -35.082535], - [117.514358, -35.074613], - [117.512349, -35.083117], - [117.48526, -35.08897], - [117.479131, -35.073569], - [117.397478, -35.031978], - [117.362834, -35.01957], - [117.332467, -35.022812], - [117.356851, -35.005152], - [117.395747, -34.998141], - [117.398633, -35.008141], - [117.428481, -35.021619], - [117.465766, -35.020544], - [117.451558, -35.010066], - [117.468887, -35.006501], - [117.479563, -34.993528], - [117.471867, -34.975857], - [117.455199, -34.966957], - [117.429064, -34.986071], - [117.404886, -34.973502], - [117.369155, -34.969487], - [117.354753, -34.99305], - [117.348802, -34.987004], - [117.334227, -34.993712], - [117.337073, -35.004901], - [117.326428, -35.017387], - [117.337031, -35.034639], - [117.326067, -35.043897], - [117.272123, -35.021075], - [117.247599, -35.029324], - [117.195241, -35.017104], - [117.164713, -35.026958], - [117.164299, -35.04477], - [117.153613, -35.047796], - [117.150469, -35.06148], - [117.097947, -35.032434], - [117.073378, -35.031838], - [117.070851, -35.038305], - [117.06022, -35.028717], - [117.033503, -35.025066], - [117.018925, -35.035512], - [116.956844, -35.019364], - [116.934394, -35.034983], - [116.921228, -35.064349], - [116.884551, -35.047809], - [116.865924, -35.048489], - [116.861987, -35.056622], - [116.846365, -35.049388], - [116.844353, -35.04029], - [116.826937, -35.043292], - [116.810454, -35.025767], - [116.768273, -35.014721], - [116.741921, -35.022506], - [116.737367, -35.030423], - [116.745407, -35.037401], - [116.726477, -35.041398], - [116.707198, -35.028956], - [116.658079, -35.051438], - [116.645501, -35.047159], - [116.630374, -35.060835], - [116.629858, -35.046301], - [116.610312, -35.033281], - [116.572295, -35.033018], - [116.574846, -35.024375], - [116.532847, -35.004438], - [116.517875, -35.002217], - [116.498432, -35.015451], - [116.481664, -35.016156], - [116.468516, -34.995666], - [116.383109, -34.948639], - [116.370284, -34.934423], - [116.289466, -34.899747], - [116.261291, -34.879922], - [116.189752, -34.861078], - [116.133605, -34.844361], - [116.096924, -34.848358], - [116.029668, -34.836755], - [116.002145, -34.842218], - [115.996733, -34.830896], - [116.002664, -34.812392], - [115.961779, -34.7622], - [115.962426, -34.743911], - [115.94719, -34.720824], - [115.74301, -34.538714], - [115.669869, -34.480925], - [115.577862, -34.422088], - [115.558774, -34.415108], - [115.540859, -34.423087], - [115.542264, -34.414241], - [115.520254, -34.396852], - [115.478856, -34.38174], - [115.41791, -34.342289], - [115.345406, -34.316212], - [115.262563, -34.306793], - [115.168887, -34.321749], - [115.16529, -34.301376], - [115.201944, -34.277636], - [115.169115, -34.279554], - [115.165207, -34.273688], - [115.176676, -34.265659], - [115.156042, -34.27519], - [115.160423, -34.294769], - [115.143848, -34.289482], - [115.148446, -34.29862], - [115.160073, -34.298014], - [115.164672, -34.32284], - [115.172977, -34.322976], - [115.166376, -34.356796], - [115.157864, -34.369036], - [115.140164, -34.368932], - [115.133997, -34.376086], - [115.137026, -34.364311], - [115.124006, -34.355632], - [115.119138, -34.340947], - [115.050556, -34.275425], - [115.034056, -34.270426], - [115.033996, -34.259112], - [115.02375, -34.253029], - [115.03289, -34.237263], - [115.02441, -34.222803], - [115.039132, -34.198194], - [115.019226, -34.139158], - [114.991097, -34.098468], - [115.00414, -34.081449], - [114.997143, -34.068884], - [115.000795, -34.015397], - [114.979878, -33.961428], - [114.991902, -33.953541], - [114.992227, -33.932673], - [114.97595, -33.864183], - [114.986936, -33.863803], - [114.993979, -33.848482], - [115.000101, -33.794171], - [114.975079, -33.698053], - [114.990486, -33.696245], - [114.994782, -33.669383], - [115.019396, -33.656495], - [115.028268, -33.634152], - [115.003842, -33.561071], - [115.011321, -33.556435], - [115.003732, -33.530913], - [115.054693, -33.54389], - [115.065085, -33.558402], - [115.088836, -33.568289], - [115.102544, -33.586192], - [115.104741, -33.605905], - [115.123254, -33.623884], - [115.20671, -33.65104], - [115.299974, -33.654816], - [115.367242, -33.639391], - [115.42754, -33.608303], - [115.573649, -33.453763], - [115.59896, -33.409616], - [115.635818, -33.30876], - [115.646148, -33.300987], - [115.636594, -33.312083], - [115.647727, -33.306299], - [115.639797, -33.31873], - [115.66626, -33.322086], - [115.657587, -33.317936], - [115.670186, -33.306926], - [115.681022, -33.275255], - [115.687753, -33.108628], - [115.673712, -32.998787], - [115.632637, -32.833887], - [115.608247, -32.666719], - [115.627811, -32.599548], - [115.671224, -32.56231], - [115.700593, -32.520285], - [115.710538, -32.520568], - [115.717609, -32.557609], - [115.671098, -32.575175], - [115.665989, -32.586427], - [115.672846, -32.593901], - [115.645158, -32.608198], - [115.641006, -32.618505], - [115.655459, -32.672297], - [115.671585, -32.700305], - [115.672598, -32.728078], - [115.68349, -32.750622], - [115.696618, -32.754281], - [115.692719, -32.767689], - [115.712431, -32.78772], - [115.713302, -32.772867], - [115.72587, -32.781745], - [115.726835, -32.753347], - [115.710236, -32.741358], - [115.7139, -32.728879], - [115.697351, -32.690617], - [115.686051, -32.68291], - [115.684698, -32.653378], - [115.667165, -32.634585], - [115.666353, -32.615729], - [115.676878, -32.616449], - [115.704125, -32.643751], - [115.724219, -32.63188], - [115.747016, -32.646339], - [115.773706, -32.6359], - [115.767298, -32.627021], - [115.775445, -32.624448], - [115.770639, -32.617785], - [115.7775, -32.596343], - [115.762888, -32.59077], - [115.766264, -32.581562], - [115.755304, -32.564816], - [115.718518, -32.564406], - [115.720931, -32.527227], - [115.712251, -32.525898], - [115.721732, -32.523097], - [115.71174, -32.521401], - [115.723856, -32.519919], - [115.7379, -32.501939], - [115.750188, -32.43962], - [115.743892, -32.40349], - [115.712858, -32.370174], - [115.736117, -32.362418], - [115.74334, -32.333568], - [115.730675, -32.310271], - [115.701554, -32.305276], - [115.701971, -32.282413], - [115.684747, -32.265981], - [115.706381, -32.275911], - [115.736703, -32.269668], - [115.756059, -32.250033], - [115.755697, -32.223666], - [115.774567, -32.193807], - [115.765778, -32.140146], - [115.73734, -32.134952], - [115.755948, -32.129549], - [115.762755, -32.109293], - [115.742605, -32.064983], - [115.749349, -32.070524], - [115.742713, -32.062433], - [115.739558, -32.063556], - [115.740895, -32.05698], - [115.732237, -32.055678], - [115.760307, -32.040541], - [115.76191, -32.026658], - [115.777515, -32.028549], - [115.786705, -32.010957], - [115.813354, -32.022324], - [115.814353, -32.029068], - [115.826885, -32.02126], - [115.82881, -32.006402], - [115.846419, -32.001719], - [115.860631, -32.045816], - [115.86073, -32.037752], - [115.8718, -32.031126], - [115.857253, -32.031184], - [115.845083, -31.965227], - [115.863766, -31.974657], - [115.883729, -31.969067], - [115.891098, -31.962323], - [115.885924, -31.940556], - [115.89873, -31.953675], - [115.914832, -31.951167], - [115.918992, -31.94427], - [115.91012, -31.935993], - [115.936307, -31.931023], - [115.941252, -31.920401], - [115.951409, -31.923068], - [115.964464, -31.908432], - [115.958636, -31.895333], - [115.974023, -31.893722], - [115.958093, -31.895192], - [115.961648, -31.911327], - [115.950687, -31.922417], - [115.941162, -31.91977], - [115.936201, -31.92998], - [115.908899, -31.934846], - [115.914072, -31.95032], - [115.899614, -31.951452], - [115.897619, -31.940933], - [115.884725, -31.938378], - [115.883369, -31.966952], - [115.855654, -31.958692], - [115.842509, -31.963201], - [115.822208, -31.976327], - [115.82892, -31.987108], - [115.804136, -32.002921], - [115.79178, -32.004937], - [115.786605, -31.991033], - [115.773792, -31.989209], - [115.771548, -32.009255], - [115.779784, -32.018867], - [115.755784, -32.025531], - [115.758386, -32.038878], - [115.724374, -32.054056], - [115.750832, -32.022301], - [115.751671, -31.848348], - [115.743804, -31.827846], - [115.732048, -31.823784], - [115.740716, -31.824089], - [115.733569, -31.823462], - [115.727443, -31.806066], - [115.729627, -31.765771], - [115.685783, -31.653709], - [115.635222, -31.565635], - [115.579799, -31.496324], - [115.539123, -31.40829], - [115.441094, -31.277796], - [115.399236, -31.180369], - [115.383226, -31.121401], - [115.326427, -31.027856], - [115.328329, -31.010648], - [115.312809, -30.973147], - [115.219791, -30.832686], - [115.204504, -30.823381], - [115.189756, -30.82495], - [115.183259, -30.771888], - [115.102005, -30.601752], - [115.103602, -30.591548], - [115.087663, -30.578365], - [115.094402, -30.548793], - [115.07514, -30.517769], - [115.057946, -30.510248], - [115.071196, -30.478059], - [115.050572, -30.424339], - [115.042, -30.337814], - [115.020472, -30.317383], - [115.046093, -30.291215], - [115.042629, -30.273825], - [115.028083, -30.23742], - [114.994298, -30.231289], - [114.998978, -30.223438], - [114.991893, -30.183963], - [114.998686, -30.182588], - [115.00622, -30.159243], - [115.001771, -30.132213], - [114.984038, -30.079087], - [114.963037, -30.072159], - [114.965309, -30.054523], - [114.954846, -30.048851], - [114.969522, -30.007584], - [114.962836, -29.973929], - [114.977788, -29.945078], - [114.982742, -29.911024], - [114.98098, -29.845405], - [114.96483, -29.808755], - [114.959298, -29.770488], - [114.957949, -29.683704], - [114.977133, -29.55739], - [114.997224, -29.513595], - [114.997569, -29.493548], - [114.95634, -29.397405], - [114.954247, -29.352185], - [114.926874, -29.312732], - [114.914436, -29.277415], - [114.922057, -29.270183], - [114.920793, -29.255486], - [114.872084, -29.116741], - [114.831984, -29.066018], - [114.637438, -28.87771], - [114.62399, -28.843587], - [114.628663, -28.830535], - [114.612243, -28.795347], - [114.576178, -28.784586], - [114.587491, -28.77082], - [114.605975, -28.774909], - [114.614754, -28.762725], - [114.618976, -28.719306], - [114.605724, -28.686676], - [114.612666, -28.665159], - [114.596573, -28.611563], - [114.533698, -28.494488], - [114.454641, -28.41026], - [114.465639, -28.407306], - [114.451766, -28.410371], - [114.432984, -28.394242], - [114.405422, -28.335375], - [114.341731, -28.267219], - [114.323321, -28.233061], - [114.23874, -28.187246], - [114.197237, -28.126849], - [114.174711, -28.110972], - [114.144551, -27.972384], - [114.105399, -27.850373], - [114.124357, -27.772902], - [114.151587, -27.733461], - [114.157686, -27.708541], - [114.165846, -27.708291], - [114.181666, -27.68031], - [114.169976, -27.67465], - [114.173456, -27.65888], - [114.165566, -27.6681], - [114.172456, -27.68762], - [114.163386, -27.706981], - [114.104253, -27.503189], - [113.965158, -27.230748], - [113.783098, -26.929048], - [113.584357, -26.671426], - [113.296693, -26.400195], - [113.308233, -26.387455], - [113.294223, -26.363865], - [113.299632, -26.342435], - [113.277522, -26.294014], - [113.236421, -26.233494], - [113.15627, -26.151674], - [113.16254, -26.143564], - [113.19725, -26.173983], - [113.260891, -26.191223], - [113.269961, -26.241773], - [113.280371, -26.221593], - [113.273041, -26.182663], - [113.28219, -26.173203], - [113.29113, -26.125722], - [113.291559, -26.085442], - [113.284199, -26.076302], - [113.291609, -26.047761], - [113.284619, -26.040081], - [113.299268, -26.015961], - [113.31989, -26.126202], - [113.325441, -26.204832], - [113.317771, -26.241713], - [113.333482, -26.311444], - [113.324332, -26.318994], - [113.331212, -26.329154], - [113.326702, -26.337274], - [113.338722, -26.347434], - [113.356012, -26.330974], - [113.365273, -26.354104], - [113.357123, -26.373504], - [113.369893, -26.383654], - [113.368383, -26.399225], - [113.380413, -26.398774], - [113.383303, -26.387494], - [113.392573, -26.402274], - [113.394175, -26.39303] - ], - [ - [113.39456, -26.393282], - [113.399893, -26.418244], - [113.397963, -26.395514], - [113.39456, -26.393282] - ], - [ - [117.976842, -34.951647], - [117.981459, -34.940024], - [117.973842, -34.938553], - [117.976842, -34.951647] - ], - [ - [125.035068, -15.518022], - [125.039513, -15.521804], - [125.044273, -15.518854], - [125.035068, -15.518022] - ], - [ - [121.794599, -18.520144], - [121.788124, -18.537738], - [121.798334, -18.529968], - [121.794599, -18.520144] - ], - [ - [118.850525, -20.288689], - [118.854834, -20.290648], - [118.860274, -20.282098], - [118.850525, -20.288689] - ], - [ - [117.549725, -20.718291], - [117.542282, -20.736201], - [117.547552, -20.728181], - [117.555702, -20.730841], - [117.548262, -20.725691], - [117.549725, -20.718291] - ], - [ - [117.175305, -20.666749], - [117.173282, -20.673993], - [117.171982, -20.654672], - [117.167292, -20.657382], - [117.168002, -20.682233], - [117.183842, -20.672712], - [117.175562, -20.673882], - [117.175305, -20.666749] - ], - [ - [116.986246, -20.67194], - [116.986892, -20.678945], - [116.987201, -20.672225], - [116.986246, -20.67194] - ], - [ - [116.675721, -20.732565], - [116.684754, -20.750459], - [116.685855, -20.737179], - [116.675721, -20.732565] - ], - [ - [116.652363, -20.735693], - [116.648021, -20.744457], - [116.657564, -20.740319], - [116.652363, -20.735693] - ], - [ - [116.64762, -20.745267], - [116.647024, -20.746469], - [116.653634, -20.749079], - [116.64762, -20.745267] - ], - [ - [116.635949, -20.741603], - [116.629764, -20.75117], - [116.639924, -20.753219], - [116.635949, -20.741603] - ], - [ - [116.467914, -20.827356], - [116.47438, -20.830951], - [116.48105, -20.826031], - [116.467914, -20.827356] - ], - [ - [116.475066, -20.849566], - [116.477603, -20.851601], - [116.485251, -20.843561], - [116.494862, -20.850981], - [116.485241, -20.842201], - [116.477713, -20.850701], - [116.475066, -20.849566] - ], - [ - [116.105599, -21.038434], - [116.098903, -21.051678], - [116.106463, -21.039628], - [116.105599, -21.038434] - ], - [ - [115.856421, -21.194944], - [115.852203, -21.202932], - [115.860393, -21.204192], - [115.865343, -21.193362], - [115.857023, -21.201022], - [115.856421, -21.194944] - ], - [ - [115.837066, -21.252095], - [115.844386, -21.252924], - [115.839835, -21.243884], - [115.837066, -21.252095] - ], - [ - [115.796082, -21.265486], - [115.796144, -21.277203], - [115.799054, -21.270333], - [115.796082, -21.265486] - ], - [ - [115.745603, -21.281369], - [115.738704, -21.285483], - [115.748584, -21.289433], - [115.745603, -21.281369] - ], - [ - [115.330103, -21.587178], - [115.333837, -21.59608], - [115.341628, -21.59599], - [115.330103, -21.587178] - ], - [ - [113.618798, -26.520622], - [113.621535, -26.538733], - [113.626274, -26.524293], - [113.618798, -26.520622] - ], - [ - [115.916775, -21.092912], - [115.915002, -21.092741], - [115.911913, -21.101581], - [115.916775, -21.092912] - ], - [ - [116.54043, -20.766632], - [116.542108, -20.778411], - [116.542417, -20.766341], - [116.54043, -20.766632] - ], - [ - [117.173242, -20.6312], - [117.165632, -20.628352], - [117.165392, -20.634562], - [117.173242, -20.6312] - ], - [ - [117.339756, -20.759099], - [117.320242, -20.758523], - [117.332612, -20.761223], - [117.331982, -20.770573], - [117.339756, -20.759099] - ], - [ - [122.293413, -17.119248], - [122.301624, -17.1209], - [122.303484, -17.11242], - [122.293413, -17.119248] - ], - [ - [124.461531, -15.798338], - [124.462486, -15.784878], - [124.457736, -15.782938], - [124.461531, -15.798338] - ], - [ - [115.877589, -32.027661], - [115.883354, -32.02421], - [115.893076, -32.020538], - [115.889384, -32.017527], - [115.877589, -32.027661] - ] - ], - [ - [ - [126.565501, -13.944357], - [126.571232, -13.940515], - [126.577382, -13.953835], - [126.565501, -13.944357] - ] - ], - [ - [ - [128.473074, -14.909232], - [128.466514, -14.928312], - [128.448335, -14.904182], - [128.445495, -14.879882], - [128.473074, -14.909232] - ] - ], - [ - [ - [128.442715, -14.878632], - [128.440015, -14.885962], - [128.428115, -14.863211], - [128.442715, -14.878632] - ] - ], - [ - [ - [128.334215, -14.75838], - [128.310046, -14.762809], - [128.301726, -14.751819], - [128.308476, -14.745969], - [128.297097, -14.745699], - [128.294696, -14.73552], - [128.319876, -14.74137], - [128.334215, -14.75838] - ] - ], - [ - [ - [128.201837, -15.140613], - [128.193878, -15.166403], - [128.197088, -15.193993], - [128.126268, -15.156214], - [128.114008, -15.121604], - [128.125237, -15.095523], - [128.124787, -15.040363], - [128.152337, -15.051723], - [128.160857, -15.092653], - [128.196757, -15.125043], - [128.201837, -15.140613] - ] - ], - [ - [ - [128.113189, -15.171674], - [128.09905, -15.195714], - [128.104589, -15.165434], - [128.113189, -15.171674] - ] - ], - [ - [ - [127.874997, -14.454995], - [127.850857, -14.479504], - [127.838567, -14.457404], - [127.852287, -14.451034], - [127.853527, -14.435674], - [127.863297, -14.430414], - [127.873117, -14.438604], - [127.874997, -14.454995] - ] - ], - [ - [ - [127.823297, -14.366694], - [127.811177, -14.377584], - [127.805377, -14.357554], - [127.810847, -14.352944], - [127.823297, -14.366694] - ] - ], - [ - [ - [127.716148, -14.237427], - [127.702088, -14.242037], - [127.709898, -14.233497], - [127.716148, -14.237427] - ] - ], - [ - [ - [127.175689, -13.90361], - [127.15658, -13.8987], - [127.164319, -13.89619], - [127.162769, -13.88286], - [127.175689, -13.90361] - ] - ], - [ - [ - [126.882891, -13.990389], - [126.880651, -13.976183], - [126.845671, -13.963713], - [126.820001, -13.966813], - [126.832251, -13.961483], - [126.819291, -13.960263], - [126.819851, -13.953943], - [126.854921, -13.957593], - [126.869491, -13.967983], - [126.866481, -13.955883], - [126.883291, -13.973143], - [126.887941, -13.986803], - [126.882891, -13.990389] - ] - ], - [ - [ - [126.882947, -13.990749], - [126.893852, -13.98782], - [126.883232, -13.992553], - [126.882947, -13.990749] - ] - ], - [ - [ - [126.897513, -13.986188], - [126.892161, -13.981922], - [126.900801, -13.984722], - [126.897513, -13.986188] - ] - ], - [ - [ - [126.824461, -13.945683], - [126.818571, -13.949533], - [126.815661, -13.941183], - [126.824461, -13.945683] - ] - ], - [ - [ - [126.700442, -13.943074], - [126.676642, -13.961404], - [126.693602, -13.931334], - [126.700442, -13.943074] - ] - ], - [ - [ - [126.634981, -13.871325], - [126.620552, -13.882635], - [126.614971, -13.862425], - [126.625481, -13.853265], - [126.634981, -13.871325] - ] - ], - [ - [ - [126.619282, -13.890545], - [126.611322, -13.900945], - [126.617802, -13.908055], - [126.608682, -13.913715], - [126.593742, -13.898365], - [126.559632, -13.903145], - [126.568182, -13.896585], - [126.563892, -13.891285], - [126.545512, -13.893555], - [126.536152, -13.907566], - [126.527362, -13.901366], - [126.513832, -13.906686], - [126.502832, -13.886356], - [126.504902, -13.869076], - [126.522702, -13.866126], - [126.527332, -13.873916], - [126.547102, -13.871866], - [126.575452, -13.887315], - [126.588052, -13.885945], - [126.599402, -13.897235], - [126.619282, -13.890545] - ] - ], - [ - [ - [126.608022, -13.945115], - [126.604452, -13.952905], - [126.595412, -13.941965], - [126.600722, -13.935855], - [126.608022, -13.945115] - ] - ], - [ - [ - [126.593125, -14.215295], - [126.590605, -14.222875], - [126.577495, -14.217165], - [126.575684, -14.197625], - [126.586004, -14.200855], - [126.593125, -14.215295] - ] - ], - [ - [ - [126.586905, -14.223455], - [126.574985, -14.226215], - [126.569845, -14.213465], - [126.574895, -14.203735], - [126.574715, -14.216505], - [126.586905, -14.223455] - ] - ], - [ - [ - [126.403784, -13.989066], - [126.394104, -14.009166], - [126.384284, -14.011456], - [126.362484, -13.982636], - [126.376474, -13.974616], - [126.403784, -13.989066] - ] - ], - [ - [ - [126.321075, -13.942087], - [126.314825, -13.961857], - [126.299795, -13.967608], - [126.309624, -13.927187], - [126.321075, -13.942087] - ] - ], - [ - [ - [126.318984, -13.886197], - [126.314484, -13.894776], - [126.301534, -13.883367], - [126.303843, -13.866997], - [126.318984, -13.886197] - ] - ], - [ - [ - [126.317374, -13.909457], - [126.312164, -13.923117], - [126.300144, -13.920747], - [126.303384, -13.903917], - [126.312514, -13.900646], - [126.317374, -13.909457] - ] - ], - [ - [ - [126.299029, -14.163357], - [126.285279, -14.171187], - [126.291609, -14.159537], - [126.299029, -14.163357] - ] - ], - [ - [ - [126.295165, -13.941298], - [126.283835, -13.945698], - [126.272154, -13.927738], - [126.295165, -13.941298] - ] - ], - [ - [ - [126.243438, -14.148258], - [126.236298, -14.161728], - [126.230478, -14.150328], - [126.243438, -14.148258] - ] - ], - [ - [ - [126.194915, -13.935049], - [126.164605, -13.96359], - [126.155925, -13.96054], - [126.174215, -13.932659], - [126.189715, -13.927369], - [126.194915, -13.935049] - ] - ], - [ - [ - [126.152473, -13.75244], - [126.150383, -13.75967], - [126.145423, -13.7486], - [126.152473, -13.75244] - ] - ], - [ - [ - [126.046801, -14.327979], - [126.041031, -14.33793], - [126.023412, -14.32847], - [126.017662, -14.35322], - [125.993282, -14.33633], - [125.998272, -14.32516], - [125.985082, -14.3133], - [125.992391, -14.30203], - [125.986611, -14.28927], - [126.008991, -14.28094], - [126.004271, -14.30275], - [126.018061, -14.30702], - [126.023491, -14.30046], - [126.046801, -14.327979] - ] - ], - [ - [ - [126.043171, -14.233439], - [126.036361, -14.242379], - [126.006511, -14.24932], - [125.993481, -14.24369], - [126.01839, -14.22524], - [126.043171, -14.233439] - ] - ], - [ - [ - [126.004694, -14.43818], - [125.994703, -14.44816], - [125.982774, -14.44646], - [125.988004, -14.43569], - [126.004694, -14.43818] - ] - ], - [ - [ - [125.995333, -14.37651], - [125.983294, -14.37751], - [125.984294, -14.38883], - [125.971004, -14.38822], - [125.982953, -14.36431], - [125.994543, -14.36229], - [125.995333, -14.37651] - ] - ], - [ - [ - [125.994222, -14.32166], - [125.976263, -14.3379], - [125.976392, -14.32819], - [125.994222, -14.32166] - ] - ], - [ - [ - [125.970583, -14.34692], - [125.960154, -14.35097], - [125.956544, -14.37421], - [125.944484, -14.388761], - [125.924224, -14.377221], - [125.943004, -14.365851], - [125.934784, -14.360871], - [125.949044, -14.34565], - [125.943153, -14.336061], - [125.958893, -14.33506], - [125.952653, -14.32659], - [125.959372, -14.32219], - [125.970583, -14.34692] - ] - ], - [ - [ - [125.79419, -14.160684], - [125.78758, -14.171164], - [125.778, -14.157944], - [125.79419, -14.160684] - ] - ], - [ - [ - [125.773283, -14.326554], - [125.761373, -14.323784], - [125.767393, -14.319544], - [125.773283, -14.326554] - ] - ], - [ - [ - [125.756964, -14.45101], - [125.736515, -14.476589], - [125.717745, -14.477008], - [125.718135, -14.453759], - [125.727185, -14.44982], - [125.721525, -14.44101], - [125.727955, -14.409532], - [125.754125, -14.41647], - [125.738805, -14.42919], - [125.749075, -14.45201], - [125.753845, -14.44536], - [125.756964, -14.45101] - ] - ], - [ - [ - [125.739871, -14.183934], - [125.730941, -14.192834], - [125.722521, -14.182884], - [125.730171, -14.174664], - [125.739871, -14.183934] - ] - ], - [ - [ - [125.720544, -14.351845], - [125.711384, -14.355436], - [125.708274, -14.347987], - [125.720544, -14.351845] - ] - ], - [ - [ - [125.70549, -14.135555], - [125.70189, -14.144005], - [125.69426, -14.139815], - [125.69214, -14.107645], - [125.70438, -14.116245], - [125.70549, -14.135555] - ] - ], - [ - [ - [125.683201, -14.168455], - [125.677281, -14.176345], - [125.669431, -14.165715], - [125.678251, -14.157615], - [125.683201, -14.168455] - ] - ], - [ - [ - [125.681354, -14.370387], - [125.680644, -14.377946], - [125.670674, -14.379616], - [125.669664, -14.367766], - [125.681354, -14.370387] - ] - ], - [ - [ - [125.644138, -13.946925], - [125.628488, -13.961835], - [125.625588, -13.931445], - [125.633808, -13.932185], - [125.634118, -13.946145], - [125.644138, -13.946925] - ] - ], - [ - [ - [125.584894, -14.357516], - [125.580004, -14.364495], - [125.573424, -14.357146], - [125.579004, -14.348696], - [125.584894, -14.357516] - ] - ], - [ - [ - [125.562656, -14.48625], - [125.559276, -14.49425], - [125.523476, -14.485014], - [125.523526, -14.467294], - [125.511285, -14.454954], - [125.517325, -14.449893], - [125.511425, -14.444453], - [125.529795, -14.422604], - [125.538085, -14.444303], - [125.530305, -14.447553], - [125.544305, -14.455833], - [125.538116, -14.474552], - [125.562656, -14.48625] - ] - ], - [ - [ - [125.560821, -14.105266], - [125.551441, -14.107607], - [125.554701, -14.099607], - [125.560821, -14.105266] - ] - ], - [ - [ - [125.520985, -14.425064], - [125.516085, -14.434874], - [125.500805, -14.430424], - [125.520985, -14.425064] - ] - ], - [ - [ - [125.505796, -14.508106], - [125.491656, -14.506826], - [125.503966, -14.499867], - [125.499546, -14.505837], - [125.505796, -14.508106] - ] - ], - [ - [ - [125.497126, -14.499057], - [125.473326, -14.511963], - [125.451116, -14.496881], - [125.444556, -14.481282], - [125.474416, -14.497404], - [125.484076, -14.484795], - [125.481156, -14.491555], - [125.488466, -14.488976], - [125.485086, -14.494386], - [125.497126, -14.499057] - ] - ], - [ - [ - [125.443567, -14.574971], - [125.433117, -14.580811], - [125.439187, -14.568081], - [125.443567, -14.574971] - ] - ], - [ - [ - [125.441706, -14.53963], - [125.438086, -14.54707], - [125.426266, -14.544551], - [125.431996, -14.531811], - [125.441706, -14.53963] - ] - ], - [ - [ - [125.435636, -14.55395], - [125.419127, -14.564851], - [125.424866, -14.548731], - [125.435636, -14.55395] - ] - ], - [ - [ - [125.414346, -14.539891], - [125.404597, -14.541551], - [125.408906, -14.535241], - [125.414346, -14.539891] - ] - ], - [ - [ - [125.411194, -14.336557], - [125.407465, -14.344787], - [125.404024, -14.334387], - [125.411194, -14.336557] - ] - ], - [ - [ - [125.367019, -15.078622], - [125.347169, -15.083683], - [125.356989, -15.072342], - [125.367019, -15.078622] - ] - ], - [ - [ - [125.366769, -15.010392], - [125.358039, -15.029862], - [125.355519, -15.014512], - [125.366769, -15.010392] - ] - ], - [ - [ - [125.345986, -14.493265], - [125.340726, -14.504754], - [125.337846, -14.498084], - [125.345986, -14.493265] - ] - ], - [ - [ - [125.330117, -14.553492], - [125.320707, -14.556052], - [125.321547, -14.550522], - [125.330117, -14.553492] - ] - ], - [ - [ - [125.320404, -14.267368], - [125.315524, -14.272998], - [125.313024, -14.261668], - [125.320404, -14.267368] - ] - ], - [ - [ - [125.310294, -14.276588], - [125.302704, -14.293157], - [125.290444, -14.288927], - [125.293064, -14.269748], - [125.310294, -14.276588] - ] - ], - [ - [ - [125.306299, -15.069983], - [125.301669, -15.072823], - [125.299649, -15.063573], - [125.306299, -15.069983] - ] - ], - [ - [ - [125.278637, -14.581192], - [125.267707, -14.587812], - [125.254407, -14.577592], - [125.265887, -14.577412], - [125.267917, -14.563762], - [125.278637, -14.581192] - ] - ], - [ - [ - [125.273006, -14.478315], - [125.270596, -14.483325], - [125.264806, -14.470716], - [125.248106, -14.472005], - [125.248596, -14.464555], - [125.261716, -14.461106], - [125.273006, -14.478315] - ] - ], - [ - [ - [125.271636, -14.414625], - [125.259176, -14.428695], - [125.249796, -14.428435], - [125.256086, -14.418634], - [125.245306, -14.418925], - [125.253916, -14.411284], - [125.271636, -14.414625] - ] - ], - [ - [ - [125.25442, -15.085573], - [125.24699, -15.095033], - [125.22786, -15.096083], - [125.23062, -15.084993], - [125.24335, -15.078283], - [125.25442, -15.085573] - ] - ], - [ - [ - [125.253459, -14.977953], - [125.247509, -14.982893], - [125.251199, -14.992503], - [125.232469, -14.996953], - [125.228769, -14.991073], - [125.242279, -14.985243], - [125.239519, -14.977223], - [125.245669, -14.979393], - [125.249309, -14.967773], - [125.253459, -14.977953] - ] - ], - [ - [ - [125.244016, -14.422425], - [125.237846, -14.429735], - [125.237566, -14.413595], - [125.244016, -14.422425] - ] - ], - [ - [ - [125.23087, -15.070653], - [125.22987, -15.084263], - [125.21659, -15.097823], - [125.22886, -15.099573], - [125.21871, -15.104593], - [125.21287, -15.098403], - [125.21662, -15.105393], - [125.19623, -15.120613], - [125.17508, -15.122053], - [125.16486, -15.099273], - [125.17531, -15.097663], - [125.16991, -15.084793], - [125.17488, -15.078903], - [125.16444, -15.082783], - [125.1445, -15.041743], - [125.15661, -15.048243], - [125.1564, -15.026103], - [125.1666, -15.020533], - [125.16385, -15.029463], - [125.17846, -15.048163], - [125.17651, -15.066243], - [125.20222, -15.057663], - [125.23087, -15.070653] - ] - ], - [ - [ - [125.229669, -14.908543], - [125.223979, -14.909533], - [125.226209, -14.902203], - [125.229669, -14.908543] - ] - ], - [ - [ - [125.229005, -14.300197], - [125.211565, -14.314797], - [125.220835, -14.286498], - [125.229005, -14.300197] - ] - ], - [ - [ - [125.216127, -14.495703], - [125.207657, -14.496563], - [125.211747, -14.517362], - [125.208927, -14.526492], - [125.201507, -14.525562], - [125.201067, -14.547802], - [125.194538, -14.556352], - [125.184238, -14.551122], - [125.180488, -14.559682], - [125.187178, -14.569532], - [125.199618, -14.562472], - [125.204308, -14.576152], - [125.197318, -14.583462], - [125.208578, -14.583062], - [125.196098, -14.590252], - [125.207818, -14.597172], - [125.210428, -14.591432], - [125.214278, -14.607242], - [125.199798, -14.612882], - [125.197598, -14.601872], - [125.185268, -14.609952], - [125.180868, -14.634432], - [125.167358, -14.619812], - [125.154988, -14.636582], - [125.147568, -14.635873], - [125.152118, -14.655543], - [125.135078, -14.651963], - [125.136108, -14.628263], - [125.130158, -14.637383], - [125.112678, -14.627933], - [125.108088, -14.642813], - [125.092618, -14.625923], - [125.100998, -14.619413], - [125.094768, -14.612833], - [125.094218, -14.567283], - [125.102508, -14.568373], - [125.096118, -14.546213], - [125.107438, -14.556773], - [125.110858, -14.545383], - [125.120078, -14.557393], - [125.132168, -14.551683], - [125.138838, -14.564133], - [125.134088, -14.576723], - [125.142898, -14.564152], - [125.151588, -14.565772], - [125.134418, -14.545163], - [125.141498, -14.538852], - [125.144128, -14.546152], - [125.143858, -14.530172], - [125.149658, -14.533942], - [125.153148, -14.526422], - [125.146658, -14.525662], - [125.149587, -14.519242], - [125.140768, -14.522022], - [125.142218, -14.515862], - [125.132618, -14.529103], - [125.131648, -14.512163], - [125.117638, -14.507133], - [125.118047, -14.493923], - [125.141107, -14.472682], - [125.160467, -14.471193], - [125.151167, -14.452742], - [125.162737, -14.456403], - [125.165357, -14.439934], - [125.184986, -14.459215], - [125.180127, -14.483923], - [125.190257, -14.473014], - [125.207817, -14.487873], - [125.204747, -14.499712], - [125.208137, -14.492733], - [125.216127, -14.495703] - ] - ], - [ - [ - [125.208469, -14.952713], - [125.201039, -14.953033], - [125.206939, -14.958813], - [125.200839, -14.966503], - [125.188339, -14.962123], - [125.198359, -14.953013], - [125.197829, -14.941163], - [125.208469, -14.952713] - ] - ], - [ - [ - [125.189519, -14.870783], - [125.186479, -14.875513], - [125.179419, -14.868493], - [125.179029, -14.852003], - [125.189519, -14.870783] - ] - ], - [ - [ - [125.147098, -14.663083], - [125.135118, -14.670033], - [125.129448, -14.665833], - [125.147098, -14.663083] - ] - ], - [ - [ - [125.145279, -14.761083], - [125.144209, -14.767173], - [125.137499, -14.761163], - [125.137649, -14.748823], - [125.145279, -14.761083] - ] - ], - [ - [ - [125.134169, -14.752003], - [125.126939, -14.760773], - [125.124719, -14.755143], - [125.134169, -14.752003] - ] - ], - [ - [ - [125.053062, -15.309484], - [125.048582, -15.323504], - [125.040172, -15.315404], - [125.053062, -15.309484] - ] - ], - [ - [ - [125.036382, -15.327504], - [125.018162, -15.371744], - [124.995482, -15.375774], - [124.992842, -15.357024], - [125.021452, -15.321454], - [125.036382, -15.327504] - ] - ], - [ - [ - [125.032029, -14.782033], - [125.02729, -14.792623], - [125.02047, -14.786943], - [125.023809, -14.780003], - [125.017019, -14.780153], - [125.025799, -14.765293], - [125.032029, -14.782033] - ] - ], - [ - [ - [125.015991, -15.206014], - [125.011141, -15.213934], - [125.005661, -15.209554], - [125.006561, -15.203224], - [125.015991, -15.206014] - ] - ], - [ - [ - [125.014792, -15.430614], - [125.005743, -15.439344], - [125.004213, -15.433814], - [125.014792, -15.430614] - ] - ], - [ - [ - [124.999898, -14.516733], - [124.991718, -14.529003], - [124.985957, -14.520054], - [124.984757, -14.528064], - [124.979556, -14.524204], - [124.976755, -14.507024], - [124.990016, -14.498614], - [124.990436, -14.484504], - [124.999898, -14.516733] - ] - ], - [ - [ - [124.995535, -14.440154], - [124.975183, -14.452354], - [124.979514, -14.444024], - [124.972482, -14.437215], - [124.984242, -14.427335], - [124.995535, -14.440154] - ] - ], - [ - [ - [124.985909, -14.395155], - [124.983332, -14.424285], - [124.97238, -14.411575], - [124.973269, -14.397575], - [124.959339, -14.401686], - [124.973459, -14.383465], - [124.985909, -14.395155] - ] - ], - [ - [ - [124.984961, -15.055514], - [124.971241, -15.086854], - [124.952331, -15.098544], - [124.964711, -15.082124], - [124.962221, -15.066994], - [124.955951, -15.070634], - [124.969101, -15.042004], - [124.976771, -15.040514], - [124.984961, -15.055514] - ] - ], - [ - [ - [124.984292, -15.343044], - [124.980372, -15.352214], - [124.950852, -15.364285], - [124.953592, -15.352075], - [124.976482, -15.339794], - [124.984292, -15.343044] - ] - ], - [ - [ - [124.962261, -15.044964], - [124.944811, -15.075294], - [124.939781, -15.067174], - [124.951161, -15.063864], - [124.943581, -15.057114], - [124.953181, -15.043634], - [124.962261, -15.044964] - ] - ], - [ - [ - [124.959291, -15.029154], - [124.939721, -15.049214], - [124.941421, -15.038134], - [124.915941, -15.029174], - [124.911031, -15.020374], - [124.920521, -15.008934], - [124.897731, -15.004474], - [124.905801, -14.994274], - [124.913811, -14.996124], - [124.920641, -14.980224], - [124.901451, -14.983184], - [124.894051, -14.996354], - [124.891421, -14.987874], - [124.878431, -15.004645], - [124.883361, -14.996865], - [124.876791, -14.986335], - [124.885201, -14.978474], - [124.879171, -14.975615], - [124.889371, -14.959404], - [124.890041, -14.965394], - [124.897721, -14.961824], - [124.898121, -14.974814], - [124.921541, -14.967274], - [124.9301, -14.948324], - [124.91712, -14.941364], - [124.91722, -14.922394], - [124.92661, -14.926624], - [124.93138, -14.947994], - [124.93832, -14.947924], - [124.93503, -14.961104], - [124.94616, -14.965454], - [124.930281, -15.007664], - [124.938981, -15.002554], - [124.939261, -15.015534], - [124.948391, -15.001394], - [124.958631, -15.005434], - [124.945431, -15.018914], - [124.948491, -15.027414], - [124.959291, -15.029154] - ] - ], - [ - [ - [124.932023, -14.521355], - [124.924752, -14.515106], - [124.931482, -14.514016], - [124.932023, -14.521355] - ] - ], - [ - [ - [124.92724, -14.895464], - [124.92119, -14.897014], - [124.92333, -14.888554], - [124.92724, -14.895464] - ] - ], - [ - [ - [124.890821, -14.948914], - [124.889291, -14.955814], - [124.876681, -14.941944], - [124.890821, -14.948914] - ] - ], - [ - [ - [124.872741, -14.939674], - [124.868081, -14.941905], - [124.865241, -14.930375], - [124.872741, -14.939674] - ] - ], - [ - [ - [124.866401, -15.023084], - [124.857221, -15.021415], - [124.854461, -15.031144], - [124.844441, -15.024615], - [124.859861, -15.011125], - [124.866401, -15.023084] - ] - ], - [ - [ - [124.863282, -15.286805], - [124.860803, -15.313025], - [124.841723, -15.314545], - [124.854373, -15.303435], - [124.848993, -15.293395], - [124.863282, -15.286805] - ] - ], - [ - [ - [124.858813, -15.342855], - [124.848583, -15.349215], - [124.843673, -15.342565], - [124.853083, -15.337335], - [124.858813, -15.342855] - ] - ], - [ - [ - [124.857362, -15.256205], - [124.842192, -15.280085], - [124.834092, -15.272505], - [124.838133, -15.281335], - [124.812313, -15.289535], - [124.811783, -15.306145], - [124.790783, -15.287335], - [124.792683, -15.260545], - [124.799743, -15.260125], - [124.809582, -15.229095], - [124.827892, -15.245325], - [124.834182, -15.247225], - [124.830432, -15.237635], - [124.836362, -15.237725], - [124.857362, -15.256205] - ] - ], - [ - [ - [124.807562, -15.216445], - [124.801532, -15.222565], - [124.783483, -15.218875], - [124.799962, -15.203805], - [124.805452, -15.211815], - [124.799412, -15.214435], - [124.807562, -15.216445] - ] - ], - [ - [ - [124.789892, -15.013104], - [124.774842, -15.035395], - [124.775712, -15.013475], - [124.789892, -15.013104] - ] - ], - [ - [ - [124.779958, -14.949326], - [124.773547, -14.952336], - [124.773406, -14.937207], - [124.779958, -14.949326] - ] - ], - [ - [ - [124.762606, -14.954537], - [124.745544, -14.951498], - [124.746664, -14.939308], - [124.759305, -14.942657], - [124.762606, -14.954537] - ] - ], - [ - [ - [124.748464, -14.910178], - [124.738864, -14.941978], - [124.733124, -14.911448], - [124.748464, -14.910178] - ] - ], - [ - [ - [124.732153, -14.860388], - [124.716284, -14.872048], - [124.714853, -14.859608], - [124.732153, -14.860388] - ] - ], - [ - [ - [124.720185, -16.376959], - [124.691966, -16.377899], - [124.679485, -16.368609], - [124.696565, -16.369569], - [124.710845, -16.360269], - [124.720185, -16.376959] - ] - ], - [ - [ - [124.703176, -16.356879], - [124.691196, -16.364699], - [124.672976, -16.356169], - [124.692305, -16.349269], - [124.703176, -16.356879] - ] - ], - [ - [ - [124.694165, -14.953678], - [124.685694, -14.950238], - [124.683924, -14.937348], - [124.694165, -14.953678] - ] - ], - [ - [ - [124.671904, -14.945068], - [124.665364, -14.949998], - [124.658704, -14.937878], - [124.671904, -14.945068] - ] - ], - [ - [ - [124.655675, -15.788517], - [124.648465, -15.799037], - [124.628885, -15.804497], - [124.655675, -15.788517] - ] - ], - [ - [ - [124.654744, -15.397336], - [124.615564, -15.427346], - [124.608674, -15.420916], - [124.566554, -15.444256], - [124.524634, -15.448387], - [124.523894, -15.435657], - [124.517624, -15.441167], - [124.510744, -15.434277], - [124.520404, -15.431097], - [124.513764, -15.426367], - [124.529464, -15.413237], - [124.532394, -15.425097], - [124.536924, -15.416616], - [124.540424, -15.420676], - [124.541144, -15.433226], - [124.547354, -15.425026], - [124.538894, -15.412886], - [124.560184, -15.400536], - [124.557604, -15.391506], - [124.589804, -15.381926], - [124.591044, -15.369026], - [124.572724, -15.378716], - [124.567464, -15.371076], - [124.566904, -15.382446], - [124.554574, -15.388566], - [124.546884, -15.383836], - [124.552044, -15.364566], - [124.545094, -15.359996], - [124.537314, -15.375936], - [124.527974, -15.357357], - [124.528584, -15.375047], - [124.522184, -15.378897], - [124.535234, -15.383166], - [124.515434, -15.380597], - [124.516154, -15.392687], - [124.507194, -15.397557], - [124.504024, -15.380727], - [124.512384, -15.365227], - [124.498114, -15.369697], - [124.503074, -15.377167], - [124.483514, -15.385467], - [124.479384, -15.398247], - [124.486404, -15.403187], - [124.475814, -15.405037], - [124.465554, -15.403057], - [124.484304, -15.380607], - [124.479164, -15.376897], - [124.483804, -15.361557], - [124.466914, -15.372887], - [124.461124, -15.355297], - [124.481634, -15.345647], - [124.492114, -15.358227], - [124.497304, -15.348007], - [124.481172, -15.335778], - [124.49076, -15.321049], - [124.504931, -15.326718], - [124.500272, -15.336587], - [124.517102, -15.333808], - [124.49995, -15.319529], - [124.498379, -15.307679], - [124.513908, -15.306809], - [124.515209, -15.313589], - [124.535558, -15.303619], - [124.520658, -15.305559], - [124.523437, -15.29392], - [124.515888, -15.30398], - [124.516577, -15.29878], - [124.504378, -15.30433], - [124.494807, -15.29222], - [124.511657, -15.27754], - [124.522357, -15.27493], - [124.522487, -15.28284], - [124.527597, -15.27301], - [124.541867, -15.2801], - [124.541777, -15.26463], - [124.551737, -15.26441], - [124.558047, -15.2498], - [124.571307, -15.245379], - [124.558057, -15.25523], - [124.568317, -15.26696], - [124.562527, -15.28042], - [124.569047, -15.28131], - [124.568717, -15.29533], - [124.556209, -15.314279], - [124.56679, -15.320188], - [124.571429, -15.313179], - [124.589939, -15.312249], - [124.589402, -15.336427], - [124.580033, -15.342687], - [124.605013, -15.341826], - [124.626164, -15.374786], - [124.619514, -15.381606], - [124.624504, -15.393576], - [124.654744, -15.397336] - ] - ], - [ - [ - [124.649573, -15.167056], - [124.643892, -15.174187], - [124.643403, -15.162326], - [124.649573, -15.167056] - ] - ], - [ - [ - [124.649556, -16.349799], - [124.564936, -16.34417], - [124.607566, -16.341659], - [124.649556, -16.349799] - ] - ], - [ - [ - [124.640042, -15.281537], - [124.618059, -15.290728], - [124.612108, -15.283619], - [124.620109, -15.265298], - [124.640042, -15.281537] - ] - ], - [ - [ - [124.620814, -15.432536], - [124.614084, -15.447686], - [124.605804, -15.443066], - [124.605944, -15.452226], - [124.602074, -15.441376], - [124.594394, -15.441616], - [124.620814, -15.432536] - ] - ], - [ - [ - [124.596685, -15.910887], - [124.585095, -15.952487], - [124.577675, -15.948737], - [124.557336, -15.964968], - [124.532026, -15.966558], - [124.545596, -15.936848], - [124.576155, -15.920527], - [124.573445, -15.910697], - [124.580555, -15.917217], - [124.593165, -15.905357], - [124.596685, -15.910887] - ] - ], - [ - [ - [124.577047, -15.268419], - [124.570767, -15.269109], - [124.566897, -15.256119], - [124.577047, -15.268419] - ] - ], - [ - [ - [124.547187, -15.23162], - [124.532767, -15.23673], - [124.543927, -15.22711], - [124.547187, -15.23162] - ] - ], - [ - [ - [124.515977, -15.21188], - [124.509827, -15.22353], - [124.498257, -15.21483], - [124.506657, -15.20534], - [124.515977, -15.21188] - ] - ], - [ - [ - [124.500764, -15.456317], - [124.487065, -15.464857], - [124.496084, -15.451147], - [124.500764, -15.456317] - ] - ], - [ - [ - [124.495897, -15.20772], - [124.493707, -15.21349], - [124.488437, -15.20618], - [124.495897, -15.20772] - ] - ], - [ - [ - [124.485236, -15.967748], - [124.476876, -15.981708], - [124.474296, -15.975138], - [124.485236, -15.967748] - ] - ], - [ - [ - [124.4812, -15.318149], - [124.470119, -15.313909], - [124.476849, -15.310269], - [124.4812, -15.318149] - ] - ], - [ - [ - [124.476936, -15.987438], - [124.470426, -15.993798], - [124.470956, -15.983858], - [124.476936, -15.987438] - ] - ], - [ - [ - [124.470356, -16.004588], - [124.457266, -16.029738], - [124.462076, -16.000708], - [124.470356, -16.004588] - ] - ], - [ - [ - [124.470006, -15.914168], - [124.467356, -15.942188], - [124.462556, -15.939618], - [124.455506, -15.955468], - [124.449006, -15.984638], - [124.450866, -15.938658], - [124.460256, -15.918608], - [124.454396, -15.919778], - [124.452936, -15.907808], - [124.460756, -15.908108], - [124.460936, -15.897038], - [124.467986, -15.906048], - [124.464816, -15.917468], - [124.470006, -15.914168] - ] - ], - [ - [ - [124.464676, -16.35581], - [124.454767, -16.37384], - [124.435217, -16.37342], - [124.433257, -16.36809], - [124.464676, -16.35581] - ] - ], - [ - [ - [124.461438, -15.30074], - [124.434411, -15.321639], - [124.443309, -15.30658], - [124.42053, -15.315599], - [124.427479, -15.30558], - [124.418749, -15.30731], - [124.412778, -15.292861], - [124.40282, -15.31286], - [124.397559, -15.30712], - [124.391872, -15.332458], - [124.383651, -15.320299], - [124.373792, -15.329359], - [124.352571, -15.322219], - [124.342849, -15.30983], - [124.355578, -15.292151], - [124.367059, -15.30837], - [124.369298, -15.288371], - [124.378138, -15.286071], - [124.379568, -15.294431], - [124.382448, -15.287191], - [124.407118, -15.285161], - [124.417487, -15.26388], - [124.441057, -15.24977], - [124.457167, -15.26966], - [124.452827, -15.27897], - [124.442147, -15.27222], - [124.449857, -15.2904], - [124.441868, -15.29823], - [124.461438, -15.30074] - ] - ], - [ - [ - [124.455956, -15.860358], - [124.447816, -15.844018], - [124.451316, -15.834678], - [124.455956, -15.860358] - ] - ], - [ - [ - [124.455566, -15.875828], - [124.447916, -15.886258], - [124.447346, -15.874628], - [124.442506, -15.878938], - [124.444796, -15.870118], - [124.455566, -15.875828] - ] - ], - [ - [ - [124.404655, -15.530977], - [124.400245, -15.534157], - [124.400175, -15.524597], - [124.404655, -15.530977] - ] - ], - [ - [ - [124.401214, -15.342458], - [124.389584, -15.344878], - [124.392113, -15.337978], - [124.401214, -15.342458] - ] - ], - [ - [ - [124.399517, -15.22758], - [124.392407, -15.250541], - [124.392567, -15.234161], - [124.385377, -15.239281], - [124.384157, -15.228321], - [124.399517, -15.22758] - ] - ], - [ - [ - [124.395807, -16.32091], - [124.386087, -16.32233], - [124.389507, -16.31647], - [124.395807, -16.32091] - ] - ], - [ - [ - [124.374885, -15.390807], - [124.366735, -15.391738], - [124.372815, -15.397697], - [124.366655, -15.398858], - [124.337664, -15.376048], - [124.352854, -15.360738], - [124.366854, -15.366328], - [124.363455, -15.386788], - [124.374885, -15.390807] - ] - ], - [ - [ - [124.367487, -16.365071], - [124.358647, -16.375991], - [124.361517, -16.364251], - [124.367487, -16.365071] - ] - ], - [ - [ - [124.358567, -16.346941], - [124.353247, -16.358101], - [124.347557, -16.349601], - [124.355447, -16.340941], - [124.358567, -16.346941] - ] - ], - [ - [ - [124.351247, -16.359221], - [124.350987, -16.364311], - [124.341057, -16.359851], - [124.342037, -16.352961], - [124.351247, -16.359221] - ] - ], - [ - [ - [124.349922, -15.330469], - [124.339571, -15.332319], - [124.336132, -15.344419], - [124.318151, -15.35686], - [124.303549, -15.351781], - [124.336511, -15.32589], - [124.34042, -15.3139], - [124.349922, -15.330469] - ] - ], - [ - [ - [124.286928, -15.301911], - [124.278358, -15.312451], - [124.271968, -15.303931], - [124.263218, -15.310701], - [124.265798, -15.304931], - [124.256868, -15.301672], - [124.241709, -15.319702], - [124.231809, -15.318722], - [124.232548, -15.297482], - [124.266018, -15.282451], - [124.276368, -15.279701], - [124.286928, -15.301911] - ] - ], - [ - [ - [124.259448, -16.384971], - [124.251398, -16.401081], - [124.237928, -16.400781], - [124.223418, -16.380921], - [124.216088, -16.354321], - [124.222048, -16.355151], - [124.221628, -16.347571], - [124.245138, -16.389071], - [124.247428, -16.378801], - [124.259448, -16.384971] - ] - ], - [ - [ - [124.235186, -15.968719], - [124.201066, -15.965], - [124.185326, -15.92455], - [124.192806, -15.93374], - [124.190016, -15.91669], - [124.204916, -15.923499], - [124.211296, -15.95435], - [124.233136, -15.952689], - [124.235186, -15.968719] - ] - ], - [ - [ - [124.229576, -15.938239], - [124.219276, -15.943049], - [124.212446, -15.918649], - [124.226726, -15.927069], - [124.229576, -15.938239] - ] - ], - [ - [ - [124.229139, -15.320422], - [124.224849, -15.325302], - [124.213549, -15.318032], - [124.227139, -15.314222], - [124.229139, -15.320422] - ] - ], - [ - [ - [124.220096, -15.946089], - [124.212096, -15.9496], - [124.211806, -15.935249], - [124.220096, -15.946089] - ] - ], - [ - [ - [124.208339, -15.330552], - [124.206859, -15.337762], - [124.188569, -15.337282], - [124.208339, -15.330552] - ] - ], - [ - [ - [124.187286, -15.95343], - [124.174836, -15.94838], - [124.176896, -15.93798], - [124.187286, -15.95343] - ] - ], - [ - [ - [124.146301, -33.843288], - [124.140392, -33.862008], - [124.130122, -33.862808], - [124.136721, -33.852088], - [124.130631, -33.841948], - [124.146301, -33.843288] - ] - ], - [ - [ - [124.144068, -16.249811], - [124.110018, -16.249942], - [124.109728, -16.258302], - [124.097608, -16.251112], - [124.105018, -16.246072], - [124.102148, -16.237122], - [124.114068, -16.239792], - [124.113078, -16.229162], - [124.118968, -16.241292], - [124.124388, -16.235562], - [124.144068, -16.249811] - ] - ], - [ - [ - [124.103397, -16.120371], - [124.098437, -16.126902], - [124.097567, -16.117621], - [124.103397, -16.120371] - ] - ], - [ - [ - [124.099247, -16.094241], - [124.094427, -16.114892], - [124.089367, -16.099522], - [124.086357, -16.116312], - [124.078087, -16.110722], - [124.072067, -16.119952], - [124.063217, -16.114012], - [124.076967, -16.103932], - [124.058717, -16.105732], - [124.076517, -16.093842], - [124.069147, -16.081432], - [124.099247, -16.094241] - ] - ], - [ - [ - [124.098587, -16.158092], - [124.093747, -16.164502], - [124.066688, -16.153372], - [124.066397, -16.144892], - [124.073767, -16.144482], - [124.069247, -16.138352], - [124.074877, -16.135562], - [124.084397, -16.146252], - [124.079237, -16.131632], - [124.088377, -16.145032], - [124.094597, -16.142132], - [124.089737, -16.151932], - [124.098587, -16.158092] - ] - ], - [ - [ - [124.094238, -16.230632], - [124.085888, -16.237922], - [124.074708, -16.230392], - [124.094238, -16.230632] - ] - ], - [ - [ - [124.084958, -16.167502], - [124.077888, -16.174802], - [124.068238, -16.166382], - [124.080318, -16.161482], - [124.084958, -16.167502] - ] - ], - [ - [ - [124.080308, -16.248622], - [124.074418, -16.255032], - [124.060478, -16.240252], - [124.080308, -16.248622] - ] - ], - [ - [ - [123.940059, -16.276973], - [123.92539, -16.282063], - [123.90578, -16.276383], - [123.912019, -16.270663], - [123.90043, -16.271833], - [123.897149, -16.256993], - [123.86151, -16.236163], - [123.885529, -16.246063], - [123.876859, -16.232433], - [123.940059, -16.276973] - ] - ], - [ - [ - [123.892899, -16.186323], - [123.890639, -16.190943], - [123.883089, -16.183423], - [123.892899, -16.186323] - ] - ], - [ - [ - [123.891156, -34.102025], - [123.885492, -34.108128], - [123.885055, -34.101146], - [123.891156, -34.102025] - ] - ], - [ - [ - [123.890659, -16.202923], - [123.872759, -16.218163], - [123.877589, -16.199543], - [123.867479, -16.191333], - [123.874049, -16.188333], - [123.881639, -16.197803], - [123.883989, -16.188743], - [123.890659, -16.202923] - ] - ], - [ - [ - [123.88644, -16.280093], - [123.87911, -16.289763], - [123.87905, -16.281963], - [123.86355, -16.273593], - [123.8574, -16.253203], - [123.88644, -16.280093] - ] - ], - [ - [ - [123.88518, -16.319723], - [123.86483, -16.289883], - [123.87662, -16.293813], - [123.87283, -16.299433], - [123.88518, -16.319723] - ] - ], - [ - [ - [123.883869, -16.173713], - [123.881699, -16.182053], - [123.876259, -16.174673], - [123.883869, -16.173713] - ] - ], - [ - [ - [123.874299, -16.201783], - [123.862589, -16.202493], - [123.865439, -16.197193], - [123.874299, -16.201783] - ] - ], - [ - [ - [123.85708, -16.278523], - [123.84969, -16.280953], - [123.84766, -16.271673], - [123.85708, -16.278523] - ] - ], - [ - [ - [123.84502, -16.235593], - [123.84345, -16.241913], - [123.83762, -16.224343], - [123.84502, -16.235593] - ] - ], - [ - [ - [123.842349, -16.189003], - [123.838279, -16.214513], - [123.830889, -16.203043], - [123.842349, -16.189003] - ] - ], - [ - [ - [123.83545, -16.246713], - [123.83154, -16.252443], - [123.82596, -16.248113], - [123.82647, -16.257383], - [123.81948, -16.253933], - [123.81795, -16.269303], - [123.80411, -16.245233], - [123.81566, -16.249053], - [123.8105, -16.236123], - [123.82767, -16.239753], - [123.82262, -16.227513], - [123.83133, -16.235033], - [123.83107, -16.223673], - [123.83545, -16.246713] - ] - ], - [ - [ - [123.81997, -16.208163], - [123.81871, -16.218663], - [123.81158, -16.204033], - [123.81997, -16.208163] - ] - ], - [ - [ - [123.813379, -16.199013], - [123.796979, -16.187073], - [123.807839, -16.188513], - [123.813379, -16.199013] - ] - ], - [ - [ - [123.808799, -16.200053], - [123.79137, -16.200253], - [123.771889, -16.165513], - [123.777249, -16.163553], - [123.784209, -16.180413], - [123.808799, -16.200053] - ] - ], - [ - [ - [123.797439, -16.145363], - [123.782319, -16.149433], - [123.789029, -16.159833], - [123.774489, -16.148133], - [123.778049, -16.142393], - [123.759169, -16.149023], - [123.776589, -16.160263], - [123.766099, -16.158573], - [123.709179, -16.113923], - [123.705399, -16.118983], - [123.682889, -16.112013], - [123.710649, -16.106253], - [123.732069, -16.117843], - [123.776899, -16.125653], - [123.777599, -16.112543], - [123.788699, -16.113653], - [123.790799, -16.128133], - [123.784449, -16.132263], - [123.797439, -16.145363] - ] - ], - [ - [ - [123.754498, -16.263279], - [123.765171, -16.269683], - [123.756501, -16.271653], - [123.742781, -16.261033], - [123.754498, -16.263279] - ] - ], - [ - [ - [123.702957, -15.940013], - [123.692467, -15.952793], - [123.701587, -15.959333], - [123.691657, -15.957873], - [123.689218, -15.967143], - [123.684417, -15.958903], - [123.690807, -15.935283], - [123.696647, -15.936513], - [123.691497, -15.926243], - [123.702957, -15.940013] - ] - ], - [ - [ - [123.698311, -16.355403], - [123.688241, -16.356223], - [123.678741, -16.344953], - [123.698311, -16.355403] - ] - ], - [ - [ - [123.683302, -17.034349], - [123.676103, -17.043359], - [123.664652, -17.028399], - [123.677482, -17.021669], - [123.683302, -17.034349] - ] - ], - [ - [ - [123.672201, -16.356203], - [123.653421, -16.348023], - [123.668871, -16.348833], - [123.672201, -16.356203] - ] - ], - [ - [ - [123.665822, -16.416291], - [123.648352, -16.417952], - [123.622162, -16.400552], - [123.665822, -16.416291] - ] - ], - [ - [ - [123.658141, -16.344673], - [123.630121, -16.335963], - [123.648151, -16.335663], - [123.658141, -16.344673] - ] - ], - [ - [ - [123.639979, -16.099334], - [123.625179, -16.106674], - [123.585069, -16.081454], - [123.639979, -16.099334] - ] - ], - [ - [ - [123.629252, -16.354043], - [123.606411, -16.342883], - [123.600111, -16.327793], - [123.627811, -16.345093], - [123.629252, -16.354043] - ] - ], - [ - [ - [123.627372, -16.420602], - [123.620393, -16.428342], - [123.606902, -16.417832], - [123.627372, -16.420602] - ] - ], - [ - [ - [123.5951, -16.160564], - [123.58223, -16.160784], - [123.57604, -16.146844], - [123.59033, -16.144694], - [123.5951, -16.160564] - ] - ], - [ - [ - [123.58008, -16.241364], - [123.564521, -16.241345], - [123.547171, -16.219825], - [123.58008, -16.241364] - ] - ], - [ - [ - [123.576361, -16.263834], - [123.566721, -16.268834], - [123.572311, -16.258484], - [123.576361, -16.263834] - ] - ], - [ - [ - [123.572981, -16.249674], - [123.565961, -16.261934], - [123.546281, -16.251925], - [123.564581, -16.259884], - [123.564251, -16.245075], - [123.572981, -16.249674] - ] - ], - [ - [ - [123.564059, -16.078104], - [123.550269, -16.077084], - [123.5571, -16.096584], - [123.54795, -16.099894], - [123.55243, -16.095974], - [123.54388, -16.085394], - [123.53544, -16.087574], - [123.53852, -16.095744], - [123.52563, -16.086694], - [123.522529, -16.069034], - [123.537589, -16.058314], - [123.564059, -16.078104] - ] - ], - [ - [ - [123.561677, -34.337796], - [123.559537, -34.360006], - [123.533998, -34.378066], - [123.533847, -34.368826], - [123.544717, -34.364646], - [123.543077, -34.356416], - [123.561677, -34.337796] - ] - ], - [ - [ - [123.559471, -16.605066], - [123.550661, -16.607476], - [123.552861, -16.597216], - [123.559471, -16.605066] - ] - ], - [ - [ - [123.553747, -17.264932], - [123.545267, -17.290322], - [123.538447, -17.242032], - [123.543667, -17.232562], - [123.551857, -17.241422], - [123.553747, -17.264932] - ] - ], - [ - [ - [123.551969, -16.046464], - [123.530189, -16.050444], - [123.508429, -16.024304], - [123.517089, -16.026814], - [123.522089, -16.017254], - [123.529389, -16.023654], - [123.521999, -16.026864], - [123.527059, -16.035044], - [123.533539, -16.030014], - [123.540419, -16.044094], - [123.551969, -16.046464] - ] - ], - [ - [ - [123.551777, -17.305272], - [123.545948, -17.318472], - [123.542967, -17.303652], - [123.551777, -17.305272] - ] - ], - [ - [ - [123.547791, -16.265395], - [123.546661, -16.273515], - [123.525681, -16.277285], - [123.503391, -16.258435], - [123.524391, -16.265185], - [123.539511, -16.262715], - [123.539231, -16.255145], - [123.547791, -16.265395] - ] - ], - [ - [ - [123.546407, -17.297342], - [123.540857, -17.301152], - [123.537257, -17.291982], - [123.546407, -17.297342] - ] - ], - [ - [ - [123.54628, -16.202865], - [123.54527, -16.210425], - [123.53928, -16.187655], - [123.54628, -16.202865] - ] - ], - [ - [ - [123.538491, -16.592456], - [123.522781, -16.604856], - [123.517852, -16.580845], - [123.527242, -16.579575], - [123.529242, -16.591466], - [123.538491, -16.592456] - ] - ], - [ - [ - [123.536827, -34.009693], - [123.527637, -34.023343], - [123.523697, -34.006883], - [123.536827, -34.009693] - ] - ], - [ - [ - [123.535228, -17.321252], - [123.531288, -17.332192], - [123.528237, -17.307092], - [123.535228, -17.321252] - ] - ], - [ - [ - [123.53494, -16.152795], - [123.53466, -16.157885], - [123.52601, -16.144695], - [123.53494, -16.152795] - ] - ], - [ - [ - [123.531241, -16.258465], - [123.497041, -16.249675], - [123.491331, -16.259115], - [123.505771, -16.266375], - [123.506631, -16.274295], - [123.489791, -16.284765], - [123.479781, -16.244095], - [123.447401, -16.228875], - [123.447621, -16.218245], - [123.457311, -16.208955], - [123.479011, -16.214355], - [123.473831, -16.220145], - [123.488041, -16.224835], - [123.478071, -16.226895], - [123.490671, -16.243285], - [123.531241, -16.258465] - ] - ], - [ - [ - [123.531181, -16.609346], - [123.509541, -16.640466], - [123.480531, -16.633756], - [123.456542, -16.617146], - [123.489181, -16.615486], - [123.508221, -16.631406], - [123.502321, -16.623556], - [123.512281, -16.611776], - [123.531181, -16.609346] - ] - ], - [ - [ - [123.526168, -17.344372], - [123.523859, -17.358492], - [123.515738, -17.335962], - [123.526168, -17.344372] - ] - ], - [ - [ - [123.52516, -16.147515], - [123.523141, -16.162975], - [123.505261, -16.161915], - [123.511501, -16.145465], - [123.51938, -16.140905], - [123.52516, -16.147515] - ] - ], - [ - [ - [123.521711, -16.275895], - [123.515061, -16.298675], - [123.512521, -16.282485], - [123.521711, -16.275895] - ] - ], - [ - [ - [123.493402, -16.600296], - [123.478422, -16.609996], - [123.483812, -16.598066], - [123.493402, -16.600296] - ] - ], - [ - [ - [123.460991, -16.167835], - [123.428301, -16.162225], - [123.454281, -16.154745], - [123.460991, -16.167835] - ] - ], - [ - [ - [123.459381, -16.269815], - [123.442801, -16.267716], - [123.446951, -16.274316], - [123.438251, -16.278296], - [123.434571, -16.271026], - [123.438761, -16.262366], - [123.459381, -16.269815] - ] - ], - [ - [ - [123.457898, -17.335873], - [123.456149, -17.342233], - [123.447099, -17.338233], - [123.443528, -17.324653], - [123.457898, -17.335873] - ] - ], - [ - [ - [123.455532, -16.530435], - [123.429332, -16.524876], - [123.441432, -16.521825], - [123.455532, -16.530435] - ] - ], - [ - [ - [123.446, -16.088115], - [123.43427, -16.091845], - [123.44212, -16.113625], - [123.42449, -16.087795], - [123.43232, -16.087425], - [123.43267, -16.076455], - [123.446, -16.088115] - ] - ], - [ - [ - [123.435441, -16.277706], - [123.422101, -16.278036], - [123.432481, -16.269996], - [123.435441, -16.277706] - ] - ], - [ - [ - [123.430001, -16.283646], - [123.421051, -16.289446], - [123.416521, -16.274476], - [123.430001, -16.283646] - ] - ], - [ - [ - [123.423888, -17.322183], - [123.403658, -17.319363], - [123.399528, -17.300693], - [123.423888, -17.322183] - ] - ], - [ - [ - [123.42252, -16.131755], - [123.41417, -16.136875], - [123.40807, -16.126415], - [123.40027, -16.134485], - [123.38934, -16.129065], - [123.39536, -16.123915], - [123.3899, -16.119465], - [123.40046, -16.116735], - [123.39351, -16.109665], - [123.40135, -16.108835], - [123.40257, -16.117825], - [123.42252, -16.131755] - ] - ], - [ - [ - [123.422142, -16.343036], - [123.414762, -16.343536], - [123.418862, -16.332376], - [123.422142, -16.343036] - ] - ], - [ - [ - [123.41937, -16.084585], - [123.40497, -16.086375], - [123.40632, -16.080165], - [123.38924, -16.069825], - [123.41937, -16.084585] - ] - ], - [ - [ - [123.403002, -16.372136], - [123.399642, -16.380576], - [123.383322, -16.373186], - [123.403002, -16.372136] - ] - ], - [ - [ - [123.400362, -16.527766], - [123.387832, -16.527196], - [123.380082, -16.517176], - [123.398282, -16.513056], - [123.400362, -16.527766] - ] - ], - [ - [ - [123.391252, -16.582626], - [123.387972, -16.604636], - [123.362992, -16.583596], - [123.348152, -16.544906], - [123.352412, -16.530136], - [123.358612, -16.530986], - [123.364682, -16.556026], - [123.391252, -16.582626] - ] - ], - [ - [ - [123.37639, -16.058285], - [123.35817, -16.056755], - [123.36162, -16.050045], - [123.37639, -16.058285] - ] - ], - [ - [ - [123.361102, -16.427126], - [123.359682, -16.439096], - [123.344842, -16.447086], - [123.346332, -16.417256], - [123.361102, -16.427126] - ] - ], - [ - [ - [123.357412, -16.361407], - [123.335932, -16.358717], - [123.334682, -16.332817], - [123.349362, -16.339737], - [123.357412, -16.361407] - ] - ], - [ - [ - [123.350751, -16.162046], - [123.341751, -16.161166], - [123.345991, -16.169566], - [123.335841, -16.166986], - [123.319851, -16.152916], - [123.327241, -16.150846], - [123.322151, -16.145366], - [123.333871, -16.154416], - [123.344341, -16.149206], - [123.350751, -16.162046] - ] - ], - [ - [ - [123.327591, -16.139886], - [123.309431, -16.142756], - [123.307981, -16.136636], - [123.327591, -16.139886] - ] - ], - [ - [ - [123.318522, -16.322257], - [123.309302, -16.320357], - [123.308972, -16.307007], - [123.318522, -16.322257] - ] - ], - [ - [ - [123.316771, -16.134916], - [123.301891, -16.137596], - [123.289971, -16.125946], - [123.316771, -16.134916] - ] - ], - [ - [ - [123.31376, -16.033365], - [123.29492, -16.045956], - [123.27753, -16.043406], - [123.31376, -16.033365] - ] - ], - [ - [ - [123.305812, -16.306977], - [123.302082, -16.316207], - [123.299972, -16.306237], - [123.305812, -16.306977] - ] - ], - [ - [ - [123.297452, -16.300787], - [123.295872, -16.306087], - [123.290882, -16.301627], - [123.297452, -16.300787] - ] - ], - [ - [ - [123.225803, -16.407458], - [123.213343, -16.422588], - [123.199383, -16.424708], - [123.213083, -16.393198], - [123.225803, -16.407458] - ] - ], - [ - [ - [123.216378, -34.088235], - [123.207209, -34.119455], - [123.205889, -34.107725], - [123.192979, -34.117396], - [123.193819, -34.108595], - [123.180809, -34.107556], - [123.173159, -34.124456], - [123.170619, -34.113736], - [123.161119, -34.116876], - [123.157479, -34.110326], - [123.170288, -34.090396], - [123.201728, -34.092945], - [123.214638, -34.080895], - [123.216378, -34.088235] - ] - ], - [ - [ - [123.211453, -16.392728], - [123.192493, -16.432768], - [123.185353, -16.432468], - [123.183843, -16.421258], - [123.176563, -16.433508], - [123.166583, -16.425149], - [123.178863, -16.406059], - [123.168163, -16.389109], - [123.187163, -16.386368], - [123.191143, -16.397038], - [123.205893, -16.387128], - [123.211453, -16.392728] - ] - ], - [ - [ - [123.188488, -34.078365], - [123.183178, -34.087155], - [123.178728, -34.079815], - [123.188488, -34.078365] - ] - ], - [ - [ - [123.167983, -16.405039], - [123.152423, -16.423529], - [123.159363, -16.400659], - [123.167983, -16.405039] - ] - ], - [ - [ - [123.166635, -15.528529], - [123.152765, -15.532459], - [123.153605, -15.511449], - [123.166635, -15.528529] - ] - ], - [ - [ - [123.158473, -16.397139], - [123.143453, -16.389409], - [123.152723, -16.387129], - [123.158473, -16.397139] - ] - ], - [ - [ - [123.135823, -16.400859], - [123.124963, -16.408539], - [123.124903, -16.423799], - [123.118043, -16.409369], - [123.126113, -16.398379], - [123.135823, -16.400859] - ] - ], - [ - [ - [123.129223, -16.434929], - [123.104123, -16.437479], - [123.090913, -16.425919], - [123.107323, -16.424289], - [123.129223, -16.434929] - ] - ], - [ - [ - [122.862299, -33.982616], - [122.813979, -34.003036], - [122.843339, -33.983116], - [122.862299, -33.982616] - ] - ], - [ - [ - [122.813069, -34.008576], - [122.799569, -34.014226], - [122.798419, -34.004466], - [122.807739, -34.000696], - [122.813069, -34.008576] - ] - ], - [ - [ - [122.65492, -33.996987], - [122.65194, -34.002627], - [122.64734, -33.998237], - [122.65492, -33.996987] - ] - ], - [ - [ - [122.261105, -34.12415], - [122.252565, -34.127881], - [122.256164, -34.142961], - [122.249174, -34.145101], - [122.246334, -34.161311], - [122.235684, -34.158881], - [122.239143, -34.126411], - [122.231214, -34.126531], - [122.238464, -34.11992], - [122.231354, -34.10862], - [122.261105, -34.12415] - ] - ], - [ - [ - [122.151673, -34.033439], - [122.128523, -34.029409], - [122.147073, -34.027169], - [122.151673, -34.033439] - ] - ], - [ - [ - [122.126503, -16.85257], - [122.101863, -16.85507], - [122.112663, -16.85845], - [122.092593, -16.854631], - [122.126503, -16.85257] - ] - ], - [ - [ - [122.109584, -34.06435], - [122.097724, -34.06462], - [122.103624, -34.05904], - [122.109584, -34.06435] - ] - ], - [ - [ - [122.059017, -34.145891], - [122.038627, -34.141572], - [122.050357, -34.137912], - [122.059017, -34.145891] - ] - ], - [ - [ - [122.026873, -33.96346], - [122.004353, -33.97092], - [122.002263, -33.95806], - [122.026873, -33.96346] - ] - ], - [ - [ - [122.011284, -34.024181], - [121.993355, -34.042161], - [121.982475, -34.036721], - [122.011284, -34.024181] - ] - ], - [ - [ - [122.004794, -33.98727], - [121.987044, -33.988881], - [121.995353, -33.98046], - [122.004794, -33.98727] - ] - ], - [ - [ - [121.992693, -33.97312], - [121.981824, -33.979161], - [121.976315, -33.972832], - [121.992693, -33.97312] - ] - ], - [ - [ - [121.984127, -34.117533], - [121.973548, -34.120163], - [121.975807, -34.113843], - [121.984127, -34.117533] - ] - ], - [ - [ - [121.979725, -34.049472], - [121.953565, -34.055912], - [121.957795, -34.045022], - [121.979725, -34.049472] - ] - ], - [ - [ - [121.910222, -33.917719], - [121.903813, -33.924559], - [121.896672, -33.920019], - [121.910222, -33.917719] - ] - ], - [ - [ - [121.883822, -33.920179], - [121.874292, -33.926889], - [121.868372, -33.922459], - [121.883822, -33.920179] - ] - ], - [ - [ - [121.803543, -33.924811], - [121.795934, -33.928591], - [121.788424, -33.920549], - [121.803543, -33.924811] - ] - ], - [ - [ - [121.689596, -34.005122], - [121.669176, -34.002433], - [121.669706, -33.994753], - [121.679996, -33.994373], - [121.689596, -34.005122] - ] - ], - [ - [ - [121.616807, -34.018844], - [121.605967, -34.039344], - [121.593107, -34.028943], - [121.605567, -34.028834], - [121.607917, -34.013664], - [121.616807, -34.018844] - ] - ], - [ - [ - [119.613867, -34.375885], - [119.605835, -34.378036], - [119.598657, -34.368456], - [119.613867, -34.375885] - ] - ], - [ - [ - [118.527655, -20.312141], - [118.510665, -20.323751], - [118.499545, -20.318621], - [118.511755, -20.309091], - [118.527655, -20.312141] - ] - ], - [ - [ - [118.486712, -34.921999], - [118.477923, -34.936849], - [118.466729, -34.935495], - [118.43686, -34.910698], - [118.441545, -34.90405], - [118.456806, -34.904944], - [118.486712, -34.921999] - ] - ], - [ - [ - [118.069948, -35.064917], - [118.044119, -35.066411], - [118.039712, -35.059841], - [118.069948, -35.064917] - ] - ], - [ - [ - [117.874168, -20.516177], - [117.862358, -20.532148], - [117.845238, -20.539198], - [117.874168, -20.516177] - ] - ], - [ - [ - [117.744051, -20.62725], - [117.734171, -20.65371], - [117.711371, -20.64298], - [117.717111, -20.60756], - [117.733961, -20.6266], - [117.744051, -20.62725] - ] - ], - [ - [ - [117.089441, -20.616303], - [117.058322, -20.638793], - [117.037842, -20.635984], - [117.072522, -20.616283], - [117.089441, -20.616303] - ] - ], - [ - [ - [117.084729, -20.446752], - [117.075959, -20.465602], - [117.074439, -20.433752], - [117.068689, -20.430922], - [117.081849, -20.431522], - [117.084729, -20.446752] - ] - ], - [ - [ - [116.975219, -20.439783], - [116.973819, -20.445323], - [116.960049, -20.430173], - [116.966129, -20.425953], - [116.975219, -20.439783] - ] - ], - [ - [ - [116.952899, -20.420053], - [116.929889, -20.418394], - [116.849338, -20.378805], - [116.831809, -20.354075], - [116.838499, -20.352006], - [116.952899, -20.420053] - ] - ], - [ - [ - [116.886349, -20.480536], - [116.878981, -20.505426], - [116.86612, -20.518596], - [116.856071, -20.511616], - [116.837001, -20.520006], - [116.816122, -20.517866], - [116.854348, -20.445166], - [116.885701, -20.423638], - [116.873118, -20.456576], - [116.862718, -20.459796], - [116.862549, -20.469736], - [116.870429, -20.465736], - [116.869809, -20.480076], - [116.860889, -20.489386], - [116.867641, -20.495326], - [116.886349, -20.480536] - ] - ], - [ - [ - [116.844128, -20.457306], - [116.837418, -20.458476], - [116.843008, -20.452006], - [116.844128, -20.457306] - ] - ], - [ - [ - [116.838758, -20.426296], - [116.825078, -20.458326], - [116.798329, -20.472587], - [116.799148, -20.451467], - [116.815558, -20.450246], - [116.823238, -20.434626], - [116.838758, -20.426296] - ] - ], - [ - [ - [116.820204, -20.416699], - [116.811248, -20.414596], - [116.823788, -20.409215], - [116.82118, -20.416644], - [116.834138, -20.415925], - [116.812378, -20.440776], - [116.818088, -20.416816], - [116.820204, -20.416699] - ] - ], - [ - [ - [116.827288, -20.465986], - [116.799342, -20.518307], - [116.786862, -20.515777], - [116.80534, -20.481466], - [116.802588, -20.474646], - [116.827288, -20.465986] - ] - ], - [ - [ - [116.697464, -20.644838], - [116.683404, -20.662178], - [116.675484, -20.661878], - [116.674544, -20.651818], - [116.697464, -20.644838] - ] - ], - [ - [ - [116.692212, -20.505437], - [116.690013, -20.518997], - [116.677213, -20.523237], - [116.678052, -20.503697], - [116.692212, -20.505437] - ] - ], - [ - [ - [116.680673, -20.584068], - [116.670073, -20.596538], - [116.677403, -20.599438], - [116.667374, -20.628388], - [116.649934, -20.621248], - [116.635363, -20.632378], - [116.649333, -20.599118], - [116.668153, -20.596998], - [116.680673, -20.584068] - ] - ], - [ - [ - [116.676393, -20.548978], - [116.635343, -20.607768], - [116.600103, -20.612219], - [116.605703, -20.604778], - [116.597172, -20.602749], - [116.613433, -20.593078], - [116.624243, -20.572368], - [116.643363, -20.560428], - [116.649633, -20.567058], - [116.671023, -20.545658], - [116.676393, -20.548978] - ] - ], - [ - [ - [116.671183, -20.518177], - [116.661653, -20.526998], - [116.656143, -20.517418], - [116.671183, -20.518177] - ] - ], - [ - [ - [116.662114, -20.675499], - [116.656864, -20.680709], - [116.650934, -20.672049], - [116.662114, -20.675499] - ] - ], - [ - [ - [116.650012, -20.548878], - [116.645513, -20.558268], - [116.635382, -20.555068], - [116.650012, -20.548878] - ] - ], - [ - [ - [116.635012, -20.458967], - [116.627712, -20.460247], - [116.626842, -20.453697], - [116.635012, -20.458967] - ] - ], - [ - [ - [116.619152, -20.473828], - [116.588972, -20.500838], - [116.566062, -20.485748], - [116.609222, -20.453887], - [116.606662, -20.467338], - [116.619152, -20.473828] - ] - ], - [ - [ - [116.586122, -20.575539], - [116.585083, -20.583829], - [116.574182, -20.58625], - [116.575902, -20.594709], - [116.562552, -20.58653], - [116.555012, -20.59006], - [116.549921, -20.60476], - [116.560741, -20.602939], - [116.560861, -20.609339], - [116.552761, -20.62089], - [116.530061, -20.61545], - [116.501421, -20.62154], - [116.463222, -20.609611], - [116.485902, -20.58514], - [116.512871, -20.58266], - [116.512692, -20.59463], - [116.523752, -20.60114], - [116.533102, -20.59816], - [116.542451, -20.57295], - [116.552262, -20.568389], - [116.555462, -20.58543], - [116.566212, -20.57601], - [116.573562, -20.58309], - [116.586122, -20.575539] - ] - ], - [ - [ - [116.505132, -35.027943], - [116.49889, -35.036317], - [116.49081, -35.03327], - [116.505132, -35.027943] - ] - ], - [ - [ - [116.451572, -20.664521], - [116.434102, -20.655321], - [116.448522, -20.651661], - [116.451572, -20.664521] - ] - ], - [ - [ - [116.248732, -20.813223], - [116.247312, -20.818873], - [116.242102, -20.803763], - [116.248732, -20.813223] - ] - ], - [ - [ - [116.179151, -20.945226], - [116.175971, -20.956346], - [116.174191, -20.934856], - [116.179151, -20.945226] - ] - ], - [ - [ - [116.157821, -20.937576], - [116.152371, -20.948326], - [116.147511, -20.934226], - [116.157821, -20.937576] - ] - ], - [ - [ - [115.902311, -20.955348], - [115.88163, -20.949709], - [115.88511, -20.938648], - [115.900861, -20.937628], - [115.902311, -20.955348] - ] - ], - [ - [ - [115.700388, -32.22636], - [115.686935, -32.232409], - [115.700088, -32.244553], - [115.680808, -32.244161], - [115.660534, -32.156225], - [115.674637, -32.165189], - [115.683319, -32.205863], - [115.700388, -32.22636] - ] - ], - [ - [ - [115.694669, -32.305286], - [115.689953, -32.309051], - [115.689832, -32.301809], - [115.694669, -32.305286] - ] - ], - [ - [ - [115.585513, -20.403446], - [115.579164, -20.409306], - [115.582974, -20.420365], - [115.577234, -20.419685], - [115.570543, -20.401956], - [115.546023, -20.381486], - [115.559922, -20.378006], - [115.566963, -20.393486], - [115.585513, -20.403446] - ] - ], - [ - [ - [115.583248, -20.661117], - [115.565858, -20.640997], - [115.581458, -20.651297], - [115.583248, -20.661117] - ] - ], - [ - [ - [115.558403, -32.003453], - [115.551173, -32.012473], - [115.531653, -32.014954], - [115.527643, -32.027634], - [115.507593, -32.012964], - [115.449783, -32.026185], - [115.456893, -32.015734], - [115.477243, -32.013764], - [115.511343, -31.987614], - [115.539653, -31.988183], - [115.545093, -32.000753], - [115.558403, -32.003453] - ] - ], - [ - [ - [115.551205, -20.442445], - [115.548445, -20.446994], - [115.543165, -20.440365], - [115.547655, -20.435316], - [115.551205, -20.442445] - ] - ], - [ - [ - [115.549115, -20.432686], - [115.543065, -20.436895], - [115.543944, -20.415346], - [115.549115, -20.432686] - ] - ], - [ - [ - [115.547284, -21.387085], - [115.542674, -21.394745], - [115.542614, -21.381985], - [115.547284, -21.387085] - ] - ], - [ - [ - [115.531971, -20.478538], - [115.534555, -20.466331], - [115.539175, -20.470976], - [115.533972, -20.477622], - [115.541565, -20.474146], - [115.532206, -20.486096], - [115.536506, -20.491406], - [115.530276, -20.490716], - [115.535906, -20.492756], - [115.532176, -20.504946], - [115.525006, -20.493306], - [115.521147, -20.506046], - [115.517185, -20.441486], - [115.530605, -20.440945], - [115.524495, -20.437775], - [115.533224, -20.413636], - [115.531565, -20.430646], - [115.537824, -20.422106], - [115.539475, -20.433506], - [115.533945, -20.445575], - [115.543775, -20.443445], - [115.545795, -20.454625], - [115.540635, -20.467636], - [115.534689, -20.465696], - [115.538135, -20.449415], - [115.525805, -20.447145], - [115.533224, -20.451215], - [115.531655, -20.457535], - [115.524355, -20.454245], - [115.529116, -20.470516], - [115.521426, -20.483366], - [115.531971, -20.478538] - ] - ], - [ - [ - [115.526096, -20.410539], - [115.540844, -20.402356], - [115.526464, -20.411026], - [115.526096, -20.410539] - ] - ], - [ - [ - [115.539503, -20.371706], - [115.512763, -20.364835], - [115.517503, -20.358425], - [115.532533, -20.361036], - [115.539503, -20.371706] - ] - ], - [ - [ - [115.529804, -20.423036], - [115.523554, -20.427775], - [115.526214, -20.415766], - [115.529804, -20.423036] - ] - ], - [ - [ - [115.525987, -20.399742], - [115.517734, -20.401076], - [115.520154, -20.389006], - [115.525987, -20.399742] - ] - ], - [ - [ - [115.476919, -20.733548], - [115.47093, -20.741349], - [115.47591, -20.766069], - [115.46919, -20.766989], - [115.47065, -20.777599], - [115.45353, -20.80562], - [115.44758, -20.8022], - [115.44745, -20.82889], - [115.42452, -20.83807], - [115.420731, -20.8637], - [115.374991, -20.894811], - [115.365461, -20.871111], - [115.332781, -20.867751], - [115.320411, -20.875101], - [115.333751, -20.876111], - [115.321031, -20.891581], - [115.306821, -20.860441], - [115.32154, -20.808271], - [115.433089, -20.666898], - [115.468679, -20.680238], - [115.458339, -20.692378], - [115.476919, -20.733548] - ] - ], - [ - [ - [115.465286, -21.493407], - [115.437428, -21.528148], - [115.420108, -21.520118], - [115.435077, -21.503197], - [115.465286, -21.493407] - ] - ], - [ - [ - [115.361458, -21.485118], - [115.351067, -21.483258], - [115.356037, -21.468328], - [115.361458, -21.485118] - ] - ], - [ - [ - [115.337102, -20.966192], - [115.324002, -20.973882], - [115.316621, -20.948202], - [115.337102, -20.966192] - ] - ], - [ - [ - [115.335951, -20.905681], - [115.316531, -20.938272], - [115.324671, -20.919921], - [115.320791, -20.895991], - [115.335951, -20.905681] - ] - ], - [ - [ - [115.248307, -21.568981], - [115.212386, -21.599761], - [115.229236, -21.569531], - [115.248307, -21.568981] - ] - ], - [ - [ - [115.024964, -21.45828], - [115.016784, -21.4652], - [114.971534, -21.45938], - [114.995974, -21.45083], - [115.024964, -21.45828] - ] - ], - [ - [ - [114.766554, -21.522192], - [114.766454, -21.528852], - [114.757644, -21.528192], - [114.766554, -21.522192] - ] - ], - [ - [ - [114.697414, -21.625864], - [114.682334, -21.630744], - [114.687744, -21.620234], - [114.663904, -21.592164], - [114.685544, -21.604994], - [114.697414, -21.625864] - ] - ], - [ - [ - [114.582488, -21.9909], - [114.570718, -22.000991], - [114.566138, -21.986731], - [114.579208, -21.9839], - [114.582488, -21.9909] - ] - ], - [ - [ - [114.539751, -22.052841], - [114.533689, -22.061613], - [114.500758, -22.012392], - [114.510348, -21.993762], - [114.540818, -22.007431], - [114.532308, -22.022862], - [114.542278, -22.028422], - [114.545549, -22.044452], - [114.539967, -22.052529], - [114.545549, -22.048512], - [114.548459, -22.057203], - [114.540339, -22.060033], - [114.539751, -22.052841] - ] - ], - [ - [ - [114.491409, -22.118596], - [114.4902, -22.135416], - [114.484259, -22.135296], - [114.491409, -22.118596] - ] - ], - [ - [ - [114.48995, -22.147037], - [114.4891, -22.153137], - [114.48268, -22.150307], - [114.48995, -22.147037] - ] - ], - [ - [ - [114.392474, -21.628267], - [114.369784, -21.651857], - [114.358194, -21.651177], - [114.375333, -21.628037], - [114.392474, -21.628267] - ] - ], - [ - [ - [114.351554, -21.665957], - [114.334524, -21.675208], - [114.306014, -21.711648], - [114.317614, -21.685588], - [114.345634, -21.660427], - [114.351554, -21.665957] - ] - ], - [ - [ - [114.188829, -22.422416], - [114.181899, -22.423746], - [114.181579, -22.410655], - [114.188829, -22.422416] - ] - ], - [ - [ - [114.172859, -22.447197], - [114.166589, -22.473808], - [114.1476, -22.489439], - [114.172859, -22.447197] - ] - ], - [ - [ - [114.005403, -28.90065], - [113.967223, -28.938511], - [113.957454, -28.967091], - [113.962024, -28.985081], - [113.954074, -28.977151], - [113.966653, -28.932831], - [114.005403, -28.90065] - ] - ], - [ - [ - [113.921806, -25.883864], - [113.920576, -25.896384], - [113.907856, -25.898194], - [113.858346, -25.868224], - [113.873556, -25.871034], - [113.853716, -25.846234], - [113.855826, -25.810704], - [113.880736, -25.800773], - [113.909406, -25.817443], - [113.921806, -25.883864] - ] - ], - [ - [ - [113.878802, -26.029192], - [113.837327, -26.002146], - [113.857318, -26.006946], - [113.852708, -26.009096], - [113.878802, -26.029192] - ] - ], - [ - [ - [113.880375, -26.030403], - [113.882768, -26.032246], - [113.879468, -26.043006], - [113.880375, -26.030403] - ] - ], - [ - [ - [113.87216, -26.064486], - [113.871888, -26.064306], - [113.877828, -26.048446], - [113.87216, -26.064486] - ] - ], - [ - [ - [113.868412, -26.38413], - [113.858452, -26.356419], - [113.865251, -26.348729], - [113.868412, -26.38413] - ] - ], - [ - [ - [113.787881, -28.71395], - [113.784091, -28.72291], - [113.779911, -28.70928], - [113.787881, -28.71395] - ] - ], - [ - [ - [113.775116, -26.543621], - [113.769866, -26.549051], - [113.759405, -26.535202], - [113.772445, -26.531451], - [113.775116, -26.543621] - ] - ], - [ - [ - [113.74466, -28.426357], - [113.73015, -28.443847], - [113.71939, -28.445377], - [113.71808, -28.430017], - [113.74466, -28.426357] - ] - ], - [ - [ - [113.720956, -26.06162], - [113.705277, -26.094241], - [113.716946, -26.057681], - [113.720956, -26.06162] - ] - ], - [ - [ - [113.70848, -28.462717], - [113.69629, -28.469778], - [113.6961, -28.483998], - [113.68579, -28.485128], - [113.68207, -28.454007], - [113.70062, -28.440297], - [113.70848, -28.462717] - ] - ], - [ - [ - [113.641118, -24.886206], - [113.638364, -24.901785], - [113.634714, -24.886565], - [113.619694, -24.872405], - [113.628374, -24.877555], - [113.628463, -24.870905], - [113.643794, -24.871075], - [113.641268, -24.88536], - [113.653384, -24.886265], - [113.644383, -24.891154], - [113.641118, -24.886206] - ] - ], - [ - [ - [113.603089, -28.297866], - [113.598259, -28.307996], - [113.588319, -28.300346], - [113.594939, -28.289316], - [113.603089, -28.297866] - ] - ], - [ - [ - [113.340322, -26.322034], - [113.331982, -26.316854], - [113.336912, -26.309703], - [113.340322, -26.322034] - ] - ], - [ - [ - [113.2369, -26.104322], - [113.22765, -26.105323], - [113.23662, -26.118873], - [113.22311, -26.125513], - [113.22908, -26.143573], - [113.21628, -26.162503], - [113.20858, -26.134853], - [113.18085, -26.122613], - [113.157499, -26.055893], - [113.135968, -26.022343], - [113.048587, -25.931073], - [113.022966, -25.860412], - [112.967386, -25.783252], - [112.976935, -25.773151], - [112.979595, -25.749471], - [112.942504, -25.65795], - [112.929794, -25.6432], - [112.921124, -25.58819], - [112.928673, -25.526509], - [112.970672, -25.480388], - [112.986462, -25.497298], - [113.022632, -25.498978], - [113.005593, -25.535998], - [113.009403, -25.561188], - [113.038883, -25.618339], - [113.054074, -25.69549], - [113.071105, -25.72041], - [113.063705, -25.72827], - [113.076785, -25.76862], - [113.097226, -25.78915], - [113.114756, -25.838651], - [113.109726, -25.867971], - [113.121127, -25.880431], - [113.156007, -25.887821], - [113.126497, -25.922432], - [113.136678, -25.977432], - [113.151278, -25.976932], - [113.157568, -25.968952], - [113.150727, -25.941282], - [113.168057, -25.943272], - [113.166998, -25.979822], - [113.203978, -26.003292], - [113.202548, -26.027322], - [113.210899, -26.038172], - [113.219779, -26.036722], - [113.219739, -26.058382], - [113.2369, -26.104322] - ] - ], - [ - [ - [113.166282, -24.78089], - [113.161353, -24.821071], - [113.137763, -24.871071], - [113.140994, -24.921172], - [113.149784, -24.935052], - [113.133574, -24.952212], - [113.118985, -24.986862], - [113.130594, -24.916552], - [113.124404, -24.887552], - [113.127983, -24.844101], - [113.157122, -24.7546], - [113.166282, -24.78089] - ] - ], - [ - [ - [113.128236, -25.060023], - [113.110716, -25.106763], - [113.104217, -25.174774], - [113.091118, -25.187904], - [113.088818, -25.237545], - [113.076049, -25.273245], - [113.069298, -25.231425], - [113.087368, -25.192054], - [113.094766, -25.121114], - [113.087656, -25.069843], - [113.101645, -25.032683], - [113.116485, -25.016173], - [113.118365, -24.992162], - [113.124565, -25.012383], - [113.117265, -25.031073], - [113.128236, -25.060023] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 5, - "properties": { - "name": "Tasmania", - "ISOCODE": "AU-TAS" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [148.481887, -40.43493], - [148.472864, -40.442869], - [148.437309, -40.439959], - [148.430872, -40.465255], - [148.413814, -40.462027], - [148.40089, -40.473003], - [148.397954, -40.489456], - [148.377985, -40.47656], - [148.350555, -40.492835], - [148.336511, -40.482745], - [148.336025, -40.464909], - [148.309927, -40.426733], - [148.293766, -40.434247], - [148.273419, -40.428985], - [148.274015, -40.436305], - [148.226774, -40.466084], - [148.195969, -40.435512], - [148.164299, -40.450325], - [148.14249, -40.448104], - [148.151251, -40.453808], - [148.140784, -40.460478], - [148.142035, -40.450014], - [148.127716, -40.43969], - [148.085808, -40.457369], - [148.046262, -40.448934], - [148.039924, -40.441365], - [148.045407, -40.434479], - [148.024284, -40.429927], - [148.034193, -40.424505], - [148.017714, -40.414137], - [147.98867, -40.421157], - [147.989826, -40.406039], - [147.983558, -40.402756], - [147.9921, -40.394906], - [147.987266, -40.387096], - [148.001542, -40.375999], - [148.047993, -40.355496], - [148.060493, -40.358765], - [148.081524, -40.339214], - [148.08971, -40.345745], - [148.143798, -40.336171], - [148.145049, -40.342982], - [148.166134, -40.34791], - [148.183895, -40.344876], - [148.191856, -40.356219], - [148.207251, -40.342389], - [148.210703, -40.317825], - [148.225822, -40.32188], - [148.229441, -40.330725], - [148.243538, -40.325385], - [148.266865, -40.340703], - [148.282245, -40.319638], - [148.300134, -40.321763], - [148.31724, -40.311564], - [148.331004, -40.299877], - [148.32979, -40.290762], - [148.363014, -40.322235], - [148.370948, -40.341445], - [148.398253, -40.357759], - [148.410536, -40.371926], - [148.407079, -40.377997], - [148.424169, -40.371445], - [148.45149, -40.376693], - [148.44851, -40.405524], - [148.458517, -40.409354], - [148.464819, -40.42709], - [148.481887, -40.43493] - ] - ], - [ - [ - [148.363358, -39.947817], - [148.361477, -39.953567], - [148.351889, -39.950722], - [148.363358, -39.947817] - ] - ], - [ - [ - [144.754462, -41.061823], - [144.745688, -41.055616], - [144.695616, -41.047835], - [144.683698, -41.037541], - [144.680014, -41.049585], - [144.661089, -41.053436], - [144.638921, -41.045355], - [144.60734, -41.008782], - [144.625825, -41.004986], - [144.63284, -40.993842], - [144.630894, -40.952478], - [144.612249, -40.944652], - [144.611738, -40.935732], - [144.655803, -40.913869], - [144.649198, -40.900148], - [144.683765, -40.907252], - [144.704305, -40.87633], - [144.706464, -40.867127], - [144.698764, -40.862325], - [144.711558, -40.858335], - [144.713028, -40.835548], - [144.697187, -40.809128], - [144.706188, -40.7942], - [144.69744, -40.783046], - [144.707424, -40.776209], - [144.7102, -40.761442], - [144.703203, -40.750765], - [144.691266, -40.755082], - [144.678363, -40.716896], - [144.697721, -40.689591], - [144.68633, -40.682024], - [144.686043, -40.672218], - [144.725587, -40.64169], - [144.748798, -40.689576], - [144.738129, -40.682246], - [144.736348, -40.690121], - [144.771754, -40.705922], - [144.76588, -40.743571], - [144.779798, -40.729181], - [144.778436, -40.713336], - [144.785517, -40.708478], - [144.804672, -40.713687], - [144.810597, -40.72731], - [144.836544, -40.718704], - [144.840595, -40.743286], - [144.848902, -40.738766], - [144.907807, -40.750791], - [144.924173, -40.763765], - [144.92797, -40.758715], - [144.979247, -40.743338], - [145.001751, -40.762191], - [145.000608, -40.77509], - [145.010179, -40.766719], - [145.016244, -40.76657], - [145.007589, -40.778464], - [145.024186, -40.770578], - [145.015635, -40.779288], - [145.023561, -40.778019], - [145.01876, -40.789466], - [145.037635, -40.787331], - [145.038842, -40.780598], - [145.052654, -40.786872], - [145.070136, -40.809455], - [145.065285, -40.819235], - [145.077273, -40.808352], - [145.090359, -40.813041], - [145.0857, -40.824405], - [145.100233, -40.827444], - [145.096327, -40.815085], - [145.108542, -40.814422], - [145.11152, -40.831661], - [145.118606, -40.828989], - [145.12138, -40.837964], - [145.131606, -40.819294], - [145.164147, -40.825593], - [145.167158, -40.818999], - [145.13384, -40.802853], - [145.112783, -40.801398], - [145.110431, -40.794288], - [145.187798, -40.804082], - [145.25692, -40.78985], - [145.216107, -40.810913], - [145.241386, -40.8137], - [145.258989, -40.80576], - [145.269441, -40.758245], - [145.268471, -40.746962], - [145.250876, -40.729975], - [145.252619, -40.715537], - [145.26034, -40.712323], - [145.275913, -40.735562], - [145.295972, -40.73866], - [145.294779, -40.754827], - [145.308672, -40.764172], - [145.288926, -40.766309], - [145.271209, -40.801069], - [145.266141, -40.79791], - [145.269072, -40.811055], - [145.284774, -40.820553], - [145.280752, -40.829918], - [145.293602, -40.826904], - [145.28008, -40.793723], - [145.312878, -40.835213], - [145.309232, -40.843426], - [145.311445, -40.842656], - [145.321458, -40.849701], - [145.315594, -40.837688], - [145.343865, -40.851039], - [145.391893, -40.849714], - [145.395375, -40.863249], - [145.403784, -40.854994], - [145.446049, -40.87123], - [145.446687, -40.886104], - [145.43537, -40.894268], - [145.448017, -40.887259], - [145.446352, -40.877989], - [145.452602, -40.879127], - [145.44725, -40.874037], - [145.481613, -40.868816], - [145.502628, -40.851704], - [145.511598, -40.853572], - [145.522323, -40.887648], - [145.537742, -40.891482], - [145.546148, -40.909124], - [145.560472, -40.916817], - [145.583882, -40.913801], - [145.595208, -40.923991], - [145.619738, -40.9253], - [145.6218, -40.932104], - [145.653703, -40.940308], - [145.72934, -40.944952], - [145.733111, -40.95628], - [145.724572, -40.968982], - [145.741271, -40.985375], - [145.696461, -40.974734], - [145.768533, -40.996881], - [145.800869, -41.026184], - [145.838866, -41.038859], - [145.829824, -41.050013], - [145.836074, -41.056969], - [145.830052, -41.05006], - [145.841021, -41.038702], - [145.877089, -41.036858], - [145.878743, -41.04289], - [145.921368, -41.051361], - [145.910543, -41.049456], - [145.909331, -41.057579], - [145.924255, -41.06655], - [145.923258, -41.078016], - [145.9249, -41.066182], - [145.958099, -41.063036], - [145.984517, -41.074802], - [145.973762, -41.08775], - [145.985844, -41.074108], - [146.046556, -41.101926], - [146.064334, -41.102699], - [146.077354, -41.115568], - [146.119656, -41.118948], - [146.128806, -41.135313], - [146.167434, -41.146616], - [146.167658, -41.156277], - [146.154381, -41.154331], - [146.15236, -41.161853], - [146.168523, -41.15747], - [146.169309, -41.145346], - [146.185035, -41.153937], - [146.248447, -41.157119], - [146.2436, -41.177217], - [146.249708, -41.176144], - [146.247845, -41.181915], - [146.250711, -41.174882], - [146.250678, -41.196567], - [146.255419, -41.15182], - [146.28731, -41.160682], - [146.33269, -41.156626], - [146.316034, -41.182843], - [146.33651, -41.16028], - [146.35686, -41.158478], - [146.366804, -41.165248], - [146.36683, -41.192633], - [146.348483, -41.203811], - [146.35619, -41.203896], - [146.347735, -41.217352], - [146.364183, -41.208433], - [146.367967, -41.216687], - [146.359806, -41.222149], - [146.371122, -41.217406], - [146.368173, -41.227409], - [146.384725, -41.228853], - [146.388562, -41.238242], - [146.38635, -41.22836], - [146.388846, -41.235943], - [146.39555, -41.233506], - [146.391798, -41.227809], - [146.400488, -41.233444], - [146.400335, -41.228252], - [146.362334, -41.200687], - [146.369695, -41.193808], - [146.369814, -41.167473], - [146.395613, -41.172722], - [146.465277, -41.159568], - [146.519351, -41.136185], - [146.531894, -41.118429], - [146.545716, -41.129549], - [146.541777, -41.155056], - [146.561994, -41.167384], - [146.547982, -41.168461], - [146.540374, -41.179138], - [146.553638, -41.171486], - [146.568919, -41.177839], - [146.572984, -41.189146], - [146.562407, -41.197311], - [146.575723, -41.220171], - [146.561097, -41.238444], - [146.572988, -41.239339], - [146.565167, -41.25103], - [146.57793, -41.240574], - [146.568773, -41.233048], - [146.583418, -41.222754], - [146.585031, -41.20509], - [146.586218, -41.216474], - [146.596177, -41.219731], - [146.593914, -41.251432], - [146.606795, -41.259365], - [146.595039, -41.250654], - [146.599562, -41.233032], - [146.608866, -41.233748], - [146.599365, -41.225783], - [146.600374, -41.21564], - [146.609228, -41.21204], - [146.587867, -41.214271], - [146.59548, -41.209322], - [146.578055, -41.197681], - [146.583255, -41.190846], - [146.578354, -41.184684], - [146.584768, -41.167896], - [146.607877, -41.168591], - [146.595022, -41.164375], - [146.609586, -41.15845], - [146.601657, -41.151886], - [146.566707, -41.163766], - [146.564451, -41.146471], - [146.594907, -41.144835], - [146.633371, -41.125721], - [146.648005, -41.110049], - [146.642073, -41.097728], - [146.647095, -41.093819], - [146.679081, -41.100766], - [146.713516, -41.075036], - [146.707594, -41.063722], - [146.744522, -41.084775], - [146.768439, -41.078863], - [146.798656, -41.10684], - [146.788144, -41.112045], - [146.813642, -41.112687], - [146.806548, -41.112835], - [146.810304, -41.130746], - [146.820089, -41.137656], - [146.800853, -41.134292], - [146.778275, -41.151478], - [146.763244, -41.149663], - [146.770639, -41.165274], - [146.790177, -41.146078], - [146.806961, -41.140575], - [146.817942, -41.145442], - [146.825045, -41.152269], - [146.821114, -41.170147], - [146.837927, -41.17652], - [146.829891, -41.186615], - [146.839009, -41.200033], - [146.844989, -41.186343], - [146.857579, -41.19303], - [146.834072, -41.163131], - [146.860116, -41.172137], - [146.877814, -41.149989], - [146.92315, -41.169772], - [146.928784, -41.178903], - [146.908609, -41.188807], - [146.916475, -41.190252], - [146.915606, -41.197787], - [146.907239, -41.206215], - [146.897505, -41.202552], - [146.933817, -41.231375], - [146.945779, -41.260201], - [146.97473, -41.251689], - [146.967584, -41.263312], - [146.978294, -41.273239], - [146.977252, -41.288199], - [146.962052, -41.294391], - [146.970107, -41.297668], - [146.97063, -41.30922], - [146.987032, -41.321197], - [147.004923, -41.321225], - [147.033772, -41.3558], - [147.036248, -41.347026], - [147.058436, -41.335689], - [147.076859, -41.340994], - [147.068964, -41.354366], - [147.073927, -41.383968], - [147.082486, -41.395963], - [147.111975, -41.401055], - [147.11575, -41.413719], - [147.123053, -41.409566], - [147.11222, -41.421941], - [147.127813, -41.437589], - [147.121852, -41.443637], - [147.143215, -41.429298], - [147.145933, -41.417212], - [147.156018, -41.417372], - [147.154668, -41.416017], - [147.144418, -41.417371], - [147.1421, -41.429361], - [147.12702, -41.432141], - [147.118043, -41.420156], - [147.127757, -41.410785], - [147.079002, -41.365619], - [147.07528, -41.354539], - [147.088938, -41.353673], - [147.075168, -41.354129], - [147.082595, -41.34465], - [147.073644, -41.330184], - [147.046204, -41.336631], - [147.040017, -41.318655], - [146.978166, -41.30878], - [146.978762, -41.29875], - [147.013751, -41.28358], - [147.015391, -41.276387], - [146.976761, -41.243418], - [146.976587, -41.233247], - [146.969149, -41.239463], - [146.945667, -41.228867], - [146.944659, -41.20656], - [146.921478, -41.220309], - [146.911996, -41.211971], - [146.932453, -41.199955], - [146.92211, -41.194557], - [146.937295, -41.181782], - [146.96542, -41.19006], - [146.900329, -41.136987], - [146.87729, -41.130625], - [146.850922, -41.139972], - [146.827795, -41.136306], - [146.833886, -41.125238], - [146.82732, -41.131375], - [146.817572, -41.121689], - [146.832008, -41.10302], - [146.816849, -41.109696], - [146.803965, -41.069733], - [146.786601, -41.054124], - [146.81235, -41.061188], - [146.833608, -41.039533], - [146.874802, -41.018839], - [146.893736, -41.029678], - [146.959263, -41.027492], - [146.947676, -41.025577], - [146.996952, -40.984845], - [147.020898, -40.980265], - [147.031969, -40.990365], - [147.058662, -40.988018], - [147.072775, -40.999683], - [147.116036, -40.994577], - [147.158998, -41.01369], - [147.134424, -41.034902], - [147.154308, -41.022045], - [147.157889, -41.0314], - [147.161713, -41.007969], - [147.176454, -41.009312], - [147.194406, -40.999118], - [147.199892, -40.999626], - [147.22475, -40.989143], - [147.249447, -40.953479], - [147.279843, -40.941692], - [147.284804, -40.95193], - [147.302561, -40.957694], - [147.345618, -40.939475], - [147.360544, -40.975327], - [147.35543, -40.98228], - [147.367462, -40.976086], - [147.384266, -40.980446], - [147.401375, -41.011332], - [147.434541, -41.011899], - [147.397054, -41.002901], - [147.441482, -41.002915], - [147.490728, -40.979349], - [147.525579, -40.95069], - [147.568087, -40.898606], - [147.582835, -40.893163], - [147.575525, -40.890794], - [147.590706, -40.871601], - [147.583618, -40.863407], - [147.598926, -40.856219], - [147.594815, -40.849136], - [147.62682, -40.84502], - [147.669685, -40.821027], - [147.70646, -40.860312], - [147.757456, -40.857606], - [147.751958, -40.875958], - [147.756472, -40.865117], - [147.780002, -40.879821], - [147.822023, -40.886929], - [147.882618, -40.868134], - [147.873879, -40.882913], - [147.904155, -40.877669], - [147.912854, -40.869078], - [147.885044, -40.877794], - [147.887073, -40.863556], - [147.9329, -40.815249], - [147.947832, -40.791051], - [147.943548, -40.775918], - [147.952995, -40.77635], - [147.958845, -40.76477], - [147.958797, -40.754978], - [147.942752, -40.752717], - [147.93876, -40.739958], - [147.958594, -40.746525], - [147.974703, -40.737601], - [148.006658, -40.743739], - [148.019026, -40.753568], - [148.032537, -40.750995], - [148.038015, -40.761407], - [148.032761, -40.764985], - [148.043411, -40.774421], - [148.048767, -40.774525], - [148.037523, -40.762116], - [148.057849, -40.771625], - [148.079273, -40.769059], - [148.140873, -40.830521], - [148.175264, -40.82965], - [148.148166, -40.834712], - [148.121389, -40.8258], - [148.115275, -40.813961], - [148.117239, -40.820586], - [148.108118, -40.820586], - [148.111816, -40.828161], - [148.12618, -40.836042], - [148.130598, -40.828903], - [148.158045, -40.840496], - [148.173803, -40.838722], - [148.17837, -40.820913], - [148.197595, -40.839431], - [148.222758, -40.84604], - [148.219803, -40.862333], - [148.226812, -40.876383], - [148.261912, -40.892453], - [148.257882, -40.904223], - [148.267382, -40.900505], - [148.274334, -40.920672], - [148.301975, -40.941664], - [148.302958, -40.957324], - [148.298476, -40.954737], - [148.323833, -40.987847], - [148.349459, -40.992895], - [148.330583, -41.000004], - [148.301579, -41.029206], - [148.296827, -41.061945], - [148.286325, -41.048437], - [148.293865, -41.028949], - [148.249497, -41.051097], - [148.28219, -41.052229], - [148.298152, -41.063829], - [148.269515, -41.126026], - [148.268043, -41.151794], - [148.275981, -41.15141], - [148.2849, -41.168601], - [148.25287, -41.190939], - [148.271941, -41.180612], - [148.275504, -41.206764], - [148.285286, -41.209251], - [148.279291, -41.230436], - [148.2935, -41.235988], - [148.303167, -41.250461], - [148.312111, -41.246739], - [148.317434, -41.254969], - [148.329319, -41.248609], - [148.338352, -41.259955], - [148.33049, -41.275557], - [148.309885, -41.288513], - [148.307776, -41.302225], - [148.290613, -41.304037], - [148.295442, -41.282706], - [148.281601, -41.276556], - [148.271225, -41.307471], - [148.276134, -41.312281], - [148.268627, -41.314087], - [148.276992, -41.315201], - [148.270611, -41.320652], - [148.263206, -41.315376], - [148.268695, -41.321956], - [148.258976, -41.325101], - [148.255553, -41.321714], - [148.247498, -41.327717], - [148.235763, -41.322759], - [148.27158, -41.339573], - [148.309474, -41.316973], - [148.332008, -41.276489], - [148.339386, -41.282044], - [148.356003, -41.273877], - [148.359084, -41.279556], - [148.327304, -41.306454], - [148.30134, -41.366183], - [148.29577, -41.370327], - [148.288801, -41.363257], - [148.29374, -41.369317], - [148.279124, -41.371733], - [148.279404, -41.378774], - [148.289102, -41.380463], - [148.295704, -41.371693], - [148.26723, -41.461698], - [148.266176, -41.451924], - [148.262956, -41.460234], - [148.260123, -41.460119], - [148.266477, -41.462171], - [148.271, -41.502425], - [148.263539, -41.476971], - [148.262266, -41.4893], - [148.253898, -41.477769], - [148.249273, -41.486025], - [148.262503, -41.491472], - [148.26713, -41.506367], - [148.275621, -41.503499], - [148.288018, -41.558195], - [148.299263, -41.558037], - [148.316653, -41.575378], - [148.320296, -41.621392], - [148.293183, -41.658961], - [148.289053, -41.684514], - [148.29523, -41.693173], - [148.284073, -41.719999], - [148.30477, -41.748176], - [148.284295, -41.757798], - [148.264411, -41.807216], - [148.272561, -41.848887], - [148.287446, -41.865809], - [148.310938, -41.873282], - [148.304019, -41.8913], - [148.319268, -41.903099], - [148.32359, -41.917201], - [148.302524, -41.9369], - [148.3098, -41.961411], - [148.297936, -41.965853], - [148.289377, -41.982665], - [148.284634, -42.038985], - [148.297974, -42.05708], - [148.30961, -42.057028], - [148.325642, -42.09622], - [148.333105, -42.10552], - [148.340522, -42.102683], - [148.345388, -42.118468], - [148.334397, -42.127459], - [148.33809, -42.133001], - [148.319607, -42.132453], - [148.324203, -42.149314], - [148.297735, -42.166374], - [148.306679, -42.175619], - [148.315592, -42.169199], - [148.345442, -42.183595], - [148.357126, -42.180358], - [148.342897, -42.211152], - [148.346237, -42.223782], - [148.327871, -42.229921], - [148.320421, -42.264362], - [148.308013, -42.266702], - [148.314562, -42.275988], - [148.293006, -42.28185], - [148.288021, -42.259614], - [148.26135, -42.254341], - [148.251453, -42.242275], - [148.251433, -42.230326], - [148.269671, -42.227026], - [148.291896, -42.191683], - [148.277914, -42.173142], - [148.259352, -42.165458], - [148.272561, -42.148554], - [148.297604, -42.140164], - [148.298424, -42.12564], - [148.283392, -42.128068], - [148.268426, -42.109987], - [148.247575, -42.116841], - [148.236793, -42.101073], - [148.241674, -42.091033], - [148.208443, -42.077391], - [148.213229, -42.071434], - [148.224647, -42.076886], - [148.221071, -42.068837], - [148.197645, -42.067186], - [148.18697, -42.077836], - [148.157191, -42.074206], - [148.159399, -42.060094], - [148.1746, -42.054347], - [148.172684, -42.043377], - [148.21431, -42.035654], - [148.242997, -42.002619], - [148.24331, -41.988302], - [148.214088, -41.985999], - [148.217545, -42.002982], - [148.197438, -42.020801], - [148.173422, -42.008975], - [148.170989, -41.997075], - [148.163207, -41.997963], - [148.144293, -42.017103], - [148.146047, -42.041537], - [148.133264, -42.043949], - [148.142924, -42.05158], - [148.150709, -42.044665], - [148.146761, -42.034651], - [148.154976, -42.035182], - [148.16285, -42.039652], - [148.157816, -42.049836], - [148.165017, -42.051771], - [148.152399, -42.062255], - [148.1295, -42.061124], - [148.114646, -42.073634], - [148.126791, -42.074003], - [148.093656, -42.081067], - [148.093054, -42.080769], - [148.095293, -42.082548], - [148.150762, -42.074493], - [148.167508, -42.084963], - [148.211365, -42.084914], - [148.235198, -42.097901], - [148.123932, -42.092425], - [148.046666, -42.118418], - [148.070034, -42.112076], - [148.085092, -42.125511], - [148.07129, -42.15419], - [148.083882, -42.167915], - [148.013583, -42.23935], - [148.013167, -42.249462], - [148.028151, -42.26061], - [148.014807, -42.268237], - [148.015615, -42.285468], - [148.000346, -42.309933], - [147.977559, -42.307399], - [147.970437, -42.332961], - [147.95366, -42.332503], - [147.958992, -42.334999], - [147.944744, -42.336101], - [147.949717, -42.337844], - [147.944064, -42.342377], - [147.938966, -42.332802], - [147.943687, -42.343173], - [147.93579, -42.336659], - [147.93113, -42.343481], - [147.943869, -42.349591], - [147.954982, -42.343902], - [147.962057, -42.35733], - [147.960252, -42.341271], - [147.985851, -42.337244], - [147.97578, -42.334204], - [147.977951, -42.32568], - [147.988072, -42.324824], - [147.996058, -42.311551], - [148.018485, -42.315007], - [148.015516, -42.32777], - [148.026889, -42.349507], - [148.007557, -42.364513], - [148.008659, -42.373624], - [147.987756, -42.389042], - [147.980497, -42.405386], - [147.998904, -42.43318], - [147.976956, -42.441039], - [148.010295, -42.441393], - [148.010253, -42.462346], - [148.000487, -42.467763], - [147.988523, -42.498345], - [147.994435, -42.489971], - [147.997042, -42.501569], - [148.010483, -42.510352], - [147.99585, -42.517787], - [147.994823, -42.526537], - [147.983241, -42.515998], - [147.968728, -42.520332], - [147.94897, -42.55323], - [147.932352, -42.550122], - [147.925191, -42.53816], - [147.930358, -42.530803], - [147.914208, -42.516288], - [147.923733, -42.496786], - [147.913896, -42.510941], - [147.905278, -42.506046], - [147.909414, -42.514562], - [147.897307, -42.524029], - [147.913282, -42.530651], - [147.91337, -42.548512], - [147.888446, -42.54526], - [147.875079, -42.554772], - [147.878981, -42.554155], - [147.881807, -42.566941], - [147.902503, -42.565956], - [147.91726, -42.590013], - [147.945502, -42.606319], - [147.931612, -42.631559], - [147.957712, -42.652588], - [147.92975, -42.644901], - [147.939925, -42.654511], - [147.957056, -42.653182], - [147.953484, -42.66107], - [147.962992, -42.669542], - [147.962163, -42.679592], - [147.938763, -42.700692], - [147.936205, -42.711749], - [147.947273, -42.709103], - [147.941925, -42.71371], - [147.946552, -42.72801], - [147.900001, -42.743854], - [147.879125, -42.769865], - [147.869535, -42.818752], - [147.884098, -42.84552], - [147.870476, -42.83687], - [147.864558, -42.814657], - [147.855542, -42.84913], - [147.844038, -42.845775], - [147.843156, -42.859893], - [147.835115, -42.86094], - [147.844716, -42.874234], - [147.832438, -42.865739], - [147.827178, -42.880452], - [147.791443, -42.89262], - [147.790526, -42.903081], - [147.772468, -42.89876], - [147.766796, -42.906849], - [147.742442, -42.895011], - [147.728321, -42.898855], - [147.721994, -42.886558], - [147.669116, -42.901907], - [147.668377, -42.891581], - [147.655799, -42.886089], - [147.647453, -42.892773], - [147.640092, -42.879568], - [147.656291, -42.881943], - [147.684198, -42.864377], - [147.70095, -42.871601], - [147.684131, -42.862707], - [147.653331, -42.87877], - [147.605973, -42.869225], - [147.607277, -42.855797], - [147.621625, -42.844509], - [147.59673, -42.813354], - [147.603343, -42.798117], - [147.594183, -42.781572], - [147.585385, -42.778262], - [147.595193, -42.784521], - [147.592203, -42.801039], - [147.56514, -42.794264], - [147.565486, -42.788376], - [147.559597, -42.797335], - [147.550349, -42.785344], - [147.537323, -42.783209], - [147.539103, -42.771505], - [147.529172, -42.783821], - [147.539722, -42.80117], - [147.53521, -42.805304], - [147.52769, -42.805102], - [147.52085, -42.785432], - [147.513046, -42.78289], - [147.487252, -42.803107], - [147.452924, -42.781526], - [147.468533, -42.771074], - [147.454175, -42.768118], - [147.459073, -42.776787], - [147.448442, -42.775934], - [147.445127, -42.783309], - [147.434631, -42.774071], - [147.437091, -42.78577], - [147.459999, -42.809509], - [147.485406, -42.80794], - [147.489816, -42.815033], - [147.477549, -42.812896], - [147.471699, -42.820715], - [147.481114, -42.826743], - [147.491197, -42.827953], - [147.513154, -42.811323], - [147.522242, -42.827978], - [147.578578, -42.825114], - [147.613374, -42.845948], - [147.564561, -42.837869], - [147.529161, -42.847302], - [147.503627, -42.86429], - [147.511077, -42.87607], - [147.494968, -42.911283], - [147.530507, -42.931312], - [147.538225, -42.959998], - [147.541801, -42.959318], - [147.554079, -42.985644], - [147.523747, -42.992724], - [147.5288, -43.006036], - [147.520732, -43.021104], - [147.441208, -43.036948], - [147.418833, -43.050494], - [147.408385, -43.046474], - [147.40419, -43.036572], - [147.415475, -43.020382], - [147.397036, -43.006683], - [147.40407, -42.984539], - [147.391983, -42.9757], - [147.408787, -42.962914], - [147.403757, -42.977578], - [147.417869, -42.984372], - [147.417537, -43.002823], - [147.430092, -43.027571], - [147.452226, -43.032634], - [147.468801, -43.026716], - [147.474064, -43.018685], - [147.468829, -42.999289], - [147.478482, -42.982108], - [147.465332, -42.970171], - [147.445379, -42.978391], - [147.44606, -42.964527], - [147.464751, -42.92345], - [147.476991, -42.91859], - [147.491424, -42.927146], - [147.485493, -42.912981], - [147.479007, -42.90631], - [147.435127, -42.908656], - [147.421401, -42.939748], - [147.40893, -42.938809], - [147.409231, -42.918964], - [147.417327, -42.908852], - [147.404688, -42.884267], - [147.366546, -42.882554], - [147.365664, -42.870159], - [147.352402, -42.875777], - [147.350539, -42.860591], - [147.358626, -42.84868], - [147.350217, -42.853124], - [147.337784, -42.845709], - [147.347047, -42.8352], - [147.333777, -42.841081], - [147.335053, -42.833706], - [147.317373, -42.824903], - [147.319935, -42.816675], - [147.281622, -42.801062], - [147.292742, -42.789744], - [147.284152, -42.777749], - [147.264677, -42.778498], - [147.260522, -42.765294], - [147.266683, -42.755655], - [147.256084, -42.748636], - [147.265584, -42.738953], - [147.262597, -42.730198], - [147.264674, -42.73899], - [147.252229, -42.751215], - [147.256732, -42.757012], - [147.198991, -42.725319], - [147.18397, -42.732291], - [147.179101, -42.739844], - [147.18598, -42.740918], - [147.149948, -42.751834], - [147.139875, -42.767072], - [147.114552, -42.773108], - [147.138788, -42.770094], - [147.154535, -42.752804], - [147.198323, -42.74044], - [147.232614, -42.751868], - [147.253504, -42.765787], - [147.252635, -42.786616], - [147.283207, -42.789994], - [147.258954, -42.791834], - [147.265856, -42.796527], - [147.253629, -42.806203], - [147.262415, -42.81166], - [147.255703, -42.814863], - [147.277379, -42.825828], - [147.298018, -42.818736], - [147.306722, -42.823546], - [147.295007, -42.82923], - [147.30189, -42.833834], - [147.305266, -42.826403], - [147.322112, -42.832089], - [147.313057, -42.849206], - [147.327849, -42.84461], - [147.319663, -42.855131], - [147.336789, -42.864589], - [147.341196, -42.877063], - [147.331528, -42.884938], - [147.339448, -42.886795], - [147.332239, -42.90022], - [147.360963, -42.914127], - [147.35585, -42.951108], - [147.344532, -42.954768], - [147.338563, -42.974427], - [147.328311, -42.977505], - [147.329554, -42.977814], - [147.32415, -43.006165], - [147.344282, -43.051679], - [147.314057, -43.059471], - [147.284934, -43.008305], - [147.270527, -43.024591], - [147.265438, -43.021382], - [147.269284, -43.024685], - [147.27992, -43.026748], - [147.255547, -43.073251], - [147.279037, -43.074919], - [147.301233, -43.087908], - [147.28529, -43.110991], - [147.257671, -43.106513], - [147.271491, -43.1148], - [147.269388, -43.121944], - [147.246385, -43.122312], - [147.26277, -43.130832], - [147.252761, -43.132332], - [147.256247, -43.138576], - [147.241628, -43.148676], - [147.247989, -43.151727], - [147.238584, -43.154448], - [147.248407, -43.166291], - [147.240921, -43.181955], - [147.255438, -43.188368], - [147.260974, -43.223517], - [147.240448, -43.256604], - [147.242512, -43.268099], - [147.219485, -43.281036], - [147.188996, -43.276249], - [147.167749, -43.283386], - [147.142145, -43.271216], - [147.142102, -43.253558], - [147.151165, -43.241125], - [147.143969, -43.249994], - [147.124126, -43.242804], - [147.097077, -43.250251], - [147.100029, -43.245309], - [147.088927, -43.243168], - [147.099297, -43.23792], - [147.091474, -43.219886], - [147.117825, -43.2106], - [147.101984, -43.20679], - [147.105621, -43.198464], - [147.094445, -43.188042], - [147.109018, -43.185291], - [147.093042, -43.181487], - [147.09641, -43.17169], - [147.08251, -43.16295], - [147.086478, -43.192828], - [147.071807, -43.202332], - [147.083322, -43.206701], - [147.063161, -43.217345], - [147.061925, -43.2251], - [147.027771, -43.209647], - [147.010348, -43.190295], - [146.984409, -43.189432], - [146.983458, -43.177597], - [146.994548, -43.173192], - [146.997206, -43.146956], - [147.018802, -43.11225], - [147.021804, -43.091959], - [147.04093, -43.069763], - [147.044775, -43.047391], - [147.029687, -43.058653], - [146.991347, -43.118735], - [146.993008, -43.128655], - [146.97245, -43.138584], - [146.98069, -43.158917], - [146.959536, -43.156129], - [146.949969, -43.16384], - [146.962154, -43.157924], - [146.974454, -43.169317], - [146.964153, -43.190302], - [146.971896, -43.204], - [146.99539, -43.206465], - [146.990318, -43.217152], - [147.0017, -43.214512], - [147.037075, -43.243826], - [147.064544, -43.249102], - [147.068004, -43.263638], - [147.097614, -43.280188], - [147.100133, -43.290217], - [147.080573, -43.292427], - [147.06533, -43.332813], - [147.045042, -43.312302], - [147.011916, -43.315833], - [147.002616, -43.322737], - [147.00416, -43.335497], - [146.982438, -43.330102], - [146.978811, -43.339465], - [146.985438, -43.333194], - [147.007713, -43.343484], - [147.019319, -43.333896], - [147.032711, -43.34795], - [147.059306, -43.353063], - [147.046012, -43.380001], - [147.016661, -43.403277], - [147.025445, -43.411434], - [147.012442, -43.42207], - [147.026432, -43.435817], - [147.017624, -43.443455], - [147.003066, -43.433992], - [146.986909, -43.440799], - [146.973022, -43.431905], - [146.950553, -43.44738], - [146.947603, -43.43434], - [146.923638, -43.415583], - [146.923631, -43.439837], - [146.920564, -43.438301], - [146.915635, -43.447067], - [146.941796, -43.43996], - [146.946158, -43.446016], - [146.937105, -43.447455], - [146.948668, -43.453098], - [146.959684, -43.447703], - [146.983224, -43.454706], - [146.996446, -43.461872], - [147.001794, -43.479652], - [146.980777, -43.487256], - [146.982585, -43.475028], - [146.972545, -43.468638], - [146.942028, -43.478121], - [146.928992, -43.49667], - [146.943785, -43.498142], - [146.943704, -43.512025], - [146.976749, -43.487591], - [146.977883, -43.494017], - [146.954158, -43.51181], - [146.952825, -43.532988], - [146.921402, -43.539295], - [146.9241, -43.530301], - [146.917257, -43.546296], - [146.903669, -43.538941], - [146.911372, -43.531859], - [146.903086, -43.516884], - [146.910848, -43.514149], - [146.900596, -43.51622], - [146.889195, -43.553185], - [146.87737, -43.558031], - [146.891543, -43.553458], - [146.903731, -43.562043], - [146.887025, -43.566028], - [146.89194, -43.580554], - [146.91679, -43.568788], - [146.923853, -43.580994], - [146.920965, -43.600042], - [146.873612, -43.623367], - [146.870924, -43.638637], - [146.844807, -43.633052], - [146.826624, -43.643092], - [146.83871, -43.630761], - [146.831278, -43.615117], - [146.785144, -43.60029], - [146.780704, -43.609456], - [146.762359, -43.615342], - [146.746118, -43.60999], - [146.723444, -43.631932], - [146.711246, -43.626075], - [146.705475, -43.633411], - [146.686091, -43.596701], - [146.670225, -43.594409], - [146.660118, -43.60772], - [146.652777, -43.596177], - [146.658246, -43.578529], - [146.640129, -43.587436], - [146.644963, -43.580366], - [146.62366, -43.562383], - [146.608514, -43.569083], - [146.610038, -43.559801], - [146.599361, -43.561932], - [146.607548, -43.550207], - [146.575188, -43.524626], - [146.578282, -43.485135], - [146.559389, -43.464884], - [146.548678, -43.475434], - [146.548896, -43.492071], - [146.556142, -43.496624], - [146.551411, -43.510393], - [146.596074, -43.543486], - [146.542175, -43.523268], - [146.531671, -43.531364], - [146.50874, -43.524066], - [146.486456, -43.543857], - [146.474034, -43.53458], - [146.469323, -43.542581], - [146.452673, -43.534433], - [146.405565, -43.539816], - [146.391538, -43.530271], - [146.37264, -43.535039], - [146.369404, -43.518967], - [146.368715, -43.530489], - [146.367572, -43.520236], - [146.344725, -43.512831], - [146.325709, -43.520608], - [146.317811, -43.536247], - [146.290137, -43.54466], - [146.276438, -43.528807], - [146.266651, -43.528637], - [146.272905, -43.49845], - [146.216007, -43.485565], - [146.209073, -43.490101], - [146.224483, -43.491138], - [146.209782, -43.506969], - [146.209618, -43.534836], - [146.193091, -43.539985], - [146.177565, -43.511374], - [146.161542, -43.516419], - [146.159132, -43.499961], - [146.148004, -43.501487], - [146.142256, -43.504229], - [146.147154, -43.52828], - [146.136493, -43.518296], - [146.129045, -43.525878], - [146.110436, -43.523627], - [146.109879, -43.557075], - [146.094856, -43.556623], - [146.09073, -43.542489], - [146.079451, -43.540973], - [146.069952, -43.556499], - [146.046171, -43.552375], - [146.031119, -43.570953], - [146.04282, -43.508548], - [146.027455, -43.488205], - [146.029154, -43.464307], - [146.005742, -43.463896], - [146.018031, -43.455094], - [146.000932, -43.437706], - [145.997379, -43.406945], - [145.971237, -43.403446], - [145.976372, -43.395226], - [145.964525, -43.382612], - [145.948061, -43.38129], - [145.934257, -43.390884], - [145.921467, -43.381296], - [145.930329, -43.379369], - [145.932098, -43.369962], - [145.94634, -43.371779], - [145.953241, -43.359387], - [145.970756, -43.369699], - [145.97579, -43.363094], - [145.968754, -43.35985], - [145.977466, -43.355573], - [145.993483, -43.373943], - [145.983727, -43.388246], - [145.993652, -43.394252], - [146.001901, -43.365475], - [145.993134, -43.365324], - [145.989245, -43.347892], - [145.975078, -43.349155], - [145.986817, -43.329322], - [146.00672, -43.339682], - [146.003097, -43.344958], - [146.068006, -43.353142], - [146.07783, -43.358501], - [146.071152, -43.366087], - [146.083506, -43.371526], - [146.091597, -43.36448], - [146.058308, -43.344498], - [146.089613, -43.350323], - [146.086187, -43.342035], - [146.09507, -43.351757], - [146.101272, -43.345942], - [146.130541, -43.355464], - [146.137172, -43.37308], - [146.126699, -43.373707], - [146.140057, -43.406634], - [146.14448, -43.408668], - [146.143864, -43.408139], - [146.134626, -43.376545], - [146.147363, -43.377846], - [146.156942, -43.392091], - [146.164367, -43.38198], - [146.176766, -43.382146], - [146.155376, -43.362813], - [146.210264, -43.363576], - [146.20907, -43.375634], - [146.223327, -43.389074], - [146.225431, -43.375946], - [146.212893, -43.364055], - [146.226678, -43.361102], - [146.222831, -43.332528], - [146.231605, -43.322462], - [146.217837, -43.326101], - [146.219224, -43.321101], - [146.208616, -43.330501], - [146.189056, -43.315211], - [146.176365, -43.326664], - [146.176098, -43.298348], - [146.168445, -43.291051], - [146.153352, -43.298753], - [146.15762, -43.311349], - [146.141136, -43.322429], - [146.136408, -43.345624], - [146.111866, -43.348394], - [146.091112, -43.339321], - [146.087437, -43.325456], - [146.084282, -43.340223], - [146.071827, -43.327454], - [146.069806, -43.30955], - [146.057121, -43.300805], - [146.065661, -43.297668], - [146.064467, -43.289388], - [146.064396, -43.297422], - [146.053259, -43.300716], - [146.061233, -43.307124], - [146.049175, -43.321093], - [146.058972, -43.333562], - [146.039043, -43.332707], - [146.028734, -43.342392], - [146.00377, -43.335344], - [145.997197, -43.330642], - [146.00601, -43.320746], - [145.983475, -43.322635], - [145.983105, -43.304793], - [145.968445, -43.302955], - [145.957873, -43.290461], - [145.963553, -43.285668], - [145.953416, -43.281066], - [145.97315, -43.272992], - [145.966548, -43.265709], - [145.968161, -43.24758], - [145.979953, -43.234805], - [145.968897, -43.228063], - [145.946408, -43.230004], - [145.93247, -43.21255], - [145.917305, -43.211356], - [145.913922, -43.217833], - [145.924841, -43.224941], - [145.928463, -43.24519], - [145.90749, -43.248351], - [145.897146, -43.264139], - [145.871797, -43.258673], - [145.87567, -43.273186], - [145.862489, -43.273027], - [145.880696, -43.289684], - [145.897572, -43.281734], - [145.901083, -43.26546], - [145.923948, -43.267433], - [145.920125, -43.291979], - [145.926633, -43.300487], - [145.899177, -43.3003], - [145.89518, -43.314535], - [145.878681, -43.3108], - [145.870537, -43.322614], - [145.850545, -43.306778], - [145.84123, -43.315266], - [145.843549, -43.304268], - [145.853364, -43.300159], - [145.850504, -43.292605], - [145.839212, -43.294696], - [145.815667, -43.278516], - [145.820562, -43.250098], - [145.806481, -43.248873], - [145.804119, -43.235503], - [145.811115, -43.23482], - [145.796684, -43.219055], - [145.807892, -43.209456], - [145.789868, -43.200831], - [145.795265, -43.192405], - [145.787729, -43.188264], - [145.768731, -43.185621], - [145.761563, -43.193252], - [145.757941, -43.164892], - [145.733547, -43.137475], - [145.721643, -43.136352], - [145.724969, -43.122477], - [145.736226, -43.116731], - [145.715424, -43.111763], - [145.716158, -43.106017], - [145.708473, -43.118483], - [145.694264, -43.118494], - [145.683356, -43.100387], - [145.673376, -43.106727], - [145.664951, -43.096247], - [145.676833, -43.091171], - [145.669752, -43.081184], - [145.674848, -43.070464], - [145.691198, -43.0675], - [145.68453, -43.068549], - [145.682228, -43.050468], - [145.660026, -43.043816], - [145.647633, -43.048506], - [145.637775, -43.032387], - [145.643957, -43.024771], - [145.609928, -43.009179], - [145.602935, -42.99717], - [145.607522, -42.99068], - [145.599921, -42.990497], - [145.590637, -42.972519], - [145.561365, -42.9711], - [145.494879, -42.991523], - [145.503499, -42.976446], - [145.493596, -42.973962], - [145.498664, -42.96318], - [145.492197, -42.955964], - [145.504398, -42.948712], - [145.492952, -42.946921], - [145.490462, -42.929234], - [145.481562, -42.931079], - [145.487621, -42.913388], - [145.476049, -42.914216], - [145.451969, -42.897817], - [145.436027, -42.873448], - [145.443736, -42.869094], - [145.436868, -42.854475], - [145.420851, -42.837089], - [145.425995, -42.82893], - [145.419727, -42.814809], - [145.426322, -42.814915], - [145.407195, -42.784572], - [145.414582, -42.780799], - [145.382637, -42.768704], - [145.38059, -42.748167], - [145.391332, -42.743028], - [145.388789, -42.735584], - [145.396699, -42.736405], - [145.394176, -42.721288], - [145.383267, -42.728225], - [145.374018, -42.694586], - [145.365816, -42.689161], - [145.36621, -42.656512], - [145.338303, -42.651025], - [145.333637, -42.657772], - [145.327771, -42.646095], - [145.33578, -42.632571], - [145.31181, -42.620658], - [145.290029, -42.622514], - [145.285383, -42.632372], - [145.262948, -42.621623], - [145.262981, -42.61275], - [145.28083, -42.614927], - [145.301714, -42.599051], - [145.295363, -42.595223], - [145.304261, -42.586043], - [145.299221, -42.577243], - [145.304412, -42.571212], - [145.277783, -42.563253], - [145.280694, -42.55291], - [145.267469, -42.528593], - [145.252826, -42.522088], - [145.261198, -42.503988], - [145.235847, -42.471242], - [145.254044, -42.448059], - [145.234628, -42.417479], - [145.24496, -42.406157], - [145.235868, -42.404423], - [145.237556, -42.390086], - [145.23552, -42.394714], - [145.224319, -42.386391], - [145.226423, -42.366887], - [145.215295, -42.365895], - [145.223181, -42.355295], - [145.196129, -42.327835], - [145.194008, -42.312137], - [145.213811, -42.298368], - [145.213726, -42.277729], - [145.20588, -42.254422], - [145.189167, -42.242615], - [145.19011, -42.208012], - [145.173943, -42.209927], - [145.165516, -42.196975], - [145.196371, -42.197058], - [145.199959, -42.207932], - [145.208754, -42.207399], - [145.207299, -42.200093], - [145.224859, -42.22842], - [145.221007, -42.242017], - [145.235782, -42.244082], - [145.237054, -42.263355], - [145.256062, -42.267325], - [145.253472, -42.288472], - [145.289586, -42.282895], - [145.292655, -42.295823], - [145.299572, -42.296653], - [145.317507, -42.285349], - [145.310036, -42.320457], - [145.330972, -42.330395], - [145.337962, -42.34441], - [145.340304, -42.337055], - [145.35349, -42.343875], - [145.393513, -42.374271], - [145.415589, -42.371743], - [145.453279, -42.404432], - [145.44664, -42.437442], - [145.459181, -42.458265], - [145.461906, -42.500602], - [145.473909, -42.525843], - [145.481796, -42.525698], - [145.472315, -42.500994], - [145.480201, -42.475379], - [145.473209, -42.473547], - [145.464043, -42.442595], - [145.473877, -42.440561], - [145.452654, -42.442002], - [145.458028, -42.434789], - [145.491948, -42.422257], - [145.531057, -42.449533], - [145.55474, -42.44041], - [145.60815, -42.453045], - [145.618204, -42.445481], - [145.614933, -42.440769], - [145.616414, -42.445469], - [145.608294, -42.450703], - [145.557118, -42.436072], - [145.534238, -42.447447], - [145.524527, -42.443517], - [145.513056, -42.434502], - [145.534827, -42.40548], - [145.536235, -42.387129], - [145.549886, -42.38796], - [145.54256, -42.369195], - [145.557614, -42.357028], - [145.543745, -42.352124], - [145.530178, -42.372616], - [145.512366, -42.374196], - [145.502588, -42.364012], - [145.519607, -42.368087], - [145.526736, -42.360539], - [145.517507, -42.339768], - [145.49946, -42.332343], - [145.494117, -42.321867], - [145.496399, -42.334343], - [145.490711, -42.335429], - [145.497868, -42.342384], - [145.48054, -42.347241], - [145.489854, -42.352491], - [145.484933, -42.356658], - [145.492642, -42.355928], - [145.480852, -42.36448], - [145.478337, -42.348707], - [145.46756, -42.346129], - [145.463377, -42.32346], - [145.432466, -42.314304], - [145.42299, -42.289975], - [145.399698, -42.277471], - [145.377435, -42.251744], - [145.364827, -42.251677], - [145.360909, -42.233798], - [145.371811, -42.224361], - [145.363995, -42.209866], - [145.372257, -42.202138], - [145.346049, -42.20679], - [145.356292, -42.1941], - [145.372907, -42.195406], - [145.356296, -42.19124], - [145.359658, -42.177352], - [145.3469, -42.168585], - [145.329134, -42.173299], - [145.325976, -42.160731], - [145.333926, -42.15176], - [145.32306, -42.156568], - [145.307823, -42.148906], - [145.30357, -42.15281], - [145.315747, -42.15776], - [145.318164, -42.176185], - [145.293762, -42.179167], - [145.268149, -42.202388], - [145.285037, -42.210097], - [145.283538, -42.198016], - [145.290158, -42.196647], - [145.289682, -42.227293], - [145.268076, -42.232105], - [145.249216, -42.220926], - [145.223136, -42.218705], - [145.249852, -42.190408], - [145.25957, -42.168154], - [145.263729, -42.112306], - [145.249201, -42.046231], - [145.251857, -42.060057], - [145.190559, -41.946133], - [145.202413, -41.958922], - [145.196877, -41.948587], - [145.204115, -41.936815], - [145.19481, -41.9489], - [145.173969, -41.928457], - [145.124435, -41.900499], - [145.109202, -41.877107], - [145.07146, -41.854712], - [145.068595, -41.83618], - [145.056788, -41.824076], - [145.028205, -41.812958], - [145.032888, -41.806018], - [145.010635, -41.790175], - [145.004506, -41.768898], - [145.010145, -41.767371], - [144.994948, -41.762164], - [144.999131, -41.755101], - [144.980118, -41.739562], - [144.985053, -41.735538], - [144.978577, -41.738103], - [144.954941, -41.716772], - [144.938055, -41.724409], - [144.927021, -41.720933], - [144.91122, -41.691228], - [144.926369, -41.672804], - [144.924912, -41.665608], - [145.005252, -41.617822], - [145.050122, -41.62588], - [145.034811, -41.616962], - [145.051069, -41.608013], - [145.050574, -41.601303], - [145.050935, -41.607848], - [145.034052, -41.616718], - [145.004696, -41.616497], - [144.974744, -41.628734], - [144.920865, -41.667596], - [144.908044, -41.656246], - [144.906663, -41.642018], - [144.897118, -41.639508], - [144.905872, -41.62882], - [144.888303, -41.583194], - [144.832007, -41.50862], - [144.839571, -41.505567], - [144.821311, -41.500773], - [144.813581, -41.477462], - [144.792487, -41.463133], - [144.78528, -41.445714], - [144.745887, -41.421491], - [144.789891, -41.39513], - [144.781861, -41.397029], - [144.782976, -41.367423], - [144.77782, -41.369763], - [144.759486, -41.341194], - [144.770554, -41.341519], - [144.738072, -41.325578], - [144.734202, -41.318282], - [144.741994, -41.311675], - [144.719749, -41.301484], - [144.722619, -41.285111], - [144.711372, -41.282133], - [144.716059, -41.277659], - [144.705924, -41.254754], - [144.683526, -41.234829], - [144.690707, -41.231651], - [144.685899, -41.223231], - [144.694852, -41.199994], - [144.672611, -41.159357], - [144.683137, -41.132455], - [144.671378, -41.138701], - [144.664579, -41.12058], - [144.67654, -41.117011], - [144.678073, -41.079778], - [144.65934, -41.057356], - [144.68122, -41.050207], - [144.68396, -41.038485], - [144.695268, -41.048486], - [144.746155, -41.056409], - [144.754462, -41.061823] - ], - [ - [144.779333, -41.0795], - [144.77521, -41.084293], - [144.781261, -41.079853], - [144.779333, -41.0795] - ], - [ - [144.777341, -41.070091], - [144.791585, -41.068865], - [144.795223, -41.054998], - [144.793855, -41.053985], - [144.791172, -41.06869], - [144.782362, -41.065525], - [144.777341, -41.070091] - ], - [ - [144.796219, -41.055736], - [144.798652, -41.060035], - [144.79924, -41.057974], - [144.796219, -41.055736] - ], - [ - [144.79154, -41.084969], - [144.790728, -41.086832], - [144.799122, -41.089529], - [144.791165, -41.086281], - [144.79154, -41.084969] - ], - [ - [145.064125, -41.634036], - [145.065983, -41.636421], - [145.062093, -41.647983], - [145.081232, -41.657116], - [145.103775, -41.655895], - [145.090875, -41.651241], - [145.082199, -41.656176], - [145.065615, -41.649032], - [145.068161, -41.636387], - [145.064125, -41.634036] - ], - [ - [145.388656, -42.196644], - [145.411219, -42.198418], - [145.414992, -42.196811], - [145.388656, -42.196644] - ], - [ - [145.430958, -42.190011], - [145.434023, -42.188706], - [145.449001, -42.199769], - [145.463897, -42.192569], - [145.469823, -42.197144], - [145.471508, -42.185374], - [145.487023, -42.186916], - [145.499953, -42.176319], - [145.486997, -42.186539], - [145.471562, -42.184938], - [145.469668, -42.19667], - [145.464064, -42.192256], - [145.449066, -42.199429], - [145.433831, -42.188288], - [145.430958, -42.190011] - ], - [ - [146.156535, -43.414211], - [146.166411, -43.418752], - [146.168631, -43.411074], - [146.156535, -43.414211] - ], - [ - [147.535871, -42.960446], - [147.516449, -42.952131], - [147.518198, -42.963502], - [147.509146, -42.967315], - [147.528667, -42.985174], - [147.539201, -42.97491], - [147.527659, -42.962009], - [147.535871, -42.960446] - ], - [ - [148.301216, -41.251273], - [148.287988, -41.250247], - [148.293148, -41.253737], - [148.287613, -41.256935], - [148.301216, -41.251273] - ], - [ - [147.201143, -40.999743], - [147.203245, -40.999937], - [147.202672, -41.009008], - [147.20575, -40.999837], - [147.201143, -40.999743] - ], - [ - [146.151654, -41.162045], - [146.128983, -41.152298], - [146.131761, -41.157267], - [146.120766, -41.155706], - [146.125367, -41.164903], - [146.129428, -41.158995], - [146.144626, -41.161491], - [146.142192, -41.168473], - [146.151908, -41.176943], - [146.14417, -41.164075], - [146.151654, -41.162045] - ], - [ - [145.120845, -40.838941], - [145.091374, -40.847701], - [145.119694, -40.841042], - [145.120845, -40.838941] - ], - [ - [148.248756, -41.459656], - [148.236244, -41.459146], - [148.244398, -41.46657], - [148.232911, -41.460398], - [148.231605, -41.453279], - [148.231106, -41.459837], - [148.246233, -41.469993], - [148.248756, -41.459656] - ], - [ - [148.229653, -41.44264], - [148.22763, -41.431612], - [148.228745, -41.442547], - [148.229653, -41.44264] - ], - [ - [148.21989, -41.44558], - [148.21592, -41.446137], - [148.219108, -41.446805], - [148.21989, -41.44558] - ], - [ - [148.204248, -41.443691], - [148.205429, -41.440982], - [148.197882, -41.442357], - [148.204248, -41.443691] - ], - [ - [148.075841, -42.067087], - [148.075899, -42.062644], - [148.06396, -42.068366], - [148.073524, -42.065245], - [148.075841, -42.067087] - ], - [ - [147.05231, -43.041767], - [147.056261, -43.039689], - [147.036506, -43.024661], - [147.041366, -43.017748], - [147.034777, -43.019129], - [147.034041, -43.010891], - [147.002317, -43.01687], - [147.033019, -43.011415], - [147.035676, -43.025036], - [147.054684, -43.039995], - [147.05231, -43.041767] - ], - [ - [146.917754, -43.436894], - [146.908291, -43.432156], - [146.905874, -43.420799], - [146.907601, -43.432393], - [146.917754, -43.436894] - ], - [ - [145.917851, -43.21031], - [145.928127, -43.204659], - [145.916285, -43.192174], - [145.937342, -43.191481], - [145.927708, -43.185034], - [145.921338, -43.163191], - [145.940454, -43.150439], - [145.920472, -43.161382], - [145.927102, -43.189413], - [145.908648, -43.187014], - [145.9158, -43.18828], - [145.910036, -43.194087], - [145.920675, -43.204904], - [145.917851, -43.21031] - ], - [ - [145.613883, -42.437439], - [145.626303, -42.445889], - [145.648221, -42.435776], - [145.671991, -42.444866], - [145.677123, -42.504088], - [145.665285, -42.527497], - [145.672542, -42.534346], - [145.666151, -42.538227], - [145.670983, -42.562363], - [145.698605, -42.570882], - [145.718173, -42.590035], - [145.729697, -42.582795], - [145.741359, -42.591139], - [145.72929, -42.582031], - [145.718659, -42.589459], - [145.701175, -42.571647], - [145.671843, -42.560717], - [145.667354, -42.538005], - [145.674067, -42.534117], - [145.667096, -42.527739], - [145.67875, -42.502002], - [145.673267, -42.44273], - [145.645783, -42.434272], - [145.625766, -42.44448], - [145.612914, -42.434366], - [145.613883, -42.437439] - ], - [ - [145.246202, -42.030615], - [145.253247, -42.019488], - [145.267714, -42.022905], - [145.253297, -42.018618], - [145.245641, -42.027693], - [145.246202, -42.030615] - ] - ], - [ - [ - [148.349737, -40.517405], - [148.347005, -40.522516], - [148.340391, -40.517047], - [148.327874, -40.501534], - [148.331176, -40.496379], - [148.344715, -40.499249], - [148.349737, -40.517405] - ] - ], - [ - [ - [148.347729, -39.950922], - [148.342542, -39.958786], - [148.322896, -39.959535], - [148.315224, -39.946672], - [148.324036, -39.944668], - [148.328564, -39.931983], - [148.347729, -39.950922] - ] - ], - [ - [ - [148.345979, -42.341687], - [148.304643, -42.343784], - [148.277068, -42.324644], - [148.251987, -42.328576], - [148.236565, -42.317678], - [148.236136, -42.306489], - [148.253975, -42.293475], - [148.27924, -42.302213], - [148.298482, -42.292461], - [148.31933, -42.305872], - [148.317633, -42.323332], - [148.331715, -42.322622], - [148.326302, -42.333737], - [148.345979, -42.341687] - ] - ], - [ - [ - [148.334277, -40.208333], - [148.283291, -40.231378], - [148.27175, -40.230812], - [148.272247, -40.217157], - [148.258928, -40.209863], - [148.210283, -40.210695], - [148.193204, -40.218909], - [148.185396, -40.249854], - [148.122105, -40.274035], - [148.098371, -40.26077], - [148.088599, -40.268918], - [148.059975, -40.247765], - [148.04611, -40.249506], - [148.040339, -40.230105], - [148.025212, -40.225816], - [148.024496, -40.211832], - [148.04036, -40.215628], - [148.041872, -40.204129], - [148.017627, -40.17056], - [148.019666, -40.136914], - [148.007019, -40.105369], - [147.970208, -40.086641], - [147.963908, -40.075137], - [147.955338, -40.082301], - [147.964487, -40.088787], - [147.95365, -40.099005], - [147.951703, -40.061202], - [147.93385, -40.034647], - [147.917223, -40.029825], - [147.895139, -40.037046], - [147.874749, -40.021282], - [147.859016, -40.023392], - [147.869309, -40.009472], - [147.880468, -40.012098], - [147.885864, -40.000581], - [147.897245, -39.999015], - [147.906751, -39.976154], - [147.899184, -39.942768], - [147.880012, -39.907311], - [147.847806, -39.898031], - [147.804546, -39.916577], - [147.794088, -39.901962], - [147.757223, -39.890618], - [147.748199, -39.873759], - [147.76951, -39.866385], - [147.777372, -39.849564], - [147.792747, -39.852429], - [147.803657, -39.835362], - [147.84384, -39.837056], - [147.850835, -39.822647], - [147.840889, -39.808845], - [147.869716, -39.786727], - [147.86822, -39.77429], - [147.847978, -39.75067], - [147.862703, -39.747156], - [147.884186, -39.761323], - [147.919578, -39.744345], - [147.941776, -39.719554], - [147.963439, -39.72707], - [147.955788, -39.732023], - [147.955958, -39.74494], - [147.966735, -39.772864], - [147.967512, -39.759154], - [147.990705, -39.779275], - [147.962316, -39.743289], - [147.967557, -39.74183], - [147.960671, -39.730132], - [148.122472, -39.897448], - [148.107973, -39.894909], - [148.124084, -39.898526], - [148.18609, -39.946608], - [148.170978, -39.942589], - [148.177245, -39.952059], - [148.204976, -39.945233], - [148.260195, -39.96687], - [148.291135, -39.965118], - [148.279268, -40.008597], - [148.286257, -40.067923], - [148.269247, -40.090782], - [148.238306, -40.101529], - [148.223281, -40.121045], - [148.234069, -40.12771], - [148.279159, -40.116428], - [148.281833, -40.080679], - [148.287652, -40.080784], - [148.314828, -40.174085], - [148.334277, -40.208333] - ] - ], - [ - [ - [148.325802, -40.287476], - [148.306275, -40.292821], - [148.278335, -40.284192], - [148.288077, -40.278676], - [148.295423, -40.257441], - [148.312361, -40.266259], - [148.325802, -40.287476] - ] - ], - [ - [ - [148.318491, -40.501004], - [148.314921, -40.520474], - [148.304317, -40.521119], - [148.30324, -40.504399], - [148.312425, -40.49664], - [148.318491, -40.501004] - ] - ], - [ - [ - [148.266784, -40.252596], - [148.256823, -40.257542], - [148.238893, -40.248627], - [148.233843, -40.25469], - [148.227773, -40.240908], - [148.256437, -40.241762], - [148.266784, -40.252596] - ] - ], - [ - [ - [148.261927, -40.228468], - [148.244487, -40.225414], - [148.256977, -40.221973], - [148.261927, -40.228468] - ] - ], - [ - [ - [148.248432, -40.487771], - [148.23197, -40.507856], - [148.228405, -40.525651], - [148.23503, -40.532883], - [148.194755, -40.569098], - [148.198465, -40.590122], - [148.178286, -40.594185], - [148.149204, -40.565369], - [148.125657, -40.572343], - [148.113324, -40.564875], - [148.121528, -40.537112], - [148.095831, -40.531738], - [148.13113, -40.502107], - [148.192762, -40.489367], - [148.210229, -40.503504], - [148.238953, -40.479896], - [148.246148, -40.478409], - [148.248432, -40.487771] - ] - ], - [ - [ - [148.215104, -40.254906], - [148.205679, -40.258491], - [148.201749, -40.249739], - [148.215104, -40.254906] - ] - ], - [ - [ - [148.169014, -42.64868], - [148.152987, -42.65356], - [148.14452, -42.667372], - [148.133278, -42.660114], - [148.119586, -42.668692], - [148.112098, -42.659731], - [148.081273, -42.661757], - [148.068213, -42.681236], - [148.087118, -42.689474], - [148.096308, -42.711196], - [148.093028, -42.720886], - [148.079401, -42.724377], - [148.065282, -42.717338], - [148.067886, -42.726383], - [148.047965, -42.722658], - [148.013573, -42.741864], - [148.012714, -42.720336], - [148.02554, -42.712943], - [148.038744, -42.684106], - [148.057269, -42.68559], - [148.06632, -42.676954], - [148.063155, -42.664646], - [148.049712, -42.655681], - [148.025478, -42.668188], - [148.009322, -42.661187], - [148.037887, -42.649197], - [148.034277, -42.634912], - [148.024605, -42.629566], - [148.047748, -42.607854], - [148.052767, -42.5851], - [148.067397, -42.570657], - [148.089799, -42.585044], - [148.120142, -42.585011], - [148.138549, -42.608441], - [148.140673, -42.631168], - [148.169014, -42.64868] - ] - ], - [ - [ - [148.166054, -40.291935], - [148.131932, -40.297874], - [148.143219, -40.290113], - [148.166054, -40.291935] - ] - ], - [ - [ - [148.127743, -40.734296], - [148.108142, -40.742853], - [148.089824, -40.740085], - [148.119373, -40.72693], - [148.127743, -40.734296] - ] - ], - [ - [ - [148.116053, -40.302946], - [148.107638, -40.31247], - [148.097565, -40.30909], - [148.108589, -40.295667], - [148.116053, -40.302946] - ] - ], - [ - [ - [148.082002, -40.48878], - [148.047732, -40.474074], - [148.061758, -40.468454], - [148.082002, -40.48878] - ] - ], - [ - [ - [148.025111, -40.354577], - [147.994764, -40.369337], - [147.980622, -40.367635], - [148.006358, -40.351234], - [148.02473, -40.34917], - [148.025111, -40.354577] - ] - ], - [ - [ - [148.011504, -43.221681], - [148.001351, -43.227703], - [147.949626, -43.21579], - [147.94516, -43.19468], - [147.93176, -43.198854], - [147.916506, -43.189563], - [147.89663, -43.190994], - [147.895553, -43.155064], - [147.888164, -43.142676], - [147.894681, -43.138209], - [147.888765, -43.138199], - [147.886423, -43.123264], - [147.86729, -43.129281], - [147.863332, -43.107856], - [147.853766, -43.117945], - [147.857979, -43.124421], - [147.850384, -43.124099], - [147.866095, -43.137281], - [147.855675, -43.134782], - [147.860058, -43.142472], - [147.845553, -43.154347], - [147.86135, -43.164949], - [147.87033, -43.15184], - [147.87069, -43.164288], - [147.852999, -43.179577], - [147.876253, -43.19171], - [147.866474, -43.197929], - [147.874616, -43.206364], - [147.860838, -43.20822], - [147.844472, -43.187533], - [147.797429, -43.217457], - [147.799729, -43.24234], - [147.785615, -43.237973], - [147.776399, -43.213157], - [147.750715, -43.209033], - [147.746035, -43.197569], - [147.711578, -43.194282], - [147.715518, -43.178358], - [147.701292, -43.176982], - [147.694551, -43.167179], - [147.701488, -43.160114], - [147.698166, -43.14569], - [147.685138, -43.13873], - [147.703396, -43.122145], - [147.731142, -43.124916], - [147.734104, -43.110809], - [147.716379, -43.105208], - [147.730179, -43.100332], - [147.747515, -43.112124], - [147.742079, -43.094904], - [147.684186, -43.102438], - [147.673726, -43.088687], - [147.65074, -43.089445], - [147.641437, -43.075647], - [147.627123, -43.073515], - [147.622388, -43.051575], - [147.628333, -43.040258], - [147.619071, -43.006636], - [147.640734, -42.99356], - [147.66752, -42.999909], - [147.679341, -42.991801], - [147.685157, -42.974694], - [147.668944, -42.963543], - [147.675717, -42.956967], - [147.664409, -42.943582], - [147.678878, -42.934545], - [147.699473, -42.944257], - [147.705359, -42.95662], - [147.725528, -42.949394], - [147.731363, -42.957165], - [147.726291, -42.964228], - [147.736022, -42.970022], - [147.708038, -43.003555], - [147.726912, -43.018714], - [147.718453, -43.027975], - [147.740428, -43.014116], - [147.749379, -43.043379], - [147.759037, -43.044137], - [147.766735, -43.032672], - [147.773829, -43.054938], - [147.806686, -43.046425], - [147.813794, -43.06061], - [147.826603, -43.055237], - [147.840701, -43.0604], - [147.844355, -43.049932], - [147.835922, -43.041115], - [147.845436, -43.030682], - [147.86034, -43.057314], - [147.872443, -43.023363], - [147.924995, -43.015889], - [147.84686, -43.013058], - [147.850974, -43.007916], - [147.839301, -43.003979], - [147.837899, -42.991561], - [147.856779, -42.982517], - [147.836543, -42.980556], - [147.832381, -42.970556], - [147.822602, -42.976101], - [147.811311, -42.962254], - [147.830846, -42.965246], - [147.854803, -42.958205], - [147.847999, -42.951638], - [147.853799, -42.945877], - [147.865873, -42.947044], - [147.857744, -42.935458], - [147.837048, -42.947847], - [147.829492, -42.946674], - [147.833264, -42.934657], - [147.814891, -42.937869], - [147.811529, -42.926103], - [147.821481, -42.922421], - [147.821825, -42.907884], - [147.802901, -42.893233], - [147.840835, -42.88865], - [147.873839, -42.894629], - [147.876415, -42.888672], - [147.895002, -42.894433], - [147.907805, -42.908754], - [147.900413, -42.899846], - [147.903957, -42.882359], - [147.861124, -42.874994], - [147.885242, -42.861884], - [147.87963, -42.853645], - [147.891706, -42.842525], - [147.920112, -42.843015], - [147.920356, -42.861292], - [147.939856, -42.877176], - [147.970888, -42.864223], - [147.97134, -42.874248], - [147.957801, -42.881936], - [147.98406, -42.890432], - [147.998862, -42.914565], - [147.983432, -42.94126], - [147.99951, -42.964206], - [147.98442, -42.979207], - [147.961326, -42.984066], - [147.95316, -43.001298], - [147.930506, -43.009893], - [147.926429, -43.021228], - [147.935524, -43.034973], - [147.950217, -43.034764], - [147.954041, -43.05207], - [147.945066, -43.059229], - [147.955695, -43.064419], - [147.970726, -43.102556], - [147.981089, -43.107373], - [147.980612, -43.123308], - [147.954581, -43.12572], - [147.959847, -43.130501], - [147.954355, -43.136598], - [147.963387, -43.142729], - [147.972237, -43.13483], - [148.005817, -43.139058], - [147.983168, -43.156111], - [147.96369, -43.191683], - [148.011504, -43.221681] - ] - ], - [ - [ - [148.011137, -39.648628], - [147.991378, -39.663382], - [147.964916, -39.660639], - [147.985178, -39.652269], - [147.977117, -39.643462], - [147.982519, -39.636983], - [148.011137, -39.648628] - ] - ], - [ - [ - [148.009528, -43.23655], - [147.998704, -43.246389], - [147.998884, -43.2329], - [148.009528, -43.23655] - ] - ], - [ - [ - [147.98663, -40.186005], - [147.973717, -40.194177], - [147.971787, -40.175701], - [147.983745, -40.17753], - [147.98663, -40.186005] - ] - ], - [ - [ - [147.946602, -39.69718], - [147.902897, -39.705225], - [147.890644, -39.700362], - [147.887686, -39.687877], - [147.898666, -39.681513], - [147.907193, -39.689293], - [147.926712, -39.685286], - [147.946602, -39.69718] - ] - ], - [ - [ - [147.937714, -40.270009], - [147.927698, -40.28189], - [147.91109, -40.278657], - [147.931415, -40.257936], - [147.937714, -40.270009] - ] - ], - [ - [ - [147.917208, -40.186277], - [147.890374, -40.190523], - [147.906282, -40.177344], - [147.917208, -40.186277] - ] - ], - [ - [ - [147.908873, -40.301612], - [147.904735, -40.31709], - [147.881166, -40.325954], - [147.864323, -40.319525], - [147.846615, -40.323907], - [147.856143, -40.308088], - [147.836332, -40.303464], - [147.839791, -40.292112], - [147.868103, -40.297292], - [147.875552, -40.305661], - [147.903275, -40.291471], - [147.908873, -40.301612] - ] - ], - [ - [ - [147.893182, -40.09728], - [147.886775, -40.106159], - [147.886514, -40.094623], - [147.893182, -40.09728] - ] - ], - [ - [ - [147.803156, -40.31395], - [147.787186, -40.299919], - [147.790695, -40.294971], - [147.799564, -40.294439], - [147.803156, -40.31395] - ] - ], - [ - [ - [147.7875, -40.042051], - [147.75963, -40.068324], - [147.756551, -40.094755], - [147.726294, -40.103138], - [147.725647, -40.0912], - [147.751011, -40.076174], - [147.747312, -40.066625], - [147.756423, -40.058756], - [147.764212, -40.028643], - [147.775768, -40.023031], - [147.7875, -40.042051] - ] - ], - [ - [ - [147.778852, -39.908975], - [147.769124, -39.909354], - [147.774023, -39.903602], - [147.778852, -39.908975] - ] - ], - [ - [ - [147.675423, -43.135705], - [147.670393, -43.140366], - [147.672294, -43.129312], - [147.675423, -43.135705] - ] - ], - [ - [ - [147.648942, -42.954184], - [147.6446, -42.958921], - [147.635678, -42.947163], - [147.643785, -42.943718], - [147.648942, -42.954184] - ] - ], - [ - [ - [147.644205, -40.787921], - [147.634164, -40.80714], - [147.617007, -40.813388], - [147.640959, -40.779814], - [147.644205, -40.787921] - ] - ], - [ - [ - [147.490874, -43.062006], - [147.472132, -43.045822], - [147.484844, -43.044846], - [147.490874, -43.062006] - ] - ], - [ - [ - [147.2028, -43.436981], - [147.203519, -43.453198], - [147.179557, -43.471256], - [147.187056, -43.481337], - [147.182837, -43.488863], - [147.159387, -43.483351], - [147.146534, -43.496781], - [147.137447, -43.493344], - [147.13565, -43.458103], - [147.093898, -43.428398], - [147.097146, -43.412367], - [147.122344, -43.416462], - [147.160375, -43.464404], - [147.179878, -43.458298], - [147.171415, -43.451725], - [147.180376, -43.443265], - [147.174268, -43.437809], - [147.192417, -43.428757], - [147.184873, -43.418094], - [147.174277, -43.423514], - [147.174112, -43.409116], - [147.167887, -43.408738], - [147.185854, -43.387657], - [147.179097, -43.352555], - [147.188574, -43.349104], - [147.185046, -43.357367], - [147.195609, -43.361267], - [147.198643, -43.379384], - [147.212788, -43.382357], - [147.221585, -43.370746], - [147.218025, -43.362334], - [147.234483, -43.364057], - [147.222336, -43.339846], - [147.240417, -43.329166], - [147.24678, -43.304327], - [147.27108, -43.295519], - [147.271597, -43.276041], - [147.286104, -43.265938], - [147.290857, -43.241789], - [147.302201, -43.26428], - [147.297969, -43.273143], - [147.305815, -43.297016], - [147.317638, -43.294773], - [147.357883, -43.255799], - [147.348364, -43.237134], - [147.355732, -43.229079], - [147.341157, -43.219082], - [147.364267, -43.208611], - [147.375729, -43.214859], - [147.383276, -43.206911], - [147.386307, -43.187863], - [147.378961, -43.176046], - [147.361713, -43.176301], - [147.354661, -43.186652], - [147.331789, -43.185297], - [147.342299, -43.169994], - [147.299489, -43.180866], - [147.300954, -43.168462], - [147.276007, -43.166545], - [147.296076, -43.157039], - [147.282118, -43.144332], - [147.310204, -43.1343], - [147.329223, -43.152275], - [147.337218, -43.136556], - [147.352864, -43.131178], - [147.355908, -43.140758], - [147.361158, -43.113575], - [147.353227, -43.128061], - [147.338377, -43.119425], - [147.328409, -43.130998], - [147.32263, -43.126485], - [147.330082, -43.114881], - [147.306633, -43.113562], - [147.317133, -43.109427], - [147.326723, -43.089238], - [147.32252, -43.084433], - [147.338105, -43.082123], - [147.351249, -43.063933], - [147.367631, -43.071824], - [147.362585, -43.086779], - [147.387983, -43.102662], - [147.389599, -43.121063], - [147.400714, -43.127095], - [147.39247, -43.162431], - [147.409119, -43.168892], - [147.410771, -43.200547], - [147.426676, -43.206252], - [147.43327, -43.231539], - [147.430187, -43.252137], - [147.421222, -43.252656], - [147.415942, -43.240573], - [147.380261, -43.250602], - [147.345626, -43.273404], - [147.322286, -43.304035], - [147.320304, -43.343992], - [147.340009, -43.366941], - [147.334431, -43.367735], - [147.349725, -43.368222], - [147.367013, -43.350292], - [147.381959, -43.37178], - [147.378941, -43.390294], - [147.364497, -43.392121], - [147.337912, -43.423253], - [147.346277, -43.42916], - [147.344451, -43.437623], - [147.331283, -43.441625], - [147.320875, -43.469109], - [147.323921, -43.502643], - [147.294719, -43.516165], - [147.291016, -43.505045], - [147.271773, -43.500564], - [147.263146, -43.487887], - [147.246569, -43.492733], - [147.240378, -43.465903], - [147.255796, -43.457721], - [147.245864, -43.440396], - [147.2028, -43.436981] - ], - [ - [147.202672, -43.434106], - [147.204578, -43.429835], - [147.225905, -43.433909], - [147.241973, -43.425713], - [147.241714, -43.413905], - [147.23592, -43.419558], - [147.227259, -43.41257], - [147.202009, -43.419163], - [147.202672, -43.434106] - ] - ], - [ - [ - [147.361331, -39.465221], - [147.345767, -39.471754], - [147.35789, -39.481089], - [147.349277, -39.485543], - [147.351315, -39.497497], - [147.330255, -39.490423], - [147.324481, -39.504975], - [147.313777, -39.480175], - [147.305587, -39.483653], - [147.303987, -39.475222], - [147.31262, -39.473357], - [147.309128, -39.468232], - [147.3218, -39.452009], - [147.327147, -39.458278], - [147.340877, -39.449671], - [147.343207, -39.460544], - [147.361331, -39.465221] - ] - ], - [ - [ - [147.304836, -39.451472], - [147.295941, -39.456243], - [147.299636, -39.461677], - [147.289884, -39.477292], - [147.26039, -39.479499], - [147.270343, -39.466821], - [147.293386, -39.462158], - [147.27475, -39.443508], - [147.285433, -39.446484], - [147.286866, -39.439026], - [147.301714, -39.438134], - [147.304836, -39.451472] - ] - ], - [ - [ - [147.148378, -43.286161], - [147.144375, -43.294334], - [147.137975, -43.290256], - [147.148378, -43.286161] - ] - ], - [ - [ - [147.134308, -43.257362], - [147.127599, -43.264154], - [147.129748, -43.252992], - [147.134308, -43.257362] - ] - ], - [ - [ - [147.105801, -43.396061], - [147.100439, -43.409456], - [147.094049, -43.398601], - [147.099381, -43.389214], - [147.105801, -43.396061] - ] - ], - [ - [ - [147.087857, -41.380311], - [147.082433, -41.384656], - [147.079222, -41.372835], - [147.087857, -41.380311] - ] - ], - [ - [ - [147.041416, -43.05334], - [147.023477, -43.07742], - [147.030713, -43.058525], - [147.041416, -43.05334] - ] - ], - [ - [ - [147.020219, -43.090946], - [147.013611, -43.111723], - [147.00783, -43.114991], - [147.013419, -43.102483], - [146.999908, -43.12072], - [147.004912, -43.104127], - [147.020219, -43.090946] - ] - ], - [ - [ - [146.996233, -39.221031], - [146.987585, -39.231245], - [146.977272, -39.229041], - [146.985648, -39.206708], - [146.996233, -39.221031] - ] - ], - [ - [ - [146.657957, -39.463161], - [146.640237, -39.480157], - [146.637765, -39.473738], - [146.657957, -39.463161] - ] - ], - [ - [ - [146.39519, -39.230963], - [146.380633, -39.231644], - [146.388608, -39.224415], - [146.39519, -39.230963] - ] - ], - [ - [ - [146.377578, -43.596385], - [146.351368, -43.607305], - [146.336781, -43.59187], - [146.37484, -43.586771], - [146.377578, -43.596385] - ] - ], - [ - [ - [146.297123, -43.61968], - [146.285371, -43.620976], - [146.292232, -43.61296], - [146.297123, -43.61968] - ] - ], - [ - [ - [146.286411, -43.651435], - [146.267079, -43.657607], - [146.274786, -43.636469], - [146.286411, -43.651435] - ] - ], - [ - [ - [145.971353, -43.418402], - [145.963439, -43.423217], - [145.968562, -43.412262], - [145.971353, -43.418402] - ] - ], - [ - [ - [145.104473, -40.793663], - [145.077657, -40.794962], - [145.045964, -40.782596], - [145.04007, -40.774177], - [145.044247, -40.751168], - [145.104473, -40.793663] - ] - ], - [ - [ - [144.929092, -40.622398], - [144.919959, -40.613082], - [144.927522, -40.577381], - [144.949955, -40.62121], - [144.935869, -40.62931], - [144.929548, -40.622863], - [144.93738, -40.649773], - [144.967983, -40.658739], - [144.954757, -40.629474], - [144.991571, -40.670004], - [145.026648, -40.684931], - [145.049312, -40.680348], - [145.044316, -40.689174], - [145.06788, -40.714365], - [145.041145, -40.717437], - [145.051107, -40.712278], - [145.039127, -40.713134], - [145.038789, -40.705607], - [145.004435, -40.714161], - [144.976938, -40.707686], - [144.943067, -40.731348], - [144.919415, -40.728478], - [144.893737, -40.74048], - [144.867154, -40.722024], - [144.876441, -40.710768], - [144.87183, -40.678599], - [144.903128, -40.657129], - [144.919365, -40.624943], - [144.929092, -40.622398] - ] - ], - [ - [ - [144.969885, -40.426237], - [144.947913, -40.438604], - [144.951601, -40.460038], - [144.896639, -40.483856], - [144.858052, -40.468834], - [144.850925, -40.45246], - [144.834773, -40.44306], - [144.841026, -40.429911], - [144.85422, -40.43453], - [144.877013, -40.422894], - [144.8857, -40.408489], - [144.874494, -40.401325], - [144.88441, -40.399455], - [144.87902, -40.39278], - [144.887152, -40.388676], - [144.913897, -40.397452], - [144.954617, -40.391235], - [144.962033, -40.401478], - [144.956215, -40.412446], - [144.969885, -40.426237] - ] - ], - [ - [ - [144.841326, -40.695521], - [144.823774, -40.699205], - [144.832674, -40.690735], - [144.841326, -40.695521] - ] - ], - [ - [ - [144.792726, -40.417558], - [144.791023, -40.464458], - [144.784988, -40.47021], - [144.792562, -40.479053], - [144.791029, -40.507352], - [144.771284, -40.533477], - [144.775962, -40.581231], - [144.757535, -40.605984], - [144.735489, -40.592882], - [144.725805, -40.5746], - [144.733166, -40.550062], - [144.722219, -40.517046], - [144.709542, -40.510031], - [144.718277, -40.500491], - [144.710652, -40.484483], - [144.724777, -40.479136], - [144.730751, -40.489194], - [144.755862, -40.485733], - [144.772548, -40.464634], - [144.766331, -40.444897], - [144.784387, -40.420541], - [144.784648, -40.399482], - [144.792726, -40.417558] - ] - ], - [ - [ - [144.723282, -40.606018], - [144.716306, -40.606493], - [144.717605, -40.599452], - [144.723282, -40.606018] - ] - ], - [ - [ - [144.698287, -40.633742], - [144.687308, -40.638708], - [144.6791, -40.627154], - [144.698287, -40.633742] - ] - ], - [ - [ - [144.138222, -39.933819], - [144.128013, -39.993243], - [144.113551, -40.008047], - [144.116243, -40.018145], - [144.100807, -40.028812], - [144.105457, -40.044375], - [144.093888, -40.052257], - [144.070387, -40.05144], - [144.062736, -40.069223], - [144.062986, -40.063035], - [144.049329, -40.067693], - [144.050871, -40.074095], - [144.026951, -40.094863], - [143.989663, -40.09824], - [143.971088, -40.116734], - [143.962635, -40.109148], - [143.949699, -40.112923], - [143.921046, -40.134081], - [143.929769, -40.146124], - [143.925725, -40.157964], - [143.915953, -40.143472], - [143.90083, -40.139383], - [143.908402, -40.128058], - [143.904426, -40.121394], - [143.875275, -40.116764], - [143.872038, -40.083458], - [143.858082, -40.062372], - [143.879926, -40.062694], - [143.890037, -40.053929], - [143.884037, -40.028189], - [143.892987, -40.010933], - [143.885039, -39.998922], - [143.891671, -39.993511], - [143.879028, -39.967228], - [143.838594, -39.9362], - [143.845164, -39.925474], - [143.833303, -39.915546], - [143.839495, -39.911192], - [143.835297, -39.902223], - [143.847086, -39.894641], - [143.841937, -39.885024], - [143.846829, -39.870427], - [143.860358, -39.856619], - [143.854139, -39.851258], - [143.867172, -39.833486], - [143.859078, -39.81616], - [143.863026, -39.789616], - [143.850197, -39.770257], - [143.854673, -39.737523], - [143.84424, -39.715568], - [143.891328, -39.698318], - [143.922707, -39.668873], - [143.934618, -39.638209], - [143.924209, -39.595287], - [143.935747, -39.594632], - [143.94575, -39.580467], - [143.98439, -39.600984], - [144.00538, -39.596637], - [144.01259, -39.608841], - [144.051478, -39.625462], - [144.109657, -39.669979], - [144.100526, -39.752424], - [144.113522, -39.819308], - [144.093287, -39.792317], - [144.106877, -39.819945], - [144.121486, -39.819127], - [144.110947, -39.798983], - [144.127809, -39.821289], - [144.106584, -39.866197], - [144.105013, -39.891295], - [144.111387, -39.913816], - [144.135646, -39.924383], - [144.138222, -39.933819] - ] - ], - [ - [ - [143.837861, -39.669329], - [143.819218, -39.674996], - [143.826748, -39.665015], - [143.837861, -39.669329] - ] - ], - [ - [ - [143.835897, -39.687897], - [143.829885, -39.693141], - [143.826046, -39.682948], - [143.835897, -39.687897] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 6, - "properties": { - "name": "Northern Territory", - "ISOCODE": "AU-NT" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [130.517887, -12.731048], - [130.517526, -12.725616], - [130.529386, -12.725046], - [130.524326, -12.734086], - [130.531006, -12.742166], - [130.525246, -12.734316], - [130.531106, -12.724936], - [130.515446, -12.722686], - [130.511416, -12.710256], - [130.520625, -12.703496], - [130.535765, -12.719026], - [130.557274, -12.701995], - [130.558615, -12.718586], - [130.567234, -12.706375], - [130.583254, -12.719245], - [130.569915, -12.743776], - [130.584645, -12.735286], - [130.591145, -12.739196], - [130.585105, -12.731896], - [130.596024, -12.717995], - [130.607654, -12.719905], - [130.599834, -12.729065], - [130.605024, -12.732715], - [130.610304, -12.722275], - [130.629534, -12.727795], - [130.62497, -12.769403], - [130.643554, -12.743695], - [130.636324, -12.727105], - [130.616973, -12.711755], - [130.621453, -12.705205], - [130.630093, -12.715245], - [130.660603, -12.714655], - [130.687143, -12.727954], - [130.690663, -12.732695], - [130.679753, -12.745255], - [130.689143, -12.751495], - [130.693933, -12.746675], - [130.684583, -12.744455], - [130.707332, -12.716514], - [130.738762, -12.710544], - [130.706062, -12.710984], - [130.690192, -12.719814], - [130.679132, -12.713504], - [130.701951, -12.690484], - [130.674062, -12.707854], - [130.664722, -12.700524], - [130.673922, -12.691474], - [130.633402, -12.686324], - [130.637722, -12.683674], - [130.616462, -12.668714], - [130.617392, -12.676394], - [130.597243, -12.670764], - [130.585863, -12.684445], - [130.573402, -12.652244], - [130.545662, -12.634304], - [130.549902, -12.616104], - [130.559572, -12.626494], - [130.582821, -12.622974], - [130.586502, -12.660454], - [130.596242, -12.653994], - [130.588832, -12.654384], - [130.588232, -12.629414], - [130.609031, -12.604423], - [130.618861, -12.615643], - [130.630331, -12.610623], - [130.642891, -12.625183], - [130.641181, -12.644164], - [130.644121, -12.623803], - [130.63148, -12.609033], - [130.618481, -12.612893], - [130.61202, -12.601483], - [130.589231, -12.592123], - [130.60394, -12.578393], - [130.58899, -12.580483], - [130.573591, -12.596763], - [130.566791, -12.581523], - [130.58284, -12.512803], - [130.5887, -12.501273], - [130.60576, -12.501452], - [130.6041, -12.487932], - [130.58096, -12.462642], - [130.58843, -12.452802], - [130.623239, -12.447762], - [130.61221, -12.431772], - [130.58725, -12.425232], - [130.57816, -12.406593], - [130.6116, -12.393123], - [130.6193, -12.381373], - [130.62413, -12.388932], - [130.654259, -12.393992], - [130.683829, -12.416111], - [130.705669, -12.414051], - [130.711659, -12.423421], - [130.749838, -12.427111], - [130.765148, -12.437371], - [130.757389, -12.482231], - [130.727069, -12.526232], - [130.736749, -12.524632], - [130.761649, -12.482451], - [130.778888, -12.474751], - [130.771439, -12.493851], - [130.778479, -12.509551], - [130.769419, -12.527071], - [130.774399, -12.545592], - [130.748909, -12.579972], - [130.729289, -12.581592], - [130.73203, -12.596932], - [130.730049, -12.583052], - [130.749029, -12.584042], - [130.778559, -12.559142], - [130.781689, -12.573712], - [130.767359, -12.601692], - [130.77471, -12.616002], - [130.777129, -12.599592], - [130.77992, -12.619472], - [130.79185, -12.621902], - [130.78038, -12.616882], - [130.790129, -12.602632], - [130.783669, -12.589422], - [130.794459, -12.578442], - [130.788199, -12.548282], - [130.810159, -12.539891], - [130.805109, -12.563512], - [130.814199, -12.582022], - [130.82533, -12.5799], - [130.816059, -12.558182], - [130.841469, -12.555322], - [130.868019, -12.601482], - [130.857349, -12.615172], - [130.847219, -12.613492], - [130.858969, -12.620582], - [130.869299, -12.611642], - [130.876589, -12.628802], - [130.86976, -12.658733], - [130.879809, -12.631282], - [130.8871, -12.648222], - [130.9, -12.655312], - [130.898737, -12.662486], - [130.90818, -12.656432], - [130.89042, -12.641772], - [130.882289, -12.606202], - [130.932929, -12.611102], - [130.945289, -12.637862], - [130.952293, -12.635237], - [130.947089, -12.617702], - [130.953669, -12.627632], - [130.952497, -12.635161], - [130.966849, -12.629782], - [130.957249, -12.630902], - [130.948099, -12.608442], - [130.953319, -12.596862], - [130.945449, -12.606522], - [130.923079, -12.579912], - [130.884649, -12.574792], - [130.877819, -12.552431], - [130.893359, -12.560531], - [130.901419, -12.556261], - [130.879529, -12.547911], - [130.873858, -12.528031], - [130.862118, -12.526251], - [130.859208, -12.506591], - [130.869788, -12.505781], - [130.879588, -12.521131], - [130.903608, -12.513291], - [130.895598, -12.529801], - [130.907068, -12.516451], - [130.908039, -12.540741], - [130.916648, -12.530891], - [130.910408, -12.517461], - [130.922618, -12.509251], - [130.930538, -12.520241], - [130.927358, -12.536631], - [130.934839, -12.540631], - [130.934248, -12.532211], - [130.947029, -12.541681], - [130.938969, -12.554081], - [130.949449, -12.539641], - [130.953849, -12.555131], - [130.955148, -12.529401], - [130.941928, -12.521801], - [130.947278, -12.496491], - [130.940858, -12.504291], - [130.930578, -12.486691], - [130.946728, -12.47105], - [130.897348, -12.487661], - [130.891918, -12.472761], - [130.916948, -12.45768], - [130.890748, -12.46519], - [130.885998, -12.44305], - [130.878308, -12.45052], - [130.885918, -12.46203], - [130.878678, -12.46363], - [130.856348, -12.45101], - [130.867018, -12.4406], - [130.850049, -12.438844], - [130.850938, -12.467663], - [130.844252, -12.471788], - [130.83261, -12.459755], - [130.82111, -12.461886], - [130.815427, -12.453013], - [130.831387, -12.449953], - [130.835559, -12.426717], - [130.828218, -12.41163], - [130.819608, -12.41458], - [130.816378, -12.40713], - [130.843158, -12.40776], - [130.848725, -12.390553], - [130.842149, -12.378908], - [130.861147, -12.37578], - [130.896007, -12.33006], - [130.923387, -12.34481], - [130.946027, -12.34205], - [130.946057, -12.35719], - [130.950097, -12.34604], - [130.982797, -12.34187], - [131.004777, -12.35221], - [131.012507, -12.367], - [131.013245, -12.366287], - [131.013197, -12.36632], - [131.008917, -12.35638], - [131.034867, -12.360879], - [131.055047, -12.347789], - [131.029817, -12.346399], - [131.029767, -12.325609], - [131.060957, -12.332129], - [131.028017, -12.317819], - [131.028447, -12.305499], - [131.017697, -12.326879], - [131.012977, -12.323279], - [131.030457, -12.231509], - [131.021577, -12.216269], - [131.004677, -12.209079], - [130.994627, -12.186059], - [130.995967, -12.168649], - [131.030606, -12.146439], - [131.045866, -12.142789], - [131.051766, -12.158259], - [131.065336, -12.166809], - [131.087576, -12.153769], - [131.113196, -12.155059], - [131.114346, -12.175049], - [131.125436, -12.182589], - [131.144276, -12.182429], - [131.157555, -12.168839], - [131.169055, -12.173219], - [131.175956, -12.192099], - [131.222045, -12.227179], - [131.20783, -12.239412], - [131.209786, -12.239639], - [131.205976, -12.270389], - [131.232045, -12.266789], - [131.221966, -12.278009], - [131.225006, -12.285039], - [131.222886, -12.277889], - [131.229075, -12.273239], - [131.228525, -12.281379], - [131.233995, -12.266339], - [131.206986, -12.263139], - [131.212316, -12.240189], - [131.250875, -12.220029], - [131.231075, -12.214389], - [131.228875, -12.207279], - [131.253885, -12.162809], - [131.250816, -12.135939], - [131.273556, -12.100129], - [131.266356, -12.076929], - [131.297126, -12.042609], - [131.303356, -12.052989], - [131.299506, -12.070169], - [131.320925, -12.089869], - [131.313885, -12.112699], - [131.321835, -12.122619], - [131.312905, -12.132449], - [131.322835, -12.147239], - [131.314055, -12.165679], - [131.322765, -12.193429], - [131.380875, -12.25649], - [131.426776, -12.275411], - [131.472295, -12.283712], - [131.548072, -12.278212], - [131.68282, -12.284741], - [131.7753, -12.268231], - [131.879259, -12.214551], - [131.904229, -12.224351], - [131.917488, -12.255891], - [131.939408, -12.272931], - [132.069714, -12.30354], - [132.073894, -12.28898], - [132.147633, -12.24585], - [132.170803, -12.21328], - [132.224352, -12.194571], - [132.238192, -12.169761], - [132.261723, -12.173431], - [132.264283, -12.203021], - [132.278463, -12.224211], - [132.353164, -12.198823], - [132.389393, -12.236413], - [132.417113, -12.222413], - [132.417583, -12.195333], - [132.442013, -12.146473], - [132.513032, -12.124144], - [132.554812, -12.098304], - [132.556212, -12.085774], - [132.578382, -12.105474], - [132.629281, -12.085415], - [132.618962, -12.016715], - [132.638692, -11.942775], - [132.640803, -11.901335], - [132.655323, -11.889815], - [132.645613, -11.875145], - [132.647873, -11.858235], - [132.636523, -11.822025], - [132.618483, -11.805005], - [132.594944, -11.805325], - [132.580704, -11.786005], - [132.596714, -11.767885], - [132.620604, -11.758145], - [132.648944, -11.722446], - [132.654704, -11.685646], - [132.643004, -11.681586], - [132.630954, -11.720466], - [132.594684, -11.730045], - [132.540155, -11.718195], - [132.518965, -11.687615], - [132.499845, -11.682115], - [132.507376, -11.635725], - [132.557685, -11.636375], - [132.574235, -11.654965], - [132.564595, -11.667415], - [132.576175, -11.655195], - [132.616644, -11.654786], - [132.607075, -11.639956], - [132.594465, -11.639686], - [132.547825, -11.608665], - [132.536256, -11.580276], - [132.549116, -11.574226], - [132.553086, -11.554926], - [132.524826, -11.544996], - [132.531916, -11.520516], - [132.515756, -11.520786], - [132.499766, -11.509546], - [132.494157, -11.482506], - [132.480517, -11.484055], - [132.457147, -11.457755], - [132.399207, -11.454915], - [132.353457, -11.441274], - [132.301928, -11.465094], - [132.238798, -11.455203], - [132.210069, -11.469233], - [132.193809, -11.490203], - [132.167279, -11.491592], - [132.138099, -11.521082], - [132.119809, -11.515232], - [132.119751, -11.514471], - [132.114889, -11.516612], - [132.122609, -11.526422], - [132.113829, -11.539922], - [132.104509, -11.528132], - [132.06788, -11.525002], - [132.05541, -11.496502], - [132.03388, -11.482132], - [132.03024, -11.458862], - [132.05095, -11.460212], - [132.05936, -11.432142], - [132.04122, -11.420422], - [131.9966, -11.430041], - [131.98598, -11.422791], - [131.99014, -11.401471], - [131.96243, -11.411111], - [131.94243, -11.399891], - [131.93981, -11.392321], - [131.95987, -11.380631], - [131.98057, -11.383502], - [131.98901, -11.373342], - [131.96802, -11.369472], - [131.96483, -11.360772], - [131.97364, -11.361922], - [131.97561, -11.351772], - [131.96591, -11.342492], - [131.95126, -11.341212], - [131.9517, -11.351492], - [131.93759, -11.350812], - [131.92823, -11.357862], - [131.93038, -11.365662], - [131.916901, -11.357502], - [131.94354, -11.319862], - [131.93325, -11.316342], - [131.9306, -11.324462], - [131.914691, -11.324762], - [131.859751, -11.292782], - [131.842081, -11.312602], - [131.821121, -11.318292], - [131.773282, -11.325042], - [131.762662, -11.315752], - [131.759282, -11.299712], - [131.772892, -11.302232], - [131.776291, -11.311282], - [131.779901, -11.291302], - [131.800508, -11.295386], - [131.806471, -11.283142], - [131.794391, -11.268323], - [131.815781, -11.268153], - [131.840211, -11.286402], - [131.855191, -11.276743], - [131.848311, -11.253013], - [131.836891, -11.247673], - [131.814801, -11.211703], - [131.821801, -11.206423], - [131.840041, -11.226563], - [131.860441, -11.209123], - [131.856411, -11.219613], - [131.867961, -11.219313], - [131.879361, -11.234923], - [131.886181, -11.207283], - [131.875591, -11.193144], - [131.882481, -11.181534], - [131.912031, -11.206893], - [131.904111, -11.216363], - [131.92751, -11.235043], - [131.92996, -11.259883], - [131.94554, -11.251573], - [131.94476, -11.244463], - [131.96121, -11.253053], - [131.96126, -11.228923], - [131.97417, -11.235163], - [131.98645, -11.218593], - [131.96242, -11.176664], - [131.96998, -11.170814], - [131.98243, -11.180094], - [131.99353, -11.175744], - [131.98645, -11.170854], - [131.98593, -11.150984], - [131.970311, -11.134234], - [131.992971, -11.124244], - [132.01069, -11.129874], - [132.02906, -11.178744], - [132.03699, -11.192783], - [132.04718, -11.191263], - [132.04611, -11.199493], - [132.05673, -11.201923], - [132.05473, -11.191073], - [132.06831, -11.175794], - [132.0755, -11.179554], - [132.0664, -11.191703], - [132.08262, -11.194723], - [132.07545, -11.209363], - [132.084489, -11.231533], - [132.098559, -11.231943], - [132.113539, -11.211133], - [132.113879, -11.234173], - [132.095759, -11.262083], - [132.100499, -11.274753], - [132.114149, -11.268493], - [132.116409, -11.273703], - [132.098289, -11.302853], - [132.107269, -11.315323], - [132.099979, -11.329053], - [132.108799, -11.328533], - [132.122649, -11.349273], - [132.125019, -11.313043], - [132.136779, -11.296163], - [132.140919, -11.315043], - [132.155869, -11.322683], - [132.145389, -11.356383], - [132.153609, -11.360153], - [132.154109, -11.374493], - [132.144679, -11.382353], - [132.157959, -11.382533], - [132.152029, -11.391973], - [132.169279, -11.406983], - [132.164259, -11.412643], - [132.170359, -11.420423], - [132.180799, -11.416293], - [132.175969, -11.396853], - [132.199109, -11.417433], - [132.208129, -11.413403], - [132.206189, -11.398133], - [132.197839, -11.397523], - [132.199969, -11.382513], - [132.188419, -11.380093], - [132.182889, -11.365383], - [132.190289, -11.350963], - [132.222128, -11.369643], - [132.231338, -11.363003], - [132.236468, -11.339893], - [132.226728, -11.321453], - [132.197519, -11.301203], - [132.172569, -11.323443], - [132.197079, -11.280013], - [132.190229, -11.248553], - [132.179889, -11.240723], - [132.188669, -11.241543], - [132.199039, -11.225784], - [132.199399, -11.237304], - [132.202469, -11.226814], - [132.194549, -11.207694], - [132.160809, -11.183704], - [132.161959, -11.160794], - [132.14125, -11.153674], - [132.14345, -11.133824], - [132.13561, -11.122384], - [132.18681, -11.130314], - [132.196019, -11.164904], - [132.211489, -11.183164], - [132.227519, -11.180304], - [132.230869, -11.196804], - [132.243459, -11.197424], - [132.239809, -11.218524], - [132.249859, -11.221624], - [132.265338, -11.263814], - [132.283548, -11.276724], - [132.281568, -11.233084], - [132.264658, -11.213554], - [132.273989, -11.199374], - [132.265069, -11.175394], - [132.287879, -11.164874], - [132.305688, -11.173205], - [132.322198, -11.165595], - [132.319498, -11.155875], - [132.338898, -11.140365], - [132.333289, -11.115725], - [132.343678, -11.119945], - [132.341328, -11.133945], - [132.356938, -11.148915], - [132.364908, -11.193765], - [132.382308, -11.207975], - [132.373688, -11.295455], - [132.384368, -11.287375], - [132.385698, -11.296865], - [132.397367, -11.299155], - [132.406098, -11.264535], - [132.414087, -11.269995], - [132.422247, -11.262235], - [132.413648, -11.237915], - [132.419998, -11.225635], - [132.433927, -11.211325], - [132.451037, -11.218075], - [132.476747, -11.258415], - [132.506787, -11.272276], - [132.505137, -11.284126], - [132.497247, -11.282176], - [132.486817, -11.299486], - [132.510137, -11.292736], - [132.505267, -11.310106], - [132.517147, -11.317046], - [132.503517, -11.318456], - [132.501877, -11.329936], - [132.512507, -11.330916], - [132.519897, -11.345406], - [132.514157, -11.349896], - [132.528497, -11.340466], - [132.547046, -11.342006], - [132.559196, -11.367916], - [132.585446, -11.394547], - [132.622016, -11.410267], - [132.635436, -11.436637], - [132.637815, -11.477527], - [132.669005, -11.515587], - [132.694625, -11.514207], - [132.714525, -11.523307], - [132.732875, -11.519077], - [132.747845, -11.495287], - [132.778174, -11.470077], - [132.783854, -11.446377], - [132.811374, -11.438097], - [132.825514, -11.420737], - [132.823154, -11.404687], - [132.842194, -11.395137], - [132.850333, -11.392566], - [132.864003, -11.419036], - [132.873063, -11.416906], - [132.885853, -11.429826], - [132.896403, -11.425896], - [132.909183, -11.384706], - [132.880463, -11.347456], - [132.865023, -11.340066], - [132.872033, -11.329806], - [132.897893, -11.339925], - [132.917953, -11.331725], - [132.933332, -11.363625], - [132.945232, -11.367605], - [132.968132, -11.416805], - [133.007852, -11.432825], - [133.045962, -11.502846], - [133.076861, -11.520985], - [133.069591, -11.548306], - [133.094141, -11.591176], - [133.105631, -11.633116], - [133.149872, -11.702237], - [133.190651, -11.728637], - [133.28159, -11.740646], - [133.252581, -11.730766], - [133.28392, -11.717706], - [133.29552, -11.702806], - [133.343359, -11.693715], - [133.354458, -11.717905], - [133.340569, -11.727155], - [133.320389, -11.719556], - [133.308089, -11.738986], - [133.309839, -11.758176], - [133.320889, -11.769845], - [133.353138, -11.764685], - [133.356908, -11.775545], - [133.369628, -11.776115], - [133.376418, -11.767425], - [133.369208, -11.757705], - [133.385618, -11.752065], - [133.402837, -11.732084], - [133.415567, -11.739444], - [133.410057, -11.748135], - [133.414627, -11.757525], - [133.398797, -11.757505], - [133.398677, -11.767785], - [133.410367, -11.779555], - [133.448107, -11.778345], - [133.448097, -11.790435], - [133.459107, -11.801975], - [133.480117, -11.781304], - [133.501157, -11.781224], - [133.533786, -11.760334], - [133.539506, -11.770284], - [133.528917, -11.791094], - [133.530127, -11.812984], - [133.549167, -11.826994], - [133.565596, -11.806804], - [133.602136, -11.809164], - [133.606986, -11.816344], - [133.595156, -11.833724], - [133.611086, -11.842784], - [133.663126, -11.818904], - [133.655866, -11.809054], - [133.678026, -11.788633], - [133.692006, -11.794073], - [133.664616, -11.779583], - [133.670126, -11.773943], - [133.690646, -11.782773], - [133.738465, -11.782583], - [133.773585, -11.761143], - [133.785865, -11.732123], - [133.793785, -11.727492], - [133.808654, -11.733792], - [133.793905, -11.724672], - [133.812364, -11.730212], - [133.837014, -11.723222], - [133.848154, -11.744432], - [133.867534, -11.753922], - [133.899394, -11.754191], - [133.915564, -11.742441], - [133.927604, -11.764141], - [133.940344, -11.770351], - [133.916254, -11.772381], - [133.901684, -11.805711], - [133.889865, -11.812372], - [133.867615, -11.805132], - [133.846505, -11.813482], - [133.823085, -11.838102], - [133.829615, -11.864992], - [133.831915, -11.858782], - [133.842115, -11.879912], - [133.858295, -11.877992], - [133.877905, -11.902512], - [133.867695, -11.901382], - [133.876015, -11.910522], - [133.895355, -11.913812], - [133.912395, -11.906891], - [133.907715, -11.927621], - [133.919905, -11.916761], - [133.933185, -11.920261], - [133.984055, -11.894961], - [134.004474, -11.86378], - [134.030774, -11.85497], - [134.063564, -11.86952], - [134.063914, -11.89223], - [134.078374, -11.8982], - [134.068515, -11.91595], - [134.071625, -11.93346], - [134.065995, -11.93432], - [134.074835, -11.94182], - [134.080915, -11.92962], - [134.101685, -11.924519], - [134.104514, -11.912889], - [134.127154, -11.897279], - [134.134164, -11.920599], - [134.175395, -11.956789], - [134.168545, -11.972499], - [134.149905, -11.963459], - [134.151995, -11.987989], - [134.172945, -12.002259], - [134.181735, -11.994179], - [134.181065, -12.014979], - [134.194245, -12.028678], - [134.162236, -12.100449], - [134.168416, -12.114769], - [134.188036, -12.105348], - [134.193755, -12.074468], - [134.228395, -12.036468], - [134.253515, -12.034148], - [134.245784, -11.984748], - [134.286654, -11.983797], - [134.306484, -12.008447], - [134.348035, -12.039126], - [134.416195, -12.064506], - [134.470304, -12.067475], - [134.462605, -12.069875], - [134.479574, -12.075875], - [134.492834, -12.071605], - [134.490904, -12.077235], - [134.605064, -12.048994], - [134.655863, -12.015103], - [134.687823, -11.962833], - [134.703333, -11.967083], - [134.739702, -11.959872], - [134.747592, -11.949342], - [134.770812, -11.959782], - [134.760703, -11.995172], - [134.779523, -12.003402], - [134.798173, -12.047782], - [134.830173, -12.056091], - [134.837003, -12.074901], - [134.831653, -12.055511], - [134.844233, -12.061611], - [134.841944, -12.112171], - [134.856814, -12.131031], - [134.885214, -12.134271], - [134.904804, -12.153201], - [134.935374, -12.14251], - [134.971594, -12.15839], - [135.004564, -12.21296], - [135.056034, -12.263609], - [135.124104, -12.237389], - [135.137764, -12.242839], - [135.144674, -12.236739], - [135.160154, -12.249769], - [135.164264, -12.264819], - [135.213054, -12.295298], - [135.218924, -12.288638], - [135.209874, -12.274268], - [135.183244, -12.253538], - [135.181434, -12.239058], - [135.159844, -12.231789], - [135.161584, -12.225009], - [135.193284, -12.225848], - [135.207484, -12.234528], - [135.267043, -12.224928], - [135.283324, -12.252878], - [135.313074, -12.260258], - [135.342493, -12.246377], - [135.352043, -12.232247], - [135.312173, -12.241598], - [135.280263, -12.220988], - [135.276043, -12.200398], - [135.256723, -12.207958], - [135.223323, -12.188688], - [135.269053, -12.179708], - [135.284473, -12.164008], - [135.302962, -12.162898], - [135.319172, -12.145388], - [135.304252, -12.135758], - [135.305992, -12.124338], - [135.352982, -12.105957], - [135.366211, -12.084717], - [135.386521, -12.092757], - [135.396871, -12.082027], - [135.422581, -12.083057], - [135.405231, -12.101817], - [135.415332, -12.113917], - [135.454371, -12.114057], - [135.507861, -12.085906], - [135.519041, -12.059806], - [135.538441, -12.064456], - [135.544871, -12.087636], - [135.570011, -12.100746], - [135.603771, -12.078476], - [135.615631, -12.078336], - [135.605381, -12.076896], - [135.64306, -12.054625], - [135.64971, -12.059055], - [135.64364, -12.053385], - [135.65355, -12.039505], - [135.68425, -12.034595], - [135.727399, -12.009145], - [135.754489, -12.007775], - [135.808389, -11.981314], - [135.886568, -11.965704], - [135.909888, -11.952393], - [135.911248, -11.959963], - [135.877479, -11.986144], - [135.869689, -11.975744], - [135.831679, -11.984284], - [135.826499, -11.995354], - [135.832759, -12.000714], - [135.77276, -12.043944], - [135.75854, -12.079455], - [135.73123, -12.090315], - [135.700451, -12.126055], - [135.659231, -12.149925], - [135.650052, -12.168475], - [135.652002, -12.201705], - [135.676822, -12.241725], - [135.710262, -12.262515], - [135.720723, -12.281165], - [135.710377, -12.312562], - [135.730263, -12.293485], - [135.746222, -12.262495], - [135.762072, -12.253784], - [135.776322, -12.259084], - [135.778252, -12.224944], - [135.798352, -12.212044], - [135.803621, -12.198924], - [135.815911, -12.201174], - [135.825201, -12.184434], - [135.828541, -12.191324], - [135.838681, -12.182074], - [135.850471, -12.184074], - [135.855281, -12.169144], - [135.864361, -12.174224], - [135.86584, -12.158624], - [135.88122, -12.150694], - [135.88628, -12.150684], - [135.881591, -12.177374], - [135.894921, -12.184934], - [135.91223, -12.149754], - [135.92187, -12.149293], - [135.92843, -12.161943], - [135.93565, -12.143393], - [135.94817, -12.150273], - [135.948619, -12.138513], - [135.95001, -12.151293], - [135.95908, -12.151953], - [135.959979, -12.137033], - [135.972329, -12.137413], - [136.002099, -12.116853], - [135.996339, -12.105443], - [136.004829, -12.100453], - [135.996789, -12.093113], - [136.003659, -12.083953], - [136.031549, -12.076222], - [136.034629, -12.066262], - [136.045759, -12.063082], - [136.011979, -12.123393], - [135.98308, -12.151923], - [135.97348, -12.185283], - [135.95786, -12.182033], - [135.95535, -12.196843], - [135.94226, -12.199343], - [135.928041, -12.222093], - [135.933111, -12.237233], - [135.956221, -12.249633], - [135.962222, -12.269643], - [135.950052, -12.279043], - [136.001161, -12.268113], - [136.010551, -12.242323], - [136.019273, -12.245398], - [136.013521, -12.233273], - [136.028121, -12.240032], - [136.049241, -12.231752], - [136.061201, -12.240882], - [136.054131, -12.269042], - [136.033911, -12.271002], - [136.029922, -12.294752], - [136.009012, -12.290823], - [136.007422, -12.303833], - [136.015922, -12.304382], - [136.023642, -12.319292], - [136.008152, -12.331183], - [135.995323, -12.359803], - [135.975683, -12.369223], - [135.970893, -12.386763], - [135.975603, -12.395113], - [135.996073, -12.400053], - [136.015493, -12.397082], - [135.993254, -12.440983], - [136.003624, -12.453512], - [135.988914, -12.462353], - [136.015354, -12.457342], - [136.014474, -12.484922], - [136.021374, -12.486152], - [136.033654, -12.473472], - [136.051594, -12.479342], - [136.046274, -12.457062], - [136.063703, -12.430012], - [136.075783, -12.434962], - [136.073623, -12.448082], - [136.085823, -12.457442], - [136.104903, -12.453112], - [136.107983, -12.439082], - [136.121113, -12.452402], - [136.151423, -12.435491], - [136.159603, -12.444401], - [136.158394, -12.470521], - [136.158954, -12.463281], - [136.169074, -12.461571], - [136.231734, -12.46572], - [136.249394, -12.44544], - [136.259704, -12.45644], - [136.252834, -12.4434], - [136.263294, -12.44145], - [136.314173, -12.381859], - [136.303813, -12.37635], - [136.304013, -12.36753], - [136.333092, -12.326649], - [136.325462, -12.306889], - [136.341992, -12.301299], - [136.353871, -12.277189], - [136.368461, -12.278509], - [136.342921, -12.265239], - [136.362771, -12.257499], - [136.35914, -12.230379], - [136.35311, -12.211409], - [136.34207, -12.206009], - [136.34582, -12.200169], - [136.33437, -12.202979], - [136.337, -12.195659], - [136.31544, -12.21072], - [136.28821, -12.20536], - [136.22827, -12.213191], - [136.21891, -12.187331], - [136.23211, -12.182661], - [136.20823, -12.184751], - [136.19056, -12.195531], - [136.17218, -12.192061], - [136.16894, -12.178161], - [136.176039, -12.168771], - [136.167409, -12.163021], - [136.176819, -12.158031], - [136.195199, -12.163071], - [136.217229, -12.152401], - [136.212589, -12.130821], - [136.230389, -12.131681], - [136.231739, -12.118451], - [136.246869, -12.11051], - [136.267088, -12.06501], - [136.326148, -12.045539], - [136.331808, -12.059089], - [136.339388, -12.059179], - [136.348758, -12.043889], - [136.344027, -12.032829], - [136.355147, -12.030989], - [136.357417, -12.021149], - [136.369947, -12.027669], - [136.367497, -12.011399], - [136.378757, -12.019619], - [136.389697, -12.011339], - [136.382387, -11.997449], - [136.414836, -11.958678], - [136.426086, -11.958438], - [136.430797, -11.971088], - [136.445696, -11.954128], - [136.443966, -11.941478], - [136.492406, -11.952617], - [136.513896, -11.936017], - [136.523296, -11.939207], - [136.531175, -11.914597], - [136.548246, -11.923347], - [136.561355, -11.917507], - [136.573785, -11.902057], - [136.557645, -11.886307], - [136.562955, -11.876607], - [136.568755, -11.894017], - [136.581815, -11.902866], - [136.580405, -11.915526], - [136.534186, -11.947257], - [136.472096, -11.960318], - [136.472827, -11.996588], - [136.456057, -11.978868], - [136.448947, -11.987458], - [136.451973, -11.999452], - [136.457087, -11.999948], - [136.455837, -12.005718], - [136.469817, -11.999688], - [136.477457, -12.018198], - [136.488837, -12.024038], - [136.485942, -12.034463], - [136.490457, -12.030818], - [136.488997, -12.040088], - [136.492057, -12.027307], - [136.498257, -12.028987], - [136.496017, -12.009547], - [136.505977, -12.003407], - [136.503047, -11.997897], - [136.512256, -11.987997], - [136.531076, -11.991437], - [136.564986, -12.081298], - [136.580688, -12.091146], - [136.587238, -12.084486], - [136.590308, -12.095106], - [136.581198, -12.107786], - [136.587008, -12.125586], - [136.577748, -12.146067], - [136.59931, -12.202296], - [136.64644, -12.235496], - [136.647501, -12.269716], - [136.674801, -12.288175], - [136.669421, -12.277665], - [136.691251, -12.276015], - [136.705701, -12.288465], - [136.72091, -12.266925], - [136.72629, -12.276085], - [136.74227, -12.271824], - [136.76612, -12.235054], - [136.7512, -12.232994], - [136.752159, -12.214144], - [136.72318, -12.229785], - [136.729079, -12.211385], - [136.698689, -12.190325], - [136.67708, -12.205625], - [136.681359, -12.186335], - [136.714319, -12.186965], - [136.725469, -12.182475], - [136.727099, -12.172425], - [136.782358, -12.159094], - [136.790729, -12.185103], - [136.818199, -12.211553], - [136.846679, -12.210243], - [136.873198, -12.219653], - [136.884471, -12.243666], - [136.905089, -12.245954], - [136.902389, -12.280773], - [136.911689, -12.283273], - [136.914919, -12.275713], - [136.928109, -12.282722], - [136.939239, -12.324072], - [136.933899, -12.333872], - [136.921119, -12.344243], - [136.944319, -12.357942], - [136.964208, -12.350282], - [136.965258, -12.340802], - [136.978918, -12.345442], - [136.961778, -12.363822], - [136.962688, -12.374552], - [136.945459, -12.369792], - [136.89969, -12.392433], - [136.88989, -12.413653], - [136.863311, -12.431343], - [136.805132, -12.506344], - [136.779003, -12.525274], - [136.772733, -12.555524], - [136.760713, -12.525694], - [136.775953, -12.496134], - [136.795842, -12.492214], - [136.794432, -12.449754], - [136.775932, -12.447324], - [136.759103, -12.467424], - [136.735403, -12.478564], - [136.720943, -12.458235], - [136.719243, -12.468605], - [136.729533, -12.478324], - [136.721763, -12.493955], - [136.742223, -12.517864], - [136.726903, -12.529024], - [136.733443, -12.536144], - [136.748393, -12.533914], - [136.730974, -12.562904], - [136.728924, -12.553864], - [136.720064, -12.553845], - [136.714294, -12.566265], - [136.693814, -12.567355], - [136.691584, -12.587555], - [136.675844, -12.581205], - [136.669265, -12.590565], - [136.680395, -12.603575], - [136.676855, -12.593625], - [136.681675, -12.598605], - [136.682954, -12.590815], - [136.696074, -12.586665], - [136.697144, -12.569165], - [136.715774, -12.571905], - [136.723724, -12.562775], - [136.734864, -12.570924], - [136.747443, -12.551644], - [136.761883, -12.577404], - [136.735424, -12.579174], - [136.690575, -12.632275], - [136.678645, -12.669065], - [136.681015, -12.687585], - [136.699046, -12.704105], - [136.693856, -12.711095], - [136.675346, -12.704395], - [136.652776, -12.711355], - [136.617426, -12.689846], - [136.631276, -12.700245], - [136.611336, -12.714886], - [136.601037, -12.740266], - [136.619757, -12.756676], - [136.624777, -12.773965], - [136.608447, -12.814925], - [136.621747, -12.839455], - [136.587287, -12.821586], - [136.580617, -12.804026], - [136.583787, -12.778956], - [136.605517, -12.790076], - [136.581977, -12.767096], - [136.567477, -12.763796], - [136.549817, -12.740376], - [136.532077, -12.745416], - [136.525477, -12.758276], - [136.531238, -12.801876], - [136.542848, -12.806756], - [136.517748, -12.807146], - [136.483378, -12.768027], - [136.467878, -12.780167], - [136.463708, -12.772047], - [136.468038, -12.793507], - [136.487978, -12.801577], - [136.478618, -12.841577], - [136.505878, -12.851836], - [136.518258, -12.875466], - [136.538848, -12.881616], - [136.552458, -12.874196], - [136.542838, -12.896306], - [136.546248, -12.916306], - [136.555218, -12.920126], - [136.559148, -12.914186], - [136.598158, -12.930075], - [136.625398, -12.952945], - [136.638077, -12.950715], - [136.644898, -12.990475], - [136.667967, -13.004314], - [136.654497, -13.015825], - [136.629238, -13.017395], - [136.635168, -13.001605], - [136.627498, -12.994725], - [136.627538, -12.974625], - [136.617648, -12.967605], - [136.600858, -12.975115], - [136.598128, -12.989925], - [136.580068, -13.001335], - [136.584458, -13.018435], - [136.562499, -13.018115], - [136.569089, -12.997825], - [136.551139, -12.986776], - [136.564399, -12.981386], - [136.558679, -12.964996], - [136.539539, -12.970376], - [136.542399, -12.979186], - [136.531909, -12.982216], - [136.531769, -12.991926], - [136.519939, -12.976766], - [136.491889, -12.992466], - [136.474329, -12.977386], - [136.455209, -12.978237], - [136.452719, -12.991357], - [136.477959, -12.995906], - [136.480639, -13.006456], - [136.484069, -12.998026], - [136.507099, -12.996606], - [136.510659, -13.016026], - [136.535289, -13.018976], - [136.532889, -13.051946], - [136.566709, -13.058835], - [136.538979, -13.110765], - [136.53117, -13.154425], - [136.51436, -13.139905], - [136.498552, -13.14035], - [136.50087, -13.141846], - [136.47931, -13.169676], - [136.48391, -13.184865], - [136.47395, -13.201665], - [136.47559, -13.234315], - [136.46778, -13.247545], - [136.454891, -13.254706], - [136.446831, -13.248476], - [136.454161, -13.224436], - [136.439651, -13.217386], - [136.436961, -13.230596], - [136.399901, -13.243256], - [136.358172, -13.309886], - [136.343012, -13.325876], - [136.331362, -13.324706], - [136.331632, -13.311716], - [136.318982, -13.298577], - [136.338092, -13.276606], - [136.328142, -13.250027], - [136.350642, -13.246036], - [136.367581, -13.252696], - [136.388071, -13.227066], - [136.380461, -13.203026], - [136.366131, -13.196836], - [136.369801, -13.166577], - [136.356031, -13.147107], - [136.371551, -13.139527], - [136.354071, -13.116497], - [136.368711, -13.108847], - [136.36265, -13.092567], - [136.37143, -13.070447], - [136.36392, -13.056307], - [136.33547, -13.044857], - [136.33342, -13.034147], - [136.331261, -13.047407], - [136.308781, -13.071487], - [136.306511, -13.093507], - [136.291481, -13.107577], - [136.311651, -13.108887], - [136.321181, -13.120107], - [136.306681, -13.144797], - [136.315631, -13.159627], - [136.283082, -13.168097], - [136.281411, -13.151827], - [136.288701, -13.145187], - [136.273782, -13.158577], - [136.256262, -13.154668], - [136.259222, -13.132768], - [136.252562, -13.121288], - [136.243382, -13.145588], - [136.218042, -13.138268], - [136.223082, -13.146308], - [136.214062, -13.154288], - [136.231242, -13.155148], - [136.235802, -13.169738], - [136.247202, -13.173508], - [136.235272, -13.187578], - [136.245162, -13.212467], - [136.238812, -13.204558], - [136.218492, -13.203788], - [136.213422, -13.233248], - [136.201372, -13.246988], - [136.186422, -13.244938], - [136.174902, -13.232988], - [136.161943, -13.242088], - [136.159373, -13.251688], - [136.183853, -13.274708], - [136.181633, -13.280798], - [136.155503, -13.266578], - [136.147752, -13.218888], - [136.134172, -13.207299], - [136.150192, -13.183528], - [136.153092, -13.145699], - [136.145152, -13.120549], - [136.099082, -13.158579], - [136.107902, -13.172399], - [136.077753, -13.209549], - [136.084353, -13.232629], - [136.064193, -13.226329], - [136.053193, -13.234409], - [136.050593, -13.249309], - [136.062073, -13.263149], - [136.047214, -13.309849], - [136.036874, -13.299189], - [136.041884, -13.289159], - [136.030433, -13.243239], - [136.012103, -13.21491], - [135.998023, -13.21295], - [135.979143, -13.22264], - [135.963624, -13.29479], - [135.948314, -13.25344], - [135.918654, -13.26843], - [135.908604, -13.28678], - [135.913314, -13.29507], - [135.886634, -13.32368], - [135.879975, -13.36307], - [135.905755, -13.37902], - [135.920635, -13.37755], - [135.925635, -13.39628], - [135.919085, -13.40444], - [135.926455, -13.417749], - [135.965165, -13.410479], - [135.972985, -13.402329], - [135.961075, -13.445589], - [135.951826, -13.448149], - [135.945305, -13.435009], - [135.929455, -13.442399], - [135.935726, -13.458239], - [135.931246, -13.466819], - [135.919546, -13.462459], - [135.894325, -13.42517], - [135.872605, -13.4289], - [135.859726, -13.44024], - [135.863696, -13.47687], - [135.855046, -13.51998], - [135.865047, -13.53144], - [135.869277, -13.561739], - [135.839737, -13.56636], - [135.835287, -13.59083], - [135.843037, -13.612979], - [135.865167, -13.622269], - [135.871228, -13.656649], - [135.880628, -13.669089], - [135.907398, -13.658179], - [135.921638, -13.675979], - [135.889108, -13.688029], - [135.877828, -13.700399], - [135.879388, -13.712039], - [135.914498, -13.747239], - [135.956238, -13.743358], - [135.978168, -13.731618], - [135.988287, -13.709958], - [136.009047, -13.707448], - [136.012417, -13.688488], - [136.033597, -13.682478], - [136.025907, -13.652058], - [136.040067, -13.656068], - [136.051416, -13.644778], - [136.083056, -13.655457], - [136.075586, -13.672767], - [136.069126, -13.669857], - [136.054867, -13.680647], - [136.055387, -13.694657], - [136.034257, -13.716478], - [136.035167, -13.746757], - [136.013488, -13.762818], - [136.006418, -13.791598], - [136.015738, -13.828347], - [135.991678, -13.857847], - [135.989078, -13.896127], - [135.969909, -13.913667], - [135.955749, -13.949297], - [135.941039, -13.953747], - [135.909739, -13.990438], - [135.91317, -14.042497], - [135.90524, -14.074617], - [135.89114, -14.094317], - [135.89487, -14.107427], - [135.87877, -14.166827], - [135.90359, -14.190517], - [135.89827, -14.193797], - [135.89303, -14.181367], - [135.88145, -14.181277], - [135.815821, -14.228967], - [135.791151, -14.231517], - [135.794031, -14.226067], - [135.766152, -14.260687], - [135.736252, -14.281947], - [135.702532, -14.271368], - [135.730142, -14.296677], - [135.667743, -14.399167], - [135.670323, -14.424377], - [135.656283, -14.418397], - [135.630993, -14.419537], - [135.628103, -14.427567], - [135.619613, -14.423108], - [135.586564, -14.484718], - [135.589514, -14.505147], - [135.568404, -14.514998], - [135.566784, -14.537497], - [135.555184, -14.536258], - [135.536614, -14.561138], - [135.518414, -14.625477], - [135.527444, -14.640947], - [135.539544, -14.642547], - [135.541054, -14.652717], - [135.519114, -14.653287], - [135.499494, -14.675787], - [135.484865, -14.667087], - [135.465005, -14.675787], - [135.440485, -14.694137], - [135.416335, -14.735027], - [135.405295, -14.736597], - [135.393335, -14.719188], - [135.382075, -14.725738], - [135.393785, -14.771877], - [135.393775, -14.808627], - [135.412355, -14.848547], - [135.410935, -14.873137], - [135.415485, -14.870597], - [135.428035, -14.891747], - [135.431135, -14.910706], - [135.455815, -14.948966], - [135.478818, -14.97606], - [135.579954, -15.045305], - [135.612313, -15.051995], - [135.639733, -15.044445], - [135.657323, -15.052535], - [135.669832, -15.071585], - [135.701872, -15.087524], - [135.724142, -15.116294], - [135.748971, -15.116514], - [135.86279, -15.182743], - [135.925168, -15.249212], - [135.981527, -15.286991], - [136.049786, -15.31679], - [136.071565, -15.33917], - [136.129694, -15.36429], - [136.164673, -15.392339], - [136.209752, -15.392878], - [136.207122, -15.401138], - [136.239712, -15.416088], - [136.241542, -15.448618], - [136.263172, -15.496728], - [136.270412, -15.535779], - [136.290291, -15.572359], - [136.317261, -15.589609], - [136.317491, -15.625989], - [136.326441, -15.601979], - [136.341321, -15.613408], - [136.41207, -15.626158], - [136.468909, -15.666438], - [136.533888, -15.731948], - [136.547587, -15.728898], - [136.540908, -15.739158], - [136.558397, -15.742148], - [136.555458, -15.750398], - [136.568427, -15.741838], - [136.559367, -15.727578], - [136.584917, -15.725048], - [136.621007, -15.706167], - [136.644067, -15.672446], - [136.664927, -15.678486], - [136.671607, -15.663926], - [136.679297, -15.667786], - [136.681827, -15.684616], - [136.696867, -15.683526], - [136.704537, -15.696756], - [136.724127, -15.696345], - [136.682667, -15.777916], - [136.642787, -15.769127], - [136.645412, -15.778971], - [136.658387, -15.781587], - [136.644717, -15.791607], - [136.670497, -15.794147], - [136.678637, -15.805237], - [136.674567, -15.814487], - [136.713767, -15.856807], - [136.714657, -15.877257], - [136.690797, -15.903408], - [136.706377, -15.931228], - [136.729497, -15.932397], - [136.771487, -15.889446], - [136.773207, -15.906387], - [136.760737, -15.916267], - [136.786047, -15.902796], - [136.795777, -15.911796], - [136.795857, -15.904506], - [136.822947, -15.899236], - [136.835187, -15.908286], - [136.856317, -15.907525], - [136.84937, -15.916257], - [136.866467, -15.913635], - [136.871707, -15.923575], - [136.887817, -15.922355], - [136.888767, -15.932285], - [136.892947, -15.924845], - [136.908127, -15.928475], - [136.904617, -15.936495], - [136.944306, -15.932914], - [136.953246, -15.938334], - [136.918756, -15.917084], - [136.912706, -15.899684], - [136.939456, -15.880174], - [136.970386, -15.874893], - [136.966306, -15.861563], - [136.977986, -15.850953], - [136.987306, -15.875133], - [136.998736, -15.880673], - [136.999325, -15.875133], - [137.005855, -15.879323], - [136.997926, -15.869493], - [137.003525, -15.873103], - [137.048095, -15.922252], - [137.083575, -15.944162], - [137.157935, -15.969461], - [137.204085, -15.999341], - [137.254414, -16.01235], - [137.308954, -16.085119], - [137.294925, -16.08112], - [137.354344, -16.114999], - [137.372604, -16.133349], - [137.373554, -16.126419], - [137.381344, -16.137018], - [137.383804, -16.131898], - [137.356924, -16.115629], - [137.388394, -16.126618], - [137.409194, -16.144318], - [137.425724, -16.139258], - [137.498494, -16.168017], - [137.556942, -16.174293], - [137.534312, -16.164233], - [137.573772, -16.174823], - [137.680621, -16.222322], - [137.729671, -16.232252], - [137.740891, -16.261771], - [137.768851, -16.285721], - [137.789851, -16.326001], - [137.862021, -16.42271], - [138.00118, -16.544509], - [137.999054, -25.996867], - [129.000584, -25.998613], - [129.001242, -14.879473], - [129.031662, -14.886404], - [129.044122, -14.907474], - [129.056582, -14.907864], - [129.054062, -14.895314], - [129.065942, -14.891074], - [129.101291, -14.915063], - [129.11272, -14.934444], - [129.10842, -14.989234], - [129.12264, -14.953124], - [129.13069, -14.948973], - [129.15677, -14.969083], - [129.15334, -14.983424], - [129.15817, -14.969313], - [129.188919, -14.987173], - [129.169509, -15.051533], - [129.180419, -15.076401], - [129.177609, -15.08892], - [129.195399, -15.102657], - [129.200549, -15.12261], - [129.17467, -15.147453], - [129.17492, -15.168373], - [129.15752, -15.184362], - [129.15819, -15.197602], - [129.17114, -15.195692], - [129.18047, -15.183122], - [129.18774, -15.189412], - [129.18662, -15.173913], - [129.1996, -15.146683], - [129.19563, -15.159303], - [129.2312, -15.175933], - [129.215479, -15.153844], - [129.238089, -15.128741], - [129.235149, -15.108587], - [129.249409, -15.091536], - [129.236489, -15.06779], - [129.251469, -15.055972], - [129.256039, -15.033953], - [129.261929, -15.038413], - [129.256339, -15.061991], - [129.261649, -15.043503], - [129.278198, -15.029293], - [129.292969, -15.041763], - [129.301618, -15.036533], - [129.293099, -15.040513], - [129.281248, -15.026843], - [129.265129, -15.032903], - [129.233489, -15.008293], - [129.241369, -14.986463], - [129.233929, -14.924383], - [129.241818, -14.910693], - [129.221738, -14.855403], - [129.228428, -14.839373], - [129.243178, -14.841342], - [129.240808, -14.852582], - [129.243858, -14.845302], - [129.262907, -14.850112], - [129.257278, -14.865012], - [129.317387, -14.859452], - [129.334857, -14.872992], - [129.350127, -14.873682], - [129.367257, -14.903172], - [129.392217, -14.909062], - [129.408627, -14.924932], - [129.409517, -14.917592], - [129.435317, -14.921391], - [129.482478, -14.94106], - [129.522298, -15.005689], - [129.524778, -15.028089], - [129.556113, -15.048727], - [129.603903, -15.108006], - [129.602213, -15.128906], - [129.560193, -15.155136], - [129.557244, -15.170536], - [129.563584, -15.179916], - [129.578933, -15.155626], - [129.611663, -15.153736], - [129.626233, -15.138026], - [129.656723, -15.139507], - [129.670853, -15.148547], - [129.684983, -15.142667], - [129.685663, -15.131027], - [129.652392, -15.099347], - [129.639822, -15.071217], - [129.640532, -15.042167], - [129.663332, -15.028097], - [129.654302, -15.023397], - [129.635252, -15.032857], - [129.621082, -14.998587], - [129.623012, -14.953257], - [129.608492, -14.947687], - [129.596407, -14.956909], - [129.599517, -14.970359], - [129.593247, -14.967069], - [129.547907, -14.878519], - [129.536477, -14.869029], - [129.530377, -14.843859], - [129.500257, -14.803219], - [129.499707, -14.790109], - [129.533837, -14.806799], - [129.570007, -14.847559], - [129.592117, -14.891009], - [129.618391, -14.875607], - [129.586151, -14.839377], - [129.574046, -14.806769], - [129.577546, -14.798299], - [129.632051, -14.843867], - [129.648571, -14.834407], - [129.684911, -14.848817], - [129.744561, -14.852327], - [129.768161, -14.841357], - [129.771701, -14.848977], - [129.802541, -14.858017], - [129.850091, -14.843308], - [129.851381, -14.826188], - [129.881371, -14.820108], - [129.885561, -14.813898], - [129.87627, -14.806888], - [129.86441, -14.810608], - [129.86395, -14.801678], - [129.88255, -14.799428], - [129.90283, -14.773218], - [129.86835, -14.776208], - [129.835941, -14.813298], - [129.812691, -14.822878], - [129.800841, -14.818908], - [129.768981, -14.828028], - [129.756541, -14.823598], - [129.749481, -14.809698], - [129.77681, -14.795378], - [129.7938, -14.769058], - [129.80403, -14.769418], - [129.81005, -14.760318], - [129.80066, -14.766808], - [129.79405, -14.756408], - [129.77603, -14.771298], - [129.77473, -14.783058], - [129.75847, -14.782018], - [129.734401, -14.793968], - [129.672401, -14.763468], - [129.662211, -14.746158], - [129.664664, -14.72606], - [129.644951, -14.715278], - [129.619276, -14.679653], - [129.597761, -14.674389], - [129.589191, -14.661259], - [129.580675, -14.637929], - [129.583625, -14.616239], - [129.69238, -14.612789], - [129.71891, -14.582829], - [129.756299, -14.569719], - [129.773869, -14.547569], - [129.771549, -14.538709], - [129.66934, -14.580489], - [129.566761, -14.562549], - [129.55692, -14.550809], - [129.526271, -14.55229], - [129.488235, -14.50334], - [129.523065, -14.465559], - [129.508855, -14.471969], - [129.490435, -14.460169], - [129.506885, -14.471739], - [129.482675, -14.50095], - [129.471875, -14.45945], - [129.481665, -14.44965], - [129.470015, -14.4582], - [129.464745, -14.44181], - [129.462615, -14.45106], - [129.453995, -14.44639], - [129.468615, -14.46057], - [129.474455, -14.49099], - [129.453185, -14.50506], - [129.447395, -14.49962], - [129.451155, -14.48358], - [129.422655, -14.46734], - [129.420725, -14.44993], - [129.397845, -14.41613], - [129.397945, -14.42647], - [129.379285, -14.41941], - [129.356765, -14.42363], - [129.360725, -14.3825], - [129.373895, -14.35473], - [129.367015, -14.3381], - [129.393515, -14.31682], - [129.410524, -14.28827], - [129.419444, -14.29112], - [129.418404, -14.27713], - [129.411594, -14.27946], - [129.409294, -14.23594], - [129.431104, -14.22639], - [129.453223, -14.19119], - [129.463853, -14.19368], - [129.496383, -14.127889], - [129.507143, -14.133229], - [129.512033, -14.127049], - [129.498263, -14.116479], - [129.507913, -14.103619], - [129.499522, -14.078959], - [129.486323, -14.07847], - [129.478982, -14.04793], - [129.491382, -14.047399], - [129.515832, -14.075369], - [129.525072, -14.052339], - [129.535592, -14.058359], - [129.535072, -14.081419], - [129.542232, -14.091149], - [129.527663, -14.129999], - [129.541991, -14.144528], - [129.556712, -14.142159], - [129.554812, -14.111869], - [129.567152, -14.083859], - [129.594868, -14.091231], - [129.609288, -14.069591], - [129.611678, -14.053581], - [129.590638, -14.032861], - [129.598097, -14.011061], - [129.609277, -14.035611], - [129.640877, -14.0472], - [129.721306, -14.01343], - [129.746045, -13.975139], - [129.752395, -13.952199], - [129.745905, -13.946999], - [129.747265, -13.919199], - [129.735105, -13.8972], - [129.716925, -13.89629], - [129.715525, -13.87888], - [129.722565, -13.84791], - [129.740024, -13.82687], - [129.781754, -13.789429], - [129.794833, -13.789519], - [129.785094, -13.768179], - [129.790163, -13.66691], - [129.834832, -13.56119], - [129.827732, -13.51814], - [129.817322, -13.50176], - [129.831192, -13.51147], - [129.873241, -13.49909], - [129.885301, -13.50323], - [129.871151, -13.49345], - [129.869401, -13.47977], - [129.897431, -13.44041], - [129.900511, -13.4986], - [129.909891, -13.51434], - [129.95684, -13.535809], - [130.008369, -13.533339], - [130.058688, -13.499448], - [130.064148, -13.503698], - [130.106367, -13.456308], - [130.125227, -13.466197], - [130.141607, -13.457117], - [130.182226, -13.408637], - [130.198365, -13.374207], - [130.214435, -13.368216], - [130.235484, -13.339676], - [130.277914, -13.334866], - [130.284054, -13.305756], - [130.239714, -13.282487], - [130.225204, -13.249197], - [130.164195, -13.178029], - [130.130515, -13.176539], - [130.116176, -13.164139], - [130.118885, -13.133399], - [130.134055, -13.107479], - [130.120155, -13.079379], - [130.141194, -13.000669], - [130.128194, -12.973699], - [130.141114, -12.933458], - [130.159093, -12.929228], - [130.175793, -12.910277], - [130.193763, -12.910507], - [130.192613, -12.927808], - [130.213243, -12.947028], - [130.247122, -12.948377], - [130.33824, -12.890117], - [130.33316, -12.881077], - [130.358339, -12.807237], - [130.352799, -12.795377], - [130.356219, -12.734777], - [130.346309, -12.715227], - [130.352029, -12.670337], - [130.372478, -12.682037], - [130.378858, -12.677677], - [130.404108, -12.701477], - [130.405538, -12.685337], - [130.396468, -12.680147], - [130.393578, -12.662287], - [130.412797, -12.655607], - [130.414147, -12.664525], - [130.424537, -12.656957], - [130.420267, -12.645427], - [130.438556, -12.633656], - [130.444666, -12.645516], - [130.460885, -12.639176], - [130.492105, -12.667286], - [130.513574, -12.667765], - [130.518305, -12.691376], - [130.501186, -12.717966], - [130.506126, -12.715006], - [130.517887, -12.731048] - ], - [ - [136.493656, -13.13719], - [136.49489, -13.130756], - [136.49038, -13.135076], - [136.493656, -13.13719] - ], - [ - [136.920057, -12.345105], - [136.89847, -12.362623], - [136.87916, -12.366323], - [136.87282, -12.380653], - [136.88238, -12.367913], - [136.910529, -12.367723], - [136.920057, -12.345105] - ], - [ - [136.484882, -12.038282], - [136.481587, -12.050148], - [136.464817, -12.050908], - [136.489277, -12.056258], - [136.484882, -12.038282] - ], - [ - [134.46031, -12.07059], - [134.447525, -12.074575], - [134.455485, -12.077815], - [134.46031, -12.07059] - ], - [ - [130.624928, -12.769794], - [130.624345, -12.775105], - [130.635194, -12.774195], - [130.624928, -12.769794] - ], - [ - [131.018004, -12.362999], - [131.018767, -12.37165], - [131.019277, -12.36212], - [131.018004, -12.362999] - ] - ], - [ - [ - [137.106124, -15.772531], - [137.097714, -15.812051], - [137.072865, -15.834402], - [137.074255, -15.846262], - [137.039845, -15.835522], - [137.044045, -15.817232], - [137.034495, -15.797122], - [137.016285, -15.805582], - [136.992615, -15.792132], - [136.989375, -15.760622], - [136.978755, -15.761972], - [136.982385, -15.749552], - [136.969665, -15.749093], - [136.980755, -15.740512], - [136.974575, -15.737572], - [136.982825, -15.723572], - [136.978375, -15.712422], - [136.963855, -15.730562], - [136.959095, -15.709892], - [136.947655, -15.717673], - [136.953935, -15.740043], - [136.947285, -15.733143], - [136.941105, -15.739463], - [136.941585, -15.725573], - [136.929805, -15.726463], - [136.940075, -15.719923], - [136.934035, -15.697333], - [136.939285, -15.690113], - [136.918305, -15.683763], - [136.938245, -15.685033], - [136.947925, -15.676002], - [136.941165, -15.672272], - [136.946895, -15.661552], - [136.936285, -15.660412], - [136.949345, -15.658282], - [136.961025, -15.640102], - [136.970115, -15.642822], - [136.969395, -15.661122], - [136.984195, -15.667002], - [136.983955, -15.674462], - [136.994454, -15.664532], - [136.994464, -15.657862], - [136.980475, -15.655032], - [136.976764, -15.634472], - [136.999964, -15.622862], - [136.991374, -15.584462], - [137.019914, -15.594871], - [137.033644, -15.635191], - [137.054504, -15.640401], - [137.058364, -15.628321], - [137.067104, -15.628771], - [137.059874, -15.641311], - [137.063104, -15.652701], - [137.081664, -15.655771], - [137.076064, -15.661641], - [137.085494, -15.712911], - [137.077784, -15.743281], - [137.083034, -15.747911], - [137.073434, -15.745851], - [137.080354, -15.749721], - [137.078484, -15.760671], - [137.106124, -15.772531] - ] - ], - [ - [ - [137.074485, -15.854732], - [137.068885, -15.866252], - [137.067715, -15.857212], - [137.074485, -15.854732] - ] - ], - [ - [ - [136.964126, -14.165254], - [136.954096, -14.193134], - [136.940156, -14.189194], - [136.934276, -14.203714], - [136.936096, -14.212164], - [136.951916, -14.219584], - [136.945716, -14.225514], - [136.959806, -14.244924], - [136.940727, -14.260354], - [136.947946, -14.276214], - [136.964576, -14.282604], - [136.935837, -14.281744], - [136.935927, -14.290894], - [136.952186, -14.294924], - [136.949957, -14.304204], - [136.909567, -14.284924], - [136.899007, -14.297104], - [136.904367, -14.310504], - [136.896407, -14.301764], - [136.890897, -14.307914], - [136.883518, -14.299064], - [136.876948, -14.302844], - [136.859568, -14.278155], - [136.845478, -14.282795], - [136.842458, -14.295135], - [136.830018, -14.277855], - [136.825548, -14.283315], - [136.819129, -14.277495], - [136.812379, -14.287385], - [136.824369, -14.293495], - [136.814759, -14.294365], - [136.802779, -14.288595], - [136.812999, -14.279355], - [136.809449, -14.270695], - [136.75546, -14.258056], - [136.694211, -14.275856], - [136.679741, -14.290886], - [136.682461, -14.297756], - [136.670382, -14.287047], - [136.649892, -14.296217], - [136.645632, -14.286077], - [136.633902, -14.283577], - [136.628193, -14.265037], - [136.540515, -14.254148], - [136.524595, -14.233819], - [136.490816, -14.237009], - [136.455507, -14.21805], - [136.450787, -14.20394], - [136.437348, -14.1963], - [136.395549, -14.202331], - [136.35658, -14.220111], - [136.3247, -14.246111], - [136.324461, -14.213321], - [136.411409, -14.169491], - [136.422119, -14.154981], - [136.421029, -14.142321], - [136.442608, -14.123471], - [136.429629, -14.094241], - [136.433159, -14.079761], - [136.41802, -14.058002], - [136.41817, -13.996012], - [136.408151, -13.976332], - [136.436141, -13.890793], - [136.429021, -13.869313], - [136.408042, -13.845313], - [136.409232, -13.830973], - [136.422572, -13.815643], - [136.434711, -13.815113], - [136.446721, -13.822143], - [136.440451, -13.831393], - [136.457131, -13.819233], - [136.46276, -13.834503], - [136.49563, -13.840832], - [136.524569, -13.821482], - [136.523819, -13.791532], - [136.531889, -13.785022], - [136.542578, -13.789102], - [136.539218, -13.814042], - [136.552228, -13.819822], - [136.560248, -13.815262], - [136.566188, -13.829942], - [136.574167, -13.798552], - [136.583937, -13.808611], - [136.599757, -13.807041], - [136.594097, -13.787031], - [136.624416, -13.790771], - [136.638016, -13.783551], - [136.629276, -13.777251], - [136.630546, -13.766191], - [136.607676, -13.763611], - [136.618156, -13.744171], - [136.607306, -13.730052], - [136.588637, -13.724342], - [136.592367, -13.696582], - [136.574237, -13.694262], - [136.577777, -13.687402], - [136.612126, -13.678642], - [136.618906, -13.688692], - [136.636356, -13.688511], - [136.617066, -13.706002], - [136.632126, -13.720561], - [136.647455, -13.700131], - [136.661865, -13.704111], - [136.664035, -13.694411], - [136.676275, -13.702191], - [136.678505, -13.680081], - [136.693774, -13.652191], - [136.695304, -13.662041], - [136.710484, -13.657541], - [136.715263, -13.665941], - [136.728553, -13.65216], - [136.730973, -13.68702], - [136.719883, -13.71774], - [136.707274, -13.71567], - [136.694464, -13.728801], - [136.686044, -13.727151], - [136.681074, -13.739421], - [136.685394, -13.748151], - [136.690624, -13.744591], - [136.689524, -13.7639], - [136.697054, -13.77492], - [136.735352, -13.77096], - [136.712493, -13.79381], - [136.716843, -13.8108], - [136.729142, -13.81972], - [136.718303, -13.8358], - [136.725352, -13.842279], - [136.754461, -13.832359], - [136.807348, -13.856016], - [136.837318, -13.842907], - [136.845488, -13.815048], - [136.837278, -13.802438], - [136.813719, -13.812068], - [136.796999, -13.834188], - [136.814739, -13.801918], - [136.839308, -13.780308], - [136.840528, -13.745188], - [136.864368, -13.755438], - [136.888657, -13.753938], - [136.905216, -13.764127], - [136.924406, -13.806527], - [136.912026, -13.807557], - [136.883996, -13.842807], - [136.858486, -13.893216], - [136.857806, -13.912836], - [136.812587, -13.904137], - [136.793188, -13.914027], - [136.778908, -13.934017], - [136.762279, -14.000987], - [136.778979, -14.023927], - [136.807518, -14.018116], - [136.807558, -14.035856], - [136.784099, -14.039787], - [136.777319, -14.058027], - [136.775249, -14.046187], - [136.760199, -14.046427], - [136.74788, -14.066527], - [136.75222, -14.086937], - [136.73779, -14.078357], - [136.73662, -14.065527], - [136.72059, -14.069917], - [136.72413, -14.078137], - [136.713261, -14.093137], - [136.72065, -14.104257], - [136.711351, -14.099817], - [136.699661, -14.114597], - [136.705451, -14.140767], - [136.715591, -14.142247], - [136.707081, -14.168987], - [136.72625, -14.189167], - [136.785429, -14.193116], - [136.788169, -14.184906], - [136.77089, -14.169466], - [136.782419, -14.163386], - [136.776809, -14.144566], - [136.788569, -14.151586], - [136.800339, -14.146966], - [136.810919, -14.164156], - [136.842938, -14.183075], - [136.853918, -14.206475], - [136.865778, -14.210775], - [136.893617, -14.203515], - [136.914747, -14.171475], - [136.911297, -14.137615], - [136.930696, -14.143875], - [136.920357, -14.152555], - [136.928337, -14.164345], - [136.945176, -14.157075], - [136.964126, -14.165254] - ] - ], - [ - [ - [136.962484, -13.626417], - [136.951214, -13.648927], - [136.950334, -13.643497], - [136.925485, -13.644537], - [136.933315, -13.634437], - [136.962484, -13.626417] - ] - ], - [ - [ - [136.949935, -15.772453], - [136.946665, -15.777193], - [136.940145, -15.768603], - [136.947145, -15.759343], - [136.949935, -15.772453] - ] - ], - [ - [ - [136.937355, -13.662817], - [136.929005, -13.667157], - [136.925815, -13.661827], - [136.937355, -13.662817] - ] - ], - [ - [ - [136.913436, -13.662858], - [136.900606, -13.678008], - [136.886987, -13.676088], - [136.908506, -13.658408], - [136.913436, -13.662858] - ] - ], - [ - [ - [136.904895, -15.588552], - [136.895675, -15.598593], - [136.886825, -15.594063], - [136.884005, -15.607273], - [136.861975, -15.607353], - [136.875365, -15.617193], - [136.881905, -15.613483], - [136.880825, -15.636743], - [136.845486, -15.647193], - [136.837356, -15.628553], - [136.851696, -15.624733], - [136.829906, -15.618373], - [136.843096, -15.610263], - [136.831096, -15.601663], - [136.855255, -15.583513], - [136.852595, -15.569843], - [136.841995, -15.562943], - [136.841565, -15.542383], - [136.860455, -15.532703], - [136.867255, -15.507522], - [136.870615, -15.517352], - [136.883325, -15.509132], - [136.873745, -15.532042], - [136.890685, -15.579613], - [136.904895, -15.588552] - ] - ], - [ - [ - [136.840575, -15.577173], - [136.827626, -15.585053], - [136.801646, -15.582414], - [136.796886, -15.573144], - [136.781596, -15.582384], - [136.773566, -15.578634], - [136.793056, -15.560034], - [136.833155, -15.555473], - [136.835705, -15.563613], - [136.827886, -15.570603], - [136.836515, -15.566203], - [136.840575, -15.577173] - ] - ], - [ - [ - [136.837568, -11.664256], - [136.824818, -11.676206], - [136.809578, -11.673236], - [136.823708, -11.658686], - [136.833908, -11.656566], - [136.837568, -11.664256] - ] - ], - [ - [ - [136.836326, -15.686594], - [136.813806, -15.700344], - [136.802496, -15.697834], - [136.804276, -15.685254], - [136.791066, -15.684344], - [136.779516, -15.701305], - [136.798166, -15.703364], - [136.804436, -15.723814], - [136.776517, -15.746355], - [136.764277, -15.742725], - [136.746187, -15.749915], - [136.739747, -15.762665], - [136.732167, -15.758026], - [136.728487, -15.734745], - [136.738907, -15.712065], - [136.749007, -15.718635], - [136.751267, -15.712775], - [136.729717, -15.700195], - [136.736837, -15.697155], - [136.734546, -15.677615], - [136.740996, -15.672875], - [136.735426, -15.646665], - [136.765636, -15.640404], - [136.780196, -15.648224], - [136.794656, -15.644974], - [136.829136, -15.662984], - [136.828066, -15.676874], - [136.836326, -15.686594] - ] - ], - [ - [ - [136.829616, -15.730744], - [136.817716, -15.730614], - [136.815596, -15.746874], - [136.812226, -15.737264], - [136.807077, -15.746075], - [136.800787, -15.742225], - [136.803376, -15.726074], - [136.829616, -15.730744] - ] - ], - [ - [ - [136.827308, -12.129923], - [136.814998, -12.141084], - [136.801938, -12.127404], - [136.800208, -12.132934], - [136.796247, -12.106054], - [136.797077, -12.088774], - [136.823977, -12.072784], - [136.827308, -12.129923] - ] - ], - [ - [ - [136.819096, -15.603223], - [136.791326, -15.615374], - [136.790056, -15.608824], - [136.777236, -15.608004], - [136.791256, -15.590644], - [136.819096, -15.603223] - ] - ], - [ - [ - [136.766169, -11.02851], - [136.73484, -11.11465], - [136.73698, -11.12776], - [136.721711, -11.15089], - [136.714661, -11.17652], - [136.720001, -11.19382], - [136.711641, -11.19471], - [136.706451, -11.21119], - [136.694982, -11.21885], - [136.684682, -11.21334], - [136.666802, -11.22487], - [136.684022, -11.24876], - [136.670292, -11.24669], - [136.662123, -11.26418], - [136.648383, -11.26347], - [136.644893, -11.28233], - [136.633343, -11.27766], - [136.625083, -11.28433], - [136.634214, -11.29484], - [136.623764, -11.30363], - [136.627134, -11.32872], - [136.616145, -11.32847], - [136.599605, -11.34758], - [136.588726, -11.383529], - [136.562327, -11.398509], - [136.555067, -11.416769], - [136.537658, -11.426099], - [136.537578, -11.440329], - [136.521988, -11.444579], - [136.525388, -11.435079], - [136.518358, -11.43078], - [136.499968, -11.44179], - [136.502218, -11.45556], - [136.483889, -11.45655], - [136.474369, -11.4491], - [136.494748, -11.43779], - [136.501938, -11.42477], - [136.497797, -11.39225], - [136.520457, -11.3956], - [136.517467, -11.38422], - [136.530177, -11.37752], - [136.533446, -11.36562], - [136.547776, -11.36499], - [136.554446, -11.35608], - [136.551036, -11.34567], - [136.563166, -11.34743], - [136.565955, -11.33532], - [136.582935, -11.32464], - [136.576895, -11.31626], - [136.583174, -11.2817], - [136.620283, -11.23807], - [136.622882, -11.21006], - [136.627012, -11.20498], - [136.631112, -11.21381], - [136.643602, -11.20989], - [136.657292, -11.18495], - [136.672412, -11.19701], - [136.687261, -11.19272], - [136.706671, -11.16791], - [136.703041, -11.15287], - [136.696181, -11.15184], - [136.704771, -11.14791], - [136.70666, -11.12509], - [136.69374, -11.11974], - [136.71582, -11.12466], - [136.72215, -11.10987], - [136.70068, -11.0923], - [136.7271, -11.09723], - [136.737569, -11.07601], - [136.734059, -11.06064], - [136.71279, -11.054701], - [136.725759, -11.039601], - [136.736029, -11.05058], - [136.745189, -11.04823], - [136.736759, -11.033861], - [136.750929, -11.030261], - [136.759109, -11.017651], - [136.766169, -11.02851] - ] - ], - [ - [ - [136.762108, -11.004551], - [136.747889, -11.020101], - [136.736599, -11.007311], - [136.762108, -11.004551] - ] - ], - [ - [ - [136.753982, -13.69057], - [136.733483, -13.6957], - [136.738182, -13.68636], - [136.753982, -13.69057] - ] - ], - [ - [ - [136.71275, -12.217115], - [136.700228, -12.228824], - [136.696791, -12.222728], - [136.705807, -12.212869], - [136.696638, -12.207066], - [136.709109, -12.203675], - [136.71275, -12.217115] - ] - ], - [ - [ - [136.702274, -13.620411], - [136.695284, -13.625881], - [136.701794, -13.634981], - [136.686344, -13.631341], - [136.702274, -13.620411] - ] - ], - [ - [ - [136.688384, -13.634971], - [136.680644, -13.647671], - [136.680894, -13.633101], - [136.688384, -13.634971] - ] - ], - [ - [ - [136.688153, -11.821446], - [136.669764, -11.836656], - [136.643024, -11.839746], - [136.688153, -11.821446] - ] - ], - [ - [ - [136.682624, -13.658801], - [136.676245, -13.678881], - [136.665975, -13.684711], - [136.659665, -13.679681], - [136.668715, -13.663831], - [136.662425, -13.656321], - [136.682624, -13.658801] - ] - ], - [ - [ - [136.681306, -15.605335], - [136.673946, -15.612206], - [136.646446, -15.606156], - [136.654756, -15.593636], - [136.669456, -15.590506], - [136.681306, -15.605335] - ] - ], - [ - [ - [136.656735, -13.655251], - [136.647775, -13.665681], - [136.643706, -13.656942], - [136.656735, -13.655251] - ] - ], - [ - [ - [136.641666, -13.664142], - [136.631296, -13.673322], - [136.632236, -13.659552], - [136.641136, -13.656852], - [136.641666, -13.664142] - ] - ], - [ - [ - [136.630207, -12.863185], - [136.621447, -12.868815], - [136.618247, -12.858525], - [136.626427, -12.854485], - [136.630207, -12.863185] - ] - ], - [ - [ - [136.627212, -11.740267], - [136.591703, -11.764247], - [136.584563, -11.774847], - [136.589243, -11.782657], - [136.579823, -11.788737], - [136.511514, -11.804927], - [136.515704, -11.786858], - [136.534313, -11.776627], - [136.533783, -11.760238], - [136.546833, -11.771687], - [136.545153, -11.780907], - [136.559083, -11.780987], - [136.557623, -11.767427], - [136.572103, -11.778677], - [136.565103, -11.760777], - [136.587683, -11.764577], - [136.587253, -11.756327], - [136.578653, -11.755057], - [136.587512, -11.744117], - [136.609632, -11.751297], - [136.614942, -11.737757], - [136.627212, -11.740267] - ] - ], - [ - [ - [136.617327, -15.555366], - [136.604837, -15.560876], - [136.596507, -15.581297], - [136.604807, -15.615197], - [136.598967, -15.620047], - [136.605017, -15.623787], - [136.594287, -15.626017], - [136.589687, -15.645317], - [136.570317, -15.649338], - [136.550887, -15.639868], - [136.539177, -15.653768], - [136.522848, -15.654398], - [136.494748, -15.643548], - [136.513388, -15.622628], - [136.504508, -15.592098], - [136.520058, -15.576227], - [136.522078, -15.563017], - [136.511068, -15.544567], - [136.525658, -15.538397], - [136.525328, -15.530947], - [136.566817, -15.530606], - [136.578647, -15.510876], - [136.610417, -15.523836], - [136.617327, -15.555366] - ] - ], - [ - [ - [136.602557, -13.657002], - [136.591257, -13.667532], - [136.575547, -13.667042], - [136.586297, -13.653812], - [136.602557, -13.657002] - ] - ], - [ - [ - [136.584137, -13.723062], - [136.574597, -13.729862], - [136.569678, -13.724392], - [136.584137, -13.723062] - ] - ], - [ - [ - [136.579127, -13.775322], - [136.573927, -13.787252], - [136.572087, -13.773762], - [136.579127, -13.775322] - ] - ], - [ - [ - [136.541648, -13.771392], - [136.520229, -13.792622], - [136.4993, -13.782973], - [136.4904, -13.759243], - [136.469211, -13.746533], - [136.47113, -13.720553], - [136.49518, -13.713383], - [136.50116, -13.720553], - [136.514589, -13.718563], - [136.518029, -13.710003], - [136.509829, -13.698513], - [136.530929, -13.703463], - [136.538558, -13.738902], - [136.531719, -13.752282], - [136.541648, -13.771392] - ] - ], - [ - [ - [136.499804, -11.797268], - [136.491224, -11.816828], - [136.499824, -11.818508], - [136.477945, -11.846658], - [136.486245, -11.884157], - [136.479145, -11.898748], - [136.464126, -11.904068], - [136.468366, -11.896948], - [136.457885, -11.889858], - [136.469715, -11.876498], - [136.460535, -11.866558], - [136.473945, -11.858868], - [136.470835, -11.841468], - [136.464525, -11.841708], - [136.479874, -11.819098], - [136.477444, -11.801248], - [136.499804, -11.797268] - ] - ], - [ - [ - [136.473819, -11.46797], - [136.4617, -11.49859], - [136.46606, -11.50526], - [136.44901, -11.53193], - [136.425871, -11.53669], - [136.427131, -11.54652], - [136.409031, -11.54393], - [136.404221, -11.55467], - [136.374201, -11.56564], - [136.366511, -11.53469], - [136.381191, -11.55039], - [136.386101, -11.52542], - [136.400881, -11.52179], - [136.402371, -11.52733], - [136.42184, -11.51297], - [136.43019, -11.49093], - [136.44657, -11.49431], - [136.456289, -11.47374], - [136.473819, -11.46797] - ] - ], - [ - [ - [136.459196, -11.904748], - [136.453816, -11.917408], - [136.434886, -11.919348], - [136.457006, -11.897068], - [136.459196, -11.904748] - ] - ], - [ - [ - [136.431975, -11.879018], - [136.430276, -11.894948], - [136.408816, -11.893608], - [136.404576, -11.902198], - [136.385996, -11.906609], - [136.366946, -11.902899], - [136.398486, -11.889768], - [136.396416, -11.878018], - [136.409726, -11.878468], - [136.408095, -11.855188], - [136.418555, -11.874048], - [136.426115, -11.865578], - [136.431975, -11.879018] - ] - ], - [ - [ - [136.419932, -13.631644], - [136.396723, -13.627855], - [136.400772, -13.620805], - [136.417072, -13.621805], - [136.419932, -13.631644] - ] - ], - [ - [ - [136.400763, -13.714154], - [136.384133, -13.711174], - [136.380243, -13.694565], - [136.400763, -13.714154] - ] - ], - [ - [ - [136.383432, -13.313576], - [136.374872, -13.319426], - [136.369122, -13.313306], - [136.383432, -13.313576] - ] - ], - [ - [ - [136.377082, -11.58349], - [136.365052, -11.59796], - [136.355422, -11.59435], - [136.337662, -11.60588], - [136.332172, -11.62351], - [136.316692, -11.61752], - [136.296873, -11.64159], - [136.289763, -11.62228], - [136.264663, -11.621041], - [136.256643, -11.632671], - [136.270163, -11.627251], - [136.272233, -11.639], - [136.261463, -11.66216], - [136.230733, -11.668041], - [136.231193, -11.655611], - [136.223743, -11.652901], - [136.213543, -11.659111], - [136.214343, -11.674141], - [136.203913, -11.665891], - [136.172494, -11.694251], - [136.159534, -11.693002], - [136.163784, -11.678542], - [136.180864, -11.675151], - [136.168143, -11.656512], - [136.169523, -11.641032], - [136.207583, -11.656521], - [136.209983, -11.641831], - [136.230733, -11.645671], - [136.232913, -11.628271], - [136.223513, -11.618331], - [136.242543, -11.620251], - [136.239793, -11.600361], - [136.265112, -11.572561], - [136.270962, -11.585331], - [136.280012, -11.582961], - [136.281282, -11.603181], - [136.315092, -11.60385], - [136.314172, -11.59278], - [136.296752, -11.591881], - [136.295482, -11.580131], - [136.308892, -11.570861], - [136.321042, -11.58577], - [136.340642, -11.58871], - [136.338342, -11.57955], - [136.348432, -11.57729], - [136.345671, -11.5634], - [136.358161, -11.56011], - [136.360791, -11.54949], - [136.371681, -11.56553], - [136.369062, -11.58067], - [136.377082, -11.58349] - ] - ], - [ - [ - [136.373053, -13.825564], - [136.368853, -13.841814], - [136.335423, -13.843754], - [136.354713, -13.810264], - [136.367083, -13.811544], - [136.373053, -13.825564] - ] - ], - [ - [ - [136.335427, -11.958279], - [136.323147, -11.961219], - [136.332897, -11.945279], - [136.335427, -11.958279] - ] - ], - [ - [ - [136.147129, -12.053861], - [136.140308, -12.038161], - [136.131358, -12.039642], - [136.132938, -12.025741], - [136.145798, -12.027181], - [136.146278, -12.037691], - [136.155458, -12.041071], - [136.172658, -12.029951], - [136.171478, -12.013221], - [136.185398, -12.029141], - [136.192508, -12.027091], - [136.189238, -12.000751], - [136.198548, -12.006161], - [136.202307, -11.996161], - [136.207848, -12.008171], - [136.199848, -12.021981], - [136.217628, -12.035931], - [136.256157, -12.00603], - [136.271527, -12.00238], - [136.281837, -11.97524], - [136.313057, -11.974099], - [136.304337, -11.99343], - [136.312377, -11.985739], - [136.317197, -11.992519], - [136.310567, -12.01076], - [136.277578, -12.03481], - [136.197738, -12.060081], - [136.194678, -12.076601], - [136.178028, -12.076861], - [136.161018, -12.065591], - [136.128318, -12.073682], - [136.118308, -12.061262], - [136.119438, -12.050862], - [136.138168, -12.060541], - [136.147129, -12.053861] - ] - ], - [ - [ - [136.301774, -13.734425], - [136.266165, -13.737465], - [136.253875, -13.747706], - [136.254875, -13.759685], - [136.276385, -13.756365], - [136.275505, -13.777935], - [136.283685, -13.787005], - [136.273495, -13.793175], - [136.259995, -13.784215], - [136.254635, -13.832085], - [136.244675, -13.838445], - [136.247865, -13.850025], - [136.199396, -13.853816], - [136.211186, -13.824146], - [136.189086, -13.794806], - [136.192176, -13.773396], - [136.185656, -13.768176], - [136.150076, -13.776706], - [136.144727, -13.785386], - [136.157616, -13.799886], - [136.155246, -13.816826], - [136.169226, -13.820606], - [136.168246, -13.834606], - [136.127887, -13.835816], - [136.105647, -13.815847], - [136.119807, -13.787807], - [136.109777, -13.764347], - [136.112917, -13.731267], - [136.122546, -13.722267], - [136.127966, -13.736357], - [136.139486, -13.735657], - [136.145216, -13.747427], - [136.173646, -13.748326], - [136.181666, -13.736266], - [136.173616, -13.727426], - [136.180896, -13.718276], - [136.173686, -13.707096], - [136.187466, -13.699696], - [136.192506, -13.679606], - [136.181396, -13.677657], - [136.199615, -13.665286], - [136.221805, -13.662426], - [136.254355, -13.673716], - [136.252325, -13.693026], - [136.266655, -13.691946], - [136.274005, -13.705526], - [136.292494, -13.707505], - [136.301774, -13.734425] - ] - ], - [ - [ - [136.272863, -13.460176], - [136.267344, -13.466816], - [136.251414, -13.453667], - [136.244334, -13.461887], - [136.238744, -13.442667], - [136.248234, -13.435917], - [136.272863, -13.460176] - ] - ], - [ - [ - [136.248265, -13.594626], - [136.235535, -13.603056], - [136.225165, -13.600656], - [136.219295, -13.588427], - [136.236365, -13.594816], - [136.231555, -13.585536], - [136.237355, -13.577536], - [136.248265, -13.594626] - ] - ], - [ - [ - [136.209983, -11.634031], - [136.207923, -11.641261], - [136.195433, -11.629851], - [136.193373, -11.613802], - [136.205063, -11.615271], - [136.209983, -11.634031] - ] - ], - [ - [ - [136.205914, -13.454747], - [136.194194, -13.472547], - [136.181294, -13.463577], - [136.170764, -13.468507], - [136.165504, -13.485317], - [136.151024, -13.468317], - [136.142125, -13.470317], - [136.143565, -13.487157], - [136.149145, -13.495327], - [136.156245, -13.491267], - [136.167725, -13.509837], - [136.165015, -13.523947], - [136.155105, -13.518717], - [136.149185, -13.525017], - [136.149985, -13.557897], - [136.140525, -13.564187], - [136.126615, -13.543807], - [136.150055, -13.511017], - [136.139135, -13.498097], - [136.126935, -13.503537], - [136.132125, -13.488017], - [136.121755, -13.482207], - [136.135964, -13.452557], - [136.130404, -13.428477], - [136.141754, -13.419147], - [136.127034, -13.374578], - [136.089224, -13.364708], - [136.092594, -13.358278], - [136.115214, -13.357588], - [136.140784, -13.386437], - [136.150504, -13.384667], - [136.161844, -13.417417], - [136.180394, -13.426297], - [136.177114, -13.437577], - [136.205914, -13.454747] - ] - ], - [ - [ - [136.15581, -12.189161], - [136.11385, -12.199192], - [136.10442, -12.189712], - [136.1216, -12.167972], - [136.12989, -12.177682], - [136.14779, -12.171311], - [136.15581, -12.189161] - ] - ], - [ - [ - [136.155414, -11.696282], - [136.130864, -11.725312], - [136.125254, -11.711182], - [136.140624, -11.697632], - [136.138214, -11.682832], - [136.155414, -11.696282] - ] - ], - [ - [ - [136.122792, -11.544183], - [136.108792, -11.567003], - [136.110642, -11.547903], - [136.122792, -11.544183] - ] - ], - [ - [ - [136.108895, -13.464088], - [136.106445, -13.471648], - [136.082655, -13.471998], - [136.074755, -13.482588], - [136.082195, -13.443638], - [136.108895, -13.464088] - ] - ], - [ - [ - [136.104595, -11.746202], - [136.074655, -11.771272], - [136.077645, -11.752752], - [136.099785, -11.741122], - [136.104595, -11.746202] - ] - ], - [ - [ - [136.095613, -13.298418], - [136.091934, -13.321738], - [136.077964, -13.298008], - [136.095613, -13.298418] - ] - ], - [ - [ - [136.090453, -11.582703], - [136.079783, -11.604843], - [136.077273, -11.586763], - [136.090453, -11.582703] - ] - ], - [ - [ - [136.071371, -12.276932], - [136.048332, -12.310882], - [136.048061, -12.284882], - [136.071371, -12.276932] - ] - ], - [ - [ - [136.067733, -11.635683], - [136.062794, -11.646863], - [136.054544, -11.641323], - [136.062573, -11.627993], - [136.067733, -11.635683] - ] - ], - [ - [ - [136.056024, -11.653073], - [135.993385, -11.719243], - [135.990645, -11.703993], - [135.981455, -11.714943], - [135.950175, -11.696043], - [135.960175, -11.670513], - [136.004444, -11.650553], - [136.012004, -11.654403], - [136.009834, -11.648413], - [136.024164, -11.639043], - [136.034934, -11.647303], - [136.048924, -11.644253], - [136.056024, -11.653073] - ] - ], - [ - [ - [136.050906, -11.786292], - [136.028756, -11.812382], - [136.041156, -11.783802], - [136.050906, -11.786292] - ] - ], - [ - [ - [136.047429, -12.101182], - [136.036989, -12.106052], - [136.041269, -12.128212], - [136.032549, -12.135683], - [136.028, -12.159433], - [136.026079, -12.103583], - [136.035589, -12.092602], - [136.047429, -12.101182] - ] - ], - [ - [ - [135.992587, -11.851112], - [135.980657, -11.856643], - [135.961817, -11.879783], - [135.956867, -11.898993], - [135.945968, -11.904633], - [135.942087, -11.879653], - [135.982267, -11.848053], - [135.992587, -11.851112] - ] - ], - [ - [ - [135.978115, -11.737083], - [135.960546, -11.760233], - [135.940016, -11.763943], - [135.937276, -11.749253], - [135.941186, -11.741003], - [135.952426, -11.742153], - [135.952666, -11.732653], - [135.975595, -11.731323], - [135.978115, -11.737083] - ] - ], - [ - [ - [135.975744, -13.343869], - [135.961334, -13.32138], - [135.971894, -13.327589], - [135.975744, -13.343869] - ] - ], - [ - [ - [135.735321, -11.936628], - [135.760508, -11.912655], - [135.781288, -11.909634], - [135.830238, -11.860994], - [135.832978, -11.870264], - [135.835087, -11.837614], - [135.853777, -11.848264], - [135.871577, -11.832464], - [135.883537, -11.804114], - [135.900167, -11.808203], - [135.903737, -11.793853], - [135.888937, -11.803214], - [135.885507, -11.792134], - [135.866017, -11.782734], - [135.864886, -11.767594], - [135.876486, -11.755624], - [135.889326, -11.762194], - [135.907106, -11.757243], - [135.909846, -11.768203], - [135.928196, -11.775003], - [135.937917, -11.802593], - [135.907837, -11.823573], - [135.900697, -11.851473], - [135.857988, -11.878434], - [135.797619, -11.964684], - [135.776019, -11.976524], - [135.741819, -11.975565], - [135.734859, -12.001675], - [135.63707, -12.017875], - [135.60538, -12.032916], - [135.59206, -12.055526], - [135.564621, -12.069766], - [135.56439, -12.056996], - [135.55418, -12.048396], - [135.564727, -12.031247], - [135.56314, -12.008376], - [135.58524, -11.980006], - [135.588819, -11.968496], - [135.581489, -11.961246], - [135.594139, -11.950766], - [135.605259, -11.960846], - [135.618799, -11.959746], - [135.615569, -11.970466], - [135.632079, -11.975025], - [135.656779, -11.964905], - [135.669789, -11.945945], - [135.666829, -11.935655], - [135.735321, -11.936628] - ] - ], - [ - [ - [135.768161, -14.875195], - [135.764091, -14.901775], - [135.732112, -14.892195], - [135.707962, -14.912915], - [135.686912, -14.903775], - [135.716892, -14.882165], - [135.721002, -14.860435], - [135.709522, -14.851966], - [135.725882, -14.834766], - [135.747502, -14.836555], - [135.759322, -14.847655], - [135.768161, -14.875195] - ] - ], - [ - [ - [135.735122, -14.287987], - [135.732922, -14.295087], - [135.728052, -14.291247], - [135.735122, -14.287987] - ] - ], - [ - [ - [135.630353, -14.496197], - [135.607973, -14.516337], - [135.603083, -14.490337], - [135.624893, -14.488407], - [135.630353, -14.496197] - ] - ], - [ - [ - [135.169809, -11.702139], - [135.167609, -11.709249], - [135.156499, -11.705709], - [135.150139, -11.687599], - [135.157139, -11.686159], - [135.169809, -11.702139] - ] - ], - [ - [ - [135.122481, -11.927419], - [135.107501, -11.942279], - [135.088911, -11.941189], - [135.056951, -11.95451], - [135.047021, -11.94068], - [135.057091, -11.91925], - [135.082701, -11.916079], - [135.122481, -11.927419] - ] - ], - [ - [ - [135.002893, -12.09141], - [134.989573, -12.09383], - [134.976433, -12.06569], - [134.997853, -12.07227], - [135.002893, -12.09141] - ] - ], - [ - [ - [134.990602, -12.03525], - [134.958853, -12.05308], - [134.960463, -12.0646], - [134.944023, -12.06261], - [134.932823, -12.044281], - [134.910913, -12.033971], - [134.908513, -12.023371], - [134.954352, -12.01423], - [134.990602, -12.03525] - ] - ], - [ - [ - [134.959263, -12.08315], - [134.956623, -12.09494], - [134.951433, -12.09306], - [134.942153, -12.07099], - [134.952263, -12.07123], - [134.959263, -12.08315] - ] - ], - [ - [ - [134.931963, -12.06193], - [134.925893, -12.064361], - [134.917413, -12.054151], - [134.924743, -12.051931], - [134.931963, -12.06193] - ] - ], - [ - [ - [134.929253, -12.09067], - [134.904654, -12.137371], - [134.869064, -12.125941], - [134.874954, -12.117751], - [134.863734, -12.109031], - [134.866133, -12.070681], - [134.847613, -12.042931], - [134.880283, -12.061391], - [134.906383, -12.065451], - [134.929253, -12.09067] - ] - ], - [ - [ - [134.865363, -12.025011], - [134.851123, -12.037691], - [134.826853, -12.020282], - [134.839813, -12.006591], - [134.859983, -12.014661], - [134.865363, -12.025011] - ] - ], - [ - [ - [134.831323, -12.044541], - [134.798153, -12.033082], - [134.798003, -12.016802], - [134.809833, -12.016702], - [134.831323, -12.044541] - ] - ], - [ - [ - [134.222104, -11.953928], - [134.217524, -11.963648], - [134.207884, -11.962188], - [134.222104, -11.953928] - ] - ], - [ - [ - [134.185286, -12.096108], - [134.172076, -12.112479], - [134.166766, -12.107199], - [134.172666, -12.089399], - [134.182816, -12.086969], - [134.185286, -12.096108] - ] - ], - [ - [ - [133.493357, -11.511193], - [133.491077, -11.519253], - [133.434468, -11.505993], - [133.416458, -11.526773], - [133.383088, -11.543123], - [133.401578, -11.506193], - [133.390018, -11.488443], - [133.423588, -11.490613], - [133.466588, -11.464312], - [133.493357, -11.511193] - ] - ], - [ - [ - [133.481727, -11.615863], - [133.480007, -11.623213], - [133.446647, -11.617084], - [133.426567, -11.629274], - [133.421377, -11.645304], - [133.415157, -11.625234], - [133.388328, -11.633404], - [133.402337, -11.659764], - [133.396017, -11.673544], - [133.370208, -11.681545], - [133.358758, -11.664915], - [133.364858, -11.642774], - [133.349518, -11.623434], - [133.392998, -11.603254], - [133.409407, -11.584394], - [133.438987, -11.587923], - [133.441267, -11.599003], - [133.444827, -11.592563], - [133.467187, -11.591333], - [133.481727, -11.615863] - ] - ], - [ - [ - [133.016762, -11.067574], - [133.005392, -11.086534], - [132.994182, -11.087524], - [132.977682, -11.043774], - [133.016762, -11.067574] - ] - ], - [ - [ - [132.919843, -11.168825], - [132.905323, -11.161225], - [132.904223, -11.150115], - [132.903833, -11.160995], - [132.876693, -11.170075], - [132.871923, -11.156055], - [132.857293, -11.146075], - [132.863263, -11.139545], - [132.876753, -11.146695], - [132.917283, -11.139894], - [132.919843, -11.168825] - ] - ], - [ - [ - [132.876663, -11.046594], - [132.870213, -11.060475], - [132.852374, -11.058625], - [132.858583, -11.044854], - [132.876663, -11.046594] - ] - ], - [ - [ - [132.832344, -10.973844], - [132.825534, -10.998114], - [132.819094, -10.967934], - [132.830764, -10.967294], - [132.832344, -10.973844] - ] - ], - [ - [ - [132.803154, -11.388587], - [132.798554, -11.395017], - [132.780134, -11.389427], - [132.775364, -11.375857], - [132.803154, -11.388587] - ] - ], - [ - [ - [132.733055, -11.285586], - [132.730725, -11.295746], - [132.719755, -11.289386], - [132.733055, -11.285586] - ] - ], - [ - [ - [132.681965, -11.188286], - [132.660375, -11.211146], - [132.643096, -11.210186], - [132.659535, -11.187756], - [132.681965, -11.188286] - ] - ], - [ - [ - [132.587027, -10.987207], - [132.579156, -11.007336], - [132.602336, -11.117766], - [132.614416, -11.129726], - [132.602366, -11.142846], - [132.587846, -11.139406], - [132.579996, -11.160046], - [132.587826, -11.176906], - [132.596976, -11.178746], - [132.600436, -11.170286], - [132.624806, -11.172846], - [132.631276, -11.186196], - [132.615146, -11.186146], - [132.602716, -11.204746], - [132.604276, -11.218756], - [132.619216, -11.232136], - [132.619376, -11.284766], - [132.599746, -11.300066], - [132.587976, -11.355817], - [132.584506, -11.336486], - [132.566096, -11.328746], - [132.555176, -11.310746], - [132.543256, -11.252306], - [132.469817, -11.156935], - [132.476377, -11.148946], - [132.491797, -11.155216], - [132.509937, -11.138226], - [132.504607, -11.124426], - [132.513306, -11.092496], - [132.509346, -11.082536], - [132.485687, -11.078386], - [132.462417, -11.032556], - [132.498237, -11.056976], - [132.520776, -11.053556], - [132.527226, -11.042626], - [132.545246, -11.052496], - [132.533626, -11.042986], - [132.545526, -11.042456], - [132.559976, -11.029186], - [132.556756, -10.994316], - [132.564476, -10.979186], - [132.595266, -10.970106], - [132.589966, -10.988976], - [132.587027, -10.987207] - ] - ], - [ - [ - [132.462976, -11.621425], - [132.457206, -11.628745], - [132.447386, -11.621024], - [132.462976, -11.621425] - ] - ], - [ - [ - [132.421983, -12.116853], - [132.411263, -12.138293], - [132.387504, -12.138923], - [132.350944, -12.108923], - [132.336074, -12.085743], - [132.377534, -12.072953], - [132.401394, -12.076163], - [132.413084, -12.088153], - [132.421983, -12.116853] - ] - ], - [ - [ - [132.360224, -12.170493], - [132.352034, -12.188993], - [132.344494, -12.172152], - [132.354064, -12.155233], - [132.360224, -12.170493] - ] - ], - [ - [ - [132.339558, -11.524334], - [132.333298, -11.540794], - [132.334678, -11.514484], - [132.339558, -11.524334] - ] - ], - [ - [ - [132.324278, -11.581283], - [132.314678, -11.600213], - [132.295728, -11.586683], - [132.303518, -11.563803], - [132.324278, -11.581283] - ] - ], - [ - [ - [132.174529, -11.584052], - [132.167879, -11.585152], - [132.170329, -11.576692], - [132.174529, -11.584052] - ] - ], - [ - [ - [132.149329, -11.606282], - [132.13397, -11.627202], - [132.1111, -11.620522], - [132.12089, -11.590092], - [132.11364, -11.575942], - [132.121939, -11.564812], - [132.134979, -11.568942], - [132.149329, -11.606282] - ] - ], - [ - [ - [131.96489, -11.483821], - [131.95367, -11.486501], - [131.94843, -11.473731], - [131.96489, -11.483821] - ] - ], - [ - [ - [130.402355, -11.363409], - [130.401478, -11.367384], - [130.391048, -11.366734], - [130.384008, -11.346304], - [130.398258, -11.318124], - [130.409028, -11.318104], - [130.407079, -11.301731], - [130.404518, -11.301844], - [130.392218, -11.284014], - [130.394438, -11.266885], - [130.388528, -11.274645], - [130.370058, -11.264865], - [130.363498, -11.251205], - [130.372588, -11.170955], - [130.401657, -11.166135], - [130.418417, -11.186005], - [130.412557, -11.174695], - [130.489406, -11.262063], - [130.513736, -11.279143], - [130.499926, -11.271953], - [130.496286, -11.278583], - [130.538775, -11.284413], - [130.553795, -11.266443], - [130.594844, -11.289212], - [130.603774, -11.321361], - [130.594174, -11.322271], - [130.586145, -11.336491], - [130.579515, -11.326841], - [130.586674, -11.342941], - [130.566875, -11.340652], - [130.554585, -11.361012], - [130.556485, -11.383171], - [130.568295, -11.397611], - [130.581324, -11.402441], - [130.601364, -11.38654], - [130.619224, -11.38757], - [130.640283, -11.37246], - [130.641083, -11.35631], - [130.656573, -11.33596], - [130.663063, -11.34143], - [130.657353, -11.400649], - [130.680812, -11.427146], - [130.680792, -11.444928], - [130.701322, -11.441447], - [130.694182, -11.464337], - [130.709841, -11.486466], - [130.703491, -11.494226], - [130.705871, -11.513636], - [130.710511, -11.489066], - [130.721501, -11.507446], - [130.714151, -11.493166], - [130.722781, -11.470286], - [130.75537, -11.479866], - [130.76125, -11.498335], - [130.795, -11.511095], - [130.809839, -11.525854], - [130.810789, -11.538514], - [130.823969, -11.538364], - [130.79127, -11.491835], - [130.76622, -11.484566], - [130.76943, -11.465726], - [130.755611, -11.459876], - [130.754431, -11.446987], - [130.740141, -11.442487], - [130.733711, -11.427647], - [130.723451, -11.420468], - [130.704998, -11.421863], - [130.705112, -11.423058], - [130.696882, -11.426658], - [130.704562, -11.385318], - [130.733381, -11.386348], - [130.735631, -11.380098], - [130.763031, -11.375528], - [130.772271, -11.364398], - [130.80771, -11.364677], - [130.848272, -11.354036], - [130.897309, -11.308917], - [130.921559, -11.312216], - [130.963688, -11.332685], - [130.951248, -11.334815], - [130.987798, -11.339594], - [130.990237, -11.354544], - [131.031607, -11.367293], - [131.051097, -11.343004], - [131.040937, -11.317754], - [131.071577, -11.303354], - [131.082577, -11.302164], - [131.084017, -11.310534], - [131.091947, -11.303684], - [131.089277, -11.331794], - [131.092667, -11.320064], - [131.098827, -11.323824], - [131.095377, -11.305854], - [131.103807, -11.312444], - [131.103037, -11.306114], - [131.110817, -11.308194], - [131.087617, -11.300384], - [131.111537, -11.280295], - [131.112677, -11.259065], - [131.147747, -11.249875], - [131.165636, -11.265555], - [131.163736, -11.278084], - [131.172166, -11.286364], - [131.168366, -11.313453], - [131.187596, -11.334903], - [131.199736, -11.311803], - [131.208096, -11.310943], - [131.209336, -11.344062], - [131.227736, -11.305483], - [131.222046, -11.313953], - [131.215336, -11.304763], - [131.190736, -11.303063], - [131.202966, -11.284264], - [131.197776, -11.269554], - [131.204016, -11.236045], - [131.247476, -11.217845], - [131.250796, -11.193915], - [131.258026, -11.190445], - [131.269426, -11.197515], - [131.260306, -11.210955], - [131.277136, -11.189525], - [131.279456, -11.204275], - [131.288206, -11.193865], - [131.315275, -11.228214], - [131.297275, -11.258964], - [131.296205, -11.268113], - [131.305105, -11.274583], - [131.324455, -11.272983], - [131.320425, -11.276693], - [131.328085, -11.279213], - [131.328875, -11.255953], - [131.353275, -11.249963], - [131.374955, -11.264283], - [131.370865, -11.283693], - [131.380814, -11.298202], - [131.400244, -11.291162], - [131.395544, -11.267083], - [131.401304, -11.258303], - [131.435824, -11.265902], - [131.442604, -11.286712], - [131.429524, -11.295462], - [131.429714, -11.304052], - [131.462684, -11.328011], - [131.455154, -11.351361], - [131.470984, -11.370391], - [131.465084, -11.385731], - [131.481333, -11.39883], - [131.467654, -11.40188], - [131.473474, -11.4053], - [131.456734, -11.41212], - [131.464174, -11.41249], - [131.456474, -11.41957], - [131.481613, -11.40205], - [131.487973, -11.38717], - [131.500233, -11.38361], - [131.510783, -11.39606], - [131.524003, -11.39409], - [131.537093, -11.41322], - [131.532403, -11.42471], - [131.543133, -11.4522], - [131.527003, -11.4763], - [131.508076, -11.465768], - [131.486173, -11.47461], - [131.484023, -11.48766], - [131.464973, -11.49786], - [131.454473, -11.546599], - [131.464443, -11.572499], - [131.455253, -11.580939], - [131.470333, -11.586739], - [131.469803, -11.608099], - [131.431094, -11.605349], - [131.426024, -11.613679], - [131.402844, -11.588839], - [131.369105, -11.580943], - [131.379134, -11.592039], - [131.367504, -11.605539], - [131.359844, -11.603359], - [131.362904, -11.609469], - [131.370134, -11.603519], - [131.370584, -11.609729], - [131.349674, -11.649959], - [131.336994, -11.658149], - [131.333964, -11.679259], - [131.280395, -11.739789], - [131.254055, -11.734479], - [131.181905, -11.791749], - [131.081916, -11.836209], - [131.048296, -11.881559], - [131.018256, -11.885999], - [130.989977, -11.906809], - [130.998026, -11.908069], - [130.976437, -11.93315], - [130.949287, -11.9401], - [130.916467, -11.89544], - [130.919377, -11.90045], - [130.862288, -11.854651], - [130.801888, -11.845062], - [130.72496, -11.802673], - [130.686341, -11.796444], - [130.675321, -11.780444], - [130.679811, -11.761714], - [130.641142, -11.747565], - [130.622693, -11.723376], - [130.597543, -11.717226], - [130.590543, -11.702036], - [130.571624, -11.701457], - [130.556354, -11.672427], - [130.529015, -11.679468], - [130.492625, -11.654929], - [130.476466, -11.620629], - [130.478335, -11.592939], - [130.486235, -11.589519], - [130.493805, -11.564078], - [130.487255, -11.547599], - [130.460966, -11.53559], - [130.452086, -11.51674], - [130.431867, -11.502561], - [130.433517, -11.474982], - [130.418217, -11.454912], - [130.425817, -11.425513], - [130.411467, -11.408758], - [130.409498, -11.367254], - [130.402355, -11.363409] - ], - [ - [131.368928, -11.580902], - [131.355714, -11.577809], - [131.366011, -11.585757], - [131.368928, -11.580902] - ], - [ - [130.40278, -11.361488], - [130.408338, -11.360024], - [130.404198, -11.355064], - [130.40278, -11.361488] - ] - ], - [ - [ - [131.355625, -12.101729], - [131.355314, -12.111099], - [131.345445, -12.111019], - [131.349525, -12.096889], - [131.355625, -12.101729] - ] - ], - [ - [ - [131.135234, -12.012368], - [131.111884, -12.023833], - [131.072878, -12.01497], - [131.127138, -12.000961], - [131.135234, -12.012368] - ] - ], - [ - [ - [131.126716, -12.059459], - [131.122846, -12.070199], - [131.105986, -12.075329], - [131.061766, -12.069439], - [131.098346, -12.052749], - [131.126716, -12.059459] - ] - ], - [ - [ - [131.064796, -12.037579], - [131.062866, -12.046839], - [131.032466, -12.058319], - [131.001917, -12.052389], - [131.039416, -12.031979], - [131.064796, -12.037579] - ] - ], - [ - [ - [131.048206, -12.112169], - [131.036536, -12.127899], - [131.012397, -12.118239], - [131.030606, -12.098989], - [131.048206, -12.112169] - ] - ], - [ - [ - [130.872399, -12.548151], - [130.863219, -12.560362], - [130.864119, -12.546131], - [130.872399, -12.548151] - ] - ], - [ - [ - [130.660881, -11.814464], - [130.646951, -11.821274], - [130.645651, -11.809625], - [130.660881, -11.814464] - ] - ], - [ - [ - [130.212679, -11.712187], - [130.206591, -11.724844], - [130.210481, -11.719374], - [130.222311, -11.725224], - [130.220021, -11.730354], - [130.224381, -11.726234], - [130.237231, -11.746623], - [130.235501, -11.723953], - [130.217131, -11.717324], - [130.225961, -11.717194], - [130.229841, -11.703964], - [130.206531, -11.693834], - [130.223001, -11.670414], - [130.229682, -11.686103], - [130.232881, -11.680904], - [130.26093, -11.706833], - [130.28352, -11.698643], - [130.2951, -11.725763], - [130.305919, -11.733012], - [130.29315, -11.692153], - [130.261371, -11.698013], - [130.246301, -11.678614], - [130.258451, -11.675194], - [130.26554, -11.661733], - [130.253521, -11.673284], - [130.236971, -11.661794], - [130.217751, -11.631104], - [130.209861, -11.642644], - [130.191281, -11.642675], - [130.200821, -11.585565], - [130.195271, -11.571935], - [130.185751, -11.572065], - [130.174831, -11.557845], - [130.192021, -11.536685], - [130.195611, -11.516175], - [130.22499, -11.507215], - [130.23061, -11.528555], - [130.24221, -11.534224], - [130.23895, -11.539284], - [130.25531, -11.537304], - [130.26149, -11.571044], - [130.272031, -11.570092], - [130.26313, -11.559364], - [130.26735, -11.546474], - [130.2833, -11.539854], - [130.26332, -11.542754], - [130.2609, -11.527144], - [130.2353, -11.520995], - [130.23949, -11.495115], - [130.23342, -11.497955], - [130.23087, -11.484735], - [130.23159, -11.497845], - [130.208801, -11.511555], - [130.198361, -11.507395], - [130.185121, -11.484475], - [130.156601, -11.491206], - [130.147981, -11.482066], - [130.169141, -11.462726], - [130.1801, -11.429236], - [130.23014, -11.406985], - [130.245189, -11.366615], - [130.2387, -11.388435], - [130.24789, -11.398135], - [130.254829, -11.376545], - [130.251679, -11.346485], - [130.280309, -11.342925], - [130.286429, -11.361215], - [130.286619, -11.343365], - [130.302879, -11.341405], - [130.337428, -11.318615], - [130.340843, -11.324449], - [130.322339, -11.333345], - [130.341763, -11.326022], - [130.343177, -11.328438], - [130.361298, -11.379804], - [130.384278, -11.405284], - [130.385228, -11.418393], - [130.394388, -11.416103], - [130.400138, -11.425023], - [130.403868, -11.447603], - [130.392818, -11.472833], - [130.375188, -11.484063], - [130.380838, -11.494443], - [130.376168, -11.507003], - [130.402397, -11.539932], - [130.429936, -11.549801], - [130.452126, -11.57324], - [130.452576, -11.56702], - [130.463716, -11.575009], - [130.460416, -11.6218], - [130.448726, -11.62715], - [130.464676, -11.629359], - [130.468346, -11.666179], - [130.516895, -11.691238], - [130.556094, -11.692757], - [130.564254, -11.707047], - [130.584873, -11.708887], - [130.592293, -11.730516], - [130.617383, -11.733966], - [130.641115, -11.756842], - [130.612542, -11.821155], - [130.603662, -11.827085], - [130.581643, -11.826936], - [130.570633, -11.810706], - [130.563243, -11.816416], - [130.567773, -11.821046], - [130.545793, -11.819007], - [130.503384, -11.830348], - [130.393117, -11.80142], - [130.367818, -11.780131], - [130.312259, -11.770892], - [130.130813, -11.825185], - [130.064924, -11.818515], - [130.048854, -11.824076], - [130.023794, -11.797326], - [130.020444, -11.778906], - [130.033154, -11.756296], - [130.080754, -11.768806], - [130.061484, -11.750936], - [130.076503, -11.669096], - [130.090043, -11.670996], - [130.122543, -11.707245], - [130.157252, -11.705065], - [130.202311, -11.649434], - [130.214271, -11.664444], - [130.203541, -11.694074], - [130.221691, -11.703864], - [130.213221, -11.714954], - [130.212679, -11.712187] - ], - [ - [130.212108, -11.709274], - [130.211251, -11.704904], - [130.204951, -11.706724], - [130.212108, -11.709274] - ] - ], - [ - [ - [130.342921, -11.327712], - [130.341914, -11.325964], - [130.342258, -11.325835], - [130.342921, -11.327712] - ] - ], - [ - [ - [130.544335, -12.704475], - [130.535585, -12.709786], - [130.525565, -12.702116], - [130.524044, -12.661775], - [130.499214, -12.645465], - [130.486644, -12.623655], - [130.494903, -12.596405], - [130.484753, -12.580365], - [130.508112, -12.574204], - [130.517302, -12.557594], - [130.521352, -12.589344], - [130.510072, -12.590704], - [130.502953, -12.610255], - [130.511013, -12.617035], - [130.517824, -12.650585], - [130.541664, -12.679845], - [130.544335, -12.704475] - ] - ], - [ - [ - [130.434365, -12.579846], - [130.416766, -12.592066], - [130.405366, -12.573876], - [130.420655, -12.563576], - [130.434365, -12.579846] - ] - ], - [ - [ - [130.416196, -12.595006], - [130.400667, -12.601807], - [130.391797, -12.587107], - [130.404336, -12.581336], - [130.416196, -12.595006] - ] - ], - [ - [ - [130.408387, -12.608127], - [130.401827, -12.615137], - [130.385017, -12.602487], - [130.408387, -12.608127] - ] - ], - [ - [ - [130.396427, -12.626567], - [130.386428, -12.643077], - [130.368478, -12.642067], - [130.364898, -12.624997], - [130.370648, -12.619457], - [130.385607, -12.617417], - [130.396427, -12.626567] - ] - ], - [ - [ - [130.109606, -13.220099], - [130.097606, -13.221249], - [130.085006, -13.209869], - [130.090966, -13.192789], - [130.101936, -13.194009], - [130.109606, -13.220099] - ] - ], - [ - [ - [130.075006, -13.17124], - [130.068106, -13.18244], - [130.047187, -13.17593], - [130.041097, -13.18317], - [130.020437, -13.17982], - [130.018477, -13.11122], - [130.027657, -13.15087], - [130.057656, -13.15206], - [130.075006, -13.17124] - ] - ], - [ - [ - [129.732061, -14.804138], - [129.719851, -14.813268], - [129.698121, -14.809508], - [129.670741, -14.784378], - [129.732061, -14.804138] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 7, - "properties": { - "name": "Australian Capital Territory", - "ISOCODE": "AU-ACT" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [149.399284, -35.319175], - [149.352134, -35.351317], - [149.336502, -35.339914], - [149.254815, -35.330079], - [149.207546, -35.345305], - [149.146586, -35.414836], - [149.139052, -35.432543], - [149.155134, -35.436628], - [149.13555, -35.454422], - [149.151279, -35.506926], - [149.131376, -35.554173], - [149.14251, -35.59257], - [149.084514, -35.580594], - [149.078043, -35.586127], - [149.087612, -35.639697], - [149.097495, -35.647313], - [149.095379, -35.679285], - [149.109483, -35.69664], - [149.090716, -35.7656], - [149.101481, -35.803698], - [149.093517, -35.824221], - [149.095682, -35.845716], - [149.064408, -35.874932], - [149.048811, -35.92041], - [149.012198, -35.899697], - [148.959133, -35.895456], - [148.909367, -35.853065], - [148.907065, -35.829563], - [148.886623, -35.810063], - [148.897776, -35.79465], - [148.894887, -35.771654], - [148.903348, -35.757798], - [148.894087, -35.751288], - [148.886633, -35.719136], - [148.877693, -35.714936], - [148.872491, -35.721422], - [148.855652, -35.760874], - [148.856132, -35.753518], - [148.835715, -35.741884], - [148.822423, -35.7209], - [148.791182, -35.703449], - [148.798434, -35.666492], - [148.767495, -35.647323], - [148.783462, -35.628342], - [148.768473, -35.603186], - [148.788758, -35.588179], - [148.773039, -35.568157], - [148.778231, -35.558852], - [148.769231, -35.544096], - [148.772364, -35.529329], - [148.762675, -35.495505], - [148.774354, -35.486003], - [148.767058, -35.465405], - [148.788868, -35.426382], - [148.785764, -35.408748], - [148.796119, -35.406549], - [148.795719, -35.39292], - [148.808702, -35.382373], - [148.793247, -35.339156], - [148.807854, -35.309647], - [149.120902, -35.124517], - [149.138819, -35.128466], - [149.1386, -35.135257], - [149.149637, -35.138669], - [149.146775, -35.144856], - [149.164312, -35.142046], - [149.167696, -35.159881], - [149.189097, -35.165677], - [149.183629, -35.175618], - [149.197037, -35.185499], - [149.189701, -35.203308], - [149.208568, -35.211501], - [149.204883, -35.229549], - [149.214063, -35.219507], - [149.238597, -35.222127], - [149.24679, -35.229217], - [149.234884, -35.242822], - [149.273132, -35.259287], - [149.272048, -35.273644], - [149.315286, -35.276286], - [149.322394, -35.286708], - [149.341384, -35.286648], - [149.361948, -35.308998], - [149.39479, -35.303157], - [149.399284, -35.319175] - ], - [ - [149.153176, -35.304976], - [149.13651, -35.289256], - [149.122879, -35.28656], - [149.118459, -35.293608], - [149.110274, -35.284577], - [149.114443, -35.280492], - [149.103116, -35.28513], - [149.101406, -35.294277], - [149.099252, -35.2856], - [149.08803, -35.28515], - [149.083012, -35.296961], - [149.071123, -35.298567], - [149.084355, -35.303898], - [149.095399, -35.287391], - [149.101389, -35.301479], - [149.12611, -35.294247], - [149.144619, -35.310156], - [149.153176, -35.304976] - ] - ] - } - } - ] -} diff --git a/backend/server/static/data/ca.json b/backend/server/static/data/ca.json deleted file mode 100644 index c7e17a2..0000000 --- a/backend/server/static/data/ca.json +++ /dev/null @@ -1,18980 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-78.019173, 62.59193], - [-77.867218, 62.589161], - [-77.837784, 62.556938], - [-78.103333, 62.559158], - [-78.107773, 62.582771], - [-78.019173, 62.59193] - ] - ], - [ - [ - [-69.182503, 59.128601], - [-69.198608, 59.067211], - [-69.132767, 59.055271], - [-69.221123, 58.991661], - [-69.223053, 58.95332], - [-69.290283, 58.977211], - [-69.35556, 58.949711], - [-69.278343, 59.066669], - [-69.357224, 59.139721], - [-69.275284, 59.154991], - [-69.182503, 59.128601] - ] - ], - [ - [ - [-79.496384, 56.766941], - [-79.486107, 56.658039], - [-79.523621, 56.66721], - [-79.567497, 56.615269], - [-79.583893, 56.652771], - [-79.549438, 56.68111], - [-79.551941, 56.73193], - [-79.589996, 56.76833], - [-79.58168, 56.807209], - [-79.496384, 56.766941] - ] - ], - [ - [ - [-78.900284, 56.319439], - [-79.061394, 56.124439], - [-79.210831, 55.856098], - [-79.188599, 55.942211], - [-78.986656, 56.26749], - [-78.983322, 56.389721], - [-79.055267, 56.34444], - [-79.100281, 56.221371], - [-79.04834, 56.222759], - [-79.061394, 56.18832], - [-79.283333, 55.864441], - [-79.133904, 56.126659], - [-79.150558, 56.233051], - [-79.243881, 56.1511], - [-79.360283, 55.969711], - [-79.493057, 55.858891], - [-79.636124, 55.898609], - [-79.785553, 55.788891], - [-79.474716, 56.098331], - [-79.513062, 56.134991], - [-79.597229, 56.091381], - [-79.877213, 55.83194], - [-79.906113, 55.824711], - [-79.947487, 55.889992], - [-80.024719, 55.901379], - [-79.74472, 56.15638], - [-79.529167, 56.275551], - [-79.475563, 56.38055], - [-79.456673, 56.553322], - [-79.419449, 56.4436], - [-79.480003, 56.346378], - [-79.491096, 56.264439], - [-79.609734, 56.13166], - [-79.427223, 56.203049], - [-79.301102, 56.447208], - [-79.269173, 56.624989], - [-79.252792, 56.550831], - [-79.133057, 56.54277], - [-79.075562, 56.444149], - [-78.928879, 56.425831], - [-78.908051, 56.343048], - [-78.951401, 56.316101], - [-78.900284, 56.319439] - ] - ], - [ - [ - [-79.555557, 56.4986], - [-79.701111, 56.306381], - [-79.986107, 56.199711], - [-80.109734, 56.197769], - [-80.044449, 56.310822], - [-79.869164, 56.331669], - [-79.877213, 56.379162], - [-79.698883, 56.368881], - [-79.614441, 56.43166], - [-79.585281, 56.499161], - [-79.543327, 56.527771], - [-79.555557, 56.4986] - ] - ], - [ - [ - [-78.660828, 56.414711], - [-78.676392, 56.18111], - [-78.933319, 56.115551], - [-78.916946, 56.172489], - [-78.825287, 56.262772], - [-78.845551, 56.276661], - [-78.809433, 56.338879], - [-78.832497, 56.35083], - [-78.731667, 56.44054], - [-78.667221, 56.439709], - [-78.660828, 56.414711] - ] - ], - [ - [ - [-79.009354, 56.06361], - [-78.957497, 56.083599], - [-78.948883, 56.03722], - [-79.002792, 56.012772], - [-78.934158, 56.020271], - [-79.002502, 55.979988], - [-79.054443, 55.865551], - [-79.135559, 55.789162], - [-79.030838, 55.968601], - [-79.009354, 56.06361] - ] - ], - [ - [ - [-63.492229, 49.840832], - [-62.944439, 49.732208], - [-62.510281, 49.590832], - [-62.39389, 49.492222], - [-62.25111, 49.456661], - [-62.20583, 49.411381], - [-61.875561, 49.34499], - [-61.661671, 49.14444], - [-61.70055, 49.090271], - [-61.81361, 49.06694], - [-62.242771, 49.06221], - [-62.456951, 49.125549], - [-63.09, 49.228039], - [-63.283329, 49.317768], - [-63.5825, 49.387211], - [-63.61972, 49.492771], - [-63.841942, 49.63916], - [-64.238602, 49.751659], - [-64.362778, 49.82444], - [-64.389999, 49.789719], - [-64.513901, 49.863609], - [-64.458618, 49.900829], - [-64.203613, 49.950272], - [-63.930828, 49.885269], - [-63.492229, 49.840832] - ] - ], - [ - [ - [-61.40778, 47.641109], - [-61.38055, 47.62027], - [-61.493061, 47.55249], - [-61.54945, 47.553879], - [-61.470551, 47.61694], - [-61.54195, 47.61721], - [-61.690109, 47.534672], - [-61.711842, 47.518051], - [-61.85556, 47.41721], - [-61.777222, 47.43166], - [-61.674999, 47.535], - [-61.59444, 47.555271], - [-61.701389, 47.49194], - [-61.763889, 47.397491], - [-61.829731, 47.401661], - [-61.860001, 47.352489], - [-61.933331, 47.333328], - [-61.9575, 47.26194], - [-61.908329, 47.27277], - [-61.81945, 47.23333], - [-61.783058, 47.260551], - [-61.79945, 47.232769], - [-61.85931, 47.217739], - [-62.009998, 47.221371], - [-61.928051, 47.407211], - [-61.535839, 47.63166], - [-61.40778, 47.641109] - ] - ], - [ - [ - [-70.814438, 46.998329], - [-70.904167, 46.913601], - [-71.13028, 46.856098], - [-70.896667, 47.013329], - [-70.836403, 47.027771], - [-70.814438, 46.998329] - ] - ], - [ - [ - [-57.10424, 51.41267], - [-57.208611, 51.415821], - [-57.247219, 51.504169], - [-57.60223, 51.428051], - [-57.581669, 51.465271], - [-57.67667, 51.429989], - [-57.684441, 51.47694], - [-57.748051, 51.47221], - [-57.76445, 51.401661], - [-57.800831, 51.433331], - [-58.021389, 51.30888], - [-58.227219, 51.271381], - [-58.26112, 51.288052], - [-58.249168, 51.332771], - [-58.283058, 51.335819], - [-58.29723, 51.2686], - [-58.430279, 51.309719], - [-58.580002, 51.24416], - [-58.628052, 51.275551], - [-58.61972, 51.231659], - [-58.667221, 51.25639], - [-58.68, 51.234161], - [-58.59222, 51.184719], - [-58.61861, 51.153049], - [-58.83778, 51.0825], - [-58.829731, 51.041111], - [-58.889999, 50.992222], - [-58.91333, 51], - [-58.89806, 51.053879], - [-59.00333, 51.015549], - [-58.952499, 50.992489], - [-58.958611, 50.92194], - [-58.939442, 50.883331], - [-58.975269, 50.857769], - [-58.948051, 50.828331], - [-59.029171, 50.775551], - [-59.015282, 50.7486], - [-59.087219, 50.775269], - [-59.09333, 50.820831], - [-59.055271, 50.870831], - [-59.098881, 50.879429], - [-59.118889, 50.8036], - [-59.193611, 50.72971], - [-59.256111, 50.75972], - [-59.268608, 50.71249], - [-59.350281, 50.662769], - [-59.423889, 50.661381], - [-59.404999, 50.63472], - [-59.454441, 50.621929], - [-59.58527, 50.478039], - [-59.816109, 50.43388], - [-59.881672, 50.371658], - [-59.853889, 50.326099], - [-59.814999, 50.349159], - [-59.833889, 50.31916], - [-59.948051, 50.255001], - [-60.114449, 50.233051], - [-60.134171, 50.20388], - [-60.132771, 50.22971], - [-60.17223, 50.231659], - [-60.14999, 50.288601], - [-60.243328, 50.232208], - [-60.26722, 50.236111], - [-60.23695, 50.268051], - [-60.274719, 50.288891], - [-60.291672, 50.24527], - [-60.360001, 50.250832], - [-60.35611, 50.22332], - [-60.448051, 50.259441], - [-60.583611, 50.208328], - [-60.61972, 50.246941], - [-60.666111, 50.220268], - [-60.748341, 50.23444], - [-60.788609, 50.201099], - [-60.840549, 50.219151], - [-60.792782, 50.261669], - [-60.934441, 50.1936], - [-61.02639, 50.225819], - [-61.112782, 50.187771], - [-61.15583, 50.202221], - [-61.162498, 50.17749], - [-61.297501, 50.199162], - [-61.720829, 50.09193], - [-61.783058, 50.106941], - [-61.59306, 50.15527], - [-61.577221, 50.1861], - [-61.790279, 50.13361], - [-61.849998, 50.21249], - [-62.21056, 50.234161], - [-62.397499, 50.294441], - [-62.44611, 50.2575], - [-62.73695, 50.282211], - [-62.712502, 50.315269], - [-62.805271, 50.288601], - [-62.963058, 50.285549], - [-62.994999, 50.311939], - [-63.163891, 50.291382], - [-63.159161, 50.254711], - [-63.358608, 50.241661], - [-63.394718, 50.213329], - [-63.488609, 50.26194], - [-63.597778, 50.250832], - [-63.812771, 50.313049], - [-64.162216, 50.262211], - [-64.455002, 50.319439], - [-64.872223, 50.267208], - [-64.91362, 50.2925], - [-65.189987, 50.286659], - [-65.258057, 50.31889], - [-65.713898, 50.257221], - [-65.952499, 50.288891], - [-66.056381, 50.216099], - [-66.093338, 50.244438], - [-66.089722, 50.19138], - [-66.235817, 50.21888], - [-66.369164, 50.193321], - [-66.441673, 50.269161], - [-66.543327, 50.20805], - [-66.527222, 50.16972], - [-66.42778, 50.164711], - [-66.459442, 50.133049], - [-66.638062, 50.181381], - [-66.61972, 50.149158], - [-66.741096, 50.042221], - [-66.958618, 49.974709], - [-66.963333, 49.914711], - [-67.037514, 49.820831], - [-67.073898, 49.848049], - [-67.151398, 49.806938], - [-67.179718, 49.74527], - [-67.163063, 49.679722], - [-67.198883, 49.651661], - [-67.238892, 49.590549], - [-67.233887, 49.470268], - [-67.386124, 49.32222], - [-67.569733, 49.32999], - [-67.809723, 49.273609], - [-67.957779, 49.295269], - [-68.11972, 49.27166], - [-68.156387, 49.20166], - [-68.299438, 49.195541], - [-68.19249, 49.164711], - [-68.189713, 49.112209], - [-68.325562, 49.09972], - [-68.408051, 49.05555], - [-68.444443, 49.059719], - [-68.367767, 49.132771], - [-68.443604, 49.191662], - [-68.404167, 49.122761], - [-68.606949, 49.0425], - [-68.643341, 48.9561], - [-68.696381, 48.939991], - [-68.642227, 48.91666], - [-68.787781, 48.907768], - [-68.95639, 48.81583], - [-68.96666, 48.782768], - [-69.060822, 48.76749], - [-69.142502, 48.59499], - [-69.231377, 48.585548], - [-69.29277, 48.457771], - [-69.43277, 48.30777], - [-69.57695, 48.23999], - [-69.683884, 48.137772], - [-69.810272, 48.155819], - [-69.959442, 48.26944], - [-70.151108, 48.274441], - [-70.373322, 48.374161], - [-70.684433, 48.3811], - [-70.761398, 48.431938], - [-70.98056, 48.462212], - [-71.070572, 48.440109], - [-70.969727, 48.447208], - [-70.785553, 48.395828], - [-70.887222, 48.358601], - [-70.864166, 48.317211], - [-70.768066, 48.350552], - [-70.464172, 48.349159], - [-70.272781, 48.298328], - [-70.180557, 48.241379], - [-69.936943, 48.221931], - [-69.860001, 48.143879], - [-69.730293, 48.10944], - [-69.925827, 47.773048], - [-70.139183, 47.659161], - [-70.206123, 47.57666], - [-70.225563, 47.49638], - [-70.5, 47.43499], - [-70.574173, 47.274441], - [-70.721657, 47.101391], - [-70.973618, 47.00333], - [-71.197487, 46.852489], - [-71.299156, 46.742222], - [-71.143623, 46.844711], - [-71.006119, 46.847771], - [-70.541382, 47.002491], - [-70.339172, 47.152489], - [-70.201401, 47.312489], - [-70.044159, 47.390831], - [-70.017776, 47.487499], - [-69.896393, 47.541111], - [-69.545837, 47.8325], - [-69.556381, 47.866661], - [-69.450562, 47.97916], - [-69.34111, 48.01416], - [-68.823334, 48.36388], - [-68.726936, 48.37249], - [-68.541382, 48.451389], - [-68.453613, 48.53249], - [-68.058609, 48.691101], - [-67.973618, 48.695541], - [-67.553047, 48.85471], - [-67.067497, 48.96693], - [-66.639183, 49.120831], - [-66.225014, 49.200829], - [-65.722229, 49.227211], - [-65.588058, 49.260551], - [-64.94249, 49.214439], - [-64.588058, 49.112209], - [-64.23555, 48.910271], - [-64.158051, 48.7561], - [-64.298889, 48.823879], - [-64.557503, 48.880268], - [-64.473328, 48.832211], - [-64.539436, 48.821381], - [-64.401108, 48.81694], - [-64.374161, 48.787769], - [-64.428329, 48.774441], - [-64.336937, 48.75555], - [-64.160004, 48.622761], - [-64.26973, 48.60471], - [-64.279167, 48.554161], - [-64.189163, 48.520828], - [-64.309433, 48.463329], - [-64.315552, 48.419159], - [-64.719162, 48.338329], - [-64.693604, 48.3111], - [-64.771393, 48.196381], - [-64.96611, 48.18499], - [-64.945831, 48.143051], - [-65.269997, 48.012772], - [-65.455566, 48.000271], - [-65.504181, 48.048882], - [-65.810547, 48.116661], - [-65.891678, 48.171101], - [-65.893341, 48.21944], - [-66.080002, 48.096378], - [-66.293327, 48.113049], - [-66.268066, 48.095829], - [-66.29361, 48.063881], - [-66.47084, 48.119438], - [-66.538063, 48.05582], - [-66.843697, 47.996651], - [-66.943604, 47.963051], - [-66.946953, 47.899158], - [-67.047234, 47.93082], - [-67.188599, 47.883881], - [-67.322777, 47.896389], - [-67.364166, 47.841381], - [-67.604172, 47.9361], - [-67.612213, 47.99749], - [-68.116096, 48.001942], - [-68.12027, 47.926659], - [-68.372772, 47.924709], - [-68.378052, 47.65416], - [-68.38028, 47.558601], - [-68.576111, 47.424709], - [-69.039711, 47.29715], - [-69.047478, 47.421989], - [-69.230789, 47.4533], - [-69.985458, 46.69133], - [-70.014633, 46.57056], - [-70.047089, 46.426079], - [-70.191544, 46.334801], - [-70.283974, 46.190208], - [-70.229797, 46.137402], - [-70.305328, 46.06662], - [-70.280502, 46.05312], - [-70.310783, 45.968739], - [-70.247948, 45.94458], - [-70.254448, 45.89896], - [-70.416687, 45.79026], - [-70.396873, 45.722], - [-70.55275, 45.660622], - [-70.72039, 45.512909], - [-70.635406, 45.391918], - [-70.797447, 45.425129], - [-70.829613, 45.390678], - [-70.813148, 45.35463], - [-70.843361, 45.278091], - [-70.87693, 45.225399], - [-70.959862, 45.338821], - [-71.08799, 45.301418], - [-71.153572, 45.237919], - [-71.297707, 45.293449], - [-71.386864, 45.23489], - [-71.447037, 45.236038], - [-71.403, 45.202759], - [-71.430893, 45.116951], - [-71.503471, 45.059841], - [-71.505836, 45.013309], - [-71.902328, 45.00729], - [-72.547668, 45.005329], - [-73.188972, 45.00845], - [-73.345154, 45.0061], - [-74.021927, 44.990799], - [-74.736481, 44.99287], - [-74.506393, 45.071659], - [-74.433609, 45.149441], - [-74.324722, 45.201099], - [-74.479172, 45.316669], - [-74.396667, 45.564159], - [-74.646118, 45.635551], - [-74.875839, 45.64159], - [-75.453339, 45.523609], - [-75.847229, 45.37249], - [-76.076683, 45.513889], - [-76.184433, 45.521099], - [-76.337784, 45.45583], - [-76.607773, 45.55249], - [-76.666397, 45.590549], - [-76.710564, 45.712769], - [-76.783333, 45.76194], - [-76.804718, 45.864719], - [-76.910553, 45.889992], - [-76.920837, 45.806381], - [-77.002792, 45.790279], - [-77.206123, 45.877209], - [-77.278877, 45.937771], - [-77.321953, 46.026661], - [-77.554993, 46.151932], - [-77.680557, 46.183601], - [-78.703613, 46.337212], - [-78.75528, 46.400539], - [-78.950562, 46.511669], - [-79.155563, 46.812489], - [-79.305557, 46.94054], - [-79.443878, 47.11055], - [-79.439438, 47.26527], - [-79.576401, 47.441929], - [-79.511322, 47.565571], - [-79.519012, 48.605289], - [-79.520683, 48.764679], - [-79.537613, 50.958599], - [-79.355827, 50.777489], - [-79.348053, 50.73193], - [-79.330002, 50.758331], - [-79.383987, 50.836269], - [-79.421944, 50.880859], - [-79.537804, 50.982368], - [-79.539436, 51.191662], - [-79.547096, 51.460129], - [-79.508347, 51.468601], - [-79.551392, 51.553051], - [-79.353882, 51.656101], - [-79.239723, 51.634991], - [-79.285278, 51.562489], - [-79.274719, 51.530548], - [-79.127487, 51.538052], - [-79.024437, 51.476379], - [-78.938316, 51.285831], - [-78.951401, 51.215549], - [-78.844727, 51.163601], - [-78.920547, 51.231098], - [-78.904449, 51.305271], - [-78.823624, 51.34943], - [-78.888344, 51.39666], - [-78.763634, 51.486382], - [-78.688599, 51.48444], - [-78.820282, 51.51305], - [-78.804001, 51.61021], - [-78.943047, 51.658878], - [-78.938316, 51.694439], - [-79.033333, 51.776379], - [-78.836937, 51.841381], - [-78.894173, 51.93832], - [-78.747772, 51.97332], - [-78.695831, 52.008049], - [-78.704178, 52.0536], - [-78.638062, 52.057209], - [-78.648064, 52.085819], - [-78.579453, 52.111382], - [-78.537514, 52.18082], - [-78.556381, 52.23555], - [-78.405838, 52.23777], - [-78.451683, 52.271381], - [-78.556664, 52.272221], - [-78.497223, 52.358601], - [-78.544159, 52.435822], - [-78.506958, 52.460548], - [-78.566391, 52.485271], - [-78.545273, 52.514721], - [-78.763344, 52.564442], - [-78.69194, 52.5961], - [-78.730003, 52.615002], - [-78.725281, 52.648048], - [-78.778877, 52.653599], - [-78.754997, 52.695271], - [-78.820847, 52.703609], - [-78.771393, 52.709721], - [-78.783333, 52.734718], - [-78.850281, 52.764721], - [-78.724716, 52.785549], - [-78.728882, 52.823879], - [-78.780838, 52.81805], - [-78.68721, 52.87999], - [-78.85611, 52.877769], - [-78.899727, 52.922771], - [-78.864723, 52.963612], - [-78.786667, 52.96944], - [-78.826111, 52.978039], - [-78.845551, 53.01194], - [-78.983063, 53.023609], - [-78.918327, 53.052769], - [-78.974716, 53.069439], - [-78.915558, 53.165272], - [-78.944443, 53.182499], - [-78.905563, 53.191929], - [-78.92749, 53.218601], - [-78.888062, 53.224709], - [-78.920273, 53.247768], - [-78.895844, 53.26527], - [-78.956673, 53.283611], - [-78.941101, 53.379162], - [-78.988052, 53.4436], - [-79.063316, 53.43943], - [-79.051392, 53.457211], - [-79.110283, 53.502491], - [-79.012787, 53.531109], - [-79.041382, 53.50555], - [-79.001404, 53.490829], - [-78.959167, 53.51416], - [-79.031113, 53.560822], - [-78.915833, 53.560551], - [-78.984734, 53.614719], - [-79.063049, 53.596939], - [-79.003342, 53.641659], - [-79.04361, 53.6675], - [-79.011124, 53.683601], - [-79.151398, 53.70499], - [-79.036392, 53.72971], - [-79.067497, 53.764439], - [-79.042503, 53.784721], - [-79.06778, 53.80249], - [-79.020554, 53.821941], - [-79.046951, 53.835548], - [-78.901398, 53.815269], - [-79.0625, 53.856659], - [-79.059998, 53.889721], - [-79.101669, 53.909988], - [-78.993332, 53.91193], - [-79.136398, 53.956661], - [-79.033073, 53.946381], - [-79.093887, 53.963329], - [-79.044724, 53.974991], - [-79.097778, 53.97887], - [-79.001099, 53.999989], - [-78.964951, 53.997162], - [-78.976669, 54.01833], - [-79.077499, 54.037498], - [-79.126938, 54.081108], - [-79.286942, 54.082211], - [-79.175278, 54.086651], - [-79.16777, 54.117771], - [-79.116386, 54.10305], - [-79.130829, 54.124989], - [-79.098053, 54.12888], - [-79.138344, 54.144711], - [-79.048889, 54.183331], - [-79.205841, 54.154991], - [-79.379707, 54.1936], - [-79.283333, 54.248878], - [-79.402222, 54.263611], - [-79.438599, 54.276379], - [-79.419159, 54.30138], - [-79.461121, 54.304161], - [-79.472778, 54.364441], - [-79.506958, 54.370831], - [-79.446663, 54.416939], - [-79.501404, 54.421379], - [-79.488052, 54.458599], - [-79.548607, 54.504711], - [-79.524719, 54.523048], - [-79.602783, 54.555271], - [-79.521393, 54.587212], - [-79.576401, 54.60944], - [-79.630547, 54.57111], - [-79.596657, 54.63916], - [-79.675552, 54.62582], - [-79.662514, 54.66777], - [-79.761124, 54.658329], - [-79.636124, 54.698879], - [-79.62999, 54.740551], - [-79.619164, 54.711109], - [-79.240829, 54.81221], - [-78.976669, 54.843048], - [-78.862778, 54.9086], - [-78.335564, 55.03944], - [-77.760277, 55.287769], - [-77.65834, 55.37027], - [-77.214722, 55.595268], - [-77.086121, 55.705551], - [-77.18306, 55.689709], - [-76.840286, 55.928879], - [-76.797501, 55.990269], - [-76.658051, 56.060822], - [-76.619453, 56.185822], - [-76.53833, 56.297779], - [-76.51889, 56.406101], - [-76.505569, 56.803051], - [-76.555832, 57.035], - [-76.529716, 57.105831], - [-76.653061, 57.401379], - [-76.811394, 57.62471], - [-76.806107, 57.669159], - [-77.147232, 58.02277], - [-77.487503, 58.165272], - [-77.444153, 58.187771], - [-77.609444, 58.269989], - [-78.012512, 58.378601], - [-78.013062, 58.413052], - [-78.074173, 58.454441], - [-78.120003, 58.446941], - [-78.268623, 58.519161], - [-78.397232, 58.620831], - [-78.426102, 58.606098], - [-78.327499, 58.53722], - [-78.383904, 58.54166], - [-78.47139, 58.61166], - [-78.568619, 58.614441], - [-78.549438, 58.660271], - [-78.570007, 58.67305], - [-78.467216, 58.70166], - [-78.549438, 58.767769], - [-78.495003, 58.77721], - [-78.488052, 58.820831], - [-78.549438, 58.91082], - [-78.530289, 58.938881], - [-78.570557, 58.96138], - [-78.450844, 58.909988], - [-78.43721, 58.952221], - [-78.361656, 58.958599], - [-78.363892, 58.912491], - [-78.338333, 58.912769], - [-78.245003, 58.99194], - [-78.316963, 58.98555], - [-78.269173, 59.016941], - [-78.283333, 59.049999], - [-78.205566, 59.050541], - [-78.21611, 59.106941], - [-78.178329, 59.08527], - [-78.127487, 59.10833], - [-78.153343, 59.15221], - [-78.08667, 59.156651], - [-78.092773, 59.215], - [-77.828888, 59.281109], - [-77.890839, 59.310822], - [-77.778061, 59.32333], - [-77.764717, 59.351662], - [-77.800827, 59.368599], - [-77.684998, 59.39333], - [-77.779167, 59.426102], - [-77.912514, 59.415272], - [-77.848618, 59.446098], - [-77.867493, 59.5], - [-77.72139, 59.539719], - [-77.712784, 59.620831], - [-77.801102, 59.67527], - [-77.741943, 59.691101], - [-77.773903, 59.709721], - [-77.670273, 59.674438], - [-77.570282, 59.69582], - [-77.473053, 59.634991], - [-77.454178, 59.579159], - [-77.313889, 59.564991], - [-77.440552, 59.59972], - [-77.452499, 59.663052], - [-77.541672, 59.688881], - [-77.491943, 59.71249], - [-77.533073, 59.754711], - [-77.472504, 59.742771], - [-77.43277, 59.784161], - [-77.29361, 59.79361], - [-77.363617, 59.890831], - [-77.42749, 59.914711], - [-77.300278, 59.965], - [-77.323059, 59.98888], - [-77.236389, 59.994709], - [-77.313889, 60.012501], - [-77.206947, 60.04277], - [-77.189987, 60.086109], - [-77.059433, 60.062771], - [-76.958054, 60.10305], - [-76.858887, 60.101101], - [-76.788597, 60.068329], - [-76.833618, 60.115002], - [-76.758904, 60.159161], - [-76.924438, 60.11166], - [-77.199997, 60.150829], - [-77.105003, 60.108601], - [-77.259171, 60.11805], - [-77.232498, 60.053879], - [-77.315826, 60.030548], - [-77.358047, 60.060822], - [-77.433319, 60.036381], - [-77.630829, 60.065269], - [-77.558037, 60.126659], - [-77.406387, 60.130268], - [-77.551392, 60.19471], - [-77.470284, 60.213329], - [-77.573624, 60.25972], - [-77.543327, 60.285831], - [-77.623322, 60.26833], - [-77.602783, 60.32999], - [-77.743607, 60.39333], - [-77.740829, 60.423611], - [-77.574448, 60.502491], - [-77.553879, 60.542221], - [-77.41333, 60.544159], - [-77.549438, 60.571381], - [-77.670273, 60.549721], - [-77.833893, 60.639431], - [-77.607773, 60.758331], - [-77.745003, 60.76416], - [-77.511673, 60.83638], - [-77.890289, 60.75], - [-77.858337, 60.791939], - [-77.965843, 60.791382], - [-77.896393, 60.828049], - [-78.190552, 60.788891], - [-78.159439, 60.86721], - [-77.946663, 61.004711], - [-77.811111, 61.052219], - [-77.790283, 61.151379], - [-77.694443, 61.20277], - [-77.752228, 61.229431], - [-77.719162, 61.26527], - [-77.79277, 61.45388], - [-77.700287, 61.426102], - [-77.678879, 61.461109], - [-77.560547, 61.468048], - [-77.54834, 61.486111], - [-77.670273, 61.519161], - [-77.621109, 61.5611], - [-77.474716, 61.54166], - [-77.631943, 61.579441], - [-77.589172, 61.604439], - [-77.710564, 61.605831], - [-77.785828, 61.700001], - [-77.898903, 61.686378], - [-78.006119, 61.733051], - [-78.003067, 61.77972], - [-78.08139, 61.865829], - [-78.08139, 61.951099], - [-78.137787, 62.009159], - [-78.161667, 62.169159], - [-78.155838, 62.278332], - [-78.023903, 62.39333], - [-77.70195, 62.470268], - [-77.486938, 62.590271], - [-77.418327, 62.58971], - [-77.374161, 62.551929], - [-77.04834, 62.519161], - [-76.948883, 62.535831], - [-76.143066, 62.379162], - [-76.097778, 62.340549], - [-75.949722, 62.350269], - [-75.645844, 62.291939], - [-75.592216, 62.264439], - [-75.836937, 62.187771], - [-75.894997, 62.1586], - [-75.82695, 62.158878], - [-75.486938, 62.296391], - [-75.321953, 62.3111], - [-75.152496, 62.284721], - [-75.152786, 62.227489], - [-75.066673, 62.26833], - [-74.928329, 62.249161], - [-74.765007, 62.14444], - [-74.556381, 62.10471], - [-74.751106, 62.191101], - [-74.72583, 62.244999], - [-74.410004, 62.251389], - [-74.280563, 62.321659], - [-74, 62.358051], - [-73.868057, 62.458328], - [-73.678879, 62.479988], - [-73.5625, 62.377769], - [-73.387512, 62.36916], - [-73.211403, 62.312771], - [-73.204178, 62.261379], - [-73.063606, 62.182499], - [-72.903877, 62.142769], - [-72.94249, 62.11805], - [-72.784439, 62.106941], - [-72.815002, 62.137772], - [-72.736938, 62.14333], - [-72.626663, 62.115551], - [-72.617493, 62.09193], - [-72.661942, 62.05666], - [-72.596123, 62.04916], - [-72.618332, 62.033611], - [-72.604446, 61.9711], - [-72.678879, 61.949429], - [-72.680832, 61.900269], - [-72.794197, 61.834751], - [-72.66806, 61.879162], - [-72.669159, 61.847771], - [-72.596123, 61.80555], - [-72.636124, 61.90221], - [-72.59584, 61.94276], - [-72.205841, 61.863331], - [-72.12999, 61.79916], - [-72.200287, 61.789162], - [-72.224716, 61.751659], - [-72.145844, 61.75388], - [-72.061661, 61.73555], - [-71.99028, 61.67638], - [-72.087784, 61.598881], - [-72.236656, 61.619438], - [-72.303329, 61.567211], - [-72.210831, 61.598331], - [-72.08371, 61.582458], - [-71.980293, 61.599998], - [-71.933609, 61.663601], - [-71.958054, 61.70694], - [-71.675278, 61.658878], - [-71.571671, 61.605549], - [-71.549438, 61.55888], - [-71.855003, 61.530548], - [-71.789436, 61.521931], - [-71.795273, 61.492489], - [-71.746948, 61.465832], - [-71.887787, 61.43082], - [-71.585281, 61.406651], - [-71.689163, 61.36832], - [-71.822777, 61.372761], - [-71.792503, 61.357498], - [-71.818619, 61.346661], - [-71.664436, 61.32777], - [-71.72583, 61.285831], - [-71.598892, 61.254169], - [-71.62999, 61.204708], - [-71.569458, 61.214439], - [-71.578339, 61.15527], - [-71.512222, 61.161659], - [-71.530838, 61.213612], - [-71.473328, 61.223049], - [-71.370003, 61.118599], - [-71.361389, 61.14777], - [-71.215843, 61.16777], - [-71.193329, 61.115829], - [-71.174713, 61.139992], - [-71.011398, 61.121658], - [-70.928329, 61.102489], - [-70.936111, 61.073051], - [-70.818069, 61.064442], - [-70.767227, 61.048328], - [-70.780563, 61.078331], - [-70.751404, 61.082211], - [-70.656387, 61.050541], - [-70.676941, 61.02166], - [-70.547501, 61.0075], - [-70.566391, 61.040829], - [-70.527222, 61.060822], - [-70.426392, 61.023319], - [-70.444992, 61.053879], - [-70.410004, 61.05471], - [-70.41362, 61.086651], - [-70.351936, 61.061378], - [-70.326401, 61.09388], - [-70.246658, 61.067501], - [-70.146118, 61.084721], - [-70.107773, 61.059719], - [-70.159729, 61.014439], - [-70.09639, 61.009991], - [-70.114441, 60.985271], - [-70.085831, 60.95499], - [-70.088058, 60.89777], - [-70.147781, 60.87999], - [-70.067497, 60.875271], - [-70.061111, 60.84444], - [-69.92749, 60.80777], - [-69.849731, 60.846661], - [-69.93306, 60.850552], - [-69.756958, 60.91888], - [-69.740547, 60.881378], - [-69.658623, 60.876942], - [-69.64389, 60.90332], - [-69.689713, 60.961658], - [-69.656662, 61.0536], - [-69.599991, 61.08194], - [-69.51445, 61.069439], - [-69.426392, 60.923611], - [-69.366096, 60.90694], - [-69.391113, 60.871929], - [-69.368607, 60.8111], - [-69.71611, 60.68277], - [-69.685822, 60.64444], - [-69.696663, 60.598049], - [-69.656952, 60.574711], - [-69.826111, 60.525551], - [-69.748894, 60.461658], - [-69.776398, 60.415539], - [-69.730003, 60.404991], - [-69.722504, 60.364159], - [-69.768066, 60.31221], - [-69.606377, 60.232769], - [-69.651108, 60.183331], - [-69.594162, 60.18082], - [-69.62471, 60.067501], - [-69.7164, 60.04166], - [-69.841949, 60.063049], - [-69.841377, 60.023048], - [-69.770279, 60.001942], - [-69.794037, 59.98941], - [-70.33168, 60.028332], - [-70.315002, 60.005001], - [-70.556953, 59.992771], - [-71.030563, 60.061939], - [-70.566963, 59.968601], - [-70.227219, 59.98666], - [-70.061394, 59.944988], - [-69.726936, 59.963612], - [-69.717499, 59.923882], - [-69.759171, 59.902489], - [-69.562767, 59.86805], - [-69.612213, 59.784439], - [-69.545837, 59.763611], - [-69.654167, 59.697769], - [-69.519447, 59.653049], - [-69.571953, 59.590271], - [-69.679443, 59.56361], - [-69.748337, 59.509991], - [-69.759453, 59.481098], - [-69.697487, 59.480549], - [-69.645279, 59.419159], - [-69.66777, 59.386662], - [-69.631378, 59.374989], - [-69.758347, 59.320271], - [-69.631104, 59.298882], - [-69.412514, 59.355], - [-69.362503, 59.339989], - [-69.367218, 59.307499], - [-69.249733, 59.323608], - [-69.266403, 59.283329], - [-69.235001, 59.239429], - [-69.29277, 59.208328], - [-69.371933, 59.240551], - [-69.373894, 59.18943], - [-69.419159, 59.19249], - [-69.420837, 59.223049], - [-69.470284, 59.213879], - [-69.540283, 59.166382], - [-69.533073, 59.110821], - [-69.501709, 59.106331], - [-69.463058, 59.129429], - [-69.344162, 59.091099], - [-69.439713, 59.02277], - [-69.506958, 59.069721], - [-69.454178, 58.89222], - [-69.518341, 58.885551], - [-69.547501, 58.808041], - [-69.670837, 58.792221], - [-69.71611, 58.864719], - [-69.672234, 58.89138], - [-69.671661, 58.93055], - [-69.711937, 58.91888], - [-69.709442, 58.972759], - [-69.756668, 58.98999], - [-69.78833, 58.96693], - [-69.869164, 59.053051], - [-69.861107, 58.984989], - [-69.895554, 58.957771], - [-69.80722, 58.931938], - [-69.797501, 58.82888], - [-69.898354, 58.873322], - [-69.899986, 58.82777], - [-70.25, 58.769711], - [-70.036392, 58.733601], - [-69.919724, 58.77388], - [-69.925003, 58.69249], - [-69.79834, 58.704708], - [-69.876663, 58.643608], - [-69.813049, 58.589161], - [-69.700287, 58.697208], - [-69.642776, 58.695541], - [-69.608047, 58.754711], - [-69.507507, 58.774712], - [-69.348892, 58.871658], - [-69.12999, 58.901661], - [-68.889183, 58.876942], - [-68.763062, 58.921101], - [-68.390694, 58.81171], - [-68.355827, 58.774441], - [-68.380547, 58.697769], - [-68.326683, 58.664711], - [-68.348343, 58.600552], - [-68.274437, 58.590549], - [-68.288887, 58.524712], - [-68.193604, 58.540829], - [-68.223587, 58.397831], - [-68.31723, 58.241661], - [-68.344162, 58.127491], - [-68.46666, 58.045551], - [-68.964722, 57.95916], - [-69.202499, 57.868599], - [-69.369049, 57.765251], - [-68.951401, 57.938599], - [-68.404167, 58.039719], - [-68.313606, 58.10305], - [-68.303329, 58.195541], - [-68.23056, 58.25555], - [-68.168327, 58.414711], - [-68.171387, 58.48999], - [-68.125397, 58.526058], - [-68.026672, 58.51305], - [-68.003342, 58.576389], - [-67.959167, 58.558041], - [-67.958344, 58.51194], - [-67.896118, 58.500549], - [-67.923317, 58.403049], - [-67.855827, 58.314991], - [-67.897232, 58.25333], - [-68.09584, 58.138599], - [-68.128326, 58.073608], - [-68.006668, 58.131939], - [-67.954453, 58.211941], - [-67.861656, 58.232208], - [-67.801392, 58.296661], - [-67.830566, 58.331379], - [-67.787514, 58.464439], - [-67.731949, 58.461941], - [-67.667503, 58.42749], - [-67.707497, 58.383049], - [-67.693047, 58.354439], - [-67.737213, 58.326939], - [-67.730827, 58.283611], - [-67.642776, 58.2486], - [-67.703056, 58.16193], - [-67.671661, 58.070831], - [-67.735817, 57.966381], - [-67.709732, 57.923321], - [-67.708344, 57.982491], - [-67.635559, 58.04277], - [-67.65361, 58.122761], - [-67.481377, 58.27388], - [-67.378883, 58.276939], - [-67.16861, 58.37804], - [-67.090561, 58.350552], - [-67.056381, 58.388889], - [-67.077499, 58.4175], - [-67.011398, 58.424709], - [-66.944153, 58.501942], - [-66.876938, 58.47916], - [-66.898064, 58.445271], - [-66.846657, 58.426659], - [-66.804443, 58.493881], - [-66.618607, 58.48777], - [-66.669449, 58.53194], - [-66.620827, 58.54694], - [-66.621109, 58.60471], - [-66.583618, 58.631939], - [-66.599167, 58.673321], - [-66.563606, 58.673321], - [-66.551941, 58.71138], - [-66.458893, 58.721661], - [-66.489723, 58.75444], - [-66.465012, 58.819988], - [-66.349991, 58.843048], - [-66.11055, 58.720539], - [-66.072243, 58.650829], - [-65.999161, 58.65443], - [-65.985947, 58.622162], - [-65.935822, 58.60471], - [-66.021393, 58.495541], - [-65.991096, 58.40694], - [-66.089447, 58.365269], - [-66.065552, 58.320271], - [-66.041672, 58.36805], - [-65.965012, 58.391941], - [-65.920273, 58.44582], - [-65.98056, 58.483051], - [-65.904999, 58.52972], - [-65.884171, 58.58083], - [-65.828613, 58.572769], - [-65.935547, 58.643051], - [-65.948608, 58.682209], - [-66.031387, 58.689159], - [-66.044998, 58.755829], - [-66.103882, 58.773609], - [-66.022507, 58.86166], - [-65.970001, 58.826099], - [-65.797501, 58.847488], - [-65.990829, 58.899719], - [-65.85083, 58.946381], - [-65.880829, 59.010551], - [-65.678047, 58.926941], - [-65.678329, 58.963879], - [-65.793327, 59.005829], - [-65.739723, 59.018051], - [-65.777496, 59.029991], - [-65.660278, 59.044159], - [-65.5, 58.98333], - [-65.58223, 59.049721], - [-65.317497, 59.041382], - [-65.54361, 59.101101], - [-65.638062, 59.069439], - [-65.715012, 59.148331], - [-65.684433, 59.19305], - [-65.737778, 59.209991], - [-65.743057, 59.265831], - [-65.676102, 59.261108], - [-65.591377, 59.188042], - [-65.610817, 59.253052], - [-65.492493, 59.255001], - [-65.565552, 59.30138], - [-65.570847, 59.37804], - [-65.357224, 59.27721], - [-65.444992, 59.351391], - [-65.430832, 59.403599], - [-65.383057, 59.401661], - [-65.49527, 59.43388], - [-65.469727, 59.444149], - [-65.542221, 59.48999], - [-65.188599, 59.45916], - [-65.126663, 59.407768], - [-64.983322, 59.376381], - [-65.22084, 59.488331], - [-65.411667, 59.509441], - [-65.54361, 59.736382], - [-65.468338, 59.75972], - [-65.495003, 59.789989], - [-65.371933, 59.796391], - [-65.381668, 59.824169], - [-65.333893, 59.84721], - [-65.152786, 59.779991], - [-64.983887, 59.762772], - [-65.211121, 59.833599], - [-65.231949, 59.88583], - [-65.133904, 59.868599], - [-65.20639, 59.919991], - [-65.148903, 59.92305], - [-65.138611, 59.953049], - [-65.066673, 59.934429], - [-65.12471, 59.971661], - [-65.063316, 59.97694], - [-65.126099, 60.011108], - [-65.12471, 60.0425], - [-65.071671, 60.035271], - [-65.026947, 60.067501], - [-65.0625, 60.096939], - [-64.988892, 60.11694], - [-64.993057, 60.14888], - [-64.943604, 60.191101], - [-64.874161, 60.20583], - [-64.955276, 60.255829], - [-64.861389, 60.29694], - [-64.835564, 60.363331], - [-64.641678, 60.344711], - [-64.534821, 60.302601], - [-64.853882, 60.261669], - [-64.851936, 60.22332], - [-64.767227, 60.174999], - [-64.637222, 60.178329], - [-64.598892, 60.111111], - [-64.734161, 60.103321], - [-64.702499, 60.064991], - [-64.796951, 60.039719], - [-64.906387, 60.04805], - [-64.847778, 59.964161], - [-64.65361, 59.929989], - [-64.661911, 59.88361], - [-64.767776, 59.87999], - [-64.744453, 59.84499], - [-64.814163, 59.81889], - [-64.773064, 59.698879], - [-64.82695, 59.531109], - [-64.700844, 59.44582], - [-64.432503, 59.52943], - [-64.340286, 59.49638], - [-64.5, 59.433048], - [-64.485001, 59.396389], - [-64.538063, 59.3736], - [-64.499161, 59.33971], - [-64.53833, 59.285549], - [-64.507507, 59.25], - [-64.534729, 59.197491], - [-64.493057, 59.158878], - [-64.493057, 59.104439], - [-64.365013, 59.07333], - [-64.291382, 59.016659], - [-64.415833, 58.981098], - [-64.656387, 59.028599], - [-64.720001, 59.069988], - [-64.829453, 59.03249], - [-64.864723, 58.990551], - [-64.838898, 58.958599], - [-64.878883, 58.92749], - [-64.809433, 58.911098], - [-64.718887, 58.945271], - [-64.568069, 58.887211], - [-64.300278, 58.882488], - [-64.258621, 58.849998], - [-64.257507, 58.77943], - [-64.156113, 58.74527], - [-63.999439, 58.81916], - [-63.841942, 58.82972], - [-63.766651, 58.874081], - [-63.588329, 58.846378], - [-63.480549, 58.7486], - [-63.574169, 58.715832], - [-64.051102, 58.676102], - [-64.097504, 58.60722], - [-64.084167, 58.55555], - [-64.022507, 58.52055], - [-63.886951, 58.563049], - [-63.81945, 58.471371], - [-64.156387, 58.348331], - [-64.21167, 58.23555], - [-64.398064, 58.18166], - [-64.431953, 58.086109], - [-64.208618, 58.033329], - [-64.214447, 57.977489], - [-64.057503, 57.76944], - [-64.022507, 57.771381], - [-64.006668, 57.812771], - [-63.92667, 57.797218], - [-63.891941, 57.73027], - [-63.825562, 57.690269], - [-63.765282, 57.732769], - [-63.70055, 57.662769], - [-63.653332, 57.731098], - [-63.595829, 57.734161], - [-63.60722, 57.663601], - [-63.721378, 57.602489], - [-63.765011, 57.573879], - [-63.763889, 57.482491], - [-63.709721, 57.37249], - [-63.836941, 57.325829], - [-63.87611, 57.242771], - [-63.855282, 57.193878], - [-63.81472, 57.27972], - [-63.741112, 57.232769], - [-63.7925, 57.165272], - [-63.78751, 57.111938], - [-63.873611, 57.06638], - [-63.863331, 56.992771], - [-63.917782, 56.930271], - [-63.87138, 56.87804], - [-64.00528, 56.850552], - [-63.992229, 56.785831], - [-64.083618, 56.765549], - [-64.12944, 56.71027], - [-63.945, 56.549721], - [-63.942219, 56.479431], - [-63.87138, 56.43943], - [-63.97472, 56.412769], - [-64.169724, 56.427769], - [-64.114166, 56.39027], - [-64.105827, 56.331379], - [-64.136673, 56.3036], - [-64.08667, 56.259159], - [-63.97472, 56.259159], - [-63.876949, 56.217209], - [-64.010834, 56.159988], - [-64.020279, 56.076389], - [-63.847778, 56.12027], - [-63.880001, 56.076939], - [-63.79084, 56.039162], - [-63.445, 56.02277], - [-63.69416, 55.942211], - [-63.715279, 55.859161], - [-63.488331, 55.696659], - [-63.448051, 55.59943], - [-63.29834, 55.523319], - [-63.144169, 55.526379], - [-63.176392, 55.419441], - [-63.095829, 55.349998], - [-63.176571, 55.296539], - [-63.519451, 55.183601], - [-63.566109, 55.060268], - [-63.435268, 54.973598], - [-63.66917, 54.612209], - [-63.976189, 54.626461], - [-64.325562, 54.751942], - [-64.404327, 54.75251], - [-64.552223, 54.720539], - [-64.811661, 54.749161], - [-65.121933, 54.69471], - [-65.443878, 54.745831], - [-65.689987, 54.713329], - [-65.835281, 54.831379], - [-65.858337, 54.907768], - [-65.957779, 54.92944], - [-66.035004, 54.90971], - [-66.23999, 54.99194], - [-66.576401, 55.250549], - [-66.681953, 55.25333], - [-66.688049, 55.301102], - [-66.77861, 55.338879], - [-66.844162, 55.326099], - [-66.688889, 55.204159], - [-66.740829, 55.17749], - [-66.765839, 55.105549], - [-66.65976, 54.978031], - [-66.732773, 54.94833], - [-66.678329, 54.894161], - [-66.605003, 54.790829], - [-66.712219, 54.78194], - [-66.698608, 54.742222], - [-66.738602, 54.732769], - [-66.946953, 54.801659], - [-67.028061, 54.89777], - [-67.297783, 55.008049], - [-67.273903, 55.066669], - [-67.428329, 55.07111], - [-67.453056, 55.018879], - [-67.362213, 54.87582], - [-67.263344, 54.825272], - [-67.30777, 54.783878], - [-67.184998, 54.71944], - [-67.213898, 54.66888], - [-67.036392, 54.621658], - [-67.219452, 54.607498], - [-67.305557, 54.504169], - [-67.492493, 54.58194], - [-67.601387, 54.56638], - [-67.633057, 54.479988], - [-67.586121, 54.4175], - [-67.59584, 54.365269], - [-67.49472, 54.314442], - [-67.531677, 54.248878], - [-67.485001, 54.234161], - [-67.637222, 54.174999], - [-67.781952, 54.063881], - [-67.738441, 54.000011], - [-67.609161, 53.928051], - [-67.588058, 53.85722], - [-67.430557, 53.778332], - [-67.491943, 53.603882], - [-67.141953, 53.542221], - [-67.128883, 53.464161], - [-67.068619, 53.4286], - [-67.06778, 53.384159], - [-66.987503, 53.403599], - [-66.910004, 53.340271], - [-66.991669, 53.195271], - [-66.948608, 53.109718], - [-66.979446, 53.027771], - [-67.078056, 52.94804], - [-67.058327, 52.804989], - [-67.092773, 52.72971], - [-67.067497, 52.699429], - [-66.891388, 52.673321], - [-66.87471, 52.747768], - [-66.813316, 52.66415], - [-66.66806, 52.725819], - [-66.648064, 52.94582], - [-66.525284, 52.943321], - [-66.476936, 53.034161], - [-66.345551, 52.974159], - [-66.26973, 52.877491], - [-66.378883, 52.836109], - [-66.328339, 52.736938], - [-66.433884, 52.706379], - [-66.43222, 52.611382], - [-66.373611, 52.5425], - [-66.446663, 52.530819], - [-66.358047, 52.406651], - [-66.458618, 52.3661], - [-66.486656, 52.312489], - [-66.438889, 52.200829], - [-66.335564, 52.136379], - [-66.303879, 52.222759], - [-66.319733, 52.289162], - [-66.275558, 52.311661], - [-66.173889, 52.220539], - [-66.068069, 52.216381], - [-66.063889, 52.11832], - [-65.916946, 52.050831], - [-65.801666, 52.04277], - [-65.799438, 52.095539], - [-65.758621, 52.111382], - [-65.56723, 52.046661], - [-65.538597, 52.123878], - [-65.453613, 52.20805], - [-65.108612, 52.17083], - [-64.853333, 52.021931], - [-64.84584, 51.93082], - [-64.587784, 51.82888], - [-64.593887, 51.796101], - [-64.718063, 51.747768], - [-64.703056, 51.69276], - [-64.604172, 51.642769], - [-64.581123, 51.55777], - [-64.44249, 51.66777], - [-64.264183, 51.739719], - [-64.357224, 51.850552], - [-64.317497, 51.903599], - [-64.330841, 51.965271], - [-64.274437, 52.00333], - [-64.293327, 52.046391], - [-64.257782, 52.12804], - [-64.115829, 52.151379], - [-64.131378, 52.28138], - [-64.08168, 52.37249], - [-64.208893, 52.548882], - [-64.175278, 52.60944], - [-64.202217, 52.672218], - [-64.156662, 52.738331], - [-64.201401, 52.790829], - [-64.172501, 52.85083], - [-64.080841, 52.881378], - [-63.959999, 52.867771], - [-63.982769, 52.933601], - [-63.919449, 52.97694], - [-63.923611, 53.077221], - [-63.693329, 53.113609], - [-63.634731, 53.094151], - [-63.62611, 53.042221], - [-63.54195, 52.970829], - [-63.595829, 52.770771], - [-63.423061, 52.707211], - [-63.377781, 52.650829], - [-63.839722, 52.61805], - [-63.971378, 52.570831], - [-64.08168, 52.470539], - [-64.027496, 52.433048], - [-63.976391, 52.458599], - [-63.930279, 52.41777], - [-63.92445, 52.383881], - [-64.013062, 52.387211], - [-63.987499, 52.362499], - [-63.941269, 52.264], - [-63.65535, 52.124359], - [-63.637779, 52.039989], - [-63.824718, 52.070549], - [-63.75111, 51.999722], - [-57.367771, 51.999439], - [-57.101109, 52], - [-57.10424, 51.41267] - ] - ] - ] - }, - "properties": { - "name": "Quebec", - "ISOCODE": "CA-QC", - "cartodb_id": 1, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-55.88306, 53.486382], - [-55.729439, 53.450272], - [-55.79528, 53.458328], - [-55.774441, 53.41444], - [-55.817219, 53.41777], - [-55.801392, 53.39249], - [-55.971661, 53.44582], - [-55.88306, 53.486382] - ] - ], - [ - [ - [-55.466942, 50.784161], - [-55.557499, 50.701389], - [-55.653049, 50.727211], - [-55.61916, 50.791382], - [-55.589161, 50.772491], - [-55.46278, 50.80582], - [-55.466942, 50.784161] - ] - ], - [ - [ - [-54.08112, 49.736382], - [-53.98167, 49.649441], - [-54.257778, 49.566669], - [-54.293331, 49.580551], - [-54.303329, 49.670269], - [-54.25528, 49.672489], - [-54.28278, 49.71666], - [-54.215279, 49.720829], - [-54.19194, 49.674999], - [-54.148338, 49.74749], - [-54.08112, 49.736382] - ] - ], - [ - [ - [-54.52972, 49.633881], - [-54.576672, 49.558601], - [-54.727219, 49.528332], - [-54.739441, 49.490269], - [-54.871941, 49.487499], - [-54.807499, 49.517208], - [-54.884171, 49.546101], - [-54.891941, 49.590549], - [-54.793331, 49.602779], - [-54.788342, 49.55777], - [-54.743889, 49.544998], - [-54.62722, 49.633049], - [-54.620831, 49.602779], - [-54.536121, 49.66415], - [-54.52972, 49.633881] - ] - ], - [ - [ - [-53.564159, 48.19054], - [-53.509731, 48.19833], - [-53.512501, 48.145271], - [-53.553329, 48.106941], - [-53.53083, 48.097771], - [-53.634171, 48.075272], - [-53.85611, 48.098049], - [-53.935829, 48.182499], - [-53.906391, 48.21027], - [-53.850559, 48.161381], - [-53.765282, 48.174709], - [-53.68972, 48.147221], - [-53.564159, 48.19054] - ] - ], - [ - [ - [-55.927502, 47.676659], - [-55.93, 47.639431], - [-55.876389, 47.61166], - [-55.901939, 47.602489], - [-56.113621, 47.644711], - [-55.927502, 47.676659] - ] - ], - [ - [ - [-54.125, 47.640831], - [-54.243328, 47.399441], - [-54.364449, 47.406651], - [-54.262218, 47.474709], - [-54.205559, 47.546391], - [-54.240002, 47.558041], - [-54.172779, 47.621101], - [-54.17194, 47.585548], - [-54.135281, 47.668049], - [-54.125, 47.640831] - ] - ], - [ - [ - [-64.631828, 60.35746], - [-64.790283, 60.391109], - [-64.867493, 60.450272], - [-64.85611, 60.473881], - [-64.639999, 60.484718], - [-64.525558, 60.413319], - [-64.532227, 60.374161], - [-64.47084, 60.405819], - [-64.426941, 60.401379], - [-64.427673, 60.372929], - [-64.478333, 60.334431], - [-64.423607, 60.28249], - [-64.631828, 60.35746] - ] - ], - [ - [ - [-64.534821, 60.302601], - [-64.384171, 60.238331], - [-64.613052, 60.28944], - [-64.759453, 60.231098], - [-64.554169, 60.262772], - [-64.463333, 60.22694], - [-64.562767, 60.17305], - [-64.405563, 60.220268], - [-64.426666, 60.19249], - [-64.376938, 60.160549], - [-64.486938, 60.115551], - [-64.469162, 60.082771], - [-64.627487, 60.070831], - [-64.827499, 59.986382], - [-64.603333, 60.051659], - [-64.45639, 60.059429], - [-64.373894, 60.1236], - [-64.371933, 60.073051], - [-64.416397, 60.06332], - [-64.371109, 60.04361], - [-64.389183, 60.01416], - [-64.588608, 60.001942], - [-64.398064, 59.971661], - [-64.396957, 59.937771], - [-64.499443, 59.891659], - [-64.363327, 59.922489], - [-64.330002, 59.984161], - [-64.224442, 59.99527], - [-64.325287, 60.015831], - [-64.314713, 60.05138], - [-64.173607, 60.028332], - [-64.150284, 59.985271], - [-64.294449, 59.948601], - [-64.186394, 59.91972], - [-64.259743, 59.872219], - [-64.126099, 59.896099], - [-64.177223, 59.785549], - [-64.261948, 59.789162], - [-64.254997, 59.75666], - [-64.163887, 59.684158], - [-63.956669, 59.689991], - [-63.96611, 59.658878], - [-63.923889, 59.653599], - [-64.047501, 59.635269], - [-64.122498, 59.519711], - [-64.040833, 59.5536], - [-63.997219, 59.626659], - [-63.863621, 59.601662], - [-63.98, 59.505268], - [-63.87138, 59.56638], - [-63.7225, 59.513889], - [-63.799728, 59.41666], - [-64.000557, 59.41444], - [-64.06221, 59.382488], - [-63.763889, 59.38805], - [-63.755562, 59.358051], - [-63.71167, 59.365269], - [-63.805828, 59.240269], - [-63.741112, 59.25639], - [-63.64999, 59.362499], - [-63.54306, 59.348049], - [-63.534729, 59.264439], - [-63.637779, 59.218601], - [-63.605282, 59.209721], - [-63.380001, 59.283878], - [-63.45084, 59.240829], - [-63.431671, 59.22443], - [-63.462219, 59.1936], - [-63.376659, 59.213329], - [-63.366661, 59.186378], - [-63.42556, 59.126381], - [-63.551392, 59.084431], - [-63.76778, 59.04916], - [-63.934441, 59.081108], - [-64.047234, 59.01944], - [-63.898891, 59.05666], - [-63.91222, 59.000549], - [-63.868328, 58.95332], - [-63.86916, 59.031658], - [-63.527222, 59.030548], - [-63.372768, 59.101101], - [-63.125, 59.055271], - [-63.175282, 59.026939], - [-63.336109, 59.02499], - [-63.224998, 59.001389], - [-63.304169, 58.94249], - [-63.173061, 58.97971], - [-63.170559, 58.954708], - [-63.226391, 58.939709], - [-63.160549, 58.92638], - [-63.325001, 58.855831], - [-63.15778, 58.873322], - [-63.182781, 58.833599], - [-63.160278, 58.823051], - [-63.071949, 58.902771], - [-62.994999, 58.885551], - [-63.053329, 58.859161], - [-62.924171, 58.821381], - [-62.90527, 58.789989], - [-62.918331, 58.74527], - [-63.04084, 58.707771], - [-62.867771, 58.71138], - [-62.843609, 58.659431], - [-62.917221, 58.630821], - [-62.915829, 58.600269], - [-63.16917, 58.503052], - [-63.439991, 58.51833], - [-63.52417, 58.470829], - [-63.385281, 58.488331], - [-63.34333, 58.4561], - [-63.589439, 58.300831], - [-63.264721, 58.463051], - [-63.089722, 58.458328], - [-63.151939, 58.373878], - [-63.050549, 58.450272], - [-63.015011, 58.42527], - [-62.80444, 58.492222], - [-62.77528, 58.451099], - [-62.745281, 58.49361], - [-62.589439, 58.499722], - [-62.556389, 58.478039], - [-62.650551, 58.408329], - [-62.61972, 58.376942], - [-62.623051, 58.30444], - [-62.858608, 58.262501], - [-62.90527, 58.209991], - [-62.832779, 58.251659], - [-62.658611, 58.270271], - [-62.59277, 58.2486], - [-62.582779, 58.21693], - [-62.661381, 58.17305], - [-63.074718, 58.151379], - [-63.012218, 58.135551], - [-63.023891, 58.118881], - [-63.21167, 58.062489], - [-63.132221, 58.058331], - [-63.15583, 58.026939], - [-63.340839, 57.979988], - [-63.12888, 57.997768], - [-63.089161, 58.06221], - [-62.838051, 58.145], - [-62.846111, 58.118881], - [-62.709438, 58.14249], - [-62.652222, 58.118599], - [-62.57362, 58.164711], - [-62.554722, 58.121101], - [-62.52306, 58.1661], - [-62.452782, 58.17527], - [-62.531391, 58.095268], - [-62.50639, 58.055271], - [-62.46674, 58.102371], - [-62.368889, 58.11166], - [-62.426392, 58.081379], - [-62.38612, 58.07222], - [-62.388889, 58.042221], - [-62.33556, 58.067501], - [-62.309719, 58.028599], - [-62.386669, 57.993881], - [-62.528339, 58.00555], - [-62.672779, 57.929989], - [-62.456951, 57.967491], - [-62.423611, 57.957771], - [-62.408611, 57.865551], - [-62.34222, 57.975819], - [-62.333611, 57.90638], - [-62.276661, 57.950829], - [-62.206108, 57.907768], - [-62.127491, 57.968048], - [-62.059719, 57.89777], - [-62.13805, 57.835819], - [-62.120831, 57.800831], - [-61.99667, 57.772221], - [-61.946949, 57.71471], - [-61.965839, 57.687489], - [-61.89333, 57.66972], - [-61.88306, 57.637501], - [-62.051392, 57.588879], - [-62.13612, 57.528332], - [-62.271938, 57.533051], - [-62.33556, 57.456379], - [-62.54528, 57.50111], - [-62.36528, 57.41972], - [-62.167221, 57.464439], - [-61.891392, 57.41193], - [-61.803051, 57.358891], - [-61.91972, 57.365551], - [-61.868328, 57.3386], - [-61.863892, 57.285549], - [-62.015839, 57.24305], - [-61.89555, 57.211109], - [-61.852501, 57.165272], - [-61.77306, 57.19305], - [-61.779171, 57.148331], - [-61.636391, 57.232491], - [-61.623329, 57.215271], - [-61.696659, 57.153881], - [-61.441669, 57.148609], - [-61.358341, 57.08749], - [-61.37944, 57.05138], - [-61.348339, 57.025269], - [-61.371941, 56.995541], - [-61.346111, 56.951099], - [-61.378052, 56.982208], - [-61.487782, 56.981659], - [-61.639999, 56.883881], - [-61.661381, 56.809429], - [-61.906391, 56.795269], - [-61.889999, 56.69804], - [-61.846111, 56.75639], - [-61.702499, 56.73082], - [-61.73444, 56.697208], - [-61.825001, 56.706661], - [-61.65889, 56.64777], - [-61.688889, 56.61721], - [-61.923061, 56.64555], - [-61.895279, 56.68082], - [-61.992771, 56.660271], - [-62.49889, 56.77972], - [-62.279442, 56.826389], - [-62.04945, 56.8325], - [-62.543892, 56.837212], - [-62.58556, 56.79277], - [-62.503059, 56.762211], - [-61.916389, 56.62027], - [-62.22472, 56.609161], - [-61.945271, 56.57888], - [-61.715, 56.57222], - [-61.65527, 56.533878], - [-61.66222, 56.5061], - [-61.77306, 56.484718], - [-62.046951, 56.504711], - [-62.082218, 56.481659], - [-61.949169, 56.46138], - [-62.139172, 56.44471], - [-61.98473, 56.415272], - [-61.930279, 56.437489], - [-61.79084, 56.39249], - [-61.84277, 56.380821], - [-61.772221, 56.336651], - [-61.589161, 56.28722], - [-61.811668, 56.305271], - [-61.65889, 56.26749], - [-61.778339, 56.25444], - [-61.827782, 56.264721], - [-61.753059, 56.277771], - [-61.878609, 56.298611], - [-62.076111, 56.285], - [-61.919449, 56.212212], - [-61.65527, 56.224159], - [-61.56028, 56.194439], - [-61.350842, 56.22221], - [-61.33028, 56.176659], - [-61.410549, 56.124439], - [-61.342499, 56.14138], - [-61.337502, 56.100269], - [-61.452221, 56.056938], - [-61.237499, 56.04277], - [-61.50362, 56.006939], - [-61.390839, 55.998329], - [-61.376659, 55.97971], - [-61.40472, 55.97221], - [-61.460831, 55.99638], - [-61.415001, 55.96027], - [-61.117771, 55.966099], - [-61.074451, 55.928329], - [-61.07917, 55.893051], - [-61.201672, 55.884159], - [-61.10445, 55.845539], - [-60.755562, 55.84943], - [-60.733059, 55.80249], - [-60.807781, 55.755268], - [-60.945339, 55.751308], - [-60.96666, 55.74638], - [-60.9375, 55.727211], - [-60.75639, 55.729431], - [-60.647221, 55.822769], - [-60.60194, 55.814709], - [-60.62389, 55.783611], - [-60.59277, 55.704159], - [-60.661381, 55.66666], - [-60.62888, 55.629162], - [-60.679169, 55.563881], - [-60.60223, 55.626659], - [-60.503059, 55.803051], - [-60.36195, 55.761669], - [-60.34, 55.786381], - [-60.33778, 55.7486], - [-60.384171, 55.719711], - [-60.37167, 55.678329], - [-60.493889, 55.658039], - [-60.531109, 55.59721], - [-60.465839, 55.63166], - [-60.393059, 55.601101], - [-60.447781, 55.500271], - [-60.340279, 55.57888], - [-60.316391, 55.573879], - [-60.339439, 55.533611], - [-60.305561, 55.524158], - [-60.45306, 55.444988], - [-60.437771, 55.399441], - [-60.478329, 55.347488], - [-60.331669, 55.48666], - [-60.30611, 55.486382], - [-60.35722, 55.4286], - [-60.285278, 55.438042], - [-60.268608, 55.502491], - [-60.201672, 55.4786], - [-60.196659, 55.422218], - [-60.354721, 55.395], - [-60.399441, 55.289989], - [-60.46666, 55.29472], - [-60.533058, 55.204441], - [-60.612499, 55.16666], - [-60.553341, 55.181561], - [-60.510761, 55.2076], - [-60.46833, 55.237499], - [-60.430279, 55.21693], - [-60.396111, 55.253609], - [-60.348049, 55.250549], - [-60.46611, 55.189709], - [-60.52306, 55.111382], - [-60.670559, 55.04472], - [-60.683331, 54.994999], - [-60.482498, 55.105549], - [-60.446659, 55.15638], - [-60.385559, 55.150539], - [-60.16, 55.285549], - [-60.13805, 55.278049], - [-60.194439, 55.192211], - [-60.021389, 55.266109], - [-60.18972, 55.096939], - [-60.220551, 55.10638], - [-60.288342, 55.053322], - [-60.293892, 55.01944], - [-60.099442, 55.136662], - [-60.020279, 55.234989], - [-59.91695, 55.233879], - [-59.914719, 55.26416], - [-59.779171, 55.32972], - [-59.755001, 55.2761], - [-59.711941, 55.269711], - [-59.752781, 55.220829], - [-59.732498, 55.197208], - [-59.863892, 55.15416], - [-59.96278, 55.161098], - [-59.963619, 55.110279], - [-59.921108, 55.139721], - [-59.800831, 55.108891], - [-59.729439, 55.14444], - [-59.638889, 55.13055], - [-59.535278, 55.16777], - [-59.50584, 55.213329], - [-59.501671, 55.141941], - [-59.427219, 55.139992], - [-59.519169, 55.054161], - [-59.733059, 54.967491], - [-59.715549, 54.946098], - [-59.840549, 54.879162], - [-59.860279, 54.845539], - [-59.821388, 54.846939], - [-59.827499, 54.82444], - [-59.94416, 54.749722], - [-59.791111, 54.785549], - [-59.808048, 54.836109], - [-59.75695, 54.895828], - [-59.604172, 54.954441], - [-59.433331, 55.06889], - [-59.402222, 55.028049], - [-59.286949, 55.18943], - [-59.217499, 55.217209], - [-59.21722, 55.164989], - [-59.161381, 55.236938], - [-59.127491, 55.20583], - [-59.137218, 55.15443], - [-59.252781, 55.102489], - [-59.384171, 54.97332], - [-59.250839, 55.035831], - [-59.228882, 55.081108], - [-59.181671, 55.097488], - [-59.14917, 55.06805], - [-59.12611, 55.123878], - [-59.09, 55.083328], - [-59.064159, 55.14666], - [-59.023609, 55.156651], - [-58.996109, 55.118599], - [-58.96056, 55.134991], - [-58.95583, 55.10083], - [-59.043331, 54.994999], - [-58.985561, 55.020828], - [-58.894169, 54.95277], - [-59.013618, 54.889721], - [-58.883888, 54.916382], - [-58.91666, 54.850552], - [-58.779171, 54.84972], - [-58.75639, 54.79805], - [-58.73138, 54.843048], - [-58.69194, 54.846378], - [-58.685268, 54.81554], - [-58.51722, 54.8036], - [-58.565552, 54.766109], - [-58.443611, 54.77388], - [-58.40472, 54.738331], - [-58.391941, 54.787498], - [-58.196659, 54.795269], - [-58.173328, 54.745541], - [-57.998611, 54.714161], - [-57.855, 54.737499], - [-57.660278, 54.62804], - [-57.545841, 54.661659], - [-57.45055, 54.64999], - [-57.414719, 54.5886], - [-57.3475, 54.579441], - [-57.431389, 54.55027], - [-57.37722, 54.542221], - [-57.385281, 54.50333], - [-57.70528, 54.46693], - [-57.421669, 54.453609], - [-57.52528, 54.451099], - [-57.523331, 54.41721], - [-57.660831, 54.376942], - [-58.146389, 54.365269], - [-58.261951, 54.3111], - [-58.095829, 54.325829], - [-58.243061, 54.287498], - [-58.233891, 54.254169], - [-58.446388, 54.239159], - [-58.72472, 54.145271], - [-58.915279, 54.138599], - [-59.37611, 54.04694], - [-59.575562, 54.049438], - [-59.509731, 53.995541], - [-59.276112, 54.021099], - [-58.687771, 54.12471], - [-58.37944, 54.229988], - [-58.610279, 54.04166], - [-59.038609, 54.026939], - [-58.919449, 54.01083], - [-59.008339, 53.955269], - [-59.11528, 53.946381], - [-59.463329, 53.830551], - [-59.82584, 53.84277], - [-59.88055, 53.825272], - [-59.80278, 53.806099], - [-59.828892, 53.788601], - [-60.13139, 53.77721], - [-60.01778, 53.704159], - [-60.097778, 53.683601], - [-60.119999, 53.611382], - [-60.064449, 53.560268], - [-60.133888, 53.528332], - [-60.39056, 53.665539], - [-60.810829, 53.771931], - [-60.875, 53.83083], - [-60.856949, 53.79277], - [-60.93306, 53.7286], - [-60.91806, 53.709431], - [-60.805561, 53.723049], - [-60.53722, 53.678329], - [-60.278881, 53.558601], - [-60.048061, 53.49527], - [-60.038059, 53.439709], - [-60.13805, 53.453609], - [-60.331951, 53.388599], - [-60.363892, 53.351101], - [-60.40583, 53.364159], - [-60.39584, 53.331379], - [-60.174999, 53.343048], - [-60.39806, 53.265549], - [-60.26112, 53.2686], - [-60.16444, 53.309429], - [-60.113892, 53.270271], - [-60.09, 53.299999], - [-60.147781, 53.32666], - [-60.024719, 53.355], - [-59.90889, 53.45583], - [-59.87167, 53.4436], - [-59.874168, 53.484989], - [-59.785, 53.477211], - [-59.893059, 53.528599], - [-59.605831, 53.52972], - [-59.36945, 53.648609], - [-59.302219, 53.686378], - [-59.279442, 53.662769], - [-59.213619, 53.69138], - [-59.074169, 53.683048], - [-59.06834, 53.71777], - [-59.027779, 53.711658], - [-59.010559, 53.746658], - [-59.066391, 53.794998], - [-58.876389, 53.888329], - [-58.841671, 53.943321], - [-58.130001, 54.096939], - [-57.78944, 54.0686], - [-57.851669, 54.100269], - [-58.159161, 54.13583], - [-58.328892, 54.089432], - [-58.418331, 54.139721], - [-58.38361, 54.189709], - [-58.17028, 54.23666], - [-57.659161, 54.199429], - [-57.604721, 54.18388], - [-57.609169, 54.16193], - [-57.428341, 54.182499], - [-57.384171, 54.150539], - [-57.396389, 54.128601], - [-57.35973, 54.134159], - [-57.370831, 54.10638], - [-57.296391, 54.00555], - [-57.142231, 53.934719], - [-57.215, 53.929989], - [-57.221378, 53.889992], - [-57.076389, 53.823051], - [-57.13361, 53.824169], - [-57.099998, 53.800831], - [-57.159721, 53.75861], - [-57.119999, 53.7411], - [-57.549999, 53.59193], - [-57.444721, 53.618599], - [-57.448608, 53.59222], - [-57.376659, 53.607498], - [-57.316669, 53.57972], - [-57.344158, 53.54277], - [-57.305561, 53.534439], - [-57.30666, 53.49638], - [-57.372219, 53.43082], - [-57.289169, 53.43388], - [-57.285278, 53.477489], - [-57.13612, 53.54916], - [-57.159161, 53.564159], - [-57.136391, 53.60944], - [-57.077499, 53.628601], - [-57.014721, 53.71138], - [-56.704441, 53.750549], - [-56.600281, 53.710819], - [-56.615841, 53.762501], - [-56.464691, 53.782269], - [-56.421669, 53.71693], - [-56.725559, 53.67416], - [-56.480549, 53.62138], - [-56.333889, 53.629162], - [-56.263062, 53.601391], - [-56.33556, 53.603321], - [-56.320278, 53.58527], - [-56.027222, 53.575272], - [-55.978882, 53.542221], - [-56.00861, 53.5], - [-56.063332, 53.540829], - [-56.26334, 53.540279], - [-56.031391, 53.459721], - [-56.032219, 53.432209], - [-55.965549, 53.409161], - [-56.038342, 53.367489], - [-55.91222, 53.395], - [-55.85828, 53.365269], - [-55.885559, 53.344151], - [-55.808048, 53.340549], - [-55.91111, 53.303879], - [-55.812222, 53.290829], - [-55.85973, 53.248051], - [-55.745831, 53.249439], - [-55.79084, 53.198879], - [-55.841942, 53.205269], - [-55.76334, 53.1786], - [-55.754169, 53.134991], - [-55.830002, 53.09721], - [-55.944439, 53.112499], - [-55.87944, 53.07999], - [-55.911942, 53.028332], - [-56.16695, 53.02943], - [-56.084438, 53.01527], - [-56.133331, 52.983051], - [-56.11195, 52.96666], - [-56.04084, 53.005829], - [-55.889439, 52.969151], - [-55.910831, 52.950272], - [-55.834171, 52.92194], - [-55.803329, 52.839432], - [-55.987782, 52.806099], - [-55.923328, 52.789989], - [-55.996391, 52.773319], - [-56.160549, 52.819439], - [-56.16, 52.79388], - [-56.053329, 52.762772], - [-55.96056, 52.679161], - [-55.76556, 52.665821], - [-55.738609, 52.642769], - [-55.794449, 52.593048], - [-55.937222, 52.63916], - [-56.122768, 52.6511], - [-55.974998, 52.619709], - [-56.047779, 52.576099], - [-55.989441, 52.56694], - [-55.999439, 52.548611], - [-56.089722, 52.572491], - [-56.237221, 52.541939], - [-56.496868, 52.594151], - [-56.245548, 52.52916], - [-56.10722, 52.547489], - [-55.971378, 52.50222], - [-55.7514, 52.496101], - [-55.735828, 52.469151], - [-55.766399, 52.447769], - [-55.64555, 52.437489], - [-55.641941, 52.36388], - [-55.799171, 52.384441], - [-55.782501, 52.33416], - [-56.195271, 52.435822], - [-55.82362, 52.32333], - [-55.849171, 52.298882], - [-55.70805, 52.293331], - [-55.79195, 52.237499], - [-55.720829, 52.251389], - [-55.618328, 52.215271], - [-55.776661, 52.20916], - [-55.688889, 52.18111], - [-55.713329, 52.139992], - [-55.68972, 52.101391], - [-55.792782, 52.083881], - [-55.763889, 52.047489], - [-55.84277, 52.003052], - [-55.959171, 52.019161], - [-55.894451, 51.962212], - [-55.915279, 51.932209], - [-56.117771, 51.860279], - [-56.209721, 51.789719], - [-56.43306, 51.74638], - [-56.493328, 51.688599], - [-56.68195, 51.64222], - [-56.695831, 51.584991], - [-56.807499, 51.528332], - [-56.81361, 51.491661], - [-56.858059, 51.46888], - [-56.933331, 51.491661], - [-56.942768, 51.42749], - [-57.10424, 51.41267], - [-57.101109, 52], - [-57.367771, 51.999439], - [-63.75111, 51.999722], - [-63.824718, 52.070549], - [-63.637779, 52.039989], - [-63.65535, 52.124359], - [-63.941269, 52.264], - [-63.987499, 52.362499], - [-64.013062, 52.387211], - [-63.92445, 52.383881], - [-63.930279, 52.41777], - [-63.976391, 52.458599], - [-64.027496, 52.433048], - [-64.08168, 52.470539], - [-63.971378, 52.570831], - [-63.839722, 52.61805], - [-63.377781, 52.650829], - [-63.423061, 52.707211], - [-63.595829, 52.770771], - [-63.54195, 52.970829], - [-63.62611, 53.042221], - [-63.634731, 53.094151], - [-63.693329, 53.113609], - [-63.923611, 53.077221], - [-63.919449, 52.97694], - [-63.982769, 52.933601], - [-63.959999, 52.867771], - [-64.080841, 52.881378], - [-64.172501, 52.85083], - [-64.201401, 52.790829], - [-64.156662, 52.738331], - [-64.202217, 52.672218], - [-64.175278, 52.60944], - [-64.208893, 52.548882], - [-64.08168, 52.37249], - [-64.131378, 52.28138], - [-64.115829, 52.151379], - [-64.257782, 52.12804], - [-64.293327, 52.046391], - [-64.274437, 52.00333], - [-64.330841, 51.965271], - [-64.317497, 51.903599], - [-64.357224, 51.850552], - [-64.264183, 51.739719], - [-64.44249, 51.66777], - [-64.581123, 51.55777], - [-64.604172, 51.642769], - [-64.703056, 51.69276], - [-64.718063, 51.747768], - [-64.593887, 51.796101], - [-64.587784, 51.82888], - [-64.84584, 51.93082], - [-64.853333, 52.021931], - [-65.108612, 52.17083], - [-65.453613, 52.20805], - [-65.538597, 52.123878], - [-65.56723, 52.046661], - [-65.758621, 52.111382], - [-65.799438, 52.095539], - [-65.801666, 52.04277], - [-65.916946, 52.050831], - [-66.063889, 52.11832], - [-66.068069, 52.216381], - [-66.173889, 52.220539], - [-66.275558, 52.311661], - [-66.319733, 52.289162], - [-66.303879, 52.222759], - [-66.335564, 52.136379], - [-66.438889, 52.200829], - [-66.486656, 52.312489], - [-66.458618, 52.3661], - [-66.358047, 52.406651], - [-66.446663, 52.530819], - [-66.373611, 52.5425], - [-66.43222, 52.611382], - [-66.433884, 52.706379], - [-66.328339, 52.736938], - [-66.378883, 52.836109], - [-66.26973, 52.877491], - [-66.345551, 52.974159], - [-66.476936, 53.034161], - [-66.525284, 52.943321], - [-66.648064, 52.94582], - [-66.66806, 52.725819], - [-66.813316, 52.66415], - [-66.87471, 52.747768], - [-66.891388, 52.673321], - [-67.067497, 52.699429], - [-67.092773, 52.72971], - [-67.058327, 52.804989], - [-67.078056, 52.94804], - [-66.979446, 53.027771], - [-66.948608, 53.109718], - [-66.991669, 53.195271], - [-66.910004, 53.340271], - [-66.987503, 53.403599], - [-67.06778, 53.384159], - [-67.068619, 53.4286], - [-67.128883, 53.464161], - [-67.141953, 53.542221], - [-67.491943, 53.603882], - [-67.430557, 53.778332], - [-67.588058, 53.85722], - [-67.609161, 53.928051], - [-67.738441, 54.000011], - [-67.781952, 54.063881], - [-67.637222, 54.174999], - [-67.485001, 54.234161], - [-67.531677, 54.248878], - [-67.49472, 54.314442], - [-67.59584, 54.365269], - [-67.586121, 54.4175], - [-67.633057, 54.479988], - [-67.601387, 54.56638], - [-67.492493, 54.58194], - [-67.305557, 54.504169], - [-67.219452, 54.607498], - [-67.036392, 54.621658], - [-67.213898, 54.66888], - [-67.184998, 54.71944], - [-67.30777, 54.783878], - [-67.263344, 54.825272], - [-67.362213, 54.87582], - [-67.453056, 55.018879], - [-67.428329, 55.07111], - [-67.273903, 55.066669], - [-67.297783, 55.008049], - [-67.028061, 54.89777], - [-66.946953, 54.801659], - [-66.738602, 54.732769], - [-66.698608, 54.742222], - [-66.712219, 54.78194], - [-66.605003, 54.790829], - [-66.678329, 54.894161], - [-66.732773, 54.94833], - [-66.65976, 54.978031], - [-66.765839, 55.105549], - [-66.740829, 55.17749], - [-66.688889, 55.204159], - [-66.844162, 55.326099], - [-66.77861, 55.338879], - [-66.688049, 55.301102], - [-66.681953, 55.25333], - [-66.576401, 55.250549], - [-66.23999, 54.99194], - [-66.035004, 54.90971], - [-65.957779, 54.92944], - [-65.858337, 54.907768], - [-65.835281, 54.831379], - [-65.689987, 54.713329], - [-65.443878, 54.745831], - [-65.121933, 54.69471], - [-64.811661, 54.749161], - [-64.552223, 54.720539], - [-64.404327, 54.75251], - [-64.325562, 54.751942], - [-63.976189, 54.626461], - [-63.66917, 54.612209], - [-63.435268, 54.973598], - [-63.566109, 55.060268], - [-63.519451, 55.183601], - [-63.176571, 55.296539], - [-63.095829, 55.349998], - [-63.176392, 55.419441], - [-63.144169, 55.526379], - [-63.29834, 55.523319], - [-63.448051, 55.59943], - [-63.488331, 55.696659], - [-63.715279, 55.859161], - [-63.69416, 55.942211], - [-63.445, 56.02277], - [-63.79084, 56.039162], - [-63.880001, 56.076939], - [-63.847778, 56.12027], - [-64.020279, 56.076389], - [-64.010834, 56.159988], - [-63.876949, 56.217209], - [-63.97472, 56.259159], - [-64.08667, 56.259159], - [-64.136673, 56.3036], - [-64.105827, 56.331379], - [-64.114166, 56.39027], - [-64.169724, 56.427769], - [-63.97472, 56.412769], - [-63.87138, 56.43943], - [-63.942219, 56.479431], - [-63.945, 56.549721], - [-64.12944, 56.71027], - [-64.083618, 56.765549], - [-63.992229, 56.785831], - [-64.00528, 56.850552], - [-63.87138, 56.87804], - [-63.917782, 56.930271], - [-63.863331, 56.992771], - [-63.873611, 57.06638], - [-63.78751, 57.111938], - [-63.7925, 57.165272], - [-63.741112, 57.232769], - [-63.81472, 57.27972], - [-63.855282, 57.193878], - [-63.87611, 57.242771], - [-63.836941, 57.325829], - [-63.709721, 57.37249], - [-63.763889, 57.482491], - [-63.765011, 57.573879], - [-63.721378, 57.602489], - [-63.60722, 57.663601], - [-63.595829, 57.734161], - [-63.653332, 57.731098], - [-63.70055, 57.662769], - [-63.765282, 57.732769], - [-63.825562, 57.690269], - [-63.891941, 57.73027], - [-63.92667, 57.797218], - [-64.006668, 57.812771], - [-64.022507, 57.771381], - [-64.057503, 57.76944], - [-64.214447, 57.977489], - [-64.208618, 58.033329], - [-64.431953, 58.086109], - [-64.398064, 58.18166], - [-64.21167, 58.23555], - [-64.156387, 58.348331], - [-63.81945, 58.471371], - [-63.886951, 58.563049], - [-64.022507, 58.52055], - [-64.084167, 58.55555], - [-64.097504, 58.60722], - [-64.051102, 58.676102], - [-63.574169, 58.715832], - [-63.480549, 58.7486], - [-63.588329, 58.846378], - [-63.766651, 58.874081], - [-63.841942, 58.82972], - [-63.999439, 58.81916], - [-64.156113, 58.74527], - [-64.257507, 58.77943], - [-64.258621, 58.849998], - [-64.300278, 58.882488], - [-64.568069, 58.887211], - [-64.718887, 58.945271], - [-64.809433, 58.911098], - [-64.878883, 58.92749], - [-64.838898, 58.958599], - [-64.864723, 58.990551], - [-64.829453, 59.03249], - [-64.720001, 59.069988], - [-64.656387, 59.028599], - [-64.415833, 58.981098], - [-64.291382, 59.016659], - [-64.365013, 59.07333], - [-64.493057, 59.104439], - [-64.493057, 59.158878], - [-64.534729, 59.197491], - [-64.507507, 59.25], - [-64.53833, 59.285549], - [-64.499161, 59.33971], - [-64.538063, 59.3736], - [-64.485001, 59.396389], - [-64.5, 59.433048], - [-64.340286, 59.49638], - [-64.432503, 59.52943], - [-64.700844, 59.44582], - [-64.82695, 59.531109], - [-64.773064, 59.698879], - [-64.814163, 59.81889], - [-64.744453, 59.84499], - [-64.767776, 59.87999], - [-64.661911, 59.88361], - [-64.65361, 59.929989], - [-64.847778, 59.964161], - [-64.906387, 60.04805], - [-64.796951, 60.039719], - [-64.702499, 60.064991], - [-64.734161, 60.103321], - [-64.598892, 60.111111], - [-64.637222, 60.178329], - [-64.767227, 60.174999], - [-64.851936, 60.22332], - [-64.853882, 60.261669], - [-64.534821, 60.302601] - ] - ], - [ - [ - [-64.047783, 59.84943], - [-64.032784, 59.80444], - [-64.075562, 59.78833], - [-63.959721, 59.75639], - [-63.997219, 59.723598], - [-64.134171, 59.695541], - [-64.16333, 59.703609], - [-64.144447, 59.727211], - [-64.204453, 59.73444], - [-64.187767, 59.76833], - [-64.129173, 59.757221], - [-64.152786, 59.788052], - [-64.121933, 59.84943], - [-64.047783, 59.84943] - ] - ], - [ - [ - [-61.884449, 57.86694], - [-61.881939, 57.812771], - [-61.947491, 57.78722], - [-62.10944, 57.829441], - [-61.994999, 57.909161], - [-61.928341, 57.9086], - [-61.939991, 57.872219], - [-61.884449, 57.86694] - ] - ], - [ - [ - [-61.654171, 57.771099], - [-61.69611, 57.712212], - [-61.76889, 57.71693], - [-61.827782, 57.778881], - [-61.89695, 57.758331], - [-61.778881, 57.845268], - [-61.698608, 57.83028], - [-61.723881, 57.783329], - [-61.676392, 57.795551], - [-61.654171, 57.771099] - ] - ], - [ - [ - [-61.926949, 57.452492], - [-62.021938, 57.521099], - [-61.974998, 57.581379], - [-61.931671, 57.585548], - [-61.946949, 57.54916], - [-61.896111, 57.586109], - [-61.781391, 57.54805], - [-61.783058, 57.508331], - [-61.926949, 57.452492] - ] - ], - [ - [ - [-61.64389, 57.52277], - [-61.69138, 57.495541], - [-61.64695, 57.482769], - [-61.674171, 57.463879], - [-61.78973, 57.46027], - [-61.826389, 57.43082], - [-61.69416, 57.441662], - [-61.614719, 57.418598], - [-61.648338, 57.393608], - [-61.90028, 57.437489], - [-61.782261, 57.486259], - [-61.737221, 57.536942], - [-61.64389, 57.52277] - ] - ], - [ - [ - [-61.355282, 56.91082], - [-61.40472, 56.879711], - [-61.361671, 56.848049], - [-61.439442, 56.816101], - [-61.448051, 56.84166], - [-61.493061, 56.838039], - [-61.503059, 56.804161], - [-61.58556, 56.766392], - [-61.38612, 56.775829], - [-61.36861, 56.685822], - [-61.404999, 56.662491], - [-61.390839, 56.618881], - [-61.445549, 56.62027], - [-61.644451, 56.73444], - [-61.631939, 56.859718], - [-61.533619, 56.902489], - [-61.52277, 56.941929], - [-61.46777, 56.958889], - [-61.42889, 56.930271], - [-61.34277, 56.93388], - [-61.355282, 56.91082] - ] - ], - [ - [ - [-61.558048, 56.551929], - [-61.325279, 56.512211], - [-61.360561, 56.471931], - [-61.17445, 56.47665], - [-61.224171, 56.450829], - [-61.148891, 56.441101], - [-61.474442, 56.46666], - [-61.50333, 56.4361], - [-61.63055, 56.465271], - [-61.630001, 56.490551], - [-61.417782, 56.48333], - [-61.633331, 56.50639], - [-61.571671, 56.51833], - [-61.60223, 56.552769], - [-61.558048, 56.551929] - ] - ], - [ - [ - [-61.546669, 56.390831], - [-61.47472, 56.406651], - [-61.411671, 56.372219], - [-61.464161, 56.345539], - [-61.416111, 56.32222], - [-61.482769, 56.30999], - [-61.68639, 56.352779], - [-61.796108, 56.413052], - [-61.546669, 56.390831] - ] - ], - [ - [ - [-61.089161, 56.169991], - [-61.045841, 56.153881], - [-61.06583, 56.123051], - [-60.944439, 56.09499], - [-61.009171, 56.035271], - [-60.934719, 56.011379], - [-61.040562, 56.005268], - [-61.220829, 56.050831], - [-61.22694, 56.098049], - [-61.14917, 56.091099], - [-61.183331, 56.106659], - [-61.089161, 56.169991] - ] - ], - [ - [ - [-60.747501, 55.93166], - [-60.75111, 55.90971], - [-60.68639, 55.92194], - [-60.75639, 55.880268], - [-60.902222, 55.87138], - [-60.815281, 55.88583], - [-60.874439, 55.90443], - [-60.865009, 55.95277], - [-60.747501, 55.93166] - ] - ], - [ - [ - [-57.94083, 54.91193], - [-57.988609, 54.86721], - [-57.983891, 54.802219], - [-57.93861, 54.82777], - [-57.884998, 54.802219], - [-57.864719, 54.832211], - [-57.841671, 54.812489], - [-57.881939, 54.79055], - [-58.139172, 54.757221], - [-58.22472, 54.83527], - [-58.215839, 54.87804], - [-58.17028, 54.85416], - [-57.94083, 54.91193] - ] - ], - [ - [ - [-55.876949, 50.86277], - [-55.906658, 50.89666], - [-56.097221, 50.71693], - [-56.091671, 50.759991], - [-56.116112, 50.746101], - [-56.133331, 50.773048], - [-56.103889, 50.898331], - [-56.15527, 50.885551], - [-56.157219, 50.69083], - [-56.09972, 50.679722], - [-56.108059, 50.651932], - [-56.206108, 50.595539], - [-56.240841, 50.524158], - [-56.321671, 50.52388], - [-56.25861, 50.502781], - [-56.40472, 50.374439], - [-56.501671, 50.382771], - [-56.423061, 50.352779], - [-56.462502, 50.272221], - [-56.566391, 50.157768], - [-56.670559, 50.129162], - [-56.63583, 50.100552], - [-56.743061, 50.02277], - [-56.77861, 49.93388], - [-56.71833, 49.949162], - [-56.759998, 49.83638], - [-56.906391, 49.746941], - [-56.781391, 49.727211], - [-56.85751, 49.545551], - [-56.735561, 49.666939], - [-56.477779, 49.89222], - [-56.4175, 49.84222], - [-56.43195, 49.890549], - [-56.36528, 49.896938], - [-56.38805, 49.94305], - [-56.33028, 50.02499], - [-56.153881, 50.150539], - [-56.116661, 50.153049], - [-56.062771, 50.071659], - [-56.188332, 49.923882], - [-56.005001, 50.03138], - [-56.028339, 49.970539], - [-55.977779, 49.991379], - [-55.962219, 50.035271], - [-55.90527, 50.033878], - [-55.746109, 49.92305], - [-55.671391, 49.973049], - [-55.594158, 49.96249], - [-55.491699, 50.007309], - [-55.459721, 49.9575], - [-55.492229, 49.91721], - [-55.891109, 49.75972], - [-56.002781, 49.748051], - [-56.007229, 49.716099], - [-56.160278, 49.622761], - [-56.17223, 49.579159], - [-56.044449, 49.669991], - [-55.89389, 49.714161], - [-55.95834, 49.672489], - [-55.833328, 49.686649], - [-55.938332, 49.603611], - [-55.88028, 49.584991], - [-55.937222, 49.52972], - [-56.080002, 49.486938], - [-56.129169, 49.425549], - [-55.827782, 49.524158], - [-55.720829, 49.475819], - [-55.779999, 49.44249], - [-55.674171, 49.466099], - [-55.698879, 49.42749], - [-55.66444, 49.381939], - [-55.52306, 49.48666], - [-55.568611, 49.41888], - [-55.566669, 49.36277], - [-55.48917, 49.470829], - [-55.36945, 49.50333], - [-55.34972, 49.487209], - [-55.431671, 49.422489], - [-55.316391, 49.45166], - [-55.44416, 49.355], - [-55.391392, 49.374161], - [-55.373051, 49.331108], - [-55.32806, 49.406101], - [-55.320839, 49.380821], - [-55.29306, 49.4011], - [-55.301941, 49.36055], - [-55.338612, 49.35527], - [-55.30444, 49.311661], - [-55.300549, 49.348598], - [-55.233608, 49.39444], - [-55.311111, 49.529991], - [-55.228611, 49.53833], - [-55.19611, 49.5], - [-55.193611, 49.53944], - [-55.137218, 49.540829], - [-55.124722, 49.465271], - [-55.23222, 49.347771], - [-55.221111, 49.26194], - [-55.365841, 49.165272], - [-55.31945, 49.149158], - [-55.339722, 49.122219], - [-55.307781, 49.099159], - [-55.383331, 49.040829], - [-55.182781, 49.12027], - [-55.272221, 49.099998], - [-55.279999, 49.160271], - [-55.25333, 49.18388], - [-55.288059, 49.18721], - [-55.058609, 49.284439], - [-55.07806, 49.356941], - [-55.03751, 49.321941], - [-55.007778, 49.33971], - [-54.990002, 49.286942], - [-55.041672, 49.224159], - [-54.982769, 49.257221], - [-54.959721, 49.299438], - [-54.909439, 49.275829], - [-54.87167, 49.293331], - [-54.858891, 49.332211], - [-54.890282, 49.35416], - [-54.848049, 49.410271], - [-54.824451, 49.269161], - [-54.777222, 49.29916], - [-54.76722, 49.352489], - [-54.739719, 49.320549], - [-54.541111, 49.526661], - [-54.44722, 49.543049], - [-54.530281, 49.444988], - [-54.43195, 49.470829], - [-54.488049, 49.371101], - [-54.452221, 49.333328], - [-54.48695, 49.25972], - [-54.400829, 49.325272], - [-54.407501, 49.37471], - [-54.358059, 49.426941], - [-54.24889, 49.397491], - [-54.219719, 49.41721], - [-54.228882, 49.361111], - [-54.206108, 49.402771], - [-54.166111, 49.37804], - [-54.139999, 49.448601], - [-54.041672, 49.48082], - [-53.988049, 49.458599], - [-54.033329, 49.42749], - [-53.92778, 49.451099], - [-53.455559, 49.251942], - [-53.560001, 49.124989], - [-53.619999, 49.117489], - [-53.581951, 49.092491], - [-53.593891, 49.035549], - [-53.83527, 49.03249], - [-53.725269, 49.00972], - [-53.888889, 48.982769], - [-53.813061, 48.92527], - [-53.97472, 48.89138], - [-53.883888, 48.886662], - [-53.980831, 48.82888], - [-54.178051, 48.800831], - [-54.19944, 48.768051], - [-54.172779, 48.761669], - [-53.990841, 48.810822], - [-53.998341, 48.76194], - [-53.957779, 48.772221], - [-53.98, 48.785831], - [-53.93417, 48.83028], - [-53.82056, 48.829441], - [-53.808609, 48.805271], - [-53.91333, 48.79805], - [-53.900551, 48.759991], - [-53.843609, 48.772491], - [-53.89056, 48.733601], - [-54.022499, 48.740829], - [-53.937771, 48.722488], - [-53.94833, 48.666382], - [-53.89389, 48.646389], - [-53.932499, 48.62471], - [-53.790001, 48.679989], - [-53.92445, 48.671379], - [-53.831951, 48.749439], - [-53.85194, 48.702221], - [-53.7425, 48.711658], - [-53.70306, 48.685261], - [-53.722221, 48.654991], - [-53.59972, 48.68499], - [-53.658611, 48.641941], - [-53.928341, 48.575829], - [-53.952499, 48.53944], - [-53.715279, 48.559719], - [-53.78944, 48.543049], - [-53.750839, 48.507771], - [-53.902222, 48.47971], - [-54.01112, 48.421661], - [-54.09444, 48.425831], - [-54.163891, 48.383049], - [-54.127491, 48.353321], - [-54.075562, 48.401932], - [-53.992229, 48.402489], - [-53.841671, 48.470829], - [-53.81139, 48.465], - [-53.884449, 48.383049], - [-53.834171, 48.371658], - [-53.849442, 48.392769], - [-53.768608, 48.475269], - [-53.647221, 48.541111], - [-53.620831, 48.534439], - [-53.659721, 48.51305], - [-53.618061, 48.498878], - [-53.725269, 48.426102], - [-53.639721, 48.43943], - [-53.586391, 48.525269], - [-53.587219, 48.476101], - [-53.547501, 48.48666], - [-53.608891, 48.40749], - [-53.473331, 48.5075], - [-53.42445, 48.625549], - [-53.338051, 48.612499], - [-53.303329, 48.58194], - [-53.318611, 48.549438], - [-53.240002, 48.523319], - [-53.153881, 48.628601], - [-53.098881, 48.64222], - [-53.072781, 48.700272], - [-52.976391, 48.599159], - [-53.05389, 48.44276], - [-53.19416, 48.348598], - [-53.35223, 48.385269], - [-53.376389, 48.33028], - [-53.37888, 48.278049], - [-53.44833, 48.27943], - [-53.66222, 48.163319], - [-53.940552, 48.23082], - [-53.944019, 48.16346], - [-53.912498, 48.08416], - [-53.66444, 48.064159], - [-53.76334, 48.026379], - [-53.91917, 48.022491], - [-53.779171, 47.996658], - [-53.605831, 48.046391], - [-53.692768, 47.899441], - [-53.788059, 47.900539], - [-53.724442, 47.883331], - [-53.721661, 47.84943], - [-53.793331, 47.7686], - [-53.874439, 47.845539], - [-53.930279, 47.849159], - [-53.85445, 47.794998], - [-53.82917, 47.71944], - [-53.85751, 47.710819], - [-53.760281, 47.609989], - [-53.695, 47.685822], - [-53.665001, 47.67416], - [-53.712502, 47.598049], - [-53.639172, 47.573051], - [-53.66666, 47.52166], - [-53.617771, 47.556381], - [-53.54528, 47.534439], - [-53.559719, 47.576939], - [-53.535561, 47.589432], - [-53.561939, 47.61916], - [-53.51445, 47.614441], - [-53.461109, 47.80666], - [-53.398609, 47.872761], - [-53.355831, 47.865829], - [-53.368061, 47.893879], - [-53.29084, 47.999439], - [-53.153881, 48.066101], - [-53.053329, 48.049721], - [-52.91972, 48.169159], - [-52.832779, 48.096939], - [-52.9175, 48.084721], - [-52.953892, 48.007221], - [-53.058048, 47.922489], - [-53.053329, 47.867771], - [-53.202221, 47.733601], - [-53.162769, 47.71471], - [-53.178341, 47.651379], - [-53.26722, 47.606098], - [-53.20583, 47.609989], - [-53.248341, 47.57555], - [-53.16972, 47.597488], - [-53.261669, 47.546391], - [-53.185829, 47.55444], - [-53.20639, 47.46999], - [-53.160549, 47.50111], - [-53.152222, 47.471931], - [-53.199718, 47.43832], - [-53.14584, 47.44804], - [-53.121941, 47.413319], - [-52.89695, 47.558601], - [-52.779442, 47.803051], - [-52.70055, 47.749439], - [-52.714451, 47.6661], - [-52.65778, 47.65749], - [-52.646111, 47.599159], - [-52.68861, 47.551102], - [-52.620281, 47.500271], - [-52.688049, 47.461109], - [-52.650551, 47.428329], - [-52.743061, 47.309719], - [-52.796951, 47.300541], - [-52.759171, 47.293331], - [-52.810001, 47.267208], - [-52.865551, 47.098598], - [-52.934441, 47.086941], - [-52.848339, 47.067768], - [-52.873611, 47.048328], - [-52.852779, 47.022491], - [-52.895279, 47.001389], - [-52.884171, 46.941662], - [-52.938332, 46.789162], - [-53.023891, 46.73888], - [-53.090839, 46.64333], - [-53.207218, 46.630268], - [-53.266941, 46.733879], - [-53.387779, 46.681938], - [-53.36195, 46.737499], - [-53.561668, 46.61277], - [-53.617771, 46.644161], - [-53.644169, 46.70916], - [-53.552502, 46.864441], - [-53.481941, 46.897221], - [-53.5425, 46.884159], - [-53.64806, 46.796661], - [-53.5975, 46.90638], - [-53.512218, 46.955551], - [-53.563061, 46.937489], - [-53.566952, 46.977211], - [-53.600559, 46.94138], - [-53.60194, 46.991661], - [-53.64167, 46.983879], - [-53.577782, 47.08527], - [-53.499168, 47.123878], - [-53.523609, 47.16777], - [-53.57333, 47.15443], - [-53.559441, 47.20277], - [-53.600559, 47.128601], - [-53.639999, 47.101662], - [-53.630829, 47.15443], - [-53.654171, 47.14027], - [-53.703609, 47.053051], - [-53.765011, 47.034439], - [-53.95084, 46.853882], - [-54.053329, 46.794998], - [-54.189991, 46.823608], - [-54.178341, 46.94276], - [-54.012218, 47.2286], - [-53.931671, 47.22332], - [-53.993889, 47.26527], - [-53.997501, 47.310268], - [-53.92194, 47.304161], - [-53.875561, 47.35416], - [-53.918331, 47.352779], - [-53.913891, 47.374161], - [-53.80389, 47.426941], - [-53.906391, 47.424709], - [-53.924171, 47.451389], - [-53.885559, 47.576939], - [-53.89695, 47.609989], - [-53.930279, 47.606659], - [-54.00639, 47.81916], - [-54.063889, 47.797218], - [-54.081669, 47.86916], - [-54.11417, 47.824169], - [-54.26334, 47.9011], - [-54.19722, 47.86277], - [-54.21278, 47.777771], - [-54.285561, 47.692211], - [-54.33778, 47.698879], - [-54.320278, 47.651661], - [-54.348511, 47.610649], - [-54.460281, 47.494709], - [-54.403332, 47.45055], - [-54.448879, 47.42083], - [-54.453609, 47.45583], - [-54.51722, 47.369438], - [-54.613331, 47.36277], - [-54.418331, 47.603611], - [-54.62138, 47.389992], - [-54.671391, 47.37249], - [-54.685551, 47.396389], - [-54.71999, 47.352219], - [-54.818611, 47.363609], - [-54.78751, 47.41888], - [-54.836941, 47.372761], - [-54.83112, 47.421101], - [-55.043892, 47.220829], - [-55.012218, 47.172771], - [-55.067501, 47.147221], - [-55.084171, 47.201931], - [-55.134171, 47.166939], - [-55.08556, 47.16082], - [-55.06945, 47.082211], - [-55.104721, 47.078049], - [-55.15472, 47.008049], - [-55.16972, 47.065269], - [-55.199169, 47.070549], - [-55.189991, 46.996101], - [-55.230282, 46.928329], - [-55.365841, 46.904709], - [-55.35445, 46.879711], - [-55.384171, 46.865829], - [-55.463619, 46.877491], - [-55.46806, 46.928329], - [-55.512218, 46.912491], - [-55.52528, 46.939709], - [-55.548611, 46.894161], - [-55.57362, 46.910549], - [-55.626949, 46.868881], - [-55.740841, 46.849998], - [-55.931389, 46.892769], - [-55.983059, 46.952492], - [-55.865551, 47.072769], - [-55.487782, 47.137211], - [-55.29834, 47.267208], - [-55.266659, 47.39666], - [-55.196388, 47.449429], - [-54.951389, 47.505001], - [-54.845829, 47.556938], - [-54.841381, 47.583599], - [-54.876949, 47.570271], - [-54.850281, 47.60722], - [-54.69722, 47.664711], - [-54.769169, 47.678051], - [-54.94944, 47.59972], - [-55.079731, 47.589989], - [-54.936111, 47.781658], - [-55.11916, 47.576939], - [-55.153881, 47.604439], - [-55.130001, 47.66193], - [-55.176392, 47.635269], - [-55.31889, 47.668049], - [-55.363892, 47.649158], - [-55.35751, 47.726101], - [-55.392502, 47.691101], - [-55.427502, 47.711658], - [-55.422501, 47.672771], - [-55.467499, 47.61916], - [-55.40028, 47.615551], - [-55.432499, 47.581379], - [-55.389721, 47.58638], - [-55.406658, 47.49305], - [-55.521111, 47.459721], - [-55.58778, 47.398609], - [-55.58778, 47.453049], - [-55.664162, 47.436939], - [-55.588612, 47.510281], - [-55.62833, 47.541382], - [-55.654171, 47.49527], - [-55.70528, 47.502491], - [-55.70528, 47.475269], - [-55.763618, 47.454708], - [-55.763062, 47.53833], - [-55.80167, 47.45916], - [-55.85778, 47.473598], - [-55.92556, 47.439159], - [-55.745831, 47.58527], - [-56.104172, 47.463612], - [-56.16917, 47.492489], - [-55.805561, 47.605831], - [-55.62833, 47.674709], - [-55.83889, 47.61721], - [-55.9175, 47.65749], - [-55.830559, 47.732769], - [-55.79945, 47.79916], - [-55.821949, 47.834431], - [-55.742229, 47.923321], - [-55.773609, 47.95694], - [-55.85445, 47.79472], - [-55.987499, 47.7575], - [-56.054722, 47.695541], - [-56.10667, 47.693321], - [-56.111111, 47.724159], - [-56.053612, 47.77388], - [-56.100559, 47.750271], - [-56.15694, 47.832211], - [-56.125, 47.757221], - [-56.168331, 47.715832], - [-56.141941, 47.684719], - [-56.191109, 47.676941], - [-56.161381, 47.634159], - [-56.216389, 47.65527], - [-56.232498, 47.625549], - [-56.29945, 47.62249], - [-56.309441, 47.7486], - [-56.334171, 47.695271], - [-56.310001, 47.639431], - [-56.34528, 47.60833], - [-56.682499, 47.623051], - [-56.639999, 47.587212], - [-56.67889, 47.57444], - [-56.756672, 47.629429], - [-56.751579, 47.589741], - [-56.70639, 47.56554], - [-56.779442, 47.526661], - [-56.849171, 47.522491], - [-56.85194, 47.54805], - [-56.9925, 47.583881], - [-57.12611, 47.563881], - [-57.168331, 47.583599], - [-57.141941, 47.598598], - [-57.171391, 47.632488], - [-57.184441, 47.598331], - [-57.312771, 47.58083], - [-57.334999, 47.639431], - [-57.488892, 47.6236], - [-57.53722, 47.64777], - [-57.64389, 47.597488], - [-57.738892, 47.653599], - [-57.77055, 47.614159], - [-57.916389, 47.648609], - [-57.884171, 47.696659], - [-57.952499, 47.661659], - [-58.036388, 47.696098], - [-58.074169, 47.666939], - [-58.07917, 47.695271], - [-58.353889, 47.643608], - [-58.272221, 47.751659], - [-58.338329, 47.745541], - [-58.430561, 47.633049], - [-58.535278, 47.666382], - [-58.535, 47.631939], - [-58.60611, 47.61166], - [-58.642231, 47.62804], - [-58.690552, 47.598881], - [-59.118889, 47.55471], - [-59.30444, 47.609989], - [-59.28083, 47.751659], - [-59.322231, 47.761108], - [-59.400829, 47.906651], - [-59.316391, 47.934158], - [-59.218609, 48.02916], - [-58.978882, 48.123878], - [-58.58778, 48.43055], - [-58.492771, 48.450272], - [-58.591942, 48.39888], - [-58.483608, 48.427769], - [-58.418331, 48.48666], - [-58.26556, 48.51749], - [-58.519718, 48.500549], - [-58.56945, 48.538601], - [-58.682499, 48.554989], - [-59.246948, 48.46666], - [-59.228882, 48.52916], - [-58.774719, 48.778881], - [-58.958611, 48.61388], - [-58.89584, 48.588879], - [-58.89695, 48.551929], - [-58.848339, 48.588879], - [-58.848049, 48.634991], - [-58.81778, 48.569988], - [-58.709438, 48.570831], - [-58.658051, 48.74305], - [-58.543892, 48.860821], - [-58.500839, 49.003609], - [-58.35194, 49.150269], - [-58.360001, 49.056938], - [-58.17194, 49.061939], - [-58.06028, 48.976101], - [-57.961391, 48.956661], - [-57.892231, 48.981659], - [-58.00922, 48.980419], - [-58.108059, 49.037769], - [-58.144451, 49.121929], - [-57.92556, 49.123051], - [-57.849442, 49.181938], - [-57.939442, 49.145], - [-57.96999, 49.16415], - [-57.924171, 49.18832], - [-58.09111, 49.150829], - [-58.10722, 49.183048], - [-57.99472, 49.180271], - [-57.928051, 49.240269], - [-58.03944, 49.21249], - [-58.20084, 49.239719], - [-58.24194, 49.29166], - [-58.223331, 49.39027], - [-58.152222, 49.46888], - [-57.998341, 49.559158], - [-57.92028, 49.527771], - [-57.918331, 49.465832], - [-57.88055, 49.428051], - [-57.906109, 49.477489], - [-57.86306, 49.506939], - [-57.746948, 49.453609], - [-57.696388, 49.463612], - [-57.788891, 49.500832], - [-57.824718, 49.559719], - [-57.877491, 49.528332], - [-57.944721, 49.607498], - [-57.94833, 49.67416], - [-57.601109, 50.174999], - [-57.526661, 50.364719], - [-57.372501, 50.590832], - [-57.150829, 50.6161], - [-57.261951, 50.613331], - [-57.277222, 50.630268], - [-57.240841, 50.641109], - [-57.39806, 50.69249], - [-57.351109, 50.723598], - [-57.230282, 50.72971], - [-57.089439, 50.780548], - [-56.977219, 50.8736], - [-56.972771, 50.909161], - [-56.927502, 50.915821], - [-56.989719, 50.929161], - [-56.966942, 50.968601], - [-57.089161, 51.019989], - [-57.004719, 51.016109], - [-56.976662, 50.98555], - [-56.902222, 51.013329], - [-56.978882, 51.05027], - [-56.880001, 51.06554], - [-56.860828, 51.113609], - [-56.784451, 51.137772], - [-56.80666, 51.18943], - [-56.746391, 51.204441], - [-56.793892, 51.23999], - [-56.688889, 51.336941], - [-56.110561, 51.52388], - [-55.890282, 51.629429], - [-55.822781, 51.618599], - [-55.884998, 51.562489], - [-55.841942, 51.545269], - [-55.877781, 51.492222], - [-55.620281, 51.472759], - [-55.73917, 51.55666], - [-55.6175, 51.610279], - [-55.653332, 51.590549], - [-55.625, 51.56554], - [-55.515839, 51.602219], - [-55.404442, 51.571941], - [-55.41917, 51.548328], - [-55.467499, 51.56361], - [-55.432499, 51.53722], - [-55.45084, 51.499161], - [-55.533058, 51.500832], - [-55.452499, 51.460819], - [-55.50806, 51.363331], - [-55.562222, 51.38805], - [-55.55917, 51.34277], - [-55.609169, 51.344151], - [-55.597778, 51.3036], - [-55.759449, 51.346378], - [-56.08556, 51.36832], - [-56.09639, 51.318329], - [-56.025002, 51.308601], - [-56.010281, 51.270271], - [-56.075279, 51.227211], - [-56.013062, 51.213329], - [-55.965, 51.153049], - [-55.941669, 51.15527], - [-55.959438, 51.197491], - [-55.83778, 51.230549], - [-55.709999, 51.173611], - [-55.746948, 51.158039], - [-55.719158, 51.123051], - [-55.735561, 51.074169], - [-55.810829, 51.056381], - [-55.77639, 51.029991], - [-55.836109, 50.968319], - [-55.819172, 50.92527], - [-55.859169, 50.94249], - [-55.87389, 50.908329], - [-55.844719, 50.90416], - [-55.876949, 50.86277] - ] - ] - ] - }, - "properties": { - "name": "Newfoundland and Labrador", - "ISOCODE": "CA-NL", - "cartodb_id": 5, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-131.077103, 52.150089], - [-130.948105, 52.093609], - [-130.992493, 52.060822], - [-131.070007, 52.07222], - [-130.985504, 52.012211], - [-131.041702, 52.022491], - [-131.007004, 51.97887], - [-131.0392, 51.96693], - [-131.021698, 51.94083], - [-131.110306, 51.999161], - [-131.085007, 52.023319], - [-131.120499, 52.05555], - [-131.122696, 52.123779], - [-131.077103, 52.150089] - ] - ], - [ - [ - [-130.164993, 55.01416], - [-130.149704, 54.947491], - [-130.270294, 54.83083], - [-130.3992, 54.764721], - [-130.459396, 54.817501], - [-130.213303, 55.012501], - [-130.164993, 55.01416] - ] - ], - [ - [ - [-130.458603, 54.80027], - [-130.435806, 54.763329], - [-130.463303, 54.708599], - [-130.538605, 54.70388], - [-130.610504, 54.753052], - [-130.458603, 54.80027] - ] - ], - [ - [ - [-130.746902, 54.615269], - [-130.760803, 54.55471], - [-130.964996, 54.45694], - [-130.925598, 54.619438], - [-130.746902, 54.615269] - ] - ], - [ - [ - [-132.8806, 53.600269], - [-133.007797, 53.67638], - [-132.925293, 53.690269], - [-132.979401, 53.710819], - [-132.972794, 53.763889], - [-133.0336, 53.752781], - [-133.109207, 53.786942], - [-133.067001, 53.820831], - [-133.134705, 53.87027], - [-133.139999, 53.908039], - [-133.090805, 53.954159], - [-133.102798, 53.994999], - [-133.041107, 54.031658], - [-133.081894, 54.102489], - [-133.029205, 54.158878], - [-133.0672, 54.173882], - [-132.827499, 54.12249], - [-132.658401, 54.14222], - [-132.575302, 54.115551], - [-132.566696, 54.02916], - [-132.6642, 53.98333], - [-132.681702, 53.95277], - [-132.658905, 53.93943], - [-132.409698, 54.098598], - [-132.290604, 54.11055], - [-132.228302, 54.06583], - [-132.232803, 54.025269], - [-132.162506, 54.005268], - [-132.111099, 53.87833], - [-132.225006, 53.78027], - [-132.6633, 53.67944], - [-132.595001, 53.672771], - [-132.599197, 53.626659], - [-132.541702, 53.66444], - [-132.491898, 53.64222], - [-132.350296, 53.668331], - [-132.463593, 53.61277], - [-132.468307, 53.570831], - [-132.418106, 53.606098], - [-132.279205, 53.623322], - [-132.328293, 53.64333], - [-132.315308, 53.666939], - [-132.200302, 53.65221], - [-132.155594, 53.699711], - [-132.190002, 53.783051], - [-132.079407, 53.889431], - [-132.133606, 54.010551], - [-132.177505, 54.04055], - [-131.9711, 54.025269], - [-131.727798, 54.106098], - [-131.655899, 54.15971], - [-131.705002, 53.96693], - [-131.868896, 53.793331], - [-131.865494, 53.721661], - [-131.933304, 53.615269], - [-131.911102, 53.351662], - [-131.982193, 53.251659], - [-132.210495, 53.230549], - [-132.272797, 53.21027], - [-132.237793, 53.188881], - [-132.124405, 53.194149], - [-132.186996, 53.160549], - [-132.316406, 53.189709], - [-132.3228, 53.159431], - [-132.446701, 53.143608], - [-132.459198, 53.18388], - [-132.499405, 53.159161], - [-132.536697, 53.178879], - [-132.520798, 53.193321], - [-132.577805, 53.20055], - [-132.549698, 53.23138], - [-132.703094, 53.257771], - [-132.609207, 53.314991], - [-132.537003, 53.32111], - [-132.752808, 53.316101], - [-132.697495, 53.376942], - [-132.514206, 53.358601], - [-132.410599, 53.29472], - [-132.400299, 53.33083], - [-132.520798, 53.412209], - [-132.660004, 53.434719], - [-132.660599, 53.489429], - [-132.688293, 53.44833], - [-132.752808, 53.4575], - [-132.719101, 53.490269], - [-132.743607, 53.515549], - [-132.867493, 53.463612], - [-132.823593, 53.516941], - [-132.923599, 53.519161], - [-132.889999, 53.55777], - [-132.968307, 53.551659], - [-132.994095, 53.587769], - [-132.8806, 53.600269] - ] - ], - [ - [ - [-130.336105, 54.067501], - [-130.228897, 53.96471], - [-130.344498, 53.83527], - [-130.406403, 53.83416], - [-130.4272, 53.871658], - [-130.483597, 53.84388], - [-130.497498, 53.8736], - [-130.449997, 53.888599], - [-130.407806, 53.963329], - [-130.327499, 53.96693], - [-130.349197, 53.997219], - [-130.443893, 53.9786], - [-130.482498, 53.893608], - [-130.667007, 53.963879], - [-130.698105, 53.91415], - [-130.617996, 53.85722], - [-130.642502, 53.832771], - [-130.710297, 53.85638], - [-130.720306, 53.934719], - [-130.661697, 53.990829], - [-130.411102, 54.10083], - [-130.336105, 54.067501] - ] - ], - [ - [ - [-129.479996, 53.249161], - [-129.491394, 53.209431], - [-129.572495, 53.20916], - [-129.658905, 53.29694], - [-129.635605, 53.311939], - [-129.660294, 53.342491], - [-129.711105, 53.33416], - [-129.807205, 53.384159], - [-129.815796, 53.466381], - [-129.895004, 53.477489], - [-129.8703, 53.545551], - [-129.922501, 53.563049], - [-129.883896, 53.57972], - [-129.936401, 53.587212], - [-129.911697, 53.611382], - [-130.016098, 53.572769], - [-130.056396, 53.603882], - [-129.965393, 53.641781], - [-129.874405, 53.638889], - [-129.9496, 53.659248], - [-130.083893, 53.641109], - [-130.099197, 53.702221], - [-130.209702, 53.72887], - [-130.2108, 53.810822], - [-130.286407, 53.83749], - [-130.266403, 53.881378], - [-130.186401, 53.9161], - [-130.030899, 53.845268], - [-129.523605, 53.496658], - [-129.635605, 53.480549], - [-129.491898, 53.470268], - [-129.425293, 53.43082], - [-129.453598, 53.296661], - [-129.516403, 53.302219], - [-129.479996, 53.249161] - ] - ], - [ - [ - [-130.271896, 53.797779], - [-130.2258, 53.77499], - [-130.225006, 53.720268], - [-130.1194, 53.686649], - [-130.091095, 53.569439], - [-130.329193, 53.61805], - [-130.403397, 53.682499], - [-130.287506, 53.748878], - [-130.301697, 53.79388], - [-130.271896, 53.797779] - ] - ], - [ - [ - [-128.823593, 53.70055], - [-128.872192, 53.661098], - [-128.871597, 53.57222], - [-128.986404, 53.58083], - [-129.085495, 53.505001], - [-129.086395, 53.446098], - [-129.163101, 53.38221], - [-129.153107, 53.638599], - [-129.008102, 53.693321], - [-128.823593, 53.70055] - ] - ], - [ - [ - [-130.391098, 53.61694], - [-129.920593, 53.42416], - [-129.729202, 53.215271], - [-129.742493, 53.178329], - [-129.931702, 53.158039], - [-130.014496, 53.246941], - [-130.078903, 53.270271], - [-130.094498, 53.325829], - [-130.140594, 53.321941], - [-130.203293, 53.37888], - [-130.305801, 53.384159], - [-130.412003, 53.49332], - [-130.333893, 53.514999], - [-130.458603, 53.514721], - [-130.527206, 53.552219], - [-130.508408, 53.631939], - [-130.391098, 53.61694] - ] - ], - [ - [ - [-128.985504, 53.523048], - [-128.901093, 53.386662], - [-128.918106, 53.331379], - [-129.122192, 53.31805], - [-129.134506, 53.383881], - [-129.054993, 53.450829], - [-129.037796, 53.520271], - [-128.985504, 53.523048] - ] - ], - [ - [ - [-129.168594, 53.296101], - [-129.131897, 53.113609], - [-129.274994, 53.084431], - [-129.332504, 53.137501], - [-129.338303, 53.18499], - [-129.245499, 53.282211], - [-129.273895, 53.328049], - [-129.226898, 53.326099], - [-129.168594, 53.296101] - ] - ], - [ - [ - [-128.593597, 52.659161], - [-128.597198, 52.609161], - [-128.751694, 52.60083], - [-128.727798, 52.662491], - [-128.748001, 52.754169], - [-128.644699, 52.90416], - [-128.653397, 52.96666], - [-128.679993, 52.957771], - [-128.681107, 52.898609], - [-128.742798, 52.91444], - [-128.724197, 52.876659], - [-128.780594, 52.73999], - [-128.766098, 52.661659], - [-128.801102, 52.693321], - [-128.892502, 52.64888], - [-129.080307, 52.772491], - [-129.119995, 52.86916], - [-129.016998, 52.84444], - [-129.068298, 52.889992], - [-128.983902, 52.934719], - [-128.941406, 53], - [-128.836395, 53.035549], - [-129.011703, 53.139721], - [-128.993896, 53.09721], - [-128.862198, 53.034161], - [-128.957199, 53.008331], - [-129.069199, 52.903881], - [-129.165802, 52.92305], - [-129.188004, 53.024158], - [-129.161697, 53.07111], - [-129.115005, 53.064709], - [-129.073303, 53.109161], - [-129.058899, 53.23138], - [-129.086105, 53.29361], - [-128.891403, 53.287769], - [-128.705307, 53.170551], - [-128.605606, 53.145271], - [-128.531693, 53.021099], - [-128.517807, 52.92749], - [-128.593597, 52.659161] - ] - ], - [ - [ - [-131.074402, 52.219379], - [-131.014999, 52.225552], - [-131.024704, 52.178051], - [-131.113907, 52.16777], - [-131.136993, 52.209721], - [-131.143906, 52.140831], - [-131.189697, 52.121929], - [-131.212204, 52.191929], - [-131.277206, 52.240829], - [-131.232193, 52.16193], - [-131.236893, 52.126942], - [-131.270798, 52.120831], - [-131.349197, 52.233051], - [-131.360306, 52.189159], - [-131.505905, 52.321659], - [-131.551102, 52.323879], - [-131.532501, 52.351391], - [-131.571106, 52.350269], - [-131.580597, 52.390549], - [-131.510605, 52.408878], - [-131.613007, 52.422771], - [-131.661697, 52.478321], - [-131.775299, 52.511669], - [-131.892807, 52.582771], - [-131.933594, 52.653881], - [-132.081894, 52.727489], - [-132.040298, 52.760551], - [-131.968597, 52.726101], - [-132.002502, 52.776939], - [-131.917496, 52.722488], - [-131.951706, 52.781109], - [-132.077194, 52.854439], - [-132.055603, 52.79361], - [-132.127502, 52.750832], - [-132.236694, 52.824711], - [-132.2258, 52.864441], - [-132.283295, 52.87471], - [-132.343002, 52.942211], - [-132.2453, 52.95388], - [-132.171097, 52.923611], - [-132.199997, 52.960548], - [-132.141098, 52.93277], - [-132.157501, 52.964161], - [-132.112793, 52.997768], - [-132.339996, 53.037769], - [-132.479706, 53.02721], - [-132.552795, 53.08971], - [-132.5289, 53.112209], - [-132.562195, 53.145271], - [-132.413605, 53.127491], - [-132.070801, 53.153881], - [-131.985001, 53.212212], - [-131.794495, 53.251389], - [-131.762207, 53.196659], - [-131.784195, 53.164711], - [-131.637497, 53.109718], - [-131.594696, 53.035271], - [-131.794693, 53.073051], - [-131.998901, 53.05138], - [-131.945801, 53.04166], - [-131.917007, 52.984718], - [-131.847794, 53.043049], - [-131.644699, 53.00388], - [-131.598099, 52.975269], - [-131.628601, 52.94276], - [-131.611694, 52.926102], - [-131.6875, 52.86916], - [-131.8022, 52.864719], - [-131.8983, 52.941101], - [-131.944702, 52.93166], - [-131.891403, 52.909988], - [-131.982498, 52.879711], - [-131.886993, 52.88916], - [-131.852493, 52.861938], - [-131.880798, 52.833328], - [-131.812195, 52.797218], - [-131.6492, 52.800541], - [-131.851105, 52.766109], - [-131.806396, 52.748329], - [-131.837799, 52.710819], - [-131.726898, 52.695541], - [-131.681396, 52.637501], - [-131.705002, 52.621658], - [-131.615295, 52.56889], - [-131.660599, 52.538891], - [-131.467499, 52.501389], - [-131.483597, 52.479431], - [-131.415604, 52.45805], - [-131.447006, 52.390549], - [-131.391403, 52.390831], - [-131.397202, 52.35305], - [-131.347504, 52.36805], - [-131.353104, 52.418331], - [-131.236404, 52.439159], - [-131.301102, 52.38055], - [-131.304199, 52.356659], - [-131.247498, 52.365829], - [-131.263107, 52.34277], - [-131.358902, 52.343609], - [-131.328293, 52.285], - [-131.226898, 52.251942], - [-131.248306, 52.302219], - [-131.136398, 52.311378], - [-131.089401, 52.249161], - [-131.180298, 52.228321], - [-131.074402, 52.219379] - ] - ], - [ - [ - [-129.462799, 53.179989], - [-129.313004, 53.057499], - [-129.289505, 52.971931], - [-129.4142, 53.010551], - [-129.475296, 53.10194], - [-129.544693, 53.12833], - [-129.521698, 53.183601], - [-129.462799, 53.179989] - ] - ], - [ - [ - [-128.498901, 52.870831], - [-128.450806, 52.805271], - [-128.512497, 52.641109], - [-128.539993, 52.70332], - [-128.498901, 52.870831] - ] - ], - [ - [ - [-128.170303, 52.817768], - [-128.247192, 52.620541], - [-128.2845, 52.598598], - [-128.324997, 52.7761], - [-128.225006, 52.782211], - [-128.170303, 52.817768] - ] - ], - [ - [ - [-129.231094, 52.816101], - [-128.923294, 52.606659], - [-128.943604, 52.469711], - [-128.982803, 52.453049], - [-129.008896, 52.525551], - [-129.109695, 52.552769], - [-129.118896, 52.60471], - [-129.2108, 52.64888], - [-129.224197, 52.67749], - [-129.193893, 52.683048], - [-129.270599, 52.719151], - [-129.281403, 52.817211], - [-129.231094, 52.816101] - ] - ], - [ - [ - [-128.373306, 52.791111], - [-128.274994, 52.48999], - [-128.365799, 52.38221], - [-128.441696, 52.36805], - [-128.467804, 52.393051], - [-128.394196, 52.465], - [-128.423096, 52.474991], - [-128.437805, 52.54361], - [-128.450607, 52.626942], - [-128.418304, 52.70805], - [-128.441696, 52.746941], - [-128.373306, 52.791111] - ] - ], - [ - [ - [-131.468903, 52.730549], - [-131.439194, 52.70166], - [-131.458298, 52.630821], - [-131.5905, 52.662491], - [-131.593307, 52.63361], - [-131.547806, 52.611382], - [-131.585495, 52.58527], - [-131.709702, 52.705269], - [-131.574707, 52.72694], - [-131.674698, 52.70499], - [-131.549393, 52.688042], - [-131.468903, 52.730549] - ] - ], - [ - [ - [-128.535294, 52.647221], - [-128.464996, 52.473049], - [-128.486893, 52.43721], - [-128.536407, 52.43499], - [-128.6828, 52.514439], - [-128.714706, 52.483879], - [-128.813004, 52.519989], - [-128.802505, 52.546101], - [-128.697006, 52.520828], - [-128.738907, 52.58749], - [-128.577499, 52.593609], - [-128.552505, 52.665272], - [-128.535294, 52.647221] - ] - ], - [ - [ - [-128.616104, 52.448601], - [-128.617798, 52.32999], - [-128.675598, 52.266392], - [-128.726395, 52.316101], - [-128.759201, 52.449429], - [-128.674393, 52.482208], - [-128.616104, 52.448601] - ] - ], - [ - [ - [-127.596298, 52.151791], - [-127.6539, 52.130821], - [-127.717499, 51.98027], - [-127.8797, 51.944988], - [-127.9011, 51.985821], - [-127.8797, 52.084991], - [-127.7892, 52.221931], - [-127.510002, 52.306938], - [-127.400299, 52.395271], - [-127.263901, 52.436649], - [-127.234703, 52.416939], - [-127.244499, 52.36916], - [-127.207802, 52.344711], - [-127.232201, 52.313049], - [-127.596298, 52.151791] - ] - ], - [ - [ - [-128.092499, 52.408329], - [-128.056702, 52.32888], - [-128.213593, 52.27972], - [-128.1147, 52.418331], - [-128.092499, 52.408329] - ] - ], - [ - [ - [-127.961899, 52.28944], - [-127.907501, 52.204708], - [-127.924698, 52.17416], - [-128.092804, 52.192211], - [-128.011703, 52.23193], - [-128.046402, 52.258049], - [-128.169998, 52.249722], - [-128.047806, 52.300541], - [-127.961899, 52.28944] - ] - ], - [ - [ - [-128.148102, 52.183331], - [-128.151093, 52.081108], - [-128.2061, 52.018879], - [-128.253098, 52.019711], - [-128.291702, 52.118881], - [-128.2397, 52.184158], - [-128.148102, 52.183331] - ] - ], - [ - [ - [-128.031693, 52.163288], - [-127.879204, 52.16666], - [-127.962799, 52.074711], - [-128.105804, 52.100269], - [-128.1147, 52.149158], - [-128.031693, 52.163288] - ] - ], - [ - [ - [-127.951202, 52.046909], - [-127.970596, 51.925831], - [-128.032196, 51.840549], - [-128.0186, 51.770271], - [-128.131897, 51.743881], - [-128.110504, 51.801929], - [-128.132797, 51.85527], - [-128.254501, 51.865829], - [-128.199203, 51.913052], - [-128.222198, 51.95332], - [-128.145294, 52.038601], - [-127.951202, 52.046909] - ] - ], - [ - [ - [-127.998001, 51.711658], - [-127.873596, 51.464439], - [-127.914398, 51.41082], - [-128.003403, 51.468601], - [-128.0811, 51.474709], - [-128.153107, 51.601662], - [-128.136398, 51.661659], - [-127.998001, 51.711658] - ] - ], - [ - [ - [-127.121101, 49.852291], - [-127.241402, 49.961941], - [-127.178596, 50.009159], - [-127.176697, 50.0611], - [-127.091904, 50.09943], - [-127.090302, 50.141941], - [-127.172501, 50.09193], - [-127.292503, 50.146389], - [-127.277496, 50.055271], - [-127.380501, 50.0261], - [-127.470802, 50.08543], - [-127.420799, 50.12804], - [-127.485001, 50.12804], - [-127.428596, 50.180271], - [-127.596901, 50.115551], - [-127.635597, 50.135551], - [-127.609703, 50.180271], - [-127.650803, 50.175549], - [-127.788101, 50.081669], - [-127.906998, 50.120831], - [-127.745003, 50.24194], - [-127.8442, 50.275551], - [-127.804398, 50.321381], - [-127.931396, 50.316101], - [-127.9786, 50.342491], - [-127.923897, 50.462769], - [-127.584198, 50.486938], - [-127.446999, 50.372761], - [-127.57, 50.512211], - [-127.490303, 50.56805], - [-127.4142, 50.575829], - [-127.419403, 50.596661], - [-127.553001, 50.56805], - [-127.596703, 50.596939], - [-127.873299, 50.623878], - [-127.786697, 50.582211], - [-127.634499, 50.578049], - [-127.595596, 50.536659], - [-127.995102, 50.466389], - [-128.058594, 50.486382], - [-128.051407, 50.44669], - [-128.224197, 50.531109], - [-128.241394, 50.58749], - [-128.3367, 50.63694], - [-128.272797, 50.66972], - [-128.375305, 50.6786], - [-128.416702, 50.769161], - [-128.064194, 50.872219], - [-127.909698, 50.87138], - [-127.507202, 50.772221], - [-127.477097, 50.700069], - [-127.408897, 50.746101], - [-127.407204, 50.700001], - [-127.200302, 50.61277], - [-126.854698, 50.55444], - [-126.852501, 50.523319], - [-126.776398, 50.546101], - [-126.592499, 50.47694], - [-126.327797, 50.48082], - [-126.069199, 50.438599], - [-125.9478, 50.384991], - [-125.725601, 50.352219], - [-125.564201, 50.36388], - [-125.431702, 50.310551], - [-125.351898, 50.149158], - [-125.368301, 50.125271], - [-125.300598, 50.10527], - [-125.168602, 49.912769], - [-125, 49.796299], - [-124.866402, 49.711109], - [-124.883904, 49.666382], - [-124.977203, 49.668598], - [-124.789398, 49.464161], - [-124.716698, 49.463051], - [-124.535599, 49.373878], - [-124.170502, 49.311939], - [-124.110802, 49.275269], - [-124.175598, 49.255829], - [-123.957802, 49.228321], - [-123.909698, 49.127491], - [-123.810303, 49.115829], - [-123.749397, 49.035271], - [-123.757004, 48.986938], - [-123.8311, 48.997219], - [-123.582802, 48.83194], - [-123.603302, 48.79583], - [-123.565598, 48.789719], - [-123.567497, 48.744438], - [-123.648102, 48.750271], - [-123.538101, 48.691662], - [-123.509499, 48.58749], - [-123.535004, 48.529991], - [-123.4758, 48.568329], - [-123.4767, 48.63166], - [-123.439201, 48.647221], - [-123.4692, 48.67944], - [-123.4011, 48.681381], - [-123.341698, 48.508888], - [-123.2761, 48.451099], - [-123.336403, 48.396938], - [-123.443001, 48.443321], - [-123.546097, 48.30777], - [-123.583298, 48.301102], - [-123.762497, 48.36166], - [-123.924202, 48.3661], - [-124.423599, 48.516941], - [-124.438301, 48.532768], - [-124.396103, 48.56583], - [-124.489403, 48.53944], - [-124.688599, 48.578331], - [-124.8228, 48.652489], - [-125.113899, 48.731098], - [-125.184998, 48.800831], - [-125.005997, 48.88903], - [-125, 48.939468], - [-124.842796, 49.015549], - [-124.7808, 49.131378], - [-124.8078, 49.240551], - [-124.826103, 49.12249], - [-124.906097, 49.001942], - [-125.092201, 48.972488], - [-125.150597, 48.996941], - [-125.241898, 48.95166], - [-125.331902, 48.96999], - [-125.258301, 49.01833], - [-125.3414, 49.03611], - [-125.371902, 48.97916], - [-125.483597, 48.915821], - [-125.737801, 49.049999], - [-125.8769, 49.088329], - [-125.858299, 49.110821], - [-125.738098, 49.105549], - [-125.605797, 49.21027], - [-125.753304, 49.147491], - [-125.735001, 49.257221], - [-125.802498, 49.255001], - [-125.776901, 49.365829], - [-125.846397, 49.25816], - [-125.894402, 49.273609], - [-125.970299, 49.224709], - [-126.0233, 49.268051], - [-125.945503, 49.316669], - [-125.904701, 49.435822], - [-126.001999, 49.321941], - [-126.065002, 49.348331], - [-126.052803, 49.446098], - [-126.1903, 49.400829], - [-126.258598, 49.445541], - [-126.296997, 49.357769], - [-126.403603, 49.411098], - [-126.422501, 49.470268], - [-126.480301, 49.44305], - [-126.466103, 49.380268], - [-126.542198, 49.374439], - [-126.577797, 49.407768], - [-126.555, 49.44471], - [-126.566101, 49.584431], - [-126.470299, 49.635551], - [-126.134201, 49.64999], - [-126.086899, 49.657211], - [-126.103104, 49.679161], - [-126.324997, 49.64888], - [-126.438301, 49.66415], - [-126.483101, 49.702492], - [-126.408897, 49.770271], - [-126.456398, 49.78833], - [-126.4972, 49.712769], - [-126.584999, 49.701099], - [-126.645599, 49.892769], - [-126.731697, 49.880268], - [-126.829498, 49.96471], - [-126.800797, 49.913879], - [-126.845596, 49.88221], - [-126.884201, 49.879162], - [-126.914703, 49.965832], - [-126.9394, 49.86277], - [-127.121101, 49.852291] - ] - ], - [ - [ - [-126.797798, 50.768879], - [-126.8647, 50.78944], - [-126.9058, 50.822769], - [-126.881401, 50.83028], - [-126.794197, 50.80471], - [-126.779198, 50.831669], - [-126.643303, 50.846939], - [-126.563004, 50.799999], - [-126.797798, 50.768879] - ] - ], - [ - [ - [-126.251701, 50.818932], - [-126.176697, 50.743881], - [-126.243896, 50.717209], - [-126.266403, 50.654709], - [-126.6175, 50.664989], - [-126.389702, 50.806381], - [-126.251701, 50.818932] - ] - ], - [ - [ - [-126.336403, 50.52166], - [-126.623901, 50.533878], - [-126.286102, 50.598331], - [-126.224701, 50.55666], - [-126.336403, 50.52166] - ] - ], - [ - [ - [-125.370796, 50.45583], - [-125.330597, 50.42527], - [-125.385803, 50.369709], - [-125.457802, 50.34943], - [-125.536903, 50.379162], - [-125.370796, 50.45583] - ] - ], - [ - [ - [-125.273102, 50.43111], - [-125.168098, 50.382771], - [-125.051903, 50.22665], - [-125.049202, 50.193321], - [-125.088303, 50.197208], - [-125.133904, 50.122761], - [-125.154198, 50.133331], - [-125.1269, 50.21944], - [-125.2136, 50.316669], - [-125.393097, 50.29583], - [-125.388603, 50.343048], - [-125.313301, 50.340832], - [-125.320602, 50.385551], - [-125.273102, 50.43111] - ] - ], - [ - [ - [-124.898598, 50.29388], - [-124.811401, 50.275551], - [-124.820297, 50.20583], - [-124.756699, 50.178329], - [-124.806999, 50.11388], - [-124.870796, 50.156651], - [-124.834396, 50.192211], - [-124.915604, 50.188881], - [-124.963097, 50.236382], - [-124.898598, 50.29388] - ] - ], - [ - [ - [-125.345497, 50.263901], - [-125.2547, 50.29361], - [-125.167198, 50.213612], - [-125.186699, 50.141659], - [-125.233101, 50.11805], - [-125.178001, 50.078609], - [-125.167801, 49.98082], - [-125.215599, 50.07888], - [-125.323601, 50.14333], - [-125.345497, 50.263901] - ] - ], - [ - [ - [-124.983299, 50.225552], - [-124.891098, 50.06805], - [-124.987198, 50.012772], - [-125, 50.064308], - [-125.067001, 50.107498], - [-124.982201, 50.176102], - [-125.005798, 50.225819], - [-124.983299, 50.225552] - ] - ], - [ - [ - [-126.7687, 49.87862], - [-126.681702, 49.849998], - [-126.636101, 49.759441], - [-126.613297, 49.648331], - [-126.633102, 49.5961], - [-126.807999, 49.619709], - [-126.974197, 49.740269], - [-126.855797, 49.776939], - [-126.988602, 49.811378], - [-126.970299, 49.832211], - [-126.7687, 49.87862] - ] - ], - [ - [ - [-124.122803, 49.49361], - [-124.440002, 49.612499], - [-124.4767, 49.67194], - [-124.654198, 49.736111], - [-124.6567, 49.79694], - [-124.351402, 49.69804], - [-124.122803, 49.49361] - ] - ], - [ - [ - [-126.1269, 49.39027], - [-126.0728, 49.343048], - [-126.064697, 49.250832], - [-126.239197, 49.289719], - [-126.234703, 49.374161], - [-126.1269, 49.39027] - ] - ], - [ - [ - [-123.674698, 49.093048], - [-123.521698, 48.96027], - [-123.3125, 48.86805], - [-123.378899, 48.856941], - [-123.529999, 48.938042], - [-123.662498, 49.035271], - [-123.705299, 49.100269], - [-123.674698, 49.093048] - ] - ], - [ - [ - [-123.577202, 48.929161], - [-123.433899, 48.84444], - [-123.494499, 48.845268], - [-123.371696, 48.7575], - [-123.456398, 48.76527], - [-123.431999, 48.7211], - [-123.524696, 48.722488], - [-123.551903, 48.75222], - [-123.532501, 48.795269], - [-123.571701, 48.829159], - [-123.547798, 48.859989], - [-123.592796, 48.898331], - [-123.596703, 48.946941], - [-123.577202, 48.929161] - ] - ], - [ - [ - [-117.030998, 49], - [-117.4375, 49], - [-118.199203, 49], - [-118.842499, 49], - [-120.855797, 48.999969], - [-122.7603, 48.999439], - [-122.862503, 49.022221], - [-122.859398, 49.077221], - [-122.900002, 49.087212], - [-123.0392, 49.0425], - [-123.034302, 48.999439], - [-123.145798, 49.058601], - [-123.036102, 49.149719], - [-123.115501, 49.108601], - [-123.205002, 49.1236], - [-123.2033, 49.194439], - [-123.127197, 49.19582], - [-123.248901, 49.273609], - [-123.146698, 49.271381], - [-123.147797, 49.308041], - [-122.923599, 49.28833], - [-122.852798, 49.4361], - [-122.876404, 49.455551], - [-122.901398, 49.36055], - [-122.953102, 49.310268], - [-123.269203, 49.331108], - [-123.288101, 49.374989], - [-123.233299, 49.426102], - [-123.256699, 49.512772], - [-123.159698, 49.699162], - [-123.241898, 49.660549], - [-123.254501, 49.588329], - [-123.4925, 49.50972], - [-123.4767, 49.419159], - [-123.535599, 49.381378], - [-123.749199, 49.461109], - [-123.896103, 49.470539], - [-124.0681, 49.633881], - [-124.021103, 49.726379], - [-123.940598, 49.742489], - [-123.833099, 49.627491], - [-123.769699, 49.504711], - [-123.759201, 49.601101], - [-123.614998, 49.63916], - [-123.534203, 49.701389], - [-123.7967, 49.638329], - [-123.931396, 49.76416], - [-123.872803, 49.877209], - [-123.959702, 49.981659], - [-123.744499, 50.086941], - [-123.821404, 50.15221], - [-123.985001, 50.216099], - [-123.809196, 50.099998], - [-123.999199, 50.00639], - [-123.979698, 49.91666], - [-123.911102, 49.869709], - [-123.926399, 49.825829], - [-124.004204, 49.810551], - [-124.037804, 49.922489], - [-124.071999, 49.873322], - [-124.046097, 49.841099], - [-124.084396, 49.79916], - [-124.257797, 49.775829], - [-124.2714, 49.742771], - [-124.511902, 49.796101], - [-124.532799, 49.84444], - [-124.741898, 49.958328], - [-124.829697, 50.061939], - [-124.686401, 49.98444], - [-124.704697, 50.030819], - [-124.668602, 50.076389], - [-124.700302, 50.10833], - [-124.626099, 50.165272], - [-124.601402, 50.23888], - [-124.714996, 50.327492], - [-124.651901, 50.38916], - [-124.434196, 50.43166], - [-124.347801, 50.502491], - [-124.563004, 50.42083], - [-124.671402, 50.425831], - [-124.830002, 50.309429], - [-124.959999, 50.33305], - [-124.948898, 50.37582], - [-124.994698, 50.430271], - [-124.9953, 50.353882], - [-125.0783, 50.322491], - [-125.056702, 50.47694], - [-125, 50.490829], - [-124.858002, 50.590549], - [-124.860298, 50.6786], - [-124.822502, 50.723598], - [-124.913597, 50.79361], - [-124.786903, 50.884441], - [-124.849998, 50.935261], - [-124.912804, 50.841099], - [-124.983299, 50.8036], - [-124.897003, 50.72971], - [-124.9217, 50.661381], - [-124.903603, 50.619991], - [-125.104202, 50.496941], - [-125.1147, 50.436939], - [-125.170303, 50.412491], - [-125.246101, 50.462212], - [-125.245003, 50.503609], - [-125.315804, 50.465271], - [-125.363297, 50.541382], - [-125.4217, 50.465271], - [-125.573303, 50.458889], - [-125.527802, 50.540279], - [-125.532204, 50.627209], - [-125.4328, 50.713879], - [-125.547203, 50.66193], - [-125.573898, 50.544159], - [-125.623901, 50.50639], - [-125.613899, 50.465271], - [-125.700302, 50.428051], - [-125.795502, 50.496101], - [-125.738602, 50.516109], - [-125.815804, 50.534161], - [-125.952202, 50.46888], - [-126.275002, 50.5075], - [-126.232803, 50.53611], - [-126.175797, 50.519161], - [-126.170303, 50.573879], - [-125.9403, 50.629162], - [-126.207802, 50.588879], - [-126.273903, 50.632141], - [-125.704201, 50.678329], - [-125.6772, 50.73444], - [-125.611099, 50.764721], - [-125.641998, 50.853321], - [-125.546402, 50.861382], - [-125.5056, 50.933331], - [-125.551697, 51.042221], - [-125.633904, 51.096939], - [-125.5811, 50.95388], - [-125.542801, 50.932499], - [-125.6744, 50.86694], - [-125.680298, 50.81554], - [-125.643097, 50.783878], - [-125.703598, 50.764999], - [-125.746902, 50.70805], - [-125.936897, 50.681381], - [-125.9953, 50.70805], - [-126.210297, 50.665272], - [-126.2089, 50.707771], - [-126.024696, 50.793049], - [-126.181396, 50.778332], - [-126.1772, 50.86805], - [-126.493301, 50.81638], - [-126.552803, 50.834721], - [-126.557503, 50.876659], - [-126.494499, 50.918049], - [-126.2258, 50.898609], - [-126.170303, 50.936649], - [-126.4636, 50.94804], - [-126.516403, 51.070549], - [-126.549202, 51.014439], - [-126.524399, 50.937489], - [-126.6614, 50.86805], - [-126.854401, 50.93943], - [-126.917198, 50.899158], - [-127.176399, 50.929161], - [-127.062798, 50.885269], - [-126.917503, 50.876659], - [-127.022499, 50.817501], - [-127.2547, 50.913879], - [-127.398598, 50.92638], - [-127.441101, 50.947769], - [-127.420799, 50.978321], - [-127.535301, 51.000549], - [-127.5028, 51.097488], - [-127.381104, 51.059052], - [-127.330803, 51.047779], - [-127.236099, 51.041111], - [-126.848602, 51.069721], - [-126.765602, 51.056381], - [-126.7117, 51.000832], - [-126.704498, 51.039719], - [-126.743103, 51.0825], - [-126.652802, 51.14999], - [-126.658302, 51.19276], - [-126.806999, 51.089161], - [-127.206703, 51.056381], - [-127.388397, 51.067989], - [-127.500603, 51.11805], - [-127.649399, 51.09222], - [-127.790001, 51.165539], - [-127.761902, 51.249439], - [-127.565598, 51.293049], - [-127.306702, 51.280499], - [-127.143303, 51.318329], - [-127.115799, 51.391659], - [-127.188004, 51.323608], - [-127.280602, 51.301102], - [-127.509697, 51.310268], - [-127.465302, 51.358051], - [-127.57, 51.328609], - [-127.784203, 51.33305], - [-127.778297, 51.361111], - [-127.663902, 51.385551], - [-127.551697, 51.468319], - [-127.500603, 51.613609], - [-127.233299, 51.662491], - [-126.6633, 51.64888], - [-126.605301, 51.713051], - [-126.6633, 51.797218], - [-126.639999, 51.709991], - [-126.693001, 51.664711], - [-127.053902, 51.697769], - [-127.2742, 51.683331], - [-127.3367, 51.712769], - [-127.425797, 51.66666], - [-127.433098, 51.75], - [-127.3619, 51.77166], - [-127.351097, 51.863609], - [-127.392799, 51.77721], - [-127.453102, 51.772491], - [-127.474403, 51.70499], - [-127.644203, 51.69804], - [-127.462196, 51.6675], - [-127.540298, 51.638889], - [-127.5858, 51.570549], - [-127.561096, 51.538601], - [-127.640297, 51.458599], - [-127.7547, 51.479988], - [-127.656403, 51.508888], - [-127.795502, 51.5261], - [-127.787201, 51.560268], - [-127.840599, 51.641731], - [-127.878098, 51.673882], - [-127.866096, 51.89999], - [-127.789703, 51.941101], - [-127.667801, 51.949162], - [-127.651398, 52.051659], - [-127.580299, 52.129162], - [-127.480598, 52.1511], - [-127.462502, 52.112499], - [-127.584396, 52.093609], - [-127.6203, 52.027771], - [-127.547203, 52.07972], - [-127.4114, 52.090549], - [-127.453102, 52.179989], - [-127.2453, 52.248878], - [-127.1717, 52.312489], - [-127.004997, 52.3036], - [-126.938004, 52.246941], - [-126.937202, 52.196098], - [-126.751999, 52.078609], - [-126.669403, 51.983601], - [-126.669701, 52.041939], - [-126.751701, 52.125271], - [-126.900597, 52.205269], - [-126.940804, 52.303879], - [-126.867798, 52.35416], - [-126.736702, 52.37804], - [-126.792801, 52.39555], - [-126.9814, 52.33527], - [-127.082497, 52.334991], - [-127.186401, 52.380821], - [-127.2342, 52.517208], - [-127.074203, 52.61639], - [-126.989403, 52.631939], - [-126.922203, 52.71888], - [-126.966904, 52.828609], - [-127.071098, 52.883881], - [-126.980797, 52.72443], - [-127.075699, 52.639721], - [-127.257202, 52.54583], - [-127.266701, 52.464161], - [-127.452499, 52.40443], - [-127.611702, 52.29472], - [-127.746101, 52.276661], - [-127.714203, 52.353611], - [-127.736702, 52.349998], - [-127.858299, 52.206661], - [-127.928596, 52.30471], - [-127.905296, 52.3461], - [-127.841698, 52.365002], - [-127.916397, 52.44582], - [-127.869698, 52.5061], - [-127.900002, 52.509991], - [-127.930603, 52.434429], - [-127.889999, 52.384991], - [-127.963898, 52.321659], - [-128.057205, 52.394711], - [-128.068298, 52.447769], - [-128.009506, 52.50861], - [-127.9375, 52.499722], - [-127.8797, 52.57972], - [-128.099701, 52.503052], - [-128.151093, 52.409988], - [-128.304993, 52.26944], - [-128.393906, 52.291382], - [-128.224396, 52.459721], - [-128.239197, 52.56694], - [-128.113007, 52.748329], - [-128.139206, 52.837212], - [-128.128098, 52.88055], - [-128.025299, 52.912209], - [-128.139206, 52.924438], - [-128.235306, 52.80582], - [-128.441101, 52.822769], - [-128.495499, 52.887501], - [-128.537796, 53.073051], - [-128.496597, 53.09721], - [-128.554199, 53.118881], - [-128.4814, 53.141941], - [-128.571899, 53.142769], - [-128.663605, 53.239429], - [-128.685303, 53.18943], - [-128.858902, 53.283611], - [-128.878296, 53.338039], - [-128.8461, 53.36832], - [-128.883606, 53.369991], - [-128.889206, 53.430271], - [-128.829407, 53.477772], - [-128.923294, 53.45388], - [-128.972794, 53.553051], - [-128.866592, 53.535], - [-128.794998, 53.5686], - [-128.754196, 53.493881], - [-128.670807, 53.45055], - [-128.692505, 53.485271], - [-128.643906, 53.474991], - [-128.4953, 53.388599], - [-128.481903, 53.33971], - [-128.474396, 53.389721], - [-128.504196, 53.407768], - [-128.373596, 53.442211], - [-128.352493, 53.475819], - [-128.131897, 53.448879], - [-128.071106, 53.396389], - [-128.099396, 53.33638], - [-128.032196, 53.367489], - [-127.952003, 53.326099], - [-127.946098, 53.25222], - [-127.867798, 53.239719], - [-127.93, 53.284721], - [-127.925003, 53.329159], - [-128.050293, 53.395], - [-128.114395, 53.488041], - [-128.380295, 53.499439], - [-128.389206, 53.462212], - [-128.517502, 53.431381], - [-128.756104, 53.560268], - [-128.816696, 53.623322], - [-128.764694, 53.71944], - [-128.7939, 53.764999], - [-128.770599, 53.79583], - [-128.689697, 53.81221], - [-128.643097, 53.863049], - [-128.471405, 53.8325], - [-128.688599, 53.889992], - [-128.609207, 54.03138], - [-128.685303, 54.000832], - [-128.720001, 53.938881], - [-128.9319, 53.774712], - [-128.904694, 53.856659], - [-128.943893, 53.80999], - [-128.950806, 53.878601], - [-129.003906, 53.89333], - [-128.966904, 53.863049], - [-128.964203, 53.782211], - [-129.009201, 53.762211], - [-129.0569, 53.811939], - [-129.028595, 53.7486], - [-129.232498, 53.62582], - [-129.261993, 53.517769], - [-129.2314, 53.500832], - [-129.237503, 53.433601], - [-129.310699, 53.379501], - [-129.606094, 53.567768], - [-129.734695, 53.67527], - [-129.699707, 53.671101], - [-129.713593, 53.699429], - [-129.989395, 53.845829], - [-129.962204, 53.88583], - [-130.031693, 53.876381], - [-130.101395, 53.946659], - [-130.090805, 54.071659], - [-130.046707, 54.15332], - [-129.950302, 54.158039], - [-129.839996, 54.027771], - [-129.718903, 53.951389], - [-129.737198, 54.001659], - [-129.834198, 54.05471], - [-129.929703, 54.183048], - [-129.831894, 54.21944], - [-129.614197, 54.178921], - [-129.470001, 54.237209], - [-129.616898, 54.194149], - [-129.854996, 54.238041], - [-130.122803, 54.15443], - [-130.278595, 54.208889], - [-130.279999, 54.24361], - [-130.195602, 54.259991], - [-130.2603, 54.33749], - [-130.250305, 54.400829], - [-130.275803, 54.34972], - [-130.348907, 54.326939], - [-130.481094, 54.364719], - [-130.473602, 54.435822], - [-130.381104, 54.45805], - [-130.433594, 54.496658], - [-130.429993, 54.562489], - [-130.375793, 54.571659], - [-130.439697, 54.612209], - [-130.416702, 54.630268], - [-130.063004, 54.339989], - [-129.982803, 54.3111], - [-129.959702, 54.326939], - [-130.038605, 54.34193], - [-130.089706, 54.402771], - [-130.059204, 54.47916], - [-129.978897, 54.516941], - [-130.0672, 54.49416], - [-130.082794, 54.434719], - [-130.123306, 54.42749], - [-130.351395, 54.61805], - [-130.368607, 54.66777], - [-130.171906, 54.703609], - [-130.000595, 54.614719], - [-129.880798, 54.614719], - [-130.004501, 54.632771], - [-130.079193, 54.691929], - [-130.201706, 54.72694], - [-130.155594, 54.815269], - [-130.050293, 54.88694], - [-130.173904, 54.846661], - [-130.031998, 54.965271], - [-129.954193, 54.95916], - [-129.974396, 54.914989], - [-129.824402, 54.989159], - [-129.622498, 54.997768], - [-129.998306, 55.018051], - [-129.961395, 55.093319], - [-129.860504, 55.170551], - [-129.815598, 55.255001], - [-129.749405, 55.28833], - [-129.643295, 55.434158], - [-129.523895, 55.439991], - [-129.4711, 55.472759], - [-129.636993, 55.456661], - [-129.708298, 55.409988], - [-129.811996, 55.629162], - [-129.772797, 55.473881], - [-129.839401, 55.387501], - [-129.824402, 55.361938], - [-129.790604, 55.398048], - [-129.808594, 55.367771], - [-129.782501, 55.353611], - [-129.830795, 55.323051], - [-129.813904, 55.289719], - [-129.920807, 55.151932], - [-130.068298, 54.996941], - [-130.113602, 54.99638], - [-130.160004, 55.086109], - [-129.943893, 55.282211], - [-130.007202, 55.355], - [-130.0242, 55.46471], - [-130.1017, 55.556381], - [-130.074707, 55.672489], - [-130.174698, 55.75444], - [-130.015106, 55.90918], - [-130.088593, 56.11805], - [-130.4142, 56.12888], - [-130.461899, 56.235271], - [-130.627197, 56.25861], - [-130.774399, 56.3661], - [-131.054993, 56.398048], - [-131.5578, 56.602219], - [-131.824203, 56.596939], - [-131.861404, 56.799721], - [-132.103104, 56.866661], - [-132.027496, 57.036381], - [-132.336899, 57.088329], - [-132.2267, 57.204708], - [-133.136993, 58.13583], - [-133.361099, 58.280548], - [-133.429993, 58.45916], - [-133.826904, 58.726101], - [-134.245499, 58.856941], - [-134.461395, 59.126659], - [-134.566406, 59.13055], - [-134.688004, 59.24332], - [-134.951904, 59.279991], - [-134.989197, 59.389992], - [-135.091705, 59.426941], - [-135.021103, 59.4711], - [-135.014496, 59.567501], - [-135.473602, 59.801929], - [-136.343903, 59.602779], - [-136.233902, 59.525829], - [-136.463593, 59.469711], - [-136.462799, 59.28944], - [-136.583893, 59.163319], - [-136.808899, 59.165272], - [-137.4655, 58.906101], - [-137.590805, 59.238602], - [-138.615799, 59.774158], - [-138.690308, 59.90694], - [-138.938599, 59.997551], - [-134.906601, 60], - [-134.639297, 60.000198], - [-134.151703, 59.999722], - [-133.791199, 60], - [-125.000801, 60.003868], - [-123.816902, 59.994709], - [-119.982903, 59.988522], - [-120.000801, 54.005871], - [-120.000801, 53.808041], - [-119.904701, 53.778599], - [-119.921097, 53.718319], - [-119.810303, 53.707771], - [-119.735298, 53.634991], - [-119.7686, 53.603321], - [-119.932198, 53.60722], - [-119.882797, 53.560268], - [-119.902496, 53.520271], - [-119.842499, 53.518051], - [-119.778099, 53.446941], - [-119.738098, 53.395], - [-119.606102, 53.37804], - [-119.385803, 53.36166], - [-119.348099, 53.275269], - [-119.265602, 53.196659], - [-119.045502, 53.137772], - [-119.013603, 53.144711], - [-119.012199, 53.223049], - [-118.9786, 53.237209], - [-118.759697, 53.12471], - [-118.781097, 53.05582], - [-118.669998, 53.034439], - [-118.679703, 52.970539], - [-118.625, 52.884159], - [-118.491402, 52.89777], - [-118.415604, 52.83638], - [-118.428902, 52.78611], - [-118.3461, 52.74332], - [-118.305, 52.674709], - [-118.349998, 52.61805], - [-118.2817, 52.565269], - [-118.286903, 52.527771], - [-118.208298, 52.48082], - [-118.259697, 52.442211], - [-118.223099, 52.365551], - [-118.145798, 52.39888], - [-118.047501, 52.404991], - [-118.0056, 52.48777], - [-117.902802, 52.424999], - [-117.7547, 52.403599], - [-117.7314, 52.344151], - [-117.829697, 52.27277], - [-117.760002, 52.200829], - [-117.6875, 52.196098], - [-117.600304, 52.13055], - [-117.363098, 52.138599], - [-117.318901, 52.181938], - [-117.269997, 52.044998], - [-117.0392, 51.908039], - [-116.919197, 51.70916], - [-116.812798, 51.715271], - [-116.815804, 51.750549], - [-116.746101, 51.79916], - [-116.658897, 51.796661], - [-116.597504, 51.716381], - [-116.595001, 51.65749], - [-116.488098, 51.613049], - [-116.466103, 51.56638], - [-116.399696, 51.54472], - [-116.3797, 51.488602], - [-116.305, 51.461658], - [-116.306099, 51.388329], - [-116.262199, 51.316669], - [-116.060501, 51.24638], - [-116.0261, 51.21693], - [-116.016098, 51.138329], - [-115.957802, 51.103882], - [-115.776703, 51.073608], - [-115.759697, 51.035831], - [-115.618599, 50.969151], - [-115.571999, 50.90332], - [-115.647202, 50.85471], - [-115.527802, 50.791939], - [-115.419197, 50.754169], - [-115.395798, 50.71693], - [-115.346703, 50.732208], - [-115.311699, 50.706661], - [-115.283096, 50.658878], - [-115.320602, 50.638599], - [-115.218903, 50.54694], - [-115.1017, 50.588329], - [-115.016998, 50.575001], - [-114.8367, 50.39666], - [-114.770302, 50.35833], - [-114.793602, 50.334721], - [-114.754997, 50.288891], - [-114.724197, 50.125549], - [-114.658897, 50.065269], - [-114.643303, 49.977772], - [-114.684998, 49.9575], - [-114.6875, 49.913601], - [-114.626099, 49.797218], - [-114.636101, 49.727772], - [-114.679703, 49.63221], - [-114.738297, 49.608601], - [-114.6894, 49.547218], - [-114.576401, 49.556099], - [-114.599998, 49.442211], - [-114.576401, 49.389992], - [-114.476097, 49.341381], - [-114.429398, 49.265549], - [-114.376701, 49.25639], - [-114.372803, 49.204159], - [-114.225304, 49.188599], - [-114.154198, 49.148048], - [-114.1567, 49.103611], - [-114.035301, 49.031109], - [-114.060303, 49], - [-114.0625, 49], - [-114.728302, 49], - [-116.0625, 49], - [-117.030998, 49] - ] - ] - ] - }, - "properties": { - "name": "British Columbia", - "ISOCODE": "CA-BC", - "cartodb_id": 6, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-109.978409, 78.671058], - [-109.405296, 78.556931], - [-109.326401, 78.518883], - [-109.3339, 78.493874], - [-109.254997, 78.478592], - [-109.354401, 78.388893], - [-109.3181, 78.358032], - [-109.404999, 78.306374], - [-109.824402, 78.293869], - [-109.983902, 78.325546], - [-109.978409, 78.671058] - ] - ], - [ - [ - [-109.791702, 78.099152], - [-109.580597, 78.058319], - [-109.705597, 77.959991], - [-109.987239, 77.924049], - [-109.985789, 78.101103], - [-109.791702, 78.099152] - ] - ], - [ - [ - [-108.482697, 76.456818], - [-108.607498, 76.410538], - [-108.318604, 76.39415], - [-108.077499, 76.279709], - [-108.218903, 76.258881], - [-108.093102, 76.214157], - [-108.380302, 76.165268], - [-108.4086, 76.147774], - [-108.394203, 76.124977], - [-108.456703, 76.099152], - [-108.384201, 76.086647], - [-108.496696, 76.039978], - [-107.838303, 76.061371], - [-107.6325, 75.991089], - [-107.785301, 75.928864], - [-107.750298, 75.905548], - [-107.930298, 75.885536], - [-108.031097, 75.822487], - [-108.020302, 75.780823], - [-107.873596, 75.798027], - [-107.739403, 75.87915], - [-107.369499, 75.911652], - [-107.064201, 75.892761], - [-107.043098, 75.883331], - [-107.0858, 75.872482], - [-107.098099, 75.823036], - [-106.958603, 75.791931], - [-107.0317, 75.771103], - [-106.951103, 75.747482], - [-106.963097, 75.702766], - [-106.874702, 75.64415], - [-106.9058, 75.686096], - [-106.861397, 75.75499], - [-106.880302, 75.765823], - [-106.615799, 75.797211], - [-106.888901, 75.834717], - [-106.863602, 75.886932], - [-106.896103, 75.941093], - [-106.869698, 75.964157], - [-106.606102, 76.057747], - [-105.9702, 76.012421], - [-105.668297, 75.955551], - [-105.478897, 75.863037], - [-105.445801, 75.830551], - [-105.463898, 75.77916], - [-105.419701, 75.743591], - [-105.459999, 75.72998], - [-105.388298, 75.656372], - [-105.496399, 75.555252], - [-105.751404, 75.4897], - [-105.592796, 75.467484], - [-105.714203, 75.416382], - [-105.6464, 75.365257], - [-105.866898, 75.275818], - [-105.937798, 75.214432], - [-105.8442, 75.183319], - [-105.8853, 75.140266], - [-106.070297, 75.106644], - [-105.993301, 75.055817], - [-106.725601, 75.002213], - [-106.930603, 74.933594], - [-107.197197, 74.910812], - [-107.662498, 74.96666], - [-107.7239, 75.016388], - [-107.681396, 75.04248], - [-107.695, 75.075272], - [-107.7733, 75.0961], - [-107.743896, 75.037201], - [-108, 75.001938], - [-107.948898, 74.958038], - [-108.016403, 74.943588], - [-107.941902, 74.930817], - [-108.373001, 74.910538], - [-108.807198, 74.983597], - [-108.511398, 74.976379], - [-108.651398, 75.053864], - [-108.832497, 75.069992], - [-108.949699, 75.040268], - [-108.967796, 75.018883], - [-108.937202, 75.003326], - [-109.034698, 75.003052], - [-108.996399, 74.984711], - [-109.345802, 74.944702], - [-109.398598, 74.896103], - [-109.627296, 74.856888], - [-109.872498, 74.869141], - [-110.008101, 74.833102], - [-110.00402, 75.532769], - [-109.664703, 75.531097], - [-108.899399, 75.476379], - [-108.932503, 75.528587], - [-109.030602, 75.552757], - [-108.853897, 75.560257], - [-108.895798, 75.586929], - [-108.836403, 75.615807], - [-108.936096, 75.674698], - [-108.827003, 75.686653], - [-109.391998, 75.769707], - [-109.464401, 75.786652], - [-109.413902, 75.799713], - [-109.691399, 75.806931], - [-109.626404, 75.832489], - [-109.702499, 75.841927], - [-109.663597, 75.870819], - [-109.907799, 75.849991], - [-110.001897, 75.875843], - [-110.001757, 75.898089], - [-109.672203, 75.943863], - [-109.397499, 76.011383], - [-109.433098, 76.029984], - [-109.405602, 76.040817], - [-109.290604, 76.034988], - [-109.387199, 76.066093], - [-109.313599, 76.109154], - [-109.521698, 76.181091], - [-109.720001, 76.194977], - [-109.699997, 76.218872], - [-109.882797, 76.233871], - [-109.896698, 76.193588], - [-109.999649, 76.224774], - [-109.997979, 76.474992], - [-109.746399, 76.505547], - [-109.711403, 76.529984], - [-109.847198, 76.532494], - [-109.759201, 76.568047], - [-109.776398, 76.593597], - [-109.664398, 76.583878], - [-109.654999, 76.61499], - [-109.555298, 76.626373], - [-109.562202, 76.658333], - [-109.508301, 76.717758], - [-109.350304, 76.74942], - [-109.302803, 76.796944], - [-108.9189, 76.809418], - [-108.773598, 76.857758], - [-108.6511, 76.813599], - [-108.688301, 76.766098], - [-108.527199, 76.760269], - [-108.446404, 76.723602], - [-108.441902, 76.696373], - [-108.544701, 76.646378], - [-108.727203, 76.638046], - [-108.690598, 76.60054], - [-108.5289, 76.553864], - [-108.628304, 76.517761], - [-108.530602, 76.515549], - [-108.590302, 76.481934], - [-108.482697, 76.456818] - ] - ], - [ - [ - [-110.019917, 72.442051], - [-109.952499, 72.459991], - [-109.782799, 72.429428], - [-110.019692, 72.493611], - [-110.019536, 72.529154], - [-109.888603, 72.484711], - [-109.795303, 72.494141], - [-109.9589, 72.612762], - [-110.01912, 72.623398], - [-110.018727, 72.7117], - [-109.832802, 72.663307], - [-109.816704, 72.676086], - [-109.856903, 72.702766], - [-109.770302, 72.722214], - [-110.018556, 72.749766], - [-110.017534, 72.974877], - [-109.902199, 72.965271], - [-109.853897, 72.91748], - [-109.634499, 72.918053], - [-109.7547, 72.878593], - [-109.3797, 72.770538], - [-109.400803, 72.750267], - [-109.165802, 72.758614], - [-109.111702, 72.739967], - [-109.154701, 72.717209], - [-108.937202, 72.667213], - [-109.029999, 72.647217], - [-109.043297, 72.56749], - [-108.851097, 72.56749], - [-108.888901, 72.597763], - [-108.866898, 72.60582], - [-108.621399, 72.549988], - [-108.589401, 72.494431], - [-108.637199, 72.444427], - [-108.662804, 72.346367], - [-108.5242, 72.199707], - [-108.5364, 72.142212], - [-108.404404, 72.146942], - [-108.433296, 72.12886], - [-108.398903, 72.113602], - [-108.412201, 71.989967], - [-108.2939, 71.976379], - [-108.332802, 71.925812], - [-108.186699, 71.955833], - [-108.294998, 71.876083], - [-108.241699, 71.835541], - [-108.2808, 71.786926], - [-108.165298, 71.754707], - [-108.238098, 71.713882], - [-108.066101, 71.717758], - [-107.976097, 71.666382], - [-107.982803, 71.633331], - [-107.845299, 71.603867], - [-107.724197, 71.623871], - [-107.836403, 71.681664], - [-107.804398, 71.726646], - [-107.663902, 71.702477], - [-107.535599, 71.779709], - [-107.251999, 71.804428], - [-107.470802, 71.870819], - [-107.296997, 71.874153], - [-107.257004, 71.900269], - [-107.4133, 71.928307], - [-107.422203, 71.974991], - [-107.613899, 72.012497], - [-107.653297, 72.066383], - [-107.610001, 72.088593], - [-107.660004, 72.113602], - [-107.6353, 72.121918], - [-107.7789, 72.136658], - [-107.792198, 72.255257], - [-107.864197, 72.298317], - [-107.7136, 72.300812], - [-107.843903, 72.354156], - [-107.801903, 72.381927], - [-107.877502, 72.424423], - [-107.781403, 72.456383], - [-107.980598, 72.511108], - [-107.8769, 72.524429], - [-107.876701, 72.567207], - [-108.011902, 72.61998], - [-107.954498, 72.63916], - [-108.025299, 72.666092], - [-108.005798, 72.702477], - [-108.0439, 72.726379], - [-108.079697, 72.748032], - [-108.051102, 72.781372], - [-108.145798, 72.87886], - [-108.101402, 72.901093], - [-108.169403, 72.956383], - [-108.1353, 72.982483], - [-108.232803, 73.033051], - [-108.156097, 73.048599], - [-108.300003, 73.135536], - [-108.166397, 73.203873], - [-107.864197, 73.188583], - [-108.116402, 73.264427], - [-108.1436, 73.30748], - [-108.0131, 73.309143], - [-108.071404, 73.353317], - [-107.614403, 73.317207], - [-107.069702, 73.173866], - [-107.010803, 73.19136], - [-107.123596, 73.240257], - [-107.0839, 73.283333], - [-106.861397, 73.310806], - [-106.750801, 73.289146], - [-106.6511, 73.222488], - [-106.486702, 73.224991], - [-106.463303, 73.179703], - [-106.240303, 73.085823], - [-106.047501, 73.044708], - [-105.855598, 73.056931], - [-105.824699, 73.045258], - [-105.822197, 73.002487], - [-105.608299, 72.944977], - [-105.636703, 72.929153], - [-105.525002, 72.875259], - [-105.555, 72.86026], - [-105.452797, 72.842758], - [-105.363899, 72.785263], - [-105.399399, 72.767212], - [-105.321999, 72.741653], - [-105.3778, 72.729431], - [-105.510002, 72.776932], - [-105.431702, 72.729156], - [-105.457199, 72.702766], - [-105.290802, 72.651657], - [-105.3433, 72.617203], - [-105.310799, 72.595261], - [-105.318298, 72.55748], - [-105.238098, 72.54776], - [-105.2239, 72.512207], - [-105.252197, 72.489967], - [-105.195801, 72.482483], - [-105.217796, 72.444977], - [-105.301903, 72.455261], - [-104.957497, 72.181374], - [-105.037498, 72.118317], - [-105.0186, 72.06694], - [-104.954697, 72.057213], - [-104.871902, 71.989967], - [-104.790001, 71.84137], - [-104.673302, 71.823318], - [-104.355301, 71.574432], - [-104.401901, 71.498322], - [-104.319199, 71.462486], - [-104.3442, 71.410812], - [-104.277802, 71.351089], - [-104.471397, 71.351089], - [-104.496902, 71.322769], - [-104.438904, 71.257767], - [-104.448898, 71.218872], - [-104.648598, 71.119141], - [-104.414398, 70.999153], - [-104.122803, 70.914703], - [-103.994202, 70.752777], - [-103.838898, 70.743317], - [-103.556396, 70.600807], - [-103.309196, 70.595261], - [-103.121696, 70.501938], - [-102.930603, 70.49054], - [-102.932503, 70.5186], - [-103.126099, 70.573883], - [-103.1539, 70.665817], - [-103.066704, 70.669983], - [-102.848297, 70.593872], - [-102.853897, 70.508331], - [-102.377197, 70.412491], - [-102.195, 70.324158], - [-102.130798, 70.342758], - [-101.893303, 70.25444], - [-101.714699, 70.308868], - [-101.5886, 70.271927], - [-101.650597, 70.210823], - [-101.551903, 70.109421], - [-101.4133, 70.12442], - [-101.375801, 70.177757], - [-101.222198, 70.131927], - [-101.135002, 70.159714], - [-101.1119, 70.197197], - [-100.973297, 70.155548], - [-101.002502, 70.088882], - [-100.926102, 70.021103], - [-100.921898, 69.965271], - [-100.961403, 69.928589], - [-100.9039, 69.910538], - [-100.870003, 69.814423], - [-100.878098, 69.771652], - [-100.948898, 69.733597], - [-100.920303, 69.701103], - [-100.957199, 69.662491], - [-101.0644, 69.648613], - [-101.155296, 69.688026], - [-101.329697, 69.669983], - [-101.473297, 69.832764], - [-101.4161, 69.886932], - [-101.445297, 69.909149], - [-101.672501, 69.646103], - [-101.766098, 69.721916], - [-101.948601, 69.741364], - [-102.029701, 69.801086], - [-102.018303, 69.829163], - [-102.050797, 69.85582], - [-102.149696, 69.82666], - [-102.168602, 69.887207], - [-102.230301, 69.917213], - [-102.257797, 69.889977], - [-102.237198, 69.850807], - [-102.340797, 69.835823], - [-102.299202, 69.794434], - [-102.349701, 69.756378], - [-102.380302, 69.761383], - [-102.364197, 69.795258], - [-102.387802, 69.81192], - [-102.402199, 69.77388], - [-102.486702, 69.785812], - [-102.576401, 69.737488], - [-102.680603, 69.759987], - [-102.592201, 69.693863], - [-102.483597, 69.6922], - [-102.507797, 69.564148], - [-102.813004, 69.529709], - [-103.186699, 69.629433], - [-103.297501, 69.69693], - [-103.486702, 69.684708], - [-103.504204, 69.613037], - [-103.216698, 69.551086], - [-103.127502, 69.432213], - [-103.095001, 69.452209], - [-103.089203, 69.521927], - [-103.0233, 69.493874], - [-102.990799, 69.419434], - [-103.033897, 69.359993], - [-103.008301, 69.332207], - [-103.023102, 69.271652], - [-103.204498, 69.200821], - [-103.208603, 69.122757], - [-103.160599, 69.117752], - [-102.840797, 69.383331], - [-102.519203, 69.412201], - [-102.460297, 69.482208], - [-102.057503, 69.483597], - [-101.931099, 69.407494], - [-102.035797, 69.349991], - [-102.160599, 69.354713], - [-102.169998, 69.31749], - [-102.1017, 69.334991], - [-102.037201, 69.276382], - [-102.0886, 69.231934], - [-102.212799, 69.276382], - [-102.217201, 69.225273], - [-102.093597, 69.178589], - [-102.036697, 69.231659], - [-101.921898, 69.260269], - [-101.751701, 69.160538], - [-101.8675, 69.04248], - [-101.808601, 68.998032], - [-101.962799, 68.96666], - [-102.062202, 68.996933], - [-102.144997, 68.947662], - [-102.392197, 68.953049], - [-102.398399, 68.908867], - [-102.535797, 68.864433], - [-102.753098, 68.89415], - [-102.699997, 68.839981], - [-102.894699, 68.799988], - [-103.005798, 68.795258], - [-103.1642, 68.843048], - [-103.320801, 68.829712], - [-103.374199, 68.777481], - [-103.5494, 68.82666], - [-104.110298, 68.859421], - [-104.240501, 68.896652], - [-104.264999, 68.9422], - [-104.303596, 68.930267], - [-104.270798, 68.900543], - [-104.457497, 68.936653], - [-104.5028, 68.877762], - [-104.583603, 68.859711], - [-105.129204, 68.896378], - [-105.2742, 68.948868], - [-105.173302, 68.991928], - [-105.0392, 68.990257], - [-105.041397, 69.018883], - [-104.936401, 69.030548], - [-104.922997, 69.074707], - [-105.083298, 69.106369], - [-105.122803, 69.091087], - [-105.035797, 69.05748], - [-105.450798, 69.094994], - [-105.616898, 69.160812], - [-106.177803, 69.14415], - [-106.406097, 69.180542], - [-106.394402, 69.236923], - [-106.267799, 69.292213], - [-106.312202, 69.338318], - [-106.310303, 69.40387], - [-106.602203, 69.498871], - [-106.733101, 69.44165], - [-106.753304, 69.37915], - [-106.985497, 69.3461], - [-106.929199, 69.21666], - [-107.037804, 69.185806], - [-107.025803, 69.151382], - [-107.1381, 69.150543], - [-107.304199, 69.032494], - [-107.955803, 68.931053], - [-108.534401, 68.944702], - [-108.563301, 68.933594], - [-108.529701, 68.901382], - [-108.551399, 68.879433], - [-108.9375, 68.741089], - [-109.400002, 68.693314], - [-109.656403, 68.632751], - [-110.220001, 68.62915], - [-110.3778, 68.574158], - [-110.4272, 68.608322], - [-110.576698, 68.616653], - [-110.950302, 68.551933], - [-111.035004, 68.563873], - [-110.860298, 68.587769], - [-110.863602, 68.608597], - [-111.379204, 68.584152], - [-111.405296, 68.568047], - [-111.209198, 68.549149], - [-111.238098, 68.514427], - [-111.600601, 68.543587], - [-112.124397, 68.527771], - [-112.612198, 68.502213], - [-112.670303, 68.469147], - [-113.251404, 68.452209], - [-113.309402, 68.467209], - [-113.291397, 68.489151], - [-113.043602, 68.504173], - [-113.357803, 68.59137], - [-113.448303, 68.645264], - [-113.4533, 68.700821], - [-113.676903, 68.811096], - [-113.617203, 68.845261], - [-113.6772, 68.900818], - [-113.569504, 68.957207], - [-113.570801, 69.023323], - [-113.639999, 69.032494], - [-113.544998, 69.048027], - [-113.657799, 69.091087], - [-113.675598, 69.121643], - [-113.638298, 69.138603], - [-113.696098, 69.154709], - [-113.6922, 69.189423], - [-113.521103, 69.178589], - [-114.311401, 69.284988], - [-114.764198, 69.252213], - [-114.991898, 69.280273], - [-115.190804, 69.236923], - [-115.499702, 69.256104], - [-115.955803, 69.292213], - [-116.525803, 69.407494], - [-116.6297, 69.458878], - [-116.561401, 69.488586], - [-116.6092, 69.524429], - [-116.581398, 69.560532], - [-116.75, 69.574997], - [-116.724701, 69.541656], - [-116.910301, 69.590271], - [-116.859908, 69.637114], - [-116.513568, 69.634805], - [-117.118097, 69.891887], - [-117.085008, 69.999148], - [-112.887108, 69.991098], - [-112.862425, 69.840022], - [-112.657705, 69.834517], - [-112.614279, 69.896203], - [-112.477477, 69.892389], - [-112.48507, 69.993691], - [-110.029392, 69.995491], - [-110.019917, 72.442051] - ] - ], - [ - [ - [-92.743797, 69.671951], - [-92.920273, 69.669708], - [-92.661667, 69.652771], - [-92.349731, 69.701103], - [-92.376389, 69.66748], - [-92.357498, 69.658867], - [-92.088333, 69.623032], - [-92.300552, 69.641663], - [-92.12471, 69.554977], - [-91.803329, 69.483322], - [-91.79834, 69.513893], - [-91.712784, 69.535812], - [-91.736938, 69.548317], - [-91.590561, 69.578598], - [-91.595001, 69.611099], - [-91.475281, 69.664429], - [-91.091949, 69.631653], - [-91.219727, 69.617752], - [-91.334442, 69.552757], - [-91.553879, 69.505547], - [-91.340843, 69.516663], - [-91.192207, 69.562759], - [-91.102783, 69.508881], - [-90.88945, 69.534149], - [-90.876938, 69.482483], - [-90.758621, 69.482758], - [-90.71611, 69.539429], - [-90.493332, 69.504173], - [-90.319458, 69.440536], - [-90.555557, 69.422493], - [-90.703613, 69.453598], - [-90.58223, 69.416931], - [-90.797234, 69.361366], - [-90.809433, 69.253326], - [-90.931381, 69.247482], - [-90.896118, 69.2686], - [-90.970001, 69.267212], - [-90.920547, 69.299713], - [-91.068893, 69.266098], - [-91.100281, 69.281097], - [-90.951683, 69.354713], - [-91.194107, 69.288017], - [-91.446663, 69.349716], - [-90.664719, 69.083328], - [-90.709167, 69.003883], - [-90.604721, 68.978317], - [-90.583893, 68.928864], - [-90.629173, 68.915817], - [-90.436394, 68.87442], - [-90.481949, 68.856087], - [-90.436111, 68.833054], - [-90.593887, 68.805542], - [-90.438889, 68.823318], - [-90.473053, 68.799988], - [-90.449158, 68.776093], - [-90.507233, 68.779709], - [-90.526672, 68.744431], - [-90.479172, 68.705833], - [-90.496948, 68.663879], - [-90.563606, 68.624977], - [-90.49527, 68.596649], - [-90.538597, 68.565262], - [-90.474442, 68.530823], - [-90.606659, 68.446091], - [-90.315002, 68.36998], - [-90.477493, 68.33194], - [-90.326401, 68.350273], - [-90.280838, 68.243874], - [-90.20723, 68.231087], - [-90.118057, 68.262207], - [-90.167503, 68.312477], - [-90, 68.377037], - [-89.904167, 68.451103], - [-89.912216, 68.473312], - [-89.800568, 68.539978], - [-89.92778, 68.563599], - [-89.949722, 68.607758], - [-89.894173, 68.660812], - [-89.80249, 68.712196], - [-89.746948, 68.669708], - [-89.766403, 68.621918], - [-89.714172, 68.649147], - [-89.729172, 68.699142], - [-89.684723, 68.810257], - [-89.737213, 68.831383], - [-89.713058, 68.848602], - [-89.756958, 68.939972], - [-89.71666, 69.006104], - [-89.48999, 69.110527], - [-89.389999, 69.219147], - [-89.114441, 69.275269], - [-88.94249, 69.22998], - [-88.87027, 69.148613], - [-88.772507, 69.098877], - [-88.208618, 68.911652], - [-87.964447, 68.760536], - [-87.916656, 68.656372], - [-87.947769, 68.605263], - [-87.789719, 68.391937], - [-87.808884, 68.356934], - [-87.787781, 68.327477], - [-87.837509, 68.267212], - [-87.935822, 68.195824], - [-88.004997, 68.231369], - [-88.16333, 68.231369], - [-88.194153, 68.37442], - [-88.392227, 68.287491], - [-88.277496, 68.111649], - [-88.381104, 68.025269], - [-88.35556, 67.998871], - [-88.370827, 67.959152], - [-88.269173, 67.793587], - [-88.162216, 67.736649], - [-88.13945, 67.664429], - [-87.955841, 67.607483], - [-87.483887, 67.362488], - [-87.448883, 67.261383], - [-87.357773, 67.262207], - [-87.505569, 67.185257], - [-87.510277, 67.112198], - [-87.42749, 67.170822], - [-87.34111, 67.176376], - [-87.304443, 67.099991], - [-87.272507, 67.0961], - [-87.229446, 67.22554], - [-87.154167, 67.239967], - [-87.106659, 67.179153], - [-87.075844, 67.253601], - [-86.963058, 67.250549], - [-87.006958, 67.277206], - [-86.994164, 67.302467], - [-87.089996, 67.350807], - [-86.974442, 67.316673], - [-86.961403, 67.360527], - [-86.874443, 67.404984], - [-86.779167, 67.422211], - [-86.647232, 67.358322], - [-86.610817, 67.402481], - [-86.592499, 67.345261], - [-86.531952, 67.346649], - [-86.503067, 67.377762], - [-86.531952, 67.439972], - [-86.473892, 67.468597], - [-86.496948, 67.501663], - [-86.451401, 67.597488], - [-86.525284, 67.681374], - [-86.364723, 67.822769], - [-86.12944, 67.949997], - [-86.127213, 68.013611], - [-86.084732, 67.976929], - [-85.892502, 68.051376], - [-85.914436, 68.104156], - [-85.858337, 68.137207], - [-85.888062, 68.189697], - [-85.784729, 68.216377], - [-85.842499, 68.23027], - [-85.805557, 68.294708], - [-85.842773, 68.317207], - [-85.712784, 68.397217], - [-85.745003, 68.434708], - [-85.66777, 68.448318], - [-85.742493, 68.4711], - [-85.7164, 68.501663], - [-85.747498, 68.622482], - [-85.645844, 68.737488], - [-85.481949, 68.739433], - [-85.464722, 68.75972], - [-85.562767, 68.776657], - [-85.514183, 68.783867], - [-85.228882, 68.710274], - [-85.262512, 68.751663], - [-85.224167, 68.758331], - [-84.775284, 68.737198], - [-84.754181, 68.772217], - [-84.834732, 68.820541], - [-85.031677, 68.810806], - [-85.192757, 68.862198], - [-85.005569, 68.877472], - [-85.069458, 68.906097], - [-84.997498, 68.925812], - [-85.116943, 68.933319], - [-85.140556, 68.94664], - [-85.115013, 68.958603], - [-84.796387, 68.933594], - [-84.986923, 68.999512], - [-84.834732, 69.008041], - [-84.818336, 69.032211], - [-84.591667, 68.994431], - [-84.528343, 69.017487], - [-84.736107, 69.035263], - [-84.769447, 69.083054], - [-84.946663, 69.081383], - [-84.963898, 69.1147], - [-85.02417, 69.11499], - [-84.968613, 69.136932], - [-84.998611, 69.14444], - [-85.123047, 69.11554], - [-85.138901, 69.129433], - [-85.101097, 69.154709], - [-84.99472, 69.173027], - [-85.172501, 69.169983], - [-85.223618, 69.12886], - [-85.315552, 69.148041], - [-85.203339, 69.180542], - [-85.383057, 69.205551], - [-85.503067, 69.314423], - [-85.345284, 69.306931], - [-85.508057, 69.395264], - [-85.383331, 69.415268], - [-85.410278, 69.443314], - [-85.339172, 69.438873], - [-85.422783, 69.462486], - [-85.491379, 69.436653], - [-85.542503, 69.476379], - [-85.479446, 69.562477], - [-85.38028, 69.56694], - [-85.544159, 69.637772], - [-85.526672, 69.67276], - [-85.438599, 69.701103], - [-85.441383, 69.739151], - [-85.514717, 69.768051], - [-85.409157, 69.788589], - [-85.389183, 69.780548], - [-85.410828, 69.755257], - [-85.379173, 69.753601], - [-85.333069, 69.774147], - [-85.344452, 69.813026], - [-85.586403, 69.826927], - [-85.561943, 69.859421], - [-85.377213, 69.851089], - [-85.064438, 69.769989], - [-85.049438, 69.799713], - [-84.871658, 69.816093], - [-84.854172, 69.831383], - [-84.882492, 69.855553], - [-84.75, 69.832764], - [-84.433609, 69.861099], - [-83.733887, 69.70665], - [-83.34639, 69.676086], - [-83.253342, 69.705261], - [-83.008057, 69.679153], - [-82.669998, 69.67804], - [-82.678329, 69.701103], - [-82.25473, 69.636383], - [-82.407501, 69.608597], - [-82.600281, 69.64415], - [-82.597778, 69.621643], - [-82.652786, 69.618317], - [-82.550552, 69.588043], - [-82.743332, 69.577477], - [-82.612503, 69.56694], - [-82.500557, 69.492203], - [-83.241096, 69.556641], - [-83.293877, 69.534416], - [-82.785278, 69.494141], - [-82.237213, 69.400818], - [-82.391678, 69.398613], - [-82.14389, 69.300262], - [-82.251106, 69.287773], - [-82.226936, 69.26416], - [-82.291382, 69.246643], - [-82.258621, 69.233871], - [-82.041107, 69.242752], - [-82.011673, 69.273613], - [-81.693878, 69.263046], - [-81.497772, 69.197746], - [-81.332497, 69.18248], - [-81.275009, 69.086647], - [-81.462784, 69.072769], - [-81.570282, 68.992477], - [-81.691673, 68.988586], - [-81.71666, 68.949142], - [-82.05722, 68.873871], - [-81.67305, 68.904427], - [-81.588058, 68.869713], - [-81.569458, 68.827209], - [-81.490547, 68.866089], - [-81.382767, 68.866653], - [-81.234444, 68.769989], - [-81.267776, 68.74498], - [-81.255836, 68.643051], - [-81.633904, 68.508041], - [-81.810547, 68.523323], - [-81.79361, 68.50444], - [-81.830292, 68.459717], - [-81.97084, 68.421097], - [-82.024437, 68.43692], - [-82.077499, 68.503601], - [-82.256393, 68.5336], - [-82.173317, 68.485809], - [-82.228058, 68.455261], - [-82.608887, 68.517487], - [-82.635277, 68.492203], - [-82.491096, 68.453873], - [-82.648064, 68.445251], - [-82.644447, 68.417213], - [-82.501678, 68.405823], - [-82.363052, 68.35054], - [-82.369453, 68.318329], - [-82.507782, 68.313309], - [-82.426102, 68.276657], - [-82.264717, 68.284416], - [-82.270279, 68.235527], - [-82.345551, 68.170258], - [-82.314438, 68.146652], - [-82.179169, 68.111649], - [-82.047501, 68.209717], - [-81.988892, 68.20665], - [-82.027222, 68.122757], - [-82.120537, 68.105553], - [-82.079453, 68.082489], - [-82.173889, 68.002487], - [-82.102783, 67.907211], - [-81.936661, 67.823318], - [-81.804443, 67.798317], - [-81.828339, 67.774147], - [-81.43306, 67.611366], - [-81.243057, 67.474991], - [-81.239166, 67.436096], - [-81.304718, 67.386108], - [-81.347778, 67.292763], - [-81.38028, 67.170532], - [-81.43222, 67.066673], - [-81.495003, 67.053307], - [-81.492493, 67.00972], - [-81.52417, 66.99054], - [-81.626099, 67.005257], - [-81.711937, 66.969994], - [-81.833618, 66.997757], - [-81.988327, 66.959427], - [-82.042503, 66.918053], - [-82.018341, 66.89444], - [-82.090561, 66.857208], - [-82.077499, 66.828323], - [-82.183884, 66.76416], - [-82.156631, 66.709518], - [-82.36972, 66.725807], - [-82.376099, 66.696373], - [-82.556381, 66.623871], - [-82.596947, 66.560257], - [-83.017227, 66.546944], - [-83.015289, 66.506104], - [-83.058609, 66.470261], - [-83.368332, 66.348877], - [-83.573624, 66.343597], - [-83.567497, 66.367477], - [-83.652786, 66.407761], - [-83.63945, 66.437187], - [-83.529167, 66.394707], - [-83.672501, 66.520538], - [-83.857498, 66.544144], - [-83.900284, 66.5961], - [-83.977493, 66.582207], - [-84.01445, 66.692749], - [-83.919724, 66.697746], - [-83.900833, 66.644707], - [-83.85611, 66.680817], - [-83.955276, 66.747757], - [-83.886124, 66.813873], - [-83.907784, 66.876648], - [-83.945541, 66.813599], - [-84.098343, 66.747482], - [-84.105003, 66.708328], - [-84.260277, 66.716377], - [-84.314438, 66.751099], - [-84.268623, 66.785812], - [-84.436394, 66.818329], - [-84.239723, 66.833878], - [-84.382492, 66.8647], - [-84.420273, 66.901932], - [-84.38945, 66.923866], - [-84.584061, 66.978333], - [-84.370827, 66.971367], - [-84.926941, 67.059418], - [-84.905273, 67.03804], - [-84.935272, 67.029709], - [-84.839722, 67.003883], - [-84.871658, 66.984993], - [-84.765556, 67.006378], - [-84.639717, 66.978043], - [-85.04834, 66.963318], - [-85.212219, 66.913307], - [-85.146957, 66.904709], - [-85.228882, 66.873306], - [-85.120003, 66.835541], - [-84.940277, 66.863876], - [-84.900833, 66.898041], - [-84.993057, 66.923027], - [-84.767776, 66.952209], - [-84.602219, 66.935806], - [-84.621109, 66.915268], - [-84.56221, 66.901382], - [-84.746384, 66.897491], - [-84.50473, 66.823036], - [-84.690552, 66.839981], - [-84.319733, 66.774696], - [-84.44249, 66.710823], - [-84.324448, 66.676933], - [-84.144447, 66.681374], - [-84.146118, 66.642212], - [-84.215012, 66.589432], - [-83.916397, 66.44664], - [-83.871109, 66.394989], - [-83.864166, 66.312477], - [-83.783333, 66.299149], - [-83.678596, 66.201103], - [-83.847778, 66.15332], - [-83.786667, 66.197746], - [-83.801102, 66.21666], - [-83.964722, 66.195251], - [-84.2164, 66.321663], - [-84.347229, 66.276932], - [-84.392227, 66.291367], - [-84.426941, 66.363037], - [-84.528877, 66.40416], - [-84.636124, 66.328873], - [-84.401398, 66.211113], - [-84.37471, 66.1586], - [-84.460564, 66.159149], - [-84.565552, 66.204987], - [-84.761124, 66.213318], - [-84.869164, 66.266663], - [-84.979721, 66.246643], - [-85.078888, 66.277771], - [-85.117767, 66.324707], - [-85.178329, 66.262207], - [-85.252228, 66.273041], - [-85.306664, 66.314148], - [-85.293327, 66.349152], - [-85.338058, 66.39415], - [-85.343338, 66.486923], - [-85.479721, 66.581383], - [-85.845284, 66.49942], - [-86.128326, 66.498032], - [-86.333618, 66.549988], - [-86.406952, 66.514427], - [-86.581123, 66.555817], - [-86.580002, 66.520538], - [-86.622772, 66.506653], - [-86.780838, 66.520828], - [-86.641678, 66.431931], - [-86.811111, 66.441933], - [-86.638344, 66.315262], - [-86.332779, 66.282761], - [-85.897781, 66.163307], - [-86.014183, 66.100273], - [-85.977493, 66.077766], - [-85.980003, 66.028587], - [-86.204727, 65.982758], - [-86.239166, 65.936653], - [-86.326401, 65.904984], - [-86.421387, 65.902206], - [-86.496948, 65.808029], - [-86.455276, 65.786102], - [-86.451111, 65.747208], - [-86.554993, 65.664703], - [-86.679169, 65.647217], - [-86.829727, 65.555817], - [-86.987213, 65.534149], - [-86.975563, 65.515266], - [-87.024437, 65.481659], - [-87.110283, 65.458603], - [-87.115013, 65.433594], - [-87.059433, 65.414146], - [-87.100563, 65.391937], - [-87.372772, 65.322769], - [-87.96666, 65.333054], - [-88.212784, 65.402771], - [-88.333618, 65.492477], - [-88.559723, 65.586929], - [-88.829727, 65.641373], - [-88.411942, 65.630257], - [-88.85083, 65.701393], - [-88.93721, 65.685806], - [-89.124443, 65.733322], - [-89.174438, 65.778587], - [-89.428329, 65.867203], - [-89.516113, 65.858032], - [-89.525284, 65.886932], - [-89.671661, 65.939423], - [-90, 65.874771], - [-90.404449, 65.871094], - [-90.432503, 65.882751], - [-90.393066, 65.896103], - [-90.225563, 65.900543], - [-90.234734, 65.922493], - [-90.596123, 65.896652], - [-91.316391, 65.969994], - [-91.496948, 65.945824], - [-91.020554, 65.806091], - [-91.123047, 65.904709], - [-91.088058, 65.921097], - [-90.545273, 65.883331], - [-90, 65.796883], - [-89.462509, 65.600807], - [-89.40361, 65.506653], - [-89.170837, 65.428307], - [-89.054443, 65.328873], - [-88.061661, 65.258881], - [-87.67305, 65.291367], - [-87.357773, 65.270828], - [-87.051392, 65.236366], - [-87.030289, 65.223038], - [-87.051941, 65.199997], - [-86.933319, 65.138046], - [-86.997223, 65.096649], - [-86.970284, 65.054428], - [-87.110001, 64.999153], - [-87.078339, 64.976646], - [-87.096657, 64.950821], - [-87.236389, 64.88472], - [-87.303596, 64.806641], - [-87.294449, 64.763046], - [-87.451401, 64.707489], - [-87.489441, 64.741089], - [-87.525284, 64.714157], - [-87.511398, 64.636658], - [-87.579178, 64.568047], - [-87.80722, 64.514427], - [-87.888062, 64.338593], - [-88.044724, 64.247482], - [-88.05249, 64.227203], - [-87.983887, 64.191093], - [-88.113327, 64.136108], - [-88.227493, 64.140266], - [-88.736656, 63.968319], - [-88.856949, 63.977489], - [-88.898621, 64.012207], - [-89.000839, 63.988041], - [-88.995827, 64.008331], - [-89.150833, 64.059418], - [-89.260834, 64.160538], - [-89.286392, 64.136658], - [-89.182503, 64.036652], - [-89.096947, 63.963879], - [-89.023621, 63.950272], - [-89.14389, 63.95055], - [-89.273064, 64.014709], - [-89.246658, 63.959721], - [-89.363892, 64.037491], - [-89.444717, 64.021652], - [-89.551102, 64.077477], - [-89.563316, 64.00943], - [-89.48555, 63.942211], - [-89.644173, 64.053864], - [-89.712219, 64.079437], - [-89.697487, 64.042213], - [-89.720551, 64.033333], - [-89.818069, 64.098602], - [-89.809723, 64.12886], - [-89.735817, 64.145264], - [-89.773064, 64.240807], - [-89.812767, 64.193863], - [-89.883904, 64.200546], - [-89.816391, 64.17276], - [-89.823624, 64.14444], - [-90.121422, 64.127861], - [-89.914719, 64.106934], - [-89.946114, 64.05748], - [-89.848053, 64.021927], - [-89.915283, 64.015823], - [-89.913887, 63.99332], - [-89.831123, 63.979988], - [-89.813606, 63.93721], - [-89.989441, 63.92194], - [-89.946663, 63.965271], - [-90, 63.984039], - [-90.093887, 63.95055], - [-90.182503, 64.008614], - [-90.279167, 64.003601], - [-90.090561, 63.92416], - [-90.122223, 63.915272], - [-90.10083, 63.88361], - [-90, 63.773899], - [-90.115829, 63.777489], - [-90.05777, 63.744438], - [-90.16861, 63.65694], - [-90.148903, 63.629162], - [-90.205276, 63.612209], - [-90.281387, 63.613049], - [-90.218887, 63.635551], - [-90.289169, 63.64777], - [-90.452217, 63.616661], - [-90.486389, 63.63221], - [-90.465012, 63.648048], - [-90.539993, 63.655819], - [-90.488052, 63.672489], - [-90.623894, 63.704159], - [-90.699158, 63.65749], - [-90.590286, 63.676659], - [-90.555557, 63.65527], - [-90.551392, 63.601391], - [-90.930557, 63.564159], - [-91.063316, 63.62027], - [-91.375816, 63.659161], - [-91.393623, 63.685261], - [-91.329453, 63.677769], - [-91.411667, 63.707211], - [-91.667221, 63.719711], - [-91.654167, 63.750832], - [-91.693878, 63.774712], - [-91.751106, 63.733879], - [-91.910553, 63.740551], - [-91.986107, 63.776379], - [-91.88945, 63.80138], - [-91.984734, 63.81916], - [-92.045547, 63.74527], - [-92.136124, 63.745541], - [-92.376389, 63.77721], - [-92.506393, 63.83194], - [-92.706947, 63.846661], - [-92.761398, 63.890549], - [-93.436661, 64.015266], - [-93.612213, 64.093048], - [-93.635834, 64.120247], - [-93.61528, 64.157761], - [-93.773064, 64.193588], - [-93.66861, 64.126923], - [-93.660004, 64.083054], - [-93.548889, 64.024696], - [-93.602219, 64.007492], - [-93.547501, 64.003883], - [-93.58168, 63.984989], - [-93.76445, 63.988331], - [-93.770554, 63.957771], - [-93.699432, 63.95166], - [-93.649727, 63.877209], - [-93.339996, 63.808331], - [-93.378883, 63.84277], - [-93.21611, 63.843609], - [-93.343338, 63.863049], - [-93.448883, 63.925831], - [-93.424438, 63.937771], - [-93.451111, 63.959721], - [-93.364723, 63.967491], - [-93.226257, 63.908489], - [-92.756958, 63.82555], - [-92.622498, 63.77166], - [-92.49527, 63.814709], - [-92.395554, 63.736938], - [-92.251106, 63.740551], - [-92.103882, 63.70166], - [-92.198608, 63.67749], - [-92.206947, 63.651661], - [-92.171944, 63.640549], - [-92.284729, 63.62138], - [-92.337784, 63.644711], - [-92.38501, 63.592491], - [-92.539436, 63.55582], - [-92.471939, 63.523319], - [-92.320557, 63.572769], - [-92.230293, 63.534721], - [-92.193878, 63.615269], - [-91.776108, 63.715832], - [-91.617493, 63.64888], - [-91.60083, 63.580551], - [-91.387222, 63.521099], - [-91.388901, 63.485271], - [-91.27417, 63.502491], - [-91.065277, 63.449162], - [-91.016403, 63.46693], - [-90.786392, 63.39555], - [-90.975014, 63.419441], - [-90.688599, 63.355], - [-90.681107, 63.331108], - [-90.741669, 63.324169], - [-90.740829, 63.29472], - [-90.698608, 63.2761], - [-90.723328, 63.249722], - [-90.684433, 63.21888], - [-90.730293, 63.178051], - [-90.672501, 63.157768], - [-90.690552, 63.11832], - [-90.651947, 63.087769], - [-90.689987, 63.076099], - [-90.627487, 63.059429], - [-90.703056, 63.035], - [-90.720284, 63.011669], - [-90.689713, 63.006939], - [-90.756958, 62.99332], - [-90.72084, 62.967209], - [-90.783073, 62.961109], - [-90.785004, 62.938042], - [-91.04805, 62.942211], - [-91.182503, 62.905819], - [-91.213333, 62.85416], - [-91.410828, 62.819721], - [-91.356377, 62.788601], - [-92.121933, 62.874161], - [-92.09639, 62.798882], - [-92.339996, 62.843609], - [-92.455276, 62.814709], - [-92.333618, 62.709991], - [-92.219162, 62.684429], - [-92.286942, 62.676941], - [-91.948883, 62.651932], - [-91.880547, 62.619438], - [-91.948036, 62.53138], - [-92.053329, 62.526661], - [-92.174713, 62.54472], - [-92.143341, 62.579159], - [-92.16333, 62.60083], - [-92.266113, 62.595268], - [-92.245537, 62.564709], - [-92.321671, 62.56916], - [-92.325562, 62.540829], - [-92.384743, 62.529991], - [-92.483063, 62.552769], - [-92.47583, 62.595268], - [-92.519173, 62.571659], - [-92.615829, 62.614159], - [-92.539169, 62.53249], - [-92.563889, 62.4986], - [-92.498047, 62.508331], - [-92.541382, 62.476379], - [-92.529716, 62.44305], - [-92.710007, 62.465832], - [-92.730827, 62.4286], - [-92.681953, 62.374439], - [-92.822777, 62.349159], - [-92.598053, 62.310822], - [-92.601669, 62.265549], - [-92.633904, 62.25388], - [-92.470016, 62.14661], - [-92.603882, 62.15638], - [-92.624443, 62.210548], - [-92.747498, 62.289989], - [-93.144974, 62.337261], - [-92.780289, 62.236938], - [-92.790283, 62.17749], - [-93.001404, 62.200272], - [-92.981667, 62.171101], - [-93.110001, 62.156651], - [-93.126938, 62.132488], - [-93.08139, 62.104439], - [-93.019173, 62.126099], - [-92.931381, 62.10416], - [-92.991096, 62.067768], - [-93.067497, 62.076939], - [-93.078613, 62.035831], - [-93.156113, 62.049721], - [-93.162216, 61.97887], - [-93.30278, 62.049438], - [-93.329453, 62.047779], - [-93.294724, 62.018879], - [-93.411392, 62.03138], - [-93.218338, 61.952492], - [-93.388344, 61.94582], - [-93.305267, 61.920551], - [-93.279716, 61.894711], - [-93.299728, 61.88583], - [-93.619453, 61.948601], - [-93.491669, 61.884159], - [-93.600281, 61.879162], - [-93.613617, 61.852489], - [-93.362289, 61.821121], - [-93.434998, 61.803879], - [-93.248611, 61.784721], - [-93.255569, 61.742489], - [-93.468887, 61.764999], - [-93.412781, 61.72332], - [-93.313316, 61.725269], - [-93.647781, 61.634159], - [-93.780838, 61.551929], - [-93.830841, 61.571659], - [-93.874161, 61.513889], - [-93.984734, 61.4561], - [-93.938599, 61.408878], - [-93.968613, 61.39666], - [-93.868057, 61.38916], - [-93.819168, 61.34721], - [-93.940552, 61.294998], - [-94.110817, 61.322769], - [-93.998611, 61.227772], - [-94.098892, 61.162209], - [-94.039436, 61.15694], - [-94.064438, 61.110279], - [-93.980293, 61.0961], - [-94.128601, 61.06554], - [-94.233887, 60.904709], - [-94.349167, 60.858601], - [-94.415283, 60.762211], - [-94.404999, 60.709721], - [-94.484444, 60.64941], - [-94.509453, 60.544159], - [-94.575844, 60.520271], - [-94.732773, 60.53944], - [-94.652496, 60.492489], - [-94.796951, 60.497219], - [-94.68277, 60.47443], - [-94.613892, 60.38055], - [-94.706673, 60.260551], - [-94.673607, 60.191101], - [-94.720551, 60.138329], - [-94.707497, 60.083599], - [-94.766403, 60.061378], - [-94.758621, 60.017769], - [-94.800491, 59.999569], - [-99.626953, 59.999729], - [-100.039001, 59.999722], - [-102.001701, 59.99992], - [-101.984001, 64.21341], - [-109.387397, 64.826919], - [-110.651709, 65.499518], - [-112.498556, 65.506191], - [-120.658461, 68.001268], - [-120.664292, 69.542782], - [-120.66524, 69.551327], - [-120.393303, 69.439697], - [-119.982201, 69.344711], - [-118.840599, 69.250549], - [-118.644699, 69.212486], - [-118.457802, 69.117477], - [-117.870499, 68.985527], - [-117.381897, 68.951927], - [-117.1539, 68.885536], - [-116.9664, 68.902206], - [-117.0103, 68.936371], - [-116.950798, 68.939972], - [-116.847198, 68.883331], - [-116.744499, 68.880539], - [-116.500298, 68.857208], - [-116.381401, 68.882477], - [-116.2136, 68.830551], - [-115.959999, 68.804703], - [-116.116898, 68.861923], - [-116.082497, 68.882751], - [-116.325302, 68.961929], - [-116.205002, 68.984993], - [-115.8675, 68.92276], - [-115.766998, 68.939148], - [-115.935303, 69.006943], - [-115.593102, 68.971649], - [-115.094498, 68.85054], - [-114.989998, 68.862762], - [-114.791901, 68.799423], - [-114.729401, 68.744431], - [-114.448303, 68.689697], - [-114.465302, 68.664429], - [-114.404701, 68.61499], - [-114.187798, 68.565536], - [-114.170799, 68.528587], - [-114.088898, 68.496368], - [-114.057503, 68.433868], - [-114.123901, 68.430267], - [-114.095001, 68.402481], - [-114.006699, 68.393883], - [-113.974701, 68.435532], - [-113.922798, 68.408867], - [-113.912201, 68.38916], - [-114.0467, 68.311653], - [-114.0233, 68.241364], - [-114.207199, 68.253883], - [-114.32, 68.229156], - [-114.441704, 68.263611], - [-114.702499, 68.250267], - [-114.959999, 68.285812], - [-114.764702, 68.186096], - [-114.8964, 68.146942], - [-115.237198, 68.182213], - [-115.172798, 68.128593], - [-115.2267, 68.089706], - [-115.240501, 68.036377], - [-115.110497, 68.012207], - [-115.542503, 67.921654], - [-115.507202, 67.889427], - [-115.253098, 67.883041], - [-115.2761, 67.861649], - [-115.113602, 67.798599], - [-114.718903, 67.813309], - [-114.608597, 67.771378], - [-114.516701, 67.789429], - [-114.297798, 67.718597], - [-114.148399, 67.736923], - [-113.845802, 67.69136], - [-113.240799, 67.704437], - [-113.050003, 67.666092], - [-112.709396, 67.667763], - [-112.370003, 67.681931], - [-112.333603, 67.696373], - [-112.368599, 67.728317], - [-112.345299, 67.7397], - [-112.011101, 67.742477], - [-111.985497, 67.693039], - [-111.8936, 67.679428], - [-111.871101, 67.6922], - [-111.929199, 67.718323], - [-111.912804, 67.754173], - [-111.538902, 67.712486], - [-111.5728, 67.744431], - [-111.5317, 67.765549], - [-111.458603, 67.763046], - [-111.474197, 67.735527], - [-111.441101, 67.731934], - [-111.322502, 67.806931], - [-111.175797, 67.837486], - [-111.143898, 67.828873], - [-111.205597, 67.794144], - [-111.1689, 67.784416], - [-111.2006, 67.755547], - [-111.085297, 67.786652], - [-111.005798, 67.764999], - [-110.840599, 67.800262], - [-110.732498, 67.864433], - [-110.329201, 67.945251], - [-110.339996, 67.965553], - [-110.139702, 67.916656], - [-110.201698, 67.966087], - [-110.116898, 68.008881], - [-109.970802, 67.958038], - [-110.003601, 67.866379], - [-109.982498, 67.837196], - [-109.912498, 67.845833], - [-109.953102, 67.881927], - [-109.890297, 67.879967], - [-109.695801, 67.804153], - [-109.744202, 67.775543], - [-109.623001, 67.74054], - [-109.735802, 67.742752], - [-109.726097, 67.716927], - [-109.522499, 67.687477], - [-109.485497, 67.709991], - [-109.506104, 67.733322], - [-109.395302, 67.767487], - [-109.3703, 67.729156], - [-109.065804, 67.714157], - [-108.919197, 67.535812], - [-109.025299, 67.483322], - [-109.002197, 67.443588], - [-108.928596, 67.432747], - [-108.929703, 67.405823], - [-108.858902, 67.408867], - [-108.812798, 67.348877], - [-108.744499, 67.445534], - [-108.736397, 67.603043], - [-108.620499, 67.624687], - [-108.578903, 67.605553], - [-108.587196, 67.577209], - [-108.511398, 67.487488], - [-108.522797, 67.440811], - [-108.4842, 67.349426], - [-108.424698, 67.364151], - [-108.440002, 67.427467], - [-108.366898, 67.444977], - [-108.015297, 67.293053], - [-107.875, 67.140823], - [-107.914398, 67.132477], - [-107.880501, 67.048317], - [-108.148598, 67.07666], - [-108.232803, 67.01915], - [-108.622803, 67.149986], - [-108.516098, 67.034416], - [-108.4561, 67.070541], - [-108.330597, 66.986923], - [-108.196999, 66.972214], - [-108.1147, 66.928864], - [-108.118103, 66.862198], - [-108.232498, 66.845543], - [-107.991096, 66.832764], - [-107.939697, 66.766663], - [-107.949402, 66.720543], - [-107.882797, 66.663307], - [-107.851402, 66.73027], - [-107.888298, 66.755547], - [-107.853302, 66.756378], - [-107.691101, 66.642212], - [-107.724197, 66.6297], - [-107.647499, 66.574707], - [-107.569504, 66.530548], - [-107.5103, 66.542213], - [-107.446404, 66.461647], - [-107.222198, 66.349152], - [-107.195801, 66.366379], - [-107.235497, 66.407494], - [-107.550797, 66.582764], - [-107.649399, 66.693863], - [-107.797203, 66.756104], - [-107.6903, 66.767761], - [-107.769402, 66.945534], - [-107.764198, 67.001663], - [-107.613297, 66.964996], - [-107.650803, 67.076103], - [-107.523903, 67.020264], - [-107.484703, 66.918587], - [-107.693604, 66.94664], - [-107.629402, 66.888046], - [-107.532501, 66.874153], - [-107.5644, 66.833603], - [-107.408897, 66.811096], - [-107.486397, 66.877197], - [-107.393898, 66.885269], - [-107.435303, 66.972214], - [-107.083603, 66.820541], - [-107.2267, 66.961647], - [-107.4039, 67.041656], - [-107.250801, 67.07193], - [-107.199699, 67.123871], - [-107.4814, 67.180817], - [-107.721901, 67.410812], - [-107.635597, 67.402206], - [-107.582802, 67.496368], - [-108.007004, 67.707489], - [-108.013901, 67.756104], - [-107.941902, 67.846939], - [-107.714699, 67.892487], - [-107.6511, 67.940536], - [-107.910301, 67.988586], - [-107.890602, 68.081673], - [-107.8517, 68.106087], - [-107.693604, 68.071663], - [-107.809402, 68.051651], - [-107.739998, 68.03804], - [-107.833298, 68.013046], - [-107.778099, 67.986649], - [-107.68, 68.045822], - [-107.349403, 68.048599], - [-107.154404, 68.126923], - [-107.110298, 68.126923], - [-107.118896, 68.084717], - [-106.958603, 68.089432], - [-106.952797, 68.1147], - [-106.756401, 68.10498], - [-106.753098, 68.157761], - [-106.809402, 68.207207], - [-106.779404, 68.223602], - [-106.6847, 68.223038], - [-106.703903, 68.194427], - [-106.663597, 68.169434], - [-106.625504, 68.184418], - [-106.641098, 68.23082], - [-106.614403, 68.248032], - [-106.468597, 68.190536], - [-106.444702, 68.151657], - [-106.344704, 68.183319], - [-106.495796, 68.22554], - [-106.4244, 68.299988], - [-106.466904, 68.324707], - [-106.447502, 68.344711], - [-106.2183, 68.392487], - [-106.124199, 68.362198], - [-106.055801, 68.398613], - [-105.981697, 68.393883], - [-105.966103, 68.421654], - [-105.845802, 68.415268], - [-105.821999, 68.449997], - [-105.782204, 68.413879], - [-105.730301, 68.419144], - [-105.698303, 68.491928], - [-105.7742, 68.548317], - [-105.666397, 68.638603], - [-105.790604, 68.609993], - [-105.886703, 68.63472], - [-106.029404, 68.619713], - [-106.551102, 68.514999], - [-106.419403, 68.510269], - [-106.556702, 68.493317], - [-106.505302, 68.471367], - [-106.528603, 68.443039], - [-106.631699, 68.461929], - [-106.480598, 68.395538], - [-106.5644, 68.342758], - [-106.5261, 68.306374], - [-106.543297, 68.291367], - [-106.595001, 68.296654], - [-106.644402, 68.347488], - [-106.724403, 68.349716], - [-106.713097, 68.371368], - [-106.802803, 68.414429], - [-106.796097, 68.370529], - [-107.013603, 68.369431], - [-107.131897, 68.272491], - [-107.258904, 68.259987], - [-107.338097, 68.315811], - [-107.478897, 68.31694], - [-107.5467, 68.347488], - [-107.813301, 68.342484], - [-107.8797, 68.258881], - [-107.603104, 68.165268], - [-107.800301, 68.183319], - [-107.967796, 68.145538], - [-108.1614, 68.17276], - [-108.3703, 68.112762], - [-108.436096, 68.141373], - [-108.397499, 68.163597], - [-108.362801, 68.156372], - [-108.378304, 68.13443], - [-108.3386, 68.145828], - [-108.347504, 68.226929], - [-108.392502, 68.218872], - [-108.391998, 68.180267], - [-108.455002, 68.190536], - [-108.402199, 68.294144], - [-108.484398, 68.305252], - [-108.715599, 68.231369], - [-108.819199, 68.266663], - [-108.741699, 68.294983], - [-108.741096, 68.342758], - [-108.5811, 68.406372], - [-108.345299, 68.601929], - [-107.305603, 68.697197], - [-106.820801, 68.811371], - [-106.655296, 68.811371], - [-106.214699, 68.94136], - [-105.797997, 68.879433], - [-105.475304, 68.720543], - [-105.5439, 68.656647], - [-105.407501, 68.51915], - [-105.326103, 68.510818], - [-105.321404, 68.474152], - [-105.433899, 68.489151], - [-105.538101, 68.445534], - [-105.533096, 68.4086], - [-105.338303, 68.412201], - [-105.350304, 68.372482], - [-105.294998, 68.339157], - [-105.055603, 68.258041], - [-104.998596, 68.274696], - [-105.082497, 68.308029], - [-104.939201, 68.309708], - [-104.893898, 68.348877], - [-104.839401, 68.288589], - [-104.952003, 68.247482], - [-104.900299, 68.225273], - [-104.822197, 68.261658], - [-104.609703, 68.241364], - [-104.597198, 68.222214], - [-104.670303, 68.138603], - [-104.600601, 68.135818], - [-104.592201, 68.083603], - [-104.495499, 68.062477], - [-104.5, 68.031937], - [-104.303001, 68.051651], - [-104.166702, 68.017487], - [-103.555298, 68.057213], - [-103.532799, 68.071663], - [-103.553001, 68.109711], - [-103.404198, 68.164146], - [-103.3414, 68.116089], - [-103.379204, 68.083328], - [-103.366096, 68.005829], - [-103.136902, 67.958038], - [-103.093102, 67.923027], - [-102.959396, 67.926933], - [-102.800301, 67.820831], - [-102.470802, 67.786926], - [-102.311699, 67.717484], - [-102.251099, 67.725273], - [-102.227501, 67.68692], - [-102.198601, 67.695824], - [-102.224403, 67.733871], - [-102.151398, 67.765549], - [-102.039398, 67.742203], - [-101.9786, 67.787773], - [-101.800003, 67.704987], - [-101.741898, 67.727768], - [-101.671898, 67.69165], - [-101.409698, 67.687759], - [-101.446701, 67.732483], - [-101.257797, 67.718597], - [-101.233101, 67.731934], - [-101.250298, 67.771103], - [-101.166397, 67.754707], - [-101.089401, 67.786102], - [-101.0989, 67.737762], - [-100.9039, 67.756943], - [-100.915604, 67.817757], - [-100.821999, 67.792213], - [-100.699997, 67.846939], - [-100.586403, 67.838593], - [-100.587502, 67.79332], - [-100.395599, 67.847488], - [-99.820007, 67.795822], - [-99.776672, 67.823883], - [-99.632492, 67.789429], - [-99.500557, 67.799713], - [-99.478333, 67.771927], - [-99.412216, 67.788307], - [-99.210564, 67.70694], - [-99.118881, 67.727768], - [-98.930557, 67.696091], - [-98.896118, 67.748322], - [-98.761124, 67.743874], - [-98.693604, 67.807747], - [-98.597778, 67.77832], - [-98.354446, 67.796097], - [-98.449432, 67.865807], - [-98.540283, 67.872208], - [-98.724167, 67.953598], - [-98.732773, 68.070267], - [-98.585281, 68.091927], - [-98.233322, 67.901932], - [-98.088608, 67.756653], - [-97.998611, 67.753052], - [-97.92749, 67.695534], - [-97.799438, 67.685532], - [-97.738892, 67.642212], - [-97.547501, 67.596367], - [-97.283333, 67.662491], - [-97.201401, 67.623871], - [-97.179169, 67.674149], - [-97.059158, 67.674988], - [-97.144997, 67.715271], - [-97.223618, 67.712486], - [-97.115829, 67.782761], - [-97.24028, 67.926086], - [-97.291107, 67.884987], - [-97.392227, 67.876373], - [-97.68306, 68.0186], - [-97.710831, 67.9711], - [-97.833618, 67.976929], - [-97.950287, 67.920258], - [-98.029999, 67.941933], - [-98.057503, 67.912491], - [-98.051941, 67.830833], - [-98.095284, 67.833328], - [-98.581123, 68.139977], - [-98.459732, 68.183594], - [-98.424438, 68.152206], - [-98.439438, 68.104156], - [-98.367767, 68.080551], - [-98.326111, 68.171371], - [-98.501106, 68.208603], - [-98.542221, 68.234154], - [-98.490829, 68.246933], - [-98.715286, 68.361649], - [-98.637222, 68.37915], - [-98.511398, 68.329712], - [-98.537216, 68.362198], - [-98.461403, 68.358871], - [-98.539436, 68.400818], - [-98.525284, 68.421097], - [-98.199722, 68.300262], - [-98.154449, 68.331673], - [-98.072777, 68.321663], - [-98.107498, 68.364433], - [-97.909729, 68.340553], - [-97.920273, 68.373032], - [-97.894119, 68.386459], - [-97.743057, 68.370529], - [-97.781952, 68.406647], - [-97.899986, 68.419708], - [-97.903061, 68.449997], - [-98.009743, 68.498032], - [-97.994164, 68.541092], - [-97.852493, 68.54248], - [-97.692757, 68.516663], - [-97.646118, 68.450821], - [-97.537781, 68.41832], - [-97.509171, 68.444427], - [-97.619164, 68.458328], - [-97.56778, 68.496368], - [-97.282784, 68.474152], - [-97.10556, 68.388321], - [-97.161392, 68.374977], - [-97.001953, 68.345261], - [-96.99472, 68.289978], - [-97.070007, 68.300262], - [-97.080292, 68.259163], - [-96.925003, 68.239151], - [-96.680557, 68.280823], - [-96.625267, 68.251663], - [-96.694153, 68.216927], - [-96.630829, 68.178864], - [-96.609734, 68.243317], - [-96.410553, 68.315536], - [-96.474716, 68.271652], - [-96.508904, 68.196373], - [-96.638062, 68.13916], - [-96.623047, 68.11554], - [-96.808884, 68.049423], - [-96.789169, 68.017212], - [-96.708344, 68.008614], - [-96.622223, 68.062187], - [-96.540283, 68.030273], - [-96.453056, 68.039429], - [-96.480003, 68.090271], - [-96.54834, 68.084152], - [-96.463058, 68.14415], - [-95.892227, 68.294144], - [-96.078613, 68.149986], - [-96.020279, 68.106087], - [-96.215286, 67.823608], - [-96.188889, 67.73027], - [-96.220001, 67.693039], - [-96.166656, 67.690262], - [-96.185272, 67.626373], - [-96.257782, 67.626923], - [-96.335564, 67.69664], - [-96.329727, 67.61026], - [-96.460007, 67.548866], - [-96.428879, 67.537201], - [-96.464722, 67.478043], - [-96.396118, 67.494431], - [-96.33168, 67.431931], - [-96.210007, 67.419144], - [-96.097229, 67.464706], - [-96.070282, 67.428307], - [-96.226936, 67.316673], - [-96.252228, 67.247482], - [-96.136124, 67.256378], - [-96.114441, 67.213318], - [-95.899437, 67.284149], - [-95.73999, 67.376648], - [-95.675552, 67.328323], - [-95.612778, 67.37915], - [-95.565826, 67.376648], - [-95.525009, 67.351089], - [-95.553329, 67.313309], - [-95.833328, 67.162773], - [-95.650284, 67.225807], - [-95.651398, 67.198868], - [-95.487778, 67.203873], - [-95.474167, 67.135536], - [-95.436943, 67.154984], - [-95.435547, 67.193863], - [-95.37944, 67.154709], - [-95.373894, 67.109993], - [-95.421661, 67.063873], - [-95.326111, 67.027206], - [-95.350281, 66.963882], - [-95.422501, 66.946373], - [-95.623322, 66.951927], - [-95.599442, 66.981087], - [-95.622223, 66.987488], - [-95.928047, 66.952477], - [-95.944443, 66.996368], - [-95.993881, 67.00972], - [-95.946953, 67.07222], - [-96.051666, 67.010818], - [-96.025009, 66.973312], - [-96.11055, 66.950821], - [-96.155563, 66.961647], - [-96.133904, 66.9897], - [-96.279167, 66.999153], - [-96.26889, 67.060532], - [-96.377213, 67.084717], - [-96.460564, 67.062187], - [-96.397232, 66.993874], - [-96.146393, 66.894707], - [-96.100563, 66.828598], - [-95.848053, 66.752777], - [-95.777496, 66.654984], - [-95.819733, 66.583878], - [-95.629707, 66.675537], - [-95.652222, 66.728592], - [-95.681107, 66.729431], - [-95.691383, 66.679428], - [-95.766403, 66.683594], - [-95.784729, 66.737198], - [-95.993057, 66.842758], - [-96.085564, 66.926933], - [-96.026108, 66.950272], - [-95.814438, 66.94136], - [-95.724716, 66.900818], - [-95.422234, 66.930542], - [-95.323624, 66.889427], - [-95.254547, 66.940369], - [-95.219452, 66.973602], - [-95.295547, 66.998871], - [-95.291672, 67.034714], - [-95.347504, 67.073883], - [-95.322777, 67.106087], - [-95.352219, 67.148331], - [-95.266113, 67.212769], - [-95.248894, 67.265266], - [-95.16333, 67.287201], - [-95.314713, 67.330551], - [-95.375816, 67.439972], - [-95.419159, 67.455261], - [-95.33168, 67.505829], - [-95.343613, 67.554977], - [-95.4664, 67.637207], - [-95.693047, 67.704437], - [-95.704453, 67.738586], - [-95.534439, 67.820831], - [-95.527222, 67.872208], - [-95.580292, 67.898613], - [-95.412781, 68.021652], - [-95.472778, 68.060532], - [-95.233887, 68.082489], - [-95.256958, 68.034988], - [-95.101669, 68.086929], - [-95.008904, 68.044434], - [-94.722229, 68.054977], - [-94.582497, 68.156097], - [-94.199158, 68.267761], - [-94.210831, 68.361366], - [-94.123047, 68.416931], - [-93.661392, 68.520828], - [-93.544998, 68.557213], - [-93.536392, 68.598602], - [-93.375549, 68.633331], - [-93.751953, 68.613602], - [-93.673607, 68.720261], - [-93.695267, 68.751938], - [-93.639717, 68.764709], - [-93.641113, 68.805817], - [-93.566101, 68.849426], - [-93.64389, 68.895538], - [-93.642227, 68.963882], - [-93.843887, 68.958878], - [-93.871109, 68.9711], - [-93.836937, 69.006378], - [-93.909157, 68.998032], - [-93.803879, 69.069153], - [-93.93222, 69.02887], - [-93.898064, 69.025818], - [-93.947487, 68.993042], - [-93.925552, 68.974701], - [-94.055832, 68.901932], - [-94.068069, 68.864151], - [-94.040833, 68.859711], - [-94.079727, 68.847488], - [-94.034157, 68.833328], - [-93.928596, 68.882477], - [-93.933884, 68.855263], - [-93.809998, 68.890549], - [-94.095284, 68.758041], - [-94.41333, 68.71582], - [-94.632217, 68.75], - [-94.545273, 68.88472], - [-94.589996, 68.908333], - [-94.562767, 68.924698], - [-94.599167, 68.965553], - [-94.501953, 68.968597], - [-94.444992, 68.938026], - [-94.348053, 69.024696], - [-94.224167, 69.027771], - [-94.151398, 69.057213], - [-94.191673, 69.083603], - [-94.16806, 69.103867], - [-94.005836, 69.154427], - [-94.235001, 69.119431], - [-94.323059, 69.149986], - [-94.281387, 69.226646], - [-94.299156, 69.246094], - [-94.259171, 69.271378], - [-94.303329, 69.304977], - [-94.025009, 69.359711], - [-93.808609, 69.350807], - [-93.736656, 69.399986], - [-93.526398, 69.438309], - [-93.883057, 69.25], - [-93.811943, 69.264999], - [-93.877487, 69.224152], - [-93.8125, 69.214996], - [-93.85611, 69.176933], - [-93.837219, 69.164429], - [-93.37944, 69.376373], - [-93.498047, 69.349152], - [-93.585831, 69.364151], - [-93.439438, 69.475273], - [-93.540833, 69.523323], - [-93.839447, 69.4897], - [-93.916656, 69.432747], - [-94.279167, 69.440262], - [-94.451683, 69.5186], - [-94.577789, 69.649986], - [-94.626938, 69.636383], - [-94.628601, 69.683868], - [-94.754997, 69.661652], - [-94.730827, 69.602768], - [-94.862778, 69.56694], - [-95.009453, 69.621643], - [-95.11528, 69.612488], - [-95.40834, 69.681931], - [-95.649986, 69.786377], - [-95.738892, 69.786102], - [-95.786942, 69.741364], - [-95.828888, 69.765266], - [-95.799438, 69.796097], - [-95.960831, 69.778053], - [-96.074448, 69.841927], - [-96.198334, 69.859711], - [-96.08223, 69.873596], - [-96.119164, 69.895538], - [-96.085007, 69.911377], - [-96.116096, 69.921371], - [-96.097778, 69.94664], - [-96.246948, 69.958878], - [-96.50029, 70.101379], - [-96.568619, 70.2686], - [-96.519173, 70.358322], - [-96.434723, 70.409988], - [-96.340286, 70.415268], - [-96.324722, 70.49054], - [-96.243057, 70.569717], - [-96.188316, 70.529427], - [-96.069733, 70.587769], - [-95.797234, 70.529427], - [-96.061394, 70.617203], - [-96.04834, 70.646942], - [-95.81778, 70.710274], - [-96.093887, 70.659988], - [-96.202789, 70.621643], - [-96.383621, 70.675537], - [-96.434723, 70.737198], - [-96.611938, 70.794434], - [-96.591667, 70.866928], - [-96.513062, 70.949707], - [-96.495827, 71.040268], - [-96.370003, 71.089981], - [-96.409439, 71.119431], - [-96.41362, 71.084152], - [-96.461403, 71.080551], - [-96.560547, 71.126373], - [-96.450562, 71.168053], - [-96.376663, 71.149147], - [-96.459442, 71.197197], - [-96.429718, 71.258331], - [-96.503891, 71.277206], - [-96.30722, 71.295822], - [-96.193329, 71.389977], - [-96.046387, 71.418053], - [-95.89389, 71.390823], - [-95.67305, 71.287491], - [-95.535278, 71.290817], - [-95.519997, 71.323883], - [-95.588608, 71.354431], - [-95.433319, 71.370819], - [-95.548607, 71.428307], - [-95.376663, 71.50943], - [-95.490829, 71.482208], - [-95.799728, 71.504707], - [-95.936661, 71.546654], - [-95.876389, 71.582764], - [-95.90834, 71.60054], - [-95.724716, 71.625809], - [-95.507782, 71.719711], - [-95.263062, 71.723877], - [-95.288063, 71.761932], - [-95.226936, 71.82666], - [-94.932037, 71.840569], - [-94.734444, 71.823318], - [-94.607773, 71.866379], - [-94.756958, 71.837486], - [-94.850273, 71.848213], - [-94.933632, 71.850113], - [-95.213333, 71.843048], - [-95.256668, 71.866928], - [-95.217499, 71.944977], - [-94.563606, 71.996933], - [-94.388611, 71.924149], - [-94.5, 71.898041], - [-94.449722, 71.88443], - [-94.460564, 71.849426], - [-94.5625, 71.849991], - [-94.648354, 71.812477], - [-94.594162, 71.743317], - [-94.538597, 71.758331], - [-94.488327, 71.824158], - [-94.450562, 71.78804], - [-94.401947, 71.814148], - [-94.356659, 71.796371], - [-94.390839, 71.774429], - [-94.423889, 71.661377], - [-94.194443, 71.791931], - [-94.142776, 71.756104], - [-94.054443, 71.787201], - [-93.972504, 71.745819], - [-93.71167, 71.761383], - [-93.696663, 71.710823], - [-93.811394, 71.645538], - [-93.230827, 71.473602], - [-93.142502, 71.374977], - [-92.973892, 71.34082], - [-92.995003, 71.315536], - [-92.94194, 71.288879], - [-92.930832, 71.214432], - [-92.855827, 71.157494], - [-92.889999, 71.065811], - [-92.853058, 71.039429], - [-92.908051, 70.903587], - [-92.851936, 70.856644], - [-92.944992, 70.835823], - [-93.000557, 70.872757], - [-93.04277, 70.863876], - [-92.958618, 70.81749], - [-92.676666, 70.771652], - [-92.69194, 70.745819], - [-92.657784, 70.735809], - [-92.718887, 70.724152], - [-92.641113, 70.715271], - [-92.676102, 70.674698], - [-92.487877, 70.668053], - [-92.297501, 70.6297], - [-92.341667, 70.59166], - [-92.311394, 70.569992], - [-92.276108, 70.572487], - [-92.257233, 70.61998], - [-92.159157, 70.584152], - [-92.265007, 70.551933], - [-92.18721, 70.504707], - [-92.285553, 70.487762], - [-92.116653, 70.470833], - [-92.132492, 70.434143], - [-91.996948, 70.390823], - [-91.99527, 70.316673], - [-92.085564, 70.298317], - [-91.996658, 70.29776], - [-91.952217, 70.255257], - [-91.920273, 70.296371], - [-91.855003, 70.303307], - [-91.900284, 70.330833], - [-91.890289, 70.354431], - [-91.729721, 70.356934], - [-91.687767, 70.315536], - [-91.726387, 70.298317], - [-91.693878, 70.197479], - [-91.636124, 70.231659], - [-91.511398, 70.152771], - [-92.003891, 70.121368], - [-92.226936, 70.185257], - [-92.282501, 70.250816], - [-92.362503, 70.240257], - [-92.268341, 70.208878], - [-92.276672, 70.184418], - [-92.480827, 70.176651], - [-92.388611, 70.144989], - [-92.479446, 70.09137], - [-92.58667, 70.076927], - [-92.467499, 70.042763], - [-92.43222, 70.075546], - [-92.12999, 70.084991], - [-91.939713, 70.020264], - [-92.081123, 69.986366], - [-92.267227, 69.901932], - [-92.254997, 69.877762], - [-92.554718, 69.808319], - [-92.565277, 69.762207], - [-92.643341, 69.791656], - [-92.688599, 69.74498], - [-92.867767, 69.702209], - [-92.535004, 69.709427], - [-92.743797, 69.671951] - ] - ], - [ - [ - [-61.28278, 66.616928], - [-61.447781, 66.538307], - [-61.59861, 66.550262], - [-61.72583, 66.643051], - [-62.004719, 66.69664], - [-62.016659, 66.658043], - [-62.186661, 66.627197], - [-62.09, 66.606644], - [-61.98, 66.648041], - [-61.788891, 66.608597], - [-61.576389, 66.477203], - [-61.98695, 66.410263], - [-61.55727, 66.413681], - [-61.462502, 66.369141], - [-61.554722, 66.336113], - [-61.783058, 66.334152], - [-61.915001, 66.281372], - [-62.080002, 66.329437], - [-62.2075, 66.316673], - [-62.23, 66.40416], - [-62.60722, 66.442749], - [-62.628052, 66.430542], - [-62.60397, 66.40358], - [-62.715549, 66.407578], - [-62.604721, 66.387573], - [-62.494999, 66.405548], - [-62.453892, 66.353867], - [-62.316109, 66.304977], - [-62.66695, 66.214432], - [-62.757229, 66.245247], - [-62.779442, 66.307213], - [-62.889999, 66.333328], - [-62.824451, 66.289429], - [-62.809441, 66.240807], - [-62.715, 66.20166], - [-62.513062, 66.219437], - [-62.34333, 66.162491], - [-62.108341, 66.143051], - [-62.16444, 66.125526], - [-62.153049, 66.100807], - [-62.03751, 66.100807], - [-62.079731, 66.082764], - [-62.012779, 66.071381], - [-62.108891, 66.049988], - [-61.98167, 66.043053], - [-61.960281, 66.011932], - [-62.188889, 66.012207], - [-62.307781, 65.973877], - [-62.52528, 66.034149], - [-62.778881, 66.033333], - [-62.930561, 66.146942], - [-63.061939, 66.120819], - [-62.93639, 66.122757], - [-62.875, 66.04776], - [-62.793621, 66.010818], - [-62.586109, 66.00943], - [-62.418331, 65.970543], - [-62.38583, 65.931374], - [-62.453609, 65.921921], - [-62.36195, 65.904984], - [-62.376389, 65.868042], - [-62.288059, 65.813309], - [-62.619999, 65.80304], - [-62.727219, 65.828598], - [-62.86417, 65.911102], - [-62.874722, 65.883041], - [-62.812771, 65.857483], - [-62.82362, 65.839706], - [-62.56945, 65.757492], - [-62.599442, 65.718872], - [-62.848049, 65.763893], - [-62.799171, 65.711929], - [-62.589722, 65.668587], - [-62.645279, 65.587196], - [-62.67194, 65.597214], - [-62.66, 65.638046], - [-62.727779, 65.620819], - [-62.730831, 65.588882], - [-62.784729, 65.59137], - [-62.85973, 65.63472], - [-62.88612, 65.734421], - [-62.959438, 65.753883], - [-62.91666, 65.722214], - [-62.89167, 65.638321], - [-62.972221, 65.580833], - [-63.0275, 65.635818], - [-63.211941, 65.640549], - [-63.43639, 65.845261], - [-63.488049, 65.936096], - [-63.529171, 65.876923], - [-63.36945, 65.730553], - [-63.384171, 65.711647], - [-63.347778, 65.666656], - [-63.728611, 65.675812], - [-63.671669, 65.648331], - [-63.375, 65.632202], - [-63.32, 65.593323], - [-63.35973, 65.536102], - [-63.48222, 65.525269], - [-63.583611, 65.5961], - [-63.608891, 65.589981], - [-63.56945, 65.549149], - [-63.618328, 65.541931], - [-63.536949, 65.517487], - [-63.526951, 65.478867], - [-63.446949, 65.488312], - [-63.292782, 65.428864], - [-63.65556, 65.470833], - [-63.389439, 65.393051], - [-63.523331, 65.38443], - [-63.33556, 65.300537], - [-63.448608, 65.292213], - [-63.34277, 65.253326], - [-63.45805, 65.239433], - [-63.325001, 65.220833], - [-63.317219, 65.191093], - [-63.513889, 65.191093], - [-63.43972, 65.171654], - [-63.477779, 65.157494], - [-63.34222, 65.140549], - [-63.433331, 65.101929], - [-63.39999, 65.078873], - [-63.367771, 65.063026], - [-63.465279, 65.05748], - [-63.38805, 65.042763], - [-63.46944, 65.032211], - [-63.456669, 65.004173], - [-63.527222, 64.971916], - [-63.504169, 64.953049], - [-63.546951, 64.887207], - [-63.653881, 64.911652], - [-63.62833, 64.929703], - [-63.656658, 64.943588], - [-63.601391, 64.961113], - [-63.614719, 64.99942], - [-63.732498, 64.962196], - [-63.824169, 64.984711], - [-63.825562, 65.012772], - [-63.65527, 65.03804], - [-63.870548, 65.040817], - [-63.881672, 65.096939], - [-63.798889, 65.18248], - [-63.85944, 65.179153], - [-63.965, 65.096367], - [-64.074722, 65.120819], - [-64.077789, 65.068047], - [-64.121109, 65.043869], - [-64.205276, 65.106934], - [-64.267227, 65.094147], - [-64.208893, 65.155258], - [-64.081123, 65.199417], - [-64.231377, 65.19693], - [-64.323334, 65.148041], - [-64.380829, 65.181091], - [-64.391113, 65.248871], - [-64.337784, 65.289146], - [-64.39917, 65.270538], - [-64.402786, 65.291092], - [-64.255569, 65.386383], - [-64.237213, 65.429977], - [-64.291107, 65.422493], - [-64.352219, 65.3461], - [-64.46167, 65.294983], - [-64.455566, 65.207207], - [-64.535004, 65.097214], - [-64.580002, 65.12886], - [-64.637512, 65.119713], - [-64.611389, 65.141937], - [-64.643623, 65.15387], - [-64.620827, 65.192467], - [-64.730293, 65.158333], - [-64.68277, 65.203049], - [-64.718338, 65.220261], - [-64.696663, 65.234154], - [-64.647507, 65.247757], - [-64.73111, 65.271103], - [-64.801102, 65.23082], - [-64.910828, 65.303589], - [-64.684433, 65.341087], - [-64.910553, 65.339981], - [-64.59111, 65.429703], - [-64.448608, 65.41832], - [-64.412781, 65.478592], - [-64.468887, 65.4422], - [-64.648064, 65.464706], - [-64.695267, 65.427757], - [-64.863892, 65.424698], - [-64.98111, 65.401932], - [-64.989723, 65.368317], - [-65.058884, 65.376648], - [-65.144173, 65.427757], - [-65.135834, 65.461647], - [-65.16806, 65.483871], - [-64.929718, 65.524696], - [-64.863892, 65.579987], - [-64.788887, 65.584152], - [-64.836937, 65.60582], - [-64.821404, 65.641663], - [-64.710007, 65.652206], - [-64.853333, 65.654709], - [-64.993607, 65.548027], - [-65.212219, 65.552467], - [-65.196663, 65.599152], - [-65.318336, 65.550537], - [-65.338608, 65.575546], - [-65.300827, 65.590271], - [-65.299988, 65.630814], - [-65.125816, 65.633331], - [-65.099731, 65.671921], - [-64.994453, 65.701393], - [-64.791382, 65.723312], - [-65.024719, 65.716927], - [-65.168327, 65.656097], - [-65.431381, 65.669144], - [-65.45639, 65.685532], - [-65.372772, 65.777206], - [-65.497772, 65.737488], - [-65.456123, 65.826927], - [-65.343887, 65.916656], - [-64.963898, 65.998596], - [-64.735001, 65.969437], - [-64.851387, 66.032494], - [-64.779449, 66.092209], - [-64.721657, 66.217484], - [-64.356377, 66.349716], - [-64.718887, 66.273323], - [-64.839996, 66.193314], - [-64.858887, 66.106087], - [-65.226936, 66.01915], - [-65.286392, 66.038307], - [-65.293877, 66.010818], - [-65.398064, 65.974701], - [-65.916107, 65.951103], - [-65.963058, 66.034416], - [-65.911667, 66.09166], - [-65.634171, 66.172493], - [-65.47139, 66.312477], - [-65.536392, 66.318047], - [-65.471123, 66.342484], - [-65.47583, 66.387772], - [-65.553879, 66.327766], - [-65.571671, 66.268333], - [-65.696953, 66.180542], - [-65.95195, 66.108871], - [-66.139183, 66.131363], - [-66.254318, 66.220047], - [-66.150284, 66.284149], - [-66.262512, 66.238586], - [-66.419724, 66.275818], - [-66.44194, 66.266098], - [-66.37471, 66.207207], - [-66.504997, 66.208878], - [-66.545547, 66.27887], - [-66.474442, 66.275269], - [-66.515289, 66.318604], - [-66.471123, 66.347763], - [-66.576111, 66.359154], - [-66.43721, 66.413307], - [-66.617493, 66.368591], - [-66.767776, 66.380539], - [-66.715012, 66.385269], - [-66.679169, 66.454987], - [-66.731949, 66.428864], - [-66.813606, 66.452209], - [-66.786942, 66.505257], - [-66.857773, 66.536652], - [-66.724716, 66.584717], - [-66.851936, 66.583328], - [-67.023064, 66.643333], - [-67.058884, 66.642761], - [-67.043327, 66.625809], - [-66.884171, 66.566093], - [-67.044724, 66.521652], - [-67.149437, 66.531937], - [-67.079453, 66.511932], - [-67.10556, 66.485809], - [-67.198608, 66.494141], - [-67.190277, 66.52916], - [-67.329453, 66.565262], - [-67.338333, 66.597763], - [-67.450287, 66.572769], - [-67.536392, 66.622757], - [-67.554993, 66.610527], - [-67.521667, 66.565811], - [-67.639999, 66.596649], - [-67.638611, 66.576103], - [-67.740829, 66.571114], - [-67.296387, 66.526093], - [-67.260559, 66.475273], - [-67.148621, 66.443863], - [-67.138062, 66.382202], - [-67.185272, 66.363602], - [-67.236389, 66.400818], - [-67.406387, 66.429703], - [-67.293877, 66.371643], - [-67.188599, 66.352203], - [-67.126099, 66.305542], - [-67.254181, 66.302757], - [-67.282227, 66.275269], - [-67.371658, 66.313599], - [-67.39917, 66.29248], - [-67.493881, 66.352768], - [-67.492767, 66.382202], - [-67.638611, 66.445534], - [-67.8125, 66.463043], - [-67.856949, 66.5186], - [-67.883904, 66.4897], - [-67.923607, 66.516098], - [-67.992767, 66.503883], - [-67.87027, 66.454712], - [-67.858047, 66.411926], - [-67.760559, 66.358032], - [-67.701401, 66.284714], - [-67.741096, 66.243042], - [-67.29361, 66.11026], - [-67.252792, 66.049149], - [-67.162514, 66.035263], - [-67.311943, 65.996933], - [-67.171661, 65.926376], - [-67.194443, 65.909714], - [-67.349167, 65.913307], - [-67.411118, 65.943863], - [-67.453888, 65.897491], - [-67.60611, 65.902206], - [-67.742767, 65.960541], - [-67.704178, 65.891663], - [-67.914436, 65.899147], - [-68.030563, 65.998032], - [-68.025833, 66.065811], - [-67.97084, 66.087486], - [-68.230293, 66.146378], - [-68.276947, 66.224426], - [-68.346947, 66.212486], - [-68.336121, 66.174988], - [-68.389999, 66.183594], - [-68.456123, 66.271378], - [-68.516403, 66.298866], - [-68.48056, 66.215553], - [-68.835281, 66.184982], - [-68.493057, 66.188873], - [-68.244164, 66.071114], - [-68.218887, 66.081383], - [-68.259171, 66.109993], - [-68.220001, 66.128593], - [-68.027222, 66.074997], - [-68.060272, 66.054428], - [-68.064438, 65.984421], - [-68.121658, 66.021927], - [-68.200287, 66.020538], - [-68.123894, 65.963043], - [-68.346947, 66.037773], - [-68.192207, 65.950272], - [-68.315552, 65.959717], - [-68.321671, 65.911926], - [-68.169159, 65.904984], - [-68.142776, 65.929153], - [-68.148354, 65.873596], - [-68.185822, 65.854156], - [-68.080841, 65.834427], - [-68.203613, 65.792763], - [-68.023903, 65.775269], - [-67.810822, 65.815536], - [-67.821121, 65.768051], - [-67.943329, 65.746933], - [-67.976669, 65.705833], - [-67.876099, 65.694138], - [-67.867493, 65.634987], - [-67.90889, 65.611099], - [-67.984161, 65.633614], - [-67.917503, 65.599991], - [-68.058884, 65.568047], - [-67.951683, 65.568329], - [-68.025833, 65.481087], - [-67.730293, 65.636383], - [-67.485283, 65.643051], - [-67.462593, 65.674271], - [-67.328056, 65.662491], - [-67.251678, 65.606934], - [-67.339172, 65.576103], - [-67.260834, 65.529709], - [-67.362213, 65.546944], - [-67.414436, 65.525818], - [-67.332497, 65.515549], - [-67.335564, 65.494141], - [-67.451401, 65.493591], - [-67.334442, 65.443863], - [-67.291107, 65.470261], - [-67.058037, 65.451393], - [-67.112122, 65.435303], - [-67.058327, 65.426651], - [-67.118057, 65.361923], - [-67.309158, 65.36998], - [-67.409439, 65.333328], - [-67.326683, 65.31694], - [-67.269173, 65.352203], - [-67.120003, 65.309982], - [-67.16806, 65.264999], - [-67.077789, 65.250267], - [-67.168327, 65.224152], - [-67.128601, 65.228317], - [-67.111107, 65.19693], - [-66.928879, 65.229713], - [-66.959167, 65.106644], - [-67.055557, 65.105263], - [-67.107773, 65.058868], - [-66.980827, 65.087769], - [-66.951683, 65.0811], - [-66.961403, 65.057213], - [-66.900284, 65.063873], - [-66.826401, 65.149147], - [-66.726097, 65.180267], - [-66.753342, 65.113312], - [-66.827217, 65.094711], - [-66.79361, 65.083878], - [-66.806664, 65.055542], - [-66.915283, 65.050812], - [-66.840286, 65.033867], - [-66.760834, 65.064697], - [-66.780563, 65.003883], - [-66.736389, 64.99971], - [-66.743057, 64.963043], - [-66.830292, 64.940811], - [-66.726936, 64.913879], - [-66.767227, 64.868591], - [-66.698334, 64.763893], - [-66.632492, 64.781372], - [-66.689713, 64.822487], - [-66.644447, 64.94693], - [-66.68866, 65.038773], - [-66.535278, 65.010818], - [-66.539993, 64.953323], - [-66.480293, 64.983871], - [-66.478607, 64.929153], - [-66.379173, 64.912201], - [-66.341667, 64.938873], - [-66.309433, 64.86499], - [-66.267502, 64.901382], - [-66.148354, 64.868874], - [-66.19194, 64.77887], - [-66.339722, 64.763611], - [-66.20723, 64.752487], - [-66.212219, 64.685532], - [-66.151947, 64.689148], - [-66.116943, 64.781372], - [-66.020844, 64.849716], - [-66.036667, 64.708038], - [-66.006393, 64.701103], - [-66.011948, 64.748596], - [-65.956673, 64.761932], - [-65.912514, 64.681931], - [-65.803329, 64.633881], - [-65.89917, 64.732758], - [-65.855827, 64.755547], - [-65.938316, 64.799988], - [-65.885277, 64.827209], - [-65.958618, 64.877762], - [-65.862503, 64.859154], - [-65.838608, 64.882477], - [-65.772781, 64.853317], - [-65.786942, 64.801651], - [-65.733612, 64.844437], - [-65.664169, 64.808319], - [-65.742493, 64.741089], - [-65.704727, 64.687477], - [-65.708618, 64.736099], - [-65.665283, 64.771378], - [-65.555832, 64.723312], - [-65.586403, 64.640266], - [-65.746948, 64.59082], - [-65.714172, 64.570541], - [-65.725563, 64.498032], - [-65.518066, 64.49971], - [-65.505569, 64.468872], - [-65.348343, 64.525543], - [-65.404999, 64.44136], - [-65.334167, 64.48027], - [-65.276398, 64.460823], - [-65.268341, 64.511932], - [-65.217499, 64.535538], - [-65.238052, 64.483322], - [-65.11528, 64.510536], - [-65.177223, 64.47554], - [-65.077789, 64.475807], - [-65.078888, 64.421097], - [-65.260559, 64.384163], - [-65.184998, 64.356934], - [-65.194992, 64.310257], - [-65.65834, 64.302757], - [-65.434158, 64.299149], - [-65.465286, 64.291656], - [-65.439713, 64.2686], - [-65.558609, 64.24498], - [-65.339447, 64.246643], - [-65.362213, 64.224701], - [-65.250557, 64.208328], - [-65.391678, 64.148613], - [-65.265007, 64.178864], - [-65.115829, 64.106369], - [-65.193878, 64.072769], - [-65.049438, 64.07222], - [-65.221939, 64.028587], - [-64.949158, 64.014999], - [-64.919449, 64.003883], - [-64.954453, 63.971371], - [-64.82251, 64.024147], - [-64.756119, 64.001938], - [-64.66806, 64.033051], - [-64.632767, 63.972759], - [-64.888901, 63.895], - [-64.889717, 63.865269], - [-64.974716, 63.85194], - [-64.984161, 63.813881], - [-64.948883, 63.774441], - [-64.755768, 63.744389], - [-64.689438, 63.75444], - [-64.508347, 63.650829], - [-64.521942, 63.611938], - [-64.589172, 63.608051], - [-64.536667, 63.581108], - [-64.558327, 63.55888], - [-64.51973, 63.494999], - [-64.547783, 63.468048], - [-64.501106, 63.423611], - [-64.553329, 63.393608], - [-64.634743, 63.410271], - [-64.51001, 63.374989], - [-64.495537, 63.32777], - [-64.526138, 63.303829], - [-64.620003, 63.31332], - [-64.481949, 63.282211], - [-64.648621, 63.23777], - [-64.767502, 63.323879], - [-64.757507, 63.379711], - [-64.797501, 63.395828], - [-64.834442, 63.4986], - [-64.935822, 63.572769], - [-64.94249, 63.63221], - [-65.070847, 63.67194], - [-65.106377, 63.727211], - [-65.208054, 63.775829], - [-65.159439, 63.781109], - [-65.298607, 63.812489], - [-64.986938, 63.601662], - [-65.091949, 63.559719], - [-65.099442, 63.526379], - [-65.04277, 63.459721], - [-65.117027, 63.426929], - [-65.045273, 63.43166], - [-65.123322, 63.400269], - [-64.965012, 63.369438], - [-64.909157, 63.280548], - [-64.921387, 63.235821], - [-65.055557, 63.314442], - [-65.015289, 63.251942], - [-65.148621, 63.28611], - [-65.087784, 63.23082], - [-64.968613, 63.217209], - [-65.079453, 63.21249], - [-65.05777, 63.174709], - [-64.920273, 63.184158], - [-64.857498, 63.16444], - [-64.898354, 63.140549], - [-64.78389, 63.122219], - [-64.760834, 63.090549], - [-64.864441, 63.088879], - [-64.766953, 63.06221], - [-64.815277, 63.039162], - [-64.771393, 62.98333], - [-64.846657, 62.967209], - [-64.730827, 62.921379], - [-64.696114, 62.952221], - [-64.626938, 62.89999], - [-64.881943, 62.867489], - [-65.080566, 62.938599], - [-65.11972, 62.992222], - [-65.154167, 62.972759], - [-65.125, 62.92083], - [-65.236107, 62.957771], - [-65.27417, 63.001389], - [-65.279449, 62.968601], - [-65.186661, 62.924999], - [-65.202499, 62.887772], - [-64.984734, 62.714161], - [-64.928329, 62.63221], - [-64.983887, 62.642769], - [-64.981667, 62.619438], - [-65.144997, 62.56583], - [-65.22084, 62.578331], - [-65.294998, 62.669441], - [-65.266953, 62.694439], - [-65.327499, 62.691662], - [-65.328056, 62.6661], - [-65.353882, 62.684429], - [-65.318336, 62.74332], - [-65.244164, 62.77916], - [-65.361938, 62.774712], - [-65.363617, 62.81694], - [-65.331947, 62.82222], - [-65.253616, 62.8325], - [-65.339722, 62.83749], - [-65.331947, 62.925549], - [-65.402786, 62.821659], - [-65.454178, 62.84193], - [-65.609444, 62.820831], - [-65.664436, 62.904991], - [-65.704727, 62.89027], - [-65.750557, 62.922489], - [-65.688049, 62.979988], - [-65.728882, 63.052769], - [-65.743881, 62.965832], - [-65.825562, 62.927769], - [-65.79361, 62.87027], - [-65.878883, 62.924709], - [-65.964172, 62.931381], - [-65.833328, 63.03138], - [-65.950562, 62.975819], - [-66.01445, 62.97887], - [-66.074722, 63.021381], - [-66.055267, 63.04805], - [-66.137222, 63.03722], - [-66.162781, 63.089989], - [-66.275833, 63.133881], - [-66.291382, 63.1161], - [-66.212219, 63.081379], - [-66.196663, 63.031658], - [-66.091377, 62.983601], - [-66.097778, 62.952492], - [-66.159157, 62.936649], - [-66.293877, 62.992771], - [-66.392776, 62.994999], - [-66.518341, 63.065269], - [-66.493607, 63.087769], - [-66.569733, 63.15749], - [-66.545273, 63.195541], - [-66.689713, 63.281109], - [-66.638344, 63.340271], - [-66.650833, 63.374989], - [-66.74028, 63.283611], - [-66.602493, 63.205269], - [-66.618607, 63.162491], - [-66.563316, 63.073608], - [-66.68277, 63.096661], - [-66.540283, 62.99416], - [-66.68222, 63.026379], - [-66.768066, 63.087769], - [-66.758621, 63.178051], - [-66.807503, 63.273319], - [-66.849167, 63.245541], - [-66.806664, 63.160549], - [-66.897713, 63.171459], - [-67.023903, 63.24305], - [-66.947769, 63.284161], - [-67.009453, 63.326939], - [-66.977783, 63.399719], - [-67.017227, 63.397221], - [-67.040833, 63.335548], - [-67.017227, 63.281109], - [-67.092499, 63.276661], - [-67.171661, 63.31638], - [-67.146118, 63.27943], - [-67.179718, 63.275551], - [-67.346657, 63.374161], - [-67.403061, 63.462769], - [-67.414436, 63.410271], - [-67.494164, 63.4361], - [-67.55278, 63.53611], - [-67.621658, 63.548882], - [-67.683319, 63.619438], - [-67.670273, 63.65332], - [-67.778061, 63.63694], - [-67.794998, 63.688881], - [-67.834732, 63.689159], - [-67.833328, 63.725552], - [-67.914719, 63.759441], - [-67.799728, 63.632488], - [-67.819458, 63.585819], - [-67.786942, 63.528599], - [-67.671944, 63.412491], - [-67.678329, 63.373051], - [-67.71666, 63.36388], - [-67.820557, 63.400269], - [-67.858047, 63.4575], - [-67.950844, 63.50666], - [-68.083618, 63.547218], - [-68.126938, 63.603321], - [-68.137222, 63.576389], - [-68.247498, 63.597488], - [-68.216949, 63.627209], - [-68.272781, 63.691101], - [-68.312767, 63.690269], - [-68.271118, 63.63805], - [-68.30278, 63.633049], - [-68.528877, 63.74638], - [-68.556381, 63.727489], - [-68.747223, 63.77499], - [-68.723618, 63.72971], - [-68.99472, 63.75555], - [-68.813049, 63.635551], - [-68.85083, 63.599998], - [-68.543877, 63.446098], - [-68.446663, 63.439991], - [-68.495827, 63.421379], - [-68.270554, 63.285], - [-68.284729, 63.26194], - [-68.20639, 63.227211], - [-68.234734, 63.197769], - [-68.139183, 63.148609], - [-67.917503, 63.137211], - [-67.976387, 63.064159], - [-67.919724, 63.07333], - [-67.894173, 63.119991], - [-67.785828, 63.087212], - [-67.610283, 63.094151], - [-67.615013, 63.06361], - [-67.791382, 63.020828], - [-67.735283, 62.98138], - [-67.76973, 62.958328], - [-67.713898, 62.961109], - [-67.736938, 62.995541], - [-67.686943, 63.026661], - [-67.553047, 63.048611], - [-67.499733, 63.007771], - [-67.651398, 62.967491], - [-67.665833, 62.91888], - [-67.462784, 62.985271], - [-67.395279, 62.963879], - [-67.419724, 62.931381], - [-67.362778, 62.943878], - [-67.246384, 62.88361], - [-67.370003, 62.85416], - [-67.200844, 62.873051], - [-67.179443, 62.83749], - [-67.241943, 62.81221], - [-67.114723, 62.820549], - [-67.08667, 62.79361], - [-67.118607, 62.75639], - [-67.04834, 62.771381], - [-67.012222, 62.73444], - [-67.058327, 62.691929], - [-66.912781, 62.694988], - [-67.001106, 62.653881], - [-66.804718, 62.678879], - [-66.726936, 62.668598], - [-66.773064, 62.632488], - [-66.670273, 62.641941], - [-66.712784, 62.621658], - [-66.615013, 62.612209], - [-66.61055, 62.582771], - [-66.487778, 62.511379], - [-66.509453, 62.421661], - [-66.351669, 62.444988], - [-66.394173, 62.419159], - [-66.330566, 62.379162], - [-66.476936, 62.335819], - [-66.318619, 62.264721], - [-66.35556, 62.33194], - [-66.243607, 62.31916], - [-66.21666, 62.35194], - [-66.15834, 62.305271], - [-66.146957, 62.252781], - [-66.257233, 62.25972], - [-66.058609, 62.224159], - [-66.015007, 62.251389], - [-65.93306, 62.204159], - [-66.055557, 62.141941], - [-66.038063, 62.064159], - [-66.13945, 62.093048], - [-66.153877, 62.125549], - [-66.200562, 62.113049], - [-66.098892, 62.035831], - [-66.138344, 62.0075], - [-66.068069, 61.995541], - [-66.035828, 61.95277], - [-65.992218, 61.962769], - [-65.955002, 61.89027], - [-66.394997, 61.870831], - [-66.632767, 61.91888], - [-66.665283, 61.94138], - [-66.618057, 61.966099], - [-66.707779, 61.967491], - [-66.755569, 62.011108], - [-66.937767, 62.044441], - [-66.920273, 62.018879], - [-66.960564, 62.014439], - [-67.019997, 62.051659], - [-67.104721, 62.032211], - [-67.232773, 62.0961], - [-67.32695, 62.07333], - [-67.328339, 62.1311], - [-67.389999, 62.1511], - [-67.731659, 62.15836], - [-67.828339, 62.172489], - [-67.806664, 62.198879], - [-67.838898, 62.20916], - [-67.866386, 62.188881], - [-68.54805, 62.2486], - [-68.722229, 62.302219], - [-68.711937, 62.325829], - [-68.819458, 62.338329], - [-68.853882, 62.381378], - [-69.022507, 62.37471], - [-69.298889, 62.498329], - [-69.282227, 62.622219], - [-69.376099, 62.533051], - [-69.411392, 62.607498], - [-69.457497, 62.622761], - [-69.442207, 62.547489], - [-69.597229, 62.662491], - [-69.475563, 62.673882], - [-69.478333, 62.696659], - [-69.428047, 62.705551], - [-69.565552, 62.718048], - [-69.394997, 62.763329], - [-69.570847, 62.761379], - [-69.621109, 62.787769], - [-69.682503, 62.739719], - [-69.679443, 62.774712], - [-69.83168, 62.821941], - [-69.762512, 62.726101], - [-69.896957, 62.75555], - [-69.939987, 62.794159], - [-70.041672, 62.750271], - [-70.254997, 62.75639], - [-70.499443, 62.864441], - [-70.885559, 62.907211], - [-70.768066, 62.925831], - [-70.847778, 62.947208], - [-71.042221, 62.95583], - [-70.940552, 62.970268], - [-70.9664, 62.999161], - [-70.940277, 63.026939], - [-70.997223, 63.023048], - [-71.013062, 62.98999], - [-71.152222, 62.985271], - [-71.136673, 63.028599], - [-71.027222, 63.02499], - [-70.939163, 63.095268], - [-70.823898, 63.128601], - [-70.92749, 63.115002], - [-70.949158, 63.139431], - [-70.90889, 63.17083], - [-70.99028, 63.148048], - [-70.98999, 63.102489], - [-71.029716, 63.071941], - [-71.138611, 63.07333], - [-71.155563, 63.098598], - [-71.198608, 63.019989], - [-71.243881, 63.00111], - [-71.275833, 63.012211], - [-71.248611, 63.02943], - [-71.268623, 63.040279], - [-71.40834, 63.055271], - [-71.398064, 63.122761], - [-71.465012, 63.103321], - [-71.713898, 63.179161], - [-71.65889, 63.19249], - [-71.756393, 63.237209], - [-71.646393, 63.259159], - [-71.769997, 63.25639], - [-71.738892, 63.267769], - [-71.775284, 63.288891], - [-71.752792, 63.312771], - [-71.821091, 63.34341], - [-71.730003, 63.34499], - [-71.775009, 63.412209], - [-71.805832, 63.382771], - [-71.924438, 63.38916], - [-71.993057, 63.426659], - [-72.009171, 63.391109], - [-72.145554, 63.446098], - [-71.634743, 63.41972], - [-71.502274, 63.47747], - [-71.304169, 63.535271], - [-71.288887, 63.588329], - [-71.234734, 63.608051], - [-71.407501, 63.567768], - [-71.362503, 63.613331], - [-71.407784, 63.635551], - [-71.407784, 63.610279], - [-71.460564, 63.600269], - [-71.446953, 63.58083], - [-71.57695, 63.581669], - [-71.562767, 63.622219], - [-71.485817, 63.629429], - [-71.581123, 63.645271], - [-71.534157, 63.71027], - [-71.638062, 63.7211], - [-71.667221, 63.697208], - [-71.608337, 63.65443], - [-71.640289, 63.646099], - [-71.72139, 63.691929], - [-71.684158, 63.746658], - [-71.759743, 63.691662], - [-71.773064, 63.74416], - [-71.904449, 63.80999], - [-71.970551, 63.79583], - [-72.004181, 63.752781], - [-71.843887, 63.75555], - [-71.92305, 63.645271], - [-71.971939, 63.656101], - [-71.929169, 63.679722], - [-71.947487, 63.722488], - [-72.039169, 63.66444], - [-72.070557, 63.73999], - [-72.107498, 63.715832], - [-72.204727, 63.774441], - [-72.213898, 63.677769], - [-72.317497, 63.67416], - [-72.315552, 63.733051], - [-72.357773, 63.761379], - [-72.252792, 63.760281], - [-72.271942, 63.797779], - [-72.222778, 63.861382], - [-72.092499, 63.904709], - [-72.218338, 63.895], - [-72.246384, 63.950272], - [-72.276398, 63.90749], - [-72.246658, 63.883331], - [-72.3125, 63.896389], - [-72.405563, 63.826389], - [-72.372772, 63.778599], - [-72.526398, 63.787769], - [-72.456947, 63.81583], - [-72.596947, 63.86832], - [-72.660553, 63.850269], - [-72.641113, 63.90443], - [-72.665558, 63.922218], - [-72.604172, 63.949429], - [-72.592773, 64.022217], - [-72.676102, 64.020264], - [-72.664719, 64.080551], - [-72.705841, 64.009163], - [-72.658623, 63.98777], - [-72.733322, 63.962769], - [-72.758347, 64.004173], - [-72.940277, 64.058594], - [-72.870827, 64.093872], - [-72.897232, 64.156937], - [-73.08139, 64.183594], - [-73.05249, 64.224991], - [-73.130829, 64.266937], - [-73.107224, 64.290817], - [-73.210564, 64.291931], - [-73.236107, 64.330551], - [-73.310547, 64.310806], - [-73.279167, 64.258614], - [-73.384171, 64.272491], - [-73.391388, 64.338593], - [-73.333328, 64.378311], - [-73.260559, 64.363312], - [-73.351936, 64.401657], - [-73.41777, 64.371094], - [-73.471939, 64.414993], - [-73.316391, 64.45665], - [-73.419724, 64.477203], - [-73.278061, 64.519989], - [-73.16777, 64.57666], - [-73.165558, 64.607483], - [-73.275284, 64.595261], - [-73.309433, 64.6586], - [-73.347504, 64.634987], - [-73.302223, 64.583878], - [-73.307503, 64.535812], - [-73.463333, 64.502487], - [-73.486816, 64.571342], - [-73.402222, 64.549423], - [-73.457779, 64.58638], - [-73.430557, 64.603317], - [-73.571121, 64.585274], - [-73.656662, 64.663597], - [-73.689438, 64.583603], - [-73.644173, 64.566093], - [-73.753891, 64.535263], - [-73.929443, 64.602203], - [-73.786392, 64.476646], - [-73.815277, 64.459152], - [-73.882767, 64.494141], - [-73.86972, 64.468323], - [-73.906387, 64.455551], - [-73.961121, 64.477203], - [-73.972778, 64.430267], - [-73.940552, 64.404427], - [-73.985001, 64.387497], - [-73.993332, 64.3311], - [-74.089996, 64.329163], - [-74.175003, 64.36026], - [-74.102219, 64.367477], - [-74.107498, 64.403053], - [-74.077499, 64.411377], - [-74.170273, 64.461647], - [-74.04361, 64.443039], - [-74.127487, 64.534416], - [-73.953613, 64.516098], - [-74.164436, 64.570541], - [-73.999443, 64.58194], - [-74.083618, 64.631088], - [-74.060547, 64.733322], - [-74.120537, 64.741928], - [-74.119453, 64.676933], - [-74.22139, 64.671097], - [-74.208893, 64.614151], - [-74.24028, 64.580276], - [-74.298607, 64.625526], - [-74.264183, 64.654984], - [-74.316391, 64.681931], - [-74.338333, 64.627197], - [-74.417503, 64.659988], - [-74.347229, 64.591927], - [-74.381943, 64.569992], - [-74.431107, 64.596367], - [-74.415558, 64.623032], - [-74.535278, 64.622208], - [-74.57251, 64.664703], - [-74.704178, 64.735527], - [-74.565002, 64.845833], - [-74.478882, 64.835823], - [-74.577789, 64.86998], - [-74.545837, 64.892212], - [-74.639999, 64.903587], - [-74.660828, 64.893883], - [-74.63945, 64.861366], - [-74.732773, 64.854713], - [-74.706673, 64.800537], - [-74.726387, 64.770828], - [-74.811111, 64.804153], - [-74.837219, 64.778587], - [-74.985283, 64.795822], - [-74.470001, 64.55748], - [-74.638901, 64.538307], - [-74.537216, 64.510536], - [-74.616653, 64.498032], - [-74.501106, 64.455833], - [-74.667221, 64.40387], - [-74.680557, 64.372208], - [-74.974716, 64.416092], - [-75.174713, 64.492752], - [-75.18721, 64.473602], - [-75.144173, 64.453049], - [-75.215561, 64.428864], - [-75.331833, 64.490387], - [-75.536667, 64.536652], - [-75.568336, 64.569443], - [-75.843063, 64.607758], - [-75.781387, 64.571381], - [-75.837219, 64.561371], - [-75.818893, 64.530823], - [-75.631668, 64.453598], - [-75.73555, 64.470261], - [-75.708344, 64.437759], - [-75.922501, 64.481087], - [-75.801392, 64.436096], - [-75.821953, 64.425537], - [-75.726936, 64.367203], - [-75.944443, 64.376083], - [-75.982773, 64.404427], - [-76.071671, 64.359993], - [-76.121384, 64.387497], - [-76.169998, 64.373596], - [-76.140556, 64.364433], - [-76.166656, 64.349991], - [-76.375, 64.356934], - [-76.323898, 64.315811], - [-76.188316, 64.306931], - [-76.300552, 64.27887], - [-76.438049, 64.31749], - [-76.483887, 64.306091], - [-76.378052, 64.279427], - [-76.484734, 64.266663], - [-76.541382, 64.304703], - [-76.658051, 64.276657], - [-76.705841, 64.300812], - [-76.738892, 64.276382], - [-76.721657, 64.238312], - [-76.660278, 64.218323], - [-76.670547, 64.184143], - [-76.841667, 64.202209], - [-76.827499, 64.226929], - [-77.122772, 64.295532], - [-77.37999, 64.245247], - [-77.37027, 64.280548], - [-77.451111, 64.294434], - [-77.386673, 64.306091], - [-77.400284, 64.321663], - [-77.542503, 64.311371], - [-77.489441, 64.348328], - [-77.652222, 64.388046], - [-77.643341, 64.334717], - [-77.672501, 64.318047], - [-77.785004, 64.369431], - [-77.877777, 64.373871], - [-77.905563, 64.400543], - [-77.842773, 64.425537], - [-78.008347, 64.424423], - [-77.973053, 64.463608], - [-78.032227, 64.485809], - [-78.06778, 64.498032], - [-78.068619, 64.540817], - [-78.183319, 64.572487], - [-78.128601, 64.589157], - [-78.194992, 64.648613], - [-78.159157, 64.697197], - [-78.299156, 64.704712], - [-78.184433, 64.723602], - [-78.187767, 64.753883], - [-78.073624, 64.813599], - [-78.066391, 64.85582], - [-78.117218, 64.876083], - [-78.149727, 64.952209], - [-77.963898, 65.047493], - [-77.628052, 65.143051], - [-77.488327, 65.139427], - [-77.328613, 65.178864], - [-77.315552, 65.199417], - [-77.513062, 65.318878], - [-77.461121, 65.37915], - [-77.287514, 65.367752], - [-77.421661, 65.46138], - [-77.238052, 65.469437], - [-77.267227, 65.457489], - [-77.08667, 65.407211], - [-76.920837, 65.429428], - [-76.66362, 65.410263], - [-75.785553, 65.224426], - [-75.733322, 65.152206], - [-75.524628, 65.103271], - [-75.428047, 65.048317], - [-75.415558, 64.977478], - [-75.507233, 64.938309], - [-75.667503, 64.940811], - [-75.605827, 64.913307], - [-75.587509, 64.856644], - [-75.454727, 64.838882], - [-75.530838, 64.775543], - [-75.443329, 64.765266], - [-75.396667, 64.717209], - [-75.298187, 64.725769], - [-75.373894, 64.833054], - [-75.343887, 64.919708], - [-75.469727, 64.869431], - [-75.567497, 64.883614], - [-75.482773, 64.896378], - [-75.473892, 64.935806], - [-75.384743, 64.981934], - [-75.269173, 64.950546], - [-75.29306, 64.989151], - [-75.243057, 65.007767], - [-75.186943, 65.101646], - [-75.259171, 65.102203], - [-75.279999, 65.035263], - [-75.360001, 65.003883], - [-75.597504, 65.184143], - [-75.714722, 65.186371], - [-75.761948, 65.237762], - [-75.903343, 65.25943], - [-75.950287, 65.318329], - [-75.696114, 65.303864], - [-75.625549, 65.345543], - [-75.566391, 65.274986], - [-75.186661, 65.251938], - [-75.083618, 65.286102], - [-75.070847, 65.330276], - [-75.108047, 65.393051], - [-75, 65.379707], - [-74.773064, 65.386108], - [-74.714447, 65.431664], - [-74.66861, 65.424149], - [-74.704178, 65.40332], - [-74.659439, 65.388321], - [-74.690552, 65.374977], - [-74.669449, 65.349716], - [-74.524437, 65.333328], - [-74.357773, 65.398613], - [-74.299988, 65.472214], - [-74.15889, 65.485809], - [-74.18277, 65.525269], - [-74.105827, 65.534988], - [-73.994453, 65.503052], - [-73.845284, 65.532211], - [-73.736938, 65.514709], - [-73.740829, 65.490807], - [-73.663887, 65.45694], - [-73.479721, 65.450821], - [-73.569458, 65.577209], - [-73.631378, 65.607483], - [-73.611656, 65.646103], - [-73.70195, 65.685806], - [-73.652496, 65.718597], - [-73.709732, 65.762497], - [-74.058037, 65.875526], - [-74.444992, 66.096939], - [-74.46611, 66.151932], - [-74.342216, 66.225273], - [-73.906952, 66.353043], - [-73.444153, 66.551086], - [-73.351936, 66.649986], - [-73.108612, 66.723312], - [-72.878326, 66.925537], - [-72.824173, 67.029427], - [-72.684998, 67.076103], - [-72.368607, 67.112488], - [-72.276108, 67.166931], - [-72.258347, 67.248032], - [-72.192757, 67.273041], - [-72.374443, 67.325821], - [-72.35611, 67.357758], - [-72.439713, 67.476646], - [-72.506119, 67.496933], - [-72.422234, 67.529984], - [-72.473892, 67.566383], - [-72.485817, 67.623032], - [-72.595001, 67.633881], - [-72.676392, 67.693863], - [-72.583328, 67.750267], - [-72.612503, 67.790268], - [-72.763062, 67.876373], - [-72.843887, 67.850807], - [-72.90834, 67.903053], - [-72.881378, 67.934418], - [-72.942207, 67.925262], - [-72.896118, 68.01416], - [-72.98111, 68.13916], - [-72.992218, 68.234421], - [-73.035553, 68.235527], - [-73.05249, 68.199142], - [-73.221657, 68.22998], - [-73.189438, 68.254707], - [-73.215561, 68.272774], - [-73.338898, 68.27916], - [-73.319733, 68.25], - [-73.361107, 68.243042], - [-73.496109, 68.275543], - [-73.30777, 68.320267], - [-73.289436, 68.345833], - [-73.31723, 68.362488], - [-73.21167, 68.376923], - [-73.253067, 68.390823], - [-73.357498, 68.371368], - [-73.349442, 68.3311], - [-73.471687, 68.330109], - [-73.632217, 68.246643], - [-73.684998, 68.271378], - [-73.591377, 68.302467], - [-73.835564, 68.337196], - [-73.948608, 68.411926], - [-73.867218, 68.493042], - [-73.72583, 68.525818], - [-73.815277, 68.570541], - [-73.719727, 68.614433], - [-73.823898, 68.617203], - [-73.706947, 68.653587], - [-73.795273, 68.664429], - [-73.753891, 68.683594], - [-74.178879, 68.724152], - [-73.888062, 68.561653], - [-73.90361, 68.527771], - [-73.99028, 68.492752], - [-74.031387, 68.508614], - [-74.006958, 68.532494], - [-74.190826, 68.508881], - [-74.366096, 68.539146], - [-74.514183, 68.599991], - [-74.541672, 68.666092], - [-74.726097, 68.73027], - [-74.719452, 68.770538], - [-74.57695, 68.793053], - [-74.551392, 68.830551], - [-74.678329, 68.842758], - [-74.749161, 68.816383], - [-74.63501, 68.79332], - [-74.778343, 68.765823], - [-74.984444, 68.809418], - [-74.691673, 68.8647], - [-74.679443, 68.927757], - [-75.041847, 68.902992], - [-74.840843, 68.934708], - [-75, 68.93074], - [-74.880547, 68.967758], - [-75.04277, 68.928307], - [-74.930283, 68.997208], - [-74.642776, 69.011658], - [-74.660828, 69.044434], - [-74.785828, 69.076393], - [-75.043327, 69.013321], - [-75.071404, 68.921097], - [-75.139717, 68.88472], - [-75.478882, 69.019707], - [-75.578613, 68.984154], - [-75.495003, 68.930267], - [-75.603882, 68.8797], - [-76.436394, 68.6772], - [-76.660828, 68.699417], - [-76.688049, 68.746933], - [-76.521667, 68.870247], - [-76.606659, 68.883041], - [-76.655563, 68.924698], - [-76.625549, 69.018333], - [-76.348892, 69.054977], - [-75.996933, 69.003036], - [-75.775009, 69.088593], - [-75.605827, 69.085274], - [-75.569458, 69.158333], - [-75.591667, 69.221649], - [-75.95639, 69.366089], - [-76.202499, 69.413879], - [-76.389183, 69.395538], - [-76.424713, 69.454437], - [-76.637787, 69.546654], - [-76.620003, 69.58638], - [-76.477783, 69.652206], - [-76.210831, 69.6147], - [-76.227783, 69.641373], - [-76.187767, 69.665268], - [-76.376389, 69.671371], - [-76.407227, 69.700546], - [-76.634171, 69.683594], - [-76.522781, 69.652481], - [-76.561661, 69.620247], - [-76.642502, 69.620247], - [-76.707497, 69.559418], - [-76.876099, 69.583054], - [-76.821121, 69.626083], - [-76.967499, 69.591927], - [-77.191673, 69.639709], - [-77.155563, 69.680542], - [-76.820282, 69.699417], - [-76.781387, 69.748596], - [-76.887222, 69.751099], - [-76.909157, 69.791656], - [-76.757507, 69.815536], - [-76.797501, 69.836113], - [-77.058327, 69.813309], - [-77.00473, 69.856369], - [-77.150284, 69.816093], - [-77.308884, 69.830833], - [-77.243057, 69.881363], - [-76.974716, 69.935806], - [-77.188316, 69.906097], - [-77.630547, 69.823036], - [-77.508347, 69.82666], - [-77.444443, 69.789429], - [-77.509743, 69.796944], - [-77.551392, 69.747757], - [-77.615829, 69.741653], - [-77.680557, 69.819153], - [-77.672501, 70.180542], - [-77.795273, 70.25499], - [-78.054169, 70.218048], - [-78.195831, 70.25499], - [-78.131943, 70.218323], - [-78.170273, 70.19136], - [-78.254997, 70.228043], - [-78.333328, 70.198318], - [-78.401672, 70.212486], - [-78.430832, 70.262207], - [-78.539993, 70.306374], - [-78.396118, 70.328049], - [-78.425827, 70.347763], - [-78.557503, 70.351379], - [-78.578888, 70.309708], - [-78.662514, 70.35054], - [-78.635559, 70.373032], - [-78.704727, 70.374687], - [-78.743881, 70.449142], - [-78.820007, 70.438873], - [-78.889183, 70.479156], - [-78.90834, 70.447479], - [-78.873047, 70.407494], - [-79.070557, 70.469711], - [-79.046112, 70.483047], - [-79.100281, 70.498322], - [-79.037514, 70.516663], - [-79.08168, 70.529984], - [-78.87999, 70.546371], - [-78.995827, 70.556374], - [-78.87999, 70.594711], - [-78.718887, 70.54776], - [-78.840561, 70.634987], - [-78.976936, 70.635818], - [-79.009453, 70.679703], - [-79.158051, 70.622208], - [-79.001953, 70.613312], - [-79.171944, 70.513893], - [-79.142227, 70.501938], - [-79.174156, 70.42804], - [-79.335007, 70.438873], - [-79.291107, 70.44693], - [-79.297783, 70.489967], - [-79.412781, 70.491653], - [-79.395279, 70.437187], - [-79.500557, 70.452209], - [-79.588898, 70.399429], - [-79.443329, 70.349426], - [-79.357773, 70.369713], - [-79.209442, 70.313309], - [-79.108887, 70.304977], - [-79.038887, 70.340553], - [-78.921661, 70.300812], - [-78.763062, 70.183594], - [-78.743332, 70.073036], - [-78.688599, 70.054977], - [-78.664169, 70.004173], - [-78.676392, 69.945251], - [-78.795837, 69.876648], - [-79.377777, 69.886108], - [-79.682503, 69.848877], - [-79.901947, 69.976379], - [-80.009453, 69.941093], - [-80.053047, 69.997208], - [-80.232498, 70.007767], - [-80.326111, 69.98027], - [-80.577499, 70.048866], - [-80.983612, 70.056931], - [-81.069733, 70.097488], - [-81.429993, 70.093597], - [-81.728333, 70.132202], - [-81.761948, 70.117477], - [-81.709732, 70.074432], - [-81.539719, 70.053307], - [-81.441101, 69.999153], - [-81.338333, 70.0336], - [-81.188599, 69.991089], - [-81.126389, 69.927757], - [-80.791382, 69.790543], - [-80.775558, 69.752213], - [-80.967773, 69.714432], - [-80.952217, 69.732758], - [-81.103058, 69.768333], - [-81.166946, 69.821381], - [-81.599731, 69.943039], - [-81.577499, 69.968872], - [-81.76973, 69.97554], - [-82.232773, 70.146378], - [-82.558327, 70.184982], - [-82.992767, 70.303589], - [-83.04805, 70.306931], - [-82.813316, 70.20665], - [-82.103058, 70.065262], - [-81.906387, 69.970833], - [-81.710831, 69.934143], - [-81.768066, 69.901382], - [-81.744453, 69.871643], - [-81.850281, 69.884987], - [-81.854172, 69.855553], - [-81.960281, 69.844147], - [-82.019997, 69.873871], - [-82.144997, 69.823883], - [-82.118607, 69.810532], - [-82.143341, 69.781372], - [-82.29805, 69.801376], - [-82.262787, 69.823883], - [-82.321953, 69.830276], - [-82.206673, 69.828598], - [-82.303047, 69.856644], - [-82.463623, 69.841087], - [-83.066673, 70.010818], - [-83.265839, 70.013893], - [-83.345284, 69.977203], - [-83.715286, 69.947746], - [-84.728607, 70.010269], - [-84.823334, 70.02832], - [-84.870827, 70.071663], - [-84.796951, 70.107758], - [-84.982773, 70.064148], - [-85.666397, 70.104713], - [-85.869453, 70.085541], - [-85.851669, 70.038307], - [-85.618057, 70.070831], - [-85.236107, 69.989151], - [-85.726936, 69.99054], - [-86.254997, 70.105553], - [-86.551941, 70.234993], - [-86.548889, 70.296654], - [-86.574722, 70.311371], - [-86.55249, 70.346939], - [-86.591667, 70.358322], - [-86.512787, 70.416382], - [-86.294998, 70.472763], - [-86.390839, 70.522217], - [-86.339447, 70.486366], - [-86.400558, 70.463318], - [-86.678047, 70.373032], - [-86.647232, 70.319443], - [-86.876099, 70.326103], - [-86.88945, 70.357758], - [-86.739441, 70.382477], - [-86.930557, 70.391937], - [-86.870537, 70.413879], - [-86.978058, 70.420822], - [-86.921387, 70.45166], - [-86.953339, 70.467209], - [-87.132767, 70.439148], - [-87.144173, 70.404427], - [-87.246948, 70.383041], - [-87.010559, 70.371643], - [-86.972778, 70.351929], - [-86.985817, 70.281662], - [-87.756958, 70.332489], - [-87.785553, 70.30304], - [-87.613327, 70.281937], - [-87.866386, 70.238876], - [-88.01445, 70.295532], - [-88.250557, 70.321381], - [-88.206673, 70.352478], - [-87.999443, 70.303864], - [-87.889999, 70.32193], - [-88.402222, 70.448318], - [-88.693047, 70.455261], - [-88.88945, 70.52887], - [-89.003891, 70.624977], - [-89.00528, 70.656937], - [-89.338058, 70.795258], - [-89.448334, 70.902481], - [-89.222778, 70.935532], - [-89.195267, 70.968323], - [-89.559433, 71.090271], - [-89.228333, 71.072769], - [-89.203056, 71.03804], - [-89.134453, 71.026932], - [-88.634171, 71.052467], - [-88.38028, 71.011932], - [-88.318619, 70.953873], - [-88.025284, 70.930542], - [-87.353607, 70.945251], - [-87.308609, 70.995529], - [-87.246948, 71.009163], - [-87.002792, 70.994141], - [-87.385834, 71.041931], - [-87.712784, 71.126083], - [-87.848892, 71.184982], - [-87.829453, 71.261932], - [-87.911667, 71.266937], - [-88.084442, 71.20665], - [-89.662514, 71.307747], - [-89.899727, 71.351379], - [-90, 71.455101], - [-89.951401, 71.520477], - [-90.040428, 71.597748], - [-89.795837, 71.75972], - [-89.914436, 71.791656], - [-89.883621, 71.813309], - [-89.954453, 71.820541], - [-89.955276, 71.851089], - [-90, 71.864891], - [-90.119453, 71.926376], - [-90, 72.057114], - [-89.738892, 72.124977], - [-89.664719, 72.113312], - [-89.574722, 72.163597], - [-89.780563, 72.157494], - [-89.897232, 72.188583], - [-89.960281, 72.251663], - [-89.928596, 72.265823], - [-89.956673, 72.321663], - [-89.827499, 72.396942], - [-89.907501, 72.432213], - [-89.781387, 72.426933], - [-89.897957, 72.43544], - [-89.79361, 72.462769], - [-89.753891, 72.605553], - [-89.572777, 72.616928], - [-89.545273, 72.632477], - [-89.556953, 72.663879], - [-89.470551, 72.666092], - [-89.574722, 72.698868], - [-89.547501, 72.76944], - [-89.574722, 72.785263], - [-89.30278, 72.75], - [-89.245537, 72.785263], - [-89.414436, 72.825272], - [-89.295837, 72.919434], - [-89.361389, 72.991653], - [-89.205276, 73.013611], - [-89.308884, 73.048317], - [-89.235817, 73.120819], - [-89.125816, 73.146103], - [-89.180557, 73.156372], - [-89.087784, 73.207207], - [-88.888062, 73.212769], - [-89.046661, 73.246643], - [-88.95639, 73.293053], - [-88.618881, 73.280273], - [-88.856949, 73.336113], - [-88.074722, 73.627762], - [-87.456673, 73.760269], - [-86.54834, 73.85054], - [-85.239441, 73.821663], - [-84.837784, 73.741653], - [-84.956123, 73.665268], - [-85.573334, 73.508041], - [-85.915283, 73.366089], - [-86.11972, 73.246094], - [-86.32251, 73.046371], - [-86.65361, 72.868874], - [-86.740547, 72.727768], - [-86.68222, 72.683594], - [-86.705276, 72.665543], - [-86.686943, 72.644707], - [-86.397232, 72.534988], - [-86.240829, 72.420258], - [-86.435822, 72.270264], - [-86.459167, 72.201393], - [-86.429443, 72.168587], - [-86.420547, 72.012772], - [-86.330841, 71.98027], - [-86.332497, 71.947197], - [-86.11055, 71.783051], - [-85.747498, 71.64444], - [-85.500839, 71.511108], - [-84.934723, 71.41832], - [-84.915009, 71.388321], - [-84.951111, 71.34082], - [-84.872223, 71.333328], - [-84.832779, 71.27887], - [-85.254181, 71.287491], - [-85.273331, 71.277481], - [-85.246948, 71.262497], - [-85.172501, 71.272491], - [-85.234444, 71.247208], - [-85.472229, 71.231369], - [-85.393066, 71.222214], - [-85.399986, 71.193863], - [-85.463898, 71.211113], - [-85.514717, 71.176086], - [-85.729172, 71.2061], - [-85.93277, 71.178864], - [-86.248894, 71.058594], - [-86.820007, 70.988586], - [-86.601936, 70.971649], - [-86.270279, 71.002777], - [-85.802223, 71.135818], - [-85.411667, 71.174423], - [-85.16333, 71.136658], - [-85.088898, 71.151932], - [-85.116943, 71.179153], - [-84.875267, 71.17276], - [-84.84584, 71.147774], - [-84.875816, 71.069992], - [-84.96611, 71.100273], - [-85.127434, 71.087479], - [-84.960281, 71.07222], - [-85.005569, 71.030548], - [-84.929718, 71.00444], - [-84.975281, 70.945251], - [-84.958618, 70.919434], - [-84.79361, 70.926651], - [-84.748047, 70.988037], - [-84.829727, 71.073318], - [-84.801392, 71.183319], - [-84.665558, 71.217209], - [-84.79306, 71.278053], - [-84.740829, 71.377197], - [-84.762512, 71.406647], - [-84.526108, 71.468872], - [-84.561394, 71.549988], - [-84.65834, 71.583878], - [-84.606659, 71.649429], - [-84.782784, 71.678864], - [-84.867218, 71.668053], - [-84.840561, 71.641937], - [-84.876099, 71.627762], - [-85.279716, 71.668587], - [-85.579727, 71.784988], - [-85.43277, 71.806374], - [-85.559723, 71.900543], - [-86.022781, 71.980553], - [-86.050827, 72.011108], - [-85.9664, 71.97998], - [-85.98111, 72.028587], - [-85.72139, 72.004707], - [-85.776398, 72.023613], - [-85.764717, 72.043053], - [-85.509453, 72.068047], - [-85.495003, 72.089157], - [-85.540558, 72.124153], - [-85.396667, 72.137497], - [-85.509171, 72.178864], - [-85.496109, 72.210274], - [-85.538063, 72.23526], - [-85.41777, 72.220261], - [-85.5, 72.248322], - [-85.47084, 72.262497], - [-84.919998, 72.232758], - [-84.273903, 72.022491], - [-84.184723, 71.930542], - [-84.158623, 71.977203], - [-84.189438, 72.008614], - [-84.164719, 72.021103], - [-84.346657, 72.069717], - [-84.413887, 72.119713], - [-84.378326, 72.127762], - [-84.613327, 72.163597], - [-84.743057, 72.223602], - [-84.669724, 72.235809], - [-84.933319, 72.284416], - [-84.816101, 72.352768], - [-84.521118, 72.35054], - [-84.442207, 72.383041], - [-84.864166, 72.366928], - [-84.870827, 72.400818], - [-84.786667, 72.408867], - [-84.776947, 72.458328], - [-85.127213, 72.351929], - [-85.115829, 72.383041], - [-85.33902, 72.406418], - [-85.535278, 72.469711], - [-85.617218, 72.545532], - [-85.475563, 72.575272], - [-85.623894, 72.586929], - [-85.705276, 72.637772], - [-85.68222, 72.680817], - [-85.708344, 72.743042], - [-85.650284, 72.864151], - [-85.688049, 72.8936], - [-85.570557, 72.966927], - [-85.283073, 72.964432], - [-83.955276, 72.748322], - [-85.091667, 72.983047], - [-85.059998, 72.996643], - [-85.129173, 73.031372], - [-85.178329, 73.006653], - [-85.535278, 73.021927], - [-85.406952, 73.136383], - [-85.277222, 73.068878], - [-85.142227, 73.047493], - [-85.229172, 73.123032], - [-85.148354, 73.141663], - [-84.829727, 73.085541], - [-83.867767, 73.029709], - [-83.634453, 72.982483], - [-83.784157, 73.040543], - [-84.584442, 73.115807], - [-85.170547, 73.210823], - [-85.188599, 73.228867], - [-85.134171, 73.305542], - [-85.017227, 73.348328], - [-84.786942, 73.388046], - [-84.654999, 73.305542], - [-84.35527, 73.223038], - [-84.413063, 73.272217], - [-84.586937, 73.323036], - [-84.598343, 73.362488], - [-84.656113, 73.390549], - [-84.171387, 73.475273], - [-83.751923, 73.42749], - [-83.689438, 73.323608], - [-83.600563, 73.297493], - [-83.594162, 73.325272], - [-83.650833, 73.367477], - [-83.625, 73.415268], - [-83.652496, 73.445251], - [-84.006958, 73.50972], - [-83.201111, 73.660812], - [-83.045837, 73.645828], - [-82.840843, 73.732758], - [-81.57251, 73.719711], - [-81.45723, 73.691093], - [-81.449997, 73.65332], - [-81.263062, 73.564148], - [-81.180283, 73.415268], - [-81.204727, 73.266663], - [-80.59639, 73.148041], - [-80.549438, 73.08194], - [-80.59584, 73.045822], - [-80.584732, 73.013893], - [-80.647507, 72.99054], - [-80.638344, 72.92276], - [-80.487778, 72.828598], - [-80.319458, 72.799149], - [-80.247498, 72.730553], - [-80.541382, 72.62886], - [-80.531952, 72.573608], - [-80.94249, 72.455261], - [-81.099731, 72.353592], - [-81.176102, 72.338593], - [-81.199722, 72.289146], - [-81.37944, 72.241653], - [-81.229721, 72.258614], - [-80.880547, 72.438309], - [-80.516403, 72.503883], - [-80.492767, 72.453049], - [-80.514183, 72.3797], - [-80.794159, 72.284714], - [-80.864166, 72.225273], - [-80.838898, 72.199707], - [-80.969162, 72.199997], - [-80.56723, 72.072769], - [-80.646118, 72.063309], - [-80.771393, 72.104156], - [-81.025558, 72.091927], - [-80.996109, 72.066673], - [-81.08667, 72.046654], - [-80.847229, 72.056641], - [-80.79277, 72.027771], - [-80.827789, 72.001663], - [-80.821404, 71.956383], - [-80.975014, 71.895828], - [-80.950287, 71.881088], - [-80.756119, 71.934143], - [-80.746948, 71.982483], - [-80.38501, 72.048317], - [-80.347229, 72.088318], - [-80.486656, 72.189423], - [-80.241096, 72.197746], - [-80.306381, 72.255257], - [-80.260834, 72.294983], - [-80.155838, 72.273613], - [-79.991669, 72.176651], - [-79.674438, 72.126648], - [-79.979973, 72.217178], - [-80.164436, 72.327477], - [-80.064713, 72.383614], - [-79.874443, 72.426933], - [-79.851936, 72.462769], - [-79.870827, 72.483047], - [-79.836937, 72.498596], - [-79.692207, 72.466927], - [-79.769173, 72.412201], - [-79.595551, 72.334717], - [-79.638901, 72.289146], - [-79.768623, 72.245247], - [-79.75, 72.215553], - [-79.565826, 72.275269], - [-79.450562, 72.194977], - [-79.467216, 72.24942], - [-79.54361, 72.285812], - [-79.329727, 72.397217], - [-79.027786, 72.277481], - [-78.948608, 72.273041], - [-78.985817, 72.234154], - [-78.943604, 72.193039], - [-79.005569, 72.143883], - [-79.036392, 72.069443], - [-79.233063, 71.976379], - [-79.026672, 71.970543], - [-78.551392, 71.861099], - [-78.508347, 71.876373], - [-78.592499, 71.903053], - [-78.607498, 71.938583], - [-78.923607, 72.014999], - [-78.876099, 72.06192], - [-78.854446, 72.173027], - [-78.476097, 72.087196], - [-78.381943, 71.92804], - [-78.184998, 71.81749], - [-77.904449, 71.768051], - [-78.139999, 71.830551], - [-78.308884, 71.921097], - [-78.305267, 71.94693], - [-78.156952, 71.968323], - [-77.96611, 71.837196], - [-77.797234, 71.792763], - [-77.759453, 71.75], - [-77.698036, 71.81192], - [-77.907227, 71.848038], - [-78.103607, 71.944702], - [-78.116386, 71.976929], - [-78.32251, 71.985809], - [-78.375549, 72.085823], - [-78.436943, 72.117477], - [-78.854721, 72.214432], - [-78.86055, 72.23526], - [-78.749161, 72.280273], - [-78.819733, 72.314697], - [-78.79277, 72.337769], - [-78.604172, 72.359421], - [-78.515839, 72.330551], - [-78.529167, 72.235527], - [-78.40834, 72.166382], - [-78.384171, 72.175537], - [-78.411118, 72.21666], - [-78.472778, 72.242477], - [-78.445831, 72.281097], - [-78.468338, 72.314987], - [-78.40834, 72.325821], - [-77.665283, 72.204712], - [-77.644447, 72.186653], - [-77.665009, 72.16304], - [-77.620537, 72.136108], - [-77.657227, 72.094147], - [-77.589722, 72.127472], - [-77.622223, 72.164429], - [-77.588898, 72.181374], - [-77.289436, 72.183319], - [-76.997223, 72.128036], - [-77.278061, 72.19693], - [-77.549988, 72.198029], - [-78.389183, 72.373032], - [-78.559158, 72.438026], - [-78.556664, 72.50444], - [-78.430557, 72.586647], - [-77.613892, 72.751663], - [-77.063049, 72.753326], - [-76.753067, 72.720543], - [-76.65361, 72.670822], - [-76.681671, 72.642487], - [-76.166946, 72.58638], - [-76.162514, 72.526093], - [-76.107773, 72.473038], - [-76.036942, 72.489433], - [-76.064713, 72.549988], - [-75.931953, 72.583603], - [-75.231667, 72.500549], - [-75, 72.29837], - [-74.947487, 72.24971], - [-75.238327, 72.118317], - [-75.607498, 72.143333], - [-76.015007, 72.086647], - [-76.410553, 71.859154], - [-76.374443, 71.842484], - [-76.238602, 71.931091], - [-76.089722, 71.978867], - [-76.01973, 72.046097], - [-75.796661, 72.103592], - [-75.528343, 72.120819], - [-75.233322, 72.084152], - [-75.221123, 72.064697], - [-75.281677, 72.038589], - [-75.606377, 71.989433], - [-75.692207, 71.833328], - [-75.80249, 71.750549], - [-76.096123, 71.697479], - [-75.88028, 71.702477], - [-75.794998, 71.725807], - [-75.654999, 71.826103], - [-75.570282, 71.91748], - [-75.558327, 71.976646], - [-75.197769, 72.023323], - [-75.035828, 72.125809], - [-74.244164, 72.073036], - [-74.117767, 71.969994], - [-74.212219, 71.912773], - [-74.166107, 71.874687], - [-74.230003, 71.822769], - [-74.439987, 71.801933], - [-74.539436, 71.828873], - [-74.575012, 71.818878], - [-74.551392, 71.794434], - [-74.713623, 71.73526], - [-75.389999, 71.681091], - [-75.04361, 71.699707], - [-74.933609, 71.663879], - [-75.406387, 71.512207], - [-74.672783, 71.692467], - [-74.631943, 71.646378], - [-74.713058, 71.583878], - [-75, 71.535583], - [-75.152222, 71.466087], - [-75.033333, 71.513046], - [-74.838333, 71.521927], - [-74.816101, 71.493317], - [-74.925552, 71.454163], - [-74.736938, 71.429703], - [-74.699432, 71.390823], - [-75.087219, 71.200272], - [-75.065002, 71.180817], - [-74.874161, 71.247757], - [-74.637512, 71.380539], - [-74.638062, 71.426651], - [-74.73555, 71.472488], - [-74.736107, 71.530548], - [-74.620003, 71.558029], - [-74.522781, 71.662201], - [-74.381943, 71.6772], - [-74.288597, 71.727478], - [-74.109161, 71.735809], - [-74.128883, 71.671654], - [-74.254463, 71.606644], - [-74.243057, 71.569717], - [-74.156387, 71.532211], - [-74.2164, 71.612762], - [-74.09639, 71.652771], - [-73.977783, 71.75972], - [-73.704453, 71.774986], - [-73.686111, 71.718872], - [-73.604172, 71.772217], - [-73.620003, 71.716087], - [-73.791382, 71.661102], - [-73.797783, 71.626648], - [-73.890839, 71.609421], - [-73.888901, 71.582489], - [-73.98555, 71.534149], - [-74.012222, 71.483597], - [-73.988892, 71.46138], - [-74.319168, 71.409416], - [-74.02861, 71.437759], - [-74.066963, 71.395538], - [-74.063889, 71.336929], - [-74.179169, 71.306374], - [-74.091667, 71.285538], - [-74.235001, 71.198318], - [-73.996658, 71.324158], - [-74.006958, 71.367203], - [-73.968613, 71.419434], - [-73.897781, 71.445534], - [-73.867767, 71.525818], - [-73.746948, 71.585274], - [-73.621933, 71.583328], - [-73.565002, 71.551933], - [-73.619453, 71.515823], - [-73.649437, 71.44136], - [-73.583328, 71.388321], - [-73.63501, 71.359421], - [-73.51889, 71.37915], - [-73.503067, 71.424698], - [-73.446953, 71.440262], - [-73.38028, 71.385269], - [-73.464188, 71.372208], - [-73.681953, 71.246094], - [-73.735817, 71.093323], - [-73.898354, 71.05748], - [-73.674438, 71.088318], - [-73.673607, 71.16304], - [-73.623611, 71.22554], - [-73.433884, 71.308594], - [-73.436111, 71.340553], - [-73.349731, 71.345261], - [-73.049438, 71.268333], - [-73.271942, 71.220543], - [-73.235001, 71.162201], - [-73.294449, 71.092484], - [-73.450844, 71.035263], - [-73.377487, 70.980553], - [-73.399437, 71.041931], - [-73.267059, 71.081779], - [-73.196953, 71.13472], - [-73.16861, 71.170532], - [-73.180283, 71.211647], - [-72.995003, 71.25], - [-72.951401, 71.316093], - [-72.993332, 71.401932], - [-72.759171, 71.426933], - [-72.838058, 71.506378], - [-72.649727, 71.536926], - [-72.557503, 71.660263], - [-71.554169, 71.503883], - [-71.444443, 71.468597], - [-71.428329, 71.428589], - [-71.301941, 71.388603], - [-71.123322, 71.271652], - [-71.340561, 71.170532], - [-71.464447, 71.062477], - [-71.910828, 71.107758], - [-72.099731, 71.063873], - [-72.101936, 71.016098], - [-72.179718, 70.962196], - [-72.297234, 70.947197], - [-72.334167, 70.878593], - [-72.771667, 70.815811], - [-72.30278, 70.867203], - [-72.16362, 70.83638], - [-72.333069, 70.750816], - [-72.316391, 70.723312], - [-72.381943, 70.6772], - [-72.623322, 70.628036], - [-72.542503, 70.609993], - [-72.326111, 70.667213], - [-72.185547, 70.766388], - [-71.626099, 70.863312], - [-71.326111, 70.885536], - [-71.185547, 70.851929], - [-71.289169, 70.908867], - [-71.208344, 71.00499], - [-70.836121, 71.114433], - [-70.613892, 71.062187], - [-70.51445, 70.921097], - [-70.726669, 70.829987], - [-70.746948, 70.745529], - [-71.100563, 70.654984], - [-71.175278, 70.583603], - [-71.592773, 70.606934], - [-71.583618, 70.546371], - [-71.737213, 70.483322], - [-71.748894, 70.444427], - [-71.960564, 70.420822], - [-71.727219, 70.41748], - [-71.755569, 70.329163], - [-71.836937, 70.289978], - [-71.733612, 70.313873], - [-71.674713, 70.369713], - [-71.655273, 70.472488], - [-71.525284, 70.524696], - [-71.506958, 70.576393], - [-71.16777, 70.531937], - [-71.273903, 70.336113], - [-71.32251, 70.312759], - [-71.285278, 70.251389], - [-71.535828, 70.019707], - [-71.33168, 70.128593], - [-71.29834, 70.19664], - [-71.210564, 70.262207], - [-71.231949, 70.294983], - [-71.060822, 70.520264], - [-70.98999, 70.524429], - [-71.053047, 70.55304], - [-70.997223, 70.625809], - [-70.844162, 70.641937], - [-70.611938, 70.723602], - [-69.892776, 70.883331], - [-69.771118, 70.857483], - [-69.87944, 70.768051], - [-70.084732, 70.683594], - [-70.245003, 70.638321], - [-70.454727, 70.627762], - [-70.478882, 70.606644], - [-70.397507, 70.524147], - [-70.477783, 70.47554], - [-70.308037, 70.498871], - [-70.39389, 70.611923], - [-70.049438, 70.632751], - [-70.027222, 70.589706], - [-69.978607, 70.65332], - [-69.775833, 70.682213], - [-69.808609, 70.70166], - [-69.771118, 70.712769], - [-69.665558, 70.682213], - [-69.620003, 70.758041], - [-69.451401, 70.791931], - [-69.226936, 70.779984], - [-69.111656, 70.721916], - [-68.284157, 70.540543], - [-68.289719, 70.5], - [-68.451401, 70.409416], - [-68.458618, 70.369431], - [-68.575844, 70.396103], - [-68.54805, 70.447746], - [-68.582497, 70.464432], - [-68.661667, 70.431091], - [-68.651108, 70.345833], - [-68.682503, 70.329437], - [-69.414436, 70.253601], - [-69.66806, 70.198593], - [-69.829453, 70.15416], - [-69.91777, 70.085541], - [-70.185547, 70.028053], - [-69.901108, 70.048317], - [-69.815552, 69.984711], - [-70.148621, 69.962196], - [-70.291382, 69.889427], - [-70.450562, 69.857208], - [-70.384171, 69.837196], - [-70.076683, 69.958038], - [-69.777222, 69.963608], - [-69.735283, 69.99054], - [-69.804718, 70.038879], - [-69.79277, 70.080833], - [-69.675827, 70.139709], - [-69.219452, 70.188309], - [-69.039436, 70.16748], - [-69.014717, 70.183037], - [-69.12944, 70.214706], - [-68.68277, 70.203598], - [-68.642502, 70.149429], - [-68.753067, 70.105263], - [-68.734161, 70.073036], - [-68.783073, 70.044434], - [-69.106377, 69.974426], - [-69.426941, 69.819717], - [-69.683884, 69.839981], - [-69.805832, 69.819992], - [-69.998047, 69.669983], - [-69.982773, 69.61554], - [-69.741943, 69.803589], - [-69.395844, 69.777771], - [-69.076683, 69.923866], - [-68.933884, 69.951103], - [-68.639717, 69.939972], - [-68.669449, 69.981659], - [-68.541672, 70.021378], - [-68.565277, 70.049423], - [-68.338333, 70.064148], - [-68.20723, 70.109421], - [-68.229446, 70.135269], - [-68.333618, 70.13916], - [-68.291107, 70.163307], - [-68.345551, 70.163307], - [-68.345284, 70.188026], - [-68.298889, 70.182213], - [-68.318619, 70.218597], - [-68.160004, 70.282761], - [-68.151108, 70.313873], - [-68.055832, 70.322769], - [-67.909439, 70.275543], - [-67.794724, 70.258881], - [-67.575562, 70.158333], - [-67.242493, 69.958328], - [-67.117767, 69.726379], - [-67.406952, 69.714706], - [-67.761124, 69.778587], - [-67.996109, 69.774429], - [-68.208054, 69.715553], - [-68.329453, 69.627762], - [-68.699997, 69.645828], - [-69.220001, 69.535812], - [-69.688889, 69.569443], - [-70.035278, 69.537201], - [-69.885834, 69.507217], - [-69.66333, 69.548317], - [-69.299988, 69.506104], - [-68.668327, 69.59082], - [-67.982224, 69.457489], - [-67.792221, 69.484154], - [-67.258347, 69.467484], - [-66.795547, 69.341087], - [-66.694992, 69.281662], - [-66.646667, 69.203598], - [-66.758621, 69.128036], - [-66.996948, 69.177757], - [-67.164719, 69.179428], - [-67.207779, 69.143051], - [-67.343063, 69.183319], - [-67.676392, 69.169434], - [-68.184479, 69.308006], - [-68.375549, 69.294708], - [-68.984444, 69.356934], - [-69.257782, 69.270264], - [-68.941101, 69.332489], - [-68.445267, 69.270264], - [-68.159439, 69.266098], - [-68.077499, 69.217484], - [-68.129707, 69.197746], - [-68.967773, 69.2211], - [-68.502502, 69.198593], - [-68.70723, 69.138321], - [-69.075562, 69.10582], - [-68.926941, 69.098328], - [-68.958893, 69.003052], - [-69.028877, 68.971367], - [-68.930557, 68.992752], - [-68.872498, 69.084991], - [-68.506393, 69.161652], - [-68.178329, 69.146652], - [-67.705841, 69.016388], - [-68.029449, 68.971367], - [-68.314163, 69.010536], - [-68.556107, 68.964157], - [-68.303047, 68.985809], - [-68.04834, 68.943863], - [-68.051941, 68.910263], - [-68.089722, 68.901382], - [-67.977493, 68.855553], - [-68.485817, 68.890266], - [-67.861389, 68.805542], - [-67.771393, 68.781372], - [-67.872772, 68.771652], - [-68.565552, 68.847214], - [-68.611656, 68.835823], - [-68.48999, 68.791931], - [-68.605827, 68.781097], - [-69.280838, 68.875809], - [-69.394447, 68.857758], - [-69.152222, 68.828049], - [-69.383904, 68.816383], - [-68.957497, 68.790543], - [-68.959732, 68.756653], - [-68.997772, 68.751663], - [-68.97084, 68.737762], - [-68.868057, 68.766098], - [-68.529167, 68.746643], - [-68.049438, 68.681664], - [-68.168327, 68.668869], - [-68.087219, 68.654984], - [-68.094452, 68.627762], - [-68.209732, 68.655823], - [-68.359444, 68.627197], - [-68.657784, 68.656372], - [-68.902496, 68.603592], - [-68.768066, 68.594147], - [-68.628601, 68.635536], - [-68.483322, 68.596939], - [-68.739723, 68.563873], - [-68.460007, 68.562187], - [-68.337784, 68.593323], - [-68.136673, 68.57222], - [-68.126938, 68.530823], - [-67.922783, 68.550812], - [-67.939438, 68.522774], - [-67.904167, 68.455833], - [-67.958618, 68.396103], - [-67.898621, 68.421654], - [-67.864441, 68.549423], - [-67.780838, 68.529984], - [-67.669861, 68.561256], - [-67.492218, 68.527206], - [-67.628052, 68.496368], - [-67.612503, 68.379433], - [-67.551102, 68.414429], - [-67.553329, 68.488876], - [-67.378883, 68.469994], - [-67.316391, 68.496094], - [-67.272232, 68.45166], - [-67.232498, 68.480553], - [-67.191673, 68.426376], - [-67.324448, 68.407761], - [-67.105003, 68.414146], - [-67.112778, 68.478867], - [-66.974716, 68.436096], - [-66.803047, 68.467209], - [-66.66362, 68.43248], - [-66.801102, 68.424149], - [-66.808609, 68.399986], - [-66.904999, 68.416382], - [-66.936394, 68.37442], - [-67.011124, 68.353592], - [-67.40834, 68.393333], - [-67.781387, 68.337196], - [-67.865829, 68.299713], - [-67.86972, 68.259987], - [-67.752502, 68.318878], - [-67.536118, 68.34166], - [-67.586937, 68.301651], - [-67.576683, 68.2686], - [-67.695267, 68.242477], - [-67.570847, 68.253052], - [-67.533073, 68.271378], - [-67.540283, 68.299713], - [-67.39473, 68.354156], - [-67.325562, 68.344711], - [-67.323334, 68.319443], - [-67.243881, 68.358322], - [-67.016113, 68.318604], - [-67.235817, 68.294434], - [-67.327789, 68.243591], - [-67.327789, 68.181091], - [-67.387787, 68.146378], - [-67.598892, 68.164993], - [-67.396957, 68.124687], - [-67.304169, 68.1586], - [-67.274719, 68.244141], - [-67.011398, 68.294983], - [-66.930573, 68.262482], - [-66.765839, 68.238586], - [-66.842216, 68.163307], - [-66.823624, 68.126373], - [-66.965561, 68.063873], - [-66.946663, 68.013611], - [-66.836121, 68.095543], - [-66.694443, 68.143051], - [-66.670837, 68.12886], - [-66.678047, 68.04332], - [-66.735001, 67.982208], - [-66.647232, 68.015549], - [-66.594727, 68.143051], - [-66.309433, 68.127472], - [-66.366386, 68.083328], - [-66.460564, 68.070541], - [-66.24028, 68.073318], - [-66.184433, 68.013321], - [-66.320847, 67.978867], - [-66.405838, 67.898041], - [-66.398903, 67.868591], - [-66.746948, 67.875259], - [-66.406952, 67.829163], - [-66.386398, 67.772217], - [-66.338608, 67.900269], - [-66.276672, 67.954437], - [-65.947769, 68.040817], - [-65.960564, 68.14444], - [-65.911942, 68.158867], - [-65.857224, 68.106087], - [-65.902786, 68.080551], - [-65.853607, 68.073318], - [-66.032227, 67.952477], - [-65.941673, 67.880257], - [-66.009743, 67.803307], - [-66.008621, 67.625526], - [-65.936943, 67.765549], - [-65.953339, 67.821381], - [-65.804169, 67.863602], - [-65.763634, 67.909988], - [-65.81778, 67.968048], - [-65.514267, 67.992371], - [-65.443604, 67.992203], - [-65.464447, 67.920822], - [-65.613892, 67.780823], - [-65.426392, 67.696373], - [-65.356659, 67.594711], - [-65.318336, 67.601089], - [-65.369164, 67.702766], - [-65.554443, 67.78804], - [-65.486389, 67.820831], - [-65.406952, 67.922493], - [-65.201401, 67.954437], - [-65.141388, 67.990257], - [-65.169159, 68.027206], - [-65.110001, 68.015823], - [-65.001106, 68.055542], - [-64.713623, 67.981659], - [-64.847229, 67.934982], - [-65.066963, 67.931091], - [-64.94249, 67.912491], - [-65.048607, 67.844147], - [-65.113052, 67.857758], - [-65.139183, 67.790543], - [-65.04805, 67.825821], - [-65.008347, 67.785263], - [-65.15834, 67.729713], - [-65.200287, 67.643883], - [-65.162781, 67.638893], - [-65.129707, 67.71582], - [-64.919724, 67.790817], - [-64.810547, 67.777206], - [-64.816101, 67.710541], - [-64.862778, 67.69165], - [-64.820557, 67.688309], - [-64.768623, 67.709427], - [-64.75, 67.822769], - [-64.568069, 67.819992], - [-64.459167, 67.789703], - [-64.458618, 67.75972], - [-64.363892, 67.75444], - [-64.401398, 67.707764], - [-64.578339, 67.69693], - [-64.639183, 67.660538], - [-64.379913, 67.698097], - [-64.305557, 67.733597], - [-64.204178, 67.664703], - [-64.219452, 67.631653], - [-64.285828, 67.618874], - [-64.089996, 67.620819], - [-64.068069, 67.599716], - [-64.10556, 67.549423], - [-64.039719, 67.5336], - [-64.238602, 67.467484], - [-64.440552, 67.474991], - [-63.993328, 67.449142], - [-63.939991, 67.364433], - [-64.00029, 67.32666], - [-63.908051, 67.310532], - [-63.923889, 67.29332], - [-64.797501, 67.356644], - [-64.231949, 67.29332], - [-64.35611, 67.250267], - [-64.550278, 67.256104], - [-64.779167, 67.218872], - [-64.816101, 67.20694], - [-64.783333, 67.190262], - [-64.581947, 67.234154], - [-63.96278, 67.272491], - [-64.021393, 67.208878], - [-64.162216, 67.214432], - [-64.611938, 67.132477], - [-64.689987, 67.083603], - [-64.696953, 67.003326], - [-64.628326, 67.012207], - [-64.604172, 67.088318], - [-64.506393, 67.129433], - [-63.971378, 67.182213], - [-63.889999, 67.234993], - [-63.788342, 67.2397], - [-63.751671, 67.212486], - [-63.561939, 67.236923], - [-63.45055, 67.222488], - [-63.453892, 67.169434], - [-63.529442, 67.104431], - [-63.74445, 67.041092], - [-63.806389, 66.995819], - [-63.772499, 66.958878], - [-63.750561, 67.017487], - [-63.535278, 67.070831], - [-63.402779, 67.14444], - [-63.420841, 67.200272], - [-63.3325, 67.281937], - [-63.215279, 67.300262], - [-63.293621, 67.246368], - [-63.255001, 67.246643], - [-63.172501, 67.27832], - [-63.205002, 67.319153], - [-63.110279, 67.329987], - [-62.99778, 67.281372], - [-62.970829, 67.221367], - [-63.04472, 67.167213], - [-63.284451, 67.105263], - [-63.22028, 67.016937], - [-63.240841, 66.961647], - [-63.526138, 66.909271], - [-63.565552, 66.892487], - [-63.571949, 66.837486], - [-63.821671, 66.815811], - [-63.53944, 66.814697], - [-63.478882, 66.835823], - [-63.496948, 66.880814], - [-63.441669, 66.908333], - [-63.407219, 66.814423], - [-63.45306, 66.711647], - [-63.42028, 66.698868], - [-63.320278, 66.814148], - [-63.348339, 66.890823], - [-62.846951, 66.961929], - [-62.82056, 66.813599], - [-62.899731, 66.636658], - [-62.83527, 66.666382], - [-62.831669, 66.713882], - [-62.734169, 66.790817], - [-62.77417, 66.840553], - [-62.743061, 66.941933], - [-62.56889, 66.944138], - [-62.509731, 66.901932], - [-62.500561, 66.842484], - [-62.413059, 66.818604], - [-62.313332, 66.726929], - [-62.292782, 66.761658], - [-62.424721, 66.847488], - [-62.427219, 66.921097], - [-62.26112, 66.948029], - [-62.294449, 67.021378], - [-62.262501, 67.045258], - [-62.05444, 67.049149], - [-62.005562, 67.035263], - [-62.10223, 66.91304], - [-62.01889, 66.901657], - [-61.93861, 66.969437], - [-61.838051, 66.968597], - [-61.851391, 66.933037], - [-61.749729, 66.948029], - [-61.730831, 66.923866], - [-61.77084, 66.897491], - [-61.965549, 66.897491], - [-62.00806, 66.867752], - [-61.612782, 66.870819], - [-61.652779, 66.829987], - [-61.726662, 66.823608], - [-61.4575, 66.776093], - [-61.46278, 66.751663], - [-61.28944, 66.669983], - [-61.262501, 66.629433], - [-61.28278, 66.616928] - ] - ], - [ - [ - [-67.544159, 82.962196], - [-67.196663, 82.936096], - [-67.041107, 82.959717], - [-66.939987, 82.950546], - [-66.978058, 82.933037], - [-66.95723, 82.926933], - [-66.779449, 82.951393], - [-66.330002, 82.933868], - [-66.391388, 82.916092], - [-66.34111, 82.905823], - [-66.369164, 82.888321], - [-66.876663, 82.807213], - [-68.356659, 82.688026], - [-68.642502, 82.628593], - [-67.47084, 82.652206], - [-66.900284, 82.719437], - [-66.662514, 82.709717], - [-66.636673, 82.720261], - [-66.67749, 82.733322], - [-66.638344, 82.748871], - [-65.767776, 82.843048], - [-65.467773, 82.833328], - [-65.511124, 82.786652], - [-65.164436, 82.763046], - [-65.353058, 82.797211], - [-65.102783, 82.848038], - [-65.307503, 82.86554], - [-64.835564, 82.906937], - [-64.664169, 82.890266], - [-64.923607, 82.8647], - [-64.723053, 82.856369], - [-64.737778, 82.82222], - [-64.445267, 82.761932], - [-64.103058, 82.831673], - [-63.389172, 82.804977], - [-63.382221, 82.767761], - [-63.510281, 82.732483], - [-63.850281, 82.71582], - [-63.651661, 82.714996], - [-63.540001, 82.694427], - [-63.55722, 82.673866], - [-63.254452, 82.650269], - [-63.226101, 82.640266], - [-63.25584, 82.627197], - [-63.376389, 82.61998], - [-63.3475, 82.60498], - [-62.926109, 82.576103], - [-63.053329, 82.54332], - [-63.076672, 82.486099], - [-63.116661, 82.474991], - [-63.089439, 82.466377], - [-63.369999, 82.438873], - [-63.015839, 82.459717], - [-62.902222, 82.510269], - [-62.774441, 82.483871], - [-62.727779, 82.488037], - [-62.756672, 82.513893], - [-62.506672, 82.526657], - [-62.171669, 82.525543], - [-62.322781, 82.511108], - [-62.352779, 82.481087], - [-62.228611, 82.506943], - [-61.608101, 82.480377], - [-61.13139, 82.377472], - [-61.078609, 82.301086], - [-61.193329, 82.223602], - [-61.463619, 82.172493], - [-62.023891, 82.135818], - [-61.869999, 82.106644], - [-62.254169, 82.019989], - [-62.499439, 82.016937], - [-62.507229, 81.983597], - [-63.611671, 81.855263], - [-63.76112, 81.811653], - [-64.053047, 81.789978], - [-64.325287, 81.824707], - [-64.118057, 81.764427], - [-64.372772, 81.720833], - [-65.355827, 81.761108], - [-65.349991, 81.733597], - [-65.631378, 81.702477], - [-66.038597, 81.692467], - [-65.352493, 81.691933], - [-65.789436, 81.632202], - [-66.024719, 81.653053], - [-66.172501, 81.618042], - [-67.559723, 81.599152], - [-68.156662, 81.561096], - [-69.291382, 81.718872], - [-68.370827, 81.553589], - [-68.856949, 81.54776], - [-68.579453, 81.514427], - [-67.107773, 81.564987], - [-66.608612, 81.512772], - [-68.618057, 81.290543], - [-69.02861, 81.258614], - [-69.426941, 81.269989], - [-69.463058, 81.253326], - [-69.31221, 81.24054], - [-69.541672, 81.212486], - [-70.20639, 81.179703], - [-69.638062, 81.177467], - [-69.99527, 81.099426], - [-69.430557, 81.187187], - [-65.724716, 81.493874], - [-64.566391, 81.545532], - [-64.450562, 81.496933], - [-64.436394, 81.479431], - [-64.508621, 81.441933], - [-64.735283, 81.374153], - [-65.441383, 81.256378], - [-66.010277, 81.220261], - [-66.685822, 81.035812], - [-67.208618, 80.941933], - [-67.591377, 80.933037], - [-67.530838, 80.897491], - [-67.634453, 80.860809], - [-68.247223, 80.755547], - [-68.958618, 80.617477], - [-68.893066, 80.590553], - [-69.146667, 80.529709], - [-69.317497, 80.412491], - [-69.59639, 80.361099], - [-70.284439, 80.351089], - [-70.310822, 80.363037], - [-70.220001, 80.416931], - [-70.314163, 80.464432], - [-70.8125, 80.562759], - [-70.371109, 80.409149], - [-70.458893, 80.381363], - [-70.448334, 80.340271], - [-69.960564, 80.256378], - [-70.178596, 80.189148], - [-70.74472, 80.205833], - [-71.694443, 80.110809], - [-71.953339, 80.180542], - [-72.400284, 80.218597], - [-71.895554, 80.114151], - [-72.391678, 80.085541], - [-72.32251, 80.077209], - [-72.340561, 80.059143], - [-71.489166, 80.068878], - [-70.762512, 80.133331], - [-70.507782, 80.099716], - [-70.495003, 80.050812], - [-70.646667, 80.031937], - [-70.719452, 79.986366], - [-71.416397, 79.930267], - [-71.460564, 79.901382], - [-71.415833, 79.886658], - [-71.109734, 79.915268], - [-70.910278, 79.885818], - [-71.005836, 79.819717], - [-71.136124, 79.784988], - [-72.267227, 79.659149], - [-72.93277, 79.706383], - [-72.948608, 79.743591], - [-73.062767, 79.799423], - [-72.902496, 79.815262], - [-72.991814, 79.819847], - [-73.853333, 79.829163], - [-73.746948, 79.854156], - [-74.117493, 79.888893], - [-74.84639, 79.847214], - [-74.683884, 79.789978], - [-74.309433, 79.803307], - [-73.348892, 79.766098], - [-73.384743, 79.748871], - [-73.366653, 79.718048], - [-73.174438, 79.651657], - [-73.159729, 79.612198], - [-73.184433, 79.591927], - [-73.125816, 79.558319], - [-73.353882, 79.505829], - [-73.758057, 79.500267], - [-73.965012, 79.554703], - [-74.001106, 79.545822], - [-73.949997, 79.493874], - [-73.983322, 79.455551], - [-74.198334, 79.436096], - [-74.673607, 79.444138], - [-74.964447, 79.513046], - [-75.059433, 79.483871], - [-74.883057, 79.408333], - [-75.058327, 79.373871], - [-75.531387, 79.392487], - [-75.658623, 79.429153], - [-75.70639, 79.406647], - [-75.803329, 79.419434], - [-75.817497, 79.448318], - [-75.957497, 79.426086], - [-76.261124, 79.497757], - [-76.905838, 79.50972], - [-77.142502, 79.547493], - [-77.191383, 79.511108], - [-77.134453, 79.490257], - [-76.179169, 79.459717], - [-76.138901, 79.441093], - [-76.208054, 79.429703], - [-76.157501, 79.391663], - [-75.889999, 79.348038], - [-76.86972, 79.349426], - [-77.076401, 79.398331], - [-77.139999, 79.464706], - [-77.397507, 79.447197], - [-77.163887, 79.324707], - [-77.922501, 79.366379], - [-78.051392, 79.354713], - [-78.021393, 79.339981], - [-77.322243, 79.267487], - [-77.488052, 79.24498], - [-76.754463, 79.279984], - [-76.136124, 79.2686], - [-75.938889, 79.23027], - [-74.496948, 79.224991], - [-74.82695, 79.174149], - [-74.617493, 79.151382], - [-74.664436, 79.134163], - [-74.436661, 79.057747], - [-74.725014, 79.022774], - [-75.655563, 79.068329], - [-75.885277, 79.097488], - [-75.857773, 79.152206], - [-76.098053, 79.199142], - [-78.15889, 79.189972], - [-78.228607, 79.160538], - [-77.912216, 79.179428], - [-76.706123, 79.153053], - [-76.081947, 79.099716], - [-76.170547, 79.075821], - [-77.073334, 79.070831], - [-77.495003, 79.017761], - [-77.799988, 79.066673], - [-78.351097, 79.08638], - [-78.891388, 79.063309], - [-77.829453, 79.048027], - [-77.708344, 79.013046], - [-77.954178, 78.958878], - [-78.289993, 78.799149], - [-78.248047, 78.770264], - [-77.711937, 78.966087], - [-76.754181, 79.027771], - [-75.720284, 78.965553], - [-75.825562, 78.926086], - [-76.315552, 78.896103], - [-76.446114, 78.863876], - [-76.440277, 78.839432], - [-76.204727, 78.881088], - [-75.316101, 78.892212], - [-74.911118, 78.850807], - [-74.876938, 78.817757], - [-74.760559, 78.823608], - [-74.907227, 78.784149], - [-74.761673, 78.773613], - [-74.83168, 78.743317], - [-74.719727, 78.707489], - [-74.843338, 78.693039], - [-74.869453, 78.668587], - [-74.832779, 78.651932], - [-74.871109, 78.638321], - [-74.633331, 78.587769], - [-74.789993, 78.59137], - [-75.04805, 78.528053], - [-75.479446, 78.509987], - [-75.888344, 78.506104], - [-76.43721, 78.548599], - [-76.684433, 78.522217], - [-76.261948, 78.513611], - [-76.057503, 78.461929], - [-75.443604, 78.430542], - [-75.089996, 78.368874], - [-75.031387, 78.331383], - [-75.358612, 78.301651], - [-75.479172, 78.222214], - [-75.613617, 78.198029], - [-76.157227, 78.24054], - [-76.85527, 78.227478], - [-76.90834, 78.195534], - [-76.664436, 78.166092], - [-75.58139, 78.115807], - [-75.599167, 78.083328], - [-75.922783, 77.95665], - [-76.214722, 78.015266], - [-76.49028, 77.967209], - [-76.931107, 77.901382], - [-77.210831, 77.949142], - [-77.900558, 77.940811], - [-78.260834, 77.995247], - [-78.271118, 77.97554], - [-78.183319, 77.963318], - [-78.419724, 77.89888], - [-77.958618, 77.8022], - [-77.940552, 77.759987], - [-78.051666, 77.729713], - [-77.98111, 77.701393], - [-78.08139, 77.673309], - [-77.920273, 77.669983], - [-77.723053, 77.599152], - [-77.98056, 77.554703], - [-77.948608, 77.501938], - [-78.278343, 77.429153], - [-78.23111, 77.397774], - [-78.256668, 77.381927], - [-78.777222, 77.307213], - [-78.839722, 77.310257], - [-78.726936, 77.367477], - [-78.76445, 77.380814], - [-79.20723, 77.288307], - [-79.712219, 77.318329], - [-80.042503, 77.272774], - [-80.753342, 77.330551], - [-81.277496, 77.424423], - [-81.370537, 77.47554], - [-81.573624, 77.512772], - [-81.575012, 77.545258], - [-81.672783, 77.570541], - [-81.620003, 77.586113], - [-81.839722, 77.625809], - [-81.847504, 77.665817], - [-81.928329, 77.685806], - [-81.949432, 77.644989], - [-81.911392, 77.609421], - [-81.670547, 77.531662], - [-81.670837, 77.496094], - [-81.748047, 77.448029], - [-81.728882, 77.429977], - [-81.484734, 77.372208], - [-81.203888, 77.370529], - [-81.165833, 77.337196], - [-81.828339, 77.285812], - [-82.091949, 77.316383], - [-82.194443, 77.299713], - [-81.904449, 77.248596], - [-81.882492, 77.214157], - [-81.902222, 77.187187], - [-81.786942, 77.157494], - [-81.076401, 77.283051], - [-80.116096, 77.201393], - [-80.401672, 77.086647], - [-80.373047, 77.071381], - [-80.013344, 77.190536], - [-79.72583, 77.239967], - [-79.254997, 77.218597], - [-79.041946, 77.161102], - [-79.063049, 77.131088], - [-79.004997, 77.096939], - [-79.365547, 76.963318], - [-79.386948, 76.927467], - [-78.886124, 76.926933], - [-78.964722, 76.84166], - [-78.721939, 76.821381], - [-78.698036, 76.839432], - [-78.720001, 76.878593], - [-78.56723, 76.887207], - [-78.553879, 76.938583], - [-78.398354, 76.963043], - [-78.41362, 76.984993], - [-78.384453, 76.99971], - [-78.070282, 77.014427], - [-77.886948, 76.947746], - [-77.90834, 76.913597], - [-77.835007, 76.886932], - [-77.881104, 76.857758], - [-77.715012, 76.821114], - [-77.789436, 76.781662], - [-77.763901, 76.729156], - [-77.813049, 76.681931], - [-77.769447, 76.658333], - [-78.089722, 76.609421], - [-78.186111, 76.559708], - [-78.138901, 76.525818], - [-78.346947, 76.500816], - [-78.377487, 76.458038], - [-78.614723, 76.489967], - [-78.588333, 76.513046], - [-78.613327, 76.54776], - [-78.565552, 76.563873], - [-78.790558, 76.571663], - [-78.835251, 76.542572], - [-78.994164, 76.424423], - [-79.189713, 76.405823], - [-79.178329, 76.380257], - [-79.261124, 76.352203], - [-79.272781, 76.304153], - [-79.573624, 76.311653], - [-80.087219, 76.223602], - [-80.293327, 76.23526], - [-80.672501, 76.158333], - [-80.865829, 76.169144], - [-81.075844, 76.12915], - [-81.07695, 76.158043], - [-80.953613, 76.191093], - [-81.095551, 76.212196], - [-80.783623, 76.374977], - [-80.771667, 76.419144], - [-80.991669, 76.483047], - [-81.218613, 76.498596], - [-81.178047, 76.530823], - [-81.208054, 76.553589], - [-81.492493, 76.469437], - [-82.039719, 76.50943], - [-82.083618, 76.52388], - [-81.981949, 76.584717], - [-82.056664, 76.609154], - [-81.785828, 76.685532], - [-82.081123, 76.631088], - [-82.292503, 76.635536], - [-82.44249, 76.684982], - [-82.580292, 76.776382], - [-82.749733, 76.818604], - [-82.556107, 76.723038], - [-82.5625, 76.688873], - [-82.460564, 76.636108], - [-82.081123, 76.561096], - [-82.222229, 76.532761], - [-82.127213, 76.44165], - [-82.179718, 76.416931], - [-82.799553, 76.387192], - [-83.099731, 76.463882], - [-83.061943, 76.497208], - [-83.110001, 76.579987], - [-83.388062, 76.671097], - [-83.404999, 76.719994], - [-83.355827, 76.752213], - [-83.37999, 76.758881], - [-83.523331, 76.700821], - [-83.246384, 76.572769], - [-83.239166, 76.517487], - [-83.183884, 76.496643], - [-83.239723, 76.463318], - [-83.184433, 76.424988], - [-83.223618, 76.410538], - [-83.710564, 76.433037], - [-83.756668, 76.468597], - [-84.033623, 76.534714], - [-84.08667, 76.624153], - [-84.284439, 76.657761], - [-84.330841, 76.647491], - [-84.193047, 76.609993], - [-84.249733, 76.536926], - [-84.180832, 76.484993], - [-84.236938, 76.443588], - [-84.636948, 76.434418], - [-84.78389, 76.469994], - [-84.795273, 76.503883], - [-84.950562, 76.577766], - [-85.028343, 76.574997], - [-85.051392, 76.51416], - [-84.960281, 76.420532], - [-84.397507, 76.330551], - [-84.381943, 76.31192], - [-84.429169, 76.30304], - [-85.194717, 76.281097], - [-85.262512, 76.310806], - [-85.434433, 76.304977], - [-85.73555, 76.355553], - [-86.372223, 76.386383], - [-86.412216, 76.407761], - [-86.41861, 76.469147], - [-86.211937, 76.535263], - [-86.630341, 76.635132], - [-86.301392, 76.524696], - [-86.655563, 76.467209], - [-86.632767, 76.441933], - [-86.71666, 76.3461], - [-87.130829, 76.384163], - [-87.154999, 76.394989], - [-87.118332, 76.420822], - [-87.140556, 76.437187], - [-87.42305, 76.45694], - [-87.394173, 76.503052], - [-87.50029, 76.535263], - [-87.462784, 76.586929], - [-87.536942, 76.617477], - [-87.580002, 76.611366], - [-87.566391, 76.575272], - [-87.598618, 76.540817], - [-87.493057, 76.503883], - [-87.553596, 76.451103], - [-87.429993, 76.417763], - [-87.498894, 76.382202], - [-87.416397, 76.348038], - [-87.547234, 76.370819], - [-87.591377, 76.341087], - [-87.742767, 76.346367], - [-87.816101, 76.411102], - [-87.948334, 76.357758], - [-88.351097, 76.384987], - [-88.434433, 76.402206], - [-88.36055, 76.431091], - [-88.438316, 76.464157], - [-88.355827, 76.481087], - [-88.349442, 76.514427], - [-88.52417, 76.62442], - [-88.478333, 76.656097], - [-88.559158, 76.727768], - [-88.476669, 76.783333], - [-88.51889, 76.816093], - [-88.704453, 76.710274], - [-88.584442, 76.635818], - [-88.660553, 76.599991], - [-88.556664, 76.589432], - [-88.495537, 76.5522], - [-88.515839, 76.52388], - [-88.489441, 76.503326], - [-88.611938, 76.452209], - [-88.608047, 76.399986], - [-88.677223, 76.401932], - [-88.693329, 76.420822], - [-88.658051, 76.475807], - [-88.610283, 76.482758], - [-88.68277, 76.525818], - [-88.644173, 76.565262], - [-88.733612, 76.593872], - [-88.796387, 76.550262], - [-88.775284, 76.524429], - [-88.832779, 76.498871], - [-88.781387, 76.466377], - [-88.827133, 76.440308], - [-88.921112, 76.405258], - [-89.033333, 76.41832], - [-89.045547, 76.447479], - [-89.213333, 76.429703], - [-89.430557, 76.497757], - [-89.403061, 76.524696], - [-89.441673, 76.565536], - [-89.541382, 76.541656], - [-89.676666, 76.567207], - [-89.603607, 76.621918], - [-89.411667, 76.680267], - [-89.456947, 76.713318], - [-89.388901, 76.729713], - [-89.468063, 76.753601], - [-89.533333, 76.853592], - [-88.986938, 76.954437], - [-88.995537, 76.984711], - [-88.74028, 77.002777], - [-88.464447, 77.065536], - [-88.393623, 77.0961], - [-88.545837, 77.100273], - [-88.426392, 77.120819], - [-87.690552, 77.135269], - [-87.617493, 77.094994], - [-87.349167, 77.106087], - [-87.460564, 77.125526], - [-87.356377, 77.175537], - [-87.069168, 77.182747], - [-86.804443, 77.127197], - [-86.889999, 77.164429], - [-86.614166, 77.180542], - [-87.210564, 77.205261], - [-87.166946, 77.233871], - [-86.910553, 77.260269], - [-87.012222, 77.274986], - [-87.183884, 77.273613], - [-87.248894, 77.303307], - [-86.851936, 77.360527], - [-87.391113, 77.330551], - [-87.711937, 77.359993], - [-87.698334, 77.390823], - [-87.784729, 77.429703], - [-87.642502, 77.48027], - [-87.694443, 77.537201], - [-88.214722, 77.650543], - [-88.150284, 77.72554], - [-88.162781, 77.758331], - [-88.232773, 77.768883], - [-88.103882, 77.813599], - [-88.223053, 77.855553], - [-88.01001, 77.819992], - [-87.231377, 77.89888], - [-86.422234, 77.830833], - [-85.975281, 77.705833], - [-85.833618, 77.579437], - [-85.808037, 77.506943], - [-85.718887, 77.472214], - [-85.794449, 77.419708], - [-85.503891, 77.474701], - [-85.481667, 77.459717], - [-85.535278, 77.44136], - [-85.399727, 77.395828], - [-84.973328, 77.377197], - [-84.529167, 77.295822], - [-84.463333, 77.300262], - [-84.615013, 77.383041], - [-84.550278, 77.401382], - [-84.005836, 77.397491], - [-83.464722, 77.348328], - [-83.494164, 77.376648], - [-83.448883, 77.38916], - [-83.71167, 77.404709], - [-83.835564, 77.455261], - [-83.426102, 77.49971], - [-83.180283, 77.592209], - [-82.817497, 77.759987], - [-82.78389, 77.782494], - [-82.796661, 77.805542], - [-82.674438, 77.836929], - [-82.637787, 77.8936], - [-82.547501, 77.915817], - [-82.577789, 77.943314], - [-82.513062, 77.956383], - [-82.591667, 78.017487], - [-82.377487, 78.035812], - [-82.318619, 78.070831], - [-82.549438, 78.07193], - [-82.780289, 78.014999], - [-82.785278, 77.969994], - [-82.736107, 77.924149], - [-82.949158, 77.874687], - [-82.989723, 77.824707], - [-83.111389, 77.789703], - [-83.19249, 77.710541], - [-83.427223, 77.600807], - [-83.873047, 77.493317], - [-84.858887, 77.542763], - [-84.866386, 77.574158], - [-84.44194, 77.7061], - [-84.431107, 77.726379], - [-84.489723, 77.746368], - [-84.486389, 77.71138], - [-84.53389, 77.684982], - [-84.952499, 77.601379], - [-85.298889, 77.660538], - [-85.270279, 77.708328], - [-85.348892, 77.728867], - [-85.205002, 77.757217], - [-85.18222, 77.795532], - [-85.029167, 77.799988], - [-84.955276, 77.835823], - [-85.297783, 77.797211], - [-85.400284, 77.813309], - [-85.389717, 77.841927], - [-85.207779, 77.883881], - [-84.848892, 77.891937], - [-84.89473, 77.833878], - [-84.664436, 77.902206], - [-84.313606, 77.891937], - [-84.634453, 77.926933], - [-85.474716, 77.868591], - [-85.515289, 77.883614], - [-85.486656, 77.909988], - [-85.678879, 77.929428], - [-85.065552, 78.056374], - [-84.761673, 78.023613], - [-84.547501, 78.071114], - [-84.431686, 78.070763], - [-84.288063, 78.075546], - [-84.511253, 78.0858], - [-84.587563, 78.077744], - [-84.881943, 78.059143], - [-85.094452, 78.097488], - [-85.008621, 78.137497], - [-84.995003, 78.16304], - [-85.033623, 78.171654], - [-84.631104, 78.199997], - [-84.201111, 78.156937], - [-84.026108, 78.176376], - [-84.506668, 78.217758], - [-84.951401, 78.195534], - [-84.973892, 78.208603], - [-84.956123, 78.232208], - [-84.834442, 78.314987], - [-84.572777, 78.35054], - [-84.772232, 78.342209], - [-84.866943, 78.369141], - [-84.845551, 78.382202], - [-84.765556, 78.477478], - [-84.782501, 78.505829], - [-84.619453, 78.588318], - [-84.675278, 78.588318], - [-84.978333, 78.414993], - [-84.952789, 78.396942], - [-84.961937, 78.343597], - [-85.045837, 78.309143], - [-85.024719, 78.284416], - [-85.508057, 78.099152], - [-86.148354, 78.054703], - [-86.28833, 78.076393], - [-86.230003, 78.136383], - [-86.251404, 78.156647], - [-86.113052, 78.170532], - [-85.931107, 78.236649], - [-85.878326, 78.288307], - [-85.899727, 78.303589], - [-85.835281, 78.332207], - [-85.833069, 78.379967], - [-86.05278, 78.297493], - [-86.073624, 78.248596], - [-86.285278, 78.193314], - [-86.497772, 78.215553], - [-86.736938, 78.118042], - [-87.109444, 78.103043], - [-87.529167, 78.132202], - [-87.407501, 78.183037], - [-87.087219, 78.2061], - [-87.513344, 78.224991], - [-87.491943, 78.285812], - [-87.517227, 78.426376], - [-87.140556, 78.550262], - [-86.858337, 78.54776], - [-86.877777, 78.573036], - [-87.122498, 78.587196], - [-86.976936, 78.648331], - [-86.934433, 78.709991], - [-86.638901, 78.799423], - [-85.646667, 78.848602], - [-85.064163, 78.919144], - [-84.712784, 78.867752], - [-83.746948, 78.836929], - [-83.165833, 78.729103], - [-82.82251, 78.695251], - [-82.61055, 78.611366], - [-82.308327, 78.568878], - [-82.23555, 78.595833], - [-82.594452, 78.703049], - [-82.231949, 78.736366], - [-82.781387, 78.731087], - [-83.210564, 78.798866], - [-83.25473, 78.834991], - [-83.056953, 78.856087], - [-82.429443, 78.833328], - [-81.947487, 78.865807], - [-81.712509, 78.839706], - [-81.656952, 78.888321], - [-81.755836, 78.918053], - [-81.698608, 78.973877], - [-81.486656, 79.052467], - [-81.910278, 79.00499], - [-82.110283, 78.913597], - [-82.503067, 78.882751], - [-82.924438, 78.934982], - [-84.259171, 78.959427], - [-84.766953, 79.037201], - [-84.78389, 79.074432], - [-84.52861, 79.143333], - [-84.135559, 79.121918], - [-83.896393, 79.03804], - [-83.474716, 79.024147], - [-83.358612, 79.050812], - [-83.546112, 79.04248], - [-83.995003, 79.133041], - [-84.029167, 79.156937], - [-83.939987, 79.185532], - [-83.956673, 79.221916], - [-84.158508, 79.183296], - [-84.32695, 79.188583], - [-84.335564, 79.252213], - [-84.428879, 79.290268], - [-84.484734, 79.406372], - [-84.882492, 79.486099], - [-84.969452, 79.537491], - [-84.969452, 79.566383], - [-85.047234, 79.587769], - [-85.022232, 79.611099], - [-85.050278, 79.621643], - [-85.493332, 79.700546], - [-85.900284, 79.700272], - [-86.486389, 79.763611], - [-86.48555, 79.816093], - [-86.37999, 79.821381], - [-86.454453, 79.847763], - [-86.471939, 79.890549], - [-86.436394, 79.942467], - [-86.367218, 79.962769], - [-85.585007, 79.938026], - [-85.365829, 79.896378], - [-85.254997, 79.920822], - [-86.482773, 80.008614], - [-86.579453, 80.043053], - [-86.659439, 80.128036], - [-86.548607, 80.205261], - [-86.514717, 80.299149], - [-86.468338, 80.308594], - [-85.897507, 80.333054], - [-85.290833, 80.2686], - [-83.781952, 80.245819], - [-82.153061, 79.858871], - [-81.969727, 79.752777], - [-81.978882, 79.718323], - [-81.671112, 79.687477], - [-81.687767, 79.645828], - [-81.618607, 79.618317], - [-81.785278, 79.61499], - [-81.706673, 79.586647], - [-81.424713, 79.636658], - [-80.598053, 79.566093], - [-80.641953, 79.588043], - [-80.598053, 79.601379], - [-79.904716, 79.646942], - [-79.751404, 79.701393], - [-80.43222, 79.677757], - [-80.827499, 79.648331], - [-81.227783, 79.709427], - [-81.525009, 79.714432], - [-81.509743, 79.750816], - [-81.62999, 79.764427], - [-81.56778, 79.814697], - [-81.663063, 79.903053], - [-81.400284, 79.937759], - [-82.168327, 80.013611], - [-83.203888, 80.318047], - [-82.031387, 80.398331], - [-80.367767, 80.462196], - [-80.294159, 80.486649], - [-80.357224, 80.501389], - [-80.153343, 80.526382], - [-78.063889, 80.564697], - [-78.030838, 80.5961], - [-78.416656, 80.608032], - [-79.960281, 80.6147], - [-78.585281, 80.772217], - [-77.639183, 80.830276], - [-76.511673, 80.854431], - [-76.490829, 80.874977], - [-76.621109, 80.900818], - [-77.168877, 80.886932], - [-77.548889, 80.913307], - [-78.869453, 80.852203], - [-78.934998, 80.875526], - [-78.858337, 80.924149], - [-78.928596, 80.99054], - [-78.501106, 81.09166], - [-78.393066, 81.142761], - [-78.463623, 81.160812], - [-78.159439, 81.193863], - [-77.612503, 81.318878], - [-76.955276, 81.393883], - [-76.777786, 81.444427], - [-78.228333, 81.291656], - [-78.675278, 81.191933], - [-78.754181, 81.135818], - [-78.690826, 81.119431], - [-78.817497, 81.106087], - [-78.941383, 81.101089], - [-79.501678, 81.193588], - [-79.088837, 81.094757], - [-79.25528, 81.058868], - [-79.343887, 80.998322], - [-79.165283, 80.96666], - [-79.265289, 80.924149], - [-79.41861, 80.916931], - [-79.435822, 80.881088], - [-79.618057, 80.819443], - [-80.919449, 80.655548], - [-82.353882, 80.556374], - [-83.096657, 80.541656], - [-83.165009, 80.551933], - [-83.16806, 80.57666], - [-83.078056, 80.644989], - [-82.2164, 80.719147], - [-81.758904, 80.813026], - [-81.996109, 80.830276], - [-82.56723, 80.740807], - [-83.356949, 80.685532], - [-83.541107, 80.704163], - [-83.530563, 80.724701], - [-83.569458, 80.739151], - [-83.133057, 80.818878], - [-83.256958, 80.838593], - [-83.66777, 80.75], - [-83.863892, 80.757492], - [-83.775284, 80.739433], - [-83.836403, 80.719711], - [-83.720001, 80.636658], - [-83.840561, 80.545532], - [-85.066963, 80.505257], - [-85.864166, 80.535538], - [-85.564713, 80.619431], - [-86.080841, 80.52832], - [-86.739166, 80.597488], - [-86.514717, 80.729431], - [-85.77417, 80.948868], - [-84.991379, 81.040268], - [-84.769447, 81.027771], - [-82.826401, 81.123032], - [-82.364441, 81.179428], - [-85.608887, 81.054153], - [-86.309723, 80.940811], - [-87.076401, 80.722763], - [-87.215012, 80.638321], - [-87.458054, 80.627762], - [-88.406662, 80.716927], - [-89.334732, 80.857483], - [-89.462219, 80.919144], - [-88.590286, 80.996368], - [-87.446381, 80.976929], - [-86.671944, 81.005257], - [-86.061111, 81.082764], - [-85.838898, 81.075272], - [-85.914169, 81.100807], - [-85.887512, 81.118874], - [-84.745827, 81.289429], - [-85.279167, 81.289978], - [-86.077499, 81.207489], - [-86.438049, 81.126083], - [-87.37944, 81.070267], - [-88.339996, 81.069717], - [-89.629173, 81.009163], - [-90, 81.032143], - [-90.197769, 81.069717], - [-90.351936, 81.16748], - [-90, 81.242157], - [-89.491096, 81.206383], - [-88.944153, 81.244141], - [-89.335281, 81.242752], - [-89.952499, 81.329437], - [-89.026108, 81.459427], - [-88.823059, 81.453598], - [-88.928329, 81.485527], - [-88.715843, 81.513046], - [-87.984161, 81.535812], - [-87.914169, 81.509163], - [-87.24472, 81.490257], - [-88.306381, 81.581383], - [-88.998047, 81.540543], - [-90, 81.417747], - [-90.443047, 81.366653], - [-90.553329, 81.384987], - [-90.487778, 81.398613], - [-90.856659, 81.444138], - [-89.586166, 81.621147], - [-90.091667, 81.623306], - [-90.033073, 81.646942], - [-90.296951, 81.698593], - [-90.360817, 81.685257], - [-90.29277, 81.641373], - [-90.718887, 81.666656], - [-90.991096, 81.616089], - [-91.006958, 81.598877], - [-90.964722, 81.562477], - [-91.071671, 81.537201], - [-91.144173, 81.555542], - [-91.446381, 81.524429], - [-91.406387, 81.54776], - [-91.444153, 81.583603], - [-91.900284, 81.616928], - [-91.950287, 81.637207], - [-91.863892, 81.642487], - [-91.956673, 81.6586], - [-91.770844, 81.663307], - [-91.809723, 81.674988], - [-91.737213, 81.68692], - [-91.726936, 81.726929], - [-91.48555, 81.769989], - [-91.034439, 81.763893], - [-91.152496, 81.798027], - [-91.051666, 81.828873], - [-90.338058, 81.893051], - [-90, 81.8992], - [-89.700844, 81.915543], - [-89.741096, 81.894989], - [-89.62999, 81.856369], - [-89.332962, 81.805687], - [-89.349991, 81.823036], - [-89.146667, 81.890549], - [-89.397507, 81.909416], - [-89.419159, 81.915543], - [-89.397781, 81.930817], - [-89.007233, 81.915543], - [-88.986389, 81.944977], - [-89.054443, 81.987488], - [-89.021118, 81.998032], - [-88.075562, 82.10498], - [-87.352783, 82.067207], - [-87.174438, 82.014709], - [-87.309433, 81.967484], - [-86.768341, 81.890266], - [-86.734161, 81.902771], - [-86.834732, 81.927757], - [-87.13028, 81.968323], - [-86.842773, 81.987198], - [-87.009743, 82.030548], - [-86.791946, 82.058029], - [-86.169159, 82.041656], - [-85.422501, 81.857483], - [-85.371658, 81.859711], - [-85.398064, 81.881088], - [-85.731949, 81.983322], - [-85.559433, 82.001663], - [-85.188316, 81.992752], - [-85.01889, 81.919434], - [-84.793877, 81.881363], - [-85.066101, 81.987488], - [-84.889183, 81.990257], - [-84.816673, 81.970833], - [-84.811943, 81.927467], - [-84.635277, 81.886108], - [-84.605003, 81.889977], - [-84.693604, 81.921097], - [-84.729721, 81.977203], - [-84.932503, 82.01944], - [-86.637512, 82.12442], - [-86.876099, 82.202209], - [-85.662216, 82.2397], - [-85.370827, 82.279984], - [-85.48999, 82.319717], - [-85.420273, 82.344994], - [-85.537216, 82.345261], - [-85.515289, 82.40332], - [-85.911942, 82.435806], - [-85.046951, 82.481934], - [-84.641678, 82.465553], - [-84.631378, 82.440262], - [-84.943878, 82.425812], - [-84.449997, 82.386108], - [-84.344452, 82.352768], - [-83.961403, 82.368591], - [-83.516403, 82.31694], - [-83.368607, 82.276382], - [-83.344452, 82.227203], - [-82.976669, 82.138321], - [-82.968338, 82.098038], - [-83.111938, 82.065262], - [-82.284157, 82.066383], - [-81.878052, 82.036377], - [-82.020844, 82.082207], - [-82.676941, 82.107758], - [-82.731377, 82.149986], - [-83.011398, 82.221649], - [-83.028877, 82.276657], - [-82.654449, 82.282211], - [-81.91806, 82.154984], - [-80.640289, 82.018333], - [-80.571953, 81.989151], - [-80.085007, 81.973602], - [-79.564163, 81.825272], - [-79.229172, 81.816093], - [-79.670837, 81.927467], - [-79.710281, 81.96138], - [-79.921387, 81.984993], - [-79.853333, 82.018883], - [-80.791107, 82.079437], - [-80.975563, 82.123596], - [-80.868057, 82.154984], - [-81.624443, 82.199997], - [-82.679993, 82.370819], - [-82.728882, 82.408333], - [-82.498337, 82.506378], - [-81.47583, 82.498596], - [-81.9664, 82.52887], - [-82.343887, 82.595261], - [-82.39473, 82.617477], - [-82.371933, 82.639709], - [-81.972229, 82.666382], - [-81.359734, 82.620819], - [-80.891953, 82.532761], - [-80.58168, 82.543053], - [-81.138344, 82.703049], - [-81.508621, 82.764709], - [-81.585007, 82.800812], - [-81.411392, 82.827766], - [-80.381104, 82.788879], - [-80.138901, 82.719994], - [-80.182503, 82.694702], - [-80.160278, 82.681374], - [-79.861656, 82.64415], - [-79.82251, 82.657761], - [-79.983322, 82.689148], - [-79.885834, 82.708603], - [-79.203888, 82.666931], - [-78.521118, 82.676933], - [-79.623047, 82.727768], - [-79.886948, 82.75943], - [-79.996948, 82.803307], - [-79.673889, 82.824707], - [-80.15834, 82.835541], - [-80.393066, 82.875526], - [-80.429718, 82.89415], - [-80.145279, 82.933868], - [-79.458344, 82.974152], - [-79.17749, 82.951927], - [-79.218887, 82.933594], - [-79.04277, 82.872482], - [-78.671112, 82.945534], - [-78.503342, 82.913307], - [-78.55777, 82.860527], - [-78.534439, 82.847763], - [-78.406113, 82.873596], - [-78.144173, 82.823318], - [-78.106659, 82.83194], - [-78.238892, 82.865257], - [-78.016953, 82.857483], - [-78.108337, 82.893333], - [-77.813049, 82.924423], - [-77.128326, 82.863312], - [-76.927673, 82.790741], - [-76.959167, 82.774147], - [-76.766663, 82.750816], - [-76.570557, 82.666656], - [-75.892227, 82.591927], - [-76.207497, 82.506378], - [-76.261002, 82.466553], - [-76.230827, 82.444702], - [-75.671387, 82.586929], - [-75.396118, 82.6147], - [-76.235817, 82.712196], - [-76.309158, 82.752777], - [-75.976097, 82.784714], - [-76.447487, 82.797493], - [-76.752792, 82.894989], - [-77.344727, 82.972488], - [-77.381378, 82.994431], - [-77.183884, 83.033867], - [-77.135559, 83.011383], - [-76.604172, 83.008614], - [-76.02861, 83.054428], - [-75.251404, 83.015823], - [-74.95639, 83.045532], - [-74.435822, 83.027206], - [-74.018066, 82.95694], - [-73.81778, 82.852768], - [-72.633904, 82.694427], - [-72.502502, 82.724426], - [-73.148621, 82.794434], - [-73.375549, 82.844437], - [-73.354721, 82.856087], - [-73.430557, 82.8936], - [-73.650558, 82.925812], - [-73.189713, 83.023323], - [-72.902786, 83.048027], - [-73.001106, 83.059418], - [-72.650558, 83.096367], - [-71.611656, 83.0961], - [-71.775009, 83.032211], - [-71.778343, 83.001663], - [-71.56723, 82.941093], - [-70.871384, 82.881088], - [-71.497498, 83.007217], - [-71.097229, 83.069992], - [-71.120003, 83.092484], - [-70.86055, 83.081383], - [-70.887222, 83.098038], - [-70.804443, 83.10498], - [-69.665009, 83.108322], - [-69.730827, 83.090271], - [-69.664169, 83.070831], - [-69.775284, 83.04776], - [-69.451111, 83.035812], - [-69.647507, 82.992203], - [-69.015556, 83.040817], - [-68.975281, 83.02832], - [-68.980827, 82.982483], - [-68.46666, 83.008041], - [-68.154167, 82.991089], - [-68.188599, 82.946091], - [-68.145554, 82.934982], - [-67.544159, 82.962196] - ] - ], - [ - [ - [-96.742027, 76.982208], - [-96.471939, 76.954987], - [-96.369164, 76.990807], - [-96.253342, 76.987198], - [-96.387787, 77.030548], - [-95.734734, 77.068604], - [-95.41777, 77.056931], - [-94.944443, 76.97554], - [-94.526398, 76.969437], - [-94.447487, 76.916656], - [-94.238892, 76.889427], - [-94.08168, 76.890266], - [-93.943604, 76.933868], - [-93.65834, 76.909988], - [-93.584167, 76.856087], - [-93.295837, 76.781097], - [-93.263634, 76.744141], - [-93.179718, 76.741089], - [-93.174438, 76.674988], - [-93.260277, 76.630257], - [-93.306664, 76.546654], - [-93.651947, 76.44165], - [-93.54834, 76.386108], - [-93.459732, 76.4086], - [-93.576401, 76.426651], - [-93.357224, 76.470543], - [-93.123611, 76.573036], - [-93.095284, 76.590553], - [-93.108887, 76.616379], - [-92.368607, 76.594437], - [-91.938599, 76.66832], - [-91.410553, 76.689148], - [-90.986107, 76.649147], - [-90.81778, 76.593597], - [-90.582497, 76.565262], - [-90.503067, 76.531372], - [-90.528061, 76.49971], - [-90.468063, 76.473038], - [-90.779167, 76.461113], - [-90.986938, 76.511383], - [-91.090561, 76.478043], - [-91.441101, 76.512772], - [-91.566673, 76.498871], - [-91.416397, 76.460274], - [-90, 76.360207], - [-89.305557, 76.299149], - [-89.192207, 76.242203], - [-89.349731, 76.183594], - [-90, 76.173332], - [-90.453613, 76.170532], - [-90.110817, 76.124153], - [-91.149727, 76.192467], - [-91.613617, 76.262207], - [-91.257782, 76.204437], - [-91.385559, 76.142487], - [-91.220284, 76.161652], - [-90.679718, 76.117203], - [-90.848892, 76.060806], - [-90.54834, 76.09137], - [-90.190552, 76.061096], - [-90.301666, 76.032494], - [-91.160828, 76.018051], - [-90.937767, 76.000267], - [-91.074448, 75.986649], - [-90.938599, 75.951393], - [-91.12944, 75.9086], - [-91.12999, 75.839157], - [-91.079453, 75.848038], - [-91.058884, 75.896652], - [-90.895844, 75.9272], - [-90.793877, 75.994713], - [-90.681107, 75.981369], - [-90.718063, 75.955551], - [-90.433319, 75.970261], - [-90.526108, 75.930542], - [-90.529999, 75.898331], - [-90.50473, 75.895264], - [-90.339447, 75.968323], - [-90.118607, 75.931931], - [-90.060272, 76.004707], - [-90, 76.00959], - [-89.6875, 75.899986], - [-89.778877, 75.831673], - [-89.775009, 75.787491], - [-89.555557, 75.839432], - [-89.620003, 75.853592], - [-89.587509, 75.859154], - [-89.164169, 75.774696], - [-89.253891, 75.631088], - [-89.658051, 75.61998], - [-89.765289, 75.575546], - [-89.542503, 75.570541], - [-89.700844, 75.55304], - [-89.217216, 75.584991], - [-89.099731, 75.484154], - [-88.980003, 75.471367], - [-88.963898, 75.431931], - [-88.779716, 75.43248], - [-88.75, 75.474991], - [-88.902222, 75.604713], - [-88.771942, 75.62886], - [-88.738892, 75.679428], - [-88.203613, 75.531097], - [-88.305832, 75.492203], - [-88.263062, 75.476089], - [-87.997498, 75.528053], - [-87.748894, 75.578323], - [-87.661392, 75.567207], - [-87.624161, 75.516388], - [-87.495537, 75.485809], - [-87.606377, 75.449707], - [-87.533623, 75.446091], - [-87.416397, 75.48526], - [-87.513344, 75.559418], - [-87.251106, 75.621094], - [-86.807503, 75.479156], - [-86.583893, 75.474701], - [-86.375549, 75.427467], - [-86.596657, 75.361649], - [-86.169998, 75.418587], - [-85.527222, 75.401093], - [-85.822777, 75.430817], - [-86.143066, 75.508041], - [-85.539719, 75.599426], - [-85.56778, 75.576927], - [-85.537781, 75.564423], - [-85.232224, 75.558594], - [-85.321671, 75.574432], - [-85.292221, 75.5961], - [-85.040558, 75.631653], - [-85.011673, 75.644989], - [-85.074173, 75.651932], - [-85.039169, 75.657761], - [-84.497498, 75.631653], - [-84.651108, 75.6436], - [-84.634743, 75.66304], - [-84.66362, 75.686096], - [-84.299156, 75.702766], - [-84.194443, 75.762497], - [-84.022232, 75.767212], - [-83.920837, 75.803589], - [-84.002502, 75.820831], - [-83.740547, 75.824432], - [-83.698036, 75.814423], - [-83.736938, 75.795258], - [-83.515289, 75.789703], - [-83.433609, 75.750267], - [-83.099442, 75.732208], - [-82.664719, 75.811371], - [-82.327217, 75.836929], - [-81.118057, 75.775543], - [-81.101097, 75.752487], - [-81.22084, 75.704712], - [-81.271118, 75.651382], - [-80.316963, 75.630539], - [-80.068336, 75.578873], - [-80.082779, 75.54248], - [-79.953613, 75.540268], - [-80.132874, 75.502579], - [-80.35527, 75.473877], - [-80.373047, 75.463043], - [-80.338608, 75.456383], - [-79.929169, 75.479713], - [-79.586403, 75.454712], - [-79.682503, 75.430817], - [-79.488602, 75.362488], - [-79.611938, 75.298317], - [-79.44249, 75.277206], - [-79.62944, 75.174988], - [-79.83168, 75.170532], - [-79.944153, 75.136383], - [-79.974167, 75.089981], - [-80.440552, 75.03804], - [-80.173889, 74.982483], - [-80.266113, 74.94664], - [-80.035553, 74.957764], - [-79.975281, 74.99942], - [-79.795273, 75.027481], - [-79.613892, 75.019989], - [-79.504997, 74.998322], - [-79.551941, 74.981659], - [-79.335831, 74.88916], - [-79.930557, 74.813309], - [-80.171387, 74.86026], - [-80.142502, 74.898041], - [-80.18222, 74.937187], - [-80.210831, 74.931091], - [-80.199997, 74.886108], - [-80.253067, 74.870819], - [-80.321671, 74.937759], - [-80.416107, 74.888893], - [-80.097778, 74.820267], - [-80.108337, 74.7836], - [-80.246948, 74.757492], - [-80.13028, 74.715553], - [-80.212219, 74.690536], - [-80.17305, 74.655823], - [-80.196663, 74.641373], - [-80.146667, 74.626923], - [-80.248047, 74.576103], - [-81.219162, 74.571381], - [-81.810822, 74.45694], - [-82.456673, 74.517212], - [-82.382217, 74.541092], - [-82.435547, 74.570267], - [-82.479446, 74.536102], - [-82.61528, 74.511108], - [-82.914169, 74.549149], - [-83.079727, 74.630257], - [-83.123894, 74.684982], - [-83.107773, 74.748032], - [-83.023064, 74.780548], - [-83.081123, 74.78804], - [-83.08168, 74.818047], - [-83.248894, 74.823608], - [-83.528061, 74.901657], - [-83.560547, 74.887207], - [-83.518623, 74.839432], - [-83.319458, 74.767487], - [-83.441383, 74.660812], - [-83.454727, 74.591087], - [-83.611656, 74.540817], - [-84.899437, 74.503326], - [-84.983063, 74.570541], - [-84.99527, 74.643333], - [-84.950844, 74.67276], - [-84.990547, 74.698029], - [-85.07251, 74.641098], - [-85.041946, 74.617752], - [-85.04361, 74.523323], - [-85.259453, 74.49054], - [-85.363617, 74.501938], - [-85.37027, 74.552467], - [-85.527222, 74.688873], - [-85.551941, 74.660263], - [-85.480293, 74.537201], - [-85.580841, 74.498322], - [-86.120827, 74.482208], - [-86.082779, 74.555252], - [-86.197487, 74.615257], - [-86.240547, 74.596939], - [-86.24472, 74.52388], - [-86.423317, 74.478867], - [-86.691101, 74.544144], - [-86.785278, 74.616928], - [-86.794449, 74.539978], - [-86.604172, 74.468048], - [-86.943604, 74.46138], - [-87.008904, 74.508331], - [-87.037781, 74.474152], - [-87.111938, 74.468048], - [-87.320847, 74.476646], - [-87.373894, 74.51915], - [-87.309433, 74.545822], - [-87.574722, 74.461929], - [-87.732224, 74.466377], - [-87.768623, 74.514999], - [-87.90361, 74.472214], - [-88.093063, 74.48027], - [-88.133331, 74.507767], - [-88.21666, 74.482758], - [-88.535278, 74.503601], - [-88.571121, 74.549988], - [-88.560822, 74.593048], - [-88.434433, 74.696091], - [-88.405838, 74.748322], - [-88.431671, 74.762497], - [-88.293327, 74.772491], - [-88.487213, 74.791367], - [-88.443604, 74.838593], - [-88.547783, 74.907761], - [-88.579453, 74.889977], - [-88.547501, 74.843048], - [-88.615829, 74.815536], - [-88.618057, 74.846367], - [-88.664719, 74.844994], - [-88.749733, 74.777771], - [-88.753342, 74.714157], - [-88.835564, 74.661377], - [-88.889717, 74.670532], - [-88.909729, 74.777771], - [-89.088608, 74.837196], - [-89.011124, 74.780823], - [-89.047501, 74.722488], - [-89.271118, 74.754707], - [-89.09584, 74.688026], - [-89.125, 74.616928], - [-89.185272, 74.587486], - [-89.928596, 74.530823], - [-90, 74.586166], - [-90.106659, 74.549423], - [-90.363052, 74.594711], - [-90.317497, 74.626373], - [-90.589722, 74.613312], - [-90.731667, 74.664146], - [-90.761398, 74.714157], - [-90.721123, 74.732208], - [-90.845001, 74.721916], - [-90.895607, 74.681137], - [-91.024719, 74.702766], - [-90.758057, 74.8311], - [-90.740829, 74.847488], - [-90.772232, 74.884987], - [-90.853882, 74.875259], - [-91.101936, 74.751099], - [-91.22583, 74.733597], - [-91.106659, 74.625809], - [-91.281387, 74.633614], - [-91.301392, 74.656372], - [-91.277222, 74.688026], - [-91.314713, 74.716087], - [-91.366653, 74.704163], - [-91.33139, 74.672493], - [-91.381943, 74.641098], - [-91.676102, 74.671921], - [-91.62027, 74.704987], - [-91.708618, 74.727478], - [-91.851097, 74.698868], - [-91.875267, 74.711929], - [-91.81221, 74.734421], - [-92.045547, 74.789703], - [-92.066391, 74.813309], - [-92.013062, 74.851929], - [-92.015289, 74.913597], - [-92.075562, 74.933037], - [-92.04805, 74.958328], - [-92.223328, 75.029427], - [-92.198036, 75.052757], - [-92.228882, 75.071114], - [-92.029999, 75.08638], - [-92.01001, 75.101089], - [-92.112778, 75.12886], - [-92.051392, 75.146942], - [-92.271393, 75.132751], - [-92.503616, 75.218048], - [-92.458618, 75.250816], - [-92.448334, 75.318329], - [-92.328613, 75.369431], - [-92.458618, 75.368874], - [-92.403061, 75.436096], - [-92.210281, 75.551376], - [-92.004997, 75.594994], - [-92.080841, 75.617477], - [-92.008347, 75.661377], - [-92.174438, 75.744431], - [-92.104721, 75.805252], - [-92.108612, 75.858871], - [-92.629173, 76.008881], - [-92.637222, 76.115807], - [-92.767227, 76.166092], - [-92.793877, 76.207489], - [-93.066963, 76.299149], - [-93.061478, 76.344788], - [-93.315277, 76.36026], - [-93.617493, 76.291092], - [-93.666397, 76.298599], - [-93.624443, 76.305817], - [-93.636124, 76.32666], - [-93.678879, 76.32222], - [-93.763901, 76.286377], - [-93.637512, 76.258614], - [-93.689987, 76.248871], - [-94.625816, 76.275269], - [-94.720551, 76.315536], - [-95.033333, 76.220833], - [-95.386948, 76.235809], - [-95.366943, 76.301376], - [-95.279167, 76.281372], - [-94.983887, 76.332489], - [-94.843613, 76.303864], - [-94.814163, 76.329163], - [-95.274719, 76.372208], - [-95.388901, 76.351929], - [-95.450562, 76.375809], - [-95.378883, 76.395538], - [-95.83139, 76.394989], - [-95.995827, 76.43692], - [-96.106949, 76.494431], - [-96.065552, 76.521378], - [-95.77861, 76.518883], - [-95.587784, 76.603592], - [-95.780563, 76.548866], - [-96.016953, 76.549149], - [-96.001953, 76.584152], - [-96.158623, 76.583328], - [-96.238052, 76.635269], - [-96.403343, 76.639709], - [-96.470284, 76.685532], - [-96.946663, 76.723602], - [-96.84111, 76.766388], - [-96.904449, 76.790543], - [-96.855003, 76.813026], - [-96.684723, 76.774696], - [-96.673317, 76.748322], - [-96.305557, 76.753883], - [-96.583328, 76.771927], - [-96.511398, 76.804153], - [-96.320557, 76.806641], - [-96.813606, 76.868042], - [-96.865829, 76.898041], - [-96.857773, 76.924988], - [-96.659157, 76.949142], - [-96.827789, 76.968872], - [-96.742027, 76.982208] - ] - ], - [ - [ - [-86.410278, 64.582764], - [-86.238892, 64.804153], - [-86.171661, 64.823036], - [-86.210564, 64.884163], - [-86.153343, 64.927757], - [-86.225014, 65.003601], - [-86.138344, 65.094437], - [-86.171661, 65.27887], - [-86.093887, 65.361649], - [-86.153343, 65.38472], - [-86.097778, 65.52916], - [-86.019997, 65.621918], - [-86.013901, 65.709152], - [-85.791382, 65.853317], - [-85.542503, 65.933319], - [-85.468887, 65.913879], - [-85.520554, 65.842758], - [-85.493332, 65.795258], - [-85.370003, 65.834991], - [-85.156387, 65.776657], - [-85.148064, 65.733322], - [-85.18721, 65.721367], - [-85.051666, 65.606934], - [-85.311943, 65.537773], - [-85.015007, 65.41832], - [-85.012512, 65.322769], - [-84.930557, 65.258614], - [-84.924713, 65.209717], - [-84.792503, 65.226929], - [-84.745827, 65.351379], - [-84.561943, 65.481087], - [-84.43222, 65.453323], - [-84.444717, 65.413597], - [-84.384171, 65.388321], - [-84.151108, 65.338593], - [-84.230827, 65.26944], - [-84.141388, 65.219994], - [-83.889999, 65.190262], - [-83.913887, 65.174698], - [-83.876099, 65.162773], - [-83.540283, 65.164146], - [-83.408623, 65.135536], - [-83.334732, 65.069992], - [-83.330841, 65.021378], - [-83.208054, 64.945534], - [-83.022232, 64.913879], - [-82.865829, 64.873596], - [-82.800278, 64.808868], - [-82.709167, 64.776382], - [-82.542503, 64.739433], - [-82.382492, 64.767761], - [-82.202217, 64.713608], - [-82.215012, 64.684982], - [-82.092499, 64.684982], - [-81.763062, 64.501099], - [-81.753067, 64.35582], - [-81.777222, 64.311653], - [-81.600281, 64.202766], - [-81.602493, 64.129967], - [-81.955841, 64.06192], - [-81.986938, 63.99416], - [-81.461937, 64.034988], - [-81.43222, 64.043587], - [-81.442757, 64.086929], - [-81.388901, 64.097214], - [-81.398621, 64.072769], - [-81.287781, 64.080276], - [-80.931671, 63.99194], - [-80.909157, 64.023323], - [-80.975563, 64.057747], - [-80.934723, 64.129967], - [-80.777496, 64.079437], - [-80.698608, 64.011383], - [-80.522507, 63.9786], - [-80.551666, 63.925549], - [-80.492218, 63.905548], - [-80.699997, 63.911659], - [-80.66362, 63.883331], - [-80.206123, 63.808331], - [-80.171661, 63.771099], - [-80.454178, 63.727772], - [-80.587784, 63.63583], - [-80.922501, 63.521381], - [-80.958054, 63.458328], - [-81.076401, 63.451389], - [-81.535278, 63.58028], - [-81.653877, 63.571941], - [-81.76889, 63.63805], - [-81.909729, 63.631939], - [-82.05249, 63.689159], - [-82.224716, 63.686378], - [-82.257233, 63.659161], - [-82.285553, 63.678051], - [-82.328888, 63.650269], - [-82.472229, 63.680271], - [-82.546951, 63.764721], - [-82.376389, 63.817501], - [-82.361389, 63.90527], - [-82.548889, 63.969151], - [-82.873322, 63.982769], - [-83.086937, 63.95499], - [-83.145279, 64.001099], - [-82.96167, 64.145538], - [-83.01973, 64.188873], - [-83.14711, 64.166634], - [-83.191101, 64.118317], - [-83.328888, 64.136932], - [-83.394997, 64.104156], - [-83.46611, 64.123596], - [-83.54834, 64.102478], - [-83.68222, 64.007217], - [-83.604172, 63.928051], - [-83.646957, 63.86721], - [-83.59584, 63.825829], - [-83.637222, 63.766392], - [-83.750839, 63.776661], - [-84.099731, 63.60527], - [-84.282784, 63.628601], - [-84.400558, 63.548611], - [-84.477493, 63.38361], - [-84.586121, 63.308041], - [-85.224167, 63.120831], - [-85.493332, 63.119991], - [-85.589172, 63.174709], - [-85.638062, 63.244999], - [-85.653877, 63.408878], - [-85.607224, 63.494438], - [-85.628052, 63.55666], - [-85.59111, 63.617489], - [-85.613327, 63.66972], - [-85.714722, 63.706661], - [-85.710831, 63.76749], - [-85.813049, 63.703609], - [-86.245003, 63.639431], - [-86.596123, 63.668598], - [-86.879173, 63.55555], - [-87.118607, 63.55582], - [-87.217216, 63.622219], - [-87.186661, 63.72221], - [-86.934433, 63.906101], - [-86.189438, 64.101646], - [-86.212219, 64.178589], - [-86.308884, 64.226379], - [-86.291672, 64.256653], - [-86.354721, 64.289978], - [-86.384171, 64.364433], - [-86.344452, 64.401093], - [-86.400284, 64.431931], - [-86.376389, 64.550537], - [-86.410278, 64.582764] - ] - ], - [ - [ - [-94.341667, 81.109711], - [-93.516663, 81.065262], - [-93.123322, 81.115257], - [-93.179169, 81.135536], - [-93.09584, 81.165268], - [-93.243057, 81.19165], - [-93.222778, 81.210823], - [-93.928879, 81.203873], - [-94.381668, 81.250816], - [-94.37027, 81.284714], - [-94.245537, 81.319443], - [-94.27861, 81.341927], - [-94.153877, 81.359711], - [-93.754997, 81.344711], - [-93.568336, 81.302757], - [-93.483063, 81.319717], - [-93.560547, 81.367752], - [-93.517502, 81.384987], - [-92.148064, 81.236366], - [-91.800552, 81.15332], - [-91.842216, 81.123871], - [-91.78389, 81.083603], - [-91.908623, 81.070541], - [-91.538887, 80.981659], - [-91.517776, 80.932747], - [-91.144173, 80.814987], - [-91.154999, 80.780548], - [-91.121658, 80.754707], - [-90.664719, 80.684708], - [-90.593063, 80.640823], - [-90.766403, 80.565536], - [-90, 80.534592], - [-89.751106, 80.464432], - [-89.825844, 80.5186], - [-89.783623, 80.532211], - [-89.546112, 80.547493], - [-89.245003, 80.517212], - [-89.059158, 80.46138], - [-89.257233, 80.396942], - [-89.075844, 80.393051], - [-89.131943, 80.359421], - [-89.114166, 80.333328], - [-89.256668, 80.298599], - [-89.251404, 80.27832], - [-89.072777, 80.195534], - [-88.534729, 80.098877], - [-88.414719, 80.10498], - [-88.483322, 80.135818], - [-88.421944, 80.142487], - [-88.145554, 80.093872], - [-88.425003, 80.186096], - [-88.27417, 80.171921], - [-88.273064, 80.195534], - [-88.506958, 80.218323], - [-88.704178, 80.284149], - [-88.644997, 80.321663], - [-88.685272, 80.371643], - [-88.648903, 80.3936], - [-88.383904, 80.443588], - [-87.683884, 80.410263], - [-87.607498, 80.324158], - [-87.618332, 80.272774], - [-87.563889, 80.233322], - [-87.562767, 80.179153], - [-88.065552, 80.120819], - [-87.891388, 80.055542], - [-87.275558, 80.06694], - [-87.036942, 79.962486], - [-87.007233, 79.946091], - [-87.031952, 79.937477], - [-87.489441, 79.84137], - [-87.338608, 79.84082], - [-87.024719, 79.916092], - [-86.957779, 79.903587], - [-87.058327, 79.804703], - [-87.055557, 79.731934], - [-87.134171, 79.645264], - [-87.441673, 79.573883], - [-87.462509, 79.534714], - [-87.44194, 79.526382], - [-87.309998, 79.502213], - [-87.161118, 79.571663], - [-86.96666, 79.601646], - [-86.823624, 79.587769], - [-86.84639, 79.549988], - [-86.789993, 79.538879], - [-86.694992, 79.56749], - [-86.813049, 79.611923], - [-86.762222, 79.631653], - [-86.334167, 79.645538], - [-86.046112, 79.568878], - [-86.039719, 79.545532], - [-86.137512, 79.51915], - [-86.028061, 79.474701], - [-86.167503, 79.457764], - [-86.070847, 79.434143], - [-85.901108, 79.493591], - [-85.893341, 79.554703], - [-85.828339, 79.607483], - [-85.681953, 79.613312], - [-85.531113, 79.559418], - [-85.54361, 79.538589], - [-85.390839, 79.449142], - [-85.039719, 79.350807], - [-84.904167, 79.267761], - [-85.297234, 79.187187], - [-86.422501, 79.075546], - [-86.550827, 79.048866], - [-86.587784, 78.983597], - [-86.702217, 78.955261], - [-86.785004, 78.957207], - [-86.983322, 79.056641], - [-87.004463, 78.987198], - [-86.952499, 78.906647], - [-87.328056, 78.794708], - [-87.615829, 78.645264], - [-87.872772, 78.694977], - [-87.953613, 78.74971], - [-88.003342, 78.807213], - [-87.946663, 78.909149], - [-87.970001, 78.965553], - [-87.794449, 79.006943], - [-87.833618, 79.026093], - [-87.741669, 79.059982], - [-87.746109, 79.086113], - [-87.899986, 79.011108], - [-88.202499, 78.976379], - [-88.188049, 78.885818], - [-88.229721, 78.8022], - [-88.13028, 78.684708], - [-88.351936, 78.65332], - [-88.02417, 78.656647], - [-87.89473, 78.584717], - [-87.90834, 78.548599], - [-88.011948, 78.481369], - [-88.234161, 78.453598], - [-88.559433, 78.604156], - [-88.804169, 78.609711], - [-88.755569, 78.589981], - [-88.773331, 78.573608], - [-88.746109, 78.535812], - [-88.535553, 78.41304], - [-88.672501, 78.316093], - [-88.751404, 78.19693], - [-88.81778, 78.154427], - [-89.115829, 78.200821], - [-89.353882, 78.339706], - [-89.658051, 78.431091], - [-90, 78.609543], - [-90.088333, 78.595833], - [-90.10083, 78.549713], - [-90, 78.466957], - [-89.985001, 78.436096], - [-89.748047, 78.380257], - [-89.452499, 78.162491], - [-89.618607, 78.16304], - [-89.673889, 78.217209], - [-89.911118, 78.218872], - [-90, 78.284409], - [-90.186111, 78.333328], - [-90.744453, 78.323036], - [-90.325287, 78.271652], - [-90.375549, 78.240807], - [-90.272781, 78.176933], - [-90.465012, 78.135269], - [-91.489723, 78.176933], - [-91.857498, 78.2397], - [-92.083328, 78.212486], - [-92.190277, 78.278053], - [-92.323898, 78.287201], - [-92.181953, 78.319717], - [-92.537216, 78.310532], - [-92.609444, 78.330833], - [-92.613617, 78.357208], - [-92.919724, 78.418869], - [-92.982498, 78.454437], - [-92.978882, 78.483322], - [-91.848343, 78.546097], - [-91.660828, 78.526932], - [-91.632492, 78.539429], - [-91.657501, 78.563873], - [-92.585564, 78.5961], - [-92.806107, 78.633614], - [-93.271118, 78.584152], - [-93.4664, 78.645828], - [-93.35611, 78.679428], - [-93.555557, 78.680817], - [-93.813606, 78.765823], - [-93.589722, 78.7836], - [-93.16333, 78.735527], - [-93.054993, 78.739967], - [-93.037781, 78.765823], - [-93.416397, 78.824997], - [-93.87471, 78.833603], - [-94.282227, 78.968872], - [-93.910278, 79.041931], - [-93.608337, 79.051651], - [-93.472778, 79.108871], - [-93.460564, 79.142761], - [-93.329727, 79.164429], - [-92.86972, 79.139709], - [-92.746948, 79.164146], - [-92.309433, 79.145264], - [-91.628098, 79.178452], - [-90.564163, 79.215553], - [-90.363274, 79.246811], - [-92.180832, 79.203049], - [-92.446663, 79.223038], - [-92.694717, 79.257217], - [-92.603882, 79.300812], - [-91.932503, 79.297211], - [-91.146667, 79.356369], - [-91.129173, 79.390823], - [-92.181107, 79.345833], - [-92.571671, 79.370529], - [-92.243881, 79.426651], - [-92.259171, 79.44693], - [-92.580841, 79.452209], - [-92.876099, 79.407761], - [-93.090561, 79.482208], - [-93.144447, 79.463882], - [-93.021393, 79.382751], - [-93.374161, 79.336929], - [-93.229721, 79.425537], - [-93.338058, 79.447197], - [-93.485283, 79.354156], - [-93.665833, 79.360527], - [-93.683884, 79.339432], - [-93.628601, 79.31694], - [-93.870003, 79.263893], - [-94.212219, 79.276657], - [-94.161942, 79.286377], - [-94.167221, 79.31694], - [-94.11972, 79.344711], - [-93.838608, 79.392761], - [-94.027222, 79.377472], - [-94.386124, 79.421371], - [-94.509171, 79.416382], - [-94.5, 79.3797], - [-94.389999, 79.368874], - [-94.506668, 79.337196], - [-95.087547, 79.270752], - [-95.235283, 79.286102], - [-95.191383, 79.309143], - [-95.318619, 79.332207], - [-95.163887, 79.344711], - [-95.285004, 79.353043], - [-95.308884, 79.390823], - [-95.281952, 79.399719], - [-95.444153, 79.372757], - [-95.771667, 79.409714], - [-95.748611, 79.424698], - [-95.777222, 79.430267], - [-95.671661, 79.439423], - [-95.778343, 79.474701], - [-95.70639, 79.501099], - [-95.736389, 79.537491], - [-94.699432, 79.612198], - [-94.329453, 79.688309], - [-94.357773, 79.726929], - [-94.282784, 79.757492], - [-94.318336, 79.778587], - [-94.814438, 79.670258], - [-95.853333, 79.646103], - [-96.149437, 79.739151], - [-96.238052, 79.736923], - [-96.253067, 79.783333], - [-96.335564, 79.815536], - [-96.490547, 79.836113], - [-96.391953, 79.863037], - [-96.589447, 79.852478], - [-96.609444, 79.888603], - [-96.458618, 79.914429], - [-96.391388, 79.913879], - [-96.381668, 79.881653], - [-96.138062, 79.906372], - [-96.606659, 79.962196], - [-96.679443, 80.014427], - [-96.391678, 80.045822], - [-96.676102, 80.041931], - [-96.80278, 80.09082], - [-96.711121, 80.144989], - [-96.410004, 80.138893], - [-95.847778, 80.053307], - [-94.852783, 80.044144], - [-94.416946, 79.978867], - [-94.711533, 80.070663], - [-94.803879, 80.092758], - [-94.611938, 80.135536], - [-94.120003, 80.183037], - [-94.596947, 80.224152], - [-94.816963, 80.159714], - [-95.367767, 80.118317], - [-95.695831, 80.178307], - [-95.295837, 80.212769], - [-95.243332, 80.243591], - [-95.496948, 80.219437], - [-95.645844, 80.2397], - [-95.933609, 80.194427], - [-96.566391, 80.272217], - [-96.47084, 80.32222], - [-96.681671, 80.342209], - [-96.592216, 80.362762], - [-96.232224, 80.334717], - [-96.268066, 80.367477], - [-96.047783, 80.389977], - [-95.440826, 80.338318], - [-95.468063, 80.382202], - [-96.098343, 80.488037], - [-95.933884, 80.508881], - [-95.904716, 80.540543], - [-96.027222, 80.574158], - [-95.980003, 80.584717], - [-94.995003, 80.603043], - [-94.752792, 80.559982], - [-93.990547, 80.554703], - [-93.958344, 80.526093], - [-93.786392, 80.525543], - [-94.004997, 80.585274], - [-94.543327, 80.599716], - [-94.660278, 80.651382], - [-94.662216, 80.675262], - [-94.596947, 80.690536], - [-94.199722, 80.693039], - [-94.088333, 80.70166], - [-94.108337, 80.718872], - [-94.895554, 80.747757], - [-95.037514, 80.771378], - [-94.857773, 80.801376], - [-94.888611, 80.814423], - [-95.282501, 80.786102], - [-95.534157, 80.818878], - [-95.150833, 80.881088], - [-95.484734, 80.899147], - [-95.283623, 80.949997], - [-95.241096, 81.006104], - [-94.904999, 81.05748], - [-94.572777, 81.038879], - [-94.457779, 81.012207], - [-94.508057, 80.979431], - [-94.434158, 80.965553], - [-94.298607, 81.008331], - [-93.936394, 81.017761], - [-94.070557, 81.041656], - [-93.906387, 81.040543], - [-94.14917, 81.056641], - [-94.341667, 81.109711] - ] - ], - [ - [ - [-101.086098, 73.325699], - [-101.305, 73.361649], - [-101.3172, 73.401657], - [-101.580803, 73.450272], - [-101.546097, 73.459991], - [-101.621399, 73.490257], - [-101.523903, 73.489433], - [-101.427498, 73.5522], - [-101.2808, 73.552467], - [-101.217201, 73.604156], - [-100.890297, 73.5961], - [-100.672798, 73.464432], - [-100.499702, 73.412491], - [-100.415001, 73.418053], - [-100.606102, 73.497208], - [-100.5439, 73.556374], - [-100.551697, 73.598877], - [-100.9114, 73.622757], - [-100.858002, 73.667213], - [-101.046997, 73.673027], - [-101.057198, 73.69664], - [-101.014999, 73.712769], - [-101.118301, 73.723312], - [-100.981903, 73.763611], - [-101.027199, 73.775269], - [-101.013901, 73.797211], - [-100.886398, 73.827477], - [-100.754997, 73.812477], - [-100.648399, 73.848328], - [-100.417801, 73.845543], - [-100.136902, 73.795532], - [-100.026703, 73.729713], - [-100.027199, 73.763046], - [-99.955566, 73.813873], - [-99.857773, 73.842758], - [-99.843063, 73.878311], - [-99.871384, 73.898331], - [-99.892776, 73.891373], - [-99.873611, 73.866928], - [-99.948608, 73.87886], - [-100.0494, 73.832764], - [-100.249397, 73.833878], - [-100.292198, 73.872208], - [-100.142502, 73.931091], - [-99.85611, 73.940811], - [-99.800827, 73.931664], - [-99.836121, 73.901093], - [-99.785278, 73.867203], - [-99.398064, 73.798866], - [-99.206673, 73.725807], - [-99.247772, 73.696091], - [-99.189163, 73.685257], - [-99.115013, 73.748596], - [-98.789719, 73.734993], - [-98.688316, 73.772018], - [-98.134171, 73.809708], - [-97.960281, 73.846939], - [-97.900284, 73.896103], - [-97.734444, 73.905548], - [-97.825012, 73.858871], - [-97.602493, 73.894989], - [-97.47139, 73.857758], - [-97.223618, 73.856369], - [-96.962219, 73.738586], - [-96.934723, 73.68692], - [-96.968613, 73.633331], - [-97.202499, 73.557213], - [-97.433884, 73.581383], - [-97.459732, 73.573883], - [-97.432503, 73.531097], - [-97.459732, 73.515823], - [-97.638062, 73.538589], - [-97.668327, 73.483322], - [-97.623322, 73.456383], - [-97.417221, 73.493317], - [-97.18306, 73.464996], - [-97.17305, 73.443588], - [-97.248894, 73.429153], - [-97.167503, 73.410812], - [-97.171944, 73.352768], - [-97.267227, 73.36499], - [-97.841377, 73.273323], - [-97.862503, 73.233871], - [-98.240829, 73.075272], - [-98.510277, 73.00943], - [-98.44249, 72.981659], - [-98.473618, 72.95665], - [-98.42749, 72.943588], - [-98.445831, 72.865807], - [-98.227219, 72.987488], - [-97.846947, 73.048599], - [-97.283333, 72.963882], - [-97.225014, 72.939972], - [-97.253891, 72.931664], - [-97.258057, 72.883614], - [-97.415283, 72.86026], - [-97.236389, 72.842484], - [-97.161118, 72.780548], - [-97.053047, 72.757492], - [-97.029716, 72.71666], - [-97.170547, 72.673599], - [-97.196663, 72.604431], - [-97.081009, 72.605927], - [-96.915558, 72.678589], - [-96.536667, 72.750267], - [-96.517502, 72.714706], - [-96.585007, 72.693863], - [-96.455276, 72.640549], - [-96.459732, 72.607758], - [-96.405273, 72.559418], - [-96.438599, 72.534714], - [-96.37471, 72.534416], - [-96.325562, 72.488312], - [-96.29834, 72.415817], - [-96.39917, 72.407211], - [-96.446114, 72.369141], - [-96.668327, 72.309708], - [-96.871933, 72.321114], - [-96.561111, 72.275543], - [-96.614723, 72.245819], - [-96.533333, 72.236923], - [-96.485001, 72.129967], - [-96.498337, 72.090271], - [-96.866943, 72.041092], - [-96.672501, 72.012772], - [-96.488602, 72.034988], - [-96.522507, 71.959152], - [-96.76445, 71.914993], - [-96.491669, 71.926086], - [-96.570847, 71.819443], - [-96.74472, 71.792213], - [-96.738052, 71.824997], - [-96.67778, 71.837486], - [-96.775284, 71.843597], - [-96.978058, 71.795258], - [-97.084167, 71.700272], - [-97.504997, 71.611649], - [-97.988052, 71.661926], - [-98.207497, 71.646103], - [-98.359734, 71.728043], - [-98.321404, 71.803307], - [-98.209167, 71.88916], - [-98.267227, 71.90416], - [-98.291382, 71.894707], - [-98.262787, 71.866653], - [-98.338608, 71.85498], - [-98.462509, 71.783867], - [-98.493881, 71.713882], - [-98.391113, 71.707489], - [-98.410278, 71.688873], - [-98.381378, 71.653587], - [-98.18277, 71.583878], - [-98.148621, 71.538879], - [-98.037514, 71.526657], - [-98.198036, 71.414703], - [-98.46611, 71.313309], - [-98.729721, 71.270538], - [-98.829453, 71.293869], - [-98.960281, 71.379967], - [-99.238052, 71.344994], - [-99.313606, 71.470543], - [-99.410278, 71.53804], - [-99.369164, 71.575546], - [-99.574173, 71.619713], - [-99.678329, 71.760536], - [-99.788597, 71.786102], - [-99.872498, 71.858032], - [-100.101898, 71.88472], - [-100.443604, 72.057213], - [-100.423302, 72.096367], - [-100.481697, 72.086113], - [-100.513298, 72.108032], - [-100.490799, 72.126923], - [-100.634499, 72.185532], - [-100.8853, 72.207764], - [-100.951401, 72.171097], - [-101.0214, 72.202209], - [-101.055603, 72.236649], - [-101.019203, 72.254707], - [-101.083298, 72.258614], - [-101.037498, 72.276382], - [-101.220596, 72.332207], - [-101.395599, 72.286926], - [-101.402496, 72.244141], - [-101.495003, 72.244431], - [-101.469498, 72.265549], - [-101.585602, 72.301376], - [-101.776901, 72.299713], - [-101.890297, 72.362488], - [-101.879997, 72.399147], - [-101.775803, 72.389427], - [-101.916397, 72.406097], - [-101.963303, 72.463318], - [-101.911697, 72.472214], - [-102.597801, 72.648331], - [-102.741699, 72.724152], - [-102.714996, 72.745819], - [-102.7631, 72.790817], - [-102.646698, 72.864433], - [-102.576698, 72.979713], - [-102.501099, 73.030548], - [-102.2761, 73.082489], - [-101.962196, 73.089157], - [-101.9683, 73.049988], - [-101.768898, 73.021103], - [-101.7911, 72.98082], - [-101.732803, 72.967209], - [-101.817802, 72.96666], - [-101.741096, 72.924149], - [-101.618103, 72.886383], - [-101.618896, 72.909988], - [-101.5411, 72.921921], - [-101.595299, 72.902206], - [-101.509697, 72.871643], - [-101.4506, 72.816383], - [-101.466698, 72.800262], - [-101.294403, 72.789978], - [-101.296402, 72.74498], - [-101.4133, 72.748322], - [-101.366699, 72.725273], - [-100.882202, 72.689697], - [-100.812202, 72.715553], - [-100.870796, 72.735809], - [-100.828102, 72.758614], - [-100.447998, 72.735527], - [-100.331703, 72.780548], - [-100.324402, 72.838882], - [-100.416702, 72.869141], - [-100.387199, 72.897217], - [-100.442497, 72.921921], - [-100.3881, 72.944977], - [-100.498901, 72.950546], - [-100.421898, 73.034988], - [-100.309402, 73.028053], - [-100.407799, 73.011383], - [-100.381104, 73], - [-100.419998, 72.974152], - [-100.381401, 72.949142], - [-100.292801, 72.931931], - [-100.296997, 72.958603], - [-100.2556, 72.953873], - [-100.261101, 72.921097], - [-100.328598, 72.904984], - [-100.326103, 72.878036], - [-100.077499, 72.886932], - [-100.059402, 72.896942], - [-100.086899, 72.920258], - [-100.031403, 72.934982], - [-100.176399, 72.987762], - [-100.1064, 73.000816], - [-100.140602, 73.048027], - [-100.220596, 73.04248], - [-100.1772, 73.083878], - [-100.323898, 73.093597], - [-100.232201, 73.13443], - [-100.523903, 73.089706], - [-100.518303, 73.120247], - [-100.607803, 73.146378], - [-100.472801, 73.193314], - [-100.544701, 73.228317], - [-100.361099, 73.290268], - [-100.196701, 73.233322], - [-100.107803, 73.241364], - [-100.134697, 73.2211], - [-100.037498, 73.183868], - [-99.771667, 73.208038], - [-100.077499, 73.251389], - [-100.373901, 73.395828], - [-100.4058, 73.361366], - [-100.336098, 73.324997], - [-100.583603, 73.2836], - [-100.840599, 73.25972], - [-101.086098, 73.325699] - ] - ], - [ - [ - [-95.60054, 73.283913], - [-95.590843, 73.304428], - [-95.650833, 73.325272], - [-95.60083, 73.381653], - [-95.683884, 73.450272], - [-95.626099, 73.500549], - [-95.652496, 73.511383], - [-95.632767, 73.527771], - [-95.700287, 73.553864], - [-95.631668, 73.588318], - [-95.541107, 73.576103], - [-95.723328, 73.639977], - [-95.676102, 73.664993], - [-95.716949, 73.689423], - [-95.656387, 73.699417], - [-95.681953, 73.711929], - [-95.65889, 73.732483], - [-95.299728, 73.771103], - [-94.956673, 73.659149], - [-94.618057, 73.651382], - [-94.866096, 73.687187], - [-95.075562, 73.773323], - [-95.116096, 73.806641], - [-94.982498, 73.845543], - [-95.154167, 73.823608], - [-95.304169, 73.880814], - [-95.324722, 73.952477], - [-95.24527, 74.010269], - [-94.732224, 74.095261], - [-94.17778, 74.133614], - [-93.914169, 74.136108], - [-93.765007, 74.075821], - [-93.721939, 74.083054], - [-93.758347, 74.096939], - [-93.730827, 74.15416], - [-93.515007, 74.173027], - [-92.796387, 74.124977], - [-92.748894, 74.113312], - [-92.761124, 74.080551], - [-92.711937, 74.080551], - [-92.638062, 74.103043], - [-92.334442, 74.031372], - [-92.273621, 73.99054], - [-92.327789, 73.951393], - [-92.309433, 73.940811], - [-92.132492, 73.946373], - [-92.094162, 73.989151], - [-91.925552, 74.012772], - [-91.570847, 74.025818], - [-91.065002, 74.006104], - [-90.406662, 73.914703], - [-90.31778, 73.925262], - [-90.204178, 73.888321], - [-90.275284, 73.838593], - [-90.316963, 73.871368], - [-90.376663, 73.85582], - [-90.372498, 73.789703], - [-90.765007, 73.562187], - [-90.989723, 73.553307], - [-90.930283, 73.483871], - [-91.180557, 73.345833], - [-91.262222, 73.263893], - [-91.634453, 73.228867], - [-91.367767, 73.200821], - [-91.642776, 73.021103], - [-91.646118, 72.97998], - [-91.818893, 72.862198], - [-92.066101, 72.752487], - [-92.393341, 72.707207], - [-93.222778, 72.780823], - [-93.311394, 72.814697], - [-93.603058, 72.774986], - [-94.29805, 72.770264], - [-94.334442, 72.738037], - [-94.3125, 72.715553], - [-94.142227, 72.734993], - [-93.902496, 72.705833], - [-93.775558, 72.734993], - [-93.81723, 72.642212], - [-93.568619, 72.570831], - [-93.463333, 72.462196], - [-93.628052, 72.341927], - [-93.819733, 72.307213], - [-94.014183, 72.163879], - [-94.080841, 72.06694], - [-94.228333, 72.039978], - [-94.153061, 72.018883], - [-94.022232, 72.059418], - [-94.069733, 72.024147], - [-94.029716, 71.99942], - [-94.063049, 71.978317], - [-94.449722, 72.023323], - [-95.175827, 71.966927], - [-95.10527, 71.99498], - [-95.207779, 71.988876], - [-95.196381, 72.052467], - [-95.083618, 72.097763], - [-95.196663, 72.106644], - [-94.752228, 72.15332], - [-95.171112, 72.13916], - [-95.161667, 72.162773], - [-95.214722, 72.205261], - [-95.159729, 72.350807], - [-95.236107, 72.428589], - [-95.145279, 72.431374], - [-95.196663, 72.450821], - [-95.133331, 72.460274], - [-95.200287, 72.524429], - [-95.316101, 72.539703], - [-95.346657, 72.587486], - [-95.313316, 72.601089], - [-95.364441, 72.643333], - [-95.602219, 72.702209], - [-95.599731, 72.73526], - [-95.513062, 72.736923], - [-95.570007, 72.765823], - [-95.55722, 72.785538], - [-95.666107, 72.801376], - [-95.656387, 72.901093], - [-95.622772, 72.927467], - [-95.718613, 72.999153], - [-95.655563, 73.019989], - [-95.642227, 73.053307], - [-95.688316, 73.080551], - [-95.657501, 73.112198], - [-95.5, 73.128593], - [-95.579453, 73.159416], - [-95.596947, 73.219437], - [-95.557503, 73.23082], - [-95.60054, 73.283913] - ] - ], - [ - [ - [-99.45462, 75.974808], - [-99.863327, 75.935532], - [-99.905563, 75.9561], - [-99.87471, 75.983871], - [-100.035301, 76.006943], - [-99.995003, 76.034149], - [-100.077499, 76.038879], - [-100.1119, 76.101379], - [-100.220596, 76.132202], - [-100.031097, 76.155548], - [-99.714172, 76.114433], - [-99.414436, 76.158333], - [-99.716949, 76.139709], - [-100.001099, 76.201927], - [-100.438904, 76.212486], - [-100.512802, 76.249153], - [-100.464996, 76.274986], - [-100.074699, 76.271927], - [-100.203598, 76.298866], - [-100.186401, 76.313873], - [-100.029198, 76.27916], - [-99.848618, 76.283867], - [-100.0233, 76.295822], - [-99.92305, 76.317757], - [-100.153099, 76.349152], - [-100.179398, 76.360809], - [-100.147202, 76.380257], - [-100.694397, 76.374977], - [-100.982498, 76.50499], - [-100.7117, 76.532211], - [-100.723297, 76.556091], - [-100.653099, 76.576393], - [-100.318901, 76.635536], - [-99.837784, 76.608597], - [-99.684433, 76.633331], - [-99.551392, 76.609154], - [-99.676941, 76.59166], - [-99.522781, 76.588318], - [-99.291672, 76.500267], - [-99.143623, 76.501663], - [-99.25528, 76.453598], - [-99.079727, 76.397217], - [-99.122498, 76.461113], - [-98.980827, 76.471649], - [-98.925827, 76.436096], - [-98.846123, 76.436096], - [-98.889183, 76.446373], - [-98.86528, 76.469147], - [-99.050552, 76.536102], - [-99.027222, 76.601089], - [-98.814713, 76.613602], - [-98.743057, 76.579987], - [-98.725037, 76.611542], - [-98.538887, 76.616379], - [-98.509453, 76.630539], - [-98.537216, 76.641937], - [-98.483063, 76.649147], - [-98.744453, 76.643883], - [-98.852493, 76.671654], - [-98.480293, 76.679153], - [-98.403877, 76.661377], - [-98.419724, 76.622482], - [-98.151672, 76.585823], - [-98.395554, 76.594437], - [-98.357773, 76.565536], - [-97.662781, 76.481087], - [-97.695541, 76.460823], - [-97.662514, 76.419434], - [-97.727219, 76.395538], - [-97.783623, 76.319717], - [-97.509171, 76.188873], - [-97.494453, 76.138893], - [-97.588333, 76.080833], - [-97.58139, 76.042213], - [-97.656387, 75.972763], - [-97.558037, 75.864433], - [-97.664169, 75.79332], - [-97.938599, 75.741364], - [-97.386673, 75.682747], - [-97.369164, 75.65332], - [-97.411942, 75.61554], - [-97.422501, 75.506378], - [-97.378326, 75.434143], - [-97.280838, 75.396942], - [-97.469162, 75.42276], - [-97.496109, 75.4422], - [-97.487503, 75.496094], - [-97.711937, 75.566673], - [-97.762512, 75.568047], - [-97.752792, 75.53804], - [-97.841949, 75.550812], - [-97.856949, 75.535538], - [-97.789993, 75.518883], - [-97.74527, 75.46666], - [-97.835831, 75.460823], - [-97.847504, 75.502213], - [-97.932503, 75.512497], - [-98.043327, 75.481369], - [-97.949722, 75.461113], - [-98.055557, 75.452477], - [-97.774719, 75.423027], - [-98.036942, 75.412201], - [-97.876663, 75.36499], - [-98.069168, 75.349716], - [-98.107773, 75.371918], - [-98.164719, 75.329163], - [-98.080566, 75.329987], - [-98.129173, 75.301933], - [-98.04805, 75.284714], - [-98.006119, 75.319717], - [-97.894173, 75.329437], - [-97.995827, 75.27887], - [-97.913063, 75.26416], - [-97.922501, 75.295258], - [-97.887512, 75.300537], - [-97.873894, 75.270264], - [-97.743607, 75.224991], - [-97.736938, 75.204437], - [-97.800278, 75.193863], - [-97.69249, 75.193863], - [-97.654167, 75.179703], - [-97.676941, 75.164146], - [-97.567497, 75.147491], - [-97.619453, 75.118591], - [-97.862503, 75.111099], - [-98.024719, 75.162491], - [-98.025833, 75.210823], - [-98.098618, 75.222763], - [-98.07251, 75.199142], - [-98.146667, 75.163879], - [-98.090652, 75.137299], - [-97.966949, 75.104156], - [-97.938599, 75.064987], - [-97.949997, 75.021103], - [-97.982498, 75.015266], - [-98.748337, 74.989967], - [-98.84584, 75.00972], - [-98.859161, 75.061653], - [-98.960281, 75.051933], - [-98.928047, 75.012207], - [-98.956123, 75.003601], - [-99.376663, 74.985527], - [-99.406113, 74.993317], - [-99.37471, 75.007767], - [-99.387512, 75.037773], - [-99.281387, 75.122482], - [-99.496658, 75.026382], - [-99.426392, 74.991364], - [-99.538597, 74.974152], - [-100.347801, 75.016937], - [-100.393898, 75.037201], - [-100.378098, 75.113312], - [-100.430801, 75.147217], - [-100.398102, 75.1586], - [-100.538597, 75.204712], - [-99.987778, 75.236099], - [-100.393898, 75.260269], - [-100.257202, 75.313309], - [-100.523102, 75.293053], - [-100.7789, 75.35054], - [-100.4328, 75.375259], - [-100.6978, 75.436371], - [-100.011902, 75.46138], - [-100.306999, 75.471649], - [-99.951111, 75.492477], - [-100.283096, 75.514999], - [-100.155403, 75.52359], - [-99.845001, 75.540817], - [-100.039398, 75.554153], - [-99.712509, 75.589157], - [-99.66777, 75.611099], - [-99.863052, 75.614433], - [-99.809433, 75.635536], - [-99.817497, 75.655258], - [-99.033073, 75.6772], - [-98.889999, 75.695251], - [-98.971939, 75.710274], - [-100.559196, 75.647217], - [-101.365501, 75.574158], - [-101.377197, 75.598877], - [-101.495499, 75.601929], - [-102.668297, 75.497208], - [-102.671898, 75.52832], - [-102.7789, 75.544434], - [-102.728897, 75.572487], - [-102.8778, 75.624687], - [-102.632202, 75.6147], - [-102.701401, 75.62886], - [-102.666397, 75.648613], - [-102.689201, 75.670532], - [-102.531403, 75.691093], - [-102.583099, 75.709991], - [-102.538902, 75.721367], - [-102.009201, 75.703049], - [-102.236702, 75.744141], - [-102.093597, 75.791092], - [-102.366096, 75.789978], - [-102.290298, 75.857208], - [-101.864403, 75.902206], - [-101.459702, 75.810806], - [-101.459702, 75.761108], - [-101.254997, 75.744713], - [-100.911102, 75.811653], - [-101.347801, 75.774986], - [-101.323601, 75.80748], - [-101.363899, 75.847763], - [-101.537201, 75.861366], - [-101.597801, 75.919708], - [-101.302803, 76.013046], - [-101.678299, 75.979713], - [-101.8489, 76.024696], - [-101.907204, 76.078598], - [-101.888603, 76.119141], - [-101.761101, 76.174149], - [-101.385002, 76.248871], - [-102.133102, 76.219994], - [-102.165802, 76.238312], - [-102.063904, 76.255257], - [-102.059402, 76.27916], - [-102.194397, 76.289429], - [-102.041397, 76.318604], - [-102.097198, 76.34166], - [-102.064697, 76.358322], - [-101.957497, 76.357483], - [-102.050797, 76.398041], - [-101.862198, 76.450272], - [-101.315804, 76.414429], - [-101.058296, 76.326927], - [-101.140602, 76.240257], - [-100.751099, 76.182213], - [-100.625504, 76.127472], - [-100.727203, 76.090553], - [-100.417503, 76.116379], - [-100.621101, 76.079712], - [-100.315804, 76.051376], - [-100.171898, 75.959717], - [-100.071098, 75.945534], - [-100.145302, 75.908043], - [-99.983612, 75.919434], - [-99.981949, 75.88472], - [-99.930283, 75.873596], - [-99.45462, 75.974808] - ] - ], - [ - [ - [-99.57988, 69.04393], - [-99.455002, 69.137772], - [-99.341667, 69.123596], - [-99.311394, 69.158867], - [-99.006958, 69.136383], - [-98.936394, 69.172493], - [-98.720284, 69.193863], - [-98.706947, 69.261383], - [-98.653877, 69.294983], - [-98.555557, 69.275269], - [-98.393341, 69.308029], - [-98.397232, 69.338318], - [-98.611938, 69.444138], - [-98.577217, 69.479431], - [-98.419449, 69.471367], - [-98.601669, 69.520828], - [-98.556664, 69.580833], - [-98.357773, 69.559143], - [-98.219162, 69.473312], - [-98.103333, 69.459717], - [-98.092499, 69.424988], - [-98.003891, 69.435806], - [-98.263062, 69.578873], - [-98.367767, 69.601089], - [-98.281952, 69.751663], - [-97.974167, 69.892212], - [-97.458054, 69.76944], - [-97.34111, 69.706383], - [-97.489441, 69.673866], - [-97.391388, 69.593323], - [-97.303879, 69.698318], - [-97.273903, 69.694702], - [-96.879173, 69.491364], - [-96.789719, 69.495247], - [-96.51889, 69.418053], - [-96.218338, 69.311096], - [-96.176392, 69.269989], - [-96.251404, 69.15387], - [-96.210007, 69.123032], - [-96.229721, 69.054703], - [-96.118881, 69.025543], - [-96.15834, 69.086929], - [-96.134743, 69.125259], - [-96.155838, 69.168587], - [-96.047783, 69.228317], - [-95.924438, 69.089432], - [-95.978882, 69.043869], - [-95.857773, 68.972214], - [-95.833618, 68.872757], - [-95.756958, 68.891373], - [-95.626099, 68.82666], - [-95.351387, 68.899429], - [-95.206947, 68.850273], - [-95.535278, 68.671921], - [-95.565552, 68.674698], - [-95.538887, 68.723312], - [-95.593887, 68.752777], - [-95.790558, 68.737198], - [-95.798607, 68.693588], - [-95.859734, 68.65332], - [-95.852493, 68.608597], - [-96.000839, 68.619431], - [-96.291382, 68.473038], - [-96.503616, 68.446091], - [-96.928329, 68.521378], - [-97.099167, 68.587769], - [-97.143623, 68.584427], - [-97.098892, 68.528587], - [-97.181107, 68.511383], - [-97.506119, 68.541931], - [-97.761398, 68.653587], - [-98.035553, 68.694702], - [-98.120003, 68.670822], - [-98.290558, 68.755547], - [-98.244164, 68.82222], - [-98.383331, 68.859993], - [-98.425003, 68.84137], - [-98.400284, 68.770828], - [-98.519447, 68.747482], - [-98.575012, 68.786652], - [-98.859444, 68.829163], - [-98.870003, 68.874153], - [-98.811394, 68.915817], - [-98.849442, 68.933594], - [-98.98111, 68.950546], - [-99.006958, 68.907761], - [-99.118057, 68.921097], - [-99.044159, 68.859711], - [-99.188599, 68.824158], - [-99.437767, 68.891098], - [-99.460564, 68.950821], - [-99.594162, 69.015823], - [-99.57988, 69.04393] - ] - ], - [ - [ - [-104.042198, 78.620682], - [-103.826103, 78.671921], - [-103.483597, 78.669144], - [-103.518097, 78.710823], - [-103.318901, 78.740257], - [-103.468102, 78.787491], - [-103.581398, 78.743591], - [-103.616402, 78.767487], - [-103.796097, 78.735809], - [-103.695297, 78.793869], - [-103.726898, 78.8022], - [-103.886101, 78.804428], - [-103.905296, 78.768883], - [-103.991096, 78.758881], - [-104.198898, 78.770264], - [-104.215302, 78.793587], - [-104.167198, 78.816383], - [-103.821701, 78.898331], - [-104.203598, 78.991653], - [-104.265602, 78.988586], - [-104.293098, 78.954987], - [-104.455002, 78.9561], - [-104.564201, 78.8647], - [-104.785797, 78.806641], - [-105.011902, 78.803589], - [-105.012199, 78.844711], - [-104.870796, 78.88916], - [-104.681099, 79.016663], - [-104.937202, 79.05304], - [-105.395302, 79.011658], - [-105.590797, 79.034416], - [-105.628601, 79.161377], - [-105.541702, 79.239967], - [-105.420502, 79.284416], - [-105.482803, 79.306374], - [-105.440002, 79.329163], - [-105.127197, 79.297493], - [-104.007202, 79.367752], - [-103.722504, 79.356934], - [-102.8769, 79.233047], - [-102.926697, 79.211113], - [-102.891701, 79.166656], - [-102.611702, 79.093048], - [-102.665604, 78.982758], - [-102.773598, 78.944138], - [-102.583603, 78.948593], - [-102.573097, 78.929703], - [-102.626099, 78.900269], - [-102.579498, 78.873032], - [-102.391998, 78.931664], - [-102.380501, 78.962769], - [-102.417198, 79.009163], - [-102.268097, 79.029709], - [-101.9422, 79.084717], - [-101.648903, 79.075821], - [-101.231697, 78.959427], - [-101.1408, 78.974152], - [-100.986702, 78.937187], - [-101.2006, 78.820831], - [-101.186401, 78.802757], - [-100.925598, 78.763321], - [-100.351097, 78.828323], - [-100.323303, 78.778053], - [-99.896393, 78.695824], - [-100.0625, 78.638893], - [-100.016701, 78.616653], - [-99.853333, 78.633041], - [-99.748337, 78.597214], - [-99.550278, 78.590271], - [-99.529716, 78.578049], - [-99.551941, 78.56192], - [-99.651398, 78.544983], - [-99.597778, 78.530548], - [-99.670273, 78.479713], - [-99.867767, 78.437477], - [-99.748337, 78.383614], - [-99.793877, 78.297211], - [-99.529449, 78.282494], - [-99.413887, 78.205261], - [-98.945831, 78.061653], - [-98.971657, 77.997757], - [-99.099167, 77.960823], - [-99.013344, 77.888321], - [-99.179993, 77.84082], - [-99.822243, 77.814148], - [-99.906952, 77.778587], - [-100.607498, 77.859993], - [-100.604202, 77.890823], - [-100.838303, 78.022774], - [-100.747803, 78.077209], - [-100.998596, 78.131653], - [-101.035599, 78.196091], - [-101.289398, 78.18248], - [-101.474197, 78.234711], - [-102.133102, 78.282761], - [-102.618599, 78.241364], - [-102.809402, 78.288307], - [-102.807999, 78.31694], - [-102.665802, 78.358597], - [-102.777802, 78.376373], - [-103.68, 78.31192], - [-103.9058, 78.272774], - [-103.898903, 78.245819], - [-103.963097, 78.233597], - [-104.467499, 78.265266], - [-104.820602, 78.35582], - [-104.991898, 78.437759], - [-105.043098, 78.505829], - [-104.831398, 78.569992], - [-104.666702, 78.579712], - [-103.523598, 78.496094], - [-103.448898, 78.534714], - [-103.494499, 78.566673], - [-103.378098, 78.586113], - [-103.431999, 78.598602], - [-103.400002, 78.61554], - [-104.042198, 78.620682] - ] - ], - [ - [ - [-80.771667, 73.74971], - [-80.373322, 73.761658], - [-80.142227, 73.69664], - [-80.023064, 73.727203], - [-79.45195, 73.630539], - [-78.166397, 73.668053], - [-77.424438, 73.554703], - [-77.19194, 73.501389], - [-77.029449, 73.398041], - [-77.048889, 73.361923], - [-76.893341, 73.321114], - [-76.708054, 73.317757], - [-76.738602, 73.279984], - [-76.579727, 73.219711], - [-76.631668, 73.167213], - [-76.495537, 73.116928], - [-76.241096, 73.092209], - [-76.318069, 73.062759], - [-76.279449, 73.045822], - [-76.323624, 73.020828], - [-76.260277, 72.997208], - [-76.333069, 72.963608], - [-76.118607, 72.940262], - [-76.059433, 72.900818], - [-76.149986, 72.842209], - [-76.5625, 72.812477], - [-77.704178, 72.897217], - [-78.236359, 72.893013], - [-79.209167, 72.74498], - [-79.594162, 72.753326], - [-79.998611, 72.863037], - [-80.181381, 73.043869], - [-80.122772, 73.114433], - [-80.178329, 73.158333], - [-80.110001, 73.179703], - [-80.151947, 73.222488], - [-80.797501, 73.276932], - [-80.876099, 73.327766], - [-80.844162, 73.352478], - [-80.892502, 73.374687], - [-80.861938, 73.396378], - [-80.884453, 73.439697], - [-80.85556, 73.47554], - [-80.695267, 73.477768], - [-80.867218, 73.544708], - [-80.902222, 73.602768], - [-80.797501, 73.659988], - [-80.80249, 73.714432], - [-80.861717, 73.745178], - [-80.771667, 73.74971] - ] - ], - [ - [ - [-75, 68.11969], - [-75.05249, 68.036652], - [-75.164436, 67.954163], - [-75.104446, 67.847488], - [-75.044449, 67.812477], - [-75.066391, 67.695534], - [-75.025284, 67.619431], - [-75.071953, 67.538879], - [-75.388062, 67.354713], - [-75.517227, 67.351646], - [-75.59111, 67.306641], - [-75.908051, 67.248596], - [-76.242218, 67.262207], - [-76.66362, 67.219994], - [-77.044724, 67.260536], - [-77.175003, 67.421097], - [-77.246948, 67.451927], - [-77.256393, 67.516388], - [-77.22583, 67.543869], - [-77.32251, 67.698029], - [-77.220551, 67.861923], - [-76.865547, 68.157761], - [-76.606949, 68.279427], - [-76.281952, 68.332764], - [-76.235817, 68.303307], - [-76.083328, 68.295258], - [-75.917503, 68.338318], - [-75.726097, 68.330276], - [-75.134743, 68.234711], - [-75, 68.11969] - ] - ], - [ - [ - [-95.959473, 74.856369], - [-96.127777, 74.915543], - [-96.033333, 74.949417], - [-96.050827, 74.972763], - [-96.141678, 74.957207], - [-96.056381, 75.010269], - [-96.074173, 75.023613], - [-96.142227, 75.017761], - [-96.209732, 74.915543], - [-96.268341, 74.90387], - [-96.403061, 74.925812], - [-96.37944, 74.943863], - [-96.394173, 74.978317], - [-96.328056, 74.974701], - [-96.331123, 75.004707], - [-96.614166, 74.984993], - [-96.587509, 75.031662], - [-96.604721, 75.063309], - [-96.463058, 75.193314], - [-96.380829, 75.175262], - [-96.366386, 75.193314], - [-96.399727, 75.204987], - [-96.378601, 75.21666], - [-96.04805, 75.238312], - [-95.987778, 75.25], - [-96.08139, 75.25], - [-96.077789, 75.272491], - [-95.903343, 75.289978], - [-96.172501, 75.285538], - [-95.944443, 75.378036], - [-95.890556, 75.372208], - [-95.919998, 75.346939], - [-95.776947, 75.371918], - [-96.033333, 75.401093], - [-96.151108, 75.374977], - [-96.178879, 75.38443], - [-96.09584, 75.417763], - [-95.958344, 75.436371], - [-95.760834, 75.390823], - [-95.684723, 75.428307], - [-95.838058, 75.459152], - [-95.749733, 75.513321], - [-95.456673, 75.568329], - [-95.371109, 75.552467], - [-95.275284, 75.60582], - [-95.178596, 75.584427], - [-94.88266, 75.635788], - [-94.363892, 75.59082], - [-93.989723, 75.434982], - [-93.676941, 75.356644], - [-93.649727, 75.320831], - [-93.801102, 75.303589], - [-93.499161, 75.264709], - [-93.578339, 75.197746], - [-93.456673, 75.116379], - [-93.509171, 75.091087], - [-93.488892, 75.072487], - [-93.642776, 75.038589], - [-93.515289, 75.038307], - [-93.42778, 74.955261], - [-93.406387, 74.883614], - [-93.438889, 74.757767], - [-93.563606, 74.743042], - [-93.463058, 74.729431], - [-93.484734, 74.687759], - [-93.741379, 74.635536], - [-94.278061, 74.650818], - [-94.643341, 74.623596], - [-94.869453, 74.684982], - [-94.91362, 74.662201], - [-95.080002, 74.680817], - [-95.06778, 74.736366], - [-95.283333, 74.798027], - [-95.443878, 74.769707], - [-95.38028, 74.799713], - [-95.457497, 74.798317], - [-95.482773, 74.779427], - [-95.450562, 74.741653], - [-95.519173, 74.74054], - [-95.547501, 74.756378], - [-95.493057, 74.798866], - [-95.518066, 74.811653], - [-95.625816, 74.80748], - [-95.725014, 74.843048], - [-95.735001, 74.81749], - [-95.907784, 74.819443], - [-95.868881, 74.848038], - [-95.959473, 74.856369] - ] - ], - [ - [ - [-82.185822, 62.979988], - [-81.911667, 62.952221], - [-81.865547, 62.923321], - [-81.90361, 62.852779], - [-81.949722, 62.834991], - [-81.938599, 62.709991], - [-82.13945, 62.60638], - [-82.369164, 62.547489], - [-82.442207, 62.458599], - [-83.001953, 62.204441], - [-83.136398, 62.17305], - [-83.198608, 62.22221], - [-83.337784, 62.25222], - [-83.703888, 62.141659], - [-83.731667, 62.3036], - [-83.945267, 62.427219], - [-83.90834, 62.482769], - [-83.704178, 62.569439], - [-83.570007, 62.67527], - [-83.527496, 62.82111], - [-83.374161, 62.90694], - [-83.21167, 62.913601], - [-83.142502, 62.854439], - [-83.041107, 62.837212], - [-82.694443, 62.93943], - [-82.420837, 62.924999], - [-82.29277, 62.98333], - [-82.185822, 62.979988] - ] - ], - [ - [ - [-97.949432, 78.816383], - [-97.488602, 78.796654], - [-97.025284, 78.741928], - [-96.886398, 78.69664], - [-96.533623, 78.676933], - [-96.315826, 78.618042], - [-96.184433, 78.628593], - [-96.152496, 78.611366], - [-96.275009, 78.533333], - [-95.964447, 78.483597], - [-95.601936, 78.519707], - [-94.894997, 78.395828], - [-94.837509, 78.347214], - [-95.39917, 78.231087], - [-95.130829, 78.194138], - [-95.089722, 78.154984], - [-94.889999, 78.108871], - [-94.929718, 78.08194], - [-94.888062, 78.058868], - [-95.112503, 77.951393], - [-95.37999, 77.966377], - [-96.285553, 77.859421], - [-96.541107, 77.897217], - [-96.735001, 77.866928], - [-96.491669, 77.870247], - [-96.570557, 77.851929], - [-96.515556, 77.845543], - [-96.71167, 77.839706], - [-96.837784, 77.805252], - [-96.817497, 77.791656], - [-97.096947, 77.803307], - [-97.081123, 77.843597], - [-97.120003, 77.870247], - [-96.995003, 77.921097], - [-97.775558, 78.034988], - [-97.651398, 78.051933], - [-97.684433, 78.073883], - [-97.647781, 78.09082], - [-96.910278, 78.079163], - [-96.85556, 78.104156], - [-96.904449, 78.113037], - [-96.870537, 78.133331], - [-97.321121, 78.207489], - [-97.926666, 78.217758], - [-97.91362, 78.244141], - [-97.763344, 78.244431], - [-98.054718, 78.301651], - [-98.010277, 78.333328], - [-98.087509, 78.375809], - [-98.036942, 78.397217], - [-98.347778, 78.443039], - [-98.410553, 78.490257], - [-98.319458, 78.51915], - [-98.345284, 78.534714], - [-98.019173, 78.542763], - [-98.32695, 78.650543], - [-98.311394, 78.699707], - [-98.371658, 78.719994], - [-98.31778, 78.746643], - [-98.364723, 78.768051], - [-98.144447, 78.816673], - [-97.949432, 78.816383] - ] - ], - [ - [ - [-105.2258, 72.933037], - [-105.356102, 72.947746], - [-105.292503, 72.924698], - [-105.324203, 72.906097], - [-105.204201, 72.864151], - [-105.383102, 72.866653], - [-105.462502, 72.94136], - [-105.903603, 73.130814], - [-105.895798, 73.161102], - [-106.101402, 73.189697], - [-106.044403, 73.219437], - [-106.193604, 73.284988], - [-106.126099, 73.291367], - [-106.466103, 73.401382], - [-107.034203, 73.486366], - [-106.645798, 73.699142], - [-106.205597, 73.734154], - [-105.148598, 73.754173], - [-104.824203, 73.637207], - [-104.580803, 73.600273], - [-104.483101, 73.534416], - [-104.5756, 73.453873], - [-104.548599, 73.414703], - [-104.586899, 73.37442], - [-104.573303, 73.323036], - [-104.760002, 73.203873], - [-104.739403, 73.179977], - [-104.975601, 73.085274], - [-104.984703, 73.020538], - [-105.2258, 72.933037] - ] - ], - [ - [ - [-79.541321, 61.799789], - [-79.60527, 61.76527], - [-79.656952, 61.64249], - [-79.761398, 61.576939], - [-79.846123, 61.569988], - [-79.959442, 61.68721], - [-80.275284, 61.80666], - [-80.292221, 61.873051], - [-80.257507, 61.883881], - [-80.295273, 61.983601], - [-80.268623, 62.10722], - [-80.180283, 62.217491], - [-79.94722, 62.386108], - [-79.714447, 62.39777], - [-79.700562, 62.369991], - [-79.561943, 62.41721], - [-79.442757, 62.37999], - [-79.359161, 62.296101], - [-79.260834, 62.253609], - [-79.261398, 62.163601], - [-79.333618, 62.05471], - [-79.315826, 61.98888], - [-79.381104, 62.002781], - [-79.541321, 61.799789] - ] - ], - [ - [ - [-81.087784, 53.17944], - [-80.763344, 52.931381], - [-80.66777, 52.771931], - [-80.712509, 52.689159], - [-81.024437, 52.750549], - [-81.251953, 52.8325], - [-81.916656, 52.961658], - [-82.063316, 53.026661], - [-81.965286, 53.122219], - [-81.848053, 53.18166], - [-81.375, 53.224991], - [-81.087784, 53.17944] - ] - ], - [ - [ - [-83.921387, 66.00972], - [-83.683319, 65.910538], - [-83.699722, 65.851379], - [-83.796951, 65.811371], - [-83.525009, 65.737762], - [-83.529716, 65.708328], - [-83.360001, 65.727478], - [-83.210831, 65.705833], - [-83.263634, 65.688309], - [-83.247498, 65.659714], - [-83.288887, 65.632751], - [-83.379173, 65.61554], - [-83.468613, 65.654984], - [-83.623611, 65.661377], - [-83.58667, 65.703873], - [-83.662514, 65.676376], - [-83.62471, 65.646652], - [-83.760559, 65.670258], - [-83.842773, 65.649147], - [-83.785828, 65.724701], - [-83.684158, 65.744431], - [-83.827499, 65.748322], - [-83.785278, 65.788879], - [-83.960007, 65.737762], - [-84.143623, 65.76416], - [-84.101097, 65.819717], - [-84.130829, 65.909714], - [-84.193329, 65.929153], - [-84.208618, 65.977203], - [-84.382767, 66.000549], - [-84.468063, 66.064987], - [-84.470284, 66.133331], - [-84.096657, 66.056931], - [-84.008347, 66.077209], - [-84.000557, 66.02887], - [-83.921387, 66.00972] - ] - ], - [ - [ - [-93.174713, 77.704163], - [-93.101936, 77.662491], - [-93.37944, 77.630814], - [-93.405563, 77.609154], - [-93.37999, 77.583878], - [-93.486389, 77.545532], - [-93.502502, 77.503052], - [-93.475281, 77.471367], - [-93.570557, 77.437759], - [-94.878326, 77.484993], - [-95.864166, 77.462196], - [-96.083328, 77.497757], - [-96.328888, 77.60498], - [-96.269173, 77.614151], - [-96.289169, 77.650543], - [-96.245003, 77.662491], - [-96.241096, 77.694977], - [-95.465286, 77.808029], - [-95.363892, 77.737198], - [-95.30278, 77.763893], - [-95.243057, 77.742752], - [-94.752228, 77.788589], - [-94.343887, 77.753883], - [-94.042503, 77.766098], - [-93.931381, 77.732483], - [-93.656952, 77.776657], - [-93.174713, 77.704163] - ] - ], - [ - [ - [-73.655472, 68.007713], - [-73.411667, 67.974991], - [-73.430283, 67.914146], - [-73.405563, 67.856934], - [-73.348618, 67.828049], - [-73.449432, 67.762497], - [-74.48111, 67.789429], - [-74.684433, 67.881927], - [-74.772232, 67.963318], - [-74.778061, 68.006104], - [-74.731949, 68.070831], - [-74.456123, 68.067207], - [-74.339447, 68.1772], - [-74.212509, 68.130539], - [-74.266403, 68.059418], - [-73.974716, 68.041092], - [-73.794159, 67.988586], - [-73.655472, 68.007713] - ] - ], - [ - [ - [-105.648903, 77.748596], - [-105.027802, 77.546371], - [-104.945, 77.484993], - [-105.0103, 77.458603], - [-105.0103, 77.408043], - [-104.741096, 77.414429], - [-104.706703, 77.377762], - [-104.425003, 77.309708], - [-104.472504, 77.284149], - [-104.395599, 77.276382], - [-104.3675, 77.224426], - [-104.472504, 77.137497], - [-104.740303, 77.108597], - [-105.044403, 77.171371], - [-105.226402, 77.161102], - [-105.261101, 77.171654], - [-105.248596, 77.205551], - [-105.396103, 77.213043], - [-105.323898, 77.23027], - [-105.550301, 77.311653], - [-105.573097, 77.329437], - [-105.544701, 77.367477], - [-105.657501, 77.380257], - [-105.631897, 77.406937], - [-105.689697, 77.41748], - [-105.655602, 77.441933], - [-105.764999, 77.463882], - [-105.687202, 77.515549], - [-105.856903, 77.54332], - [-105.8181, 77.55748], - [-105.834396, 77.61026], - [-106.091698, 77.715271], - [-105.913902, 77.762497], - [-105.648903, 77.748596] - ] - ], - [ - [ - [-78.212784, 63.496101], - [-77.845001, 63.47221], - [-77.81778, 63.454441], - [-77.844452, 63.437771], - [-77.80722, 63.425831], - [-77.680557, 63.434429], - [-77.636673, 63.402771], - [-77.635559, 63.358891], - [-77.495003, 63.265831], - [-77.570282, 63.206661], - [-77.560272, 63.18277], - [-77.958344, 63.093048], - [-78.5625, 63.395828], - [-78.572777, 63.440269], - [-78.212784, 63.496101] - ] - ], - [ - [ - [-78.458618, 69.389977], - [-78.279716, 69.370247], - [-78.214447, 69.288307], - [-78.356377, 69.196091], - [-78.467216, 69.219711], - [-78.476097, 69.161377], - [-78.556381, 69.137497], - [-78.556664, 69.083603], - [-78.715012, 69.00972], - [-78.725281, 68.968872], - [-78.867493, 68.900543], - [-79.216949, 68.829987], - [-79.400284, 68.871918], - [-79.388062, 68.906647], - [-79.419159, 68.920258], - [-79.309433, 68.973602], - [-79.227219, 69.076393], - [-78.960281, 69.102478], - [-78.864166, 69.141098], - [-78.858887, 69.189972], - [-78.749161, 69.261108], - [-78.619453, 69.261658], - [-78.721939, 69.310532], - [-78.71611, 69.340271], - [-78.458618, 69.389977] - ] - ], - [ - [ - [-79.768066, 69.752777], - [-79.68721, 69.814697], - [-79.476936, 69.803589], - [-79.329453, 69.701393], - [-79.631668, 69.608871], - [-79.91806, 69.603592], - [-80.059433, 69.643883], - [-80.078888, 69.622208], - [-79.935547, 69.527206], - [-80.011948, 69.491653], - [-80.229446, 69.531097], - [-80.219162, 69.625259], - [-80.325012, 69.554977], - [-80.353607, 69.6147], - [-80.492767, 69.664993], - [-80.809433, 69.683037], - [-80.725014, 69.749153], - [-80.649727, 69.748596], - [-80.462784, 69.712769], - [-80.400833, 69.666092], - [-80.419159, 69.699142], - [-80.375267, 69.709717], - [-80.448608, 69.723877], - [-80.504463, 69.774986], - [-80.388901, 69.799988], - [-80.329727, 69.774147], - [-80.18277, 69.792763], - [-80.120537, 69.758614], - [-80.146118, 69.720833], - [-80.085007, 69.749153], - [-79.964172, 69.720833], - [-79.768066, 69.752777] - ] - ], - [ - [ - [-90, 77.547783], - [-89.719162, 77.458328], - [-89.711121, 77.365257], - [-89.636124, 77.339157], - [-90, 77.213814], - [-90.39473, 77.199142], - [-90.419159, 77.208038], - [-90.387512, 77.227203], - [-91.142227, 77.360527], - [-91.106377, 77.374687], - [-91.208893, 77.414993], - [-91.170273, 77.449707], - [-91.205566, 77.518883], - [-91.184433, 77.608597], - [-90.906387, 77.653053], - [-90.339172, 77.623871], - [-90, 77.547783] - ] - ], - [ - [ - [-97.65361, 74.099991], - [-97.649437, 74.052467], - [-97.763634, 73.988312], - [-98.010559, 73.937477], - [-98.144997, 73.873596], - [-98.392776, 73.845261], - [-98.652222, 73.834427], - [-98.715286, 73.861366], - [-98.754181, 73.837486], - [-98.72084, 73.82222], - [-98.74028, 73.813309], - [-98.96167, 73.805252], - [-99.166397, 73.832489], - [-98.823624, 73.824432], - [-98.847778, 73.849152], - [-99.25, 73.852768], - [-99.4375, 73.896942], - [-99.281952, 73.938026], - [-98.972778, 73.951103], - [-99.013901, 73.984154], - [-98.765289, 74.031097], - [-98.491943, 74.034149], - [-97.994453, 74.109421], - [-97.65361, 74.099991] - ] - ], - [ - [ - [-104.151802, 75.434563], - [-103.803299, 75.36026], - [-103.814201, 75.330833], - [-103.733902, 75.274147], - [-103.749702, 75.234711], - [-103.583099, 75.164703], - [-103.730301, 75.099991], - [-104.261101, 75.018333], - [-104.728104, 75.070267], - [-104.930801, 75.132202], - [-104.688004, 75.25972], - [-104.770302, 75.282494], - [-104.673599, 75.34166], - [-104.428001, 75.420822], - [-104.151802, 75.434563] - ] - ], - [ - [ - [-86.434998, 68.162491], - [-86.426392, 68.069153], - [-86.368607, 67.954712], - [-86.396118, 67.859711], - [-86.571953, 67.728867], - [-86.690552, 67.733871], - [-86.858337, 67.796944], - [-86.945831, 67.909416], - [-86.940552, 67.934418], - [-86.843338, 67.958603], - [-86.836937, 68.001099], - [-86.988327, 68.081673], - [-86.897781, 68.136108], - [-86.906387, 68.180267], - [-86.711937, 68.299149], - [-86.458618, 68.235527], - [-86.402786, 68.194427], - [-86.434998, 68.162491] - ] - ], - [ - [ - [-70.587784, 62.774158], - [-70.396957, 62.723049], - [-70.422783, 62.709431], - [-70.371933, 62.687771], - [-70.413063, 62.650269], - [-70.3125, 62.65416], - [-70.211937, 62.57777], - [-70.393066, 62.53027], - [-70.723892, 62.55027], - [-70.774719, 62.569721], - [-70.74028, 62.592491], - [-70.819733, 62.60471], - [-70.854446, 62.713612], - [-70.920273, 62.740551], - [-70.771118, 62.76749], - [-71.019173, 62.811939], - [-71.15834, 62.797218], - [-71.166397, 62.81805], - [-71.032784, 62.822769], - [-71.241379, 62.881378], - [-70.788063, 62.836109], - [-70.587784, 62.774158] - ] - ], - [ - [ - [-104.134201, 76.669434], - [-103.922501, 76.633614], - [-104.053902, 76.563026], - [-103.878899, 76.573608], - [-103.859398, 76.607208], - [-103.787498, 76.620529], - [-103.559402, 76.563873], - [-103.587799, 76.524986], - [-103.248596, 76.499153], - [-103.245003, 76.474991], - [-103.004501, 76.429977], - [-103.204697, 76.354713], - [-103.507004, 76.310806], - [-104.378899, 76.323318], - [-104.404404, 76.334427], - [-104.329697, 76.358032], - [-104.351097, 76.383614], - [-104.4608, 76.390266], - [-104.391998, 76.421654], - [-104.391098, 76.461113], - [-104.448898, 76.491089], - [-104.563904, 76.482208], - [-104.589699, 76.508881], - [-104.560799, 76.523041], - [-104.658897, 76.545822], - [-104.638603, 76.574707], - [-104.6828, 76.597488], - [-104.134201, 76.669434] - ] - ], - [ - [ - [-84.910278, 66], - [-84.860283, 65.968323], - [-84.883331, 65.940811], - [-84.752502, 65.878036], - [-84.638062, 65.707207], - [-84.58667, 65.6922], - [-84.604446, 65.671921], - [-84.576111, 65.62915], - [-84.66777, 65.560532], - [-84.784729, 65.556641], - [-84.840843, 65.588043], - [-84.878601, 65.669144], - [-85.118057, 65.764709], - [-85.143066, 65.913307], - [-85.181953, 65.945534], - [-85.17305, 65.994713], - [-85.08168, 66.026657], - [-84.910278, 66] - ] - ], - [ - [ - [-64.659729, 61.588039], - [-64.726097, 61.542221], - [-64.683319, 61.531109], - [-64.71666, 61.511669], - [-64.675278, 61.50861], - [-64.686943, 61.465832], - [-64.801392, 61.412209], - [-64.802223, 61.372761], - [-64.875267, 61.322491], - [-64.91333, 61.355], - [-64.977493, 61.347771], - [-64.980827, 61.376099], - [-64.932503, 61.403599], - [-65.060272, 61.407211], - [-65.119453, 61.43277], - [-65.090843, 61.454441], - [-65.151672, 61.453049], - [-65.195267, 61.499161], - [-65.372498, 61.53722], - [-65.487778, 61.59943], - [-65.435822, 61.658039], - [-65.036392, 61.6936], - [-64.719162, 61.658039], - [-64.791382, 61.617489], - [-64.725563, 61.6311], - [-64.734161, 61.610821], - [-64.659157, 61.609989], - [-64.659729, 61.588039] - ] - ], - [ - [ - [-98.830002, 79.664429], - [-98.936111, 79.719711], - [-99.31723, 79.758614], - [-99.30278, 79.787491], - [-99.333618, 79.80304], - [-99.296387, 79.839157], - [-99.368881, 79.857758], - [-99.614166, 79.893333], - [-100.121101, 79.886658], - [-100.177498, 79.909988], - [-100.127502, 79.961929], - [-100.193298, 80.033867], - [-100.065598, 80.089981], - [-99.759171, 80.149719], - [-99.436661, 80.107208], - [-99.136673, 80.133041], - [-98.868881, 80.077766], - [-98.871933, 80.044434], - [-98.705841, 79.96582], - [-98.779167, 79.902771], - [-98.644173, 79.800262], - [-98.830002, 79.664429] - ] - ], - [ - [ - [-102.652199, 76.287773], - [-102.5308, 76.223312], - [-102.5839, 76.183594], - [-102.529198, 76.153587], - [-102.621399, 76.152481], - [-102.650597, 76.11998], - [-102.806396, 76.085541], - [-103.342201, 76.036652], - [-103.986099, 76.034988], - [-103.888603, 76.049713], - [-104.391098, 76.078323], - [-104.482803, 76.142212], - [-104.297997, 76.212486], - [-103.876404, 76.248596], - [-103.059998, 76.306374], - [-102.652199, 76.287773] - ] - ], - [ - [ - [-76.68161, 63.48135], - [-76.541946, 63.46249], - [-76.650284, 63.431381], - [-76.631668, 63.412491], - [-76.692207, 63.367771], - [-76.973892, 63.403599], - [-77.243332, 63.54361], - [-77.42778, 63.589161], - [-77.400833, 63.598331], - [-77.439713, 63.618599], - [-77.333893, 63.626942], - [-77.45723, 63.64333], - [-77.343338, 63.696098], - [-77.116943, 63.65416], - [-77.121933, 63.679722], - [-77.061394, 63.672771], - [-76.616096, 63.523319], - [-76.68161, 63.48135] - ] - ], - [ - [ - [-79.057503, 54.91777], - [-79.776947, 54.778049], - [-79.681953, 54.810268], - [-79.728058, 54.812771], - [-79.686943, 54.838329], - [-79.467216, 54.888329], - [-79.053879, 54.946659], - [-79.015007, 54.932209], - [-79.057503, 54.91777] - ] - ], - [ - [ - [-64.325562, 63.637501], - [-64.275284, 63.496101], - [-64.306664, 63.483051], - [-64.252502, 63.44054], - [-64.286942, 63.430271], - [-64.087509, 63.32972], - [-64.061111, 63.27055], - [-64.166656, 63.32333], - [-64.181953, 63.29694], - [-64.266953, 63.326389], - [-64.421944, 63.471661], - [-64.389183, 63.48444], - [-64.490547, 63.620541], - [-64.377213, 63.67749], - [-64.325562, 63.637501] - ] - ], - [ - [ - [-75, 68.672241], - [-74.938316, 68.571663], - [-74.768341, 68.473312], - [-74.906662, 68.423027], - [-74.776398, 68.410538], - [-74.863892, 68.3797], - [-74.816101, 68.369713], - [-74.81221, 68.338043], - [-74.855827, 68.34137], - [-74.811394, 68.320541], - [-75.002228, 68.333603], - [-75.037514, 68.394707], - [-75.241379, 68.436371], - [-75.416397, 68.518051], - [-75.398354, 68.610527], - [-75.280563, 68.709717], - [-75, 68.672241] - ] - ], - [ - [ - [-78.141953, 69.742477], - [-77.982773, 69.694702], - [-77.946663, 69.646652], - [-78.087784, 69.576927], - [-78.518623, 69.480553], - [-78.646118, 69.509987], - [-78.817497, 69.452766], - [-78.88028, 69.476929], - [-78.575844, 69.636383], - [-78.400284, 69.643333], - [-78.37999, 69.698593], - [-78.306953, 69.686653], - [-78.315552, 69.659714], - [-78.24527, 69.663597], - [-78.228058, 69.677467], - [-78.268623, 69.732208], - [-78.141953, 69.742477] - ] - ], - [ - [ - [-90, 76.837822], - [-89.825844, 76.806091], - [-89.673889, 76.737488], - [-89.671661, 76.698593], - [-89.837219, 76.66304], - [-89.862778, 76.603867], - [-89.794449, 76.533333], - [-89.671387, 76.504173], - [-89.808609, 76.482483], - [-89.943329, 76.506378], - [-89.934433, 76.476646], - [-90, 76.470306], - [-90.184433, 76.515266], - [-90.600281, 76.734993], - [-90.474716, 76.799713], - [-90, 76.837822] - ] - ], - [ - [ - [-77.113617, 69.44165], - [-76.923607, 69.3936], - [-76.7164, 69.422211], - [-76.64473, 69.381363], - [-76.646667, 69.336929], - [-76.939987, 69.209152], - [-76.944443, 69.185257], - [-76.858612, 69.14888], - [-76.922501, 69.119713], - [-76.897232, 69.103867], - [-76.958893, 69.142487], - [-77.213623, 69.125809], - [-77.301392, 69.164146], - [-77.381943, 69.247482], - [-77.335007, 69.333878], - [-77.359734, 69.392761], - [-77.113617, 69.44165] - ] - ], - [ - [ - [-96.025436, 75.602837], - [-95.911118, 75.554153], - [-96.048889, 75.525269], - [-96.170837, 75.458038], - [-96.417221, 75.523323], - [-96.360001, 75.568878], - [-96.410278, 75.580276], - [-96.549156, 75.519707], - [-96.511948, 75.455833], - [-96.703613, 75.423027], - [-96.631104, 75.393051], - [-96.851097, 75.350273], - [-96.880547, 75.379967], - [-96.979446, 75.386383], - [-96.941383, 75.407761], - [-97.053047, 75.492203], - [-96.419159, 75.588593], - [-96.424438, 75.635536], - [-96.396393, 75.649986], - [-96.025436, 75.602837] - ] - ], - [ - [ - [-101.988602, 75.934418], - [-102.394203, 75.880814], - [-102.496902, 75.795532], - [-102.611702, 75.767212], - [-103.137802, 75.742752], - [-103.382797, 75.765549], - [-103.246902, 75.797211], - [-103.297798, 75.809982], - [-103.051399, 75.83194], - [-103.146698, 75.854431], - [-103.059402, 75.896378], - [-102.696098, 75.94664], - [-102.164703, 75.99054], - [-101.988602, 75.934418] - ] - ], - [ - [ - [-67.948608, 60.561378], - [-67.798607, 60.4575], - [-67.853333, 60.375271], - [-68.177223, 60.24305], - [-68.387222, 60.240829], - [-68.377777, 60.310268], - [-68.12944, 60.570549], - [-67.948608, 60.561378] - ] - ], - [ - [ - [-78.893066, 76.11554], - [-78.79805, 76.08638], - [-78.833893, 76.052467], - [-79.176941, 75.946373], - [-78.87944, 75.844147], - [-79.319458, 75.873596], - [-79.420273, 75.848038], - [-79.341377, 75.824707], - [-79.443878, 75.791931], - [-79.592773, 75.817207], - [-79.566963, 75.845833], - [-79.598053, 75.861366], - [-79.752228, 75.878593], - [-79.596947, 75.902481], - [-79.580002, 75.945251], - [-79.307503, 76.013321], - [-79.091377, 76.114433], - [-78.893066, 76.11554] - ] - ], - [ - [ - [-101.671898, 77.893333], - [-101.191399, 77.830833], - [-100.960602, 77.759163], - [-100.926399, 77.743317], - [-100.940598, 77.726929], - [-101.118301, 77.714157], - [-101.507004, 77.724991], - [-101.798897, 77.676376], - [-102.067802, 77.682213], - [-102.444397, 77.731934], - [-102.413597, 77.753326], - [-102.504501, 77.779984], - [-102.493896, 77.81192], - [-102.529701, 77.834152], - [-102.387802, 77.884163], - [-101.671898, 77.893333] - ] - ], - [ - [ - [-95.488892, 69.565536], - [-95.359734, 69.509163], - [-95.402496, 69.383331], - [-95.515839, 69.330833], - [-95.736938, 69.324432], - [-95.713058, 69.344711], - [-95.727783, 69.378593], - [-95.648354, 69.40332], - [-95.689987, 69.464706], - [-95.669159, 69.507492], - [-95.708054, 69.548866], - [-95.815826, 69.562759], - [-95.822777, 69.514427], - [-95.781113, 69.463043], - [-95.866943, 69.383041], - [-95.862213, 69.348038], - [-95.990829, 69.353317], - [-95.993057, 69.388603], - [-95.945831, 69.413879], - [-96.009743, 69.483047], - [-95.952499, 69.510536], - [-95.919998, 69.595261], - [-95.789436, 69.634163], - [-95.612213, 69.614433], - [-95.488892, 69.565536] - ] - ], - [ - [ - [-71.794724, 71.05304], - [-71.339722, 70.991364], - [-71.415558, 70.907761], - [-71.593613, 70.90387], - [-71.914436, 70.848877], - [-71.955566, 70.818329], - [-72.112213, 70.811371], - [-72.118057, 70.85054], - [-72.19194, 70.877762], - [-72.226387, 70.930542], - [-72.05777, 70.933037], - [-72.008621, 71.049713], - [-71.851669, 71.07222], - [-71.794724, 71.05304] - ] - ], - [ - [ - [-102.353302, 76.073883], - [-102.316399, 76.036926], - [-102.365799, 76.005829], - [-103.339401, 75.908043], - [-103.699699, 75.887497], - [-103.901901, 75.898613], - [-103.971703, 75.938309], - [-102.868301, 76.06694], - [-102.353302, 76.073883] - ] - ], - [ - [ - [-101.693901, 68.768051], - [-101.682503, 68.661652], - [-101.701698, 68.637772], - [-101.824699, 68.649719], - [-101.795303, 68.623596], - [-101.8311, 68.56694], - [-102.349403, 68.683037], - [-102.092499, 68.748871], - [-101.998299, 68.823036], - [-101.693901, 68.768051] - ] - ], - [ - [ - [-100.323601, 68.996094], - [-100.238899, 68.924149], - [-100.126404, 68.905548], - [-100.205002, 68.846649], - [-100.175598, 68.794708], - [-100.2211, 68.799713], - [-100.220802, 68.764427], - [-100.299202, 68.773323], - [-100.366898, 68.710541], - [-100.4869, 68.753052], - [-100.446701, 68.774429], - [-100.468903, 68.797211], - [-100.571999, 68.75444], - [-100.628098, 68.766388], - [-100.625801, 68.912491], - [-100.573601, 68.936653], - [-100.624199, 68.996094], - [-100.543602, 69.036652], - [-100.323601, 68.996094] - ] - ], - [ - [ - [-100.297203, 76.721916], - [-101.273903, 76.560806], - [-101.688301, 76.58638], - [-100.7164, 76.756378], - [-100.297203, 76.721916] - ] - ], - [ - [ - [-87.26561, 70.113564], - [-87.102783, 70.120819], - [-87.145279, 70.142761], - [-87.091377, 70.150269], - [-86.798889, 70.087196], - [-86.639717, 70.116653], - [-86.456673, 70.007492], - [-86.662216, 69.967484], - [-87.002228, 70.014999], - [-87.104172, 69.987762], - [-87.376938, 70.093323], - [-87.26561, 70.113564] - ] - ], - [ - [ - [-96.136398, 69.546097], - [-96.096123, 69.468048], - [-96.148064, 69.421921], - [-96.125816, 69.393883], - [-96.146667, 69.345833], - [-96.269997, 69.370819], - [-96.401108, 69.453049], - [-96.548889, 69.474991], - [-96.736656, 69.57666], - [-96.373611, 69.560806], - [-96.316391, 69.526382], - [-96.184433, 69.567207], - [-96.136398, 69.546097] - ] - ], - [ - [ - [-79.297234, 52.09193], - [-79.252792, 52.071381], - [-79.322243, 52.031658], - [-79.319733, 51.96999], - [-79.376663, 51.9361], - [-79.611656, 51.91444], - [-79.652786, 51.981098], - [-79.623322, 52.025269], - [-79.53833, 52.023319], - [-79.338333, 52.110279], - [-79.297234, 52.09193] - ] - ], - [ - [ - [-64.382767, 62.525829], - [-64.363892, 62.495831], - [-64.481667, 62.481659], - [-64.394173, 62.46138], - [-64.504997, 62.443321], - [-64.477219, 62.408039], - [-64.590561, 62.36721], - [-64.926666, 62.418331], - [-64.965843, 62.465832], - [-64.79306, 62.491379], - [-64.862213, 62.520828], - [-64.815552, 62.559719], - [-64.682503, 62.53249], - [-64.549728, 62.536381], - [-64.549728, 62.56221], - [-64.466949, 62.544159], - [-64.463333, 62.51416], - [-64.382767, 62.525829] - ] - ], - [ - [ - [-64.549438, 63.895271], - [-64.604172, 63.838879], - [-64.506119, 63.838039], - [-64.608612, 63.783051], - [-64.498337, 63.7411], - [-64.426102, 63.777771], - [-64.386124, 63.70166], - [-64.436394, 63.673321], - [-64.694717, 63.784439], - [-64.802223, 63.764439], - [-64.916397, 63.806381], - [-64.910278, 63.837212], - [-64.811661, 63.877209], - [-64.748047, 63.828049], - [-64.777222, 63.86832], - [-64.732224, 63.86805], - [-64.710564, 63.908878], - [-64.636948, 63.914711], - [-64.628601, 63.881378], - [-64.549438, 63.895271] - ] - ], - [ - [ - [-73.060547, 71.294708], - [-73.092773, 71.308868], - [-73.065552, 71.324997], - [-73.272507, 71.361923], - [-73.25473, 71.415268], - [-73.374161, 71.485809], - [-73.37999, 71.519707], - [-73.189987, 71.565536], - [-73.081123, 71.542213], - [-73.179718, 71.450546], - [-73.15834, 71.41832], - [-72.985283, 71.521378], - [-72.827499, 71.454987], - [-73.031113, 71.406647], - [-73.017227, 71.342758], - [-72.971939, 71.31749], - [-73.060547, 71.294708] - ] - ], - [ - [ - [-85.924438, 79.053864], - [-85.321404, 79.053864], - [-85.167221, 79.020828], - [-85.301392, 78.975273], - [-86.388062, 78.883041], - [-86.484444, 78.892761], - [-86.346123, 78.939697], - [-86.29277, 79.012207], - [-85.924438, 79.053864] - ] - ], - [ - [ - [-104.682503, 68.573883], - [-104.440598, 68.476089], - [-104.441399, 68.417213], - [-104.545303, 68.396103], - [-104.919197, 68.459991], - [-105.081703, 68.546371], - [-104.938599, 68.583328], - [-104.682503, 68.573883] - ] - ], - [ - [ - [-96.771942, 73.181664], - [-96.72583, 73.159149], - [-96.771118, 73.113602], - [-96.650284, 73.139977], - [-96.568619, 73.062187], - [-96.65834, 72.954163], - [-96.955276, 72.920532], - [-97.089722, 72.981659], - [-97.139717, 73.051933], - [-97.141113, 73.085541], - [-97.045547, 73.147491], - [-96.771942, 73.181664] - ] - ], - [ - [ - [-65.068069, 61.923882], - [-65.016403, 61.851662], - [-64.964722, 61.889992], - [-64.953888, 61.820549], - [-64.893341, 61.82999], - [-64.828888, 61.75222], - [-64.95195, 61.722488], - [-65.210564, 61.81694], - [-65.251953, 61.869709], - [-65.24527, 61.914711], - [-65.170273, 61.947769], - [-65.068069, 61.923882] - ] - ], - [ - [ - [-65.266403, 64.693314], - [-65.308884, 64.660263], - [-65.25, 64.663597], - [-65.213898, 64.626083], - [-65.428596, 64.591087], - [-65.363052, 64.579987], - [-65.397232, 64.556374], - [-65.539436, 64.546944], - [-65.460564, 64.521103], - [-65.689713, 64.519989], - [-65.660278, 64.573883], - [-65.449158, 64.678864], - [-65.414169, 64.733597], - [-65.380547, 64.733871], - [-65.401672, 64.646103], - [-65.296951, 64.734154], - [-65.266403, 64.693314] - ] - ], - [ - [ - [-100.461098, 70.659988], - [-100.1922, 70.577209], - [-100.3881, 70.578873], - [-100.296997, 70.540817], - [-100.224403, 70.45665], - [-100.676399, 70.563309], - [-100.661697, 70.633041], - [-100.702202, 70.682747], - [-100.461098, 70.659988] - ] - ], - [ - [ - [-78.795273, 68.438583], - [-78.97084, 68.471367], - [-78.943329, 68.511932], - [-78.723892, 68.547493], - [-78.66861, 68.583328], - [-78.898064, 68.64888], - [-78.720001, 68.657211], - [-78.460564, 68.617203], - [-78.482224, 68.553307], - [-78.668877, 68.554153], - [-78.724716, 68.521927], - [-78.610817, 68.498032], - [-78.795273, 68.438583] - ] - ], - [ - [ - [-94.481949, 75.974426], - [-94.420273, 75.868591], - [-94.287781, 75.783867], - [-94.353882, 75.753883], - [-94.777496, 75.7686], - [-94.825844, 75.800812], - [-94.829453, 75.882751], - [-94.906113, 75.930817], - [-94.523903, 75.992477], - [-94.481949, 75.974426] - ] - ], - [ - [ - [-78.226669, 60.80888], - [-78.397232, 60.743881], - [-78.656387, 60.70277], - [-78.698334, 60.721661], - [-78.573624, 60.784161], - [-78.223892, 60.83083], - [-78.226669, 60.80888] - ] - ], - [ - [ - [-73.669449, 64.4272], - [-73.577217, 64.4422], - [-73.611938, 64.475273], - [-73.577499, 64.489433], - [-73.681953, 64.507492], - [-73.67778, 64.532211], - [-73.509171, 64.552467], - [-73.529167, 64.498596], - [-73.488327, 64.443863], - [-73.549988, 64.403053], - [-73.547234, 64.367477], - [-73.515839, 64.365257], - [-73.579727, 64.335823], - [-73.557503, 64.312759], - [-73.655563, 64.320267], - [-73.669449, 64.4272] - ] - ], - [ - [ - [-101.053001, 69.50444], - [-100.970299, 69.455551], - [-101.063004, 69.4561], - [-101.099197, 69.401932], - [-101.194397, 69.401932], - [-101.230301, 69.368591], - [-101.279198, 69.382477], - [-101.231697, 69.400818], - [-101.245003, 69.424988], - [-101.300301, 69.4422], - [-101.228897, 69.434708], - [-101.186401, 69.475273], - [-101.387199, 69.537773], - [-101.349701, 69.572487], - [-101.261703, 69.581673], - [-101.243103, 69.54248], - [-101.1744, 69.565811], - [-101.053001, 69.50444] - ] - ], - [ - [ - [-74.480827, 62.740269], - [-74.374161, 62.681381], - [-74.015839, 62.664989], - [-73.958054, 62.612499], - [-74.169159, 62.602219], - [-74.541382, 62.668331], - [-74.651108, 62.71777], - [-74.480827, 62.740269] - ] - ], - [ - [ - [-74.340843, 68.462486], - [-74.26973, 68.454712], - [-74.074722, 68.330833], - [-74.149727, 68.25], - [-74.228882, 68.250816], - [-74.278343, 68.294983], - [-74.213333, 68.319443], - [-74.388611, 68.398331], - [-74.393066, 68.445251], - [-74.340843, 68.462486] - ] - ], - [ - [ - [-79.099442, 68.348602], - [-78.933319, 68.35054], - [-78.802223, 68.272491], - [-79.020554, 68.169144], - [-79.089722, 68.170258], - [-79.176941, 68.209427], - [-79.190552, 68.27832], - [-79.191101, 68.319443], - [-79.099442, 68.348602] - ] - ], - [ - [ - [-67.86972, 69.700821], - [-67.72139, 69.644707], - [-67.83168, 69.601929], - [-67.920273, 69.521927], - [-68.309998, 69.59082], - [-68.063889, 69.669983], - [-67.827217, 69.655548], - [-67.971123, 69.689697], - [-67.86972, 69.700821] - ] - ], - [ - [ - [-90.195267, 69.416931], - [-90.154716, 69.350807], - [-90.329453, 69.235809], - [-90.51001, 69.334717], - [-90.501106, 69.372482], - [-90.351097, 69.424698], - [-90.294159, 69.433594], - [-90.241943, 69.389427], - [-90.218887, 69.401932], - [-90.24527, 69.4272], - [-90.205276, 69.445824], - [-90.195267, 69.416931] - ] - ], - [ - [ - [-62.8946, 67.059113], - [-62.81028, 67.056931], - [-62.795559, 67.099991], - [-62.61972, 67.135269], - [-62.652222, 67.166092], - [-62.631939, 67.176933], - [-62.41806, 67.190811], - [-62.375271, 67.165817], - [-62.580002, 67.102203], - [-62.651661, 67.046944], - [-62.733608, 67.04332], - [-62.752499, 67.010536], - [-62.8946, 67.059113] - ] - ], - [ - [ - [-97.368057, 74.622757], - [-97.256958, 74.590553], - [-97.387512, 74.506378], - [-97.652786, 74.455833], - [-97.792503, 74.485809], - [-97.631378, 74.538307], - [-97.616943, 74.574997], - [-97.532227, 74.606369], - [-97.368057, 74.622757] - ] - ], - [ - [ - [-95.628601, 74.640823], - [-95.40361, 74.603317], - [-95.246384, 74.521652], - [-95.48056, 74.5], - [-95.845001, 74.563873], - [-95.628601, 74.640823] - ] - ], - [ - [ - [-66.32695, 68.147491], - [-66.628601, 68.182213], - [-66.662216, 68.208878], - [-66.551941, 68.201927], - [-66.5, 68.2397], - [-66.348892, 68.228592], - [-66.283333, 68.268333], - [-66.198608, 68.267487], - [-66.269173, 68.210541], - [-66.256668, 68.163597], - [-66.32695, 68.147491] - ] - ], - [ - [ - [-90.575562, 69.198593], - [-90.613327, 69.207764], - [-90.620003, 69.251938], - [-90.690826, 69.227768], - [-90.646393, 69.259163], - [-90.695831, 69.277771], - [-90.655273, 69.304703], - [-90.680557, 69.311371], - [-90.651947, 69.350807], - [-90.777222, 69.272491], - [-90.775833, 69.329987], - [-90.673317, 69.373871], - [-90.559433, 69.347214], - [-90.471939, 69.281097], - [-90.495003, 69.241928], - [-90.454453, 69.226379], - [-90.575562, 69.198593] - ] - ], - [ - [ - [-82.935547, 66.251389], - [-82.996384, 66.198593], - [-83.080292, 66.19664], - [-83.287216, 66.256104], - [-83.272232, 66.305252], - [-83.29834, 66.313873], - [-83.252228, 66.344994], - [-83.142227, 66.309143], - [-83.16806, 66.283867], - [-83.054993, 66.25499], - [-82.91333, 66.276093], - [-82.935547, 66.251389] - ] - ], - [ - [ - [-64.954727, 63.553879], - [-64.881378, 63.486382], - [-64.847778, 63.387501], - [-64.942207, 63.43082], - [-64.971657, 63.494709], - [-65.053047, 63.548328], - [-64.986938, 63.51527], - [-65.007507, 63.556381], - [-64.954727, 63.553879] - ] - ], - [ - [ - [-100.095596, 69.117477], - [-100.033302, 69.094711], - [-99.978882, 69.013893], - [-100.007004, 68.939423], - [-100.161697, 68.96138], - [-100.256699, 69.026657], - [-100.231903, 69.087196], - [-100.144203, 69.140823], - [-100.095596, 69.117477] - ] - ], - [ - [ - [-85.259743, 77.586647], - [-85.011124, 77.573883], - [-84.813889, 77.497208], - [-85.168327, 77.45694], - [-85.152786, 77.507767], - [-85.53833, 77.539978], - [-85.259743, 77.586647] - ] - ], - [ - [ - [-77.625, 63.997768], - [-77.753342, 63.925549], - [-77.982498, 63.975552], - [-77.943604, 64.011108], - [-77.774437, 64.031662], - [-77.55722, 64.028053], - [-77.625, 63.997768] - ] - ], - [ - [ - [-107.882797, 67.462486], - [-107.892799, 67.383614], - [-107.933899, 67.361923], - [-107.910797, 67.310532], - [-108.150803, 67.406097], - [-108.125298, 67.422493], - [-108.040802, 67.386932], - [-108.032501, 67.407494], - [-108.075302, 67.419708], - [-108.061096, 67.4422], - [-107.917801, 67.489433], - [-107.882797, 67.462486] - ] - ], - [ - [ - [-62.25861, 65.728592], - [-62.297501, 65.708603], - [-62.18639, 65.711929], - [-62.167782, 65.702766], - [-62.19944, 65.685532], - [-62.12833, 65.674149], - [-62.215, 65.609993], - [-62.272221, 65.663307], - [-62.331951, 65.611923], - [-62.313061, 65.660538], - [-62.46611, 65.663879], - [-62.441669, 65.689148], - [-62.48444, 65.726929], - [-62.444439, 65.74498], - [-62.37389, 65.720261], - [-62.32, 65.74942], - [-62.25861, 65.728592] - ] - ], - [ - [ - [-79.929993, 59.8736], - [-79.878883, 59.85471], - [-79.928047, 59.811661], - [-80.089722, 59.751942], - [-80.09111, 59.808331], - [-80.184158, 59.747768], - [-80.103058, 59.84499], - [-80.015007, 59.884991], - [-79.929993, 59.8736] - ] - ], - [ - [ - [-63.926392, 67.633331], - [-63.76083, 67.515266], - [-64.025284, 67.510536], - [-64.034439, 67.558594], - [-63.97694, 67.649429], - [-63.926392, 67.633331] - ] - ], - [ - [ - [-96.688316, 72.883331], - [-96.721657, 72.829163], - [-96.641388, 72.782211], - [-96.741379, 72.72554], - [-96.955276, 72.734154], - [-97.011124, 72.775818], - [-96.921387, 72.795258], - [-96.921387, 72.835823], - [-96.798607, 72.881363], - [-96.688316, 72.883331] - ] - ], - [ - [ - [-95.065277, 80.680542], - [-94.970551, 80.635269], - [-95.190277, 80.608871], - [-96.14917, 80.664703], - [-95.491379, 80.699997], - [-95.065277, 80.680542] - ] - ], - [ - [ - [-79.784157, 56.94083], - [-79.717499, 56.81361], - [-79.757507, 56.78194], - [-79.79306, 56.789989], - [-79.811111, 56.89222], - [-79.897507, 56.884991], - [-79.858612, 56.938599], - [-79.784157, 56.94083] - ] - ], - [ - [ - [-90.027458, 68.753304], - [-90.003014, 68.807091], - [-89.914436, 68.853043], - [-89.896118, 68.829712], - [-89.925552, 68.804153], - [-89.85611, 68.822487], - [-89.861656, 68.79776], - [-89.781677, 68.766663], - [-89.944443, 68.662201], - [-89.959167, 68.6772], - [-89.916397, 68.704987], - [-89.967216, 68.694702], - [-89.956947, 68.724991], - [-90.027458, 68.753304] - ] - ], - [ - [ - [-107.983299, 67.644707], - [-107.922203, 67.540817], - [-108.067497, 67.539703], - [-108.029999, 67.498871], - [-108.109398, 67.471367], - [-108.142799, 67.541656], - [-108.074203, 67.557747], - [-108.120003, 67.575821], - [-108.117798, 67.669983], - [-107.983299, 67.644707] - ] - ], - [ - [ - [-100.479698, 75.545822], - [-100.319702, 75.59082], - [-100.885597, 75.545822], - [-101.039398, 75.567207], - [-100.235001, 75.623032], - [-100.157799, 75.584991], - [-100.479698, 75.545822] - ] - ], - [ - [ - [-63.456108, 67.264427], - [-63.829731, 67.284149], - [-63.585831, 67.353317], - [-63.58889, 67.305252], - [-63.485001, 67.341087], - [-63.36916, 67.302467], - [-63.456108, 67.264427] - ] - ], - [ - [ - [-74.771942, 68.673027], - [-74.648354, 68.652206], - [-74.654167, 68.607758], - [-74.518341, 68.558594], - [-74.833893, 68.569717], - [-74.890289, 68.624977], - [-74.771942, 68.673027] - ] - ], - [ - [ - [-91.535278, 69.726929], - [-91.73555, 69.789146], - [-91.523621, 69.824707], - [-91.483322, 69.871918], - [-91.419449, 69.879967], - [-91.502228, 69.813873], - [-91.454178, 69.784988], - [-91.463333, 69.763611], - [-91.535278, 69.726929] - ] - ], - [ - [ - [-102.897499, 78.26915], - [-102.798599, 78.250267], - [-102.781403, 78.204987], - [-103.041702, 78.122208], - [-103.212799, 78.120529], - [-103.282204, 78.157761], - [-103.062798, 78.258041], - [-102.897499, 78.26915] - ] - ], - [ - [ - [-79.706673, 57.58083], - [-79.705002, 57.50861], - [-79.771118, 57.51416], - [-79.805557, 57.418049], - [-79.85556, 57.479988], - [-79.810547, 57.48193], - [-79.776672, 57.530819], - [-79.82695, 57.538052], - [-79.734161, 57.618881], - [-79.706673, 57.58083] - ] - ], - [ - [ - [-91.072243, 77.253326], - [-90.815002, 77.240257], - [-90.713623, 77.200821], - [-90.868332, 77.138321], - [-91.184723, 77.163597], - [-91.299156, 77.217758], - [-91.072243, 77.253326] - ] - ], - [ - [ - [-64.171944, 63.63361], - [-64.078339, 63.550541], - [-64.10556, 63.532211], - [-64.092499, 63.481659], - [-64.209167, 63.575001], - [-64.212784, 63.6236], - [-64.171944, 63.63361] - ] - ], - [ - [ - [-64.998894, 64.354431], - [-64.989166, 64.317757], - [-65.037514, 64.290268], - [-64.884743, 64.287773], - [-64.989166, 64.209152], - [-65.065552, 64.227478], - [-65.114723, 64.329437], - [-64.998894, 64.354431] - ] - ], - [ - [ - [-99.528877, 76.72554], - [-99.433884, 76.694702], - [-99.58168, 76.670258], - [-99.65834, 76.680542], - [-99.551941, 76.709717], - [-100.128601, 76.721916], - [-100.037804, 76.751389], - [-99.528877, 76.72554] - ] - ], - [ - [ - [-108.951103, 67.973312], - [-108.884499, 67.948593], - [-108.910599, 67.924149], - [-108.866096, 67.900269], - [-108.900597, 67.869713], - [-109.198898, 67.972488], - [-109.058601, 67.951927], - [-109.074203, 67.974426], - [-108.951103, 67.973312] - ] - ], - [ - [ - [-72.924713, 71.649429], - [-72.709167, 71.655258], - [-72.660553, 71.598038], - [-72.742493, 71.534149], - [-72.949997, 71.547211], - [-73.039993, 71.579987], - [-72.924713, 71.649429] - ] - ], - [ - [ - [-67.440552, 69.588318], - [-67.310547, 69.549149], - [-67.545273, 69.525818], - [-67.492493, 69.495529], - [-67.749733, 69.521103], - [-67.550278, 69.565536], - [-67.518341, 69.600273], - [-67.440552, 69.588318] - ] - ], - [ - [ - [-82.796112, 69.805252], - [-82.460281, 69.761658], - [-82.49472, 69.752487], - [-82.453056, 69.720543], - [-82.54277, 69.704163], - [-82.720001, 69.733322], - [-82.877777, 69.774986], - [-82.796112, 69.805252] - ] - ], - [ - [ - [-65.713623, 61.824169], - [-65.678596, 61.746658], - [-65.948036, 61.790279], - [-65.809433, 61.863331], - [-65.752228, 61.850552], - [-65.794724, 61.84277], - [-65.780563, 61.825829], - [-65.713623, 61.824169] - ] - ], - [ - [ - [-107.581703, 67.196373], - [-107.319504, 67.098877], - [-107.527802, 67.078049], - [-107.629204, 67.183319], - [-107.581703, 67.196373] - ] - ], - [ - [ - [-66.820847, 66.388046], - [-66.573624, 66.310806], - [-66.641953, 66.279427], - [-66.811661, 66.316673], - [-66.847778, 66.342484], - [-66.783073, 66.339157], - [-66.958618, 66.406372], - [-66.820847, 66.388046] - ] - ], - [ - [ - [-93.08667, 61.829441], - [-93.135834, 61.87249], - [-93.218887, 61.879429], - [-93.223618, 61.913052], - [-93.06221, 61.93055], - [-92.969452, 61.888329], - [-93.001678, 61.84721], - [-93.08667, 61.829441] - ] - ], - [ - [ - [-79.95195, 53.348331], - [-79.957497, 53.31221], - [-79.911942, 53.29055], - [-79.942757, 53.266941], - [-80.018066, 53.265831], - [-80.085281, 53.326939], - [-80.061394, 53.355549], - [-79.944717, 53.36805], - [-79.95195, 53.348331] - ] - ], - [ - [ - [-88.05278, 78.445534], - [-88.05722, 78.407494], - [-88.154449, 78.36554], - [-88.166397, 78.308029], - [-88.254997, 78.247208], - [-88.360001, 78.237762], - [-88.407501, 78.264427], - [-88.404449, 78.298027], - [-88.327217, 78.336647], - [-88.199722, 78.354431], - [-88.248047, 78.373306], - [-88.235283, 78.426933], - [-88.05278, 78.445534] - ] - ], - [ - [ - [-107.645302, 73.570267], - [-107.930603, 73.539429], - [-108.084999, 73.585823], - [-108.0075, 73.618591], - [-107.681099, 73.621368], - [-107.584702, 73.603043], - [-107.645302, 73.570267] - ] - ], - [ - [ - [-68.4189, 68.810257], - [-67.661392, 68.701927], - [-67.86972, 68.698593], - [-68.451401, 68.783867], - [-68.4189, 68.810257] - ] - ], - [ - [ - [-64.334091, 63.852081], - [-64.179993, 63.865551], - [-64.179169, 63.8111], - [-64.236938, 63.79583], - [-64.180832, 63.785271], - [-64.256958, 63.774158], - [-64.398354, 63.845539], - [-64.334091, 63.852081] - ] - ], - [ - [ - [-78.939987, 72.435806], - [-78.731667, 72.369431], - [-78.950287, 72.334991], - [-79.053047, 72.360809], - [-79.066673, 72.420258], - [-78.939987, 72.435806] - ] - ], - [ - [ - [-83.576683, 69.780823], - [-83.708618, 69.75943], - [-83.655838, 69.732208], - [-83.688599, 69.719437], - [-83.917221, 69.778587], - [-83.886948, 69.818604], - [-83.832497, 69.825272], - [-83.576683, 69.780823] - ] - ], - [ - [ - [-64.884743, 62.594151], - [-64.839447, 62.57777], - [-64.860817, 62.561378], - [-64.972778, 62.52972], - [-65.141678, 62.54694], - [-65.003067, 62.598881], - [-64.884743, 62.594151] - ] - ], - [ - [ - [-110.728302, 68.484421], - [-111.097504, 68.477203], - [-110.821701, 68.548027], - [-110.745796, 68.526382], - [-110.696098, 68.486366], - [-110.728302, 68.484421] - ] - ], - [ - [ - [-97.327499, 69.931664], - [-97.347229, 69.896652], - [-97.23056, 69.883331], - [-97.269173, 69.852478], - [-97.492767, 69.917763], - [-97.453613, 69.963043], - [-97.327499, 69.931664] - ] - ], - [ - [ - [-73.730827, 64.386383], - [-73.697769, 64.269989], - [-73.780838, 64.283051], - [-73.833618, 64.331673], - [-73.781387, 64.405548], - [-73.730827, 64.386383] - ] - ], - [ - [ - [-83.347778, 65.832489], - [-83.485283, 65.800812], - [-83.586121, 65.854156], - [-83.370003, 65.866653], - [-83.285278, 65.838882], - [-83.347778, 65.832489] - ] - ], - [ - [ - [-109.447197, 68.092209], - [-109.3153, 68.035812], - [-109.314201, 67.985809], - [-109.538902, 68.047493], - [-109.470001, 68.045258], - [-109.5047, 68.088882], - [-109.447197, 68.092209] - ] - ], - [ - [ - [-82.01001, 68.332764], - [-82.07251, 68.30304], - [-82.345551, 68.367752], - [-82.234734, 68.354431], - [-82.243057, 68.383331], - [-82.216949, 68.384163], - [-82.01001, 68.332764] - ] - ], - [ - [ - [-79.55249, 72.451103], - [-79.436394, 72.41832], - [-79.440552, 72.370529], - [-79.53389, 72.3461], - [-79.609444, 72.366928], - [-79.683319, 72.430542], - [-79.55249, 72.451103] - ] - ], - [ - [ - [-101.520302, 69.197479], - [-101.495003, 69.160263], - [-101.563599, 69.099991], - [-101.698303, 69.095261], - [-101.601402, 69.151657], - [-101.710297, 69.169144], - [-101.695297, 69.20694], - [-101.520302, 69.197479] - ] - ], - [ - [ - [-74.555557, 78.776093], - [-74.16362, 78.716087], - [-74.334167, 78.675262], - [-74.614166, 78.702766], - [-74.706673, 78.737488], - [-74.632217, 78.777206], - [-74.555557, 78.776093] - ] - ], - [ - [ - [-94.515007, 78.278053], - [-94.309158, 78.179153], - [-94.506119, 78.17276], - [-94.671112, 78.240807], - [-94.694153, 78.258614], - [-94.660828, 78.27916], - [-94.515007, 78.278053] - ] - ], - [ - [ - [-97.337784, 67.7211], - [-97.327217, 67.681664], - [-97.370537, 67.657761], - [-97.502792, 67.62442], - [-97.551392, 67.642761], - [-97.529716, 67.676376], - [-97.560547, 67.692749], - [-97.337784, 67.7211] - ] - ], - [ - [ - [-108.286102, 67.533051], - [-108.301697, 67.491089], - [-108.368301, 67.467209], - [-108.496399, 67.524429], - [-108.467499, 67.540543], - [-108.491402, 67.563026], - [-108.457802, 67.568047], - [-108.370003, 67.543053], - [-108.3358, 67.565811], - [-108.286102, 67.533051] - ] - ], - [ - [ - [-111.528603, 68.290543], - [-111.605301, 68.281097], - [-111.6717, 68.224701], - [-111.7789, 68.241089], - [-111.703903, 68.299423], - [-111.513603, 68.311096], - [-111.528603, 68.290543] - ] - ], - [ - [ - [-79.843887, 56.85833], - [-79.813606, 56.81694], - [-79.876663, 56.747768], - [-79.941101, 56.763611], - [-79.945831, 56.833599], - [-79.843887, 56.85833] - ] - ], - [ - [ - [-73.213333, 71.698593], - [-73.149986, 71.674423], - [-73.282784, 71.637772], - [-73.352493, 71.55748], - [-73.450562, 71.584152], - [-73.348343, 71.658333], - [-73.213333, 71.698593] - ] - ], - [ - [ - [-108.048599, 67.949142], - [-108.0914, 67.880814], - [-108.254204, 67.881927], - [-108.197998, 67.950821], - [-108.100601, 67.974991], - [-108.048599, 67.949142] - ] - ], - [ - [ - [-90, 73.986359], - [-90.285004, 74.029709], - [-90, 74.065613], - [-89.901947, 74.037773], - [-90, 73.986359] - ] - ], - [ - [ - [-62.23138, 66.26944], - [-62.14806, 66.207764], - [-62.43, 66.229156], - [-62.23138, 66.26944] - ] - ], - [ - [ - [-104.071404, 77.161377], - [-103.998901, 77.123871], - [-104.196701, 77.077477], - [-104.431702, 77.098877], - [-104.300797, 77.155258], - [-104.071404, 77.161377] - ] - ], - [ - [ - [-77.676102, 77.8647], - [-77.568619, 77.849716], - [-77.579178, 77.818604], - [-77.680557, 77.792763], - [-77.875267, 77.774429], - [-77.955002, 77.830276], - [-77.676102, 77.8647] - ] - ], - [ - [ - [-65.648354, 68.168587], - [-65.502792, 68.151093], - [-65.495537, 68.128311], - [-65.686943, 68.095833], - [-65.716949, 68.175812], - [-65.648354, 68.168587] - ] - ], - [ - [ - [-90.143578, 68.967819], - [-89.914169, 69.006943], - [-89.933609, 68.950546], - [-89.906662, 68.922493], - [-90.143578, 68.967819] - ] - ], - [ - [ - [-95.328613, 71.842209], - [-95.259743, 71.827477], - [-95.310547, 71.737198], - [-95.488327, 71.740807], - [-95.361107, 71.790268], - [-95.438889, 71.790268], - [-95.450287, 71.818878], - [-95.328613, 71.842209] - ] - ], - [ - [ - [-95.372223, 77.238037], - [-95.2164, 77.20166], - [-95.206947, 77.177757], - [-95.24527, 77.164146], - [-95.639999, 77.237762], - [-95.372223, 77.238037] - ] - ], - [ - [ - [-94.854446, 76.136658], - [-94.816101, 76.101089], - [-94.928596, 76.051086], - [-95.048889, 76.050812], - [-95.147232, 76.116928], - [-95.013062, 76.10582], - [-94.854446, 76.136658] - ] - ], - [ - [ - [-82.636398, 69.871094], - [-82.517227, 69.854156], - [-82.426102, 69.786926], - [-82.564438, 69.800812], - [-82.688599, 69.850807], - [-82.636398, 69.871094] - ] - ], - [ - [ - [-86.06723, 72.293869], - [-85.863892, 72.297211], - [-85.837219, 72.262772], - [-85.90834, 72.217758], - [-86.09639, 72.276382], - [-86.06723, 72.293869] - ] - ], - [ - [ - [-103.331902, 75.871918], - [-103.590797, 75.8311], - [-103.864403, 75.871368], - [-103.331902, 75.871918] - ] - ], - [ - [ - [-97.243057, 77.037491], - [-97.093063, 77.00499], - [-97.256393, 76.967484], - [-97.473053, 76.980553], - [-97.243057, 77.037491] - ] - ], - [ - [ - [-96.455841, 75.817757], - [-96.553596, 75.738586], - [-96.717216, 75.7397], - [-96.660828, 75.789429], - [-96.455841, 75.817757] - ] - ], - [ - [ - [-74.707779, 72.207207], - [-74.796661, 72.168053], - [-74.946953, 72.173309], - [-74.85083, 72.217758], - [-74.673889, 72.23027], - [-74.707779, 72.207207] - ] - ], - [ - [ - [-101.681702, 78.227478], - [-101.6036, 78.187477], - [-101.625801, 78.148041], - [-101.881897, 78.162201], - [-101.785301, 78.18692], - [-101.753304, 78.227203], - [-101.681702, 78.227478] - ] - ], - [ - [ - [-84.097504, 76.506653], - [-83.908051, 76.464996], - [-83.986107, 76.423309], - [-84.109444, 76.444427], - [-84.103607, 76.484154], - [-84.13945, 76.507217], - [-84.097504, 76.506653] - ] - ], - [ - [ - [-62.961109, 67.054703], - [-62.91222, 67.014709], - [-62.977779, 67.006653], - [-63.138889, 67.059418], - [-63.110561, 67.080276], - [-62.961109, 67.054703] - ] - ], - [ - [ - [-66.644447, 81.562187], - [-66.896667, 81.587486], - [-66.296661, 81.584717], - [-66.644447, 81.562187] - ] - ], - [ - [ - [-71.044159, 71.142761], - [-71.112503, 71.089432], - [-71.25473, 71.073883], - [-71.200562, 71.125809], - [-71.044159, 71.142761] - ] - ], - [ - [ - [-78.419449, 82.899147], - [-78.414719, 82.941933], - [-78.361656, 82.958603], - [-78.116943, 82.9422], - [-78.365829, 82.883614], - [-78.419449, 82.899147] - ] - ], - [ - [ - [-91.761673, 81.548027], - [-91.960564, 81.594994], - [-91.58223, 81.578049], - [-91.761673, 81.548027] - ] - ] - ] - }, - "properties": { - "name": "Nunavut", - "ISOCODE": "CA-NU", - "cartodb_id": 12, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-110.394402, 78.752213], - [-109.978409, 78.671058], - [-109.983902, 78.325546], - [-110.411903, 78.277206], - [-110.715599, 78.29248], - [-111.141403, 78.386108], - [-111.306396, 78.371094], - [-111.2397, 78.323608], - [-111.433601, 78.323036], - [-111.401901, 78.283333], - [-111.462502, 78.267487], - [-111.82, 78.273613], - [-111.918602, 78.332764], - [-112.1586, 78.36998], - [-113.142197, 78.268333], - [-113.334198, 78.332764], - [-113.226097, 78.356644], - [-113.218903, 78.40387], - [-112.6614, 78.494141], - [-112.238098, 78.547211], - [-111.752502, 78.550537], - [-111.455597, 78.592758], - [-111.378601, 78.617752], - [-111.4347, 78.643333], - [-111.1894, 78.688583], - [-110.738098, 78.75444], - [-110.394402, 78.752213] - ] - ], - [ - [ - [-109.987239, 77.924049], - [-110.2211, 77.893883], - [-110.895798, 77.856087], - [-110.886398, 77.820831], - [-110.658897, 77.75972], - [-110.105003, 77.774986], - [-110.079498, 77.757492], - [-110.113899, 77.692749], - [-110.040604, 77.637497], - [-110.162804, 77.604713], - [-110.080299, 77.563599], - [-110.224998, 77.505257], - [-110.877197, 77.411377], - [-111.276703, 77.424698], - [-112.057198, 77.323318], - [-112.413101, 77.356087], - [-112.507797, 77.381363], - [-112.601097, 77.455261], - [-112.790802, 77.441093], - [-112.957802, 77.469437], - [-113.011703, 77.512772], - [-113.197998, 77.52388], - [-113.240303, 77.587196], - [-113.089203, 77.619141], - [-113.252197, 77.664703], - [-113.206902, 77.688873], - [-113.229401, 77.723602], - [-113.1875, 77.739433], - [-113.319702, 77.795532], - [-113.209702, 77.908867], - [-112.996101, 77.890549], - [-112.914703, 77.927467], - [-112.4142, 78.003052], - [-111.932503, 78.018333], - [-111.807999, 78.049423], - [-111.730598, 78.024147], - [-111.0933, 78.092484], - [-110.861099, 78.061653], - [-110.550003, 78.106087], - [-109.985789, 78.101103], - [-109.987239, 77.924049] - ] - ], - [ - [ - [-110.008101, 74.833102], - [-110.065598, 74.817757], - [-110.345596, 74.846939], - [-110.410797, 74.822487], - [-110.318901, 74.798027], - [-110.665298, 74.78804], - [-110.596397, 74.707764], - [-111.6772, 74.493317], - [-112.541901, 74.409416], - [-113.471703, 74.418907], - [-113.696404, 74.446091], - [-114.298302, 74.602768], - [-114.443604, 74.664146], - [-114.394402, 74.708328], - [-113.709999, 74.829712], - [-113.207199, 74.845261], - [-113.322502, 74.879967], - [-112.8675, 74.97554], - [-112.014999, 75.002487], - [-111.753304, 74.981659], - [-111.551399, 75.011383], - [-111.4814, 75.045822], - [-111.5672, 75.060257], - [-111.306396, 75.075272], - [-111.290604, 75.091087], - [-111.351402, 75.111649], - [-111.266403, 75.103043], - [-111.029198, 75.171097], - [-111.068298, 75.188583], - [-111.001999, 75.221367], - [-110.920502, 75.223602], - [-111.0681, 75.271927], - [-111.230797, 75.26416], - [-111.391701, 75.181091], - [-111.608597, 75.165543], - [-111.577202, 75.1436], - [-111.695297, 75.145828], - [-111.760803, 75.184708], - [-111.900597, 75.131927], - [-112.409698, 75.123596], - [-112.470802, 75.146378], - [-112.412003, 75.159012], - [-112.294701, 75.198029], - [-112.387199, 75.209427], - [-112.339401, 75.223602], - [-112.408897, 75.240807], - [-112.461899, 75.218872], - [-112.432503, 75.18692], - [-112.592499, 75.181664], - [-112.637199, 75.204987], - [-112.594704, 75.25], - [-112.679199, 75.277771], - [-112.660599, 75.266388], - [-112.713097, 75.256104], - [-112.735802, 75.203323], - [-112.688599, 75.171921], - [-112.699997, 75.138321], - [-112.806999, 75.115807], - [-113.038902, 75.093597], - [-113.134201, 75.14415], - [-113.178001, 75.09166], - [-113.254501, 75.076103], - [-113.941399, 75.056931], - [-113.973099, 75.096367], - [-113.932503, 75.141373], - [-113.647499, 75.184143], - [-113.929398, 75.173599], - [-113.805801, 75.32666], - [-113.318901, 75.417763], - [-113.470596, 75.431091], - [-113.902199, 75.37442], - [-113.992203, 75.448318], - [-114.065002, 75.466087], - [-114.093903, 75.410812], - [-114.040604, 75.362198], - [-114.170799, 75.226929], - [-114.284698, 75.234993], - [-114.512802, 75.314697], - [-114.615303, 75.274986], - [-114.443001, 75.257217], - [-114.297203, 75.179153], - [-114.394997, 75.090553], - [-114.949203, 74.969994], - [-115.195297, 74.989967], - [-115.225304, 75.064148], - [-115.172798, 75.107758], - [-115.257004, 75.179977], - [-115.279198, 75.140823], - [-115.404198, 75.098877], - [-115.674202, 75.138321], - [-115.595299, 75.117203], - [-115.611397, 75.098877], - [-115.537498, 75.027206], - [-115.690598, 74.964157], - [-116.253899, 75.058319], - [-116.041702, 75.122757], - [-116.321098, 75.103317], - [-116.241096, 75.168869], - [-116.239197, 75.201393], - [-116.301399, 75.203049], - [-116.560501, 75.179153], - [-116.694199, 75.116653], - [-117.457802, 75.188873], - [-117.683899, 75.253052], - [-117.661903, 75.298027], - [-117.555603, 75.310806], - [-117.575302, 75.33638], - [-117.455299, 75.400269], - [-117.218903, 75.476379], - [-115.991402, 75.485809], - [-115.619698, 75.578873], - [-115.2686, 75.595833], - [-115.2883, 75.620529], - [-115.267799, 75.635818], - [-114.998001, 75.695824], - [-115.714401, 75.642487], - [-116.119202, 75.572769], - [-116.863098, 75.564148], - [-117.25, 75.586113], - [-117.016701, 75.737198], - [-116.816399, 75.796371], - [-116.037201, 75.809708], - [-115.749397, 75.85498], - [-115.594498, 75.833328], - [-114.980797, 75.853043], - [-114.798599, 75.892212], - [-116.106697, 75.864151], - [-116.649696, 75.884987], - [-116.724403, 75.906372], - [-116.7267, 75.951393], - [-116.461899, 75.974991], - [-116.525803, 76.002213], - [-116.499397, 76.026657], - [-116.705597, 76.039146], - [-116.641403, 76.113312], - [-116.516098, 76.157761], - [-116.163597, 76.197197], - [-114.790802, 76.151077], - [-114.680801, 76.164993], - [-115.282204, 76.233871], - [-115.827202, 76.239433], - [-115.9217, 76.281097], - [-115.850304, 76.324158], - [-115.909401, 76.345543], - [-115.499702, 76.454712], - [-115.0214, 76.474701], - [-114.899696, 76.516937], - [-114.702003, 76.515266], - [-114.751999, 76.487762], - [-114.4617, 76.501663], - [-114.118301, 76.435257], - [-114.106102, 76.355553], - [-114.177803, 76.344711], - [-113.983299, 76.261383], - [-114.0597, 76.217758], - [-113.983299, 76.190262], - [-113.323303, 76.262772], - [-112.999199, 76.267487], - [-112.892197, 76.253883], - [-112.838898, 76.214996], - [-112.425003, 76.167763], - [-112.528099, 76.103867], - [-112.4133, 76.04248], - [-112.043297, 75.998871], - [-111.727798, 75.921654], - [-112.074997, 75.873871], - [-112.225601, 75.811096], - [-111.452003, 75.836647], - [-111.474197, 75.810806], - [-111.592201, 75.80748], - [-111.439201, 75.776382], - [-111.451698, 75.742203], - [-111.355301, 75.724426], - [-111.4039, 75.684708], - [-111.3722, 75.645264], - [-111.407204, 75.61499], - [-111.3536, 75.572487], - [-111.292801, 75.57193], - [-111.318604, 75.545258], - [-111.2714, 75.522491], - [-110.495499, 75.569153], - [-110.389503, 75.534149], - [-110.00402, 75.532769], - [-110.008101, 74.833102] - ] - ], - [ - [ - [-110.001897, 75.875843], - [-110.055603, 75.890549], - [-110.001757, 75.898089], - [-110.001897, 75.875843] - ] - ], - [ - [ - [-109.999649, 76.224774], - [-110.201698, 76.285538], - [-110.372803, 76.294434], - [-110.329498, 76.336647], - [-110.377502, 76.355553], - [-110.383904, 76.427467], - [-109.997979, 76.474992], - [-109.999649, 76.224774] - ] - ], - [ - [ - [-117.431396, 69.99498], - [-117.251404, 70.072769], - [-117.010803, 70.116928], - [-115.908302, 70.228867], - [-114.543098, 70.313309], - [-114.2183, 70.316093], - [-113.683899, 70.263046], - [-113.333298, 70.277206], - [-112.564697, 70.198318], - [-112.517197, 70.207489], - [-112.577797, 70.216087], - [-112.543297, 70.237488], - [-112.391403, 70.225273], - [-112.3414, 70.234993], - [-112.378899, 70.256653], - [-112.138298, 70.271378], - [-112.283302, 70.299988], - [-111.926399, 70.252213], - [-111.442802, 70.290268], - [-111.583603, 70.301086], - [-111.489197, 70.324997], - [-111.536903, 70.349426], - [-111.980598, 70.370819], - [-112.169197, 70.497208], - [-112.408302, 70.507492], - [-112.445297, 70.534149], - [-112.528099, 70.51416], - [-112.709702, 70.56749], - [-112.848602, 70.567757], - [-112.882202, 70.538589], - [-113.091904, 70.608871], - [-113.185799, 70.603592], - [-113.206703, 70.64415], - [-113.511101, 70.677757], - [-113.591698, 70.646103], - [-113.938301, 70.715271], - [-114.171097, 70.664703], - [-114.408302, 70.673599], - [-114.641098, 70.622482], - [-115.399399, 70.60498], - [-115.5811, 70.573036], - [-115.699699, 70.598602], - [-116.055603, 70.57222], - [-116.211899, 70.602768], - [-116.171097, 70.626923], - [-116.363899, 70.63916], - [-116.9011, 70.597214], - [-117.338097, 70.598877], - [-117.376701, 70.625526], - [-117.543602, 70.595261], - [-117.724701, 70.641373], - [-117.741699, 70.661377], - [-117.709396, 70.693863], - [-117.735802, 70.711647], - [-118.112701, 70.811462], - [-118.3097, 70.897217], - [-118.415001, 70.998032], - [-117.849701, 71.156937], - [-116.842499, 71.247208], - [-116.800598, 71.286102], - [-116.2089, 71.364151], - [-116.077797, 71.365807], - [-116.148903, 71.341087], - [-115.760803, 71.365807], - [-115.7267, 71.381363], - [-115.790604, 71.396378], - [-116.220001, 71.424423], - [-115.740799, 71.503601], - [-115.750298, 71.481087], - [-115.620796, 71.498596], - [-115.378304, 71.449707], - [-115.057503, 71.523041], - [-115.442802, 71.488037], - [-115.558601, 71.508331], - [-115.455803, 71.532494], - [-115.706398, 71.555817], - [-117.377197, 71.382751], - [-117.416702, 71.391373], - [-117.378304, 71.454163], - [-117.471397, 71.454712], - [-117.4478, 71.473877], - [-117.562798, 71.49971], - [-117.633301, 71.461929], - [-117.483299, 71.43248], - [-117.539398, 71.372757], - [-117.720299, 71.400818], - [-117.776901, 71.368591], - [-118.112198, 71.373596], - [-118.2836, 71.404709], - [-118.3153, 71.439697], - [-118.290001, 71.481659], - [-118.054398, 71.543053], - [-117.766403, 71.522774], - [-117.8358, 71.554703], - [-117.6558, 71.57193], - [-117.887199, 71.614151], - [-117.957199, 71.598602], - [-117.967499, 71.626373], - [-117.700798, 71.671371], - [-118.027802, 71.671654], - [-118.172798, 71.628036], - [-118.176697, 71.596367], - [-118.411697, 71.57666], - [-118.386101, 71.619713], - [-118.566399, 71.662773], - [-118.855598, 71.662491], - [-118.9039, 71.6147], - [-118.880501, 71.577209], - [-119.050301, 71.626648], - [-119.134499, 71.765266], - [-119.087502, 71.908333], - [-118.929199, 72.000549], - [-118.724998, 72.06192], - [-118.717499, 72.116928], - [-118.5886, 72.176086], - [-118.112801, 72.231934], - [-118.145302, 72.326927], - [-118.491096, 72.353043], - [-118.5886, 72.416656], - [-118.536903, 72.493874], - [-118.191299, 72.628662], - [-117.868896, 72.699997], - [-117.3536, 72.916382], - [-116.941399, 72.956383], - [-116.574203, 73.054153], - [-114.561699, 73.375526], - [-114.226097, 73.318329], - [-114.016701, 73.206383], - [-113.953903, 73.125526], - [-114.051399, 72.959991], - [-114.017197, 72.925812], - [-114.052803, 72.872208], - [-113.969498, 72.813026], - [-114.224197, 72.794983], - [-114.351402, 72.747482], - [-114.327797, 72.688873], - [-114.248596, 72.688583], - [-114.604698, 72.601646], - [-114.5522, 72.585541], - [-114.558296, 72.560806], - [-114.351402, 72.55748], - [-114.319199, 72.589706], - [-114.062798, 72.640266], - [-113.893097, 72.660263], - [-113.806702, 72.63916], - [-113.516098, 72.701927], - [-113.729202, 72.61554], - [-113.699699, 72.604156], - [-113.442802, 72.672211], - [-113.4133, 72.734711], - [-113.597504, 72.754173], - [-113.5989, 72.782761], - [-113.302803, 72.948868], - [-113.007004, 73.008881], - [-112.514999, 72.951103], - [-112.3619, 72.904709], - [-112.061699, 72.889427], - [-111.2258, 72.722763], - [-111.202499, 72.670532], - [-111.276901, 72.56749], - [-111.489197, 72.50499], - [-111.436699, 72.488586], - [-111.560501, 72.429153], - [-111.905602, 72.349716], - [-111.812798, 72.323036], - [-111.643097, 72.348038], - [-111.651703, 72.319153], - [-111.726097, 72.300537], - [-111.713898, 72.274429], - [-111.786102, 72.222763], - [-111.763298, 72.198593], - [-111.653297, 72.29332], - [-111.4244, 72.337196], - [-111.578102, 72.339157], - [-111.609398, 72.367203], - [-111.350304, 72.453323], - [-111.2286, 72.465553], - [-111.202499, 72.460274], - [-111.243896, 72.434563], - [-111.371696, 72.403587], - [-111.2808, 72.397774], - [-111.364403, 72.342484], - [-111.241898, 72.365257], - [-111.033096, 72.281937], - [-111.0914, 72.401932], - [-110.987801, 72.434418], - [-110.993103, 72.476379], - [-110.796997, 72.472763], - [-110.827797, 72.525818], - [-110.701401, 72.575546], - [-110.478897, 72.5522], - [-110.601898, 72.493317], - [-110.350601, 72.42804], - [-110.311897, 72.434708], - [-110.530602, 72.502487], - [-110.384201, 72.555542], - [-110.050598, 72.433868], - [-110.019917, 72.442051], - [-110.029392, 69.995491], - [-112.48507, 69.993691], - [-112.477477, 69.892389], - [-112.614279, 69.896203], - [-112.657705, 69.834517], - [-112.862425, 69.840022], - [-112.887108, 69.991098], - [-117.085008, 69.999148], - [-117.118097, 69.891887], - [-116.513568, 69.634805], - [-116.859908, 69.637114], - [-116.847504, 69.648613], - [-117.247498, 69.756943], - [-117.431396, 69.99498] - ] - ], - [ - [ - [-110.019692, 72.493611], - [-110.255798, 72.556931], - [-110.104202, 72.557747], - [-110.019536, 72.529154], - [-110.019692, 72.493611] - ] - ], - [ - [ - [-110.01912, 72.623398], - [-110.2911, 72.671097], - [-110.178299, 72.680817], - [-110.212799, 72.711647], - [-110.188301, 72.726089], - [-110.078102, 72.727074], - [-110.018727, 72.7117], - [-110.01912, 72.623398] - ] - ], - [ - [ - [-110.018556, 72.749766], - [-110.073601, 72.755829], - [-110.266098, 72.734993], - [-110.171402, 72.774986], - [-110.2117, 72.818329], - [-110.535599, 72.847214], - [-110.756699, 72.971367], - [-110.708298, 73.002487], - [-110.511398, 73.015266], - [-110.017534, 72.974877], - [-110.018556, 72.749766] - ] - ], - [ - [ - [-102.001701, 59.99992], - [-104.270699, 59.9995], - [-104.7099, 59.999771], - [-105.5411, 60], - [-105.859001, 59.99968], - [-106.044403, 59.999592], - [-106.255997, 59.999771], - [-107.113602, 59.994709], - [-110.0009, 59.995281], - [-119.982903, 59.988522], - [-123.816902, 59.994709], - [-123.8769, 60.04166], - [-124.029198, 60.023048], - [-123.974197, 60.098049], - [-124.195297, 60.32888], - [-124.206398, 60.457211], - [-124.418297, 60.47916], - [-124.459396, 60.569721], - [-124.614197, 60.668598], - [-124.619202, 60.709721], - [-124.476898, 60.79055], - [-124.578903, 60.953049], - [-124.813004, 60.972488], - [-124.8778, 60.91721], - [-124.871696, 60.858051], - [-125, 60.860519], - [-125.184196, 60.848881], - [-125.370003, 60.782558], - [-125.711998, 60.827259], - [-125.887199, 60.896938], - [-125.957001, 60.877239], - [-126.009201, 60.80341], - [-126.107201, 60.817009], - [-126.113602, 60.862808], - [-126.202202, 60.863651], - [-126.244698, 60.850868], - [-126.217499, 60.819771], - [-126.253601, 60.78867], - [-126.394501, 60.77668], - [-126.520302, 60.814411], - [-126.672203, 60.743469], - [-126.753304, 60.782211], - [-126.826103, 60.755001], - [-126.886902, 60.78249], - [-126.8797, 60.82999], - [-126.925301, 60.862209], - [-126.898903, 60.941662], - [-126.9394, 61.002491], - [-126.935303, 61.059158], - [-127.055801, 61.039989], - [-127.101898, 61.070831], - [-127.0131, 61.12804], - [-127.031403, 61.150539], - [-127.007004, 61.18499], - [-127.059402, 61.363049], - [-127.125, 61.4011], - [-127.141701, 61.46666], - [-127.2883, 61.519161], - [-127.550301, 61.511379], - [-127.972801, 61.688599], - [-128.006104, 61.732491], - [-128.080597, 61.849159], - [-128.196701, 61.844151], - [-128.279205, 61.948879], - [-128.388107, 61.993881], - [-128.375305, 62.02721], - [-128.546997, 62.122219], - [-128.677505, 62.125271], - [-128.765305, 62.058331], - [-128.984207, 62.136108], - [-129.122803, 62.116661], - [-129.2939, 62.156101], - [-129.199203, 62.21693], - [-129.282196, 62.267208], - [-129.310501, 62.326389], - [-129.215805, 62.377491], - [-129.308304, 62.421379], - [-129.172195, 62.481659], - [-129.417801, 62.584991], - [-129.567795, 62.57444], - [-129.487793, 62.618881], - [-129.523895, 62.64333], - [-129.516998, 62.672489], - [-129.625305, 62.70499], - [-129.630798, 62.76083], - [-129.773895, 62.874439], - [-129.702499, 62.89222], - [-129.726105, 62.91415], - [-129.705795, 62.952221], - [-129.598907, 63.051929], - [-129.637207, 63.08028], - [-129.847198, 63.086941], - [-129.835297, 63.114719], - [-129.900299, 63.197208], - [-129.978607, 63.203609], - [-130.044495, 63.269989], - [-130.151093, 63.265831], - [-130.138306, 63.310268], - [-130.073593, 63.33696], - [-129.919205, 63.372761], - [-129.897202, 63.452221], - [-129.819504, 63.48333], - [-129.898102, 63.57222], - [-129.957993, 63.58527], - [-129.948593, 63.613609], - [-130.093002, 63.63055], - [-130.110794, 63.66444], - [-130.082504, 63.68832], - [-130.109695, 63.703609], - [-130.251999, 63.66666], - [-130.321106, 63.69582], - [-130.282501, 63.73777], - [-130.103897, 63.76416], - [-130.119705, 63.808041], - [-130.3703, 63.84388], - [-130.522202, 63.93499], - [-130.5811, 63.92416], - [-130.7556, 63.986938], - [-130.778595, 64.009163], - [-130.751404, 64.046097], - [-130.863907, 64.043053], - [-130.853607, 64.072487], - [-130.9478, 64.137207], - [-130.867203, 64.187759], - [-130.937195, 64.209991], - [-130.979706, 64.265549], - [-131.060501, 64.279427], - [-131.001999, 64.330276], - [-131.141693, 64.424423], - [-131.388596, 64.467209], - [-131.427505, 64.416382], - [-131.593002, 64.368591], - [-131.8181, 64.378311], - [-131.803894, 64.438026], - [-131.687805, 64.498596], - [-131.702805, 64.535538], - [-131.915802, 64.582489], - [-132.046402, 64.695534], - [-132.163605, 64.70166], - [-132.368896, 64.77832], - [-132.570602, 64.772491], - [-132.622498, 64.826927], - [-132.487503, 64.870819], - [-132.507507, 64.964432], - [-132.333298, 65.034714], - [-132.381699, 65.084991], - [-132.539993, 65.093872], - [-132.556107, 65.118042], - [-132.527496, 65.162773], - [-132.576401, 65.190536], - [-132.701904, 65.15387], - [-132.787796, 65.187759], - [-132.714203, 65.199417], - [-132.780594, 65.229713], - [-132.555298, 65.2836], - [-132.521393, 65.363037], - [-132.327805, 65.434708], - [-132.273605, 65.546944], - [-132.174194, 65.59137], - [-132.286102, 65.71582], - [-132.573303, 65.848602], - [-132.525803, 65.897774], - [-132.334396, 65.94664], - [-132.342804, 65.981934], - [-132.5103, 65.978867], - [-132.542496, 66.021378], - [-132.605804, 66.031662], - [-132.869003, 65.910477], - [-132.993896, 65.923027], - [-132.908401, 65.996933], - [-132.939697, 66.02887], - [-133.147507, 66.024696], - [-133.407501, 65.943863], - [-133.629395, 65.974426], - [-133.603302, 66.051651], - [-133.704697, 66.07193], - [-133.673096, 66.116928], - [-133.563904, 66.155823], - [-133.570007, 66.27832], - [-133.824707, 66.316673], - [-133.768097, 66.373032], - [-133.750305, 66.447746], - [-133.629395, 66.445251], - [-133.690308, 66.531937], - [-133.5867, 66.564697], - [-133.771896, 66.64415], - [-133.757202, 66.685257], - [-133.840302, 66.727768], - [-133.763901, 66.806931], - [-133.908096, 66.908867], - [-134.092499, 66.955261], - [-134.046097, 66.984421], - [-133.8311, 67.003326], - [-136.164505, 67.003601], - [-136.222198, 67.064148], - [-136.198898, 67.143333], - [-136.236404, 67.173866], - [-136.134506, 67.226379], - [-136.0914, 67.302467], - [-136.142807, 67.359421], - [-136.116394, 67.382751], - [-136.205307, 67.406937], - [-136.157806, 67.507767], - [-136.241104, 67.620529], - [-136.421097, 67.655258], - [-136.445007, 67.715553], - [-136.446106, 68.873032], - [-136.419998, 68.90052], - [-136.027802, 68.873032], - [-135.799194, 68.822487], - [-135.725296, 68.772491], - [-135.519699, 68.745819], - [-135.399399, 68.670258], - [-135.286407, 68.684143], - [-135.160004, 68.657211], - [-135.506104, 68.832489], - [-135.337997, 68.834991], - [-135.623596, 68.886108], - [-135.241699, 68.926933], - [-135.172501, 68.886383], - [-134.977493, 68.878311], - [-134.845596, 68.929428], - [-134.669495, 68.873306], - [-134.626099, 68.808319], - [-134.5, 68.756943], - [-134.446396, 68.700272], - [-134.219498, 68.692513], - [-134.287506, 68.753601], - [-134.406403, 68.801086], - [-134.629196, 69.008881], - [-134.537506, 69.093872], - [-134.338898, 69.106369], - [-134.1539, 69.258881], - [-133.905594, 69.287491], - [-133.859695, 69.337486], - [-133.688904, 69.336929], - [-133.661102, 69.348602], - [-133.691101, 69.359154], - [-133.670303, 69.386658], - [-133.550598, 69.405823], - [-133.217499, 69.396378], - [-133.046707, 69.433319], - [-133.052505, 69.466087], - [-132.966095, 69.511658], - [-132.951904, 69.569153], - [-132.988602, 69.595261], - [-132.893906, 69.65387], - [-132.417496, 69.635536], - [-132.333603, 69.68248], - [-132.449402, 69.654427], - [-132.423294, 69.683319], - [-132.441101, 69.702477], - [-132.622498, 69.679703], - [-132.540604, 69.740807], - [-132.259201, 69.772491], - [-132.480804, 69.732208], - [-132.303101, 69.733597], - [-132.310303, 69.710541], - [-132.133896, 69.686653], - [-132.107193, 69.723602], - [-131.845306, 69.765266], - [-131.645004, 69.86499], - [-131.418594, 69.901932], - [-131.4478, 69.918587], - [-131.410294, 69.957207], - [-131.237198, 69.9272], - [-131.201401, 69.883881], - [-131.220596, 69.843048], - [-131.184998, 69.824158], - [-131.152496, 69.854156], - [-131.185501, 69.863312], - [-131.170303, 69.881927], - [-131.080597, 69.884987], - [-131.0047, 70.003883], - [-130.930603, 70.021378], - [-131.019501, 70.027771], - [-130.892197, 70.099152], - [-130.897507, 70.065811], - [-130.713593, 70.125526], - [-130.748306, 70.08194], - [-130.720596, 70.076103], - [-130.657501, 70.096939], - [-130.656998, 70.134163], - [-130.472198, 70.173866], - [-130.522202, 70.158867], - [-130.535599, 70.107483], - [-130.477203, 70.110527], - [-130.504196, 70.13443], - [-130.411407, 70.131927], - [-130.386703, 70.165543], - [-130.324997, 70.134163], - [-130.331696, 70.105263], - [-130.285294, 70.101646], - [-130.336105, 70.083054], - [-130.279495, 70.082657], - [-130.170807, 70.105263], - [-130.195297, 70.062759], - [-130.168594, 70.053307], - [-130.104996, 70.109711], - [-130.074707, 70.106369], - [-130.082794, 70.073883], - [-129.951096, 70.099426], - [-129.990295, 70.068878], - [-129.8936, 70.077766], - [-129.854996, 70.10054], - [-129.853302, 70.149147], - [-129.7883, 70.177757], - [-129.832504, 70.195534], - [-129.730804, 70.218597], - [-129.740005, 70.248032], - [-129.673096, 70.266937], - [-129.591904, 70.188583], - [-129.629395, 70.160812], - [-129.459198, 70.147491], - [-129.502808, 70.115257], - [-129.473297, 70.092758], - [-129.404694, 70.123032], - [-129.459396, 70.053307], - [-129.553604, 70.042763], - [-129.497498, 70.020538], - [-130.521896, 69.782494], - [-130.578293, 69.708038], - [-130.780304, 69.676933], - [-130.844101, 69.599716], - [-130.928604, 69.563309], - [-131.039703, 69.601646], - [-131.039993, 69.640823], - [-131.331696, 69.603317], - [-131.332794, 69.574707], - [-131.645599, 69.577209], - [-131.667801, 69.571663], - [-131.657196, 69.531662], - [-131.755905, 69.56694], - [-132.006393, 69.527206], - [-132.080002, 69.48082], - [-132.042496, 69.448868], - [-132.098907, 69.451103], - [-132.094101, 69.418053], - [-132.141693, 69.412773], - [-132.097504, 69.396057], - [-132.094696, 69.362762], - [-132.339401, 69.311096], - [-132.315796, 69.247757], - [-132.381393, 69.305252], - [-132.435806, 69.298599], - [-132.434204, 69.250267], - [-132.483902, 69.236366], - [-132.495499, 69.159416], - [-132.513306, 69.263046], - [-132.545593, 69.283333], - [-132.717804, 69.266388], - [-132.837997, 69.217209], - [-132.8228, 69.1922], - [-132.907196, 69.12442], - [-132.829697, 69.106934], - [-132.901901, 69.071663], - [-132.888306, 68.979713], - [-132.922806, 68.985809], - [-132.946106, 69.037491], - [-132.919205, 69.074997], - [-133.016693, 69.044983], - [-133.098602, 69.06694], - [-133.200806, 69.032494], - [-133.198898, 68.977203], - [-133.251099, 68.963608], - [-133.210495, 68.944138], - [-133.233597, 68.9086], - [-133.334702, 68.866089], - [-133.399399, 68.881363], - [-133.3694, 68.910538], - [-133.466095, 68.888321], - [-133.425598, 68.857483], - [-133.484695, 68.850273], - [-133.463898, 68.79332], - [-133.054199, 68.69136], - [-132.918304, 68.690262], - [-132.933594, 68.709717], - [-133.152496, 68.720833], - [-133.266098, 68.77887], - [-133.139694, 68.766937], - [-133.251999, 68.797981], - [-133.335495, 68.789703], - [-133.380295, 68.844711], - [-133.237793, 68.861099], - [-133.121902, 68.805817], - [-132.938004, 68.795822], - [-132.962204, 68.8461], - [-132.936707, 68.85498], - [-132.707199, 68.786652], - [-132.733307, 68.830833], - [-132.491898, 68.801086], - [-132.422699, 68.835831], - [-132.397003, 68.8647], - [-132.553299, 68.916092], - [-132.492493, 68.877197], - [-132.598602, 68.89415], - [-132.665298, 68.841927], - [-132.787201, 68.847488], - [-132.705002, 68.880814], - [-132.833298, 68.923599], - [-132.675797, 68.926651], - [-132.855804, 68.984421], - [-132.867996, 69.026932], - [-132.827194, 69.040268], - [-132.865494, 69.068329], - [-132.496094, 69.132202], - [-132.425003, 69.233597], - [-132.404205, 69.216377], - [-132.423904, 69.150269], - [-132.467499, 69.107208], - [-132.384995, 69.13916], - [-132.320602, 69.233871], - [-132.291702, 69.203873], - [-132.342194, 69.188873], - [-132.289993, 69.1772], - [-132.197006, 69.212196], - [-132.237198, 69.161102], - [-132.222504, 69.141663], - [-132.163605, 69.24054], - [-132.076096, 69.226089], - [-131.953293, 69.260269], - [-131.9095, 69.309708], - [-131.876907, 69.310806], - [-131.913895, 69.280823], - [-131.865005, 69.283051], - [-131.714401, 69.397774], - [-131.849701, 69.369141], - [-131.887497, 69.405258], - [-131.970001, 69.406372], - [-131.846603, 69.426086], - [-131.645798, 69.421654], - [-131.679993, 69.451927], - [-131.652206, 69.471916], - [-131.416107, 69.435532], - [-131.486099, 69.402206], - [-131.480804, 69.358597], - [-131.525803, 69.329437], - [-131.412796, 69.366653], - [-131.405594, 69.41832], - [-131.358307, 69.419983], - [-131.370804, 69.454437], - [-131.330795, 69.442467], - [-131.321899, 69.493317], - [-131.241898, 69.406372], - [-131.274704, 69.49498], - [-131.245804, 69.498322], - [-131.212997, 69.387497], - [-131.414505, 69.296944], - [-131.160599, 69.388603], - [-131.1642, 69.495529], - [-131.247803, 69.583054], - [-131.113602, 69.513321], - [-131.128296, 69.361923], - [-131.062195, 69.510269], - [-131.196106, 69.589981], - [-131.093597, 69.609421], - [-131.104401, 69.571663], - [-131.027802, 69.463882], - [-131.116394, 69.322487], - [-131.030899, 69.371918], - [-130.962997, 69.472214], - [-130.990295, 69.539429], - [-130.946396, 69.539146], - [-130.932495, 69.419144], - [-131.047806, 69.336113], - [-131.016998, 69.30748], - [-130.935501, 69.388321], - [-130.897797, 69.385818], - [-130.906403, 69.328873], - [-130.9991, 69.268333], - [-130.989197, 69.236649], - [-131.024704, 69.209717], - [-131.014206, 69.136932], - [-130.922806, 69.135269], - [-130.956696, 69.161926], - [-130.941696, 69.270538], - [-130.794495, 69.346367], - [-130.813004, 69.3797], - [-130.660294, 69.429428], - [-130.652802, 69.457764], - [-130.748306, 69.453598], - [-130.443893, 69.582489], - [-130.452194, 69.613312], - [-130.333893, 69.681374], - [-130.365295, 69.694427], - [-129.602203, 69.818878], - [-129.099396, 69.858871], - [-128.9319, 69.971649], - [-128.900299, 69.971878], - [-128.854706, 69.954712], - [-128.898895, 69.962769], - [-128.8983, 69.914429], - [-128.9561, 69.889709], - [-128.934402, 69.844147], - [-129.169495, 69.824707], - [-129.1297, 69.74942], - [-129.149994, 69.695534], - [-128.977493, 69.674698], - [-128.921402, 69.687187], - [-128.970795, 69.711113], - [-128.961395, 69.732758], - [-128.795807, 69.756943], - [-128.587997, 69.872208], - [-128.324203, 69.948318], - [-128.308594, 70.008041], - [-128.369705, 70.095833], - [-128.343002, 70.116928], - [-128.109207, 70.182213], - [-127.514999, 70.221649], - [-128.028397, 70.286377], - [-128.112198, 70.359711], - [-127.959999, 70.347488], - [-127.915604, 70.396652], - [-128.192795, 70.386932], - [-128.135803, 70.523041], - [-127.996696, 70.590553], - [-127.463097, 70.409149], - [-127.173599, 70.272217], - [-126.893303, 70.008881], - [-126.7742, 69.974426], - [-126.795303, 69.943863], - [-126.765602, 69.928307], - [-126.811897, 69.905258], - [-126.705803, 69.766098], - [-126.255798, 69.526657], - [-125.910599, 69.405548], - [-125.6689, 69.389969], - [-125.426399, 69.31218], - [-125.365501, 69.342468], - [-125.457802, 69.384407], - [-125.456902, 69.410248], - [-125.165298, 69.381638], - [-125.1119, 69.415817], - [-125.135803, 69.439133], - [-125.089401, 69.449707], - [-125.266403, 69.442177], - [-125.295303, 69.47081], - [-125.622498, 69.418587], - [-125.578102, 69.471649], - [-125.498596, 69.474693], - [-125.511101, 69.491928], - [-125.464699, 69.512207], - [-125.313301, 69.497742], - [-125.324203, 69.523857], - [-125.118103, 69.485786], - [-125.292801, 69.549133], - [-125.225304, 69.586639], - [-125.437202, 69.608871], - [-125.372803, 69.6147], - [-125.413597, 69.638321], - [-125.365501, 69.690262], - [-125.241096, 69.686371], - [-125.016998, 69.740517], - [-124.967499, 69.726929], - [-124.925003, 69.644707], - [-124.861702, 69.688583], - [-124.871101, 69.713882], - [-124.821999, 69.714996], - [-124.897499, 69.750549], - [-125.241402, 69.760246], - [-125.276398, 69.808243], - [-125.184402, 69.855797], - [-125.165001, 69.795502], - [-125.058601, 69.789688], - [-125.0214, 69.864967], - [-124.893303, 69.940262], - [-124.629997, 69.979431], - [-124.684196, 70.01915], - [-124.764503, 69.970833], - [-124.852501, 69.986099], - [-124.795303, 70.008881], - [-124.976402, 70.007217], - [-125.121101, 69.967506], - [-125.111397, 69.94194], - [-125.206703, 69.933228], - [-125.188301, 70.009033], - [-125, 70.079987], - [-124.986702, 70.041656], - [-125.047997, 70.023041], - [-125, 70.018646], - [-124.863297, 70.027206], - [-124.956902, 70.032211], - [-124.834198, 70.068047], - [-124.645302, 70.07193], - [-124.584702, 70.011932], - [-124.5336, 70.01944], - [-124.556702, 70.036377], - [-124.526398, 70.053589], - [-124.436096, 70.036377], - [-124.418098, 70.046371], - [-124.449402, 70.080276], - [-124.577797, 70.0811], - [-124.519997, 70.103867], - [-124.735802, 70.089432], - [-124.6847, 70.108322], - [-124.752502, 70.121643], - [-124.680298, 70.149719], - [-124.385803, 70.144707], - [-124.446098, 70.108871], - [-124.361397, 70.073608], - [-124.376701, 70.023323], - [-124.488899, 70.016098], - [-124.417801, 69.989433], - [-124.537804, 69.963882], - [-124.438599, 69.952766], - [-124.441902, 69.920258], - [-124.5056, 69.903053], - [-124.403297, 69.857758], - [-124.501701, 69.784416], - [-124.479401, 69.755547], - [-124.500603, 69.725807], - [-124.294998, 69.695251], - [-124.201401, 69.729431], - [-124.069702, 69.723602], - [-124.035301, 69.678864], - [-124.203598, 69.619713], - [-124.240501, 69.550262], - [-124.419998, 69.470261], - [-124.414398, 69.412773], - [-124.518898, 69.40416], - [-124.446701, 69.367203], - [-124.263603, 69.348602], - [-124.095299, 69.35498], - [-124.053001, 69.386932], - [-124.006104, 69.344711], - [-124.016403, 69.37915], - [-123.984703, 69.404984], - [-123.889503, 69.365257], - [-123.817001, 69.388893], - [-123.68, 69.353317], - [-123.477798, 69.381088], - [-123.380798, 69.410538], - [-123.450798, 69.44693], - [-123.400002, 69.490257], - [-123.168602, 69.495247], - [-123.126701, 69.571114], - [-123.162201, 69.618591], - [-123.096397, 69.670532], - [-123.108902, 69.747757], - [-123.152199, 69.768051], - [-122.959198, 69.833603], - [-122.807999, 69.793587], - [-122.754997, 69.799149], - [-122.741898, 69.830276], - [-122.202797, 69.794983], - [-121.930603, 69.814423], - [-121.443001, 69.765549], - [-120.881104, 69.638893], - [-120.66524, 69.551327], - [-120.664292, 69.542782], - [-120.658461, 68.001268], - [-112.498556, 65.506191], - [-110.651709, 65.499518], - [-109.387397, 64.826919], - [-101.984001, 64.21341], - [-102.001701, 59.99992] - ] - ], - [ - [ - [-119.744797, 74.025513], - [-119.750603, 74.09137], - [-119.611397, 74.128593], - [-119.465302, 74.2211], - [-119.121101, 74.199707], - [-119.090797, 74.150818], - [-119.131104, 74.126083], - [-119.0653, 74.103317], - [-119.147202, 74.062187], - [-119.187202, 73.994141], - [-119.167503, 73.987198], - [-119.073898, 74.015266], - [-118.973099, 74.000267], - [-118.790298, 74.107758], - [-118.881104, 74.17804], - [-118.673897, 74.219994], - [-118.101898, 74.276382], - [-117.438599, 74.229431], - [-116.785004, 74.059708], - [-115.894402, 73.718597], - [-115.614197, 73.668053], - [-115.366898, 73.545822], - [-115.323097, 73.474426], - [-115.834702, 73.339981], - [-116.4561, 73.257492], - [-117.244202, 73.054703], - [-117.466103, 73.036377], - [-118.366096, 72.824432], - [-118.496101, 72.763611], - [-118.753098, 72.736923], - [-119.137497, 72.632477], - [-119.183601, 72.595543], - [-119.170799, 72.542763], - [-119.309402, 72.438873], - [-119.332497, 72.387207], - [-119.311096, 72.352203], - [-119.801399, 72.221367], - [-120.029198, 72.219147], - [-120.1847, 72.232758], - [-120.139999, 72.267761], - [-120.251099, 72.258614], - [-120.258598, 72.234154], - [-120.180298, 72.203873], - [-120.144997, 72.1436], - [-120.194199, 72.078323], - [-120.449203, 71.94693], - [-120.379204, 71.883881], - [-120.426399, 71.744431], - [-120.3769, 71.688026], - [-120.543297, 71.516663], - [-120.877197, 71.44136], - [-121.429199, 71.378311], - [-121.603104, 71.399429], - [-121.531998, 71.417763], - [-121.569702, 71.45166], - [-121.743896, 71.453323], - [-122.121696, 71.267212], - [-122.605003, 71.174988], - [-122.781097, 71.086113], - [-123.095001, 71.079987], - [-123.223297, 71.114151], - [-123.403297, 71.211929], - [-123.665802, 71.496368], - [-123.801697, 71.535538], - [-123.948898, 71.658333], - [-125.236397, 71.94191], - [-124.953903, 71.938026], - [-124.939697, 71.95694], - [-125, 71.970657], - [-125.761398, 71.950821], - [-125.997803, 71.973602], - [-125.7789, 71.986366], - [-125.715302, 72.090271], - [-125.7883, 72.118317], - [-125.566399, 72.178864], - [-125.660004, 72.19136], - [-125.6567, 72.251083], - [-125.501701, 72.266373], - [-125.478302, 72.299133], - [-125.532204, 72.30191], - [-125.391998, 72.396637], - [-125.436699, 72.409126], - [-125.343597, 72.414978], - [-125.358597, 72.447189], - [-125.300598, 72.483307], - [-125, 72.560463], - [-124.947998, 72.570541], - [-124.968903, 72.60498], - [-125.098099, 72.630814], - [-124.940598, 72.702477], - [-125.0186, 72.702759], - [-124.971901, 72.755829], - [-125.0261, 72.821091], - [-125.114403, 72.861649], - [-124.943001, 72.854156], - [-124.4758, 72.9272], - [-124.522499, 72.952766], - [-124.4972, 72.977203], - [-124.624702, 73.020538], - [-124.726097, 73.006653], - [-124.868896, 73.080551], - [-124.785004, 73.138893], - [-124.644699, 73.156372], - [-124.668098, 73.192749], - [-124.482498, 73.346649], - [-124.4039, 73.371918], - [-124.433098, 73.421371], - [-124.068604, 73.535812], - [-124.038902, 73.586929], - [-124.078598, 73.622757], - [-124.067802, 73.654709], - [-123.8442, 73.696091], - [-123.838303, 73.743874], - [-123.774696, 73.764427], - [-123.847801, 73.825272], - [-124.217499, 73.872757], - [-124.195801, 73.916382], - [-124.352501, 73.976379], - [-124.381104, 74.037773], - [-124.462502, 74.069717], - [-124.469704, 74.101089], - [-124.426697, 74.109711], - [-124.535301, 74.20665], - [-124.516403, 74.25], - [-124.693001, 74.26944], - [-124.604202, 74.312477], - [-124.762497, 74.315536], - [-124.770798, 74.340271], - [-123.253899, 74.444138], - [-122.337502, 74.4711], - [-121.5186, 74.548866], - [-121.150803, 74.509987], - [-121.002197, 74.467758], - [-120.971703, 74.418053], - [-120.217201, 74.282494], - [-119.525002, 74.229713], - [-119.6633, 74.223877], - [-119.651398, 74.181664], - [-119.824203, 74.094711], - [-119.827202, 74.059143], - [-119.744797, 74.025513] - ] - ], - [ - [ - [-116.144997, 77.023323], - [-115.7314, 76.949707], - [-115.903297, 76.893883], - [-116.365303, 76.926376], - [-116.183601, 76.845833], - [-116.000298, 76.811371], - [-115.996696, 76.770828], - [-115.896698, 76.69165], - [-116.011101, 76.676376], - [-116.093102, 76.619141], - [-116.322502, 76.5811], - [-117.040001, 76.537491], - [-117.076401, 76.508881], - [-116.983597, 76.454987], - [-117.002502, 76.431931], - [-116.940804, 76.386932], - [-116.938599, 76.346367], - [-117.319702, 76.257767], - [-117.603104, 76.27388], - [-117.657799, 76.29332], - [-117.655296, 76.31749], - [-117.813599, 76.318329], - [-118.059998, 76.409149], - [-118.0289, 76.424149], - [-118.044998, 76.447197], - [-117.990799, 76.462486], - [-118.020599, 76.492752], - [-117.904198, 76.52832], - [-117.953903, 76.562759], - [-117.908096, 76.578598], - [-117.973297, 76.596367], - [-117.900002, 76.636658], - [-117.919197, 76.688026], - [-117.734398, 76.77832], - [-117.798897, 76.817757], - [-117.8881, 76.818878], - [-118.029701, 76.758614], - [-118.337502, 76.768333], - [-118.300301, 76.73526], - [-118.312202, 76.705261], - [-118.495003, 76.712196], - [-118.458603, 76.6922], - [-118.474701, 76.679703], - [-118.3414, 76.6436], - [-118.304199, 76.552467], - [-118.4347, 76.548866], - [-118.570801, 76.499153], - [-118.841698, 76.554977], - [-118.773598, 76.527206], - [-118.9758, 76.498871], - [-118.681999, 76.445251], - [-118.567497, 76.336647], - [-118.655602, 76.284149], - [-118.9114, 76.265549], - [-118.9422, 76.210541], - [-118.887497, 76.173866], - [-118.964203, 76.160812], - [-118.964996, 76.126648], - [-119.071404, 76.117477], - [-119.075798, 76.083328], - [-119.282501, 76.127472], - [-119.301697, 76.19136], - [-119.4561, 76.255547], - [-119.499397, 76.361099], - [-119.562798, 76.320831], - [-119.713898, 76.331673], - [-119.652802, 76.29776], - [-119.658302, 76.268883], - [-119.705002, 76.262207], - [-119.565804, 76.175262], - [-119.701103, 76.150818], - [-119.552803, 76.117752], - [-119.805, 76.108871], - [-119.491402, 76.035538], - [-119.481102, 75.970833], - [-119.636902, 75.992203], - [-119.7033, 75.942749], - [-119.606903, 75.911102], - [-119.710602, 75.921654], - [-119.870003, 75.857483], - [-120.069504, 75.838882], - [-120.1492, 75.896378], - [-120.288902, 75.816093], - [-120.454498, 75.815811], - [-120.4897, 75.849991], - [-120.463097, 75.916382], - [-120.384499, 75.967758], - [-120.445297, 75.976646], - [-120.4589, 76.011658], - [-120.578102, 76.002777], - [-120.563301, 75.985527], - [-120.593903, 75.978043], - [-120.696701, 76.013893], - [-120.731102, 76.057747], - [-120.648598, 76.099716], - [-120.751099, 76.10582], - [-120.659203, 76.142487], - [-120.883598, 76.198318], - [-121.012497, 76.13916], - [-120.995003, 76.103592], - [-121.022797, 76.059143], - [-120.931999, 75.959991], - [-120.980797, 75.94165], - [-121.017197, 75.948029], - [-120.999199, 75.994431], - [-121.113899, 75.991653], - [-121.259499, 75.964432], - [-121.294998, 75.907494], - [-121.423302, 75.933868], - [-121.4953, 75.984421], - [-121.864998, 76.042213], - [-122.134201, 76.036377], - [-122.132797, 75.974152], - [-122.1978, 75.977478], - [-122.416397, 75.928589], - [-122.696404, 75.955551], - [-122.728897, 75.973038], - [-122.560501, 76.020538], - [-122.698898, 76.018333], - [-122.5439, 76.046944], - [-122.4711, 76.11026], - [-122.699997, 76.112198], - [-122.489998, 76.141098], - [-122.6203, 76.174423], - [-122.842201, 76.148613], - [-122.901901, 76.098038], - [-123.037804, 76.084717], - [-122.905602, 76.155258], - [-122.9422, 76.182213], - [-122.848602, 76.184708], - [-122.828903, 76.233871], - [-122.707497, 76.226089], - [-122.636101, 76.264709], - [-122.617798, 76.342209], - [-121.983902, 76.444138], - [-121.781998, 76.420258], - [-121.533096, 76.437187], - [-121.413902, 76.500549], - [-121.411903, 76.553864], - [-121.216904, 76.618591], - [-121.1903, 76.680542], - [-120.900299, 76.693314], - [-120.812202, 76.737198], - [-120.5811, 76.74942], - [-120.401703, 76.797211], - [-120.365303, 76.836113], - [-120.418098, 76.875259], - [-120.176697, 76.919708], - [-120.188599, 76.942749], - [-120.091103, 76.963608], - [-120.0914, 77.003052], - [-119.949997, 77.012497], - [-119.8125, 77.096649], - [-119.389198, 77.184418], - [-119.295799, 77.276657], - [-119.153297, 77.325821], - [-117.867203, 77.388603], - [-117.934998, 77.358597], - [-117.801903, 77.367203], - [-117.253601, 77.285538], - [-117.023102, 77.290817], - [-117.060799, 77.32666], - [-117.181999, 77.340271], - [-117.158897, 77.358871], - [-116.795799, 77.31749], - [-116.810799, 77.340553], - [-116.651703, 77.388046], - [-116.994698, 77.39444], - [-117.150002, 77.457207], - [-116.785301, 77.499153], - [-116.769402, 77.516388], - [-116.900299, 77.532211], - [-116.416901, 77.556931], - [-116.090599, 77.491089], - [-116.065804, 77.47998], - [-116.108299, 77.461113], - [-115.753304, 77.419708], - [-115.389198, 77.312187], - [-115.8778, 77.215271], - [-116.269203, 77.190262], - [-116.290604, 77.14888], - [-116.400002, 77.133881], - [-116.295303, 77.113602], - [-116.269203, 77.055817], - [-116.144997, 77.023323] - ] - ], - [ - [ - [-135.850098, 69.007401], - [-135.648895, 68.991928], - [-135.517807, 69.02388], - [-135.690598, 69.012497], - [-135.758606, 69.060257], - [-135.934692, 69.095543], - [-135.967194, 69.214706], - [-135.914993, 69.257492], - [-135.656693, 69.1436], - [-135.411407, 69.097488], - [-135.6306, 69.151382], - [-135.810806, 69.242752], - [-135.855804, 69.284714], - [-135.803894, 69.316673], - [-135.6595, 69.316673], - [-135.585297, 69.223312], - [-135.548904, 69.23526], - [-135.610504, 69.319717], - [-135.571899, 69.338593], - [-135.170593, 69.257767], - [-135.158401, 69.274429], - [-135.240799, 69.308319], - [-135.287201, 69.419144], - [-135.150803, 69.476929], - [-135.107803, 69.457764], - [-134.790604, 69.498322], - [-134.468597, 69.444427], - [-134.407806, 69.474152], - [-134.417801, 69.500549], - [-134.507004, 69.515549], - [-134.548599, 69.472763], - [-134.596405, 69.514427], - [-134.576401, 69.54776], - [-134.468903, 69.542763], - [-134.492798, 69.560532], - [-134.401703, 69.638321], - [-134.491104, 69.722214], - [-134.312195, 69.7211], - [-134.351395, 69.668869], - [-134.203903, 69.668869], - [-134.147003, 69.6297], - [-134.242203, 69.568047], - [-134.191101, 69.59082], - [-134.127106, 69.542862], - [-134.020004, 69.559418], - [-134.001404, 69.546371], - [-134.048096, 69.526932], - [-133.918304, 69.508331], - [-133.805603, 69.539429], - [-133.827194, 69.559982], - [-133.778397, 69.576393], - [-133.748306, 69.542213], - [-133.789703, 69.531097], - [-133.778107, 69.487762], - [-134.029694, 69.382477], - [-134.097504, 69.328598], - [-134.099197, 69.293869], - [-134.211105, 69.276093], - [-134.275604, 69.226089], - [-134.280304, 69.180267], - [-134.383606, 69.118317], - [-134.5681, 69.106644], - [-134.675797, 69.011383], - [-134.666702, 68.9561], - [-134.488602, 68.870247], - [-134.417206, 68.784416], - [-134.287506, 68.750816], - [-134.227295, 68.696426], - [-134.457504, 68.719147], - [-134.467804, 68.762497], - [-134.559402, 68.798866], - [-134.606903, 68.862762], - [-134.834198, 68.987488], - [-134.914703, 68.96666], - [-134.920303, 68.914703], - [-134.961105, 68.892487], - [-135.141998, 68.901382], - [-135.201706, 68.932747], - [-135.421402, 68.928864], - [-135.4608, 68.942749], - [-135.455307, 68.977768], - [-135.534698, 68.944702], - [-135.522202, 68.908043], - [-135.807999, 68.895264], - [-136.005295, 68.951927], - [-135.9189, 68.958603], - [-135.987503, 69.011932], - [-135.968597, 69.044434], - [-135.850098, 69.007401] - ] - ], - [ - [ - [-117.623001, 76.114433], - [-117.471397, 76.088882], - [-117.489197, 76.046944], - [-117.681099, 75.921097], - [-117.838303, 75.859993], - [-117.823898, 75.83194], - [-117.952202, 75.771927], - [-117.927498, 75.734421], - [-118.263603, 75.616928], - [-118.203903, 75.598877], - [-118.604698, 75.496368], - [-118.927498, 75.529427], - [-118.873596, 75.547493], - [-118.928001, 75.562759], - [-119.196999, 75.562477], - [-119.408096, 75.60582], - [-118.619202, 75.915543], - [-118.367798, 75.966377], - [-118.152199, 75.971367], - [-118.071404, 76.034149], - [-117.933601, 76.047493], - [-117.7789, 76.108597], - [-117.623001, 76.114433] - ] - ], - [ - [ - [-114.193001, 77.698029], - [-114.634697, 77.757767], - [-114.521698, 77.771103], - [-115.116096, 77.958328], - [-114.952202, 77.949417], - [-114.6875, 78.024696], - [-114.286903, 78.066093], - [-114.350601, 78.032494], - [-114.270599, 78.012772], - [-114.311096, 78.004707], - [-114.089203, 77.986366], - [-113.958298, 77.914993], - [-113.706398, 77.891663], - [-113.677498, 77.846367], - [-113.576103, 77.814148], - [-113.7883, 77.745247], - [-114.193001, 77.698029] - ] - ], - [ - [ - [-114.054703, 76.703598], - [-114.875801, 76.770828], - [-114.6064, 76.865807], - [-113.807503, 76.889427], - [-113.498001, 76.833328], - [-113.453903, 76.772774], - [-113.652496, 76.704437], - [-114.054703, 76.703598] - ] - ], - [ - [ - [-120.867798, 75.913307], - [-120.898399, 75.825821], - [-121.032799, 75.737762], - [-121.2883, 75.752777], - [-121.029404, 75.811371], - [-120.998299, 75.867752], - [-121.047501, 75.899986], - [-120.997803, 75.926376], - [-120.8778, 75.936096], - [-120.867798, 75.913307] - ] - ], - [ - [ - [-112.237198, 70.362488], - [-111.6717, 70.306641], - [-112.090302, 70.295822], - [-112.317802, 70.345543], - [-112.237198, 70.362488] - ] - ], - [ - [ - [-109.882797, 68.114151], - [-109.932198, 68.079163], - [-110.258598, 68.041931], - [-109.9217, 68.134163], - [-109.882797, 68.114151] - ] - ], - [ - [ - [-128.120193, 70.597214], - [-128.144196, 70.568047], - [-128.2314, 70.598328], - [-128.242203, 70.570267], - [-128.341705, 70.542213], - [-128.234207, 70.656097], - [-128.094696, 70.620529], - [-128.120193, 70.597214] - ] - ], - [ - [ - [-117.183296, 70.537491], - [-117.301697, 70.56192], - [-117.199402, 70.59166], - [-116.879402, 70.547493], - [-117.183296, 70.537491] - ] - ], - [ - [ - [-135.297501, 69.304977], - [-135.565598, 69.390549], - [-135.337799, 69.388603], - [-135.339401, 69.351089], - [-135.272202, 69.358322], - [-135.297501, 69.304977] - ] - ], - [ - [ - [-122.633301, 75.919708], - [-122.324203, 75.899719], - [-122.340797, 75.862762], - [-122.398598, 75.859421], - [-122.691704, 75.900269], - [-122.633301, 75.919708] - ] - ], - [ - [ - [-124.307503, 73.632202], - [-124.113899, 73.564148], - [-124.343597, 73.559982], - [-124.358597, 73.630257], - [-124.307503, 73.632202] - ] - ], - [ - [ - [-113.778603, 77.104156], - [-113.931396, 77.1297], - [-113.699203, 77.144707], - [-113.6642, 77.123032], - [-113.778603, 77.104156] - ] - ] - ] - }, - "properties": { - "name": "Northwest Territories", - "ISOCODE": "CA-NT", - "cartodb_id": 13, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-64.482773, 47.91777], - [-64.514717, 47.8325], - [-64.605003, 47.748329], - [-64.646667, 47.72887], - [-64.690552, 47.753052], - [-64.646118, 47.788601], - [-64.702789, 47.823608], - [-64.667503, 47.86694], - [-64.609161, 47.88694], - [-64.533333, 47.864159], - [-64.482773, 47.91777] - ] - ], - [ - [ - [-69.039711, 47.29715], - [-68.576111, 47.424709], - [-68.38028, 47.558601], - [-68.378052, 47.65416], - [-68.372772, 47.924709], - [-68.12027, 47.926659], - [-68.116096, 48.001942], - [-67.612213, 47.99749], - [-67.604172, 47.9361], - [-67.364166, 47.841381], - [-67.322777, 47.896389], - [-67.188599, 47.883881], - [-67.047234, 47.93082], - [-66.946953, 47.899158], - [-66.943604, 47.963051], - [-66.843697, 47.996651], - [-66.75, 47.979988], - [-66.356659, 48.07333], - [-66.339172, 48.013611], - [-65.79361, 47.890831], - [-65.628601, 47.66972], - [-65.671387, 47.651661], - [-65.634743, 47.620831], - [-65.606659, 47.659988], - [-65.476387, 47.68082], - [-65.240829, 47.80666], - [-65.044724, 47.84444], - [-64.976936, 47.838039], - [-65.071953, 47.776939], - [-64.823624, 47.811378], - [-64.786118, 47.772221], - [-64.846947, 47.744438], - [-64.791382, 47.742222], - [-64.770279, 47.706661], - [-64.733322, 47.76194], - [-64.676666, 47.73555], - [-64.8125, 47.674999], - [-64.818619, 47.608051], - [-64.89389, 47.556938], - [-64.901108, 47.513329], - [-64.87027, 47.51083], - [-64.928329, 47.450829], - [-64.866943, 47.484718], - [-64.880829, 47.432499], - [-64.910004, 47.35305], - [-64.904167, 47.393051], - [-64.941101, 47.373878], - [-64.96611, 47.28944], - [-65.370003, 47.086651], - [-65.204727, 47.087769], - [-65.212509, 47.044998], - [-65.025284, 47.09193], - [-64.979446, 47.05555], - [-64.93277, 47.08416], - [-64.798607, 47.07999], - [-64.825844, 47.049999], - [-64.803329, 46.987499], - [-64.88028, 46.93055], - [-64.904999, 46.851101], - [-64.873047, 46.782211], - [-64.788597, 46.724159], - [-64.853333, 46.70499], - [-64.854446, 46.672218], - [-64.817497, 46.696381], - [-64.752792, 46.663601], - [-64.748611, 46.70277], - [-64.711121, 46.679989], - [-64.723618, 46.580551], - [-64.673317, 46.500832], - [-64.711403, 46.479988], - [-64.611938, 46.40971], - [-64.631943, 46.338039], - [-64.701683, 46.32666], - [-64.579178, 46.328049], - [-64.551666, 46.363331], - [-64.517227, 46.320831], - [-64.568619, 46.287498], - [-64.559433, 46.21999], - [-64.518341, 46.242771], - [-64.253891, 46.23444], - [-64.154167, 46.19305], - [-64.146118, 46.157211], - [-64.116943, 46.181938], - [-64.081947, 46.151379], - [-64.057503, 46.180271], - [-63.970829, 46.18055], - [-63.77639, 46.121101], - [-63.919449, 46.053051], - [-64.068069, 46.059429], - [-64.093887, 46.02166], - [-64.042793, 45.991901], - [-64.154999, 45.96888], - [-64.272926, 45.835751], - [-64.361389, 45.879162], - [-64.339722, 45.859718], - [-64.481949, 45.72332], - [-64.538887, 45.723049], - [-64.488052, 45.801102], - [-64.534157, 45.898048], - [-64.549728, 45.86805], - [-64.576401, 45.885551], - [-64.681381, 45.994709], - [-64.690552, 46.050831], - [-64.754463, 46.089161], - [-64.699432, 46.035], - [-64.70639, 45.994709], - [-64.573624, 45.863331], - [-64.672501, 45.750271], - [-64.642227, 45.717209], - [-64.693047, 45.716099], - [-64.778343, 45.60722], - [-64.904167, 45.627769], - [-65.015007, 45.548882], - [-65.326683, 45.4575], - [-65.739723, 45.24527], - [-65.799156, 45.25666], - [-65.918877, 45.2061], - [-65.999161, 45.2286], - [-66.039169, 45.28833], - [-66.126389, 45.304161], - [-66.015289, 45.377769], - [-66.002502, 45.461658], - [-66.088333, 45.35527], - [-66.193329, 45.333599], - [-66.145279, 45.27916], - [-66.05777, 45.2575], - [-66.21666, 45.159161], - [-66.245537, 45.208889], - [-66.321953, 45.19804], - [-66.253342, 45.191662], - [-66.25, 45.161381], - [-66.34584, 45.14444], - [-66.440552, 45.07333], - [-66.496384, 45.149719], - [-66.648064, 45.083599], - [-66.722229, 45.089161], - [-66.75473, 45.05555], - [-66.796951, 45.05888], - [-66.790558, 45.102779], - [-66.87999, 45.057209], - [-66.907784, 45.111382], - [-66.84584, 45.132488], - [-66.949432, 45.187489], - [-66.987213, 45.153881], - [-67.027222, 45.168049], - [-67.033333, 45.0886], - [-67.122223, 45.1586], - [-67.127213, 45.220268], - [-67.182503, 45.244709], - [-67.15123, 45.12191], - [-67.166473, 45.156189], - [-67.274658, 45.182709], - [-67.346169, 45.122181], - [-67.439987, 45.18951], - [-67.478508, 45.280209], - [-67.419113, 45.375778], - [-67.504662, 45.485748], - [-67.416641, 45.50349], - [-67.439857, 45.592491], - [-67.615692, 45.605129], - [-67.718582, 45.68124], - [-67.753502, 45.659229], - [-67.803978, 45.678051], - [-67.803596, 45.794449], - [-67.759911, 45.82774], - [-67.795113, 45.878422], - [-67.756157, 45.916519], - [-67.78083, 45.94701], - [-67.79155, 47.060959], - [-68.231323, 47.352112], - [-68.335327, 47.35733], - [-68.391769, 47.285061], - [-68.515182, 47.296921], - [-68.895393, 47.18222], - [-69.037231, 47.257332], - [-69.039711, 47.29715] - ] - ] - ] - }, - "properties": { - "name": "New Brunswick", - "ISOCODE": "CA-NB", - "cartodb_id": 7, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-60.910278, 45.546101], - [-61.000278, 45.45583], - [-61.021111, 45.46888], - [-60.99889, 45.49361], - [-61.072231, 45.502491], - [-61.108341, 45.540829], - [-61.01722, 45.575272], - [-60.90028, 45.57555], - [-60.878609, 45.55582], - [-60.910278, 45.546101] - ] - ], - [ - [ - [-66.764717, 44.801102], - [-66.734734, 44.72916], - [-66.761124, 44.676102], - [-66.900284, 44.613331], - [-66.858612, 44.74305], - [-66.764717, 44.801102] - ] - ], - [ - [ - [-60.59639, 46.196098], - [-60.46806, 46.316669], - [-60.416389, 46.328049], - [-60.419998, 46.279991], - [-60.64584, 46.106098], - [-60.870281, 46.051659], - [-60.84972, 46.07888], - [-60.880001, 46.079159], - [-60.97472, 45.988331], - [-61.11306, 45.955269], - [-61.125561, 45.923611], - [-60.993328, 45.94138], - [-60.875561, 46.036942], - [-60.734169, 46.047489], - [-60.80389, 45.9786], - [-60.807499, 45.93111], - [-61.066391, 45.893879], - [-61.043892, 45.88472], - [-61.08778, 45.847488], - [-60.96806, 45.883331], - [-60.917782, 45.847488], - [-60.97028, 45.856659], - [-60.940552, 45.821659], - [-61.01083, 45.820271], - [-61.118061, 45.763611], - [-61.142502, 45.696381], - [-61.070839, 45.689991], - [-60.91444, 45.753609], - [-60.797779, 45.707211], - [-60.844158, 45.64138], - [-60.76112, 45.69054], - [-60.733608, 45.67416], - [-60.74889, 45.74194], - [-60.719719, 45.78833], - [-60.39584, 45.996101], - [-60.686111, 45.88694], - [-60.785278, 45.946381], - [-60.305, 46.210548], - [-60.29528, 46.232208], - [-60.372768, 46.22332], - [-60.547501, 46.10416], - [-60.656109, 46.067768], - [-60.347778, 46.310551], - [-60.285278, 46.321381], - [-60.203331, 46.235271], - [-60.28944, 46.154709], - [-60.24028, 46.173611], - [-60.199169, 46.143608], - [-60.194439, 46.20277], - [-60.131939, 46.2486], - [-60.041672, 46.227772], - [-60.076389, 46.199162], - [-59.95055, 46.201389], - [-59.94138, 46.151661], - [-59.810551, 46.162769], - [-59.88805, 46.088879], - [-59.809719, 46.10638], - [-59.959999, 46.02055], - [-59.82362, 45.99749], - [-59.818611, 45.929161], - [-59.973331, 45.901379], - [-59.99416, 45.8661], - [-60.13028, 45.867771], - [-60.160549, 45.835548], - [-60.07362, 45.796391], - [-60.17445, 45.763889], - [-60.233891, 45.701099], - [-60.673061, 45.564159], - [-60.853889, 45.603882], - [-60.871498, 45.639721], - [-61.168331, 45.55138], - [-61.14584, 45.579441], - [-61.21722, 45.606941], - [-61.285, 45.5425], - [-61.45472, 45.705551], - [-61.547501, 46.025551], - [-61.482769, 46.066669], - [-61.438889, 46.159431], - [-61.283329, 46.23888], - [-61.089439, 46.45805], - [-61.033058, 46.561661], - [-61.058048, 46.5961], - [-61.034451, 46.628601], - [-61.013889, 46.59166], - [-60.892231, 46.77388], - [-60.704441, 46.89138], - [-60.640282, 47], - [-60.591942, 47.033329], - [-60.488609, 46.99416], - [-60.39806, 47.023319], - [-60.384998, 46.996101], - [-60.498051, 46.89666], - [-60.45084, 46.89777], - [-60.445271, 46.86166], - [-60.326111, 46.86832], - [-60.302219, 46.83749], - [-60.346951, 46.685551], - [-60.396111, 46.665821], - [-60.35445, 46.648609], - [-60.384731, 46.635551], - [-60.345001, 46.60638], - [-60.589439, 46.255001], - [-60.59639, 46.196098] - ] - ], - [ - [ - [-64.042793, 45.991901], - [-63.913059, 45.979988], - [-63.80389, 45.88583], - [-63.725769, 45.869961], - [-63.749168, 45.835819], - [-63.682499, 45.848598], - [-63.664162, 45.815269], - [-63.66222, 45.870541], - [-63.482498, 45.877209], - [-63.403881, 45.854439], - [-63.482769, 45.858051], - [-63.428612, 45.823608], - [-63.51556, 45.807209], - [-63.235001, 45.808601], - [-63.380001, 45.766109], - [-63.294449, 45.721931], - [-63.186939, 45.772221], - [-63.18972, 45.73444], - [-63.065552, 45.75555], - [-63.10778, 45.80888], - [-62.672779, 45.767769], - [-62.753891, 45.758049], - [-62.63612, 45.714439], - [-62.775002, 45.671101], - [-62.791111, 45.638329], - [-62.743061, 45.654991], - [-62.743889, 45.611111], - [-62.703892, 45.652489], - [-62.650829, 45.62804], - [-62.675282, 45.671379], - [-62.60944, 45.684158], - [-62.47361, 45.655548], - [-62.509731, 45.6161], - [-62.486389, 45.603611], - [-62.356949, 45.67194], - [-62.424721, 45.673321], - [-62.250278, 45.708328], - [-61.9175, 45.885551], - [-61.88139, 45.686649], - [-61.724998, 45.620831], - [-61.6325, 45.637772], - [-61.65556, 45.624161], - [-61.618061, 45.61055], - [-61.564999, 45.673882], - [-61.471378, 45.682499], - [-61.332779, 45.540829], - [-61.22916, 45.501942], - [-61.249729, 45.447491], - [-61.48167, 45.367771], - [-61.457218, 45.343609], - [-61.257778, 45.33416], - [-60.970551, 45.321659], - [-60.97028, 45.269711], - [-61.036388, 45.293049], - [-61.02306, 45.25639], - [-61.077782, 45.21944], - [-61.139721, 45.210819], - [-61.121941, 45.27166], - [-61.171391, 45.255268], - [-61.1675, 45.20388], - [-61.204441, 45.246101], - [-61.268059, 45.254711], - [-61.360001, 45.209991], - [-61.349442, 45.174438], - [-61.458611, 45.144711], - [-61.595829, 45.143051], - [-61.69611, 45.177769], - [-61.63805, 45.12027], - [-61.672501, 45.114159], - [-61.642231, 45.08416], - [-61.819729, 45.104439], - [-61.81361, 45.073879], - [-61.85944, 45.075001], - [-61.834999, 45.051102], - [-61.88306, 45.024441], - [-61.932499, 45.046391], - [-62.051109, 45.00639], - [-61.98138, 44.983051], - [-62.240002, 44.95805], - [-62.337219, 44.921101], - [-62.338612, 44.888599], - [-62.381111, 44.913601], - [-62.457218, 44.82972], - [-62.476391, 44.89555], - [-62.515011, 44.85194], - [-62.551392, 44.861382], - [-62.535561, 44.798611], - [-62.61195, 44.839161], - [-62.65361, 44.791382], - [-62.801109, 44.778599], - [-62.825562, 44.744438], - [-62.796108, 44.723881], - [-62.840279, 44.711109], - [-62.928612, 44.733879], - [-62.99778, 44.703609], - [-63.003059, 44.765831], - [-63.055561, 44.77277], - [-63.011951, 44.70805], - [-63.054722, 44.673321], - [-63.118889, 44.786659], - [-63.14278, 44.688599], - [-63.163891, 44.725552], - [-63.212219, 44.673611], - [-63.245831, 44.732491], - [-63.240002, 44.676941], - [-63.283058, 44.627209], - [-63.40361, 44.641659], - [-63.406391, 44.683331], - [-63.451389, 44.672218], - [-63.41222, 44.63221], - [-63.439991, 44.590832], - [-63.658329, 44.715], - [-63.64056, 44.67305], - [-63.562222, 44.63221], - [-63.520279, 44.507771], - [-63.570839, 44.461941], - [-63.59972, 44.483601], - [-63.631111, 44.435822], - [-63.633888, 44.473881], - [-63.713058, 44.454159], - [-63.763618, 44.49749], - [-63.79834, 44.46944], - [-63.783329, 44.527489], - [-63.8675, 44.489429], - [-63.932499, 44.513329], - [-63.937771, 44.621658], - [-63.887218, 44.69054], - [-64.059433, 44.638329], - [-64.063889, 44.590549], - [-64.009171, 44.513329], - [-64.046951, 44.518879], - [-64.083069, 44.46666], - [-64.121658, 44.485271], - [-64.121658, 44.544159], - [-64.170273, 44.586109], - [-64.224442, 44.533878], - [-64.301941, 44.561378], - [-64.324448, 44.47332], - [-64.297501, 44.463879], - [-64.355827, 44.44276], - [-64.330841, 44.408878], - [-64.256958, 44.408039], - [-64.305267, 44.376099], - [-64.211403, 44.361938], - [-64.346123, 44.35722], - [-64.335564, 44.32666], - [-64.260559, 44.324169], - [-64.289993, 44.301929], - [-64.239441, 44.294159], - [-64.258057, 44.269989], - [-64.319458, 44.264721], - [-64.430557, 44.338039], - [-64.358612, 44.28833], - [-64.363617, 44.25666], - [-64.428047, 44.228321], - [-64.494164, 44.14027], - [-64.604172, 44.156651], - [-64.616386, 44.133049], - [-64.543327, 44.11639], - [-64.556381, 44.077221], - [-64.715561, 44.052219], - [-64.663063, 44.02388], - [-64.666397, 43.990269], - [-64.845284, 43.92194], - [-64.785553, 43.867771], - [-64.820847, 43.864719], - [-64.835007, 43.825001], - [-64.907784, 43.87833], - [-64.880547, 43.833881], - [-64.906387, 43.800541], - [-64.96611, 43.872761], - [-64.928596, 43.802219], - [-64.965286, 43.751659], - [-65.040283, 43.82666], - [-65.008347, 43.746941], - [-65.025558, 43.70805], - [-65.074448, 43.698879], - [-65.083618, 43.752491], - [-65.122498, 43.69305], - [-65.12471, 43.670551], - [-65.152786, 43.68721], - [-65.138901, 43.74416], - [-65.180557, 43.706661], - [-65.237213, 43.798611], - [-65.256668, 43.770828], - [-65.223618, 43.7075], - [-65.285004, 43.66972], - [-65.32695, 43.697491], - [-65.332497, 43.7686], - [-65.337784, 43.73555], - [-65.368332, 43.734989], - [-65.325844, 43.674999], - [-65.360001, 43.60527], - [-65.338608, 43.549438], - [-65.450287, 43.59972], - [-65.404449, 43.502781], - [-65.449158, 43.559719], - [-65.486938, 43.5186], - [-65.481377, 43.464439], - [-65.568619, 43.570271], - [-65.657501, 43.490269], - [-65.72583, 43.502491], - [-65.739166, 43.573051], - [-65.755569, 43.54916], - [-65.783333, 43.57111], - [-65.775558, 43.68832], - [-65.793327, 43.61166], - [-65.818336, 43.630268], - [-65.860817, 43.80444], - [-65.87471, 43.763611], - [-65.93277, 43.827221], - [-65.962784, 43.774712], - [-65.982224, 43.843319], - [-66.004997, 43.840549], - [-65.965843, 43.73082], - [-66.020554, 43.691101], - [-66.033623, 43.740269], - [-66.062767, 43.716381], - [-66.080841, 43.768051], - [-66.123047, 43.740551], - [-66.136948, 43.799999], - [-66.108337, 43.841099], - [-66.147232, 43.824169], - [-66.16806, 43.863049], - [-66.149727, 44.011108], - [-66.21167, 44.095268], - [-66.134453, 44.22971], - [-66.118607, 44.338039], - [-65.841377, 44.574169], - [-65.943047, 44.57777], - [-66.190552, 44.383331], - [-66.191101, 44.423321], - [-66.103058, 44.5], - [-65.785004, 44.69054], - [-65.753067, 44.605831], - [-65.684998, 44.61694], - [-65.428329, 44.776661], - [-65.721657, 44.66777], - [-65.75473, 44.67749], - [-65.741096, 44.707211], - [-64.861938, 45.139721], - [-64.434433, 45.2575], - [-64.393066, 45.303322], - [-64.489166, 45.33527], - [-64.327499, 45.303322], - [-64.368881, 45.197491], - [-64.353882, 45.165272], - [-64.385834, 45.14555], - [-64.359734, 45.097488], - [-64.324387, 45.139339], - [-64.244164, 45.123878], - [-64.157227, 45.056938], - [-64.156387, 44.978321], - [-64.103882, 44.992222], - [-64.098892, 45.057499], - [-64.198608, 45.11721], - [-64.152786, 45.19276], - [-63.854721, 45.269161], - [-63.78973, 45.311661], - [-63.539169, 45.333328], - [-63.470829, 45.29055], - [-63.46666, 45.326389], - [-63.360828, 45.360821], - [-63.755562, 45.398048], - [-63.883888, 45.350552], - [-63.923611, 45.388329], - [-64.069733, 45.410271], - [-64.385559, 45.3661], - [-64.563316, 45.411659], - [-64.701401, 45.368599], - [-64.698608, 45.326099], - [-64.76001, 45.28944], - [-64.763062, 45.326099], - [-64.815826, 45.348598], - [-64.93721, 45.326939], - [-64.909157, 45.418049], - [-64.458054, 45.674438], - [-64.436661, 45.73999], - [-64.375549, 45.7925], - [-64.296661, 45.8186], - [-64.335564, 45.740829], - [-64.266663, 45.761108], - [-64.30249, 45.772491], - [-64.272926, 45.835751], - [-64.154999, 45.96888], - [-64.042793, 45.991901] - ] - ] - ] - }, - "properties": { - "name": "Nova Scotia", - "ISOCODE": "CA-NS", - "cartodb_id": 2, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-102.001701, 59.99992], - [-102.0009, 59.918839], - [-102.001503, 58.12854], - [-102.001297, 58.034302], - [-102.001297, 57.868439], - [-102.0009, 57.49725], - [-102.001297, 57.25964], - [-102.001099, 57.013351], - [-102.000999, 56.366421], - [-102.001404, 56.221241], - [-102.0009, 55.830151], - [-101.967598, 55.76067], - [-101.967201, 55.67194], - [-101.967201, 55.467468], - [-101.925797, 55.466381], - [-101.925598, 55.117489], - [-101.883598, 55.116661], - [-101.883904, 54.76749], - [-101.851402, 54.766392], - [-101.851799, 54.53513], - [-101.851898, 54.41721], - [-101.811401, 54.41666], - [-101.810799, 54.066101], - [-101.7714, 54.06638], - [-101.772102, 54.00256], - [-101.742798, 53.369438], - [-101.700798, 53.368881], - [-101.672203, 52.67083], - [-101.639999, 52.671101], - [-101.639503, 52.32222], - [-101.612503, 52.32222], - [-101.613297, 51.96999], - [-101.567001, 51.970829], - [-101.544998, 50.950001], - [-101.514702, 50.949429], - [-101.514999, 50.595539], - [-101.484703, 50.589989], - [-101.483597, 50.24192], - [-101.4533, 50.241661], - [-101.453598, 49.888599], - [-101.426102, 49.888599], - [-101.425598, 49.5341], - [-101.400299, 49.533051], - [-101.400299, 49.177761], - [-101.3675, 49.17749], - [-101.367203, 49], - [-101.5, 49], - [-102.021797, 49], - [-102.9375, 49], - [-104.0625, 49], - [-105.0625, 49], - [-106.125, 49], - [-107.1875, 49], - [-108.25, 49], - [-109.5, 49], - [-110.001404, 49], - [-110.000504, 54.00573], - [-110.000702, 54.44952], - [-110.000603, 54.624401], - [-110.000801, 54.769001], - [-110.000603, 56.276039], - [-110.0009, 56.36282], - [-110.000801, 58.968639], - [-110.000504, 59.309391], - [-110.0009, 59.995281], - [-107.113602, 59.994709], - [-106.255997, 59.999771], - [-106.044403, 59.999592], - [-105.859001, 59.99968], - [-105.5411, 60], - [-104.7099, 59.999771], - [-104.270699, 59.9995], - [-102.001701, 59.99992] - ] - ] - ] - }, - "properties": { - "name": "Saskatchewan", - "ISOCODE": "CA-SK", - "cartodb_id": 3, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-114.060303, 49], - [-114.035301, 49.031109], - [-114.1567, 49.103611], - [-114.154198, 49.148048], - [-114.225304, 49.188599], - [-114.372803, 49.204159], - [-114.376701, 49.25639], - [-114.429398, 49.265549], - [-114.476097, 49.341381], - [-114.576401, 49.389992], - [-114.599998, 49.442211], - [-114.576401, 49.556099], - [-114.6894, 49.547218], - [-114.738297, 49.608601], - [-114.679703, 49.63221], - [-114.636101, 49.727772], - [-114.626099, 49.797218], - [-114.6875, 49.913601], - [-114.684998, 49.9575], - [-114.643303, 49.977772], - [-114.658897, 50.065269], - [-114.724197, 50.125549], - [-114.754997, 50.288891], - [-114.793602, 50.334721], - [-114.770302, 50.35833], - [-114.8367, 50.39666], - [-115.016998, 50.575001], - [-115.1017, 50.588329], - [-115.218903, 50.54694], - [-115.320602, 50.638599], - [-115.283096, 50.658878], - [-115.311699, 50.706661], - [-115.346703, 50.732208], - [-115.395798, 50.71693], - [-115.419197, 50.754169], - [-115.527802, 50.791939], - [-115.647202, 50.85471], - [-115.571999, 50.90332], - [-115.618599, 50.969151], - [-115.759697, 51.035831], - [-115.776703, 51.073608], - [-115.957802, 51.103882], - [-116.016098, 51.138329], - [-116.0261, 51.21693], - [-116.060501, 51.24638], - [-116.262199, 51.316669], - [-116.306099, 51.388329], - [-116.305, 51.461658], - [-116.3797, 51.488602], - [-116.399696, 51.54472], - [-116.466103, 51.56638], - [-116.488098, 51.613049], - [-116.595001, 51.65749], - [-116.597504, 51.716381], - [-116.658897, 51.796661], - [-116.746101, 51.79916], - [-116.815804, 51.750549], - [-116.812798, 51.715271], - [-116.919197, 51.70916], - [-117.0392, 51.908039], - [-117.269997, 52.044998], - [-117.318901, 52.181938], - [-117.363098, 52.138599], - [-117.600304, 52.13055], - [-117.6875, 52.196098], - [-117.760002, 52.200829], - [-117.829697, 52.27277], - [-117.7314, 52.344151], - [-117.7547, 52.403599], - [-117.902802, 52.424999], - [-118.0056, 52.48777], - [-118.047501, 52.404991], - [-118.145798, 52.39888], - [-118.223099, 52.365551], - [-118.259697, 52.442211], - [-118.208298, 52.48082], - [-118.286903, 52.527771], - [-118.2817, 52.565269], - [-118.349998, 52.61805], - [-118.305, 52.674709], - [-118.3461, 52.74332], - [-118.428902, 52.78611], - [-118.415604, 52.83638], - [-118.491402, 52.89777], - [-118.625, 52.884159], - [-118.679703, 52.970539], - [-118.669998, 53.034439], - [-118.781097, 53.05582], - [-118.759697, 53.12471], - [-118.9786, 53.237209], - [-119.012199, 53.223049], - [-119.013603, 53.144711], - [-119.045502, 53.137772], - [-119.265602, 53.196659], - [-119.348099, 53.275269], - [-119.385803, 53.36166], - [-119.606102, 53.37804], - [-119.738098, 53.395], - [-119.778099, 53.446941], - [-119.842499, 53.518051], - [-119.902496, 53.520271], - [-119.882797, 53.560268], - [-119.932198, 53.60722], - [-119.7686, 53.603321], - [-119.735298, 53.634991], - [-119.810303, 53.707771], - [-119.921097, 53.718319], - [-119.904701, 53.778599], - [-120.000801, 53.808041], - [-120.000801, 54.005871], - [-119.982903, 59.988522], - [-110.0009, 59.995281], - [-110.000504, 59.309391], - [-110.000801, 58.968639], - [-110.0009, 56.36282], - [-110.000603, 56.276039], - [-110.000801, 54.769001], - [-110.000603, 54.624401], - [-110.000702, 54.44952], - [-110.000504, 54.00573], - [-110.001404, 49], - [-110.75, 49], - [-111.281898, 49], - [-112.1875, 49], - [-114.060303, 49] - ] - ] - ] - }, - "properties": { - "name": "Alberta", - "ISOCODE": "CA-AB", - "cartodb_id": 4, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-63.98917, 46.393608], - [-64.13501, 46.416382], - [-64.105827, 46.445541], - [-64.113327, 46.534721], - [-64.058037, 46.569439], - [-64.071404, 46.63583], - [-64.133331, 46.591381], - [-64.223618, 46.629711], - [-64.387512, 46.620831], - [-64.416656, 46.68111], - [-64.226936, 46.906101], - [-63.99889, 47.061661], - [-63.967499, 46.891659], - [-64.091667, 46.778599], - [-64.067497, 46.749161], - [-63.97472, 46.742489], - [-63.980831, 46.714161], - [-63.882221, 46.64555], - [-63.904171, 46.603882], - [-63.8325, 46.61721], - [-63.833328, 46.577492], - [-63.9375, 46.47665], - [-63.831669, 46.516392], - [-63.811668, 46.49527], - [-63.840839, 46.464439], - [-63.709438, 46.437489], - [-63.700279, 46.466381], - [-63.740002, 46.496101], - [-63.70055, 46.515549], - [-63.723331, 46.54361], - [-63.647221, 46.567211], - [-63.490841, 46.524712], - [-63.496948, 46.488331], - [-63.45472, 46.461658], - [-63.422501, 46.495831], - [-63.4575, 46.509991], - [-63.320278, 46.492771], - [-63.238892, 46.399719], - [-63.210831, 46.429161], - [-62.587502, 46.42527], - [-62.692501, 46.4561], - [-62.477219, 46.477772], - [-62.166389, 46.486111], - [-61.970551, 46.45694], - [-62.173328, 46.34943], - [-62.285839, 46.377491], - [-62.272221, 46.338329], - [-62.35778, 46.355831], - [-62.334721, 46.311939], - [-62.400551, 46.306938], - [-62.35973, 46.282768], - [-62.37389, 46.262211], - [-62.494999, 46.271381], - [-62.437222, 46.251659], - [-62.424721, 46.215549], - [-62.58527, 46.232208], - [-62.498051, 46.182499], - [-62.589439, 46.206379], - [-62.56834, 46.186649], - [-62.603889, 46.177219], - [-62.534168, 46.16777], - [-62.542229, 46.12249], - [-62.478329, 46.120831], - [-62.513889, 46.14222], - [-62.473049, 46.150269], - [-62.446949, 46.090549], - [-62.573891, 46.034721], - [-62.459171, 46.00639], - [-62.74667, 45.94833], - [-62.882771, 45.995541], - [-62.935001, 46.045551], - [-62.896111, 46.064991], - [-63.03083, 46.060822], - [-62.922501, 46.092491], - [-62.868061, 46.13472], - [-62.885281, 46.155819], - [-62.959171, 46.128601], - [-62.94416, 46.189991], - [-62.985001, 46.19582], - [-62.983891, 46.173882], - [-63.122219, 46.211658], - [-62.96278, 46.319988], - [-63.122768, 46.237209], - [-63.195, 46.269989], - [-63.172501, 46.224159], - [-63.27306, 46.195271], - [-63.219158, 46.181938], - [-63.173061, 46.211109], - [-63.14056, 46.186378], - [-63.261669, 46.13805], - [-63.48138, 46.21777], - [-63.591942, 46.211941], - [-63.698608, 46.249161], - [-63.812771, 46.332211], - [-63.785561, 46.339989], - [-63.800831, 46.372761], - [-63.714722, 46.35416], - [-63.76556, 46.380268], - [-63.744999, 46.394711], - [-63.889999, 46.397491], - [-63.929729, 46.424999], - [-63.98917, 46.393608] - ] - ] - ] - }, - "properties": { - "name": "Prince Edward Island", - "ISOCODE": "CA-PE", - "cartodb_id": 8, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-139.121094, 69.52916], - [-139.252197, 69.579712], - [-139.332504, 69.566093], - [-139.133102, 69.647774], - [-138.867203, 69.588318], - [-139.023102, 69.580833], - [-139.121094, 69.52916] - ] - ], - [ - [ - [-123.816902, 59.994709], - [-125.000801, 60.003868], - [-133.791199, 60], - [-134.151703, 59.999722], - [-134.639297, 60.000198], - [-134.906601, 60], - [-138.938599, 59.997551], - [-139.188904, 60.088879], - [-139.0681, 60.352219], - [-139.676697, 60.340549], - [-139.979401, 60.187771], - [-140.450806, 60.309719], - [-140.521393, 60.22221], - [-140.995499, 60.307209], - [-140.996857, 61.894802], - [-141.000046, 65.840279], - [-141.00206, 68.428207], - [-141.003006, 69.642357], - [-140.396103, 69.5961], - [-139.888306, 69.616653], - [-139.272797, 69.508614], - [-139.143097, 69.510818], - [-138.957504, 69.407494], - [-138.751404, 69.346367], - [-138.600601, 69.236649], - [-138.5186, 69.25444], - [-138.449997, 69.229156], - [-138.395599, 69.293053], - [-138.446106, 69.288589], - [-138.378296, 69.304703], - [-138.329407, 69.234711], - [-138.1772, 69.159988], - [-137.378296, 69.001389], - [-137.419205, 68.988876], - [-137.255005, 68.948318], - [-137.0103, 68.947479], - [-136.745499, 68.875259], - [-136.419998, 68.90052], - [-136.446106, 68.873032], - [-136.445007, 67.715553], - [-136.421097, 67.655258], - [-136.241104, 67.620529], - [-136.157806, 67.507767], - [-136.205307, 67.406937], - [-136.116394, 67.382751], - [-136.142807, 67.359421], - [-136.0914, 67.302467], - [-136.134506, 67.226379], - [-136.236404, 67.173866], - [-136.198898, 67.143333], - [-136.222198, 67.064148], - [-136.164505, 67.003601], - [-133.8311, 67.003326], - [-134.046097, 66.984421], - [-134.092499, 66.955261], - [-133.908096, 66.908867], - [-133.763901, 66.806931], - [-133.840302, 66.727768], - [-133.757202, 66.685257], - [-133.771896, 66.64415], - [-133.5867, 66.564697], - [-133.690308, 66.531937], - [-133.629395, 66.445251], - [-133.750305, 66.447746], - [-133.768097, 66.373032], - [-133.824707, 66.316673], - [-133.570007, 66.27832], - [-133.563904, 66.155823], - [-133.673096, 66.116928], - [-133.704697, 66.07193], - [-133.603302, 66.051651], - [-133.629395, 65.974426], - [-133.407501, 65.943863], - [-133.147507, 66.024696], - [-132.939697, 66.02887], - [-132.908401, 65.996933], - [-132.993896, 65.923027], - [-132.869003, 65.910477], - [-132.605804, 66.031662], - [-132.542496, 66.021378], - [-132.5103, 65.978867], - [-132.342804, 65.981934], - [-132.334396, 65.94664], - [-132.525803, 65.897774], - [-132.573303, 65.848602], - [-132.286102, 65.71582], - [-132.174194, 65.59137], - [-132.273605, 65.546944], - [-132.327805, 65.434708], - [-132.521393, 65.363037], - [-132.555298, 65.2836], - [-132.780594, 65.229713], - [-132.714203, 65.199417], - [-132.787796, 65.187759], - [-132.701904, 65.15387], - [-132.576401, 65.190536], - [-132.527496, 65.162773], - [-132.556107, 65.118042], - [-132.539993, 65.093872], - [-132.381699, 65.084991], - [-132.333298, 65.034714], - [-132.507507, 64.964432], - [-132.487503, 64.870819], - [-132.622498, 64.826927], - [-132.570602, 64.772491], - [-132.368896, 64.77832], - [-132.163605, 64.70166], - [-132.046402, 64.695534], - [-131.915802, 64.582489], - [-131.702805, 64.535538], - [-131.687805, 64.498596], - [-131.803894, 64.438026], - [-131.8181, 64.378311], - [-131.593002, 64.368591], - [-131.427505, 64.416382], - [-131.388596, 64.467209], - [-131.141693, 64.424423], - [-131.001999, 64.330276], - [-131.060501, 64.279427], - [-130.979706, 64.265549], - [-130.937195, 64.209991], - [-130.867203, 64.187759], - [-130.9478, 64.137207], - [-130.853607, 64.072487], - [-130.863907, 64.043053], - [-130.751404, 64.046097], - [-130.778595, 64.009163], - [-130.7556, 63.986938], - [-130.5811, 63.92416], - [-130.522202, 63.93499], - [-130.3703, 63.84388], - [-130.119705, 63.808041], - [-130.103897, 63.76416], - [-130.282501, 63.73777], - [-130.321106, 63.69582], - [-130.251999, 63.66666], - [-130.109695, 63.703609], - [-130.082504, 63.68832], - [-130.110794, 63.66444], - [-130.093002, 63.63055], - [-129.948593, 63.613609], - [-129.957993, 63.58527], - [-129.898102, 63.57222], - [-129.819504, 63.48333], - [-129.897202, 63.452221], - [-129.919205, 63.372761], - [-130.073593, 63.33696], - [-130.138306, 63.310268], - [-130.151093, 63.265831], - [-130.044495, 63.269989], - [-129.978607, 63.203609], - [-129.900299, 63.197208], - [-129.835297, 63.114719], - [-129.847198, 63.086941], - [-129.637207, 63.08028], - [-129.598907, 63.051929], - [-129.705795, 62.952221], - [-129.726105, 62.91415], - [-129.702499, 62.89222], - [-129.773895, 62.874439], - [-129.630798, 62.76083], - [-129.625305, 62.70499], - [-129.516998, 62.672489], - [-129.523895, 62.64333], - [-129.487793, 62.618881], - [-129.567795, 62.57444], - [-129.417801, 62.584991], - [-129.172195, 62.481659], - [-129.308304, 62.421379], - [-129.215805, 62.377491], - [-129.310501, 62.326389], - [-129.282196, 62.267208], - [-129.199203, 62.21693], - [-129.2939, 62.156101], - [-129.122803, 62.116661], - [-128.984207, 62.136108], - [-128.765305, 62.058331], - [-128.677505, 62.125271], - [-128.546997, 62.122219], - [-128.375305, 62.02721], - [-128.388107, 61.993881], - [-128.279205, 61.948879], - [-128.196701, 61.844151], - [-128.080597, 61.849159], - [-128.006104, 61.732491], - [-127.972801, 61.688599], - [-127.550301, 61.511379], - [-127.2883, 61.519161], - [-127.141701, 61.46666], - [-127.125, 61.4011], - [-127.059402, 61.363049], - [-127.007004, 61.18499], - [-127.031403, 61.150539], - [-127.0131, 61.12804], - [-127.101898, 61.070831], - [-127.055801, 61.039989], - [-126.935303, 61.059158], - [-126.9394, 61.002491], - [-126.898903, 60.941662], - [-126.925301, 60.862209], - [-126.8797, 60.82999], - [-126.886902, 60.78249], - [-126.826103, 60.755001], - [-126.753304, 60.782211], - [-126.672203, 60.743469], - [-126.520302, 60.814411], - [-126.394501, 60.77668], - [-126.253601, 60.78867], - [-126.217499, 60.819771], - [-126.244698, 60.850868], - [-126.202202, 60.863651], - [-126.113602, 60.862808], - [-126.107201, 60.817009], - [-126.009201, 60.80341], - [-125.957001, 60.877239], - [-125.887199, 60.896938], - [-125.711998, 60.827259], - [-125.370003, 60.782558], - [-125.184196, 60.848881], - [-125, 60.860519], - [-124.871696, 60.858051], - [-124.8778, 60.91721], - [-124.813004, 60.972488], - [-124.578903, 60.953049], - [-124.476898, 60.79055], - [-124.619202, 60.709721], - [-124.614197, 60.668598], - [-124.459396, 60.569721], - [-124.418297, 60.47916], - [-124.206398, 60.457211], - [-124.195297, 60.32888], - [-123.974197, 60.098049], - [-124.029198, 60.023048], - [-123.8769, 60.04166], - [-123.816902, 59.994709] - ] - ] - ] - }, - "properties": { - "name": "Yukon Territory", - "ISOCODE": "CA-YT", - "cartodb_id": 9, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-102.001701, 59.99992], - [-100.039001, 59.999722], - [-99.626953, 59.999729], - [-94.800491, 59.999569], - [-94.82251, 59.954159], - [-94.768341, 59.78249], - [-94.819168, 59.636379], - [-94.761673, 59.570271], - [-94.793877, 59.541939], - [-94.727783, 59.446659], - [-94.710831, 59.37138], - [-94.736656, 59.34222], - [-94.658623, 59.350552], - [-94.775009, 59.293331], - [-94.794724, 59.087212], - [-94.934433, 59.084991], - [-94.996109, 59.053879], - [-94.804443, 59.061378], - [-94.804718, 59.014721], - [-94.679993, 58.971371], - [-94.74527, 58.83305], - [-94.675827, 58.87804], - [-94.586403, 58.874989], - [-94.482224, 58.8111], - [-94.421661, 58.716381], - [-94.32695, 58.721661], - [-94.276947, 58.780548], - [-94.203056, 58.804161], - [-94.239723, 58.738602], - [-94.202499, 58.67944], - [-94.271667, 58.633881], - [-94.306381, 58.563881], - [-94.287216, 58.438042], - [-94.328613, 58.39333], - [-94.363327, 58.21888], - [-94.228607, 58.396099], - [-94.246109, 58.586651], - [-94.140556, 58.73333], - [-94.177223, 58.771381], - [-93.501953, 58.771099], - [-93.46666, 58.719711], - [-93.400284, 58.700272], - [-93.319168, 58.75861], - [-93.152222, 58.73777], - [-93.118057, 58.508888], - [-92.931107, 58.211658], - [-92.852493, 58.16415], - [-92.868881, 58.143051], - [-92.803329, 58.057209], - [-92.749161, 57.860279], - [-92.781113, 57.834721], - [-92.728333, 57.820549], - [-92.600281, 57.648609], - [-92.554169, 57.539719], - [-92.450844, 57.44249], - [-92.418877, 57.33749], - [-92.441101, 57.230549], - [-92.576401, 57.056938], - [-92.715843, 56.947491], - [-92.876099, 56.90749], - [-92.691101, 56.933601], - [-92.443047, 57.04472], - [-92.212219, 57.058041], - [-92.4664, 56.932499], - [-92.180283, 57.030819], - [-91.001678, 57.261379], - [-90.451111, 57.193878], - [-90, 57.01683], - [-89.179642, 56.86895], - [-89.305557, 56.627209], - [-90.843887, 55.66777], - [-92.388641, 54.62793], - [-92.476593, 54.56694], - [-92.60231, 54.478489], - [-92.698143, 54.410931], - [-93.272087, 53.998859], - [-93.652222, 53.72221], - [-95.150284, 52.826389], - [-95.154327, 49.576729], - [-95.153877, 49.452019], - [-95.151627, 49.371731], - [-95.157516, 49], - [-95.276421, 49], - [-96.406616, 49], - [-97.229103, 49], - [-97.9375, 49], - [-99, 49], - [-99.53315, 49], - [-100.1875, 49], - [-101.367203, 49], - [-101.3675, 49.17749], - [-101.400299, 49.177761], - [-101.400299, 49.533051], - [-101.425598, 49.5341], - [-101.426102, 49.888599], - [-101.453598, 49.888599], - [-101.4533, 50.241661], - [-101.483597, 50.24192], - [-101.484703, 50.589989], - [-101.514999, 50.595539], - [-101.514702, 50.949429], - [-101.544998, 50.950001], - [-101.567001, 51.970829], - [-101.613297, 51.96999], - [-101.612503, 52.32222], - [-101.639503, 52.32222], - [-101.639999, 52.671101], - [-101.672203, 52.67083], - [-101.700798, 53.368881], - [-101.742798, 53.369438], - [-101.772102, 54.00256], - [-101.7714, 54.06638], - [-101.810799, 54.066101], - [-101.811401, 54.41666], - [-101.851898, 54.41721], - [-101.851799, 54.53513], - [-101.851402, 54.766392], - [-101.883904, 54.76749], - [-101.883598, 55.116661], - [-101.925598, 55.117489], - [-101.925797, 55.466381], - [-101.967201, 55.467468], - [-101.967201, 55.67194], - [-101.967598, 55.76067], - [-102.0009, 55.830151], - [-102.001404, 56.221241], - [-102.000999, 56.366421], - [-102.001099, 57.013351], - [-102.001297, 57.25964], - [-102.0009, 57.49725], - [-102.001297, 57.868439], - [-102.001297, 58.034302], - [-102.001503, 58.12854], - [-102.0009, 59.918839], - [-102.001701, 59.99992] - ] - ] - ] - }, - "properties": { - "name": "Manitoba", - "ISOCODE": "CA-MB", - "cartodb_id": 10, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-79.547096, 51.460129], - [-79.539436, 51.191662], - [-79.537804, 50.982368], - [-79.624969, 51.0355], - [-79.678047, 51.05471], - [-79.752228, 51.184429], - [-79.680557, 51.29805], - [-79.698036, 51.401379], - [-79.547096, 51.460129] - ] - ], - [ - [ - [-79.537613, 50.958599], - [-79.520683, 48.764679], - [-79.519012, 48.605289], - [-79.511322, 47.565571], - [-79.576401, 47.441929], - [-79.439438, 47.26527], - [-79.443878, 47.11055], - [-79.305557, 46.94054], - [-79.155563, 46.812489], - [-78.950562, 46.511669], - [-78.75528, 46.400539], - [-78.703613, 46.337212], - [-77.680557, 46.183601], - [-77.554993, 46.151932], - [-77.321953, 46.026661], - [-77.278877, 45.937771], - [-77.206123, 45.877209], - [-77.002792, 45.790279], - [-76.920837, 45.806381], - [-76.910553, 45.889992], - [-76.804718, 45.864719], - [-76.783333, 45.76194], - [-76.710564, 45.712769], - [-76.666397, 45.590549], - [-76.607773, 45.55249], - [-76.337784, 45.45583], - [-76.184433, 45.521099], - [-76.076683, 45.513889], - [-75.847229, 45.37249], - [-75.453339, 45.523609], - [-74.875839, 45.64159], - [-74.646118, 45.635551], - [-74.396667, 45.564159], - [-74.479172, 45.316669], - [-74.324722, 45.201099], - [-74.433609, 45.149441], - [-74.506393, 45.071659], - [-74.736481, 44.99287], - [-74.968819, 44.948578], - [-75.329201, 44.81057], - [-75.758972, 44.517475], - [-75.759117, 44.517273], - [-75.778252, 44.519852], - [-75.976936, 44.38361], - [-76.503067, 44.227489], - [-76.688316, 44.21693], - [-76.984161, 44.071381], - [-77.070007, 44.09222], - [-76.886673, 44.17749], - [-77.046661, 44.129429], - [-77.011398, 44.211109], - [-77.55722, 44.12138], - [-77.575562, 44.07888], - [-77.314438, 44.15221], - [-77.31778, 44.08971], - [-77.076683, 44.17944], - [-77.127777, 44.033611], - [-77.015793, 44.047249], - [-76.941109, 44.071049], - [-76.846657, 44.11832], - [-77.042221, 43.94833], - [-76.848053, 43.943321], - [-77.134453, 43.855549], - [-77.232773, 43.87999], - [-77.170273, 43.954159], - [-77.275284, 43.910549], - [-77.327789, 43.953609], - [-77.25473, 43.96888], - [-77.48555, 43.942211], - [-77.580841, 44.002781], - [-77.538887, 44.01944], - [-77.703613, 44.041111], - [-77.736938, 44.023609], - [-77.678329, 44.000832], - [-77.804718, 44.016941], - [-79.092499, 43.826389], - [-79.362503, 43.64333], - [-79.467773, 43.646938], - [-79.587784, 43.564709], - [-79.775833, 43.319988], - [-79.703613, 43.244438], - [-79.345284, 43.188042], - [-79.073982, 43.267471], - [-79.065811, 43.101341], - [-79.078613, 43.081669], - [-79.031113, 43.05666], - [-79.040833, 43.007771], - [-78.92495, 42.91011], - [-79.098892, 42.840271], - [-79.454727, 42.877491], - [-80.204178, 42.790279], - [-80.450562, 42.612209], - [-80.114441, 42.541382], - [-80.521942, 42.573051], - [-80.925003, 42.665539], - [-81.333069, 42.651379], - [-81.785278, 42.39777], - [-81.856377, 42.25639], - [-81.894173, 42.257221], - [-81.857498, 42.320831], - [-81.921112, 42.260281], - [-82.071953, 42.253052], - [-82.388062, 42.1236], - [-82.479721, 42.03249], - [-82.505836, 41.913319], - [-82.627777, 42.035271], - [-82.890556, 41.982208], - [-83.123894, 42.069721], - [-83.030457, 42.313221], - [-82.493057, 42.312771], - [-82.427223, 42.353882], - [-82.418877, 42.498329], - [-82.595284, 42.509991], - [-82.638443, 42.54705], - [-82.586403, 42.558601], - [-82.518883, 42.633781], - [-82.473328, 42.762859], - [-82.472038, 42.898651], - [-82.419701, 42.972679], - [-82.175552, 43.071659], - [-81.745537, 43.345829], - [-81.697769, 43.48777], - [-81.745003, 44.083881], - [-81.615547, 44.219151], - [-81.580566, 44.346661], - [-81.405273, 44.437771], - [-81.268066, 44.616661], - [-81.349731, 44.973049], - [-81.433884, 44.982491], - [-81.591377, 45.15221], - [-81.576111, 45.19276], - [-81.720001, 45.215832], - [-81.695267, 45.264721], - [-81.283623, 45.249161], - [-81.325562, 45.15749], - [-81.265556, 45.10416], - [-81.253616, 45.001659], - [-81.110283, 44.96027], - [-81.150284, 44.911381], - [-80.948608, 44.963612], - [-81.132767, 44.758049], - [-80.997772, 44.809158], - [-80.892776, 44.791111], - [-80.942207, 44.595268], - [-80.805557, 44.702492], - [-80.649986, 44.726101], - [-80.584442, 44.612209], - [-80.089722, 44.468048], - [-79.997498, 44.556938], - [-79.987503, 44.68277], - [-80.113327, 44.752491], - [-80.103882, 44.819988], - [-79.945831, 44.865551], - [-79.877487, 44.76833], - [-79.659729, 44.751659], - [-79.721657, 44.78722], - [-79.68306, 44.879162], - [-79.736938, 44.865551], - [-79.737778, 44.8036], - [-79.783623, 44.817501], - [-79.828613, 44.9361], - [-79.914169, 44.94471], - [-79.934998, 45.013329], - [-80.099991, 45.123322], - [-79.988602, 45.148331], - [-80.12944, 45.237499], - [-80.037514, 45.314159], - [-80.059433, 45.382771], - [-80.127777, 45.411659], - [-80.19249, 45.375549], - [-80.164719, 45.33971], - [-80.233322, 45.341099], - [-80.335831, 45.435551], - [-80.349991, 45.382771], - [-80.400284, 45.606659], - [-80.501404, 45.569439], - [-80.748337, 45.921379], - [-81.043327, 45.9561], - [-81.155273, 45.925831], - [-81.168877, 46.017769], - [-81.250557, 45.9575], - [-81.497498, 45.974991], - [-81.497772, 46.020271], - [-81.670273, 45.946381], - [-81.576111, 45.996941], - [-81.64473, 46.014999], - [-81.503891, 46.04166], - [-81.703888, 46.0186], - [-81.543327, 46.05999], - [-81.621384, 46.123051], - [-81.743332, 46.06805], - [-81.761124, 46.01305], - [-81.777222, 46.06332], - [-81.714447, 46.10416], - [-82.13501, 46.11694], - [-82.369453, 46.165821], - [-82.322243, 46.190269], - [-82.674156, 46.16444], - [-82.63028, 46.21777], - [-82.986938, 46.172218], - [-83.865547, 46.29583], - [-83.883331, 46.334991], - [-84.049728, 46.326099], - [-84.119453, 46.375271], - [-84.075012, 46.503609], - [-84.127129, 46.529591], - [-84.136177, 46.534111], - [-84.17305, 46.55249], - [-84.412132, 46.50367], - [-84.433167, 46.499371], - [-84.517227, 46.482208], - [-84.590286, 46.56583], - [-84.421944, 46.696098], - [-84.465843, 46.758331], - [-84.54834, 46.699429], - [-84.544159, 46.825001], - [-84.393066, 46.8325], - [-84.351097, 46.882771], - [-84.446663, 46.938881], - [-84.576401, 46.943878], - [-84.603607, 46.901932], - [-84.777786, 46.981659], - [-84.653877, 47.225819], - [-84.578888, 47.288891], - [-84.62471, 47.361111], - [-85.027786, 47.611382], - [-84.967499, 47.68082], - [-84.991096, 47.71693], - [-84.892502, 47.789719], - [-84.931671, 47.85527], - [-84.844452, 47.949162], - [-85.557503, 47.925549], - [-85.860283, 47.985271], - [-86.131378, 48.241379], - [-86.262787, 48.584431], - [-86.434723, 48.77721], - [-86.55249, 48.732208], - [-86.703056, 48.810268], - [-86.85556, 48.750832], - [-86.970551, 48.809719], - [-87.003067, 48.77499], - [-87.289719, 48.76749], - [-87.443604, 48.84388], - [-87.547234, 48.833599], - [-87.575844, 48.88583], - [-87.649986, 48.863049], - [-87.955841, 48.95055], - [-88.035553, 49.022221], - [-88.183319, 48.965832], - [-88.261093, 48.99295], - [-88.253891, 48.872219], - [-88.10527, 48.787498], - [-88.103333, 48.711658], - [-88.204453, 48.606659], - [-88.252792, 48.59499], - [-88.229446, 48.636662], - [-88.283623, 48.603882], - [-88.332497, 48.657211], - [-88.3125, 48.581669], - [-88.391113, 48.540829], - [-88.430283, 48.573608], - [-88.482773, 48.470539], - [-88.559723, 48.430271], - [-88.590561, 48.490269], - [-88.556381, 48.546101], - [-88.350281, 48.678051], - [-88.313889, 48.760551], - [-88.360817, 48.83638], - [-88.480293, 48.854439], - [-88.547501, 48.764721], - [-88.509453, 48.716381], - [-88.551666, 48.698601], - [-88.539993, 48.645271], - [-88.624443, 48.62471], - [-88.632767, 48.522491], - [-88.693047, 48.507771], - [-88.74028, 48.369709], - [-88.938599, 48.314442], - [-88.759453, 48.580551], - [-89.138611, 48.48444], - [-89.243057, 48.388329], - [-89.198883, 48.32444], - [-89.337784, 48.1161], - [-89.530586, 48.00177], - [-89.749222, 48.0266], - [-89.900299, 47.992619], - [-89.986931, 48.02367], - [-90.026611, 48.086189], - [-90.14518, 48.112881], - [-90.556732, 48.092861], - [-90.567352, 48.121811], - [-90.743263, 48.088551], - [-90.864388, 48.254311], - [-91.027039, 48.19545], - [-91.239326, 48.081409], - [-91.571442, 48.043678], - [-91.568657, 48.104561], - [-91.703613, 48.114941], - [-91.711807, 48.19688], - [-91.788689, 48.206249], - [-91.979401, 48.2505], - [-92.035049, 48.35561], - [-92.125816, 48.366859], - [-92.275993, 48.352421], - [-92.300133, 48.298409], - [-92.276772, 48.244438], - [-92.369957, 48.220871], - [-92.473167, 48.35759], - [-92.456192, 48.40226], - [-92.497383, 48.44017], - [-92.70649, 48.460461], - [-92.698669, 48.49482], - [-92.626228, 48.502918], - [-92.64167, 48.54044], - [-92.728851, 48.54031], - [-92.946777, 48.628441], - [-93.091301, 48.626659], - [-93.304092, 48.63723], - [-93.457619, 48.59277], - [-93.465187, 48.54958], - [-93.513977, 48.534328], - [-93.780937, 48.511639], - [-93.812523, 48.525459], - [-93.843727, 48.624779], - [-94.230637, 48.65202], - [-94.292137, 48.707741], - [-94.430443, 48.710819], - [-94.570107, 48.713699], - [-94.694221, 48.777641], - [-94.681038, 48.877178], - [-94.83181, 49.330811], - [-95.151627, 49.371731], - [-95.153877, 49.452019], - [-95.154327, 49.576729], - [-95.150284, 52.826389], - [-93.652222, 53.72221], - [-93.272087, 53.998859], - [-92.698143, 54.410931], - [-92.60231, 54.478489], - [-92.476593, 54.56694], - [-92.388641, 54.62793], - [-90.843887, 55.66777], - [-89.305557, 56.627209], - [-89.179642, 56.86895], - [-89.037781, 56.836109], - [-88.87944, 56.858051], - [-88.654716, 56.696381], - [-88.48999, 56.64222], - [-88.353607, 56.553322], - [-87.975563, 56.437489], - [-87.943047, 56.377491], - [-87.723892, 56.20388], - [-87.708054, 56.156101], - [-87.583618, 56.076099], - [-87.615829, 56.002781], - [-87.548607, 56.049999], - [-87.351936, 55.992771], - [-87.362503, 55.946659], - [-86.979446, 55.93166], - [-86.958893, 55.905819], - [-86.477783, 55.80888], - [-86.277222, 55.72887], - [-85.944443, 55.697769], - [-85.577789, 55.562771], - [-85.393341, 55.408878], - [-85.128883, 55.346378], - [-85.121933, 55.303322], - [-85.214172, 55.273319], - [-85.398064, 55.10083], - [-85.383057, 55.063049], - [-85.423889, 54.990551], - [-85.194153, 55.24416], - [-85.001953, 55.296661], - [-84.599167, 55.241661], - [-84.322777, 55.289989], - [-84.092216, 55.27166], - [-83.920273, 55.31916], - [-83.730003, 55.259441], - [-83.736938, 55.215], - [-83.686943, 55.24416], - [-83.601387, 55.224159], - [-83.561943, 55.130821], - [-83.583618, 55.22916], - [-83.698608, 55.283051], - [-83.179718, 55.197208], - [-82.964722, 55.233601], - [-82.895279, 55.171661], - [-82.946663, 55.10638], - [-82.884171, 55.15332], - [-82.650284, 55.16972], - [-82.555557, 55.139721], - [-82.536667, 55.16444], - [-82.319458, 55.064159], - [-82.338608, 55.09943], - [-82.308037, 55.121929], - [-82.340561, 55.164711], - [-82.245827, 55.102779], - [-82.287216, 55.036659], - [-82.254997, 54.975269], - [-82.270844, 54.931381], - [-82.195267, 54.844711], - [-82.358887, 54.500271], - [-82.441101, 54.36166], - [-82.434158, 54.209431], - [-82.362778, 54.143608], - [-82.381378, 54.118881], - [-82.321953, 54.123878], - [-82.243881, 54.06805], - [-82.12999, 53.79916], - [-82.21666, 53.603882], - [-82.114723, 53.273609], - [-82.250557, 53.211941], - [-82.301666, 52.961109], - [-82.101669, 52.87999], - [-81.973618, 52.780548], - [-81.988892, 52.762211], - [-81.921387, 52.682209], - [-81.558037, 52.4561], - [-81.553047, 52.352489], - [-81.478058, 52.302219], - [-81.561394, 52.31638], - [-81.747498, 52.251389], - [-81.82251, 52.25444], - [-81.883621, 52.187489], - [-81.758347, 52.239429], - [-81.501678, 52.23333], - [-81.352783, 52.101101], - [-80.988327, 52.008049], - [-80.899986, 51.895271], - [-80.815277, 51.87999], - [-80.599167, 51.713329], - [-80.515007, 51.524441], - [-80.436394, 51.464161], - [-80.424438, 51.363609], - [-80.487503, 51.336651], - [-80.652496, 51.278332], - [-80.75029, 51.17749], - [-80.844727, 51.150269], - [-81.015007, 51.028332], - [-80.93277, 51.049721], - [-80.943878, 51.0075], - [-80.862213, 51.1161], - [-80.694443, 51.156101], - [-80.530563, 51.283611], - [-80.392227, 51.3386], - [-79.996384, 51.254711], - [-79.741096, 51.1236], - [-79.684998, 51.045551], - [-79.537613, 50.958599] - ] - ], - [ - [ - [-82.878601, 45.968601], - [-82.809998, 45.992489], - [-82.842216, 45.920269], - [-82.757507, 45.844151], - [-82.592216, 45.849998], - [-82.539169, 45.785549], - [-82.509171, 45.848598], - [-82.586937, 45.902489], - [-82.299438, 45.99194], - [-82.167503, 45.837769], - [-82.048607, 45.96471], - [-81.92778, 45.978039], - [-81.888344, 45.949429], - [-81.90834, 45.891941], - [-81.820282, 45.880268], - [-81.847229, 45.785271], - [-81.799988, 45.732208], - [-81.683609, 45.904991], - [-81.655838, 45.861111], - [-81.70723, 45.798328], - [-81.587219, 45.799999], - [-81.719452, 45.606098], - [-81.863327, 45.52055], - [-81.99472, 45.559719], - [-81.898064, 45.577492], - [-81.761124, 45.701099], - [-82.065826, 45.55888], - [-82.689163, 45.793049], - [-83.213333, 45.873878], - [-83.186943, 45.96471], - [-83.091377, 45.919441], - [-83.054993, 45.960548], - [-82.983887, 45.930271], - [-82.878601, 45.968601] - ] - ] - ] - }, - "properties": { - "name": "Ontario", - "ISOCODE": "CA-ON", - "cartodb_id": 11, - "created_at": "2014-10-16T13:22:00Z", - "updated_at": "2014-10-16T13:22:00Z" - } - } - ] -} diff --git a/backend/server/static/data/ch.json b/backend/server/static/data/ch.json deleted file mode 100644 index 338422c..0000000 --- a/backend/server/static/data/ch.json +++ /dev/null @@ -1,7827 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "id": "6006", - "properties": { - "name": "Aargau", - "ISOCODE": "CH-AG", - "density": 0, - "path": "/world/Switzerland/Aargau" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [7.826, 47.267], - [7.835, 47.27], - [7.844, 47.278], - [7.845, 47.283], - [7.853, 47.291], - [7.861, 47.307], - [7.876, 47.313], - [7.89, 47.313], - [7.899, 47.321], - [7.897, 47.329], - [7.909, 47.342], - [7.92, 47.335], - [7.949, 47.334], - [7.949, 47.319], - [7.961, 47.322], - [7.978, 47.325], - [7.988, 47.33], - [7.992, 47.334], - [8.002, 47.336], - [8.008, 47.341], - [8.004, 47.346], - [8.012, 47.351], - [8.012, 47.358], - [8.027, 47.37], - [8.032, 47.384], - [8.027, 47.397], - [8.012, 47.396], - [8.008, 47.408], - [7.993, 47.412], - [7.99, 47.415], - [7.983, 47.415], - [7.964, 47.423], - [7.985, 47.429], - [7.988, 47.429], - [7.982, 47.45], - [7.976, 47.453], - [7.975, 47.461], - [7.969, 47.464], - [7.958, 47.456], - [7.958, 47.46], - [7.949, 47.465], - [7.941, 47.463], - [7.948, 47.486], - [7.934, 47.483], - [7.919, 47.484], - [7.906, 47.486], - [7.906, 47.494], - [7.9, 47.497], - [7.895, 47.508], - [7.885, 47.51], - [7.876, 47.515], - [7.877, 47.524], - [7.87, 47.521], - [7.865, 47.524], - [7.859, 47.534], - [7.853, 47.537], - [7.848, 47.534], - [7.835, 47.535], - [7.835, 47.523], - [7.833, 47.516], - [7.816, 47.505], - [7.808, 47.498], - [7.794, 47.497], - [7.793, 47.505], - [7.789, 47.508], - [7.791, 47.52], - [7.763, 47.526], - [7.738, 47.529], - [7.734, 47.534], - [7.727, 47.535], - [7.725, 47.538], - [7.717, 47.537], - [7.714, 47.541], - [7.72, 47.543], - [7.752, 47.546], - [7.759, 47.55], - [7.774, 47.553], - [7.784, 47.555], - [7.796, 47.559], - [7.804, 47.566], - [7.812, 47.57], - [7.816, 47.581], - [7.821, 47.588], - [7.835, 47.588], - [7.838, 47.584], - [7.845, 47.583], - [7.863, 47.589], - [7.885, 47.59], - [7.895, 47.588], - [7.904, 47.582], - [7.912, 47.571], - [7.908, 47.562], - [7.913, 47.552], - [7.919, 47.549], - [7.931, 47.548], - [7.944, 47.545], - [7.949, 47.547], - [7.953, 47.555], - [7.962, 47.559], - [7.978, 47.557], - [7.999, 47.558], - [8.009, 47.556], - [8.015, 47.553], - [8.024, 47.552], - [8.047, 47.557], - [8.059, 47.563], - [8.072, 47.566], - [8.079, 47.561], - [8.091, 47.559], - [8.098, 47.562], - [8.102, 47.568], - [8.104, 47.577], - [8.107, 47.582], - [8.116, 47.585], - [8.135, 47.585], - [8.139, 47.591], - [8.149, 47.597], - [8.161, 47.595], - [8.169, 47.597], - [8.174, 47.602], - [8.188, 47.608], - [8.192, 47.616], - [8.198, 47.62], - [8.208, 47.622], - [8.216, 47.621], - [8.223, 47.617], - [8.225, 47.608], - [8.232, 47.608], - [8.24, 47.614], - [8.246, 47.614], - [8.261, 47.616], - [8.268, 47.611], - [8.285, 47.613], - [8.298, 47.607], - [8.297, 47.594], - [8.3, 47.589], - [8.315, 47.583], - [8.321, 47.576], - [8.329, 47.573], - [8.337, 47.572], - [8.359, 47.571], - [8.386, 47.567], - [8.393, 47.576], - [8.398, 47.579], - [8.407, 47.577], - [8.427, 47.569], - [8.419, 47.566], - [8.416, 47.556], - [8.419, 47.547], - [8.411, 47.547], - [8.405, 47.54], - [8.405, 47.535], - [8.395, 47.533], - [8.393, 47.526], - [8.388, 47.53], - [8.382, 47.527], - [8.381, 47.516], - [8.375, 47.512], - [8.37, 47.513], - [8.361, 47.511], - [8.359, 47.499], - [8.364, 47.492], - [8.365, 47.482], - [8.375, 47.483], - [8.376, 47.473], - [8.369, 47.472], - [8.374, 47.46], - [8.384, 47.457], - [8.388, 47.451], - [8.382, 47.45], - [8.382, 47.442], - [8.386, 47.437], - [8.384, 47.434], - [8.378, 47.435], - [8.376, 47.431], - [8.389, 47.429], - [8.393, 47.421], - [8.382, 47.412], - [8.386, 47.407], - [8.38, 47.404], - [8.377, 47.406], - [8.364, 47.403], - [8.367, 47.4], - [8.38, 47.401], - [8.384, 47.397], - [8.398, 47.395], - [8.395, 47.382], - [8.401, 47.375], - [8.401, 47.372], - [8.408, 47.371], - [8.406, 47.366], - [8.41, 47.356], - [8.405, 47.348], - [8.408, 47.343], - [8.418, 47.335], - [8.413, 47.328], - [8.417, 47.326], - [8.43, 47.328], - [8.436, 47.326], - [8.456, 47.334], - [8.449, 47.327], - [8.45, 47.324], - [8.437, 47.317], - [8.43, 47.309], - [8.429, 47.302], - [8.419, 47.296], - [8.404, 47.293], - [8.398, 47.289], - [8.39, 47.291], - [8.395, 47.28], - [8.404, 47.273], - [8.401, 47.265], - [8.405, 47.263], - [8.404, 47.255], - [8.411, 47.25], - [8.407, 47.238], - [8.397, 47.23], - [8.398, 47.221], - [8.402, 47.216], - [8.401, 47.208], - [8.406, 47.195], - [8.402, 47.191], - [8.401, 47.184], - [8.403, 47.178], - [8.411, 47.176], - [8.416, 47.167], - [8.416, 47.159], - [8.413, 47.156], - [8.416, 47.145], - [8.413, 47.142], - [8.408, 47.139], - [8.399, 47.139], - [8.391, 47.141], - [8.377, 47.141], - [8.376, 47.144], - [8.363, 47.147], - [8.359, 47.158], - [8.349, 47.166], - [8.345, 47.174], - [8.34, 47.179], - [8.338, 47.191], - [8.331, 47.198], - [8.326, 47.216], - [8.321, 47.217], - [8.321, 47.223], - [8.318, 47.226], - [8.312, 47.247], - [8.306, 47.254], - [8.301, 47.254], - [8.297, 47.261], - [8.295, 47.267], - [8.301, 47.273], - [8.297, 47.274], - [8.286, 47.281], - [8.28, 47.283], - [8.272, 47.282], - [8.272, 47.285], - [8.263, 47.284], - [8.261, 47.288], - [8.251, 47.287], - [8.249, 47.282], - [8.246, 47.282], - [8.243, 47.274], - [8.229, 47.275], - [8.22, 47.253], - [8.209, 47.249], - [8.205, 47.244], - [8.204, 47.231], - [8.206, 47.227], - [8.194, 47.228], - [8.187, 47.224], - [8.177, 47.223], - [8.175, 47.229], - [8.167, 47.23], - [8.161, 47.234], - [8.163, 47.237], - [8.157, 47.24], - [8.163, 47.242], - [8.177, 47.242], - [8.181, 47.247], - [8.18, 47.252], - [8.176, 47.255], - [8.165, 47.251], - [8.147, 47.249], - [8.137, 47.248], - [8.126, 47.242], - [8.12, 47.245], - [8.11, 47.246], - [8.107, 47.254], - [8.1, 47.262], - [8.089, 47.264], - [8.079, 47.261], - [8.072, 47.256], - [8.064, 47.258], - [8.058, 47.257], - [8.064, 47.249], - [8.052, 47.246], - [8.031, 47.243], - [8.03, 47.242], - [8.017, 47.245], - [8.018, 47.261], - [8.006, 47.271], - [8.006, 47.276], - [7.996, 47.283], - [7.988, 47.277], - [7.974, 47.276], - [7.972, 47.277], - [7.957, 47.278], - [7.95, 47.274], - [7.952, 47.267], - [7.963, 47.255], - [7.947, 47.244], - [7.934, 47.237], - [7.922, 47.239], - [7.911, 47.245], - [7.896, 47.244], - [7.868, 47.239], - [7.854, 47.234], - [7.84, 47.236], - [7.84, 47.236], - [7.829, 47.244], - [7.827, 47.253], - [7.831, 47.257], - [7.826, 47.267] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6002", - "properties": { - "name": "Appenzell Ausserrhoden", - "ISOCODE": "CH-AR", - "density": 0, - "path": "/world/Switzerland/Appenzell Ausserrhoden" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [9.345, 47.251], - [9.334, 47.251], - [9.325, 47.248], - [9.319, 47.249], - [9.309, 47.257], - [9.309, 47.261], - [9.298, 47.259], - [9.291, 47.262], - [9.285, 47.267], - [9.276, 47.27], - [9.268, 47.27], - [9.258, 47.264], - [9.253, 47.267], - [9.233, 47.267], - [9.223, 47.271], - [9.207, 47.278], - [9.208, 47.28], - [9.218, 47.285], - [9.225, 47.295], - [9.218, 47.301], - [9.218, 47.309], - [9.212, 47.323], - [9.224, 47.327], - [9.234, 47.332], - [9.227, 47.343], - [9.212, 47.342], - [9.2, 47.348], - [9.206, 47.359], - [9.198, 47.356], - [9.193, 47.364], - [9.2, 47.363], - [9.214, 47.366], - [9.214, 47.37], - [9.222, 47.374], - [9.223, 47.379], - [9.22, 47.386], - [9.224, 47.389], - [9.233, 47.39], - [9.233, 47.399], - [9.238, 47.398], - [9.246, 47.401], - [9.257, 47.402], - [9.259, 47.4], - [9.272, 47.402], - [9.305, 47.396], - [9.321, 47.399], - [9.331, 47.403], - [9.337, 47.401], - [9.379, 47.409], - [9.391, 47.405], - [9.393, 47.403], - [9.4, 47.402], - [9.428, 47.409], - [9.431, 47.411], - [9.436, 47.426], - [9.434, 47.432], - [9.437, 47.436], - [9.445, 47.435], - [9.451, 47.432], - [9.465, 47.437], - [9.469, 47.44], - [9.484, 47.441], - [9.504, 47.447], - [9.51, 47.451], - [9.525, 47.453], - [9.529, 47.455], - [9.527, 47.463], - [9.533, 47.469], - [9.544, 47.47], - [9.548, 47.469], - [9.547, 47.464], - [9.559, 47.466], - [9.563, 47.464], - [9.581, 47.464], - [9.597, 47.46], - [9.599, 47.457], - [9.614, 47.45], - [9.622, 47.449], - [9.63, 47.446], - [9.63, 47.441], - [9.619, 47.439], - [9.605, 47.438], - [9.594, 47.435], - [9.571, 47.436], - [9.57, 47.44], - [9.56, 47.435], - [9.564, 47.43], - [9.571, 47.43], - [9.576, 47.427], - [9.57, 47.422], - [9.584, 47.421], - [9.582, 47.416], - [9.587, 47.416], - [9.584, 47.411], - [9.577, 47.405], - [9.556, 47.398], - [9.556, 47.398], - [9.544, 47.41], - [9.565, 47.409], - [9.566, 47.407], - [9.575, 47.409], - [9.577, 47.417], - [9.565, 47.418], - [9.557, 47.421], - [9.556, 47.428], - [9.54, 47.433], - [9.538, 47.427], - [9.526, 47.423], - [9.528, 47.417], - [9.525, 47.414], - [9.534, 47.412], - [9.524, 47.408], - [9.518, 47.407], - [9.512, 47.402], - [9.51, 47.396], - [9.507, 47.391], - [9.504, 47.376], - [9.5, 47.371], - [9.5, 47.365], - [9.504, 47.349], - [9.488, 47.352], - [9.48, 47.348], - [9.467, 47.348], - [9.446, 47.358], - [9.439, 47.358], - [9.432, 47.368], - [9.431, 47.372], - [9.423, 47.369], - [9.413, 47.37], - [9.405, 47.374], - [9.404, 47.378], - [9.394, 47.382], - [9.392, 47.379], - [9.38, 47.382], - [9.38, 47.388], - [9.372, 47.385], - [9.361, 47.386], - [9.351, 47.384], - [9.36, 47.379], - [9.358, 47.373], - [9.361, 47.365], - [9.366, 47.359], - [9.348, 47.356], - [9.345, 47.353], - [9.347, 47.346], - [9.334, 47.342], - [9.33, 47.332], - [9.312, 47.326], - [9.318, 47.318], - [9.319, 47.311], - [9.316, 47.308], - [9.318, 47.303], - [9.314, 47.298], - [9.314, 47.293], - [9.325, 47.284], - [9.334, 47.271], - [9.334, 47.265], - [9.345, 47.251] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6003", - "properties": { - "name": "Appenzell Innerrhoden", - "ISOCODE": "CH-AI", - "density": 0, - "path": "/world/Switzerland/Appenzell Innerrhoden" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [9.345, 47.251], - [9.334, 47.265], - [9.334, 47.271], - [9.325, 47.284], - [9.314, 47.293], - [9.314, 47.298], - [9.318, 47.303], - [9.316, 47.308], - [9.319, 47.311], - [9.318, 47.318], - [9.312, 47.326], - [9.33, 47.332], - [9.334, 47.342], - [9.347, 47.346], - [9.345, 47.353], - [9.348, 47.356], - [9.366, 47.359], - [9.361, 47.365], - [9.358, 47.373], - [9.36, 47.379], - [9.351, 47.384], - [9.361, 47.386], - [9.372, 47.385], - [9.38, 47.388], - [9.38, 47.382], - [9.392, 47.379], - [9.394, 47.382], - [9.404, 47.378], - [9.405, 47.374], - [9.413, 47.37], - [9.423, 47.369], - [9.431, 47.372], - [9.432, 47.368], - [9.439, 47.358], - [9.446, 47.358], - [9.467, 47.348], - [9.48, 47.348], - [9.488, 47.352], - [9.504, 47.349], - [9.503, 47.331], - [9.5, 47.32], - [9.494, 47.316], - [9.498, 47.307], - [9.492, 47.302], - [9.486, 47.285], - [9.482, 47.283], - [9.474, 47.272], - [9.455, 47.262], - [9.439, 47.252], - [9.428, 47.248], - [9.42, 47.249], - [9.411, 47.246], - [9.403, 47.239], - [9.393, 47.238], - [9.383, 47.235], - [9.375, 47.24], - [9.36, 47.246], - [9.352, 47.246], - [9.345, 47.251] - ] - ], - [ - [ - [9.51, 47.396], - [9.512, 47.402], - [9.518, 47.407], - [9.524, 47.408], - [9.534, 47.412], - [9.525, 47.414], - [9.528, 47.417], - [9.526, 47.423], - [9.538, 47.427], - [9.54, 47.433], - [9.556, 47.428], - [9.557, 47.421], - [9.565, 47.418], - [9.577, 47.417], - [9.575, 47.409], - [9.566, 47.407], - [9.565, 47.409], - [9.544, 47.41], - [9.556, 47.398], - [9.556, 47.398], - [9.549, 47.394], - [9.547, 47.4], - [9.538, 47.401], - [9.51, 47.396] - ] - ], - [ - [ - [9.619, 47.439], - [9.608, 47.433], - [9.59, 47.427], - [9.59, 47.422], - [9.606, 47.416], - [9.598, 47.413], - [9.584, 47.411], - [9.587, 47.416], - [9.582, 47.416], - [9.584, 47.421], - [9.57, 47.422], - [9.576, 47.427], - [9.571, 47.43], - [9.564, 47.43], - [9.56, 47.435], - [9.57, 47.44], - [9.571, 47.436], - [9.594, 47.435], - [9.605, 47.438], - [9.619, 47.439] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6000", - "properties": { - "name": "Basel-Landschaft", - "ISOCODE": "CH-BL", - "density": 0, - "path": "/world/Switzerland/Basel-Landschaft" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [7.377, 47.415], - [7.389, 47.415], - [7.414, 47.412], - [7.421, 47.412], - [7.429, 47.416], - [7.439, 47.414], - [7.448, 47.416], - [7.456, 47.429], - [7.449, 47.439], - [7.439, 47.448], - [7.424, 47.445], - [7.421, 47.447], - [7.423, 47.452], - [7.43, 47.455], - [7.429, 47.458], - [7.446, 47.463], - [7.448, 47.458], - [7.458, 47.451], - [7.469, 47.455], - [7.482, 47.457], - [7.499, 47.461], - [7.511, 47.46], - [7.518, 47.462], - [7.531, 47.463], - [7.528, 47.475], - [7.537, 47.485], - [7.537, 47.493], - [7.534, 47.492], - [7.533, 47.499], - [7.522, 47.498], - [7.513, 47.5], - [7.511, 47.504], - [7.51, 47.511], - [7.503, 47.516], - [7.515, 47.519], - [7.52, 47.516], - [7.532, 47.53], - [7.528, 47.534], - [7.52, 47.536], - [7.511, 47.53], - [7.503, 47.53], - [7.499, 47.537], - [7.505, 47.545], - [7.518, 47.547], - [7.531, 47.556], - [7.541, 47.559], - [7.556, 47.566], - [7.566, 47.559], - [7.56, 47.554], - [7.557, 47.546], - [7.565, 47.547], - [7.582, 47.545], - [7.588, 47.543], - [7.583, 47.533], - [7.591, 47.528], - [7.591, 47.521], - [7.596, 47.521], - [7.603, 47.527], - [7.614, 47.54], - [7.623, 47.541], - [7.624, 47.55], - [7.619, 47.556], - [7.619, 47.56], - [7.628, 47.563], - [7.635, 47.562], - [7.643, 47.558], - [7.648, 47.55], - [7.66, 47.547], - [7.666, 47.54], - [7.672, 47.536], - [7.682, 47.534], - [7.697, 47.534], - [7.714, 47.541], - [7.717, 47.537], - [7.725, 47.538], - [7.727, 47.535], - [7.734, 47.534], - [7.738, 47.529], - [7.763, 47.526], - [7.791, 47.52], - [7.789, 47.508], - [7.793, 47.505], - [7.794, 47.497], - [7.808, 47.498], - [7.816, 47.505], - [7.833, 47.516], - [7.835, 47.523], - [7.835, 47.535], - [7.848, 47.534], - [7.853, 47.537], - [7.859, 47.534], - [7.865, 47.524], - [7.87, 47.521], - [7.877, 47.524], - [7.876, 47.515], - [7.885, 47.51], - [7.895, 47.508], - [7.9, 47.497], - [7.906, 47.494], - [7.906, 47.486], - [7.919, 47.484], - [7.934, 47.483], - [7.948, 47.486], - [7.941, 47.463], - [7.949, 47.465], - [7.958, 47.46], - [7.958, 47.456], - [7.959, 47.454], - [7.948, 47.447], - [7.951, 47.433], - [7.963, 47.423], - [7.952, 47.418], - [7.936, 47.413], - [7.934, 47.407], - [7.911, 47.4], - [7.905, 47.404], - [7.902, 47.402], - [7.891, 47.408], - [7.885, 47.407], - [7.885, 47.403], - [7.879, 47.403], - [7.87, 47.397], - [7.874, 47.392], - [7.881, 47.389], - [7.87, 47.382], - [7.864, 47.383], - [7.851, 47.38], - [7.838, 47.374], - [7.834, 47.368], - [7.823, 47.365], - [7.803, 47.363], - [7.796, 47.353], - [7.795, 47.34], - [7.77, 47.34], - [7.767, 47.344], - [7.755, 47.345], - [7.743, 47.351], - [7.735, 47.359], - [7.728, 47.37], - [7.703, 47.374], - [7.645, 47.368], - [7.642, 47.382], - [7.636, 47.382], - [7.638, 47.387], - [7.634, 47.411], - [7.658, 47.41], - [7.665, 47.411], - [7.681, 47.419], - [7.687, 47.435], - [7.684, 47.44], - [7.686, 47.449], - [7.694, 47.456], - [7.699, 47.456], - [7.701, 47.463], - [7.711, 47.471], - [7.701, 47.482], - [7.669, 47.487], - [7.666, 47.493], - [7.667, 47.498], - [7.653, 47.497], - [7.649, 47.493], - [7.657, 47.489], - [7.645, 47.487], - [7.642, 47.484], - [7.63, 47.486], - [7.615, 47.491], - [7.608, 47.491], - [7.609, 47.476], - [7.605, 47.472], - [7.62, 47.469], - [7.627, 47.464], - [7.623, 47.463], - [7.623, 47.458], - [7.617, 47.447], - [7.616, 47.434], - [7.603, 47.432], - [7.593, 47.434], - [7.582, 47.43], - [7.58, 47.436], - [7.57, 47.438], - [7.568, 47.426], - [7.57, 47.422], - [7.582, 47.416], - [7.567, 47.415], - [7.544, 47.415], - [7.526, 47.413], - [7.532, 47.404], - [7.519, 47.39], - [7.511, 47.39], - [7.505, 47.387], - [7.492, 47.387], - [7.482, 47.39], - [7.478, 47.393], - [7.478, 47.403], - [7.465, 47.404], - [7.458, 47.403], - [7.45, 47.405], - [7.451, 47.401], - [7.442, 47.402], - [7.444, 47.39], - [7.44, 47.387], - [7.439, 47.382], - [7.434, 47.381], - [7.413, 47.382], - [7.417, 47.386], - [7.414, 47.396], - [7.4, 47.398], - [7.397, 47.405], - [7.389, 47.404], - [7.385, 47.414], - [7.377, 47.415] - ] - ], - [ - [ - [7.328, 47.441], - [7.34, 47.442], - [7.346, 47.437], - [7.355, 47.435], - [7.37, 47.436], - [7.382, 47.433], - [7.377, 47.415], - [7.358, 47.416], - [7.356, 47.42], - [7.342, 47.428], - [7.34, 47.431], - [7.327, 47.433], - [7.328, 47.441] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5999", - "properties": { - "name": "Basel-Stadt", - "ISOCODE": "CH-BS", - "density": 0, - "path": "/world/Switzerland/Basel-Stadt" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [7.556, 47.566], - [7.56, 47.571], - [7.558, 47.574], - [7.567, 47.579], - [7.586, 47.577], - [7.586, 47.582], - [7.59, 47.591], - [7.606, 47.586], - [7.606, 47.579], - [7.62, 47.578], - [7.629, 47.583], - [7.637, 47.589], - [7.644, 47.593], - [7.646, 47.598], - [7.668, 47.593], - [7.676, 47.593], - [7.681, 47.598], - [7.69, 47.6], - [7.672, 47.588], - [7.681, 47.584], - [7.685, 47.575], - [7.691, 47.573], - [7.687, 47.567], - [7.684, 47.572], - [7.674, 47.565], - [7.671, 47.567], - [7.659, 47.566], - [7.649, 47.561], - [7.637, 47.565], - [7.635, 47.562], - [7.628, 47.563], - [7.619, 47.56], - [7.619, 47.556], - [7.624, 47.55], - [7.623, 47.541], - [7.614, 47.54], - [7.603, 47.527], - [7.596, 47.521], - [7.591, 47.521], - [7.591, 47.528], - [7.583, 47.533], - [7.588, 47.543], - [7.582, 47.545], - [7.565, 47.547], - [7.557, 47.546], - [7.56, 47.554], - [7.566, 47.559], - [7.556, 47.566] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5989", - "properties": { - "name": "Bern", - "ISOCODE": "CH-BE", - "density": 0, - "path": "/world/Switzerland/Bern" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [7.222, 46.33], - [7.223, 46.35], - [7.219, 46.359], - [7.231, 46.363], - [7.227, 46.366], - [7.217, 46.363], - [7.208, 46.374], - [7.208, 46.379], - [7.194, 46.38], - [7.195, 46.385], - [7.209, 46.404], - [7.208, 46.411], - [7.211, 46.418], - [7.204, 46.423], - [7.201, 46.43], - [7.193, 46.434], - [7.196, 46.442], - [7.213, 46.441], - [7.226, 46.445], - [7.228, 46.453], - [7.233, 46.455], - [7.227, 46.458], - [7.231, 46.468], - [7.225, 46.479], - [7.225, 46.488], - [7.237, 46.489], - [7.233, 46.496], - [7.242, 46.498], - [7.245, 46.502], - [7.25, 46.518], - [7.248, 46.527], - [7.245, 46.534], - [7.247, 46.539], - [7.238, 46.548], - [7.238, 46.555], - [7.245, 46.556], - [7.256, 46.561], - [7.264, 46.569], - [7.268, 46.575], - [7.282, 46.585], - [7.299, 46.58], - [7.309, 46.583], - [7.313, 46.59], - [7.321, 46.593], - [7.316, 46.602], - [7.319, 46.62], - [7.313, 46.623], - [7.314, 46.638], - [7.323, 46.639], - [7.331, 46.643], - [7.322, 46.656], - [7.346, 46.657], - [7.351, 46.653], - [7.351, 46.65], - [7.359, 46.645], - [7.378, 46.658], - [7.37, 46.657], - [7.377, 46.676], - [7.374, 46.681], - [7.378, 46.685], - [7.377, 46.689], - [7.381, 46.691], - [7.378, 46.694], - [7.369, 46.694], - [7.364, 46.701], - [7.348, 46.7], - [7.35, 46.707], - [7.35, 46.714], - [7.33, 46.717], - [7.311, 46.719], - [7.309, 46.718], - [7.297, 46.728], - [7.299, 46.741], - [7.305, 46.747], - [7.304, 46.761], - [7.297, 46.766], - [7.292, 46.775], - [7.306, 46.785], - [7.302, 46.794], - [7.308, 46.799], - [7.311, 46.809], - [7.321, 46.817], - [7.321, 46.828], - [7.331, 46.831], - [7.331, 46.836], - [7.324, 46.842], - [7.308, 46.848], - [7.303, 46.853], - [7.313, 46.857], - [7.313, 46.862], - [7.325, 46.862], - [7.331, 46.859], - [7.323, 46.856], - [7.327, 46.853], - [7.335, 46.854], - [7.339, 46.851], - [7.35, 46.855], - [7.36, 46.864], - [7.359, 46.87], - [7.353, 46.878], - [7.354, 46.888], - [7.349, 46.891], - [7.328, 46.895], - [7.312, 46.893], - [7.296, 46.895], - [7.287, 46.894], - [7.283, 46.891], - [7.267, 46.895], - [7.262, 46.898], - [7.245, 46.902], - [7.237, 46.899], - [7.23, 46.905], - [7.223, 46.903], - [7.218, 46.898], - [7.213, 46.903], - [7.201, 46.904], - [7.196, 46.9], - [7.189, 46.902], - [7.199, 46.905], - [7.209, 46.91], - [7.207, 46.916], - [7.208, 46.926], - [7.213, 46.93], - [7.204, 46.942], - [7.21, 46.943], - [7.209, 46.95], - [7.212, 46.958], - [7.208, 46.961], - [7.201, 46.96], - [7.197, 46.965], - [7.208, 46.965], - [7.208, 46.969], - [7.215, 46.968], - [7.215, 46.972], - [7.229, 46.979], - [7.236, 46.988], - [7.223, 46.994], - [7.224, 46.999], - [7.218, 47.007], - [7.211, 47.005], - [7.206, 47.008], - [7.202, 47.003], - [7.157, 46.987], - [7.15, 46.987], - [7.093, 46.977], - [7.059, 46.978], - [7.041, 46.981], - [7.026, 47.007], - [7.035, 47.018], - [7.035, 47.033], - [7.041, 47.038], - [7.052, 47.044], - [7.066, 47.046], - [7.077, 47.052], - [7.088, 47.061], - [7.081, 47.068], - [7.081, 47.075], - [7.078, 47.077], - [7.088, 47.083], - [7.088, 47.087], - [7.076, 47.097], - [7.058, 47.101], - [7.041, 47.11], - [7.029, 47.105], - [7.024, 47.113], - [7.032, 47.121], - [7.041, 47.126], - [7.032, 47.129], - [7.026, 47.125], - [7.009, 47.126], - [6.997, 47.12], - [6.97, 47.116], - [6.949, 47.114], - [6.937, 47.11], - [6.931, 47.114], - [6.928, 47.11], - [6.916, 47.105], - [6.896, 47.098], - [6.889, 47.094], - [6.867, 47.086], - [6.873, 47.104], - [6.882, 47.11], - [6.89, 47.132], - [6.882, 47.141], - [6.862, 47.167], - [6.873, 47.175], - [6.88, 47.156], - [6.884, 47.152], - [6.907, 47.158], - [6.915, 47.164], - [6.931, 47.171], - [6.939, 47.177], - [6.942, 47.186], - [6.953, 47.189], - [6.957, 47.182], - [6.971, 47.183], - [6.978, 47.176], - [6.987, 47.178], - [6.995, 47.188], - [6.997, 47.194], - [7.024, 47.197], - [7.031, 47.204], - [7.037, 47.215], - [7.048, 47.228], - [7.06, 47.233], - [7.057, 47.241], - [7.061, 47.244], - [7.08, 47.249], - [7.081, 47.245], - [7.086, 47.247], - [7.089, 47.238], - [7.097, 47.238], - [7.104, 47.244], - [7.112, 47.243], - [7.129, 47.246], - [7.14, 47.244], - [7.156, 47.249], - [7.15, 47.255], - [7.144, 47.257], - [7.147, 47.261], - [7.149, 47.27], - [7.169, 47.276], - [7.17, 47.287], - [7.166, 47.29], - [7.17, 47.292], - [7.164, 47.295], - [7.195, 47.297], - [7.21, 47.296], - [7.208, 47.292], - [7.224, 47.289], - [7.233, 47.289], - [7.242, 47.287], - [7.259, 47.287], - [7.262, 47.288], - [7.277, 47.286], - [7.306, 47.289], - [7.317, 47.292], - [7.325, 47.297], - [7.333, 47.301], - [7.338, 47.307], - [7.345, 47.307], - [7.366, 47.311], - [7.38, 47.316], - [7.381, 47.315], - [7.407, 47.314], - [7.413, 47.315], - [7.414, 47.311], - [7.423, 47.308], - [7.441, 47.31], - [7.46, 47.308], - [7.478, 47.308], - [7.487, 47.304], - [7.497, 47.303], - [7.531, 47.318], - [7.551, 47.321], - [7.559, 47.324], - [7.549, 47.318], - [7.548, 47.307], - [7.54, 47.303], - [7.538, 47.298], - [7.534, 47.296], - [7.522, 47.295], - [7.486, 47.285], - [7.476, 47.278], - [7.473, 47.271], - [7.466, 47.266], - [7.442, 47.264], - [7.417, 47.253], - [7.421, 47.244], - [7.409, 47.24], - [7.398, 47.234], - [7.376, 47.228], - [7.366, 47.222], - [7.358, 47.222], - [7.341, 47.219], - [7.348, 47.208], - [7.355, 47.193], - [7.366, 47.196], - [7.369, 47.192], - [7.379, 47.188], - [7.384, 47.182], - [7.392, 47.168], - [7.383, 47.166], - [7.384, 47.162], - [7.394, 47.161], - [7.401, 47.164], - [7.411, 47.163], - [7.417, 47.167], - [7.419, 47.172], - [7.433, 47.177], - [7.432, 47.182], - [7.435, 47.187], - [7.443, 47.18], - [7.45, 47.183], - [7.45, 47.191], - [7.456, 47.19], - [7.476, 47.192], - [7.476, 47.184], - [7.472, 47.183], - [7.479, 47.179], - [7.482, 47.173], - [7.488, 47.175], - [7.498, 47.171], - [7.491, 47.167], - [7.493, 47.165], - [7.483, 47.159], - [7.479, 47.156], - [7.469, 47.153], - [7.456, 47.157], - [7.449, 47.156], - [7.44, 47.152], - [7.44, 47.145], - [7.427, 47.142], - [7.423, 47.137], - [7.431, 47.131], - [7.436, 47.132], - [7.434, 47.128], - [7.439, 47.124], - [7.43, 47.126], - [7.426, 47.123], - [7.415, 47.122], - [7.404, 47.119], - [7.395, 47.123], - [7.391, 47.121], - [7.388, 47.127], - [7.371, 47.122], - [7.37, 47.117], - [7.385, 47.098], - [7.391, 47.094], - [7.413, 47.097], - [7.42, 47.101], - [7.424, 47.099], - [7.434, 47.102], - [7.439, 47.095], - [7.434, 47.089], - [7.436, 47.082], - [7.441, 47.076], - [7.446, 47.075], - [7.469, 47.081], - [7.476, 47.088], - [7.472, 47.092], - [7.462, 47.105], - [7.462, 47.109], - [7.493, 47.118], - [7.505, 47.124], - [7.515, 47.131], - [7.515, 47.134], - [7.524, 47.147], - [7.531, 47.15], - [7.521, 47.16], - [7.536, 47.166], - [7.545, 47.161], - [7.558, 47.168], - [7.564, 47.17], - [7.57, 47.164], - [7.576, 47.166], - [7.582, 47.161], - [7.587, 47.149], - [7.593, 47.154], - [7.599, 47.153], - [7.615, 47.156], - [7.636, 47.153], - [7.64, 47.155], - [7.646, 47.15], - [7.654, 47.153], - [7.652, 47.163], - [7.661, 47.17], - [7.674, 47.17], - [7.679, 47.184], - [7.672, 47.186], - [7.675, 47.192], - [7.663, 47.202], - [7.648, 47.203], - [7.652, 47.208], - [7.646, 47.216], - [7.649, 47.22], - [7.64, 47.225], - [7.645, 47.227], - [7.641, 47.231], - [7.627, 47.228], - [7.62, 47.23], - [7.615, 47.238], - [7.607, 47.24], - [7.597, 47.247], - [7.599, 47.255], - [7.594, 47.268], - [7.587, 47.271], - [7.581, 47.278], - [7.615, 47.282], - [7.649, 47.283], - [7.661, 47.288], - [7.671, 47.289], - [7.686, 47.295], - [7.689, 47.292], - [7.701, 47.288], - [7.714, 47.275], - [7.717, 47.278], - [7.726, 47.271], - [7.726, 47.268], - [7.734, 47.26], - [7.739, 47.261], - [7.746, 47.258], - [7.758, 47.259], - [7.766, 47.268], - [7.776, 47.269], - [7.777, 47.263], - [7.787, 47.257], - [7.801, 47.269], - [7.806, 47.269], - [7.808, 47.264], - [7.816, 47.262], - [7.826, 47.267], - [7.831, 47.257], - [7.827, 47.253], - [7.829, 47.244], - [7.84, 47.236], - [7.84, 47.236], - [7.838, 47.224], - [7.848, 47.219], - [7.85, 47.212], - [7.855, 47.204], - [7.861, 47.2], - [7.865, 47.19], - [7.877, 47.184], - [7.884, 47.173], - [7.877, 47.168], - [7.877, 47.157], - [7.881, 47.15], - [7.891, 47.142], - [7.891, 47.133], - [7.885, 47.129], - [7.87, 47.124], - [7.867, 47.118], - [7.869, 47.113], - [7.876, 47.111], - [7.874, 47.099], - [7.88, 47.097], - [7.883, 47.09], - [7.877, 47.074], - [7.877, 47.072], - [7.867, 47.055], - [7.875, 47.043], - [7.883, 47.041], - [7.885, 47.035], - [7.893, 47.032], - [7.895, 47.026], - [7.902, 47.019], - [7.898, 47.014], - [7.903, 47.008], - [7.926, 47.012], - [7.934, 47.006], - [7.951, 47.008], - [7.957, 47.004], - [7.949, 46.995], - [7.953, 46.982], - [7.945, 46.978], - [7.947, 46.97], - [7.934, 46.963], - [7.933, 46.953], - [7.923, 46.948], - [7.922, 46.943], - [7.913, 46.934], - [7.899, 46.936], - [7.875, 46.927], - [7.868, 46.916], - [7.881, 46.912], - [7.883, 46.905], - [7.874, 46.894], - [7.874, 46.891], - [7.86, 46.886], - [7.857, 46.882], - [7.858, 46.873], - [7.865, 46.871], - [7.87, 46.866], - [7.869, 46.851], - [7.878, 46.838], - [7.897, 46.832], - [7.923, 46.821], - [7.948, 46.806], - [7.955, 46.797], - [7.955, 46.793], - [7.969, 46.786], - [7.974, 46.779], - [7.986, 46.776], - [7.995, 46.78], - [7.997, 46.783], - [8.005, 46.784], - [8.021, 46.79], - [8.032, 46.792], - [8.047, 46.788], - [8.056, 46.79], - [8.061, 46.788], - [8.07, 46.79], - [8.078, 46.787], - [8.091, 46.789], - [8.092, 46.786], - [8.102, 46.777], - [8.103, 46.775], - [8.112, 46.775], - [8.13, 46.768], - [8.148, 46.756], - [8.159, 46.76], - [8.169, 46.766], - [8.173, 46.765], - [8.191, 46.772], - [8.194, 46.77], - [8.209, 46.771], - [8.223, 46.762], - [8.234, 46.763], - [8.24, 46.771], - [8.261, 46.765], - [8.269, 46.755], - [8.285, 46.754], - [8.303, 46.763], - [8.335, 46.782], - [8.361, 46.784], - [8.37, 46.789], - [8.378, 46.787], - [8.384, 46.782], - [8.392, 46.779], - [8.396, 46.773], - [8.398, 46.767], - [8.418, 46.775], - [8.424, 46.772], - [8.439, 46.773], - [8.448, 46.772], - [8.449, 46.764], - [8.448, 46.759], - [8.44, 46.753], - [8.445, 46.748], - [8.442, 46.746], - [8.442, 46.739], - [8.451, 46.731], - [8.448, 46.728], - [8.448, 46.715], - [8.454, 46.712], - [8.453, 46.704], - [8.456, 46.7], - [8.453, 46.69], - [8.442, 46.687], - [8.416, 46.689], - [8.413, 46.692], - [8.401, 46.694], - [8.399, 46.675], - [8.403, 46.67], - [8.409, 46.667], - [8.411, 46.654], - [8.4, 46.655], - [8.395, 46.647], - [8.393, 46.646], - [8.38, 46.635], - [8.373, 46.634], - [8.37, 46.63], - [8.372, 46.615], - [8.362, 46.599], - [8.365, 46.594], - [8.361, 46.587], - [8.366, 46.584], - [8.353, 46.573], - [8.352, 46.57], - [8.338, 46.562], - [8.318, 46.56], - [8.314, 46.554], - [8.305, 46.547], - [8.288, 46.544], - [8.285, 46.539], - [8.263, 46.535], - [8.259, 46.531], - [8.243, 46.528], - [8.226, 46.528], - [8.192, 46.524], - [8.186, 46.522], - [8.175, 46.525], - [8.175, 46.533], - [8.151, 46.533], - [8.133, 46.538], - [8.127, 46.538], - [8.115, 46.548], - [8.086, 46.553], - [8.078, 46.557], - [8.065, 46.554], - [8.062, 46.552], - [8.055, 46.557], - [8.043, 46.558], - [8.032, 46.564], - [8.016, 46.564], - [8.001, 46.559], - [7.994, 46.558], - [7.987, 46.549], - [7.981, 46.549], - [7.971, 46.546], - [7.963, 46.538], - [7.974, 46.526], - [7.971, 46.518], - [7.958, 46.51], - [7.944, 46.509], - [7.936, 46.505], - [7.934, 46.499], - [7.924, 46.496], - [7.924, 46.493], - [7.916, 46.492], - [7.913, 46.488], - [7.907, 46.488], - [7.897, 46.484], - [7.871, 46.479], - [7.863, 46.479], - [7.842, 46.478], - [7.829, 46.472], - [7.826, 46.468], - [7.799, 46.46], - [7.787, 46.453], - [7.779, 46.445], - [7.767, 46.441], - [7.762, 46.437], - [7.733, 46.423], - [7.723, 46.422], - [7.717, 46.416], - [7.711, 46.415], - [7.698, 46.421], - [7.694, 46.426], - [7.636, 46.442], - [7.627, 46.446], - [7.619, 46.439], - [7.61, 46.438], - [7.611, 46.43], - [7.605, 46.424], - [7.6, 46.424], - [7.601, 46.418], - [7.597, 46.412], - [7.577, 46.418], - [7.563, 46.414], - [7.556, 46.415], - [7.536, 46.411], - [7.53, 46.402], - [7.542, 46.396], - [7.548, 46.395], - [7.556, 46.39], - [7.542, 46.385], - [7.54, 46.379], - [7.528, 46.376], - [7.508, 46.377], - [7.503, 46.371], - [7.486, 46.373], - [7.487, 46.378], - [7.482, 46.385], - [7.474, 46.385], - [7.47, 46.379], - [7.464, 46.379], - [7.456, 46.384], - [7.444, 46.384], - [7.439, 46.387], - [7.428, 46.382], - [7.418, 46.382], - [7.404, 46.377], - [7.4, 46.378], - [7.375, 46.362], - [7.364, 46.358], - [7.356, 46.352], - [7.349, 46.352], - [7.339, 46.348], - [7.316, 46.345], - [7.309, 46.354], - [7.309, 46.36], - [7.313, 46.365], - [7.311, 46.376], - [7.3, 46.368], - [7.291, 46.368], - [7.263, 46.359], - [7.262, 46.338], - [7.255, 46.332], - [7.247, 46.329], - [7.234, 46.328], - [7.222, 46.33] - ], - [ - [7.216, 46.931], - [7.219, 46.926], - [7.235, 46.931], - [7.236, 46.94], - [7.218, 46.934], - [7.216, 46.931] - ], - [ - [7.675, 47.155], - [7.691, 47.154], - [7.695, 47.159], - [7.701, 47.163], - [7.696, 47.163], - [7.689, 47.168], - [7.679, 47.163], - [7.675, 47.155] - ] - ], - [ - [ - [7.559, 47.324], - [7.532, 47.322], - [7.528, 47.324], - [7.536, 47.336], - [7.548, 47.342], - [7.553, 47.346], - [7.561, 47.344], - [7.573, 47.33], - [7.57, 47.325], - [7.559, 47.324] - ] - ], - [ - [ - [7.114, 46.912], - [7.115, 46.917], - [7.126, 46.92], - [7.135, 46.921], - [7.135, 46.909], - [7.12, 46.902], - [7.118, 46.909], - [7.114, 46.912] - ] - ], - [ - [ - [7.084, 46.897], - [7.092, 46.905], - [7.098, 46.901], - [7.104, 46.901], - [7.091, 46.893], - [7.084, 46.895], - [7.084, 46.897] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5997", - "properties": { - "name": "Fribourg", - "ISOCODE": "CH-FR", - "density": 0, - "path": "/world/Switzerland/Fribourg" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [7.238, 46.555], - [7.226, 46.55], - [7.216, 46.54], - [7.208, 46.534], - [7.202, 46.543], - [7.193, 46.548], - [7.183, 46.539], - [7.16, 46.528], - [7.149, 46.53], - [7.141, 46.521], - [7.137, 46.51], - [7.124, 46.5], - [7.111, 46.496], - [7.106, 46.49], - [7.09, 46.488], - [7.078, 46.49], - [7.073, 46.488], - [7.066, 46.49], - [7.052, 46.483], - [7.04, 46.476], - [7.021, 46.461], - [7.019, 46.448], - [7.013, 46.448], - [6.996, 46.441], - [6.984, 46.44], - [6.993, 46.45], - [6.99, 46.454], - [6.98, 46.462], - [6.979, 46.475], - [6.982, 46.477], - [6.974, 46.482], - [6.973, 46.492], - [6.966, 46.494], - [6.955, 46.503], - [6.934, 46.503], - [6.926, 46.509], - [6.911, 46.513], - [6.902, 46.514], - [6.896, 46.509], - [6.899, 46.516], - [6.897, 46.522], - [6.883, 46.514], - [6.865, 46.5], - [6.863, 46.495], - [6.849, 46.495], - [6.839, 46.501], - [6.833, 46.506], - [6.831, 46.513], - [6.825, 46.513], - [6.811, 46.526], - [6.818, 46.533], - [6.819, 46.538], - [6.826, 46.543], - [6.826, 46.539], - [6.841, 46.539], - [6.853, 46.543], - [6.86, 46.537], - [6.859, 46.532], - [6.869, 46.543], - [6.888, 46.558], - [6.903, 46.562], - [6.899, 46.572], - [6.889, 46.569], - [6.885, 46.563], - [6.88, 46.568], - [6.875, 46.566], - [6.869, 46.577], - [6.86, 46.581], - [6.847, 46.585], - [6.835, 46.577], - [6.824, 46.578], - [6.821, 46.585], - [6.815, 46.587], - [6.814, 46.579], - [6.806, 46.579], - [6.804, 46.576], - [6.795, 46.577], - [6.8, 46.584], - [6.801, 46.593], - [6.799, 46.601], - [6.802, 46.602], - [6.804, 46.61], - [6.804, 46.622], - [6.801, 46.631], - [6.798, 46.634], - [6.8, 46.641], - [6.804, 46.647], - [6.8, 46.649], - [6.808, 46.652], - [6.819, 46.649], - [6.827, 46.66], - [6.834, 46.664], - [6.845, 46.662], - [6.843, 46.66], - [6.855, 46.657], - [6.86, 46.661], - [6.869, 46.662], - [6.865, 46.666], - [6.873, 46.674], - [6.865, 46.678], - [6.863, 46.682], - [6.869, 46.687], - [6.874, 46.684], - [6.882, 46.691], - [6.89, 46.695], - [6.895, 46.702], - [6.893, 46.704], - [6.905, 46.715], - [6.918, 46.72], - [6.931, 46.731], - [6.942, 46.747], - [6.932, 46.755], - [6.922, 46.753], - [6.918, 46.755], - [6.909, 46.756], - [6.909, 46.758], - [6.915, 46.764], - [6.921, 46.761], - [6.936, 46.773], - [6.933, 46.776], - [6.939, 46.783], - [6.947, 46.786], - [6.951, 46.784], - [6.958, 46.789], - [6.957, 46.795], - [6.967, 46.804], - [6.958, 46.812], - [6.958, 46.821], - [6.966, 46.83], - [6.973, 46.825], - [6.986, 46.823], - [6.993, 46.832], - [6.987, 46.836], - [6.99, 46.845], - [6.983, 46.847], - [6.978, 46.851], - [6.982, 46.859], - [6.978, 46.862], - [6.98, 46.867], - [6.99, 46.875], - [6.974, 46.888], - [6.958, 46.883], - [6.97, 46.869], - [6.965, 46.867], - [6.947, 46.884], - [6.942, 46.885], - [6.939, 46.891], - [6.924, 46.896], - [6.931, 46.901], - [6.922, 46.907], - [6.897, 46.927], - [6.929, 46.954], - [6.961, 46.93], - [6.965, 46.926], - [6.975, 46.923], - [6.979, 46.925], - [6.988, 46.919], - [6.983, 46.915], - [6.982, 46.911], - [6.997, 46.899], - [7.01, 46.89], - [6.994, 46.88], - [7.001, 46.875], - [7.009, 46.874], - [7.016, 46.878], - [7.017, 46.882], - [7.022, 46.878], - [7.026, 46.879], - [7.036, 46.874], - [7.031, 46.868], - [7.039, 46.86], - [7.034, 46.858], - [7.031, 46.851], - [7.038, 46.847], - [7.043, 46.848], - [7.05, 46.856], - [7.054, 46.857], - [7.063, 46.868], - [7.071, 46.873], - [7.07, 46.878], - [7.062, 46.881], - [7.062, 46.885], - [7.084, 46.897], - [7.084, 46.895], - [7.091, 46.893], - [7.104, 46.901], - [7.098, 46.901], - [7.092, 46.905], - [7.089, 46.91], - [7.059, 46.94], - [7.062, 46.943], - [7.061, 46.957], - [7.058, 46.961], - [7.063, 46.972], - [7.052, 46.979], - [7.041, 46.981], - [7.041, 46.981], - [7.059, 46.978], - [7.093, 46.977], - [7.15, 46.987], - [7.157, 46.987], - [7.202, 47.003], - [7.206, 47.008], - [7.211, 47.005], - [7.218, 47.007], - [7.224, 46.999], - [7.223, 46.994], - [7.236, 46.988], - [7.229, 46.979], - [7.215, 46.972], - [7.215, 46.968], - [7.208, 46.969], - [7.208, 46.965], - [7.197, 46.965], - [7.201, 46.96], - [7.208, 46.961], - [7.212, 46.958], - [7.209, 46.95], - [7.21, 46.943], - [7.204, 46.942], - [7.213, 46.93], - [7.208, 46.926], - [7.207, 46.916], - [7.209, 46.91], - [7.199, 46.905], - [7.189, 46.902], - [7.196, 46.9], - [7.201, 46.904], - [7.213, 46.903], - [7.218, 46.898], - [7.223, 46.903], - [7.23, 46.905], - [7.237, 46.899], - [7.245, 46.902], - [7.262, 46.898], - [7.267, 46.895], - [7.283, 46.891], - [7.287, 46.894], - [7.296, 46.895], - [7.312, 46.893], - [7.328, 46.895], - [7.349, 46.891], - [7.354, 46.888], - [7.353, 46.878], - [7.359, 46.87], - [7.36, 46.864], - [7.35, 46.855], - [7.339, 46.851], - [7.335, 46.854], - [7.327, 46.853], - [7.323, 46.856], - [7.331, 46.859], - [7.325, 46.862], - [7.313, 46.862], - [7.313, 46.857], - [7.303, 46.853], - [7.308, 46.848], - [7.324, 46.842], - [7.331, 46.836], - [7.331, 46.831], - [7.321, 46.828], - [7.321, 46.817], - [7.311, 46.809], - [7.308, 46.799], - [7.302, 46.794], - [7.306, 46.785], - [7.292, 46.775], - [7.297, 46.766], - [7.304, 46.761], - [7.305, 46.747], - [7.299, 46.741], - [7.297, 46.728], - [7.309, 46.718], - [7.311, 46.719], - [7.33, 46.717], - [7.35, 46.714], - [7.35, 46.707], - [7.348, 46.7], - [7.364, 46.701], - [7.369, 46.694], - [7.378, 46.694], - [7.381, 46.691], - [7.377, 46.689], - [7.378, 46.685], - [7.374, 46.681], - [7.377, 46.676], - [7.37, 46.657], - [7.378, 46.658], - [7.359, 46.645], - [7.351, 46.65], - [7.351, 46.653], - [7.346, 46.657], - [7.322, 46.656], - [7.331, 46.643], - [7.323, 46.639], - [7.314, 46.638], - [7.313, 46.623], - [7.319, 46.62], - [7.316, 46.602], - [7.321, 46.593], - [7.313, 46.59], - [7.309, 46.583], - [7.299, 46.58], - [7.282, 46.585], - [7.268, 46.575], - [7.264, 46.569], - [7.256, 46.561], - [7.245, 46.556], - [7.238, 46.555] - ], - [ - [7.114, 46.912], - [7.118, 46.909], - [7.12, 46.902], - [7.135, 46.909], - [7.135, 46.921], - [7.126, 46.92], - [7.115, 46.917], - [7.114, 46.912] - ] - ], - [ - [ - [6.866, 46.911], - [6.89, 46.889], - [6.908, 46.88], - [6.912, 46.882], - [6.922, 46.872], - [6.912, 46.868], - [6.91, 46.871], - [6.892, 46.866], - [6.897, 46.862], - [6.914, 46.867], - [6.928, 46.856], - [6.932, 46.855], - [6.921, 46.849], - [6.908, 46.835], - [6.906, 46.826], - [6.912, 46.814], - [6.906, 46.807], - [6.912, 46.804], - [6.921, 46.812], - [6.933, 46.806], - [6.922, 46.798], - [6.917, 46.79], - [6.918, 46.786], - [6.912, 46.781], - [6.908, 46.785], - [6.895, 46.778], - [6.889, 46.779], - [6.88, 46.776], - [6.865, 46.782], - [6.859, 46.789], - [6.85, 46.785], - [6.844, 46.78], - [6.84, 46.782], - [6.834, 46.776], - [6.829, 46.778], - [6.826, 46.774], - [6.815, 46.78], - [6.806, 46.787], - [6.798, 46.784], - [6.784, 46.795], - [6.778, 46.79], - [6.779, 46.795], - [6.788, 46.801], - [6.785, 46.804], - [6.78, 46.802], - [6.743, 46.829], - [6.781, 46.854], - [6.866, 46.911] - ] - ], - [ - [ - [6.788, 46.73], - [6.794, 46.737], - [6.798, 46.735], - [6.817, 46.739], - [6.816, 46.742], - [6.831, 46.755], - [6.83, 46.757], - [6.846, 46.767], - [6.85, 46.776], - [6.853, 46.775], - [6.863, 46.765], - [6.878, 46.757], - [6.883, 46.751], - [6.866, 46.734], - [6.869, 46.73], - [6.865, 46.726], - [6.847, 46.729], - [6.833, 46.736], - [6.818, 46.735], - [6.812, 46.729], - [6.794, 46.727], - [6.788, 46.73] - ] - ], - [ - [ - [6.749, 46.733], - [6.753, 46.738], - [6.759, 46.739], - [6.77, 46.747], - [6.774, 46.753], - [6.786, 46.749], - [6.784, 46.734], - [6.778, 46.73], - [6.778, 46.727], - [6.771, 46.722], - [6.763, 46.718], - [6.759, 46.727], - [6.749, 46.733] - ] - ], - [ - [ - [7.216, 46.931], - [7.218, 46.934], - [7.236, 46.94], - [7.235, 46.931], - [7.219, 46.926], - [7.216, 46.931] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6012", - "properties": { - "name": "Genève", - "ISOCODE": "CH-GE", - "density": 0, - "path": "/world/Switzerland/Genève" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [6.22, 46.313], - [6.25, 46.303], - [6.249, 46.295], - [6.252, 46.289], - [6.242, 46.286], - [6.238, 46.277], - [6.244, 46.274], - [6.25, 46.263], - [6.262, 46.256], - [6.261, 46.253], - [6.267, 46.249], - [6.28, 46.253], - [6.296, 46.266], - [6.296, 46.257], - [6.303, 46.256], - [6.311, 46.258], - [6.306, 46.252], - [6.31, 46.251], - [6.311, 46.245], - [6.295, 46.226], - [6.278, 46.217], - [6.256, 46.211], - [6.248, 46.206], - [6.236, 46.208], - [6.219, 46.2], - [6.213, 46.194], - [6.206, 46.193], - [6.198, 46.184], - [6.189, 46.183], - [6.187, 46.176], - [6.189, 46.167], - [6.175, 46.159], - [6.169, 46.158], - [6.149, 46.151], - [6.146, 46.146], - [6.13, 46.141], - [6.119, 46.144], - [6.099, 46.145], - [6.093, 46.153], - [6.076, 46.15], - [6.073, 46.151], - [6.052, 46.153], - [6.046, 46.141], - [6.043, 46.143], - [6.035, 46.136], - [6.034, 46.14], - [6.018, 46.144], - [6.003, 46.143], - [5.995, 46.146], - [5.984, 46.144], - [5.982, 46.139], - [5.977, 46.134], - [5.958, 46.13], - [5.958, 46.135], - [5.966, 46.138], - [5.964, 46.146], - [5.981, 46.168], - [5.984, 46.175], - [5.989, 46.172], - [5.991, 46.179], - [5.996, 46.183], - [5.993, 46.188], - [5.983, 46.192], - [5.964, 46.198], - [5.974, 46.204], - [5.97, 46.208], - [5.975, 46.216], - [5.981, 46.218], - [5.993, 46.216], - [5.991, 46.223], - [6, 46.221], - [6.007, 46.225], - [6.007, 46.228], - [6.013, 46.232], - [6.026, 46.234], - [6.034, 46.24], - [6.046, 46.232], - [6.055, 46.242], - [6.064, 46.247], - [6.068, 46.243], - [6.074, 46.242], - [6.088, 46.248], - [6.102, 46.239], - [6.11, 46.241], - [6.125, 46.252], - [6.123, 46.259], - [6.11, 46.272], - [6.114, 46.274], - [6.104, 46.28], - [6.103, 46.286], - [6.115, 46.296], - [6.12, 46.296], - [6.12, 46.314], - [6.126, 46.318], - [6.126, 46.318], - [6.141, 46.306], - [6.154, 46.3], - [6.171, 46.296], - [6.199, 46.286], - [6.22, 46.313] - ] - ], - [ - [ - [6.172, 46.36], - [6.181, 46.366], - [6.189, 46.361], - [6.197, 46.362], - [6.201, 46.357], - [6.208, 46.356], - [6.242, 46.345], - [6.232, 46.332], - [6.194, 46.345], - [6.195, 46.35], - [6.187, 46.351], - [6.175, 46.355], - [6.172, 46.36] - ] - ], - [ - [ - [6.168, 46.344], - [6.176, 46.353], - [6.185, 46.347], - [6.182, 46.345], - [6.175, 46.348], - [6.172, 46.342], - [6.168, 46.344] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5995", - "properties": { - "name": "Glarus", - "ISOCODE": "CH-GL", - "density": 0, - "path": "/world/Switzerland/Glarus" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.878, 46.814], - [8.877, 46.817], - [8.881, 46.821], - [8.883, 46.83], - [8.875, 46.836], - [8.874, 46.843], - [8.889, 46.849], - [8.897, 46.851], - [8.91, 46.862], - [8.917, 46.861], - [8.934, 46.867], - [8.944, 46.872], - [8.957, 46.877], - [8.958, 46.889], - [8.954, 46.899], - [8.944, 46.907], - [8.936, 46.921], - [8.949, 46.927], - [8.963, 46.928], - [8.956, 46.94], - [8.962, 46.949], - [8.963, 46.954], - [8.973, 46.96], - [8.958, 46.963], - [8.951, 46.968], - [8.947, 46.968], - [8.933, 46.983], - [8.942, 46.986], - [8.933, 46.992], - [8.93, 46.998], - [8.918, 47.005], - [8.913, 47.01], - [8.912, 47.018], - [8.894, 47.025], - [8.905, 47.028], - [8.901, 47.038], - [8.915, 47.041], - [8.924, 47.04], - [8.938, 47.045], - [8.942, 47.049], - [8.949, 47.051], - [8.95, 47.058], - [8.966, 47.079], - [8.974, 47.086], - [8.955, 47.093], - [8.961, 47.102], - [8.972, 47.105], - [8.97, 47.11], - [8.975, 47.116], - [8.966, 47.123], - [8.97, 47.131], - [8.968, 47.138], - [8.976, 47.145], - [8.994, 47.165], - [9.006, 47.175], - [9.009, 47.174], - [9.059, 47.138], - [9.07, 47.131], - [9.096, 47.133], - [9.103, 47.134], - [9.11, 47.132], - [9.117, 47.134], - [9.137, 47.133], - [9.149, 47.13], - [9.191, 47.125], - [9.191, 47.111], - [9.187, 47.098], - [9.191, 47.092], - [9.19, 47.086], - [9.193, 47.074], - [9.185, 47.061], - [9.169, 47.051], - [9.155, 47.048], - [9.139, 47.04], - [9.158, 47.031], - [9.169, 47.028], - [9.175, 47.03], - [9.181, 47.027], - [9.203, 47.036], - [9.208, 47.037], - [9.221, 47.034], - [9.231, 47.027], - [9.238, 47.025], - [9.243, 47.017], - [9.243, 47.01], - [9.251, 46.999], - [9.247, 46.993], - [9.248, 46.988], - [9.244, 46.983], - [9.248, 46.98], - [9.244, 46.966], - [9.248, 46.96], - [9.238, 46.956], - [9.238, 46.946], - [9.24, 46.941], - [9.252, 46.936], - [9.253, 46.928], - [9.25, 46.917], - [9.241, 46.909], - [9.227, 46.907], - [9.223, 46.9], - [9.215, 46.893], - [9.207, 46.888], - [9.201, 46.882], - [9.189, 46.878], - [9.178, 46.88], - [9.154, 46.881], - [9.158, 46.875], - [9.15, 46.873], - [9.142, 46.863], - [9.129, 46.86], - [9.114, 46.852], - [9.106, 46.854], - [9.105, 46.861], - [9.096, 46.869], - [9.096, 46.872], - [9.077, 46.877], - [9.066, 46.877], - [9.056, 46.869], - [9.047, 46.867], - [9.045, 46.857], - [9.047, 46.852], - [9.04, 46.848], - [9.034, 46.84], - [9.035, 46.836], - [9.028, 46.831], - [9.021, 46.819], - [9.01, 46.812], - [8.992, 46.81], - [8.954, 46.806], - [8.941, 46.8], - [8.93, 46.799], - [8.918, 46.8], - [8.914, 46.803], - [8.915, 46.812], - [8.909, 46.811], - [8.9, 46.815], - [8.878, 46.814] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6005", - "properties": { - "name": "Graubünden", - "ISOCODE": "CH-GR", - "density": 0, - "path": "/world/Switzerland/Graubünden" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.679, 46.58], - [8.683, 46.59], - [8.682, 46.596], - [8.678, 46.6], - [8.681, 46.606], - [8.679, 46.617], - [8.678, 46.621], - [8.669, 46.621], - [8.659, 46.627], - [8.658, 46.633], - [8.652, 46.635], - [8.659, 46.643], - [8.659, 46.649], - [8.655, 46.651], - [8.662, 46.657], - [8.667, 46.657], - [8.679, 46.666], - [8.675, 46.672], - [8.676, 46.685], - [8.675, 46.693], - [8.682, 46.696], - [8.688, 46.695], - [8.694, 46.703], - [8.701, 46.705], - [8.71, 46.7], - [8.718, 46.704], - [8.718, 46.707], - [8.728, 46.709], - [8.75, 46.722], - [8.745, 46.73], - [8.748, 46.737], - [8.767, 46.746], - [8.771, 46.746], - [8.778, 46.734], - [8.783, 46.729], - [8.792, 46.732], - [8.8, 46.733], - [8.814, 46.738], - [8.811, 46.746], - [8.815, 46.75], - [8.815, 46.756], - [8.82, 46.764], - [8.826, 46.767], - [8.832, 46.765], - [8.835, 46.768], - [8.831, 46.772], - [8.828, 46.788], - [8.829, 46.794], - [8.835, 46.796], - [8.849, 46.795], - [8.848, 46.799], - [8.854, 46.801], - [8.861, 46.807], - [8.87, 46.808], - [8.878, 46.814], - [8.9, 46.815], - [8.909, 46.811], - [8.915, 46.812], - [8.914, 46.803], - [8.918, 46.8], - [8.93, 46.799], - [8.941, 46.8], - [8.954, 46.806], - [8.992, 46.81], - [9.01, 46.812], - [9.021, 46.819], - [9.028, 46.831], - [9.035, 46.836], - [9.034, 46.84], - [9.04, 46.848], - [9.047, 46.852], - [9.045, 46.857], - [9.047, 46.867], - [9.056, 46.869], - [9.066, 46.877], - [9.077, 46.877], - [9.096, 46.872], - [9.096, 46.869], - [9.105, 46.861], - [9.106, 46.854], - [9.114, 46.852], - [9.129, 46.86], - [9.142, 46.863], - [9.15, 46.873], - [9.158, 46.875], - [9.154, 46.881], - [9.178, 46.88], - [9.189, 46.878], - [9.201, 46.882], - [9.207, 46.888], - [9.215, 46.893], - [9.223, 46.9], - [9.227, 46.907], - [9.241, 46.909], - [9.25, 46.917], - [9.258, 46.91], - [9.268, 46.904], - [9.275, 46.908], - [9.288, 46.906], - [9.294, 46.908], - [9.311, 46.907], - [9.323, 46.902], - [9.34, 46.903], - [9.344, 46.9], - [9.348, 46.901], - [9.367, 46.898], - [9.382, 46.899], - [9.395, 46.895], - [9.415, 46.892], - [9.434, 46.886], - [9.439, 46.881], - [9.45, 46.874], - [9.457, 46.881], - [9.455, 46.887], - [9.468, 46.887], - [9.471, 46.893], - [9.468, 46.901], - [9.477, 46.908], - [9.489, 46.914], - [9.48, 46.917], - [9.478, 46.922], - [9.487, 46.931], - [9.488, 46.937], - [9.498, 46.942], - [9.501, 46.951], - [9.507, 46.955], - [9.52, 46.957], - [9.518, 46.97], - [9.524, 46.974], - [9.543, 46.976], - [9.547, 46.978], - [9.52, 47.002], - [9.512, 47.011], - [9.507, 47.02], - [9.481, 47.046], - [9.477, 47.053], - [9.483, 47.058], - [9.487, 47.05], - [9.492, 47.058], - [9.501, 47.056], - [9.513, 47.058], - [9.518, 47.061], - [9.541, 47.066], - [9.555, 47.058], - [9.558, 47.05], - [9.577, 47.055], - [9.583, 47.054], - [9.601, 47.06], - [9.605, 47.063], - [9.624, 47.054], - [9.634, 47.052], - [9.642, 47.055], - [9.646, 47.061], - [9.66, 47.059], - [9.683, 47.063], - [9.683, 47.06], - [9.699, 47.054], - [9.709, 47.055], - [9.709, 47.049], - [9.72, 47.045], - [9.728, 47.045], - [9.746, 47.043], - [9.749, 47.038], - [9.777, 47.04], - [9.791, 47.036], - [9.792, 47.033], - [9.814, 47.023], - [9.817, 47.024], - [9.837, 47.014], - [9.842, 47.016], - [9.854, 47.017], - [9.861, 47.024], - [9.878, 47.022], - [9.882, 47.018], - [9.872, 47.014], - [9.875, 47.008], - [9.889, 47.002], - [9.893, 46.99], - [9.885, 46.984], - [9.886, 46.982], - [9.876, 46.975], - [9.876, 46.968], - [9.872, 46.964], - [9.88, 46.957], - [9.876, 46.952], - [9.878, 46.942], - [9.882, 46.942], - [9.877, 46.936], - [9.895, 46.933], - [9.901, 46.929], - [9.909, 46.926], - [9.913, 46.927], - [9.924, 46.919], - [9.939, 46.915], - [9.948, 46.914], - [9.96, 46.917], - [9.964, 46.914], - [9.979, 46.917], - [9.984, 46.907], - [10.004, 46.9], - [10.02, 46.903], - [10.027, 46.897], - [10.036, 46.888], - [10.042, 46.885], - [10.044, 46.882], - [10.053, 46.878], - [10.052, 46.865], - [10.057, 46.863], - [10.076, 46.863], - [10.089, 46.862], - [10.094, 46.859], - [10.093, 46.852], - [10.106, 46.842], - [10.12, 46.845], - [10.125, 46.849], - [10.141, 46.848], - [10.146, 46.852], - [10.16, 46.849], - [10.17, 46.852], - [10.173, 46.855], - [10.179, 46.855], - [10.195, 46.868], - [10.211, 46.866], - [10.219, 46.869], - [10.234, 46.868], - [10.233, 46.876], - [10.236, 46.886], - [10.228, 46.892], - [10.228, 46.898], - [10.235, 46.904], - [10.238, 46.917], - [10.243, 46.92], - [10.242, 46.932], - [10.268, 46.93], - [10.291, 46.924], - [10.298, 46.921], - [10.302, 46.926], - [10.317, 46.927], - [10.318, 46.931], - [10.307, 46.942], - [10.311, 46.951], - [10.326, 46.953], - [10.331, 46.96], - [10.331, 46.966], - [10.336, 46.974], - [10.346, 46.984], - [10.348, 46.991], - [10.356, 46.993], - [10.374, 46.992], - [10.386, 47.001], - [10.391, 47.002], - [10.4, 46.998], - [10.403, 46.992], - [10.414, 46.984], - [10.429, 46.976], - [10.424, 46.961], - [10.43, 46.957], - [10.453, 46.953], - [10.469, 46.949], - [10.478, 46.942], - [10.49, 46.939], - [10.487, 46.933], - [10.49, 46.927], - [10.488, 46.916], - [10.479, 46.912], - [10.477, 46.903], - [10.477, 46.895], - [10.466, 46.885], - [10.471, 46.882], - [10.473, 46.874], - [10.469, 46.863], - [10.473, 46.85], - [10.465, 46.843], - [10.468, 46.837], - [10.458, 46.832], - [10.461, 46.826], - [10.457, 46.823], - [10.459, 46.818], - [10.452, 46.805], - [10.44, 46.799], - [10.431, 46.798], - [10.429, 46.793], - [10.424, 46.789], - [10.435, 46.783], - [10.443, 46.773], - [10.446, 46.761], - [10.443, 46.753], - [10.437, 46.754], - [10.413, 46.74], - [10.402, 46.735], - [10.409, 46.73], - [10.415, 46.722], - [10.42, 46.72], - [10.417, 46.71], - [10.411, 46.706], - [10.404, 46.707], - [10.395, 46.69], - [10.385, 46.689], - [10.386, 46.684], - [10.394, 46.672], - [10.392, 46.669], - [10.394, 46.656], - [10.402, 46.647], - [10.403, 46.638], - [10.41, 46.636], - [10.421, 46.64], - [10.444, 46.641], - [10.448, 46.643], - [10.464, 46.634], - [10.493, 46.614], - [10.485, 46.606], - [10.488, 46.602], - [10.486, 46.592], - [10.489, 46.591], - [10.484, 46.583], - [10.486, 46.578], - [10.478, 46.573], - [10.476, 46.564], - [10.478, 46.56], - [10.473, 46.55], - [10.473, 46.545], - [10.46, 46.542], - [10.46, 46.538], - [10.454, 46.532], - [10.438, 46.539], - [10.435, 46.542], - [10.42, 46.552], - [10.41, 46.55], - [10.4, 46.545], - [10.364, 46.557], - [10.353, 46.557], - [10.35, 46.55], - [10.344, 46.545], - [10.338, 46.544], - [10.327, 46.553], - [10.314, 46.548], - [10.31, 46.55], - [10.301, 46.55], - [10.296, 46.553], - [10.297, 46.56], - [10.292, 46.565], - [10.288, 46.572], - [10.277, 46.574], - [10.271, 46.579], - [10.265, 46.578], - [10.253, 46.573], - [10.246, 46.579], - [10.243, 46.59], - [10.25, 46.602], - [10.26, 46.612], - [10.246, 46.623], - [10.242, 46.628], - [10.242, 46.636], - [10.23, 46.633], - [10.224, 46.629], - [10.217, 46.618], - [10.207, 46.622], - [10.195, 46.624], - [10.194, 46.627], - [10.184, 46.625], - [10.164, 46.617], - [10.155, 46.616], - [10.138, 46.609], - [10.129, 46.606], - [10.12, 46.607], - [10.103, 46.612], - [10.1, 46.607], - [10.103, 46.602], - [10.098, 46.594], - [10.102, 46.59], - [10.102, 46.584], - [10.097, 46.578], - [10.08, 46.576], - [10.086, 46.569], - [10.079, 46.562], - [10.072, 46.559], - [10.069, 46.551], - [10.063, 46.547], - [10.048, 46.545], - [10.045, 46.541], - [10.047, 46.536], - [10.054, 46.534], - [10.052, 46.529], - [10.055, 46.519], - [10.052, 46.514], - [10.044, 46.511], - [10.045, 46.505], - [10.05, 46.501], - [10.046, 46.492], - [10.05, 46.489], - [10.044, 46.48], - [10.052, 46.473], - [10.054, 46.462], - [10.048, 46.458], - [10.04, 46.448], - [10.045, 46.443], - [10.054, 46.441], - [10.057, 46.442], - [10.06, 46.431], - [10.066, 46.427], - [10.075, 46.43], - [10.081, 46.428], - [10.081, 46.422], - [10.091, 46.424], - [10.103, 46.423], - [10.11, 46.429], - [10.118, 46.427], - [10.12, 46.43], - [10.13, 46.433], - [10.134, 46.43], - [10.143, 46.429], - [10.149, 46.424], - [10.15, 46.414], - [10.158, 46.417], - [10.168, 46.408], - [10.163, 46.402], - [10.165, 46.392], - [10.16, 46.387], - [10.143, 46.387], - [10.129, 46.379], - [10.127, 46.373], - [10.13, 46.362], - [10.121, 46.359], - [10.114, 46.354], - [10.111, 46.354], - [10.11, 46.345], - [10.107, 46.343], - [10.106, 46.334], - [10.115, 46.322], - [10.118, 46.315], - [10.139, 46.306], - [10.139, 46.302], - [10.147, 46.297], - [10.154, 46.295], - [10.158, 46.29], - [10.155, 46.287], - [10.164, 46.284], - [10.165, 46.273], - [10.174, 46.267], - [10.178, 46.26], - [10.176, 46.256], - [10.152, 46.241], - [10.147, 46.231], - [10.133, 46.226], - [10.125, 46.225], - [10.11, 46.227], - [10.104, 46.23], - [10.09, 46.229], - [10.082, 46.227], - [10.072, 46.218], - [10.064, 46.221], - [10.06, 46.226], - [10.045, 46.231], - [10.055, 46.237], - [10.055, 46.243], - [10.062, 46.249], - [10.057, 46.267], - [10.046, 46.271], - [10.032, 46.278], - [10.011, 46.282], - [9.998, 46.286], - [9.993, 46.298], - [9.998, 46.299], - [10.003, 46.304], - [9.998, 46.309], - [10, 46.315], - [9.996, 46.315], - [9.987, 46.322], - [9.981, 46.324], - [9.987, 46.335], - [9.997, 46.343], - [9.995, 46.354], - [9.986, 46.353], - [9.979, 46.358], - [9.965, 46.365], - [9.957, 46.375], - [9.959, 46.38], - [9.954, 46.381], - [9.936, 46.376], - [9.931, 46.373], - [9.933, 46.369], - [9.927, 46.367], - [9.924, 46.371], - [9.918, 46.371], - [9.908, 46.382], - [9.888, 46.374], - [9.882, 46.37], - [9.87, 46.363], - [9.867, 46.366], - [9.847, 46.363], - [9.835, 46.362], - [9.82, 46.351], - [9.81, 46.35], - [9.802, 46.345], - [9.786, 46.342], - [9.78, 46.336], - [9.771, 46.337], - [9.763, 46.341], - [9.757, 46.347], - [9.748, 46.349], - [9.745, 46.353], - [9.738, 46.352], - [9.724, 46.342], - [9.728, 46.334], - [9.719, 46.326], - [9.719, 46.323], - [9.728, 46.321], - [9.726, 46.311], - [9.719, 46.307], - [9.716, 46.294], - [9.703, 46.292], - [9.69, 46.295], - [9.682, 46.298], - [9.677, 46.304], - [9.671, 46.301], - [9.671, 46.298], - [9.661, 46.297], - [9.651, 46.293], - [9.651, 46.291], - [9.636, 46.287], - [9.625, 46.289], - [9.62, 46.288], - [9.612, 46.294], - [9.601, 46.297], - [9.579, 46.297], - [9.574, 46.3], - [9.557, 46.308], - [9.55, 46.303], - [9.532, 46.315], - [9.515, 46.334], - [9.51, 46.346], - [9.509, 46.353], - [9.501, 46.359], - [9.496, 46.366], - [9.483, 46.369], - [9.466, 46.375], - [9.462, 46.378], - [9.465, 46.384], - [9.469, 46.39], - [9.467, 46.393], - [9.466, 46.406], - [9.463, 46.413], - [9.455, 46.42], - [9.458, 46.439], - [9.462, 46.443], - [9.46, 46.458], - [9.46, 46.465], - [9.467, 46.471], - [9.463, 46.482], - [9.451, 46.481], - [9.45, 46.486], - [9.462, 46.486], - [9.463, 46.499], - [9.46, 46.51], - [9.456, 46.506], - [9.435, 46.499], - [9.426, 46.49], - [9.426, 46.478], - [9.414, 46.468], - [9.41, 46.468], - [9.392, 46.474], - [9.386, 46.484], - [9.379, 46.485], - [9.371, 46.492], - [9.37, 46.496], - [9.375, 46.5], - [9.375, 46.505], - [9.363, 46.511], - [9.356, 46.505], - [9.34, 46.505], - [9.339, 46.507], - [9.313, 46.505], - [9.292, 46.499], - [9.284, 46.498], - [9.28, 46.489], - [9.275, 46.485], - [9.278, 46.481], - [9.275, 46.472], - [9.276, 46.464], - [9.279, 46.463], - [9.272, 46.455], - [9.264, 46.451], - [9.253, 46.451], - [9.248, 46.448], - [9.25, 46.432], - [9.271, 46.419], - [9.274, 46.421], - [9.281, 46.416], - [9.283, 46.406], - [9.282, 46.401], - [9.277, 46.396], - [9.285, 46.385], - [9.279, 46.38], - [9.276, 46.374], - [9.284, 46.359], - [9.297, 46.357], - [9.297, 46.351], - [9.301, 46.345], - [9.293, 46.337], - [9.295, 46.333], - [9.301, 46.329], - [9.297, 46.325], - [9.296, 46.319], - [9.286, 46.315], - [9.282, 46.31], - [9.286, 46.298], - [9.273, 46.291], - [9.269, 46.283], - [9.26, 46.279], - [9.258, 46.271], - [9.253, 46.268], - [9.253, 46.262], - [9.25, 46.257], - [9.253, 46.253], - [9.25, 46.235], - [9.238, 46.234], - [9.223, 46.23], - [9.224, 46.225], - [9.22, 46.215], - [9.215, 46.212], - [9.204, 46.21], - [9.196, 46.195], - [9.199, 46.188], - [9.195, 46.18], - [9.182, 46.17], - [9.172, 46.173], - [9.16, 46.171], - [9.155, 46.171], - [9.143, 46.179], - [9.137, 46.181], - [9.132, 46.19], - [9.12, 46.201], - [9.109, 46.207], - [9.09, 46.214], - [9.085, 46.222], - [9.081, 46.234], - [9.076, 46.233], - [9.072, 46.237], - [9.077, 46.239], - [9.079, 46.262], - [9.074, 46.269], - [9.064, 46.275], - [9.059, 46.282], - [9.054, 46.294], - [9.061, 46.299], - [9.07, 46.309], - [9.073, 46.31], - [9.076, 46.316], - [9.065, 46.326], - [9.071, 46.334], - [9.068, 46.337], - [9.071, 46.345], - [9.083, 46.35], - [9.089, 46.35], - [9.096, 46.365], - [9.094, 46.372], - [9.097, 46.374], - [9.091, 46.388], - [9.088, 46.39], - [9.097, 46.401], - [9.091, 46.406], - [9.103, 46.411], - [9.104, 46.415], - [9.096, 46.427], - [9.09, 46.433], - [9.088, 46.445], - [9.093, 46.45], - [9.096, 46.462], - [9.086, 46.472], - [9.086, 46.477], - [9.075, 46.481], - [9.062, 46.477], - [9.056, 46.478], - [9.047, 46.483], - [9.049, 46.485], - [9.042, 46.491], - [9.042, 46.495], - [9.033, 46.503], - [9.025, 46.509], - [9.023, 46.513], - [9.024, 46.52], - [9.022, 46.528], - [9.018, 46.533], - [9.022, 46.535], - [9.02, 46.549], - [9.025, 46.556], - [9.024, 46.559], - [9.03, 46.571], - [9.036, 46.576], - [9.038, 46.583], - [9.045, 46.585], - [9.042, 46.591], - [9.034, 46.595], - [9.035, 46.601], - [9.028, 46.6], - [9.017, 46.605], - [9.005, 46.612], - [8.996, 46.613], - [8.984, 46.61], - [8.974, 46.604], - [8.963, 46.604], - [8.961, 46.612], - [8.964, 46.619], - [8.959, 46.631], - [8.954, 46.633], - [8.952, 46.625], - [8.943, 46.62], - [8.926, 46.624], - [8.913, 46.62], - [8.907, 46.616], - [8.908, 46.608], - [8.918, 46.598], - [8.917, 46.594], - [8.905, 46.585], - [8.89, 46.58], - [8.88, 46.579], - [8.878, 46.576], - [8.864, 46.574], - [8.845, 46.564], - [8.831, 46.567], - [8.831, 46.573], - [8.802, 46.564], - [8.762, 46.575], - [8.751, 46.577], - [8.745, 46.573], - [8.728, 46.578], - [8.718, 46.572], - [8.706, 46.575], - [8.699, 46.582], - [8.679, 46.58] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6013", - "properties": { - "name": "Jura", - "ISOCODE": "CH-JU", - "density": 0, - "path": "/world/Switzerland/Jura" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [6.862, 47.167], - [6.859, 47.167], - [6.844, 47.168], - [6.841, 47.173], - [6.865, 47.182], - [6.868, 47.187], - [6.875, 47.187], - [6.875, 47.192], - [6.882, 47.202], - [6.908, 47.216], - [6.911, 47.219], - [6.922, 47.222], - [6.934, 47.232], - [6.942, 47.233], - [6.943, 47.239], - [6.957, 47.244], - [6.948, 47.252], - [6.947, 47.255], - [6.952, 47.261], - [6.953, 47.271], - [6.941, 47.288], - [6.95, 47.293], - [6.977, 47.294], - [6.977, 47.298], - [6.997, 47.297], - [7.005, 47.303], - [7.009, 47.302], - [7.017, 47.317], - [7.011, 47.326], - [7.036, 47.33], - [7.046, 47.328], - [7.058, 47.336], - [7.055, 47.339], - [7.061, 47.341], - [7.063, 47.345], - [7.051, 47.349], - [7.054, 47.353], - [7.049, 47.364], - [7.043, 47.366], - [7.036, 47.365], - [7.035, 47.371], - [7.021, 47.371], - [7.012, 47.374], - [7.008, 47.369], - [6.997, 47.365], - [6.985, 47.365], - [6.975, 47.362], - [6.967, 47.36], - [6.953, 47.361], - [6.944, 47.359], - [6.932, 47.359], - [6.925, 47.357], - [6.902, 47.361], - [6.888, 47.355], - [6.88, 47.354], - [6.88, 47.359], - [6.886, 47.369], - [6.884, 47.374], - [6.896, 47.381], - [6.906, 47.384], - [6.914, 47.389], - [6.91, 47.397], - [6.916, 47.399], - [6.918, 47.404], - [6.914, 47.406], - [6.939, 47.407], - [6.942, 47.417], - [6.941, 47.432], - [6.942, 47.435], - [6.956, 47.437], - [6.958, 47.435], - [6.967, 47.439], - [6.971, 47.448], - [6.982, 47.451], - [6.991, 47.449], - [7.003, 47.455], - [6.998, 47.458], - [7.002, 47.463], - [7.002, 47.468], - [6.992, 47.468], - [6.994, 47.472], - [6.987, 47.478], - [6.989, 47.488], - [6.987, 47.495], - [7.005, 47.502], - [7.021, 47.506], - [7.026, 47.505], - [7.037, 47.499], - [7.045, 47.5], - [7.053, 47.497], - [7.061, 47.497], - [7.072, 47.494], - [7.076, 47.489], - [7.095, 47.497], - [7.101, 47.496], - [7.114, 47.497], - [7.127, 47.504], - [7.139, 47.503], - [7.153, 47.498], - [7.163, 47.491], - [7.169, 47.491], - [7.186, 47.493], - [7.202, 47.496], - [7.204, 47.493], - [7.192, 47.49], - [7.182, 47.473], - [7.179, 47.469], - [7.18, 47.462], - [7.171, 47.444], - [7.193, 47.44], - [7.196, 47.437], - [7.207, 47.436], - [7.23, 47.441], - [7.239, 47.435], - [7.239, 47.43], - [7.247, 47.428], - [7.247, 47.421], - [7.256, 47.426], - [7.271, 47.429], - [7.282, 47.436], - [7.293, 47.435], - [7.304, 47.44], - [7.313, 47.439], - [7.328, 47.441], - [7.327, 47.433], - [7.34, 47.431], - [7.342, 47.428], - [7.356, 47.42], - [7.358, 47.416], - [7.377, 47.415], - [7.385, 47.414], - [7.389, 47.404], - [7.397, 47.405], - [7.4, 47.398], - [7.414, 47.396], - [7.417, 47.386], - [7.413, 47.382], - [7.434, 47.381], - [7.439, 47.382], - [7.462, 47.372], - [7.48, 47.373], - [7.488, 47.371], - [7.504, 47.373], - [7.525, 47.373], - [7.522, 47.366], - [7.541, 47.362], - [7.542, 47.356], - [7.54, 47.349], - [7.553, 47.346], - [7.548, 47.342], - [7.536, 47.336], - [7.528, 47.324], - [7.532, 47.322], - [7.559, 47.324], - [7.551, 47.321], - [7.531, 47.318], - [7.497, 47.303], - [7.487, 47.304], - [7.478, 47.308], - [7.46, 47.308], - [7.441, 47.31], - [7.423, 47.308], - [7.414, 47.311], - [7.413, 47.315], - [7.407, 47.314], - [7.381, 47.315], - [7.38, 47.316], - [7.366, 47.311], - [7.345, 47.307], - [7.338, 47.307], - [7.333, 47.301], - [7.325, 47.297], - [7.317, 47.292], - [7.306, 47.289], - [7.277, 47.286], - [7.262, 47.288], - [7.259, 47.287], - [7.242, 47.287], - [7.233, 47.289], - [7.224, 47.289], - [7.208, 47.292], - [7.21, 47.296], - [7.195, 47.297], - [7.164, 47.295], - [7.17, 47.292], - [7.166, 47.29], - [7.17, 47.287], - [7.169, 47.276], - [7.149, 47.27], - [7.147, 47.261], - [7.144, 47.257], - [7.15, 47.255], - [7.156, 47.249], - [7.14, 47.244], - [7.129, 47.246], - [7.112, 47.243], - [7.104, 47.244], - [7.097, 47.238], - [7.089, 47.238], - [7.086, 47.247], - [7.081, 47.245], - [7.08, 47.249], - [7.061, 47.244], - [7.057, 47.241], - [7.06, 47.233], - [7.048, 47.228], - [7.037, 47.215], - [7.031, 47.204], - [7.024, 47.197], - [6.997, 47.194], - [6.995, 47.188], - [6.987, 47.178], - [6.978, 47.176], - [6.971, 47.183], - [6.957, 47.182], - [6.953, 47.189], - [6.942, 47.186], - [6.939, 47.177], - [6.931, 47.171], - [6.915, 47.164], - [6.907, 47.158], - [6.884, 47.152], - [6.88, 47.156], - [6.873, 47.175], - [6.862, 47.167] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5990", - "properties": { - "name": "Luzern", - "ISOCODE": "CH-LU", - "density": 0, - "path": "/world/Switzerland/Luzern" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.047, 46.788], - [8.032, 46.792], - [8.021, 46.79], - [8.005, 46.784], - [7.997, 46.783], - [7.995, 46.78], - [7.986, 46.776], - [7.974, 46.779], - [7.969, 46.786], - [7.955, 46.793], - [7.955, 46.797], - [7.948, 46.806], - [7.923, 46.821], - [7.897, 46.832], - [7.878, 46.838], - [7.869, 46.851], - [7.87, 46.866], - [7.865, 46.871], - [7.858, 46.873], - [7.857, 46.882], - [7.86, 46.886], - [7.874, 46.891], - [7.874, 46.894], - [7.883, 46.905], - [7.881, 46.912], - [7.868, 46.916], - [7.875, 46.927], - [7.899, 46.936], - [7.913, 46.934], - [7.922, 46.943], - [7.923, 46.948], - [7.933, 46.953], - [7.934, 46.963], - [7.947, 46.97], - [7.945, 46.978], - [7.953, 46.982], - [7.949, 46.995], - [7.957, 47.004], - [7.951, 47.008], - [7.934, 47.006], - [7.926, 47.012], - [7.903, 47.008], - [7.898, 47.014], - [7.902, 47.019], - [7.895, 47.026], - [7.893, 47.032], - [7.885, 47.035], - [7.883, 47.041], - [7.875, 47.043], - [7.867, 47.055], - [7.877, 47.072], - [7.877, 47.074], - [7.883, 47.09], - [7.88, 47.097], - [7.874, 47.099], - [7.876, 47.111], - [7.869, 47.113], - [7.867, 47.118], - [7.87, 47.124], - [7.885, 47.129], - [7.891, 47.133], - [7.891, 47.142], - [7.881, 47.15], - [7.877, 47.157], - [7.877, 47.168], - [7.884, 47.173], - [7.877, 47.184], - [7.865, 47.19], - [7.861, 47.2], - [7.855, 47.204], - [7.85, 47.212], - [7.848, 47.219], - [7.838, 47.224], - [7.84, 47.236], - [7.84, 47.236], - [7.854, 47.234], - [7.868, 47.239], - [7.896, 47.244], - [7.911, 47.245], - [7.922, 47.239], - [7.934, 47.237], - [7.947, 47.244], - [7.963, 47.255], - [7.952, 47.267], - [7.95, 47.274], - [7.957, 47.278], - [7.972, 47.277], - [7.974, 47.276], - [7.988, 47.277], - [7.996, 47.283], - [8.006, 47.276], - [8.006, 47.271], - [8.018, 47.261], - [8.017, 47.245], - [8.03, 47.242], - [8.031, 47.243], - [8.052, 47.246], - [8.064, 47.249], - [8.058, 47.257], - [8.064, 47.258], - [8.072, 47.256], - [8.079, 47.261], - [8.089, 47.264], - [8.1, 47.262], - [8.107, 47.254], - [8.11, 47.246], - [8.12, 47.245], - [8.126, 47.242], - [8.137, 47.248], - [8.147, 47.249], - [8.165, 47.251], - [8.176, 47.255], - [8.18, 47.252], - [8.181, 47.247], - [8.177, 47.242], - [8.163, 47.242], - [8.157, 47.24], - [8.163, 47.237], - [8.161, 47.234], - [8.167, 47.23], - [8.175, 47.229], - [8.177, 47.223], - [8.187, 47.224], - [8.194, 47.228], - [8.206, 47.227], - [8.204, 47.231], - [8.205, 47.244], - [8.209, 47.249], - [8.22, 47.253], - [8.229, 47.275], - [8.243, 47.274], - [8.246, 47.282], - [8.249, 47.282], - [8.251, 47.287], - [8.261, 47.288], - [8.263, 47.284], - [8.272, 47.285], - [8.272, 47.282], - [8.28, 47.283], - [8.286, 47.281], - [8.297, 47.274], - [8.301, 47.273], - [8.295, 47.267], - [8.297, 47.261], - [8.301, 47.254], - [8.306, 47.254], - [8.312, 47.247], - [8.318, 47.226], - [8.321, 47.223], - [8.321, 47.217], - [8.326, 47.216], - [8.331, 47.198], - [8.338, 47.191], - [8.34, 47.179], - [8.345, 47.174], - [8.349, 47.166], - [8.359, 47.158], - [8.363, 47.147], - [8.376, 47.144], - [8.377, 47.141], - [8.391, 47.141], - [8.399, 47.139], - [8.408, 47.139], - [8.413, 47.142], - [8.418, 47.132], - [8.415, 47.128], - [8.419, 47.124], - [8.435, 47.126], - [8.442, 47.13], - [8.451, 47.131], - [8.455, 47.115], - [8.467, 47.118], - [8.482, 47.128], - [8.494, 47.115], - [8.494, 47.102], - [8.477, 47.107], - [8.476, 47.112], - [8.465, 47.112], - [8.451, 47.116], - [8.45, 47.112], - [8.438, 47.11], - [8.438, 47.107], - [8.424, 47.105], - [8.41, 47.094], - [8.412, 47.087], - [8.408, 47.081], - [8.39, 47.072], - [8.392, 47.062], - [8.401, 47.061], - [8.431, 47.066], - [8.442, 47.064], - [8.447, 47.059], - [8.454, 47.057], - [8.465, 47.05], - [8.471, 47.049], - [8.48, 47.041], - [8.485, 47.039], - [8.502, 47.026], - [8.515, 47.023], - [8.515, 47.014], - [8.51, 47.006], - [8.502, 47.002], - [8.484, 46.998], - [8.469, 46.998], - [8.47, 47.011], - [8.429, 47.018], - [8.427, 46.999], - [8.416, 47], - [8.397, 47.002], - [8.387, 47], - [8.385, 47.019], - [8.37, 47.021], - [8.336, 46.99], - [8.32, 47.001], - [8.312, 46.999], - [8.295, 46.999], - [8.29, 46.996], - [8.279, 46.999], - [8.267, 47], - [8.256, 46.995], - [8.245, 46.987], - [8.239, 46.993], - [8.229, 46.994], - [8.219, 46.981], - [8.229, 46.974], - [8.229, 46.971], - [8.203, 46.968], - [8.188, 46.973], - [8.165, 46.966], - [8.151, 46.959], - [8.152, 46.954], - [8.165, 46.94], - [8.136, 46.924], - [8.124, 46.911], - [8.112, 46.894], - [8.108, 46.896], - [8.107, 46.903], - [8.11, 46.909], - [8.096, 46.913], - [8.09, 46.91], - [8.084, 46.9], - [8.071, 46.897], - [8.067, 46.889], - [8.072, 46.875], - [8.066, 46.868], - [8.066, 46.86], - [8.061, 46.86], - [8.06, 46.855], - [8.051, 46.846], - [8.046, 46.845], - [8.043, 46.838], - [8.047, 46.831], - [8.066, 46.809], - [8.065, 46.804], - [8.056, 46.8], - [8.058, 46.796], - [8.047, 46.788] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6011", - "properties": { - "name": "Neuchâtel", - "ISOCODE": "CH-NE", - "density": 0, - "path": "/world/Switzerland/Neuchâtel" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [6.866, 46.911], - [6.781, 46.854], - [6.756, 46.872], - [6.742, 46.873], - [6.734, 46.869], - [6.742, 46.884], - [6.739, 46.885], - [6.741, 46.896], - [6.717, 46.907], - [6.718, 46.917], - [6.724, 46.932], - [6.722, 46.937], - [6.669, 46.922], - [6.648, 46.912], - [6.646, 46.907], - [6.628, 46.89], - [6.615, 46.89], - [6.599, 46.885], - [6.589, 46.885], - [6.576, 46.882], - [6.561, 46.876], - [6.551, 46.873], - [6.546, 46.87], - [6.538, 46.868], - [6.531, 46.861], - [6.524, 46.858], - [6.502, 46.853], - [6.482, 46.848], - [6.468, 46.849], - [6.461, 46.852], - [6.465, 46.892], - [6.459, 46.902], - [6.442, 46.919], - [6.436, 46.923], - [6.433, 46.93], - [6.445, 46.934], - [6.461, 46.945], - [6.463, 46.948], - [6.478, 46.962], - [6.497, 46.975], - [6.506, 46.967], - [6.524, 46.973], - [6.538, 46.975], - [6.553, 46.979], - [6.563, 46.98], - [6.58, 46.986], - [6.596, 46.994], - [6.611, 46.992], - [6.618, 46.993], - [6.634, 47], - [6.641, 47.004], - [6.648, 47.013], - [6.655, 47.025], - [6.663, 47.03], - [6.679, 47.037], - [6.687, 47.039], - [6.697, 47.038], - [6.706, 47.046], - [6.72, 47.052], - [6.708, 47.059], - [6.701, 47.06], - [6.693, 47.069], - [6.701, 47.071], - [6.708, 47.076], - [6.708, 47.081], - [6.703, 47.083], - [6.709, 47.084], - [6.716, 47.09], - [6.743, 47.093], - [6.747, 47.101], - [6.742, 47.106], - [6.741, 47.111], - [6.747, 47.111], - [6.757, 47.118], - [6.767, 47.122], - [6.778, 47.123], - [6.78, 47.125], - [6.807, 47.132], - [6.81, 47.137], - [6.816, 47.137], - [6.82, 47.142], - [6.84, 47.151], - [6.841, 47.155], - [6.85, 47.158], - [6.859, 47.167], - [6.862, 47.167], - [6.882, 47.141], - [6.89, 47.132], - [6.882, 47.11], - [6.873, 47.104], - [6.867, 47.086], - [6.889, 47.094], - [6.896, 47.098], - [6.916, 47.105], - [6.928, 47.11], - [6.931, 47.114], - [6.937, 47.11], - [6.949, 47.114], - [6.97, 47.116], - [6.997, 47.12], - [7.009, 47.126], - [7.026, 47.125], - [7.032, 47.129], - [7.041, 47.126], - [7.032, 47.121], - [7.024, 47.113], - [7.029, 47.105], - [7.041, 47.11], - [7.058, 47.101], - [7.076, 47.097], - [7.088, 47.087], - [7.088, 47.083], - [7.078, 47.077], - [7.081, 47.075], - [7.081, 47.068], - [7.088, 47.061], - [7.077, 47.052], - [7.066, 47.046], - [7.052, 47.044], - [7.041, 47.038], - [7.035, 47.033], - [7.035, 47.018], - [7.026, 47.007], - [7.041, 46.981], - [7.041, 46.981], - [7.003, 46.988], - [6.998, 46.986], - [6.929, 46.954], - [6.897, 46.927], - [6.866, 46.911] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5994", - "properties": { - "name": "Nidwalden", - "ISOCODE": "CH-NW", - "density": 0, - "path": "/world/Switzerland/Nidwalden" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.396, 46.773], - [8.392, 46.779], - [8.384, 46.782], - [8.378, 46.787], - [8.37, 46.789], - [8.363, 46.795], - [8.346, 46.801], - [8.341, 46.807], - [8.327, 46.816], - [8.324, 46.823], - [8.336, 46.829], - [8.336, 46.835], - [8.33, 46.843], - [8.329, 46.848], - [8.332, 46.858], - [8.336, 46.862], - [8.335, 46.87], - [8.33, 46.873], - [8.33, 46.879], - [8.338, 46.891], - [8.34, 46.896], - [8.337, 46.904], - [8.344, 46.916], - [8.34, 46.92], - [8.342, 46.928], - [8.339, 46.931], - [8.324, 46.927], - [8.311, 46.926], - [8.301, 46.931], - [8.289, 46.935], - [8.292, 46.941], - [8.303, 46.95], - [8.311, 46.953], - [8.307, 46.957], - [8.312, 46.97], - [8.308, 46.977], - [8.301, 46.979], - [8.29, 46.977], - [8.271, 46.98], - [8.255, 46.981], - [8.245, 46.976], - [8.229, 46.974], - [8.219, 46.981], - [8.229, 46.994], - [8.239, 46.993], - [8.245, 46.987], - [8.256, 46.995], - [8.267, 47], - [8.279, 46.999], - [8.29, 46.996], - [8.295, 46.999], - [8.312, 46.999], - [8.32, 47.001], - [8.336, 46.99], - [8.37, 47.021], - [8.385, 47.019], - [8.387, 47], - [8.397, 47.002], - [8.416, 47], - [8.427, 46.999], - [8.429, 47.018], - [8.47, 47.011], - [8.469, 46.998], - [8.466, 46.986], - [8.498, 46.978], - [8.52, 46.981], - [8.543, 46.981], - [8.572, 46.991], - [8.576, 46.984], - [8.568, 46.976], - [8.563, 46.974], - [8.561, 46.967], - [8.556, 46.964], - [8.557, 46.941], - [8.546, 46.941], - [8.549, 46.935], - [8.545, 46.929], - [8.532, 46.925], - [8.521, 46.924], - [8.52, 46.921], - [8.504, 46.916], - [8.499, 46.92], - [8.487, 46.92], - [8.482, 46.91], - [8.465, 46.906], - [8.459, 46.9], - [8.468, 46.899], - [8.48, 46.884], - [8.468, 46.875], - [8.473, 46.869], - [8.468, 46.862], - [8.472, 46.856], - [8.44, 46.855], - [8.431, 46.851], - [8.42, 46.853], - [8.419, 46.864], - [8.414, 46.871], - [8.407, 46.867], - [8.4, 46.866], - [8.385, 46.856], - [8.382, 46.858], - [8.376, 46.849], - [8.377, 46.861], - [8.385, 46.868], - [8.38, 46.876], - [8.373, 46.876], - [8.37, 46.869], - [8.365, 46.869], - [8.365, 46.861], - [8.372, 46.861], - [8.372, 46.836], - [8.378, 46.823], - [8.375, 46.818], - [8.389, 46.814], - [8.386, 46.805], - [8.398, 46.797], - [8.402, 46.797], - [8.409, 46.792], - [8.421, 46.79], - [8.426, 46.782], - [8.428, 46.776], - [8.418, 46.78], - [8.396, 46.773] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5993", - "properties": { - "name": "Obwalden", - "ISOCODE": "CH-OW", - "density": 0, - "path": "/world/Switzerland/Obwalden" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.37, 46.789], - [8.361, 46.784], - [8.335, 46.782], - [8.303, 46.763], - [8.285, 46.754], - [8.269, 46.755], - [8.261, 46.765], - [8.24, 46.771], - [8.234, 46.763], - [8.223, 46.762], - [8.209, 46.771], - [8.194, 46.77], - [8.191, 46.772], - [8.173, 46.765], - [8.169, 46.766], - [8.159, 46.76], - [8.148, 46.756], - [8.13, 46.768], - [8.112, 46.775], - [8.103, 46.775], - [8.102, 46.777], - [8.092, 46.786], - [8.091, 46.789], - [8.078, 46.787], - [8.07, 46.79], - [8.061, 46.788], - [8.056, 46.79], - [8.047, 46.788], - [8.058, 46.796], - [8.056, 46.8], - [8.065, 46.804], - [8.066, 46.809], - [8.047, 46.831], - [8.043, 46.838], - [8.046, 46.845], - [8.051, 46.846], - [8.06, 46.855], - [8.061, 46.86], - [8.066, 46.86], - [8.066, 46.868], - [8.072, 46.875], - [8.067, 46.889], - [8.071, 46.897], - [8.084, 46.9], - [8.09, 46.91], - [8.096, 46.913], - [8.11, 46.909], - [8.107, 46.903], - [8.108, 46.896], - [8.112, 46.894], - [8.124, 46.911], - [8.136, 46.924], - [8.165, 46.94], - [8.152, 46.954], - [8.151, 46.959], - [8.165, 46.966], - [8.188, 46.973], - [8.203, 46.968], - [8.229, 46.971], - [8.229, 46.974], - [8.245, 46.976], - [8.255, 46.981], - [8.271, 46.98], - [8.29, 46.977], - [8.301, 46.979], - [8.308, 46.977], - [8.312, 46.97], - [8.307, 46.957], - [8.311, 46.953], - [8.303, 46.95], - [8.292, 46.941], - [8.289, 46.935], - [8.301, 46.931], - [8.311, 46.926], - [8.324, 46.927], - [8.339, 46.931], - [8.342, 46.928], - [8.34, 46.92], - [8.344, 46.916], - [8.337, 46.904], - [8.34, 46.896], - [8.338, 46.891], - [8.33, 46.879], - [8.33, 46.873], - [8.335, 46.87], - [8.336, 46.862], - [8.332, 46.858], - [8.329, 46.848], - [8.33, 46.843], - [8.336, 46.835], - [8.336, 46.829], - [8.324, 46.823], - [8.327, 46.816], - [8.341, 46.807], - [8.346, 46.801], - [8.363, 46.795], - [8.37, 46.789] - ] - ], - [ - [ - [8.449, 46.764], - [8.448, 46.772], - [8.439, 46.773], - [8.424, 46.772], - [8.418, 46.775], - [8.398, 46.767], - [8.396, 46.773], - [8.418, 46.78], - [8.428, 46.776], - [8.426, 46.782], - [8.421, 46.79], - [8.409, 46.792], - [8.402, 46.797], - [8.398, 46.797], - [8.386, 46.805], - [8.389, 46.814], - [8.375, 46.818], - [8.378, 46.823], - [8.372, 46.836], - [8.372, 46.861], - [8.365, 46.861], - [8.365, 46.869], - [8.37, 46.869], - [8.373, 46.876], - [8.38, 46.876], - [8.385, 46.868], - [8.377, 46.861], - [8.376, 46.849], - [8.382, 46.858], - [8.385, 46.856], - [8.4, 46.866], - [8.407, 46.867], - [8.414, 46.871], - [8.419, 46.864], - [8.42, 46.853], - [8.431, 46.851], - [8.44, 46.855], - [8.472, 46.856], - [8.481, 46.859], - [8.49, 46.855], - [8.499, 46.854], - [8.508, 46.847], - [8.502, 46.841], - [8.492, 46.838], - [8.485, 46.828], - [8.485, 46.821], - [8.479, 46.814], - [8.484, 46.81], - [8.484, 46.806], - [8.473, 46.8], - [8.465, 46.802], - [8.474, 46.797], - [8.482, 46.8], - [8.48, 46.79], - [8.49, 46.782], - [8.493, 46.774], - [8.481, 46.77], - [8.462, 46.77], - [8.449, 46.764] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6001", - "properties": { - "name": "Schaffhausen", - "ISOCODE": "CH-SH", - "density": 0, - "path": "/world/Switzerland/Schaffhausen" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.607, 47.67], - [8.607, 47.673], - [8.599, 47.674], - [8.595, 47.668], - [8.588, 47.668], - [8.58, 47.663], - [8.566, 47.667], - [8.565, 47.672], - [8.555, 47.671], - [8.541, 47.666], - [8.542, 47.659], - [8.534, 47.661], - [8.534, 47.665], - [8.528, 47.662], - [8.535, 47.651], - [8.533, 47.647], - [8.524, 47.646], - [8.515, 47.649], - [8.494, 47.648], - [8.494, 47.644], - [8.484, 47.645], - [8.482, 47.651], - [8.474, 47.651], - [8.479, 47.646], - [8.472, 47.644], - [8.479, 47.641], - [8.474, 47.64], - [8.468, 47.643], - [8.465, 47.65], - [8.467, 47.658], - [8.458, 47.654], - [8.454, 47.656], - [8.446, 47.655], - [8.437, 47.659], - [8.433, 47.664], - [8.424, 47.668], - [8.413, 47.668], - [8.407, 47.675], - [8.41, 47.68], - [8.418, 47.681], - [8.422, 47.685], - [8.413, 47.696], - [8.405, 47.699], - [8.418, 47.712], - [8.427, 47.713], - [8.446, 47.724], - [8.456, 47.724], - [8.457, 47.732], - [8.453, 47.733], - [8.451, 47.739], - [8.457, 47.744], - [8.457, 47.75], - [8.468, 47.756], - [8.473, 47.765], - [8.49, 47.774], - [8.496, 47.772], - [8.511, 47.777], - [8.521, 47.772], - [8.527, 47.779], - [8.534, 47.779], - [8.554, 47.786], - [8.563, 47.782], - [8.564, 47.779], - [8.578, 47.783], - [8.576, 47.791], - [8.563, 47.794], - [8.563, 47.803], - [8.569, 47.81], - [8.574, 47.807], - [8.576, 47.801], - [8.589, 47.804], - [8.594, 47.8], - [8.601, 47.804], - [8.615, 47.803], - [8.623, 47.796], - [8.621, 47.79], - [8.616, 47.785], - [8.624, 47.778], - [8.62, 47.769], - [8.632, 47.76], - [8.654, 47.774], - [8.649, 47.775], - [8.651, 47.783], - [8.647, 47.788], - [8.65, 47.8], - [8.658, 47.802], - [8.662, 47.793], - [8.669, 47.789], - [8.682, 47.788], - [8.684, 47.778], - [8.69, 47.775], - [8.684, 47.772], - [8.695, 47.757], - [8.708, 47.765], - [8.715, 47.767], - [8.728, 47.764], - [8.73, 47.759], - [8.742, 47.753], - [8.741, 47.748], - [8.724, 47.747], - [8.716, 47.74], - [8.713, 47.732], - [8.718, 47.723], - [8.734, 47.72], - [8.737, 47.717], - [8.733, 47.713], - [8.728, 47.698], - [8.729, 47.694], - [8.718, 47.692], - [8.718, 47.696], - [8.713, 47.698], - [8.713, 47.703], - [8.707, 47.713], - [8.702, 47.716], - [8.684, 47.71], - [8.682, 47.714], - [8.673, 47.712], - [8.666, 47.715], - [8.667, 47.709], - [8.675, 47.706], - [8.678, 47.7], - [8.669, 47.693], - [8.66, 47.693], - [8.664, 47.687], - [8.661, 47.687], - [8.646, 47.695], - [8.626, 47.693], - [8.629, 47.681], - [8.62, 47.676], - [8.615, 47.68], - [8.607, 47.67] - ] - ], - [ - [ - [8.797, 47.677], - [8.794, 47.682], - [8.801, 47.693], - [8.811, 47.695], - [8.807, 47.698], - [8.799, 47.699], - [8.799, 47.703], - [8.771, 47.708], - [8.774, 47.719], - [8.782, 47.723], - [8.786, 47.729], - [8.793, 47.73], - [8.8, 47.728], - [8.797, 47.736], - [8.808, 47.74], - [8.813, 47.73], - [8.806, 47.727], - [8.814, 47.725], - [8.82, 47.719], - [8.826, 47.718], - [8.82, 47.714], - [8.825, 47.712], - [8.834, 47.716], - [8.846, 47.713], - [8.849, 47.705], - [8.855, 47.706], - [8.87, 47.707], - [8.877, 47.698], - [8.872, 47.695], - [8.864, 47.694], - [8.864, 47.7], - [8.852, 47.699], - [8.851, 47.696], - [8.858, 47.693], - [8.851, 47.686], - [8.851, 47.682], - [8.861, 47.682], - [8.869, 47.677], - [8.875, 47.672], - [8.876, 47.656], - [8.866, 47.657], - [8.859, 47.651], - [8.851, 47.652], - [8.849, 47.655], - [8.855, 47.662], - [8.842, 47.666], - [8.837, 47.673], - [8.818, 47.679], - [8.803, 47.68], - [8.797, 47.677] - ] - ], - [ - [ - [8.564, 47.601], - [8.584, 47.597], - [8.586, 47.601], - [8.597, 47.607], - [8.596, 47.598], - [8.58, 47.592], - [8.578, 47.585], - [8.581, 47.579], - [8.574, 47.576], - [8.568, 47.563], - [8.56, 47.554], - [8.551, 47.557], - [8.551, 47.563], - [8.543, 47.571], - [8.547, 47.576], - [8.536, 47.577], - [8.538, 47.579], - [8.535, 47.584], - [8.537, 47.588], - [8.549, 47.594], - [8.554, 47.594], - [8.557, 47.598], - [8.564, 47.601] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5992", - "properties": { - "name": "Schwyz", - "ISOCODE": "CH-SZ", - "density": 0, - "path": "/world/Switzerland/Schwyz" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.936, 46.921], - [8.909, 46.909], - [8.905, 46.91], - [8.896, 46.904], - [8.89, 46.904], - [8.875, 46.896], - [8.862, 46.896], - [8.863, 46.893], - [8.854, 46.886], - [8.849, 46.892], - [8.851, 46.901], - [8.85, 46.914], - [8.837, 46.909], - [8.828, 46.921], - [8.831, 46.933], - [8.828, 46.937], - [8.815, 46.94], - [8.811, 46.943], - [8.797, 46.937], - [8.793, 46.932], - [8.779, 46.934], - [8.772, 46.943], - [8.75, 46.935], - [8.73, 46.93], - [8.722, 46.922], - [8.708, 46.919], - [8.701, 46.924], - [8.698, 46.93], - [8.701, 46.934], - [8.698, 46.944], - [8.694, 46.948], - [8.67, 46.945], - [8.658, 46.947], - [8.647, 46.95], - [8.629, 46.951], - [8.625, 46.954], - [8.605, 46.953], - [8.604, 46.97], - [8.602, 46.976], - [8.604, 46.988], - [8.598, 46.991], - [8.584, 46.995], - [8.572, 46.991], - [8.543, 46.981], - [8.52, 46.981], - [8.498, 46.978], - [8.466, 46.986], - [8.469, 46.998], - [8.484, 46.998], - [8.502, 47.002], - [8.51, 47.006], - [8.515, 47.014], - [8.515, 47.023], - [8.502, 47.026], - [8.485, 47.039], - [8.48, 47.041], - [8.471, 47.049], - [8.465, 47.05], - [8.454, 47.057], - [8.447, 47.059], - [8.442, 47.064], - [8.431, 47.066], - [8.401, 47.061], - [8.392, 47.062], - [8.39, 47.072], - [8.408, 47.081], - [8.412, 47.087], - [8.41, 47.094], - [8.424, 47.105], - [8.438, 47.107], - [8.438, 47.11], - [8.45, 47.112], - [8.451, 47.116], - [8.465, 47.112], - [8.476, 47.112], - [8.477, 47.107], - [8.494, 47.102], - [8.522, 47.091], - [8.526, 47.093], - [8.549, 47.095], - [8.563, 47.095], - [8.566, 47.082], - [8.575, 47.084], - [8.591, 47.088], - [8.597, 47.093], - [8.609, 47.093], - [8.613, 47.096], - [8.638, 47.095], - [8.646, 47.097], - [8.647, 47.101], - [8.655, 47.109], - [8.661, 47.113], - [8.661, 47.116], - [8.673, 47.117], - [8.673, 47.121], - [8.682, 47.126], - [8.686, 47.139], - [8.686, 47.143], - [8.692, 47.149], - [8.702, 47.153], - [8.699, 47.154], - [8.697, 47.164], - [8.694, 47.165], - [8.693, 47.17], - [8.687, 47.173], - [8.681, 47.18], - [8.682, 47.185], - [8.689, 47.19], - [8.695, 47.197], - [8.704, 47.199], - [8.704, 47.203], - [8.712, 47.202], - [8.742, 47.213], - [8.778, 47.22], - [8.794, 47.224], - [8.809, 47.222], - [8.823, 47.213], - [8.839, 47.21], - [8.848, 47.21], - [8.943, 47.219], - [8.956, 47.217], - [8.969, 47.219], - [8.975, 47.214], - [8.97, 47.212], - [8.967, 47.199], - [8.958, 47.201], - [8.963, 47.181], - [8.972, 47.18], - [8.982, 47.185], - [8.993, 47.182], - [9.006, 47.175], - [8.994, 47.165], - [8.976, 47.145], - [8.968, 47.138], - [8.97, 47.131], - [8.966, 47.123], - [8.975, 47.116], - [8.97, 47.11], - [8.972, 47.105], - [8.961, 47.102], - [8.955, 47.093], - [8.974, 47.086], - [8.966, 47.079], - [8.95, 47.058], - [8.949, 47.051], - [8.942, 47.049], - [8.938, 47.045], - [8.924, 47.04], - [8.915, 47.041], - [8.901, 47.038], - [8.905, 47.028], - [8.894, 47.025], - [8.912, 47.018], - [8.913, 47.01], - [8.918, 47.005], - [8.93, 46.998], - [8.933, 46.992], - [8.942, 46.986], - [8.933, 46.983], - [8.947, 46.968], - [8.951, 46.968], - [8.958, 46.963], - [8.973, 46.96], - [8.963, 46.954], - [8.962, 46.949], - [8.956, 46.94], - [8.963, 46.928], - [8.949, 46.927], - [8.936, 46.921] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5998", - "properties": { - "name": "Solothurn", - "ISOCODE": "CH-SO", - "density": 0, - "path": "/world/Switzerland/Solothurn" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [7.559, 47.324], - [7.57, 47.325], - [7.573, 47.33], - [7.561, 47.344], - [7.553, 47.346], - [7.54, 47.349], - [7.542, 47.356], - [7.541, 47.362], - [7.522, 47.366], - [7.525, 47.373], - [7.504, 47.373], - [7.488, 47.371], - [7.48, 47.373], - [7.462, 47.372], - [7.439, 47.382], - [7.44, 47.387], - [7.444, 47.39], - [7.442, 47.402], - [7.451, 47.401], - [7.45, 47.405], - [7.458, 47.403], - [7.465, 47.404], - [7.478, 47.403], - [7.478, 47.393], - [7.482, 47.39], - [7.492, 47.387], - [7.505, 47.387], - [7.511, 47.39], - [7.519, 47.39], - [7.532, 47.404], - [7.526, 47.413], - [7.544, 47.415], - [7.567, 47.415], - [7.582, 47.416], - [7.57, 47.422], - [7.568, 47.426], - [7.57, 47.438], - [7.58, 47.436], - [7.582, 47.43], - [7.593, 47.434], - [7.603, 47.432], - [7.616, 47.434], - [7.617, 47.447], - [7.623, 47.458], - [7.623, 47.463], - [7.627, 47.464], - [7.62, 47.469], - [7.605, 47.472], - [7.609, 47.476], - [7.608, 47.491], - [7.615, 47.491], - [7.63, 47.486], - [7.642, 47.484], - [7.645, 47.487], - [7.657, 47.489], - [7.649, 47.493], - [7.653, 47.497], - [7.667, 47.498], - [7.666, 47.493], - [7.669, 47.487], - [7.701, 47.482], - [7.711, 47.471], - [7.701, 47.463], - [7.699, 47.456], - [7.694, 47.456], - [7.686, 47.449], - [7.684, 47.44], - [7.687, 47.435], - [7.681, 47.419], - [7.665, 47.411], - [7.658, 47.41], - [7.634, 47.411], - [7.638, 47.387], - [7.636, 47.382], - [7.642, 47.382], - [7.645, 47.368], - [7.703, 47.374], - [7.728, 47.37], - [7.735, 47.359], - [7.743, 47.351], - [7.755, 47.345], - [7.767, 47.344], - [7.77, 47.34], - [7.795, 47.34], - [7.796, 47.353], - [7.803, 47.363], - [7.823, 47.365], - [7.834, 47.368], - [7.838, 47.374], - [7.851, 47.38], - [7.864, 47.383], - [7.87, 47.382], - [7.881, 47.389], - [7.874, 47.392], - [7.87, 47.397], - [7.879, 47.403], - [7.885, 47.403], - [7.885, 47.407], - [7.891, 47.408], - [7.902, 47.402], - [7.905, 47.404], - [7.911, 47.4], - [7.934, 47.407], - [7.936, 47.413], - [7.952, 47.418], - [7.963, 47.423], - [7.951, 47.433], - [7.948, 47.447], - [7.959, 47.454], - [7.958, 47.456], - [7.969, 47.464], - [7.975, 47.461], - [7.976, 47.453], - [7.982, 47.45], - [7.988, 47.429], - [7.985, 47.429], - [7.964, 47.423], - [7.983, 47.415], - [7.99, 47.415], - [7.993, 47.412], - [8.008, 47.408], - [8.012, 47.396], - [8.027, 47.397], - [8.032, 47.384], - [8.027, 47.37], - [8.012, 47.358], - [8.012, 47.351], - [8.004, 47.346], - [8.008, 47.341], - [8.002, 47.336], - [7.992, 47.334], - [7.988, 47.33], - [7.978, 47.325], - [7.961, 47.322], - [7.949, 47.319], - [7.949, 47.334], - [7.92, 47.335], - [7.909, 47.342], - [7.897, 47.329], - [7.899, 47.321], - [7.89, 47.313], - [7.876, 47.313], - [7.861, 47.307], - [7.853, 47.291], - [7.845, 47.283], - [7.844, 47.278], - [7.835, 47.27], - [7.826, 47.267], - [7.816, 47.262], - [7.808, 47.264], - [7.806, 47.269], - [7.801, 47.269], - [7.787, 47.257], - [7.777, 47.263], - [7.776, 47.269], - [7.766, 47.268], - [7.758, 47.259], - [7.746, 47.258], - [7.739, 47.261], - [7.734, 47.26], - [7.726, 47.268], - [7.726, 47.271], - [7.717, 47.278], - [7.714, 47.275], - [7.701, 47.288], - [7.689, 47.292], - [7.686, 47.295], - [7.671, 47.289], - [7.661, 47.288], - [7.649, 47.283], - [7.615, 47.282], - [7.581, 47.278], - [7.587, 47.271], - [7.594, 47.268], - [7.599, 47.255], - [7.597, 47.247], - [7.607, 47.24], - [7.615, 47.238], - [7.62, 47.23], - [7.627, 47.228], - [7.641, 47.231], - [7.645, 47.227], - [7.64, 47.225], - [7.649, 47.22], - [7.646, 47.216], - [7.652, 47.208], - [7.648, 47.203], - [7.663, 47.202], - [7.675, 47.192], - [7.672, 47.186], - [7.679, 47.184], - [7.674, 47.17], - [7.661, 47.17], - [7.652, 47.163], - [7.654, 47.153], - [7.646, 47.15], - [7.64, 47.155], - [7.636, 47.153], - [7.615, 47.156], - [7.599, 47.153], - [7.593, 47.154], - [7.587, 47.149], - [7.582, 47.161], - [7.576, 47.166], - [7.57, 47.164], - [7.564, 47.17], - [7.558, 47.168], - [7.545, 47.161], - [7.536, 47.166], - [7.521, 47.16], - [7.531, 47.15], - [7.524, 47.147], - [7.515, 47.134], - [7.515, 47.131], - [7.505, 47.124], - [7.493, 47.118], - [7.462, 47.109], - [7.462, 47.105], - [7.472, 47.092], - [7.476, 47.088], - [7.469, 47.081], - [7.446, 47.075], - [7.441, 47.076], - [7.436, 47.082], - [7.434, 47.089], - [7.439, 47.095], - [7.434, 47.102], - [7.424, 47.099], - [7.42, 47.101], - [7.413, 47.097], - [7.391, 47.094], - [7.385, 47.098], - [7.37, 47.117], - [7.371, 47.122], - [7.388, 47.127], - [7.391, 47.121], - [7.395, 47.123], - [7.404, 47.119], - [7.415, 47.122], - [7.426, 47.123], - [7.43, 47.126], - [7.439, 47.124], - [7.434, 47.128], - [7.436, 47.132], - [7.431, 47.131], - [7.423, 47.137], - [7.427, 47.142], - [7.44, 47.145], - [7.44, 47.152], - [7.449, 47.156], - [7.456, 47.157], - [7.469, 47.153], - [7.479, 47.156], - [7.483, 47.159], - [7.493, 47.165], - [7.491, 47.167], - [7.498, 47.171], - [7.488, 47.175], - [7.482, 47.173], - [7.479, 47.179], - [7.472, 47.183], - [7.476, 47.184], - [7.476, 47.192], - [7.456, 47.19], - [7.45, 47.191], - [7.45, 47.183], - [7.443, 47.18], - [7.435, 47.187], - [7.432, 47.182], - [7.433, 47.177], - [7.419, 47.172], - [7.417, 47.167], - [7.411, 47.163], - [7.401, 47.164], - [7.394, 47.161], - [7.384, 47.162], - [7.383, 47.166], - [7.392, 47.168], - [7.384, 47.182], - [7.379, 47.188], - [7.369, 47.192], - [7.366, 47.196], - [7.355, 47.193], - [7.348, 47.208], - [7.341, 47.219], - [7.358, 47.222], - [7.366, 47.222], - [7.376, 47.228], - [7.398, 47.234], - [7.409, 47.24], - [7.421, 47.244], - [7.417, 47.253], - [7.442, 47.264], - [7.466, 47.266], - [7.473, 47.271], - [7.476, 47.278], - [7.486, 47.285], - [7.522, 47.295], - [7.534, 47.296], - [7.538, 47.298], - [7.54, 47.303], - [7.548, 47.307], - [7.549, 47.318], - [7.559, 47.324] - ] - ], - [ - [ - [7.446, 47.463], - [7.456, 47.475], - [7.43, 47.484], - [7.422, 47.482], - [7.423, 47.485], - [7.436, 47.499], - [7.458, 47.49], - [7.463, 47.49], - [7.472, 47.482], - [7.478, 47.481], - [7.488, 47.483], - [7.494, 47.489], - [7.503, 47.492], - [7.502, 47.495], - [7.512, 47.498], - [7.511, 47.504], - [7.513, 47.5], - [7.522, 47.498], - [7.533, 47.499], - [7.534, 47.492], - [7.537, 47.493], - [7.537, 47.485], - [7.528, 47.475], - [7.531, 47.463], - [7.518, 47.462], - [7.511, 47.46], - [7.499, 47.461], - [7.482, 47.457], - [7.469, 47.455], - [7.458, 47.451], - [7.448, 47.458], - [7.446, 47.463] - ] - ], - [ - [ - [7.382, 47.433], - [7.394, 47.436], - [7.404, 47.437], - [7.404, 47.44], - [7.421, 47.447], - [7.424, 47.445], - [7.439, 47.448], - [7.449, 47.439], - [7.456, 47.429], - [7.448, 47.416], - [7.439, 47.414], - [7.429, 47.416], - [7.421, 47.412], - [7.414, 47.412], - [7.389, 47.415], - [7.377, 47.415], - [7.382, 47.433] - ] - ], - [ - [ - [7.675, 47.155], - [7.679, 47.163], - [7.689, 47.168], - [7.696, 47.163], - [7.701, 47.163], - [7.695, 47.159], - [7.691, 47.154], - [7.675, 47.155] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6004", - "properties": { - "name": "St. Gallen", - "ISOCODE": "CH-SG", - "density": 0, - "path": "/world/Switzerland/St. Gallen" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [9.25, 46.917], - [9.253, 46.928], - [9.252, 46.936], - [9.24, 46.941], - [9.238, 46.946], - [9.238, 46.956], - [9.248, 46.96], - [9.244, 46.966], - [9.248, 46.98], - [9.244, 46.983], - [9.248, 46.988], - [9.247, 46.993], - [9.251, 46.999], - [9.243, 47.01], - [9.243, 47.017], - [9.238, 47.025], - [9.231, 47.027], - [9.221, 47.034], - [9.208, 47.037], - [9.203, 47.036], - [9.181, 47.027], - [9.175, 47.03], - [9.169, 47.028], - [9.158, 47.031], - [9.139, 47.04], - [9.155, 47.048], - [9.169, 47.051], - [9.185, 47.061], - [9.193, 47.074], - [9.19, 47.086], - [9.191, 47.092], - [9.187, 47.098], - [9.191, 47.111], - [9.191, 47.125], - [9.149, 47.13], - [9.137, 47.133], - [9.117, 47.134], - [9.11, 47.132], - [9.103, 47.134], - [9.096, 47.133], - [9.07, 47.131], - [9.059, 47.138], - [9.009, 47.174], - [9.006, 47.175], - [8.993, 47.182], - [8.982, 47.185], - [8.972, 47.18], - [8.963, 47.181], - [8.958, 47.201], - [8.967, 47.199], - [8.97, 47.212], - [8.975, 47.214], - [8.969, 47.219], - [8.956, 47.217], - [8.943, 47.219], - [8.848, 47.21], - [8.839, 47.21], - [8.823, 47.213], - [8.809, 47.222], - [8.797, 47.24], - [8.803, 47.248], - [8.828, 47.253], - [8.839, 47.248], - [8.846, 47.248], - [8.852, 47.252], - [8.856, 47.246], - [8.868, 47.245], - [8.875, 47.249], - [8.875, 47.253], - [8.894, 47.255], - [8.909, 47.258], - [8.91, 47.256], - [8.937, 47.262], - [8.946, 47.271], - [8.942, 47.273], - [8.949, 47.276], - [8.949, 47.282], - [8.943, 47.284], - [8.937, 47.29], - [8.949, 47.293], - [8.958, 47.306], - [8.976, 47.308], - [8.986, 47.321], - [8.978, 47.328], - [8.98, 47.339], - [8.974, 47.341], - [8.973, 47.352], - [8.967, 47.356], - [8.961, 47.355], - [8.953, 47.369], - [8.953, 47.373], - [8.944, 47.377], - [8.955, 47.382], - [8.958, 47.388], - [8.966, 47.386], - [8.973, 47.393], - [8.977, 47.401], - [8.973, 47.405], - [8.978, 47.412], - [8.99, 47.412], - [8.994, 47.424], - [8.99, 47.431], - [9.001, 47.433], - [8.999, 47.436], - [9.011, 47.437], - [9.013, 47.435], - [9.024, 47.442], - [9.028, 47.438], - [9.039, 47.443], - [9.044, 47.441], - [9.048, 47.446], - [9.06, 47.444], - [9.064, 47.448], - [9.056, 47.45], - [9.052, 47.454], - [9.028, 47.459], - [9.03, 47.468], - [9.009, 47.474], - [9.01, 47.481], - [9.005, 47.482], - [9.012, 47.487], - [9.013, 47.491], - [9.029, 47.49], - [9.043, 47.497], - [9.052, 47.494], - [9.057, 47.489], - [9.064, 47.494], - [9.066, 47.492], - [9.083, 47.497], - [9.086, 47.49], - [9.091, 47.484], - [9.1, 47.487], - [9.112, 47.485], - [9.117, 47.481], - [9.124, 47.482], - [9.126, 47.486], - [9.138, 47.487], - [9.143, 47.486], - [9.157, 47.489], - [9.164, 47.498], - [9.161, 47.501], - [9.167, 47.505], - [9.174, 47.496], - [9.182, 47.499], - [9.184, 47.493], - [9.19, 47.495], - [9.209, 47.49], - [9.21, 47.482], - [9.219, 47.485], - [9.233, 47.485], - [9.233, 47.482], - [9.246, 47.482], - [9.248, 47.477], - [9.264, 47.476], - [9.28, 47.481], - [9.282, 47.484], - [9.299, 47.478], - [9.31, 47.483], - [9.32, 47.492], - [9.321, 47.498], - [9.319, 47.502], - [9.31, 47.499], - [9.313, 47.512], - [9.305, 47.517], - [9.293, 47.508], - [9.282, 47.507], - [9.272, 47.509], - [9.27, 47.513], - [9.281, 47.515], - [9.286, 47.52], - [9.283, 47.522], - [9.302, 47.525], - [9.304, 47.528], - [9.314, 47.524], - [9.315, 47.53], - [9.319, 47.533], - [9.33, 47.53], - [9.34, 47.53], - [9.34, 47.526], - [9.346, 47.521], - [9.357, 47.521], - [9.351, 47.517], - [9.345, 47.508], - [9.34, 47.508], - [9.337, 47.503], - [9.342, 47.505], - [9.357, 47.502], - [9.357, 47.505], - [9.375, 47.502], - [9.375, 47.497], - [9.37, 47.495], - [9.374, 47.492], - [9.368, 47.487], - [9.38, 47.487], - [9.39, 47.483], - [9.398, 47.476], - [9.408, 47.496], - [9.415, 47.499], - [9.423, 47.497], - [9.426, 47.502], - [9.439, 47.509], - [9.503, 47.549], - [9.516, 47.538], - [9.533, 47.537], - [9.552, 47.538], - [9.562, 47.506], - [9.562, 47.5], - [9.565, 47.495], - [9.584, 47.484], - [9.596, 47.465], - [9.602, 47.463], - [9.606, 47.465], - [9.607, 47.471], - [9.611, 47.472], - [9.619, 47.463], - [9.627, 47.458], - [9.647, 47.457], - [9.657, 47.455], - [9.659, 47.449], - [9.648, 47.442], - [9.645, 47.436], - [9.651, 47.422], - [9.653, 47.406], - [9.66, 47.4], - [9.674, 47.393], - [9.674, 47.382], - [9.662, 47.371], - [9.65, 47.369], - [9.625, 47.367], - [9.605, 47.352], - [9.601, 47.346], - [9.59, 47.319], - [9.584, 47.313], - [9.567, 47.306], - [9.557, 47.299], - [9.552, 47.287], - [9.547, 47.28], - [9.534, 47.274], - [9.532, 47.271], - [9.532, 47.264], - [9.521, 47.243], - [9.506, 47.226], - [9.501, 47.212], - [9.49, 47.196], - [9.487, 47.182], - [9.492, 47.164], - [9.5, 47.153], - [9.508, 47.144], - [9.514, 47.131], - [9.52, 47.107], - [9.521, 47.098], - [9.516, 47.088], - [9.492, 47.074], - [9.476, 47.068], - [9.473, 47.061], - [9.477, 47.053], - [9.481, 47.046], - [9.507, 47.02], - [9.512, 47.011], - [9.52, 47.002], - [9.547, 46.978], - [9.543, 46.976], - [9.524, 46.974], - [9.518, 46.97], - [9.52, 46.957], - [9.507, 46.955], - [9.501, 46.951], - [9.498, 46.942], - [9.488, 46.937], - [9.487, 46.931], - [9.478, 46.922], - [9.48, 46.917], - [9.489, 46.914], - [9.477, 46.908], - [9.468, 46.901], - [9.471, 46.893], - [9.468, 46.887], - [9.455, 46.887], - [9.457, 46.881], - [9.45, 46.874], - [9.439, 46.881], - [9.434, 46.886], - [9.415, 46.892], - [9.395, 46.895], - [9.382, 46.899], - [9.367, 46.898], - [9.348, 46.901], - [9.344, 46.9], - [9.34, 46.903], - [9.323, 46.902], - [9.311, 46.907], - [9.294, 46.908], - [9.288, 46.906], - [9.275, 46.908], - [9.268, 46.904], - [9.258, 46.91], - [9.25, 46.917] - ], - [ - [9.619, 47.439], - [9.63, 47.441], - [9.63, 47.446], - [9.622, 47.449], - [9.614, 47.45], - [9.599, 47.457], - [9.597, 47.46], - [9.581, 47.464], - [9.563, 47.464], - [9.559, 47.466], - [9.547, 47.464], - [9.548, 47.469], - [9.544, 47.47], - [9.533, 47.469], - [9.527, 47.463], - [9.529, 47.455], - [9.525, 47.453], - [9.51, 47.451], - [9.504, 47.447], - [9.484, 47.441], - [9.469, 47.44], - [9.465, 47.437], - [9.451, 47.432], - [9.445, 47.435], - [9.437, 47.436], - [9.434, 47.432], - [9.436, 47.426], - [9.431, 47.411], - [9.428, 47.409], - [9.4, 47.402], - [9.393, 47.403], - [9.391, 47.405], - [9.379, 47.409], - [9.337, 47.401], - [9.331, 47.403], - [9.321, 47.399], - [9.305, 47.396], - [9.272, 47.402], - [9.259, 47.4], - [9.257, 47.402], - [9.246, 47.401], - [9.238, 47.398], - [9.233, 47.399], - [9.233, 47.39], - [9.224, 47.389], - [9.22, 47.386], - [9.223, 47.379], - [9.222, 47.374], - [9.214, 47.37], - [9.214, 47.366], - [9.2, 47.363], - [9.193, 47.364], - [9.198, 47.356], - [9.206, 47.359], - [9.2, 47.348], - [9.212, 47.342], - [9.227, 47.343], - [9.234, 47.332], - [9.224, 47.327], - [9.212, 47.323], - [9.218, 47.309], - [9.218, 47.301], - [9.225, 47.295], - [9.218, 47.285], - [9.208, 47.28], - [9.207, 47.278], - [9.223, 47.271], - [9.233, 47.267], - [9.253, 47.267], - [9.258, 47.264], - [9.268, 47.27], - [9.276, 47.27], - [9.285, 47.267], - [9.291, 47.262], - [9.298, 47.259], - [9.309, 47.261], - [9.309, 47.257], - [9.319, 47.249], - [9.325, 47.248], - [9.334, 47.251], - [9.345, 47.251], - [9.352, 47.246], - [9.36, 47.246], - [9.375, 47.24], - [9.383, 47.235], - [9.393, 47.238], - [9.403, 47.239], - [9.411, 47.246], - [9.42, 47.249], - [9.428, 47.248], - [9.439, 47.252], - [9.455, 47.262], - [9.474, 47.272], - [9.482, 47.283], - [9.486, 47.285], - [9.492, 47.302], - [9.498, 47.307], - [9.494, 47.316], - [9.5, 47.32], - [9.503, 47.331], - [9.504, 47.349], - [9.5, 47.365], - [9.5, 47.371], - [9.504, 47.376], - [9.507, 47.391], - [9.51, 47.396], - [9.538, 47.401], - [9.547, 47.4], - [9.549, 47.394], - [9.556, 47.398], - [9.556, 47.398], - [9.577, 47.405], - [9.584, 47.411], - [9.598, 47.413], - [9.606, 47.416], - [9.59, 47.422], - [9.59, 47.427], - [9.608, 47.433], - [9.619, 47.439] - ], - [ - [9.449, 47.495], - [9.454, 47.491], - [9.467, 47.489], - [9.466, 47.486], - [9.478, 47.491], - [9.468, 47.497], - [9.451, 47.502], - [9.449, 47.495] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6007", - "properties": { - "name": "Thurgau", - "ISOCODE": "CH-TG", - "density": 0, - "path": "/world/Switzerland/Thurgau" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.944, 47.377], - [8.941, 47.381], - [8.944, 47.387], - [8.929, 47.396], - [8.921, 47.401], - [8.904, 47.403], - [8.914, 47.414], - [8.913, 47.424], - [8.914, 47.429], - [8.909, 47.431], - [8.912, 47.435], - [8.932, 47.433], - [8.934, 47.437], - [8.923, 47.436], - [8.912, 47.438], - [8.904, 47.445], - [8.909, 47.45], - [8.897, 47.461], - [8.892, 47.47], - [8.885, 47.471], - [8.886, 47.483], - [8.898, 47.486], - [8.894, 47.49], - [8.894, 47.502], - [8.898, 47.509], - [8.9, 47.525], - [8.884, 47.531], - [8.88, 47.529], - [8.871, 47.532], - [8.857, 47.532], - [8.842, 47.534], - [8.842, 47.538], - [8.835, 47.544], - [8.829, 47.557], - [8.839, 47.559], - [8.843, 47.561], - [8.852, 47.562], - [8.851, 47.565], - [8.84, 47.567], - [8.84, 47.572], - [8.832, 47.575], - [8.823, 47.574], - [8.817, 47.571], - [8.809, 47.573], - [8.807, 47.584], - [8.764, 47.594], - [8.749, 47.594], - [8.75, 47.601], - [8.745, 47.604], - [8.741, 47.613], - [8.747, 47.614], - [8.747, 47.623], - [8.757, 47.618], - [8.763, 47.619], - [8.777, 47.616], - [8.788, 47.61], - [8.79, 47.605], - [8.803, 47.602], - [8.806, 47.615], - [8.811, 47.617], - [8.815, 47.623], - [8.814, 47.629], - [8.821, 47.631], - [8.828, 47.64], - [8.828, 47.648], - [8.806, 47.654], - [8.804, 47.667], - [8.79, 47.667], - [8.787, 47.656], - [8.777, 47.65], - [8.77, 47.652], - [8.757, 47.643], - [8.744, 47.641], - [8.745, 47.644], - [8.736, 47.643], - [8.725, 47.644], - [8.721, 47.642], - [8.715, 47.646], - [8.71, 47.643], - [8.701, 47.648], - [8.689, 47.651], - [8.688, 47.655], - [8.68, 47.661], - [8.678, 47.673], - [8.67, 47.676], - [8.67, 47.686], - [8.679, 47.689], - [8.692, 47.697], - [8.707, 47.691], - [8.718, 47.692], - [8.729, 47.694], - [8.753, 47.692], - [8.767, 47.688], - [8.774, 47.682], - [8.786, 47.678], - [8.797, 47.677], - [8.803, 47.68], - [8.818, 47.679], - [8.837, 47.673], - [8.842, 47.666], - [8.855, 47.662], - [8.849, 47.655], - [8.851, 47.652], - [8.859, 47.651], - [8.866, 47.657], - [8.876, 47.656], - [8.884, 47.655], - [8.9, 47.649], - [8.93, 47.656], - [8.944, 47.658], - [8.949, 47.662], - [8.968, 47.667], - [8.985, 47.677], - [9.012, 47.686], - [9.021, 47.688], - [9.032, 47.687], - [9.06, 47.682], - [9.092, 47.68], - [9.105, 47.678], - [9.117, 47.671], - [9.142, 47.665], - [9.151, 47.669], - [9.159, 47.667], - [9.172, 47.656], - [9.177, 47.655], - [9.189, 47.659], - [9.204, 47.657], - [9.236, 47.658], - [9.249, 47.661], - [9.257, 47.661], - [9.269, 47.657], - [9.324, 47.639], - [9.446, 47.596], - [9.454, 47.592], - [9.503, 47.549], - [9.439, 47.509], - [9.426, 47.502], - [9.423, 47.497], - [9.415, 47.499], - [9.408, 47.496], - [9.398, 47.476], - [9.39, 47.483], - [9.38, 47.487], - [9.368, 47.487], - [9.374, 47.492], - [9.37, 47.495], - [9.375, 47.497], - [9.375, 47.502], - [9.357, 47.505], - [9.357, 47.502], - [9.342, 47.505], - [9.337, 47.503], - [9.34, 47.508], - [9.345, 47.508], - [9.351, 47.517], - [9.357, 47.521], - [9.346, 47.521], - [9.34, 47.526], - [9.34, 47.53], - [9.33, 47.53], - [9.319, 47.533], - [9.315, 47.53], - [9.314, 47.524], - [9.304, 47.528], - [9.302, 47.525], - [9.283, 47.522], - [9.286, 47.52], - [9.281, 47.515], - [9.27, 47.513], - [9.272, 47.509], - [9.282, 47.507], - [9.293, 47.508], - [9.305, 47.517], - [9.313, 47.512], - [9.31, 47.499], - [9.319, 47.502], - [9.321, 47.498], - [9.32, 47.492], - [9.31, 47.483], - [9.299, 47.478], - [9.282, 47.484], - [9.28, 47.481], - [9.264, 47.476], - [9.248, 47.477], - [9.246, 47.482], - [9.233, 47.482], - [9.233, 47.485], - [9.219, 47.485], - [9.21, 47.482], - [9.209, 47.49], - [9.19, 47.495], - [9.184, 47.493], - [9.182, 47.499], - [9.174, 47.496], - [9.167, 47.505], - [9.161, 47.501], - [9.164, 47.498], - [9.157, 47.489], - [9.143, 47.486], - [9.138, 47.487], - [9.126, 47.486], - [9.124, 47.482], - [9.117, 47.481], - [9.112, 47.485], - [9.1, 47.487], - [9.091, 47.484], - [9.086, 47.49], - [9.083, 47.497], - [9.066, 47.492], - [9.064, 47.494], - [9.057, 47.489], - [9.052, 47.494], - [9.043, 47.497], - [9.029, 47.49], - [9.013, 47.491], - [9.012, 47.487], - [9.005, 47.482], - [9.01, 47.481], - [9.009, 47.474], - [9.03, 47.468], - [9.028, 47.459], - [9.052, 47.454], - [9.056, 47.45], - [9.064, 47.448], - [9.06, 47.444], - [9.048, 47.446], - [9.044, 47.441], - [9.039, 47.443], - [9.028, 47.438], - [9.024, 47.442], - [9.013, 47.435], - [9.011, 47.437], - [8.999, 47.436], - [9.001, 47.433], - [8.99, 47.431], - [8.994, 47.424], - [8.99, 47.412], - [8.978, 47.412], - [8.973, 47.405], - [8.977, 47.401], - [8.973, 47.393], - [8.966, 47.386], - [8.958, 47.388], - [8.955, 47.382], - [8.944, 47.377] - ] - ], - [ - [ - [9.449, 47.495], - [9.451, 47.502], - [9.468, 47.497], - [9.478, 47.491], - [9.466, 47.486], - [9.467, 47.489], - [9.454, 47.491], - [9.449, 47.495] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6008", - "properties": { - "name": "Ticino", - "ISOCODE": "CH-TI", - "density": 0, - "path": "/world/Switzerland/Ticino" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.479, 46.529], - [8.484, 46.534], - [8.505, 46.536], - [8.52, 46.54], - [8.522, 46.544], - [8.516, 46.552], - [8.515, 46.561], - [8.522, 46.568], - [8.522, 46.578], - [8.528, 46.583], - [8.54, 46.587], - [8.554, 46.582], - [8.566, 46.582], - [8.575, 46.585], - [8.582, 46.578], - [8.591, 46.575], - [8.612, 46.576], - [8.621, 46.579], - [8.63, 46.575], - [8.632, 46.567], - [8.641, 46.565], - [8.659, 46.57], - [8.661, 46.575], - [8.674, 46.58], - [8.679, 46.58], - [8.699, 46.582], - [8.706, 46.575], - [8.718, 46.572], - [8.728, 46.578], - [8.745, 46.573], - [8.751, 46.577], - [8.762, 46.575], - [8.802, 46.564], - [8.831, 46.573], - [8.831, 46.567], - [8.845, 46.564], - [8.864, 46.574], - [8.878, 46.576], - [8.88, 46.579], - [8.89, 46.58], - [8.905, 46.585], - [8.917, 46.594], - [8.918, 46.598], - [8.908, 46.608], - [8.907, 46.616], - [8.913, 46.62], - [8.926, 46.624], - [8.943, 46.62], - [8.952, 46.625], - [8.954, 46.633], - [8.959, 46.631], - [8.964, 46.619], - [8.961, 46.612], - [8.963, 46.604], - [8.974, 46.604], - [8.984, 46.61], - [8.996, 46.613], - [9.005, 46.612], - [9.017, 46.605], - [9.028, 46.6], - [9.035, 46.601], - [9.034, 46.595], - [9.042, 46.591], - [9.045, 46.585], - [9.038, 46.583], - [9.036, 46.576], - [9.03, 46.571], - [9.024, 46.559], - [9.025, 46.556], - [9.02, 46.549], - [9.022, 46.535], - [9.018, 46.533], - [9.022, 46.528], - [9.024, 46.52], - [9.023, 46.513], - [9.025, 46.509], - [9.033, 46.503], - [9.042, 46.495], - [9.042, 46.491], - [9.049, 46.485], - [9.047, 46.483], - [9.056, 46.478], - [9.062, 46.477], - [9.075, 46.481], - [9.086, 46.477], - [9.086, 46.472], - [9.096, 46.462], - [9.093, 46.45], - [9.088, 46.445], - [9.09, 46.433], - [9.096, 46.427], - [9.104, 46.415], - [9.103, 46.411], - [9.091, 46.406], - [9.097, 46.401], - [9.088, 46.39], - [9.091, 46.388], - [9.097, 46.374], - [9.094, 46.372], - [9.096, 46.365], - [9.089, 46.35], - [9.083, 46.35], - [9.071, 46.345], - [9.068, 46.337], - [9.071, 46.334], - [9.065, 46.326], - [9.076, 46.316], - [9.073, 46.31], - [9.07, 46.309], - [9.061, 46.299], - [9.054, 46.294], - [9.059, 46.282], - [9.064, 46.275], - [9.074, 46.269], - [9.079, 46.262], - [9.077, 46.239], - [9.072, 46.237], - [9.076, 46.233], - [9.081, 46.234], - [9.085, 46.222], - [9.09, 46.214], - [9.109, 46.207], - [9.12, 46.201], - [9.132, 46.19], - [9.137, 46.181], - [9.143, 46.179], - [9.155, 46.171], - [9.16, 46.171], - [9.158, 46.164], - [9.151, 46.162], - [9.142, 46.156], - [9.135, 46.154], - [9.122, 46.136], - [9.114, 46.136], - [9.099, 46.128], - [9.089, 46.126], - [9.074, 46.12], - [9.082, 46.103], - [9.091, 46.091], - [9.091, 46.087], - [9.085, 46.079], - [9.08, 46.076], - [9.08, 46.066], - [9.075, 46.063], - [9.062, 46.062], - [9.051, 46.063], - [9.041, 46.06], - [9.031, 46.055], - [9.024, 46.054], - [9.018, 46.051], - [9.018, 46.044], - [9.011, 46.038], - [9.008, 46.031], - [9.011, 46.028], - [9.024, 46.018], - [9.025, 46.002], - [9.03, 45.995], - [9.024, 45.994], - [9.019, 45.989], - [9.012, 45.989], - [9.012, 45.984], - [9.003, 45.98], - [8.996, 45.981], - [8.998, 45.976], - [8.99, 45.971], - [8.995, 45.968], - [9.015, 45.962], - [9.018, 45.95], - [9.013, 45.945], - [9.024, 45.938], - [9.021, 45.93], - [9.038, 45.927], - [9.044, 45.929], - [9.05, 45.922], - [9.061, 45.922], - [9.06, 45.918], - [9.079, 45.91], - [9.076, 45.907], - [9.078, 45.9], - [9.088, 45.904], - [9.089, 45.898], - [9.082, 45.893], - [9.076, 45.884], - [9.068, 45.877], - [9.056, 45.875], - [9.05, 45.864], - [9.052, 45.853], - [9.042, 45.848], - [9.037, 45.842], - [9.039, 45.837], - [9.032, 45.825], - [9.033, 45.822], - [9.024, 45.823], - [9.019, 45.819], - [8.995, 45.823], - [8.999, 45.833], - [8.989, 45.839], - [8.983, 45.837], - [8.978, 45.838], - [8.971, 45.833], - [8.962, 45.838], - [8.962, 45.841], - [8.95, 45.845], - [8.94, 45.842], - [8.933, 45.839], - [8.93, 45.834], - [8.919, 45.835], - [8.913, 45.832], - [8.915, 45.843], - [8.933, 45.862], - [8.947, 45.868], - [8.943, 45.871], - [8.938, 45.869], - [8.934, 45.878], - [8.933, 45.886], - [8.929, 45.893], - [8.923, 45.897], - [8.926, 45.902], - [8.925, 45.907], - [8.915, 45.919], - [8.909, 45.919], - [8.897, 45.929], - [8.894, 45.934], - [8.898, 45.943], - [8.898, 45.957], - [8.895, 45.96], - [8.88, 45.958], - [8.869, 45.962], - [8.851, 45.974], - [8.84, 45.985], - [8.832, 45.989], - [8.82, 45.989], - [8.815, 45.991], - [8.793, 45.993], - [8.787, 45.99], - [8.794, 46.009], - [8.807, 46.023], - [8.821, 46.027], - [8.828, 46.034], - [8.831, 46.043], - [8.836, 46.045], - [8.831, 46.048], - [8.835, 46.053], - [8.846, 46.05], - [8.855, 46.063], - [8.853, 46.077], - [8.833, 46.085], - [8.822, 46.095], - [8.807, 46.102], - [8.801, 46.096], - [8.784, 46.095], - [8.77, 46.102], - [8.758, 46.104], - [8.743, 46.123], - [8.725, 46.111], - [8.715, 46.098], - [8.698, 46.103], - [8.69, 46.103], - [8.682, 46.107], - [8.681, 46.111], - [8.67, 46.11], - [8.659, 46.114], - [8.657, 46.117], - [8.647, 46.125], - [8.621, 46.123], - [8.613, 46.123], - [8.611, 46.134], - [8.597, 46.144], - [8.595, 46.148], - [8.601, 46.151], - [8.602, 46.157], - [8.59, 46.158], - [8.586, 46.164], - [8.58, 46.163], - [8.574, 46.167], - [8.571, 46.178], - [8.565, 46.185], - [8.555, 46.187], - [8.555, 46.193], - [8.542, 46.198], - [8.537, 46.205], - [8.534, 46.219], - [8.522, 46.223], - [8.511, 46.223], - [8.493, 46.23], - [8.479, 46.231], - [8.468, 46.235], - [8.465, 46.245], - [8.444, 46.252], - [8.444, 46.255], - [8.449, 46.262], - [8.457, 46.265], - [8.45, 46.277], - [8.435, 46.289], - [8.435, 46.293], - [8.429, 46.3], - [8.442, 46.305], - [8.44, 46.31], - [8.445, 46.321], - [8.454, 46.322], - [8.457, 46.328], - [8.467, 46.335], - [8.464, 46.337], - [8.465, 46.348], - [8.463, 46.355], - [8.471, 46.363], - [8.468, 46.369], - [8.468, 46.381], - [8.462, 46.388], - [8.472, 46.397], - [8.465, 46.404], - [8.464, 46.407], - [8.469, 46.413], - [8.459, 46.421], - [8.458, 46.426], - [8.462, 46.43], - [8.458, 46.436], - [8.468, 46.444], - [8.463, 46.447], - [8.463, 46.452], - [8.453, 46.456], - [8.454, 46.459], - [8.447, 46.465], - [8.439, 46.465], - [8.413, 46.46], - [8.394, 46.453], - [8.386, 46.453], - [8.383, 46.46], - [8.386, 46.467], - [8.393, 46.469], - [8.387, 46.477], - [8.395, 46.487], - [8.393, 46.496], - [8.401, 46.494], - [8.419, 46.494], - [8.436, 46.498], - [8.444, 46.496], - [8.453, 46.509], - [8.461, 46.512], - [8.479, 46.529] - ], - [ - [8.969, 45.964], - [8.977, 45.963], - [8.98, 45.972], - [8.978, 45.977], - [8.978, 45.984], - [8.968, 45.985], - [8.96, 45.966], - [8.969, 45.964] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5991", - "properties": { - "name": "Uri", - "ISOCODE": "CH-UR", - "density": 0, - "path": "/world/Switzerland/Uri" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.479, 46.529], - [8.473, 46.531], - [8.465, 46.537], - [8.459, 46.535], - [8.449, 46.537], - [8.429, 46.545], - [8.418, 46.572], - [8.411, 46.578], - [8.407, 46.587], - [8.411, 46.597], - [8.408, 46.601], - [8.417, 46.608], - [8.421, 46.617], - [8.422, 46.631], - [8.421, 46.638], - [8.423, 46.649], - [8.419, 46.654], - [8.411, 46.654], - [8.409, 46.667], - [8.403, 46.67], - [8.399, 46.675], - [8.401, 46.694], - [8.413, 46.692], - [8.416, 46.689], - [8.442, 46.687], - [8.453, 46.69], - [8.456, 46.7], - [8.453, 46.704], - [8.454, 46.712], - [8.448, 46.715], - [8.448, 46.728], - [8.451, 46.731], - [8.442, 46.739], - [8.442, 46.746], - [8.445, 46.748], - [8.44, 46.753], - [8.448, 46.759], - [8.449, 46.764], - [8.462, 46.77], - [8.481, 46.77], - [8.493, 46.774], - [8.49, 46.782], - [8.48, 46.79], - [8.482, 46.8], - [8.474, 46.797], - [8.465, 46.802], - [8.473, 46.8], - [8.484, 46.806], - [8.484, 46.81], - [8.479, 46.814], - [8.485, 46.821], - [8.485, 46.828], - [8.492, 46.838], - [8.502, 46.841], - [8.508, 46.847], - [8.499, 46.854], - [8.49, 46.855], - [8.481, 46.859], - [8.472, 46.856], - [8.468, 46.862], - [8.473, 46.869], - [8.468, 46.875], - [8.48, 46.884], - [8.468, 46.899], - [8.459, 46.9], - [8.465, 46.906], - [8.482, 46.91], - [8.487, 46.92], - [8.499, 46.92], - [8.504, 46.916], - [8.52, 46.921], - [8.521, 46.924], - [8.532, 46.925], - [8.545, 46.929], - [8.549, 46.935], - [8.546, 46.941], - [8.557, 46.941], - [8.556, 46.964], - [8.561, 46.967], - [8.563, 46.974], - [8.568, 46.976], - [8.576, 46.984], - [8.572, 46.991], - [8.584, 46.995], - [8.598, 46.991], - [8.604, 46.988], - [8.602, 46.976], - [8.604, 46.97], - [8.605, 46.953], - [8.625, 46.954], - [8.629, 46.951], - [8.647, 46.95], - [8.658, 46.947], - [8.67, 46.945], - [8.694, 46.948], - [8.698, 46.944], - [8.701, 46.934], - [8.698, 46.93], - [8.701, 46.924], - [8.708, 46.919], - [8.722, 46.922], - [8.73, 46.93], - [8.75, 46.935], - [8.772, 46.943], - [8.779, 46.934], - [8.793, 46.932], - [8.797, 46.937], - [8.811, 46.943], - [8.815, 46.94], - [8.828, 46.937], - [8.831, 46.933], - [8.828, 46.921], - [8.837, 46.909], - [8.85, 46.914], - [8.851, 46.901], - [8.849, 46.892], - [8.854, 46.886], - [8.863, 46.893], - [8.862, 46.896], - [8.875, 46.896], - [8.89, 46.904], - [8.896, 46.904], - [8.905, 46.91], - [8.909, 46.909], - [8.936, 46.921], - [8.944, 46.907], - [8.954, 46.899], - [8.958, 46.889], - [8.957, 46.877], - [8.944, 46.872], - [8.934, 46.867], - [8.917, 46.861], - [8.91, 46.862], - [8.897, 46.851], - [8.889, 46.849], - [8.874, 46.843], - [8.875, 46.836], - [8.883, 46.83], - [8.881, 46.821], - [8.877, 46.817], - [8.878, 46.814], - [8.87, 46.808], - [8.861, 46.807], - [8.854, 46.801], - [8.848, 46.799], - [8.849, 46.795], - [8.835, 46.796], - [8.829, 46.794], - [8.828, 46.788], - [8.831, 46.772], - [8.835, 46.768], - [8.832, 46.765], - [8.826, 46.767], - [8.82, 46.764], - [8.815, 46.756], - [8.815, 46.75], - [8.811, 46.746], - [8.814, 46.738], - [8.8, 46.733], - [8.792, 46.732], - [8.783, 46.729], - [8.778, 46.734], - [8.771, 46.746], - [8.767, 46.746], - [8.748, 46.737], - [8.745, 46.73], - [8.75, 46.722], - [8.728, 46.709], - [8.718, 46.707], - [8.718, 46.704], - [8.71, 46.7], - [8.701, 46.705], - [8.694, 46.703], - [8.688, 46.695], - [8.682, 46.696], - [8.675, 46.693], - [8.676, 46.685], - [8.675, 46.672], - [8.679, 46.666], - [8.667, 46.657], - [8.662, 46.657], - [8.655, 46.651], - [8.659, 46.649], - [8.659, 46.643], - [8.652, 46.635], - [8.658, 46.633], - [8.659, 46.627], - [8.669, 46.621], - [8.678, 46.621], - [8.679, 46.617], - [8.681, 46.606], - [8.678, 46.6], - [8.682, 46.596], - [8.683, 46.59], - [8.679, 46.58], - [8.674, 46.58], - [8.661, 46.575], - [8.659, 46.57], - [8.641, 46.565], - [8.632, 46.567], - [8.63, 46.575], - [8.621, 46.579], - [8.612, 46.576], - [8.591, 46.575], - [8.582, 46.578], - [8.575, 46.585], - [8.566, 46.582], - [8.554, 46.582], - [8.54, 46.587], - [8.528, 46.583], - [8.522, 46.578], - [8.522, 46.568], - [8.515, 46.561], - [8.516, 46.552], - [8.522, 46.544], - [8.52, 46.54], - [8.505, 46.536], - [8.484, 46.534], - [8.479, 46.529] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6010", - "properties": { - "name": "Valais", - "ISOCODE": "CH-VS", - "density": 0, - "path": "/world/Switzerland/Valais" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.386, 46.453], - [8.368, 46.453], - [8.357, 46.448], - [8.354, 46.443], - [8.341, 46.435], - [8.329, 46.43], - [8.326, 46.426], - [8.314, 46.425], - [8.309, 46.427], - [8.3, 46.419], - [8.3, 46.416], - [8.291, 46.408], - [8.307, 46.403], - [8.311, 46.404], - [8.317, 46.4], - [8.315, 46.392], - [8.32, 46.388], - [8.314, 46.378], - [8.301, 46.375], - [8.291, 46.37], - [8.286, 46.365], - [8.274, 46.368], - [8.265, 46.365], - [8.262, 46.361], - [8.267, 46.354], - [8.261, 46.35], - [8.261, 46.346], - [8.254, 46.348], - [8.251, 46.342], - [8.237, 46.342], - [8.225, 46.336], - [8.223, 46.331], - [8.226, 46.327], - [8.216, 46.321], - [8.213, 46.311], - [8.199, 46.303], - [8.195, 46.305], - [8.18, 46.299], - [8.161, 46.297], - [8.148, 46.303], - [8.139, 46.303], - [8.13, 46.296], - [8.122, 46.293], - [8.115, 46.282], - [8.106, 46.281], - [8.101, 46.275], - [8.086, 46.268], - [8.087, 46.263], - [8.081, 46.262], - [8.09, 46.255], - [8.1, 46.254], - [8.102, 46.251], - [8.111, 46.251], - [8.113, 46.242], - [8.116, 46.237], - [8.121, 46.237], - [8.128, 46.229], - [8.14, 46.227], - [8.145, 46.213], - [8.151, 46.205], - [8.154, 46.192], - [8.166, 46.184], - [8.166, 46.178], - [8.159, 46.175], - [8.152, 46.167], - [8.151, 46.158], - [8.156, 46.149], - [8.151, 46.142], - [8.143, 46.137], - [8.136, 46.138], - [8.127, 46.137], - [8.116, 46.131], - [8.115, 46.119], - [8.109, 46.113], - [8.081, 46.106], - [8.065, 46.106], - [8.055, 46.102], - [8.043, 46.101], - [8.037, 46.102], - [8.03, 46.091], - [8.03, 46.083], - [8.023, 46.076], - [8.024, 46.064], - [8.032, 46.053], - [8.035, 46.045], - [8.026, 46.041], - [8.012, 46.032], - [8.018, 46.026], - [8.012, 46.02], - [8.013, 46.013], - [8.002, 46.013], - [8.001, 46.009], - [7.99, 45.997], - [7.98, 46], - [7.959, 45.997], - [7.943, 45.999], - [7.934, 45.997], - [7.909, 45.998], - [7.904, 45.99], - [7.897, 45.984], - [7.895, 45.98], - [7.881, 45.976], - [7.879, 45.973], - [7.882, 45.965], - [7.876, 45.96], - [7.878, 45.95], - [7.871, 45.949], - [7.87, 45.938], - [7.878, 45.928], - [7.872, 45.921], - [7.865, 45.918], - [7.859, 45.922], - [7.838, 45.923], - [7.832, 45.926], - [7.82, 45.928], - [7.801, 45.918], - [7.795, 45.921], - [7.787, 45.929], - [7.78, 45.93], - [7.77, 45.938], - [7.749, 45.942], - [7.746, 45.935], - [7.737, 45.929], - [7.736, 45.925], - [7.721, 45.924], - [7.708, 45.935], - [7.711, 45.95], - [7.703, 45.954], - [7.682, 45.958], - [7.668, 45.975], - [7.658, 45.978], - [7.64, 45.971], - [7.619, 45.973], - [7.609, 45.97], - [7.587, 45.972], - [7.582, 45.976], - [7.583, 45.98], - [7.58, 45.987], - [7.567, 45.989], - [7.562, 45.987], - [7.548, 45.986], - [7.542, 45.977], - [7.547, 45.963], - [7.539, 45.956], - [7.536, 45.958], - [7.524, 45.959], - [7.517, 45.964], - [7.511, 45.96], - [7.5, 45.964], - [7.497, 45.958], - [7.479, 45.954], - [7.472, 45.949], - [7.476, 45.937], - [7.47, 45.935], - [7.46, 45.937], - [7.458, 45.933], - [7.443, 45.931], - [7.435, 45.921], - [7.422, 45.914], - [7.409, 45.909], - [7.403, 45.913], - [7.392, 45.9], - [7.384, 45.897], - [7.366, 45.905], - [7.362, 45.904], - [7.357, 45.912], - [7.345, 45.916], - [7.332, 45.912], - [7.319, 45.913], - [7.317, 45.918], - [7.303, 45.918], - [7.295, 45.923], - [7.286, 45.916], - [7.277, 45.902], - [7.272, 45.901], - [7.257, 45.889], - [7.252, 45.894], - [7.238, 45.891], - [7.231, 45.893], - [7.217, 45.889], - [7.216, 45.885], - [7.207, 45.881], - [7.198, 45.871], - [7.202, 45.864], - [7.192, 45.86], - [7.179, 45.865], - [7.176, 45.864], - [7.163, 45.872], - [7.165, 45.877], - [7.162, 45.879], - [7.153, 45.879], - [7.135, 45.874], - [7.135, 45.87], - [7.119, 45.86], - [7.102, 45.86], - [7.098, 45.864], - [7.093, 45.873], - [7.095, 45.877], - [7.08, 45.887], - [7.077, 45.896], - [7.065, 45.901], - [7.065, 45.909], - [7.061, 45.915], - [7.054, 45.917], - [7.045, 45.923], - [7.042, 45.933], - [7.036, 45.939], - [7.039, 45.949], - [7.038, 45.956], - [7.023, 45.959], - [7.01, 45.97], - [7.011, 45.974], - [7.022, 45.978], - [7.024, 45.981], - [7.017, 45.988], - [7.013, 45.988], - [7.011, 45.999], - [7.006, 46.002], - [7.002, 46], - [6.986, 46.005], - [6.982, 46.021], - [6.971, 46.027], - [6.967, 46.032], - [6.964, 46.032], - [6.955, 46.043], - [6.951, 46.053], - [6.944, 46.052], - [6.935, 46.057], - [6.938, 46.065], - [6.935, 46.067], - [6.925, 46.066], - [6.909, 46.051], - [6.896, 46.05], - [6.89, 46.043], - [6.879, 46.048], - [6.873, 46.052], - [6.88, 46.071], - [6.892, 46.075], - [6.889, 46.08], - [6.892, 46.086], - [6.883, 46.096], - [6.894, 46.106], - [6.896, 46.11], - [6.894, 46.115], - [6.9, 46.125], - [6.892, 46.127], - [6.883, 46.124], - [6.874, 46.127], - [6.86, 46.127], - [6.849, 46.129], - [6.843, 46.133], - [6.831, 46.134], - [6.816, 46.131], - [6.808, 46.138], - [6.798, 46.137], - [6.795, 46.149], - [6.791, 46.155], - [6.792, 46.164], - [6.806, 46.174], - [6.807, 46.179], - [6.813, 46.183], - [6.81, 46.194], - [6.804, 46.204], - [6.81, 46.215], - [6.823, 46.225], - [6.821, 46.233], - [6.833, 46.237], - [6.838, 46.242], - [6.84, 46.249], - [6.853, 46.253], - [6.855, 46.261], - [6.86, 46.268], - [6.859, 46.275], - [6.866, 46.281], - [6.859, 46.292], - [6.849, 46.291], - [6.835, 46.301], - [6.83, 46.302], - [6.83, 46.308], - [6.826, 46.313], - [6.808, 46.322], - [6.801, 46.321], - [6.797, 46.334], - [6.785, 46.334], - [6.78, 46.346], - [6.772, 46.352], - [6.772, 46.362], - [6.781, 46.368], - [6.793, 46.369], - [6.8, 46.375], - [6.806, 46.38], - [6.807, 46.384], - [6.802, 46.387], - [6.806, 46.395], - [6.821, 46.428], - [6.859, 46.397], - [6.876, 46.382], - [6.886, 46.377], - [6.888, 46.366], - [6.882, 46.355], - [6.889, 46.35], - [6.895, 46.343], - [6.905, 46.34], - [6.918, 46.341], - [6.93, 46.332], - [6.934, 46.323], - [6.933, 46.317], - [6.937, 46.306], - [6.938, 46.299], - [6.952, 46.291], - [6.962, 46.283], - [6.964, 46.272], - [6.976, 46.261], - [6.988, 46.254], - [6.99, 46.245], - [7.003, 46.232], - [7.003, 46.226], - [7.009, 46.222], - [7.012, 46.207], - [7.021, 46.203], - [7.033, 46.189], - [7.044, 46.191], - [7.065, 46.201], - [7.072, 46.202], - [7.083, 46.201], - [7.089, 46.203], - [7.097, 46.209], - [7.111, 46.215], - [7.122, 46.225], - [7.122, 46.23], - [7.127, 46.238], - [7.142, 46.239], - [7.152, 46.245], - [7.156, 46.254], - [7.162, 46.254], - [7.179, 46.27], - [7.184, 46.27], - [7.19, 46.275], - [7.187, 46.284], - [7.196, 46.287], - [7.198, 46.29], - [7.19, 46.296], - [7.189, 46.305], - [7.222, 46.33], - [7.234, 46.328], - [7.247, 46.329], - [7.255, 46.332], - [7.262, 46.338], - [7.263, 46.359], - [7.291, 46.368], - [7.3, 46.368], - [7.311, 46.376], - [7.313, 46.365], - [7.309, 46.36], - [7.309, 46.354], - [7.316, 46.345], - [7.339, 46.348], - [7.349, 46.352], - [7.356, 46.352], - [7.364, 46.358], - [7.375, 46.362], - [7.4, 46.378], - [7.404, 46.377], - [7.418, 46.382], - [7.428, 46.382], - [7.439, 46.387], - [7.444, 46.384], - [7.456, 46.384], - [7.464, 46.379], - [7.47, 46.379], - [7.474, 46.385], - [7.482, 46.385], - [7.487, 46.378], - [7.486, 46.373], - [7.503, 46.371], - [7.508, 46.377], - [7.528, 46.376], - [7.54, 46.379], - [7.542, 46.385], - [7.556, 46.39], - [7.548, 46.395], - [7.542, 46.396], - [7.53, 46.402], - [7.536, 46.411], - [7.556, 46.415], - [7.563, 46.414], - [7.577, 46.418], - [7.597, 46.412], - [7.601, 46.418], - [7.6, 46.424], - [7.605, 46.424], - [7.611, 46.43], - [7.61, 46.438], - [7.619, 46.439], - [7.627, 46.446], - [7.636, 46.442], - [7.694, 46.426], - [7.698, 46.421], - [7.711, 46.415], - [7.717, 46.416], - [7.723, 46.422], - [7.733, 46.423], - [7.762, 46.437], - [7.767, 46.441], - [7.779, 46.445], - [7.787, 46.453], - [7.799, 46.46], - [7.826, 46.468], - [7.829, 46.472], - [7.842, 46.478], - [7.863, 46.479], - [7.871, 46.479], - [7.897, 46.484], - [7.907, 46.488], - [7.913, 46.488], - [7.916, 46.492], - [7.924, 46.493], - [7.924, 46.496], - [7.934, 46.499], - [7.936, 46.505], - [7.944, 46.509], - [7.958, 46.51], - [7.971, 46.518], - [7.974, 46.526], - [7.963, 46.538], - [7.971, 46.546], - [7.981, 46.549], - [7.987, 46.549], - [7.994, 46.558], - [8.001, 46.559], - [8.016, 46.564], - [8.032, 46.564], - [8.043, 46.558], - [8.055, 46.557], - [8.062, 46.552], - [8.065, 46.554], - [8.078, 46.557], - [8.086, 46.553], - [8.115, 46.548], - [8.127, 46.538], - [8.133, 46.538], - [8.151, 46.533], - [8.175, 46.533], - [8.175, 46.525], - [8.186, 46.522], - [8.192, 46.524], - [8.226, 46.528], - [8.243, 46.528], - [8.259, 46.531], - [8.263, 46.535], - [8.285, 46.539], - [8.288, 46.544], - [8.305, 46.547], - [8.314, 46.554], - [8.318, 46.56], - [8.338, 46.562], - [8.352, 46.57], - [8.353, 46.573], - [8.366, 46.584], - [8.361, 46.587], - [8.365, 46.594], - [8.362, 46.599], - [8.372, 46.615], - [8.37, 46.63], - [8.373, 46.634], - [8.38, 46.635], - [8.393, 46.646], - [8.395, 46.647], - [8.4, 46.655], - [8.411, 46.654], - [8.419, 46.654], - [8.423, 46.649], - [8.421, 46.638], - [8.422, 46.631], - [8.421, 46.617], - [8.417, 46.608], - [8.408, 46.601], - [8.411, 46.597], - [8.407, 46.587], - [8.411, 46.578], - [8.418, 46.572], - [8.429, 46.545], - [8.449, 46.537], - [8.459, 46.535], - [8.465, 46.537], - [8.473, 46.531], - [8.479, 46.529], - [8.461, 46.512], - [8.453, 46.509], - [8.444, 46.496], - [8.436, 46.498], - [8.419, 46.494], - [8.401, 46.494], - [8.393, 46.496], - [8.395, 46.487], - [8.387, 46.477], - [8.393, 46.469], - [8.386, 46.467], - [8.383, 46.46], - [8.386, 46.453] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "6009", - "properties": { - "name": "Vaud", - "ISOCODE": "CH-VD", - "density": 0, - "path": "/world/Switzerland/Vaud" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [6.821, 46.428], - [6.683, 46.455], - [6.52, 46.457], - [6.426, 46.417], - [6.335, 46.405], - [6.254, 46.361], - [6.242, 46.345], - [6.208, 46.356], - [6.201, 46.357], - [6.197, 46.362], - [6.188, 46.361], - [6.181, 46.366], - [6.172, 46.36], - [6.175, 46.355], - [6.187, 46.351], - [6.195, 46.35], - [6.194, 46.345], - [6.232, 46.332], - [6.22, 46.313], - [6.199, 46.286], - [6.171, 46.296], - [6.154, 46.3], - [6.141, 46.306], - [6.126, 46.318], - [6.14, 46.334], - [6.139, 46.341], - [6.15, 46.344], - [6.158, 46.351], - [6.159, 46.358], - [6.17, 46.369], - [6.162, 46.376], - [6.159, 46.381], - [6.15, 46.379], - [6.136, 46.39], - [6.113, 46.401], - [6.115, 46.398], - [6.106, 46.401], - [6.098, 46.41], - [6.07, 46.416], - [6.064, 46.418], - [6.076, 46.433], - [6.086, 46.442], - [6.085, 46.448], - [6.075, 46.455], - [6.077, 46.459], - [6.074, 46.461], - [6.074, 46.467], - [6.077, 46.468], - [6.097, 46.483], - [6.113, 46.511], - [6.139, 46.532], - [6.144, 46.529], - [6.154, 46.538], - [6.149, 46.54], - [6.158, 46.547], - [6.111, 46.578], - [6.123, 46.585], - [6.127, 46.591], - [6.149, 46.603], - [6.154, 46.605], - [6.162, 46.611], - [6.166, 46.611], - [6.179, 46.617], - [6.18, 46.621], - [6.197, 46.629], - [6.205, 46.637], - [6.208, 46.637], - [6.22, 46.646], - [6.228, 46.65], - [6.233, 46.656], - [6.257, 46.671], - [6.271, 46.68], - [6.27, 46.684], - [6.283, 46.692], - [6.298, 46.695], - [6.316, 46.704], - [6.342, 46.711], - [6.352, 46.716], - [6.361, 46.724], - [6.365, 46.723], - [6.373, 46.725], - [6.371, 46.732], - [6.383, 46.732], - [6.393, 46.74], - [6.389, 46.745], - [6.396, 46.75], - [6.42, 46.754], - [6.431, 46.758], - [6.44, 46.764], - [6.439, 46.768], - [6.453, 46.775], - [6.452, 46.78], - [6.459, 46.79], - [6.436, 46.803], - [6.432, 46.813], - [6.442, 46.817], - [6.44, 46.825], - [6.443, 46.834], - [6.461, 46.852], - [6.468, 46.849], - [6.482, 46.848], - [6.502, 46.853], - [6.524, 46.858], - [6.531, 46.861], - [6.538, 46.868], - [6.546, 46.87], - [6.551, 46.873], - [6.561, 46.876], - [6.576, 46.882], - [6.589, 46.885], - [6.599, 46.885], - [6.615, 46.89], - [6.628, 46.89], - [6.646, 46.907], - [6.648, 46.912], - [6.669, 46.922], - [6.722, 46.937], - [6.724, 46.932], - [6.718, 46.917], - [6.717, 46.907], - [6.741, 46.896], - [6.739, 46.885], - [6.742, 46.884], - [6.734, 46.869], - [6.742, 46.873], - [6.756, 46.872], - [6.781, 46.854], - [6.743, 46.829], - [6.78, 46.802], - [6.785, 46.804], - [6.788, 46.801], - [6.779, 46.795], - [6.778, 46.79], - [6.784, 46.795], - [6.798, 46.784], - [6.806, 46.787], - [6.815, 46.78], - [6.826, 46.774], - [6.829, 46.778], - [6.834, 46.776], - [6.84, 46.782], - [6.844, 46.78], - [6.85, 46.785], - [6.859, 46.789], - [6.865, 46.782], - [6.88, 46.776], - [6.889, 46.779], - [6.895, 46.778], - [6.908, 46.785], - [6.912, 46.781], - [6.918, 46.786], - [6.917, 46.79], - [6.922, 46.798], - [6.933, 46.806], - [6.921, 46.812], - [6.912, 46.804], - [6.906, 46.807], - [6.912, 46.814], - [6.906, 46.826], - [6.908, 46.835], - [6.921, 46.849], - [6.932, 46.855], - [6.928, 46.856], - [6.914, 46.867], - [6.897, 46.862], - [6.892, 46.866], - [6.91, 46.871], - [6.912, 46.868], - [6.922, 46.872], - [6.912, 46.882], - [6.908, 46.88], - [6.89, 46.889], - [6.866, 46.911], - [6.897, 46.927], - [6.922, 46.907], - [6.931, 46.901], - [6.924, 46.896], - [6.939, 46.891], - [6.942, 46.885], - [6.947, 46.884], - [6.965, 46.867], - [6.97, 46.869], - [6.958, 46.883], - [6.974, 46.888], - [6.99, 46.875], - [6.98, 46.867], - [6.978, 46.862], - [6.982, 46.859], - [6.978, 46.851], - [6.983, 46.847], - [6.99, 46.845], - [6.987, 46.836], - [6.993, 46.832], - [6.986, 46.823], - [6.973, 46.825], - [6.966, 46.83], - [6.958, 46.821], - [6.958, 46.812], - [6.967, 46.804], - [6.957, 46.795], - [6.958, 46.789], - [6.951, 46.784], - [6.947, 46.786], - [6.939, 46.783], - [6.933, 46.776], - [6.936, 46.773], - [6.921, 46.761], - [6.915, 46.764], - [6.909, 46.758], - [6.909, 46.756], - [6.918, 46.755], - [6.922, 46.753], - [6.932, 46.755], - [6.942, 46.747], - [6.931, 46.731], - [6.918, 46.72], - [6.905, 46.715], - [6.893, 46.704], - [6.895, 46.702], - [6.89, 46.695], - [6.882, 46.691], - [6.874, 46.684], - [6.869, 46.687], - [6.863, 46.682], - [6.865, 46.678], - [6.873, 46.674], - [6.865, 46.666], - [6.869, 46.662], - [6.86, 46.661], - [6.855, 46.657], - [6.843, 46.66], - [6.845, 46.662], - [6.834, 46.664], - [6.827, 46.66], - [6.819, 46.649], - [6.808, 46.652], - [6.8, 46.649], - [6.804, 46.647], - [6.8, 46.641], - [6.798, 46.634], - [6.801, 46.631], - [6.804, 46.622], - [6.804, 46.61], - [6.802, 46.602], - [6.799, 46.601], - [6.801, 46.593], - [6.8, 46.584], - [6.795, 46.577], - [6.804, 46.576], - [6.806, 46.579], - [6.814, 46.579], - [6.815, 46.587], - [6.821, 46.585], - [6.824, 46.578], - [6.835, 46.577], - [6.847, 46.585], - [6.86, 46.581], - [6.869, 46.577], - [6.875, 46.566], - [6.88, 46.568], - [6.885, 46.563], - [6.889, 46.569], - [6.899, 46.572], - [6.903, 46.562], - [6.888, 46.558], - [6.869, 46.543], - [6.859, 46.532], - [6.86, 46.537], - [6.853, 46.543], - [6.841, 46.539], - [6.826, 46.539], - [6.826, 46.543], - [6.819, 46.538], - [6.818, 46.533], - [6.811, 46.526], - [6.825, 46.513], - [6.831, 46.513], - [6.833, 46.506], - [6.839, 46.501], - [6.849, 46.495], - [6.863, 46.495], - [6.865, 46.5], - [6.883, 46.514], - [6.897, 46.522], - [6.899, 46.516], - [6.896, 46.509], - [6.902, 46.514], - [6.911, 46.513], - [6.926, 46.509], - [6.934, 46.503], - [6.955, 46.503], - [6.966, 46.494], - [6.973, 46.492], - [6.974, 46.482], - [6.982, 46.477], - [6.979, 46.475], - [6.98, 46.462], - [6.99, 46.454], - [6.993, 46.45], - [6.984, 46.44], - [6.996, 46.441], - [7.013, 46.448], - [7.019, 46.448], - [7.021, 46.461], - [7.04, 46.476], - [7.052, 46.483], - [7.066, 46.49], - [7.073, 46.488], - [7.078, 46.49], - [7.09, 46.488], - [7.106, 46.49], - [7.111, 46.496], - [7.124, 46.5], - [7.137, 46.51], - [7.141, 46.521], - [7.149, 46.53], - [7.16, 46.528], - [7.183, 46.539], - [7.193, 46.548], - [7.202, 46.543], - [7.208, 46.534], - [7.216, 46.54], - [7.226, 46.55], - [7.238, 46.555], - [7.238, 46.548], - [7.247, 46.539], - [7.245, 46.534], - [7.248, 46.527], - [7.25, 46.518], - [7.245, 46.502], - [7.242, 46.498], - [7.233, 46.496], - [7.237, 46.489], - [7.225, 46.488], - [7.225, 46.479], - [7.231, 46.468], - [7.227, 46.458], - [7.233, 46.455], - [7.228, 46.453], - [7.226, 46.445], - [7.213, 46.441], - [7.196, 46.442], - [7.193, 46.434], - [7.201, 46.43], - [7.204, 46.423], - [7.211, 46.418], - [7.208, 46.411], - [7.209, 46.404], - [7.195, 46.385], - [7.194, 46.38], - [7.208, 46.379], - [7.208, 46.374], - [7.217, 46.363], - [7.227, 46.366], - [7.231, 46.363], - [7.219, 46.359], - [7.223, 46.35], - [7.222, 46.33], - [7.189, 46.305], - [7.19, 46.296], - [7.198, 46.29], - [7.196, 46.287], - [7.187, 46.284], - [7.19, 46.275], - [7.184, 46.27], - [7.179, 46.27], - [7.162, 46.254], - [7.156, 46.254], - [7.152, 46.245], - [7.142, 46.239], - [7.127, 46.238], - [7.122, 46.23], - [7.122, 46.225], - [7.111, 46.215], - [7.097, 46.209], - [7.089, 46.203], - [7.083, 46.201], - [7.072, 46.202], - [7.065, 46.201], - [7.044, 46.191], - [7.033, 46.189], - [7.021, 46.203], - [7.012, 46.207], - [7.009, 46.222], - [7.003, 46.226], - [7.003, 46.232], - [6.99, 46.245], - [6.988, 46.254], - [6.976, 46.261], - [6.964, 46.272], - [6.962, 46.283], - [6.952, 46.291], - [6.938, 46.299], - [6.937, 46.306], - [6.933, 46.317], - [6.934, 46.323], - [6.93, 46.332], - [6.918, 46.341], - [6.905, 46.34], - [6.895, 46.343], - [6.889, 46.35], - [6.882, 46.355], - [6.888, 46.366], - [6.886, 46.377], - [6.876, 46.382], - [6.859, 46.397], - [6.821, 46.428] - ], - [ - [6.168, 46.344], - [6.172, 46.342], - [6.175, 46.348], - [6.182, 46.345], - [6.185, 46.347], - [6.176, 46.353], - [6.168, 46.344] - ], - [ - [6.749, 46.733], - [6.759, 46.727], - [6.763, 46.718], - [6.771, 46.722], - [6.778, 46.727], - [6.778, 46.73], - [6.784, 46.734], - [6.786, 46.749], - [6.774, 46.753], - [6.77, 46.747], - [6.759, 46.739], - [6.753, 46.738], - [6.749, 46.733] - ], - [ - [6.788, 46.73], - [6.794, 46.727], - [6.812, 46.729], - [6.818, 46.735], - [6.833, 46.736], - [6.847, 46.729], - [6.865, 46.726], - [6.869, 46.73], - [6.866, 46.734], - [6.883, 46.751], - [6.878, 46.757], - [6.863, 46.765], - [6.853, 46.775], - [6.85, 46.776], - [6.846, 46.767], - [6.83, 46.757], - [6.831, 46.755], - [6.816, 46.742], - [6.817, 46.739], - [6.798, 46.735], - [6.794, 46.737], - [6.788, 46.73] - ] - ], - [ - [ - [6.929, 46.954], - [6.998, 46.986], - [7.003, 46.988], - [7.041, 46.981], - [7.052, 46.979], - [7.063, 46.972], - [7.058, 46.961], - [7.061, 46.957], - [7.062, 46.943], - [7.059, 46.94], - [7.089, 46.91], - [7.092, 46.905], - [7.084, 46.897], - [7.062, 46.885], - [7.062, 46.881], - [7.07, 46.878], - [7.071, 46.873], - [7.063, 46.868], - [7.054, 46.857], - [7.05, 46.856], - [7.043, 46.848], - [7.038, 46.847], - [7.031, 46.851], - [7.034, 46.858], - [7.039, 46.86], - [7.031, 46.868], - [7.036, 46.874], - [7.026, 46.879], - [7.022, 46.878], - [7.017, 46.882], - [7.016, 46.878], - [7.009, 46.874], - [7.001, 46.875], - [6.994, 46.88], - [7.01, 46.89], - [6.997, 46.899], - [6.982, 46.911], - [6.983, 46.915], - [6.988, 46.919], - [6.979, 46.925], - [6.975, 46.923], - [6.965, 46.926], - [6.961, 46.93], - [6.929, 46.954] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5996", - "properties": { - "name": "Zug", - "ISOCODE": "CH-ZG", - "density": 0, - "path": "/world/Switzerland/Zug" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.494, 47.102], - [8.494, 47.115], - [8.482, 47.128], - [8.467, 47.118], - [8.455, 47.115], - [8.451, 47.131], - [8.442, 47.13], - [8.435, 47.126], - [8.419, 47.124], - [8.415, 47.128], - [8.418, 47.132], - [8.413, 47.142], - [8.416, 47.145], - [8.413, 47.156], - [8.416, 47.159], - [8.416, 47.167], - [8.411, 47.176], - [8.403, 47.178], - [8.401, 47.184], - [8.402, 47.191], - [8.406, 47.195], - [8.401, 47.208], - [8.402, 47.216], - [8.398, 47.221], - [8.397, 47.23], - [8.407, 47.238], - [8.411, 47.25], - [8.418, 47.242], - [8.419, 47.227], - [8.422, 47.225], - [8.442, 47.226], - [8.449, 47.221], - [8.457, 47.22], - [8.463, 47.215], - [8.468, 47.215], - [8.474, 47.212], - [8.485, 47.21], - [8.49, 47.212], - [8.503, 47.213], - [8.514, 47.217], - [8.514, 47.221], - [8.533, 47.219], - [8.534, 47.223], - [8.547, 47.223], - [8.555, 47.225], - [8.561, 47.221], - [8.584, 47.219], - [8.583, 47.212], - [8.596, 47.213], - [8.598, 47.211], - [8.6, 47.203], - [8.607, 47.206], - [8.617, 47.2], - [8.621, 47.189], - [8.629, 47.18], - [8.626, 47.174], - [8.641, 47.173], - [8.643, 47.17], - [8.653, 47.172], - [8.661, 47.171], - [8.662, 47.162], - [8.676, 47.161], - [8.682, 47.163], - [8.694, 47.165], - [8.697, 47.164], - [8.699, 47.154], - [8.702, 47.153], - [8.692, 47.149], - [8.686, 47.143], - [8.686, 47.139], - [8.682, 47.126], - [8.673, 47.121], - [8.673, 47.117], - [8.661, 47.116], - [8.661, 47.113], - [8.655, 47.109], - [8.647, 47.101], - [8.646, 47.097], - [8.638, 47.095], - [8.613, 47.096], - [8.609, 47.093], - [8.597, 47.093], - [8.591, 47.088], - [8.575, 47.084], - [8.566, 47.082], - [8.563, 47.095], - [8.549, 47.095], - [8.526, 47.093], - [8.522, 47.091], - [8.494, 47.102] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5988", - "properties": { - "name": "Zürich", - "ISOCODE": "CH-ZH", - "density": 0, - "path": "/world/Switzerland/Zürich" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.809, 47.222], - [8.794, 47.224], - [8.778, 47.22], - [8.742, 47.213], - [8.712, 47.202], - [8.704, 47.203], - [8.704, 47.199], - [8.695, 47.197], - [8.689, 47.19], - [8.682, 47.185], - [8.681, 47.18], - [8.687, 47.173], - [8.693, 47.17], - [8.694, 47.165], - [8.682, 47.163], - [8.676, 47.161], - [8.662, 47.162], - [8.661, 47.171], - [8.653, 47.172], - [8.643, 47.17], - [8.641, 47.173], - [8.626, 47.174], - [8.629, 47.18], - [8.621, 47.189], - [8.617, 47.2], - [8.607, 47.206], - [8.6, 47.203], - [8.598, 47.211], - [8.596, 47.213], - [8.583, 47.212], - [8.584, 47.219], - [8.561, 47.221], - [8.555, 47.225], - [8.547, 47.223], - [8.534, 47.223], - [8.533, 47.219], - [8.514, 47.221], - [8.514, 47.217], - [8.503, 47.213], - [8.49, 47.212], - [8.485, 47.21], - [8.474, 47.212], - [8.468, 47.215], - [8.463, 47.215], - [8.457, 47.22], - [8.449, 47.221], - [8.442, 47.226], - [8.422, 47.225], - [8.419, 47.227], - [8.418, 47.242], - [8.411, 47.25], - [8.404, 47.255], - [8.405, 47.263], - [8.401, 47.265], - [8.404, 47.273], - [8.395, 47.28], - [8.39, 47.291], - [8.398, 47.289], - [8.404, 47.293], - [8.419, 47.296], - [8.429, 47.302], - [8.43, 47.309], - [8.437, 47.317], - [8.45, 47.324], - [8.449, 47.327], - [8.456, 47.334], - [8.436, 47.326], - [8.43, 47.328], - [8.417, 47.326], - [8.413, 47.328], - [8.418, 47.335], - [8.408, 47.343], - [8.405, 47.348], - [8.41, 47.356], - [8.406, 47.366], - [8.408, 47.371], - [8.401, 47.372], - [8.401, 47.375], - [8.395, 47.382], - [8.398, 47.395], - [8.384, 47.397], - [8.38, 47.401], - [8.367, 47.4], - [8.364, 47.403], - [8.377, 47.406], - [8.38, 47.404], - [8.386, 47.407], - [8.382, 47.412], - [8.393, 47.421], - [8.389, 47.429], - [8.376, 47.431], - [8.378, 47.435], - [8.384, 47.434], - [8.386, 47.437], - [8.382, 47.442], - [8.382, 47.45], - [8.388, 47.451], - [8.384, 47.457], - [8.374, 47.46], - [8.369, 47.472], - [8.376, 47.473], - [8.375, 47.483], - [8.365, 47.482], - [8.364, 47.492], - [8.359, 47.499], - [8.361, 47.511], - [8.37, 47.513], - [8.375, 47.512], - [8.381, 47.516], - [8.382, 47.527], - [8.388, 47.53], - [8.393, 47.526], - [8.395, 47.533], - [8.405, 47.535], - [8.405, 47.54], - [8.411, 47.547], - [8.419, 47.547], - [8.416, 47.556], - [8.419, 47.566], - [8.427, 47.569], - [8.439, 47.569], - [8.458, 47.574], - [8.464, 47.573], - [8.478, 47.579], - [8.486, 47.579], - [8.495, 47.584], - [8.49, 47.589], - [8.482, 47.586], - [8.468, 47.585], - [8.462, 47.589], - [8.463, 47.594], - [8.458, 47.599], - [8.457, 47.604], - [8.47, 47.605], - [8.479, 47.612], - [8.48, 47.617], - [8.494, 47.616], - [8.509, 47.619], - [8.508, 47.625], - [8.516, 47.625], - [8.517, 47.635], - [8.54, 47.632], - [8.54, 47.628], - [8.559, 47.626], - [8.563, 47.618], - [8.571, 47.618], - [8.574, 47.612], - [8.567, 47.611], - [8.564, 47.601], - [8.557, 47.598], - [8.554, 47.594], - [8.549, 47.594], - [8.537, 47.588], - [8.535, 47.584], - [8.538, 47.579], - [8.536, 47.577], - [8.547, 47.576], - [8.543, 47.571], - [8.551, 47.563], - [8.551, 47.557], - [8.56, 47.554], - [8.568, 47.563], - [8.574, 47.576], - [8.581, 47.579], - [8.578, 47.585], - [8.58, 47.592], - [8.596, 47.598], - [8.597, 47.607], - [8.604, 47.612], - [8.606, 47.618], - [8.6, 47.626], - [8.596, 47.641], - [8.607, 47.654], - [8.614, 47.651], - [8.615, 47.646], - [8.606, 47.643], - [8.607, 47.638], - [8.62, 47.64], - [8.63, 47.65], - [8.629, 47.655], - [8.62, 47.661], - [8.609, 47.665], - [8.607, 47.67], - [8.615, 47.68], - [8.62, 47.676], - [8.629, 47.681], - [8.626, 47.693], - [8.646, 47.695], - [8.661, 47.687], - [8.664, 47.687], - [8.67, 47.686], - [8.67, 47.676], - [8.678, 47.673], - [8.68, 47.661], - [8.688, 47.655], - [8.689, 47.651], - [8.701, 47.648], - [8.71, 47.643], - [8.715, 47.646], - [8.721, 47.642], - [8.725, 47.644], - [8.736, 47.643], - [8.745, 47.644], - [8.744, 47.641], - [8.757, 47.643], - [8.77, 47.652], - [8.777, 47.65], - [8.787, 47.656], - [8.79, 47.667], - [8.804, 47.667], - [8.806, 47.654], - [8.828, 47.648], - [8.828, 47.64], - [8.821, 47.631], - [8.814, 47.629], - [8.815, 47.623], - [8.811, 47.617], - [8.806, 47.615], - [8.803, 47.602], - [8.79, 47.605], - [8.788, 47.61], - [8.777, 47.616], - [8.763, 47.619], - [8.757, 47.618], - [8.747, 47.623], - [8.747, 47.614], - [8.741, 47.613], - [8.745, 47.604], - [8.75, 47.601], - [8.749, 47.594], - [8.764, 47.594], - [8.807, 47.584], - [8.809, 47.573], - [8.817, 47.571], - [8.823, 47.574], - [8.832, 47.575], - [8.84, 47.572], - [8.84, 47.567], - [8.851, 47.565], - [8.852, 47.562], - [8.843, 47.561], - [8.839, 47.559], - [8.829, 47.557], - [8.835, 47.544], - [8.842, 47.538], - [8.842, 47.534], - [8.857, 47.532], - [8.871, 47.532], - [8.88, 47.529], - [8.884, 47.531], - [8.9, 47.525], - [8.898, 47.509], - [8.894, 47.502], - [8.894, 47.49], - [8.898, 47.486], - [8.886, 47.483], - [8.885, 47.471], - [8.892, 47.47], - [8.897, 47.461], - [8.909, 47.45], - [8.904, 47.445], - [8.912, 47.438], - [8.923, 47.436], - [8.934, 47.437], - [8.932, 47.433], - [8.912, 47.435], - [8.909, 47.431], - [8.914, 47.429], - [8.913, 47.424], - [8.914, 47.414], - [8.904, 47.403], - [8.921, 47.401], - [8.929, 47.396], - [8.944, 47.387], - [8.941, 47.381], - [8.944, 47.377], - [8.953, 47.373], - [8.953, 47.369], - [8.961, 47.355], - [8.967, 47.356], - [8.973, 47.352], - [8.974, 47.341], - [8.98, 47.339], - [8.978, 47.328], - [8.986, 47.321], - [8.976, 47.308], - [8.958, 47.306], - [8.949, 47.293], - [8.937, 47.29], - [8.943, 47.284], - [8.949, 47.282], - [8.949, 47.276], - [8.942, 47.273], - [8.946, 47.271], - [8.937, 47.262], - [8.91, 47.256], - [8.909, 47.258], - [8.894, 47.255], - [8.875, 47.253], - [8.875, 47.249], - [8.868, 47.245], - [8.856, 47.246], - [8.852, 47.252], - [8.846, 47.248], - [8.839, 47.248], - [8.828, 47.253], - [8.803, 47.248], - [8.797, 47.24], - [8.809, 47.222] - ] - ] - ] - } - } - ], - "style": { - "stroke": "#000000", - "fill": "#3498DB", - "stroke-width": 1, - "fill-opacity": 0.8 - } -} diff --git a/backend/server/static/data/de.json b/backend/server/static/data/de.json deleted file mode 100644 index 2270bcd..0000000 --- a/backend/server/static/data/de.json +++ /dev/null @@ -1,2692 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "id": 0, - "properties": { - "ISOCODE": "DE-BW", - "NAME_0": "Germany", - "ID_1": 1, - "name": "Baden-Württemberg", - "NL_name": null, - "VARname": null, - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [9.650460243225211, 49.7763404846192], - [9.637469291687069, 49.69042205810558], - [9.671889305114973, 49.683181762695426], - [9.715788841247615, 49.724449157714844], - [9.73471069335966, 49.683601379394645], - [9.795839309692326, 49.72497940063482], - [9.836868286132812, 49.69924926757807], - [9.83308029174799, 49.65090179443382], - [9.880538940429688, 49.60306167602539], - [9.825579643249796, 49.550659179687614], - [9.865819931030273, 49.53993988037121], - [9.921249389648722, 49.58118057250982], - [9.90511894226097, 49.5551109313966], - [9.933589935302848, 49.55537033081055], - [9.94201946258545, 49.47780990600609], - [10.021670341491813, 49.47856903076166], - [10.070828437805176, 49.54175186157238], - [10.089150428772086, 49.504989624023665], - [10.129039764404354, 49.50531005859375], - [10.102548599243107, 49.442440032958984], - [10.17243862152128, 49.39152908325195], - [10.115939140319995, 49.376281738281364], - [10.133849143982161, 49.34701156616222], - [10.111349105835018, 49.33576202392595], - [10.151530265808162, 49.325119018554744], - [10.162669181823901, 49.27928924560547], - [10.119018554687557, 49.25495147705101], - [10.141930580139217, 49.251510620117415], - [10.131599426269588, 49.19997024536144], - [10.264269828796671, 49.14262008666992], - [10.213559150695858, 49.09807205200218], - [10.259538650512866, 49.091209411621094], - [10.260379791259766, 49.03989028930687], - [10.363980293273926, 49.029991149902344], - [10.46698093414335, 48.9382896423341], - [10.43877029418951, 48.90898895263683], - [10.466718673706339, 48.89397048950218], - [10.438398361206055, 48.8498992919923], - [10.460650444030762, 48.81275939941406], - [10.421119689941634, 48.77619171142601], - [10.505069732666186, 48.6903915405274], - [10.420589447021484, 48.66535186767584], - [10.448868751525993, 48.69832992553722], - [10.415119171142635, 48.70236206054693], - [10.358600616455078, 48.65859222412121], - [10.347478866577205, 48.69562149047874], - [10.279189109802473, 48.71039962768555], - [10.262008666992188, 48.6699485778808], - [10.33017826080328, 48.61455917358421], - [10.301910400390852, 48.61114883422863], - [10.318519592285213, 48.529701232910156], - [10.23357009887701, 48.519458770751896], - [10.244940757751579, 48.50088882446295], - [10.178018569946346, 48.4662704467774], - [10.037790298462141, 48.463359832763786], - [10.043800354003906, 48.433830261230696], - [9.971670150756836, 48.38422012329113], - [10.0683403015139, 48.285560607910156], - [10.086348533630598, 48.18515014648449], - [10.142750740051497, 48.10358047485374], - [10.137919425964355, 48.02132034301758], - [10.083058357238997, 47.96100997924805], - [10.110899925232104, 47.9388694763183], - [10.105770111084041, 47.88275909423828], - [10.078228950500659, 47.87129211425781], - [10.133698463440169, 47.819438934326286], - [10.067669868469522, 47.788909912109375], - [10.117288589477539, 47.76311111450218], - [10.128538131714151, 47.67704010009777], - [10.084130287170467, 47.67631912231468], - [10.073051452636776, 47.63850021362305], - [10.024051666259766, 47.691162109375114], - [9.964490890502987, 47.65380859374994], - [9.84401988983177, 47.67903137207031], - [9.746689796447981, 47.60747909545921], - [9.56746578216547, 47.5864715576173], - [9.499274253845442, 47.6525230407716], - [9.315168380737305, 47.676967620849894], - [9.044014930725098, 47.82368850708008], - [9.177002906799373, 47.737754821777514], - [9.221139907837028, 47.66815185546875], - [9.164094924927042, 47.65358352661133], - [8.99164009094244, 47.747985839844034], - [9.010104179382324, 47.73016357421875], - [8.941365242004451, 47.731822967529524], - [9.006369590759277, 47.69509124755882], - [8.891834259033544, 47.65522384643583], - [8.853852272033691, 47.68376922607439], - [8.874106407165812, 47.7076416015625], - [8.808216094971158, 47.74168014526367], - [8.771158218383846, 47.71976852416992], - [8.79814815521246, 47.67990875244152], - [8.727890014648779, 47.696842193603686], - [8.730445861816634, 47.766109466552905], - [8.69027328491211, 47.76291275024437], - [8.65626907348667, 47.805786132812614], - [8.629762649536133, 47.7659721374514], - [8.619837760925293, 47.80404281616211], - [8.56867599487316, 47.814399719238395], - [8.576228141784725, 47.78907775878906], - [8.47270584106451, 47.77009963989258], - [8.404480934143066, 47.679393768310604], - [8.471726417541618, 47.64346313476574], - [8.601484298706112, 47.6770133972168], - [8.62895870208746, 47.65135192871094], - [8.596846580505542, 47.647193908691406], - [8.584686279296875, 47.6003112792971], - [8.520914077758846, 47.63809585571289], - [8.45824337005638, 47.60531997680681], - [8.495615959167594, 47.585163116455305], - [8.437403678894327, 47.57140731811529], - [8.32952022552496, 47.574924468994425], - [8.2908353805542, 47.613906860351676], - [8.20481967926031, 47.626274108886776], - [8.087834358215616, 47.56288528442394], - [7.944071769714355, 47.549701690673885], - [7.890720844268913, 47.59363555908226], - [7.820772171020621, 47.59469985961937], - [7.66949319839506, 47.53711700439453], - [7.632383823394946, 47.5624237060548], - [7.679849147796688, 47.57091140747082], - [7.670560836792106, 47.59326171875023], - [7.607770919799862, 47.58095932006859], - [7.524673938751221, 47.66019439697271], - [7.557729244232291, 47.88094711303711], - [7.62215709686302, 47.973659515380916], - [7.568590164184855, 48.03633880615257], - [7.577859401702995, 48.121391296386776], - [7.666151046753214, 48.221099853515625], - [7.693936824798527, 48.30212020874046], - [7.745231628418139, 48.32982635498064], - [7.733546733856315, 48.39868545532238], - [7.805161952972469, 48.51350021362316], - [7.805009365081901, 48.59319305419922], - [7.970248699188346, 48.756229400634766], - [8.087015151977823, 48.802013397216854], - [8.197396278381404, 48.957103729248274], - [8.295299530029354, 49.00415039062506], - [8.362239837646541, 49.09968948364275], - [8.38765907287592, 49.23448181152361], - [8.491369247436523, 49.30128860473627], - [8.450428962707804, 49.33285140991234], - [8.49458980560297, 49.36024856567383], - [8.498978614807413, 49.393428802490234], - [8.464948654175089, 49.39220046997076], - [8.508589744568098, 49.44147872924799], - [8.445588111877555, 49.450260162353516], - [8.467529296874943, 49.473041534424055], - [8.418828964233342, 49.55218887329107], - [8.429039001464844, 49.58562088012707], - [8.591519355774153, 49.52497100830095], - [8.625108718872013, 49.55171203613287], - [8.600359916687182, 49.613231658935774], - [8.69777870178217, 49.62720108032238], - [8.681758880615519, 49.57913970947283], - [8.729120254516602, 49.522029876708984], - [8.90207862854021, 49.5113410949707], - [8.879650115966797, 49.4744987487793], - [8.827729225158919, 49.47713088989269], - [8.83992004394554, 49.44095993041992], - [8.800168991088867, 49.41823196411133], - [8.85784053802496, 49.404911041259766], - [8.955150604248217, 49.46086883544922], - [8.954179763793945, 49.51205062866205], - [9.133290290832633, 49.52040100097656], - [9.092338562011832, 49.54613876342785], - [9.10894870758085, 49.583000183105696], - [9.258749961853255, 49.58644866943382], - [9.314629554748706, 49.65655899047857], - [9.418059349060115, 49.64522933959978], - [9.427619934082088, 49.711959838867244], - [9.398599624633789, 49.73049163818371], - [9.365010261535929, 49.70458221435558], - [9.387288093566951, 49.726791381835994], - [9.307028770446834, 49.7379608154298], - [9.335540771484489, 49.74163055419922], - [9.323519706726131, 49.76753997802729], - [9.5102796554566, 49.78639984130888], - [9.573779106140194, 49.74209976196289], - [9.57227897644043, 49.77935028076183], - [9.650460243225211, 49.7763404846192] - ] - ], - [ - [ - [8.708373069763297, 47.71555709838867], - [8.72245121002237, 47.69652938842779], - [8.661308288574162, 47.695213317871264], - [8.708373069763297, 47.71555709838867] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 1, - "properties": { - "ISOCODE": "DE-BY", - "NAME_0": "Germany", - "ID_1": 2, - "name": "Bayern", - "NL_name": null, - "VARname": "Bavaria", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [10.133859634399585, 50.54999923706066], - [10.204319953918457, 50.55379867553722], - [10.234009742736816, 50.512699127197266], - [10.333989143371525, 50.49404907226557], - [10.405019760131836, 50.4232292175293], - [10.39352035522461, 50.39334106445307], - [10.458058357238826, 50.40090942382824], - [10.493670463562239, 50.35243988037132], - [10.605488777160872, 50.330242156982536], - [10.612021446228255, 50.22555160522472], - [10.723018646240519, 50.199798583984375], - [10.734558105469034, 50.248352050781364], - [10.855380058288688, 50.24898910522472], - [10.717250823974666, 50.32294082641607], - [10.722298622131575, 50.36009216308605], - [10.831330299377385, 50.38996124267578], - [10.940460205078125, 50.39025115966808], - [10.99833011627203, 50.342250823974666], - [10.9981107711792, 50.36447906494152], - [11.04424953460699, 50.34238052368164], - [11.113239288330135, 50.36489868164091], - [11.159410476684513, 50.32794189453125], - [11.14237976074213, 50.287109375], - [11.251668930053711, 50.26519012451172], - [11.281947135925293, 50.365509033203125], - [11.248118400573674, 50.476890563964844], - [11.324259757995776, 50.48833084106468], - [11.348060607910156, 50.521869659423885], - [11.430090904235897, 50.51472091674833], - [11.41750812530546, 50.45145034790039], - [11.446418762206974, 50.421760559081974], - [11.481788635254134, 50.433021545410156], - [11.522049903869856, 50.37353897094738], - [11.592958450317326, 50.40353012084972], - [11.787029266357422, 50.42264175415039], - [11.82710075378435, 50.39291000366228], - [11.93927097320568, 50.426879882812614], - [11.983886718750114, 50.393493652343864], - [11.981323242187727, 50.352478027343864], - [12.125018119812239, 50.313156127929744], - [12.137169837951888, 50.282112121582145], - [12.085860252380428, 50.25535202026367], - [12.198919296264705, 50.1956214904788], - [12.19906044006376, 50.11182022094749], - [12.261237144470385, 50.09212112426775], - [12.256030082702637, 50.062278747558594], - [12.4891490936281, 49.986381530761776], - [12.475679397582951, 49.94009399414074], - [12.547736167907715, 49.92714309692383], - [12.501510620117472, 49.83884048461914], - [12.472599983215389, 49.83581924438499], - [12.472072601318473, 49.79027175903332], - [12.402890205383244, 49.75516128540045], - [12.443773269653605, 49.706947326660156], - [12.527859687805176, 49.687759399414176], - [12.525370597839583, 49.63235092163097], - [12.564818382263468, 49.62448883056635], - [12.588051795959473, 49.54399871826166], - [12.645830154419116, 49.53105926513672], - [12.632806777954215, 49.48001480102539], - [12.661074638366813, 49.43216705322277], - [12.759730339050463, 49.40029907226568], - [12.78410530090349, 49.35190582275419], - [12.952889442444018, 49.348270416259766], - [13.033589363098429, 49.30863952636719], - [13.037929534912166, 49.26773071289085], - [13.180460929870549, 49.17430877685558], - [13.180210113525447, 49.144439697265625], - [13.295909881591967, 49.12018203735374], - [13.403729438781738, 49.05178070068365], - [13.423837661743335, 48.97175216674805], - [13.496587753295842, 48.940162658691406], - [13.510198593139876, 48.96820068359375], - [13.588505744934253, 48.968601226806754], - [13.671330451965332, 48.88309097290045], - [13.751342773437727, 48.87451553344749], - [13.835860252380428, 48.77146148681652], - [13.78705883026123, 48.721511840820426], - [13.82571983337408, 48.64122009277355], - [13.809944152832088, 48.590904235839844], - [13.740022659301871, 48.528968811035156], - [13.503158569335938, 48.59651184082037], - [13.435749053955078, 48.564682006836165], - [13.45454025268566, 48.51630020141607], - [13.410618782043684, 48.377738952636776], - [13.285719871520996, 48.30517196655296], - [13.090594291687125, 48.28144454956055], - [12.868214607238826, 48.20366668701183], - [12.753028869629134, 48.11729049682623], - [13.00114727020275, 47.8522300720216], - [12.91126728057884, 47.73124313354498], - [13.015259742736987, 47.729679107666186], - [13.081555366516113, 47.69136810302763], - [13.105588912964038, 47.639202117920206], - [13.047879219055233, 47.584789276123104], - [13.053750038147086, 47.4948616027832], - [13.013463973999194, 47.46576690673828], - [12.969863891601562, 47.477085113525504], - [12.799818038940373, 47.561462402343864], - [12.78131294250511, 47.58154678344732], - [12.826677322387695, 47.61626052856451], - [12.771088600158635, 47.645050048828125], - [12.782772064209098, 47.675922393798885], - [12.605334281921444, 47.67924880981457], - [12.577346801757812, 47.63447570800787], - [12.506064414978312, 47.62885284423828], - [12.43596267700201, 47.70073318481468], - [12.258779525756836, 47.67621994018549], - [12.254279136657772, 47.739990234375114], - [12.17435169219982, 47.698875427246264], - [12.2092800140382, 47.60120010375982], - [12.016809463500977, 47.62178039550781], - [11.856868743896712, 47.579051971435774], - [11.636343955993766, 47.598270416259766], - [11.58102035522461, 47.51182174682617], - [11.437379837036133, 47.51325988769531], - [11.388031959533976, 47.47192382812506], - [11.424080848694132, 47.44562149047846], - [11.341606140136946, 47.45182418823265], - [11.27390003204357, 47.391010284423885], - [11.224139213562012, 47.391269683837834], - [11.246058464050463, 47.43478012084961], - [10.977520942687931, 47.39611053466825], - [10.926508903503702, 47.478080749511776], - [10.862998962402344, 47.47803115844755], - [10.91859436035162, 47.51609420776373], - [10.883132934570597, 47.53810501098644], - [10.772025108337402, 47.516143798828125], - [10.600060462951717, 47.57365036010742], - [10.561381340027083, 47.53593063354498], - [10.432245254516658, 47.58555984497076], - [10.433234214783056, 47.497653961181754], - [10.46283054351801, 47.487220764160384], - [10.471569061279524, 47.43306350708008], - [10.433580398559627, 47.378719329833984], - [10.389999389648438, 47.37543869018549], - [10.323238372803019, 47.302589416504134], - [10.170168876648347, 47.26990127563505], - [10.226869583130167, 47.3929176330567], - [10.095960617065373, 47.3548698425293], - [10.068832397461165, 47.411659240722884], - [10.094819068908748, 47.418479919433594], - [10.090755462646598, 47.45659255981468], - [9.997338294982967, 47.48622512817394], - [9.971186637878588, 47.55048370361345], - [9.87366962432867, 47.53071975708008], - [9.813129425048828, 47.55074691772461], - [9.801539421081998, 47.59716033935541], - [9.735632896423397, 47.541358947754134], - [9.61636924743658, 47.574558258056584], - [9.65905857086176, 47.61347198486351], - [9.757570266723633, 47.61133193969738], - [9.84401988983194, 47.67903137207031], - [9.964490890502987, 47.65380859374994], - [10.024051666259766, 47.691162109375114], - [10.073051452636776, 47.63850021362305], - [10.084130287170467, 47.67631912231468], - [10.128538131714322, 47.67704010009777], - [10.117288589477539, 47.76311111450218], - [10.067669868469693, 47.788909912109375], - [10.13369846344034, 47.819438934326286], - [10.078228950500659, 47.87129211425781], - [10.105770111084041, 47.88275909423828], - [10.110899925232104, 47.9388694763183], - [10.083058357238997, 47.96100997924805], - [10.137919425964355, 48.02132034301758], - [10.142750740051497, 48.10358047485374], - [10.086348533630598, 48.18515014648449], - [10.0683403015139, 48.285560607910156], - [9.971670150756836, 48.38422012329113], - [10.043800354003906, 48.433830261230696], - [10.037790298462141, 48.463359832763786], - [10.178018569946346, 48.4662704467774], - [10.244940757751579, 48.50088882446295], - [10.23357009887701, 48.519458770751896], - [10.318519592285213, 48.529701232910156], - [10.301910400390852, 48.61114883422863], - [10.33017826080328, 48.61455917358421], - [10.262008666992188, 48.6699485778808], - [10.279189109802473, 48.71039962768555], - [10.347478866577205, 48.69562149047874], - [10.358600616455078, 48.65859222412121], - [10.415119171142635, 48.70236206054693], - [10.448868751525993, 48.69832992553722], - [10.420589447021484, 48.66535186767584], - [10.505069732666186, 48.6903915405274], - [10.421119689941634, 48.77619171142601], - [10.460650444030762, 48.81275939941406], - [10.438398361206055, 48.8498992919923], - [10.466718673706339, 48.89397048950218], - [10.43877029418951, 48.90898895263683], - [10.46698093414335, 48.9382896423341], - [10.363980293273926, 49.029991149902344], - [10.260379791259766, 49.03989028930687], - [10.259538650512866, 49.091209411621094], - [10.213559150695858, 49.09807205200218], - [10.264269828796671, 49.14262008666992], - [10.131599426269588, 49.19997024536144], - [10.141930580139217, 49.251510620117415], - [10.119018554687557, 49.25495147705101], - [10.162669181823901, 49.27928924560547], - [10.151530265808162, 49.325119018554744], - [10.111349105835018, 49.33576202392595], - [10.133849143982161, 49.34701156616222], - [10.115939140319995, 49.376281738281364], - [10.17243862152128, 49.39152908325195], - [10.102548599243107, 49.442440032958984], - [10.129039764404354, 49.50531005859375], - [10.089150428772086, 49.504989624023665], - [10.070828437805176, 49.54175186157238], - [10.021670341491813, 49.47856903076166], - [9.959210395813159, 49.474281311035384], - [9.924578666687296, 49.48871994018566], - [9.921249389648722, 49.58118057250982], - [9.865819931030273, 49.53993988037121], - [9.825579643249796, 49.550659179687614], - [9.880399703979776, 49.606769561767635], - [9.807269096374796, 49.725078582763956], - [9.740410804748763, 49.683631896972656], - [9.715788841247615, 49.724449157714844], - [9.66048812866228, 49.68310928344738], - [9.631500244140682, 49.69784164428711], - [9.655658721924112, 49.78755950927729], - [9.57227897644043, 49.77935028076183], - [9.573779106140194, 49.74209976196289], - [9.5102796554566, 49.78639984130888], - [9.380258560180835, 49.77864074707031], - [9.307028770446834, 49.7379608154298], - [9.387288093566951, 49.726791381835994], - [9.353199005126896, 49.71940994262695], - [9.37654018402094, 49.70087051391596], - [9.410099983215332, 49.726779937744254], - [9.433828353882063, 49.69342041015631], - [9.418059349060115, 49.64522933959978], - [9.314629554748706, 49.65655899047857], - [9.235880851745549, 49.57915115356457], - [9.126408576965446, 49.57569122314453], - [9.073870658874569, 49.60485076904297], - [9.113509178161564, 49.6455917358399], - [9.095290184021223, 49.69327926635742], - [9.163489341735783, 49.74538040161133], - [9.11713981628435, 49.75975036621094], - [9.145290374755803, 49.79685974121105], - [9.10502910614008, 49.79275131225597], - [9.104130744934025, 49.84429931640631], - [9.046279907226562, 49.847160339355526], - [9.031888961792163, 49.99053955078125], - [9.066729545593262, 49.99483871459961], - [9.048080444336222, 50.04241180419922], - [8.995120048523233, 50.05247116088873], - [9.033840179443416, 50.11211013793945], - [9.138387680053768, 50.12517166137718], - [9.173168182373217, 50.118499755859375], - [9.169540405273494, 50.08877182006847], - [9.237930297851733, 50.14928054809582], - [9.377340316772461, 50.132209777832145], - [9.419237136841048, 50.08029174804699], - [9.519418716430948, 50.09251022338867], - [9.532540321350154, 50.16738891601568], - [9.503918647766284, 50.174598693847656], - [9.500089645385856, 50.24187850952154], - [9.660399436950684, 50.23199081420921], - [9.636690139770565, 50.246768951416016], - [9.652839660644759, 50.26930999755871], - [9.744089126586971, 50.31105041503929], - [9.746289253235147, 50.4164199829101], - [9.882708549499512, 50.39855194091797], - [9.958759307861442, 50.42156219482416], - [10.074960708618164, 50.54230117797874], - [10.133859634399585, 50.54999923706066] - ] - ] - } - }, - { - "type": "Feature", - "id": 2, - "properties": { - "ISOCODE": "DE-BE", - "NAME_0": "Germany", - "ID_1": 3, - "name": "Berlin", - "NL_name": null, - "VARname": null, - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [13.161809921264762, 52.59442138671869], - [13.216209411621207, 52.58251953125006], - [13.230238914489803, 52.62681198120117], - [13.272738456726188, 52.62248992919922], - [13.28633975982666, 52.655658721923885], - [13.370199203491268, 52.62105941772461], - [13.474988937378043, 52.649169921875], - [13.45722961425787, 52.66054916381836], - [13.482250213623047, 52.67502212524414], - [13.529389381408748, 52.640949249267635], - [13.514860153198356, 52.5892715454101], - [13.663810729980526, 52.5277099609375], - [13.618619918823356, 52.4690895080567], - [13.768408775329533, 52.437110900878906], - [13.660959243774414, 52.33872222900396], - [13.65060997009283, 52.37594223022461], - [13.48781967163086, 52.39324188232422], - [13.476848602295036, 52.419349670410156], - [13.427828788757438, 52.40896224975586], - [13.432428359985352, 52.375541687011776], - [13.252047538757324, 52.41891098022461], - [13.141288757324162, 52.38713073730469], - [13.093818664550781, 52.417438507080135], - [13.176479339599553, 52.505241394043026], - [13.122269630432129, 52.52083206176769], - [13.161809921264762, 52.59442138671869] - ] - ] - } - }, - { - "type": "Feature", - "id": 3, - "properties": { - "ISOCODE": "DE-BB", - "NAME_0": "Germany", - "ID_1": 4, - "name": "Brandenburg", - "NL_name": null, - "VARname": null, - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [13.87950801849371, 53.50106811523443], - [13.917368888855037, 53.4205398559572], - [14.24040889739996, 53.42845153808605], - [14.235617637634334, 53.36948013305664], - [14.100090026855582, 53.261421203613224], - [14.258330345153865, 53.25825119018583], - [14.319879531860295, 53.31262207031256], - [14.420248985290584, 53.32563018798834], - [14.448929786682186, 53.26163864135748], - [14.367140769958667, 53.18033218383795], - [14.388121604919604, 53.13629150390619], - [14.366089820861816, 53.07647705078131], - [14.142452239990462, 52.961112976074446], - [14.155890464782772, 52.87955856323248], - [14.12127017974882, 52.84027099609369], - [14.341383934021167, 52.75926971435547], - [14.466204643249455, 52.65725708007818], - [14.639061927795467, 52.58003234863304], - [14.600604057312069, 52.53302383422857], - [14.631249427795467, 52.499130249023494], - [14.528908729553166, 52.39641189575201], - [14.584350585937784, 52.31105804443365], - [14.570899963378906, 52.2895622253418], - [14.699570655823038, 52.24108886718773], - [14.669348716735897, 52.12155151367199], - [14.741278648376522, 52.07339096069347], - [14.680540084838867, 51.905200958251896], - [14.58503341674816, 51.837066650390625], - [14.738728523254451, 51.66687011718744], - [14.739829063415698, 51.60350036621105], - [14.685029983520735, 51.5994300842288], - [14.665378570556811, 51.55078887939459], - [14.570050239562988, 51.57242202758789], - [14.341999053955135, 51.500820159912394], - [14.15363979339628, 51.54505157470703], - [14.091679573059253, 51.49647903442383], - [14.107279777526855, 51.48025131225586], - [14.049810409545955, 51.48036193847656], - [14.080458641052417, 51.44773864746094], - [14.015210151672363, 51.37430191040062], - [13.97159862518322, 51.39891052246094], - [13.779280662536564, 51.36178207397472], - [13.56014919281023, 51.369880676269815], - [13.42150878906267, 51.45396041870117], - [13.39611911773693, 51.42473983764643], - [13.337078094482365, 51.44050979614269], - [13.286639213562069, 51.38579177856457], - [13.233359336853141, 51.39775848388672], - [13.222880363464583, 51.431190490722656], - [13.19277858734148, 51.427951812744254], - [13.22608852386503, 51.505062103271484], - [13.204320907593058, 51.55712890625006], - [13.063730239868335, 51.64789962768549], - [13.198930740356388, 51.71620941162115], - [13.137908935546875, 51.84654998779291], - [13.163080215454045, 51.87210083007807], - [13.048269271850643, 51.870010375976506], - [13.055450439453068, 51.89950942993164], - [12.982969284057617, 51.900531768799055], - [12.972139358520621, 51.93397140502941], - [12.863180160522631, 51.931758880615405], - [12.858329772949446, 51.96512985229492], - [12.797579765319881, 51.95854187011719], - [12.68417930603033, 52.00812149047857], - [12.549958229064998, 51.980232238769815], - [12.478808403015137, 52.03289031982416], - [12.435828208923567, 52.01491165161133], - [12.221308708190918, 52.16529846191406], - [12.301870346069336, 52.21995162963867], - [12.25396919250494, 52.25008010864258], - [12.317408561706713, 52.341960906982706], - [12.29343032836914, 52.357040405273494], - [12.312949180603027, 52.401279449463175], - [12.28273010253912, 52.41271972656256], - [12.33942985534668, 52.47510147094738], - [12.242839813232365, 52.5206108093264], - [12.205368995666447, 52.49135208129883], - [12.175079345703125, 52.50278091430664], - [12.194099426269474, 52.52854156494146], - [12.151088714599553, 52.521560668945256], - [12.189039230346964, 52.56937026977539], - [12.178129196167049, 52.62139892578131], - [12.245609283447322, 52.62440872192394], - [12.24106884002697, 52.68381118774414], - [12.204960823059082, 52.710159301757926], - [12.218799591064396, 52.769401550293026], - [12.26237869262718, 52.79122161865246], - [12.239520072937296, 52.854591369628906], - [11.846659660339299, 52.90298080444353], - [11.82853889465349, 52.921730041503906], - [11.853730201721191, 52.94752883911144], - [11.693689346313647, 52.97496032714844], - [11.688010215759562, 53.00477981567377], - [11.63239002227806, 53.00897216796881], - [11.639038085937614, 53.03868865966814], - [11.521370887756461, 53.04336929321289], - [11.459699630737418, 53.07736206054682], - [11.34766864776617, 53.05216217041044], - [11.273380279541016, 53.101150512695426], - [11.397848129272518, 53.10763168334961], - [11.39811038970953, 53.13743209838873], - [11.540950775146655, 53.12139129638683], - [11.578739166259766, 53.16205215454124], - [11.566919326782283, 53.21057128906256], - [11.635769844055346, 53.239810943603516], - [11.834399223327921, 53.223121643066406], - [11.803829193115234, 53.24948883056646], - [12.028409957885799, 53.29949951171881], - [12.05480003356945, 53.366352081298885], - [12.171999931335733, 53.33528137207048], - [12.2345104217531, 53.35324859619146], - [12.2645902633667, 53.31935882568371], - [12.400289535522461, 53.299160003662166], - [12.448179244995117, 53.246440887451115], - [12.6708602905274, 53.25107192993181], - [12.676119804382608, 53.22494888305664], - [12.762390136718977, 53.22008132934582], - [12.742948532104776, 53.194301605224666], - [12.767208099365234, 53.182811737060604], - [12.977380752563704, 53.19474029541021], - [12.945539474487248, 53.169181823730526], - [12.982050895691202, 53.157501220703125], - [13.121039390563908, 53.237201690674055], - [13.1831893920899, 53.24739074707037], - [13.23102092742937, 53.21321105957048], - [13.301878929138354, 53.275329589843864], - [13.405271530151367, 53.243896484375], - [13.438720703125227, 53.29528808593773], - [13.526306152343807, 53.316101074218864], - [13.54931640625, 53.39727783203125], - [13.624085426330737, 53.407287597656364], - [13.709418296814249, 53.47985076904297], - [13.829074859619368, 53.49626159667986], - [13.78027439117426, 53.5120849609375], - [13.789619445800952, 53.556289672851506], - [13.818076133728255, 53.51507186889654], - [13.87950801849371, 53.50106811523443] - ], - [ - [13.482250213623217, 52.67502212524414], - [13.45722961425804, 52.66054916381836], - [13.474988937378214, 52.649169921875], - [13.370199203491438, 52.62105941772461], - [13.28633975982666, 52.655658721924055], - [13.272738456726358, 52.62248992919922], - [13.230238914489973, 52.62681198120117], - [13.216209411621378, 52.58251953125006], - [13.13699054718029, 52.58364868164085], - [13.160609245300407, 52.5647811889649], - [13.1222696304323, 52.52083206176769], - [13.176479339599553, 52.505241394043026], - [13.099459648132324, 52.40625], - [13.141288757324162, 52.38713073730469], - [13.30657005310087, 52.41442108154297], - [13.432428359985522, 52.375541687011776], - [13.427828788757438, 52.40896224975586], - [13.476848602295206, 52.419349670410156], - [13.48781967163086, 52.39324188232439], - [13.65060997009283, 52.37594223022461], - [13.660959243774414, 52.33872222900396], - [13.74246978759777, 52.40044021606468], - [13.762909889221135, 52.448318481445256], - [13.618619918823356, 52.4690895080567], - [13.663810729980526, 52.52770996093767], - [13.514860153198356, 52.5892715454101], - [13.529389381408748, 52.640949249267635], - [13.482250213623217, 52.67502212524414] - ] - ] - } - }, - { - "type": "Feature", - "id": 4, - "properties": { - "ISOCODE": "DE-HB", - "NAME_0": "Germany", - "ID_1": 5, - "name": "Bremen", - "NL_name": null, - "VARname": null, - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.98544883728033, 53.128219604492244], - [8.948739051818961, 53.12380218505865], - [8.992988586425724, 53.09848022460949], - [8.962628364562988, 53.090450286865234], - [8.982990264892521, 53.0497398376466], - [8.935469627380428, 53.015239715576286], - [8.866428375244254, 53.043762207031364], - [8.818189620971793, 53.024120330810604], - [8.773430824279899, 53.05675888061529], - [8.731298446655273, 53.03720855712896], - [8.625838279724121, 53.165290832519474], - [8.486890792846793, 53.22864151000982], - [8.598338127136287, 53.21680068969732], - [8.593818664550781, 53.186859130859375], - [8.829590797424316, 53.166198730468864], - [8.861869812011776, 53.1370086669923], - [8.947138786315918, 53.15737915039068], - [8.98544883728033, 53.128219604492244] - ] - ] - } - }, - { - "type": "Feature", - "id": 5, - "properties": { - "ISOCODE": "DE-HH", - "NAME_0": "Germany", - "ID_1": 6, - "name": "Hamburg", - "NL_name": null, - "VARname": null, - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [10.071617126464844, 53.71823120117182], - [10.198549270629883, 53.74079132080078], - [10.143050193786735, 53.688961029052734], - [10.228058815002441, 53.63389205932617], - [10.154500007629338, 53.55617904663097], - [10.331219673156795, 53.44622039794933], - [10.248090744018612, 53.4047203063966], - [10.177260398864746, 53.40795135498047], - [10.053689002990666, 53.47415924072271], - [9.996049880981502, 53.429100036621094], - [9.905927658081112, 53.424720764160156], - [9.918270111084041, 53.4584197998048], - [9.860950469970703, 53.43928909301758], - [9.76345062255865, 53.51694107055664], - [9.768639564514217, 53.565540313720646], - [9.7236585617066, 53.56900024414068], - [9.760189056396598, 53.639122009277344], - [9.825568199157715, 53.595352172851676], - [9.906899452209473, 53.662181854248104], - [10.07267856597906, 53.68870925903332], - [10.071617126464844, 53.71823120117182] - ] - ] - } - }, - { - "type": "Feature", - "id": 6, - "properties": { - "ISOCODE": "DE-HE", - "NAME_0": "Germany", - "ID_1": 7, - "name": "Hessen", - "NL_name": null, - "VARname": "Hesse", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [9.498769760131779, 51.63151931762695], - [9.62797927856451, 51.637340545654354], - [9.689008712768555, 51.58312225341825], - [9.590420722961483, 51.52280044555664], - [9.644719123840332, 51.472278594970874], - [9.64620971679716, 51.42076873779308], - [9.571659088134766, 51.3931617736817], - [9.561838150024585, 51.34835052490229], - [9.731150627136287, 51.30081939697277], - [9.77073860168457, 51.34252929687523], - [9.7361488342288, 51.323299407958984], - [9.705880165100325, 51.37052154541033], - [9.819369316101074, 51.4156112670899], - [9.869279861450138, 51.375450134277344], - [9.85617923736595, 51.41577911376976], - [9.9112300872805, 51.41975021362316], - [9.97350883483881, 51.28619003295904], - [10.05734062194847, 51.278251647949446], - [10.075889587402571, 51.226181030273665], - [10.236989021301497, 51.188148498535156], - [10.214177131652946, 51.11780929565441], - [10.172169685363826, 51.151420593261946], - [10.12471866607666, 51.14057159423834], - [10.178549766540641, 51.11801147460943], - [10.149688720703352, 51.055130004882926], - [10.221340179443416, 51.02507019042969], - [10.156480789184855, 50.99575042724615], - [10.04291820526123, 51.01494216918968], - [10.019538879394474, 50.9816589355471], - [10.06787014007574, 50.948028564453125], - [9.94838905334501, 50.9484214782716], - [9.948748588562069, 50.92615890502924], - [9.99036979675293, 50.937240600585994], - [9.97887897491455, 50.90760040283203], - [10.014529228210677, 50.92232131958036], - [10.062939643859806, 50.88500213623058], - [10.021409988403377, 50.86668014526367], - [10.021959304809798, 50.833309173583984], - [9.950229644775561, 50.82239913940424], - [9.956660270690861, 50.781711578369254], - [9.920918464660645, 50.76319885253906], - [9.938960075378418, 50.73741912841791], - [9.873108863830566, 50.64184188842779], - [9.946098327636662, 50.630100250244254], - [9.951470375060978, 50.670921325683594], - [10.048980712890852, 50.67726135253929], - [10.086059570312784, 50.6323814392091], - [10.038170814514217, 50.613960266113395], - [10.063029289245662, 50.557312011718864], - [10.040019035339299, 50.49333190917986], - [9.964568138122502, 50.425350189208984], - [9.847309112548885, 50.3982887268067], - [9.757839202881087, 50.42409133911144], - [9.738649368286303, 50.299800872802734], - [9.652839660644759, 50.26930999755871], - [9.636690139770565, 50.246768951416016], - [9.660399436950684, 50.23199081420921], - [9.500089645385856, 50.24187850952154], - [9.503918647766284, 50.174598693847656], - [9.532540321350154, 50.16738891601568], - [9.519418716430948, 50.09251022338867], - [9.419237136841048, 50.08029174804699], - [9.377340316772461, 50.132209777832145], - [9.237930297851733, 50.14928054809582], - [9.169540405273494, 50.08877182006847], - [9.173168182373217, 50.118499755859375], - [9.138387680053768, 50.12517166137718], - [9.01706981658947, 50.09336853027344], - [8.995349884033317, 50.0451011657716], - [9.048080444336222, 50.04241180419922], - [9.066729545593262, 49.99483871459961], - [9.031888961792163, 49.99053955078125], - [9.046279907226562, 49.847160339355526], - [9.104130744934025, 49.84429931640631], - [9.10502910614008, 49.79275131225597], - [9.145290374755803, 49.79685974121105], - [9.11713981628435, 49.75975036621094], - [9.163489341735783, 49.74538040161133], - [9.095290184021223, 49.69327926635742], - [9.113509178161564, 49.6455917358399], - [9.073519706726358, 49.62322998046881], - [9.10894870758085, 49.583000183105696], - [9.092338562011832, 49.54613876342785], - [9.133290290832633, 49.52040100097656], - [8.954179763793945, 49.51205062866205], - [8.955150604248388, 49.46086883544922], - [8.817639350891056, 49.404090881347884], - [8.82772922515909, 49.47713088989269], - [8.879650115966797, 49.4744987487793], - [8.90207862854021, 49.5113410949707], - [8.729120254516602, 49.522029876708984], - [8.68175888061569, 49.57913970947283], - [8.69777870178217, 49.62720108032255], - [8.600359916687353, 49.613231658935774], - [8.625108718872013, 49.55171203613287], - [8.557209014893033, 49.52381134033203], - [8.39341926574707, 49.617549896240234], - [8.36192989349371, 49.690170288086165], - [8.486090660095442, 49.76776885986328], - [8.428420066833667, 49.765998840332145], - [8.386138916015625, 49.820030212402344], - [8.396700859069824, 49.84989166259777], - [8.34934043884283, 49.881698608398665], - [8.346780776977823, 49.95928955078125], - [8.275419235229663, 50.0164604187014], - [8.187968254089299, 50.03245925903326], - [7.887711048126278, 49.97066879272484], - [7.78512001037592, 50.05311203002941], - [7.869957923889274, 50.12857055664074], - [7.941120147705135, 50.102508544921875], - [7.945549964904785, 50.14015197753929], - [7.897570133209172, 50.16987991333019], - [7.919559001922778, 50.20370864868164], - [8.006259918213061, 50.234550476074446], - [8.047920227050952, 50.21253967285156], - [8.076358795166072, 50.23173141479492], - [8.051680564880485, 50.268829345703125], - [8.138910293579215, 50.2740592956543], - [8.082799911499023, 50.37416076660162], - [7.984179973602238, 50.41360092163097], - [8.030008316040153, 50.44818115234398], - [7.996560096740779, 50.4847412109375], - [8.01100921630865, 50.52611923217779], - [8.056481361389274, 50.55717849731468], - [8.16199970245367, 50.551280975342024], - [8.173588752746582, 50.60026168823248], - [8.118748664856241, 50.67570877075207], - [8.179908752441577, 50.735759735107536], - [8.131909370422647, 50.791851043701286], - [8.275670051574764, 50.881240844726506], - [8.380510330200252, 50.85895156860357], - [8.471490859985408, 50.91152191162121], - [8.467968940735147, 50.96326065063499], - [8.554678916931323, 51.01322937011713], - [8.51747035980219, 51.03866195678722], - [8.5381507873538, 51.09511947631847], - [8.734568595886515, 51.10649108886713], - [8.70979022979742, 51.13212966918974], - [8.784381866455362, 51.20458221435564], - [8.752208709716967, 51.25997924804699], - [8.601678848266772, 51.2458114624024], - [8.574358940124796, 51.28638076782232], - [8.703760147094727, 51.374889373779354], - [8.957579612732161, 51.38727188110374], - [8.968549728393725, 51.42853927612316], - [8.938670158386515, 51.42792892456066], - [8.912460327148722, 51.47972106933605], - [8.990538597106934, 51.50728988647472], - [9.10620021820074, 51.498218536377124], - [9.113858222961369, 51.4426002502442], - [9.228690147400016, 51.459732055664006], - [9.378959655761776, 51.59236145019531], - [9.343469619750977, 51.613761901855696], - [9.486080169677791, 51.65705108642601], - [9.498769760131779, 51.63151931762695] - ] - ] - } - }, - { - "type": "Feature", - "id": 7, - "properties": { - "ISOCODE": "DE-MV", - "NAME_0": "Germany", - "ID_1": 8, - "name": "Mecklenburg-Vorpommern", - "NL_name": null, - "VARname": "Mecklenburg-West Pomerania", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [12.519721031188965, 54.484306335449446], - [12.655277252197664, 54.442638397217024], - [12.962499618530387, 54.437637329101676], - [12.802499771118221, 54.408195495605696], - [12.636943817138672, 54.424861907958984], - [12.576943397522314, 54.40347290039068], - [12.59305667877203, 54.38347244262695], - [12.435832977295036, 54.37874984741234], - [12.360277175903263, 54.30625152587902], - [12.38305473327648, 54.27930450439459], - [12.363612174987793, 54.26597213745117], - [12.460276603698901, 54.24847412109369], - [12.409167289733887, 54.27986145019554], - [12.535278320312955, 54.33874893188488], - [12.553055763244743, 54.37958145141613], - [12.59194469451927, 54.357360839843864], - [12.669721603393668, 54.39069366455084], - [12.657499313354776, 54.408195495605696], - [12.715277671814022, 54.404304504394474], - [12.704795850456309, 54.39468392669172], - [12.734723091125772, 54.37069320678711], - [12.786945343018033, 54.3962516784668], - [12.810278892517147, 54.3451385498048], - [13.019721984863338, 54.43902587890642], - [13.025279045105378, 54.39652633667038], - [13.093609809875886, 54.366806030273665], - [13.07583236694336, 54.34541702270519], - [13.105833053588867, 54.281806945800895], - [13.286388397216797, 54.235137939453466], - [13.346388816833894, 54.18041610717802], - [13.318054199219205, 54.15986251831066], - [13.415834426880053, 54.1751403808596], - [13.382498741150357, 54.14236068725586], - [13.41139030456543, 54.15652847290062], - [13.456945419311523, 54.090694427490234], - [13.500834465026912, 54.085140228271484], - [13.489167213440396, 54.123748779297216], - [13.696389198303223, 54.17180633544939], - [13.806944847107275, 54.10319519042969], - [13.74416637420694, 54.029304504394645], - [13.914167404174805, 53.92235946655319], - [13.824722290039233, 53.86624908447283], - [13.937500953674316, 53.90847396850597], - [13.90583419799816, 53.98986053466797], - [13.965278625488622, 53.9901390075687], - [13.959721565246582, 53.93402862548851], - [13.983612060546875, 53.962638854980696], - [14.042499542236726, 53.942081451416016], - [14.046944618225439, 53.99652862548862], - [13.974166870117244, 54.06375122070335], - [13.910832405090275, 54.064304351806754], - [13.924167633056584, 54.035415649414006], - [13.862501144409407, 53.99930572509771], - [13.87916564941412, 54.04013824462936], - [13.858055114746207, 54.04847335815441], - [13.769165992737271, 54.01902770996111], - [13.812499046325684, 54.09902954101585], - [13.749167442321948, 54.159027099609546], - [13.803610801696834, 54.17847061157249], - [13.870834350586051, 54.10152816772495], - [14.014165878295955, 54.05430603027338], - [14.221389770507926, 53.93013763427729], - [14.186329841614167, 53.915580749512], - [14.2173366546632, 53.865417480469034], - [14.038612365722713, 53.873474121093864], - [13.89861202239996, 53.83958435058611], - [13.806388854980412, 53.85819625854492], - [14.038612365722713, 53.75513839721674], - [14.282500267028809, 53.739582061767635], - [14.215276718139592, 53.70264053344738], - [14.273162841796875, 53.69930648803711], - [14.289348602294979, 53.63378143310564], - [14.324908256530762, 53.61864852905296], - [14.302708625793514, 53.5426101684572], - [14.375618934631348, 53.45944976806658], - [14.415765762329158, 53.32979583740257], - [14.319879531860295, 53.31262207031256], - [14.258330345153865, 53.25825119018583], - [14.100090026855582, 53.261421203613224], - [14.235617637634334, 53.36948013305681], - [14.24040889739996, 53.42845153808622], - [13.917368888855037, 53.4205398559572], - [13.879629135131836, 53.50273132324219], - [13.818076133728425, 53.51507186889671], - [13.789619445801122, 53.556289672851506], - [13.78027439117426, 53.5120849609375], - [13.829074859619368, 53.49626159667986], - [13.709418296814249, 53.47985076904297], - [13.624085426330737, 53.407287597656364], - [13.54931640625, 53.39727783203125], - [13.526306152343807, 53.316101074218864], - [13.438720703125227, 53.29528808593773], - [13.405271530151367, 53.243896484375], - [13.301878929138354, 53.275329589843864], - [13.23102092742937, 53.21321105957048], - [13.1831893920899, 53.24739074707037], - [13.121039390563908, 53.237201690674055], - [12.982050895691202, 53.157501220703125], - [12.945539474487248, 53.169181823730526], - [12.977380752563704, 53.19474029541021], - [12.767208099365234, 53.182811737060604], - [12.742948532104776, 53.194301605224666], - [12.762390136718977, 53.22008132934582], - [12.676119804382608, 53.22494888305664], - [12.6708602905274, 53.25107192993181], - [12.448179244995117, 53.246440887451115], - [12.400289535522461, 53.299160003662166], - [12.2645902633667, 53.31935882568371], - [12.2345104217531, 53.35324859619146], - [12.171999931335733, 53.33528137207048], - [12.05480003356945, 53.366352081298885], - [12.028409957885799, 53.29949951171881], - [11.953209877014274, 53.26670074462902], - [11.8974990844726, 53.27468872070335], - [11.872070312500057, 53.245121002197266], - [11.803829193115234, 53.24948883056646], - [11.834399223327921, 53.223121643066406], - [11.747279167175236, 53.21274948120117], - [11.635769844055346, 53.239810943603516], - [11.554379463196028, 53.20323181152355], - [11.578739166259766, 53.16205215454124], - [11.540950775146655, 53.12139129638683], - [11.39811038970953, 53.13743209838873], - [11.385419845581282, 53.10773086547863], - [11.186309814453125, 53.135421752929744], - [11.198998451232967, 53.18004226684582], - [11.068689346313477, 53.22988891601574], - [10.994039535522688, 53.334770202636946], - [10.919249534606934, 53.351211547851676], - [10.838748931884822, 53.30918121337896], - [10.708258628845158, 53.379310607910156], - [10.597419738769815, 53.373649597168026], - [10.639378547668628, 53.465099334716854], - [10.824370384216593, 53.51728057861334], - [10.823429107666016, 53.58028030395525], - [10.923410415649471, 53.58530044555687], - [10.946919441223201, 53.67757034301758], - [10.757729530334643, 53.75157928466808], - [10.744208335876522, 53.840560913086165], - [10.767909049987793, 53.88106918334961], - [10.87527942657465, 53.92784118652338], - [10.901128768920898, 53.90127944946289], - [10.963709831237907, 53.9109992980957], - [10.887760162353572, 53.92387008666998], - [10.894718170165959, 53.955970764160384], - [11.179167747497502, 54.01569366455101], - [11.258610725403287, 53.98485946655296], - [11.258610725403287, 53.93402862548851], - [11.335276603698844, 53.958473205566634], - [11.454722404480151, 53.90041732788097], - [11.483610153198242, 53.96847152709984], - [11.443611145019531, 53.96041488647461], - [11.444721221923885, 53.997081756592024], - [11.428055763244686, 53.96097183227539], - [11.388054847717399, 53.96541595458979], - [11.378055572510107, 53.997360229492415], - [11.492501258850325, 54.02291488647472], - [11.467498779296932, 53.974029541015625], - [11.490279197693212, 53.968193054199446], - [11.519166946411303, 54.032081604004134], - [11.572501182556323, 54.032638549804915], - [11.62583255767828, 54.08958435058588], - [11.603609085083121, 54.102638244629134], - [11.532500267029206, 54.04902648925781], - [11.525277137756348, 54.07180404663086], - [11.682498931884766, 54.15319442749018], - [11.853609085083065, 54.14513778686569], - [12.087498664856184, 54.18319320678711], - [12.091944694518986, 54.152084350585994], - [12.124721527100064, 54.150138854980696], - [12.142498970031852, 54.17235946655296], - [12.09527778625494, 54.18097305297857], - [12.339165687561433, 54.29791641235397], - [12.519721031188965, 54.484306335449446] - ] - ], - [ - [ - [13.429166793823299, 54.68458175659174], - [13.37583255767828, 54.63513946533203], - [13.420833587646825, 54.577915191650845], - [13.679720878601131, 54.56263732910156], - [13.668609619140682, 54.52069473266647], - [13.569721221924283, 54.46180725097679], - [13.60972213745157, 54.404861450195426], - [13.673610687256257, 54.40069580078159], - [13.76694393157959, 54.34152603149437], - [13.71694374084484, 54.31013870239269], - [13.72527885437006, 54.27347183227562], - [13.646389007568416, 54.296527862549055], - [13.70416736602806, 54.326248168945426], - [13.610832214355923, 54.31624984741222], - [13.68305587768566, 54.34930419921881], - [13.61361026763916, 54.33069610595737], - [13.58083438873291, 54.35291671752964], - [13.454723358154581, 54.335693359375], - [13.394721984863736, 54.27125167846691], - [13.352499008178768, 54.269584655762], - [13.41805553436285, 54.254859924316634], - [13.393610000610408, 54.22097396850586], - [13.290279388427791, 54.25125122070335], - [13.321389198303564, 54.24514007568382], - [13.335277557373104, 54.278194427490234], - [13.269722938537598, 54.25374984741211], - [13.199722290039062, 54.270137786865575], - [13.19416522979742, 54.296806335449446], - [13.139166831970158, 54.2823600769043], - [13.18472290039108, 54.30097198486328], - [13.114721298217717, 54.331806182861555], - [13.127499580383642, 54.37125015258789], - [13.261943817139013, 54.3829154968264], - [13.211388587952058, 54.42986297607416], - [13.149722099304313, 54.42902755737305], - [13.26805686950695, 54.47930526733444], - [13.227499961853368, 54.48597335815458], - [13.230278015136776, 54.51097106933594], - [13.158611297607422, 54.504028320312614], - [13.143611907959041, 54.54680633544922], - [13.255277633667106, 54.55208206176758], - [13.305277824402253, 54.51402664184582], - [13.29749870300293, 54.55236053466797], - [13.368612289429052, 54.57930374145502], - [13.338055610656681, 54.54875183105469], - [13.377498626709098, 54.55902862548828], - [13.413056373596646, 54.49375152587885], - [13.506387710571403, 54.480972290039006], - [13.501943588257177, 54.548473358154524], - [13.395832061767521, 54.57291793823265], - [13.37027835845987, 54.61458206176752], - [13.243055343628214, 54.55875015258789], - [13.28305625915533, 54.64625167846674], - [13.160833358765103, 54.55902862548828], - [13.249724388122615, 54.659862518310774], - [13.429166793823299, 54.68458175659174] - ] - ], - [ - [ - [13.184166908264217, 54.49430465698265], - [13.226943969726904, 54.468750000000114], - [13.120834350586392, 54.442359924316634], - [13.184166908264217, 54.49430465698265] - ] - ], - [ - [ - [13.13638877868658, 54.6051406860351], - [13.158054351807039, 54.57930374145502], - [13.110833168029785, 54.5837516784668], - [13.116943359375, 54.53763961792015], - [13.06360912322998, 54.457637786865234], - [13.097499847412223, 54.59041595458996], - [13.13638877868658, 54.6051406860351] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 8, - "properties": { - "ISOCODE": "DE-NI", - "NAME_0": "Germany", - "ID_1": 9, - "name": "Niedersachsen", - "NL_name": null, - "VARname": "Lower Saxony", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [8.680833816528661, 53.892082214355696], - [8.75694561004633, 53.84263992309582], - [8.883610725402946, 53.82791519165062], - [9.016388893127498, 53.835971832275504], - [9.096388816833496, 53.883983612060774], - [9.28820991516119, 53.86941146850586], - [9.50700855255127, 53.70085144042997], - [9.547169685363883, 53.62430953979492], - [9.768639564514388, 53.565540313720646], - [9.763450622558821, 53.51694107055664], - [9.860950469970874, 53.43928909301758], - [9.898807525634822, 53.469478607177734], - [9.924840927124308, 53.44726943969755], - [9.905927658081112, 53.424720764160156], - [9.983139038085938, 53.42528152465826], - [10.053689002990666, 53.47415924072271], - [10.177260398864917, 53.40795135498064], - [10.331270217895678, 53.44253158569336], - [10.579379081726188, 53.369850158691634], - [10.708258628845158, 53.379310607910156], - [10.838748931884822, 53.30918121337896], - [10.931690216064567, 53.350830078125114], - [10.994039535522688, 53.334770202636946], - [11.068689346313477, 53.22988891601574], - [11.198998451232967, 53.18004226684582], - [11.186309814453125, 53.135421752929744], - [11.26729869842535, 53.12728118896496], - [11.329089164734114, 53.059749603271484], - [11.459699630737418, 53.07736206054682], - [11.60176944732666, 53.031551361083984], - [11.56410026550293, 52.99465179443365], - [11.514609336853084, 52.99877166748041], - [11.507689476013184, 52.939300537109375], - [11.321439743041935, 52.873699188232536], - [11.041929244995174, 52.913089752197436], - [10.992259979248274, 52.90634918212896], - [10.942508697509822, 52.85137939453125], - [10.766200065612793, 52.851242065429915], - [10.795768737793253, 52.72050857543968], - [10.832089424133358, 52.723411560058594], - [10.921110153198413, 52.60668182373047], - [10.978019714355469, 52.621829986572266], - [10.934068679809627, 52.565818786621094], - [11.010089874267692, 52.49187088012707], - [10.94782829284668, 52.49203109741222], - [10.936208724975586, 52.45901107788109], - [11.078740119934139, 52.373451232910384], - [10.987579345703125, 52.337001800537394], - [11.091680526733626, 52.22570037841808], - [11.019989967346362, 52.19678878784191], - [11.068088531494084, 52.16691970825195], - [11.05053997039812, 52.13394165039074], - [10.949279785156307, 52.10540008544922], - [10.974808692932129, 52.057250976562614], - [10.691758155822754, 52.052768707275675], - [10.563369750976562, 52.00992965698259], - [10.655550003051758, 51.960559844970874], - [10.612678527832315, 51.94221878051758], - [10.655679702758732, 51.90460968017584], - [10.576871871948242, 51.851169586181754], - [10.577550888061637, 51.78271102905285], - [10.632180213928336, 51.75741958618164], - [10.70512962341337, 51.643550872802734], - [10.639940261841048, 51.61925888061535], - [10.664789199829386, 51.55786895751976], - [10.605010032654093, 51.57635879516613], - [10.522129058837947, 51.55052185058588], - [10.37830924987793, 51.58518981933605], - [10.349979400634709, 51.52178955078125], - [10.238059997558878, 51.47042083740229], - [10.19617938995367, 51.48188018798828], - [10.143619537353686, 51.44128036499035], - [10.161690711975098, 51.42998886108421], - [10.054610252380314, 51.4380989074707], - [9.943228721618823, 51.37916946411133], - [9.9112300872805, 51.41975021362316], - [9.85617923736595, 51.41577911376976], - [9.869279861450138, 51.375450134277344], - [9.819369316101074, 51.4156112670899], - [9.705880165100325, 51.37052154541033], - [9.7361488342288, 51.323299407958984], - [9.77073860168457, 51.34252929687523], - [9.731150627136287, 51.30081939697277], - [9.561838150024585, 51.34835052490229], - [9.571659088134766, 51.3931617736817], - [9.64620971679716, 51.42076873779308], - [9.644719123840332, 51.472278594970874], - [9.590420722961483, 51.52280044555664], - [9.689008712768555, 51.58312225341825], - [9.62797927856451, 51.637340545654354], - [9.382368087768612, 51.647689819335994], - [9.408979415893555, 51.699748992920036], - [9.388999938964844, 51.75823974609369], - [9.451158523559684, 51.79259109497076], - [9.437099456787223, 51.8402214050293], - [9.465918540954647, 51.855468750000114], - [9.341150283813647, 51.85374069213867], - [9.35097885131836, 51.894889831543026], - [9.27766036987299, 51.92739105224621], - [9.281768798828068, 51.96847152709972], - [9.179109573364315, 51.97811889648449], - [9.202249526977653, 51.99710845947271], - [9.176400184631575, 52.034011840820426], - [9.192729949951229, 52.07155990600586], - [9.137360572815226, 52.093070983886946], - [9.160108566284407, 52.12327194213867], - [9.020539283752441, 52.13224029541027], - [8.987109184265421, 52.19509887695318], - [9.048390388489054, 52.18117141723661], - [9.040340423584269, 52.22206878662121], - [9.076330184936694, 52.230110168456974], - [8.964668273926009, 52.28050994873047], - [9.12292861938505, 52.40250015258789], - [9.096728324890364, 52.443119049072436], - [9.137780189514103, 52.477390289306754], - [9.094149589538517, 52.49906921386719], - [9.05136871337885, 52.502090454101676], - [8.940418243408317, 52.40320968627924], - [8.855890274047965, 52.39060211181646], - [8.709649085998535, 52.39556884765631], - [8.704008102417163, 52.503601074218864], - [8.653689384460506, 52.53250885009771], - [8.50821876525896, 52.51488876342796], - [8.432649612426871, 52.45019912719732], - [8.304120063781795, 52.46253967285179], - [8.313388824463118, 52.407039642333984], - [8.443698883056697, 52.36478042602562], - [8.470759391784725, 52.316841125488395], - [8.446478843689249, 52.212089538574446], - [8.520669937134016, 52.18727874755865], - [8.404229164123478, 52.11082077026367], - [8.269809722900504, 52.13460922241222], - [8.196008682250977, 52.07390975952171], - [8.032528877258585, 52.068290710449446], - [7.974060058593864, 52.03638076782238], - [7.885759830475024, 52.08618164062506], - [8.009200096130371, 52.1151695251466], - [8.017779350280819, 52.172870635986385], - [7.900389194488525, 52.1991920471192], - [7.954770088195971, 52.276519775390625], - [7.928679943084944, 52.305610656738395], - [7.988409996032715, 52.31166076660179], - [7.937768936157227, 52.368728637695426], - [7.719359874725285, 52.401988983154354], - [7.693008899689005, 52.45629119873058], - [7.613338947296199, 52.47603988647472], - [7.578148841857853, 52.431190490722656], - [7.60909986495966, 52.42097091674805], - [7.586558818817139, 52.376251220703125], - [7.298637866974047, 52.26420211791992], - [7.070188999176082, 52.24346160888666], - [7.029718875884953, 52.29431915283209], - [7.07911586761486, 52.38272476196295], - [7.006279945373819, 52.469501495361555], - [6.950539112091235, 52.43696975708002], - [6.713626861572209, 52.48441314697283], - [6.683791160583496, 52.55606460571295], - [6.768260955810774, 52.56516647338867], - [6.724298000335978, 52.59061050415062], - [6.743810176849422, 52.64709091186529], - [7.051859855652083, 52.63584899902344], - [7.094276905059871, 52.84645080566412], - [7.2614879608156, 52.997539520263615], - [7.256578922271729, 53.09841156005865], - [7.226968765258846, 53.124462127685604], - [7.292709827423039, 53.16294097900402], - [7.284560203552189, 53.19956970214855], - [7.272350788116739, 53.233783721923885], - [7.205277919769344, 53.23880767822271], - [7.249166965484562, 53.32986068725586], - [7.02694511413597, 53.33625030517578], - [6.998610973358154, 53.361251831054915], - [7.049722194671574, 53.507637023926065], - [7.034166812896729, 53.53319549560575], - [7.13361120223999, 53.53236007690424], - [7.09027719497675, 53.57652664184593], - [7.158053874969539, 53.627918243408146], - [7.316944122314624, 53.683471679687614], - [7.530278205871639, 53.671527862548885], - [8.015831947327115, 53.71069335937523], - [8.044721603393612, 53.64180374145519], - [8.110277175903605, 53.64236068725597], - [8.172499656677246, 53.554584503174055], - [8.155276298523006, 53.513748168945426], - [8.06472206115734, 53.50597381591797], - [8.073611259460847, 53.46486282348633], - [8.252499580383244, 53.399028778076115], - [8.316389083862418, 53.46625137329124], - [8.316389083862418, 53.5220832824707], - [8.230832099914949, 53.52041625976591], - [8.271943092346419, 53.609859466552734], - [8.516389846801701, 53.55625152587902], - [8.556944847106877, 53.52569580078148], - [8.519721984863338, 53.50097274780279], - [8.570834159851074, 53.5181961059572], - [8.483611106872786, 53.6943054199221], - [8.558056831359806, 53.83402633666998], - [8.680833816528661, 53.892082214355696] - ], - [ - [8.519479751587085, 53.19604110717802], - [8.625838279724292, 53.165290832519474], - [8.731298446655273, 53.037208557129134], - [8.77343082428007, 53.05675888061546], - [8.818189620971964, 53.024120330810604], - [8.866428375244254, 53.043762207031364], - [8.935469627380428, 53.015239715576286], - [8.982990264892521, 53.0497398376466], - [8.962628364563159, 53.090450286865234], - [8.992988586425724, 53.09848022460949], - [8.948739051818961, 53.12380218505882], - [8.98544883728033, 53.128219604492244], - [8.947138786315918, 53.15737915039085], - [8.861869812011776, 53.1370086669923], - [8.829590797424487, 53.166198730468864], - [8.593818664550952, 53.186859130859375], - [8.598338127136458, 53.21680068969749], - [8.486890792846964, 53.22864151000982], - [8.519479751587085, 53.19604110717802] - ] - ], - [ - [ - [8.498612403869743, 53.93125152587902], - [8.515276908874455, 53.9170837402346], - [8.487499237060547, 53.91402816772478], - [8.498612403869743, 53.93125152587902] - ] - ], - [ - [ - [8.009165763855037, 53.78569412231445], - [8.02249908447294, 53.7448616027832], - [7.98750019073492, 53.77013778686529], - [8.009165763855037, 53.78569412231445] - ] - ], - [ - [ - [7.895833015442236, 53.79402923584007], - [7.968054771423567, 53.774860382080305], - [7.846387863159634, 53.78680419921898], - [7.895833015442236, 53.79402923584007] - ] - ], - [ - [ - [7.706388950348071, 53.77958297729492], - [7.805832862854459, 53.774581909179744], - [7.666944026947249, 53.7587509155274], - [7.706388950348071, 53.77958297729492] - ] - ], - [ - [ - [7.573610782623348, 53.757362365722656], - [7.627499103546427, 53.74847412109398], - [7.467502117157323, 53.727085113525504], - [7.484723091125545, 53.75485992431658], - [7.573610782623348, 53.757362365722656] - ] - ], - [ - [ - [7.394165992737214, 53.73458480834978], - [7.429722785949707, 53.725139617920206], - [7.360278129577864, 53.72680664062494], - [7.394165992737214, 53.73458480834978] - ] - ], - [ - [ - [7.316390037536735, 53.72347259521507], - [7.342500209808293, 53.72069549560558], - [7.138054847717342, 53.70513916015648], - [7.316390037536735, 53.72347259521507] - ] - ], - [ - [ - [7.058610916137638, 53.68458175659197], - [7.095833778381348, 53.680694580078125], - [6.854722023010424, 53.66125106811535], - [7.058610916137638, 53.68458175659197] - ] - ], - [ - [ - [6.901390075683537, 53.65375137329107], - [6.897499084472713, 53.62625122070324], - [6.864723205566861, 53.639026641845874], - [6.901390075683537, 53.65375137329107] - ] - ], - [ - [ - [6.761944770812988, 53.61875152587896], - [6.811388969421841, 53.60263824462885], - [6.721387863159407, 53.583751678466854], - [6.749722003937222, 53.55680465698242], - [6.630833148956697, 53.59791564941406], - [6.761944770812988, 53.61875152587896] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 9, - "properties": { - "ISOCODE": "DE-NW", - "NAME_0": "Germany", - "ID_1": 10, - "name": "Nordrhein-Westfalen", - "NL_name": null, - "VARname": "North Rhine-Westphalia", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.666278839111385, 52.52527999877924], - [8.704008102417163, 52.503601074218864], - [8.709649085998535, 52.39556884765631], - [8.740420341491927, 52.388641357421875], - [8.940418243408317, 52.40320968627924], - [9.05136871337885, 52.502090454101676], - [9.13135147094738, 52.484748840331974], - [9.08855056762718, 52.3571586608889], - [9.028349876404036, 52.34498214721691], - [8.964668273926009, 52.28050994873047], - [9.076330184936694, 52.230110168456974], - [9.040340423584269, 52.22206878662121], - [9.048390388489054, 52.18117141723661], - [8.987109184265421, 52.19509887695318], - [9.020539283752441, 52.13224029541027], - [9.160108566284407, 52.12327194213867], - [9.137360572815226, 52.093070983886946], - [9.192729949951229, 52.07155990600586], - [9.176400184631575, 52.034011840820426], - [9.202249526977653, 51.99710845947271], - [9.179109573364315, 51.97811889648449], - [9.281768798828068, 51.96847152709972], - [9.27766036987299, 51.92739105224621], - [9.35097885131836, 51.894889831543026], - [9.341150283813647, 51.85374069213867], - [9.465918540954647, 51.855468750000114], - [9.437099456787223, 51.8402214050293], - [9.451158523559684, 51.79259109497076], - [9.383939743042106, 51.74341964721691], - [9.408979415893555, 51.699748992920036], - [9.382368087768612, 51.647689819335994], - [9.451740264892635, 51.64538192749035], - [9.343469619750977, 51.613761901855696], - [9.378959655761776, 51.59236145019531], - [9.228690147400016, 51.459732055664006], - [9.113858222961369, 51.4426002502442], - [9.112098693847884, 51.49462127685575], - [9.041880607605094, 51.51929855346691], - [8.912460327148722, 51.47972106933605], - [8.938670158386515, 51.42792892456066], - [8.968549728393725, 51.42853927612316], - [8.957579612732161, 51.38727188110374], - [8.703760147094727, 51.374889373779354], - [8.63252067565918, 51.336120605469034], - [8.56899929046648, 51.2750701904298], - [8.601678848266772, 51.2458114624024], - [8.739699363708667, 51.27093887329107], - [8.784381866455362, 51.20458221435564], - [8.70979022979742, 51.13212966918974], - [8.734568595886515, 51.10649108886713], - [8.5381507873538, 51.09511947631847], - [8.51747035980219, 51.03866195678722], - [8.554678916931323, 51.01322937011713], - [8.467968940735147, 50.96326065063499], - [8.471490859985408, 50.91152191162121], - [8.380510330200252, 50.85895156860357], - [8.275670051574764, 50.881240844726506], - [8.131909370422647, 50.791851043701286], - [8.179418563843058, 50.739521026611555], - [8.153118133545092, 50.69478988647455], - [8.052820205688533, 50.699131011963004], - [7.974319934845028, 50.77466964721691], - [7.973968982696817, 50.845249176025504], - [7.834569931030558, 50.881149291992415], - [7.854489803314493, 50.9263610839846], - [7.799629211425781, 50.943019866943416], - [7.736380100250472, 50.91852188110346], - [7.76646089553833, 50.84527969360346], - [7.66198921203636, 50.81917953491211], - [7.688279151916731, 50.790409088134766], - [7.660749912262077, 50.76705932617193], - [7.381401062011776, 50.71549987792969], - [7.341228008270207, 50.63579177856451], - [7.219069004058838, 50.61973190307623], - [7.210938930511475, 50.6454811096192], - [7.150808811187744, 50.59461975097656], - [7.056681156158447, 50.59838104248041], - [6.932001113891602, 50.552749633789176], - [6.934369087219238, 50.526611328125114], - [6.888179779052734, 50.521331787109375], - [6.905250072479532, 50.46194076538086], - [6.866010189056396, 50.44554901123058], - [6.803999900818098, 50.48480224609398], - [6.75292015075712, 50.46820068359398], - [6.80925989151018, 50.34981155395508], - [6.70684909820568, 50.329780578613395], - [6.674900054931584, 50.36391067504883], - [6.641438007354679, 50.3373718261721], - [6.607089042663631, 50.38161849975586], - [6.450109004974649, 50.33393096923851], - [6.459670066833496, 50.360019683838004], - [6.391717910766658, 50.384429931640625], - [6.403338909149454, 50.32192993164068], - [6.33975791931158, 50.37989425659174], - [6.374671936035384, 50.44594955444336], - [6.330028057098616, 50.49364471435575], - [6.223847866058293, 50.502281188964844], - [6.172194004058895, 50.550514221191406], - [6.278378963470686, 50.61639785766596], - [6.173087120056209, 50.6214332580567], - [6.173787117004451, 50.65840530395508], - [6.118731975555477, 50.708736419677734], - [6.028616905212402, 50.72521591186546], - [6.011878967285156, 50.775249481201286], - [5.963199138641357, 50.79505157470703], - [6.027101993560791, 50.81476593017601], - [6.019684791565112, 50.84523391723644], - [6.0738401412965, 50.846858978271655], - [6.082940101623819, 50.921798706054744], - [6.015170097351074, 50.93315887451172], - [6.030001163482723, 50.98336410522472], - [5.903690814972094, 50.978271484375114], - [5.87161922454851, 51.05083084106451], - [5.969543933868522, 51.034469604492244], - [6.015267848968733, 51.094051361084155], - [6.171799182891846, 51.15293121337896], - [6.144780158996639, 51.17371749877941], - [6.193139076232967, 51.19166183471674], - [6.091834068298397, 51.175292968750114], - [6.078186035156193, 51.2447128295899], - [6.231968879699764, 51.36598205566412], - [6.233500003814925, 51.402919769287166], - [6.215528964996622, 51.51697158813499], - [6.090958118438948, 51.605220794677905], - [6.118769168853703, 51.6604576110841], - [6.039014816284293, 51.677734375000114], - [6.050580978393612, 51.71677398681646], - [5.964007854461897, 51.74161148071289], - [6.004777908325309, 51.7681694030764], - [5.972117900848332, 51.831855773925724], - [6.068249225616569, 51.864902496338004], - [6.168982028961466, 51.84503173828125], - [6.107149124145565, 51.88898849487299], - [6.158889770507983, 51.905384063720646], - [6.417467117309627, 51.82563400268566], - [6.402299880981388, 51.87480163574219], - [6.480340003967285, 51.85462188720703], - [6.692440986633414, 51.92016220092779], - [6.742709159851131, 51.89905166625988], - [6.838380813598633, 51.965599060058594], - [6.835361003875846, 51.99552917480469], - [6.698178768157959, 52.040119171142635], - [6.700688838958797, 52.07379150390631], - [6.742818832397575, 52.075119018554744], - [6.7684521675111, 52.12076568603527], - [6.876288890838737, 52.12800216674805], - [6.995787143707332, 52.228771209716854], - [7.159201145172119, 52.268169403076115], - [7.298637866974047, 52.26420211791992], - [7.586558818817139, 52.376251220703125], - [7.60909986495966, 52.42097091674805], - [7.578148841857853, 52.431190490722656], - [7.613338947296199, 52.47603988647472], - [7.693008899689005, 52.45629119873058], - [7.719359874725285, 52.401988983154354], - [7.937768936157227, 52.368728637695426], - [7.988409996032715, 52.31166076660179], - [7.928679943084944, 52.305610656738395], - [7.954770088195971, 52.276519775390625], - [7.900389194488525, 52.1991920471192], - [8.025090217590616, 52.16201019287121], - [7.999969005584717, 52.1565513610841], - [8.009200096130371, 52.1151695251466], - [7.885759830475024, 52.08618164062506], - [7.918758869171256, 52.049720764160156], - [8.196008682250977, 52.07390975952171], - [8.269809722900504, 52.13460922241222], - [8.404229164123478, 52.11082077026367], - [8.520669937134016, 52.18727874755865], - [8.446478843689249, 52.212089538574446], - [8.470759391784725, 52.316841125488395], - [8.443698883056697, 52.36478042602562], - [8.313388824463118, 52.407039642333984], - [8.298259735107592, 52.4587097167971], - [8.432649612426871, 52.45019912719732], - [8.50821876525896, 52.51488876342796], - [8.666278839111385, 52.52527999877924] - ] - ] - } - }, - { - "type": "Feature", - "id": 10, - "properties": { - "ISOCODE": "DE-RP", - "NAME_0": "Germany", - "ID_1": 11, - "name": "Rheinland-Pfalz", - "NL_name": null, - "VARname": "Rhineland-Palatinate", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.799629211425781, 50.943019866943416], - [7.854489803314493, 50.9263610839846], - [7.834569931030558, 50.881149291992415], - [7.973968982696817, 50.845249176025504], - [7.974319934845028, 50.77466964721691], - [8.052820205688533, 50.699131011963004], - [8.121088981628418, 50.70222854614252], - [8.140788078308162, 50.611721038818416], - [8.174539566040096, 50.592750549316634], - [8.140970230102596, 50.535850524902344], - [8.056481361389274, 50.55717849731468], - [8.01100921630865, 50.52611923217779], - [7.996560096740779, 50.4847412109375], - [8.030008316040153, 50.44818115234398], - [7.984179973602238, 50.41360092163097], - [8.082799911499023, 50.37416076660162], - [8.138910293579215, 50.2740592956543], - [8.051680564880485, 50.268829345703125], - [8.076358795166072, 50.23173141479492], - [8.047920227050952, 50.21253967285156], - [8.006259918213061, 50.234550476074446], - [7.919559001922778, 50.20370864868164], - [7.897570133209172, 50.16987991333019], - [7.945549964904785, 50.14015197753929], - [7.941120147705135, 50.102508544921875], - [7.869957923889274, 50.12857055664074], - [7.78512001037592, 50.05311203002941], - [7.887711048126278, 49.97066879272484], - [8.257689476013127, 50.02706909179699], - [8.346780776977823, 49.95928955078125], - [8.34934043884283, 49.881698608398665], - [8.396700859069824, 49.84989166259777], - [8.386138916015625, 49.820030212402344], - [8.428420066833667, 49.765998840332145], - [8.486090660095442, 49.76776885986328], - [8.36192989349371, 49.690170288085994], - [8.429039001464844, 49.58562088012707], - [8.418828964233342, 49.55218887329107], - [8.467529296874943, 49.473041534424055], - [8.445588111877555, 49.450260162353516], - [8.508589744568098, 49.44147872924799], - [8.464948654175089, 49.39220046997076], - [8.498978614807413, 49.393428802490234], - [8.49458980560297, 49.36024856567383], - [8.450428962707804, 49.33285140991234], - [8.491369247436523, 49.30128860473627], - [8.392860412597713, 49.242092132568416], - [8.362239837646541, 49.09968948364258], - [8.241430282592887, 48.9688415527346], - [8.091376304626408, 48.98925781250023], - [7.937040328979435, 49.05623245239258], - [7.867407798767374, 49.033493041992415], - [7.7999339103701, 49.06416320800781], - [7.671083927154598, 49.045970916748104], - [7.531178951263485, 49.097133636474666], - [7.491343021392822, 49.168510437011776], - [7.353888988494987, 49.17060852050787], - [7.292399883270207, 49.24573135375988], - [7.38636922836298, 49.29275131225603], - [7.409649848938159, 49.37794876098644], - [7.293569087982291, 49.397098541259766], - [7.256089210510481, 49.440269470214844], - [7.310669898986873, 49.47896957397484], - [7.28526878356945, 49.5115509033206], - [7.311830043792895, 49.54196929931646], - [7.282810211181641, 49.54483032226568], - [7.273407936096191, 49.592769622802734], - [7.21724987030035, 49.572399139404354], - [7.031869888305948, 49.646820068359375], - [6.608709812164477, 49.52021026611328], - [6.378159046173266, 49.54800033569359], - [6.363647937774829, 49.57404708862305], - [6.417419910430851, 49.6174888610841], - [6.424099922180119, 49.66633224487333], - [6.516485214233398, 49.724178314208984], - [6.528252124786547, 49.808570861816406], - [6.405219078064249, 49.819972991943416], - [6.362998008728027, 49.8540306091308], - [6.312281131744442, 49.83549880981457], - [6.309239864349365, 49.86516952514654], - [6.236907005310059, 49.892372131347884], - [6.219171047210921, 49.951641082763786], - [6.163208961486873, 49.95397949218773], - [6.098370075226114, 50.0599098205567], - [6.146426200866927, 50.17389297485346], - [6.189638137817553, 50.189464569091854], - [6.170382022857723, 50.23625564575207], - [6.275639057159594, 50.26544189453131], - [6.301178932189885, 50.31853103637695], - [6.421248912811279, 50.32228088378912], - [6.380168914795206, 50.38045120239269], - [6.459670066833496, 50.360019683838004], - [6.450109004974649, 50.33393096923851], - [6.607089042663631, 50.38161849975586], - [6.641438007354679, 50.3373718261721], - [6.674900054931584, 50.36391067504883], - [6.70684909820568, 50.329780578613395], - [6.80925989151018, 50.34981155395508], - [6.75292015075712, 50.46820068359398], - [6.803999900818098, 50.48480224609398], - [6.866010189056396, 50.44554901123058], - [6.905250072479532, 50.46194076538086], - [6.888179779052734, 50.521331787109375], - [6.934369087219238, 50.526611328125114], - [6.932001113891602, 50.552749633789176], - [7.056681156158447, 50.59838104248041], - [7.150808811187744, 50.59461975097656], - [7.210938930511475, 50.6454811096192], - [7.219069004058838, 50.61973190307623], - [7.341228008270207, 50.63579177856451], - [7.381401062011776, 50.71549987792969], - [7.660749912262077, 50.76705932617193], - [7.688279151916731, 50.790409088134766], - [7.66198921203636, 50.81917953491211], - [7.76646089553833, 50.84527969360346], - [7.736380100250472, 50.91852188110346], - [7.799629211425781, 50.943019866943416] - ] - ] - } - }, - { - "type": "Feature", - "id": 11, - "properties": { - "ISOCODE": "DE-SL", - "NAME_0": "Germany", - "ID_1": 12, - "name": "Saarland", - "NL_name": null, - "VARname": null, - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.037960052490462, 49.64337921142578], - [7.21724987030035, 49.572399139404354], - [7.273407936096191, 49.592769622802734], - [7.282810211181641, 49.54483032226568], - [7.311830043792895, 49.54196929931646], - [7.28526878356945, 49.5115509033206], - [7.310669898986873, 49.47896957397484], - [7.256089210510481, 49.440269470214844], - [7.293569087982291, 49.397098541259766], - [7.409649848938159, 49.37794876098644], - [7.38636922836298, 49.29275131225603], - [7.292399883270207, 49.24573135375988], - [7.362774372100944, 49.14517593383812], - [7.198331832885685, 49.115177154541186], - [7.098150730133057, 49.15433120727562], - [7.05802440643339, 49.112586975097656], - [7.033706188201904, 49.18826293945324], - [6.924295425415323, 49.223075866699276], - [6.840444087982178, 49.21423339843767], - [6.860935211181641, 49.178627014160384], - [6.834462642669791, 49.15137863159197], - [6.737987518311002, 49.16456985473633], - [6.66784572601324, 49.280437469482536], - [6.565380573272705, 49.34928894042969], - [6.599329471588362, 49.36661911010765], - [6.53541898727417, 49.434162139892635], - [6.431842803955135, 49.474460601806754], - [6.35482120513916, 49.464984893799], - [6.371419906616268, 49.548011779785156], - [6.608709812164477, 49.52021026611328], - [6.939819812774772, 49.63912200927746], - [7.037960052490462, 49.64337921142578] - ] - ] - } - }, - { - "type": "Feature", - "id": 12, - "properties": { - "ISOCODE": "DE-ST", - "NAME_0": "Germany", - "ID_1": 13, - "name": "Sachsen-Anhalt", - "NL_name": null, - "VARname": "Saxony-Anhalt", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [11.632508277893123, 53.016410827636776], - [11.688010215759562, 53.00477981567377], - [11.693689346313647, 52.97496032714844], - [11.853730201721191, 52.94752883911144], - [11.82853889465349, 52.921730041503906], - [11.846659660339299, 52.90298080444353], - [12.239520072937296, 52.854591369628906], - [12.26237869262718, 52.79122161865246], - [12.218799591064396, 52.769401550293026], - [12.204960823059082, 52.710159301757926], - [12.24106884002697, 52.68381118774414], - [12.245609283447322, 52.62440872192394], - [12.178129196167049, 52.62139892578131], - [12.189039230346964, 52.56937026977539], - [12.151088714599553, 52.521560668945256], - [12.194099426269474, 52.52854156494146], - [12.175079345703125, 52.50278091430664], - [12.205368995666447, 52.49135208129883], - [12.242839813232365, 52.5206108093264], - [12.33942985534668, 52.47510147094738], - [12.28273010253912, 52.41271972656256], - [12.312949180603027, 52.401279449463175], - [12.29343032836914, 52.357040405273494], - [12.317408561706713, 52.341960906982706], - [12.25396919250494, 52.25008010864258], - [12.301870346069336, 52.21995162963867], - [12.221308708190918, 52.16529846191406], - [12.280429840088061, 52.101768493652344], - [12.435828208923567, 52.01491165161133], - [12.490827560424748, 52.0290412902832], - [12.549958229064998, 51.980232238769815], - [12.68417930603033, 52.00812149047857], - [12.797579765319881, 51.95854187011719], - [12.858329772949446, 51.96512985229492], - [12.863180160522631, 51.931758880615405], - [12.972139358520621, 51.93397140502941], - [12.982969284057617, 51.900531768799055], - [13.055450439453068, 51.89950942993164], - [13.048269271850643, 51.870010375976506], - [13.163080215454045, 51.87210083007807], - [13.137908935546875, 51.84654998779291], - [13.198930740356388, 51.71620941162115], - [13.039240837097225, 51.63716125488281], - [13.016320228576717, 51.667060852050724], - [12.955019950866642, 51.638359069824446], - [12.842118263244629, 51.68059158325201], - [12.786640167236499, 51.6444091796875], - [12.696819305419922, 51.660419464111385], - [12.647199630737589, 51.61677169799816], - [12.248349189758585, 51.566440582275504], - [12.205350875854492, 51.5300407409668], - [12.210309982299805, 51.485752105713175], - [12.155740737915096, 51.464221954345646], - [12.202850341796989, 51.423191070556925], - [12.200760841369913, 51.33118057250999], - [12.158598899841252, 51.320590972900334], - [12.21623992919939, 51.21699905395519], - [12.185659408569279, 51.18424224853521], - [12.221497535705623, 51.18386077880865], - [12.208699226379508, 51.14356994628912], - [12.250238418579272, 51.13209915161144], - [12.231939315795955, 51.1139297485351], - [12.29712009429926, 51.09484100341825], - [12.260259628296069, 51.04384994506836], - [12.30772876739519, 51.03596878051769], - [12.234389305114746, 50.94504928588867], - [12.19341945648199, 50.98212051391607], - [12.019789695739746, 50.97230148315441], - [11.978389739990291, 50.99827194213867], - [11.990778923034725, 51.01663208007824], - [11.883781433105412, 51.06132888793957], - [11.763569831848315, 51.04325103759771], - [11.669088363647518, 51.11370086669933], - [11.471959114074707, 51.109951019287166], - [11.472960472106934, 51.19165039062506], - [11.365938186645792, 51.22121047973644], - [11.480478286743164, 51.29914855957031], - [11.4032497406007, 51.343761444091854], - [11.397780418396167, 51.3845405578615], - [11.326239585876408, 51.41061019897472], - [10.992289543151912, 51.4169807434082], - [11.010198593139648, 51.4282608032226], - [10.968518257141397, 51.43177032470709], - [10.9746608734132, 51.480289459228686], - [10.938948631286678, 51.498771667480526], - [10.951048851013127, 51.5361785888673], - [10.885531425476017, 51.58076095581049], - [10.93943023681652, 51.59592056274437], - [10.927610397338867, 51.618339538574446], - [10.70512962341337, 51.643550872802734], - [10.632180213928336, 51.75741958618164], - [10.577550888061637, 51.78271102905285], - [10.576871871948242, 51.851169586181754], - [10.655679702758732, 51.90460968017584], - [10.612678527832315, 51.94221878051758], - [10.655550003051758, 51.960559844970874], - [10.588009834289664, 51.979869842529524], - [10.569430351257381, 52.01726150512718], - [10.630780220031909, 52.01285934448248], - [10.691758155822754, 52.052768707275504], - [10.974808692932129, 52.057250976562614], - [10.949279785156307, 52.10540008544922], - [11.05053997039812, 52.13394165039074], - [11.068088531494084, 52.16691970825195], - [11.019989967346362, 52.19678878784191], - [11.091680526733626, 52.22570037841808], - [10.987579345703125, 52.337001800537394], - [11.078740119934139, 52.373451232910384], - [10.936208724975586, 52.45901107788109], - [10.94782829284668, 52.49203109741222], - [11.010089874267692, 52.49187088012707], - [10.934068679809627, 52.565818786621094], - [10.978019714355469, 52.621829986572266], - [10.921110153198413, 52.60668182373047], - [10.832089424133358, 52.723411560058594], - [10.795768737793253, 52.72050857543968], - [10.766200065612793, 52.851242065429915], - [10.942508697509822, 52.85137939453125], - [10.992259979248274, 52.90634918212896], - [11.041929244995174, 52.913089752197436], - [11.321439743041935, 52.873699188232536], - [11.507689476013184, 52.939300537109375], - [11.520859718322924, 53.00244140625], - [11.651300430297965, 53.0311393737793], - [11.632508277893123, 53.016410827636776] - ] - ] - } - }, - { - "type": "Feature", - "id": 13, - "properties": { - "ISOCODE": "DE-SN", - "NAME_0": "Germany", - "ID_1": 14, - "name": "Sachsen", - "NL_name": null, - "VARname": "Saxony", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [12.877999305725325, 51.6726989746096], - [12.955019950866642, 51.638359069824446], - [13.016320228576717, 51.667060852050724], - [13.098188400268555, 51.60673904418945], - [13.169989585876522, 51.598300933837834], - [13.162450790405273, 51.561439514160156], - [13.226888656616154, 51.52352905273443], - [13.19277858734148, 51.427951812744254], - [13.222880363464583, 51.431190490722656], - [13.233359336853141, 51.39775848388672], - [13.286639213562069, 51.38579177856457], - [13.337078094482365, 51.44050979614269], - [13.39611911773693, 51.42473983764643], - [13.42150878906267, 51.45396041870117], - [13.56014919281023, 51.369880676269815], - [13.779280662536564, 51.36178207397472], - [13.97159862518322, 51.39891052246094], - [14.015210151672363, 51.37430191040062], - [14.080458641052417, 51.44773864746094], - [14.049810409545955, 51.48036193847656], - [14.107279777526855, 51.48025131225586], - [14.091679573059253, 51.49647903442383], - [14.15363979339628, 51.54505157470703], - [14.341999053955135, 51.500820159912394], - [14.570050239562988, 51.57242202758789], - [14.665378570556811, 51.55078887939459], - [14.69039916992216, 51.599472045898494], - [14.739066123962573, 51.524082183838004], - [14.910359382629622, 51.493190765381144], - [14.963753700256461, 51.453544616699446], - [14.967818260193098, 51.3544158935548], - [15.028479576111067, 51.30979919433622], - [15.03811264038086, 51.24029922485346], - [14.930111885070744, 50.99140548706055], - [14.820368766784782, 50.89197158813488], - [14.8050794601441, 50.828918457031364], - [14.611928939819393, 50.85478210449219], - [14.651672363281534, 50.93264007568382], - [14.560112953186092, 50.92348480224632], - [14.595055580139444, 50.988510131835994], - [14.502429962158487, 51.01681900024414], - [14.501680374145678, 51.05150604248058], - [14.490660667419718, 51.020359039306925], - [14.39741039276123, 51.0082817077639], - [14.29401683807373, 51.05416488647461], - [14.246868133545036, 50.97320175170904], - [14.400946617126465, 50.942348480224894], - [14.372268676757926, 50.88858032226585], - [14.25451946258562, 50.886379241943416], - [14.058549880981559, 50.800472259521484], - [13.954609870910701, 50.80371093750023], - [13.895468711853027, 50.78346633911161], - [13.89871883392334, 50.74296188354515], - [13.850809097290096, 50.71820068359375], - [13.548975944519213, 50.713214874267805], - [13.525968551635913, 50.63554000854492], - [13.465190887451229, 50.59648895263672], - [13.374910354614315, 50.643661499023494], - [13.326787948608683, 50.581813812255916], - [13.248618125915641, 50.59226989746088], - [13.195990562439079, 50.500591278076286], - [13.0332670211792, 50.50854873657249], - [13.02818679809576, 50.44935989379883], - [12.977046012878475, 50.41427230834978], - [12.828769683837834, 50.45862197875988], - [12.705128669738826, 50.39775848388672], - [12.615059852600211, 50.41923141479509], - [12.51611328125, 50.40008544921881], - [12.493091583252124, 50.34915924072271], - [12.364088058471907, 50.27642440795921], - [12.32758998870844, 50.17972946167015], - [12.282715797424544, 50.18267822265648], - [12.28441429138212, 50.22743225097656], - [12.234164237976131, 50.2532844543457], - [12.252929687500227, 50.27569580078125], - [12.19488525390642, 50.27911376953125], - [12.194091796874943, 50.32287597656273], - [12.119680404663256, 50.31275177001976], - [11.97589206695568, 50.35607910156256], - [11.983886718750114, 50.393493652343864], - [11.893327713012809, 50.44530105590832], - [11.9581308364871, 50.45672607421875], - [11.971313476562443, 50.49029541015625], - [11.878723144531307, 50.545829772949446], - [12.017918586731014, 50.639160156250114], - [12.038880348205737, 50.55749511718756], - [12.164672851562784, 50.580078125], - [12.155091285705566, 50.632080078125114], - [12.281126976013411, 50.639709472656364], - [12.337478637695597, 50.688091278076286], - [12.242568969726733, 50.74710845947277], - [12.302859306335563, 50.7832603454591], - [12.261869430542049, 50.82387924194347], - [12.451549530029297, 50.84682846069336], - [12.49414920806879, 50.89741897583008], - [12.66631031036394, 50.9273300170899], - [12.621550559997559, 51.001781463623274], - [12.538580894470215, 51.003211975097884], - [12.551210403442326, 51.02873992919922], - [12.521319389343262, 51.02188873291021], - [12.516628265381087, 51.06608200073248], - [12.469669342041016, 51.0888786315918], - [12.231939315795955, 51.1139297485351], - [12.250238418579272, 51.13209915161144], - [12.208699226379508, 51.14356994628912], - [12.221497535705623, 51.18386077880865], - [12.185659408569279, 51.18424224853521], - [12.21623992919939, 51.21699905395519], - [12.158598899841252, 51.320590972900334], - [12.200760841369913, 51.33118057250999], - [12.202850341796989, 51.423191070556925], - [12.155740737915096, 51.464221954345646], - [12.210309982299805, 51.485752105713175], - [12.19916057586687, 51.52273178100597], - [12.248349189758585, 51.566440582275504], - [12.877999305725325, 51.6726989746096] - ] - ] - } - }, - { - "type": "Feature", - "id": 14, - "properties": { - "ISOCODE": "DE-SH", - "NAME_0": "Germany", - "ID_1": 15, - "name": "Schleswig-Holstein", - "NL_name": null, - "VARname": null, - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [11.069721221923885, 54.53470230102539], - [11.23416805267334, 54.5068054199221], - [11.31360912322998, 54.402084350586165], - [11.11861133575485, 54.40263748168957], - [11.094720840454215, 54.445693969726506], - [11.00916671752924, 54.44124984741211], - [11.017498970031795, 54.49458312988281], - [11.069721221923885, 54.53470230102539] - ] - ], - [ - [ - [8.407297932191142, 55.043952286536616], - [8.442500114441316, 55.0159721374514], - [8.353609085083065, 54.96736145019548], - [8.366944313049373, 54.90236282348644], - [8.429720878601472, 54.87763977050787], - [8.812039375305233, 54.9167366027832], - [9.224779129028263, 54.85595321655296], - [9.282591819763581, 54.80223464965832], - [9.408679962158317, 54.841171264648665], - [9.435277938842944, 54.788471221923885], - [9.613611221313533, 54.87597274780296], - [9.603055953979947, 54.83152770996105], - [9.791943550110034, 54.797359466552734], - [9.843055725098111, 54.756248474121094], - [9.905833244323787, 54.76374816894554], - [9.907501220703182, 54.797359466552734], - [9.955279350281216, 54.780139923095646], - [10.034722328186092, 54.67235946655285], - [9.983054161071891, 54.701248168945426], - [9.93805503845249, 54.67291641235363], - [9.933056831359806, 54.627639770507926], - [9.770278930664062, 54.580696105957145], - [9.720659987660682, 54.528215634104676], - [9.74861145019537, 54.54652786254883], - [9.93805503845249, 54.62347412109409], - [9.948056221008358, 54.67375183105497], - [10.034166336059798, 54.66986083984375], - [10.02750015258789, 54.55041503906267], - [9.840277671813965, 54.46736145019537], - [9.868612289428654, 54.44736099243164], - [10.127498626709041, 54.48513793945324], - [10.199167251586971, 54.45597076416027], - [10.168613433838061, 54.434028625488395], - [10.19194412231468, 54.389862060546875], - [10.148056983948038, 54.369304656982365], - [10.13194561004633, 54.311248779296875], - [10.18416786193859, 54.327915191650334], - [10.178054809570483, 54.3609733581543], - [10.228056907654036, 54.413471221924055], - [10.318612098693961, 54.43569564819336], - [10.603610992431925, 54.3626403808596], - [10.704722404479924, 54.304862976074276], - [10.788610458374421, 54.31152725219761], - [10.928610801696777, 54.381805419922046], - [11.128055572509766, 54.39069366455084], - [11.058609962463436, 54.35430526733421], - [11.093610763549862, 54.19791793823265], - [10.879166603088493, 54.088470458984375], - [10.804721832275561, 54.0959739685058], - [10.75083446502731, 54.0487518310548], - [10.786944389343603, 53.99652862548862], - [10.878054618835733, 53.9859733581543], - [10.887760162353572, 53.92387008666998], - [10.963709831237907, 53.9109992980957], - [10.901128768920898, 53.90127944946289], - [10.87527942657465, 53.92784118652338], - [10.767909049987793, 53.88106918334961], - [10.744208335876522, 53.840560913085994], - [10.757729530334643, 53.75157928466808], - [10.946919441223201, 53.67757034301758], - [10.923410415649471, 53.58530044555687], - [10.823429107666016, 53.58028030395525], - [10.824370384216593, 53.51728057861334], - [10.639378547668628, 53.465099334716854], - [10.621770858764933, 53.39173889160173], - [10.579379081726188, 53.369850158691634], - [10.31917858123785, 53.44248962402344], - [10.336769104003906, 53.460979461670036], - [10.168158531188965, 53.53409194946289], - [10.159619331359977, 53.589401245117415], - [10.21062183380127, 53.593261718750114], - [10.196688652038802, 53.62273025512707], - [10.228058815002612, 53.63389205932617], - [10.143050193786905, 53.688961029052734], - [10.198959350586222, 53.72972106933611], - [10.179168701171818, 53.74811935424805], - [10.084019660949934, 53.729351043701286], - [10.07267856597906, 53.68870925903332], - [10.002109527588061, 53.69211959838873], - [9.990429878235147, 53.6588592529298], - [9.906899452209473, 53.662181854248104], - [9.825568199157715, 53.595352172851676], - [9.760189056396769, 53.639122009277514], - [9.72365856170694, 53.56900024414068], - [9.67358016967819, 53.57526016235363], - [9.547169685363883, 53.62430953979509], - [9.50700855255127, 53.70085144042997], - [9.28820991516119, 53.86941146850586], - [8.950278282165698, 53.90236282348644], - [8.819722175598258, 54.02430725097702], - [8.964166641235408, 54.035137176513615], - [8.985832214355867, 54.0612487792971], - [8.927499771118164, 54.131805419921875], - [8.85916709899908, 54.12263870239269], - [8.807498931884709, 54.1751403808596], - [8.83583259582565, 54.251804351806584], - [8.903054237365723, 54.26013946533203], - [8.951944351196346, 54.31289291381836], - [8.861945152282658, 54.26874923706066], - [8.843609809875659, 54.28847122192383], - [8.846387863159237, 54.26291656494186], - [8.823056221008699, 54.29152679443405], - [8.64527702331543, 54.272640228271484], - [8.579722404480094, 54.30958175659191], - [8.604722023010254, 54.358196258545036], - [8.685832023620605, 54.35708236694347], - [8.60916614532465, 54.38652801513683], - [8.86639022827194, 54.404304504394474], - [9.02361106872604, 54.4734725952149], - [8.981388092041072, 54.52097320556669], - [8.908611297607763, 54.4620819091798], - [8.806388854980526, 54.47041702270508], - [8.805276870727596, 54.49791717529308], - [8.871944427490348, 54.528194427490405], - [8.890276908874853, 54.59263992309582], - [8.81305599212692, 54.59736251831083], - [8.84194374084501, 54.61486053466808], - [8.822500228881836, 54.64597320556658], - [8.687498092651424, 54.72986221313499], - [8.693055152893066, 54.76985931396507], - [8.590276718139762, 54.885139465331974], - [8.416387557983569, 54.847084045410384], - [8.310277938842887, 54.874305725097656], - [8.332500457763729, 54.86319351196312], - [8.300276756286621, 54.850692749023665], - [8.298610687255973, 54.742084503174055], - [8.279722213745174, 54.75180435180687], - [8.298054695129508, 54.909305572509766], - [8.407297932191142, 55.043952286536616] - ], - [ - [9.706966594730142, 54.5192444921042], - [9.545277595520133, 54.5093040466308], - [9.574166297912711, 54.475139617920036], - [9.624165534973201, 54.51152801513672], - [9.7147226333621, 54.49124908447277], - [9.700277328491609, 54.51486206054693], - [9.706966594730142, 54.5192444921042] - ] - ], - [ - [ - [8.411785232872612, 55.04948306636209], - [8.417499542236328, 55.05652618408226], - [8.463055610656681, 55.04569625854492], - [8.411785232872612, 55.04948306636209] - ] - ], - [ - [ - [8.691945075988713, 54.557083129882756], - [8.671944618225154, 54.49458312988281], - [8.589166641235408, 54.51180648803711], - [8.691945075988713, 54.557083129882756] - ] - ], - [ - [ - [8.539723396301383, 54.75569534301769], - [8.595276832580623, 54.71958160400385], - [8.56694316864025, 54.67986297607467], - [8.396944999694881, 54.70569610595703], - [8.42138767242426, 54.74319458007824], - [8.539723396301383, 54.75569534301769] - ] - ], - [ - [ - [8.551387786865234, 54.57958221435541], - [8.573056221008358, 54.55875015258789], - [8.50916671752941, 54.57402801513683], - [8.551387786865234, 54.57958221435541] - ] - ], - [ - [ - [8.476387977600098, 54.47652816772461], - [8.52583217620861, 54.433471679687614], - [8.470277786254883, 54.42180633544933], - [8.449723243713436, 54.45264053344738], - [8.476387977600098, 54.47652816772461] - ] - ], - [ - [ - [8.477500915527344, 54.54624938964844], - [8.504722595214787, 54.530971527099666], - [8.471943855285701, 54.49597167968756], - [8.477500915527344, 54.54624938964844] - ] - ], - [ - [ - [8.483055114746492, 54.58458328247099], - [8.501387596130428, 54.55819320678711], - [8.455277442932186, 54.55875015258789], - [8.483055114746492, 54.58458328247099] - ] - ], - [ - [ - [8.356944084167594, 54.71152877807617], - [8.339165687561149, 54.689304351807095], - [8.395278930664062, 54.61208343505882], - [8.292498588561955, 54.66708374023483], - [8.356944084167594, 54.71152877807617] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": 15, - "properties": { - "ISOCODE": "DE-TH", - "NAME_0": "Germany", - "ID_1": 16, - "name": "Thüringen", - "NL_name": null, - "VARname": "Thuringia", - "TYPE_1": "Land", - "ENGTYPE_1": "State", - "ID_2": 86 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [10.771890640258789, 51.6449089050293], - [10.939500808715763, 51.60713958740246], - [10.885531425476017, 51.58076095581049], - [10.951048851013127, 51.5361785888673], - [10.938948631286678, 51.498771667480526], - [10.9746608734132, 51.480289459228686], - [10.968518257141397, 51.43177032470709], - [11.010198593139648, 51.4282608032226], - [10.992289543151912, 51.4169807434082], - [11.326239585876408, 51.41061019897472], - [11.397780418396167, 51.3845405578615], - [11.4032497406007, 51.343761444091854], - [11.480478286743164, 51.29914855957031], - [11.365938186645792, 51.22121047973644], - [11.472960472106934, 51.19165039062506], - [11.49051952362072, 51.165691375732536], - [11.454468727111987, 51.143348693847656], - [11.489728927612305, 51.10256195068365], - [11.669088363647518, 51.11370086669933], - [11.763569831848315, 51.04325103759771], - [11.883781433105412, 51.06132888793957], - [11.990778923034725, 51.01663208007824], - [11.978389739990291, 50.99827194213867], - [12.019789695739746, 50.97230148315441], - [12.19341945648199, 50.98212051391607], - [12.228428840637207, 50.94509887695324], - [12.307490348816088, 51.02495956420893], - [12.260259628296069, 51.04384994506836], - [12.29712009429926, 51.09484100341825], - [12.469669342041016, 51.0888786315918], - [12.516628265381087, 51.06608200073248], - [12.521319389343262, 51.02188873291021], - [12.551210403442326, 51.02873992919922], - [12.538580894470215, 51.003211975097884], - [12.621550559997559, 51.001781463623274], - [12.666169166565055, 50.92364883422863], - [12.49414920806879, 50.89741897583008], - [12.451549530029297, 50.84682846069336], - [12.261869430542049, 50.82387924194347], - [12.302859306335563, 50.7832603454591], - [12.242568969726733, 50.74710845947277], - [12.278558731079158, 50.74695205688482], - [12.27758979797386, 50.702899932861555], - [12.330454826355037, 50.673278808593864], - [12.281126976013411, 50.639709472656364], - [12.209620475768986, 50.646999359130916], - [12.202428817749137, 50.620948791503906], - [12.161071777343864, 50.63568115234398], - [12.147343635559082, 50.58736038208019], - [12.170899391174316, 50.583679199218864], - [12.06268405914318, 50.55749511718756], - [12.027527809143123, 50.56848144531267], - [12.029620170593262, 50.6317520141601], - [11.987914085388354, 50.627929687500114], - [11.932495117187727, 50.56091308593773], - [11.878723144531307, 50.545829772949446], - [11.97113132476818, 50.48651123046898], - [11.94750976562517, 50.48272705078131], - [11.9581308364871, 50.45672607421875], - [11.893327713012809, 50.44530105590832], - [11.933539390563908, 50.43050003051758], - [11.868338584899902, 50.40420913696312], - [11.821249961853027, 50.392898559570426], - [11.781168937683162, 50.42263031005882], - [11.522049903869856, 50.37353897094738], - [11.481788635254134, 50.433021545410156], - [11.446418762206974, 50.421760559081974], - [11.41750812530546, 50.45145034790039], - [11.430090904235897, 50.51472091674833], - [11.348060607910156, 50.521869659423885], - [11.324259757995776, 50.48833084106468], - [11.248118400573674, 50.476890563964844], - [11.281947135925293, 50.365509033203125], - [11.251668930053711, 50.26519012451172], - [11.14237976074213, 50.287109375], - [11.159410476684513, 50.32794189453125], - [11.113239288330135, 50.36489868164091], - [11.04424953460699, 50.34238052368164], - [10.9981107711792, 50.36447906494152], - [10.99833011627203, 50.342250823974666], - [10.940460205078125, 50.39025115966808], - [10.877280235290527, 50.393779754638786], - [10.71665954589838, 50.352661132812614], - [10.728790283203182, 50.315509796142635], - [10.84955883026123, 50.27127075195307], - [10.84965038299572, 50.24151992797874], - [10.734558105469034, 50.248352050781364], - [10.728810310363713, 50.19984054565424], - [10.617910385132063, 50.221820831299], - [10.605488777160872, 50.330242156982536], - [10.493670463562239, 50.35243988037132], - [10.458058357238826, 50.40090942382824], - [10.39352035522461, 50.39334106445307], - [10.405019760131836, 50.4232292175293], - [10.333989143371525, 50.49404907226557], - [10.127880096435604, 50.56501007080078], - [10.03975868225126, 50.51588058471674], - [10.063029289245662, 50.557312011718864], - [10.038170814514217, 50.613960266113395], - [10.086329460144157, 50.621219635009936], - [10.048980712890852, 50.67726135253929], - [9.951470375060978, 50.670921325683594], - [9.946098327636662, 50.630100250244254], - [9.873108863830566, 50.64184188842779], - [9.938960075378418, 50.73741912841791], - [9.920918464660645, 50.76319885253906], - [9.956660270690861, 50.781711578369254], - [9.950229644775561, 50.82239913940424], - [10.021959304809798, 50.833309173583984], - [10.021409988403377, 50.86668014526367], - [10.062939643859806, 50.88500213623058], - [10.014529228210677, 50.92232131958036], - [9.97887897491455, 50.90760040283203], - [9.99036979675293, 50.937240600585994], - [9.948748588562069, 50.92615890502924], - [9.94838905334501, 50.9484214782716], - [10.06787014007574, 50.948028564453125], - [10.019538879394474, 50.9816589355471], - [10.04291820526123, 51.01494216918968], - [10.203859329223803, 51.00291061401373], - [10.20329856872587, 51.043708801269645], - [10.149688720703352, 51.055130004882926], - [10.178549766540641, 51.11801147460943], - [10.12471866607666, 51.14057159423834], - [10.172169685363826, 51.151420593261946], - [10.214177131652946, 51.11780929565441], - [10.237089157104606, 51.18072891235363], - [10.075889587402571, 51.226181030273665], - [10.05734062194847, 51.278251647949446], - [9.97350883483881, 51.28619003295904], - [9.924859046936092, 51.37184143066406], - [10.054610252380314, 51.4380989074707], - [10.161690711975098, 51.42998886108421], - [10.143619537353686, 51.44128036499035], - [10.19617938995367, 51.48188018798828], - [10.302998542785701, 51.49230194091808], - [10.36752033233654, 51.53662109375], - [10.37830924987793, 51.58518981933605], - [10.659000396728686, 51.55340194702171], - [10.639940261841048, 51.61925888061535], - [10.771890640258789, 51.6449089050293] - ] - ] - } - } - ] -} diff --git a/backend/server/static/data/fr.json b/backend/server/static/data/fr.json deleted file mode 100644 index 405893a..0000000 --- a/backend/server/static/data/fr.json +++ /dev/null @@ -1,14588 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [1.9221462784913, 48.457599361977], - [1.9207376717625, 48.447750046159], - [1.9065549813045, 48.445672344539], - [1.9064076592587, 48.440146719021], - [1.8774887068591, 48.440613561663], - [1.8448630603718, 48.449360706547], - [1.8363839553347, 48.466477806902], - [1.8014512893542, 48.466086215218], - [1.7963309289573, 48.484187938277], - [1.7857092863217, 48.489936911612], - [1.7906352036641, 48.497377315443], - [1.7786170432038, 48.508131705459], - [1.7757543018107, 48.527702827198], - [1.7872423006556, 48.553746336139], - [1.7674104287362, 48.559405546059], - [1.765322855183, 48.569374568412], - [1.7458629248393, 48.576137031624], - [1.7368302606076, 48.572280930629], - [1.7092486767776, 48.578026100992], - [1.701983609829, 48.584999462088], - [1.7178604312421, 48.606851120102], - [1.7148984609516, 48.614392276576], - [1.689422105099, 48.611536250362], - [1.6793591385148, 48.618488989615], - [1.6662229993646, 48.613704063337], - [1.656339110342, 48.622053121145], - [1.6582325680054, 48.627645882726], - [1.6495606586096, 48.63227092599], - [1.6515719070139, 48.638125076138], - [1.64099001993, 48.643389970225], - [1.6431906740267, 48.651291198129], - [1.6298476379809, 48.648875085504], - [1.6156160327829, 48.652789464959], - [1.6024917313048, 48.663765432374], - [1.6058633277913, 48.678762670696], - [1.611774872468, 48.689473861848], - [1.5823151457709, 48.696368116243], - [1.5795403954022, 48.701811808781], - [1.5948810579854, 48.709310708948], - [1.5895382120501, 48.712468154974], - [1.617804540369, 48.735942039093], - [1.6264035004424, 48.748091646614], - [1.6026875153092, 48.760486506237], - [1.5849045861802, 48.763296867942], - [1.5875973267999, 48.77360593191], - [1.5803992974877, 48.777559499888], - [1.5756742997058, 48.790504096814], - [1.5834240899801, 48.807168828475], - [1.5912058811372, 48.814866973865], - [1.5837280523171, 48.832130726577], - [1.5941817842602, 48.834218536506], - [1.5951919881928, 48.839707334891], - [1.5772727483959, 48.844358116549], - [1.5815974879282, 48.854999853184], - [1.5780393102494, 48.860864409827], - [1.5666395741734, 48.866183647932], - [1.5552126063723, 48.865075717505], - [1.5462328761118, 48.872431616391], - [1.5595079054893, 48.882055273516], - [1.5572530066459, 48.891575743208], - [1.5385235335514, 48.906685854091], - [1.5417973746939, 48.91547990669], - [1.5386177797921, 48.921794692396], - [1.5241021875366, 48.924752145617], - [1.5128954188837, 48.922585369837], - [1.5090139983632, 48.936627464834], - [1.5015266013113, 48.941051842112], - [1.5010590902862, 48.952678048634], - [1.4966058957223, 48.969344788938], - [1.5155485568584, 48.976406187821], - [1.5079088220123, 48.98376724437], - [1.497416022081, 48.979551284823], - [1.4770931932159, 48.978791319268], - [1.4706099672547, 48.975306435494], - [1.4609202371105, 48.986433838647], - [1.4787512905862, 48.998884682872], - [1.4721822976397, 49.018490972378], - [1.4577570076778, 49.026294572016], - [1.4579533584639, 49.03483279821], - [1.4474286969633, 49.04518889808], - [1.4472851104304, 49.053509472828], - [1.4608012364168, 49.062739598254], - [1.4848766880401, 49.0515451317], - [1.5032944474047, 49.059098256736], - [1.5116006058281, 49.074136193201], - [1.5217716034178, 49.068546693163], - [1.5494725491086, 49.072557881924], - [1.5570743762242, 49.069620586462], - [1.5747375500157, 49.078437534581], - [1.6044866350314, 49.08303659502], - [1.608798807603, 49.077894185227], - [1.6233233619235, 49.086078404348], - [1.6175344667245, 49.093996514155], - [1.6470910019222, 49.124713530921], - [1.655781502711, 49.130164014177], - [1.6539225302112, 49.145440634177], - [1.6643792614171, 49.153368483471], - [1.6670168601861, 49.178613559023], - [1.6769552220057, 49.202542812736], - [1.6757423007191, 49.21186711807], - [1.7040643483737, 49.229320472612], - [1.7043588288241, 49.232197221792], - [1.729662120604, 49.22919730317], - [1.7341091784733, 49.221277890399], - [1.7336823766846, 49.210958623685], - [1.7230394537953, 49.20967924589], - [1.7155761288215, 49.203118037941], - [1.7258249045161, 49.195712707137], - [1.7374357068856, 49.194603115202], - [1.7421415990654, 49.180151725276], - [1.7551705903258, 49.174545969477], - [1.7775554860529, 49.184104883007], - [1.7909791787819, 49.179854330047], - [1.7954740881562, 49.18526277584], - [1.8143979645085, 49.176162362964], - [1.8265758315348, 49.179516758866], - [1.8370818782543, 49.171698986367], - [1.8455433838221, 49.169896687357], - [1.877042152092, 49.171448857663], - [1.8852348791181, 49.162636028533], - [1.894536229716, 49.166040538631], - [1.931476176782, 49.17416772145], - [1.9480171420872, 49.170749195544], - [1.9607171629873, 49.173517298241], - [1.9734431640564, 49.18389441504], - [1.996823915181, 49.176453415327], - [2.0045021739488, 49.177609556506], - [2.0217858750717, 49.188671770161], - [2.0380917348167, 49.192136044555], - [2.066842351201, 49.202860855132], - [2.0808850919985, 49.209773929407], - [2.0915398506152, 49.204360444701], - [2.0968798927064, 49.189757147704], - [2.1133369040576, 49.186543761789], - [2.1327402600127, 49.191379169415], - [2.1645707336419, 49.179671393215], - [2.157743439339, 49.172599185593], - [2.1642743368285, 49.166004802028], - [2.1819527991076, 49.173675958457], - [2.204958905762, 49.174316445929], - [2.2186458815721, 49.180685270888], - [2.2354095182703, 49.167035850124], - [2.2163546658105, 49.154378017348], - [2.2230049777895, 49.151869445673], - [2.2524813607229, 49.152881479913], - [2.2622091200851, 49.158297463054], - [2.2695453788487, 49.156306628677], - [2.2862682227562, 49.160277559835], - [2.2888064839605, 49.170710377425], - [2.2994229533516, 49.17583535835], - [2.3011998615285, 49.183887047533], - [2.3109304401404, 49.186404768181], - [2.3222626753655, 49.180859736345], - [2.3462625342946, 49.161815854345], - [2.3592998527471, 49.147343950086], - [2.370937678429, 49.159173609651], - [2.383003341928, 49.155913004846], - [2.3912847262891, 49.1493504084], - [2.4153544805398, 49.151762413963], - [2.4409039786288, 49.14580411257], - [2.4354018020913, 49.133939040206], - [2.4615068862157, 49.135936921998], - [2.4817070713716, 49.126919463544], - [2.4992321189629, 49.122269747269], - [2.5020961933805, 49.118887475459], - [2.4899295573932, 49.106359373937], - [2.5310585957685, 49.099597191318], - [2.5329944482474, 49.119245162084], - [2.5408087122315, 49.122242313794], - [2.5561550654469, 49.118627938332], - [2.5520149054273, 49.113947081753], - [2.5581755098966, 49.098381756011], - [2.5786858654184, 49.091952842127], - [2.5833038141204, 49.080706309944], - [2.5905283926735, 49.079653961607], - [2.6072121818235, 49.089061593648], - [2.6103345312027, 49.09494039704], - [2.6205306041593, 49.095141144665], - [2.6332770991263, 49.108372635105], - [2.6676934960697, 49.092495236068], - [2.6848013380994, 49.081070149491], - [2.6921954156417, 49.072098782916], - [2.6909952426863, 49.066575827238], - [2.7061794650059, 49.06530744517], - [2.7204862280103, 49.074886920193], - [2.7324165014354, 49.069856383944], - [2.7350099332564, 49.060452516659], - [2.7604244593128, 49.06296236294], - [2.787073783912, 49.07527418833], - [2.7918697099795, 49.090226188638], - [2.8090528505052, 49.097537605404], - [2.8198502647929, 49.087367188293], - [2.8360889289489, 49.082987383853], - [2.8451483788669, 49.084656494049], - [2.8557424844029, 49.070260111043], - [2.8662678657136, 49.070693981918], - [2.8830747436616, 49.076071279686], - [2.8949485303642, 49.077063202013], - [2.9015078822282, 49.085373143453], - [2.9174506912143, 49.079815930085], - [2.9445842533756, 49.081604590578], - [2.9704735929189, 49.088974001698], - [2.9747449093505, 49.074788481937], - [2.9879964190903, 49.072371853401], - [2.9912365557999, 49.084010529465], - [3.0085155423352, 49.091506561321], - [3.0295246754031, 49.085932257529], - [3.0327819280137, 49.089067566229], - [3.0483557770377, 49.08631637936], - [3.0573553400185, 49.093990044235], - [3.0563165652026, 49.101913557338], - [3.0718801833502, 49.11755332218], - [3.0824299640326, 49.112379413059], - [3.1019450875262, 49.108665530931], - [3.1288977237115, 49.106712873662], - [3.1495286898189, 49.100548046274], - [3.1652303376546, 49.099653555336], - [3.1568687392365, 49.086717381412], - [3.1586170058803, 49.080495794822], - [3.1686703252618, 49.076194127358], - [3.1818447950388, 49.062073630984], - [3.1821650688322, 49.052356876125], - [3.1902026447151, 49.046494471584], - [3.181201109614, 49.042312878135], - [3.1765330296567, 49.030276306398], - [3.1610292917102, 49.024224133711], - [3.17167852308, 49.014125889695], - [3.1836516708558, 49.011250532749], - [3.2071647717724, 49.000687121653], - [3.209314063913, 48.993783774365], - [3.2291741613167, 48.988415153607], - [3.2312127851282, 48.976752849115], - [3.2441973984858, 48.976835025435], - [3.2518324140274, 48.972363565032], - [3.2571425774493, 48.95706258101], - [3.2678473977393, 48.938330226813], - [3.2845265117579, 48.940530948472], - [3.3047535824542, 48.948766966256], - [3.3128748032908, 48.933619620679], - [3.3130772332366, 48.921215462331], - [3.3302940034825, 48.908707002968], - [3.3441215555428, 48.915424399696], - [3.3535717935992, 48.915243105496], - [3.3663458595763, 48.922834212302], - [3.3722055688435, 48.921684863018], - [3.3755045418202, 48.907223979388], - [3.3690076856012, 48.893887842681], - [3.3828118491401, 48.888743663179], - [3.3804785922907, 48.874760520568], - [3.3897420595655, 48.871208088242], - [3.4058488876005, 48.875883179755], - [3.4032208419263, 48.864690111949], - [3.4209735309142, 48.863949992871], - [3.4522351731222, 48.856295042236], - [3.4453621334286, 48.843227318178], - [3.4619058634763, 48.837795469902], - [3.4704665824993, 48.850999590899], - [3.4851833721947, 48.851910309574], - [3.4895742506519, 48.839868156733], - [3.4849684486637, 48.825009748881], - [3.4872017702391, 48.815190371551], - [3.4809287140503, 48.81218578416], - [3.4703815627087, 48.8208976637], - [3.4544121814945, 48.813840024336], - [3.4321664968613, 48.812257770946], - [3.4166176467147, 48.817828781451], - [3.4041649646308, 48.80927626878], - [3.4104778884203, 48.803943061752], - [3.4412895824977, 48.800919300185], - [3.442160723333, 48.784353883555], - [3.4282111529646, 48.77948500421], - [3.4094228096892, 48.783835572028], - [3.4008409030783, 48.767256400859], - [3.398657955437, 48.755599281994], - [3.4129613380945, 48.753902050854], - [3.4256695187547, 48.755689536249], - [3.4358103469779, 48.753571711386], - [3.440606129229, 48.738701946832], - [3.4674670222781, 48.735224220894], - [3.4643082791983, 48.707378088042], - [3.4769690535178, 48.699355347111], - [3.4658318000834, 48.68619250912], - [3.4545564374114, 48.682119139778], - [3.442691260176, 48.672503410154], - [3.4408489379625, 48.66307286353], - [3.4604317354595, 48.653009078358], - [3.4531162175594, 48.633955984329], - [3.4765733783329, 48.637329365265], - [3.4881941587649, 48.644795887875], - [3.5031842529874, 48.645682506087], - [3.517498400146, 48.643365240313], - [3.5190643678345, 48.633470112339], - [3.54590310832, 48.62806547987], - [3.555613758785, 48.620285576065], - [3.5346181421224, 48.61035282902], - [3.5038548704771, 48.604807329745], - [3.5158639136582, 48.589782150903], - [3.4975057114927, 48.589954752513], - [3.4852747034173, 48.580426868353], - [3.4733827141903, 48.576873863934], - [3.4655215727904, 48.570484758136], - [3.4722961348839, 48.564913176785], - [3.4797700428722, 48.550623337178], - [3.4796007670225, 48.544709319952], - [3.4591848626137, 48.530740265696], - [3.4382278519026, 48.52833381057], - [3.4234477695307, 48.533559074894], - [3.4142391071512, 48.533468273095], - [3.4053967325678, 48.528014902933], - [3.4239142947726, 48.514360214193], - [3.4346387383078, 48.490251682592], - [3.4203545971629, 48.491547248944], - [3.3883584814447, 48.480409204068], - [3.3964392758484, 48.463728690957], - [3.4064837519344, 48.45245201333], - [3.40356672054, 48.438738834692], - [3.3969885214937, 48.434567766893], - [3.3919585015834, 48.424317659764], - [3.4118359218741, 48.421315638566], - [3.4136232739227, 48.414339744235], - [3.4220792964886, 48.413341016525], - [3.4147888224632, 48.390268550005], - [3.4020328168494, 48.389706108674], - [3.3833174045242, 48.39970411104], - [3.3672130286667, 48.394317453742], - [3.3627847824483, 48.382576787133], - [3.3651606301927, 48.372282482296], - [3.3301099431753, 48.372120787109], - [3.3093216217612, 48.376980286994], - [3.3051586355523, 48.372876819681], - [3.2823921646024, 48.377519839785], - [3.2647767822592, 48.374621237382], - [3.254386262298, 48.36502005161], - [3.2328491246009, 48.370332895515], - [3.2018505500023, 48.364015470529], - [3.184946555144, 48.368130335436], - [3.1796714598679, 48.375720974057], - [3.1677335139977, 48.371858146235], - [3.1398647131279, 48.372599662445], - [3.1182555596676, 48.366787852825], - [3.1034153439925, 48.349510589018], - [3.0878411046476, 48.358744110403], - [3.0605482162395, 48.357442256262], - [3.0495229427782, 48.360116755131], - [3.0374902381586, 48.343151149375], - [3.0365741164856, 48.326028248436], - [3.0158983096866, 48.307897241414], - [3.0272557445779, 48.300368070976], - [3.0204148507047, 48.293439730003], - [3.0297705668286, 48.285841287403], - [3.0249639004196, 48.27600913901], - [3.0436326434308, 48.272020556142], - [3.047565503762, 48.249696163103], - [3.0314619630164, 48.248879164003], - [3.0185660113854, 48.235192866522], - [3.0189243879447, 48.231774581507], - [3.0051596957479, 48.207665501246], - [2.9889655342085, 48.209014778073], - [2.9744704228122, 48.205550154363], - [2.9695465243882, 48.193835497978], - [2.9507427471906, 48.190202971569], - [2.9347445709406, 48.178820824383], - [2.9363157566366, 48.163391744884], - [2.8680328112418, 48.156437148324], - [2.8590064128033, 48.147350198136], - [2.8411949308256, 48.137851473794], - [2.8252530440464, 48.133557427837], - [2.8208840113898, 48.129664483454], - [2.800901925208, 48.133251589253], - [2.7986329461926, 48.150165448323], - [2.8099458960087, 48.161299706681], - [2.7989459318842, 48.168273053171], - [2.7801683123181, 48.167546718776], - [2.7686108994112, 48.163611325806], - [2.7462653547317, 48.163802955575], - [2.7414632024764, 48.159773038474], - [2.7535738017345, 48.15321134405], - [2.7551942761197, 48.145652570311], - [2.7291489796899, 48.139089867843], - [2.706543037587, 48.124819235783], - [2.6722231385896, 48.124202437622], - [2.6634137701321, 48.122204261229], - [2.6463713950461, 48.136008390021], - [2.6397379446435, 48.138858805822], - [2.6026896280919, 48.131484417095], - [2.5775724874953, 48.132078323329], - [2.570559954027, 48.140815681604], - [2.5381145999136, 48.140650823762], - [2.5215119811805, 48.127298388836], - [2.4903125823631, 48.126606179474], - [2.4648664700171, 48.129109351924], - [2.4510870610062, 48.123458807719], - [2.4442532323658, 48.131467936811], - [2.4560832798883, 48.13581808329], - [2.4783726996912, 48.156743847], - [2.4832322969696, 48.164516406945], - [2.5063243383023, 48.156437563961], - [2.5168430223759, 48.166807571121], - [2.5097551291606, 48.177877699501], - [2.5129645377339, 48.192979126229], - [2.5229439829919, 48.200517077101], - [2.5141133764865, 48.214377652405], - [2.5061863934974, 48.238532108957], - [2.4866525872998, 48.240104494021], - [2.4690928288345, 48.255276432625], - [2.4501643446939, 48.250036886561], - [2.4319323869166, 48.255142430662], - [2.4237621901031, 48.260296420297], - [2.4178314142956, 48.278395078542], - [2.4231698173532, 48.289315551296], - [2.4207604700518, 48.299253278858], - [2.4048123966273, 48.314593139765], - [2.4026629385658, 48.320717653248], - [2.3968534009104, 48.314755298076], - [2.3698159145392, 48.308674310979], - [2.3401550939779, 48.320230117587], - [2.3276948002521, 48.333053330653], - [2.312593571187, 48.330803657009], - [2.2954192911964, 48.30822244035], - [2.2668923386489, 48.314682212687], - [2.2535700132149, 48.300243238173], - [2.2451518848313, 48.298393903395], - [2.2494360700816, 48.314580917036], - [2.2380428382036, 48.316370632568], - [2.2463103911083, 48.329962148865], - [2.2295923211201, 48.329229232055], - [2.2239137900476, 48.336416239958], - [2.2022520441218, 48.344598562828], - [2.1982097691131, 48.337062877906], - [2.185025102223, 48.32642865382], - [2.1813553737363, 48.313746373001], - [2.1690253806915, 48.312695907539], - [2.1543896262247, 48.315910610694], - [2.1557084788588, 48.304493813388], - [2.1637483268763, 48.298436908006], - [2.1361199958338, 48.299247999325], - [2.1105944678389, 48.29694441258], - [2.1137168991141, 48.307245161467], - [2.1061680366894, 48.307635584746], - [2.0815050149817, 48.293603520661], - [2.0527138226636, 48.295470353999], - [2.0493770399482, 48.289753273514], - [2.0228447716486, 48.288080340461], - [2.007237571012, 48.284688606385], - [1.9940901445311, 48.286584124472], - [1.9752915866555, 48.287202034779], - [1.9666102219583, 48.295582043441], - [1.959225976988, 48.308685064463], - [1.9694413393402, 48.314231718094], - [1.9744919508382, 48.323163720082], - [1.9823432207772, 48.328312555088], - [1.9749473035511, 48.335258065972], - [1.9733953665973, 48.352974683353], - [1.9868237281778, 48.362141015776], - [1.9763108383484, 48.380270715947], - [1.966381938603, 48.38158815854], - [1.9765710225943, 48.399385315775], - [1.9619541453882, 48.404321075988], - [1.9427703207411, 48.405651458209], - [1.9305611178719, 48.404126689728], - [1.925889401548, 48.412741750651], - [1.9378068315128, 48.426390003183], - [1.9428970138616, 48.441083787001], - [1.9331248410711, 48.442264032481], - [1.9304234130097, 48.453403326926], - [1.9221462784913, 48.457599361977] - ] - ] - }, - "properties": { - "code": "11", - "name": "Île-de-France", - "ISOCODE": "FR-IDF" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [0.8148247207739, 48.670163564137], - [0.82767132893029, 48.680720042791], - [0.85036287028898, 48.682948048025], - [0.86149783759132, 48.691007914902], - [0.87671116761022, 48.715496114803], - [0.88836808739528, 48.718920532577], - [0.90239998073196, 48.710649225086], - [0.92119872414556, 48.709175212814], - [0.95524192597313, 48.716786068922], - [0.96144420763056, 48.725722137279], - [0.9772943914531, 48.730138669646], - [0.98441493173502, 48.725995395669], - [1.0140639866541, 48.72810030179], - [1.0206075605327, 48.734789446779], - [1.0316499412576, 48.730581545643], - [1.0398026909049, 48.742155339], - [1.0590712054157, 48.756765184439], - [1.0686653703661, 48.756913559557], - [1.0757811283562, 48.749437927852], - [1.086000043818, 48.756926389494], - [1.0957264674684, 48.748713222693], - [1.1126577960236, 48.751863710692], - [1.1209842348348, 48.767249558527], - [1.1189842149957, 48.782375233568], - [1.1213959532999, 48.789195509733], - [1.1521150110915, 48.78555968408], - [1.1533037151721, 48.774016041266], - [1.161542788993, 48.769293220083], - [1.1847360438338, 48.772630245963], - [1.1981446610666, 48.769568542277], - [1.223526519249, 48.758056658402], - [1.2226160798083, 48.767292140423], - [1.246023632927, 48.769675823998], - [1.2562637586379, 48.765103705723], - [1.2545465453882, 48.758629272206], - [1.2702130511038, 48.757482633762], - [1.2799854142834, 48.762674216595], - [1.3002968590985, 48.767536812046], - [1.3195444496148, 48.76096144137], - [1.3329054445301, 48.762612355286], - [1.3422322124976, 48.772542324536], - [1.3626643019013, 48.781664300017], - [1.3744255946955, 48.782613836125], - [1.3769627320869, 48.791766336256], - [1.3592476591605, 48.813608561344], - [1.3621823366519, 48.834179921179], - [1.3905601143901, 48.8466061658], - [1.3968565494996, 48.855383585466], - [1.4093657222488, 48.861152641723], - [1.4238934051882, 48.861268418973], - [1.4343110180818, 48.866140106761], - [1.4549936915991, 48.870326164498], - [1.4653628424762, 48.877601417126], - [1.4683545148033, 48.892215598584], - [1.4606700524523, 48.900494617753], - [1.4593261044838, 48.914649076535], - [1.4479593034805, 48.924639965044], - [1.4594110528379, 48.928926959252], - [1.4613112437714, 48.937555310548], - [1.4806477281429, 48.940490376837], - [1.5015266013113, 48.941051842112], - [1.5090139983632, 48.936627464834], - [1.5128954188837, 48.922585369837], - [1.5241021875366, 48.924752145617], - [1.5386177797921, 48.921794692396], - [1.5417973746939, 48.91547990669], - [1.5385235335514, 48.906685854091], - [1.5572530066459, 48.891575743208], - [1.5595079054893, 48.882055273516], - [1.5462328761118, 48.872431616391], - [1.5552126063723, 48.865075717505], - [1.5666395741734, 48.866183647932], - [1.5780393102494, 48.860864409827], - [1.5815974879282, 48.854999853184], - [1.5772727483959, 48.844358116549], - [1.5951919881928, 48.839707334891], - [1.5941817842602, 48.834218536506], - [1.5837280523171, 48.832130726577], - [1.5912058811372, 48.814866973865], - [1.5834240899801, 48.807168828475], - [1.5756742997058, 48.790504096814], - [1.5803992974877, 48.777559499888], - [1.5875973267999, 48.77360593191], - [1.5849045861802, 48.763296867942], - [1.6026875153092, 48.760486506237], - [1.6264035004424, 48.748091646614], - [1.617804540369, 48.735942039093], - [1.5895382120501, 48.712468154974], - [1.5948810579854, 48.709310708948], - [1.5795403954022, 48.701811808781], - [1.5823151457709, 48.696368116243], - [1.611774872468, 48.689473861848], - [1.6058633277913, 48.678762670696], - [1.6024917313048, 48.663765432374], - [1.6156160327829, 48.652789464959], - [1.6298476379809, 48.648875085504], - [1.6431906740267, 48.651291198129], - [1.64099001993, 48.643389970225], - [1.6515719070139, 48.638125076138], - [1.6495606586096, 48.63227092599], - [1.6582325680054, 48.627645882726], - [1.656339110342, 48.622053121145], - [1.6662229993646, 48.613704063337], - [1.6793591385148, 48.618488989615], - [1.689422105099, 48.611536250362], - [1.7148984609516, 48.614392276576], - [1.7178604312421, 48.606851120102], - [1.701983609829, 48.584999462088], - [1.7092486767776, 48.578026100992], - [1.7368302606076, 48.572280930629], - [1.7458629248393, 48.576137031624], - [1.765322855183, 48.569374568412], - [1.7674104287362, 48.559405546059], - [1.7872423006556, 48.553746336139], - [1.7757543018107, 48.527702827198], - [1.7786170432038, 48.508131705459], - [1.7906352036641, 48.497377315443], - [1.7857092863217, 48.489936911612], - [1.7963309289573, 48.484187938277], - [1.8014512893542, 48.466086215218], - [1.8363839553347, 48.466477806902], - [1.8448630603718, 48.449360706547], - [1.8774887068591, 48.440613561663], - [1.9064076592587, 48.440146719021], - [1.9065549813045, 48.445672344539], - [1.9207376717625, 48.447750046159], - [1.9221462784913, 48.457599361977], - [1.9304234130097, 48.453403326926], - [1.9331248410711, 48.442264032481], - [1.9428970138616, 48.441083787001], - [1.9378068315128, 48.426390003183], - [1.925889401548, 48.412741750651], - [1.9305611178719, 48.404126689728], - [1.9427703207411, 48.405651458209], - [1.9619541453882, 48.404321075988], - [1.9765710225943, 48.399385315775], - [1.966381938603, 48.38158815854], - [1.9763108383484, 48.380270715947], - [1.9868237281778, 48.362141015776], - [1.9733953665973, 48.352974683353], - [1.9749473035511, 48.335258065972], - [1.9823432207772, 48.328312555088], - [1.9744919508382, 48.323163720082], - [1.9694413393402, 48.314231718094], - [1.959225976988, 48.308685064463], - [1.9666102219583, 48.295582043441], - [1.9752915866555, 48.287202034779], - [1.9940901445311, 48.286584124472], - [2.007237571012, 48.284688606385], - [2.0228447716486, 48.288080340461], - [2.0493770399482, 48.289753273514], - [2.0527138226636, 48.295470353999], - [2.0815050149817, 48.293603520661], - [2.1061680366894, 48.307635584746], - [2.1137168991141, 48.307245161467], - [2.1105944678389, 48.29694441258], - [2.1361199958338, 48.299247999325], - [2.1637483268763, 48.298436908006], - [2.1557084788588, 48.304493813388], - [2.1543896262247, 48.315910610694], - [2.1690253806915, 48.312695907539], - [2.1813553737363, 48.313746373001], - [2.185025102223, 48.32642865382], - [2.1982097691131, 48.337062877906], - [2.2022520441218, 48.344598562828], - [2.2239137900476, 48.336416239958], - [2.2295923211201, 48.329229232055], - [2.2463103911083, 48.329962148865], - [2.2380428382036, 48.316370632568], - [2.2494360700816, 48.314580917036], - [2.2451518848313, 48.298393903395], - [2.2535700132149, 48.300243238173], - [2.2668923386489, 48.314682212687], - [2.2954192911964, 48.30822244035], - [2.312593571187, 48.330803657009], - [2.3276948002521, 48.333053330653], - [2.3401550939779, 48.320230117587], - [2.3698159145392, 48.308674310979], - [2.3968534009104, 48.314755298076], - [2.4026629385658, 48.320717653248], - [2.4048123966273, 48.314593139765], - [2.4207604700518, 48.299253278858], - [2.4231698173532, 48.289315551296], - [2.4178314142956, 48.278395078542], - [2.4237621901031, 48.260296420297], - [2.4319323869166, 48.255142430662], - [2.4501643446939, 48.250036886561], - [2.4690928288345, 48.255276432625], - [2.4866525872998, 48.240104494021], - [2.5061863934974, 48.238532108957], - [2.5141133764865, 48.214377652405], - [2.5229439829919, 48.200517077101], - [2.5129645377339, 48.192979126229], - [2.5097551291606, 48.177877699501], - [2.5168430223759, 48.166807571121], - [2.5063243383023, 48.156437563961], - [2.4832322969696, 48.164516406945], - [2.4783726996912, 48.156743847], - [2.4560832798883, 48.13581808329], - [2.4442532323658, 48.131467936811], - [2.4510870610062, 48.123458807719], - [2.4648664700171, 48.129109351924], - [2.4903125823631, 48.126606179474], - [2.5215119811805, 48.127298388836], - [2.5381145999136, 48.140650823762], - [2.570559954027, 48.140815681604], - [2.5775724874953, 48.132078323329], - [2.6026896280919, 48.131484417095], - [2.6397379446435, 48.138858805822], - [2.6463713950461, 48.136008390021], - [2.6634137701321, 48.122204261229], - [2.6722231385896, 48.124202437622], - [2.706543037587, 48.124819235783], - [2.7291489796899, 48.139089867843], - [2.7551942761197, 48.145652570311], - [2.7535738017345, 48.15321134405], - [2.7414632024764, 48.159773038474], - [2.7462653547317, 48.163802955575], - [2.7686108994112, 48.163611325806], - [2.7801683123181, 48.167546718776], - [2.7989459318842, 48.168273053171], - [2.8099458960087, 48.161299706681], - [2.7986329461926, 48.150165448323], - [2.800901925208, 48.133251589253], - [2.8208840113898, 48.129664483454], - [2.8252530440464, 48.133557427837], - [2.8411949308256, 48.137851473794], - [2.8590064128033, 48.147350198136], - [2.8680328112418, 48.156437148324], - [2.9363157566366, 48.163391744884], - [2.9532706975673, 48.165012141792], - [2.9636115856187, 48.152952836191], - [2.9908854951697, 48.152489288025], - [2.9939835469666, 48.142265686487], - [3.0067845221623, 48.145250368304], - [3.0294681734995, 48.133204471839], - [3.0158768007648, 48.115703437492], - [3.035285259367, 48.115994375619], - [3.0383144426538, 48.101542780839], - [3.0498894899541, 48.088838788782], - [3.0504714242752, 48.072334131135], - [3.0668426687001, 48.062700948945], - [3.0883164489307, 48.053931896432], - [3.0973362166793, 48.039371853532], - [3.1242571374888, 48.031123310866], - [3.120444753158, 48.027237026667], - [3.1031098748357, 48.024050754331], - [3.1040912941224, 48.013541749122], - [3.1154271480689, 48.012966036779], - [3.1245523220345, 48.006031052733], - [3.1215086124269, 47.99508051279], - [3.1284487900515, 47.970976841524], - [3.1177801945629, 47.964978280792], - [3.1052652915151, 47.946939230434], - [3.0959562152001, 47.94648282966], - [3.0813886854655, 47.938303435109], - [3.0784762596905, 47.93141901745], - [3.0646126208988, 47.930516710244], - [3.049851715745, 47.917612271733], - [3.0501029428736, 47.911450149596], - [3.0369085970173, 47.910046599044], - [3.0251429746145, 47.905395103831], - [3.0102886119028, 47.904716972369], - [3.0072263096695, 47.895290955742], - [3.0113128689564, 47.874942218413], - [3.0020156817175, 47.86910456894], - [3.0053590366439, 47.864049253797], - [3.0241574870815, 47.860432544378], - [3.0338278605646, 47.843872107669], - [3.0310783842835, 47.837952684286], - [3.0125313015817, 47.834373232486], - [3.0154699273932, 47.813535934414], - [3.0229373322912, 47.812772400995], - [3.0281204473987, 47.800645366032], - [3.0237994278176, 47.786550178612], - [2.988226602321, 47.78603448946], - [2.9350564314568, 47.763249875579], - [2.9093762293739, 47.769314365231], - [2.893986958474, 47.764757164259], - [2.8701769520741, 47.764868196886], - [2.8566700654285, 47.760929175798], - [2.8581457165416, 47.745650029901], - [2.8487899744432, 47.725884864654], - [2.8489690050712, 47.716844895991], - [2.8585167014012, 47.711991090287], - [2.8765799552305, 47.719081526808], - [2.8841930930896, 47.714211876689], - [2.8829409210413, 47.702615088236], - [2.9037123946566, 47.695095946597], - [2.9231151407358, 47.680558801908], - [2.9181562549963, 47.669794968987], - [2.926238261078, 47.660085723292], - [2.9369444627222, 47.659131595543], - [2.9542289513333, 47.64577418642], - [2.9362905168585, 47.636648702788], - [2.9357687458876, 47.619831796752], - [2.9452166853722, 47.608449329011], - [2.9379937136807, 47.598885605034], - [2.9480691732296, 47.590534725553], - [2.954982923175, 47.590408879602], - [2.9644517577136, 47.581632358212], - [2.9622680864494, 47.576787199846], - [2.9765353538906, 47.569424295927], - [2.9643142632036, 47.564408371297], - [2.9586515837228, 47.55737826151], - [2.9142961197082, 47.565971982014], - [2.9093721909559, 47.559160555497], - [2.8907714985755, 47.553102008094], - [2.8738950692802, 47.55280954087], - [2.8661248696402, 47.546368484983], - [2.8574859883322, 47.552839253284], - [2.8451871650071, 47.544932948997], - [2.8489012329621, 47.53754134151], - [2.8746305174837, 47.520424918568], - [2.8884586332585, 47.50943098545], - [2.8980184987491, 47.485252401408], - [2.9140606551793, 47.470896834824], - [2.9209883066832, 47.455435821811], - [2.9288970093188, 47.444564932191], - [2.930733371753, 47.431324302158], - [2.9198859465078, 47.42134952529], - [2.9184549974743, 47.405524882196], - [2.9008159931543, 47.385192680229], - [2.8952492319567, 47.372177057081], - [2.8734919391537, 47.348396860493], - [2.8699481463917, 47.338248316569], - [2.8765423657559, 47.321934350315], - [2.8848764388062, 47.316364164149], - [2.907768482234, 47.310991294935], - [2.9264805753113, 47.298618271978], - [2.9378619912637, 47.287719383722], - [2.9739389096142, 47.269804660206], - [2.9834001334309, 47.259765880582], - [2.9779552353597, 47.235552508643], - [2.9816886133559, 47.221993356801], - [2.9972827962038, 47.20166393803], - [3.0092852008476, 47.179914660937], - [3.0159484799111, 47.159093918463], - [3.0211980869457, 47.136438093682], - [3.0280905152523, 47.129064982977], - [3.0313737475376, 47.092475725697], - [3.0211804845643, 47.078232382085], - [3.0187160021753, 47.070780884737], - [3.0232191913817, 47.062612371142], - [3.034525000237, 47.056291089581], - [3.0627453140392, 47.04527634615], - [3.0748375004401, 47.029815006019], - [3.0757442612943, 47.019148176465], - [3.0655821306108, 46.997351832387], - [3.0629299477088, 46.981085018578], - [3.0717062160523, 46.964340639457], - [3.0793324170792, 46.955115150499], - [3.0648978058646, 46.937079267447], - [3.062210755789, 46.927739529848], - [3.0502954877584, 46.910631265703], - [3.0514016137092, 46.904955777225], - [3.0609590858964, 46.898148846497], - [3.0680961068914, 46.877680332057], - [3.0671018851119, 46.847818120893], - [3.0545889127264, 46.838765097797], - [3.0593510744061, 46.827263935532], - [3.0374707304721, 46.807786953663], - [3.0320629441459, 46.794909389217], - [3.0175184994153, 46.799900698717], - [3.0033551657685, 46.798122809815], - [2.9895396276531, 46.799298294916], - [2.977801671991, 46.80377337386], - [2.959918627937, 46.803872076205], - [2.9529591220769, 46.790999230159], - [2.9378161550649, 46.795713700537], - [2.9243754548552, 46.794523429403], - [2.9081271826571, 46.787903599841], - [2.9098049149944, 46.779347563944], - [2.8761691440531, 46.768445733319], - [2.8770157582915, 46.761468535881], - [2.8612332862758, 46.754030340445], - [2.845419928846, 46.742855932849], - [2.8448121194469, 46.726844055458], - [2.8276177034814, 46.735286079973], - [2.8010724027789, 46.733722377214], - [2.787290827625, 46.728613960925], - [2.7744893811293, 46.718902897367], - [2.7585207590938, 46.717748505775], - [2.7567441474108, 46.724772483564], - [2.7435704821949, 46.73008326729], - [2.7372898083354, 46.743150242056], - [2.7287214908144, 46.748308579779], - [2.7049698717297, 46.739389993021], - [2.7009209254283, 46.720959754269], - [2.6881649904859, 46.720909610987], - [2.6777927654584, 46.704612208045], - [2.6547293011216, 46.696536792562], - [2.6478858990075, 46.688908315282], - [2.6313578708624, 46.690886867154], - [2.6234039357923, 46.688702717854], - [2.6215530530757, 46.678653259953], - [2.6308613163993, 46.672294145791], - [2.6246414896646, 46.657300692831], - [2.6095979741835, 46.662840354764], - [2.6050484721825, 46.668158037606], - [2.5849748988646, 46.664165776546], - [2.5721892884417, 46.659444642004], - [2.5673899068872, 46.652347408754], - [2.5895802639199, 46.648026747075], - [2.5966478585977, 46.637215067759], - [2.5852765586441, 46.622738638042], - [2.5859628971047, 46.6142967727], - [2.5691010154446, 46.609518978116], - [2.5779519369239, 46.603788174773], - [2.5815597567024, 46.593164438775], - [2.6023203253116, 46.595164451357], - [2.6045186165205, 46.579001838563], - [2.6093779370947, 46.571328686404], - [2.60621930247, 46.565758488844], - [2.6149607060411, 46.553276455558], - [2.5835051726425, 46.542741752192], - [2.5724916070298, 46.533849645617], - [2.5540275760751, 46.529387627047], - [2.5366546066244, 46.519702557793], - [2.5275313125159, 46.529030044988], - [2.5201385391568, 46.530864132368], - [2.512426202843, 46.523880853474], - [2.4991226886431, 46.521292172555], - [2.4969434776113, 46.533665788244], - [2.4829275256976, 46.532694737487], - [2.4685711377311, 46.526009632976], - [2.4502811792897, 46.521935935452], - [2.4266867789218, 46.526121661214], - [2.4131644849466, 46.520301786364], - [2.3884650716406, 46.518246292054], - [2.3683002910262, 46.51843386298], - [2.3520036091655, 46.512206845202], - [2.3241785781947, 46.49036759012], - [2.3298217389117, 46.479616607338], - [2.3242884285484, 46.470978980874], - [2.3166710404192, 46.468549195709], - [2.3054693178764, 46.475428936804], - [2.2857604795168, 46.453514664499], - [2.2810437278384, 46.420403547753], - [2.2498765158587, 46.426366967242], - [2.2334148941606, 46.423384135542], - [2.2206403396014, 46.423664161021], - [2.1975676755012, 46.428294141001], - [2.1851558899005, 46.423284068779], - [2.1677843748983, 46.424069192575], - [2.1296807376318, 46.419867872386], - [2.1126347187417, 46.420825387231], - [2.1083721397147, 46.413528592759], - [2.0889457684929, 46.40889961632], - [2.0803472806508, 46.411894246794], - [2.0741962684953, 46.419842978652], - [2.0294174309506, 46.424588797264], - [2.0203464671203, 46.429421918521], - [1.9930771581051, 46.430917343442], - [1.9781042758382, 46.439772572322], - [1.9542508363527, 46.438125703166], - [1.943869602507, 46.433996659264], - [1.9243017577068, 46.431903065788], - [1.9195527692358, 46.440208070783], - [1.909180451657, 46.443498226347], - [1.902458213237, 46.43780452052], - [1.89071589528, 46.441493184019], - [1.8834368991965, 46.432557252889], - [1.8580375856722, 46.433476804112], - [1.8383647496008, 46.42728517531], - [1.8195044214246, 46.430033877555], - [1.816812388337, 46.439524938483], - [1.8031391002694, 46.44691836733], - [1.7983753858278, 46.45481310551], - [1.7548573832317, 46.452214535934], - [1.7475915839665, 46.450017868926], - [1.7566658918784, 46.441292317573], - [1.757375741134, 46.423616429483], - [1.7493159438657, 46.41093389201], - [1.7505449826939, 46.405586225701], - [1.7392119982362, 46.401254100808], - [1.7277096608449, 46.388955998124], - [1.7091312929501, 46.393353821969], - [1.6974668292376, 46.406604886198], - [1.683606447426, 46.418176923275], - [1.6611836253306, 46.403538218482], - [1.6448463938248, 46.386816749434], - [1.628836514357, 46.388247455127], - [1.6143064140463, 46.405295947029], - [1.6226552998913, 46.418260263211], - [1.6092554805936, 46.423123163216], - [1.5920388571659, 46.407311867592], - [1.5696914589532, 46.405498471105], - [1.5524923075161, 46.394133824944], - [1.5461946362171, 46.39346025752], - [1.5439680356057, 46.41688301363], - [1.5350519004493, 46.424455702933], - [1.5223067601736, 46.426527695424], - [1.5112050540502, 46.419594596972], - [1.5059901336348, 46.409908716453], - [1.4929348173659, 46.398340551367], - [1.4775958033831, 46.393726557044], - [1.472558559102, 46.383431643989], - [1.4629367778167, 46.375349793186], - [1.454349713379, 46.376048839285], - [1.4353743494744, 46.363842198651], - [1.438395055125, 46.35797267046], - [1.4151854142983, 46.347214822447], - [1.4048447784072, 46.364056923495], - [1.3965775759913, 46.371445233126], - [1.3835201223913, 46.374755471612], - [1.3775283931369, 46.382803331341], - [1.3560243049838, 46.4001195921], - [1.3442929839887, 46.401546863371], - [1.3309220641861, 46.396705560378], - [1.3223398241302, 46.389656273383], - [1.3204740000508, 46.38163178083], - [1.3093599883058, 46.378135125428], - [1.3030594710726, 46.370991990563], - [1.2795549241983, 46.376488887271], - [1.2603993142262, 46.378783327264], - [1.245105268008, 46.37323860456], - [1.2408646690892, 46.367573686174], - [1.2164239770673, 46.367784938774], - [1.2047664407221, 46.387689428519], - [1.191538104043, 46.376759451936], - [1.1841495355328, 46.37729147918], - [1.1772787760985, 46.383948000481], - [1.1950871576883, 46.40275403272], - [1.1944727430082, 46.410351612296], - [1.2126877519811, 46.432217971701], - [1.2011339896178, 46.432466167404], - [1.1834055129956, 46.429224899772], - [1.1860178766023, 46.441083576014], - [1.1689192762458, 46.446308575491], - [1.1516072310249, 46.449233517349], - [1.1355078072574, 46.470884241481], - [1.1529790996043, 46.472957682593], - [1.1405271083029, 46.485634879486], - [1.1349675834984, 46.495262876365], - [1.1491485689753, 46.502205353076], - [1.1459288779804, 46.506400874677], - [1.1082856489547, 46.531510215741], - [1.0875973131695, 46.538168324634], - [1.0722975106803, 46.53723511351], - [1.0206003685537, 46.537099020664], - [1.0219575008089, 46.55371655484], - [1.0147685045818, 46.567759565973], - [0.98723321911375, 46.565560099789], - [0.98209440694689, 46.572640353042], - [0.96266777384523, 46.574297702094], - [0.94202235129636, 46.580794785364], - [0.9371898310662, 46.586044724789], - [0.93775566335965, 46.594420109118], - [0.91586544594852, 46.596627887059], - [0.90986438287983, 46.603447081391], - [0.90693650860659, 46.615213230068], - [0.89430329614895, 46.625732175305], - [0.89638293110539, 46.633451946341], - [0.90652086468369, 46.647752216163], - [0.91742860399951, 46.65036307159], - [0.9067032428601, 46.665571264221], - [0.91071057116932, 46.677183661606], - [0.90215945171528, 46.67919114553], - [0.92474929055741, 46.692789633606], - [0.9249533025609, 46.699991021542], - [0.91455153531157, 46.710120272246], - [0.90104236961312, 46.736090564754], - [0.88777529605684, 46.737902736858], - [0.86746898682573, 46.748216404838], - [0.85444929067001, 46.759970797231], - [0.84293807311317, 46.764275112746], - [0.83064773545714, 46.775361466403], - [0.82943649435874, 46.783579432834], - [0.81628357550664, 46.787769101729], - [0.81190192936381, 46.794504364542], - [0.8153195131751, 46.805707876783], - [0.81032866524034, 46.813064718291], - [0.80932023680023, 46.827853568236], - [0.79509333742744, 46.832522249054], - [0.78680224354972, 46.840463346525], - [0.79645898941075, 46.848962468561], - [0.79032856900623, 46.852389283147], - [0.76879944678165, 46.85074613749], - [0.77198838768839, 46.860643073187], - [0.75088169303492, 46.863524734354], - [0.74733084634723, 46.869392079962], - [0.73368489987152, 46.876040130575], - [0.72673737636298, 46.886740909711], - [0.7043177119069, 46.903295922263], - [0.70357222720342, 46.930055655547], - [0.70624788531743, 46.937157219193], - [0.6961893847553, 46.956809748541], - [0.69256676799124, 46.974304310533], - [0.68216214670066, 46.977079806439], - [0.66162129594461, 46.978086547342], - [0.65646206458496, 46.985434564914], - [0.64769454368947, 46.98827539877], - [0.63621078823085, 46.985451013839], - [0.62124367303806, 46.997106205666], - [0.6188740376389, 47.007464569411], - [0.59055093530507, 47.006722651596], - [0.56695306996355, 47.002266858023], - [0.57368515665648, 46.995531274591], - [0.57382203251682, 46.983340464589], - [0.59353374575945, 46.977612888014], - [0.60117289544287, 46.973094369377], - [0.60155821661783, 46.959107207652], - [0.59834824957594, 46.956764146875], - [0.57084220800147, 46.95593925543], - [0.53928916139484, 46.960219024665], - [0.52812896085369, 46.955971768907], - [0.5061349705044, 46.959245419792], - [0.47662392866394, 46.949861808585], - [0.44480103455716, 46.941152434129], - [0.43870457627727, 46.929578354733], - [0.41852515647745, 46.937386922114], - [0.40666063754734, 46.936647597652], - [0.38814626546636, 46.943624533306], - [0.36651145250788, 46.949554418002], - [0.35524351132264, 46.94418585304], - [0.34773843894922, 46.936585764264], - [0.33952563735758, 46.936623468454], - [0.32483667041576, 46.930652041087], - [0.31123243685649, 46.937837015115], - [0.3052147303369, 46.952805098497], - [0.30507546032998, 46.965176268239], - [0.30073879657193, 46.973829519846], - [0.3083994154951, 46.978149875297], - [0.30178521378569, 46.984422127588], - [0.30884587377182, 46.999441441774], - [0.30543065376719, 47.012362068122], - [0.29867667498614, 47.019599341054], - [0.30969866315285, 47.025643877461], - [0.30698465850517, 47.048723481399], - [0.29822992579073, 47.053922293608], - [0.26770726634947, 47.04388297477], - [0.26201563438582, 47.057459330927], - [0.26761937550861, 47.067504197075], - [0.26165981464917, 47.070051249456], - [0.24245135321948, 47.0711879788], - [0.23175079195616, 47.064054806793], - [0.20799449312514, 47.053230964732], - [0.19167202519639, 47.064672009871], - [0.17997285846393, 47.059187917933], - [0.17421802926902, 47.071274231914], - [0.20095307158529, 47.091257976623], - [0.18811779784912, 47.100828164294], - [0.18145709966147, 47.1143899519], - [0.16598416316105, 47.107162285602], - [0.16126718554822, 47.100796179607], - [0.13471650901781, 47.107872599064], - [0.13613099833731, 47.121578754741], - [0.12716663727095, 47.119967203103], - [0.12372359489648, 47.128315822721], - [0.11111857810383, 47.129423259303], - [0.10471937462849, 47.120793812241], - [0.084648249403316, 47.118377760157], - [0.076371249669326, 47.123931049218], - [0.08087053131906, 47.137653029292], - [0.078395363975684, 47.146334786534], - [0.066259497472021, 47.143215902043], - [0.053830055961677, 47.16373374848], - [0.063052886223431, 47.175281799504], - [0.066596690426524, 47.189796025762], - [0.053277684947378, 47.197182170708], - [0.072492820219795, 47.220509854465], - [0.074829460019472, 47.248048474897], - [0.082848635358157, 47.274168568836], - [0.078978960154079, 47.282822156056], - [0.099012801986365, 47.308139754432], - [0.10924461524906, 47.313421774727], - [0.11786940351405, 47.325601141531], - [0.11745694898776, 47.332342613969], - [0.13125388952305, 47.33409233868], - [0.13898837615883, 47.33824318552], - [0.14796868770319, 47.348447803202], - [0.14165395029201, 47.361961427199], - [0.15845843664067, 47.366157059648], - [0.18296214025622, 47.38033044936], - [0.16798792612309, 47.386934066036], - [0.16948959021545, 47.395646092388], - [0.15385793095636, 47.398727021572], - [0.18138204745888, 47.417824739063], - [0.18527899163678, 47.424736116162], - [0.18093772230519, 47.453404824236], - [0.18979781155354, 47.460723327297], - [0.2007181726014, 47.484545277708], - [0.22010664406864, 47.50195233416], - [0.22008941253351, 47.511490494119], - [0.22491484141757, 47.52709951065], - [0.20807030184987, 47.526432351568], - [0.2034912870347, 47.533330991541], - [0.19334553772128, 47.539118278038], - [0.20150198535452, 47.544324126228], - [0.21510267043528, 47.569975576615], - [0.23453049018557, 47.57797744555], - [0.23000044283917, 47.608397360802], - [0.23768269638563, 47.610966183961], - [0.25925309972834, 47.612253732911], - [0.26784211805055, 47.608672360211], - [0.27799234011686, 47.597381208395], - [0.29001704748145, 47.597728628188], - [0.32325488038268, 47.592888415747], - [0.33844630799321, 47.585030259946], - [0.33958580258874, 47.579472315073], - [0.36673611607068, 47.573457923574], - [0.3789542711163, 47.569104805534], - [0.40216586206278, 47.579002216555], - [0.39442325665444, 47.594393009892], - [0.37905609046241, 47.610779501442], - [0.36480446047317, 47.620165400372], - [0.36465430735157, 47.626011449659], - [0.38107503178189, 47.639064909321], - [0.39702255940301, 47.638927008339], - [0.42390524684004, 47.617824451176], - [0.44993291932188, 47.619329777154], - [0.45518198840301, 47.627017225989], - [0.45662804145159, 47.638826353606], - [0.47607646347987, 47.648011563852], - [0.4797670863672, 47.64329220016], - [0.4996666538331, 47.645272415067], - [0.51325174134335, 47.652863992861], - [0.54289746214182, 47.656203651505], - [0.55947922009731, 47.665994923777], - [0.58772733155021, 47.669617061038], - [0.60463738045699, 47.679968482062], - [0.61480416648326, 47.68275087954], - [0.61443245110168, 47.694215472574], - [0.60418662363095, 47.685607124967], - [0.59557114412559, 47.688312714504], - [0.59297009308968, 47.703590911989], - [0.58052041667909, 47.712330763793], - [0.59409530653203, 47.723105855723], - [0.61159726872368, 47.728134311986], - [0.61066958830157, 47.732034198596], - [0.62683335231018, 47.751793159891], - [0.63937932915856, 47.751572315523], - [0.67564997055176, 47.768962404729], - [0.69688004266227, 47.764225211], - [0.70344170542358, 47.769940283327], - [0.68931761050545, 47.779996503151], - [0.69798475487217, 47.788889445319], - [0.71263236035006, 47.790038970809], - [0.72484407861962, 47.798889067315], - [0.7397212944059, 47.814678933449], - [0.74540046495951, 47.825663057103], - [0.7588569724751, 47.833536394698], - [0.76841445732376, 47.831101351932], - [0.77457358541314, 47.839684494777], - [0.77401870735853, 47.851208382865], - [0.75916076452252, 47.859222188506], - [0.76468938104337, 47.866582667793], - [0.75733759497489, 47.884473514914], - [0.75986941585155, 47.898224938894], - [0.77032460906914, 47.902009083915], - [0.78051199587287, 47.910375216053], - [0.79002362904946, 47.912210300533], - [0.79799062776542, 47.898193546758], - [0.81018749426364, 47.890393591962], - [0.81721753097407, 47.892418803105], - [0.80913428200565, 47.91066247592], - [0.81211830142135, 47.928939306036], - [0.8171459594605, 47.934467914387], - [0.83727689039754, 47.937246716219], - [0.84579379193831, 47.941403140329], - [0.84529238839341, 47.954438931698], - [0.82428057343045, 47.982142037161], - [0.82622288599262, 47.991475839362], - [0.83237463233502, 47.996592094392], - [0.83170184588828, 48.006116934727], - [0.84052666414894, 48.021048593652], - [0.84155459904793, 48.029673676539], - [0.83672342747852, 48.034558745892], - [0.82520263947346, 48.03005952554], - [0.80877017226921, 48.031993621434], - [0.79747785616118, 48.037556987677], - [0.79653309159021, 48.05267766261], - [0.80118315423495, 48.071513555954], - [0.83460349982458, 48.070147734707], - [0.84302009925743, 48.072638200667], - [0.84483764311698, 48.086647072566], - [0.83920278539184, 48.09125189303], - [0.81516825904503, 48.093730753222], - [0.81435131408069, 48.098801731111], - [0.83268783335498, 48.098453526315], - [0.84121734187884, 48.103059710788], - [0.8553701454218, 48.122620579792], - [0.852575219489, 48.133602174445], - [0.87293551592102, 48.133408559058], - [0.89396954177329, 48.135535055964], - [0.91379809767445, 48.135125048448], - [0.91161206421963, 48.148858532659], - [0.88249645680993, 48.161766033434], - [0.86198925121346, 48.166816904566], - [0.83683452952269, 48.167352245345], - [0.82688955262783, 48.175387000045], - [0.80835901939965, 48.18611890903], - [0.79562670501545, 48.188043105362], - [0.79765841643139, 48.19445496608], - [0.80626900151784, 48.203016266265], - [0.83048365574563, 48.210708729507], - [0.82588953248827, 48.220721830264], - [0.80608653469826, 48.239891017509], - [0.80241465108887, 48.248072322927], - [0.78758977714986, 48.261313612339], - [0.78587084890053, 48.271138465423], - [0.79426147145466, 48.284950588985], - [0.79341825616719, 48.293008635712], - [0.77758221552843, 48.302840856139], - [0.76023175104941, 48.298171659555], - [0.76219430247254, 48.306876639515], - [0.77313762601396, 48.325511221527], - [0.78418514184216, 48.334478837721], - [0.78542500970172, 48.340430711536], - [0.81840111266411, 48.349420439199], - [0.82785590745519, 48.342447024282], - [0.84159508492141, 48.350229728169], - [0.86181253481946, 48.350897961325], - [0.87015714346989, 48.35834027017], - [0.88337252111541, 48.356669121421], - [0.90184278255778, 48.373449772268], - [0.9149193773197, 48.374324097325], - [0.93117784919562, 48.391265934635], - [0.94224603424783, 48.399004844657], - [0.9482686361643, 48.417831978233], - [0.9762713097259, 48.439081867809], - [0.95840880937073, 48.44259696324], - [0.94226766472979, 48.457733974776], - [0.93571270291242, 48.475553807957], - [0.95629262450835, 48.482279378048], - [0.95436935096035, 48.490573966149], - [0.94155894503993, 48.498694713572], - [0.9540037271624, 48.503840229688], - [0.96655146260943, 48.522741687979], - [0.95341814083771, 48.526244433476], - [0.922603461355, 48.537716017396], - [0.93876307137649, 48.550558547099], - [0.92638981194521, 48.559394233279], - [0.89126612131175, 48.572177428167], - [0.86767573670944, 48.573488250275], - [0.85063536439017, 48.582625709205], - [0.8465873876382, 48.604782622076], - [0.83304661425976, 48.61077016626], - [0.81963618816719, 48.609871113214], - [0.81775390390063, 48.616320066598], - [0.83140562696703, 48.633774446005], - [0.8226824397504, 48.640053608418], - [0.82392074530028, 48.650041826767], - [0.81294886563427, 48.660510127486], - [0.8148247207739, 48.670163564137] - ] - ] - }, - "properties": { - "code": "24", - "name": "Centre-Val de Loire", - "ISOCODE": "FR-CVL" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.9405416785725, 47.433371743667], - [6.9416788459902, 47.415801742321], - [6.9383781843469, 47.40602166291], - [6.9175655645227, 47.405540786123], - [6.9112807218549, 47.38565149684], - [6.8853957543304, 47.374599512338], - [6.879373150364, 47.358392623936], - [6.8841847374511, 47.3526166115], - [6.9041310992201, 47.359488916109], - [6.9173061224044, 47.356174450746], - [6.9518221878337, 47.359328514583], - [6.965171933991, 47.359200577804], - [6.9832539854825, 47.36354366283], - [6.9942194881531, 47.36305702277], - [7.0161749063041, 47.371834506375], - [7.0497154850674, 47.360716488473], - [7.0522936553288, 47.351141950572], - [7.0622006908671, 47.344160388368], - [7.0567509457312, 47.334567036162], - [7.046205749818, 47.326977520793], - [7.0305707210719, 47.327027697793], - [7.0097278540447, 47.324358772262], - [7.0161408458867, 47.313601433148], - [7.0096883964596, 47.303186330915], - [6.9931211498575, 47.295543502651], - [6.9812664414026, 47.295770810067], - [6.9665305332962, 47.292330424797], - [6.9535590397913, 47.292421856494], - [6.9428919076225, 47.287757217086], - [6.9514761981406, 47.262184061527], - [6.9494136431571, 47.256679318602], - [6.9549768276348, 47.242939913873], - [6.92627289824, 47.224555534793], - [6.882438308572, 47.201615407729], - [6.8639146913869, 47.180098699893], - [6.842629723754, 47.172148165798], - [6.8448535375183, 47.166384939791], - [6.8583444229594, 47.164385451371], - [6.8397865674492, 47.150904795437], - [6.8285734250859, 47.146341618703], - [6.8065486361803, 47.130890441394], - [6.7637802260904, 47.11979466278], - [6.7399139141665, 47.108051829732], - [6.7456764991255, 47.100307622017], - [6.741092234341, 47.091067967613], - [6.7178304547913, 47.088938283348], - [6.7072576746821, 47.083033793266], - [6.7060095703295, 47.074995419181], - [6.6916197499771, 47.06668927851], - [6.7110513317725, 47.054327711875], - [6.7140545270618, 47.049123354928], - [6.6996564781858, 47.039039389615], - [6.6784719863524, 47.035382104925], - [6.6616206647392, 47.028224476267], - [6.6535911062238, 47.021768824963], - [6.6403417206763, 47.002761124116], - [6.6186789138725, 46.992038806738], - [6.5931797938133, 46.991770812154], - [6.5665618384639, 46.980637338846], - [6.5402076242225, 46.974399049863], - [6.5188066665015, 46.970856252967], - [6.5052194745754, 46.965849252067], - [6.4966857222781, 46.974183469608], - [6.4751246015727, 46.959379453348], - [6.4553435306172, 46.940428600583], - [6.4326749210724, 46.928605526908], - [6.4579026529923, 46.900855622932], - [6.4645775075825, 46.890210535442], - [6.4598785157573, 46.851147058563], - [6.4423415130938, 46.83123675481], - [6.4401683842133, 46.819062942975], - [6.4310019605487, 46.812409973106], - [6.4382925253712, 46.799581903269], - [6.4586515580207, 46.788759687976], - [6.4381050836181, 46.76175121989], - [6.425911183574, 46.754801119874], - [6.3950745702138, 46.748243117811], - [6.389642803755, 46.735238377227], - [6.3716294362082, 46.7247505128], - [6.360238313501, 46.72308030451], - [6.3448015815423, 46.711867719342], - [6.3154917743371, 46.702442903244], - [6.2993568333135, 46.694896443468], - [6.2853255009979, 46.691242033962], - [6.2704880921381, 46.683194022336], - [6.2691722926715, 46.678150632899], - [6.241610701122, 46.660314779707], - [6.2087769308549, 46.636617811577], - [6.1849170570186, 46.622901021419], - [6.1755349630813, 46.614142709958], - [6.1644651641931, 46.610011824492], - [6.1273332783823, 46.590310133888], - [6.1107441527986, 46.576314209592], - [6.138105886557, 46.557659570871], - [6.1564422357855, 46.545471592105], - [6.1528479944668, 46.536134657174], - [6.1446024516564, 46.528393629454], - [6.1378590985632, 46.530871419262], - [6.1126938080715, 46.509641497594], - [6.0968277794178, 46.481208813072], - [6.0739298928675, 46.463949535302], - [6.0744598322778, 46.453664090185], - [6.0843910990454, 46.447437001059], - [6.0858348949625, 46.440994445768], - [6.0747681070246, 46.431630995903], - [6.064005627331, 46.416222559892], - [6.0551820813125, 46.414801045991], - [6.0480752195777, 46.405125490757], - [6.0295137846375, 46.38681604791], - [6.0106565375389, 46.374508650286], - [5.9868463201736, 46.364869353266], - [5.9729173069373, 46.346856233903], - [5.9535602724875, 46.326531457174], - [5.9414094008927, 46.309446510031], - [5.9259040835744, 46.313765646046], - [5.9185184907402, 46.307199659115], - [5.9089357776791, 46.283950786541], - [5.8946251190123, 46.286607913138], - [5.8791206347196, 46.269936490689], - [5.8702488945181, 46.265305590806], - [5.8643332109856, 46.271208875005], - [5.8498475590074, 46.262067170418], - [5.8212837267024, 46.262094109034], - [5.7656471814788, 46.268294754652], - [5.7459179055539, 46.266368533117], - [5.7251818400017, 46.260731935709], - [5.720112401844, 46.265870062788], - [5.7160491956243, 46.279915646538], - [5.7192939761881, 46.293462363342], - [5.714721806193, 46.308772354673], - [5.6845768021754, 46.310927537001], - [5.6833466019044, 46.316276892818], - [5.6684418272398, 46.324369189279], - [5.6529045876259, 46.323214774673], - [5.6493445080392, 46.339494512081], - [5.6419584041921, 46.342028332374], - [5.6305151249665, 46.330204693001], - [5.6176441912887, 46.329091983869], - [5.610460815624, 46.324211378495], - [5.59838931795, 46.298445925032], - [5.5855011829326, 46.292557783319], - [5.5663641424008, 46.294050213862], - [5.5581274576637, 46.282173642648], - [5.5420340189851, 46.270203795698], - [5.5129432911698, 46.264539612518], - [5.4995891133957, 46.268200455579], - [5.4730515403718, 46.265066548043], - [5.4568426743662, 46.274473574235], - [5.4595129521644, 46.290471994825], - [5.4674037740958, 46.295566233017], - [5.4753005499335, 46.315382606424], - [5.4669175767252, 46.323267248222], - [5.4377949533958, 46.315109371064], - [5.4278984240109, 46.342210714821], - [5.4170861726833, 46.339534237431], - [5.4102335548466, 46.30910668308], - [5.4046508439018, 46.310338173994], - [5.4042931339536, 46.332813029221], - [5.3992759574473, 46.339521371463], - [5.3819165667023, 46.345255630996], - [5.3734648101425, 46.352234450451], - [5.3770544086974, 46.364113395825], - [5.362996992744, 46.370926983475], - [5.3770431289975, 46.381355482485], - [5.3552221284773, 46.39375452396], - [5.3525084400185, 46.397586033829], - [5.331272401231, 46.399499315198], - [5.3147703161373, 46.40947618293], - [5.3076872001929, 46.416819197974], - [5.308978572395, 46.424532251303], - [5.3194882695109, 46.430803499916], - [5.3105633704742, 46.446769968334], - [5.2759250637615, 46.4481213263], - [5.2545935888787, 46.454117831184], - [5.2468319237306, 46.459403653865], - [5.2350290009581, 46.457948870166], - [5.2255477233319, 46.468273543404], - [5.2150628404089, 46.468359298393], - [5.2130427939332, 46.481261974235], - [5.2066353369633, 46.48639795185], - [5.2011399666188, 46.508211405762], - [5.1815968667213, 46.509758803783], - [5.1667923612572, 46.514674866375], - [5.1664495124354, 46.505590616989], - [5.141950046447, 46.508357328146], - [5.1152051358154, 46.494069043579], - [5.10737201939, 46.491919458253], - [5.0989387475854, 46.497166675779], - [5.0700061667722, 46.485667291269], - [5.0523715346281, 46.484873791529], - [5.0141793460298, 46.500587565063], - [5.011007749262, 46.510294840159], - [4.9835496952255, 46.515392507897], - [4.9645994700407, 46.513175985923], - [4.9491021767105, 46.501380502462], - [4.9400218107181, 46.517199374492], - [4.9314208893674, 46.509211481378], - [4.9257189717408, 46.497441604339], - [4.9155507621799, 46.488939443669], - [4.9157805036687, 46.465413333501], - [4.9111172894635, 46.457732635494], - [4.8992958191725, 46.450123277325], - [4.8918151434404, 46.439918009678], - [4.8882101486247, 46.402977057782], - [4.873839273104, 46.384668143424], - [4.8585287407096, 46.368018459572], - [4.8514544831808, 46.356271094403], - [4.8534210199043, 46.32990123356], - [4.8332136171616, 46.300145048773], - [4.8259515552341, 46.274785814873], - [4.8109975376095, 46.259923276174], - [4.8115552603184, 46.249932664612], - [4.8077505003904, 46.236972415214], - [4.7945859355866, 46.218311767171], - [4.7933904888672, 46.204700104778], - [4.7802430578135, 46.189052363162], - [4.7802082627383, 46.176676203678], - [4.7608053446831, 46.175968780182], - [4.7597597705914, 46.172840600415], - [4.7305257874621, 46.178368585861], - [4.7243706747794, 46.184304976244], - [4.72266470068, 46.202320489849], - [4.7356928657613, 46.211923783014], - [4.7206237625559, 46.222390986056], - [4.7326605831699, 46.227019799221], - [4.7357666167041, 46.234244688808], - [4.7028290155173, 46.251330439429], - [4.6883618181605, 46.25011389523], - [4.6795502516132, 46.258666565339], - [4.6878811178807, 46.265311972919], - [4.7076872577415, 46.269647917424], - [4.7075411259083, 46.284660070276], - [4.694515991108, 46.292672565821], - [4.6931098569714, 46.302197476983], - [4.6794340760587, 46.303994122044], - [4.6693820675804, 46.297910092985], - [4.6546591822967, 46.303484822155], - [4.6352614072065, 46.299289507242], - [4.6314517777677, 46.289015276562], - [4.6183224944202, 46.282440402941], - [4.6220235259619, 46.270079226484], - [4.6185580580588, 46.264793895574], - [4.5865068000033, 46.268694622582], - [4.5726687726239, 46.277139335718], - [4.5698487572768, 46.293352201901], - [4.5577956308141, 46.294551640092], - [4.5480762222411, 46.282864938182], - [4.5464477974735, 46.27391839397], - [4.5372643385622, 46.269911483268], - [4.5039940949336, 46.267132463094], - [4.488465816487, 46.287994462282], - [4.4765696377244, 46.284237867232], - [4.4583704273073, 46.296976724079], - [4.4397213287914, 46.293184568466], - [4.4272337977412, 46.302730717527], - [4.4218715520166, 46.294954263085], - [4.4058135314858, 46.296057806589], - [4.3920466116785, 46.263026545141], - [4.388291015925, 46.247956431405], - [4.3880744564659, 46.219790380732], - [4.3893979878582, 46.213601360996], - [4.3774743279046, 46.21020246009], - [4.3631781812533, 46.200537276046], - [4.3706868166882, 46.191620039558], - [4.3648481141165, 46.183579311067], - [4.3450682105084, 46.187441862916], - [4.3357117653558, 46.181398292861], - [4.3270887031684, 46.184790131282], - [4.3157416420975, 46.172029804364], - [4.3035807058325, 46.17426655994], - [4.2952828837852, 46.172250410112], - [4.2824944900944, 46.156946471815], - [4.2520302327293, 46.157916681311], - [4.2518988744775, 46.167097935374], - [4.2610250986037, 46.178754364444], - [4.2525000565082, 46.187922148658], - [4.2423584224526, 46.188830459357], - [4.2335294499164, 46.180026926884], - [4.2246872961743, 46.177995338767], - [4.207903434232, 46.194833150686], - [4.1854551738783, 46.190162130834], - [4.1884438149961, 46.175128955988], - [4.1660889760454, 46.172928033288], - [4.1324158349304, 46.177826358374], - [4.1040867377072, 46.198391359055], - [4.0908839436933, 46.192837097346], - [4.0716672927165, 46.18807123789], - [4.0614051962048, 46.188789802443], - [4.051960198465, 46.181690186415], - [4.0308840440337, 46.171882539683], - [3.9887880883959, 46.169805261207], - [3.9817823975359, 46.17634098728], - [3.9728332574833, 46.193862543845], - [3.9725466394127, 46.202707514639], - [3.933514918779, 46.206414377073], - [3.9179891232598, 46.202853033545], - [3.9135693350409, 46.206918558033], - [3.890130972164, 46.214487049905], - [3.8981917464837, 46.226659321125], - [3.8966112073781, 46.2371189424], - [3.9076581109201, 46.242456213516], - [3.908821904601, 46.260346940334], - [3.9055127902449, 46.271596707683], - [3.899538631706, 46.275908099459], - [3.8912386850317, 46.28524616424], - [3.8974208259956, 46.291460834216], - [3.9135709840696, 46.296680727045], - [3.9300977722843, 46.295820251472], - [3.942781911555, 46.298925500612], - [3.9477193967384, 46.303444864233], - [3.9481286581435, 46.31979164002], - [3.9866271252361, 46.319195576966], - [3.9974052217542, 46.323291087799], - [3.9847410554074, 46.32973022678], - [3.9886640376734, 46.360561403255], - [3.9916043062641, 46.369630419679], - [3.9842615206377, 46.378286038678], - [3.9772206054151, 46.399220047306], - [3.9886970251491, 46.408772224942], - [3.9844480228975, 46.416663389961], - [3.9956151474212, 46.4286940195], - [3.9881422985694, 46.435461575775], - [4.0055701432229, 46.443531306791], - [3.997444424826, 46.450264670788], - [4.0015415164833, 46.458618151559], - [3.9980402829299, 46.465463980924], - [3.9730562040646, 46.477457398934], - [3.9565931687991, 46.47688226209], - [3.9520867242123, 46.481423383561], - [3.9579376111726, 46.489753821104], - [3.9496133283036, 46.492478893726], - [3.9375764836594, 46.49076190287], - [3.9189702450008, 46.496061208045], - [3.9013529089878, 46.490636303507], - [3.896985633842, 46.481471942919], - [3.8904665810402, 46.481246458453], - [3.8649127119961, 46.489736338385], - [3.860387224324, 46.495601253328], - [3.8646271424558, 46.509717077517], - [3.8600251576626, 46.515222323315], - [3.8494709455035, 46.513023833485], - [3.8397556873666, 46.517562051932], - [3.8464630176371, 46.524356398489], - [3.8340033360184, 46.531134997034], - [3.8176755382384, 46.525229454055], - [3.8113440515561, 46.520138117834], - [3.8017563839321, 46.519902255804], - [3.7878963661806, 46.528042650186], - [3.7656008328403, 46.537908481562], - [3.7546629110025, 46.536019887064], - [3.7418443310505, 46.539508443385], - [3.73154117491, 46.549578224034], - [3.7406549316466, 46.559049395025], - [3.7432893129951, 46.567565263244], - [3.7323776901235, 46.604907119963], - [3.7176467323502, 46.605806262315], - [3.7138737202882, 46.613995279712], - [3.7230250098493, 46.622072726143], - [3.7227091007956, 46.627609885471], - [3.7121523238188, 46.633631635674], - [3.699679505, 46.651867135799], - [3.6969575528098, 46.660583034448], - [3.6801004977635, 46.66852089269], - [3.6554716665381, 46.687748401639], - [3.6513931816228, 46.70282167235], - [3.637895263919, 46.707205199291], - [3.6381391050479, 46.722723829214], - [3.6353341554133, 46.728514790806], - [3.6225898833129, 46.740130866568], - [3.6294223422648, 46.749456328005], - [3.6201072037828, 46.754059565827], - [3.6020398798222, 46.751247280578], - [3.5977490685569, 46.76202889412], - [3.5910525816638, 46.762426406979], - [3.5806709648764, 46.752741235279], - [3.5845515939144, 46.739382605418], - [3.5971876767747, 46.728401657187], - [3.598000652576, 46.723983498355], - [3.5773137335153, 46.714852724197], - [3.5503869458917, 46.715861095646], - [3.548207507912, 46.706166654281], - [3.5555591963708, 46.695741177165], - [3.5543959772727, 46.684731744078], - [3.5464728563281, 46.678292894912], - [3.5300363962253, 46.688813284083], - [3.5174930194471, 46.683185185586], - [3.4871533162964, 46.658256156349], - [3.4865354798384, 46.65380880583], - [3.4572892729042, 46.651760006926], - [3.4473385862025, 46.663554460402], - [3.4535963621348, 46.681987883569], - [3.4513122938683, 46.689900877873], - [3.4329783660003, 46.693340026098], - [3.4295672938027, 46.702504791218], - [3.4341396009475, 46.711907843672], - [3.4074108289121, 46.711510582242], - [3.3877581200663, 46.714818365449], - [3.3787310431309, 46.71134766179], - [3.3754269760827, 46.699410803841], - [3.3664449691016, 46.691259477216], - [3.3467035850706, 46.684418162056], - [3.3139651835149, 46.688751611332], - [3.2988329664362, 46.713590484885], - [3.2697959512206, 46.71674181988], - [3.2551640362648, 46.706289026218], - [3.2330363473519, 46.697017662903], - [3.2155446436111, 46.682892755029], - [3.1972601846791, 46.679928148065], - [3.1631524413883, 46.693541123032], - [3.1297797354937, 46.727201530755], - [3.0839336875931, 46.737632194007], - [3.0610780913415, 46.749849808096], - [3.0490666680714, 46.758080742151], - [3.0361449719957, 46.776351034743], - [3.0368385012729, 46.784399457513], - [3.0320629441459, 46.794909389217], - [3.0374707304721, 46.807786953663], - [3.0593510744061, 46.827263935532], - [3.0545889127264, 46.838765097797], - [3.0671018851119, 46.847818120893], - [3.0680961068914, 46.877680332057], - [3.0609590858964, 46.898148846497], - [3.0514016137092, 46.904955777225], - [3.0502954877584, 46.910631265703], - [3.062210755789, 46.927739529848], - [3.0648978058646, 46.937079267447], - [3.0793324170792, 46.955115150499], - [3.0717062160523, 46.964340639457], - [3.0629299477088, 46.981085018578], - [3.0655821306108, 46.997351832387], - [3.0757442612943, 47.019148176465], - [3.0748375004401, 47.029815006019], - [3.0627453140392, 47.04527634615], - [3.034525000237, 47.056291089581], - [3.0232191913817, 47.062612371142], - [3.0187160021753, 47.070780884737], - [3.0211804845643, 47.078232382085], - [3.0313737475376, 47.092475725697], - [3.0280905152523, 47.129064982977], - [3.0211980869457, 47.136438093682], - [3.0159484799111, 47.159093918463], - [3.0092852008476, 47.179914660937], - [2.9972827962038, 47.20166393803], - [2.9816886133559, 47.221993356801], - [2.9779552353597, 47.235552508643], - [2.9834001334309, 47.259765880582], - [2.9739389096142, 47.269804660206], - [2.9378619912637, 47.287719383722], - [2.9264805753113, 47.298618271978], - [2.907768482234, 47.310991294935], - [2.8848764388062, 47.316364164149], - [2.8765423657559, 47.321934350315], - [2.8699481463917, 47.338248316569], - [2.8734919391537, 47.348396860493], - [2.8952492319567, 47.372177057081], - [2.9008159931543, 47.385192680229], - [2.9184549974743, 47.405524882196], - [2.9198859465078, 47.42134952529], - [2.930733371753, 47.431324302158], - [2.9288970093188, 47.444564932191], - [2.9209883066832, 47.455435821811], - [2.9140606551793, 47.470896834824], - [2.8980184987491, 47.485252401408], - [2.8884586332585, 47.50943098545], - [2.8746305174837, 47.520424918568], - [2.8489012329621, 47.53754134151], - [2.8451871650071, 47.544932948997], - [2.8574859883322, 47.552839253284], - [2.8661248696402, 47.546368484983], - [2.8738950692802, 47.55280954087], - [2.8907714985755, 47.553102008094], - [2.9093721909559, 47.559160555497], - [2.9142961197082, 47.565971982014], - [2.9586515837228, 47.55737826151], - [2.9643142632036, 47.564408371297], - [2.9765353538906, 47.569424295927], - [2.9622680864494, 47.576787199846], - [2.9644517577136, 47.581632358212], - [2.954982923175, 47.590408879602], - [2.9480691732296, 47.590534725553], - [2.9379937136807, 47.598885605034], - [2.9452166853722, 47.608449329011], - [2.9357687458876, 47.619831796752], - [2.9362905168585, 47.636648702788], - [2.9542289513333, 47.64577418642], - [2.9369444627222, 47.659131595543], - [2.926238261078, 47.660085723292], - [2.9181562549963, 47.669794968987], - [2.9231151407358, 47.680558801908], - [2.9037123946566, 47.695095946597], - [2.8829409210413, 47.702615088236], - [2.8841930930896, 47.714211876689], - [2.8765799552305, 47.719081526808], - [2.8585167014012, 47.711991090287], - [2.8489690050712, 47.716844895991], - [2.8487899744432, 47.725884864654], - [2.8581457165416, 47.745650029901], - [2.8566700654285, 47.760929175798], - [2.8701769520741, 47.764868196886], - [2.893986958474, 47.764757164259], - [2.9093762293739, 47.769314365231], - [2.9350564314568, 47.763249875579], - [2.988226602321, 47.78603448946], - [3.0237994278176, 47.786550178612], - [3.0281204473987, 47.800645366032], - [3.0229373322912, 47.812772400995], - [3.0154699273932, 47.813535934414], - [3.0125313015817, 47.834373232486], - [3.0310783842835, 47.837952684286], - [3.0338278605646, 47.843872107669], - [3.0241574870815, 47.860432544378], - [3.0053590366439, 47.864049253797], - [3.0020156817175, 47.86910456894], - [3.0113128689564, 47.874942218413], - [3.0072263096695, 47.895290955742], - [3.0102886119028, 47.904716972369], - [3.0251429746145, 47.905395103831], - [3.0369085970173, 47.910046599044], - [3.0501029428736, 47.911450149596], - [3.049851715745, 47.917612271733], - [3.0646126208988, 47.930516710244], - [3.0784762596905, 47.93141901745], - [3.0813886854655, 47.938303435109], - [3.0959562152001, 47.94648282966], - [3.1052652915151, 47.946939230434], - [3.1177801945629, 47.964978280792], - [3.1284487900515, 47.970976841524], - [3.1215086124269, 47.99508051279], - [3.1245523220345, 48.006031052733], - [3.1154271480689, 48.012966036779], - [3.1040912941224, 48.013541749122], - [3.1031098748357, 48.024050754331], - [3.120444753158, 48.027237026667], - [3.1242571374888, 48.031123310866], - [3.0973362166793, 48.039371853532], - [3.0883164489307, 48.053931896432], - [3.0668426687001, 48.062700948945], - [3.0504714242752, 48.072334131135], - [3.0498894899541, 48.088838788782], - [3.0383144426538, 48.101542780839], - [3.035285259367, 48.115994375619], - [3.0158768007648, 48.115703437492], - [3.0294681734995, 48.133204471839], - [3.0067845221623, 48.145250368304], - [2.9939835469666, 48.142265686487], - [2.9908854951697, 48.152489288025], - [2.9636115856187, 48.152952836191], - [2.9532706975673, 48.165012141792], - [2.9363157566366, 48.163391744884], - [2.9347445709406, 48.178820824383], - [2.9507427471906, 48.190202971569], - [2.9695465243882, 48.193835497978], - [2.9744704228122, 48.205550154363], - [2.9889655342085, 48.209014778073], - [3.0051596957479, 48.207665501246], - [3.0189243879447, 48.231774581507], - [3.0185660113854, 48.235192866522], - [3.0314619630164, 48.248879164003], - [3.047565503762, 48.249696163103], - [3.0436326434308, 48.272020556142], - [3.0249639004196, 48.27600913901], - [3.0297705668286, 48.285841287403], - [3.0204148507047, 48.293439730003], - [3.0272557445779, 48.300368070976], - [3.0158983096866, 48.307897241414], - [3.0365741164856, 48.326028248436], - [3.0374902381586, 48.343151149375], - [3.0495229427782, 48.360116755131], - [3.0605482162395, 48.357442256262], - [3.0878411046476, 48.358744110403], - [3.1034153439925, 48.349510589018], - [3.1182555596676, 48.366787852825], - [3.1398647131279, 48.372599662445], - [3.1677335139977, 48.371858146235], - [3.1796714598679, 48.375720974057], - [3.184946555144, 48.368130335436], - [3.2018505500023, 48.364015470529], - [3.2328491246009, 48.370332895515], - [3.254386262298, 48.36502005161], - [3.2647767822592, 48.374621237382], - [3.2823921646024, 48.377519839785], - [3.3051586355523, 48.372876819681], - [3.3093216217612, 48.376980286994], - [3.3301099431753, 48.372120787109], - [3.3651606301927, 48.372282482296], - [3.3627847824483, 48.382576787133], - [3.3672130286667, 48.394317453742], - [3.3833174045242, 48.39970411104], - [3.4020328168494, 48.389706108674], - [3.4147888224632, 48.390268550005], - [3.4132728603068, 48.376300840268], - [3.4216806196631, 48.371727783356], - [3.4275090718968, 48.35997574793], - [3.4432494908564, 48.367382718502], - [3.4525885512991, 48.374388436099], - [3.4704759274371, 48.374667861079], - [3.4748808608132, 48.369266510477], - [3.4981541228456, 48.369098088724], - [3.512139360519, 48.360812483948], - [3.530465379844, 48.342613415975], - [3.5451019683919, 48.334543016882], - [3.5440725252239, 48.319671593536], - [3.5634067310877, 48.321440919656], - [3.566569257901, 48.307425850859], - [3.5879641370453, 48.300806415009], - [3.5857412014087, 48.29008425533], - [3.5777963307254, 48.284593393925], - [3.5881978504359, 48.280068510017], - [3.6117709302505, 48.274410870011], - [3.6168016799253, 48.271343511852], - [3.6243226631674, 48.254526756748], - [3.6138531799397, 48.24927733618], - [3.6000799784034, 48.237038015917], - [3.6046865808402, 48.229884548214], - [3.6136268888051, 48.232260725333], - [3.6216106602921, 48.225744034142], - [3.6140713717985, 48.220115584573], - [3.6111516430878, 48.21192986819], - [3.6009970264951, 48.20380086628], - [3.5751823496995, 48.188742267274], - [3.5941772424762, 48.178873395497], - [3.6195451473546, 48.190784507919], - [3.6318850111199, 48.189390079748], - [3.6414996909345, 48.183932963824], - [3.6506538178638, 48.168228410946], - [3.6595795108361, 48.15965193897], - [3.6678669028091, 48.139211019047], - [3.6887554871535, 48.144278615274], - [3.6936218940592, 48.14799982015], - [3.7050157631116, 48.144314849936], - [3.7223449458636, 48.156837755739], - [3.7141712164177, 48.170603029762], - [3.7184640557735, 48.175364157847], - [3.74029665141, 48.169709598744], - [3.7519004546533, 48.161296410098], - [3.7548293235379, 48.150244530897], - [3.7398043096241, 48.138688236138], - [3.7397131881194, 48.13275416124], - [3.7569100878728, 48.125307470037], - [3.7680208404533, 48.1337610774], - [3.7768827441699, 48.124996720039], - [3.8049696872895, 48.102546851574], - [3.7999733080105, 48.096695524271], - [3.7985814686078, 48.086366869837], - [3.8067979988969, 48.083861354137], - [3.8201608894357, 48.067459938552], - [3.82635868236, 48.063603655356], - [3.827059329799, 48.047441428512], - [3.8219783557759, 48.043916868834], - [3.8321550263001, 48.036232814814], - [3.8425469054526, 48.036189501683], - [3.850085900943, 48.02786301681], - [3.8706144760895, 48.015633804416], - [3.8700007142194, 48.002599720655], - [3.8619707432349, 48.004325555172], - [3.8398152772889, 48.003890008543], - [3.8500279607807, 47.983791517043], - [3.8643090405558, 47.98423551782], - [3.8618055931881, 47.976443001861], - [3.8783021550775, 47.979419574124], - [3.885413743137, 48.00032841816], - [3.9001846571879, 47.997906103474], - [3.9146958839434, 47.975696995879], - [3.9056151344907, 47.956390517208], - [3.9020918728463, 47.939168233154], - [3.8940363766278, 47.929291041133], - [3.9124676793978, 47.930259049768], - [3.9264502525997, 47.934566873068], - [3.9403268061141, 47.933140821871], - [3.9565980726161, 47.934513395738], - [3.9859571275878, 47.930640025592], - [4.0055897042792, 47.942010075901], - [4.0122015583229, 47.933099817884], - [4.0256492301283, 47.928321965076], - [4.0315462267821, 47.933180877458], - [4.0435079889664, 47.928107993449], - [4.0540462390611, 47.92948006618], - [4.0563117031209, 47.941500284277], - [4.0612633895691, 47.945564277098], - [4.0779088672194, 47.942844108199], - [4.0929746686253, 47.942978558738], - [4.091392975551, 47.929644880288], - [4.111781787339, 47.926998395128], - [4.129354902453, 47.936039992343], - [4.1418393873722, 47.937107385043], - [4.1459926719811, 47.947950206748], - [4.1663202417186, 47.959799899508], - [4.1814937489139, 47.957133674703], - [4.185174863551, 47.953252557601], - [4.185389386493, 47.940250187972], - [4.201887052952, 47.94115816132], - [4.2078363901654, 47.946594650302], - [4.1991540335482, 47.96994144352], - [4.2127809206222, 47.971725942982], - [4.2284618067273, 47.969156456849], - [4.2221403072235, 47.949693241055], - [4.2362857449326, 47.940458371541], - [4.2481126500816, 47.929257212053], - [4.265592811732, 47.924112631788], - [4.293421363566, 47.925673564836], - [4.3019415557721, 47.939722254759], - [4.2989694743195, 47.948924996538], - [4.3090008707807, 47.961170613198], - [4.3512833685724, 47.956581571066], - [4.3984909856202, 47.963428889937], - [4.414350314367, 47.968207562341], - [4.4275882888072, 47.965925181567], - [4.4394035883612, 47.958224025114], - [4.4490036624777, 47.957151982179], - [4.482135195437, 47.963341049725], - [4.4908013666212, 47.967274674022], - [4.515002575681, 47.966197509296], - [4.5315674205603, 47.969936101313], - [4.5533088051577, 47.967682340931], - [4.5599635426905, 47.971424167131], - [4.5552078832713, 47.985773515235], - [4.5455985119462, 47.98829443758], - [4.5358174351871, 48.001208262], - [4.5494258066747, 48.004460028844], - [4.554850985404, 48.012319062721], - [4.5673230090597, 48.018739473733], - [4.5718848731394, 48.025129476681], - [4.5826732520974, 48.029462774305], - [4.612404633886, 48.030241950581], - [4.624062923698, 48.025381425202], - [4.6396252873332, 48.025481582141], - [4.6633228351061, 48.020020302718], - [4.6732270680042, 48.015055346449], - [4.6985527278028, 48.023678273472], - [4.7042329730873, 48.020235152969], - [4.7199460898645, 48.008895516311], - [4.7492966391968, 48.004246587867], - [4.7890783024494, 48.007828564444], - [4.7932639090855, 47.996944239514], - [4.8091903248533, 47.990087845923], - [4.7946342537178, 47.983195170106], - [4.7865152517638, 47.964201285162], - [4.8194243190699, 47.960358692838], - [4.8410086317455, 47.96075264808], - [4.8520473231564, 47.956242158653], - [4.8660942377505, 47.940508774674], - [4.8501722212977, 47.929537855578], - [4.8467200449818, 47.924483556015], - [4.8289423070305, 47.915124211024], - [4.8340343917843, 47.906781834116], - [4.8569990661674, 47.89585146766], - [4.8693396784934, 47.917449806377], - [4.8944964422884, 47.922840464291], - [4.9018509649222, 47.921284863427], - [4.9190920876169, 47.894720464516], - [4.9281731599986, 47.88687190538], - [4.9282357147154, 47.871123778488], - [4.9540995648128, 47.866767159307], - [4.9603856383733, 47.857358065698], - [4.9622497289156, 47.839702282837], - [4.968346106104, 47.831938726344], - [4.9846956660801, 47.828868610045], - [4.9941266376295, 47.819746154602], - [4.9906198706093, 47.80709265473], - [4.9824009031204, 47.800350982387], - [4.9635761932156, 47.795106816319], - [4.9564491304036, 47.790048428128], - [4.9183050956308, 47.777311690703], - [4.9177846968097, 47.766614764213], - [4.9307398007716, 47.761333148797], - [4.9496050950308, 47.765006218324], - [4.9589919593761, 47.761870409828], - [4.9598932138082, 47.7544709258], - [4.9707033208711, 47.727636116595], - [4.9570644317617, 47.709406346338], - [4.9541385723681, 47.701462932734], - [4.9791098413952, 47.687763691185], - [4.9922739605095, 47.688315326064], - [5.0043602413418, 47.700727315079], - [5.0262670139789, 47.709492979045], - [5.0327622841789, 47.704076235268], - [5.0327945086565, 47.692333079799], - [5.0606448449781, 47.694789812394], - [5.0435832118687, 47.676513563124], - [5.0578872394562, 47.668305887057], - [5.0703648554737, 47.666753831482], - [5.0849169001544, 47.657252517205], - [5.1017263997014, 47.659487818247], - [5.1088743414175, 47.649687715835], - [5.133419901405, 47.650731358395], - [5.1562768819218, 47.668257175471], - [5.1613411137784, 47.679935696643], - [5.1793190058471, 47.679306571337], - [5.173772704787, 47.661555338996], - [5.1735955223689, 47.652564238401], - [5.1885815533539, 47.6495597478], - [5.2153019734879, 47.638776585158], - [5.2275663747918, 47.630461719186], - [5.2392323119847, 47.616130998734], - [5.2505435136739, 47.622148375054], - [5.2586017166912, 47.622216096373], - [5.243335051832, 47.603257395562], - [5.2395818018336, 47.595735741686], - [5.248821805001, 47.588304655805], - [5.2529216592041, 47.576950536437], - [5.2779061705699, 47.581361382365], - [5.2787977512377, 47.590248985309], - [5.2948617680378, 47.599202098387], - [5.2998385942923, 47.604925842894], - [5.3223487268523, 47.612359526718], - [5.3399999375357, 47.609069594411], - [5.3421656596273, 47.597942682873], - [5.3547654342374, 47.591360294209], - [5.3706351264232, 47.604807955246], - [5.3740797661661, 47.604538026913], - [5.3727580571009, 47.618659790315], - [5.3868465136168, 47.635662494107], - [5.4055917713039, 47.647770719631], - [5.3984746606309, 47.649083223607], - [5.406340329799, 47.673403498326], - [5.4265210893308, 47.675523872509], - [5.4357130635739, 47.670913872806], - [5.4460337073379, 47.670773959543], - [5.4725699801331, 47.67672271053], - [5.482566377733, 47.684598405046], - [5.5167714113012, 47.673665697151], - [5.529779465589, 47.672825610683], - [5.5429630425056, 47.685875666578], - [5.5672035170122, 47.705232598617], - [5.580075717534, 47.703119392386], - [5.5966797529575, 47.671689689304], - [5.6060928986115, 47.675206717975], - [5.616916763571, 47.673506825098], - [5.6350433227815, 47.676729768703], - [5.6534107674437, 47.677377804161], - [5.6602009774384, 47.684701035958], - [5.6900715815111, 47.684834261118], - [5.6946315676577, 47.691589089204], - [5.6934923219824, 47.703700407172], - [5.6841172724944, 47.711966308717], - [5.6848345035363, 47.722252488703], - [5.6933389025912, 47.737536114776], - [5.7092157661502, 47.744819092275], - [5.7061546847262, 47.752289930468], - [5.7092177964874, 47.763723848917], - [5.7050877892064, 47.769109267163], - [5.6799723393154, 47.76996692113], - [5.6766127410923, 47.77915552638], - [5.6816907857215, 47.801918539863], - [5.6902845680034, 47.818602061169], - [5.7038164823427, 47.822615914257], - [5.7326324521832, 47.817595239681], - [5.7460508220444, 47.823594453292], - [5.7441242763236, 47.848675592832], - [5.7534185985443, 47.851779809209], - [5.7611967718111, 47.859337964072], - [5.7981943193063, 47.852395843864], - [5.8053544944686, 47.8473671425], - [5.8279856830918, 47.851868490955], - [5.8214368328201, 47.868177826395], - [5.8366827972636, 47.885275579155], - [5.8483941586096, 47.904328585027], - [5.8699685694528, 47.900702448936], - [5.8864978594033, 47.902632285568], - [5.8908642780035, 47.910826243984], - [5.884723650121, 47.92604631497], - [5.8967125895793, 47.93202806731], - [5.892904334004, 47.937140708276], - [5.9001165275304, 47.9447526196], - [5.9180463526732, 47.94735518647], - [5.9217138598918, 47.970783700094], - [5.9367445426717, 47.978874239655], - [5.9475278158692, 47.979712022025], - [5.9595125543651, 47.965838580885], - [5.9377200582568, 47.950937203984], - [5.9296518654303, 47.938718128621], - [5.953718196208, 47.937030199568], - [5.9689005966348, 47.947407535025], - [5.9707820414319, 47.957206856313], - [5.9965110271696, 47.957642319673], - [6.0022660129604, 47.956088697125], - [6.0099778425991, 47.968676110152], - [6.0235129876577, 47.978198192556], - [6.01816748796, 47.984218151119], - [6.0269197055122, 47.990054024535], - [6.0411765157853, 48.00442320835], - [6.0725586040075, 48.015669051022], - [6.0809347681235, 48.012700464881], - [6.0977392042699, 48.01504283565], - [6.1092294655483, 48.012467456506], - [6.1165344664207, 48.019389790184], - [6.1317082771503, 48.023714993889], - [6.1560578216767, 48.006943160047], - [6.1523407152561, 47.994505212317], - [6.164889049648, 47.976133645938], - [6.1509430707726, 47.970556896575], - [6.160691544552, 47.964476018183], - [6.1679889957893, 47.952352981729], - [6.1784443979518, 47.954215961253], - [6.1973668542118, 47.951792167635], - [6.2079614134083, 47.94275319831], - [6.2052242815746, 47.932044890248], - [6.2191727089294, 47.93576331706], - [6.2379829343014, 47.932840414292], - [6.2773320945343, 47.953805619678], - [6.2964155087065, 47.955366770009], - [6.3097604456805, 47.949874526566], - [6.3245064287941, 47.949279774694], - [6.338561201971, 47.954979185933], - [6.3661530482729, 47.961943699906], - [6.394005582089, 47.956962872907], - [6.4053578977345, 47.95311233294], - [6.4088868226821, 47.943264452338], - [6.4317140631681, 47.943817555323], - [6.4363061456524, 47.936497632925], - [6.4604356473863, 47.91345059658], - [6.4560181967467, 47.906627288043], - [6.4786058641603, 47.885521654796], - [6.5032137734313, 47.89621857502], - [6.5421569547535, 47.902612242352], - [6.5682839276999, 47.93449546901], - [6.6017847198921, 47.944400335071], - [6.6302463718081, 47.925593409791], - [6.6455373160956, 47.904022779887], - [6.6696633226227, 47.89320009565], - [6.703676313184, 47.881417920779], - [6.7102378561952, 47.87576777925], - [6.7304382302284, 47.867533474661], - [6.7377719050045, 47.861560606022], - [6.7638501387584, 47.857307907712], - [6.7644647560578, 47.853457064113], - [6.784819046343, 47.849620144546], - [6.792547182043, 47.840496971878], - [6.7884284780797, 47.834484214023], - [6.8235333222471, 47.813051201983], - [6.8393097752574, 47.824784354742], - [6.8461756187967, 47.822942631655], - [6.8428287756472, 47.812907241333], - [6.8634725871955, 47.785157366739], - [6.9020863665368, 47.776444142208], - [6.9093369154314, 47.77760076122], - [6.9239978247236, 47.770469646258], - [6.9425641239541, 47.768619181766], - [6.9695414653395, 47.753879554684], - [6.9881803418573, 47.747811458115], - [7.01596189708, 47.743229997088], - [7.0194654399739, 47.736016178013], - [7.0374215531951, 47.721642148751], - [7.0264858913282, 47.701000683113], - [7.037634862268, 47.694693941352], - [7.0388002853848, 47.687529274973], - [7.0480463579808, 47.682334383614], - [7.0389466543978, 47.67798172185], - [7.0463174145898, 47.671501618284], - [7.034430907222, 47.661170659864], - [7.0391920612816, 47.650571191522], - [7.0188657902769, 47.650671462441], - [7.0180362046747, 47.642567039669], - [7.0049789727138, 47.619379272859], - [7.0105070572794, 47.605019604987], - [7.005954748644, 47.602446062879], - [7.0254214022991, 47.592680119451], - [7.0405190481699, 47.600960102238], - [7.0565070741684, 47.598940564806], - [7.0647156944354, 47.601059487848], - [7.0772390032257, 47.598070781665], - [7.0862717367469, 47.592564849851], - [7.0863359637946, 47.585555682513], - [7.0941662771964, 47.57363395328], - [7.1002437787202, 47.572348664104], - [7.1084182862429, 47.563026634543], - [7.1062174347916, 47.551377585032], - [7.1192027781559, 47.547271468], - [7.132779554549, 47.539650016902], - [7.1398015507652, 47.526066534747], - [7.1378734301853, 47.510602312684], - [7.1303408019013, 47.503028568514], - [7.1110611805129, 47.494903561041], - [7.0917092821703, 47.494843569895], - [7.0792767593811, 47.488864894845], - [7.0615862317267, 47.49474656879], - [7.0365664433325, 47.497498840015], - [7.0243941161552, 47.504209745968], - [7.0002031778313, 47.499396645969], - [6.9831161167318, 47.49330200911], - [6.9886863518423, 47.486681305933], - [6.9880828045822, 47.474451283009], - [6.9917666987937, 47.466419458718], - [7.0002998100994, 47.462967214339], - [6.9989680532301, 47.452297949929], - [6.9890632753006, 47.447650094342], - [6.9700019113149, 47.44688361894], - [6.9663672609906, 47.437927724299], - [6.9573594450338, 47.433602748363], - [6.9405416785725, 47.433371743667] - ] - ] - }, - "properties": { - "code": "27", - "name": "Bourgogne-Franche-Comté", - "ISOCODE": "FR-BFC" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-1.1196198636379, 49.355568981262], - [-1.1150349421423, 49.362395930026], - [-1.0921583687035, 49.379887497495], - [-1.0782159992234, 49.388493551822], - [-1.0581039796328, 49.390752810392], - [-1.030230861026, 49.389584817643], - [-1.0217757695616, 49.392985914906], - [-0.98940345902679, 49.39743637948], - [-0.93938187284516, 49.39504140049], - [-0.91939336367386, 49.39002775011], - [-0.90740489073828, 49.381675557637], - [-0.88137714562161, 49.371558349237], - [-0.85116019900865, 49.362545824867], - [-0.8268800178819, 49.357899826541], - [-0.75879493262363, 49.349989308157], - [-0.72224467845688, 49.347004293019], - [-0.69550391989566, 49.347281971172], - [-0.64201902855212, 49.345054424205], - [-0.62418682110984, 49.340513964595], - [-0.59417938730252, 49.34074582701], - [-0.55324813273511, 49.346097088235], - [-0.51530983971648, 49.345015391903], - [-0.45195840154088, 49.335498540224], - [-0.41484997241071, 49.335581004388], - [-0.39661087301599, 49.333003019991], - [-0.36103882127829, 49.322880511612], - [-0.30257140893328, 49.298438445237], - [-0.28214642940768, 49.293321218346], - [-0.24699588025273, 49.28822175334], - [-0.22569484520744, 49.281819588113], - [-0.21207245145114, 49.28603196545], - [-0.16966058718734, 49.286245922952], - [-0.14189309791495, 49.289141316114], - [-0.099599544001567, 49.2976014263], - [-0.087163331120361, 49.297906717769], - [-0.077762308941497, 49.304037533131], - [-0.013370009201545, 49.321204345512], - [0.0040210484147169, 49.327780217617], - [0.049806426845953, 49.350858557413], - [0.075462774884584, 49.366163898954], - [0.087042570312236, 49.376676027467], - [0.11038536206668, 49.394265661988], - [0.12974714895673, 49.402984487336], - [0.15940920759597, 49.410111989975], - [0.17578564453162, 49.412357210559], - [0.21994143692835, 49.426760938177], - [0.29722451460974, 49.429859840723], - [0.34059327041276, 49.434318983746], - [0.33897883098918, 49.440928520352], - [0.3393150124405, 49.449872303637], - [0.27313585922231, 49.453416220586], - [0.27142113093512, 49.447328719148], - [0.25679707643476, 49.446323719841], - [0.23825592404046, 49.451159696807], - [0.21769119265823, 49.452963282619], - [0.19246153744669, 49.451459914922], - [0.1738896350055, 49.456501326126], - [0.12123966998691, 49.463194369813], - [0.11663179558052, 49.468668951933], - [0.090696994632536, 49.482114939562], - [0.093998128223838, 49.493022491933], - [0.086909848300058, 49.501426737567], - [0.069553018028324, 49.506394515928], - [0.065609431053556, 49.512574780191], - [0.074935648312722, 49.536327644008], - [0.096662241910689, 49.566865543968], - [0.10673209691871, 49.583498812584], - [0.13691446853437, 49.620054067093], - [0.1545404481146, 49.648638840156], - [0.15041940420529, 49.654089298171], - [0.15745336474727, 49.662409366742], - [0.16435786084442, 49.683595262249], - [0.16902493112731, 49.690718055481], - [0.18958482856705, 49.704795514512], - [0.21166902744322, 49.714464279709], - [0.23734601222366, 49.719026316153], - [0.28325599543364, 49.73657572055], - [0.3054297000562, 49.741647940405], - [0.32055583850936, 49.741550113943], - [0.35492089191875, 49.755006661783], - [0.36447312419198, 49.764320270499], - [0.3742717461751, 49.768687702238], - [0.40291800519761, 49.776954241768], - [0.42846422682965, 49.786277467203], - [0.48354180865604, 49.808256679169], - [0.50625084522888, 49.819729645976], - [0.52275149356329, 49.824531278036], - [0.53443430957787, 49.833749077935], - [0.57293876242844, 49.849717051188], - [0.63455572059055, 49.86165150765], - [0.64204209247477, 49.864190596157], - [0.67449107487386, 49.867359871226], - [0.70196726010642, 49.871881124641], - [0.73355874170037, 49.870614655047], - [0.76972675735512, 49.872091970828], - [0.79097157704249, 49.875749307356], - [0.83667159834277, 49.889522498512], - [0.88434934728582, 49.896715247569], - [0.92979339254159, 49.906736769842], - [0.95467186229888, 49.91831807638], - [0.96318320357221, 49.919860176009], - [1.0200494254731, 49.916107227482], - [1.065897535547, 49.925609301563], - [1.0809062558413, 49.932292873025], - [1.1109703384695, 49.939082116247], - [1.1629209730147, 49.957022281774], - [1.1845869056976, 49.966360150471], - [1.1943755832405, 49.968033261783], - [1.2080962672336, 49.979831426538], - [1.2332915838912, 49.988728375641], - [1.2997853981801, 50.029578582167], - [1.3170167914747, 50.03625056502], - [1.3324268900416, 50.047124707032], - [1.3672027614548, 50.062608452248], - [1.3796981484469, 50.065011890414], - [1.3924400221587, 50.060056426893], - [1.4088347782602, 50.057247377816], - [1.4235940727692, 50.070851596042], - [1.4464534693489, 50.069324171563], - [1.4591516246417, 50.062494643478], - [1.455286116297, 50.056298876577], - [1.4564566095824, 50.037832374442], - [1.4734926140971, 50.033599846345], - [1.4933105925107, 50.017740486409], - [1.50103897683, 50.018915984928], - [1.5180154200133, 50.00910228757], - [1.5270192186573, 49.996530516122], - [1.5465597760538, 49.987581734127], - [1.5582578959792, 49.979389381286], - [1.5738903148936, 49.973921649667], - [1.5940092903756, 49.949050560009], - [1.6182113660007, 49.937822139755], - [1.6784507673607, 49.918130568802], - [1.6932946158985, 49.895601909585], - [1.7124562091314, 49.886444322648], - [1.7117443909555, 49.87371820092], - [1.7187325614081, 49.865708141834], - [1.7195139243408, 49.85406661499], - [1.724683271591, 49.845733284166], - [1.7270527964865, 49.828882279702], - [1.7373867941575, 49.808209452072], - [1.7544750364007, 49.790629917937], - [1.7579284899296, 49.780795399895], - [1.7728042654107, 49.77686925316], - [1.7844715649337, 49.763592975395], - [1.7838342426767, 49.758309270134], - [1.7471451565537, 49.757054329335], - [1.7416291636029, 49.751631106006], - [1.7409502199257, 49.738588067086], - [1.7232343899458, 49.730085190671], - [1.7121688003106, 49.731959147918], - [1.7151877298233, 49.712819627841], - [1.7119859825186, 49.707713850498], - [1.6895744511517, 49.694787428191], - [1.7045184506731, 49.68092815534], - [1.7177073271231, 49.684373173475], - [1.7214282927506, 49.691450681445], - [1.7375343076769, 49.700350145116], - [1.7506387449271, 49.693804769865], - [1.7521845944048, 49.680960782507], - [1.7251990095943, 49.672636996929], - [1.72256553641, 49.661514170983], - [1.7034537142049, 49.645178379124], - [1.7046286111408, 49.639706031745], - [1.7172522158626, 49.633071609694], - [1.7216033847573, 49.621992077342], - [1.7045833964597, 49.60539714358], - [1.6951880268931, 49.599725188693], - [1.7079026298891, 49.59512101877], - [1.7094013142782, 49.586713688098], - [1.7216170199559, 49.588805803542], - [1.7147772726003, 49.576403299976], - [1.7296224523484, 49.561514722426], - [1.727181881084, 49.541625548343], - [1.7446099134771, 49.539601433398], - [1.7451293471854, 49.531735853612], - [1.7309415306325, 49.516127433413], - [1.7192339956449, 49.508224831919], - [1.7254532581616, 49.499781817922], - [1.7387428193977, 49.499646659524], - [1.7437037722862, 49.495260515275], - [1.7579593630441, 49.508955782237], - [1.7718616459246, 49.512848245546], - [1.79022549105, 49.503468309638], - [1.7874800747665, 49.493410636962], - [1.7741026603547, 49.484110404638], - [1.7758155194349, 49.475733185704], - [1.7663409121222, 49.466149422943], - [1.7477144178281, 49.459538435118], - [1.7512558538526, 49.452315507953], - [1.7375744776703, 49.448744348943], - [1.7325062090143, 49.440346816415], - [1.7227989638177, 49.433057939568], - [1.7207550257388, 49.421790744656], - [1.7139306567281, 49.409224915677], - [1.7401057248725, 49.405314790651], - [1.7203128039946, 49.39483019677], - [1.74121389808, 49.381720558637], - [1.747580532548, 49.37311965741], - [1.7594132403395, 49.36814533573], - [1.7576982127616, 49.356710604078], - [1.7727704938425, 49.333136370328], - [1.7676000740408, 49.315889978292], - [1.7756247174004, 49.29969367954], - [1.796488015906, 49.284111717893], - [1.7932298788283, 49.274330698204], - [1.8026740663848, 49.271947858898], - [1.7918059477748, 49.256427629819], - [1.7895339086741, 49.247870747839], - [1.7668935671793, 49.252034345086], - [1.7643549601555, 49.263082374151], - [1.7547213954529, 49.270007807429], - [1.7104820360249, 49.264465989242], - [1.7014183926808, 49.252460272045], - [1.699042864415, 49.234864303276], - [1.7043588288241, 49.232197221792], - [1.7040643483737, 49.229320472612], - [1.6757423007191, 49.21186711807], - [1.6769552220057, 49.202542812736], - [1.6670168601861, 49.178613559023], - [1.6643792614171, 49.153368483471], - [1.6539225302112, 49.145440634177], - [1.655781502711, 49.130164014177], - [1.6470910019222, 49.124713530921], - [1.6175344667245, 49.093996514155], - [1.6233233619235, 49.086078404348], - [1.608798807603, 49.077894185227], - [1.6044866350314, 49.08303659502], - [1.5747375500157, 49.078437534581], - [1.5570743762242, 49.069620586462], - [1.5494725491086, 49.072557881924], - [1.5217716034178, 49.068546693163], - [1.5116006058281, 49.074136193201], - [1.5032944474047, 49.059098256736], - [1.4848766880401, 49.0515451317], - [1.4608012364168, 49.062739598254], - [1.4472851104304, 49.053509472828], - [1.4474286969633, 49.04518889808], - [1.4579533584639, 49.03483279821], - [1.4577570076778, 49.026294572016], - [1.4721822976397, 49.018490972378], - [1.4787512905862, 48.998884682872], - [1.4609202371105, 48.986433838647], - [1.4706099672547, 48.975306435494], - [1.4770931932159, 48.978791319268], - [1.497416022081, 48.979551284823], - [1.5079088220123, 48.98376724437], - [1.5155485568584, 48.976406187821], - [1.4966058957223, 48.969344788938], - [1.5010590902862, 48.952678048634], - [1.5015266013113, 48.941051842112], - [1.4806477281429, 48.940490376837], - [1.4613112437714, 48.937555310548], - [1.4594110528379, 48.928926959252], - [1.4479593034805, 48.924639965044], - [1.4593261044838, 48.914649076535], - [1.4606700524523, 48.900494617753], - [1.4683545148033, 48.892215598584], - [1.4653628424762, 48.877601417126], - [1.4549936915991, 48.870326164498], - [1.4343110180818, 48.866140106761], - [1.4238934051882, 48.861268418973], - [1.4093657222488, 48.861152641723], - [1.3968565494996, 48.855383585466], - [1.3905601143901, 48.8466061658], - [1.3621823366519, 48.834179921179], - [1.3592476591605, 48.813608561344], - [1.3769627320869, 48.791766336256], - [1.3744255946955, 48.782613836125], - [1.3626643019013, 48.781664300017], - [1.3422322124976, 48.772542324536], - [1.3329054445301, 48.762612355286], - [1.3195444496148, 48.76096144137], - [1.3002968590985, 48.767536812046], - [1.2799854142834, 48.762674216595], - [1.2702130511038, 48.757482633762], - [1.2545465453882, 48.758629272206], - [1.2562637586379, 48.765103705723], - [1.246023632927, 48.769675823998], - [1.2226160798083, 48.767292140423], - [1.223526519249, 48.758056658402], - [1.1981446610666, 48.769568542277], - [1.1847360438338, 48.772630245963], - [1.161542788993, 48.769293220083], - [1.1533037151721, 48.774016041266], - [1.1521150110915, 48.78555968408], - [1.1213959532999, 48.789195509733], - [1.1189842149957, 48.782375233568], - [1.1209842348348, 48.767249558527], - [1.1126577960236, 48.751863710692], - [1.0957264674684, 48.748713222693], - [1.086000043818, 48.756926389494], - [1.0757811283562, 48.749437927852], - [1.0686653703661, 48.756913559557], - [1.0590712054157, 48.756765184439], - [1.0398026909049, 48.742155339], - [1.0316499412576, 48.730581545643], - [1.0206075605327, 48.734789446779], - [1.0140639866541, 48.72810030179], - [0.98441493173502, 48.725995395669], - [0.9772943914531, 48.730138669646], - [0.96144420763056, 48.725722137279], - [0.95524192597313, 48.716786068922], - [0.92119872414556, 48.709175212814], - [0.90239998073196, 48.710649225086], - [0.88836808739528, 48.718920532577], - [0.87671116761022, 48.715496114803], - [0.86149783759132, 48.691007914902], - [0.85036287028898, 48.682948048025], - [0.82767132893029, 48.680720042791], - [0.8148247207739, 48.670163564137], - [0.81294886563427, 48.660510127486], - [0.82392074530028, 48.650041826767], - [0.8226824397504, 48.640053608418], - [0.83140562696703, 48.633774446005], - [0.81775390390063, 48.616320066598], - [0.81963618816719, 48.609871113214], - [0.83304661425976, 48.61077016626], - [0.8465873876382, 48.604782622076], - [0.85063536439017, 48.582625709205], - [0.86767573670944, 48.573488250275], - [0.89126612131175, 48.572177428167], - [0.92638981194521, 48.559394233279], - [0.93876307137649, 48.550558547099], - [0.922603461355, 48.537716017396], - [0.95341814083771, 48.526244433476], - [0.96655146260943, 48.522741687979], - [0.9540037271624, 48.503840229688], - [0.94155894503993, 48.498694713572], - [0.95436935096035, 48.490573966149], - [0.95629262450835, 48.482279378048], - [0.93571270291242, 48.475553807957], - [0.94226766472979, 48.457733974776], - [0.95840880937073, 48.44259696324], - [0.9762713097259, 48.439081867809], - [0.9482686361643, 48.417831978233], - [0.94224603424783, 48.399004844657], - [0.93117784919562, 48.391265934635], - [0.9149193773197, 48.374324097325], - [0.90184278255778, 48.373449772268], - [0.88337252111541, 48.356669121421], - [0.87015714346989, 48.35834027017], - [0.86181253481946, 48.350897961325], - [0.84159508492141, 48.350229728169], - [0.82785590745519, 48.342447024282], - [0.81840111266411, 48.349420439199], - [0.78542500970172, 48.340430711536], - [0.78418514184216, 48.334478837721], - [0.77313762601396, 48.325511221527], - [0.76219430247254, 48.306876639515], - [0.76023175104941, 48.298171659555], - [0.77758221552843, 48.302840856139], - [0.79341825616719, 48.293008635712], - [0.79426147145466, 48.284950588985], - [0.78587084890053, 48.271138465423], - [0.78758977714986, 48.261313612339], - [0.80241465108887, 48.248072322927], - [0.80608653469826, 48.239891017509], - [0.82588953248827, 48.220721830264], - [0.83048365574563, 48.210708729507], - [0.80626900151784, 48.203016266265], - [0.79765841643139, 48.19445496608], - [0.76407918474979, 48.181599665308], - [0.75566254080812, 48.181981836049], - [0.73782963836386, 48.189069627691], - [0.73014979083029, 48.200521766169], - [0.72363045806996, 48.19813955141], - [0.7165758658899, 48.212094515686], - [0.68321966914477, 48.2485882228], - [0.67547108490982, 48.254740726504], - [0.65315095543918, 48.263702677988], - [0.64070530481206, 48.261221689671], - [0.63190429889268, 48.254754506701], - [0.63315984470535, 48.245553870078], - [0.57919146406902, 48.24436440048], - [0.56099429972633, 48.245949063769], - [0.55013843367508, 48.249395520335], - [0.53597049486367, 48.249844560134], - [0.53848634108307, 48.256987820339], - [0.5303000454288, 48.265496730429], - [0.51293004449183, 48.266874483366], - [0.49455647283795, 48.28681567575], - [0.50702990447062, 48.295832610533], - [0.48757654033176, 48.307795859172], - [0.48050090924161, 48.298592258919], - [0.46361198113469, 48.305016107657], - [0.44279870606142, 48.304629310064], - [0.43133408375288, 48.306638667446], - [0.42688901989368, 48.315425242308], - [0.41599578567133, 48.321625198799], - [0.4062203560807, 48.314621149851], - [0.3954029644226, 48.320549965535], - [0.38260989677575, 48.333828412247], - [0.38047838823167, 48.341797530871], - [0.38828549911199, 48.349122009475], - [0.38255236381737, 48.359498801305], - [0.37865893857906, 48.383227765197], - [0.37386118731698, 48.386969757082], - [0.37537215739256, 48.395740224588], - [0.37172370405574, 48.410451667862], - [0.38150787714381, 48.417547978808], - [0.38066015166482, 48.425411796164], - [0.36771793204951, 48.438272682172], - [0.36395632992898, 48.451631721658], - [0.35578465090337, 48.458217063582], - [0.33874148490671, 48.461599536909], - [0.32727632603609, 48.471072305832], - [0.31789727296834, 48.471938210212], - [0.29585588821524, 48.480174860693], - [0.27593434536664, 48.479055127239], - [0.26286221529839, 48.482954540393], - [0.25857807031538, 48.476710383834], - [0.22939338887665, 48.472578001816], - [0.21823241324651, 48.473790546424], - [0.18981304225187, 48.461891344828], - [0.18125494041244, 48.464965078387], - [0.16972375424173, 48.461776714307], - [0.16965670000587, 48.449364042801], - [0.15610127663516, 48.454794932825], - [0.15811789380158, 48.4440164218], - [0.15131906064063, 48.437226845695], - [0.11624768586472, 48.435555660302], - [0.09917046478078, 48.41034986941], - [0.083580132468228, 48.411137710408], - [0.067826622948661, 48.406115400716], - [0.056684859958794, 48.393974400454], - [0.062489872264419, 48.382213868151], - [0.020992722816365, 48.380200925309], - [0.0065863250934992, 48.388521385965], - [-0.0025641291874286, 48.397311951396], - [-0.020363541559243, 48.393656323667], - [-0.022054721991416, 48.388059994444], - [-0.035753099663116, 48.384874683334], - [-0.050692623162423, 48.375201195715], - [-0.054527208218665, 48.382004461206], - [-0.052691042298523, 48.392979240085], - [-0.05669039654505, 48.398915618731], - [-0.053012801512314, 48.412716132961], - [-0.057355677768335, 48.42850299559], - [-0.049909790963035, 48.447628170085], - [-0.051890589271637, 48.453255414135], - [-0.072707535476378, 48.456927943118], - [-0.073006901765828, 48.450527118516], - [-0.10641182796282, 48.447519773766], - [-0.12454179598033, 48.449239552758], - [-0.14871763477939, 48.458069224847], - [-0.15336586853021, 48.476724917968], - [-0.14958860992305, 48.479781866844], - [-0.15856042497356, 48.496817021301], - [-0.1720909995602, 48.502134649047], - [-0.16634047065468, 48.51558387484], - [-0.15568415360731, 48.520496772763], - [-0.14501210976342, 48.521000343601], - [-0.14460271813847, 48.527754338423], - [-0.16937878261294, 48.536973156988], - [-0.1899589987284, 48.548884398226], - [-0.19398633186269, 48.554824404734], - [-0.20694246592994, 48.562946447212], - [-0.22107424204732, 48.560317301834], - [-0.23435242732491, 48.562336320193], - [-0.24264015511442, 48.567994064435], - [-0.26180425334438, 48.54789519181], - [-0.24635660161985, 48.542620878313], - [-0.24176789393774, 48.536388956089], - [-0.25395512234333, 48.525985631213], - [-0.26580141522268, 48.522782191648], - [-0.27155353070113, 48.507447568195], - [-0.27823048075492, 48.506986142113], - [-0.30280889062491, 48.517340998248], - [-0.32023332020671, 48.522923755915], - [-0.34337759223335, 48.500849863584], - [-0.35582138041634, 48.495673571366], - [-0.35349558279054, 48.483897081468], - [-0.36723974711241, 48.487748985001], - [-0.3676233888649, 48.492944315138], - [-0.39345664138171, 48.501835194106], - [-0.3991855056689, 48.510158714286], - [-0.41273449116925, 48.506498004612], - [-0.42497181740742, 48.507282953736], - [-0.43075652123879, 48.51181625112], - [-0.46226332328429, 48.512709151203], - [-0.47060334996255, 48.509716651644], - [-0.47820460128897, 48.501565713987], - [-0.4884950789804, 48.501617721865], - [-0.50506155077299, 48.505798828433], - [-0.5304424347088, 48.495164970256], - [-0.54510290980273, 48.482691035747], - [-0.55171796610154, 48.473119783464], - [-0.57152013702789, 48.469152972446], - [-0.59533674901115, 48.472630277201], - [-0.6175695455761, 48.458960402325], - [-0.6540003356242, 48.444278312957], - [-0.65363074848858, 48.459545681615], - [-0.66371844747552, 48.484471551488], - [-0.66895705284659, 48.486137900646], - [-0.68585273590642, 48.475468439014], - [-0.68799234091834, 48.469431032111], - [-0.70206934477695, 48.467207668633], - [-0.71121688547931, 48.470742279355], - [-0.73034187148783, 48.472703026439], - [-0.73585755427354, 48.461124917636], - [-0.7197695922356, 48.454578580623], - [-0.71509947351088, 48.448950147648], - [-0.73527798039621, 48.445048872201], - [-0.75727715268855, 48.436552496914], - [-0.77453904965747, 48.44327891903], - [-0.7785859196383, 48.453255439492], - [-0.77787285065978, 48.465413522216], - [-0.79756269441243, 48.465280274577], - [-0.79918376742683, 48.458939062295], - [-0.81322359143068, 48.455083144137], - [-0.8184585148882, 48.474291742186], - [-0.82728981063172, 48.476292220178], - [-0.83778925434372, 48.485178672867], - [-0.84610706675308, 48.498284307396], - [-0.86036021134895, 48.501458584456], - [-0.8774635305069, 48.499620464013], - [-0.89624907070572, 48.495083815873], - [-0.91847065624527, 48.500394275132], - [-0.92236046915212, 48.512389219916], - [-0.93371106054579, 48.51502659051], - [-0.95637394558324, 48.516620056723], - [-0.96425363340344, 48.510812466339], - [-0.96235389107925, 48.503667410902], - [-0.97225823660351, 48.494600246107], - [-1.0039961840993, 48.489172448089], - [-1.0514451903751, 48.509308794368], - [-1.0605497194866, 48.515346429697], - [-1.0701643748629, 48.508492017418], - [-1.0969039995416, 48.512091635194], - [-1.1160901264748, 48.5212333284], - [-1.1305430206604, 48.52170348713], - [-1.1470767776101, 48.517498765375], - [-1.156893190635, 48.521285821117], - [-1.1699074343327, 48.531104413062], - [-1.1889294040247, 48.52889285086], - [-1.2065516679372, 48.542206088249], - [-1.2158216927154, 48.538229063528], - [-1.2363206998987, 48.538079953318], - [-1.254274261097, 48.543267861594], - [-1.2722481273192, 48.533920331809], - [-1.2695738148732, 48.524058079717], - [-1.2792034941015, 48.509166405754], - [-1.2882493476535, 48.506990431124], - [-1.3025661285534, 48.498856875187], - [-1.3263369028651, 48.498742404871], - [-1.3302853407871, 48.489791631794], - [-1.3393694052252, 48.490940085021], - [-1.3450398581682, 48.484912379925], - [-1.3463506846745, 48.471670546758], - [-1.3772457352191, 48.458282754255], - [-1.3966756078064, 48.462052879811], - [-1.4064842226881, 48.460604032661], - [-1.429135838213, 48.462552562467], - [-1.4403529299447, 48.471140825579], - [-1.4362528107594, 48.478368227471], - [-1.4492603238973, 48.486102161685], - [-1.4670861806686, 48.48806705044], - [-1.4731862558468, 48.485386403307], - [-1.4899417997599, 48.489372357681], - [-1.4956406657121, 48.508898642535], - [-1.512277768964, 48.524834117063], - [-1.519564216371, 48.540018024898], - [-1.5332855375208, 48.548003700235], - [-1.5291705857729, 48.560522846907], - [-1.5189218496777, 48.56659037005], - [-1.5286423474284, 48.579179736848], - [-1.5429927154595, 48.580446827686], - [-1.544011006159, 48.587389031303], - [-1.5396520439432, 48.599920146805], - [-1.5484855009897, 48.607366445795], - [-1.5651218255326, 48.614397614273], - [-1.5710894380361, 48.626441149011], - [-1.5435452019954, 48.63121633289], - [-1.5186481112506, 48.627241443224], - [-1.515647973505, 48.618249181032], - [-1.4875143099536, 48.619683118162], - [-1.477188590376, 48.618737838556], - [-1.453119129556, 48.624675630959], - [-1.4491592197362, 48.623416514324], - [-1.4258419389759, 48.637559262748], - [-1.4045832706425, 48.643393783536], - [-1.3788928672818, 48.641984051038], - [-1.3574234034789, 48.635483059321], - [-1.3667902778659, 48.646816772419], - [-1.37779618361, 48.650980830291], - [-1.3931922892245, 48.650524483715], - [-1.4008843035347, 48.658912226981], - [-1.3868080886343, 48.674230077774], - [-1.3885017122394, 48.680611484574], - [-1.4109326754602, 48.671499504878], - [-1.432437001637, 48.666381359345], - [-1.4385827533746, 48.656898441113], - [-1.4453056482617, 48.655010677863], - [-1.4492892816983, 48.670001538869], - [-1.4812544062845, 48.684374376408], - [-1.49696844753, 48.683669583998], - [-1.5049509038692, 48.687406798864], - [-1.5184702088038, 48.716306146704], - [-1.5319277117459, 48.731023322195], - [-1.5601753647368, 48.735462626987], - [-1.5701538176576, 48.742946555279], - [-1.5744027818825, 48.75185050251], - [-1.5701442959905, 48.772302111897], - [-1.569890517616, 48.800224865932], - [-1.5744376405691, 48.821682401355], - [-1.5941495509687, 48.834715454159], - [-1.6013201144142, 48.836516012355], - [-1.5871738726074, 48.846459450942], - [-1.5763822718035, 48.866233003819], - [-1.5643455142932, 48.921580374553], - [-1.5541181922605, 48.900139698967], - [-1.5434258848416, 48.931027158992], - [-1.5495360815231, 48.940185428234], - [-1.5621107504118, 48.941016659011], - [-1.5620295824626, 48.981625893318], - [-1.5589869081576, 48.991685570978], - [-1.5607098810567, 49.001480959204], - [-1.5507932300727, 49.003261996562], - [-1.557066459398, 49.011560491842], - [-1.5561478071951, 49.024690465146], - [-1.5398053590488, 49.034164591611], - [-1.5238615597683, 49.027357230532], - [-1.5093830641249, 49.026943233212], - [-1.5417948391641, 49.041162160828], - [-1.5471012949252, 49.037292772502], - [-1.5592318014493, 49.038274352716], - [-1.5688741957393, 49.032047703421], - [-1.5785771444366, 49.015283279183], - [-1.5745849862677, 49.002853692658], - [-1.5816167633561, 49.002704056487], - [-1.5937891730984, 49.022503424284], - [-1.60295018717, 49.05577884026], - [-1.5980958444687, 49.058557083517], - [-1.5984218569282, 49.074513497125], - [-1.6094145764943, 49.079281603206], - [-1.6104318663509, 49.092932611918], - [-1.6069307277516, 49.110034240873], - [-1.5999863662105, 49.118513175091], - [-1.5947459734594, 49.131928426288], - [-1.5810718554805, 49.131674948757], - [-1.595825359512, 49.14283223955], - [-1.5988469663686, 49.169200419634], - [-1.6073215295119, 49.196647120312], - [-1.6051478142522, 49.2037447513], - [-1.6107491510687, 49.214490949154], - [-1.5717703394133, 49.223972136229], - [-1.5892944345851, 49.233427410876], - [-1.6169953390227, 49.231610466351], - [-1.625063732473, 49.225074527383], - [-1.6316846090167, 49.21422230031], - [-1.6425012327523, 49.223929836401], - [-1.6541603483738, 49.241445046412], - [-1.6609046758189, 49.259266389315], - [-1.6782177867605, 49.280142766374], - [-1.6657720735083, 49.28188131922], - [-1.6652075172903, 49.286811899007], - [-1.6831075465952, 49.28762544819], - [-1.6968629360079, 49.302727209961], - [-1.71117197286, 49.325094637036], - [-1.7012938138615, 49.323915736806], - [-1.6968290117754, 49.331720453626], - [-1.7176162414367, 49.326352117431], - [-1.7247902425762, 49.327450118599], - [-1.7411588494555, 49.344037789167], - [-1.7647272242817, 49.363551606894], - [-1.7787957331797, 49.371673062007], - [-1.807044519245, 49.371886570418], - [-1.8198270387403, 49.39048194081], - [-1.8233630709264, 49.405355197016], - [-1.8234334633411, 49.438806741795], - [-1.8267734462966, 49.452912708931], - [-1.8365701217503, 49.468323740242], - [-1.8434098400699, 49.47077677688], - [-1.8464190476711, 49.498628821215], - [-1.8526021717957, 49.510385793698], - [-1.8686791471828, 49.51237165287], - [-1.8819330190767, 49.51931183704], - [-1.8865295575919, 49.527614954968], - [-1.8856912059509, 49.540389845217], - [-1.8599268014835, 49.550652196301], - [-1.8410258496794, 49.571733495111], - [-1.8423657220792, 49.603652142802], - [-1.8451382307403, 49.619088241649], - [-1.8550073982962, 49.642822194747], - [-1.8602959828965, 49.650193854758], - [-1.8734840432458, 49.657595242746], - [-1.8983983394389, 49.665827626044], - [-1.9178223549036, 49.665792917579], - [-1.9291066373282, 49.671817058684], - [-1.9461839215553, 49.67434359255], - [-1.9362755021206, 49.687906388906], - [-1.9364332705437, 49.693755561379], - [-1.9472733176655, 49.704928806767], - [-1.9422468301096, 49.725557927402], - [-1.9165182727857, 49.724881008941], - [-1.8977813504921, 49.71710162128], - [-1.8901181931224, 49.707153428958], - [-1.8765349678081, 49.706745540386], - [-1.8524826023107, 49.716941279614], - [-1.8395312458249, 49.711552803104], - [-1.8276334422186, 49.693428126343], - [-1.815242405587, 49.68887201482], - [-1.7903115872551, 49.687062757357], - [-1.7626785199869, 49.678675842585], - [-1.7353787740872, 49.677475890784], - [-1.7226166267492, 49.67923539334], - [-1.7044356804014, 49.670860552488], - [-1.6867469480741, 49.673066182254], - [-1.6783904494577, 49.661233437166], - [-1.6501443485293, 49.65679900284], - [-1.6328523940131, 49.660641576202], - [-1.6240147652106, 49.644053113794], - [-1.6151605571489, 49.643460933616], - [-1.595585416435, 49.654476141253], - [-1.5790665683374, 49.654108869195], - [-1.5657216224347, 49.6564319962], - [-1.5415760950278, 49.65411200539], - [-1.5142668707452, 49.659906363431], - [-1.4951992999355, 49.668112324564], - [-1.485803063592, 49.669315434164], - [-1.4848705161427, 49.677760491652], - [-1.4753944670543, 49.681673759847], - [-1.4759879580656, 49.692012655502], - [-1.4710843353661, 49.69667139043], - [-1.4551125681652, 49.691211562863], - [-1.4211648985369, 49.703706318223], - [-1.4112493611078, 49.70195420522], - [-1.3858209704338, 49.706235946931], - [-1.369566553066, 49.706887557051], - [-1.3498383478638, 49.702068404407], - [-1.2878440862449, 49.692595816605], - [-1.2679291968387, 49.695329176599], - [-1.2715087649217, 49.683652851227], - [-1.2538864036932, 49.663805883133], - [-1.2391801151651, 49.652402684434], - [-1.2432478604805, 49.648200405198], - [-1.2295967339571, 49.624653776103], - [-1.228866448748, 49.607863429808], - [-1.2542854436666, 49.612658345594], - [-1.2662660112701, 49.592845791028], - [-1.2612384503723, 49.586657015411], - [-1.267613440608, 49.581953814631], - [-1.2840568870782, 49.587252068376], - [-1.2962280470313, 49.583173183623], - [-1.3042001777054, 49.573677338992], - [-1.3091731760214, 49.552609580003], - [-1.3063595679898, 49.538928237908], - [-1.2895246997246, 49.51798179534], - [-1.2699260332883, 49.500541701878], - [-1.2583845422005, 49.48641032582], - [-1.2233382850858, 49.455809055808], - [-1.182532110005, 49.424017594444], - [-1.1679979463415, 49.408031770721], - [-1.1617337685799, 49.39174984514], - [-1.1732751083089, 49.37843798982], - [-1.1775396285395, 49.36489675323], - [-1.1639466580138, 49.366660471267], - [-1.1388379041632, 49.358414252281], - [-1.1360493392017, 49.354043408557], - [-1.1196198636379, 49.355568981262] - ] - ] - }, - "properties": { "code": "28", "name": "Normandie", "ISOCODE": "FR-NOR" } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [4.1408937784816, 49.978756019427], - [4.1539790946564, 49.974840643025], - [4.1723910913291, 49.97708133227], - [4.1971143649951, 49.967723922794], - [4.1973605165259, 49.954734901799], - [4.2259812346668, 49.959064626187], - [4.2330628764399, 49.957824711709], - [4.2303959475263, 49.947204968202], - [4.2216024803296, 49.937902313306], - [4.2187089162197, 49.920686498287], - [4.2221391301616, 49.910422069675], - [4.2332446058305, 49.904304609803], - [4.2540638814402, 49.904004764573], - [4.2530532522095, 49.872272130792], - [4.2485056451169, 49.856518172527], - [4.2366221851606, 49.849699207378], - [4.2234884321126, 49.83376467914], - [4.21989152014, 49.815134132001], - [4.2147724033566, 49.806110108269], - [4.2270460920968, 49.793183108192], - [4.2224308204953, 49.786967474101], - [4.2095884562322, 49.781777002902], - [4.2142637924854, 49.771267691897], - [4.2266193641282, 49.773087602827], - [4.2382185523689, 49.767642716303], - [4.2500943395752, 49.757098850356], - [4.2290201625555, 49.745744739695], - [4.2247072679536, 49.727198714419], - [4.2064629076853, 49.723538323397], - [4.1926293949408, 49.715800885171], - [4.1920358906093, 49.710905599545], - [4.1783005290521, 49.698036101434], - [4.1441873561823, 49.688543920373], - [4.1475377596226, 49.678019756234], - [4.1270270054568, 49.677917606181], - [4.1223323319077, 49.659520506862], - [4.1254660330069, 49.650608155401], - [4.1147910874013, 49.635304817786], - [4.0993133133426, 49.628479985907], - [4.0695561865706, 49.636751879497], - [4.0511107039532, 49.634644480527], - [4.0432501448672, 49.6361455878], - [4.0379111248697, 49.622918577627], - [4.0252899216328, 49.62252962525], - [4.0313962718463, 49.614287229711], - [4.0541912133221, 49.595288700911], - [4.065110143114, 49.594908552638], - [4.0595605382919, 49.578709772836], - [4.0627821408209, 49.573556972194], - [4.0765722336699, 49.57112568919], - [4.0647940705926, 49.562212345669], - [4.0582914969504, 49.552548182169], - [4.0487683371061, 49.545272613584], - [4.0738006912951, 49.541617642486], - [4.0767490566918, 49.531314775054], - [4.0758354322042, 49.518345118497], - [4.0650976973335, 49.523284436368], - [4.0566240283661, 49.521046840185], - [4.0618580428951, 49.512563145954], - [4.053158610381, 49.50864470004], - [4.0407061703752, 49.50853200863], - [4.0423746855064, 49.468690509147], - [4.0529144654974, 49.460257089671], - [4.0602468457773, 49.447151466107], - [4.0500241066599, 49.445792451369], - [4.0376689955921, 49.438263004999], - [4.0431448752397, 49.429325986342], - [4.0422957368009, 49.416650795955], - [4.0502747365168, 49.412260783575], - [4.047974391829, 49.405644080344], - [4.0399063933123, 49.397393331324], - [4.0354977852679, 49.359905945249], - [4.0127326189721, 49.358302701884], - [4.0051087823761, 49.369208523497], - [3.9913652648133, 49.378222344205], - [3.9613104389204, 49.377346727516], - [3.9424137621592, 49.391461051265], - [3.9318314213659, 49.403084958448], - [3.9244391664348, 49.406179032892], - [3.9150740342564, 49.399385348956], - [3.8787822154646, 49.385857165921], - [3.8591446800636, 49.381351797144], - [3.8573468410854, 49.369945638107], - [3.847475808218, 49.364589335554], - [3.858709482185, 49.353737278746], - [3.852156449301, 49.344654924149], - [3.832778633819, 49.350261851859], - [3.8237576514434, 49.356987454563], - [3.8015158122099, 49.358931233427], - [3.7824442652216, 49.352774492617], - [3.7744622374234, 49.354639933222], - [3.757818074306, 49.347604354229], - [3.7410811711412, 49.347585887018], - [3.7422206958499, 49.336511221485], - [3.7216167324835, 49.335726303503], - [3.7012926310034, 49.332508221298], - [3.6891002697559, 49.326851228803], - [3.6703327730544, 49.325093317382], - [3.6601616875884, 49.318370386543], - [3.646957318637, 49.315152582535], - [3.6383343630554, 49.301354552133], - [3.642801871342, 49.296041342828], - [3.65731758003, 49.291021541771], - [3.6516094181931, 49.278360707849], - [3.665132135016, 49.269657535247], - [3.6552490233788, 49.262847772673], - [3.6637955993399, 49.253525125811], - [3.6707785326799, 49.239600299061], - [3.6763725147129, 49.23836076616], - [3.6650221926501, 49.223221302369], - [3.6516085786612, 49.221427253663], - [3.6584058277856, 49.211000985544], - [3.6817942876508, 49.205339977618], - [3.6839084510227, 49.197534060825], - [3.6971034744514, 49.205472659609], - [3.7048747423107, 49.198590103722], - [3.7005485386662, 49.187713241443], - [3.7043892552675, 49.181369443488], - [3.7254385553209, 49.173515978138], - [3.7372236091373, 49.177961424911], - [3.7511423125744, 49.177699202357], - [3.7487678456403, 49.157085133246], - [3.7395699991233, 49.156933396134], - [3.717012841182, 49.147040324959], - [3.7016210668145, 49.143083232127], - [3.6980322212385, 49.149827639227], - [3.6838376358892, 49.154490943481], - [3.6718043158638, 49.150635019402], - [3.6468735208387, 49.149122623512], - [3.6222521277141, 49.151105463129], - [3.6103949951775, 49.127543924136], - [3.6000114843908, 49.120690012831], - [3.6200761430148, 49.107193914382], - [3.6323412082709, 49.086509017267], - [3.6390507423115, 49.081304273735], - [3.6328719662821, 49.072789507462], - [3.6237954864751, 49.07086508435], - [3.6121535124357, 49.073560405492], - [3.5877081614204, 49.059394624683], - [3.5866997575834, 49.035795925017], - [3.6150194069679, 49.033500653248], - [3.6168408971943, 49.03648384631], - [3.6463115589695, 49.040590166906], - [3.6639547486924, 49.037308063462], - [3.6774822917619, 49.019164672527], - [3.6749656325958, 49.01172340253], - [3.6651641207485, 49.00563190452], - [3.6398926774554, 49.00408594583], - [3.6245368960791, 48.983751500727], - [3.6206544521613, 48.965944000018], - [3.5991756397826, 48.964609029368], - [3.5915529898914, 48.960375393399], - [3.599065082592, 48.953591820396], - [3.6015957850168, 48.944073853473], - [3.5888878773911, 48.943911238057], - [3.5744445323994, 48.939019123403], - [3.5738483617762, 48.921481440361], - [3.5698140355022, 48.914705628852], - [3.5600217013966, 48.917012631384], - [3.5285709402165, 48.912136556763], - [3.5130610888281, 48.894727857657], - [3.5021501743028, 48.871150830362], - [3.4824053162481, 48.864936735752], - [3.4851833721947, 48.851910309574], - [3.4704665824993, 48.850999590899], - [3.4619058634763, 48.837795469902], - [3.4453621334286, 48.843227318178], - [3.4522351731222, 48.856295042236], - [3.4209735309142, 48.863949992871], - [3.4032208419263, 48.864690111949], - [3.4058488876005, 48.875883179755], - [3.3897420595655, 48.871208088242], - [3.3804785922907, 48.874760520568], - [3.3828118491401, 48.888743663179], - [3.3690076856012, 48.893887842681], - [3.3755045418202, 48.907223979388], - [3.3722055688435, 48.921684863018], - [3.3663458595763, 48.922834212302], - [3.3535717935992, 48.915243105496], - [3.3441215555428, 48.915424399696], - [3.3302940034825, 48.908707002968], - [3.3130772332366, 48.921215462331], - [3.3128748032908, 48.933619620679], - [3.3047535824542, 48.948766966256], - [3.2845265117579, 48.940530948472], - [3.2678473977393, 48.938330226813], - [3.2571425774493, 48.95706258101], - [3.2518324140274, 48.972363565032], - [3.2441973984858, 48.976835025435], - [3.2312127851282, 48.976752849115], - [3.2291741613167, 48.988415153607], - [3.209314063913, 48.993783774365], - [3.2071647717724, 49.000687121653], - [3.1836516708558, 49.011250532749], - [3.17167852308, 49.014125889695], - [3.1610292917102, 49.024224133711], - [3.1765330296567, 49.030276306398], - [3.181201109614, 49.042312878135], - [3.1902026447151, 49.046494471584], - [3.1821650688322, 49.052356876125], - [3.1818447950388, 49.062073630984], - [3.1686703252618, 49.076194127358], - [3.1586170058803, 49.080495794822], - [3.1568687392365, 49.086717381412], - [3.1652303376546, 49.099653555336], - [3.1495286898189, 49.100548046274], - [3.1288977237115, 49.106712873662], - [3.1019450875262, 49.108665530931], - [3.0824299640326, 49.112379413059], - [3.0718801833502, 49.11755332218], - [3.0563165652026, 49.101913557338], - [3.0573553400185, 49.093990044235], - [3.0483557770377, 49.08631637936], - [3.0327819280137, 49.089067566229], - [3.0295246754031, 49.085932257529], - [3.0085155423352, 49.091506561321], - [2.9912365557999, 49.084010529465], - [2.9879964190903, 49.072371853401], - [2.9747449093505, 49.074788481937], - [2.9704735929189, 49.088974001698], - [2.9445842533756, 49.081604590578], - [2.9174506912143, 49.079815930085], - [2.9015078822282, 49.085373143453], - [2.8949485303642, 49.077063202013], - [2.8830747436616, 49.076071279686], - [2.8662678657136, 49.070693981918], - [2.8557424844029, 49.070260111043], - [2.8451483788669, 49.084656494049], - [2.8360889289489, 49.082987383853], - [2.8198502647929, 49.087367188293], - [2.8090528505052, 49.097537605404], - [2.7918697099795, 49.090226188638], - [2.787073783912, 49.07527418833], - [2.7604244593128, 49.06296236294], - [2.7350099332564, 49.060452516659], - [2.7324165014354, 49.069856383944], - [2.7204862280103, 49.074886920193], - [2.7061794650059, 49.06530744517], - [2.6909952426863, 49.066575827238], - [2.6921954156417, 49.072098782916], - [2.6848013380994, 49.081070149491], - [2.6676934960697, 49.092495236068], - [2.6332770991263, 49.108372635105], - [2.6205306041593, 49.095141144665], - [2.6103345312027, 49.09494039704], - [2.6072121818235, 49.089061593648], - [2.5905283926735, 49.079653961607], - [2.5833038141204, 49.080706309944], - [2.5786858654184, 49.091952842127], - [2.5581755098966, 49.098381756011], - [2.5520149054273, 49.113947081753], - [2.5561550654469, 49.118627938332], - [2.5408087122315, 49.122242313794], - [2.5329944482474, 49.119245162084], - [2.5310585957685, 49.099597191318], - [2.4899295573932, 49.106359373937], - [2.5020961933805, 49.118887475459], - [2.4992321189629, 49.122269747269], - [2.4817070713716, 49.126919463544], - [2.4615068862157, 49.135936921998], - [2.4354018020913, 49.133939040206], - [2.4409039786288, 49.14580411257], - [2.4153544805398, 49.151762413963], - [2.3912847262891, 49.1493504084], - [2.383003341928, 49.155913004846], - [2.370937678429, 49.159173609651], - [2.3592998527471, 49.147343950086], - [2.3462625342946, 49.161815854345], - [2.3222626753655, 49.180859736345], - [2.3109304401404, 49.186404768181], - [2.3011998615285, 49.183887047533], - [2.2994229533516, 49.17583535835], - [2.2888064839605, 49.170710377425], - [2.2862682227562, 49.160277559835], - [2.2695453788487, 49.156306628677], - [2.2622091200851, 49.158297463054], - [2.2524813607229, 49.152881479913], - [2.2230049777895, 49.151869445673], - [2.2163546658105, 49.154378017348], - [2.2354095182703, 49.167035850124], - [2.2186458815721, 49.180685270888], - [2.204958905762, 49.174316445929], - [2.1819527991076, 49.173675958457], - [2.1642743368285, 49.166004802028], - [2.157743439339, 49.172599185593], - [2.1645707336419, 49.179671393215], - [2.1327402600127, 49.191379169415], - [2.1133369040576, 49.186543761789], - [2.0968798927064, 49.189757147704], - [2.0915398506152, 49.204360444701], - [2.0808850919985, 49.209773929407], - [2.066842351201, 49.202860855132], - [2.0380917348167, 49.192136044555], - [2.0217858750717, 49.188671770161], - [2.0045021739488, 49.177609556506], - [1.996823915181, 49.176453415327], - [1.9734431640564, 49.18389441504], - [1.9607171629873, 49.173517298241], - [1.9480171420872, 49.170749195544], - [1.931476176782, 49.17416772145], - [1.894536229716, 49.166040538631], - [1.8852348791181, 49.162636028533], - [1.877042152092, 49.171448857663], - [1.8455433838221, 49.169896687357], - [1.8370818782543, 49.171698986367], - [1.8265758315348, 49.179516758866], - [1.8143979645085, 49.176162362964], - [1.7954740881562, 49.18526277584], - [1.7909791787819, 49.179854330047], - [1.7775554860529, 49.184104883007], - [1.7551705903258, 49.174545969477], - [1.7421415990654, 49.180151725276], - [1.7374357068856, 49.194603115202], - [1.7258249045161, 49.195712707137], - [1.7155761288215, 49.203118037941], - [1.7230394537953, 49.20967924589], - [1.7336823766846, 49.210958623685], - [1.7341091784733, 49.221277890399], - [1.729662120604, 49.22919730317], - [1.7043588288241, 49.232197221792], - [1.699042864415, 49.234864303276], - [1.7014183926808, 49.252460272045], - [1.7104820360249, 49.264465989242], - [1.7547213954529, 49.270007807429], - [1.7643549601555, 49.263082374151], - [1.7668935671793, 49.252034345086], - [1.7895339086741, 49.247870747839], - [1.7918059477748, 49.256427629819], - [1.8026740663848, 49.271947858898], - [1.7932298788283, 49.274330698204], - [1.796488015906, 49.284111717893], - [1.7756247174004, 49.29969367954], - [1.7676000740408, 49.315889978292], - [1.7727704938425, 49.333136370328], - [1.7576982127616, 49.356710604078], - [1.7594132403395, 49.36814533573], - [1.747580532548, 49.37311965741], - [1.74121389808, 49.381720558637], - [1.7203128039946, 49.39483019677], - [1.7401057248725, 49.405314790651], - [1.7139306567281, 49.409224915677], - [1.7207550257388, 49.421790744656], - [1.7227989638177, 49.433057939568], - [1.7325062090143, 49.440346816415], - [1.7375744776703, 49.448744348943], - [1.7512558538526, 49.452315507953], - [1.7477144178281, 49.459538435118], - [1.7663409121222, 49.466149422943], - [1.7758155194349, 49.475733185704], - [1.7741026603547, 49.484110404638], - [1.7874800747665, 49.493410636962], - [1.79022549105, 49.503468309638], - [1.7718616459246, 49.512848245546], - [1.7579593630441, 49.508955782237], - [1.7437037722862, 49.495260515275], - [1.7387428193977, 49.499646659524], - [1.7254532581616, 49.499781817922], - [1.7192339956449, 49.508224831919], - [1.7309415306325, 49.516127433413], - [1.7451293471854, 49.531735853612], - [1.7446099134771, 49.539601433398], - [1.727181881084, 49.541625548343], - [1.7296224523484, 49.561514722426], - [1.7147772726003, 49.576403299976], - [1.7216170199559, 49.588805803542], - [1.7094013142782, 49.586713688098], - [1.7079026298891, 49.59512101877], - [1.6951880268931, 49.599725188693], - [1.7045833964597, 49.60539714358], - [1.7216033847573, 49.621992077342], - [1.7172522158626, 49.633071609694], - [1.7046286111408, 49.639706031745], - [1.7034537142049, 49.645178379124], - [1.72256553641, 49.661514170983], - [1.7251990095943, 49.672636996929], - [1.7521845944048, 49.680960782507], - [1.7506387449271, 49.693804769865], - [1.7375343076769, 49.700350145116], - [1.7214282927506, 49.691450681445], - [1.7177073271231, 49.684373173475], - [1.7045184506731, 49.68092815534], - [1.6895744511517, 49.694787428191], - [1.7119859825186, 49.707713850498], - [1.7151877298233, 49.712819627841], - [1.7121688003106, 49.731959147918], - [1.7232343899458, 49.730085190671], - [1.7409502199257, 49.738588067086], - [1.7416291636029, 49.751631106006], - [1.7471451565537, 49.757054329335], - [1.7838342426767, 49.758309270134], - [1.7844715649337, 49.763592975395], - [1.7728042654107, 49.77686925316], - [1.7579284899296, 49.780795399895], - [1.7544750364007, 49.790629917937], - [1.7373867941575, 49.808209452072], - [1.7270527964865, 49.828882279702], - [1.724683271591, 49.845733284166], - [1.7195139243408, 49.85406661499], - [1.7187325614081, 49.865708141834], - [1.7117443909555, 49.87371820092], - [1.7124562091314, 49.886444322648], - [1.6932946158985, 49.895601909585], - [1.6784507673607, 49.918130568802], - [1.6182113660007, 49.937822139755], - [1.5940092903756, 49.949050560009], - [1.5738903148936, 49.973921649667], - [1.5582578959792, 49.979389381286], - [1.5465597760538, 49.987581734127], - [1.5270192186573, 49.996530516122], - [1.5180154200133, 50.00910228757], - [1.50103897683, 50.018915984928], - [1.4933105925107, 50.017740486409], - [1.4734926140971, 50.033599846345], - [1.4564566095824, 50.037832374442], - [1.455286116297, 50.056298876577], - [1.4591516246417, 50.062494643478], - [1.4464534693489, 50.069324171563], - [1.4235940727692, 50.070851596042], - [1.4088347782602, 50.057247377816], - [1.3924400221587, 50.060056426893], - [1.3796981484469, 50.065011890414], - [1.3926951404215, 50.075508103188], - [1.4326447913126, 50.094349140281], - [1.453882566018, 50.110330912339], - [1.4680459164898, 50.139076728869], - [1.4787103407902, 50.164913871979], - [1.4916774164956, 50.184158850335], - [1.5124437978409, 50.201705539893], - [1.5484363732305, 50.215217479179], - [1.5596528651115, 50.210793191325], - [1.5742402203094, 50.196012165606], - [1.5961920997106, 50.185502423396], - [1.6115742742922, 50.191033491192], - [1.6274144143455, 50.190005124318], - [1.6733457641263, 50.174680696998], - [1.683793928232, 50.183026098336], - [1.6708368854438, 50.194260444795], - [1.6696347125474, 50.205895817898], - [1.6626657206518, 50.213594131613], - [1.6392011577592, 50.217276772482], - [1.6225007114324, 50.215151972316], - [1.5920617370787, 50.248546445422], - [1.590272985914, 50.255949292147], - [1.562292530548, 50.255765909795], - [1.549313280898, 50.260403925768], - [1.5403360598397, 50.273870926874], - [1.5379421306702, 50.282668408098], - [1.5509359402445, 50.350318813543], - [1.5558295005084, 50.361315709087], - [1.5713313280132, 50.35845215301], - [1.612966033514, 50.360292820052], - [1.6242577191597, 50.366290636763], - [1.6339779035367, 50.355381211519], - [1.6415398327353, 50.352148667835], - [1.6313872914825, 50.36008632241], - [1.6252312966713, 50.371832567005], - [1.609294107413, 50.370743587316], - [1.6001281982125, 50.3777199452], - [1.5846837792851, 50.376382884213], - [1.5703000307947, 50.392158393497], - [1.563294790003, 50.394950334151], - [1.5577948179294, 50.404714412055], - [1.5634107613097, 50.418460574304], - [1.5691068767694, 50.440882836463], - [1.5770036622248, 50.493788201491], - [1.577419530273, 50.516533642344], - [1.5854092273894, 50.537352408548], - [1.6267556408457, 50.521386133981], - [1.6192946160483, 50.535275013384], - [1.6084280327721, 50.540109583469], - [1.6000968934514, 50.549488993972], - [1.5812683008538, 50.56276958757], - [1.5766037238144, 50.572223225221], - [1.5776855393668, 50.579872832517], - [1.578417453812, 50.640285448716], - [1.5720971666289, 50.664196329528], - [1.5624650705923, 50.687457544808], - [1.5607073853506, 50.699672766378], - [1.5736037455337, 50.716166202188], - [1.5627006546685, 50.724987440831], - [1.5841273301918, 50.731155421742], - [1.5905216325015, 50.729795719211], - [1.5960008708105, 50.74619627021], - [1.6043933167393, 50.7628298425], - [1.6042092031199, 50.791871277165], - [1.6106406418335, 50.803762099322], - [1.59968410858, 50.805849583644], - [1.590153572682, 50.825395303048], - [1.5833136380965, 50.8457034659], - [1.5779419504031, 50.853333808739], - [1.580632768506, 50.867343830504], - [1.5887300407704, 50.871669803792], - [1.6016621961931, 50.871163999157], - [1.635804198092, 50.876984561631], - [1.6641002886514, 50.890134303575], - [1.6925371850157, 50.915373472941], - [1.7122611515718, 50.929408873362], - [1.7288559802086, 50.937892541353], - [1.7807166589725, 50.954865814239], - [1.851150647352, 50.965664502203], - [1.8527009274535, 50.970956150804], - [1.871165789111, 50.974935769432], - [1.8896938932734, 50.972314506334], - [1.915779044375, 50.984087355938], - [1.939240821017, 50.987858664569], - [1.9598449752902, 50.987202834418], - [1.9927371149402, 50.993728633123], - [2.0395672744245, 50.997310813057], - [2.0477184398862, 51.002860879522], - [2.0677049871716, 51.006501514321], - [2.0845036256491, 51.008606935608], - [2.1097045642696, 51.003827598587], - [2.123515723481, 51.014167524083], - [2.141504907246, 51.022058874598], - [2.1673459399511, 51.020738207739], - [2.1794228227752, 51.015102619912], - [2.1925606242518, 51.027436640575], - [2.1918294890846, 51.034714947113], - [2.2140013975448, 51.031681877805], - [2.2590224218691, 51.043489703657], - [2.33185815699, 51.056055745767], - [2.3478325752445, 51.059829634673], - [2.3666467120992, 51.051919789329], - [2.3782653998463, 51.049621895931], - [2.3995855035021, 51.050957305507], - [2.4247543344414, 51.055621633327], - [2.493466611121, 51.073071375079], - [2.5430346061346, 51.08854370897], - [2.5463210173049, 51.088403186427], - [2.5599258259302, 51.068918893476], - [2.5759795456357, 51.013756325485], - [2.5739982943322, 51.003521991804], - [2.5828043639126, 50.997122436344], - [2.6012847777962, 50.991283503211], - [2.6105921963125, 50.976188347149], - [2.6326801578862, 50.946008766454], - [2.618276709243, 50.938761685952], - [2.5902216021403, 50.919275360805], - [2.5940974354529, 50.914372170977], - [2.6075324528985, 50.91240659974], - [2.606318820361, 50.899326241848], - [2.6071625262549, 50.873044043565], - [2.6103262931744, 50.86206244973], - [2.5995904644573, 50.853332534722], - [2.62561536399, 50.836560386715], - [2.6272629250997, 50.82765105936], - [2.6349756592043, 50.812755500853], - [2.6588971217623, 50.814991778582], - [2.6690258101157, 50.822462129386], - [2.6862350086644, 50.813429813967], - [2.7174754083298, 50.81360682515], - [2.7256398356216, 50.808632188358], - [2.7219265518167, 50.80159438836], - [2.7267028013485, 50.792383411441], - [2.7375118592303, 50.78266728319], - [2.7621515823535, 50.770756585159], - [2.7584298773759, 50.762930766426], - [2.766042090907, 50.754519108704], - [2.7819457247827, 50.75109080132], - [2.7867390132952, 50.73381741121], - [2.7956557413456, 50.724609008419], - [2.8132739834573, 50.716945833429], - [2.8483860974407, 50.722914959975], - [2.8547299617705, 50.714708513206], - [2.8701715745294, 50.702911374608], - [2.8856496977648, 50.706611021367], - [2.8983786417092, 50.694238803855], - [2.9109065606969, 50.694496081053], - [2.9115936515323, 50.703838778555], - [2.9223300662476, 50.702801451402], - [2.9307796391097, 50.716242999992], - [2.9298687861194, 50.722758772582], - [2.94083706877, 50.733174957645], - [2.9380690677647, 50.744343927761], - [2.9582403353503, 50.753446186612], - [2.9696585316524, 50.749612772394], - [2.9810878439876, 50.756657678787], - [3.0120929242906, 50.769111505719], - [3.0352750082458, 50.770239418325], - [3.0408824825472, 50.775687536871], - [3.06137703349, 50.78050174847], - [3.0798956714209, 50.773020869115], - [3.0886989124978, 50.773371114027], - [3.1067964329954, 50.783860810329], - [3.1147669732972, 50.794187883435], - [3.1249879535977, 50.786437758612], - [3.150782780111, 50.790127285347], - [3.1520005085792, 50.782343293233], - [3.1927531897582, 50.738373224845], - [3.199134285231, 50.734731836468], - [3.1912265002692, 50.724409127208], - [3.2040720746712, 50.719906646456], - [3.2155072743961, 50.712360639713], - [3.241487162382, 50.712571336251], - [3.2583766477988, 50.700646817566], - [3.2601205467889, 50.693081234565], - [3.2548022328174, 50.686810753613], - [3.2624274548591, 50.678483478988], - [3.2445871588055, 50.670121319421], - [3.2411021613015, 50.657785417847], - [3.2485035849353, 50.638041219835], - [3.2590208715028, 50.630050536375], - [3.2612681066709, 50.618847521451], - [3.2702967597615, 50.610812998689], - [3.2775041513186, 50.592959787705], - [3.2761648131069, 50.581684874378], - [3.2817196163381, 50.577326666545], - [3.2759630544617, 50.55853838771], - [3.2801733532291, 50.541649764418], - [3.286524369777, 50.527577616965], - [3.3076292824013, 50.519351863345], - [3.323616112777, 50.515711801855], - [3.3288583317067, 50.50812409632], - [3.3373216704386, 50.508504351312], - [3.3626639420755, 50.503101853968], - [3.3738958439101, 50.491827615781], - [3.3892974635465, 50.496497126168], - [3.407610572795, 50.499030496362], - [3.4322501535667, 50.507122357013], - [3.4500814758008, 50.507357727388], - [3.4537383652366, 50.519240260247], - [3.4739635797806, 50.533563546234], - [3.4879746720951, 50.52951223764], - [3.5037708157723, 50.529588132251], - [3.5194053990883, 50.522871548274], - [3.5150527088294, 50.511939927188], - [3.4963266702785, 50.498685062833], - [3.5007741945714, 50.487265476296], - [3.5260686365645, 50.494642317404], - [3.5677678220335, 50.50061221444], - [3.5853427353378, 50.490537930282], - [3.599870886857, 50.493844386319], - [3.6130169489409, 50.492471225596], - [3.6321845132975, 50.476505259546], - [3.6436495207902, 50.463210909782], - [3.6559966661463, 50.461231295862], - [3.6642184659463, 50.453173761167], - [3.6601071896526, 50.444370502961], - [3.668845812022, 50.436854602212], - [3.6737092904608, 50.404244897722], - [3.6723742999474, 50.387652477303], - [3.6582667947641, 50.371343895257], - [3.6672786748469, 50.360267800167], - [3.6673721160869, 50.350556515727], - [3.6738427984215, 50.342705763301], - [3.673675944671, 50.334926016155], - [3.6936219005906, 50.322150381532], - [3.6944326025128, 50.31582844934], - [3.7104309751894, 50.303169731959], - [3.715608900178, 50.312633964487], - [3.7317343457441, 50.311904528305], - [3.7300326908857, 50.323304085674], - [3.7362234073766, 50.343257031302], - [3.7474052053778, 50.350928242159], - [3.7637003867935, 50.348299279201], - [3.7681168487951, 50.352409081215], - [3.7987851177737, 50.351332715036], - [3.8136651517092, 50.353164952183], - [3.8213860471348, 50.34573984572], - [3.8297546113897, 50.352692404719], - [3.8527555972491, 50.351593778606], - [3.859478039848, 50.342899076611], - [3.8722862224421, 50.337941906562], - [3.8884496083778, 50.338223421367], - [3.8897942621496, 50.329975796406], - [3.900403191897, 50.327566131768], - [3.9144701316434, 50.330369968091], - [3.9678985736842, 50.350369100061], - [3.9844697338671, 50.341952511071], - [3.9939041267958, 50.348610880809], - [4.0151639433994, 50.351813784602], - [4.0273772077583, 50.357488651634], - [4.0376171727107, 50.342950902805], - [4.0488085710308, 50.339599664463], - [4.0781900466276, 50.320551562698], - [4.0788865919897, 50.309752500483], - [4.0971684837089, 50.313208013214], - [4.1129089634483, 50.302069970791], - [4.1199595939074, 50.300055788038], - [4.1259410717892, 50.286248262682], - [4.1243582297602, 50.27361214025], - [4.1366519411801, 50.274295837487], - [4.1362790115355, 50.256814562298], - [4.156126246964, 50.256602008528], - [4.1676077441772, 50.259698659168], - [4.168471823828, 50.266121912654], - [4.1511739326664, 50.278121082001], - [4.1626744412235, 50.288919839989], - [4.1766755914931, 50.284428214863], - [4.1812834659039, 50.274457878757], - [4.2032487281264, 50.274520097558], - [4.2218515438762, 50.256954384753], - [4.220693486293, 50.252205490042], - [4.2042939009819, 50.240013765122], - [4.183902128366, 50.232827043151], - [4.1719488669029, 50.218984966036], - [4.1507645008475, 50.213105993648], - [4.1601187752999, 50.202535082465], - [4.1539072088435, 50.181618869284], - [4.1493941237622, 50.174782630132], - [4.155121374967, 50.166769949356], - [4.1482848043049, 50.158154635639], - [4.1377525142419, 50.151611885511], - [4.1269212643952, 50.1350091215], - [4.1437071184687, 50.129042962388], - [4.1524471048199, 50.128949591969], - [4.1575165386038, 50.13552668129], - [4.1798368402129, 50.133557548619], - [4.1916907010978, 50.134590962587], - [4.1998869422006, 50.131081113334], - [4.2031708176335, 50.114887331607], - [4.1975019481259, 50.109173730897], - [4.2014079092014, 50.101540479066], - [4.2164449121556, 50.091114252843], - [4.2275402024598, 50.079679049395], - [4.2279959931456, 50.066368977978], - [4.1910964802776, 50.049491958302], - [4.1774115449025, 50.045996982435], - [4.1622238052451, 50.04898215278], - [4.1363736079231, 50.02046124405], - [4.1354830598469, 50.015042091472], - [4.1456765100433, 50.003909005549], - [4.1617434156239, 50.000912769341], - [4.1577077947817, 49.988248872528], - [4.1408937784816, 49.978756019427] - ] - ] - }, - "properties": { - "code": "32", - "name": "Hauts-de-France", - "ISOCODE": "FR-HDF" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [3.4147888224632, 48.390268550005], - [3.4220792964886, 48.413341016525], - [3.4136232739227, 48.414339744235], - [3.4118359218741, 48.421315638566], - [3.3919585015834, 48.424317659764], - [3.3969885214937, 48.434567766893], - [3.40356672054, 48.438738834692], - [3.4064837519344, 48.45245201333], - [3.3964392758484, 48.463728690957], - [3.3883584814447, 48.480409204068], - [3.4203545971629, 48.491547248944], - [3.4346387383078, 48.490251682592], - [3.4239142947726, 48.514360214193], - [3.4053967325678, 48.528014902933], - [3.4142391071512, 48.533468273095], - [3.4234477695307, 48.533559074894], - [3.4382278519026, 48.52833381057], - [3.4591848626137, 48.530740265696], - [3.4796007670225, 48.544709319952], - [3.4797700428722, 48.550623337178], - [3.4722961348839, 48.564913176785], - [3.4655215727904, 48.570484758136], - [3.4733827141903, 48.576873863934], - [3.4852747034173, 48.580426868353], - [3.4975057114927, 48.589954752513], - [3.5158639136582, 48.589782150903], - [3.5038548704771, 48.604807329745], - [3.5346181421224, 48.61035282902], - [3.555613758785, 48.620285576065], - [3.54590310832, 48.62806547987], - [3.5190643678345, 48.633470112339], - [3.517498400146, 48.643365240313], - [3.5031842529874, 48.645682506087], - [3.4881941587649, 48.644795887875], - [3.4765733783329, 48.637329365265], - [3.4531162175594, 48.633955984329], - [3.4604317354595, 48.653009078358], - [3.4408489379625, 48.66307286353], - [3.442691260176, 48.672503410154], - [3.4545564374114, 48.682119139778], - [3.4658318000834, 48.68619250912], - [3.4769690535178, 48.699355347111], - [3.4643082791983, 48.707378088042], - [3.4674670222781, 48.735224220894], - [3.440606129229, 48.738701946832], - [3.4358103469779, 48.753571711386], - [3.4256695187547, 48.755689536249], - [3.4129613380945, 48.753902050854], - [3.398657955437, 48.755599281994], - [3.4008409030783, 48.767256400859], - [3.4094228096892, 48.783835572028], - [3.4282111529646, 48.77948500421], - [3.442160723333, 48.784353883555], - [3.4412895824977, 48.800919300185], - [3.4104778884203, 48.803943061752], - [3.4041649646308, 48.80927626878], - [3.4166176467147, 48.817828781451], - [3.4321664968613, 48.812257770946], - [3.4544121814945, 48.813840024336], - [3.4703815627087, 48.8208976637], - [3.4809287140503, 48.81218578416], - [3.4872017702391, 48.815190371551], - [3.4849684486637, 48.825009748881], - [3.4895742506519, 48.839868156733], - [3.4851833721947, 48.851910309574], - [3.4824053162481, 48.864936735752], - [3.5021501743028, 48.871150830362], - [3.5130610888281, 48.894727857657], - [3.5285709402165, 48.912136556763], - [3.5600217013966, 48.917012631384], - [3.5698140355022, 48.914705628852], - [3.5738483617762, 48.921481440361], - [3.5744445323994, 48.939019123403], - [3.5888878773911, 48.943911238057], - [3.6015957850168, 48.944073853473], - [3.599065082592, 48.953591820396], - [3.5915529898914, 48.960375393399], - [3.5991756397826, 48.964609029368], - [3.6206544521613, 48.965944000018], - [3.6245368960791, 48.983751500727], - [3.6398926774554, 49.00408594583], - [3.6651641207485, 49.00563190452], - [3.6749656325958, 49.01172340253], - [3.6774822917619, 49.019164672527], - [3.6639547486924, 49.037308063462], - [3.6463115589695, 49.040590166906], - [3.6168408971943, 49.03648384631], - [3.6150194069679, 49.033500653248], - [3.5866997575834, 49.035795925017], - [3.5877081614204, 49.059394624683], - [3.6121535124357, 49.073560405492], - [3.6237954864751, 49.07086508435], - [3.6328719662821, 49.072789507462], - [3.6390507423115, 49.081304273735], - [3.6323412082709, 49.086509017267], - [3.6200761430148, 49.107193914382], - [3.6000114843908, 49.120690012831], - [3.6103949951775, 49.127543924136], - [3.6222521277141, 49.151105463129], - [3.6468735208387, 49.149122623512], - [3.6718043158638, 49.150635019402], - [3.6838376358892, 49.154490943481], - [3.6980322212385, 49.149827639227], - [3.7016210668145, 49.143083232127], - [3.717012841182, 49.147040324959], - [3.7395699991233, 49.156933396134], - [3.7487678456403, 49.157085133246], - [3.7511423125744, 49.177699202357], - [3.7372236091373, 49.177961424911], - [3.7254385553209, 49.173515978138], - [3.7043892552675, 49.181369443488], - [3.7005485386662, 49.187713241443], - [3.7048747423107, 49.198590103722], - [3.6971034744514, 49.205472659609], - [3.6839084510227, 49.197534060825], - [3.6817942876508, 49.205339977618], - [3.6584058277856, 49.211000985544], - [3.6516085786612, 49.221427253663], - [3.6650221926501, 49.223221302369], - [3.6763725147129, 49.23836076616], - [3.6707785326799, 49.239600299061], - [3.6637955993399, 49.253525125811], - [3.6552490233788, 49.262847772673], - [3.665132135016, 49.269657535247], - [3.6516094181931, 49.278360707849], - [3.65731758003, 49.291021541771], - [3.642801871342, 49.296041342828], - [3.6383343630554, 49.301354552133], - [3.646957318637, 49.315152582535], - [3.6601616875884, 49.318370386543], - [3.6703327730544, 49.325093317382], - [3.6891002697559, 49.326851228803], - [3.7012926310034, 49.332508221298], - [3.7216167324835, 49.335726303503], - [3.7422206958499, 49.336511221485], - [3.7410811711412, 49.347585887018], - [3.757818074306, 49.347604354229], - [3.7744622374234, 49.354639933222], - [3.7824442652216, 49.352774492617], - [3.8015158122099, 49.358931233427], - [3.8237576514434, 49.356987454563], - [3.832778633819, 49.350261851859], - [3.852156449301, 49.344654924149], - [3.858709482185, 49.353737278746], - [3.847475808218, 49.364589335554], - [3.8573468410854, 49.369945638107], - [3.8591446800636, 49.381351797144], - [3.8787822154646, 49.385857165921], - [3.9150740342564, 49.399385348956], - [3.9244391664348, 49.406179032892], - [3.9318314213659, 49.403084958448], - [3.9424137621592, 49.391461051265], - [3.9613104389204, 49.377346727516], - [3.9913652648133, 49.378222344205], - [4.0051087823761, 49.369208523497], - [4.0127326189721, 49.358302701884], - [4.0354977852679, 49.359905945249], - [4.0399063933123, 49.397393331324], - [4.047974391829, 49.405644080344], - [4.0502747365168, 49.412260783575], - [4.0422957368009, 49.416650795955], - [4.0431448752397, 49.429325986342], - [4.0376689955921, 49.438263004999], - [4.0500241066599, 49.445792451369], - [4.0602468457773, 49.447151466107], - [4.0529144654974, 49.460257089671], - [4.0423746855064, 49.468690509147], - [4.0407061703752, 49.50853200863], - [4.053158610381, 49.50864470004], - [4.0618580428951, 49.512563145954], - [4.0566240283661, 49.521046840185], - [4.0650976973335, 49.523284436368], - [4.0758354322042, 49.518345118497], - [4.0767490566918, 49.531314775054], - [4.0738006912951, 49.541617642486], - [4.0487683371061, 49.545272613584], - [4.0582914969504, 49.552548182169], - [4.0647940705926, 49.562212345669], - [4.0765722336699, 49.57112568919], - [4.0627821408209, 49.573556972194], - [4.0595605382919, 49.578709772836], - [4.065110143114, 49.594908552638], - [4.0541912133221, 49.595288700911], - [4.0313962718463, 49.614287229711], - [4.0252899216328, 49.62252962525], - [4.0379111248697, 49.622918577627], - [4.0432501448672, 49.6361455878], - [4.0511107039532, 49.634644480527], - [4.0695561865706, 49.636751879497], - [4.0993133133426, 49.628479985907], - [4.1147910874013, 49.635304817786], - [4.1254660330069, 49.650608155401], - [4.1223323319077, 49.659520506862], - [4.1270270054568, 49.677917606181], - [4.1475377596226, 49.678019756234], - [4.1441873561823, 49.688543920373], - [4.1783005290521, 49.698036101434], - [4.1920358906093, 49.710905599545], - [4.1926293949408, 49.715800885171], - [4.2064629076853, 49.723538323397], - [4.2247072679536, 49.727198714419], - [4.2290201625555, 49.745744739695], - [4.2500943395752, 49.757098850356], - [4.2382185523689, 49.767642716303], - [4.2266193641282, 49.773087602827], - [4.2142637924854, 49.771267691897], - [4.2095884562322, 49.781777002902], - [4.2224308204953, 49.786967474101], - [4.2270460920968, 49.793183108192], - [4.2147724033566, 49.806110108269], - [4.21989152014, 49.815134132001], - [4.2234884321126, 49.83376467914], - [4.2366221851606, 49.849699207378], - [4.2485056451169, 49.856518172527], - [4.2530532522095, 49.872272130792], - [4.2540638814402, 49.904004764573], - [4.2332446058305, 49.904304609803], - [4.2221391301616, 49.910422069675], - [4.2187089162197, 49.920686498287], - [4.2216024803296, 49.937902313306], - [4.2303959475263, 49.947204968202], - [4.2330628764399, 49.957824711709], - [4.2543844268894, 49.963631572174], - [4.2912940079087, 49.964058971117], - [4.3014826951044, 49.966176318126], - [4.3336522040504, 49.963560746982], - [4.3497118423918, 49.952178234237], - [4.3768351947882, 49.952426776681], - [4.3893549519505, 49.948471550376], - [4.4040767168602, 49.949066249233], - [4.4384321997593, 49.940983017693], - [4.4469381022162, 49.937508219405], - [4.4816075926688, 49.947850133409], - [4.5104090412086, 49.94668310443], - [4.5268882654673, 49.955655131433], - [4.5379600686649, 49.966578753488], - [4.562760480326, 49.969878068755], - [4.5737037707612, 49.980303220057], - [4.5930582012037, 49.985505370138], - [4.6234910262232, 49.986514367297], - [4.6718734438468, 49.997042353417], - [4.6888729975296, 49.99550012591], - [4.6851735062023, 50.008022811301], - [4.6855679524785, 50.027630172966], - [4.6964968238826, 50.048065555594], - [4.6959001788656, 50.059078634975], - [4.6831845410969, 50.064918750085], - [4.6930262279408, 50.084818698216], - [4.702082951479, 50.095527943315], - [4.7516371956114, 50.112096179533], - [4.7621611459353, 50.136395161183], - [4.7797569187354, 50.141423325848], - [4.8060299652994, 50.152928502564], - [4.8225821967951, 50.168317417174], - [4.8242908682916, 50.160729654086], - [4.8319939129987, 50.153954420888], - [4.8795586056388, 50.152031455312], - [4.8823453724974, 50.14107993006], - [4.8949695160522, 50.140358533811], - [4.8948873702986, 50.134603452171], - [4.8777264037364, 50.129652324419], - [4.8706357641482, 50.124646439548], - [4.8684744101123, 50.116644777365], - [4.8732123209519, 50.106964035761], - [4.8685258721021, 50.097622646189], - [4.8512334054671, 50.101365762653], - [4.8435535797063, 50.093372937943], - [4.8428707035034, 50.077477843885], - [4.8379348636099, 50.067107469075], - [4.8193112936247, 50.065876763524], - [4.8269925484463, 50.052897786762], - [4.8408180239435, 50.045906327693], - [4.8403927713466, 50.037589003447], - [4.8219880629777, 50.027412758579], - [4.8159415189027, 49.997896526955], - [4.8110027580392, 49.987971684423], - [4.794698989736, 49.978299033895], - [4.7901082811856, 49.970018583443], - [4.7909101015257, 49.958397607379], - [4.8149651624191, 49.95406557034], - [4.8294146767334, 49.949216811425], - [4.8393316997629, 49.950755525407], - [4.8501867463093, 49.946472183139], - [4.8581281971305, 49.93289732385], - [4.8813667911683, 49.921507940837], - [4.8876674649878, 49.90625840031], - [4.8833077168313, 49.896180747091], - [4.8692226992226, 49.883673952197], - [4.8621352372787, 49.869183589271], - [4.8541885068293, 49.864788994801], - [4.8517209454791, 49.856206959432], - [4.8554596773055, 49.848133613298], - [4.8675765193083, 49.840075948112], - [4.8738789972466, 49.820795895287], - [4.8670886259725, 49.814194172037], - [4.8553769519334, 49.792361619124], - [4.8622979513047, 49.789221252237], - [4.8809506209952, 49.792325737532], - [4.8875425422306, 49.788171662915], - [4.9102925994326, 49.786100854737], - [4.9309281605517, 49.786852475693], - [4.9561280722759, 49.801228329118], - [4.9988354545104, 49.799310967803], - [5.0089296334883, 49.781937129687], - [5.038248102836, 49.771525570008], - [5.0568010186231, 49.767535269907], - [5.063178302851, 49.761924291203], - [5.093500464756, 49.763726941381], - [5.1150746404809, 49.741436226312], - [5.1246896996546, 49.727395536304], - [5.1230703404202, 49.717305567328], - [5.143638993168, 49.709300418645], - [5.1533130431568, 49.718376209895], - [5.1615689619341, 49.714805281588], - [5.1658552238469, 49.707139109792], - [5.1662014036773, 49.692914558036], - [5.2066035044019, 49.693600820549], - [5.224566521714, 49.689429173903], - [5.2324451768337, 49.690737513629], - [5.2474131522102, 49.686990389293], - [5.2580461992444, 49.694260798854], - [5.2691845901837, 49.696071670408], - [5.2807611147651, 49.689032466702], - [5.2865633840877, 49.681818441276], - [5.3087401102806, 49.67122355633], - [5.3327639081107, 49.652787613834], - [5.3169728483899, 49.643830993309], - [5.3046743423384, 49.629430201402], - [5.3117321993999, 49.613546516808], - [5.3397669126158, 49.616560947097], - [5.3429882085979, 49.62674042769], - [5.3503363217496, 49.630862526305], - [5.3699196598296, 49.622570862025], - [5.3935393812988, 49.617086785829], - [5.4269132757795, 49.597344909551], - [5.4379714887151, 49.569737286799], - [5.4535526093259, 49.564921488307], - [5.4415639023972, 49.552225052944], - [5.4650619164038, 49.538862640494], - [5.4663281735759, 49.528430189479], - [5.447578521257, 49.517372874597], - [5.4647324749065, 49.505819945807], - [5.4709047865596, 49.497208726991], - [5.4801260050649, 49.5042048476], - [5.505773753281, 49.507560932221], - [5.5327282010479, 49.512980369896], - [5.556050367567, 49.52925089646], - [5.5934514158621, 49.521909724278], - [5.6002800743504, 49.517481440665], - [5.6036245138856, 49.508662087223], - [5.6115035973004, 49.506452254144], - [5.6213594702283, 49.519543514982], - [5.6159222684657, 49.527126195574], - [5.6203426845973, 49.533164237559], - [5.6368006429332, 49.545044778804], - [5.659773917278, 49.552868947481], - [5.6940713831155, 49.544034542904], - [5.7012603687509, 49.539519718091], - [5.7152828377125, 49.539335201991], - [5.7325199993123, 49.544461313993], - [5.7388640222945, 49.539320264271], - [5.7573750958904, 49.542824262522], - [5.7561520187018, 49.557012366016], - [5.7752184924057, 49.562644003065], - [5.7939345464924, 49.551240108366], - [5.817598826725, 49.54647885103], - [5.8192303780619, 49.537378081769], - [5.8369587698802, 49.542475474291], - [5.845880698823, 49.529954308627], - [5.8344148247219, 49.52630284488], - [5.8437151332678, 49.516116312314], - [5.8624510369037, 49.501642325338], - [5.869086517445, 49.498778421143], - [5.8934039932125, 49.496912378689], - [5.9131228430979, 49.501930487596], - [5.9275784580358, 49.498222137522], - [5.9399396363651, 49.500973515404], - [5.9543549817944, 49.494028742166], - [5.971776634974, 49.491320067133], - [5.9719898548951, 49.472772002285], - [5.9786602517285, 49.461213469236], - [5.9876579090328, 49.462416479402], - [5.9889818118401, 49.453330179107], - [6.0020130392406, 49.455793300138], - [6.0091636987779, 49.452599066022], - [6.0276447821787, 49.455537293057], - [6.0278782998684, 49.448439296043], - [6.0423723359911, 49.447931072295], - [6.0556220526452, 49.465361612667], - [6.0767052592775, 49.46365936715], - [6.0812989556481, 49.458562227473], - [6.100815774202, 49.452882062635], - [6.0978706962197, 49.464052470472], - [6.1020780284711, 49.470224838021], - [6.123492261297, 49.473753515732], - [6.1276565854344, 49.492885551721], - [6.1438043282733, 49.487268725521], - [6.1569057576806, 49.497456281788], - [6.1568855820521, 49.504390732514], - [6.1807922123531, 49.507740334246], - [6.1972680839746, 49.505966578682], - [6.2564100413301, 49.510019040716], - [6.2624116466706, 49.504724182106], - [6.2790979434498, 49.503352708062], - [6.2801065837471, 49.494398595906], - [6.296575175601, 49.480106832386], - [6.3124934980479, 49.480320202438], - [6.3328228233983, 49.469493947419], - [6.3424701827187, 49.469156069631], - [6.3643965239711, 49.459484546704], - [6.3666661689717, 49.466918673264], - [6.3919596630846, 49.464460320335], - [6.4076179611636, 49.467512030949], - [6.4190855362062, 49.474939817898], - [6.4301197078959, 49.476400021233], - [6.4395895671046, 49.467281846999], - [6.4700838654605, 49.462767275295], - [6.4848977061868, 49.452470714368], - [6.4976632893167, 49.450631546424], - [6.5211006756686, 49.437323933302], - [6.5329615902039, 49.435378532848], - [6.5522345196475, 49.423348210636], - [6.5543620111982, 49.418383989553], - [6.5387980688369, 49.412379406349], - [6.5405242817617, 49.401146060427], - [6.563422078373, 49.388145785152], - [6.5735876662047, 49.389262822438], - [6.5870798611261, 49.384936563478], - [6.5838802640069, 49.368622950588], - [6.5943948345255, 49.371471620308], - [6.6018563427332, 49.366781011608], - [6.5901277643478, 49.354745146744], - [6.5746297463216, 49.358198402077], - [6.5647703710395, 49.353135042025], - [6.5658428249466, 49.347352742548], - [6.5775969804184, 49.335791607751], - [6.5854756155499, 49.336044725988], - [6.5955861357867, 49.330270386186], - [6.5890778127358, 49.321999253582], - [6.6175388153446, 49.302170593505], - [6.6253921808815, 49.302190458195], - [6.6514018837136, 49.285835177653], - [6.6532277371416, 49.281116548287], - [6.6691862190043, 49.28060241979], - [6.6678733285273, 49.271339809982], - [6.6603276651427, 49.260969691767], - [6.6644435280076, 49.254561265753], - [6.6780682329599, 49.255060668414], - [6.6905439593201, 49.247633562325], - [6.6850959557718, 49.243739619385], - [6.6895788875244, 49.23533441597], - [6.6881350897594, 49.224445656782], - [6.6948030976287, 49.215906501206], - [6.7196514167899, 49.221375153791], - [6.7314966006431, 49.20608920408], - [6.7113631909174, 49.188538133309], - [6.7209675062078, 49.174994832853], - [6.7385082593927, 49.163661266785], - [6.7538830937062, 49.166177108553], - [6.7845561626242, 49.168086631556], - [6.8345431950591, 49.151466537904], - [6.8438548055183, 49.15565290074], - [6.8472694874904, 49.173487755725], - [6.8609474837466, 49.178714159357], - [6.8586496056677, 49.185917677931], - [6.8501173934685, 49.193288221075], - [6.8521803808921, 49.198655232881], - [6.8353839856274, 49.211325473776], - [6.8574425399538, 49.22227794129], - [6.8713243769655, 49.215472554027], - [6.8941557656397, 49.210197254284], - [6.9274131306062, 49.22252636726], - [6.9354186816977, 49.222156163157], - [6.9517226192342, 49.207276845843], - [6.9592812915983, 49.203004868528], - [6.9746332903262, 49.209818267623], - [6.9915096208719, 49.201388059087], - [7.0107084883023, 49.18812033997], - [7.0213917004814, 49.19318400175], - [7.0343248906795, 49.189680638467], - [7.0276496496344, 49.170085953929], - [7.0316782380222, 49.158253423186], - [7.046140831118, 49.138567199151], - [7.0446219986815, 49.121956113571], - [7.0497586225268, 49.114534084003], - [7.0660953113297, 49.114582077807], - [7.0719376289158, 49.124748468913], - [7.0888751761417, 49.130224426302], - [7.080281154448, 49.148775932362], - [7.097848351075, 49.155036981759], - [7.1132659041816, 49.151694619011], - [7.1040602508156, 49.146084305838], - [7.1048549037238, 49.13866216876], - [7.1264458967451, 49.141725132417], - [7.1315891478523, 49.131823319707], - [7.1567251793676, 49.121307004318], - [7.1632202862747, 49.126662546105], - [7.183939320312, 49.130726755298], - [7.201238747366, 49.116722335367], - [7.2066365546017, 49.123479912557], - [7.215896311218, 49.125515370531], - [7.2477915881698, 49.127982310796], - [7.2663442843038, 49.122591822505], - [7.2808871054318, 49.124111468981], - [7.2862671647554, 49.117590655005], - [7.2986472513209, 49.11745641594], - [7.3141283440236, 49.137565746438], - [7.3298410268211, 49.14494179986], - [7.3453334573199, 49.143232164996], - [7.3628465402247, 49.14521647821], - [7.36507550268, 49.171836295674], - [7.3813683009451, 49.175274386224], - [7.4450649197879, 49.184305403345], - [7.4399501767781, 49.180796023353], - [7.44067166015, 49.170483311686], - [7.4552262580683, 49.166323401106], - [7.4911929165521, 49.169804496794], - [7.4954431400151, 49.156591826787], - [7.5061698187802, 49.154030900401], - [7.4921500560289, 49.141863362811], - [7.5046995077445, 49.124892105953], - [7.5154385998767, 49.121168712175], - [7.5241643855785, 49.105491018786], - [7.5390064229804, 49.092067833166], - [7.5631836706272, 49.080458461345], - [7.570389598272, 49.079863764095], - [7.5999843985962, 49.083327857216], - [7.6311909357346, 49.06938180187], - [7.6352815933424, 49.054164206261], - [7.6744885818061, 49.045042026719], - [7.7073172414616, 49.054054167764], - [7.7235168959792, 49.052567266134], - [7.7322236434991, 49.044355921307], - [7.7464402457806, 49.047183991579], - [7.7564971746319, 49.04559846504], - [7.7699412681687, 49.048752604766], - [7.7761140800325, 49.056208919534], - [7.7930299497337, 49.063494910346], - [7.8004419678935, 49.064114797244], - [7.8203561465381, 49.053762416992], - [7.8445208331331, 49.044968895008], - [7.8554925156838, 49.035415738102], - [7.8687912381001, 49.034158646571], - [7.8816859515844, 49.045192019191], - [7.8916182565803, 49.047594615956], - [7.9166981594872, 49.04096573662], - [7.9346229019277, 49.057811113571], - [7.9450664235081, 49.055272126791], - [7.9473992180973, 49.049180307495], - [7.9673895507266, 49.038891633851], - [7.9748521290202, 49.027746491985], - [7.9819000059942, 49.025893418758], - [7.9991263159241, 49.028129921868], - [8.0227035606617, 49.018324772576], - [8.0480839535656, 49.014172777638], - [8.0671689833513, 48.999497718891], - [8.0913803067987, 48.989259837789], - [8.1213785685874, 48.98536003174], - [8.1414937386022, 48.978017561341], - [8.170147720846, 48.979348008223], - [8.1944015411941, 48.97743000256], - [8.1990893418219, 48.967223546641], - [8.2143424400211, 48.975096459051], - [8.2268223344758, 48.974092891976], - [8.2303986615424, 48.965607843829], - [8.2030347428027, 48.959937315879], - [8.1958012960897, 48.95621138585], - [8.1767812617108, 48.932012053804], - [8.1479387393441, 48.903810890927], - [8.1245755473601, 48.870687777488], - [8.1087697047883, 48.836985966255], - [8.1060606073282, 48.823689761204], - [8.0963232810048, 48.810383594146], - [8.0771060061123, 48.79529933543], - [8.0589448227056, 48.788812962432], - [8.0432668189723, 48.790730127013], - [8.0291352605611, 48.786478892711], - [8.022824712781, 48.768352845058], - [8.0147046028691, 48.761181073583], - [8.0049554561251, 48.758781494258], - [7.9817555144595, 48.761013532829], - [7.9717522881571, 48.757631517371], - [7.967222806413, 48.745410899662], - [7.9672574265548, 48.727017790766], - [7.9631443712693, 48.721355620767], - [7.8908881835121, 48.663098534076], - [7.8398216436445, 48.64137741102], - [7.8287156830025, 48.617707542634], - [7.8041684261793, 48.59233381119], - [7.8002369638938, 48.578683608778], - [7.8052303653608, 48.562215004891], - [7.8032686065062, 48.53382105272], - [7.8069547274248, 48.522278404185], - [7.8052011366022, 48.513573048614], - [7.7947080252984, 48.502090987414], - [7.7681925743495, 48.489661466269], - [7.7648837539549, 48.456687845258], - [7.7618878776799, 48.448985237501], - [7.735972029784, 48.404161681857], - [7.7318458832381, 48.39290556989], - [7.7320016795341, 48.375407113123], - [7.7450295673245, 48.335662070435], - [7.7398754620749, 48.321749343082], - [7.7332390210278, 48.317791507494], - [7.7031470724726, 48.308812723211], - [7.6960088664325, 48.304010337634], - [7.6893329145202, 48.293283776555], - [7.6889755135447, 48.279872718204], - [7.6678077852565, 48.223906110814], - [7.6645588474966, 48.219142022716], - [7.6440693964521, 48.207227606933], - [7.6311500892776, 48.185415410472], - [7.6011481776184, 48.158377720127], - [7.6006039800313, 48.138845916373], - [7.5970709855475, 48.13314660244], - [7.5828806945248, 48.126528231256], - [7.5773157720816, 48.120371112534], - [7.5799590690256, 48.10602146786], - [7.5774082960332, 48.095951430851], - [7.5692340186038, 48.081401774521], - [7.5738062890481, 48.05303432392], - [7.5684900054594, 48.03538248569], - [7.5716202896502, 48.030376143149], - [7.6054362344578, 48.003757828011], - [7.6186203571286, 47.985903661407], - [7.6220859200517, 47.972272417851], - [7.6088349991317, 47.95317720329], - [7.5936684690443, 47.94169373068], - [7.5832939822001, 47.931118516785], - [7.5805114095847, 47.924033439912], - [7.5835051671331, 47.903574715879], - [7.5769428779391, 47.891476151582], - [7.5567072919531, 47.879941001941], - [7.5571893871238, 47.863835316778], - [7.5635516323114, 47.852137004105], - [7.5614656894138, 47.838677705698], - [7.5497020250415, 47.822574606584], - [7.5453101034285, 47.811279821706], - [7.5312612420762, 47.78675983822], - [7.5310556236986, 47.770364762321], - [7.5480799502254, 47.739589288712], - [7.5434728959465, 47.721949347317], - [7.5347268810595, 47.714498714804], - [7.513751772485, 47.702815362123], - [7.5125727857792, 47.694845299819], - [7.5199928711004, 47.682662502885], - [7.5196030195489, 47.667762233129], - [7.5223404693959, 47.662321695948], - [7.5384262027619, 47.648803157063], - [7.5664726424667, 47.632895936057], - [7.5736049822678, 47.616665207802], - [7.5927957926469, 47.601779854527], - [7.5847073872051, 47.577266068409], - [7.5664182305498, 47.577551201666], - [7.5586696424832, 47.573257991504], - [7.5571945026924, 47.565031495571], - [7.503411179747, 47.54197564763], - [7.4990407869528, 47.535364446849], - [7.5013916497461, 47.528725219131], - [7.5110723875321, 47.529059304058], - [7.5192608270666, 47.534552788408], - [7.5314262789643, 47.528284428742], - [7.5277089588457, 47.521554981262], - [7.5054524965593, 47.514369511354], - [7.5105092147616, 47.504115173213], - [7.5067572708125, 47.495629213014], - [7.48685795056, 47.481732320167], - [7.4709073051131, 47.480413251158], - [7.4613662600979, 47.489038177399], - [7.450258499575, 47.490385814784], - [7.4345574218437, 47.497928259116], - [7.4226892243323, 47.484388248594], - [7.4556328646187, 47.472976694654], - [7.4450127609649, 47.461705406933], - [7.4300598912161, 47.459277177538], - [7.4225922859548, 47.447887544888], - [7.403410043504, 47.435524491145], - [7.3809450743678, 47.43186353224], - [7.3559606165998, 47.433851805177], - [7.3424777485662, 47.438085917762], - [7.3259229750377, 47.439342239117], - [7.3017355889987, 47.437813631568], - [7.2777859777968, 47.431673598095], - [7.2688212417913, 47.426648175648], - [7.2462981009916, 47.422198455938], - [7.2357678622845, 47.436929813322], - [7.2184754685329, 47.438111100818], - [7.2066841689176, 47.434823362792], - [7.1811906725339, 47.441480675914], - [7.1730742135766, 47.447181789836], - [7.1782210667095, 47.458502082925], - [7.1792412182665, 47.469724384789], - [7.1966955177699, 47.493482758971], - [7.1675377459529, 47.48940851862], - [7.1589517583051, 47.490757673188], - [7.1491338904597, 47.497609012469], - [7.1303408019013, 47.503028568514], - [7.1378734301853, 47.510602312684], - [7.1398015507652, 47.526066534747], - [7.132779554549, 47.539650016902], - [7.1192027781559, 47.547271468], - [7.1062174347916, 47.551377585032], - [7.1084182862429, 47.563026634543], - [7.1002437787202, 47.572348664104], - [7.0941662771964, 47.57363395328], - [7.0863359637946, 47.585555682513], - [7.0862717367469, 47.592564849851], - [7.0772390032257, 47.598070781665], - [7.0647156944354, 47.601059487848], - [7.0565070741684, 47.598940564806], - [7.0405190481699, 47.600960102238], - [7.0254214022991, 47.592680119451], - [7.005954748644, 47.602446062879], - [7.0105070572794, 47.605019604987], - [7.0049789727138, 47.619379272859], - [7.0180362046747, 47.642567039669], - [7.0188657902769, 47.650671462441], - [7.0391920612816, 47.650571191522], - [7.034430907222, 47.661170659864], - [7.0463174145898, 47.671501618284], - [7.0389466543978, 47.67798172185], - [7.0480463579808, 47.682334383614], - [7.0388002853848, 47.687529274973], - [7.037634862268, 47.694693941352], - [7.0264858913282, 47.701000683113], - [7.0374215531951, 47.721642148751], - [7.0194654399739, 47.736016178013], - [7.01596189708, 47.743229997088], - [6.9881803418573, 47.747811458115], - [6.9695414653395, 47.753879554684], - [6.9425641239541, 47.768619181766], - [6.9239978247236, 47.770469646258], - [6.9093369154314, 47.77760076122], - [6.9020863665368, 47.776444142208], - [6.8634725871955, 47.785157366739], - [6.8428287756472, 47.812907241333], - [6.8461756187967, 47.822942631655], - [6.8393097752574, 47.824784354742], - [6.8235333222471, 47.813051201983], - [6.7884284780797, 47.834484214023], - [6.792547182043, 47.840496971878], - [6.784819046343, 47.849620144546], - [6.7644647560578, 47.853457064113], - [6.7638501387584, 47.857307907712], - [6.7377719050045, 47.861560606022], - [6.7304382302284, 47.867533474661], - [6.7102378561952, 47.87576777925], - [6.703676313184, 47.881417920779], - [6.6696633226227, 47.89320009565], - [6.6455373160956, 47.904022779887], - [6.6302463718081, 47.925593409791], - [6.6017847198921, 47.944400335071], - [6.5682839276999, 47.93449546901], - [6.5421569547535, 47.902612242352], - [6.5032137734313, 47.89621857502], - [6.4786058641603, 47.885521654796], - [6.4560181967467, 47.906627288043], - [6.4604356473863, 47.91345059658], - [6.4363061456524, 47.936497632925], - [6.4317140631681, 47.943817555323], - [6.4088868226821, 47.943264452338], - [6.4053578977345, 47.95311233294], - [6.394005582089, 47.956962872907], - [6.3661530482729, 47.961943699906], - [6.338561201971, 47.954979185933], - [6.3245064287941, 47.949279774694], - [6.3097604456805, 47.949874526566], - [6.2964155087065, 47.955366770009], - [6.2773320945343, 47.953805619678], - [6.2379829343014, 47.932840414292], - [6.2191727089294, 47.93576331706], - [6.2052242815746, 47.932044890248], - [6.2079614134083, 47.94275319831], - [6.1973668542118, 47.951792167635], - [6.1784443979518, 47.954215961253], - [6.1679889957893, 47.952352981729], - [6.160691544552, 47.964476018183], - [6.1509430707726, 47.970556896575], - [6.164889049648, 47.976133645938], - [6.1523407152561, 47.994505212317], - [6.1560578216767, 48.006943160047], - [6.1317082771503, 48.023714993889], - [6.1165344664207, 48.019389790184], - [6.1092294655483, 48.012467456506], - [6.0977392042699, 48.01504283565], - [6.0809347681235, 48.012700464881], - [6.0725586040075, 48.015669051022], - [6.0411765157853, 48.00442320835], - [6.0269197055122, 47.990054024535], - [6.01816748796, 47.984218151119], - [6.0235129876577, 47.978198192556], - [6.0099778425991, 47.968676110152], - [6.0022660129604, 47.956088697125], - [5.9965110271696, 47.957642319673], - [5.9707820414319, 47.957206856313], - [5.9689005966348, 47.947407535025], - [5.953718196208, 47.937030199568], - [5.9296518654303, 47.938718128621], - [5.9377200582568, 47.950937203984], - [5.9595125543651, 47.965838580885], - [5.9475278158692, 47.979712022025], - [5.9367445426717, 47.978874239655], - [5.9217138598918, 47.970783700094], - [5.9180463526732, 47.94735518647], - [5.9001165275304, 47.9447526196], - [5.892904334004, 47.937140708276], - [5.8967125895793, 47.93202806731], - [5.884723650121, 47.92604631497], - [5.8908642780035, 47.910826243984], - [5.8864978594033, 47.902632285568], - [5.8699685694528, 47.900702448936], - [5.8483941586096, 47.904328585027], - [5.8366827972636, 47.885275579155], - [5.8214368328201, 47.868177826395], - [5.8279856830918, 47.851868490955], - [5.8053544944686, 47.8473671425], - [5.7981943193063, 47.852395843864], - [5.7611967718111, 47.859337964072], - [5.7534185985443, 47.851779809209], - [5.7441242763236, 47.848675592832], - [5.7460508220444, 47.823594453292], - [5.7326324521832, 47.817595239681], - [5.7038164823427, 47.822615914257], - [5.6902845680034, 47.818602061169], - [5.6816907857215, 47.801918539863], - [5.6766127410923, 47.77915552638], - [5.6799723393154, 47.76996692113], - [5.7050877892064, 47.769109267163], - [5.7092177964874, 47.763723848917], - [5.7061546847262, 47.752289930468], - [5.7092157661502, 47.744819092275], - [5.6933389025912, 47.737536114776], - [5.6848345035363, 47.722252488703], - [5.6841172724944, 47.711966308717], - [5.6934923219824, 47.703700407172], - [5.6946315676577, 47.691589089204], - [5.6900715815111, 47.684834261118], - [5.6602009774384, 47.684701035958], - [5.6534107674437, 47.677377804161], - [5.6350433227815, 47.676729768703], - [5.616916763571, 47.673506825098], - [5.6060928986115, 47.675206717975], - [5.5966797529575, 47.671689689304], - [5.580075717534, 47.703119392386], - [5.5672035170122, 47.705232598617], - [5.5429630425056, 47.685875666578], - [5.529779465589, 47.672825610683], - [5.5167714113012, 47.673665697151], - [5.482566377733, 47.684598405046], - [5.4725699801331, 47.67672271053], - [5.4460337073379, 47.670773959543], - [5.4357130635739, 47.670913872806], - [5.4265210893308, 47.675523872509], - [5.406340329799, 47.673403498326], - [5.3984746606309, 47.649083223607], - [5.4055917713039, 47.647770719631], - [5.3868465136168, 47.635662494107], - [5.3727580571009, 47.618659790315], - [5.3740797661661, 47.604538026913], - [5.3706351264232, 47.604807955246], - [5.3547654342374, 47.591360294209], - [5.3421656596273, 47.597942682873], - [5.3399999375357, 47.609069594411], - [5.3223487268523, 47.612359526718], - [5.2998385942923, 47.604925842894], - [5.2948617680378, 47.599202098387], - [5.2787977512377, 47.590248985309], - [5.2779061705699, 47.581361382365], - [5.2529216592041, 47.576950536437], - [5.248821805001, 47.588304655805], - [5.2395818018336, 47.595735741686], - [5.243335051832, 47.603257395562], - [5.2586017166912, 47.622216096373], - [5.2505435136739, 47.622148375054], - [5.2392323119847, 47.616130998734], - [5.2275663747918, 47.630461719186], - [5.2153019734879, 47.638776585158], - [5.1885815533539, 47.6495597478], - [5.1735955223689, 47.652564238401], - [5.173772704787, 47.661555338996], - [5.1793190058471, 47.679306571337], - [5.1613411137784, 47.679935696643], - [5.1562768819218, 47.668257175471], - [5.133419901405, 47.650731358395], - [5.1088743414175, 47.649687715835], - [5.1017263997014, 47.659487818247], - [5.0849169001544, 47.657252517205], - [5.0703648554737, 47.666753831482], - [5.0578872394562, 47.668305887057], - [5.0435832118687, 47.676513563124], - [5.0606448449781, 47.694789812394], - [5.0327945086565, 47.692333079799], - [5.0327622841789, 47.704076235268], - [5.0262670139789, 47.709492979045], - [5.0043602413418, 47.700727315079], - [4.9922739605095, 47.688315326064], - [4.9791098413952, 47.687763691185], - [4.9541385723681, 47.701462932734], - [4.9570644317617, 47.709406346338], - [4.9707033208711, 47.727636116595], - [4.9598932138082, 47.7544709258], - [4.9589919593761, 47.761870409828], - [4.9496050950308, 47.765006218324], - [4.9307398007716, 47.761333148797], - [4.9177846968097, 47.766614764213], - [4.9183050956308, 47.777311690703], - [4.9564491304036, 47.790048428128], - [4.9635761932156, 47.795106816319], - [4.9824009031204, 47.800350982387], - [4.9906198706093, 47.80709265473], - [4.9941266376295, 47.819746154602], - [4.9846956660801, 47.828868610045], - [4.968346106104, 47.831938726344], - [4.9622497289156, 47.839702282837], - [4.9603856383733, 47.857358065698], - [4.9540995648128, 47.866767159307], - [4.9282357147154, 47.871123778488], - [4.9281731599986, 47.88687190538], - [4.9190920876169, 47.894720464516], - [4.9018509649222, 47.921284863427], - [4.8944964422884, 47.922840464291], - [4.8693396784934, 47.917449806377], - [4.8569990661674, 47.89585146766], - [4.8340343917843, 47.906781834116], - [4.8289423070305, 47.915124211024], - [4.8467200449818, 47.924483556015], - [4.8501722212977, 47.929537855578], - [4.8660942377505, 47.940508774674], - [4.8520473231564, 47.956242158653], - [4.8410086317455, 47.96075264808], - [4.8194243190699, 47.960358692838], - [4.7865152517638, 47.964201285162], - [4.7946342537178, 47.983195170106], - [4.8091903248533, 47.990087845923], - [4.7932639090855, 47.996944239514], - [4.7890783024494, 48.007828564444], - [4.7492966391968, 48.004246587867], - [4.7199460898645, 48.008895516311], - [4.7042329730873, 48.020235152969], - [4.6985527278028, 48.023678273472], - [4.6732270680042, 48.015055346449], - [4.6633228351061, 48.020020302718], - [4.6396252873332, 48.025481582141], - [4.624062923698, 48.025381425202], - [4.612404633886, 48.030241950581], - [4.5826732520974, 48.029462774305], - [4.5718848731394, 48.025129476681], - [4.5673230090597, 48.018739473733], - [4.554850985404, 48.012319062721], - [4.5494258066747, 48.004460028844], - [4.5358174351871, 48.001208262], - [4.5455985119462, 47.98829443758], - [4.5552078832713, 47.985773515235], - [4.5599635426905, 47.971424167131], - [4.5533088051577, 47.967682340931], - [4.5315674205603, 47.969936101313], - [4.515002575681, 47.966197509296], - [4.4908013666212, 47.967274674022], - [4.482135195437, 47.963341049725], - [4.4490036624777, 47.957151982179], - [4.4394035883612, 47.958224025114], - [4.4275882888072, 47.965925181567], - [4.414350314367, 47.968207562341], - [4.3984909856202, 47.963428889937], - [4.3512833685724, 47.956581571066], - [4.3090008707807, 47.961170613198], - [4.2989694743195, 47.948924996538], - [4.3019415557721, 47.939722254759], - [4.293421363566, 47.925673564836], - [4.265592811732, 47.924112631788], - [4.2481126500816, 47.929257212053], - [4.2362857449326, 47.940458371541], - [4.2221403072235, 47.949693241055], - [4.2284618067273, 47.969156456849], - [4.2127809206222, 47.971725942982], - [4.1991540335482, 47.96994144352], - [4.2078363901654, 47.946594650302], - [4.201887052952, 47.94115816132], - [4.185389386493, 47.940250187972], - [4.185174863551, 47.953252557601], - [4.1814937489139, 47.957133674703], - [4.1663202417186, 47.959799899508], - [4.1459926719811, 47.947950206748], - [4.1418393873722, 47.937107385043], - [4.129354902453, 47.936039992343], - [4.111781787339, 47.926998395128], - [4.091392975551, 47.929644880288], - [4.0929746686253, 47.942978558738], - [4.0779088672194, 47.942844108199], - [4.0612633895691, 47.945564277098], - [4.0563117031209, 47.941500284277], - [4.0540462390611, 47.92948006618], - [4.0435079889664, 47.928107993449], - [4.0315462267821, 47.933180877458], - [4.0256492301283, 47.928321965076], - [4.0122015583229, 47.933099817884], - [4.0055897042792, 47.942010075901], - [3.9859571275878, 47.930640025592], - [3.9565980726161, 47.934513395738], - [3.9403268061141, 47.933140821871], - [3.9264502525997, 47.934566873068], - [3.9124676793978, 47.930259049768], - [3.8940363766278, 47.929291041133], - [3.9020918728463, 47.939168233154], - [3.9056151344907, 47.956390517208], - [3.9146958839434, 47.975696995879], - [3.9001846571879, 47.997906103474], - [3.885413743137, 48.00032841816], - [3.8783021550775, 47.979419574124], - [3.8618055931881, 47.976443001861], - [3.8643090405558, 47.98423551782], - [3.8500279607807, 47.983791517043], - [3.8398152772889, 48.003890008543], - [3.8619707432349, 48.004325555172], - [3.8700007142194, 48.002599720655], - [3.8706144760895, 48.015633804416], - [3.850085900943, 48.02786301681], - [3.8425469054526, 48.036189501683], - [3.8321550263001, 48.036232814814], - [3.8219783557759, 48.043916868834], - [3.827059329799, 48.047441428512], - [3.82635868236, 48.063603655356], - [3.8201608894357, 48.067459938552], - [3.8067979988969, 48.083861354137], - [3.7985814686078, 48.086366869837], - [3.7999733080105, 48.096695524271], - [3.8049696872895, 48.102546851574], - [3.7768827441699, 48.124996720039], - [3.7680208404533, 48.1337610774], - [3.7569100878728, 48.125307470037], - [3.7397131881194, 48.13275416124], - [3.7398043096241, 48.138688236138], - [3.7548293235379, 48.150244530897], - [3.7519004546533, 48.161296410098], - [3.74029665141, 48.169709598744], - [3.7184640557735, 48.175364157847], - [3.7141712164177, 48.170603029762], - [3.7223449458636, 48.156837755739], - [3.7050157631116, 48.144314849936], - [3.6936218940592, 48.14799982015], - [3.6887554871535, 48.144278615274], - [3.6678669028091, 48.139211019047], - [3.6595795108361, 48.15965193897], - [3.6506538178638, 48.168228410946], - [3.6414996909345, 48.183932963824], - [3.6318850111199, 48.189390079748], - [3.6195451473546, 48.190784507919], - [3.5941772424762, 48.178873395497], - [3.5751823496995, 48.188742267274], - [3.6009970264951, 48.20380086628], - [3.6111516430878, 48.21192986819], - [3.6140713717985, 48.220115584573], - [3.6216106602921, 48.225744034142], - [3.6136268888051, 48.232260725333], - [3.6046865808402, 48.229884548214], - [3.6000799784034, 48.237038015917], - [3.6138531799397, 48.24927733618], - [3.6243226631674, 48.254526756748], - [3.6168016799253, 48.271343511852], - [3.6117709302505, 48.274410870011], - [3.5881978504359, 48.280068510017], - [3.5777963307254, 48.284593393925], - [3.5857412014087, 48.29008425533], - [3.5879641370453, 48.300806415009], - [3.566569257901, 48.307425850859], - [3.5634067310877, 48.321440919656], - [3.5440725252239, 48.319671593536], - [3.5451019683919, 48.334543016882], - [3.530465379844, 48.342613415975], - [3.512139360519, 48.360812483948], - [3.4981541228456, 48.369098088724], - [3.4748808608132, 48.369266510477], - [3.4704759274371, 48.374667861079], - [3.4525885512991, 48.374388436099], - [3.4432494908564, 48.367382718502], - [3.4275090718968, 48.35997574793], - [3.4216806196631, 48.371727783356], - [3.4132728603068, 48.376300840268], - [3.4147888224632, 48.390268550005] - ] - ] - }, - "properties": { "code": "44", "name": "Grand Est", "ISOCODE": "FR-GES" } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-2.3047881362997, 46.709424180555], - [-2.2861197201191, 46.695671725007], - [-2.301824987103, 46.692466226408], - [-2.3141842217392, 46.695297761013], - [-2.3220102228855, 46.689370859197], - [-2.3339086309831, 46.686335754046], - [-2.3408401190474, 46.692270630681], - [-2.3628244691363, 46.694296913939], - [-2.3838250010365, 46.706769430868], - [-2.398720979356, 46.717509050217], - [-2.3987614706025, 46.723952024978], - [-2.3829626597426, 46.732131547952], - [-2.3715184087159, 46.732423656909], - [-2.3449955109993, 46.726619233181], - [-2.3403092656153, 46.720187286383], - [-2.3198084377514, 46.719332810947], - [-2.3047881362997, 46.709424180555] - ] - ], - [ - [ - [-0.89196408624284, 46.975820414303], - [-0.88901027465591, 46.970996440972], - [-0.87712517316223, 46.968538385199], - [-0.88359502600069, 46.962369264823], - [-0.87713915299698, 46.955855606347], - [-0.8837974960632, 46.950388590831], - [-0.87298436818273, 46.944344247689], - [-0.85194566174473, 46.946506302307], - [-0.84069799142137, 46.933043168191], - [-0.8291494586578, 46.933361861306], - [-0.8226181521192, 46.919496882097], - [-0.80739348796693, 46.9198254879], - [-0.81977358192379, 46.909085252586], - [-0.82020445366662, 46.899619563541], - [-0.8321856982677, 46.884537016923], - [-0.81527450811283, 46.879362263307], - [-0.80837576068615, 46.869152331931], - [-0.79477643718776, 46.861061682533], - [-0.78164600263284, 46.84282764491], - [-0.75815720893345, 46.831399908556], - [-0.74431663878843, 46.830243411726], - [-0.72752746779957, 46.821938243707], - [-0.70883784005248, 46.821063616454], - [-0.7008577279242, 46.80862581328], - [-0.71783828712373, 46.800521372146], - [-0.72731204616972, 46.76763065568], - [-0.72079949738479, 46.762538021138], - [-0.71534345605879, 46.751789737735], - [-0.70417950073791, 46.74945353126], - [-0.69413275947291, 46.742731111953], - [-0.70015414355827, 46.73579562558], - [-0.68397597689122, 46.727863770277], - [-0.66888364550954, 46.717232370405], - [-0.65619325740221, 46.700774517445], - [-0.68073310425929, 46.686803996225], - [-0.65787343587941, 46.676827080382], - [-0.63771460553181, 46.66348907218], - [-0.64924847916988, 46.653283801506], - [-0.65717243733762, 46.634619354943], - [-0.64405974899964, 46.638024434086], - [-0.62619906297455, 46.633078356802], - [-0.61411399285986, 46.62039129053], - [-0.62702650527698, 46.605651097302], - [-0.61671038535954, 46.598536566433], - [-0.61190793736705, 46.588307031212], - [-0.62456684878994, 46.577400290716], - [-0.61785426354446, 46.562043099519], - [-0.60670934401643, 46.562331917411], - [-0.60213244964129, 46.533279525109], - [-0.61002538912342, 46.52729145947], - [-0.63352903140625, 46.526545961083], - [-0.64519375671477, 46.5085710348], - [-0.636581601251, 46.506095217567], - [-0.62483750061224, 46.496362745962], - [-0.6241822995269, 46.48674665851], - [-0.6124273279524, 46.45873668738], - [-0.61983716832458, 46.452467117452], - [-0.61877090027571, 46.438854562232], - [-0.63684012869206, 46.432305656566], - [-0.6406468690526, 46.416224664644], - [-0.63282952674398, 46.403812558564], - [-0.63658749242212, 46.395578228534], - [-0.62088828506372, 46.390451131851], - [-0.61017966919341, 46.413733221347], - [-0.59417281123848, 46.410185950063], - [-0.58189775121858, 46.40217377528], - [-0.57238400631421, 46.400707224569], - [-0.56605536149932, 46.393082159377], - [-0.55052040300574, 46.393343323056], - [-0.53779518169029, 46.38646382767], - [-0.55764744918976, 46.363451353574], - [-0.57567653828611, 46.356508034766], - [-0.60325195656142, 46.361468010185], - [-0.60547077785894, 46.347207865876], - [-0.61868206115959, 46.339099077209], - [-0.63660376728023, 46.33759543996], - [-0.63998183318338, 46.322110972748], - [-0.64825320981615, 46.317143530802], - [-0.67227364916502, 46.316216425466], - [-0.69732735736344, 46.325092837487], - [-0.70757171772654, 46.317704940913], - [-0.7201487066083, 46.314890543328], - [-0.72191414100459, 46.302372661742], - [-0.73459543046899, 46.304955701863], - [-0.75047134037184, 46.304254425344], - [-0.75794915819339, 46.311254056955], - [-0.77570312778264, 46.318376375981], - [-0.78424343720168, 46.318861879535], - [-0.80247564445275, 46.325156566217], - [-0.80732128185426, 46.339293680039], - [-0.82415169186325, 46.335854967946], - [-0.83052754444062, 46.341529547924], - [-0.83988457052554, 46.340367099668], - [-0.84865539686859, 46.332512597898], - [-0.84487598314026, 46.3245597282], - [-0.8509424448661, 46.317185675508], - [-0.88767597392192, 46.326322589931], - [-0.89270136944125, 46.320101412175], - [-0.90480272235534, 46.313812430336], - [-0.93489398189823, 46.312857623927], - [-0.9612310671154, 46.323395683014], - [-0.9441551264402, 46.336048129241], - [-0.93790474501528, 46.353157499224], - [-0.92857576719505, 46.371051399922], - [-0.94112049397563, 46.367862165606], - [-0.95084003340185, 46.360617622608], - [-0.96451829359621, 46.365398033698], - [-0.97744453847283, 46.351108789901], - [-0.99521192821645, 46.350317645688], - [-1.013809705621, 46.35562286986], - [-1.0290641764217, 46.348867660129], - [-1.0525331368763, 46.342540560637], - [-1.0645117099073, 46.335517206168], - [-1.0807238252872, 46.321431313321], - [-1.0782951920661, 46.316911662518], - [-1.0997364979128, 46.314471710528], - [-1.113284059211, 46.316302232447], - [-1.1236420717667, 46.321795835911], - [-1.1294064331873, 46.310272328818], - [-1.1396042849062, 46.311220270269], - [-1.1633871701049, 46.324357697468], - [-1.1789816995107, 46.319237198363], - [-1.2010861494985, 46.316343408957], - [-1.2029476108593, 46.31299774522], - [-1.1955066954319, 46.300486336512], - [-1.2063790183713, 46.288844677353], - [-1.2073980363312, 46.266566974958], - [-1.233813730916, 46.279787036182], - [-1.244708256192, 46.287909226104], - [-1.2850844462619, 46.310943853415], - [-1.2958949852744, 46.323927342846], - [-1.3059782500842, 46.319190709176], - [-1.2950494049459, 46.30445585614], - [-1.298649918542, 46.298035215363], - [-1.3088839142276, 46.303381059905], - [-1.3209210907591, 46.321997394722], - [-1.3209769583137, 46.325733328602], - [-1.3456750283516, 46.34200224737], - [-1.3667385250608, 46.348611637782], - [-1.3817097975849, 46.341186215234], - [-1.4009756575246, 46.340508325831], - [-1.416442893161, 46.346032461982], - [-1.4284201012028, 46.347121382446], - [-1.4369731247534, 46.341049782884], - [-1.4659374486589, 46.342356465827], - [-1.4709432372166, 46.346061757066], - [-1.4771749719261, 46.363507201844], - [-1.4878020252489, 46.38139003894], - [-1.5021398541908, 46.397345234333], - [-1.5150666516907, 46.40429394231], - [-1.5377511402152, 46.409241650902], - [-1.5505012086214, 46.405427866679], - [-1.5849335376726, 46.408882191167], - [-1.6113093601133, 46.413418180507], - [-1.6270620551428, 46.414220589438], - [-1.6417221223658, 46.419202887095], - [-1.6563835193513, 46.431211054285], - [-1.6746027257341, 46.439923752177], - [-1.7038680334017, 46.448675063621], - [-1.7191201629207, 46.459167761425], - [-1.7521241921725, 46.474155783424], - [-1.777137894573, 46.492758626968], - [-1.7912930929301, 46.494497528609], - [-1.8033948364521, 46.488967027341], - [-1.8123442739131, 46.493416566185], - [-1.8186497595357, 46.518682691519], - [-1.8419594438554, 46.573013536296], - [-1.8484416100107, 46.585884833838], - [-1.8560152427178, 46.608580735068], - [-1.873382171513, 46.620915463581], - [-1.8822873872759, 46.630594948835], - [-1.8906734495839, 46.63469093819], - [-1.9035668912462, 46.647321849326], - [-1.9126335673886, 46.661558294252], - [-1.9428758596327, 46.692706115369], - [-1.9508357687079, 46.695651008644], - [-1.966128703921, 46.692012127622], - [-1.9784453425744, 46.703097268015], - [-1.9826649825899, 46.720311181056], - [-2.0002660579608, 46.733925400032], - [-2.0719487138764, 46.782812921452], - [-2.1171981955453, 46.803360927686], - [-2.1401926882177, 46.817151505205], - [-2.1445060316881, 46.826399169492], - [-2.1454334062879, 46.847809766579], - [-2.1489184130775, 46.869931347964], - [-2.1553427446113, 46.883151727981], - [-2.153823981621, 46.890149400164], - [-2.1188882449818, 46.893677330801], - [-2.1177998913797, 46.908317123363], - [-2.1034385508171, 46.920984664355], - [-2.062735433411, 46.948064118056], - [-2.0447808242546, 46.969115340219], - [-2.0453622399129, 46.979481273443], - [-2.0273622488649, 47.00992054926], - [-1.9975145183017, 47.018754751413], - [-1.9804130066429, 47.028904753758], - [-1.9836243655281, 47.029504869904], - [-1.9994147476381, 47.055759178647], - [-2.0047214099724, 47.061460656046], - [-2.0326019810958, 47.073513335424], - [-2.0485561088483, 47.086376045155], - [-2.0534773710676, 47.094116874449], - [-2.1048560377353, 47.108515739095], - [-2.1555855165283, 47.112834108468], - [-2.1776795960367, 47.12206186156], - [-2.2150136613872, 47.124060089367], - [-2.2268201491195, 47.130935989866], - [-2.2478150673853, 47.134022011309], - [-2.2295324163069, 47.144165117321], - [-2.226128166772, 47.152275320793], - [-2.2009562728096, 47.158406462933], - [-2.1802049236481, 47.15593411267], - [-2.1670631605228, 47.166180557901], - [-2.1582127475069, 47.196892590523], - [-2.158373708365, 47.209050666096], - [-2.1738613907116, 47.22651156379], - [-2.1778607172174, 47.236097279547], - [-2.1705455113596, 47.239751522169], - [-2.1699895453995, 47.268472297219], - [-2.1873608303178, 47.280622361747], - [-2.2055602597095, 47.271131396915], - [-2.2246437954795, 47.264387061764], - [-2.2278604253303, 47.256330261162], - [-2.2466914047133, 47.255988431427], - [-2.2698952747426, 47.2395647121], - [-2.3016402822796, 47.236400031931], - [-2.3396017707663, 47.255188453422], - [-2.3420962103188, 47.261755983579], - [-2.3552895948005, 47.27180855813], - [-2.369753264591, 47.277438171535], - [-2.3983798514521, 47.281448757206], - [-2.4203808400315, 47.276443831705], - [-2.4253877232221, 47.270964820355], - [-2.4165529129684, 47.25871256282], - [-2.4475351836802, 47.261757701956], - [-2.4555210807153, 47.268139889592], - [-2.4823147658717, 47.272979613928], - [-2.4990968218639, 47.280741885999], - [-2.5442517230455, 47.290107777197], - [-2.5449696912262, 47.297963681667], - [-2.5272130839477, 47.301551808752], - [-2.5138083846226, 47.298375734085], - [-2.5049900911185, 47.31367062334], - [-2.5029144731486, 47.328754801261], - [-2.5067783337792, 47.341390242029], - [-2.5211591992751, 47.358811002331], - [-2.531174634228, 47.365374694297], - [-2.5413465599302, 47.366005665021], - [-2.5589448655806, 47.374566485616], - [-2.5455487941567, 47.381126464909], - [-2.5341061627856, 47.382961282244], - [-2.5224115438117, 47.392240089144], - [-2.5000251663727, 47.404398607793], - [-2.4912351567464, 47.404811002726], - [-2.4826825430466, 47.412264457829], - [-2.4726723242774, 47.416083446873], - [-2.4583086370333, 47.412128481989], - [-2.4347120386263, 47.41323956486], - [-2.4330361363116, 47.416778409153], - [-2.450864597211, 47.425323844427], - [-2.4523914498156, 47.43382171003], - [-2.4482478800515, 47.441292494065], - [-2.4584933200854, 47.44812333026], - [-2.453436631799, 47.46207522621], - [-2.4400824549861, 47.465780511452], - [-2.4230228667484, 47.477116356867], - [-2.4168260809589, 47.462051729438], - [-2.399942719827, 47.455985214433], - [-2.390389834657, 47.456871614258], - [-2.3822957470498, 47.462247958261], - [-2.3709692377347, 47.463384419512], - [-2.3540439813745, 47.454520038759], - [-2.3463648513449, 47.457849990711], - [-2.3239404651198, 47.459700150766], - [-2.3128644981072, 47.464470727328], - [-2.3131411665125, 47.485904562585], - [-2.3036714616823, 47.49241124835], - [-2.2991228743726, 47.500477533121], - [-2.2965137349146, 47.51605888675], - [-2.2808336661554, 47.509587432992], - [-2.2629685042061, 47.512911091518], - [-2.2585200153358, 47.504528170665], - [-2.2656383885011, 47.501780337272], - [-2.2442830226806, 47.493603343394], - [-2.2199696788078, 47.505419526219], - [-2.2066684734953, 47.510040688056], - [-2.184622799181, 47.511938749674], - [-2.1837606578958, 47.501791543642], - [-2.192163736718, 47.496643815865], - [-2.1833018888491, 47.491696689458], - [-2.1636756892187, 47.49050097161], - [-2.1541860993449, 47.496364966339], - [-2.1529569093967, 47.510962718509], - [-2.1560180197876, 47.522028206659], - [-2.1073294072614, 47.531054380017], - [-2.0985591504874, 47.533957226787], - [-2.096829841083, 47.540329954312], - [-2.1038869792414, 47.549970178949], - [-2.096507139486, 47.572369157778], - [-2.1037228936324, 47.589435010495], - [-2.0992687458213, 47.597488169512], - [-2.0869236114994, 47.602779172942], - [-2.0849952925543, 47.621229400095], - [-2.0970339249479, 47.631356309182], - [-2.0898837230131, 47.642709543195], - [-2.0747327428802, 47.651662965349], - [-2.0579097595869, 47.649483633439], - [-2.050624831954, 47.651134018014], - [-2.0430946586878, 47.665696588636], - [-2.0357277498302, 47.668540889438], - [-2.013316284318, 47.666003385464], - [-2.0093555248025, 47.671376463587], - [-1.9852234827543, 47.683232805983], - [-1.9743811536912, 47.693936715593], - [-1.9690592974, 47.688368806165], - [-1.9691960862159, 47.677526213073], - [-1.9538162196423, 47.672268062701], - [-1.9363036351526, 47.686649217665], - [-1.8918360415668, 47.696328031406], - [-1.880073341802, 47.695308629028], - [-1.8640156728505, 47.706980966313], - [-1.8415465142207, 47.705493872656], - [-1.8250533703276, 47.708269117018], - [-1.8028599988222, 47.702303252055], - [-1.7724177137179, 47.698454240157], - [-1.754669062014, 47.70617243813], - [-1.7354918450583, 47.704030670166], - [-1.7292404629403, 47.699070332406], - [-1.7133831145586, 47.699308113335], - [-1.7051414585604, 47.709321517725], - [-1.6863422821157, 47.713034371357], - [-1.6641158381935, 47.711144721547], - [-1.6548173400684, 47.712589314425], - [-1.6454761757831, 47.721464189516], - [-1.6381811285931, 47.72231109575], - [-1.6390681088186, 47.731229794449], - [-1.6355680463584, 47.74265760999], - [-1.6260806089052, 47.756571625148], - [-1.6163542814852, 47.764155016463], - [-1.5981151893439, 47.766615164584], - [-1.5934046637562, 47.776049297939], - [-1.5519088415196, 47.784014922086], - [-1.5280610367888, 47.785843354761], - [-1.5202764448571, 47.793620421696], - [-1.5042386939766, 47.800947509052], - [-1.4928971911208, 47.798439989341], - [-1.4684440000216, 47.8059033883], - [-1.4669179596494, 47.809780189045], - [-1.4818132504128, 47.831893536154], - [-1.4628972269562, 47.833557723029], - [-1.435426799044, 47.83115216305], - [-1.4249168477477, 47.832841359769], - [-1.4178500987788, 47.827486856246], - [-1.3904289319245, 47.828276258082], - [-1.3813446142742, 47.822668998285], - [-1.3772932944092, 47.812713141041], - [-1.3631664145966, 47.801683607753], - [-1.3528652871869, 47.797688995885], - [-1.3184870728098, 47.792334376846], - [-1.2458850128779, 47.776717450948], - [-1.238247803597, 47.809992506553], - [-1.2327236903989, 47.820244561296], - [-1.2206362424472, 47.820389620636], - [-1.2139544800221, 47.844315066059], - [-1.222737283795, 47.852599843541], - [-1.2164918382318, 47.857201283697], - [-1.2030225271774, 47.856844148885], - [-1.1891865993477, 47.867976952617], - [-1.1969660077971, 47.8789391525], - [-1.1966306275523, 47.889267731968], - [-1.1762242926663, 47.897399695909], - [-1.1754814134505, 47.910385737305], - [-1.1663141666181, 47.923578184002], - [-1.1671197731246, 47.93471641408], - [-1.1595152529454, 47.939219922042], - [-1.1613811233462, 47.952310307885], - [-1.1539896711831, 47.96581664419], - [-1.1343829543823, 47.969309177864], - [-1.1260752876073, 47.973307719181], - [-1.1228021186321, 47.986671335599], - [-1.1026780017247, 47.989064346633], - [-1.0908100123801, 47.98774338815], - [-1.0709659537463, 47.981801155317], - [-1.045096271371, 47.987097320485], - [-1.021259621245, 47.994939309553], - [-1.0168893967587, 48.003728266054], - [-1.0182078693094, 48.012308274749], - [-1.0330632921231, 48.031188955766], - [-1.0277969380856, 48.044863699713], - [-1.033830641773, 48.05209341916], - [-1.0232901182126, 48.068911872714], - [-1.0406036968359, 48.078179883231], - [-1.0496111794277, 48.089801151393], - [-1.0527563302629, 48.10735152844], - [-1.0591416106668, 48.125077547289], - [-1.0602880762288, 48.15011075649], - [-1.0738876778536, 48.159661823604], - [-1.079605768256, 48.183480590178], - [-1.0747741638529, 48.198201373069], - [-1.0873107692067, 48.209806916083], - [-1.0806036422976, 48.21949752801], - [-1.0865989301563, 48.227529635817], - [-1.1000554557338, 48.25927761239], - [-1.0930408735111, 48.281855553692], - [-1.0820920155689, 48.298391604095], - [-1.0592143517314, 48.312093827381], - [-1.0450195990474, 48.32772872854], - [-1.0558182376068, 48.340683235403], - [-1.0598919207817, 48.350532594956], - [-1.0590029395387, 48.358994435228], - [-1.0646292178107, 48.368281337083], - [-1.053937234376, 48.383986913354], - [-1.0681208970941, 48.404716742704], - [-1.0783677064971, 48.413230711968], - [-1.0779200339792, 48.421477186884], - [-1.0827926455739, 48.433057379747], - [-1.0793641401546, 48.443271982049], - [-1.0654330620157, 48.451695678779], - [-1.0639645498148, 48.466954435587], - [-1.0741061961301, 48.473896847289], - [-1.0782957929126, 48.481154857966], - [-1.075717285974, 48.499392729686], - [-1.0701643748629, 48.508492017418], - [-1.0605497194866, 48.515346429697], - [-1.0514451903751, 48.509308794368], - [-1.0039961840993, 48.489172448089], - [-0.97225823660351, 48.494600246107], - [-0.96235389107925, 48.503667410902], - [-0.96425363340344, 48.510812466339], - [-0.95637394558324, 48.516620056723], - [-0.93371106054579, 48.51502659051], - [-0.92236046915212, 48.512389219916], - [-0.91847065624527, 48.500394275132], - [-0.89624907070572, 48.495083815873], - [-0.8774635305069, 48.499620464013], - [-0.86036021134895, 48.501458584456], - [-0.84610706675308, 48.498284307396], - [-0.83778925434372, 48.485178672867], - [-0.82728981063172, 48.476292220178], - [-0.8184585148882, 48.474291742186], - [-0.81322359143068, 48.455083144137], - [-0.79918376742683, 48.458939062295], - [-0.79756269441243, 48.465280274577], - [-0.77787285065978, 48.465413522216], - [-0.7785859196383, 48.453255439492], - [-0.77453904965747, 48.44327891903], - [-0.75727715268855, 48.436552496914], - [-0.73527798039621, 48.445048872201], - [-0.71509947351088, 48.448950147648], - [-0.7197695922356, 48.454578580623], - [-0.73585755427354, 48.461124917636], - [-0.73034187148783, 48.472703026439], - [-0.71121688547931, 48.470742279355], - [-0.70206934477695, 48.467207668633], - [-0.68799234091834, 48.469431032111], - [-0.68585273590642, 48.475468439014], - [-0.66895705284659, 48.486137900646], - [-0.66371844747552, 48.484471551488], - [-0.65363074848858, 48.459545681615], - [-0.6540003356242, 48.444278312957], - [-0.6175695455761, 48.458960402325], - [-0.59533674901115, 48.472630277201], - [-0.57152013702789, 48.469152972446], - [-0.55171796610154, 48.473119783464], - [-0.54510290980273, 48.482691035747], - [-0.5304424347088, 48.495164970256], - [-0.50506155077299, 48.505798828433], - [-0.4884950789804, 48.501617721865], - [-0.47820460128897, 48.501565713987], - [-0.47060334996255, 48.509716651644], - [-0.46226332328429, 48.512709151203], - [-0.43075652123879, 48.51181625112], - [-0.42497181740742, 48.507282953736], - [-0.41273449116925, 48.506498004612], - [-0.3991855056689, 48.510158714286], - [-0.39345664138171, 48.501835194106], - [-0.3676233888649, 48.492944315138], - [-0.36723974711241, 48.487748985001], - [-0.35349558279054, 48.483897081468], - [-0.35582138041634, 48.495673571366], - [-0.34337759223335, 48.500849863584], - [-0.32023332020671, 48.522923755915], - [-0.30280889062491, 48.517340998248], - [-0.27823048075492, 48.506986142113], - [-0.27155353070113, 48.507447568195], - [-0.26580141522268, 48.522782191648], - [-0.25395512234333, 48.525985631213], - [-0.24176789393774, 48.536388956089], - [-0.24635660161985, 48.542620878313], - [-0.26180425334438, 48.54789519181], - [-0.24264015511442, 48.567994064435], - [-0.23435242732491, 48.562336320193], - [-0.22107424204732, 48.560317301834], - [-0.20694246592994, 48.562946447212], - [-0.19398633186269, 48.554824404734], - [-0.1899589987284, 48.548884398226], - [-0.16937878261294, 48.536973156988], - [-0.14460271813847, 48.527754338423], - [-0.14501210976342, 48.521000343601], - [-0.15568415360731, 48.520496772763], - [-0.16634047065468, 48.51558387484], - [-0.1720909995602, 48.502134649047], - [-0.15856042497356, 48.496817021301], - [-0.14958860992305, 48.479781866844], - [-0.15336586853021, 48.476724917968], - [-0.14871763477939, 48.458069224847], - [-0.12454179598033, 48.449239552758], - [-0.10641182796282, 48.447519773766], - [-0.073006901765828, 48.450527118516], - [-0.072707535476378, 48.456927943118], - [-0.051890589271637, 48.453255414135], - [-0.049909790963035, 48.447628170085], - [-0.057355677768335, 48.42850299559], - [-0.053012801512314, 48.412716132961], - [-0.05669039654505, 48.398915618731], - [-0.052691042298523, 48.392979240085], - [-0.054527208218665, 48.382004461206], - [-0.050692623162423, 48.375201195715], - [-0.035753099663116, 48.384874683334], - [-0.022054721991416, 48.388059994444], - [-0.020363541559243, 48.393656323667], - [-0.0025641291874286, 48.397311951396], - [0.0065863250934992, 48.388521385965], - [0.020992722816365, 48.380200925309], - [0.062489872264419, 48.382213868151], - [0.056684859958794, 48.393974400454], - [0.067826622948661, 48.406115400716], - [0.083580132468228, 48.411137710408], - [0.09917046478078, 48.41034986941], - [0.11624768586472, 48.435555660302], - [0.15131906064063, 48.437226845695], - [0.15811789380158, 48.4440164218], - [0.15610127663516, 48.454794932825], - [0.16965670000587, 48.449364042801], - [0.16972375424173, 48.461776714307], - [0.18125494041244, 48.464965078387], - [0.18981304225187, 48.461891344828], - [0.21823241324651, 48.473790546424], - [0.22939338887665, 48.472578001816], - [0.25857807031538, 48.476710383834], - [0.26286221529839, 48.482954540393], - [0.27593434536664, 48.479055127239], - [0.29585588821524, 48.480174860693], - [0.31789727296834, 48.471938210212], - [0.32727632603609, 48.471072305832], - [0.33874148490671, 48.461599536909], - [0.35578465090337, 48.458217063582], - [0.36395632992898, 48.451631721658], - [0.36771793204951, 48.438272682172], - [0.38066015166482, 48.425411796164], - [0.38150787714381, 48.417547978808], - [0.37172370405574, 48.410451667862], - [0.37537215739256, 48.395740224588], - [0.37386118731698, 48.386969757082], - [0.37865893857906, 48.383227765197], - [0.38255236381737, 48.359498801305], - [0.38828549911199, 48.349122009475], - [0.38047838823167, 48.341797530871], - [0.38260989677575, 48.333828412247], - [0.3954029644226, 48.320549965535], - [0.4062203560807, 48.314621149851], - [0.41599578567133, 48.321625198799], - [0.42688901989368, 48.315425242308], - [0.43133408375288, 48.306638667446], - [0.44279870606142, 48.304629310064], - [0.46361198113469, 48.305016107657], - [0.48050090924161, 48.298592258919], - [0.48757654033176, 48.307795859172], - [0.50702990447062, 48.295832610533], - [0.49455647283795, 48.28681567575], - [0.51293004449183, 48.266874483366], - [0.5303000454288, 48.265496730429], - [0.53848634108307, 48.256987820339], - [0.53597049486367, 48.249844560134], - [0.55013843367508, 48.249395520335], - [0.56099429972633, 48.245949063769], - [0.57919146406902, 48.24436440048], - [0.63315984470535, 48.245553870078], - [0.63190429889268, 48.254754506701], - [0.64070530481206, 48.261221689671], - [0.65315095543918, 48.263702677988], - [0.67547108490982, 48.254740726504], - [0.68321966914477, 48.2485882228], - [0.7165758658899, 48.212094515686], - [0.72363045806996, 48.19813955141], - [0.73014979083029, 48.200521766169], - [0.73782963836386, 48.189069627691], - [0.75566254080812, 48.181981836049], - [0.76407918474979, 48.181599665308], - [0.79765841643139, 48.19445496608], - [0.79562670501545, 48.188043105362], - [0.80835901939965, 48.18611890903], - [0.82688955262783, 48.175387000045], - [0.83683452952269, 48.167352245345], - [0.86198925121346, 48.166816904566], - [0.88249645680993, 48.161766033434], - [0.91161206421963, 48.148858532659], - [0.91379809767445, 48.135125048448], - [0.89396954177329, 48.135535055964], - [0.87293551592102, 48.133408559058], - [0.852575219489, 48.133602174445], - [0.8553701454218, 48.122620579792], - [0.84121734187884, 48.103059710788], - [0.83268783335498, 48.098453526315], - [0.81435131408069, 48.098801731111], - [0.81516825904503, 48.093730753222], - [0.83920278539184, 48.09125189303], - [0.84483764311698, 48.086647072566], - [0.84302009925743, 48.072638200667], - [0.83460349982458, 48.070147734707], - [0.80118315423495, 48.071513555954], - [0.79653309159021, 48.05267766261], - [0.79747785616118, 48.037556987677], - [0.80877017226921, 48.031993621434], - [0.82520263947346, 48.03005952554], - [0.83672342747852, 48.034558745892], - [0.84155459904793, 48.029673676539], - [0.84052666414894, 48.021048593652], - [0.83170184588828, 48.006116934727], - [0.83237463233502, 47.996592094392], - [0.82622288599262, 47.991475839362], - [0.82428057343045, 47.982142037161], - [0.84529238839341, 47.954438931698], - [0.84579379193831, 47.941403140329], - [0.83727689039754, 47.937246716219], - [0.8171459594605, 47.934467914387], - [0.81211830142135, 47.928939306036], - [0.80913428200565, 47.91066247592], - [0.81721753097407, 47.892418803105], - [0.81018749426364, 47.890393591962], - [0.79799062776542, 47.898193546758], - [0.79002362904946, 47.912210300533], - [0.78051199587287, 47.910375216053], - [0.77032460906914, 47.902009083915], - [0.75986941585155, 47.898224938894], - [0.75733759497489, 47.884473514914], - [0.76468938104337, 47.866582667793], - [0.75916076452252, 47.859222188506], - [0.77401870735853, 47.851208382865], - [0.77457358541314, 47.839684494777], - [0.76841445732376, 47.831101351932], - [0.7588569724751, 47.833536394698], - [0.74540046495951, 47.825663057103], - [0.7397212944059, 47.814678933449], - [0.72484407861962, 47.798889067315], - [0.71263236035006, 47.790038970809], - [0.69798475487217, 47.788889445319], - [0.68931761050545, 47.779996503151], - [0.70344170542358, 47.769940283327], - [0.69688004266227, 47.764225211], - [0.67564997055176, 47.768962404729], - [0.63937932915856, 47.751572315523], - [0.62683335231018, 47.751793159891], - [0.61066958830157, 47.732034198596], - [0.61159726872368, 47.728134311986], - [0.59409530653203, 47.723105855723], - [0.58052041667909, 47.712330763793], - [0.59297009308968, 47.703590911989], - [0.59557114412559, 47.688312714504], - [0.60418662363095, 47.685607124967], - [0.61443245110168, 47.694215472574], - [0.61480416648326, 47.68275087954], - [0.60463738045699, 47.679968482062], - [0.58772733155021, 47.669617061038], - [0.55947922009731, 47.665994923777], - [0.54289746214182, 47.656203651505], - [0.51325174134335, 47.652863992861], - [0.4996666538331, 47.645272415067], - [0.4797670863672, 47.64329220016], - [0.47607646347987, 47.648011563852], - [0.45662804145159, 47.638826353606], - [0.45518198840301, 47.627017225989], - [0.44993291932188, 47.619329777154], - [0.42390524684004, 47.617824451176], - [0.39702255940301, 47.638927008339], - [0.38107503178189, 47.639064909321], - [0.36465430735157, 47.626011449659], - [0.36480446047317, 47.620165400372], - [0.37905609046241, 47.610779501442], - [0.39442325665444, 47.594393009892], - [0.40216586206278, 47.579002216555], - [0.3789542711163, 47.569104805534], - [0.36673611607068, 47.573457923574], - [0.33958580258874, 47.579472315073], - [0.33844630799321, 47.585030259946], - [0.32325488038268, 47.592888415747], - [0.29001704748145, 47.597728628188], - [0.27799234011686, 47.597381208395], - [0.26784211805055, 47.608672360211], - [0.25925309972834, 47.612253732911], - [0.23768269638563, 47.610966183961], - [0.23000044283917, 47.608397360802], - [0.23453049018557, 47.57797744555], - [0.21510267043528, 47.569975576615], - [0.20150198535452, 47.544324126228], - [0.19334553772128, 47.539118278038], - [0.2034912870347, 47.533330991541], - [0.20807030184987, 47.526432351568], - [0.22491484141757, 47.52709951065], - [0.22008941253351, 47.511490494119], - [0.22010664406864, 47.50195233416], - [0.2007181726014, 47.484545277708], - [0.18979781155354, 47.460723327297], - [0.18093772230519, 47.453404824236], - [0.18527899163678, 47.424736116162], - [0.18138204745888, 47.417824739063], - [0.15385793095636, 47.398727021572], - [0.16948959021545, 47.395646092388], - [0.16798792612309, 47.386934066036], - [0.18296214025622, 47.38033044936], - [0.15845843664067, 47.366157059648], - [0.14165395029201, 47.361961427199], - [0.14796868770319, 47.348447803202], - [0.13898837615883, 47.33824318552], - [0.13125388952305, 47.33409233868], - [0.11745694898776, 47.332342613969], - [0.11786940351405, 47.325601141531], - [0.10924461524906, 47.313421774727], - [0.099012801986365, 47.308139754432], - [0.078978960154079, 47.282822156056], - [0.082848635358157, 47.274168568836], - [0.074829460019472, 47.248048474897], - [0.072492820219795, 47.220509854465], - [0.053277684947378, 47.197182170708], - [0.066596690426524, 47.189796025762], - [0.063052886223431, 47.175281799504], - [0.053830055961677, 47.16373374848], - [0.049480342584696, 47.168623012343], - [0.036501918227681, 47.160445278183], - [0.019016376976915, 47.175754285742], - [-0.010739414334867, 47.15751215065], - [-0.034011786935389, 47.127334734816], - [-0.040856468682482, 47.112928627112], - [-0.039289561029516, 47.108055925394], - [-0.026535185584925, 47.105798471803], - [-0.029234974929682, 47.095257561848], - [-0.03562437381954, 47.086261232309], - [-0.044169213959146, 47.093239781385], - [-0.060661742719366, 47.09514763055], - [-0.085909274640678, 47.101010256779], - [-0.098719424061378, 47.090117668474], - [-0.10150441660145, 47.08326376928], - [-0.1021158452812, 47.06480003115], - [-0.12837866130337, 47.054429041651], - [-0.13712137046296, 47.058426719475], - [-0.13678317485552, 47.063924090649], - [-0.14766123249005, 47.069855194532], - [-0.16599081567743, 47.064596744766], - [-0.17848280781104, 47.069769863363], - [-0.15947412139976, 47.085935164317], - [-0.14555986138819, 47.091366857483], - [-0.14125473717962, 47.103745079728], - [-0.15721241252843, 47.101780345038], - [-0.18483829723431, 47.108333434925], - [-0.18649707382196, 47.101547033466], - [-0.20607508372803, 47.09328538537], - [-0.24153284082639, 47.1057275119], - [-0.25537525933525, 47.100286155299], - [-0.2879249468488, 47.101438124536], - [-0.29895654468625, 47.099250384298], - [-0.3142510524831, 47.091338121731], - [-0.34146522078634, 47.087332841605], - [-0.34498093726671, 47.09177095779], - [-0.35741871073042, 47.094026201074], - [-0.38345929253299, 47.087697613397], - [-0.39631090043786, 47.087753100169], - [-0.40078196900616, 47.070768258647], - [-0.40931478414398, 47.06628937151], - [-0.4258514883367, 47.072734496606], - [-0.44613773080732, 47.067564764094], - [-0.46425258388436, 47.067574344676], - [-0.47634088284647, 47.054361886701], - [-0.48553786553274, 47.065209021486], - [-0.47635021862705, 47.072140351589], - [-0.46404370608664, 47.074916254874], - [-0.46269595640292, 47.081925505658], - [-0.49533635185918, 47.082386236675], - [-0.54271238339803, 47.068832410093], - [-0.55953163443577, 47.061883133164], - [-0.55518423855519, 47.056996280386], - [-0.55557809674432, 47.043528672476], - [-0.54222220688058, 47.035131514655], - [-0.54565906541349, 47.029239134682], - [-0.56225950470765, 47.030666495232], - [-0.56546953385811, 47.019423404938], - [-0.57652952670071, 47.017027138711], - [-0.58641245768408, 47.009979798203], - [-0.59549628776894, 46.997955261938], - [-0.61997935748009, 46.993321083755], - [-0.62971403267853, 46.996851004876], - [-0.64422463763986, 46.995602969044], - [-0.67605096460406, 47.000124265341], - [-0.68018770038511, 46.987658683517], - [-0.69637193445308, 46.994704963523], - [-0.71305373485382, 46.986070538333], - [-0.72790285494931, 46.994993345811], - [-0.74336287533223, 47.000701964828], - [-0.74760195615967, 46.991449795286], - [-0.76195094831376, 46.992143526967], - [-0.7738784459047, 47.004247669583], - [-0.78757295549441, 47.005134613994], - [-0.80044123437384, 46.994429249843], - [-0.82697025806846, 46.992404409034], - [-0.83853635765488, 46.985503699072], - [-0.85591689102216, 46.979079840933], - [-0.84915622076396, 46.973775579115], - [-0.85764337306558, 46.969397597368], - [-0.8797290084417, 46.975803771985], - [-0.89196408624284, 46.975820414303] - ] - ], - [ - [ - [-2.1980717999149, 46.951171361358], - [-2.2231531353026, 46.965271208862], - [-2.24244506994, 46.965359299904], - [-2.2543982518538, 46.958122789992], - [-2.2643746646818, 46.960876831901], - [-2.2867885516843, 46.983496627052], - [-2.3010946565916, 46.989047601607], - [-2.3020317382713, 46.997616748051], - [-2.2925186097225, 47.012555022671], - [-2.3042054070871, 47.025060693728], - [-2.2872328794469, 47.024618443862], - [-2.2770692805571, 47.029038135374], - [-2.2520693981849, 47.027966094972], - [-2.2401364085503, 47.017854413154], - [-2.2256229438599, 47.016854719984], - [-2.2183338551942, 47.007817147562], - [-2.2188122423342, 46.991712728633], - [-2.2317459039104, 46.989711402141], - [-2.2374732061994, 46.981958292077], - [-2.2307387193565, 46.973215731503], - [-2.2202452222616, 46.973677309765], - [-2.1571813233526, 46.950033359583], - [-2.147437598884, 46.934194164793], - [-2.1482142491069, 46.913528857926], - [-2.1532523636713, 46.906933207426], - [-2.1538987641986, 46.895779045368], - [-2.1679391075448, 46.911177523069], - [-2.1735282996294, 46.925285521446], - [-2.1814210323948, 46.937050160658], - [-2.1980717999149, 46.951171361358] - ] - ] - ] - }, - "properties": { - "code": "52", - "name": "Pays de la Loire", - "ISOCODE": "FR-PDL" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-2.123706231573, 48.604405598781], - [-2.1344816510593, 48.611643369666], - [-2.1387092211901, 48.623233227338], - [-2.1503248031597, 48.627053106726], - [-2.1334957716008, 48.637088444356], - [-2.1265123781579, 48.634929665212], - [-2.1151461030982, 48.640574814888], - [-2.0947895329223, 48.633600009628], - [-2.0812159935305, 48.636113938227], - [-2.0780785794745, 48.640606840627], - [-2.0486923175112, 48.636979345527], - [-2.0550978778787, 48.627308162871], - [-2.0479009976935, 48.624252682515], - [-2.0302658489221, 48.6230402789], - [-2.033552700515, 48.609450561797], - [-2.0174903342468, 48.594980622161], - [-2.0135140412299, 48.587519422472], - [-2.0052387594747, 48.588372025047], - [-1.9946685652283, 48.578424268262], - [-2.0117662463935, 48.571458977418], - [-2.0068973832739, 48.566110094782], - [-1.9937102250766, 48.559543529591], - [-1.9881857185433, 48.545116037063], - [-1.9754496222253, 48.543657395889], - [-1.9723506867232, 48.534638480013], - [-1.9870341945665, 48.525657088599], - [-1.9857586016344, 48.510758659842], - [-1.9694960306022, 48.517140952252], - [-1.9693306755786, 48.523178885752], - [-1.9547996276675, 48.522834435277], - [-1.9480341971128, 48.538808017557], - [-1.9591400244487, 48.536361793933], - [-1.9689408101185, 48.539138345101], - [-1.9611555626668, 48.550288017551], - [-1.9630715571236, 48.555935046598], - [-1.9742078804092, 48.557792898054], - [-1.9725748468616, 48.565573079381], - [-1.9819961816246, 48.573998865405], - [-1.9812825658863, 48.586178667101], - [-1.9592506615667, 48.576213011519], - [-1.9541860424982, 48.578971353192], - [-1.9678110801245, 48.592143118152], - [-1.9919484014969, 48.594107232092], - [-2.0110006809827, 48.604725563563], - [-2.0023941362904, 48.613055635525], - [-2.0151419114746, 48.613981579065], - [-2.0183123229782, 48.620076905126], - [-2.0136236164094, 48.627010189175], - [-2.0259859464428, 48.634438167728], - [-2.0202576088523, 48.639910339273], - [-2.028955958438, 48.646918475376], - [-1.995234996379, 48.660138273521], - [-1.9823378822778, 48.672879184591], - [-1.9849669305136, 48.681290529268], - [-1.9698310104514, 48.686323909863], - [-1.9562928614112, 48.680756983693], - [-1.9425512881469, 48.685719750246], - [-1.9380749435582, 48.694458847226], - [-1.905837502586, 48.690484641205], - [-1.8905081889989, 48.698944421746], - [-1.8745830467838, 48.694893912876], - [-1.8561321209073, 48.704854504824], - [-1.8371380899061, 48.679159712785], - [-1.8627254313798, 48.667274741628], - [-1.8633547109875, 48.659420480639], - [-1.8716628360703, 48.64740579596], - [-1.8666223954374, 48.635297119972], - [-1.8569581590835, 48.624576587136], - [-1.8450690325377, 48.616364824796], - [-1.8221188983634, 48.610007750763], - [-1.7641502834765, 48.60355862709], - [-1.7017734211771, 48.607233355175], - [-1.6751542146205, 48.6114230382], - [-1.6611083246856, 48.61074613166], - [-1.5710894380361, 48.626441149011], - [-1.5651218255326, 48.614397614273], - [-1.5484855009897, 48.607366445795], - [-1.5396520439432, 48.599920146805], - [-1.544011006159, 48.587389031303], - [-1.5429927154595, 48.580446827686], - [-1.5286423474284, 48.579179736848], - [-1.5189218496777, 48.56659037005], - [-1.5291705857729, 48.560522846907], - [-1.5332855375208, 48.548003700235], - [-1.519564216371, 48.540018024898], - [-1.512277768964, 48.524834117063], - [-1.4956406657121, 48.508898642535], - [-1.4899417997599, 48.489372357681], - [-1.4731862558468, 48.485386403307], - [-1.4670861806686, 48.48806705044], - [-1.4492603238973, 48.486102161685], - [-1.4362528107594, 48.478368227471], - [-1.4403529299447, 48.471140825579], - [-1.429135838213, 48.462552562467], - [-1.4064842226881, 48.460604032661], - [-1.3966756078064, 48.462052879811], - [-1.3772457352191, 48.458282754255], - [-1.3463506846745, 48.471670546758], - [-1.3450398581682, 48.484912379925], - [-1.3393694052252, 48.490940085021], - [-1.3302853407871, 48.489791631794], - [-1.3263369028651, 48.498742404871], - [-1.3025661285534, 48.498856875187], - [-1.2882493476535, 48.506990431124], - [-1.2792034941015, 48.509166405754], - [-1.2695738148732, 48.524058079717], - [-1.2722481273192, 48.533920331809], - [-1.254274261097, 48.543267861594], - [-1.2363206998987, 48.538079953318], - [-1.2158216927154, 48.538229063528], - [-1.2065516679372, 48.542206088249], - [-1.1889294040247, 48.52889285086], - [-1.1699074343327, 48.531104413062], - [-1.156893190635, 48.521285821117], - [-1.1470767776101, 48.517498765375], - [-1.1305430206604, 48.52170348713], - [-1.1160901264748, 48.5212333284], - [-1.0969039995416, 48.512091635194], - [-1.0701643748629, 48.508492017418], - [-1.075717285974, 48.499392729686], - [-1.0782957929126, 48.481154857966], - [-1.0741061961301, 48.473896847289], - [-1.0639645498148, 48.466954435587], - [-1.0654330620157, 48.451695678779], - [-1.0793641401546, 48.443271982049], - [-1.0827926455739, 48.433057379747], - [-1.0779200339792, 48.421477186884], - [-1.0783677064971, 48.413230711968], - [-1.0681208970941, 48.404716742704], - [-1.053937234376, 48.383986913354], - [-1.0646292178107, 48.368281337083], - [-1.0590029395387, 48.358994435228], - [-1.0598919207817, 48.350532594956], - [-1.0558182376068, 48.340683235403], - [-1.0450195990474, 48.32772872854], - [-1.0592143517314, 48.312093827381], - [-1.0820920155689, 48.298391604095], - [-1.0930408735111, 48.281855553692], - [-1.1000554557338, 48.25927761239], - [-1.0865989301563, 48.227529635817], - [-1.0806036422976, 48.21949752801], - [-1.0873107692067, 48.209806916083], - [-1.0747741638529, 48.198201373069], - [-1.079605768256, 48.183480590178], - [-1.0738876778536, 48.159661823604], - [-1.0602880762288, 48.15011075649], - [-1.0591416106668, 48.125077547289], - [-1.0527563302629, 48.10735152844], - [-1.0496111794277, 48.089801151393], - [-1.0406036968359, 48.078179883231], - [-1.0232901182126, 48.068911872714], - [-1.033830641773, 48.05209341916], - [-1.0277969380856, 48.044863699713], - [-1.0330632921231, 48.031188955766], - [-1.0182078693094, 48.012308274749], - [-1.0168893967587, 48.003728266054], - [-1.021259621245, 47.994939309553], - [-1.045096271371, 47.987097320485], - [-1.0709659537463, 47.981801155317], - [-1.0908100123801, 47.98774338815], - [-1.1026780017247, 47.989064346633], - [-1.1228021186321, 47.986671335599], - [-1.1260752876073, 47.973307719181], - [-1.1343829543823, 47.969309177864], - [-1.1539896711831, 47.96581664419], - [-1.1613811233462, 47.952310307885], - [-1.1595152529454, 47.939219922042], - [-1.1671197731246, 47.93471641408], - [-1.1663141666181, 47.923578184002], - [-1.1754814134505, 47.910385737305], - [-1.1762242926663, 47.897399695909], - [-1.1966306275523, 47.889267731968], - [-1.1969660077971, 47.8789391525], - [-1.1891865993477, 47.867976952617], - [-1.2030225271774, 47.856844148885], - [-1.2164918382318, 47.857201283697], - [-1.222737283795, 47.852599843541], - [-1.2139544800221, 47.844315066059], - [-1.2206362424472, 47.820389620636], - [-1.2327236903989, 47.820244561296], - [-1.238247803597, 47.809992506553], - [-1.2458850128779, 47.776717450948], - [-1.3184870728098, 47.792334376846], - [-1.3528652871869, 47.797688995885], - [-1.3631664145966, 47.801683607753], - [-1.3772932944092, 47.812713141041], - [-1.3813446142742, 47.822668998285], - [-1.3904289319245, 47.828276258082], - [-1.4178500987788, 47.827486856246], - [-1.4249168477477, 47.832841359769], - [-1.435426799044, 47.83115216305], - [-1.4628972269562, 47.833557723029], - [-1.4818132504128, 47.831893536154], - [-1.4669179596494, 47.809780189045], - [-1.4684440000216, 47.8059033883], - [-1.4928971911208, 47.798439989341], - [-1.5042386939766, 47.800947509052], - [-1.5202764448571, 47.793620421696], - [-1.5280610367888, 47.785843354761], - [-1.5519088415196, 47.784014922086], - [-1.5934046637562, 47.776049297939], - [-1.5981151893439, 47.766615164584], - [-1.6163542814852, 47.764155016463], - [-1.6260806089052, 47.756571625148], - [-1.6355680463584, 47.74265760999], - [-1.6390681088186, 47.731229794449], - [-1.6381811285931, 47.72231109575], - [-1.6454761757831, 47.721464189516], - [-1.6548173400684, 47.712589314425], - [-1.6641158381935, 47.711144721547], - [-1.6863422821157, 47.713034371357], - [-1.7051414585604, 47.709321517725], - [-1.7133831145586, 47.699308113335], - [-1.7292404629403, 47.699070332406], - [-1.7354918450583, 47.704030670166], - [-1.754669062014, 47.70617243813], - [-1.7724177137179, 47.698454240157], - [-1.8028599988222, 47.702303252055], - [-1.8250533703276, 47.708269117018], - [-1.8415465142207, 47.705493872656], - [-1.8640156728505, 47.706980966313], - [-1.880073341802, 47.695308629028], - [-1.8918360415668, 47.696328031406], - [-1.9363036351526, 47.686649217665], - [-1.9538162196423, 47.672268062701], - [-1.9691960862159, 47.677526213073], - [-1.9690592974, 47.688368806165], - [-1.9743811536912, 47.693936715593], - [-1.9852234827543, 47.683232805983], - [-2.0093555248025, 47.671376463587], - [-2.013316284318, 47.666003385464], - [-2.0357277498302, 47.668540889438], - [-2.0430946586878, 47.665696588636], - [-2.050624831954, 47.651134018014], - [-2.0579097595869, 47.649483633439], - [-2.0747327428802, 47.651662965349], - [-2.0898837230131, 47.642709543195], - [-2.0970339249479, 47.631356309182], - [-2.0849952925543, 47.621229400095], - [-2.0869236114994, 47.602779172942], - [-2.0992687458213, 47.597488169512], - [-2.1037228936324, 47.589435010495], - [-2.096507139486, 47.572369157778], - [-2.1038869792414, 47.549970178949], - [-2.096829841083, 47.540329954312], - [-2.0985591504874, 47.533957226787], - [-2.1073294072614, 47.531054380017], - [-2.1560180197876, 47.522028206659], - [-2.1529569093967, 47.510962718509], - [-2.1541860993449, 47.496364966339], - [-2.1636756892187, 47.49050097161], - [-2.1833018888491, 47.491696689458], - [-2.192163736718, 47.496643815865], - [-2.1837606578958, 47.501791543642], - [-2.184622799181, 47.511938749674], - [-2.2066684734953, 47.510040688056], - [-2.2199696788078, 47.505419526219], - [-2.2442830226806, 47.493603343394], - [-2.2656383885011, 47.501780337272], - [-2.2585200153358, 47.504528170665], - [-2.2629685042061, 47.512911091518], - [-2.2808336661554, 47.509587432992], - [-2.2965137349146, 47.51605888675], - [-2.2991228743726, 47.500477533121], - [-2.3036714616823, 47.49241124835], - [-2.3131411665125, 47.485904562585], - [-2.3128644981072, 47.464470727328], - [-2.3239404651198, 47.459700150766], - [-2.3463648513449, 47.457849990711], - [-2.3540439813745, 47.454520038759], - [-2.3709692377347, 47.463384419512], - [-2.3822957470498, 47.462247958261], - [-2.390389834657, 47.456871614258], - [-2.399942719827, 47.455985214433], - [-2.4168260809589, 47.462051729438], - [-2.4230228667484, 47.477116356867], - [-2.4400824549861, 47.465780511452], - [-2.453436631799, 47.46207522621], - [-2.4584933200854, 47.44812333026], - [-2.4658187901467, 47.449802093033], - [-2.4804252485529, 47.441963079767], - [-2.4905571762189, 47.446452306175], - [-2.4991358587812, 47.457540137914], - [-2.4889918501409, 47.468033929888], - [-2.4895613282298, 47.474318089711], - [-2.5014022305882, 47.490518823453], - [-2.4937203667699, 47.496719184685], - [-2.4812257438732, 47.495301802155], - [-2.4674495382969, 47.482627274277], - [-2.4566319282751, 47.48649918664], - [-2.4412197566934, 47.496237972727], - [-2.4544840297362, 47.50695431439], - [-2.4661501788359, 47.511698006916], - [-2.5001329684216, 47.51780353312], - [-2.5051621326726, 47.523097091258], - [-2.5177342670181, 47.526379124102], - [-2.5371281384206, 47.525677358637], - [-2.544757222766, 47.518191712712], - [-2.556172145179, 47.512844753872], - [-2.5731695264161, 47.516856993244], - [-2.594864559507, 47.517692920359], - [-2.6058118321704, 47.515243886611], - [-2.6094941252327, 47.509770061639], - [-2.6219180968561, 47.504642830448], - [-2.6238853198868, 47.513043352663], - [-2.6115717799579, 47.514953612529], - [-2.6022307930281, 47.523493027492], - [-2.5867175567864, 47.525970484889], - [-2.5735934948752, 47.545947890549], - [-2.559927969571, 47.551149229397], - [-2.5868524345501, 47.563522718081], - [-2.5830102351203, 47.544093495058], - [-2.5950997790228, 47.533860071767], - [-2.6043518130413, 47.531033499908], - [-2.6174572174627, 47.544577945836], - [-2.6197613863302, 47.553120080253], - [-2.6293614142026, 47.549477103692], - [-2.620896300155, 47.543139537592], - [-2.6260111378038, 47.530694282534], - [-2.650778878004, 47.53796758253], - [-2.6490453148391, 47.52871403441], - [-2.6323971230563, 47.529969402681], - [-2.6362963357436, 47.518311441107], - [-2.6643333232928, 47.518636731497], - [-2.6663632444305, 47.509807344989], - [-2.6812726425683, 47.495823503923], - [-2.7155101291894, 47.505556661277], - [-2.7383720762509, 47.503971748148], - [-2.7464594152624, 47.499178906102], - [-2.7686807216999, 47.497547306973], - [-2.783917445629, 47.494171291195], - [-2.8002084412293, 47.487274625086], - [-2.820249819976, 47.488552319653], - [-2.8494633183276, 47.498714210554], - [-2.8473220606719, 47.511542665428], - [-2.8715617319757, 47.532180194766], - [-2.8867515062552, 47.537761181776], - [-2.9053147509137, 47.53836615706], - [-2.9127507683233, 47.542221258931], - [-2.9100056010075, 47.552847850571], - [-2.8785251291933, 47.563822706213], - [-2.875192617398, 47.554282188137], - [-2.8584601857729, 47.550660977545], - [-2.8388802388699, 47.543739594278], - [-2.8209970086207, 47.542598073556], - [-2.8136150628512, 47.552976639704], - [-2.8053232688367, 47.55465217436], - [-2.7983285187393, 47.54772871596], - [-2.7763664183452, 47.54637816599], - [-2.7800781208128, 47.539995170204], - [-2.7656825016343, 47.536349797594], - [-2.7305342531378, 47.542486209183], - [-2.7342085766345, 47.552059689], - [-2.7271201608591, 47.565348713813], - [-2.718401891601, 47.567486439417], - [-2.7138081735774, 47.579402737983], - [-2.7019511829809, 47.589922636913], - [-2.690000413435, 47.589629645348], - [-2.6893684783836, 47.605475178645], - [-2.6858183369351, 47.617254810447], - [-2.6923951849212, 47.626672194763], - [-2.7101869757185, 47.639250695814], - [-2.7157627565643, 47.632178418633], - [-2.7087829379002, 47.628877096117], - [-2.7068583824059, 47.619857356802], - [-2.6956189709006, 47.610971810996], - [-2.7134014552926, 47.594743232814], - [-2.7210591260306, 47.603107177713], - [-2.7399219165437, 47.603861056383], - [-2.7785759216065, 47.619153949607], - [-2.77515576774, 47.625162720347], - [-2.75071220553, 47.62190984793], - [-2.7577479466431, 47.632011754392], - [-2.7805769364965, 47.626366080093], - [-2.783280446908, 47.620929683472], - [-2.7980253950261, 47.619354324535], - [-2.8119448383424, 47.622321040814], - [-2.8312640065467, 47.613981447085], - [-2.8511519612038, 47.619021300579], - [-2.8683761763816, 47.607049879913], - [-2.8655555799982, 47.59730655576], - [-2.8851907493108, 47.603861505908], - [-2.8912992832039, 47.600251055152], - [-2.8902083733527, 47.583759203505], - [-2.8954479129042, 47.581494812737], - [-2.9055871359278, 47.590412052268], - [-2.9147145838282, 47.591080951176], - [-2.9320958563755, 47.600389216902], - [-2.9391279484845, 47.594030070059], - [-2.9468653824632, 47.607515814492], - [-2.9492053452579, 47.620300052943], - [-2.9472179938322, 47.629097718661], - [-2.9588456568534, 47.627387400625], - [-2.9578927965981, 47.637888099776], - [-2.9766375186447, 47.658576868252], - [-2.9821003804206, 47.655171781052], - [-2.97168067816, 47.64505595394], - [-2.9744526066848, 47.639664006057], - [-2.9632708243662, 47.631813523307], - [-2.9607067176234, 47.61463764084], - [-2.9653352276132, 47.601579987203], - [-2.9551759826158, 47.598617982077], - [-2.9649822013031, 47.588704907763], - [-2.9559516107688, 47.579651698895], - [-2.9478608265496, 47.57934478607], - [-2.9428107767728, 47.568756823617], - [-2.9288355514896, 47.55474379968], - [-2.9390911128082, 47.554097415693], - [-2.9514873302492, 47.558895907795], - [-2.9684287009143, 47.557175629484], - [-2.9751788529976, 47.576068937045], - [-2.9862715309049, 47.577092614249], - [-3.0046872395881, 47.566465469116], - [-3.0123216393668, 47.580152522478], - [-3.0228793917846, 47.578112102992], - [-3.0519734636492, 47.577936411937], - [-3.0618814356091, 47.572517204359], - [-3.0738615376547, 47.571102118951], - [-3.0948867588573, 47.564687759616], - [-3.1065771207183, 47.574439681659], - [-3.1035813029521, 47.583875926358], - [-3.1304124258813, 47.595994049527], - [-3.1294822782995, 47.574986035076], - [-3.1232563342713, 47.569508296346], - [-3.1283264863235, 47.561155649925], - [-3.1333592273144, 47.544057720215], - [-3.1329801809192, 47.532940856127], - [-3.1265682020102, 47.515571637729], - [-3.1202689791131, 47.510193523895], - [-3.1187883281895, 47.498761676631], - [-3.1099177580575, 47.490095631431], - [-3.0945017004357, 47.48241159014], - [-3.0996239283661, 47.472659280146], - [-3.1178050237851, 47.478792204713], - [-3.1310768433146, 47.473341925849], - [-3.1438097827755, 47.483493521766], - [-3.1517804898255, 47.50387573681], - [-3.1510830738294, 47.513240426176], - [-3.1573094190216, 47.527777147938], - [-3.1424420706013, 47.533350052758], - [-3.1345818841427, 47.548823597227], - [-3.1383935427929, 47.559327887066], - [-3.1397514157784, 47.579595849581], - [-3.1494412574588, 47.596336414351], - [-3.1583739612277, 47.606980561921], - [-3.1926562041934, 47.621875108037], - [-3.2097600334006, 47.640692378745], - [-3.2048348154766, 47.652288439195], - [-3.2081335587952, 47.663424134982], - [-3.1905086423658, 47.682544307053], - [-3.1622880424494, 47.680141384504], - [-3.1644539365533, 47.694638292784], - [-3.1439930291641, 47.706565141662], - [-3.1280609317144, 47.705557196606], - [-3.1314171963644, 47.71283707385], - [-3.1259673333102, 47.723460801941], - [-3.1493565548036, 47.721594210494], - [-3.1493499098343, 47.737340126654], - [-3.161008055411, 47.73537887244], - [-3.1600761495593, 47.728976621526], - [-3.1746363055634, 47.723148407528], - [-3.1687810020071, 47.704127663223], - [-3.1946342296882, 47.703535994129], - [-3.2010030764507, 47.697371761748], - [-3.1903765047009, 47.690890020276], - [-3.2065278804508, 47.672945488888], - [-3.2189237367916, 47.666402207114], - [-3.2109296431363, 47.655062695853], - [-3.2149712295324, 47.645222611468], - [-3.2432568168208, 47.662982381585], - [-3.2708992101864, 47.678872772241], - [-3.2878626003796, 47.700955753699], - [-3.2955569268779, 47.702972616608], - [-3.3111004799677, 47.701542726074], - [-3.3175576788183, 47.705105920031], - [-3.3442241173144, 47.70835964689], - [-3.3540324221035, 47.703281447243], - [-3.3639383928461, 47.709062757079], - [-3.3427340330799, 47.719388265728], - [-3.3490788842555, 47.72931295062], - [-3.3361476227018, 47.728997614093], - [-3.3215796590588, 47.73525260819], - [-3.3135540007668, 47.746463211784], - [-3.3057310772884, 47.74833039532], - [-3.2978560945981, 47.768548758802], - [-3.3167640619277, 47.756496417246], - [-3.3238312586273, 47.747889296245], - [-3.333042362653, 47.743689149171], - [-3.3514545169925, 47.744278722575], - [-3.355826445994, 47.732409734807], - [-3.3671634315263, 47.725361124789], - [-3.3675668898422, 47.717947229619], - [-3.3871098313882, 47.701882463104], - [-3.4304385578708, 47.703212158669], - [-3.4527575847414, 47.695339093038], - [-3.4638578995064, 47.705832814713], - [-3.4794942914613, 47.714386099732], - [-3.5002201860967, 47.731474104191], - [-3.5051314690212, 47.745702801045], - [-3.5209645860149, 47.757667759682], - [-3.5300214665675, 47.774211050848], - [-3.5299340818516, 47.782467704588], - [-3.517378148747, 47.805037826205], - [-3.5359136532779, 47.816437273679], - [-3.5382920395566, 47.836022619198], - [-3.5240076654732, 47.844903373787], - [-3.5230056259837, 47.849146782891], - [-3.5396500367876, 47.836179727509], - [-3.5415735087146, 47.82278037201], - [-3.5212461653116, 47.798868078426], - [-3.53051730308, 47.791502368376], - [-3.5323062304549, 47.768279004853], - [-3.5386367482063, 47.762638930067], - [-3.562529511804, 47.768194082971], - [-3.5791169851307, 47.767577448995], - [-3.6173276112343, 47.769506747908], - [-3.6430519534915, 47.774569329599], - [-3.646811655721, 47.778818400263], - [-3.670099651884, 47.782985158502], - [-3.6808379137393, 47.776793307824], - [-3.7178229109781, 47.796523695646], - [-3.7218026363467, 47.803803079831], - [-3.7325477346747, 47.802927405811], - [-3.7613726155759, 47.790506218278], - [-3.788240857282, 47.791328352432], - [-3.8005952117561, 47.787633600944], - [-3.8206986898906, 47.797035412496], - [-3.837052356745, 47.797206603832], - [-3.84572557896, 47.792371643861], - [-3.8536850991125, 47.803179888577], - [-3.8653715148318, 47.809482207573], - [-3.8923444805786, 47.83181405626], - [-3.9024789053236, 47.835940597569], - [-3.8953330854301, 47.851456671771], - [-3.9059288131014, 47.856053716976], - [-3.9115007019574, 47.870280163635], - [-3.9291853857822, 47.870728950257], - [-3.9318150077372, 47.879930376283], - [-3.9474946202184, 47.88711050561], - [-3.952255270628, 47.894973629627], - [-3.9727069922104, 47.897113244288], - [-3.9900268008062, 47.88273500359], - [-3.9835079713108, 47.860854249073], - [-3.9771079749911, 47.853797355451], - [-4.0255592139411, 47.850394911361], - [-4.0415835187416, 47.845999773961], - [-4.0552180992409, 47.858290390712], - [-4.0777227188397, 47.86652861959], - [-4.0973424184599, 47.861927402731], - [-4.1033355392797, 47.870935392975], - [-4.1175131185531, 47.876648114661], - [-4.1153436191058, 47.884957075533], - [-4.1240918215755, 47.887653785645], - [-4.1350139887829, 47.899319953681], - [-4.1413175344589, 47.900932795588], - [-4.1443044504617, 47.910760442169], - [-4.139164438695, 47.922460714167], - [-4.1265483456658, 47.930694608117], - [-4.1181705270283, 47.930255946671], - [-4.1097870557359, 47.936359164606], - [-4.1095097330885, 47.949458350167], - [-4.1003241613862, 47.951228624348], - [-4.0942945270601, 47.962343568462], - [-4.1016356245061, 47.971599102005], - [-4.1154592154278, 47.951971718394], - [-4.1108035376299, 47.93643845362], - [-4.116939924733, 47.931723171212], - [-4.1308490218786, 47.931268820614], - [-4.1387273378666, 47.924044327709], - [-4.148590650053, 47.911784831299], - [-4.1456111634641, 47.897377929735], - [-4.137658347962, 47.894582683745], - [-4.1214402638717, 47.882431174872], - [-4.1220414405413, 47.877480552794], - [-4.112806039055, 47.864208198344], - [-4.1260449628811, 47.86417449959], - [-4.1384513988378, 47.860372058344], - [-4.1635564220902, 47.849182582249], - [-4.1751052516171, 47.875971241102], - [-4.1956480316546, 47.876129863398], - [-4.1917255768507, 47.867926519042], - [-4.1985842210014, 47.859767014899], - [-4.1893682915433, 47.851394814187], - [-4.1779637170825, 47.83448054667], - [-4.169637218528, 47.835983578473], - [-4.1594079263305, 47.831817813505], - [-4.1665272788102, 47.81562709526], - [-4.1747961215709, 47.807720089743], - [-4.1923054697265, 47.797375930596], - [-4.2102829763554, 47.801668247082], - [-4.2165941479178, 47.793145496317], - [-4.2324661582068, 47.793694342897], - [-4.2692270352914, 47.79098118891], - [-4.278552033431, 47.793791055402], - [-4.2908690668838, 47.792683316384], - [-4.2985421674237, 47.800459408076], - [-4.3121953465001, 47.800898472176], - [-4.32359993608, 47.79785495381], - [-4.3422494923384, 47.799673907649], - [-4.3624139097032, 47.795739457012], - [-4.3740484540088, 47.798476085782], - [-4.3716114594948, 47.80777876035], - [-4.3792556925789, 47.822050720065], - [-4.3498041232485, 47.83078661588], - [-4.3461614463077, 47.83907388297], - [-4.3476870805612, 47.849005072333], - [-4.3600577158752, 47.879146436114], - [-4.362571617849, 47.889266575343], - [-4.3790334776921, 47.914084532462], - [-4.395188435554, 47.934409652937], - [-4.4098520632839, 47.946650557322], - [-4.4246099459353, 47.963758867166], - [-4.453576704456, 47.981777636275], - [-4.4746789421278, 47.985624949661], - [-4.4826653312528, 47.993824490611], - [-4.4980779158615, 48.001183040607], - [-4.5148540490952, 48.006067730047], - [-4.5256147363767, 48.006067667043], - [-4.5368798410152, 48.012491630575], - [-4.550096166671, 48.011713275225], - [-4.5647501712087, 47.999835676162], - [-4.5907349278799, 48.006794478828], - [-4.597265482557, 48.014881869407], - [-4.6171479742083, 48.016679284353], - [-4.6329587586753, 48.029369004938], - [-4.6460824443153, 48.023304150678], - [-4.6997885692117, 48.027891769892], - [-4.7105952929249, 48.033199609507], - [-4.7230336277547, 48.033599672317], - [-4.7319575291791, 48.040893238655], - [-4.7124639734808, 48.042115186074], - [-4.7068549694099, 48.04999288348], - [-4.7163398904359, 48.062467036521], - [-4.6737632606973, 48.060829548571], - [-4.6682276450746, 48.070200865274], - [-4.6329864019536, 48.067656900838], - [-4.6212551186766, 48.06856975321], - [-4.6055567322678, 48.075144649057], - [-4.5906529113319, 48.077103152291], - [-4.580146507137, 48.081908477448], - [-4.5536216450504, 48.077132543168], - [-4.545646174971, 48.07845960521], - [-4.5400399621897, 48.087861184127], - [-4.5144760304168, 48.088898642776], - [-4.4885983026016, 48.086473104323], - [-4.4666979200231, 48.099143817185], - [-4.4569858789134, 48.096458543946], - [-4.4350684487573, 48.097322911408], - [-4.4102497059559, 48.106021543169], - [-4.3936094931243, 48.10445280582], - [-4.3743959355115, 48.110158765816], - [-4.3635604323207, 48.109200301918], - [-4.3549482349925, 48.10371581043], - [-4.3069930438711, 48.089185950308], - [-4.2969336649841, 48.092193155485], - [-4.2842966027835, 48.107888922651], - [-4.2815394753097, 48.115546749849], - [-4.2837291765835, 48.126894213088], - [-4.2717328773485, 48.133054000516], - [-4.2730799332603, 48.154184060675], - [-4.2928384902475, 48.157399085257], - [-4.2962454405426, 48.165147430098], - [-4.2920632378488, 48.176348134139], - [-4.3011254537871, 48.191446905092], - [-4.3154011317845, 48.201590197777], - [-4.3320245514115, 48.206252420086], - [-4.3674265719653, 48.205181125133], - [-4.3764153744941, 48.217120653017], - [-4.4112371701961, 48.222749021747], - [-4.4255159659909, 48.229011423558], - [-4.4317441689243, 48.228335889789], - [-4.4483574330506, 48.23563427883], - [-4.4890285598601, 48.236209131048], - [-4.5016483626877, 48.230419925672], - [-4.4973006895694, 48.216773771782], - [-4.5107514965186, 48.211453602973], - [-4.5193408676193, 48.192342464231], - [-4.5401709706587, 48.180690252545], - [-4.5396785660795, 48.170248926865], - [-4.5541303580757, 48.16777550723], - [-4.5539161923019, 48.178980950953], - [-4.5496466530638, 48.194260085865], - [-4.5534516878496, 48.211909181419], - [-4.5640287889751, 48.2322275804], - [-4.5542366911133, 48.23943709268], - [-4.5445091004672, 48.241191020822], - [-4.5438454031052, 48.24868513629], - [-4.5581833509587, 48.259044482063], - [-4.5637622836517, 48.255323260533], - [-4.583579355652, 48.25247718648], - [-4.619781824787, 48.263922349139], - [-4.6151754712281, 48.272608618322], - [-4.6191913673877, 48.277687013901], - [-4.6010351660969, 48.283328561972], - [-4.5920264733919, 48.274941952167], - [-4.580510315487, 48.276821723646], - [-4.5666092529207, 48.286340243106], - [-4.5722318933548, 48.298194529125], - [-4.5710033055979, 48.305488131525], - [-4.5793535371685, 48.317985114981], - [-4.5711366097909, 48.33004851178], - [-4.5554096260061, 48.33827322458], - [-4.534438235185, 48.341855622806], - [-4.5323989547456, 48.339322193963], - [-4.5453284966877, 48.324530697141], - [-4.5483564279774, 48.309091985071], - [-4.5562724762849, 48.299755550421], - [-4.5526899421663, 48.294333094321], - [-4.5409637873526, 48.290218695274], - [-4.5357701963006, 48.283943449529], - [-4.5217946962434, 48.291114428525], - [-4.5076962523209, 48.310708704249], - [-4.5010461586171, 48.306105555944], - [-4.5129990628384, 48.297069816261], - [-4.5087664864786, 48.284364971679], - [-4.5026015309363, 48.280860913221], - [-4.4835588084111, 48.284044560152], - [-4.4550522136348, 48.292771537786], - [-4.4237773421087, 48.291670034681], - [-4.4121223635074, 48.277431878755], - [-4.4068502675656, 48.275442332471], - [-4.3844939336359, 48.275154271566], - [-4.3660839325116, 48.278010699726], - [-4.3536674198016, 48.285793291692], - [-4.3380117997035, 48.285592492129], - [-4.3080337336786, 48.297163385068], - [-4.2716752810253, 48.295919896917], - [-4.2739347422518, 48.288971383308], - [-4.2845412149644, 48.287650160728], - [-4.2848570831774, 48.275913907112], - [-4.2595853011287, 48.266201814358], - [-4.2459294480179, 48.250780318991], - [-4.2317540680499, 48.250320630547], - [-4.2172932355759, 48.257615458861], - [-4.2080204243049, 48.242451425248], - [-4.1866606053631, 48.246536490853], - [-4.1970338862768, 48.25110791887], - [-4.2079834304869, 48.251025418009], - [-4.2167166565259, 48.260995596762], - [-4.2406571035438, 48.254405816531], - [-4.2484420972136, 48.264631942186], - [-4.2794340183855, 48.277816418923], - [-4.2586639746308, 48.280337796407], - [-4.2339831734409, 48.291663390615], - [-4.2255916464459, 48.287775626172], - [-4.1940779875676, 48.293672058984], - [-4.1927914320833, 48.297566770216], - [-4.2230912040754, 48.296296136643], - [-4.2607589991265, 48.308808886841], - [-4.2717767417457, 48.3085010698], - [-4.2817306872962, 48.314149062808], - [-4.2931983397824, 48.311355653833], - [-4.3065317325636, 48.314942350033], - [-4.3311785781541, 48.314620491654], - [-4.3098044941465, 48.327389890558], - [-4.3054717563496, 48.333012617327], - [-4.2909479256962, 48.341952755975], - [-4.2780004139394, 48.344874608976], - [-4.2976741907114, 48.355911039667], - [-4.3050740561368, 48.354482380706], - [-4.3021566253156, 48.34377489677], - [-4.3293983637326, 48.340226102871], - [-4.3353494088236, 48.351018718927], - [-4.3446175802594, 48.343247421931], - [-4.36648632172, 48.344799621581], - [-4.3678442897223, 48.334697246192], - [-4.375252431501, 48.326306182232], - [-4.4046736898418, 48.323603347031], - [-4.4163170599611, 48.324328314613], - [-4.4212814557887, 48.332856308545], - [-4.4474594889754, 48.325680817565], - [-4.4496265161822, 48.337161490176], - [-4.4395482007447, 48.341279779512], - [-4.4417567491006, 48.353615394797], - [-4.4290271772091, 48.365619656485], - [-4.4186091872326, 48.368726808201], - [-4.4075253481222, 48.380534385031], - [-4.3961298593091, 48.38650177881], - [-4.3680405113101, 48.39489925028], - [-4.3593237104943, 48.402144960849], - [-4.3428458694475, 48.403365443241], - [-4.3093501979999, 48.419403653203], - [-4.2819732297193, 48.434393207398], - [-4.287872061805, 48.436420644162], - [-4.3094694139567, 48.423596726474], - [-4.3381817157191, 48.414949405527], - [-4.3459483488972, 48.409663044293], - [-4.3686013125106, 48.40664262085], - [-4.3688602316922, 48.401485058956], - [-4.386795431773, 48.397755391732], - [-4.4029442647564, 48.390018662486], - [-4.4249472968664, 48.397600203449], - [-4.4333536489875, 48.396593913062], - [-4.4352859423298, 48.383389050061], - [-4.4427532805509, 48.381948489599], - [-4.4563561684304, 48.387015703714], - [-4.4672858436945, 48.381010080426], - [-4.4818709168706, 48.382521354469], - [-4.5070284331619, 48.375177195361], - [-4.5380169478944, 48.357124862764], - [-4.5496694490256, 48.362001489858], - [-4.556901556146, 48.356967518117], - [-4.5949382473261, 48.34398230697], - [-4.6087240373586, 48.337888380763], - [-4.6281010576136, 48.337509419286], - [-4.6392496162242, 48.34493297515], - [-4.6542388141476, 48.346681343342], - [-4.6671754786758, 48.352722054618], - [-4.6805572523649, 48.355611191009], - [-4.6994701606877, 48.350825211906], - [-4.7031861104856, 48.345439143685], - [-4.6984198568155, 48.339008917129], - [-4.7076075032169, 48.33225949433], - [-4.7268279563533, 48.330101611584], - [-4.7412649297657, 48.331137342157], - [-4.755151556882, 48.328314605498], - [-4.7723051357322, 48.3291788831], - [-4.7713352334093, 48.348321487205], - [-4.7807548157661, 48.358363845243], - [-4.7609158756256, 48.372752574444], - [-4.7744540702471, 48.389384734113], - [-4.7736837961353, 48.404922524224], - [-4.7856134234263, 48.409183783259], - [-4.7933430625428, 48.416235956794], - [-4.7829693643734, 48.437550153141], - [-4.7762887997551, 48.44323010222], - [-4.7783033027269, 48.449337151566], - [-4.7691821477998, 48.462065352166], - [-4.7590583232069, 48.470397966682], - [-4.7754782499743, 48.491000702902], - [-4.7769978959372, 48.503117217189], - [-4.7669531385337, 48.508949694964], - [-4.7677505482026, 48.51549084169], - [-4.7579904988592, 48.520934810502], - [-4.7635828540663, 48.531059613438], - [-4.750430701927, 48.531787625414], - [-4.7505716364016, 48.543395532423], - [-4.7369401487605, 48.549669633203], - [-4.730581474956, 48.556345629552], - [-4.7073251262934, 48.554495469139], - [-4.7006100061104, 48.565257293095], - [-4.6897329488655, 48.571618302905], - [-4.6751613492295, 48.568639591535], - [-4.6464232548783, 48.572118967627], - [-4.6306065814165, 48.577693340766], - [-4.5960814216726, 48.570438077138], - [-4.5920294451056, 48.55696728141], - [-4.5801834734014, 48.562246351219], - [-4.5940875669374, 48.574670422845], - [-4.6091605495172, 48.575417985689], - [-4.6036696454798, 48.58297905273], - [-4.6076603107424, 48.596461551968], - [-4.5983162877184, 48.608011192206], - [-4.5856196284358, 48.601472677829], - [-4.5907770172397, 48.594023648193], - [-4.5627715925875, 48.598170219165], - [-4.5565167429014, 48.594799473824], - [-4.5455036785654, 48.59783340549], - [-4.550782271051, 48.604094317015], - [-4.5608700909489, 48.603771154268], - [-4.5686991918772, 48.611035547029], - [-4.5614793437335, 48.623801490681], - [-4.5503434319799, 48.625018824991], - [-4.5395490492214, 48.631187796313], - [-4.5261586212295, 48.629376007091], - [-4.5217973483906, 48.634384422626], - [-4.5018039011118, 48.621186293816], - [-4.4931187647023, 48.625414896892], - [-4.4782291949973, 48.623557861673], - [-4.4627692950062, 48.627100958455], - [-4.4469441913165, 48.638394323748], - [-4.4149997798362, 48.637926090365], - [-4.4271033577354, 48.652260777339], - [-4.3980441994007, 48.65561478084], - [-4.3801425974664, 48.661666859925], - [-4.3514034206459, 48.676113294185], - [-4.3303269284446, 48.67546160978], - [-4.3291124062469, 48.667907661004], - [-4.3102390806509, 48.667931594289], - [-4.2954040446046, 48.660446563113], - [-4.3160685361226, 48.640188688849], - [-4.3115885562964, 48.635172589811], - [-4.298511346251, 48.632640665789], - [-4.2727657939881, 48.649579657653], - [-4.2464935655648, 48.649709559996], - [-4.2333860393386, 48.652097867975], - [-4.2236435014343, 48.648213897066], - [-4.1945007324424, 48.652175738687], - [-4.1987860401536, 48.655717939248], - [-4.2202278931, 48.656147005163], - [-4.2096068963467, 48.670447739532], - [-4.1968161610499, 48.677628282862], - [-4.1869344610679, 48.686462205394], - [-4.174061395128, 48.686024655247], - [-4.1624191936583, 48.689758295612], - [-4.1270367426342, 48.694927216255], - [-4.0837978480658, 48.692972814592], - [-4.0709024391013, 48.684670504996], - [-4.0575875391344, 48.689258711554], - [-4.05679529974, 48.700628181133], - [-4.0429161757203, 48.70265342713], - [-4.0353886405866, 48.713928688184], - [-4.02495529368, 48.710629584547], - [-4.0124824530698, 48.714491395544], - [-4.0005364915392, 48.711631523299], - [-3.9834371521249, 48.726305142899], - [-3.9668077805805, 48.71962530493], - [-3.9735238414907, 48.71002461021], - [-3.9757432893007, 48.699031896983], - [-3.9682004772062, 48.689973835843], - [-3.9691581056971, 48.676107684525], - [-3.9531383099577, 48.672136886316], - [-3.9494659266738, 48.652861005926], - [-3.9300674451266, 48.657839171964], - [-3.9211812871032, 48.674928420785], - [-3.9114347331104, 48.669960338823], - [-3.8911113303248, 48.670896023532], - [-3.8925732849232, 48.666174874576], - [-3.9061966723813, 48.660822813734], - [-3.8977104457356, 48.646355840782], - [-3.8895679902243, 48.641662476434], - [-3.8607964112541, 48.632586859442], - [-3.8566651166084, 48.62062982347], - [-3.845545208747, 48.626964725465], - [-3.856272170722, 48.650755902177], - [-3.8564327756426, 48.660929312176], - [-3.8644147711301, 48.670330901442], - [-3.8466397296643, 48.673108945878], - [-3.854473660269, 48.686373923346], - [-3.8482610894395, 48.695947065984], - [-3.8323743274237, 48.711935659748], - [-3.8207715463903, 48.701352197337], - [-3.8189371050949, 48.715169992971], - [-3.8056106339945, 48.711019729093], - [-3.7874929573455, 48.701796106506], - [-3.7761094548232, 48.702861922085], - [-3.7657078018764, 48.708879271701], - [-3.733246519616, 48.707417936626], - [-3.7169828876846, 48.702516263423], - [-3.7024279161749, 48.690384977451], - [-3.6884703928375, 48.691672302665], - [-3.678008056564, 48.6868131946], - [-3.6609393047034, 48.694072404612], - [-3.6451676792066, 48.690710877885], - [-3.6547881028975, 48.682400406377], - [-3.6427952345386, 48.672116059351], - [-3.6554581627922, 48.664723869854], - [-3.659150584255, 48.65920940185], - [-3.6420873568022, 48.669628149236], - [-3.6364032001666, 48.681876659006], - [-3.6229753236901, 48.685744443578], - [-3.6160667149757, 48.682134712863], - [-3.6134373556063, 48.672125467118], - [-3.6013474443039, 48.668882399999], - [-3.5812522674227, 48.670014971375], - [-3.567388863762, 48.682875835381], - [-3.5821292852091, 48.688828850154], - [-3.5806180997154, 48.699098969889], - [-3.5848136756599, 48.717143137778], - [-3.5777341572244, 48.722922763845], - [-3.5535067685842, 48.729599848138], - [-3.5494040209786, 48.745685503762], - [-3.5660238040656, 48.760470858523], - [-3.5780706522181, 48.763052810216], - [-3.5850133196812, 48.775496976258], - [-3.5670493902465, 48.796072228502], - [-3.5544363965473, 48.791566104085], - [-3.5350388142712, 48.802711262754], - [-3.5452296969806, 48.811547911235], - [-3.5353532236423, 48.82420921892], - [-3.5132038128061, 48.834999450202], - [-3.5102190015828, 48.827666021396], - [-3.4947289999517, 48.828909887366], - [-3.487057183946, 48.835210739121], - [-3.4767632379266, 48.836553086027], - [-3.4682941245516, 48.823719601392], - [-3.4534252470278, 48.815730292786], - [-3.4387785622141, 48.820131082218], - [-3.4282482665937, 48.816467818251], - [-3.4428880325615, 48.803230031461], - [-3.4307313974533, 48.797223993896], - [-3.3975515012589, 48.800749976127], - [-3.3872194078248, 48.805276623502], - [-3.3860910507659, 48.815072936716], - [-3.3570227693774, 48.819691247713], - [-3.3353898521234, 48.828434255251], - [-3.3194282929708, 48.838251369288], - [-3.2918755715046, 48.83192266916], - [-3.2808810565774, 48.84207127438], - [-3.2643350622758, 48.834201312354], - [-3.2566001531918, 48.846756455248], - [-3.2460295399846, 48.856723818997], - [-3.2347983819655, 48.861980153414], - [-3.2317564057757, 48.867411825697], - [-3.2197255192397, 48.866460220845], - [-3.2109738852073, 48.854759740147], - [-3.213490950434, 48.839397397676], - [-3.2028272774671, 48.834506769958], - [-3.2082284171302, 48.813122349364], - [-3.1967385179982, 48.818392675983], - [-3.1981611200673, 48.826345008208], - [-3.1827618229112, 48.842557979967], - [-3.1738028697326, 48.841865128735], - [-3.1679437352953, 48.853146277189], - [-3.1581455962223, 48.851635850053], - [-3.1344876629569, 48.858231534485], - [-3.1298367560421, 48.864364228073], - [-3.1139737119264, 48.866740453944], - [-3.0840007772064, 48.86569562865], - [-3.0934910357785, 48.858795039139], - [-3.08514880221, 48.849384963641], - [-3.0891457935409, 48.832182747832], - [-3.0791514131107, 48.830043840648], - [-3.0921032112249, 48.808980389522], - [-3.0983841004526, 48.804282774149], - [-3.0973562864529, 48.794283712041], - [-3.1017797073776, 48.783225484414], - [-3.1197930438538, 48.773596321728], - [-3.1213980681585, 48.76526963585], - [-3.0996365562548, 48.768295722963], - [-3.0934962179147, 48.791936271699], - [-3.0854700296144, 48.810358940308], - [-3.0704323241691, 48.82090011268], - [-3.0620643799616, 48.822425000014], - [-3.0523569695531, 48.815396803409], - [-3.0386386693612, 48.819468829234], - [-3.0136302920911, 48.822137752778], - [-3.0079489411489, 48.818123335033], - [-3.0167821898089, 48.812113151135], - [-3.0061398616086, 48.800293214921], - [-3.0208405402882, 48.797138467927], - [-3.0249972636159, 48.79144626786], - [-3.0416526216166, 48.789013531286], - [-3.0436410172513, 48.78335094785], - [-3.0239926616859, 48.783128253914], - [-3.029395265054, 48.775914254773], - [-3.0159167403363, 48.767132102258], - [-2.9895062091921, 48.762638625905], - [-2.9645414610051, 48.762494954478], - [-2.9554262913638, 48.769189501689], - [-2.943654576565, 48.758338397641], - [-2.9286347276991, 48.75442692542], - [-2.9416450538097, 48.745308799004], - [-2.9341631909275, 48.737092242062], - [-2.9479075153591, 48.727211276245], - [-2.9417423433506, 48.719207198957], - [-2.9320923985813, 48.717491879688], - [-2.924759508377, 48.707466143849], - [-2.8896153283211, 48.696372886916], - [-2.8800886489961, 48.67427144179], - [-2.8582441777909, 48.672308279455], - [-2.8413210056003, 48.663352340555], - [-2.8377644227621, 48.656020055446], - [-2.826930459455, 48.650565045336], - [-2.8241580988201, 48.634957454331], - [-2.8153839194992, 48.609899617724], - [-2.8251563129905, 48.600303982104], - [-2.8196028872168, 48.593528075876], - [-2.8065963669984, 48.591904974754], - [-2.7979631859761, 48.586577481759], - [-2.7793122045816, 48.584979704743], - [-2.7726822658829, 48.570547123262], - [-2.7495486430359, 48.562166461746], - [-2.7179738137973, 48.555376234837], - [-2.7247921572497, 48.546914137203], - [-2.7145653373375, 48.529029220355], - [-2.6984370712725, 48.505683606103], - [-2.6847820858607, 48.498049171075], - [-2.6788699666557, 48.503939642438], - [-2.6765221053678, 48.519145534995], - [-2.6815598011872, 48.531128876642], - [-2.6684668905712, 48.534818647729], - [-2.6579857250454, 48.526362123163], - [-2.642926445977, 48.523601503198], - [-2.6302809106614, 48.52608884558], - [-2.6312659297144, 48.538126147652], - [-2.6055582106646, 48.551823337566], - [-2.5686751748086, 48.578559898858], - [-2.5502739246772, 48.598731144351], - [-2.5315182573984, 48.597242979825], - [-2.4966511974711, 48.608236480629], - [-2.4734313644435, 48.62252003118], - [-2.4680102449695, 48.635312407707], - [-2.4802182452475, 48.637139971893], - [-2.4680059332961, 48.649583903116], - [-2.4533521947478, 48.647603843479], - [-2.4356296138472, 48.652182703457], - [-2.412172534292, 48.641490561257], - [-2.3963208098213, 48.642746205929], - [-2.3851972631136, 48.652775428242], - [-2.3566430746048, 48.658128435538], - [-2.329817993644, 48.67243374983], - [-2.3268351903798, 48.682690335758], - [-2.3128614051641, 48.68092479798], - [-2.3095552780235, 48.670248867579], - [-2.2873086848415, 48.668048684079], - [-2.2986303647576, 48.650777277754], - [-2.3082350519385, 48.645115878008], - [-2.3116350377043, 48.63457311919], - [-2.3378377315034, 48.620070642052], - [-2.3093749578841, 48.615045727598], - [-2.2998911449283, 48.624056828509], - [-2.2873445575751, 48.627320739303], - [-2.284514633269, 48.632393122516], - [-2.2590733904716, 48.644952415823], - [-2.255746903771, 48.636212558848], - [-2.2433554764628, 48.623384047682], - [-2.2457501789659, 48.615403901289], - [-2.2286025908783, 48.607719393152], - [-2.2239525410226, 48.595382260905], - [-2.2128021263747, 48.591597817216], - [-2.201779275207, 48.583790688394], - [-2.1915532278103, 48.592304252064], - [-2.194714982728, 48.599920578374], - [-2.1821193547183, 48.599174901368], - [-2.187757441748, 48.587190961848], - [-2.1867457952027, 48.581332257121], - [-2.1734764888765, 48.577917159837], - [-2.1642654103968, 48.578892956541], - [-2.1567074926763, 48.587698435173], - [-2.1695676200346, 48.596654644275], - [-2.1658043885874, 48.604235347881], - [-2.142859606356, 48.611174051597], - [-2.123706231573, 48.604405598781] - ] - ], - [ - [ - [-3.0023212314614, 48.836321026552], - [-3.0114954582397, 48.841507416855], - [-3.0130894554754, 48.856420115989], - [-2.9941385070247, 48.864342720942], - [-2.9944706950371, 48.847148998272], - [-3.0023212314614, 48.836321026552] - ] - ], - [ - [ - [-3.5838774341471, 48.794094648663], - [-3.5836489264715, 48.804750470639], - [-3.5657740104496, 48.807749291796], - [-3.5701295554214, 48.797239145154], - [-3.5838774341471, 48.794094648663] - ] - ], - [ - [ - [-5.0725232805168, 48.482730316788], - [-5.056629077213, 48.476824762454], - [-5.0569734591597, 48.468162401798], - [-5.0403484938817, 48.465113540285], - [-5.0582321919735, 48.45095691003], - [-5.0824009760553, 48.448344776816], - [-5.0925866419522, 48.439891473019], - [-5.1059118332911, 48.436349765333], - [-5.1091921689816, 48.443357330074], - [-5.0980583552481, 48.44608363557], - [-5.0924748133511, 48.45196258108], - [-5.1016868570136, 48.455914476174], - [-5.138001239929, 48.448413926313], - [-5.1331652198509, 48.457205597014], - [-5.1113600694265, 48.465174516755], - [-5.1035961538682, 48.472329242796], - [-5.0840283627307, 48.472702685549], - [-5.0719207191004, 48.478208180718], - [-5.0725232805168, 48.482730316788] - ] - ], - [ - [ - [-3.9918110541337, 48.736399873504], - [-4.0090123106371, 48.742838902418], - [-4.0221693339987, 48.738491540178], - [-4.0397770750633, 48.746526903072], - [-4.0218503360744, 48.75230874743], - [-4.0062293732672, 48.752081933672], - [-3.9899103155008, 48.742601867881], - [-3.9918110541337, 48.736399873504] - ] - ], - [ - [ - [-2.8828361523996, 47.342633634283], - [-2.8688242027986, 47.347187413333], - [-2.8640228377349, 47.337396656922], - [-2.8851980047361, 47.332204587601], - [-2.8828361523996, 47.342633634283] - ] - ], - [ - [ - [-3.4217929168617, 47.619997807491], - [-3.4406778342018, 47.627446574356], - [-3.4456273600808, 47.623593013481], - [-3.4619142000708, 47.620345627722], - [-3.4742467748166, 47.62698825448], - [-3.4852053906539, 47.628378526095], - [-3.5076315908068, 47.640599145055], - [-3.5132724400036, 47.65091255248], - [-3.4969409139507, 47.653807933351], - [-3.4442954529884, 47.643499781555], - [-3.4294853772433, 47.642297272249], - [-3.416338603723, 47.630594308492], - [-3.4217929168617, 47.619997807491] - ] - ], - [ - [ - [-2.9481489550955, 47.373337178232], - [-2.9612329905761, 47.384142688142], - [-2.9734969970118, 47.385337455258], - [-2.970456003478, 47.393456515554], - [-2.9497473196772, 47.391474918453], - [-2.9539501005726, 47.383664372021], - [-2.9481489550955, 47.373337178232] - ] - ], - [ - [ - [-3.2354396164691, 47.323814198525], - [-3.248052686952, 47.330283433793], - [-3.2635566742404, 47.352257081813], - [-3.2592142344527, 47.357022204229], - [-3.2618219738531, 47.371275182462], - [-3.248770867599, 47.379576261704], - [-3.244700982732, 47.387618359758], - [-3.2340762447846, 47.379338291339], - [-3.2175838675208, 47.378419150942], - [-3.2163525094804, 47.373608898918], - [-3.201274824189, 47.372213510615], - [-3.1935193838263, 47.365912324522], - [-3.1730081240198, 47.361684567685], - [-3.1558604781053, 47.361080830931], - [-3.1534877470215, 47.348344091052], - [-3.1451698763814, 47.342292073717], - [-3.1396470634137, 47.329840381841], - [-3.1150509508386, 47.324060678234], - [-3.1110236087502, 47.319021634193], - [-3.0931245649635, 47.315130772229], - [-3.0741240211962, 47.317262323892], - [-3.0633503439268, 47.315039283837], - [-3.0678622487088, 47.296750488818], - [-3.0759226223168, 47.286048310497], - [-3.0865518494098, 47.283069445657], - [-3.1058963104173, 47.284999245839], - [-3.1228947190822, 47.290552518526], - [-3.1362157348542, 47.287982908601], - [-3.1512588812655, 47.293806467377], - [-3.1762732030367, 47.300368448324], - [-3.1856628166084, 47.295185330833], - [-3.2021408353701, 47.296875977003], - [-3.2171954083953, 47.293469947191], - [-3.2284492482294, 47.301290747295], - [-3.2387014326446, 47.303636953067], - [-3.2490903024394, 47.316119926971], - [-3.2354396164691, 47.323814198525] - ] - ], - [ - [ - [-2.8595623119286, 47.559896175763], - [-2.8615807977029, 47.568279187496], - [-2.853851482193, 47.594134904148], - [-2.8447503210418, 47.601281769517], - [-2.8379117800168, 47.591917276455], - [-2.8501830550859, 47.586592024447], - [-2.8542598282248, 47.575141694299], - [-2.8533540092104, 47.567483466314], - [-2.8595623119286, 47.559896175763] - ] - ], - [ - [ - [-2.80960545819, 47.578258375141], - [-2.8090954794976, 47.592251881558], - [-2.7939896392391, 47.601731628428], - [-2.7868109056903, 47.595356275895], - [-2.7994090459784, 47.588534826736], - [-2.80960545819, 47.578258375141] - ] - ] - ] - }, - "properties": { "code": "53", "name": "Bretagne", "ISOCODE": "FR-BRE" } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-1.0257391846007, 45.574691325999], - [-0.99300406059586, 45.577175103049], - [-0.98915191244273, 45.581341317039], - [-0.99448166466087, 45.598471363385], - [-1.0091096377528, 45.597495172168], - [-1.0149548718972, 45.602385291749], - [-1.0096347332233, 45.611436531328], - [-1.0203205505127, 45.62151668447], - [-1.030734415261, 45.616566131118], - [-1.0488627706461, 45.620296785838], - [-1.0728559725266, 45.634224904397], - [-1.1158529629831, 45.646976690887], - [-1.1615633042487, 45.674286390956], - [-1.1764544979496, 45.679631218564], - [-1.1960486136478, 45.691215860779], - [-1.2093162908787, 45.696695600645], - [-1.2303338364371, 45.693221363131], - [-1.237223219004, 45.705895619461], - [-1.241444700502, 45.758155786245], - [-1.2437947470471, 45.772440059531], - [-1.2425689958526, 45.781575345749], - [-1.2310317959574, 45.788930983319], - [-1.2210183884462, 45.789634505334], - [-1.2089657293798, 45.795749040068], - [-1.1919967968082, 45.789370772875], - [-1.1749504479715, 45.793552459949], - [-1.1595510306588, 45.801417483779], - [-1.1409697147076, 45.798212034993], - [-1.132892019615, 45.807422776222], - [-1.137157980964, 45.819898709185], - [-1.1502088102145, 45.830706445563], - [-1.1545872388857, 45.840814345567], - [-1.1680717875645, 45.845145151766], - [-1.157329540581, 45.85452985161], - [-1.153187170193, 45.862358814767], - [-1.1210426718188, 45.856462545265], - [-1.1008913277365, 45.872209699286], - [-1.0952763372146, 45.885483654804], - [-1.081212277475, 45.898789509328], - [-1.0737883386215, 45.914234695342], - [-1.076864753109, 45.936699490286], - [-1.0959775740275, 45.942016808278], - [-1.094399319351, 45.948773629702], - [-1.0643262929189, 45.949911547118], - [-1.0650836422026, 45.955876942711], - [-1.0760315150124, 45.958641591561], - [-1.0824929437006, 45.965886353981], - [-1.0833944490579, 45.978241345779], - [-1.0942868235613, 45.98407853197], - [-1.0989532154989, 45.990511008295], - [-1.0842912197077, 45.995595529343], - [-1.0630867195678, 45.994435355467], - [-1.0556386696802, 45.999342515679], - [-1.0526895091436, 46.011182592646], - [-1.0611535121644, 46.028848986934], - [-1.0567431675806, 46.035915721056], - [-1.0670030997899, 46.050149738322], - [-1.0888412421854, 46.053947103542], - [-1.0938493810902, 46.077074374166], - [-1.1007240096268, 46.093795091913], - [-1.1150482792811, 46.102319452799], - [-1.1300954807717, 46.101767963634], - [-1.1431683463329, 46.10884040725], - [-1.1253028796809, 46.110920815275], - [-1.1264071986579, 46.124260358299], - [-1.1483371896137, 46.132006346959], - [-1.1554222855991, 46.137461403915], - [-1.1729310087073, 46.139283394105], - [-1.1712255083601, 46.146518573114], - [-1.1618314872923, 46.148520817666], - [-1.1607229685204, 46.1554895116], - [-1.1893147393064, 46.150729023324], - [-1.206939036394, 46.145764027266], - [-1.2284491051228, 46.1497260682], - [-1.2420434969372, 46.157446715501], - [-1.2361325026972, 46.166145111409], - [-1.2238703709795, 46.165946361191], - [-1.2184421668953, 46.180122028855], - [-1.2066150416523, 46.184680886611], - [-1.1993303516663, 46.194320636545], - [-1.2065329820075, 46.204362200351], - [-1.1990017582044, 46.213243547272], - [-1.1713508437289, 46.224055692443], - [-1.1484576572781, 46.238406807482], - [-1.1411322001501, 46.249709112106], - [-1.1182950608301, 46.261125374832], - [-1.1111664091524, 46.261342685351], - [-1.1219630552981, 46.290281706357], - [-1.1207134213387, 46.296691182666], - [-1.1294064331873, 46.310272328818], - [-1.1236420717667, 46.321795835911], - [-1.113284059211, 46.316302232447], - [-1.0997364979128, 46.314471710528], - [-1.0782951920661, 46.316911662518], - [-1.0807238252872, 46.321431313321], - [-1.0645117099073, 46.335517206168], - [-1.0525331368763, 46.342540560637], - [-1.0290641764217, 46.348867660129], - [-1.013809705621, 46.35562286986], - [-0.99521192821645, 46.350317645688], - [-0.97744453847283, 46.351108789901], - [-0.96451829359621, 46.365398033698], - [-0.95084003340185, 46.360617622608], - [-0.94112049397563, 46.367862165606], - [-0.92857576719505, 46.371051399922], - [-0.93790474501528, 46.353157499224], - [-0.9441551264402, 46.336048129241], - [-0.9612310671154, 46.323395683014], - [-0.93489398189823, 46.312857623927], - [-0.90480272235534, 46.313812430336], - [-0.89270136944125, 46.320101412175], - [-0.88767597392192, 46.326322589931], - [-0.8509424448661, 46.317185675508], - [-0.84487598314026, 46.3245597282], - [-0.84865539686859, 46.332512597898], - [-0.83988457052554, 46.340367099668], - [-0.83052754444062, 46.341529547924], - [-0.82415169186325, 46.335854967946], - [-0.80732128185426, 46.339293680039], - [-0.80247564445275, 46.325156566217], - [-0.78424343720168, 46.318861879535], - [-0.77570312778264, 46.318376375981], - [-0.75794915819339, 46.311254056955], - [-0.75047134037184, 46.304254425344], - [-0.73459543046899, 46.304955701863], - [-0.72191414100459, 46.302372661742], - [-0.7201487066083, 46.314890543328], - [-0.70757171772654, 46.317704940913], - [-0.69732735736344, 46.325092837487], - [-0.67227364916502, 46.316216425466], - [-0.64825320981615, 46.317143530802], - [-0.63998183318338, 46.322110972748], - [-0.63660376728023, 46.33759543996], - [-0.61868206115959, 46.339099077209], - [-0.60547077785894, 46.347207865876], - [-0.60325195656142, 46.361468010185], - [-0.57567653828611, 46.356508034766], - [-0.55764744918976, 46.363451353574], - [-0.53779518169029, 46.38646382767], - [-0.55052040300574, 46.393343323056], - [-0.56605536149932, 46.393082159377], - [-0.57238400631421, 46.400707224569], - [-0.58189775121858, 46.40217377528], - [-0.59417281123848, 46.410185950063], - [-0.61017966919341, 46.413733221347], - [-0.62088828506372, 46.390451131851], - [-0.63658749242212, 46.395578228534], - [-0.63282952674398, 46.403812558564], - [-0.6406468690526, 46.416224664644], - [-0.63684012869206, 46.432305656566], - [-0.61877090027571, 46.438854562232], - [-0.61983716832458, 46.452467117452], - [-0.6124273279524, 46.45873668738], - [-0.6241822995269, 46.48674665851], - [-0.62483750061224, 46.496362745962], - [-0.636581601251, 46.506095217567], - [-0.64519375671477, 46.5085710348], - [-0.63352903140625, 46.526545961083], - [-0.61002538912342, 46.52729145947], - [-0.60213244964129, 46.533279525109], - [-0.60670934401643, 46.562331917411], - [-0.61785426354446, 46.562043099519], - [-0.62456684878994, 46.577400290716], - [-0.61190793736705, 46.588307031212], - [-0.61671038535954, 46.598536566433], - [-0.62702650527698, 46.605651097302], - [-0.61411399285986, 46.62039129053], - [-0.62619906297455, 46.633078356802], - [-0.64405974899964, 46.638024434086], - [-0.65717243733762, 46.634619354943], - [-0.64924847916988, 46.653283801506], - [-0.63771460553181, 46.66348907218], - [-0.65787343587941, 46.676827080382], - [-0.68073310425929, 46.686803996225], - [-0.65619325740221, 46.700774517445], - [-0.66888364550954, 46.717232370405], - [-0.68397597689122, 46.727863770277], - [-0.70015414355827, 46.73579562558], - [-0.69413275947291, 46.742731111953], - [-0.70417950073791, 46.74945353126], - [-0.71534345605879, 46.751789737735], - [-0.72079949738479, 46.762538021138], - [-0.72731204616972, 46.76763065568], - [-0.71783828712373, 46.800521372146], - [-0.7008577279242, 46.80862581328], - [-0.70883784005248, 46.821063616454], - [-0.72752746779957, 46.821938243707], - [-0.74431663878843, 46.830243411726], - [-0.75815720893345, 46.831399908556], - [-0.78164600263284, 46.84282764491], - [-0.79477643718776, 46.861061682533], - [-0.80837576068615, 46.869152331931], - [-0.81527450811283, 46.879362263307], - [-0.8321856982677, 46.884537016923], - [-0.82020445366662, 46.899619563541], - [-0.81977358192379, 46.909085252586], - [-0.80739348796693, 46.9198254879], - [-0.8226181521192, 46.919496882097], - [-0.8291494586578, 46.933361861306], - [-0.84069799142137, 46.933043168191], - [-0.85194566174473, 46.946506302307], - [-0.87298436818273, 46.944344247689], - [-0.8837974960632, 46.950388590831], - [-0.87713915299698, 46.955855606347], - [-0.88359502600069, 46.962369264823], - [-0.87712517316223, 46.968538385199], - [-0.88901027465591, 46.970996440972], - [-0.89196408624284, 46.975820414303], - [-0.8797290084417, 46.975803771985], - [-0.85764337306558, 46.969397597368], - [-0.84915622076396, 46.973775579115], - [-0.85591689102216, 46.979079840933], - [-0.83853635765488, 46.985503699072], - [-0.82697025806846, 46.992404409034], - [-0.80044123437384, 46.994429249843], - [-0.78757295549441, 47.005134613994], - [-0.7738784459047, 47.004247669583], - [-0.76195094831376, 46.992143526967], - [-0.74760195615967, 46.991449795286], - [-0.74336287533223, 47.000701964828], - [-0.72790285494931, 46.994993345811], - [-0.71305373485382, 46.986070538333], - [-0.69637193445308, 46.994704963523], - [-0.68018770038511, 46.987658683517], - [-0.67605096460406, 47.000124265341], - [-0.64422463763986, 46.995602969044], - [-0.62971403267853, 46.996851004876], - [-0.61997935748009, 46.993321083755], - [-0.59549628776894, 46.997955261938], - [-0.58641245768408, 47.009979798203], - [-0.57652952670071, 47.017027138711], - [-0.56546953385811, 47.019423404938], - [-0.56225950470765, 47.030666495232], - [-0.54565906541349, 47.029239134682], - [-0.54222220688058, 47.035131514655], - [-0.55557809674432, 47.043528672476], - [-0.55518423855519, 47.056996280386], - [-0.55953163443577, 47.061883133164], - [-0.54271238339803, 47.068832410093], - [-0.49533635185918, 47.082386236675], - [-0.46269595640292, 47.081925505658], - [-0.46404370608664, 47.074916254874], - [-0.47635021862705, 47.072140351589], - [-0.48553786553274, 47.065209021486], - [-0.47634088284647, 47.054361886701], - [-0.46425258388436, 47.067574344676], - [-0.44613773080732, 47.067564764094], - [-0.4258514883367, 47.072734496606], - [-0.40931478414398, 47.06628937151], - [-0.40078196900616, 47.070768258647], - [-0.39631090043786, 47.087753100169], - [-0.38345929253299, 47.087697613397], - [-0.35741871073042, 47.094026201074], - [-0.34498093726671, 47.09177095779], - [-0.34146522078634, 47.087332841605], - [-0.3142510524831, 47.091338121731], - [-0.29895654468625, 47.099250384298], - [-0.2879249468488, 47.101438124536], - [-0.25537525933525, 47.100286155299], - [-0.24153284082639, 47.1057275119], - [-0.20607508372803, 47.09328538537], - [-0.18649707382196, 47.101547033466], - [-0.18483829723431, 47.108333434925], - [-0.15721241252843, 47.101780345038], - [-0.14125473717962, 47.103745079728], - [-0.14555986138819, 47.091366857483], - [-0.15947412139976, 47.085935164317], - [-0.17848280781104, 47.069769863363], - [-0.16599081567743, 47.064596744766], - [-0.14766123249005, 47.069855194532], - [-0.13678317485552, 47.063924090649], - [-0.13712137046296, 47.058426719475], - [-0.12837866130337, 47.054429041651], - [-0.1021158452812, 47.06480003115], - [-0.10150441660145, 47.08326376928], - [-0.098719424061378, 47.090117668474], - [-0.085909274640678, 47.101010256779], - [-0.060661742719366, 47.09514763055], - [-0.044169213959146, 47.093239781385], - [-0.03562437381954, 47.086261232309], - [-0.029234974929682, 47.095257561848], - [-0.026535185584925, 47.105798471803], - [-0.039289561029516, 47.108055925394], - [-0.040856468682482, 47.112928627112], - [-0.034011786935389, 47.127334734816], - [-0.010739414334867, 47.15751215065], - [0.019016376976915, 47.175754285742], - [0.036501918227681, 47.160445278183], - [0.049480342584696, 47.168623012343], - [0.053830055961677, 47.16373374848], - [0.066259497472021, 47.143215902043], - [0.078395363975684, 47.146334786534], - [0.08087053131906, 47.137653029292], - [0.076371249669326, 47.123931049218], - [0.084648249403316, 47.118377760157], - [0.10471937462849, 47.120793812241], - [0.11111857810383, 47.129423259303], - [0.12372359489648, 47.128315822721], - [0.12716663727095, 47.119967203103], - [0.13613099833731, 47.121578754741], - [0.13471650901781, 47.107872599064], - [0.16126718554822, 47.100796179607], - [0.16598416316105, 47.107162285602], - [0.18145709966147, 47.1143899519], - [0.18811779784912, 47.100828164294], - [0.20095307158529, 47.091257976623], - [0.17421802926902, 47.071274231914], - [0.17997285846393, 47.059187917933], - [0.19167202519639, 47.064672009871], - [0.20799449312514, 47.053230964732], - [0.23175079195616, 47.064054806793], - [0.24245135321948, 47.0711879788], - [0.26165981464917, 47.070051249456], - [0.26761937550861, 47.067504197075], - [0.26201563438582, 47.057459330927], - [0.26770726634947, 47.04388297477], - [0.29822992579073, 47.053922293608], - [0.30698465850517, 47.048723481399], - [0.30969866315285, 47.025643877461], - [0.29867667498614, 47.019599341054], - [0.30543065376719, 47.012362068122], - [0.30884587377182, 46.999441441774], - [0.30178521378569, 46.984422127588], - [0.3083994154951, 46.978149875297], - [0.30073879657193, 46.973829519846], - [0.30507546032998, 46.965176268239], - [0.3052147303369, 46.952805098497], - [0.31123243685649, 46.937837015115], - [0.32483667041576, 46.930652041087], - [0.33952563735758, 46.936623468454], - [0.34773843894922, 46.936585764264], - [0.35524351132264, 46.94418585304], - [0.36651145250788, 46.949554418002], - [0.38814626546636, 46.943624533306], - [0.40666063754734, 46.936647597652], - [0.41852515647745, 46.937386922114], - [0.43870457627727, 46.929578354733], - [0.44480103455716, 46.941152434129], - [0.47662392866394, 46.949861808585], - [0.5061349705044, 46.959245419792], - [0.52812896085369, 46.955971768907], - [0.53928916139484, 46.960219024665], - [0.57084220800147, 46.95593925543], - [0.59834824957594, 46.956764146875], - [0.60155821661783, 46.959107207652], - [0.60117289544287, 46.973094369377], - [0.59353374575945, 46.977612888014], - [0.57382203251682, 46.983340464589], - [0.57368515665648, 46.995531274591], - [0.56695306996355, 47.002266858023], - [0.59055093530507, 47.006722651596], - [0.6188740376389, 47.007464569411], - [0.62124367303806, 46.997106205666], - [0.63621078823085, 46.985451013839], - [0.64769454368947, 46.98827539877], - [0.65646206458496, 46.985434564914], - [0.66162129594461, 46.978086547342], - [0.68216214670066, 46.977079806439], - [0.69256676799124, 46.974304310533], - [0.6961893847553, 46.956809748541], - [0.70624788531743, 46.937157219193], - [0.70357222720342, 46.930055655547], - [0.7043177119069, 46.903295922263], - [0.72673737636298, 46.886740909711], - [0.73368489987152, 46.876040130575], - [0.74733084634723, 46.869392079962], - [0.75088169303492, 46.863524734354], - [0.77198838768839, 46.860643073187], - [0.76879944678165, 46.85074613749], - [0.79032856900623, 46.852389283147], - [0.79645898941075, 46.848962468561], - [0.78680224354972, 46.840463346525], - [0.79509333742744, 46.832522249054], - [0.80932023680023, 46.827853568236], - [0.81032866524034, 46.813064718291], - [0.8153195131751, 46.805707876783], - [0.81190192936381, 46.794504364542], - [0.81628357550664, 46.787769101729], - [0.82943649435874, 46.783579432834], - [0.83064773545714, 46.775361466403], - [0.84293807311317, 46.764275112746], - [0.85444929067001, 46.759970797231], - [0.86746898682573, 46.748216404838], - [0.88777529605684, 46.737902736858], - [0.90104236961312, 46.736090564754], - [0.91455153531157, 46.710120272246], - [0.9249533025609, 46.699991021542], - [0.92474929055741, 46.692789633606], - [0.90215945171528, 46.67919114553], - [0.91071057116932, 46.677183661606], - [0.9067032428601, 46.665571264221], - [0.91742860399951, 46.65036307159], - [0.90652086468369, 46.647752216163], - [0.89638293110539, 46.633451946341], - [0.89430329614895, 46.625732175305], - [0.90693650860659, 46.615213230068], - [0.90986438287983, 46.603447081391], - [0.91586544594852, 46.596627887059], - [0.93775566335965, 46.594420109118], - [0.9371898310662, 46.586044724789], - [0.94202235129636, 46.580794785364], - [0.96266777384523, 46.574297702094], - [0.98209440694689, 46.572640353042], - [0.98723321911375, 46.565560099789], - [1.0147685045818, 46.567759565973], - [1.0219575008089, 46.55371655484], - [1.0206003685537, 46.537099020664], - [1.0722975106803, 46.53723511351], - [1.0875973131695, 46.538168324634], - [1.1082856489547, 46.531510215741], - [1.1459288779804, 46.506400874677], - [1.1491485689753, 46.502205353076], - [1.1349675834984, 46.495262876365], - [1.1405271083029, 46.485634879486], - [1.1529790996043, 46.472957682593], - [1.1355078072574, 46.470884241481], - [1.1516072310249, 46.449233517349], - [1.1689192762458, 46.446308575491], - [1.1860178766023, 46.441083576014], - [1.1834055129956, 46.429224899772], - [1.2011339896178, 46.432466167404], - [1.2126877519811, 46.432217971701], - [1.1944727430082, 46.410351612296], - [1.1950871576883, 46.40275403272], - [1.1772787760985, 46.383948000481], - [1.1841495355328, 46.37729147918], - [1.191538104043, 46.376759451936], - [1.2047664407221, 46.387689428519], - [1.2164239770673, 46.367784938774], - [1.2408646690892, 46.367573686174], - [1.245105268008, 46.37323860456], - [1.2603993142262, 46.378783327264], - [1.2795549241983, 46.376488887271], - [1.3030594710726, 46.370991990563], - [1.3093599883058, 46.378135125428], - [1.3204740000508, 46.38163178083], - [1.3223398241302, 46.389656273383], - [1.3309220641861, 46.396705560378], - [1.3442929839887, 46.401546863371], - [1.3560243049838, 46.4001195921], - [1.3775283931369, 46.382803331341], - [1.3835201223913, 46.374755471612], - [1.3965775759913, 46.371445233126], - [1.4048447784072, 46.364056923495], - [1.4151854142983, 46.347214822447], - [1.438395055125, 46.35797267046], - [1.4353743494744, 46.363842198651], - [1.454349713379, 46.376048839285], - [1.4629367778167, 46.375349793186], - [1.472558559102, 46.383431643989], - [1.4775958033831, 46.393726557044], - [1.4929348173659, 46.398340551367], - [1.5059901336348, 46.409908716453], - [1.5112050540502, 46.419594596972], - [1.5223067601736, 46.426527695424], - [1.5350519004493, 46.424455702933], - [1.5439680356057, 46.41688301363], - [1.5461946362171, 46.39346025752], - [1.5524923075161, 46.394133824944], - [1.5696914589532, 46.405498471105], - [1.5920388571659, 46.407311867592], - [1.6092554805936, 46.423123163216], - [1.6226552998913, 46.418260263211], - [1.6143064140463, 46.405295947029], - [1.628836514357, 46.388247455127], - [1.6448463938248, 46.386816749434], - [1.6611836253306, 46.403538218482], - [1.683606447426, 46.418176923275], - [1.6974668292376, 46.406604886198], - [1.7091312929501, 46.393353821969], - [1.7277096608449, 46.388955998124], - [1.7392119982362, 46.401254100808], - [1.7505449826939, 46.405586225701], - [1.7493159438657, 46.41093389201], - [1.757375741134, 46.423616429483], - [1.7566658918784, 46.441292317573], - [1.7475915839665, 46.450017868926], - [1.7548573832317, 46.452214535934], - [1.7983753858278, 46.45481310551], - [1.8031391002694, 46.44691836733], - [1.816812388337, 46.439524938483], - [1.8195044214246, 46.430033877555], - [1.8383647496008, 46.42728517531], - [1.8580375856722, 46.433476804112], - [1.8834368991965, 46.432557252889], - [1.89071589528, 46.441493184019], - [1.902458213237, 46.43780452052], - [1.909180451657, 46.443498226347], - [1.9195527692358, 46.440208070783], - [1.9243017577068, 46.431903065788], - [1.943869602507, 46.433996659264], - [1.9542508363527, 46.438125703166], - [1.9781042758382, 46.439772572322], - [1.9930771581051, 46.430917343442], - [2.0203464671203, 46.429421918521], - [2.0294174309506, 46.424588797264], - [2.0741962684953, 46.419842978652], - [2.0803472806508, 46.411894246794], - [2.0889457684929, 46.40889961632], - [2.1083721397147, 46.413528592759], - [2.1126347187417, 46.420825387231], - [2.1296807376318, 46.419867872386], - [2.1677843748983, 46.424069192575], - [2.1851558899005, 46.423284068779], - [2.1975676755012, 46.428294141001], - [2.2206403396014, 46.423664161021], - [2.2334148941606, 46.423384135542], - [2.2498765158587, 46.426366967242], - [2.2810437278384, 46.420403547753], - [2.2804029533754, 46.410236476962], - [2.2850442774167, 46.385857562809], - [2.3154715753059, 46.375205741584], - [2.3315900743858, 46.378176612964], - [2.3371146519405, 46.366795923975], - [2.3233383727294, 46.366525024524], - [2.313389172619, 46.356936451493], - [2.3027460023726, 46.354419802873], - [2.3093794648902, 46.342006193666], - [2.3230230944721, 46.329277448172], - [2.3345821354246, 46.325320260055], - [2.3549060485425, 46.325678438006], - [2.370482749419, 46.312629017475], - [2.3840641130619, 46.328908641081], - [2.3918581379529, 46.329985164159], - [2.4113176626179, 46.314094483732], - [2.4204656768519, 46.310129656565], - [2.4161017112175, 46.300056006693], - [2.421335782135, 46.284622030263], - [2.4309509758156, 46.291519676804], - [2.4430263839161, 46.294995852237], - [2.4789445821479, 46.281145991526], - [2.4770972903349, 46.269361724579], - [2.489106418147, 46.248968644305], - [2.5163085117785, 46.239436870366], - [2.5154284346668, 46.228012112114], - [2.5215270201899, 46.21133367553], - [2.5216954121117, 46.203035380932], - [2.5280194815711, 46.195466990157], - [2.5286290573702, 46.184894945309], - [2.5431674609911, 46.175602605523], - [2.5597996290957, 46.173366559433], - [2.5607637153191, 46.155596225642], - [2.5654816305578, 46.153967351319], - [2.5653725529015, 46.143035759957], - [2.5586220340193, 46.138326224613], - [2.5582364865104, 46.130701979674], - [2.5490488887945, 46.114075006608], - [2.5518219731636, 46.103970633498], - [2.5518715312783, 46.083457348801], - [2.5570843667475, 46.069300275416], - [2.5631828961231, 46.064609781776], - [2.5716988273144, 46.048689825423], - [2.6025059601172, 46.033461930485], - [2.5944202186196, 45.989440975795], - [2.6074695080176, 45.979108641029], - [2.6107853057918, 45.971228071516], - [2.5891875589674, 45.960437573506], - [2.5651781859373, 45.95661981464], - [2.5657173898648, 45.946856793309], - [2.5516381183225, 45.941261078502], - [2.5509536719711, 45.935761668247], - [2.5415060022687, 45.921531781083], - [2.5550056008106, 45.912509471984], - [2.5376912527467, 45.900845994537], - [2.5262086816167, 45.896727274022], - [2.5099613389201, 45.88666598071], - [2.4922279879729, 45.864029936278], - [2.4797383951775, 45.864541357011], - [2.4706137918202, 45.872335245229], - [2.4425827259717, 45.863008040763], - [2.4478280089908, 45.84581866569], - [2.436436952669, 45.846998827989], - [2.4265364620605, 45.834771343876], - [2.4013447310476, 45.837577232244], - [2.388014020679, 45.827373168854], - [2.4006773662183, 45.817289546629], - [2.4185991219253, 45.798475127769], - [2.4274035046023, 45.794285013202], - [2.4329800874586, 45.783888824912], - [2.4341123429169, 45.769852817869], - [2.4414259075117, 45.762378997013], - [2.4547914690758, 45.761151249494], - [2.4751529321011, 45.747688866007], - [2.4846414659033, 45.748521466442], - [2.4921294160933, 45.7376701128], - [2.5183220391127, 45.712799669432], - [2.5198739656449, 45.697052906827], - [2.5268700649094, 45.694919495794], - [2.5283596411119, 45.681924314977], - [2.5129233228036, 45.6713335771], - [2.5151301172176, 45.664284079976], - [2.5249384159848, 45.657234455338], - [2.5142980219448, 45.639528483879], - [2.5011495345088, 45.638738876646], - [2.4897451626044, 45.642353692], - [2.4833880353068, 45.639303519147], - [2.4790816386943, 45.62246233864], - [2.4784344946797, 45.607911789419], - [2.4653445128497, 45.600820150088], - [2.4646251782029, 45.594410586781], - [2.4725367701592, 45.580929716396], - [2.4874305070125, 45.569384021272], - [2.4909285469766, 45.560394087282], - [2.5064679621685, 45.553444063405], - [2.5163271748739, 45.55342839279], - [2.5165205610225, 45.524032787608], - [2.5203805740984, 45.520450992238], - [2.5115199537568, 45.511153110817], - [2.5089910453543, 45.500226403127], - [2.5138913543334, 45.492347782226], - [2.5084125130653, 45.478501516921], - [2.5067704533992, 45.464065004968], - [2.4955946696815, 45.44550416324], - [2.487471709413, 45.418842030111], - [2.4927584232596, 45.413842323437], - [2.5159713869265, 45.403236533013], - [2.5220338520841, 45.402237812322], - [2.5262353366501, 45.389343818253], - [2.5227321270438, 45.382084686424], - [2.4857679741129, 45.378946887778], - [2.4778316883062, 45.370410647653], - [2.4734557788383, 45.38152628147], - [2.4580813755781, 45.384827047932], - [2.441865995091, 45.384259395763], - [2.4226736731266, 45.397229870143], - [2.4129045453324, 45.396651442056], - [2.3982881363717, 45.400169538674], - [2.3954865345645, 45.407322290365], - [2.3782501191323, 45.414302210343], - [2.3551307955913, 45.415027972839], - [2.3500842175271, 45.409676058097], - [2.3545525332951, 45.401398504646], - [2.3644462766137, 45.395234506367], - [2.3682726042671, 45.388621392102], - [2.3629697029865, 45.378412337982], - [2.3647790516305, 45.357919621969], - [2.3513461420151, 45.348610937353], - [2.3593793404283, 45.335790299537], - [2.3504806858312, 45.327560923525], - [2.3177397642658, 45.322963729764], - [2.3073512042479, 45.312659714856], - [2.2920696943683, 45.290569998093], - [2.2800803441611, 45.287325615297], - [2.2714111009736, 45.290154603854], - [2.2617348470443, 45.28322143744], - [2.2585683903144, 45.270220164439], - [2.245004874828, 45.267106520498], - [2.2387747025234, 45.260353952142], - [2.2413408281325, 45.24942616212], - [2.2249287044688, 45.241854962029], - [2.1953636990438, 45.220851418291], - [2.1905131897891, 45.20213434701], - [2.1985478420586, 45.194408666334], - [2.2011879889027, 45.181494229499], - [2.2195874303098, 45.172114610573], - [2.2335857511761, 45.167181650239], - [2.225397887065, 45.160336595328], - [2.2137008320653, 45.160189965969], - [2.2115654221992, 45.14844827392], - [2.1948369367108, 45.136027708871], - [2.1787905007908, 45.136297935946], - [2.1852692693185, 45.113998024195], - [2.1794393252059, 45.109177492216], - [2.1803618094732, 45.09734068898], - [2.1717594845165, 45.081496802672], - [2.1456535641311, 45.085592171697], - [2.1298193059745, 45.078932414297], - [2.1183646353816, 45.070379067781], - [2.1037456940938, 45.065812421906], - [2.0951568732001, 45.056033465741], - [2.0993181256264, 45.047622806571], - [2.1094104611066, 45.041521518867], - [2.1168066989252, 45.02111434735], - [2.1406414310588, 45.005858479694], - [2.1381513494782, 44.992811832821], - [2.1329815746739, 44.985516038406], - [2.1003714972007, 44.983427469854], - [2.0905743960003, 44.984665148518], - [2.0766169639286, 44.978785623857], - [2.0629079799591, 44.9765045515], - [2.0525667664657, 44.976478188068], - [2.0454327798436, 44.983664804729], - [2.0068687915517, 44.976629769782], - [1.9853569537575, 44.974450164818], - [1.9740981161193, 44.966632803845], - [1.9557698918802, 44.958318624648], - [1.9509915581584, 44.953151935667], - [1.9407166400253, 44.95513995704], - [1.9390669995572, 44.973222308505], - [1.9280650601996, 44.97871493763], - [1.9081575006047, 44.978423183181], - [1.8926655050781, 44.964882977079], - [1.8874095971943, 44.956563455989], - [1.8670322636063, 44.952926075187], - [1.8510527260352, 44.946245504656], - [1.8443484053735, 44.938030495187], - [1.836439246631, 44.937455442607], - [1.8239145074647, 44.927683348732], - [1.8085816314758, 44.927710042504], - [1.8008914101993, 44.924210099081], - [1.78487170617, 44.937317933441], - [1.7828574905171, 44.929652757246], - [1.7749276020491, 44.923721627249], - [1.7685216398013, 44.93111838651], - [1.7536701932124, 44.940576173829], - [1.7506187292807, 44.954961208829], - [1.7428395473269, 44.959830662128], - [1.7215459564475, 44.968065955731], - [1.7110326508746, 44.967296262803], - [1.702662490825, 44.987825577102], - [1.6871611264702, 44.996380368243], - [1.6843750926429, 45.002660865737], - [1.6714097923126, 45.004301541515], - [1.6544545546621, 45.017019229934], - [1.6509774862668, 45.025013308842], - [1.629956153879, 45.033567269253], - [1.614739866204, 45.033019699506], - [1.5893103965749, 45.036412402334], - [1.5763101796546, 45.040696470827], - [1.5690421523205, 45.038712199205], - [1.5520446044451, 45.028473138039], - [1.5437040262063, 45.030761580224], - [1.5410691079459, 45.042887041934], - [1.5357229531152, 45.046275852749], - [1.519580065039, 45.041030205266], - [1.502854716064, 45.038440870886], - [1.4800566881166, 45.026797710108], - [1.4735839270693, 45.017999050409], - [1.4619826792135, 45.01370224029], - [1.4482602497483, 45.019314041206], - [1.4281821749303, 45.009219883472], - [1.4092638730924, 45.006004469319], - [1.4133042325955, 44.999381814036], - [1.414587951063, 44.977794038016], - [1.4207336396897, 44.955116554897], - [1.4364044047008, 44.940615131261], - [1.4365133670875, 44.93225069741], - [1.4423501795316, 44.916547257696], - [1.4246258313763, 44.919694190356], - [1.4135387322774, 44.911821580701], - [1.4216345306166, 44.896767467267], - [1.4398567374008, 44.888947217313], - [1.4419256468077, 44.877575693392], - [1.4310840691639, 44.871280603185], - [1.4181797898114, 44.870598618527], - [1.4048297845553, 44.862526244834], - [1.4019376918366, 44.849449622068], - [1.3861021387482, 44.847434745656], - [1.3771449543322, 44.84182444963], - [1.3699846242068, 44.846449057072], - [1.3614088604034, 44.840796241728], - [1.3606303391154, 44.826748288149], - [1.3641055003826, 44.811568223737], - [1.3368655384896, 44.806071554052], - [1.3281059944688, 44.806531488239], - [1.2996402457488, 44.796921415066], - [1.3042790767232, 44.788545534304], - [1.2962430489699, 44.777811462978], - [1.313412866091, 44.766040449212], - [1.322816677032, 44.765133167519], - [1.3160471856435, 44.740370070289], - [1.3005234409238, 44.743067753612], - [1.2997473700748, 44.733876961929], - [1.2877769806729, 44.714784618791], - [1.2704127081354, 44.722361774434], - [1.2637980717141, 44.710685806718], - [1.2482656593079, 44.707708989465], - [1.2433609148288, 44.703747365953], - [1.2404413959773, 44.692803925964], - [1.2245513454404, 44.684265469136], - [1.1922298707031, 44.682144673083], - [1.1814922279959, 44.68312050249], - [1.1691224492748, 44.680201458326], - [1.1631824196253, 44.674246913408], - [1.1466756285759, 44.670346129862], - [1.1467257654642, 44.651942998392], - [1.1537948801342, 44.639408990845], - [1.137389330558, 44.623916068209], - [1.1076423221767, 44.604047948788], - [1.0954254371464, 44.590239410789], - [1.1023480014998, 44.583112143598], - [1.10321434571, 44.571734741055], - [1.0915723340934, 44.57129825478], - [1.0751420531924, 44.577325705506], - [1.0716939661813, 44.567841711875], - [1.0463221422077, 44.562091748647], - [1.0347007735952, 44.555410813413], - [1.0131652927005, 44.53612981948], - [1.0102474849887, 44.545187788418], - [0.99391928143422, 44.549540779914], - [0.98177646477517, 44.543949619625], - [0.99607013748509, 44.526838106147], - [1.0162275856839, 44.505873805304], - [1.0168410499751, 44.492627682886], - [1.009020244264, 44.480044617987], - [1.0230093439874, 44.475437273235], - [1.0238896841162, 44.464106031022], - [1.0209838507254, 44.456237710915], - [1.0247167778907, 44.442988405687], - [1.0333318174167, 44.432217983065], - [1.0452829749205, 44.434328842652], - [1.0574845114814, 44.427673212448], - [1.060811266939, 44.416585968472], - [1.0613076444275, 44.401878633002], - [1.0514192493927, 44.392094511982], - [1.060916410464, 44.388148956247], - [1.0640814762214, 44.378508721439], - [1.0590342432563, 44.369063397724], - [1.0497968480895, 44.362639367374], - [1.004557393851, 44.365587714321], - [0.9973306063079, 44.368970904934], - [0.98063192933013, 44.358423098349], - [0.97103609486138, 44.361280217267], - [0.95004981400894, 44.35975578355], - [0.94141859483151, 44.345347538009], - [0.9372881287013, 44.368840749909], - [0.92589588135671, 44.375628735075], - [0.91991430872905, 44.384149659695], - [0.89821258712664, 44.381368271621], - [0.88733582833582, 44.366374054101], - [0.89356714925376, 44.358037988638], - [0.89611323540437, 44.346226535055], - [0.87347140241339, 44.323307233], - [0.86962451276277, 44.309387172973], - [0.88231719491829, 44.308198855394], - [0.89449665699205, 44.296740377136], - [0.91642356261815, 44.302198002519], - [0.92396339608302, 44.288698042192], - [0.94992392368958, 44.276443376947], - [0.94078442423987, 44.263651200087], - [0.9277876570183, 44.26740561543], - [0.93302754076927, 44.253148853876], - [0.91909475906904, 44.238271923817], - [0.9292406197485, 44.230246542717], - [0.92476807979815, 44.226051714552], - [0.91176049272424, 44.204739962363], - [0.90628814214223, 44.190306668919], - [0.86348768257448, 44.193325437089], - [0.85633796923916, 44.18904677194], - [0.85357025770147, 44.174962426044], - [0.86504004908695, 44.173534926921], - [0.8722469128314, 44.167867373919], - [0.88301819652021, 44.17546628714], - [0.89034197833787, 44.169672870511], - [0.88663373024812, 44.16278908945], - [0.88847935271951, 44.148766853903], - [0.88180706484803, 44.140904730858], - [0.87944269844653, 44.129608737841], - [0.86877875307642, 44.126327092678], - [0.83543363467659, 44.136365774298], - [0.82440975793604, 44.141179876681], - [0.79610189105916, 44.145621618679], - [0.7885669186743, 44.144391188204], - [0.79756644493954, 44.130381902776], - [0.79623991760453, 44.11512942813], - [0.78623555942697, 44.11191141984], - [0.77191199947865, 44.113420095124], - [0.75287865013836, 44.102267910932], - [0.73810974125492, 44.073027677], - [0.741884791205, 44.065199235038], - [0.73670154232703, 44.061550959213], - [0.71736742842423, 44.057565048253], - [0.7078014441272, 44.058016144097], - [0.69448178843623, 44.045585512479], - [0.68766619417171, 44.045887421074], - [0.6797359030614, 44.03717928063], - [0.6795846041912, 44.029344422988], - [0.66659683472462, 44.025144272763], - [0.65507583677567, 44.031189052143], - [0.65460048123679, 44.04130753634], - [0.63165143580682, 44.049501421006], - [0.62788687147415, 44.060631087503], - [0.60470426269225, 44.071956240981], - [0.59797769402997, 44.078224550392], - [0.57588134690602, 44.075909688882], - [0.5650766725315, 44.05922317624], - [0.53902463781127, 44.053724078487], - [0.52207386686065, 44.05696870158], - [0.51214276226031, 44.063296138178], - [0.5060519145443, 44.056124874168], - [0.48581828489735, 44.058598437153], - [0.47876888458351, 44.054521013697], - [0.4595157527797, 44.055234750337], - [0.44887562692766, 44.042594787048], - [0.44244380213487, 44.028759139019], - [0.41750846361679, 44.026970327067], - [0.39446082314246, 44.019984410354], - [0.38151930823563, 44.006373305954], - [0.3713725918443, 44.008155096613], - [0.36491171606437, 44.015152271393], - [0.35756641014151, 44.01637714562], - [0.32938687327154, 44.008324743136], - [0.31653852185538, 44.01011924115], - [0.31793784234407, 43.994973643102], - [0.30409114391986, 43.993060809869], - [0.27345979290764, 43.998815616074], - [0.2658680614134, 44.003716751224], - [0.24748889809396, 44.00473345675], - [0.2352015335306, 44.008471438234], - [0.22470969223381, 44.019169028731], - [0.20507206540087, 44.0190292233], - [0.20117969184465, 44.013668593318], - [0.18957139217537, 44.014641613964], - [0.17916093410135, 44.000666040326], - [0.16676088451462, 43.996830517368], - [0.1664085585548, 43.984223372919], - [0.1591211137839, 43.973860568873], - [0.13863539397759, 43.974770669617], - [0.14095408748334, 43.994676380228], - [0.12640607961248, 44.000336105676], - [0.11437379986584, 43.988072909373], - [0.076043349292038, 43.983138573142], - [0.067532020801164, 43.974192750661], - [0.067025223808929, 43.967876773509], - [0.055307282518792, 43.957963073751], - [0.057457862003849, 43.949050217484], - [0.068507868767624, 43.937809939581], - [0.07664444687609, 43.916470177201], - [0.059162622123353, 43.897893022976], - [0.045526933200978, 43.902166309486], - [0.032551602220287, 43.900191508039], - [0.017439868557199, 43.910847797935], - [-0.001843455443284, 43.921420036587], - [-0.013582447289478, 43.923649897266], - [-0.015361195667702, 43.934152340481], - [0.0042089573126749, 43.943424094056], - [0.0067349635456505, 43.953740495039], - [0.0014399806732066, 43.95988700889], - [-0.021769333384946, 43.973056989329], - [-0.036164948567139, 43.983735934778], - [-0.040802721725543, 43.968964305724], - [-0.046527042815464, 43.96103952555], - [-0.059361902039375, 43.960939386464], - [-0.073597153405665, 43.94504601184], - [-0.087028531609323, 43.947486286421], - [-0.098329558338237, 43.942427984825], - [-0.094989077566145, 43.933381091475], - [-0.10225702569033, 43.927416125055], - [-0.12594278448243, 43.944421563926], - [-0.13513697119614, 43.936297912997], - [-0.15333166658385, 43.939048046681], - [-0.15391959185065, 43.93232464077], - [-0.16562386692845, 43.927613195924], - [-0.17911005329495, 43.937915232082], - [-0.18485270811369, 43.928769857675], - [-0.19202409075549, 43.92603943497], - [-0.19978663649385, 43.915110256293], - [-0.21627342564629, 43.907357211722], - [-0.22763125359284, 43.91098862727], - [-0.23443742350753, 43.899009673945], - [-0.23393612239966, 43.89106512629], - [-0.22061963081894, 43.890378123713], - [-0.20122569807121, 43.885467279461], - [-0.19099207269451, 43.875181537803], - [-0.19855770088986, 43.862412899782], - [-0.20890830935508, 43.857673133295], - [-0.19596777254111, 43.845942065138], - [-0.18812879425044, 43.832561081629], - [-0.19725593392987, 43.830783419213], - [-0.1924617341874, 43.810177903112], - [-0.21750272546627, 43.809928705523], - [-0.22713966573848, 43.808271178562], - [-0.2188522220883, 43.796306415322], - [-0.2221263729722, 43.7870916829], - [-0.21332509113417, 43.779092079667], - [-0.21546661332355, 43.76954000666], - [-0.2079131727813, 43.760637827854], - [-0.21894685864266, 43.750867558794], - [-0.20605854570527, 43.750073485568], - [-0.19556855881059, 43.7457681747], - [-0.19413824181548, 43.737015033058], - [-0.20579650925303, 43.727838442023], - [-0.23258474697029, 43.714085612502], - [-0.2466519035345, 43.710665978321], - [-0.24762242324933, 43.705844967214], - [-0.23910090516212, 43.693946573483], - [-0.2558968586296, 43.679785947966], - [-0.25205576868858, 43.672170366192], - [-0.23973638497448, 43.671241337499], - [-0.24428632111807, 43.663120354346], - [-0.24316590125334, 43.654503914277], - [-0.26183976696696, 43.650333852662], - [-0.26375883992318, 43.635925825532], - [-0.28211623210758, 43.643073606308], - [-0.27959903054407, 43.618177993348], - [-0.27771465346131, 43.616200527152], - [-0.24720389403099, 43.615953419221], - [-0.25464414089565, 43.597079809878], - [-0.24817456316599, 43.596658468765], - [-0.24283300101136, 43.584979016847], - [-0.23502870973138, 43.583357698142], - [-0.22423605594959, 43.590402846839], - [-0.21060415101777, 43.593234551989], - [-0.20474309579199, 43.583597668054], - [-0.184802186901, 43.591150649921], - [-0.17641684233457, 43.596401195938], - [-0.16044860312899, 43.580574768792], - [-0.14809699734982, 43.585796179458], - [-0.12891801130162, 43.581224268549], - [-0.12160532728785, 43.586239621765], - [-0.10893257406459, 43.582372914877], - [-0.096787871742487, 43.582404857482], - [-0.093425031634788, 43.563569921638], - [-0.088934220496639, 43.557203940272], - [-0.094969201412123, 43.548141189515], - [-0.088671332923909, 43.542057336851], - [-0.078385830359136, 43.546822915717], - [-0.064394904836236, 43.545147116286], - [-0.056174185273693, 43.533029097587], - [-0.044654576654926, 43.525299051263], - [-0.040135444460287, 43.512604399189], - [-0.049321056921324, 43.492468050259], - [-0.034676452145955, 43.487323780123], - [-0.033960155813221, 43.47488114734], - [-0.01781381554075, 43.472147456522], - [-0.019322496256827, 43.466531436068], - [-0.065757532784034, 43.463483610747], - [-0.061666974828373, 43.452452940742], - [-0.06902834281151, 43.437345744695], - [-0.057818804728216, 43.427453948482], - [-0.053836151217704, 43.418937636756], - [-0.062025455126023, 43.417738498202], - [-0.066460558394679, 43.411733865017], - [-0.042752022413969, 43.410434732548], - [-0.034594805202059, 43.429064287986], - [-0.024647492248551, 43.430441863151], - [-0.016529018418498, 43.443944372555], - [-0.0009763127221442, 43.444398882283], - [-0.004617224617132, 43.431760209363], - [0.0095923341693579, 43.422106177396], - [-0.0038111619353702, 43.398395088127], - [0.0051784236678809, 43.394194111086], - [-0.0052544098304965, 43.373757650344], - [0.0057814385418996, 43.363002124921], - [0.023777202110468, 43.349140741399], - [0.02629551293813, 43.341364458979], - [0.010318205390046, 43.325314740811], - [-0.0032544572879219, 43.332106223092], - [-0.024874069651994, 43.329492363991], - [-0.031830518124419, 43.31215055589], - [-0.046122559308833, 43.300858489621], - [-0.044392167069364, 43.285272051797], - [-0.023979443826928, 43.280211811856], - [-0.017008526259885, 43.270448647152], - [-0.02562371129178, 43.260991374913], - [-0.02368673812988, 43.254986403176], - [-0.037586102171492, 43.242416639333], - [-0.045868384089441, 43.23213534366], - [-0.049462179860127, 43.217180833465], - [-0.07252723387475, 43.224387038006], - [-0.06786899220915, 43.177118135342], - [-0.095496012787098, 43.177197303166], - [-0.097529225654089, 43.166624966901], - [-0.10448219117427, 43.166691440804], - [-0.11133185839731, 43.179338583668], - [-0.11770126761715, 43.180323067986], - [-0.12655319090013, 43.160447394144], - [-0.13859988604461, 43.149103535932], - [-0.14050344828237, 43.136172128164], - [-0.14613588573303, 43.128233156333], - [-0.16634162368399, 43.121884731119], - [-0.17086902572159, 43.113421493828], - [-0.19098051290629, 43.111202819975], - [-0.19768215446413, 43.098173160871], - [-0.18693584923102, 43.091163577327], - [-0.18776795009335, 43.083330185944], - [-0.19776766479894, 43.071150876661], - [-0.19915084290716, 43.064412767264], - [-0.18964711095987, 43.052021067576], - [-0.20860119763472, 43.039724486019], - [-0.2239464237385, 43.033684092022], - [-0.23941952476886, 43.039676815812], - [-0.25993739842031, 43.038277556214], - [-0.25606972495919, 43.022726945323], - [-0.26484031266067, 43.009957412551], - [-0.28772006609469, 43.005371765683], - [-0.29154703187727, 42.987768864423], - [-0.28647438097301, 42.960054130137], - [-0.27938737996819, 42.942120483339], - [-0.28159219915593, 42.933563651361], - [-0.29003653813459, 42.929087564699], - [-0.29777949713226, 42.930973352505], - [-0.30871758220081, 42.924636095621], - [-0.31074643857214, 42.919004799168], - [-0.3270823405503, 42.915785217713], - [-0.32459076680338, 42.905260440304], - [-0.31819431138324, 42.897761911545], - [-0.31566756931289, 42.884801825113], - [-0.30749089647919, 42.867843636256], - [-0.3134440845287, 42.84937502201], - [-0.32341849261751, 42.835493251193], - [-0.34754374621365, 42.835913719016], - [-0.35580444046932, 42.830259858153], - [-0.36426705242731, 42.816951541187], - [-0.38297282239921, 42.807183511438], - [-0.39259734345566, 42.799559432268], - [-0.40923041576119, 42.807751018183], - [-0.41891986574729, 42.805668392726], - [-0.4397463890216, 42.796464192609], - [-0.45955289533088, 42.805069160235], - [-0.47286478572541, 42.808471966291], - [-0.50965055176559, 42.825391497677], - [-0.52482251446902, 42.81169739145], - [-0.52287827401621, 42.799049409362], - [-0.52973082529989, 42.791532352653], - [-0.54380966630498, 42.793156705649], - [-0.55120490858256, 42.777515930774], - [-0.57059337631889, 42.782911889725], - [-0.56471356204106, 42.798018672268], - [-0.56886605101147, 42.806822105003], - [-0.57774890534764, 42.807226210864], - [-0.59273144202498, 42.803229806499], - [-0.60076025043393, 42.806307889858], - [-0.59869384234063, 42.81658386823], - [-0.603635315569, 42.832617711388], - [-0.62218648418028, 42.839974285074], - [-0.636155774525, 42.853243576651], - [-0.64886350304795, 42.85519927328], - [-0.66146517128628, 42.863780807704], - [-0.66446867746396, 42.872433683564], - [-0.67603386909387, 42.882121412448], - [-0.69899318990985, 42.879656093293], - [-0.72094493959924, 42.888648555303], - [-0.72975658553822, 42.896558450267], - [-0.73499495012597, 42.912174326638], - [-0.72506592676777, 42.923031036303], - [-0.73250802453043, 42.928418305337], - [-0.73095444655538, 42.938774411246], - [-0.73924496462727, 42.947642219182], - [-0.75163409617224, 42.966937274035], - [-0.75637833414362, 42.96842723143], - [-0.78780828558188, 42.964223855906], - [-0.80004531168212, 42.958965798484], - [-0.81001402324725, 42.951435944964], - [-0.83838735696631, 42.953541926019], - [-0.86785079295099, 42.951831318684], - [-0.88394140902026, 42.955914739589], - [-0.8955520171068, 42.955177348594], - [-0.89972551604999, 42.961947365792], - [-0.91428689185959, 42.963568880303], - [-0.92198470791062, 42.955086159393], - [-0.94645511377364, 42.954058399843], - [-0.96116019688124, 42.960780979343], - [-0.97519106253852, 42.963790655966], - [-0.98075578416446, 42.970298449556], - [-1.000506176719, 42.977947402167], - [-1.0064490904565, 42.988992019109], - [-1.017553501514, 42.994381215156], - [-1.0308132030489, 42.993442586204], - [-1.0702604908545, 42.997696781882], - [-1.0830662265877, 43.001676885789], - [-1.0918797435203, 43.011282098743], - [-1.1106631611518, 43.020497969179], - [-1.1189184669033, 43.019962290375], - [-1.1334518490705, 43.010370716056], - [-1.1425678944125, 43.01020623111], - [-1.1482628224762, 43.026042549327], - [-1.166902843708, 43.035572700603], - [-1.1807284627612, 43.032529650113], - [-1.2086270779223, 43.047643271789], - [-1.2129701620528, 43.051464997176], - [-1.2311469598971, 43.054494771203], - [-1.2471955274996, 43.042411024375], - [-1.2642864994766, 43.044562906927], - [-1.2695665359652, 43.052910976258], - [-1.2870369506636, 43.063010309896], - [-1.3085440571134, 43.068678772612], - [-1.3085964987154, 43.072598494799], - [-1.2986655700641, 43.0932795305], - [-1.270184195429, 43.11856931563], - [-1.3206170406021, 43.112750854275], - [-1.332008952146, 43.107918007228], - [-1.3432982771448, 43.095380034809], - [-1.3418161470064, 43.077659473659], - [-1.345424430823, 43.049771385789], - [-1.3547517961039, 43.028468046718], - [-1.4351873583595, 43.045028123845], - [-1.4435857863974, 43.049155754363], - [-1.4717368566926, 43.081096614267], - [-1.4708680288881, 43.091714158473], - [-1.4642318751712, 43.097527189934], - [-1.441119428077, 43.108354777765], - [-1.424133734518, 43.12496310203], - [-1.4139466293353, 43.129178212008], - [-1.4125668315502, 43.137780243699], - [-1.4160249876204, 43.149739804939], - [-1.407219151478, 43.155624496506], - [-1.4033775513995, 43.164177642842], - [-1.4020191004086, 43.177869670121], - [-1.3838251967031, 43.190817108926], - [-1.3852679894359, 43.197620432311], - [-1.3833596738329, 43.217727485119], - [-1.3780657425747, 43.229613623477], - [-1.3827864939261, 43.253297008751], - [-1.4051202210621, 43.270440718404], - [-1.41320553569, 43.27341516617], - [-1.427533858751, 43.266986624133], - [-1.4388526778219, 43.266517244479], - [-1.4665458254283, 43.272575506034], - [-1.4962163703281, 43.283459630748], - [-1.5053259721679, 43.29278751177], - [-1.531891014245, 43.29350768549], - [-1.5518199451379, 43.291690896031], - [-1.5647157911934, 43.28791347967], - [-1.5581453439146, 43.276923368272], - [-1.5679664491027, 43.258218706628], - [-1.5751249050756, 43.249838487966], - [-1.599409166844, 43.254529607491], - [-1.6089315872346, 43.252129248888], - [-1.6224113687594, 43.263949698914], - [-1.6303661025897, 43.284448371284], - [-1.6226028674474, 43.300623373179], - [-1.6238145722959, 43.305851119398], - [-1.6354249085658, 43.309047121538], - [-1.6436698253027, 43.306683425588], - [-1.6548641244247, 43.312638352013], - [-1.6657592290595, 43.314078692272], - [-1.6841024926201, 43.309624250299], - [-1.7031331583996, 43.309207236385], - [-1.7135211355733, 43.300322980778], - [-1.729748923648, 43.295678859867], - [-1.7355452024048, 43.310342175974], - [-1.741348809523, 43.316753723039], - [-1.7373522231501, 43.329700042997], - [-1.7465925689614, 43.331212245199], - [-1.75771288788, 43.344008101532], - [-1.7754875064062, 43.343951352243], - [-1.7877317304935, 43.35420208724], - [-1.7841561370583, 43.36247717302], - [-1.7908870919282, 43.373441337557], - [-1.774636662773, 43.372994899351], - [-1.7620222428489, 43.375887316087], - [-1.7522896327775, 43.386696189176], - [-1.7378897690031, 43.381658311189], - [-1.6868172953384, 43.396262202116], - [-1.6814639058051, 43.390043159813], - [-1.6697675811644, 43.388034474703], - [-1.6607413607041, 43.393409282177], - [-1.6631432214875, 43.399286135975], - [-1.6577077165394, 43.405452954463], - [-1.6391136986966, 43.408363439748], - [-1.6255054979111, 43.421748443502], - [-1.6097350227992, 43.42673810418], - [-1.5973883731702, 43.437492657411], - [-1.5948860178815, 43.448345590744], - [-1.589536901573, 43.449746746172], - [-1.5774914365789, 43.464140403007], - [-1.5667182835573, 43.481676419031], - [-1.5480656499135, 43.495969105934], - [-1.5273009710877, 43.523223729778], - [-1.524870110434, 43.52969939564], - [-1.5070304054817, 43.554964967747], - [-1.4919223792491, 43.572318908712], - [-1.4600147168142, 43.620300326042], - [-1.4482076265277, 43.642275007226], - [-1.4464791056108, 43.656202078657], - [-1.4417112828647, 43.669164802754], - [-1.4404279792059, 43.690015095526], - [-1.4365047882215, 43.710561485871], - [-1.4221209140089, 43.763113080873], - [-1.4102233294571, 43.80324757496], - [-1.3953961014978, 43.849121637244], - [-1.3912095627914, 43.858859549202], - [-1.3749902540486, 43.913786973148], - [-1.3370648081025, 44.055900444664], - [-1.3259993612279, 44.089757299216], - [-1.3253321090174, 44.096044723029], - [-1.3123263437187, 44.144797833947], - [-1.3066211766807, 44.171603926833], - [-1.2946846942803, 44.234574277628], - [-1.2866796559521, 44.272650495294], - [-1.2721032403671, 44.350132816331], - [-1.2603597808298, 44.421266516235], - [-1.253891222702, 44.4676023661], - [-1.2514054654401, 44.488888404232], - [-1.2517305863129, 44.514867670196], - [-1.2602783216327, 44.539507595489], - [-1.2586139358279, 44.547133110681], - [-1.2461650749779, 44.555849447953], - [-1.2273970193025, 44.575752956082], - [-1.2121340085435, 44.599510356389], - [-1.2035045639686, 44.622709327857], - [-1.2041701334268, 44.639985478462], - [-1.1915382411984, 44.660725704553], - [-1.1812338744214, 44.663558241644], - [-1.1617591419762, 44.663377214551], - [-1.1451668567782, 44.657629640598], - [-1.1407629554469, 44.647227205689], - [-1.1249301480769, 44.647338816899], - [-1.0964256367438, 44.642110349796], - [-1.0807927355826, 44.640599156622], - [-1.0660182544594, 44.646890617223], - [-1.0512011570705, 44.64425984978], - [-1.0446037563356, 44.647779187283], - [-1.0053643374777, 44.648038204976], - [-1.0053044562958, 44.653801414632], - [-1.0185713848822, 44.663911777968], - [-1.0233052011919, 44.67502570927], - [-1.0311721058558, 44.679029191881], - [-1.0500276213214, 44.682042500572], - [-1.0581367463265, 44.689048034983], - [-1.0363621413125, 44.693561606338], - [-1.1066726573125, 44.742647003652], - [-1.1172405050661, 44.74399979558], - [-1.1253669244585, 44.751000559984], - [-1.1459514198999, 44.761417104514], - [-1.1605278218204, 44.774666943417], - [-1.1685739214819, 44.771765177553], - [-1.1781124391023, 44.755804073252], - [-1.1722002204463, 44.75098728783], - [-1.1900688471739, 44.737019677101], - [-1.1907716197354, 44.730920109354], - [-1.2044873682995, 44.721540106397], - [-1.2043808938438, 44.717662887525], - [-1.2229595098338, 44.709573193593], - [-1.2223114975031, 44.706127753166], - [-1.232623680779, 44.693018645313], - [-1.2374176561525, 44.682509258925], - [-1.2401079698599, 44.666522122287], - [-1.2389445057575, 44.65778181354], - [-1.2462021095773, 44.641862728761], - [-1.243112422171, 44.628827562622], - [-1.2521476349475, 44.617729855339], - [-1.2604466153424, 44.625669343024], - [-1.2617334302552, 44.647702967991], - [-1.2517253975532, 44.712016422613], - [-1.2370231185304, 44.784935738577], - [-1.2229034640823, 44.864823398854], - [-1.2041233648852, 44.989780904848], - [-1.198002213805, 45.042704797651], - [-1.1942059965634, 45.069162896565], - [-1.190236703195, 45.107603378458], - [-1.1808856453533, 45.176064250108], - [-1.162337441751, 45.297868794558], - [-1.1593599360818, 45.35068807983], - [-1.1605559384718, 45.41068706862], - [-1.1515035839053, 45.439471708886], - [-1.1514532239497, 45.451854900963], - [-1.1570373594316, 45.470365660883], - [-1.1546170989864, 45.480167705968], - [-1.1364252810856, 45.51099225066], - [-1.1228634483366, 45.520418190565], - [-1.1002940973715, 45.541645700905], - [-1.0961094287101, 45.55676823678], - [-1.0912045614296, 45.562411237009], - [-1.0605909878371, 45.571952807583], - [-1.0257391846007, 45.574691325999] - ], - [ - [-0.10221657949985, 43.358514651885], - [-0.090143282581254, 43.358859352353], - [-0.086786928155415, 43.336872044844], - [-0.096783660691415, 43.334763115112], - [-0.10847946239493, 43.337801770075], - [-0.11566381713828, 43.330976950464], - [-0.11139515774132, 43.315808605005], - [-0.10412308826692, 43.312464324807], - [-0.075041474866062, 43.307136096993], - [-0.070279283945182, 43.317455182599], - [-0.062503063827367, 43.346712050556], - [-0.065396680791735, 43.35504948237], - [-0.076422702553633, 43.364562190447], - [-0.09095912750824, 43.37316253716], - [-0.10728332222542, 43.370734939225], - [-0.10221657949985, 43.358514651885] - ], - [ - [-0.10307051080042, 43.242819142542], - [-0.099320994112155, 43.252127129181], - [-0.092111707678552, 43.252065563512], - [-0.079840951222932, 43.262366418014], - [-0.079283735332789, 43.271656452017], - [-0.096173699573616, 43.285481158687], - [-0.092031063800833, 43.300469260619], - [-0.11185367186851, 43.31039465909], - [-0.11997934072059, 43.306250495105], - [-0.12616476378979, 43.293876660784], - [-0.13650575288846, 43.284504952764], - [-0.14061503281768, 43.271941230583], - [-0.13346480059307, 43.258458798265], - [-0.12215124145212, 43.243893908194], - [-0.10307051080042, 43.242819142542] - ] - ], - [ - [ - [-1.4809035280913, 46.210026584191], - [-1.4670590519219, 46.217438107669], - [-1.4581989257469, 46.228670423688], - [-1.4129379411055, 46.230133712834], - [-1.4220417034491, 46.218167984195], - [-1.4439097820914, 46.213520554457], - [-1.4220989041249, 46.204879920432], - [-1.4042066055981, 46.203130836583], - [-1.3638972806052, 46.207474893999], - [-1.3476852125515, 46.202734923599], - [-1.3222125679058, 46.187529767805], - [-1.3079558339781, 46.190556844426], - [-1.2910690463149, 46.186236068993], - [-1.2742343920981, 46.160161159723], - [-1.2567915781519, 46.160986989161], - [-1.2761678172975, 46.147264631398], - [-1.3047717732064, 46.142879010637], - [-1.3216316554218, 46.14503661833], - [-1.3274184383871, 46.14822687302], - [-1.3549550613137, 46.15588643192], - [-1.3709015663159, 46.167389183114], - [-1.3895694731475, 46.175712081226], - [-1.4616048806387, 46.202118585061], - [-1.4746222599077, 46.202761956375], - [-1.5059249533038, 46.194090752981], - [-1.5353231579785, 46.204392826596], - [-1.5438132194944, 46.219775891607], - [-1.5614107739691, 46.237187235682], - [-1.5614800452621, 46.245426793509], - [-1.5410961547552, 46.243605472781], - [-1.5235573630959, 46.251304814865], - [-1.5143738942926, 46.25771379421], - [-1.500577180767, 46.258182208227], - [-1.4820147319539, 46.247190230382], - [-1.4745480329933, 46.23325461767], - [-1.4820134280193, 46.228634812137], - [-1.4915224496683, 46.22912437982], - [-1.4963233614182, 46.234948705937], - [-1.5127175658592, 46.222324670773], - [-1.5067150732904, 46.214570690055], - [-1.4995344178725, 46.216647439156], - [-1.4876936351453, 46.206896731453], - [-1.4809035280913, 46.210026584191] - ] - ], - [ - [ - [-1.2502595149646, 45.845963455069], - [-1.2592163284786, 45.868298982277], - [-1.2661547831538, 45.878168876396], - [-1.2875743906736, 45.894605091082], - [-1.3380521527432, 45.917870413489], - [-1.3509545085702, 45.925036655573], - [-1.3839170490528, 45.951445390606], - [-1.3917174561272, 45.974042547349], - [-1.387253309976, 45.993870516375], - [-1.3890812144965, 46.002682308229], - [-1.4005330150939, 46.016128617682], - [-1.4134350122266, 46.04686461584], - [-1.4070525832078, 46.048113296884], - [-1.3861064565982, 46.041600222214], - [-1.3712729567201, 46.039341747981], - [-1.3720788977654, 46.032155177051], - [-1.3659284854243, 46.027268018796], - [-1.3358134208014, 46.012041108959], - [-1.3127603503815, 45.992975701298], - [-1.2957631118509, 45.989021011393], - [-1.2811865787963, 45.988409134288], - [-1.2479197959851, 45.990418426217], - [-1.236032979657, 45.98151962032], - [-1.2354604124334, 45.968794257852], - [-1.2420820613428, 45.957461306685], - [-1.2297931152534, 45.944251359832], - [-1.2290798225525, 45.933287072883], - [-1.2337729337151, 45.927058615789], - [-1.2235741052757, 45.913107194719], - [-1.2064336016984, 45.901445384945], - [-1.188429054638, 45.886745497166], - [-1.1883892570962, 45.882604284253], - [-1.2000379808165, 45.867288972841], - [-1.2077101197588, 45.85034131532], - [-1.1956190365959, 45.82969276273], - [-1.2052089250964, 45.824572656016], - [-1.217429755495, 45.813047230038], - [-1.2364238849087, 45.80453236122], - [-1.2456662479746, 45.821355001166], - [-1.2502595149646, 45.845963455069] - ] - ] - ] - }, - "properties": { - "code": "75", - "name": "Nouvelle-Aquitaine", - "ISOCODE": "FR-NAQ" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-61.633561766828, 15.839768416792], - [-61.647984887615, 15.847134741722], - [-61.646885842853, 15.857928742112], - [-61.632811349943, 15.868008467548], - [-61.616954633224, 15.858507931645], - [-61.633561766828, 15.839768416792] - ] - ], - [ - [ - [-61.593277620878, 15.852525797847], - [-61.605013859511, 15.856849657536], - [-61.599089980543, 15.86282183683], - [-61.584324688123, 15.864352670299], - [-61.583843721787, 15.876528440617], - [-61.56835218061, 15.871658886402], - [-61.576558812766, 15.866561285047], - [-61.578755505213, 15.859571155868], - [-61.586962240267, 15.857704247339], - [-61.593277620878, 15.852525797847] - ] - ], - [ - [ - [-61.119932329535, 16.167153177808], - [-61.128887763352, 16.169445954743], - [-61.128428748764, 16.1735081931], - [-61.10791110472, 16.17273938264], - [-61.108228141193, 16.168901868819], - [-61.119932329535, 16.167153177808] - ] - ], - [ - [ - [-61.009731592269, 16.349752106931], - [-61.002076160633, 16.333961565656], - [-61.013134908482, 16.327650815385], - [-61.019408176242, 16.327258023238], - [-61.034891840704, 16.318141287197], - [-61.04737526771, 16.308282628256], - [-61.075287248562, 16.30179630617], - [-61.083852512155, 16.296542997214], - [-61.098491894606, 16.294315937968], - [-61.096467679563, 16.303378825401], - [-61.088288852872, 16.311808644234], - [-61.078645205481, 16.312443984655], - [-61.073986120786, 16.320036802024], - [-61.062767136655, 16.321448522593], - [-61.041743390837, 16.33492093245], - [-61.009731592269, 16.349752106931] - ] - ], - [ - [ - [-61.587243975479, 16.344937552384], - [-61.586116771069, 16.352772985013], - [-61.57927919558, 16.346500883709], - [-61.587243975479, 16.344937552384] - ] - ], - [ - [ - [-61.323119287614, 15.949610056251], - [-61.319301123538, 15.953827755403], - [-61.318358586729, 15.974425022279], - [-61.306996584991, 15.978583333802], - [-61.303420983511, 15.98716294348], - [-61.290717440169, 16.003396665549], - [-61.27600966113, 16.004687075325], - [-61.261828412286, 16.000182673051], - [-61.251663549277, 15.992644813745], - [-61.243967222943, 15.991362102173], - [-61.23206969995, 15.981798577882], - [-61.230907634697, 15.973181516809], - [-61.217654971033, 15.95850045622], - [-61.210098305978, 15.954400187796], - [-61.201119066068, 15.945734240556], - [-61.196153296332, 15.931798904869], - [-61.197228093353, 15.916016347626], - [-61.202131378589, 15.905461737534], - [-61.208019572206, 15.899614219392], - [-61.217816854526, 15.895176882383], - [-61.223251935643, 15.887675923067], - [-61.233121045184, 15.880256236855], - [-61.249483019474, 15.872323847126], - [-61.260137415575, 15.871122013185], - [-61.266137354751, 15.868277434084], - [-61.278683242486, 15.866954245142], - [-61.315008201808, 15.880547307819], - [-61.323358731877, 15.886983425807], - [-61.329502652724, 15.896539036864], - [-61.330916755209, 15.910313636985], - [-61.337222695437, 15.938422857959], - [-61.33451761871, 15.943643551268], - [-61.323119287614, 15.949610056251] - ] - ], - [ - [ - [-61.782310728057, 16.187698673935], - [-61.787181678891, 16.194189058809], - [-61.782433809868, 16.213368740799], - [-61.786880779671, 16.22808176121], - [-61.801476800406, 16.243439831742], - [-61.805916719765, 16.259643859084], - [-61.805955315399, 16.274467249514], - [-61.803077042805, 16.280461596097], - [-61.803087274812, 16.294200167117], - [-61.799712796785, 16.310451192395], - [-61.800519333745, 16.316330777534], - [-61.792264557903, 16.31931160273], - [-61.786799874047, 16.32515524508], - [-61.788027528452, 16.330992079142], - [-61.773403433379, 16.349526607134], - [-61.760450461163, 16.355009398062], - [-61.74823289666, 16.355163129494], - [-61.744143374802, 16.361533370444], - [-61.730811421242, 16.356618008788], - [-61.720527784087, 16.34845396472], - [-61.712963053158, 16.337326187592], - [-61.695242363953, 16.334731819059], - [-61.685801835829, 16.327420126329], - [-61.673030681674, 16.325012899468], - [-61.667669437974, 16.318516904751], - [-61.650128742025, 16.320755367987], - [-61.645413947651, 16.318102339209], - [-61.641367436099, 16.308678634631], - [-61.625741035676, 16.30157314131], - [-61.608828255564, 16.304399792764], - [-61.603538350899, 16.298128759003], - [-61.611158875442, 16.292394709257], - [-61.616000950851, 16.282484736805], - [-61.62596622969, 16.282549700306], - [-61.624284931296, 16.275398780573], - [-61.6118580456, 16.279475076475], - [-61.613531851882, 16.267646357505], - [-61.607586446108, 16.268194802932], - [-61.602073972636, 16.273671593204], - [-61.598569461166, 16.266463294653], - [-61.585026460185, 16.269626842482], - [-61.57915889342, 16.278851307278], - [-61.56483275027, 16.286617473035], - [-61.555114691066, 16.28474375617], - [-61.550019360034, 16.277772438397], - [-61.547231073118, 16.256130567514], - [-61.5530797846, 16.249573038381], - [-61.548832406206, 16.241907103306], - [-61.547714441544, 16.22328891533], - [-61.551691971155, 16.224181915727], - [-61.55591647918, 16.232646569246], - [-61.560761742267, 16.235300460642], - [-61.577416228036, 16.234960935817], - [-61.583788709917, 16.233421956855], - [-61.586921508469, 16.22374972117], - [-61.587548261375, 16.211413552612], - [-61.584403381095, 16.20631241372], - [-61.589954732406, 16.19514232053], - [-61.589150616047, 16.186550959656], - [-61.58295690373, 16.179640064121], - [-61.583780333393, 16.162518691127], - [-61.57732053457, 16.15370885841], - [-61.574138289437, 16.137780866936], - [-61.563082012583, 16.134317440896], - [-61.561115189196, 16.128293993138], - [-61.569955972829, 16.121077921547], - [-61.570381114244, 16.113940815553], - [-61.564202195109, 16.106783812191], - [-61.559272867917, 16.092084828853], - [-61.560836433545, 16.063174029371], - [-61.555488483812, 16.053015551687], - [-61.562887667481, 16.044343698344], - [-61.566151150902, 16.032344158198], - [-61.575790078604, 16.020636378388], - [-61.610752660917, 15.991875719851], - [-61.619204212061, 15.975525871038], - [-61.633373008564, 15.966578095065], - [-61.648533690715, 15.969746828639], - [-61.665156233008, 15.963885256595], - [-61.671772350042, 15.959406990072], - [-61.675881296722, 15.952562216162], - [-61.699976864829, 15.946608000907], - [-61.705776382452, 15.949083298214], - [-61.709496250489, 15.955387360726], - [-61.708058736036, 15.961027795786], - [-61.711081796137, 15.974061330382], - [-61.716241111462, 15.982715797918], - [-61.722805896747, 15.985385087665], - [-61.746384141374, 16.010289503454], - [-61.747337080707, 16.022316341783], - [-61.751046273315, 16.034494818174], - [-61.765058267712, 16.050868012846], - [-61.770365179133, 16.062038595876], - [-61.766361410866, 16.089809145936], - [-61.7729769599, 16.093417450166], - [-61.772143984619, 16.099649275099], - [-61.774153160614, 16.115026361619], - [-61.77357817784, 16.122926366244], - [-61.769864105642, 16.128243147151], - [-61.771038130405, 16.134983618728], - [-61.778538002814, 16.139500786324], - [-61.775113582008, 16.148926407453], - [-61.7759132936, 16.170940707524], - [-61.784106076905, 16.177088677498], - [-61.782310728057, 16.187698673935] - ] - ], - [ - [ - [-61.49348464245, 16.353632236141], - [-61.497398351201, 16.358022571471], - [-61.495443109093, 16.37594616952], - [-61.500178243663, 16.384136281949], - [-61.507507113796, 16.389253918155], - [-61.511152527625, 16.387558113477], - [-61.525750816257, 16.394665043367], - [-61.534551655015, 16.419670248695], - [-61.538773763808, 16.437459387242], - [-61.535458471539, 16.454969086787], - [-61.523223883299, 16.462836214247], - [-61.518153380095, 16.470708184204], - [-61.50730299274, 16.474833513006], - [-61.50428860693, 16.483171594489], - [-61.49479807123, 16.487079979846], - [-61.485524475177, 16.493158433413], - [-61.479496641275, 16.500367128796], - [-61.474006983834, 16.510561842101], - [-61.465321158622, 16.513164208575], - [-61.465108448233, 16.507356219468], - [-61.460459428456, 16.500114831158], - [-61.453213288153, 16.498412051897], - [-61.444923458251, 16.500268244559], - [-61.442244105107, 16.489305187348], - [-61.435127195969, 16.487681408224], - [-61.422444990174, 16.4749342009], - [-61.411393040438, 16.469202448138], - [-61.40702843877, 16.447435137369], - [-61.401916877535, 16.442674369948], - [-61.398317086437, 16.430469473942], - [-61.398420716966, 16.41781837423], - [-61.405530480848, 16.395596019371], - [-61.40466574415, 16.383711978307], - [-61.401490611723, 16.374373323823], - [-61.381038754427, 16.34575029101], - [-61.37588146355, 16.341236378329], - [-61.351141796425, 16.333770517333], - [-61.332141416031, 16.333982609967], - [-61.32145401211, 16.330644567545], - [-61.314573380392, 16.33077044573], - [-61.287885537827, 16.321835113072], - [-61.269308456352, 16.31133663943], - [-61.265288355631, 16.305610573748], - [-61.256777867855, 16.299802270715], - [-61.245276226142, 16.276257171512], - [-61.232931872301, 16.266891086012], - [-61.220328466077, 16.263985098887], - [-61.216899977731, 16.260340759217], - [-61.202501535267, 16.254209815379], - [-61.196037505889, 16.255240138377], - [-61.191173872125, 16.250047929202], - [-61.203805348638, 16.249702660769], - [-61.218509798761, 16.252989572242], - [-61.23150967587, 16.253324404437], - [-61.254263503143, 16.256133752482], - [-61.269470728714, 16.25015876866], - [-61.276762509452, 16.25071521635], - [-61.288646228443, 16.244937626831], - [-61.317824334501, 16.24038165498], - [-61.322941708704, 16.243630303608], - [-61.3276383273, 16.241231955816], - [-61.339283910697, 16.241431947269], - [-61.347648702275, 16.236730283072], - [-61.370463222778, 16.232166868805], - [-61.379668470884, 16.222020892619], - [-61.391259832938, 16.222922423906], - [-61.40501153066, 16.216925178636], - [-61.412584535743, 16.211514386559], - [-61.423016687022, 16.208889955893], - [-61.436533398902, 16.208980853917], - [-61.450739870236, 16.200409028616], - [-61.470299527981, 16.198878805178], - [-61.49022248227, 16.204895711549], - [-61.504617669815, 16.206093795934], - [-61.508479725498, 16.214920890579], - [-61.512023168409, 16.216391776096], - [-61.524294786657, 16.213992069136], - [-61.529473138568, 16.215880724886], - [-61.53040536202, 16.224632961722], - [-61.539653909524, 16.236963711243], - [-61.541240328535, 16.243843297791], - [-61.549697983932, 16.251447846787], - [-61.546544027313, 16.254137554781], - [-61.548844026581, 16.272183589317], - [-61.548684523044, 16.281152429864], - [-61.551398145077, 16.287520027389], - [-61.547243618321, 16.298925121311], - [-61.538690876976, 16.305676036633], - [-61.534416565937, 16.312393028651], - [-61.533802763786, 16.325696682112], - [-61.535584842212, 16.331470545574], - [-61.528927825759, 16.339298695192], - [-61.519443983501, 16.34333266716], - [-61.507936924031, 16.34257373143], - [-61.506988730883, 16.350339284753], - [-61.49348464245, 16.353632236141] - ] - ] - ] - }, - "properties": { "code": "01", "name": "Guadeloupe", "ISOCODE": "FR-GP" } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-61.204045862119, 14.861910321395], - [-61.197936385582, 14.863721448543], - [-61.182378867518, 14.871750492874], - [-61.179699763096, 14.874987215902], - [-61.176590188317, 14.874150969118], - [-61.165397709082, 14.877461562138], - [-61.159764930568, 14.878098752212], - [-61.143621635523, 14.877549337128], - [-61.126961080526, 14.874512980566], - [-61.12240314101, 14.871856774037], - [-61.11272994709, 14.869343736932], - [-61.104558849512, 14.865303722509], - [-61.086510614497, 14.853139375503], - [-61.084325564333, 14.853122066932], - [-61.072086184251, 14.844077682869], - [-61.062650363211, 14.838714501364], - [-61.056207720705, 14.834031468363], - [-61.052059829962, 14.832574884641], - [-61.046552856404, 14.834747605883], - [-61.043069951011, 14.834350197654], - [-61.038636988792, 14.830933599737], - [-61.02965157779, 14.827291831196], - [-61.020961888593, 14.817005830718], - [-61.020722468476, 14.812889383758], - [-61.018108440301, 14.809025422244], - [-61.010638760733, 14.807475406311], - [-61.005853940211, 14.808423538562], - [-61.001946918696, 14.807135403203], - [-61.005113638029, 14.801824938374], - [-61.004038123385, 14.797656084612], - [-60.998850990241, 14.790742413659], - [-60.989652964125, 14.780496311324], - [-60.981617363378, 14.777410677975], - [-60.98040122931, 14.770928105325], - [-60.973916256635, 14.76391411076], - [-60.968367784668, 14.760494778495], - [-60.966270755786, 14.756618674335], - [-60.967643040841, 14.754141210083], - [-60.963387442042, 14.747235161777], - [-60.961805266196, 14.738043832303], - [-60.956755684524, 14.736376348259], - [-60.952713298311, 14.742394982414], - [-60.952421323003, 14.748496465447], - [-60.942114856742, 14.756822274529], - [-60.932180446185, 14.762252927519], - [-60.924780474802, 14.761157334678], - [-60.920486642325, 14.758318400077], - [-60.912172452938, 14.762455167873], - [-60.909527289494, 14.766682747407], - [-60.902411619636, 14.767030264678], - [-60.901687745781, 14.769692048293], - [-60.897453798812, 14.770109849695], - [-60.892067922414, 14.774133282829], - [-60.888427865366, 14.780161376611], - [-60.885593737876, 14.780046867688], - [-60.87811398093, 14.775101482918], - [-60.875692904178, 14.775398180072], - [-60.873212908041, 14.76800742238], - [-60.875445251611, 14.763233489312], - [-60.871877498817, 14.759903422653], - [-60.878659525509, 14.757925476318], - [-60.881831869275, 14.761343085309], - [-60.882291666751, 14.766410175058], - [-60.893504003071, 14.765420272564], - [-60.897010381643, 14.758667037381], - [-60.890507318753, 14.755990004637], - [-60.888467587246, 14.753260560746], - [-60.890940357391, 14.74776572379], - [-60.893432918104, 14.749367955743], - [-60.898113887667, 14.746061789686], - [-60.898061093247, 14.742081811765], - [-60.892245880461, 14.741302383472], - [-60.893046561159, 14.737022964554], - [-60.90034226025, 14.734448945415], - [-60.90433894767, 14.737116503562], - [-60.908171714717, 14.73488763652], - [-60.910945910203, 14.736265416934], - [-60.911107458902, 14.741037972658], - [-60.91295338061, 14.74473778268], - [-60.91944015615, 14.746690230898], - [-60.926278766633, 14.750724905157], - [-60.930942276303, 14.749226015625], - [-60.937488690543, 14.749912540576], - [-60.938692542529, 14.745626518268], - [-60.943130046871, 14.743358159614], - [-60.944435544044, 14.733465944468], - [-60.946208621766, 14.728054457718], - [-60.944357151769, 14.722417416237], - [-60.940186752502, 14.721207439018], - [-60.937123794507, 14.716073752632], - [-60.934155385917, 14.715506927055], - [-60.930607373011, 14.721762701415], - [-60.928675122079, 14.715190514245], - [-60.933817327999, 14.712067407331], - [-60.933116879167, 14.707675844201], - [-60.924561539299, 14.708194875612], - [-60.920777041297, 14.710197719924], - [-60.918689433603, 14.714566968786], - [-60.913566558626, 14.715632337647], - [-60.915294953995, 14.709995751818], - [-60.914205915439, 14.702865421293], - [-60.908756749636, 14.699519929728], - [-60.90250391272, 14.701999898171], - [-60.901404160643, 14.695841751689], - [-60.906840923075, 14.695886365767], - [-60.91053464716, 14.688864210852], - [-60.913015671956, 14.69173294672], - [-60.923411365958, 14.688246069597], - [-60.926305587276, 14.688860215296], - [-60.929215432865, 14.685944889829], - [-60.926577791562, 14.680271853895], - [-60.93016952794, 14.678764119425], - [-60.933019899653, 14.681861861542], - [-60.937430570602, 14.682213752172], - [-60.938189754983, 14.675890537534], - [-60.94301224785, 14.671996159166], - [-60.942037491546, 14.667240719415], - [-60.935602824468, 14.664791714866], - [-60.935019872718, 14.661429535053], - [-60.9299545018, 14.653352092492], - [-60.925494841769, 14.653338554926], - [-60.920325816396, 14.65512403574], - [-60.916245979154, 14.663232781936], - [-60.910553864669, 14.665628680868], - [-60.905987394203, 14.662379723972], - [-60.897037443187, 14.665244694526], - [-60.897682343225, 14.661180647655], - [-60.89143374641, 14.658868626962], - [-60.891185554575, 14.665015454596], - [-60.886851315672, 14.666426372034], - [-60.882958213069, 14.665490035216], - [-60.883165440804, 14.658800707388], - [-60.886523372128, 14.652815027163], - [-60.890500946874, 14.650044524341], - [-60.897189473302, 14.649703887707], - [-60.900240136392, 14.651661575324], - [-60.906035039239, 14.648183380901], - [-60.905313213152, 14.646007289986], - [-60.898824294085, 14.644597866029], - [-60.896207304742, 14.641456742654], - [-60.89421810884, 14.63594567489], - [-60.891096289703, 14.632235187789], - [-60.897508701098, 14.627405513369], - [-60.897769071412, 14.620037956592], - [-60.891316024903, 14.619622720935], - [-60.888173248749, 14.620849378383], - [-60.884493369629, 14.619046725664], - [-60.875284018255, 14.620302986855], - [-60.874773032954, 14.615733307015], - [-60.877965520086, 14.612322357846], - [-60.8692174037, 14.604745359303], - [-60.872098129395, 14.600067485773], - [-60.87245993411, 14.596311782028], - [-60.867124741356, 14.591674577984], - [-60.858555497241, 14.589321759852], - [-60.852333103639, 14.593746439953], - [-60.850467413457, 14.585502025007], - [-60.851621358406, 14.579981728243], - [-60.847495876499, 14.576208287755], - [-60.85358770356, 14.575446573333], - [-60.852629902306, 14.570020702838], - [-60.846031397538, 14.564983891778], - [-60.842482739779, 14.566896609382], - [-60.840649796922, 14.56448516712], - [-60.841630870213, 14.559384406987], - [-60.830242568355, 14.569597097162], - [-60.830105468888, 14.56028255571], - [-60.834551330729, 14.556928975626], - [-60.838568014788, 14.550001236229], - [-60.836099148999, 14.546226711678], - [-60.831703557193, 14.54474300595], - [-60.826991038075, 14.537921507596], - [-60.83197709685, 14.531633551911], - [-60.825276533013, 14.533113876461], - [-60.824198453144, 14.529533798735], - [-60.825858984401, 14.521546140046], - [-60.830148953328, 14.524203582592], - [-60.834714601647, 14.522659997084], - [-60.832887594612, 14.519774213426], - [-60.836427654235, 14.513993186448], - [-60.834705070708, 14.509910220472], - [-60.82996968666, 14.514527188228], - [-60.824905588, 14.514890510078], - [-60.822673550686, 14.510666316928], - [-60.823766599082, 14.503690825767], - [-60.822794123203, 14.494437205811], - [-60.817886445696, 14.493175431402], - [-60.814401032392, 14.490257881442], - [-60.814161391096, 14.485185645066], - [-60.811039655527, 14.478866750314], - [-60.813411648811, 14.474532648344], - [-60.819315623886, 14.471349922928], - [-60.814865337778, 14.461681820899], - [-60.823640343189, 14.452442600671], - [-60.822624689154, 14.447235759261], - [-60.824508114184, 14.440062378446], - [-60.827157481217, 14.435156815127], - [-60.829194650283, 14.435716837388], - [-60.834379397705, 14.432278448448], - [-60.832686125867, 14.430003896954], - [-60.835512679275, 14.425822704027], - [-60.834660356119, 14.422876378982], - [-60.84051303983, 14.422338166739], - [-60.843385059242, 14.427471601963], - [-60.848640695224, 14.427424723583], - [-60.847224536912, 14.419936276844], - [-60.845292930114, 14.416021400005], - [-60.837656167689, 14.414012429722], - [-60.840522643781, 14.410464924352], - [-60.844528842898, 14.413528607853], - [-60.847788892765, 14.412334871302], - [-60.850339847119, 14.40783465465], - [-60.852856448816, 14.4068156896], - [-60.858072685688, 14.397929949606], - [-60.86294480669, 14.395641834437], - [-60.869263733958, 14.394743767144], - [-60.87660759455, 14.398195734874], - [-60.878928350266, 14.402871141158], - [-60.88505100913, 14.405408299877], - [-60.885439159029, 14.41360314295], - [-60.8931811347, 14.419182699037], - [-60.885859336519, 14.427442312737], - [-60.879902944482, 14.438425676217], - [-60.881202325749, 14.443091915666], - [-60.879719856896, 14.44737529506], - [-60.872628392533, 14.448809551984], - [-60.873868482406, 14.452481302432], - [-60.866932199852, 14.459207417499], - [-60.862964269674, 14.461434969974], - [-60.866076402811, 14.470457763871], - [-60.87559043158, 14.470236658169], - [-60.882968660734, 14.4662115879], - [-60.888823414311, 14.459692140411], - [-60.894298512621, 14.451699807502], - [-60.897691106977, 14.448879168539], - [-60.90016370471, 14.449916906412], - [-60.909584385784, 14.459601834816], - [-60.910096289657, 14.468919240095], - [-60.916981701315, 14.468857416975], - [-60.928754602235, 14.46427688124], - [-60.938367740609, 14.463969119755], - [-60.943589158828, 14.466250442187], - [-60.950920813456, 14.466578276622], - [-60.955112440126, 14.465075817466], - [-60.96188088152, 14.47082489224], - [-60.965766677246, 14.471339279031], - [-60.973092153975, 14.468292103858], - [-60.978401876207, 14.471226820319], - [-60.975945144912, 14.475728545127], - [-60.981361465758, 14.482281524361], - [-60.985408781994, 14.476030312335], - [-60.989984067281, 14.472916549971], - [-60.992686674099, 14.466923865464], - [-60.996689991819, 14.468198736423], - [-61.000437928634, 14.472003482681], - [-61.003853992637, 14.478812814355], - [-61.007938374409, 14.474050712357], - [-61.010635094126, 14.473562958913], - [-61.017352498906, 14.480046706944], - [-61.020922746651, 14.480525020461], - [-61.03251317448, 14.477087063475], - [-61.040669957662, 14.473531347092], - [-61.046572074599, 14.467832905159], - [-61.047429383634, 14.460469427803], - [-61.050106009927, 14.457053024278], - [-61.054725880599, 14.454329517028], - [-61.058628181849, 14.454132181344], - [-61.065234023829, 14.457662224623], - [-61.067298398911, 14.46034693879], - [-61.067668360624, 14.465503844108], - [-61.072092658923, 14.469109803901], - [-61.076749230993, 14.467515809182], - [-61.081692518297, 14.470219423156], - [-61.082963712202, 14.473394607531], - [-61.079315161913, 14.481462135987], - [-61.079893501021, 14.489378893354], - [-61.090818246081, 14.492941823522], - [-61.089718265549, 14.496393223729], - [-61.084641224522, 14.49827678888], - [-61.084059141692, 14.501031087753], - [-61.086564585237, 14.506430448561], - [-61.089826590214, 14.507562268764], - [-61.095525612997, 14.506404829408], - [-61.100439786619, 14.507210108628], - [-61.094625288486, 14.523808604704], - [-61.091362442163, 14.525231628381], - [-61.084493720202, 14.535038748094], - [-61.075010403185, 14.541253550408], - [-61.068568615803, 14.539802475653], - [-61.064509619841, 14.541944184451], - [-61.061206192909, 14.550305932469], - [-61.055325148003, 14.550918650008], - [-61.053109970024, 14.554472554348], - [-61.054195503029, 14.557647241722], - [-61.049855091635, 14.559874860475], - [-61.050569693848, 14.551297499758], - [-61.044230529342, 14.552937230425], - [-61.040414463981, 14.556412536846], - [-61.037361204508, 14.555032310405], - [-61.037782351945, 14.549791720846], - [-61.04413009618, 14.546221939279], - [-61.040691243481, 14.541446985649], - [-61.035028836842, 14.541178136716], - [-61.03068108714, 14.539336044496], - [-61.026584718426, 14.535416613259], - [-61.023016010979, 14.539775723998], - [-61.01713178459, 14.538282797649], - [-61.013819988008, 14.535047572925], - [-61.010000175304, 14.541212588352], - [-61.005417530936, 14.539730429087], - [-61.000687635947, 14.543898510396], - [-60.994209551553, 14.546335428751], - [-60.996092383244, 14.549678872933], - [-60.99108172719, 14.553047269922], - [-60.996856681871, 14.561006614016], - [-61.001422532248, 14.559550094555], - [-61.010574578025, 14.564802572683], - [-61.014138709418, 14.570565809614], - [-61.010523024067, 14.574788671756], - [-61.010671944106, 14.57876882886], - [-61.014437164139, 14.579612362562], - [-61.016031814974, 14.582868311332], - [-61.023258079858, 14.583521492795], - [-61.024260166204, 14.585608442482], - [-61.023038673216, 14.591884117057], - [-61.016737273021, 14.595272777969], - [-61.014811035177, 14.602491242421], - [-61.020175266991, 14.602646174708], - [-61.022123056822, 14.605351146856], - [-61.019049147725, 14.611297472904], - [-61.024188102832, 14.613009273514], - [-61.027200296557, 14.608872421354], - [-61.040305188873, 14.60391593682], - [-61.037772517576, 14.597759506337], - [-61.037893415232, 14.593543008131], - [-61.043404663655, 14.595212300844], - [-61.04815997935, 14.598323771776], - [-61.052479464194, 14.598356247727], - [-61.055948146152, 14.594990885602], - [-61.060945552717, 14.596973604239], - [-61.057704570424, 14.603369231594], - [-61.067501282923, 14.6013865404], - [-61.072090260048, 14.602347188852], - [-61.083306599691, 14.600057433053], - [-61.090645812729, 14.599998317249], - [-61.096408586302, 14.606490702901], - [-61.09908138981, 14.612315264716], - [-61.110995672599, 14.625267533645], - [-61.130022089135, 14.632753893885], - [-61.133321752995, 14.632641194729], - [-61.137282989528, 14.635303679983], - [-61.139874030088, 14.642953708013], - [-61.149357409659, 14.649284984095], - [-61.153006432096, 14.65525786954], - [-61.158413566448, 14.661152470672], - [-61.162147449917, 14.668353207492], - [-61.166963491398, 14.674280943862], - [-61.175726617879, 14.687118061096], - [-61.17881358919, 14.692836813684], - [-61.184159877707, 14.705944210298], - [-61.184327883856, 14.713360775426], - [-61.176553878817, 14.741206403438], - [-61.17725351256, 14.746184307086], - [-61.184652331677, 14.755915294227], - [-61.199273356942, 14.769086171347], - [-61.202705318999, 14.775395788963], - [-61.209676107893, 14.781051429903], - [-61.215105071118, 14.782309946257], - [-61.220773468668, 14.79351965809], - [-61.227145714297, 14.804144542873], - [-61.2289399188, 14.8117544439], - [-61.228608376891, 14.823282957234], - [-61.223236001805, 14.837038281642], - [-61.21899002146, 14.843859499965], - [-61.215471194312, 14.847520416895], - [-61.210497386735, 14.857931786493], - [-61.204045862119, 14.861910321395] - ] - ] - }, - "properties": { "code": "02", "name": "Martinique", "ISOCODE": "FR-MQ" } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-53.870434375273, 5.7449104931337], - [-53.877886422112, 5.7368506714647], - [-53.90057002646, 5.7415092227013], - [-53.89903570619, 5.7477556664337], - [-53.870434375273, 5.7449104931337] - ] - ], - [ - [ - [-54.262866014259, 5.2763794088942], - [-54.240222653269, 5.2863675167148], - [-54.227818290795, 5.298811974827], - [-54.20848197948, 5.3032382892827], - [-54.19683141711, 5.3187850929545], - [-54.184146850376, 5.323343664439], - [-54.174191736865, 5.3417614770912], - [-54.14793718565, 5.3626167245287], - [-54.132773603279, 5.3846632689967], - [-54.117478116658, 5.4173672800429], - [-54.092860763867, 5.4405055110011], - [-54.063725195329, 5.4806565680479], - [-54.046956269484, 5.4918376041137], - [-54.037464776574, 5.5101010755252], - [-54.018811786215, 5.5214389206923], - [-54.009473942828, 5.5453274314414], - [-54.003653891839, 5.5730648768993], - [-54.006597523184, 5.5892607310604], - [-54.004907782462, 5.6118457705281], - [-54.014856329741, 5.6408119832662], - [-54.011948038878, 5.663468313256], - [-53.971500049162, 5.7341746541286], - [-53.968340504127, 5.7451588592873], - [-53.934419725078, 5.7465313138855], - [-53.895425428493, 5.7330541527243], - [-53.836712859752, 5.7323064847222], - [-53.799234439704, 5.7238817805039], - [-53.786975959887, 5.7186709141915], - [-53.733987198145, 5.6887836941746], - [-53.712715958305, 5.6804956582425], - [-53.700811495542, 5.6705010590975], - [-53.647029326289, 5.640302547715], - [-53.630887351792, 5.6334299470212], - [-53.592551162579, 5.6082640423834], - [-53.584393711158, 5.6094623546164], - [-53.50886332364, 5.5780891436271], - [-53.469174550354, 5.5662346022297], - [-53.453569382873, 5.5683930569684], - [-53.403015077997, 5.563665511641], - [-53.365564014256, 5.5516606472615], - [-53.308912384842, 5.5384470957925], - [-53.300512506713, 5.5528693925483], - [-53.271974256164, 5.5611587428729], - [-53.269338109008, 5.5522252558034], - [-53.23411867321, 5.5425071694207], - [-53.187966675372, 5.5251511454233], - [-53.175294889318, 5.5235424882782], - [-53.130779622653, 5.5067849920981], - [-53.122049547976, 5.4970046713886], - [-53.074734826298, 5.4701920560875], - [-53.060603594644, 5.4650586598703], - [-53.01431951546, 5.4553078164341], - [-53.003160314486, 5.4386861012074], - [-52.996893794786, 5.4596930069106], - [-52.981186298522, 5.4541657279474], - [-52.956353875765, 5.4555426531472], - [-52.930925840412, 5.443189304076], - [-52.922858744598, 5.4297026375857], - [-52.875645210834, 5.395134542477], - [-52.867820710053, 5.3821529702959], - [-52.855604184631, 5.3778466084172], - [-52.834404500271, 5.3473851820448], - [-52.831605639941, 5.3332474094359], - [-52.811921641649, 5.323989708057], - [-52.788928709127, 5.3079971259297], - [-52.769338288472, 5.2788922211643], - [-52.722797114306, 5.2368388833953], - [-52.683839129716, 5.2099352638616], - [-52.666325683605, 5.2002328688054], - [-52.656199749922, 5.1852945779885], - [-52.637381338131, 5.1661527209851], - [-52.628093567263, 5.1621235661598], - [-52.627649173444, 5.1462877582226], - [-52.606599457385, 5.1346015000472], - [-52.577981537689, 5.1085751366517], - [-52.549456070124, 5.100638613552], - [-52.490117950992, 5.0405885535444], - [-52.468170688695, 5.0224742700305], - [-52.460314432396, 5.0121214814072], - [-52.420186763604, 4.9822303517225], - [-52.402042985345, 4.9644328086676], - [-52.390400815125, 4.945302253376], - [-52.364675922738, 4.9207169016692], - [-52.355881226457, 4.9175124436249], - [-52.334263734283, 4.9313304207521], - [-52.335864576865, 4.941815767051], - [-52.304339285464, 4.9508360234963], - [-52.283495881645, 4.9347307287598], - [-52.263040861811, 4.9141530948307], - [-52.262729933853, 4.8998561841106], - [-52.249874955894, 4.8892439827337], - [-52.229082293874, 4.8596017030659], - [-52.210714989829, 4.8586879631742], - [-52.200386562622, 4.8503002903876], - [-52.182576101399, 4.8205048122343], - [-52.159943441415, 4.8086905634655], - [-52.145696555689, 4.7908754485718], - [-52.139367197341, 4.7968981731195], - [-52.114831530206, 4.7861670001622], - [-52.100239025169, 4.7717176636045], - [-52.089912066838, 4.7683838464068], - [-52.069754606897, 4.7514387392035], - [-52.017814365524, 4.718335681359], - [-52.006179250743, 4.7017879541951], - [-51.916024214319, 4.668815539866], - [-51.896519698294, 4.676768312428], - [-51.862390485144, 4.6708003084052], - [-51.832635527672, 4.6507501480391], - [-51.823261930884, 4.635641127728], - [-51.811981346307, 4.6293646244524], - [-51.799483475822, 4.6146485968912], - [-51.784567687491, 4.5745213968512], - [-51.781614207374, 4.5441692871027], - [-51.775019619042, 4.5205746874562], - [-51.776548583925, 4.4902031550085], - [-51.768387477939, 4.4682690353028], - [-51.748665410741, 4.4474547093187], - [-51.752328441827, 4.4182125048386], - [-51.737147252553, 4.4041259031371], - [-51.711834878195, 4.3880250207713], - [-51.692206216363, 4.3950524298082], - [-51.692393784425, 4.3844140118647], - [-51.707651369383, 4.3755661914807], - [-51.718108675764, 4.3571438328783], - [-51.718383011835, 4.3404128364733], - [-51.711081409267, 4.3140078457171], - [-51.701558332228, 4.2945431110295], - [-51.683398799883, 4.2710667135168], - [-51.675882031481, 4.2537436009893], - [-51.661022909296, 4.2438436663588], - [-51.656192903346, 4.2264093762853], - [-51.626281726719, 4.1950661463654], - [-51.634913693767, 4.1763125671143], - [-51.63750189943, 4.1332275560296], - [-51.647651861027, 4.0794636482237], - [-51.656014792722, 4.0538694849574], - [-51.675670135113, 4.0360177099327], - [-51.702135480544, 4.02432744304], - [-51.708686123337, 4.017987624705], - [-51.745685993774, 4.0014526708911], - [-51.775717858493, 3.9764350175201], - [-51.782283451259, 3.9640547240078], - [-51.78029379459, 3.9409937117156], - [-51.782530259289, 3.9207148928692], - [-51.798590836173, 3.8869182263487], - [-51.821958925164, 3.8682745935366], - [-51.823397734085, 3.8585361108645], - [-51.837777500164, 3.8499980310652], - [-51.856350283673, 3.8326312859371], - [-51.873945573273, 3.8031320774989], - [-51.891090039957, 3.7961274870908], - [-51.896426853701, 3.7850335927045], - [-51.920567066689, 3.7800592760501], - [-51.923542657142, 3.7641591056033], - [-51.918833693251, 3.7492295428788], - [-51.923475741699, 3.7226346395689], - [-51.955728054116, 3.7204074665979], - [-51.972555161267, 3.7054311484382], - [-51.978748191169, 3.6824004843594], - [-51.986388862391, 3.6725404631457], - [-51.991313202659, 3.6407315920422], - [-51.988221624686, 3.6276876173801], - [-52.019722377848, 3.5930217371882], - [-52.060359310551, 3.5196449891265], - [-52.069908631066, 3.51800677014], - [-52.073507500696, 3.4997426943768], - [-52.08677525794, 3.4895404755011], - [-52.095175968896, 3.4617253482451], - [-52.108617032724, 3.4510172217463], - [-52.138319175974, 3.3937122626886], - [-52.150062553217, 3.3756061479053], - [-52.173680729923, 3.3319975769474], - [-52.187903953199, 3.317454077759], - [-52.189028520898, 3.3020164147496], - [-52.210452973822, 3.2773645326556], - [-52.233551819493, 3.240650008421], - [-52.2426430107, 3.2373356483004], - [-52.249063373148, 3.250251038254], - [-52.259709946711, 3.2530615508378], - [-52.274474519949, 3.235812608872], - [-52.292462780503, 3.2263850399586], - [-52.302818768633, 3.1990142961976], - [-52.299307558495, 3.1781833835595], - [-52.330478173873, 3.1677865447781], - [-52.339415906748, 3.1439389262584], - [-52.349078418676, 3.1354109983365], - [-52.35162290697, 3.1234417939473], - [-52.3385140188, 3.1167557183711], - [-52.34515031019, 3.1080327965935], - [-52.343074840595, 3.0932421660963], - [-52.325894161671, 3.0777731439101], - [-52.345489094399, 3.0423797356188], - [-52.353803125518, 3.0214311913146], - [-52.362057536216, 3.0170894098949], - [-52.370552165855, 2.97591909157], - [-52.395079580663, 2.9277883212834], - [-52.379257696823, 2.9129479592641], - [-52.39009288722, 2.8981695702437], - [-52.405543272257, 2.9008546667898], - [-52.419837333975, 2.893130985888], - [-52.444916094791, 2.8500261345049], - [-52.455710551516, 2.8224214300702], - [-52.473404092528, 2.7938522356518], - [-52.478087571117, 2.7766245771087], - [-52.478968658748, 2.7531061394273], - [-52.491027900942, 2.7291623259451], - [-52.499656629936, 2.7219488960566], - [-52.510635721201, 2.6932793300204], - [-52.529337734985, 2.6541808625403], - [-52.541997006503, 2.6539308223123], - [-52.555185359053, 2.6402752946528], - [-52.542947468293, 2.6239475126302], - [-52.548785600581, 2.6100155016155], - [-52.531807312113, 2.5988862032418], - [-52.527622266753, 2.5810160208327], - [-52.537978686141, 2.5664790248713], - [-52.561156784125, 2.5502515931209], - [-52.551653756749, 2.5208228326326], - [-52.565161546205, 2.5162358626844], - [-52.584751759132, 2.4963340907662], - [-52.593735764712, 2.4778922460682], - [-52.616762222128, 2.4756394764376], - [-52.621527379923, 2.4620186165288], - [-52.611242322961, 2.4554510625897], - [-52.616345652966, 2.4455620886592], - [-52.637195935851, 2.4429855184842], - [-52.64631771427, 2.4320869547261], - [-52.644682646044, 2.4182832848087], - [-52.6557059596, 2.4059708306583], - [-52.654099480105, 2.3956606318591], - [-52.660530608181, 2.3739379262039], - [-52.680151207435, 2.370588881787], - [-52.71041812416, 2.3585884729123], - [-52.719470263205, 2.3437646975718], - [-52.769908189272, 2.3209253142118], - [-52.793673355459, 2.304434737563], - [-52.819174037528, 2.2946597180915], - [-52.839445700591, 2.2910347300002], - [-52.838177463888, 2.2812605225687], - [-52.856577544392, 2.2800259807313], - [-52.853983968273, 2.2636426710577], - [-52.86984216908, 2.2600459429836], - [-52.877221305434, 2.2383881928929], - [-52.886505496255, 2.2346878716074], - [-52.886153271384, 2.2192450547539], - [-52.901038014396, 2.1985554568938], - [-52.91396690882, 2.1922708449834], - [-52.939030098669, 2.189893816624], - [-52.939825169721, 2.1797974129318], - [-52.952691012944, 2.174533663303], - [-52.985700093695, 2.1685716236534], - [-53.001453904541, 2.1775951046092], - [-53.041584032761, 2.1873481856855], - [-53.060001178205, 2.1965567562092], - [-53.062342112939, 2.2041843636448], - [-53.080261730774, 2.2225309949581], - [-53.094492958577, 2.2215777162888], - [-53.13385114565, 2.2253471578289], - [-53.181269812706, 2.2119298347366], - [-53.209697425491, 2.2105377836731], - [-53.226086026734, 2.2024681680332], - [-53.244697383443, 2.2110933714304], - [-53.263030725464, 2.1891485517551], - [-53.27523834383, 2.2009497919657], - [-53.272039021182, 2.2220586741672], - [-53.260455877868, 2.2234587870213], - [-53.25870167422, 2.2369737590856], - [-53.23700132864, 2.2520890645195], - [-53.226655262079, 2.2635898239707], - [-53.237554458162, 2.2699716335673], - [-53.256818387152, 2.2704134087924], - [-53.26016840175, 2.2858133914971], - [-53.280763858611, 2.3014243097961], - [-53.300865415294, 2.3070281723707], - [-53.314117647012, 2.323385695265], - [-53.317147438446, 2.3400825257566], - [-53.331859630719, 2.3340619997331], - [-53.333058337428, 2.3459462201964], - [-53.356331646394, 2.347854992745], - [-53.358656319737, 2.3278521194051], - [-53.372089634126, 2.3129994298218], - [-53.388015075308, 2.3038654794806], - [-53.399174963147, 2.3049719972907], - [-53.40628632925, 2.2898355970349], - [-53.433121033304, 2.283085806162], - [-53.444765440458, 2.2728980637387], - [-53.451705880049, 2.2595575198176], - [-53.464810284028, 2.2521568558424], - [-53.498114464001, 2.2593460010372], - [-53.525831132889, 2.2529148949165], - [-53.544810038231, 2.2530723689672], - [-53.567459930347, 2.2671154832105], - [-53.581738192006, 2.2680651296355], - [-53.604411697437, 2.2806979473673], - [-53.619368297097, 2.2733437827726], - [-53.626011873791, 2.2791139194501], - [-53.657025775315, 2.2812663260589], - [-53.653726874251, 2.2974142121025], - [-53.669143748873, 2.3036906508646], - [-53.689066812059, 2.2950125153414], - [-53.698903151567, 2.3111386460154], - [-53.728945680109, 2.3108730297403], - [-53.739586128734, 2.3057719339171], - [-53.747656186871, 2.3197993602764], - [-53.725996071963, 2.3388253190133], - [-53.741548012867, 2.3736469528128], - [-53.751120819346, 2.3697095104057], - [-53.765989126907, 2.375532710037], - [-53.783265068377, 2.3611406869512], - [-53.796860642861, 2.3614593214452], - [-53.81052476268, 2.3512450304729], - [-53.809578187046, 2.3410386952895], - [-53.834587093055, 2.3322899327453], - [-53.827893001968, 2.3229014124557], - [-53.815154503059, 2.3222492938537], - [-53.813216041767, 2.3113898276005], - [-53.835640966513, 2.3039543572339], - [-53.851764349759, 2.3030789176854], - [-53.882721158575, 2.3087999802136], - [-53.885191189107, 2.2750901153297], - [-53.896454298088, 2.2729386216716], - [-53.905403005731, 2.2606512224728], - [-53.91510319892, 2.2622336350847], - [-53.915050675876, 2.2781460256735], - [-53.933611429337, 2.269373712967], - [-53.941349609132, 2.2592746002028], - [-53.936594453965, 2.2502318640433], - [-53.940896361566, 2.2198377044822], - [-53.964388361018, 2.218521068188], - [-53.973451072653, 2.2061817978445], - [-53.990362121068, 2.2090984530074], - [-54.017342447745, 2.1820834272769], - [-54.029947126846, 2.1871705400402], - [-54.045805238906, 2.1863901831659], - [-54.064369342986, 2.1964307053103], - [-54.072299676582, 2.1786794158474], - [-54.08283164475, 2.1724965434496], - [-54.085085613451, 2.1480232613709], - [-54.095350768031, 2.1320348808263], - [-54.112087753481, 2.1175667170442], - [-54.127829732075, 2.1229667584208], - [-54.159341789619, 2.1234695547512], - [-54.174075660524, 2.1366521094363], - [-54.190364396535, 2.1710812617384], - [-54.224091361855, 2.1497983892807], - [-54.254256912253, 2.1557695046639], - [-54.267552854806, 2.1442669520787], - [-54.288233345492, 2.147639261715], - [-54.319253075811, 2.1595544411166], - [-54.341832485053, 2.1518014547446], - [-54.339086916635, 2.168554210257], - [-54.360668130739, 2.1748995679326], - [-54.364835391293, 2.1849233421364], - [-54.354423675378, 2.2029260354922], - [-54.363780895557, 2.210337749774], - [-54.397791941011, 2.1968809499094], - [-54.42101368265, 2.2000597926314], - [-54.420670361717, 2.2136215359175], - [-54.433196987168, 2.2131182664551], - [-54.441671926258, 2.2051504817472], - [-54.460827007844, 2.2074672711924], - [-54.478120569375, 2.2161897943211], - [-54.476245480032, 2.2254676162237], - [-54.503743707826, 2.2544224663441], - [-54.523241499869, 2.2527262123599], - [-54.535482660783, 2.2604638716604], - [-54.538791838056, 2.2724582451497], - [-54.520241461985, 2.2768464317176], - [-54.519344430168, 2.2892739832837], - [-54.533658650118, 2.2924983332531], - [-54.538016791767, 2.3044927025772], - [-54.532681133799, 2.3168878577412], - [-54.543056212929, 2.326819850898], - [-54.59182162165, 2.3250026889434], - [-54.601500729322, 2.3366165466918], - [-54.590443158543, 2.3519263098488], - [-54.558308492487, 2.3516488904296], - [-54.522197362088, 2.3369264627634], - [-54.509975123162, 2.3366484361267], - [-54.510252417974, 2.3713713011284], - [-54.504975070503, 2.3910931323174], - [-54.49608616343, 2.4055372839428], - [-54.471751404771, 2.4354799412286], - [-54.438610084343, 2.4322222649037], - [-54.419512495163, 2.4368416979208], - [-54.39083815185, 2.4684491214879], - [-54.38907253666, 2.4806955465275], - [-54.372729822487, 2.4912275812871], - [-54.369994923459, 2.5089173040419], - [-54.352913073729, 2.5185674985255], - [-54.34410045025, 2.5397108926895], - [-54.345920253557, 2.561742524651], - [-54.33401631489, 2.5664106695319], - [-54.32281172448, 2.5928221383698], - [-54.321642497617, 2.6096480229722], - [-54.312765543016, 2.6133277248044], - [-54.31719726069, 2.6268177831086], - [-54.29090970767, 2.6606310004328], - [-54.280005701825, 2.6665871925767], - [-54.269420561724, 2.6851363777484], - [-54.273007056817, 2.6932287143362], - [-54.264722357456, 2.7231474019132], - [-54.235163925432, 2.7478316519087], - [-54.208634295133, 2.7766192112614], - [-54.208133578115, 2.7937324925247], - [-54.200369962627, 2.8012466358484], - [-54.206202149817, 2.8285723038286], - [-54.185911894683, 2.8378169785487], - [-54.179398860611, 2.8585163824485], - [-54.189407665841, 2.8678494104288], - [-54.193859317854, 2.8872316981857], - [-54.185709373887, 2.9053822858276], - [-54.185289583847, 2.91680851826], - [-54.172831071757, 2.9385877115839], - [-54.175904172712, 2.9576994163798], - [-54.164823951127, 2.9734572490979], - [-54.181399227755, 2.9837106825116], - [-54.181478020797, 3.0013584325913], - [-54.169656917996, 3.0075111490591], - [-54.170525159314, 3.0200087540496], - [-54.19067247685, 3.069601251712], - [-54.17426789177, 3.0725319328281], - [-54.181094744884, 3.0907990191331], - [-54.173671567916, 3.1055950922194], - [-54.186189999628, 3.1351142569647], - [-54.198471996305, 3.123771871099], - [-54.213840499038, 3.150181795143], - [-54.203115724011, 3.157575913675], - [-54.204120901379, 3.167395159674], - [-54.194007395456, 3.1970583224364], - [-54.178168904994, 3.2068788631048], - [-54.152320699544, 3.2410781402204], - [-54.136293144425, 3.2660090565619], - [-54.121829138487, 3.2718629338758], - [-54.117968923844, 3.2846620973415], - [-54.100466323302, 3.3003723745283], - [-54.081625034435, 3.2934886718991], - [-54.064241525004, 3.3126532463437], - [-54.06715847166, 3.3243288144866], - [-54.06218177045, 3.3520293128855], - [-54.053488609946, 3.3634107358171], - [-54.059100725427, 3.3783806592773], - [-54.034185047889, 3.4048240487565], - [-54.020672938839, 3.4119659557414], - [-54.012133509677, 3.4270289843021], - [-54.019083743108, 3.4361380960611], - [-54.016985509834, 3.4569881479689], - [-54.008052369248, 3.4680604397954], - [-54.008320853295, 3.5066713144546], - [-53.999990815695, 3.524178298858], - [-54.009265240273, 3.5378210522926], - [-54.004485319904, 3.5605937315448], - [-53.98703962948, 3.5803472195456], - [-53.980580745949, 3.6083254239515], - [-53.989315888026, 3.6149298685601], - [-54.003189024935, 3.6450872463876], - [-54.022618182306, 3.6467456862701], - [-54.029407607234, 3.6312126239581], - [-54.050962672311, 3.6350235551762], - [-54.050339819694, 3.6527154344785], - [-54.056885787822, 3.6600486397741], - [-54.082843031463, 3.6744072261806], - [-54.0865962578, 3.6871707582536], - [-54.078988830955, 3.7064511774739], - [-54.084754118675, 3.7238482757225], - [-54.095625157433, 3.7333315585552], - [-54.100737542566, 3.7514983108145], - [-54.113079866772, 3.7684220868723], - [-54.121892382347, 3.7926706949773], - [-54.130377462649, 3.7999651237886], - [-54.166238334553, 3.805156134274], - [-54.186354773814, 3.8002219841512], - [-54.197703785339, 3.8054785208196], - [-54.20175687656, 3.8232481374998], - [-54.189386190364, 3.8418281592706], - [-54.196495701573, 3.8513970777255], - [-54.236887910757, 3.8604652052628], - [-54.250277792254, 3.8867857374249], - [-54.249189869496, 3.9088425216801], - [-54.278099503312, 3.9205870282916], - [-54.289965840761, 3.9357646401218], - [-54.29958095209, 3.9677636343795], - [-54.318053687475, 4.0131453346459], - [-54.336240932718, 4.0371004539892], - [-54.357569123254, 4.0501448068332], - [-54.344076199707, 4.0959372834853], - [-54.344322701853, 4.1134401961426], - [-54.323301670884, 4.1347004780105], - [-54.325436701081, 4.1501049388355], - [-54.340806334555, 4.1556168596307], - [-54.366322001621, 4.1762836408717], - [-54.387231386423, 4.1793705667925], - [-54.395737232332, 4.2021487209072], - [-54.388370867675, 4.2457774455059], - [-54.382323935485, 4.2632729375416], - [-54.390476069704, 4.2800753216892], - [-54.394439769519, 4.3065294022075], - [-54.391375518757, 4.3332099242721], - [-54.385863609216, 4.3492169782989], - [-54.394501153553, 4.3649786564754], - [-54.411515590852, 4.3736161163727], - [-54.435994346941, 4.3645844823004], - [-54.440743069168, 4.3727416650479], - [-54.432201067989, 4.4150723011303], - [-54.441035895905, 4.4389134958369], - [-54.432421475822, 4.4679483152275], - [-54.437897392371, 4.490814207996], - [-54.450025872006, 4.5258780813901], - [-54.425132424615, 4.5562059347853], - [-54.417918359697, 4.5785254856514], - [-54.415241817173, 4.606470441976], - [-54.436351289991, 4.6363040139953], - [-54.43568178545, 4.6532260375649], - [-54.423668070639, 4.6654462564097], - [-54.4262564016, 4.6831752259123], - [-54.433422606587, 4.6973324987317], - [-54.427245236117, 4.7149491802101], - [-54.435414328774, 4.7247764719879], - [-54.458543644528, 4.7257603315912], - [-54.466259120463, 4.7398423655057], - [-54.459970700728, 4.7777678336806], - [-54.467827696164, 4.814929055577], - [-54.465563115708, 4.8240431031641], - [-54.46890651684, 4.8633887349655], - [-54.468973090114, 4.8903634409371], - [-54.478688716157, 4.9035249723935], - [-54.446120348109, 4.9349698819465], - [-54.439850925063, 4.952563992458], - [-54.443267197438, 4.9865458051035], - [-54.436274055119, 4.9932487640836], - [-54.437853118554, 5.0173013054688], - [-54.425502764339, 5.0340195826318], - [-54.416730606915, 5.0604921886792], - [-54.415499820177, 5.0846792375844], - [-54.37534108379, 5.1078641738779], - [-54.365922885417, 5.1350973963443], - [-54.350554422629, 5.1438636995822], - [-54.346323867677, 5.1616360756424], - [-54.333884890559, 5.1762728437267], - [-54.312669573789, 5.2128222761107], - [-54.30811059449, 5.2252720237556], - [-54.285918868333, 5.2491822108207], - [-54.278956436148, 5.2624821687659], - [-54.262866014259, 5.2763794088942] - ] - ] - ] - }, - "properties": { "code": "03", "name": "Guyane", "ISOCODE": "FR-GF" } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [55.25415375561, -21.109737804325], - [55.230936180403, -21.090934707251], - [55.221239445979, -21.078095020713], - [55.222672586796, -21.055647530992], - [55.217135411092, -21.036469853464], - [55.233691556437, -21.019279719696], - [55.244908004365, -21.019876366239], - [55.256552904916, -21.0162341043], - [55.274828812396, -21.003236502391], - [55.279329074841, -20.99580668298], - [55.282766218872, -20.978605336065], - [55.278748340251, -20.963381843067], - [55.27823084148, -20.952052399071], - [55.288112554157, -20.937199184538], - [55.289292404055, -20.923219361848], - [55.30433191919, -20.929152184371], - [55.325052994639, -20.929558227374], - [55.343016813716, -20.922804444906], - [55.355139561644, -20.910079541906], - [55.386296665128, -20.889371260808], - [55.394036917298, -20.882986388174], - [55.421141873335, -20.874440484522], - [55.437381127014, -20.876567897466], - [55.456649591996, -20.876526962726], - [55.471366123992, -20.88456241524], - [55.485094324598, -20.885877009892], - [55.502874187823, -20.882269385646], - [55.541560144133, -20.89467347041], - [55.551075265405, -20.895347906424], - [55.55717638151, -20.891552105997], - [55.587309965415, -20.896549201032], - [55.592451795185, -20.895958362667], - [55.61789051779, -20.909357098243], - [55.640381167177, -20.91326314248], - [55.664378168675, -20.925161312912], - [55.680839253857, -20.942754586943], - [55.694615577906, -20.963060447375], - [55.700683666125, -20.978611757202], - [55.700686665069, -21.005727085591], - [55.702240950638, -21.016337520335], - [55.707788812226, -21.028026265196], - [55.713564045606, -21.029915684479], - [55.728090424356, -21.046588707299], - [55.732198197765, -21.061971681397], - [55.7387344493, -21.071505992956], - [55.752531093226, -21.085300722523], - [55.762611492449, -21.100604921751], - [55.77143403156, -21.106971183666], - [55.780072832563, -21.121889982217], - [55.800058131227, -21.127272443592], - [55.808258463549, -21.136108721779], - [55.826736952168, -21.145764202904], - [55.834386208899, -21.160249915052], - [55.832909277473, -21.166581656933], - [55.836628265464, -21.183406142411], - [55.825382333317, -21.187945665989], - [55.824708367899, -21.203251849261], - [55.814058919803, -21.214293733919], - [55.808520861285, -21.227530149164], - [55.804226212501, -21.252892346481], - [55.802020994801, -21.257819143119], - [55.803216924008, -21.276421214981], - [55.808280901341, -21.287305928884], - [55.805403930158, -21.296578694611], - [55.804504092923, -21.312482750854], - [55.807295563557, -21.336761171791], - [55.799849509215, -21.346518885481], - [55.779848640249, -21.362096247769], - [55.7736071095, -21.365231547113], - [55.760772415062, -21.363569944646], - [55.741310273026, -21.369204880066], - [55.727080508255, -21.369853677725], - [55.719399086761, -21.37393894895], - [55.702544549396, -21.376892628476], - [55.681553265314, -21.374733505191], - [55.670862413982, -21.383821728156], - [55.65919329063, -21.382840878435], - [55.652833154059, -21.385827852775], - [55.638028256227, -21.382997384189], - [55.625637295877, -21.382826767847], - [55.609006957416, -21.386904617465], - [55.584504867382, -21.372380188377], - [55.571433456659, -21.375964895307], - [55.547526506413, -21.369146515459], - [55.536725030294, -21.363098987553], - [55.527168599735, -21.361948612279], - [55.501002992462, -21.350598321595], - [55.488681490983, -21.350477057178], - [55.459522850383, -21.341144046726], - [55.454781045738, -21.331585289694], - [55.448947363585, -21.328377283821], - [55.429383738704, -21.326204793365], - [55.417433869019, -21.320149166717], - [55.407899030618, -21.306824395359], - [55.390688251147, -21.292159550605], - [55.367871676711, -21.284874530064], - [55.340820614137, -21.280814644564], - [55.332230039939, -21.273040398418], - [55.330559136553, -21.25867839743], - [55.309819984342, -21.239376141429], - [55.294129138863, -21.23037270561], - [55.283073606482, -21.202892371557], - [55.286772824609, -21.185049323512], - [55.286733275629, -21.160641411697], - [55.274414197865, -21.150557030134], - [55.271388344634, -21.135424821028], - [55.256062863898, -21.116709703933], - [55.25415375561, -21.109737804325] - ] - ] - }, - "properties": { "code": "04", "name": "La Réunion", "ISOCODE": "FR-RÉ" } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [45.041009222866, -12.646861140458], - [45.033919473816, -12.654205921101], - [45.029933699088, -12.653141138956], - [45.030229971909, -12.650970796418], - [45.027819755106, -12.648619890394], - [45.020480110171, -12.645614676219], - [45.02039978844, -12.643016639867], - [45.027011809735, -12.63667241332], - [45.033230643054, -12.639976009825], - [45.035737591933, -12.642859485931], - [45.041009222866, -12.646861140458] - ] - ], - [ - [ - [45.271347010101, -12.79330569657], - [45.263686967007, -12.787485401025], - [45.258224296458, -12.783994866501], - [45.254251103606, -12.782779758001], - [45.256558544336, -12.780407410404], - [45.258572638641, -12.784062346186], - [45.265896872226, -12.788803427516], - [45.270644506345, -12.786008903023], - [45.271203697166, -12.783346136225], - [45.276064154724, -12.774297416961], - [45.27539014139, -12.771257938729], - [45.280300271494, -12.765824392738], - [45.28484565221, -12.75899675397], - [45.287309080874, -12.763046156521], - [45.292622074766, -12.767827569108], - [45.29380935809, -12.771583521025], - [45.293943145594, -12.775740331098], - [45.296926493398, -12.777399051672], - [45.295511780138, -12.78095896535], - [45.297065891038, -12.783154610259], - [45.294177121143, -12.787645767124], - [45.296547091351, -12.795715576537], - [45.292118652548, -12.799547413042], - [45.286802573328, -12.799965601858], - [45.284470493494, -12.804915419317], - [45.28488044409, -12.815501319474], - [45.279181905971, -12.811172331805], - [45.278673252047, -12.805292368954], - [45.276652922938, -12.801412443065], - [45.274354115315, -12.799834172207], - [45.271347010101, -12.79330569657] - ] - ], - [ - [ - [45.051579894616, -12.701683919701], - [45.054745454862, -12.700959852171], - [45.061198593732, -12.701570648283], - [45.065507931897, -12.700233076538], - [45.068499746099, -12.697534818913], - [45.072638279352, -12.691879180973], - [45.073520311442, -12.687562750996], - [45.072444282419, -12.683316488322], - [45.077050313658, -12.683635312529], - [45.082064221225, -12.68064150716], - [45.083278286415, -12.67841114347], - [45.082367237714, -12.672072332353], - [45.085469524617, -12.668002937485], - [45.092308958828, -12.664210758367], - [45.09563246463, -12.658879677419], - [45.103556147063, -12.654643713772], - [45.102128832243, -12.659473194427], - [45.104327888234, -12.661510619643], - [45.089875165058, -12.667509550167], - [45.088780545771, -12.671283534002], - [45.091547533321, -12.672476263123], - [45.097411556845, -12.673131601202], - [45.101733905321, -12.676098776111], - [45.101419520355, -12.679915010615], - [45.10492989507, -12.683340915581], - [45.10830291273, -12.6840684218], - [45.111981498447, -12.688494309269], - [45.111225609712, -12.691234629888], - [45.114561769019, -12.695769136158], - [45.126816332254, -12.70142442411], - [45.123270254783, -12.705308212433], - [45.124262525359, -12.711542827794], - [45.129562829741, -12.715723533763], - [45.130022355869, -12.72093382172], - [45.125761015172, -12.72434775955], - [45.125443767661, -12.727340200841], - [45.133195129555, -12.730488765417], - [45.140420146297, -12.734330968767], - [45.14420550513, -12.731443352944], - [45.1435309553, -12.729360240609], - [45.146345254574, -12.727988704836], - [45.150352038822, -12.729096021824], - [45.15055964497, -12.734363377491], - [45.153745590136, -12.736703649892], - [45.157606378296, -12.735324150875], - [45.160546806747, -12.732391590746], - [45.1639349737, -12.726775701735], - [45.165541675144, -12.721406853608], - [45.167255233874, -12.718965105987], - [45.172440420143, -12.72738069569], - [45.177429483773, -12.730131857631], - [45.187509516531, -12.72845831438], - [45.195848973895, -12.731097314973], - [45.20485503024, -12.730812886526], - [45.211769982209, -12.738263272133], - [45.213282919396, -12.740865490839], - [45.219661026041, -12.743706053768], - [45.226238777834, -12.745056935736], - [45.228629172188, -12.750002210618], - [45.232067680392, -12.752520354269], - [45.23593616293, -12.752704117255], - [45.236328030431, -12.759025599379], - [45.23853877917, -12.761657784164], - [45.235915210113, -12.765885844518], - [45.233588927858, -12.766874482258], - [45.231744863318, -12.763238183432], - [45.22940775782, -12.769586468371], - [45.226280319041, -12.774182009679], - [45.232302844334, -12.776007947063], - [45.232630090129, -12.778211389925], - [45.235982117186, -12.78139961795], - [45.225036494525, -12.788711242033], - [45.223225989507, -12.790810710171], - [45.216912366753, -12.794787577496], - [45.215182385382, -12.801790833887], - [45.208856052639, -12.806483710794], - [45.203351217963, -12.809766032446], - [45.20415881145, -12.81369450185], - [45.203949505471, -12.819255980892], - [45.195699640278, -12.823138890671], - [45.192059114397, -12.829660521435], - [45.192118465476, -12.831366852133], - [45.196879371621, -12.830516021152], - [45.196036503075, -12.833325339925], - [45.191319153096, -12.837010133239], - [45.187549220664, -12.838455174846], - [45.185743587721, -12.841817660228], - [45.192877497182, -12.843046858976], - [45.194751380147, -12.849441431695], - [45.196806783284, -12.853293928222], - [45.200743990624, -12.854545178637], - [45.202121213905, -12.857256047057], - [45.203441152446, -12.863184366014], - [45.211624189729, -12.865037986484], - [45.210017251728, -12.86887883142], - [45.213907845239, -12.873492009546], - [45.220132599584, -12.87101456929], - [45.22178355301, -12.873372429674], - [45.217302370276, -12.877716700128], - [45.215995728094, -12.881332164413], - [45.21691077912, -12.884299235339], - [45.215296092864, -12.886666147949], - [45.209024404662, -12.891978412677], - [45.198896585146, -12.89601846218], - [45.197273916157, -12.897920474326], - [45.194325960439, -12.904939845007], - [45.195003709216, -12.90998609007], - [45.199263824205, -12.915118242778], - [45.204143249705, -12.919815787815], - [45.200808250958, -12.920166517431], - [45.195079630861, -12.917544850675], - [45.187695700592, -12.916420822339], - [45.185035053554, -12.918652657479], - [45.183235602975, -12.923721471368], - [45.17865087415, -12.927249503433], - [45.176907647281, -12.929950848741], - [45.175738555804, -12.935037266996], - [45.179662569786, -12.939386856063], - [45.178858696064, -12.943336363229], - [45.172617864159, -12.941722826085], - [45.170165415362, -12.942947917717], - [45.168847835552, -12.949614161897], - [45.170407174514, -12.952755490503], - [45.174691072913, -12.955949252415], - [45.176205082465, -12.958714397257], - [45.176382173423, -12.964047664735], - [45.185127433134, -12.970139989334], - [45.189285179581, -12.970477908581], - [45.191850916983, -12.973681663832], - [45.196608660966, -12.975949635517], - [45.198774271778, -12.974389935484], - [45.203116128284, -12.974250038089], - [45.203649316806, -12.975677460928], - [45.200748664117, -12.979319394657], - [45.194007607406, -12.985574811528], - [45.189396235103, -12.985636988886], - [45.185515733924, -12.983983166791], - [45.180472585773, -12.984961517419], - [45.175416891452, -12.994399211231], - [45.173790143277, -12.983635889935], - [45.170518796288, -12.977224072642], - [45.166509964832, -12.974945196328], - [45.160830579809, -12.97431035389], - [45.156725121502, -12.979480763265], - [45.157674434379, -12.989039224338], - [45.151160858074, -12.99857590028], - [45.148139880757, -13.000103142444], - [45.142877698465, -12.999464059284], - [45.140964429966, -12.998181946523], - [45.139435883587, -12.993897438146], - [45.135606910566, -12.989983975644], - [45.133168923484, -12.990158856008], - [45.130425894859, -12.994219515403], - [45.12621928171, -12.994539895856], - [45.125067472366, -12.99072985798], - [45.126372339902, -12.987212518997], - [45.124433917797, -12.981350161849], - [45.117434018748, -12.980628191048], - [45.113692050817, -12.982326266676], - [45.110903575865, -12.986319828262], - [45.108702777515, -12.993295399322], - [45.10603795446, -12.989268877828], - [45.105598934789, -12.986867312444], - [45.108222750681, -12.981446031159], - [45.10666962198, -12.974175423188], - [45.110586512687, -12.967861968345], - [45.110932253578, -12.961564466872], - [45.108276831482, -12.957247680554], - [45.104505102016, -12.95764529244], - [45.09910206477, -12.964340833685], - [45.092586918187, -12.966510774061], - [45.082931493165, -12.961253870564], - [45.085778300542, -12.957477606358], - [45.093774553571, -12.954346064136], - [45.100553548837, -12.946496247946], - [45.101632088266, -12.939291475981], - [45.104275483095, -12.933149502938], - [45.102516429571, -12.928511268208], - [45.09792030962, -12.924904972985], - [45.095248071881, -12.925674595683], - [45.089347469517, -12.929303731174], - [45.089100943655, -12.925634264553], - [45.086947217418, -12.922367841331], - [45.08277136543, -12.920244148768], - [45.081479001623, -12.917671888495], - [45.077326880414, -12.90537679076], - [45.075614429896, -12.903207025272], - [45.071791080621, -12.90095735515], - [45.072985204074, -12.899164745838], - [45.080332689136, -12.898944662015], - [45.084319127067, -12.898102429261], - [45.092294306215, -12.897893562325], - [45.099363092815, -12.899341434496], - [45.102296835411, -12.903134651044], - [45.102765278195, -12.90580479734], - [45.1015925648, -12.909945938925], - [45.10245763614, -12.917715143668], - [45.103402604599, -12.920123762582], - [45.107171038476, -12.92412366351], - [45.114043503627, -12.925880472506], - [45.120830096597, -12.929073127815], - [45.124508821767, -12.929812904463], - [45.124056538118, -12.932423760384], - [45.129019533253, -12.934942470735], - [45.136717568903, -12.936710023569], - [45.145042025185, -12.935849181961], - [45.151427604784, -12.930352997411], - [45.155020845481, -12.922367959259], - [45.153724159896, -12.918473112172], - [45.1470278886, -12.907571409694], - [45.1440570124, -12.904582623969], - [45.145115495502, -12.900223429355], - [45.142292664924, -12.896401700196], - [45.140608403137, -12.896077975388], - [45.138168440907, -12.890982771717], - [45.131993306384, -12.888646593148], - [45.129540116422, -12.884234944414], - [45.123290198928, -12.881147139147], - [45.118141413189, -12.875107123614], - [45.113531725961, -12.866287919184], - [45.111203355717, -12.863639377953], - [45.104046286264, -12.862629521192], - [45.099925250582, -12.859464334657], - [45.095222546911, -12.85326091082], - [45.099001429708, -12.84919386659], - [45.10184009427, -12.844935426206], - [45.109262154897, -12.844004651343], - [45.114785208627, -12.844012243004], - [45.121296854357, -12.839620842187], - [45.116853703697, -12.839026934473], - [45.1088921258, -12.836480280787], - [45.102578075641, -12.835326244702], - [45.100786898927, -12.833817691239], - [45.103595869833, -12.825044158351], - [45.106274244435, -12.819533296306], - [45.105703414661, -12.814096072938], - [45.100101076625, -12.807675137279], - [45.100156287028, -12.798143058322], - [45.101971801882, -12.796653910069], - [45.106495672125, -12.796032686335], - [45.111965337495, -12.796441869052], - [45.112351924415, -12.793443097975], - [45.108277368914, -12.790986957463], - [45.103821332014, -12.792775616121], - [45.097562092532, -12.792292405627], - [45.09619443339, -12.786613998038], - [45.094597815608, -12.784476844891], - [45.100942818925, -12.781011080371], - [45.103061620799, -12.773416069921], - [45.102279465991, -12.766670398832], - [45.099109591186, -12.765148788546], - [45.090469074025, -12.768677702668], - [45.085665097908, -12.765159820152], - [45.082302996804, -12.76427830479], - [45.079471582102, -12.76634546759], - [45.073835299819, -12.764015850729], - [45.07026972633, -12.76007774691], - [45.064550095906, -12.755159879822], - [45.062451660194, -12.752215117293], - [45.059698679284, -12.751013953917], - [45.054307848617, -12.752459264487], - [45.050984487298, -12.755046190739], - [45.043276986303, -12.748305189274], - [45.042555902183, -12.74425409186], - [45.046015382632, -12.74074667951], - [45.050962719965, -12.738330416394], - [45.054267163483, -12.734441314886], - [45.05798362461, -12.728054432819], - [45.055666891461, -12.72380657463], - [45.043114005757, -12.721512016377], - [45.047871485287, -12.71545968596], - [45.05117613373, -12.709228502763], - [45.050551812939, -12.705492994332], - [45.051579894616, -12.701683919701] - ] - ] - ] - }, - "properties": { "code": "06", "name": "Mayotte", "ISOCODE": "FR-YT" } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [1.7861298758203, 42.573623487381], - [1.7809401403226, 42.582603070692], - [1.7731587094773, 42.580676227298], - [1.7536481560277, 42.582645134018], - [1.7419674623208, 42.587752779596], - [1.7259218933308, 42.59036432389], - [1.7264445544535, 42.599644154949], - [1.7379681342676, 42.611311358201], - [1.7349772402613, 42.617150103375], - [1.7179447596001, 42.614762264528], - [1.7000214431602, 42.621543905731], - [1.6873563216807, 42.623900502482], - [1.6620231363069, 42.619477292944], - [1.6537229363056, 42.626311949339], - [1.6413815633821, 42.628126820518], - [1.6190091695864, 42.626912244592], - [1.6014688979593, 42.628040210076], - [1.5842076238912, 42.634095648993], - [1.5687902887144, 42.648434939425], - [1.5492508690021, 42.655772723263], - [1.5221497444791, 42.649182732256], - [1.5189050579628, 42.645476248608], - [1.5014171161218, 42.645160693912], - [1.4937449489606, 42.653208850036], - [1.4801092686891, 42.651393752761], - [1.4778976589457, 42.643814220979], - [1.4683365082247, 42.630822512454], - [1.4772664705807, 42.614964046337], - [1.4694604333944, 42.606890205337], - [1.4589391989978, 42.603637712724], - [1.4401541878412, 42.60350366823], - [1.4350570021221, 42.60607368638], - [1.4200859104601, 42.627197957489], - [1.4135896331553, 42.651807228313], - [1.3942419945616, 42.668386695134], - [1.3877372500693, 42.670986654888], - [1.3895995518927, 42.685085573888], - [1.3786606854809, 42.693636239811], - [1.3544057158196, 42.699495465984], - [1.3523647298671, 42.708889639069], - [1.3568943438009, 42.71932288287], - [1.342365880439, 42.719196972787], - [1.3352658325545, 42.724033974941], - [1.3250225479117, 42.723901216656], - [1.310831490396, 42.718075501434], - [1.2980552717348, 42.718971253687], - [1.2775594332565, 42.714750302311], - [1.251508843902, 42.717851623956], - [1.2474713412106, 42.722040389267], - [1.2302143018174, 42.72758342439], - [1.2171573089305, 42.720482304172], - [1.1848025015663, 42.715102850609], - [1.1727736952394, 42.708100928642], - [1.1618506762641, 42.711043675126], - [1.1333056678708, 42.72901199858], - [1.1300970414747, 42.752068486433], - [1.1221505221208, 42.76017431013], - [1.1092203049835, 42.768379798114], - [1.0751085868396, 42.785348263934], - [1.0543403754335, 42.782370278653], - [1.0356210186709, 42.786428027141], - [1.0123628046297, 42.788067996977], - [1.0055793118079, 42.790800484118], - [0.99648511466901, 42.78745217576], - [0.98310308426902, 42.787068077252], - [0.9732840226901, 42.797457087229], - [0.95989089975521, 42.805643824863], - [0.93973887204259, 42.796973247404], - [0.93391854092192, 42.789522309625], - [0.92732709328685, 42.789255631926], - [0.91105922430916, 42.796342655042], - [0.88384668496068, 42.813501413999], - [0.87039192320778, 42.816245743581], - [0.85830081521383, 42.825718092689], - [0.83173917183391, 42.829191852348], - [0.80892253420252, 42.83905419597], - [0.80148779146423, 42.840484414153], - [0.78649531003324, 42.835955315429], - [0.76764000650777, 42.838976644913], - [0.7473099643863, 42.846684787469], - [0.73505963063002, 42.854313618439], - [0.70837530047161, 42.861402691964], - [0.6920253593771, 42.855311818756], - [0.67832018690678, 42.855018835179], - [0.67858428353724, 42.847952666471], - [0.65901722875138, 42.838528619974], - [0.66114635943904, 42.830368839742], - [0.66851393517847, 42.820350298964], - [0.66536072645848, 42.81251191916], - [0.66968713590557, 42.802095308449], - [0.65863120147728, 42.79715230059], - [0.65128983839552, 42.786597088659], - [0.64453806422139, 42.783076412205], - [0.66423575825517, 42.77167292571], - [0.65032149143529, 42.764168646382], - [0.6474308997985, 42.751662642856], - [0.6599389520435, 42.752435876543], - [0.66957491088554, 42.73276995512], - [0.67901232540769, 42.722784338644], - [0.67386650187529, 42.716586587301], - [0.68225754178415, 42.708965425559], - [0.67377451374064, 42.699841320693], - [0.67057744875758, 42.68989270234], - [0.6379005478724, 42.693041495792], - [0.60764322210758, 42.699058087497], - [0.59731972324609, 42.705833174186], - [0.58683088027779, 42.694999039016], - [0.53028817299211, 42.702427361485], - [0.51254065154989, 42.692054778891], - [0.49187864436583, 42.695004250993], - [0.47775091439859, 42.699986776967], - [0.4569304439913, 42.692659152242], - [0.42927703134928, 42.690747961457], - [0.41768712562607, 42.694690592529], - [0.40299065005461, 42.696059426702], - [0.39581531433956, 42.701201620227], - [0.39262638361543, 42.713119210116], - [0.37690233423878, 42.714106032311], - [0.35962761747241, 42.723390903669], - [0.34787523241281, 42.714178824464], - [0.32622532527099, 42.70523860909], - [0.32346895203404, 42.687137830773], - [0.30020270310415, 42.676589164672], - [0.29282363337494, 42.674921018438], - [0.2708685107087, 42.690720979232], - [0.25988644276717, 42.715814801568], - [0.24551694384626, 42.718157572312], - [0.22667904852621, 42.71735448054], - [0.20599010678325, 42.729295965395], - [0.17572555256904, 42.736480431547], - [0.16221088087725, 42.725842127347], - [0.13657205436584, 42.722323517883], - [0.12571277884722, 42.713756931075], - [0.11125293791766, 42.710207845076], - [0.09041936171393, 42.717129184641], - [0.074772566655186, 42.71209248746], - [0.07070990768266, 42.703944107872], - [0.059212546233425, 42.698966385505], - [0.045947391455758, 42.696775443692], - [0.025181280051534, 42.70192424896], - [0.016464909509703, 42.701787746946], - [0.015303686021275, 42.695195339428], - [0.0023539316821015, 42.686187697005], - [-0.010639973713379, 42.684384118141], - [-0.047756997997488, 42.693359114812], - [-0.059811467964507, 42.693423542148], - [-0.064563524867416, 42.699353820033], - [-0.064009731971453, 42.71008519182], - [-0.068842258409049, 42.717900891138], - [-0.076501338605961, 42.71719782154], - [-0.090397506206375, 42.721077862832], - [-0.10611325502758, 42.720827214056], - [-0.11070680415594, 42.725007544931], - [-0.11080028926285, 42.734997384695], - [-0.13666638793598, 42.764142081631], - [-0.14599661532545, 42.768469484558], - [-0.15421201073912, 42.780770439999], - [-0.15458058004585, 42.792740754923], - [-0.15972393675618, 42.797400992971], - [-0.17849266806523, 42.785358654901], - [-0.18922389776922, 42.787796189656], - [-0.20156585632457, 42.796277921886], - [-0.21390456164229, 42.79603817418], - [-0.23844648846147, 42.808173013415], - [-0.23886476296826, 42.818111155727], - [-0.24336198692263, 42.823142763211], - [-0.25801362447912, 42.821008365204], - [-0.26733811029813, 42.826009234187], - [-0.27668600069509, 42.835470786436], - [-0.30547392531847, 42.84123285236], - [-0.3134440845287, 42.84937502201], - [-0.30749089647919, 42.867843636256], - [-0.31566756931289, 42.884801825113], - [-0.31819431138324, 42.897761911545], - [-0.32459076680338, 42.905260440304], - [-0.3270823405503, 42.915785217713], - [-0.31074643857214, 42.919004799168], - [-0.30871758220081, 42.924636095621], - [-0.29777949713226, 42.930973352505], - [-0.29003653813459, 42.929087564699], - [-0.28159219915593, 42.933563651361], - [-0.27938737996819, 42.942120483339], - [-0.28647438097301, 42.960054130137], - [-0.29154703187727, 42.987768864423], - [-0.28772006609469, 43.005371765683], - [-0.26484031266067, 43.009957412551], - [-0.25606972495919, 43.022726945323], - [-0.25993739842031, 43.038277556214], - [-0.23941952476886, 43.039676815812], - [-0.2239464237385, 43.033684092022], - [-0.20860119763472, 43.039724486019], - [-0.18964711095987, 43.052021067576], - [-0.19915084290716, 43.064412767264], - [-0.19776766479894, 43.071150876661], - [-0.18776795009335, 43.083330185944], - [-0.18693584923102, 43.091163577327], - [-0.19768215446413, 43.098173160871], - [-0.19098051290629, 43.111202819975], - [-0.17086902572159, 43.113421493828], - [-0.16634162368399, 43.121884731119], - [-0.14613588573303, 43.128233156333], - [-0.14050344828237, 43.136172128164], - [-0.13859988604461, 43.149103535932], - [-0.12655319090013, 43.160447394144], - [-0.11770126761715, 43.180323067986], - [-0.11133185839731, 43.179338583668], - [-0.10448219117427, 43.166691440804], - [-0.097529225654089, 43.166624966901], - [-0.095496012787098, 43.177197303166], - [-0.06786899220915, 43.177118135342], - [-0.07252723387475, 43.224387038006], - [-0.049462179860127, 43.217180833465], - [-0.045868384089441, 43.23213534366], - [-0.037586102171492, 43.242416639333], - [-0.02368673812988, 43.254986403176], - [-0.02562371129178, 43.260991374913], - [-0.017008526259885, 43.270448647152], - [-0.023979443826928, 43.280211811856], - [-0.044392167069364, 43.285272051797], - [-0.046122559308833, 43.300858489621], - [-0.031830518124419, 43.31215055589], - [-0.024874069651994, 43.329492363991], - [-0.0032544572879219, 43.332106223092], - [0.010318205390046, 43.325314740811], - [0.02629551293813, 43.341364458979], - [0.023777202110468, 43.349140741399], - [0.0057814385418996, 43.363002124921], - [-0.0052544098304965, 43.373757650344], - [0.0051784236678809, 43.394194111086], - [-0.0038111619353702, 43.398395088127], - [0.0095923341693579, 43.422106177396], - [-0.004617224617132, 43.431760209363], - [-0.0009763127221442, 43.444398882283], - [-0.016529018418498, 43.443944372555], - [-0.024647492248551, 43.430441863151], - [-0.034594805202059, 43.429064287986], - [-0.042752022413969, 43.410434732548], - [-0.066460558394679, 43.411733865017], - [-0.062025455126023, 43.417738498202], - [-0.053836151217704, 43.418937636756], - [-0.057818804728216, 43.427453948482], - [-0.06902834281151, 43.437345744695], - [-0.061666974828373, 43.452452940742], - [-0.065757532784034, 43.463483610747], - [-0.019322496256827, 43.466531436068], - [-0.01781381554075, 43.472147456522], - [-0.033960155813221, 43.47488114734], - [-0.034676452145955, 43.487323780123], - [-0.049321056921324, 43.492468050259], - [-0.040135444460287, 43.512604399189], - [-0.044654576654926, 43.525299051263], - [-0.056174185273693, 43.533029097587], - [-0.064394904836236, 43.545147116286], - [-0.078385830359136, 43.546822915717], - [-0.088671332923909, 43.542057336851], - [-0.094969201412123, 43.548141189515], - [-0.088934220496639, 43.557203940272], - [-0.093425031634788, 43.563569921638], - [-0.096787871742487, 43.582404857482], - [-0.10893257406459, 43.582372914877], - [-0.12160532728785, 43.586239621765], - [-0.12891801130162, 43.581224268549], - [-0.14809699734982, 43.585796179458], - [-0.16044860312899, 43.580574768792], - [-0.17641684233457, 43.596401195938], - [-0.184802186901, 43.591150649921], - [-0.20474309579199, 43.583597668054], - [-0.21060415101777, 43.593234551989], - [-0.22423605594959, 43.590402846839], - [-0.23502870973138, 43.583357698142], - [-0.24283300101136, 43.584979016847], - [-0.24817456316599, 43.596658468765], - [-0.25464414089565, 43.597079809878], - [-0.24720389403099, 43.615953419221], - [-0.27771465346131, 43.616200527152], - [-0.27959903054407, 43.618177993348], - [-0.28211623210758, 43.643073606308], - [-0.26375883992318, 43.635925825532], - [-0.26183976696696, 43.650333852662], - [-0.24316590125334, 43.654503914277], - [-0.24428632111807, 43.663120354346], - [-0.23973638497448, 43.671241337499], - [-0.25205576868858, 43.672170366192], - [-0.2558968586296, 43.679785947966], - [-0.23910090516212, 43.693946573483], - [-0.24762242324933, 43.705844967214], - [-0.2466519035345, 43.710665978321], - [-0.23258474697029, 43.714085612502], - [-0.20579650925303, 43.727838442023], - [-0.19413824181548, 43.737015033058], - [-0.19556855881059, 43.7457681747], - [-0.20605854570527, 43.750073485568], - [-0.21894685864266, 43.750867558794], - [-0.2079131727813, 43.760637827854], - [-0.21546661332355, 43.76954000666], - [-0.21332509113417, 43.779092079667], - [-0.2221263729722, 43.7870916829], - [-0.2188522220883, 43.796306415322], - [-0.22713966573848, 43.808271178562], - [-0.21750272546627, 43.809928705523], - [-0.1924617341874, 43.810177903112], - [-0.19725593392987, 43.830783419213], - [-0.18812879425044, 43.832561081629], - [-0.19596777254111, 43.845942065138], - [-0.20890830935508, 43.857673133295], - [-0.19855770088986, 43.862412899782], - [-0.19099207269451, 43.875181537803], - [-0.20122569807121, 43.885467279461], - [-0.22061963081894, 43.890378123713], - [-0.23393612239966, 43.89106512629], - [-0.23443742350753, 43.899009673945], - [-0.22763125359284, 43.91098862727], - [-0.21627342564629, 43.907357211722], - [-0.19978663649385, 43.915110256293], - [-0.19202409075549, 43.92603943497], - [-0.18485270811369, 43.928769857675], - [-0.17911005329495, 43.937915232082], - [-0.16562386692845, 43.927613195924], - [-0.15391959185065, 43.93232464077], - [-0.15333166658385, 43.939048046681], - [-0.13513697119614, 43.936297912997], - [-0.12594278448243, 43.944421563926], - [-0.10225702569033, 43.927416125055], - [-0.094989077566145, 43.933381091475], - [-0.098329558338237, 43.942427984825], - [-0.087028531609323, 43.947486286421], - [-0.073597153405665, 43.94504601184], - [-0.059361902039375, 43.960939386464], - [-0.046527042815464, 43.96103952555], - [-0.040802721725543, 43.968964305724], - [-0.036164948567139, 43.983735934778], - [-0.021769333384946, 43.973056989329], - [0.0014399806732066, 43.95988700889], - [0.0067349635456505, 43.953740495039], - [0.0042089573126749, 43.943424094056], - [-0.015361195667702, 43.934152340481], - [-0.013582447289478, 43.923649897266], - [-0.001843455443284, 43.921420036587], - [0.017439868557199, 43.910847797935], - [0.032551602220287, 43.900191508039], - [0.045526933200978, 43.902166309486], - [0.059162622123353, 43.897893022976], - [0.07664444687609, 43.916470177201], - [0.068507868767624, 43.937809939581], - [0.057457862003849, 43.949050217484], - [0.055307282518792, 43.957963073751], - [0.067025223808929, 43.967876773509], - [0.067532020801164, 43.974192750661], - [0.076043349292038, 43.983138573142], - [0.11437379986584, 43.988072909373], - [0.12640607961248, 44.000336105676], - [0.14095408748334, 43.994676380228], - [0.13863539397759, 43.974770669617], - [0.1591211137839, 43.973860568873], - [0.1664085585548, 43.984223372919], - [0.16676088451462, 43.996830517368], - [0.17916093410135, 44.000666040326], - [0.18957139217537, 44.014641613964], - [0.20117969184465, 44.013668593318], - [0.20507206540087, 44.0190292233], - [0.22470969223381, 44.019169028731], - [0.2352015335306, 44.008471438234], - [0.24748889809396, 44.00473345675], - [0.2658680614134, 44.003716751224], - [0.27345979290764, 43.998815616074], - [0.30409114391986, 43.993060809869], - [0.31793784234407, 43.994973643102], - [0.31653852185538, 44.01011924115], - [0.32938687327154, 44.008324743136], - [0.35756641014151, 44.01637714562], - [0.36491171606437, 44.015152271393], - [0.3713725918443, 44.008155096613], - [0.38151930823563, 44.006373305954], - [0.39446082314246, 44.019984410354], - [0.41750846361679, 44.026970327067], - [0.44244380213487, 44.028759139019], - [0.44887562692766, 44.042594787048], - [0.4595157527797, 44.055234750337], - [0.47876888458351, 44.054521013697], - [0.48581828489735, 44.058598437153], - [0.5060519145443, 44.056124874168], - [0.51214276226031, 44.063296138178], - [0.52207386686065, 44.05696870158], - [0.53902463781127, 44.053724078487], - [0.5650766725315, 44.05922317624], - [0.57588134690602, 44.075909688882], - [0.59797769402997, 44.078224550392], - [0.60470426269225, 44.071956240981], - [0.62788687147415, 44.060631087503], - [0.63165143580682, 44.049501421006], - [0.65460048123679, 44.04130753634], - [0.65507583677567, 44.031189052143], - [0.66659683472462, 44.025144272763], - [0.6795846041912, 44.029344422988], - [0.6797359030614, 44.03717928063], - [0.68766619417171, 44.045887421074], - [0.69448178843623, 44.045585512479], - [0.7078014441272, 44.058016144097], - [0.71736742842423, 44.057565048253], - [0.73670154232703, 44.061550959213], - [0.741884791205, 44.065199235038], - [0.73810974125492, 44.073027677], - [0.75287865013836, 44.102267910932], - [0.77191199947865, 44.113420095124], - [0.78623555942697, 44.11191141984], - [0.79623991760453, 44.11512942813], - [0.79756644493954, 44.130381902776], - [0.7885669186743, 44.144391188204], - [0.79610189105916, 44.145621618679], - [0.82440975793604, 44.141179876681], - [0.83543363467659, 44.136365774298], - [0.86877875307642, 44.126327092678], - [0.87944269844653, 44.129608737841], - [0.88180706484803, 44.140904730858], - [0.88847935271951, 44.148766853903], - [0.88663373024812, 44.16278908945], - [0.89034197833787, 44.169672870511], - [0.88301819652021, 44.17546628714], - [0.8722469128314, 44.167867373919], - [0.86504004908695, 44.173534926921], - [0.85357025770147, 44.174962426044], - [0.85633796923916, 44.18904677194], - [0.86348768257448, 44.193325437089], - [0.90628814214223, 44.190306668919], - [0.91176049272424, 44.204739962363], - [0.92476807979815, 44.226051714552], - [0.9292406197485, 44.230246542717], - [0.91909475906904, 44.238271923817], - [0.93302754076927, 44.253148853876], - [0.9277876570183, 44.26740561543], - [0.94078442423987, 44.263651200087], - [0.94992392368958, 44.276443376947], - [0.92396339608302, 44.288698042192], - [0.91642356261815, 44.302198002519], - [0.89449665699205, 44.296740377136], - [0.88231719491829, 44.308198855394], - [0.86962451276277, 44.309387172973], - [0.87347140241339, 44.323307233], - [0.89611323540437, 44.346226535055], - [0.89356714925376, 44.358037988638], - [0.88733582833582, 44.366374054101], - [0.89821258712664, 44.381368271621], - [0.91991430872905, 44.384149659695], - [0.92589588135671, 44.375628735075], - [0.9372881287013, 44.368840749909], - [0.94141859483151, 44.345347538009], - [0.95004981400894, 44.35975578355], - [0.97103609486138, 44.361280217267], - [0.98063192933013, 44.358423098349], - [0.9973306063079, 44.368970904934], - [1.004557393851, 44.365587714321], - [1.0497968480895, 44.362639367374], - [1.0590342432563, 44.369063397724], - [1.0640814762214, 44.378508721439], - [1.060916410464, 44.388148956247], - [1.0514192493927, 44.392094511982], - [1.0613076444275, 44.401878633002], - [1.060811266939, 44.416585968472], - [1.0574845114814, 44.427673212448], - [1.0452829749205, 44.434328842652], - [1.0333318174167, 44.432217983065], - [1.0247167778907, 44.442988405687], - [1.0209838507254, 44.456237710915], - [1.0238896841162, 44.464106031022], - [1.0230093439874, 44.475437273235], - [1.009020244264, 44.480044617987], - [1.0168410499751, 44.492627682886], - [1.0162275856839, 44.505873805304], - [0.99607013748509, 44.526838106147], - [0.98177646477517, 44.543949619625], - [0.99391928143422, 44.549540779914], - [1.0102474849887, 44.545187788418], - [1.0131652927005, 44.53612981948], - [1.0347007735952, 44.555410813413], - [1.0463221422077, 44.562091748647], - [1.0716939661813, 44.567841711875], - [1.0751420531924, 44.577325705506], - [1.0915723340934, 44.57129825478], - [1.10321434571, 44.571734741055], - [1.1023480014998, 44.583112143598], - [1.0954254371464, 44.590239410789], - [1.1076423221767, 44.604047948788], - [1.137389330558, 44.623916068209], - [1.1537948801342, 44.639408990845], - [1.1467257654642, 44.651942998392], - [1.1466756285759, 44.670346129862], - [1.1631824196253, 44.674246913408], - [1.1691224492748, 44.680201458326], - [1.1814922279959, 44.68312050249], - [1.1922298707031, 44.682144673083], - [1.2245513454404, 44.684265469136], - [1.2404413959773, 44.692803925964], - [1.2433609148288, 44.703747365953], - [1.2482656593079, 44.707708989465], - [1.2637980717141, 44.710685806718], - [1.2704127081354, 44.722361774434], - [1.2877769806729, 44.714784618791], - [1.2997473700748, 44.733876961929], - [1.3005234409238, 44.743067753612], - [1.3160471856435, 44.740370070289], - [1.322816677032, 44.765133167519], - [1.313412866091, 44.766040449212], - [1.2962430489699, 44.777811462978], - [1.3042790767232, 44.788545534304], - [1.2996402457488, 44.796921415066], - [1.3281059944688, 44.806531488239], - [1.3368655384896, 44.806071554052], - [1.3641055003826, 44.811568223737], - [1.3606303391154, 44.826748288149], - [1.3614088604034, 44.840796241728], - [1.3699846242068, 44.846449057072], - [1.3771449543322, 44.84182444963], - [1.3861021387482, 44.847434745656], - [1.4019376918366, 44.849449622068], - [1.4048297845553, 44.862526244834], - [1.4181797898114, 44.870598618527], - [1.4310840691639, 44.871280603185], - [1.4419256468077, 44.877575693392], - [1.4398567374008, 44.888947217313], - [1.4216345306166, 44.896767467267], - [1.4135387322774, 44.911821580701], - [1.4246258313763, 44.919694190356], - [1.4423501795316, 44.916547257696], - [1.4365133670875, 44.93225069741], - [1.4364044047008, 44.940615131261], - [1.4207336396897, 44.955116554897], - [1.414587951063, 44.977794038016], - [1.4133042325955, 44.999381814036], - [1.4092638730924, 45.006004469319], - [1.4281821749303, 45.009219883472], - [1.4482602497483, 45.019314041206], - [1.4619826792135, 45.01370224029], - [1.4735839270693, 45.017999050409], - [1.4800566881166, 45.026797710108], - [1.502854716064, 45.038440870886], - [1.519580065039, 45.041030205266], - [1.5357229531152, 45.046275852749], - [1.5410691079459, 45.042887041934], - [1.5437040262063, 45.030761580224], - [1.5520446044451, 45.028473138039], - [1.5690421523205, 45.038712199205], - [1.5763101796546, 45.040696470827], - [1.5893103965749, 45.036412402334], - [1.614739866204, 45.033019699506], - [1.629956153879, 45.033567269253], - [1.6509774862668, 45.025013308842], - [1.6544545546621, 45.017019229934], - [1.6714097923126, 45.004301541515], - [1.6843750926429, 45.002660865737], - [1.6871611264702, 44.996380368243], - [1.702662490825, 44.987825577102], - [1.7110326508746, 44.967296262803], - [1.7215459564475, 44.968065955731], - [1.7428395473269, 44.959830662128], - [1.7506187292807, 44.954961208829], - [1.7536701932124, 44.940576173829], - [1.7685216398013, 44.93111838651], - [1.7749276020491, 44.923721627249], - [1.7828574905171, 44.929652757246], - [1.78487170617, 44.937317933441], - [1.8008914101993, 44.924210099081], - [1.8085816314758, 44.927710042504], - [1.8239145074647, 44.927683348732], - [1.836439246631, 44.937455442607], - [1.8443484053735, 44.938030495187], - [1.8510527260352, 44.946245504656], - [1.8670322636063, 44.952926075187], - [1.8874095971943, 44.956563455989], - [1.8926655050781, 44.964882977079], - [1.9081575006047, 44.978423183181], - [1.9280650601996, 44.97871493763], - [1.9390669995572, 44.973222308505], - [1.9407166400253, 44.95513995704], - [1.9509915581584, 44.953151935667], - [1.9557698918802, 44.958318624648], - [1.9740981161193, 44.966632803845], - [1.9853569537575, 44.974450164818], - [2.0068687915517, 44.976629769782], - [2.0454327798436, 44.983664804729], - [2.0525667664657, 44.976478188068], - [2.0629079799591, 44.9765045515], - [2.0806940542158, 44.953285983552], - [2.0763195910268, 44.940561879615], - [2.0786238601329, 44.932494333995], - [2.0892278644094, 44.928560463933], - [2.1081047030139, 44.910638688547], - [2.0864901589829, 44.901079919432], - [2.0837359232769, 44.887424173789], - [2.0942097640089, 44.872012369152], - [2.1165704984568, 44.850184202716], - [2.1227770243941, 44.847633102732], - [2.1398031019064, 44.823820670465], - [2.1658208187006, 44.812904212621], - [2.1652929430823, 44.799560342182], - [2.1716374993124, 44.790027108976], - [2.1667022088341, 44.772651831571], - [2.1493997719958, 44.769790512407], - [2.1534957604021, 44.753104006989], - [2.1522238006118, 44.736723151663], - [2.1479681938401, 44.723035803571], - [2.1336852541707, 44.70956475715], - [2.1301318075949, 44.698486086307], - [2.1386637746726, 44.692880659597], - [2.1552964923022, 44.70023944349], - [2.1630322730753, 44.690215331586], - [2.1791523780579, 44.674446124105], - [2.1655660362222, 44.661375303382], - [2.1740442827509, 44.653644834741], - [2.1687595856936, 44.647386736712], - [2.1694164789558, 44.638069782843], - [2.1908059572226, 44.628252004845], - [2.2074728028173, 44.61552895784], - [2.2198705673093, 44.623646052351], - [2.214541909482, 44.627080806224], - [2.2084152778134, 44.643842310283], - [2.2286252203003, 44.655106676519], - [2.2508940527358, 44.651888047018], - [2.264931023707, 44.660757552111], - [2.270930098105, 44.660401110765], - [2.2910368223518, 44.666581877606], - [2.3045868091932, 44.662449015977], - [2.3267908312388, 44.669693386939], - [2.3365579816568, 44.661275985276], - [2.3327786804308, 44.650617960529], - [2.3485386057121, 44.641480228035], - [2.3659976814652, 44.641342211431], - [2.3782230201151, 44.650161602045], - [2.397445965387, 44.646186044198], - [2.4055217700154, 44.647179554811], - [2.435000853128, 44.638874930003], - [2.4521635947204, 44.648220759561], - [2.4680389011889, 44.642888409527], - [2.4689992507151, 44.649641593651], - [2.4831874702259, 44.650342597738], - [2.4901340080947, 44.656773198157], - [2.4875777637021, 44.666984218285], - [2.4989152190022, 44.687020949858], - [2.5188863490069, 44.699027751647], - [2.5184594908124, 44.703480601801], - [2.556122557476, 44.721283990134], - [2.5519407104745, 44.732804630794], - [2.5544909688881, 44.73964379349], - [2.5516388576146, 44.750719684187], - [2.5585893921439, 44.757924931793], - [2.5627129322914, 44.775756861827], - [2.5735477024072, 44.784962589937], - [2.5865648469617, 44.783990021983], - [2.5993613568997, 44.792806185507], - [2.6013884128515, 44.807574409416], - [2.5971356193221, 44.819510989142], - [2.6074714184, 44.824096540945], - [2.6117393110443, 44.83131246301], - [2.6026823497168, 44.843163111324], - [2.6180527448461, 44.854603721987], - [2.6239295606463, 44.866918027702], - [2.6366080646644, 44.872551413571], - [2.6490646425252, 44.869728369056], - [2.6562270538803, 44.87241580597], - [2.6581063096255, 44.882979115397], - [2.6812975408382, 44.907392758521], - [2.6938913636929, 44.902938090171], - [2.7064336715881, 44.907221617118], - [2.7135929831216, 44.92713012749], - [2.7240210839286, 44.924576074703], - [2.731006631595, 44.936748083927], - [2.738258109046, 44.941219492647], - [2.7603927919273, 44.927510072233], - [2.7735403561236, 44.915091091551], - [2.776087665079, 44.908963934931], - [2.7718590507401, 44.902271109449], - [2.7783381480633, 44.887718357993], - [2.77049124514, 44.875537836385], - [2.7684108734637, 44.863858763976], - [2.772707056045, 44.855545795389], - [2.801957650579, 44.873625756087], - [2.8220333243708, 44.87157004877], - [2.8496519747355, 44.871490231757], - [2.8596736604077, 44.874465473337], - [2.8559650223393, 44.855179951014], - [2.8705082792207, 44.827398299766], - [2.8795747424774, 44.803006111318], - [2.8897062556822, 44.788417083385], - [2.9040726320859, 44.783702886621], - [2.920189595566, 44.794308778558], - [2.9345177106412, 44.779201871895], - [2.9348220891073, 44.766338409064], - [2.9208013627531, 44.765729671884], - [2.9172495539886, 44.756714098966], - [2.9284555057549, 44.755160769806], - [2.9335256868255, 44.750101514437], - [2.9322008334785, 44.738182515263], - [2.9232670003911, 44.728642526112], - [2.9350900117718, 44.705004788991], - [2.9338731506521, 44.697402037726], - [2.9408965571355, 44.683818918865], - [2.9392865668235, 44.677756455026], - [2.9487265645702, 44.672978048006], - [2.9637576145748, 44.654316787673], - [2.9729967000843, 44.645719145774], - [2.981675726654, 44.644673011362], - [2.981760369824, 44.651994919411], - [2.9985742640224, 44.674442966678], - [3.0160122019676, 44.713692453341], - [3.0251405593834, 44.716097238134], - [3.0391236076168, 44.714995724501], - [3.0353535096078, 44.727206782516], - [3.028416597051, 44.73255744411], - [3.0310731845345, 44.749413959606], - [3.0422427573327, 44.75938114179], - [3.0503924394573, 44.779809366102], - [3.0457487033386, 44.799052030765], - [3.0615217992797, 44.817172380452], - [3.0768587089093, 44.824410436955], - [3.0714754944234, 44.834124974928], - [3.0994806863618, 44.833584813393], - [3.1001211680904, 44.844373808687], - [3.0953252337809, 44.85208399024], - [3.1050371687709, 44.86639509115], - [3.1054945101096, 44.886774806731], - [3.1229128915544, 44.892733396595], - [3.1283803710941, 44.903578216134], - [3.1410977876348, 44.903315197313], - [3.1531732734567, 44.893017216949], - [3.1690213470506, 44.874091478783], - [3.1823170380273, 44.863735423357], - [3.1991804637825, 44.874642009283], - [3.2159619013053, 44.875041006609], - [3.2252942367053, 44.882045162686], - [3.2323433112231, 44.891622050737], - [3.2269844428022, 44.897602452938], - [3.2278135177439, 44.909928387989], - [3.2496887102206, 44.916235200562], - [3.245167534381, 44.93480347612], - [3.2595403854401, 44.942429341236], - [3.2615217326405, 44.932067820131], - [3.2713373103277, 44.927600109493], - [3.2860179111885, 44.926382028761], - [3.2973059946128, 44.935604538605], - [3.3379420512705, 44.955906998959], - [3.3545315434466, 44.9548199209], - [3.3613476310625, 44.971408091786], - [3.3703185777492, 44.96998390468], - [3.3713550433617, 44.960250089988], - [3.3863677767162, 44.952742049715], - [3.3969930219391, 44.958577768116], - [3.4045530849223, 44.956400427592], - [3.412832200087, 44.944841611062], - [3.4149529202982, 44.932631887178], - [3.413833246774, 44.919859843574], - [3.4192590880448, 44.908428284947], - [3.417976841379, 44.900767433551], - [3.4357050101121, 44.88024496334], - [3.4386254407679, 44.86082184192], - [3.4416742987403, 44.854449680958], - [3.4541989644633, 44.844563734203], - [3.4570624789322, 44.833777540962], - [3.4757711698307, 44.815370629667], - [3.478809589921, 44.809446829457], - [3.4909959832186, 44.808474309867], - [3.4948664240388, 44.815405935965], - [3.5056459727137, 44.823846663279], - [3.5397515164373, 44.828176022752], - [3.5615758039452, 44.824976812591], - [3.5638205108562, 44.832831791958], - [3.5745418907117, 44.83460991769], - [3.578465058473, 44.825696757681], - [3.5893552432085, 44.832194014444], - [3.5920659249124, 44.84796463101], - [3.5980348128056, 44.859504969144], - [3.5943335024029, 44.875433384901], - [3.6082755428246, 44.879331218549], - [3.6147496711134, 44.874174272057], - [3.6264517258551, 44.880253899231], - [3.6423461696965, 44.878382169756], - [3.6595224161061, 44.86994134545], - [3.6704785324924, 44.850864431429], - [3.6718167758914, 44.843382404889], - [3.6574209674758, 44.836124356852], - [3.6663623630222, 44.828776303359], - [3.6954389564378, 44.830958625259], - [3.7003857822671, 44.836813194859], - [3.7228844822867, 44.830986703517], - [3.7406494702404, 44.838697356604], - [3.7526807081682, 44.82097908395], - [3.7624285152172, 44.810666360605], - [3.7587613653652, 44.805576543778], - [3.7794867433517, 44.79731064671], - [3.8032312316337, 44.781579343618], - [3.8033308935883, 44.770414179887], - [3.8121315885881, 44.766032837865], - [3.8198835993274, 44.772685233514], - [3.8301463157408, 44.775710594028], - [3.841603226393, 44.772129900378], - [3.8428722625525, 44.767659869676], - [3.8304555521813, 44.756161500223], - [3.8365590308337, 44.747847636802], - [3.8625310211191, 44.743866105932], - [3.8754615107331, 44.740626944691], - [3.8762993159981, 44.731800448649], - [3.8677916785686, 44.728142672276], - [3.8615128126047, 44.71201694644], - [3.8718913936808, 44.705396507123], - [3.8696426954409, 44.696962680173], - [3.8845476207292, 44.697347879776], - [3.8732699495096, 44.678201691122], - [3.882909471786, 44.660088831897], - [3.8947423692172, 44.651129115275], - [3.8926148288923, 44.623030105672], - [3.8985315708048, 44.613411802763], - [3.9083038945979, 44.606615580322], - [3.90517074571, 44.592708958301], - [3.9191671077331, 44.585245092622], - [3.9207367872473, 44.575746388916], - [3.9284831974258, 44.569998826159], - [3.9451514993013, 44.573790000095], - [3.9608749832371, 44.554803732187], - [3.9657451606381, 44.537497086144], - [3.9753657955514, 44.523650580786], - [3.9766536412959, 44.516689836275], - [3.9837035025138, 44.510167633816], - [3.9873321701777, 44.499162516354], - [3.985747412107, 44.487924045953], - [3.9875441966947, 44.473361271665], - [3.9981617468281, 44.459798467391], - [4.0149839677909, 44.454514219975], - [4.0232058055546, 44.445573236432], - [4.0375991394785, 44.445719563488], - [4.0464583808932, 44.432710617884], - [4.0354823981467, 44.420090870159], - [4.0561040289114, 44.414335993335], - [4.0684449498584, 44.405111736232], - [4.0572129135807, 44.393348439495], - [4.042468868612, 44.39464402593], - [4.0437442732688, 44.384550041392], - [4.0529853320038, 44.378694159984], - [4.055527118005, 44.365626171449], - [4.0531535999561, 44.340968920772], - [4.0450038312264, 44.333082309228], - [4.0368667860025, 44.330771008666], - [4.0514566440182, 44.317321809072], - [4.0716270663138, 44.327298770679], - [4.1039911697566, 44.333899706452], - [4.1125125628157, 44.329490022147], - [4.1267455749949, 44.337730884113], - [4.1403038447089, 44.327883881292], - [4.1428714788751, 44.313351716383], - [4.1548869300058, 44.31262212801], - [4.1777450676527, 44.317879259785], - [4.1867071328058, 44.29968541211], - [4.2164426737394, 44.288852848267], - [4.2413235022379, 44.270096446791], - [4.2588499153827, 44.264783733394], - [4.2766179866697, 44.274252680812], - [4.2894096266193, 44.293214668623], - [4.2884228053033, 44.31465771441], - [4.3044280048901, 44.315234251029], - [4.3217239441113, 44.323989000128], - [4.3360706324228, 44.339519174094], - [4.3667775642003, 44.339497579716], - [4.3865260888309, 44.346613937013], - [4.3941986915176, 44.345264673242], - [4.4032085466386, 44.333895573125], - [4.3907812808888, 44.303051306396], - [4.3934072251798, 44.293647114857], - [4.3989780395897, 44.288943564372], - [4.4218910835178, 44.287324346637], - [4.440502356745, 44.284053476816], - [4.4506900513602, 44.297286859459], - [4.4492717103226, 44.304914782152], - [4.4508857895897, 44.33261714008], - [4.4576163712243, 44.341635623893], - [4.4761161664256, 44.34074524217], - [4.484186331178, 44.337581914669], - [4.503538697272, 44.340187516986], - [4.5178637257565, 44.329927083074], - [4.5326208269687, 44.32252533633], - [4.5444682300368, 44.320766940178], - [4.5586960480886, 44.302442886009], - [4.574187229155, 44.300751054654], - [4.5869814679806, 44.29459622458], - [4.6068181251102, 44.290471804776], - [4.6181459353598, 44.278542099268], - [4.6288231783395, 44.284004141308], - [4.6380600403344, 44.282964739036], - [4.641962943496, 44.273967232879], - [4.649227423465, 44.270359808636], - [4.6540654761357, 44.254338013491], - [4.6748406183712, 44.238546852911], - [4.6784293717396, 44.229429565698], - [4.6726658505102, 44.216806161879], - [4.6836408656973, 44.21242318348], - [4.7018165185921, 44.216070926665], - [4.7097117846241, 44.206925388326], - [4.7038951813692, 44.197612213118], - [4.7220708851492, 44.18742070852], - [4.716116694835, 44.165974548714], - [4.7188928038989, 44.14449718833], - [4.714318820751, 44.137803248451], - [4.7070128409472, 44.113682146579], - [4.7074595244331, 44.103669745076], - [4.7196389371655, 44.086665255194], - [4.7301353625795, 44.079023395797], - [4.7548761078409, 44.088309298713], - [4.7608553902053, 44.08629669027], - [4.7578505502116, 44.077246976599], - [4.7879793576032, 44.065056776494], - [4.7891182892738, 44.052194281428], - [4.8080065523425, 44.03972336512], - [4.8161675560385, 44.032144996975], - [4.8211405354756, 44.016469245528], - [4.8376764645108, 44.014939590778], - [4.8433326670726, 44.009857987382], - [4.8455501032842, 43.99667711759], - [4.8421001716407, 43.98647354378], - [4.8319955437626, 43.985260560051], - [4.8159834779277, 43.988799971648], - [4.8101475881401, 43.97704355585], - [4.8150547522655, 43.967622474105], - [4.8079998756015, 43.960029108371], - [4.7971529885585, 43.956718817037], - [4.7790210940203, 43.937894495052], - [4.7687787417118, 43.933801125308], - [4.7499895249126, 43.932181836453], - [4.7390596940896, 43.92406219253], - [4.740099224056, 43.919678920657], - [4.7233684641772, 43.905955710295], - [4.7037984091552, 43.899340665402], - [4.7074943864756, 43.895550919044], - [4.6905462810021, 43.883898624023], - [4.6654377200626, 43.875147404443], - [4.6566482355099, 43.874778903832], - [4.6419145398807, 43.867476572594], - [4.6480099815874, 43.851229485733], - [4.6586664103492, 43.853223756034], - [4.6662999036899, 43.844776915402], - [4.6501517057694, 43.839124011369], - [4.6424185010062, 43.831436886337], - [4.6522767209675, 43.816837884851], - [4.6548263114857, 43.806405017468], - [4.6512435847762, 43.782275197677], - [4.628818965927, 43.759861933174], - [4.6227171190074, 43.743237369574], - [4.6136350841342, 43.729822310127], - [4.6130400270515, 43.714296691071], - [4.6276618120935, 43.690542678491], - [4.605829920983, 43.686077262962], - [4.5930346527266, 43.68745966779], - [4.5818853309897, 43.696368547688], - [4.5527787964313, 43.701311173254], - [4.5398466434949, 43.707275616451], - [4.5243901803315, 43.702131030559], - [4.503671690096, 43.702259072675], - [4.4872344746833, 43.699241399194], - [4.4756623542909, 43.684463819817], - [4.4754954502059, 43.671096153803], - [4.4559475264435, 43.667415945459], - [4.4475788905709, 43.659307469452], - [4.4382159894455, 43.644374718144], - [4.4270341666761, 43.620674791673], - [4.4397478336794, 43.610672750672], - [4.4545256952964, 43.611392063023], - [4.4668068635081, 43.615205555036], - [4.4752352404423, 43.60829610571], - [4.4606813332323, 43.589260601197], - [4.4433120956209, 43.583144847291], - [4.4255399426089, 43.585225258609], - [4.404416776755, 43.574366053053], - [4.4153195295637, 43.572538108822], - [4.4093533628433, 43.561126852889], - [4.3870870214048, 43.560476830234], - [4.3806768784461, 43.55254245629], - [4.3651362956496, 43.547157120782], - [4.3536437981366, 43.547390132754], - [4.3341326001686, 43.535451246643], - [4.3164310144209, 43.544330277799], - [4.3095227640281, 43.543279128578], - [4.3227085568643, 43.530446651372], - [4.3204919293874, 43.525482210334], - [4.3051324465276, 43.520794514252], - [4.2976898160141, 43.515329111265], - [4.271416895472, 43.508069960206], - [4.2586419540305, 43.507538672405], - [4.2381030309066, 43.497625146899], - [4.2311705681976, 43.47675937846], - [4.2302808850321, 43.460183661653], - [4.1938625454583, 43.465779027827], - [4.1656196762668, 43.471915156827], - [4.137670466646, 43.481949459061], - [4.1231397009828, 43.494201235057], - [4.1165892511326, 43.508710525509], - [4.1298746993328, 43.522765554616], - [4.1382579687386, 43.526105311289], - [4.1391197547669, 43.531898260949], - [4.12162781658, 43.547075001142], - [4.1010404384135, 43.554370958977], - [4.0663488317709, 43.557386111903], - [4.0422520205905, 43.556806676461], - [4.0111840974253, 43.552446664056], - [3.9685717523119, 43.540018483347], - [3.9071379792073, 43.516845546072], - [3.8864007764545, 43.50687119465], - [3.8496233013451, 43.485360022977], - [3.8288196651265, 43.469199818772], - [3.818529911629, 43.458313042789], - [3.7966687778375, 43.441038572476], - [3.7745683768076, 43.431420834377], - [3.7462817628759, 43.423623789327], - [3.724920103348, 43.41579312533], - [3.7230347632352, 43.401095090434], - [3.715556142844, 43.400687731567], - [3.6919033474737, 43.391883457324], - [3.6621617057021, 43.392279948911], - [3.6460792124476, 43.384774104561], - [3.6196750009169, 43.367836073788], - [3.6026227584831, 43.355428335099], - [3.5661200382653, 43.325717677552], - [3.5273014618389, 43.28981147991], - [3.5109592064433, 43.273328841308], - [3.4683351175459, 43.276598485695], - [3.4303317007418, 43.290210436006], - [3.4034831432597, 43.287900440396], - [3.3869052230084, 43.284136091601], - [3.3438584522568, 43.270394222721], - [3.2871141319468, 43.241993153845], - [3.2634509331275, 43.228864618646], - [3.2405623482295, 43.212804132866], - [3.2178713301191, 43.197502303167], - [3.1901982904968, 43.175846370089], - [3.1683477733427, 43.157328349219], - [3.140800124971, 43.128768756296], - [3.1309240074639, 43.111758439868], - [3.1172266379458, 43.101836432273], - [3.0928818865124, 43.06914587835], - [3.0838489259408, 43.055302627989], - [3.0655869638129, 43.021675065612], - [3.0615075416401, 43.008829254021], - [3.0525103814528, 42.990159118293], - [3.0428444157674, 42.960156485478], - [3.0393165218276, 42.941683366716], - [3.0404673397314, 42.929700731159], - [3.0525504097283, 42.926207159025], - [3.0605893002724, 42.91706260281], - [3.0521306763747, 42.885348067732], - [3.0435046945933, 42.838148318333], - [3.0393825874565, 42.799198332564], - [3.0383147458062, 42.759308922454], - [3.0388174616362, 42.731854400073], - [3.0406344364503, 42.717464171238], - [3.0354235158251, 42.678251792455], - [3.0348448670056, 42.660160793544], - [3.0374210506027, 42.623834642628], - [3.045187180481, 42.594580128259], - [3.0461959546139, 42.571621030681], - [3.0496015552694, 42.550136565972], - [3.0602531213169, 42.535571457297], - [3.0820579326701, 42.531560165182], - [3.0884117662963, 42.525558183092], - [3.1091343781376, 42.52489266491], - [3.1245047496547, 42.521008572288], - [3.1335799243959, 42.512937683655], - [3.125266856012, 42.502379897222], - [3.1329574003536, 42.49727637329], - [3.1301915393708, 42.485333147407], - [3.1331140504699, 42.48125657057], - [3.1530079401401, 42.477772687552], - [3.1556347078439, 42.469619425916], - [3.1624454541281, 42.464978147207], - [3.1598953323874, 42.451898657834], - [3.1673878928116, 42.448419269998], - [3.1747892794105, 42.438690536519], - [3.1732186031539, 42.434878294177], - [3.1254604409588, 42.43468722687], - [3.1207651976703, 42.438008576998], - [3.1072768828596, 42.432657662278], - [3.0983029144992, 42.424928915316], - [3.0854409735932, 42.425513473771], - [3.0573242267829, 42.446987385415], - [3.049039409754, 42.455546175261], - [3.0407584675862, 42.473141908956], - [3.0198010082741, 42.470624644994], - [3.0125732677896, 42.466522275456], - [3.0009203931282, 42.472988789014], - [2.9822385301958, 42.471613793793], - [2.9689921527615, 42.465793999445], - [2.9470281255671, 42.481796599661], - [2.9302139076263, 42.472078747973], - [2.924484683878, 42.458390971344], - [2.9070949041858, 42.456950703603], - [2.8920092453183, 42.461788700333], - [2.8809448199987, 42.461172866792], - [2.8727897478221, 42.467059299379], - [2.8635181251783, 42.463685068523], - [2.859676897177, 42.454572528495], - [2.8414158207066, 42.458521817354], - [2.8331700496324, 42.452804895516], - [2.8271034160314, 42.439240137443], - [2.8162952658984, 42.439738013572], - [2.8031487735856, 42.428224313103], - [2.7992434851571, 42.41857137482], - [2.790949549749, 42.417857916921], - [2.7769704769536, 42.411950189136], - [2.7685368540735, 42.413430586275], - [2.7531989854034, 42.4253608469], - [2.7166720712852, 42.42122422902], - [2.6945491255524, 42.407887936979], - [2.6750400951504, 42.404970989064], - [2.6714146160115, 42.387529592347], - [2.6556398345705, 42.388430725188], - [2.660742170663, 42.378153731227], - [2.6611097557922, 42.365961556824], - [2.6727185269299, 42.359466239204], - [2.6760751446233, 42.351638965741], - [2.6717703199325, 42.341177323897], - [2.6559403579543, 42.341429322911], - [2.6495298474086, 42.344118258289], - [2.6178064323289, 42.345509163763], - [2.5778257714722, 42.357932340651], - [2.562716553225, 42.357067819912], - [2.5573378574231, 42.354085820691], - [2.5521719085286, 42.343319051918], - [2.5400380013544, 42.333755393653], - [2.5257604063048, 42.33364688988], - [2.5003055444058, 42.342908435218], - [2.4829568103055, 42.33964742313], - [2.4675348479811, 42.358923606052], - [2.4514681079426, 42.369203663978], - [2.4454040688981, 42.36956863647], - [2.4334669708382, 42.377094638841], - [2.4354845211197, 42.388880175068], - [2.4288205957426, 42.394335723771], - [2.4167902772506, 42.392360477665], - [2.3954903182362, 42.395121661663], - [2.3899700764621, 42.398051030902], - [2.3688351288602, 42.401165613258], - [2.3491768366401, 42.406745263737], - [2.3341179227016, 42.415651766886], - [2.3253087868373, 42.417410301027], - [2.3141335755949, 42.427849671933], - [2.3069588238745, 42.428790247213], - [2.2923849967665, 42.422976621044], - [2.2738581951916, 42.432690437335], - [2.2578039229724, 42.438353537568], - [2.2466730218158, 42.429496737389], - [2.2222325344186, 42.424592964147], - [2.2010574502093, 42.41629050573], - [2.1563381691629, 42.423423821077], - [2.1313502035542, 42.413484336715], - [2.114896793444, 42.394507212494], - [2.1167685660168, 42.383217532845], - [2.0916681165323, 42.374166894014], - [2.0835932961683, 42.362697401901], - [2.0723509915714, 42.364576641156], - [2.0580021628496, 42.357888067271], - [2.0234953451252, 42.355223026123], - [2.0169227090321, 42.348686254163], - [1.9859078905071, 42.362044583467], - [1.980584938619, 42.369405890793], - [1.971695415142, 42.373783371899], - [1.9620597540182, 42.389876289524], - [1.9607755007324, 42.403677303718], - [1.9558602817575, 42.412475519734], - [1.9582805852121, 42.424047755767], - [1.9417250599361, 42.429661230654], - [1.9430207870612, 42.44411210649], - [1.9353061351198, 42.453582304437], - [1.9166392735781, 42.446308629241], - [1.8982681400083, 42.450058731348], - [1.8854483131238, 42.449295307775], - [1.8814265985157, 42.459710961468], - [1.8683724263794, 42.465058824645], - [1.8585449890657, 42.462680550073], - [1.8469943350858, 42.470704743694], - [1.8433611119041, 42.477147183315], - [1.8346241667293, 42.481783546447], - [1.8064207841596, 42.488451645516], - [1.7950029277753, 42.486845300346], - [1.7632599240148, 42.486844325683], - [1.7461600305578, 42.49532036127], - [1.7298892803686, 42.495327493594], - [1.7258285070201, 42.503605106587], - [1.7256472450279, 42.515034379784], - [1.7343746270315, 42.535650381024], - [1.7359462939386, 42.548521333167], - [1.7411151935539, 42.557100349798], - [1.7498796321903, 42.563587757319], - [1.7699598880127, 42.564819783733], - [1.7861298758203, 42.573623487381] - ], - [ - [1.9573803578127, 42.461623243383], - [1.9597995518936, 42.453259523701], - [1.9813423517482, 42.44752541931], - [2.0000647814638, 42.446778541763], - [2.0126872587813, 42.448344388962], - [2.0109536138017, 42.454821453137], - [1.9966046469832, 42.461186871026], - [1.9872946716006, 42.469685808584], - [1.9865299951704, 42.475761010873], - [1.9960839145775, 42.484654179931], - [1.994441965458, 42.488880134829], - [1.978759694687, 42.494769707784], - [1.9761955998207, 42.48559878431], - [1.9613838814667, 42.472523712782], - [1.9573803578127, 42.461623243383] - ] - ], - [ - [ - [-0.10307051080042, 43.242819142542], - [-0.12215124145212, 43.243893908194], - [-0.13346480059307, 43.258458798265], - [-0.14061503281768, 43.271941230583], - [-0.13650575288846, 43.284504952764], - [-0.12616476378979, 43.293876660784], - [-0.11997934072059, 43.306250495105], - [-0.11185367186851, 43.31039465909], - [-0.092031063800833, 43.300469260619], - [-0.096173699573616, 43.285481158687], - [-0.079283735332789, 43.271656452017], - [-0.079840951222932, 43.262366418014], - [-0.092111707678552, 43.252065563512], - [-0.099320994112155, 43.252127129181], - [-0.10307051080042, 43.242819142542] - ] - ], - [ - [ - [-0.10221657949985, 43.358514651885], - [-0.10728332222542, 43.370734939225], - [-0.09095912750824, 43.37316253716], - [-0.076422702553633, 43.364562190447], - [-0.065396680791735, 43.35504948237], - [-0.062503063827367, 43.346712050556], - [-0.070279283945182, 43.317455182599], - [-0.075041474866062, 43.307136096993], - [-0.10412308826692, 43.312464324807], - [-0.11139515774132, 43.315808605005], - [-0.11566381713828, 43.330976950464], - [-0.10847946239493, 43.337801770075], - [-0.096783660691415, 43.334763115112], - [-0.086786928155415, 43.336872044844], - [-0.090143282581254, 43.358859352353], - [-0.10221657949985, 43.358514651885] - ] - ] - ] - }, - "properties": { "code": "76", "name": "Occitanie", "ISOCODE": "FR-OCC" } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [3.3613476310625, 44.971408091786], - [3.3545315434466, 44.9548199209], - [3.3379420512705, 44.955906998959], - [3.2973059946128, 44.935604538605], - [3.2860179111885, 44.926382028761], - [3.2713373103277, 44.927600109493], - [3.2615217326405, 44.932067820131], - [3.2595403854401, 44.942429341236], - [3.245167534381, 44.93480347612], - [3.2496887102206, 44.916235200562], - [3.2278135177439, 44.909928387989], - [3.2269844428022, 44.897602452938], - [3.2323433112231, 44.891622050737], - [3.2252942367053, 44.882045162686], - [3.2159619013053, 44.875041006609], - [3.1991804637825, 44.874642009283], - [3.1823170380273, 44.863735423357], - [3.1690213470506, 44.874091478783], - [3.1531732734567, 44.893017216949], - [3.1410977876348, 44.903315197313], - [3.1283803710941, 44.903578216134], - [3.1229128915544, 44.892733396595], - [3.1054945101096, 44.886774806731], - [3.1050371687709, 44.86639509115], - [3.0953252337809, 44.85208399024], - [3.1001211680904, 44.844373808687], - [3.0994806863618, 44.833584813393], - [3.0714754944234, 44.834124974928], - [3.0768587089093, 44.824410436955], - [3.0615217992797, 44.817172380452], - [3.0457487033386, 44.799052030765], - [3.0503924394573, 44.779809366102], - [3.0422427573327, 44.75938114179], - [3.0310731845345, 44.749413959606], - [3.028416597051, 44.73255744411], - [3.0353535096078, 44.727206782516], - [3.0391236076168, 44.714995724501], - [3.0251405593834, 44.716097238134], - [3.0160122019676, 44.713692453341], - [2.9985742640224, 44.674442966678], - [2.981760369824, 44.651994919411], - [2.981675726654, 44.644673011362], - [2.9729967000843, 44.645719145774], - [2.9637576145748, 44.654316787673], - [2.9487265645702, 44.672978048006], - [2.9392865668235, 44.677756455026], - [2.9408965571355, 44.683818918865], - [2.9338731506521, 44.697402037726], - [2.9350900117718, 44.705004788991], - [2.9232670003911, 44.728642526112], - [2.9322008334785, 44.738182515263], - [2.9335256868255, 44.750101514437], - [2.9284555057549, 44.755160769806], - [2.9172495539886, 44.756714098966], - [2.9208013627531, 44.765729671884], - [2.9348220891073, 44.766338409064], - [2.9345177106412, 44.779201871895], - [2.920189595566, 44.794308778558], - [2.9040726320859, 44.783702886621], - [2.8897062556822, 44.788417083385], - [2.8795747424774, 44.803006111318], - [2.8705082792207, 44.827398299766], - [2.8559650223393, 44.855179951014], - [2.8596736604077, 44.874465473337], - [2.8496519747355, 44.871490231757], - [2.8220333243708, 44.87157004877], - [2.801957650579, 44.873625756087], - [2.772707056045, 44.855545795389], - [2.7684108734637, 44.863858763976], - [2.77049124514, 44.875537836385], - [2.7783381480633, 44.887718357993], - [2.7718590507401, 44.902271109449], - [2.776087665079, 44.908963934931], - [2.7735403561236, 44.915091091551], - [2.7603927919273, 44.927510072233], - [2.738258109046, 44.941219492647], - [2.731006631595, 44.936748083927], - [2.7240210839286, 44.924576074703], - [2.7135929831216, 44.92713012749], - [2.7064336715881, 44.907221617118], - [2.6938913636929, 44.902938090171], - [2.6812975408382, 44.907392758521], - [2.6581063096255, 44.882979115397], - [2.6562270538803, 44.87241580597], - [2.6490646425252, 44.869728369056], - [2.6366080646644, 44.872551413571], - [2.6239295606463, 44.866918027702], - [2.6180527448461, 44.854603721987], - [2.6026823497168, 44.843163111324], - [2.6117393110443, 44.83131246301], - [2.6074714184, 44.824096540945], - [2.5971356193221, 44.819510989142], - [2.6013884128515, 44.807574409416], - [2.5993613568997, 44.792806185507], - [2.5865648469617, 44.783990021983], - [2.5735477024072, 44.784962589937], - [2.5627129322914, 44.775756861827], - [2.5585893921439, 44.757924931793], - [2.5516388576146, 44.750719684187], - [2.5544909688881, 44.73964379349], - [2.5519407104745, 44.732804630794], - [2.556122557476, 44.721283990134], - [2.5184594908124, 44.703480601801], - [2.5188863490069, 44.699027751647], - [2.4989152190022, 44.687020949858], - [2.4875777637021, 44.666984218285], - [2.4901340080947, 44.656773198157], - [2.4831874702259, 44.650342597738], - [2.4689992507151, 44.649641593651], - [2.4680389011889, 44.642888409527], - [2.4521635947204, 44.648220759561], - [2.435000853128, 44.638874930003], - [2.4055217700154, 44.647179554811], - [2.397445965387, 44.646186044198], - [2.3782230201151, 44.650161602045], - [2.3659976814652, 44.641342211431], - [2.3485386057121, 44.641480228035], - [2.3327786804308, 44.650617960529], - [2.3365579816568, 44.661275985276], - [2.3267908312388, 44.669693386939], - [2.3045868091932, 44.662449015977], - [2.2910368223518, 44.666581877606], - [2.270930098105, 44.660401110765], - [2.264931023707, 44.660757552111], - [2.2508940527358, 44.651888047018], - [2.2286252203003, 44.655106676519], - [2.2084152778134, 44.643842310283], - [2.214541909482, 44.627080806224], - [2.2198705673093, 44.623646052351], - [2.2074728028173, 44.61552895784], - [2.1908059572226, 44.628252004845], - [2.1694164789558, 44.638069782843], - [2.1687595856936, 44.647386736712], - [2.1740442827509, 44.653644834741], - [2.1655660362222, 44.661375303382], - [2.1791523780579, 44.674446124105], - [2.1630322730753, 44.690215331586], - [2.1552964923022, 44.70023944349], - [2.1386637746726, 44.692880659597], - [2.1301318075949, 44.698486086307], - [2.1336852541707, 44.70956475715], - [2.1479681938401, 44.723035803571], - [2.1522238006118, 44.736723151663], - [2.1534957604021, 44.753104006989], - [2.1493997719958, 44.769790512407], - [2.1667022088341, 44.772651831571], - [2.1716374993124, 44.790027108976], - [2.1652929430823, 44.799560342182], - [2.1658208187006, 44.812904212621], - [2.1398031019064, 44.823820670465], - [2.1227770243941, 44.847633102732], - [2.1165704984568, 44.850184202716], - [2.0942097640089, 44.872012369152], - [2.0837359232769, 44.887424173789], - [2.0864901589829, 44.901079919432], - [2.1081047030139, 44.910638688547], - [2.0892278644094, 44.928560463933], - [2.0786238601329, 44.932494333995], - [2.0763195910268, 44.940561879615], - [2.0806940542158, 44.953285983552], - [2.0629079799591, 44.9765045515], - [2.0766169639286, 44.978785623857], - [2.0905743960003, 44.984665148518], - [2.1003714972007, 44.983427469854], - [2.1329815746739, 44.985516038406], - [2.1381513494782, 44.992811832821], - [2.1406414310588, 45.005858479694], - [2.1168066989252, 45.02111434735], - [2.1094104611066, 45.041521518867], - [2.0993181256264, 45.047622806571], - [2.0951568732001, 45.056033465741], - [2.1037456940938, 45.065812421906], - [2.1183646353816, 45.070379067781], - [2.1298193059745, 45.078932414297], - [2.1456535641311, 45.085592171697], - [2.1717594845165, 45.081496802672], - [2.1803618094732, 45.09734068898], - [2.1794393252059, 45.109177492216], - [2.1852692693185, 45.113998024195], - [2.1787905007908, 45.136297935946], - [2.1948369367108, 45.136027708871], - [2.2115654221992, 45.14844827392], - [2.2137008320653, 45.160189965969], - [2.225397887065, 45.160336595328], - [2.2335857511761, 45.167181650239], - [2.2195874303098, 45.172114610573], - [2.2011879889027, 45.181494229499], - [2.1985478420586, 45.194408666334], - [2.1905131897891, 45.20213434701], - [2.1953636990438, 45.220851418291], - [2.2249287044688, 45.241854962029], - [2.2413408281325, 45.24942616212], - [2.2387747025234, 45.260353952142], - [2.245004874828, 45.267106520498], - [2.2585683903144, 45.270220164439], - [2.2617348470443, 45.28322143744], - [2.2714111009736, 45.290154603854], - [2.2800803441611, 45.287325615297], - [2.2920696943683, 45.290569998093], - [2.3073512042479, 45.312659714856], - [2.3177397642658, 45.322963729764], - [2.3504806858312, 45.327560923525], - [2.3593793404283, 45.335790299537], - [2.3513461420151, 45.348610937353], - [2.3647790516305, 45.357919621969], - [2.3629697029865, 45.378412337982], - [2.3682726042671, 45.388621392102], - [2.3644462766137, 45.395234506367], - [2.3545525332951, 45.401398504646], - [2.3500842175271, 45.409676058097], - [2.3551307955913, 45.415027972839], - [2.3782501191323, 45.414302210343], - [2.3954865345645, 45.407322290365], - [2.3982881363717, 45.400169538674], - [2.4129045453324, 45.396651442056], - [2.4226736731266, 45.397229870143], - [2.441865995091, 45.384259395763], - [2.4580813755781, 45.384827047932], - [2.4734557788383, 45.38152628147], - [2.4778316883062, 45.370410647653], - [2.4857679741129, 45.378946887778], - [2.5227321270438, 45.382084686424], - [2.5262353366501, 45.389343818253], - [2.5220338520841, 45.402237812322], - [2.5159713869265, 45.403236533013], - [2.4927584232596, 45.413842323437], - [2.487471709413, 45.418842030111], - [2.4955946696815, 45.44550416324], - [2.5067704533992, 45.464065004968], - [2.5084125130653, 45.478501516921], - [2.5138913543334, 45.492347782226], - [2.5089910453543, 45.500226403127], - [2.5115199537568, 45.511153110817], - [2.5203805740984, 45.520450992238], - [2.5165205610225, 45.524032787608], - [2.5163271748739, 45.55342839279], - [2.5064679621685, 45.553444063405], - [2.4909285469766, 45.560394087282], - [2.4874305070125, 45.569384021272], - [2.4725367701592, 45.580929716396], - [2.4646251782029, 45.594410586781], - [2.4653445128497, 45.600820150088], - [2.4784344946797, 45.607911789419], - [2.4790816386943, 45.62246233864], - [2.4833880353068, 45.639303519147], - [2.4897451626044, 45.642353692], - [2.5011495345088, 45.638738876646], - [2.5142980219448, 45.639528483879], - [2.5249384159848, 45.657234455338], - [2.5151301172176, 45.664284079976], - [2.5129233228036, 45.6713335771], - [2.5283596411119, 45.681924314977], - [2.5268700649094, 45.694919495794], - [2.5198739656449, 45.697052906827], - [2.5183220391127, 45.712799669432], - [2.4921294160933, 45.7376701128], - [2.4846414659033, 45.748521466442], - [2.4751529321011, 45.747688866007], - [2.4547914690758, 45.761151249494], - [2.4414259075117, 45.762378997013], - [2.4341123429169, 45.769852817869], - [2.4329800874586, 45.783888824912], - [2.4274035046023, 45.794285013202], - [2.4185991219253, 45.798475127769], - [2.4006773662183, 45.817289546629], - [2.388014020679, 45.827373168854], - [2.4013447310476, 45.837577232244], - [2.4265364620605, 45.834771343876], - [2.436436952669, 45.846998827989], - [2.4478280089908, 45.84581866569], - [2.4425827259717, 45.863008040763], - [2.4706137918202, 45.872335245229], - [2.4797383951775, 45.864541357011], - [2.4922279879729, 45.864029936278], - [2.5099613389201, 45.88666598071], - [2.5262086816167, 45.896727274022], - [2.5376912527467, 45.900845994537], - [2.5550056008106, 45.912509471984], - [2.5415060022687, 45.921531781083], - [2.5509536719711, 45.935761668247], - [2.5516381183225, 45.941261078502], - [2.5657173898648, 45.946856793309], - [2.5651781859373, 45.95661981464], - [2.5891875589674, 45.960437573506], - [2.6107853057918, 45.971228071516], - [2.6074695080176, 45.979108641029], - [2.5944202186196, 45.989440975795], - [2.6025059601172, 46.033461930485], - [2.5716988273144, 46.048689825423], - [2.5631828961231, 46.064609781776], - [2.5570843667475, 46.069300275416], - [2.5518715312783, 46.083457348801], - [2.5518219731636, 46.103970633498], - [2.5490488887945, 46.114075006608], - [2.5582364865104, 46.130701979674], - [2.5586220340193, 46.138326224613], - [2.5653725529015, 46.143035759957], - [2.5654816305578, 46.153967351319], - [2.5607637153191, 46.155596225642], - [2.5597996290957, 46.173366559433], - [2.5431674609911, 46.175602605523], - [2.5286290573702, 46.184894945309], - [2.5280194815711, 46.195466990157], - [2.5216954121117, 46.203035380932], - [2.5215270201899, 46.21133367553], - [2.5154284346668, 46.228012112114], - [2.5163085117785, 46.239436870366], - [2.489106418147, 46.248968644305], - [2.4770972903349, 46.269361724579], - [2.4789445821479, 46.281145991526], - [2.4430263839161, 46.294995852237], - [2.4309509758156, 46.291519676804], - [2.421335782135, 46.284622030263], - [2.4161017112175, 46.300056006693], - [2.4204656768519, 46.310129656565], - [2.4113176626179, 46.314094483732], - [2.3918581379529, 46.329985164159], - [2.3840641130619, 46.328908641081], - [2.370482749419, 46.312629017475], - [2.3549060485425, 46.325678438006], - [2.3345821354246, 46.325320260055], - [2.3230230944721, 46.329277448172], - [2.3093794648902, 46.342006193666], - [2.3027460023726, 46.354419802873], - [2.313389172619, 46.356936451493], - [2.3233383727294, 46.366525024524], - [2.3371146519405, 46.366795923975], - [2.3315900743858, 46.378176612964], - [2.3154715753059, 46.375205741584], - [2.2850442774167, 46.385857562809], - [2.2804029533754, 46.410236476962], - [2.2810437278384, 46.420403547753], - [2.2857604795168, 46.453514664499], - [2.3054693178764, 46.475428936804], - [2.3166710404192, 46.468549195709], - [2.3242884285484, 46.470978980874], - [2.3298217389117, 46.479616607338], - [2.3241785781947, 46.49036759012], - [2.3520036091655, 46.512206845202], - [2.3683002910262, 46.51843386298], - [2.3884650716406, 46.518246292054], - [2.4131644849466, 46.520301786364], - [2.4266867789218, 46.526121661214], - [2.4502811792897, 46.521935935452], - [2.4685711377311, 46.526009632976], - [2.4829275256976, 46.532694737487], - [2.4969434776113, 46.533665788244], - [2.4991226886431, 46.521292172555], - [2.512426202843, 46.523880853474], - [2.5201385391568, 46.530864132368], - [2.5275313125159, 46.529030044988], - [2.5366546066244, 46.519702557793], - [2.5540275760751, 46.529387627047], - [2.5724916070298, 46.533849645617], - [2.5835051726425, 46.542741752192], - [2.6149607060411, 46.553276455558], - [2.60621930247, 46.565758488844], - [2.6093779370947, 46.571328686404], - [2.6045186165205, 46.579001838563], - [2.6023203253116, 46.595164451357], - [2.5815597567024, 46.593164438775], - [2.5779519369239, 46.603788174773], - [2.5691010154446, 46.609518978116], - [2.5859628971047, 46.6142967727], - [2.5852765586441, 46.622738638042], - [2.5966478585977, 46.637215067759], - [2.5895802639199, 46.648026747075], - [2.5673899068872, 46.652347408754], - [2.5721892884417, 46.659444642004], - [2.5849748988646, 46.664165776546], - [2.6050484721825, 46.668158037606], - [2.6095979741835, 46.662840354764], - [2.6246414896646, 46.657300692831], - [2.6308613163993, 46.672294145791], - [2.6215530530757, 46.678653259953], - [2.6234039357923, 46.688702717854], - [2.6313578708624, 46.690886867154], - [2.6478858990075, 46.688908315282], - [2.6547293011216, 46.696536792562], - [2.6777927654584, 46.704612208045], - [2.6881649904859, 46.720909610987], - [2.7009209254283, 46.720959754269], - [2.7049698717297, 46.739389993021], - [2.7287214908144, 46.748308579779], - [2.7372898083354, 46.743150242056], - [2.7435704821949, 46.73008326729], - [2.7567441474108, 46.724772483564], - [2.7585207590938, 46.717748505775], - [2.7744893811293, 46.718902897367], - [2.787290827625, 46.728613960925], - [2.8010724027789, 46.733722377214], - [2.8276177034814, 46.735286079973], - [2.8448121194469, 46.726844055458], - [2.845419928846, 46.742855932849], - [2.8612332862758, 46.754030340445], - [2.8770157582915, 46.761468535881], - [2.8761691440531, 46.768445733319], - [2.9098049149944, 46.779347563944], - [2.9081271826571, 46.787903599841], - [2.9243754548552, 46.794523429403], - [2.9378161550649, 46.795713700537], - [2.9529591220769, 46.790999230159], - [2.959918627937, 46.803872076205], - [2.977801671991, 46.80377337386], - [2.9895396276531, 46.799298294916], - [3.0033551657685, 46.798122809815], - [3.0175184994153, 46.799900698717], - [3.0320629441459, 46.794909389217], - [3.0368385012729, 46.784399457513], - [3.0361449719957, 46.776351034743], - [3.0490666680714, 46.758080742151], - [3.0610780913415, 46.749849808096], - [3.0839336875931, 46.737632194007], - [3.1297797354937, 46.727201530755], - [3.1631524413883, 46.693541123032], - [3.1972601846791, 46.679928148065], - [3.2155446436111, 46.682892755029], - [3.2330363473519, 46.697017662903], - [3.2551640362648, 46.706289026218], - [3.2697959512206, 46.71674181988], - [3.2988329664362, 46.713590484885], - [3.3139651835149, 46.688751611332], - [3.3467035850706, 46.684418162056], - [3.3664449691016, 46.691259477216], - [3.3754269760827, 46.699410803841], - [3.3787310431309, 46.71134766179], - [3.3877581200663, 46.714818365449], - [3.4074108289121, 46.711510582242], - [3.4341396009475, 46.711907843672], - [3.4295672938027, 46.702504791218], - [3.4329783660003, 46.693340026098], - [3.4513122938683, 46.689900877873], - [3.4535963621348, 46.681987883569], - [3.4473385862025, 46.663554460402], - [3.4572892729042, 46.651760006926], - [3.4865354798384, 46.65380880583], - [3.4871533162964, 46.658256156349], - [3.5174930194471, 46.683185185586], - [3.5300363962253, 46.688813284083], - [3.5464728563281, 46.678292894912], - [3.5543959772727, 46.684731744078], - [3.5555591963708, 46.695741177165], - [3.548207507912, 46.706166654281], - [3.5503869458917, 46.715861095646], - [3.5773137335153, 46.714852724197], - [3.598000652576, 46.723983498355], - [3.5971876767747, 46.728401657187], - [3.5845515939144, 46.739382605418], - [3.5806709648764, 46.752741235279], - [3.5910525816638, 46.762426406979], - [3.5977490685569, 46.76202889412], - [3.6020398798222, 46.751247280578], - [3.6201072037828, 46.754059565827], - [3.6294223422648, 46.749456328005], - [3.6225898833129, 46.740130866568], - [3.6353341554133, 46.728514790806], - [3.6381391050479, 46.722723829214], - [3.637895263919, 46.707205199291], - [3.6513931816228, 46.70282167235], - [3.6554716665381, 46.687748401639], - [3.6801004977635, 46.66852089269], - [3.6969575528098, 46.660583034448], - [3.699679505, 46.651867135799], - [3.7121523238188, 46.633631635674], - [3.7227091007956, 46.627609885471], - [3.7230250098493, 46.622072726143], - [3.7138737202882, 46.613995279712], - [3.7176467323502, 46.605806262315], - [3.7323776901235, 46.604907119963], - [3.7432893129951, 46.567565263244], - [3.7406549316466, 46.559049395025], - [3.73154117491, 46.549578224034], - [3.7418443310505, 46.539508443385], - [3.7546629110025, 46.536019887064], - [3.7656008328403, 46.537908481562], - [3.7878963661806, 46.528042650186], - [3.8017563839321, 46.519902255804], - [3.8113440515561, 46.520138117834], - [3.8176755382384, 46.525229454055], - [3.8340033360184, 46.531134997034], - [3.8464630176371, 46.524356398489], - [3.8397556873666, 46.517562051932], - [3.8494709455035, 46.513023833485], - [3.8600251576626, 46.515222323315], - [3.8646271424558, 46.509717077517], - [3.860387224324, 46.495601253328], - [3.8649127119961, 46.489736338385], - [3.8904665810402, 46.481246458453], - [3.896985633842, 46.481471942919], - [3.9013529089878, 46.490636303507], - [3.9189702450008, 46.496061208045], - [3.9375764836594, 46.49076190287], - [3.9496133283036, 46.492478893726], - [3.9579376111726, 46.489753821104], - [3.9520867242123, 46.481423383561], - [3.9565931687991, 46.47688226209], - [3.9730562040646, 46.477457398934], - [3.9980402829299, 46.465463980924], - [4.0015415164833, 46.458618151559], - [3.997444424826, 46.450264670788], - [4.0055701432229, 46.443531306791], - [3.9881422985694, 46.435461575775], - [3.9956151474212, 46.4286940195], - [3.9844480228975, 46.416663389961], - [3.9886970251491, 46.408772224942], - [3.9772206054151, 46.399220047306], - [3.9842615206377, 46.378286038678], - [3.9916043062641, 46.369630419679], - [3.9886640376734, 46.360561403255], - [3.9847410554074, 46.32973022678], - [3.9974052217542, 46.323291087799], - [3.9866271252361, 46.319195576966], - [3.9481286581435, 46.31979164002], - [3.9477193967384, 46.303444864233], - [3.942781911555, 46.298925500612], - [3.9300977722843, 46.295820251472], - [3.9135709840696, 46.296680727045], - [3.8974208259956, 46.291460834216], - [3.8912386850317, 46.28524616424], - [3.899538631706, 46.275908099459], - [3.9055127902449, 46.271596707683], - [3.908821904601, 46.260346940334], - [3.9076581109201, 46.242456213516], - [3.8966112073781, 46.2371189424], - [3.8981917464837, 46.226659321125], - [3.890130972164, 46.214487049905], - [3.9135693350409, 46.206918558033], - [3.9179891232598, 46.202853033545], - [3.933514918779, 46.206414377073], - [3.9725466394127, 46.202707514639], - [3.9728332574833, 46.193862543845], - [3.9817823975359, 46.17634098728], - [3.9887880883959, 46.169805261207], - [4.0308840440337, 46.171882539683], - [4.051960198465, 46.181690186415], - [4.0614051962048, 46.188789802443], - [4.0716672927165, 46.18807123789], - [4.0908839436933, 46.192837097346], - [4.1040867377072, 46.198391359055], - [4.1324158349304, 46.177826358374], - [4.1660889760454, 46.172928033288], - [4.1884438149961, 46.175128955988], - [4.1854551738783, 46.190162130834], - [4.207903434232, 46.194833150686], - [4.2246872961743, 46.177995338767], - [4.2335294499164, 46.180026926884], - [4.2423584224526, 46.188830459357], - [4.2525000565082, 46.187922148658], - [4.2610250986037, 46.178754364444], - [4.2518988744775, 46.167097935374], - [4.2520302327293, 46.157916681311], - [4.2824944900944, 46.156946471815], - [4.2952828837852, 46.172250410112], - [4.3035807058325, 46.17426655994], - [4.3157416420975, 46.172029804364], - [4.3270887031684, 46.184790131282], - [4.3357117653558, 46.181398292861], - [4.3450682105084, 46.187441862916], - [4.3648481141165, 46.183579311067], - [4.3706868166882, 46.191620039558], - [4.3631781812533, 46.200537276046], - [4.3774743279046, 46.21020246009], - [4.3893979878582, 46.213601360996], - [4.3880744564659, 46.219790380732], - [4.388291015925, 46.247956431405], - [4.3920466116785, 46.263026545141], - [4.4058135314858, 46.296057806589], - [4.4218715520166, 46.294954263085], - [4.4272337977412, 46.302730717527], - [4.4397213287914, 46.293184568466], - [4.4583704273073, 46.296976724079], - [4.4765696377244, 46.284237867232], - [4.488465816487, 46.287994462282], - [4.5039940949336, 46.267132463094], - [4.5372643385622, 46.269911483268], - [4.5464477974735, 46.27391839397], - [4.5480762222411, 46.282864938182], - [4.5577956308141, 46.294551640092], - [4.5698487572768, 46.293352201901], - [4.5726687726239, 46.277139335718], - [4.5865068000033, 46.268694622582], - [4.6185580580588, 46.264793895574], - [4.6220235259619, 46.270079226484], - [4.6183224944202, 46.282440402941], - [4.6314517777677, 46.289015276562], - [4.6352614072065, 46.299289507242], - [4.6546591822967, 46.303484822155], - [4.6693820675804, 46.297910092985], - [4.6794340760587, 46.303994122044], - [4.6931098569714, 46.302197476983], - [4.694515991108, 46.292672565821], - [4.7075411259083, 46.284660070276], - [4.7076872577415, 46.269647917424], - [4.6878811178807, 46.265311972919], - [4.6795502516132, 46.258666565339], - [4.6883618181605, 46.25011389523], - [4.7028290155173, 46.251330439429], - [4.7357666167041, 46.234244688808], - [4.7326605831699, 46.227019799221], - [4.7206237625559, 46.222390986056], - [4.7356928657613, 46.211923783014], - [4.72266470068, 46.202320489849], - [4.7243706747794, 46.184304976244], - [4.7305257874621, 46.178368585861], - [4.7597597705914, 46.172840600415], - [4.7608053446831, 46.175968780182], - [4.7802082627383, 46.176676203678], - [4.7802430578135, 46.189052363162], - [4.7933904888672, 46.204700104778], - [4.7945859355866, 46.218311767171], - [4.8077505003904, 46.236972415214], - [4.8115552603184, 46.249932664612], - [4.8109975376095, 46.259923276174], - [4.8259515552341, 46.274785814873], - [4.8332136171616, 46.300145048773], - [4.8534210199043, 46.32990123356], - [4.8514544831808, 46.356271094403], - [4.8585287407096, 46.368018459572], - [4.873839273104, 46.384668143424], - [4.8882101486247, 46.402977057782], - [4.8918151434404, 46.439918009678], - [4.8992958191725, 46.450123277325], - [4.9111172894635, 46.457732635494], - [4.9157805036687, 46.465413333501], - [4.9155507621799, 46.488939443669], - [4.9257189717408, 46.497441604339], - [4.9314208893674, 46.509211481378], - [4.9400218107181, 46.517199374492], - [4.9491021767105, 46.501380502462], - [4.9645994700407, 46.513175985923], - [4.9835496952255, 46.515392507897], - [5.011007749262, 46.510294840159], - [5.0141793460298, 46.500587565063], - [5.0523715346281, 46.484873791529], - [5.0700061667722, 46.485667291269], - [5.0989387475854, 46.497166675779], - [5.10737201939, 46.491919458253], - [5.1152051358154, 46.494069043579], - [5.141950046447, 46.508357328146], - [5.1664495124354, 46.505590616989], - [5.1667923612572, 46.514674866375], - [5.1815968667213, 46.509758803783], - [5.2011399666188, 46.508211405762], - [5.2066353369633, 46.48639795185], - [5.2130427939332, 46.481261974235], - [5.2150628404089, 46.468359298393], - [5.2255477233319, 46.468273543404], - [5.2350290009581, 46.457948870166], - [5.2468319237306, 46.459403653865], - [5.2545935888787, 46.454117831184], - [5.2759250637615, 46.4481213263], - [5.3105633704742, 46.446769968334], - [5.3194882695109, 46.430803499916], - [5.308978572395, 46.424532251303], - [5.3076872001929, 46.416819197974], - [5.3147703161373, 46.40947618293], - [5.331272401231, 46.399499315198], - [5.3525084400185, 46.397586033829], - [5.3552221284773, 46.39375452396], - [5.3770431289975, 46.381355482485], - [5.362996992744, 46.370926983475], - [5.3770544086974, 46.364113395825], - [5.3734648101425, 46.352234450451], - [5.3819165667023, 46.345255630996], - [5.3992759574473, 46.339521371463], - [5.4042931339536, 46.332813029221], - [5.4046508439018, 46.310338173994], - [5.4102335548466, 46.30910668308], - [5.4170861726833, 46.339534237431], - [5.4278984240109, 46.342210714821], - [5.4377949533958, 46.315109371064], - [5.4669175767252, 46.323267248222], - [5.4753005499335, 46.315382606424], - [5.4674037740958, 46.295566233017], - [5.4595129521644, 46.290471994825], - [5.4568426743662, 46.274473574235], - [5.4730515403718, 46.265066548043], - [5.4995891133957, 46.268200455579], - [5.5129432911698, 46.264539612518], - [5.5420340189851, 46.270203795698], - [5.5581274576637, 46.282173642648], - [5.5663641424008, 46.294050213862], - [5.5855011829326, 46.292557783319], - [5.59838931795, 46.298445925032], - [5.610460815624, 46.324211378495], - [5.6176441912887, 46.329091983869], - [5.6305151249665, 46.330204693001], - [5.6419584041921, 46.342028332374], - [5.6493445080392, 46.339494512081], - [5.6529045876259, 46.323214774673], - [5.6684418272398, 46.324369189279], - [5.6833466019044, 46.316276892818], - [5.6845768021754, 46.310927537001], - [5.714721806193, 46.308772354673], - [5.7192939761881, 46.293462363342], - [5.7160491956243, 46.279915646538], - [5.720112401844, 46.265870062788], - [5.7251818400017, 46.260731935709], - [5.7459179055539, 46.266368533117], - [5.7656471814788, 46.268294754652], - [5.8212837267024, 46.262094109034], - [5.8498475590074, 46.262067170418], - [5.8643332109856, 46.271208875005], - [5.8702488945181, 46.265305590806], - [5.8791206347196, 46.269936490689], - [5.8946251190123, 46.286607913138], - [5.9089357776791, 46.283950786541], - [5.9185184907402, 46.307199659115], - [5.9259040835744, 46.313765646046], - [5.9414094008927, 46.309446510031], - [5.9535602724875, 46.326531457174], - [5.9729173069373, 46.346856233903], - [5.9868463201736, 46.364869353266], - [6.0106565375389, 46.374508650286], - [6.0295137846375, 46.38681604791], - [6.0480752195777, 46.405125490757], - [6.0551820813125, 46.414801045991], - [6.064005627331, 46.416222559892], - [6.0981978560935, 46.40879028923], - [6.1036883616715, 46.401582285672], - [6.1185950336377, 46.396898818592], - [6.1361111289261, 46.387666375676], - [6.1475847015617, 46.379107190355], - [6.1613607860611, 46.375593565193], - [6.1697363568789, 46.367935207296], - [6.1593091645661, 46.357523011537], - [6.1487581545338, 46.342474971902], - [6.1390806928978, 46.339163368564], - [6.1378901936654, 46.333067215087], - [6.1195873808544, 46.308278314384], - [6.1193736282587, 46.294908886937], - [6.1026435450234, 46.285062924822], - [6.1039528249604, 46.279569729649], - [6.115111632378, 46.266272590393], - [6.1201369325078, 46.264754303732], - [6.1242461802512, 46.251015651206], - [6.1092500751152, 46.23976163763], - [6.1017586374755, 46.237488846141], - [6.0881868913623, 46.246811272397], - [6.0696791670011, 46.241028403834], - [6.0634398141038, 46.245647436254], - [6.0450945249842, 46.231703564592], - [6.0331263207186, 46.23799437917], - [6.017063845784, 46.23176216947], - [6.0072895259931, 46.22536977425], - [5.9717812659904, 46.211519488185], - [5.9636784095618, 46.196964390659], - [5.9921631932798, 46.186617405804], - [5.9952918547587, 46.18299442988], - [5.9832528438156, 46.171486546085], - [5.9560670913359, 46.132090234706], - [5.9738400143027, 46.131738683687], - [5.985316810497, 46.143308955951], - [6.0154641822919, 46.14263396477], - [6.0325422068392, 46.138442041928], - [6.0455233066288, 46.139907692935], - [6.0520405063454, 46.151402707103], - [6.0749307059736, 46.148890032198], - [6.0924619318286, 46.151762719587], - [6.0992749757816, 46.144011566226], - [6.1212014573294, 46.142667449845], - [6.1266206934256, 46.140460017961], - [6.1449190514584, 46.144832823407], - [6.1521154179752, 46.151723946513], - [6.1750725341517, 46.158152598893], - [6.1882037288084, 46.168463284904], - [6.1859715813532, 46.17817796673], - [6.2142469629058, 46.193786616278], - [6.2320741324515, 46.205470235677], - [6.2517782250825, 46.207041486005], - [6.2773739792759, 46.215611853153], - [6.2956514854587, 46.226054581929], - [6.3101113416345, 46.243699660222], - [6.3085403196879, 46.255105885559], - [6.2846173713146, 46.255153793328], - [6.2676297299719, 46.247839951429], - [6.2489222724698, 46.263081361726], - [6.2377992707926, 46.27733692078], - [6.2416291134625, 46.284546843215], - [6.2510763599071, 46.287643543433], - [6.2479330373852, 46.306039208714], - [6.2579242025762, 46.321777857151], - [6.2799144692268, 46.351093458251], - [6.2941843558993, 46.360850723006], - [6.3151995925349, 46.368778204186], - [6.3269980708935, 46.371129282074], - [6.3446806034485, 46.370015245292], - [6.3622839851983, 46.347951295821], - [6.3900333913921, 46.340163012448], - [6.3983362100039, 46.349291951337], - [6.4115883259384, 46.358394900258], - [6.4285826466732, 46.359525351148], - [6.4690640820175, 46.372614566115], - [6.4803914973041, 46.379314208071], - [6.4828511368319, 46.391927295245], - [6.4923970036831, 46.398425207982], - [6.5090399003785, 46.404031878903], - [6.5205788239548, 46.404192806741], - [6.5451764296884, 46.394724620294], - [6.5635602532757, 46.398365633599], - [6.6350579346881, 46.405772458657], - [6.6573993573272, 46.404992488925], - [6.6926864378952, 46.408081546332], - [6.7228648390107, 46.407550427288], - [6.7575049437368, 46.402602205639], - [6.7602536639409, 46.400376898866], - [6.7956711769373, 46.393088744604], - [6.8048287544258, 46.393585002703], - [6.8062164014005, 46.380373005422], - [6.7939579093873, 46.368622978764], - [6.7725993243998, 46.361732287023], - [6.770609037987, 46.35489449301], - [6.7826406405392, 46.336879446577], - [6.7981214712964, 46.330137581736], - [6.7999297623371, 46.320468909994], - [6.8066438150253, 46.320654870777], - [6.8256057085651, 46.310849078308], - [6.8373080183838, 46.2966869808], - [6.8498971155566, 46.290147597499], - [6.8589051093538, 46.29059983934], - [6.8645108313675, 46.282986228855], - [6.8538982253794, 46.253760812247], - [6.8434127149042, 46.248726167204], - [6.8337455798703, 46.237035791813], - [6.8216770780521, 46.227691939843], - [6.8036633001539, 46.204343363963], - [6.811228200568, 46.185029674216], - [6.8042020707473, 46.172106439303], - [6.7919797022783, 46.162225177301], - [6.7903942029832, 46.154717927724], - [6.7985330883924, 46.136103390553], - [6.8147295130574, 46.129695648917], - [6.8355075060867, 46.132440109797], - [6.8517868611599, 46.126417177303], - [6.889761788112, 46.124847684892], - [6.8983839799267, 46.122561981532], - [6.892714778239, 46.104316525882], - [6.8838438298784, 46.095796864191], - [6.8914506010215, 46.084495302772], - [6.8900687536716, 46.076513214339], - [6.8798946308492, 46.067793789027], - [6.8726328572469, 46.052044575345], - [6.8883272243818, 46.043120600357], - [6.9085295179521, 46.050234188897], - [6.9245114290077, 46.065194793319], - [6.93736936958, 46.06456312426], - [6.9357975763722, 46.0551192491], - [6.9515100788266, 46.049953446394], - [6.9629078952786, 46.030531973099], - [6.9786083663027, 46.021144644415], - [6.9846771340211, 46.006542009406], - [6.9947247398586, 46.000742003948], - [7.0036316590852, 46.000553586437], - [7.0182519988272, 45.984185305283], - [7.0182419263004, 45.975567599113], - [7.00940894593, 45.9697604902], - [7.0179746222284, 45.960347157061], - [7.037615499193, 45.95430091758], - [7.0371021493003, 45.941929380484], - [7.0438913499404, 45.922087093613], - [7.0218109199059, 45.916452271309], - [7.0031479175286, 45.89782755209], - [7.0033187238325, 45.882408678251], - [6.9917249963735, 45.868198790757], - [6.9716946211702, 45.867044015003], - [6.9510356268261, 45.859535060133], - [6.93960886416, 45.846732871084], - [6.9230835545726, 45.847274071201], - [6.9092120399646, 45.842522379483], - [6.895098526216, 45.842600014196], - [6.8821969778683, 45.849520488181], - [6.873610959862, 45.845496843566], - [6.8698438889527, 45.825642650285], - [6.8538394187733, 45.837147031314], - [6.8379652390991, 45.839496400234], - [6.8180784499339, 45.834974269868], - [6.8142564432708, 45.826836338335], - [6.8039854950068, 45.815846165391], - [6.8127223620905, 45.80801890935], - [6.8115834715922, 45.798399188776], - [6.8039839343781, 45.789307695607], - [6.8025153780901, 45.778372017386], - [6.8056204903279, 45.748466106619], - [6.8163461892763, 45.739522550345], - [6.8111853327597, 45.73065029663], - [6.8291131566154, 45.702831040263], - [6.8416918546486, 45.699758351852], - [6.8477523743945, 45.689376465007], - [6.8685964773289, 45.680965439806], - [6.8902954111672, 45.677517341592], - [6.902535284798, 45.680938868689], - [6.9065054377295, 45.674559463369], - [6.9021374596942, 45.663743226821], - [6.916286202296, 45.660011360485], - [6.9171852994011, 45.650736949397], - [6.9346140944773, 45.647093928516], - [6.9666799933754, 45.654063379324], - [6.9781568498682, 45.645387517519], - [7.0006916861839, 45.639899750138], - [7.0010463175509, 45.634973208788], - [6.9860084427011, 45.62249039449], - [6.9855421261112, 45.611104948043], - [6.9778473846393, 45.589884647121], - [6.9806967751279, 45.583323625828], - [6.9953839096018, 45.575637066048], - [6.9902484226223, 45.561160964462], - [6.9945093026684, 45.546677250256], - [6.9915104141831, 45.531278684704], - [7.0038437540042, 45.520940469575], - [7.0003315139353, 45.504414498664], - [7.0224771388388, 45.49654847936], - [7.0520544291456, 45.496249516678], - [7.0563572963814, 45.489623728606], - [7.0458504949934, 45.478351199929], - [7.0542268132495, 45.472184344708], - [7.0694234895786, 45.473884402143], - [7.0997838903912, 45.469437750641], - [7.1014832194722, 45.453864029477], - [7.1146156812434, 45.44172035079], - [7.1135165884052, 45.434196485823], - [7.133848390776, 45.426564709361], - [7.1475131268884, 45.423992978267], - [7.1568873923079, 45.417008078104], - [7.1842712160815, 45.407484371382], - [7.17760043192, 45.389026414715], - [7.1631811300703, 45.381359810968], - [7.1588996003487, 45.370751749811], - [7.1616596669718, 45.362453596128], - [7.1528797089116, 45.353816021836], - [7.1377390432018, 45.350806280555], - [7.1321131760816, 45.341125471296], - [7.1347132782574, 45.331243465627], - [7.1263435309097, 45.326945010527], - [7.1106925788126, 45.326508796443], - [7.1123728281041, 45.315170813723], - [7.1191793002337, 45.306692568243], - [7.1229875004603, 45.294328291286], - [7.136423190274, 45.28079819697], - [7.1320835823333, 45.266961258797], - [7.1375927179634, 45.255692980709], - [7.1255846631745, 45.244603122115], - [7.110603877569, 45.246346626842], - [7.1065115700157, 45.239258758095], - [7.0854359176976, 45.225881604766], - [7.0796007060118, 45.21424401107], - [7.0673372003279, 45.210085201319], - [7.051179744193, 45.225334821034], - [7.0427614515596, 45.225313603097], - [7.030358820074, 45.217845107982], - [7.0199925125511, 45.215876575558], - [7.0003751823587, 45.217602834471], - [6.989138474737, 45.210260447293], - [6.9687620809781, 45.208057678984], - [6.9538358712227, 45.184628781446], - [6.954195544259, 45.179612452986], - [6.9429030634006, 45.176188730221], - [6.9430641979885, 45.17091084008], - [6.9302666782212, 45.170963141126], - [6.9069600182339, 45.166613555832], - [6.8916010947342, 45.167033325671], - [6.8858238474503, 45.154195417179], - [6.8975633895087, 45.143009081491], - [6.894376782376, 45.137373356732], - [6.8747634572978, 45.13563631718], - [6.8498552798828, 45.127164544748], - [6.8422856917908, 45.135528185554], - [6.8122710919045, 45.148356968553], - [6.8013961759487, 45.150083145112], - [6.7796480661915, 45.158028591752], - [6.7679412928181, 45.159739939943], - [6.7498942015229, 45.142719026683], - [6.7392628844294, 45.136771576844], - [6.7270392227155, 45.138490660871], - [6.7121080083373, 45.144648738816], - [6.6862136559676, 45.139756066415], - [6.6800685047784, 45.140123130573], - [6.6739820186998, 45.129496472881], - [6.6657100684593, 45.122605577556], - [6.6299923020059, 45.109324963809], - [6.6155462835465, 45.121477875934], - [6.5906851893034, 45.119010630972], - [6.5765291374542, 45.123092743765], - [6.5630788445458, 45.11303936929], - [6.556730767951, 45.104079390462], - [6.5297109874994, 45.0985691169], - [6.5104239586159, 45.108998029314], - [6.4995275838537, 45.10159781596], - [6.4812555476638, 45.094138953543], - [6.4893378703322, 45.068353912844], - [6.4862360357216, 45.056075754404], - [6.4728883939578, 45.056011644618], - [6.4535295918669, 45.051837207667], - [6.4433986588263, 45.055077367768], - [6.4385899722107, 45.06258734764], - [6.4002434258614, 45.063261148419], - [6.3939107242634, 45.0618177275], - [6.365073385182, 45.071290490956], - [6.3735310876429, 45.084151804143], - [6.3629265157708, 45.104492035764], - [6.3344836229796, 45.122836461323], - [6.3312951655489, 45.118123866818], - [6.3019155994585, 45.108954317068], - [6.2862810761543, 45.110160822134], - [6.275502630793, 45.115299423706], - [6.2605698000566, 45.12684420383], - [6.2544936755586, 45.120790168264], - [6.2438305270389, 45.117298075856], - [6.2293919345611, 45.108749945384], - [6.2296723977867, 45.100589085615], - [6.2358324302027, 45.087232804381], - [6.2401205372094, 45.06771808518], - [6.2200802599652, 45.065369735518], - [6.2063284689408, 45.026782796498], - [6.2039233205269, 45.012471073947], - [6.2517609476002, 44.996700081455], - [6.2696990840472, 44.998351365091], - [6.2970615457571, 45.003365126963], - [6.3182021615637, 45.003859362058], - [6.3196573396763, 44.994552811249], - [6.3148100239742, 44.980185922577], - [6.3285012874077, 44.969714464603], - [6.3229180108318, 44.953019839313], - [6.3290046114892, 44.947315364095], - [6.3588423781754, 44.941280796729], - [6.3546140951868, 44.923593300625], - [6.3581697523493, 44.893778946012], - [6.3507779137165, 44.881204072575], - [6.3553625022057, 44.854775353601], - [6.3363165518362, 44.848370410548], - [6.3192302042703, 44.85684625453], - [6.302850434726, 44.873257969643], - [6.2882129459689, 44.874030533685], - [6.2677561761734, 44.86950109295], - [6.2581706057376, 44.86248397325], - [6.2505425682344, 44.852650516632], - [6.2243745547304, 44.852494101643], - [6.1963759402105, 44.858978334449], - [6.1852192319643, 44.853991864943], - [6.1684510585274, 44.852242761941], - [6.1490188906075, 44.858169876067], - [6.1362266704196, 44.864071820118], - [6.1283556561161, 44.861901713563], - [6.1166725017074, 44.849313192704], - [6.1007058869493, 44.84257849233], - [6.0965156572897, 44.837489421771], - [6.0653153781591, 44.82268480473], - [6.0563403817425, 44.815907431783], - [6.0402065129253, 44.827867468677], - [6.0302157011626, 44.838097758941], - [6.0159331963205, 44.835485814051], - [6.0048600553234, 44.820439050514], - [5.9961657258664, 44.81787407617], - [5.9781993713916, 44.818035522208], - [5.9495216336669, 44.804527356596], - [5.9537639530916, 44.799525853781], - [5.9777793189449, 44.790983738721], - [5.9801493330969, 44.781181602373], - [5.9555147438847, 44.772449015839], - [5.952471613503, 44.76214052281], - [5.937984096823, 44.763046424986], - [5.926812494728, 44.757135657325], - [5.9152344231519, 44.754703072251], - [5.900149637893, 44.758315310611], - [5.8888310649581, 44.748803778249], - [5.8794954997212, 44.747015345674], - [5.8652264931802, 44.75155204943], - [5.8503937497009, 44.750747373326], - [5.8371577512142, 44.757677183301], - [5.8270981940509, 44.759688387455], - [5.8277714297865, 44.740086051546], - [5.8177724444737, 44.730405199263], - [5.8087945811456, 44.712101632921], - [5.8014699513145, 44.706777613167], - [5.8271099006445, 44.700288039663], - [5.8294720463131, 44.692425284611], - [5.8246351320469, 44.685278024621], - [5.8064797515589, 44.677181975541], - [5.790623681681, 44.653292905762], - [5.7666311555846, 44.655266851559], - [5.7539428619931, 44.662710867987], - [5.748257168346, 44.655090844363], - [5.7511047252626, 44.648611621404], - [5.7360131774513, 44.649510358823], - [5.7358025109287, 44.640415596891], - [5.7260329075738, 44.639393999475], - [5.6853621391431, 44.649596345809], - [5.6593597358465, 44.650663453626], - [5.6544567435058, 44.655393257217], - [5.6417177024073, 44.65107732796], - [5.6403729488497, 44.633825447345], - [5.6496311179712, 44.617884606434], - [5.6475161192881, 44.612808143065], - [5.6274790368545, 44.594965971046], - [5.6257986898421, 44.586275880643], - [5.6070190339977, 44.568348424227], - [5.5997980521304, 44.553941311612], - [5.5972525723721, 44.543273639184], - [5.6149927369414, 44.532817987531], - [5.630802337654, 44.531597332459], - [5.6531427146706, 44.514831250068], - [5.6645041823511, 44.501894932126], - [5.6526558596497, 44.499962952183], - [5.6297876074114, 44.501187043038], - [5.618123153083, 44.474812657295], - [5.6036448321495, 44.465542446118], - [5.5792007067241, 44.471686064395], - [5.5703041972283, 44.476754841678], - [5.5624010016641, 44.474853738869], - [5.5447008857046, 44.482537575762], - [5.5133416154223, 44.491125991349], - [5.479877306738, 44.491243239804], - [5.4735960069771, 44.498568843239], - [5.4653894088793, 44.500459334817], - [5.4569314822479, 44.496235778443], - [5.463575747607, 44.480512627606], - [5.4587312484193, 44.466142946772], - [5.4640494490072, 44.457360043051], - [5.4644276220352, 44.447890408205], - [5.496803836369, 44.438493779503], - [5.4936153322299, 44.428217653577], - [5.4865672289608, 44.429310933518], - [5.4764846044694, 44.419722107544], - [5.4507590745848, 44.430873511581], - [5.4338571063313, 44.433224179441], - [5.4185330627929, 44.424944615913], - [5.422756262532, 44.416770650479], - [5.434309527365, 44.409479438419], - [5.4430201938352, 44.391233871018], - [5.4423608910239, 44.381659799255], - [5.4351137570212, 44.37707693084], - [5.4344154288602, 44.36962646376], - [5.4629658844687, 44.367052180352], - [5.4679488171996, 44.352676849629], - [5.4824720338071, 44.349605960068], - [5.4930701487957, 44.337173950444], - [5.5135447821727, 44.347485508397], - [5.5398634524253, 44.342637263297], - [5.5373655887575, 44.333521248655], - [5.5491114786402, 44.330396465555], - [5.5738598675994, 44.333940368466], - [5.5868917748447, 44.332226010325], - [5.6171385399181, 44.332478533509], - [5.6269152221035, 44.334764537726], - [5.6315982014425, 44.32830571643], - [5.6138324838557, 44.316139439714], - [5.6079060792589, 44.306669558882], - [5.6377527896773, 44.29968895608], - [5.6332659808825, 44.282119871541], - [5.6467811994158, 44.267088776629], - [5.6752912853484, 44.275852112257], - [5.6865615009091, 44.266921017987], - [5.6753443584242, 44.258110993228], - [5.6726438758953, 44.245665214395], - [5.6813154432669, 44.232890979586], - [5.6760207339785, 44.212146588276], - [5.6864432188187, 44.197157935534], - [5.6760358633349, 44.191428664539], - [5.6515861240321, 44.189572730485], - [5.6522929653271, 44.185411124162], - [5.6436911140627, 44.172641360479], - [5.6469586945897, 44.166287300205], - [5.6626325073952, 44.16686426058], - [5.6827091460673, 44.163217461898], - [5.6786089032088, 44.146091300526], - [5.6679496679388, 44.148873764468], - [5.65770809672, 44.147529418679], - [5.6311399737751, 44.150576623162], - [5.6395945851702, 44.167581524], - [5.6162160024561, 44.181069460057], - [5.6020555143928, 44.191496296599], - [5.5962058311559, 44.187648959302], - [5.5761919645305, 44.188037035508], - [5.5643706424911, 44.170901794193], - [5.5829754941585, 44.157625987959], - [5.5695065039633, 44.148099520416], - [5.5513311325106, 44.149791971653], - [5.5439848356077, 44.136389912148], - [5.5329588653579, 44.130053463575], - [5.5197573760784, 44.126616149895], - [5.5048243383524, 44.116270397321], - [5.4987864391759, 44.115716677493], - [5.4547151332789, 44.119226133429], - [5.4492512328028, 44.124591922526], - [5.4472805287304, 44.135994708471], - [5.4369459430348, 44.142812945214], - [5.4357509062277, 44.152249650949], - [5.3905234132549, 44.1534251894], - [5.3832371388833, 44.155284811726], - [5.3864765223646, 44.1769070133], - [5.3830416498971, 44.198796138337], - [5.3845269211658, 44.20104933819], - [5.3540415690827, 44.213431973111], - [5.336784174291, 44.20389269414], - [5.3183111725222, 44.209869282984], - [5.3037098672957, 44.206011143284], - [5.2911909842134, 44.214933969307], - [5.2565049248197, 44.230055506], - [5.2404514324301, 44.230825507739], - [5.2381459551442, 44.213233409548], - [5.2046138867346, 44.215116852293], - [5.1735074807317, 44.2219664549], - [5.1548996659898, 44.230941470835], - [5.1516592069293, 44.23772859876], - [5.1615500254058, 44.245588822308], - [5.1571364176122, 44.267225182448], - [5.1474716753569, 44.269525185767], - [5.1497309928727, 44.282086494235], - [5.1672051148975, 44.292050008972], - [5.1726899918655, 44.309391119528], - [5.1664353137721, 44.314853482023], - [5.1524172226752, 44.307683682999], - [5.1546757377907, 44.301844910979], - [5.1214657621262, 44.287480229186], - [5.1078521429136, 44.280398126188], - [5.0765144884036, 44.284084169033], - [5.0605607254823, 44.308137131551], - [5.0384946811178, 44.299637776655], - [5.0218466033995, 44.295587171529], - [5.0069116240356, 44.287554489231], - [4.9814530758182, 44.284833474448], - [4.9598922113805, 44.274192870866], - [4.935492573713, 44.264314996193], - [4.9175325402435, 44.260348620291], - [4.9060631576886, 44.260294315057], - [4.8961483935046, 44.264431155121], - [4.8737563985909, 44.25925825523], - [4.845368774508, 44.241470533268], - [4.8266501157802, 44.228322408488], - [4.814089831112, 44.232314781729], - [4.8126620207402, 44.257716427139], - [4.8052938582648, 44.268723026395], - [4.8028804076615, 44.296593704504], - [4.7991000020835, 44.303525444918], - [4.7825467521402, 44.315582694107], - [4.7622549890071, 44.325381622419], - [4.7201274920268, 44.326711236709], - [4.7130169314739, 44.320649375535], - [4.6790253292764, 44.320490236187], - [4.6506111734968, 44.329803148128], - [4.653662160064, 44.297280366126], - [4.649227423465, 44.270359808636], - [4.641962943496, 44.273967232879], - [4.6380600403344, 44.282964739036], - [4.6288231783395, 44.284004141308], - [4.6181459353598, 44.278542099268], - [4.6068181251102, 44.290471804776], - [4.5869814679806, 44.29459622458], - [4.574187229155, 44.300751054654], - [4.5586960480886, 44.302442886009], - [4.5444682300368, 44.320766940178], - [4.5326208269687, 44.32252533633], - [4.5178637257565, 44.329927083074], - [4.503538697272, 44.340187516986], - [4.484186331178, 44.337581914669], - [4.4761161664256, 44.34074524217], - [4.4576163712243, 44.341635623893], - [4.4508857895897, 44.33261714008], - [4.4492717103226, 44.304914782152], - [4.4506900513602, 44.297286859459], - [4.440502356745, 44.284053476816], - [4.4218910835178, 44.287324346637], - [4.3989780395897, 44.288943564372], - [4.3934072251798, 44.293647114857], - [4.3907812808888, 44.303051306396], - [4.4032085466386, 44.333895573125], - [4.3941986915176, 44.345264673242], - [4.3865260888309, 44.346613937013], - [4.3667775642003, 44.339497579716], - [4.3360706324228, 44.339519174094], - [4.3217239441113, 44.323989000128], - [4.3044280048901, 44.315234251029], - [4.2884228053033, 44.31465771441], - [4.2894096266193, 44.293214668623], - [4.2766179866697, 44.274252680812], - [4.2588499153827, 44.264783733394], - [4.2413235022379, 44.270096446791], - [4.2164426737394, 44.288852848267], - [4.1867071328058, 44.29968541211], - [4.1777450676527, 44.317879259785], - [4.1548869300058, 44.31262212801], - [4.1428714788751, 44.313351716383], - [4.1403038447089, 44.327883881292], - [4.1267455749949, 44.337730884113], - [4.1125125628157, 44.329490022147], - [4.1039911697566, 44.333899706452], - [4.0716270663138, 44.327298770679], - [4.0514566440182, 44.317321809072], - [4.0368667860025, 44.330771008666], - [4.0450038312264, 44.333082309228], - [4.0531535999561, 44.340968920772], - [4.055527118005, 44.365626171449], - [4.0529853320038, 44.378694159984], - [4.0437442732688, 44.384550041392], - [4.042468868612, 44.39464402593], - [4.0572129135807, 44.393348439495], - [4.0684449498584, 44.405111736232], - [4.0561040289114, 44.414335993335], - [4.0354823981467, 44.420090870159], - [4.0464583808932, 44.432710617884], - [4.0375991394785, 44.445719563488], - [4.0232058055546, 44.445573236432], - [4.0149839677909, 44.454514219975], - [3.9981617468281, 44.459798467391], - [3.9875441966947, 44.473361271665], - [3.985747412107, 44.487924045953], - [3.9873321701777, 44.499162516354], - [3.9837035025138, 44.510167633816], - [3.9766536412959, 44.516689836275], - [3.9753657955514, 44.523650580786], - [3.9657451606381, 44.537497086144], - [3.9608749832371, 44.554803732187], - [3.9451514993013, 44.573790000095], - [3.9284831974258, 44.569998826159], - [3.9207367872473, 44.575746388916], - [3.9191671077331, 44.585245092622], - [3.90517074571, 44.592708958301], - [3.9083038945979, 44.606615580322], - [3.8985315708048, 44.613411802763], - [3.8926148288923, 44.623030105672], - [3.8947423692172, 44.651129115275], - [3.882909471786, 44.660088831897], - [3.8732699495096, 44.678201691122], - [3.8845476207292, 44.697347879776], - [3.8696426954409, 44.696962680173], - [3.8718913936808, 44.705396507123], - [3.8615128126047, 44.71201694644], - [3.8677916785686, 44.728142672276], - [3.8762993159981, 44.731800448649], - [3.8754615107331, 44.740626944691], - [3.8625310211191, 44.743866105932], - [3.8365590308337, 44.747847636802], - [3.8304555521813, 44.756161500223], - [3.8428722625525, 44.767659869676], - [3.841603226393, 44.772129900378], - [3.8301463157408, 44.775710594028], - [3.8198835993274, 44.772685233514], - [3.8121315885881, 44.766032837865], - [3.8033308935883, 44.770414179887], - [3.8032312316337, 44.781579343618], - [3.7794867433517, 44.79731064671], - [3.7587613653652, 44.805576543778], - [3.7624285152172, 44.810666360605], - [3.7526807081682, 44.82097908395], - [3.7406494702404, 44.838697356604], - [3.7228844822867, 44.830986703517], - [3.7003857822671, 44.836813194859], - [3.6954389564378, 44.830958625259], - [3.6663623630222, 44.828776303359], - [3.6574209674758, 44.836124356852], - [3.6718167758914, 44.843382404889], - [3.6704785324924, 44.850864431429], - [3.6595224161061, 44.86994134545], - [3.6423461696965, 44.878382169756], - [3.6264517258551, 44.880253899231], - [3.6147496711134, 44.874174272057], - [3.6082755428246, 44.879331218549], - [3.5943335024029, 44.875433384901], - [3.5980348128056, 44.859504969144], - [3.5920659249124, 44.84796463101], - [3.5893552432085, 44.832194014444], - [3.578465058473, 44.825696757681], - [3.5745418907117, 44.83460991769], - [3.5638205108562, 44.832831791958], - [3.5615758039452, 44.824976812591], - [3.5397515164373, 44.828176022752], - [3.5056459727137, 44.823846663279], - [3.4948664240388, 44.815405935965], - [3.4909959832186, 44.808474309867], - [3.478809589921, 44.809446829457], - [3.4757711698307, 44.815370629667], - [3.4570624789322, 44.833777540962], - [3.4541989644633, 44.844563734203], - [3.4416742987403, 44.854449680958], - [3.4386254407679, 44.86082184192], - [3.4357050101121, 44.88024496334], - [3.417976841379, 44.900767433551], - [3.4192590880448, 44.908428284947], - [3.413833246774, 44.919859843574], - [3.4149529202982, 44.932631887178], - [3.412832200087, 44.944841611062], - [3.4045530849223, 44.956400427592], - [3.3969930219391, 44.958577768116], - [3.3863677767162, 44.952742049715], - [3.3713550433617, 44.960250089988], - [3.3703185777492, 44.96998390468], - [3.3613476310625, 44.971408091786] - ], - [ - [4.8881212108854, 44.331685388726], - [4.8816338901906, 44.324867070891], - [4.8898043773976, 44.314637092176], - [4.8895301353902, 44.304153097826], - [4.9221541568202, 44.308786460381], - [4.9451171535381, 44.304930431589], - [4.9592140611525, 44.300383345912], - [4.9785833048477, 44.29746123871], - [4.9872903058308, 44.293201871035], - [4.9931295821934, 44.314275867797], - [5.0133769832902, 44.326136687081], - [5.0090024588591, 44.333764157861], - [5.0232851187488, 44.345948323084], - [5.0217054810597, 44.35674765583], - [5.0270113166527, 44.362835272711], - [5.0520104655825, 44.364657329845], - [5.0715584929227, 44.377495636793], - [5.0708829483659, 44.383226380932], - [5.0450881649883, 44.38222013058], - [5.033568721145, 44.391088844502], - [5.0157545106617, 44.392767137778], - [5.0133020500209, 44.405342926953], - [5.0187537016752, 44.415979484324], - [5.0010692090687, 44.412604850416], - [4.9886124577738, 44.423200264487], - [4.9786944339347, 44.423476108149], - [4.9704375593477, 44.431367227183], - [4.960461816094, 44.420048061058], - [4.9185138149855, 44.407786865574], - [4.9123797297803, 44.399635600585], - [4.9117660520568, 44.387044638589], - [4.9066213399272, 44.374101025322], - [4.893168871015, 44.367875394193], - [4.8906819005659, 44.359781959098], - [4.8753963679389, 44.351439190756], - [4.8796465016088, 44.345346527391], - [4.8953267719183, 44.338062405104], - [4.8881212108854, 44.331685388726] - ] - ] - }, - "properties": { - "code": "84", - "name": "Auvergne-Rhône-Alpes", - "ISOCODE": "FR-ARA" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [6.9483326980915, 44.654818187455], - [6.9545132491635, 44.636224928214], - [6.9668199032047, 44.625347388492], - [6.9507674204422, 44.619841837282], - [6.9449335028933, 44.605789563959], - [6.9383975462678, 44.603747763937], - [6.9327380313786, 44.592705761063], - [6.9335092809034, 44.5759534554], - [6.9219454035638, 44.570243826413], - [6.9132069817362, 44.558829270084], - [6.876030406824, 44.55015646598], - [6.8698392887424, 44.536836939535], - [6.8584936249176, 44.534359207877], - [6.854014437248, 44.52912511427], - [6.8612281786649, 44.503421026182], - [6.8819639305182, 44.477256328072], - [6.9063376727978, 44.466843845236], - [6.9110962932443, 44.452367703384], - [6.9371328757365, 44.438869491063], - [6.9445579172439, 44.432057527562], - [6.9239709413721, 44.422877906287], - [6.9179670246858, 44.427399028125], - [6.9028825840578, 44.420453193274], - [6.8928683040571, 44.420779824329], - [6.8956192908931, 44.40850443666], - [6.8943641862255, 44.397964299149], - [6.8965054422432, 44.374301434879], - [6.8874351607458, 44.361051257141], - [6.9039405145375, 44.358363946255], - [6.922408948521, 44.348259672782], - [6.9264745551235, 44.334748792521], - [6.952951586736, 44.317556187214], - [6.9606383114524, 44.308313554754], - [6.956527244135, 44.298637866463], - [6.9746845616164, 44.284947324084], - [6.9818271258487, 44.286410035391], - [6.9934466941361, 44.280889629925], - [6.9961055050865, 44.274898557636], - [6.9971354940846, 44.251969663265], - [7.008058899486, 44.236434519326], - [7.0236065351574, 44.234002611242], - [7.0309527146887, 44.227886412564], - [7.0423543174862, 44.225341715295], - [7.071038657434, 44.232947084937], - [7.0875099114445, 44.228292359933], - [7.0956034766404, 44.220998156705], - [7.1122287931144, 44.217330653519], - [7.1410513675592, 44.200999432021], - [7.1597408386494, 44.20620668921], - [7.1889131681001, 44.197800735913], - [7.1936149196336, 44.187096791929], - [7.2077263762825, 44.179359647414], - [7.2188636397203, 44.168943578203], - [7.2330706376379, 44.171847122805], - [7.2433604024762, 44.16824934948], - [7.2485713354452, 44.158510912489], - [7.2627871994961, 44.148031915773], - [7.2819657633804, 44.143448609313], - [7.3094385951796, 44.145823690919], - [7.319723239617, 44.142984830429], - [7.3441996623578, 44.145160179669], - [7.3486515313978, 44.132703415252], - [7.3560379859181, 44.120862631994], - [7.3678650497535, 44.116393672544], - [7.3862710914984, 44.123786171069], - [7.402623982354, 44.120705927946], - [7.4269527801501, 44.112874801646], - [7.4299229881381, 44.12780018313], - [7.4353553212408, 44.12936252164], - [7.457603190617, 44.126386684548], - [7.4877154419517, 44.135762163943], - [7.5057396587933, 44.143648852302], - [7.520182785703, 44.137674317137], - [7.537290343427, 44.145959889905], - [7.5567907106942, 44.146921089934], - [7.5730685064726, 44.152945056661], - [7.6145604124219, 44.149672411542], - [7.6272700685025, 44.158689779815], - [7.6300545159959, 44.170243633498], - [7.6366204125639, 44.177106922757], - [7.645279607809, 44.177974572433], - [7.6845890381135, 44.174017398395], - [7.6809496805966, 44.164264593246], - [7.6708532380976, 44.153736855882], - [7.6785361248798, 44.145890169308], - [7.6665952665469, 44.130757105938], - [7.6745231655973, 44.117978245486], - [7.687962616314, 44.110091318983], - [7.6966096855559, 44.097734290199], - [7.7119543533479, 44.088263855715], - [7.7169378581589, 44.081762896271], - [7.7140726367423, 44.065430655301], - [7.7040230585525, 44.0525085058], - [7.7000270318339, 44.040791675149], - [7.6898090293654, 44.039470511681], - [7.6782822841591, 44.03329165478], - [7.6649824687263, 44.030663880807], - [7.6618347607452, 44.017913762433], - [7.6702052888494, 43.998468338078], - [7.6485982666394, 43.974109522666], - [7.6401015316808, 43.971240651171], - [7.6155485013064, 43.957789271068], - [7.5980648513608, 43.957024140012], - [7.5836834071779, 43.952447983137], - [7.5671101389754, 43.943674367953], - [7.5707221149432, 43.937343618185], - [7.5682448275089, 43.923261011537], - [7.5599292736857, 43.914444652084], - [7.5628129682105, 43.901908468635], - [7.5592240305265, 43.89729711992], - [7.5360791029785, 43.892182868868], - [7.5105146453694, 43.881552779572], - [7.5012119292534, 43.874828789654], - [7.4954411094938, 43.864355738536], - [7.4986078220042, 43.846177765064], - [7.5073719223254, 43.841680148497], - [7.5102522518857, 43.828199938911], - [7.5187225864577, 43.802507945967], - [7.5285185561398, 43.790517639429], - [7.5247262568589, 43.784879584787], - [7.5117948400642, 43.781115025816], - [7.5114975854043, 43.776215035435], - [7.4902105843582, 43.767195024672], - [7.4759133369426, 43.750794270454], - [7.4597361031449, 43.7600397197], - [7.4466232736677, 43.751857229949], - [7.4372257692862, 43.751597325308], - [7.4122682542985, 43.734386932687], - [7.4156350290343, 43.725913755066], - [7.4064566044271, 43.71962940636], - [7.3979400485547, 43.718906163039], - [7.3832708147641, 43.722581448981], - [7.3693528634512, 43.719373461503], - [7.3585182511974, 43.721877364751], - [7.3511879110757, 43.715209965617], - [7.3361061972735, 43.710332184327], - [7.3296137110006, 43.701909777531], - [7.3336420480539, 43.693576495112], - [7.3353474080935, 43.67821377735], - [7.3263641460951, 43.674107370674], - [7.3202887345678, 43.69132875931], - [7.3253410136934, 43.700155817322], - [7.3147161986497, 43.70653561017], - [7.3068448365673, 43.697863928793], - [7.308767626144, 43.691876117984], - [7.2972030752041, 43.686139330004], - [7.2851740716363, 43.694320779226], - [7.2624291447135, 43.69425697459], - [7.2418855125179, 43.688481372627], - [7.230632479809, 43.678552633914], - [7.2258833224864, 43.662250909247], - [7.2064521654727, 43.645639308042], - [7.1945395872153, 43.657918311572], - [7.1792252554182, 43.655921466708], - [7.1676659649864, 43.657401670267], - [7.1510535551671, 43.649273147891], - [7.1371975190968, 43.634490533121], - [7.1264731964483, 43.605277906363], - [7.1258107141258, 43.594574055426], - [7.1296893171876, 43.58264162915], - [7.1255471645856, 43.575784139356], - [7.1392394995248, 43.564445498702], - [7.1347862801153, 43.555745223246], - [7.1441717937997, 43.552949923404], - [7.1385034267534, 43.545620722537], - [7.1191937177542, 43.544452103717], - [7.1216246082512, 43.554189213515], - [7.1145834190314, 43.565833873571], - [7.1012671442927, 43.5706815908], - [7.0843069068568, 43.569546459525], - [7.0675647780773, 43.561637194767], - [7.0559473239941, 43.547965476969], - [7.0404439376582, 43.541582782416], - [7.026613869621, 43.548604342901], - [7.0148286615711, 43.550852905577], - [6.9872491529001, 43.548425210345], - [6.9718325905645, 43.545451297616], - [6.9521643765802, 43.53471627255], - [6.9383636746132, 43.516390841291], - [6.9383938694233, 43.508638111929], - [6.9547512806261, 43.504724793903], - [6.9489893541651, 43.493480863369], - [6.9488401316243, 43.485496928717], - [6.9326931753823, 43.484349210212], - [6.9337211159516, 43.480065494401], - [6.923867212973, 43.470960837627], - [6.9243598479502, 43.464066349035], - [6.9179721528571, 43.447738536354], - [6.9051351716853, 43.445353094761], - [6.8938948378079, 43.436171115171], - [6.8918037687118, 43.428580015191], - [6.8745353033552, 43.426537753906], - [6.8652393715348, 43.433930920766], - [6.8569996758254, 43.430477732013], - [6.8594727968345, 43.418159528215], - [6.8550478015615, 43.411429429877], - [6.8425087566418, 43.416314042768], - [6.8267609493565, 43.417371848056], - [6.7988544528977, 43.413719926554], - [6.7896945798181, 43.408266782123], - [6.7634118379603, 43.424488987703], - [6.750657595625, 43.420845307432], - [6.7398086751923, 43.41288238776], - [6.7295091701175, 43.397245962638], - [6.7263132753371, 43.383104485014], - [6.7143312441348, 43.36790258606], - [6.7165464557638, 43.347490862069], - [6.7099603836418, 43.344598306055], - [6.6816193520365, 43.340959774178], - [6.6689910907851, 43.33292829161], - [6.6659564383834, 43.31821983472], - [6.6504467498051, 43.30930360706], - [6.6286232743314, 43.304542794427], - [6.6212969072192, 43.296033806007], - [6.6017039878442, 43.285829711816], - [6.5899812585712, 43.28243883097], - [6.5838742224265, 43.277308105612], - [6.585990659385, 43.264473629553], - [6.5934629712796, 43.262265776308], - [6.6234880954753, 43.265350514242], - [6.6457979042857, 43.273835088392], - [6.662121282463, 43.264909792407], - [6.6695313240363, 43.268462885728], - [6.6704136972555, 43.27640069302], - [6.6773068762378, 43.278794827575], - [6.6972545497172, 43.265497283834], - [6.6904226539265, 43.253768484541], - [6.676365540846, 43.244474024822], - [6.6685654818411, 43.245554369751], - [6.6635799631008, 43.238043384914], - [6.6626657632275, 43.217572199696], - [6.677034229563, 43.197186519392], - [6.6593271741191, 43.195930208865], - [6.6420225769795, 43.183734132211], - [6.6355350265918, 43.172509449193], - [6.6236623943555, 43.165300606932], - [6.612901777714, 43.165892299234], - [6.6004702842875, 43.182582281991], - [6.5919303129754, 43.185477402074], - [6.5596377554811, 43.188632638495], - [6.541396288166, 43.182330817397], - [6.534084190046, 43.172782676664], - [6.5363193464327, 43.165106616411], - [6.5228061651254, 43.165323967594], - [6.5087687818106, 43.156648567314], - [6.4934958461812, 43.150223730387], - [6.4883740268723, 43.152806138202], - [6.4641477513921, 43.157528246642], - [6.4492154874295, 43.153387552888], - [6.44429973474, 43.145456324914], - [6.4290707640808, 43.151423030929], - [6.4051586594236, 43.148994996899], - [6.3875680181733, 43.144900254259], - [6.3802996760452, 43.138559151429], - [6.3687216170301, 43.136975338721], - [6.3597633175514, 43.119904355977], - [6.3598808549228, 43.105074542854], - [6.368364474458, 43.102269062044], - [6.3682566796679, 43.089914872597], - [6.3492877575107, 43.088191211862], - [6.3325137465072, 43.091093655786], - [6.3253619900804, 43.095399033313], - [6.3166670705359, 43.106166407372], - [6.3092405738884, 43.108321309527], - [6.2882203945084, 43.108702218392], - [6.2881595756018, 43.114200760657], - [6.274941161023, 43.120741066834], - [6.2652965375011, 43.121041023451], - [6.2343366461075, 43.113014447828], - [6.2080853497602, 43.116444167346], - [6.2007847463615, 43.115790863382], - [6.1839926131867, 43.108536285948], - [6.1704563295787, 43.0997558313], - [6.1598371974529, 43.088451636416], - [6.150270989362, 43.064453888882], - [6.1499595681806, 43.045856056649], - [6.1531565349953, 43.035245722363], - [6.147899852463, 43.026960466647], - [6.1368994767253, 43.030616602392], - [6.1339953631425, 43.036214235727], - [6.120936317207, 43.032186182571], - [6.115004757531, 43.034956601301], - [6.1025906616279, 43.028782647513], - [6.0918311311331, 43.036774442924], - [6.1047189809048, 43.041956746957], - [6.1167138627143, 43.039240063655], - [6.1281920087398, 43.042671102624], - [6.1323295631249, 43.059513879555], - [6.124051799264, 43.07930650726], - [6.1139934267722, 43.083654682725], - [6.0812978668083, 43.087226281584], - [6.0608714971149, 43.081747669597], - [6.0314352379439, 43.07747526022], - [6.0215343544984, 43.078256714006], - [6.0168236605891, 43.083635285965], - [6.0234652560844, 43.094811520978], - [6.0050157080904, 43.103799383815], - [5.9762269212434, 43.10757701689], - [5.9662730514685, 43.1056392255], - [5.9412493838579, 43.107661088538], - [5.9257873894364, 43.103970758155], - [5.9343359139287, 43.118604366719], - [5.9074795895659, 43.118881530843], - [5.8890107013515, 43.11005127935], - [5.8868360567952, 43.103450269366], - [5.901008542602, 43.103996533879], - [5.909107117861, 43.10046149114], - [5.8947710571836, 43.081712418128], - [5.9095702721446, 43.079393797213], - [5.9170857708081, 43.085825411251], - [5.9289528079791, 43.082919298522], - [5.9376580436388, 43.08457851954], - [5.9509582392784, 43.076765254429], - [5.943881221795, 43.066409791665], - [5.9366458228053, 43.071725835864], - [5.9285981186439, 43.071716453532], - [5.9112894628203, 43.06578413673], - [5.8984664585895, 43.07758725099], - [5.8871334844754, 43.077225735618], - [5.8657541086125, 43.059881682488], - [5.8574553138035, 43.046618874503], - [5.8276382705234, 43.05034932291], - [5.8167124624351, 43.062314625126], - [5.7941055326647, 43.068774233408], - [5.8045644441502, 43.078283139099], - [5.8105134830279, 43.092326111559], - [5.8127322115996, 43.109367157095], - [5.8069507607973, 43.115679350616], - [5.7910184437069, 43.112424881887], - [5.7886661988609, 43.116377367101], - [5.7744948217719, 43.116904330683], - [5.7736877374351, 43.124358146456], - [5.7806944360543, 43.129636959482], - [5.7712544214782, 43.138932344182], - [5.7522954712541, 43.13316137548], - [5.7258497190477, 43.136527153376], - [5.7190149570316, 43.147273734952], - [5.6948752166924, 43.143589707468], - [5.682675442198, 43.160132349422], - [5.69476068803, 43.168021818342], - [5.6924387435758, 43.174870299627], - [5.6845946967002, 43.180061736494], - [5.6718787324219, 43.179269594604], - [5.6525593241702, 43.187314477783], - [5.6383239998299, 43.189173766465], - [5.6172174635767, 43.18371473989], - [5.6098389569561, 43.17368424192], - [5.6146454833389, 43.169198477141], - [5.6008948125683, 43.162545513212], - [5.5714983888382, 43.173555880459], - [5.5479598370767, 43.196023901121], - [5.5499085142965, 43.207367827769], - [5.5369302937792, 43.214490076169], - [5.515763799187, 43.203024207623], - [5.5100611678748, 43.197689816439], - [5.5002885068597, 43.196790895695], - [5.4865704178615, 43.204153568372], - [5.468036914708, 43.20872417933], - [5.4461877784161, 43.210231385585], - [5.4256485097191, 43.203784469675], - [5.4033807899197, 43.21282384953], - [5.3910567260333, 43.212122982456], - [5.3636491661807, 43.207122106689], - [5.3456097729721, 43.212497555779], - [5.3425610087084, 43.216257869717], - [5.3483543737945, 43.2298241001], - [5.3725248187308, 43.245077650705], - [5.3760469740713, 43.255156912202], - [5.3673730695884, 43.268907750223], - [5.3456836221411, 43.282366222064], - [5.3629864899254, 43.301953092747], - [5.3644147192511, 43.312140169969], - [5.3620502253915, 43.321960251309], - [5.3556316786832, 43.322291979926], - [5.352523739124, 43.332822871057], - [5.3431794461906, 43.339096162428], - [5.341020887781, 43.344783149914], - [5.3173099513093, 43.355086515457], - [5.3110302222328, 43.360879997437], - [5.2885149096553, 43.357326659023], - [5.2703975054675, 43.344652472176], - [5.2576422113991, 43.33785745169], - [5.2405905351428, 43.331712598278], - [5.2213339498192, 43.328358899356], - [5.1954386570072, 43.33000275989], - [5.1774744273398, 43.333616525803], - [5.164476902229, 43.327323286526], - [5.1482109690618, 43.326418360361], - [5.1351880880297, 43.329222149882], - [5.094781174269, 43.329270900706], - [5.0815876357356, 43.327877052599], - [5.0627982236147, 43.331087967135], - [5.0539150268677, 43.324272099372], - [5.0410400764889, 43.327284831154], - [5.0190482280859, 43.342937227035], - [5.0242965902058, 43.355559161915], - [5.017109588485, 43.35694335664], - [5.0113980677591, 43.368027586573], - [5.0001976645609, 43.377116357469], - [4.9876375735659, 43.391776901932], - [5.0010677938316, 43.398215886274], - [4.9955040109031, 43.403478734365], - [4.9776421775338, 43.407406133291], - [4.9730488082218, 43.420933908913], - [4.9677103819671, 43.426100332678], - [4.9494334707518, 43.429224186554], - [4.941216499844, 43.428254043212], - [4.931376951317, 43.433157232314], - [4.9106063278399, 43.427280115584], - [4.9063533880916, 43.419737286499], - [4.8865877345916, 43.412880564295], - [4.8839595728386, 43.419515397166], - [4.8674100871644, 43.432331363619], - [4.8773029521565, 43.410513204152], - [4.8668499113366, 43.404678136755], - [4.8291209117113, 43.428264665696], - [4.8244333765645, 43.424394088096], - [4.8614681256348, 43.40076989363], - [4.8500135070493, 43.398836197988], - [4.8416101405785, 43.404034087959], - [4.8358563366124, 43.398039616459], - [4.8551101946662, 43.387877558547], - [4.8494840577119, 43.380013571741], - [4.8569334158861, 43.370915251699], - [4.8667320208315, 43.369607444541], - [4.8737024584045, 43.360848282232], - [4.9022342998273, 43.370982432633], - [4.89252239213, 43.360161697152], - [4.8550448910375, 43.332618516509], - [4.8481410380544, 43.333670742325], - [4.8330340586153, 43.32986959949], - [4.8231844261886, 43.335956971178], - [4.8019643201692, 43.343146781855], - [4.783356801758, 43.347189434094], - [4.7595949251318, 43.349936079368], - [4.7177423514311, 43.350306361918], - [4.7057078087084, 43.34779914182], - [4.6617842756445, 43.346410527778], - [4.6380886588302, 43.351001855561], - [4.6131027136534, 43.353767124036], - [4.5858024446726, 43.360071509782], - [4.5627978195916, 43.372134942713], - [4.5556106083519, 43.38282276464], - [4.5627131374003, 43.392243971332], - [4.5735916278341, 43.393577384459], - [4.5876982001696, 43.400712121388], - [4.5929514695631, 43.409939117692], - [4.5880988195327, 43.422705156053], - [4.5731686445663, 43.437345552555], - [4.5549165862997, 43.446213275115], - [4.5347167281545, 43.451636616845], - [4.5163610320847, 43.454715093233], - [4.4652664495204, 43.457150995927], - [4.4417093298303, 43.45488352219], - [4.4334372492981, 43.451162718975], - [4.4045865202341, 43.448120304403], - [4.3820421638572, 43.45227212971], - [4.3037217279638, 43.456772476562], - [4.2302808850321, 43.460183661653], - [4.2311705681976, 43.47675937846], - [4.2381030309066, 43.497625146899], - [4.2586419540305, 43.507538672405], - [4.271416895472, 43.508069960206], - [4.2976898160141, 43.515329111265], - [4.3051324465276, 43.520794514252], - [4.3204919293874, 43.525482210334], - [4.3227085568643, 43.530446651372], - [4.3095227640281, 43.543279128578], - [4.3164310144209, 43.544330277799], - [4.3341326001686, 43.535451246643], - [4.3536437981366, 43.547390132754], - [4.3651362956496, 43.547157120782], - [4.3806768784461, 43.55254245629], - [4.3870870214048, 43.560476830234], - [4.4093533628433, 43.561126852889], - [4.4153195295637, 43.572538108822], - [4.404416776755, 43.574366053053], - [4.4255399426089, 43.585225258609], - [4.4433120956209, 43.583144847291], - [4.4606813332323, 43.589260601197], - [4.4752352404423, 43.60829610571], - [4.4668068635081, 43.615205555036], - [4.4545256952964, 43.611392063023], - [4.4397478336794, 43.610672750672], - [4.4270341666761, 43.620674791673], - [4.4382159894455, 43.644374718144], - [4.4475788905709, 43.659307469452], - [4.4559475264435, 43.667415945459], - [4.4754954502059, 43.671096153803], - [4.4756623542909, 43.684463819817], - [4.4872344746833, 43.699241399194], - [4.503671690096, 43.702259072675], - [4.5243901803315, 43.702131030559], - [4.5398466434949, 43.707275616451], - [4.5527787964313, 43.701311173254], - [4.5818853309897, 43.696368547688], - [4.5930346527266, 43.68745966779], - [4.605829920983, 43.686077262962], - [4.6276618120935, 43.690542678491], - [4.6130400270515, 43.714296691071], - [4.6136350841342, 43.729822310127], - [4.6227171190074, 43.743237369574], - [4.628818965927, 43.759861933174], - [4.6512435847762, 43.782275197677], - [4.6548263114857, 43.806405017468], - [4.6522767209675, 43.816837884851], - [4.6424185010062, 43.831436886337], - [4.6501517057694, 43.839124011369], - [4.6662999036899, 43.844776915402], - [4.6586664103492, 43.853223756034], - [4.6480099815874, 43.851229485733], - [4.6419145398807, 43.867476572594], - [4.6566482355099, 43.874778903832], - [4.6654377200626, 43.875147404443], - [4.6905462810021, 43.883898624023], - [4.7074943864756, 43.895550919044], - [4.7037984091552, 43.899340665402], - [4.7233684641772, 43.905955710295], - [4.740099224056, 43.919678920657], - [4.7390596940896, 43.92406219253], - [4.7499895249126, 43.932181836453], - [4.7687787417118, 43.933801125308], - [4.7790210940203, 43.937894495052], - [4.7971529885585, 43.956718817037], - [4.8079998756015, 43.960029108371], - [4.8150547522655, 43.967622474105], - [4.8101475881401, 43.97704355585], - [4.8159834779277, 43.988799971648], - [4.8319955437626, 43.985260560051], - [4.8421001716407, 43.98647354378], - [4.8455501032842, 43.99667711759], - [4.8433326670726, 44.009857987382], - [4.8376764645108, 44.014939590778], - [4.8211405354756, 44.016469245528], - [4.8161675560385, 44.032144996975], - [4.8080065523425, 44.03972336512], - [4.7891182892738, 44.052194281428], - [4.7879793576032, 44.065056776494], - [4.7578505502116, 44.077246976599], - [4.7608553902053, 44.08629669027], - [4.7548761078409, 44.088309298713], - [4.7301353625795, 44.079023395797], - [4.7196389371655, 44.086665255194], - [4.7074595244331, 44.103669745076], - [4.7070128409472, 44.113682146579], - [4.714318820751, 44.137803248451], - [4.7188928038989, 44.14449718833], - [4.716116694835, 44.165974548714], - [4.7220708851492, 44.18742070852], - [4.7038951813692, 44.197612213118], - [4.7097117846241, 44.206925388326], - [4.7018165185921, 44.216070926665], - [4.6836408656973, 44.21242318348], - [4.6726658505102, 44.216806161879], - [4.6784293717396, 44.229429565698], - [4.6748406183712, 44.238546852911], - [4.6540654761357, 44.254338013491], - [4.649227423465, 44.270359808636], - [4.653662160064, 44.297280366126], - [4.6506111734968, 44.329803148128], - [4.6790253292764, 44.320490236187], - [4.7130169314739, 44.320649375535], - [4.7201274920268, 44.326711236709], - [4.7622549890071, 44.325381622419], - [4.7825467521402, 44.315582694107], - [4.7991000020835, 44.303525444918], - [4.8028804076615, 44.296593704504], - [4.8052938582648, 44.268723026395], - [4.8126620207402, 44.257716427139], - [4.814089831112, 44.232314781729], - [4.8266501157802, 44.228322408488], - [4.845368774508, 44.241470533268], - [4.8737563985909, 44.25925825523], - [4.8961483935046, 44.264431155121], - [4.9060631576886, 44.260294315057], - [4.9175325402435, 44.260348620291], - [4.935492573713, 44.264314996193], - [4.9598922113805, 44.274192870866], - [4.9814530758182, 44.284833474448], - [5.0069116240356, 44.287554489231], - [5.0218466033995, 44.295587171529], - [5.0384946811178, 44.299637776655], - [5.0605607254823, 44.308137131551], - [5.0765144884036, 44.284084169033], - [5.1078521429136, 44.280398126188], - [5.1214657621262, 44.287480229186], - [5.1546757377907, 44.301844910979], - [5.1524172226752, 44.307683682999], - [5.1664353137721, 44.314853482023], - [5.1726899918655, 44.309391119528], - [5.1672051148975, 44.292050008972], - [5.1497309928727, 44.282086494235], - [5.1474716753569, 44.269525185767], - [5.1571364176122, 44.267225182448], - [5.1615500254058, 44.245588822308], - [5.1516592069293, 44.23772859876], - [5.1548996659898, 44.230941470835], - [5.1735074807317, 44.2219664549], - [5.2046138867346, 44.215116852293], - [5.2381459551442, 44.213233409548], - [5.2404514324301, 44.230825507739], - [5.2565049248197, 44.230055506], - [5.2911909842134, 44.214933969307], - [5.3037098672957, 44.206011143284], - [5.3183111725222, 44.209869282984], - [5.336784174291, 44.20389269414], - [5.3540415690827, 44.213431973111], - [5.3845269211658, 44.20104933819], - [5.3830416498971, 44.198796138337], - [5.3864765223646, 44.1769070133], - [5.3832371388833, 44.155284811726], - [5.3905234132549, 44.1534251894], - [5.4357509062277, 44.152249650949], - [5.4369459430348, 44.142812945214], - [5.4472805287304, 44.135994708471], - [5.4492512328028, 44.124591922526], - [5.4547151332789, 44.119226133429], - [5.4987864391759, 44.115716677493], - [5.5048243383524, 44.116270397321], - [5.5197573760784, 44.126616149895], - [5.5329588653579, 44.130053463575], - [5.5439848356077, 44.136389912148], - [5.5513311325106, 44.149791971653], - [5.5695065039633, 44.148099520416], - [5.5829754941585, 44.157625987959], - [5.5643706424911, 44.170901794193], - [5.5761919645305, 44.188037035508], - [5.5962058311559, 44.187648959302], - [5.6020555143928, 44.191496296599], - [5.6162160024561, 44.181069460057], - [5.6395945851702, 44.167581524], - [5.6311399737751, 44.150576623162], - [5.65770809672, 44.147529418679], - [5.6679496679388, 44.148873764468], - [5.6786089032088, 44.146091300526], - [5.6827091460673, 44.163217461898], - [5.6626325073952, 44.16686426058], - [5.6469586945897, 44.166287300205], - [5.6436911140627, 44.172641360479], - [5.6522929653271, 44.185411124162], - [5.6515861240321, 44.189572730485], - [5.6760358633349, 44.191428664539], - [5.6864432188187, 44.197157935534], - [5.6760207339785, 44.212146588276], - [5.6813154432669, 44.232890979586], - [5.6726438758953, 44.245665214395], - [5.6753443584242, 44.258110993228], - [5.6865615009091, 44.266921017987], - [5.6752912853484, 44.275852112257], - [5.6467811994158, 44.267088776629], - [5.6332659808825, 44.282119871541], - [5.6377527896773, 44.29968895608], - [5.6079060792589, 44.306669558882], - [5.6138324838557, 44.316139439714], - [5.6315982014425, 44.32830571643], - [5.6269152221035, 44.334764537726], - [5.6171385399181, 44.332478533509], - [5.5868917748447, 44.332226010325], - [5.5738598675994, 44.333940368466], - [5.5491114786402, 44.330396465555], - [5.5373655887575, 44.333521248655], - [5.5398634524253, 44.342637263297], - [5.5135447821727, 44.347485508397], - [5.4930701487957, 44.337173950444], - [5.4824720338071, 44.349605960068], - [5.4679488171996, 44.352676849629], - [5.4629658844687, 44.367052180352], - [5.4344154288602, 44.36962646376], - [5.4351137570212, 44.37707693084], - [5.4423608910239, 44.381659799255], - [5.4430201938352, 44.391233871018], - [5.434309527365, 44.409479438419], - [5.422756262532, 44.416770650479], - [5.4185330627929, 44.424944615913], - [5.4338571063313, 44.433224179441], - [5.4507590745848, 44.430873511581], - [5.4764846044694, 44.419722107544], - [5.4865672289608, 44.429310933518], - [5.4936153322299, 44.428217653577], - [5.496803836369, 44.438493779503], - [5.4644276220352, 44.447890408205], - [5.4640494490072, 44.457360043051], - [5.4587312484193, 44.466142946772], - [5.463575747607, 44.480512627606], - [5.4569314822479, 44.496235778443], - [5.4653894088793, 44.500459334817], - [5.4735960069771, 44.498568843239], - [5.479877306738, 44.491243239804], - [5.5133416154223, 44.491125991349], - [5.5447008857046, 44.482537575762], - [5.5624010016641, 44.474853738869], - [5.5703041972283, 44.476754841678], - [5.5792007067241, 44.471686064395], - [5.6036448321495, 44.465542446118], - [5.618123153083, 44.474812657295], - [5.6297876074114, 44.501187043038], - [5.6526558596497, 44.499962952183], - [5.6645041823511, 44.501894932126], - [5.6531427146706, 44.514831250068], - [5.630802337654, 44.531597332459], - [5.6149927369414, 44.532817987531], - [5.5972525723721, 44.543273639184], - [5.5997980521304, 44.553941311612], - [5.6070190339977, 44.568348424227], - [5.6257986898421, 44.586275880643], - [5.6274790368545, 44.594965971046], - [5.6475161192881, 44.612808143065], - [5.6496311179712, 44.617884606434], - [5.6403729488497, 44.633825447345], - [5.6417177024073, 44.65107732796], - [5.6544567435058, 44.655393257217], - [5.6593597358465, 44.650663453626], - [5.6853621391431, 44.649596345809], - [5.7260329075738, 44.639393999475], - [5.7358025109287, 44.640415596891], - [5.7360131774513, 44.649510358823], - [5.7511047252626, 44.648611621404], - [5.748257168346, 44.655090844363], - [5.7539428619931, 44.662710867987], - [5.7666311555846, 44.655266851559], - [5.790623681681, 44.653292905762], - [5.8064797515589, 44.677181975541], - [5.8246351320469, 44.685278024621], - [5.8294720463131, 44.692425284611], - [5.8271099006445, 44.700288039663], - [5.8014699513145, 44.706777613167], - [5.8087945811456, 44.712101632921], - [5.8177724444737, 44.730405199263], - [5.8277714297865, 44.740086051546], - [5.8270981940509, 44.759688387455], - [5.8371577512142, 44.757677183301], - [5.8503937497009, 44.750747373326], - [5.8652264931802, 44.75155204943], - [5.8794954997212, 44.747015345674], - [5.8888310649581, 44.748803778249], - [5.900149637893, 44.758315310611], - [5.9152344231519, 44.754703072251], - [5.926812494728, 44.757135657325], - [5.937984096823, 44.763046424986], - [5.952471613503, 44.76214052281], - [5.9555147438847, 44.772449015839], - [5.9801493330969, 44.781181602373], - [5.9777793189449, 44.790983738721], - [5.9537639530916, 44.799525853781], - [5.9495216336669, 44.804527356596], - [5.9781993713916, 44.818035522208], - [5.9961657258664, 44.81787407617], - [6.0048600553234, 44.820439050514], - [6.0159331963205, 44.835485814051], - [6.0302157011626, 44.838097758941], - [6.0402065129253, 44.827867468677], - [6.0563403817425, 44.815907431783], - [6.0653153781591, 44.82268480473], - [6.0965156572897, 44.837489421771], - [6.1007058869493, 44.84257849233], - [6.1166725017074, 44.849313192704], - [6.1283556561161, 44.861901713563], - [6.1362266704196, 44.864071820118], - [6.1490188906075, 44.858169876067], - [6.1684510585274, 44.852242761941], - [6.1852192319643, 44.853991864943], - [6.1963759402105, 44.858978334449], - [6.2243745547304, 44.852494101643], - [6.2505425682344, 44.852650516632], - [6.2581706057376, 44.86248397325], - [6.2677561761734, 44.86950109295], - [6.2882129459689, 44.874030533685], - [6.302850434726, 44.873257969643], - [6.3192302042703, 44.85684625453], - [6.3363165518362, 44.848370410548], - [6.3553625022057, 44.854775353601], - [6.3507779137165, 44.881204072575], - [6.3581697523493, 44.893778946012], - [6.3546140951868, 44.923593300625], - [6.3588423781754, 44.941280796729], - [6.3290046114892, 44.947315364095], - [6.3229180108318, 44.953019839313], - [6.3285012874077, 44.969714464603], - [6.3148100239742, 44.980185922577], - [6.3196573396763, 44.994552811249], - [6.3182021615637, 45.003859362058], - [6.2970615457571, 45.003365126963], - [6.2696990840472, 44.998351365091], - [6.2517609476002, 44.996700081455], - [6.2039233205269, 45.012471073947], - [6.2063284689408, 45.026782796498], - [6.2200802599652, 45.065369735518], - [6.2401205372094, 45.06771808518], - [6.2358324302027, 45.087232804381], - [6.2296723977867, 45.100589085615], - [6.2293919345611, 45.108749945384], - [6.2438305270389, 45.117298075856], - [6.2544936755586, 45.120790168264], - [6.2605698000566, 45.12684420383], - [6.275502630793, 45.115299423706], - [6.2862810761543, 45.110160822134], - [6.3019155994585, 45.108954317068], - [6.3312951655489, 45.118123866818], - [6.3344836229796, 45.122836461323], - [6.3629265157708, 45.104492035764], - [6.3735310876429, 45.084151804143], - [6.365073385182, 45.071290490956], - [6.3939107242634, 45.0618177275], - [6.4002434258614, 45.063261148419], - [6.4385899722107, 45.06258734764], - [6.4433986588263, 45.055077367768], - [6.4535295918669, 45.051837207667], - [6.4728883939578, 45.056011644618], - [6.4862360357216, 45.056075754404], - [6.4893378703322, 45.068353912844], - [6.4812555476638, 45.094138953543], - [6.4995275838537, 45.10159781596], - [6.5104239586159, 45.108998029314], - [6.5297109874994, 45.0985691169], - [6.556730767951, 45.104079390462], - [6.5630788445458, 45.11303936929], - [6.5765291374542, 45.123092743765], - [6.5906851893034, 45.119010630972], - [6.6155462835465, 45.121477875934], - [6.6299923020059, 45.109324963809], - [6.6274839517535, 45.101215174371], - [6.6454471568466, 45.085321118769], - [6.6452449110874, 45.075644489098], - [6.6621102280893, 45.071636240322], - [6.6619665564343, 45.054254651103], - [6.6697329651003, 45.041528589974], - [6.6642057859606, 45.033852692689], - [6.6738842245217, 45.019618440205], - [6.7208749671212, 45.021947970161], - [6.7408121549644, 45.016732773834], - [6.7455184581155, 45.012636232743], - [6.7511816747145, 44.997554388257], - [6.7376368487818, 44.991489847333], - [6.7487248532957, 44.985300837089], - [6.7500991466522, 44.979004278299], - [6.7634620292171, 44.971216274205], - [6.7649436361829, 44.959669769983], - [6.7530762964187, 44.942964787789], - [6.760454851589, 44.933557259798], - [6.7509575667282, 44.924736641884], - [6.7497507150819, 44.907359345497], - [6.7707561827724, 44.903356119918], - [6.778831730714, 44.895247653895], - [6.7997873639988, 44.885790632096], - [6.8040834784844, 44.877494910069], - [6.8286189375326, 44.867936372769], - [6.8365561972179, 44.862113162368], - [6.8598658043828, 44.852903429339], - [6.8837432066014, 44.847958551328], - [6.9137650533034, 44.845420317518], - [6.9277645236266, 44.859966074683], - [6.9336859786803, 44.862026116862], - [6.9536880142387, 44.855488865035], - [6.9726101112827, 44.846235246901], - [6.9838519381402, 44.845869843048], - [7.0067725151035, 44.839316013319], - [7.0093160771169, 44.826729413865], - [7.0217860677102, 44.821493498314], - [7.0182872220085, 44.812302571705], - [6.9995699130659, 44.789443859689], - [7.014173059144, 44.780240783682], - [7.0247448800861, 44.762381967485], - [7.0217840296699, 44.753151161226], - [7.0237266250912, 44.741017074034], - [7.032722682298, 44.727849112916], - [7.043680201538, 44.71814154062], - [7.0657832187637, 44.71360393024], - [7.0663991317632, 44.707135672178], - [7.0741932187631, 44.69248281361], - [7.0771048243018, 44.680914951343], - [7.0597229739436, 44.679959761356], - [7.0370906551502, 44.689271101061], - [7.0237344527351, 44.691300223227], - [7.0063373453242, 44.68821962595], - [6.9870611832936, 44.690137664959], - [6.9763421453374, 44.681204625623], - [6.9626468064561, 44.677766961935], - [6.9483326980915, 44.654818187455] - ], - [ - [5.0178344377819, 43.469321193939], - [5.0379847941255, 43.470644268033], - [5.0518847547722, 43.463560167399], - [5.0549690681399, 43.453888162229], - [5.054121512102, 43.442021912977], - [5.0611076258685, 43.423140307283], - [5.0580213222048, 43.409552133438], - [5.0595684339306, 43.403974555677], - [5.0703896715519, 43.400202593118], - [5.0927056002731, 43.400605101589], - [5.1107078769979, 43.404127256643], - [5.125776538992, 43.400015717235], - [5.137266271971, 43.400185493623], - [5.157534521038, 43.409584196466], - [5.1828633330337, 43.426606568488], - [5.1912661780646, 43.434900512668], - [5.2084471015655, 43.445433671054], - [5.2203482060614, 43.449162229641], - [5.2301377569344, 43.465078044372], - [5.2225521040856, 43.483465085916], - [5.2175169994984, 43.488096323996], - [5.2027922080577, 43.491173117668], - [5.1908429897818, 43.486475795117], - [5.1824609658291, 43.479350075479], - [5.1651054168282, 43.471767081519], - [5.1496876211759, 43.457026659088], - [5.1321152674543, 43.473849327421], - [5.123114322047, 43.48615366834], - [5.1135686679163, 43.504660978563], - [5.1182092489503, 43.518012416527], - [5.1086615060731, 43.525496816445], - [5.0893141543062, 43.525515609476], - [5.0643299415117, 43.527830813843], - [5.046434902166, 43.522138786534], - [5.0322512284114, 43.5397685648], - [5.0309517808795, 43.54682479433], - [5.0219939854938, 43.55615613908], - [5.0132835978236, 43.554448679869], - [5.0122049007424, 43.545526935893], - [5.0154635062157, 43.529718860201], - [5.0024501091134, 43.512784134911], - [4.9985487475088, 43.49810611091], - [5.0029037494134, 43.486740851749], - [5.000857898128, 43.474094351803], - [5.006004863914, 43.469664960408], - [5.0178344377819, 43.469321193939] - ] - ], - [ - [ - [6.4341485392957, 43.013347028571], - [6.4339410610688, 43.020253759896], - [6.4402634234376, 43.024842658411], - [6.4552030224291, 43.02681507814], - [6.4702163404405, 43.045167505797], - [6.5041808620696, 43.05334030784], - [6.5112885804875, 43.046821992697], - [6.5047119129479, 43.043075249916], - [6.4895900424486, 43.042642232202], - [6.4710212810966, 43.01921193325], - [6.4616995826693, 43.013939106124], - [6.4528033958039, 43.016843850293], - [6.4391012526205, 43.004472055456], - [6.4341485392957, 43.013347028571] - ] - ], - [ - [ - [6.3970913857265, 42.992801774792], - [6.3850038068943, 42.997874748913], - [6.3714123570963, 42.997142408976], - [6.3697195012539, 43.001244421426], - [6.3824109734744, 43.011037691381], - [6.4085816077235, 43.018603831541], - [6.4206661963932, 43.013709224929], - [6.4069003940727, 42.997223596606], - [6.3970913857265, 42.992801774792] - ] - ], - [ - [ - [6.2440741459649, 43.020035297662], - [6.2484869352116, 43.016627467203], - [6.2504533863157, 42.999408277823], - [6.2265230585799, 42.992424259693], - [6.2164360797719, 42.991108164979], - [6.2086710614315, 42.98338081093], - [6.1978984464393, 42.982043008785], - [6.1938577077542, 42.99020258064], - [6.1773879229647, 42.996127936721], - [6.1645371983983, 42.997829141178], - [6.1712703057401, 43.00620484955], - [6.1840052925618, 43.008256946209], - [6.2016813018254, 43.000829346611], - [6.2117350144, 43.002561912277], - [6.2204147969509, 43.012437419854], - [6.2339910204288, 43.011656466491], - [6.2440741459649, 43.020035297662] - ] - ], - [ - [ - [7.0671175705284, 43.513649369297], - [7.0361331446075, 43.517461440788], - [7.0322078648162, 43.523439858109], - [7.0500971114395, 43.522515412284], - [7.0708767870982, 43.51736504678], - [7.0671175705284, 43.513649369297] - ] - ], - [ - [ - [4.8881212108854, 44.331685388726], - [4.8953267719183, 44.338062405104], - [4.8796465016088, 44.345346527391], - [4.8753963679389, 44.351439190756], - [4.8906819005659, 44.359781959098], - [4.893168871015, 44.367875394193], - [4.9066213399272, 44.374101025322], - [4.9117660520568, 44.387044638589], - [4.9123797297803, 44.399635600585], - [4.9185138149855, 44.407786865574], - [4.960461816094, 44.420048061058], - [4.9704375593477, 44.431367227183], - [4.9786944339347, 44.423476108149], - [4.9886124577738, 44.423200264487], - [5.0010692090687, 44.412604850416], - [5.0187537016752, 44.415979484324], - [5.0133020500209, 44.405342926953], - [5.0157545106617, 44.392767137778], - [5.033568721145, 44.391088844502], - [5.0450881649883, 44.38222013058], - [5.0708829483659, 44.383226380932], - [5.0715584929227, 44.377495636793], - [5.0520104655825, 44.364657329845], - [5.0270113166527, 44.362835272711], - [5.0217054810597, 44.35674765583], - [5.0232851187488, 44.345948323084], - [5.0090024588591, 44.333764157861], - [5.0133769832902, 44.326136687081], - [4.9931295821934, 44.314275867797], - [4.9872903058308, 44.293201871035], - [4.9785833048477, 44.29746123871], - [4.9592140611525, 44.300383345912], - [4.9451171535381, 44.304930431589], - [4.9221541568202, 44.308786460381], - [4.8895301353902, 44.304153097826], - [4.8898043773976, 44.314637092176], - [4.8816338901906, 44.324867070891], - [4.8881212108854, 44.331685388726] - ] - ] - ] - }, - "properties": { - "code": "93", - "name": "Provence-Alpes-Côte dAzur", - "ISOCODE": "FR-PAC" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [9.2710321280228, 41.364959299521], - [9.265698545799, 41.362164776515], - [9.2558829669799, 41.368794222327], - [9.2602446048541, 41.373651229899], - [9.273659440522, 41.369221791575], - [9.2710321280228, 41.364959299521] - ] - ], - [ - [ - [9.4022711090103, 41.858701678165], - [9.4020526477352, 41.845844224512], - [9.4062743560399, 41.822363784172], - [9.3941343569793, 41.79894215528], - [9.3991901775403, 41.790143164158], - [9.3981451175547, 41.778459013889], - [9.4073217319481, 41.767634723217], - [9.4052716742874, 41.754575654188], - [9.4062185485145, 41.73920137245], - [9.4013418072307, 41.716959615945], - [9.4035331655531, 41.710840198665], - [9.3998192801504, 41.69279867], - [9.3810879581743, 41.688001244821], - [9.3723006750494, 41.678830164331], - [9.3757375815574, 41.670619677977], - [9.3874913966427, 41.657359062003], - [9.3850563977806, 41.652970458201], - [9.3644131875031, 41.636179025769], - [9.3547387700685, 41.640710164794], - [9.3476012746477, 41.636632418311], - [9.3463932296058, 41.63002302864], - [9.3538271659327, 41.626632801378], - [9.3463550313306, 41.617508503613], - [9.3367416523086, 41.621538780451], - [9.3272049926403, 41.616356949796], - [9.3082365328383, 41.628487552777], - [9.3060190567968, 41.617470193836], - [9.2970016566957, 41.610930362027], - [9.2883407858234, 41.609067528624], - [9.2825337896991, 41.596415718545], - [9.286354138341, 41.589453101103], - [9.2956793037693, 41.583322361133], - [9.3083814880745, 41.593972713908], - [9.3130806771213, 41.601132392709], - [9.3215169876122, 41.604837299741], - [9.3350988345063, 41.602027547324], - [9.3470681679656, 41.594390886207], - [9.3685744931696, 41.596897302353], - [9.3533825795291, 41.577938443543], - [9.3481742396925, 41.575388818689], - [9.3501715740997, 41.566187005133], - [9.3408997155844, 41.559241730325], - [9.3239922254982, 41.557236366366], - [9.3023216696934, 41.545198419563], - [9.2875574726946, 41.530228755368], - [9.2730739945179, 41.53019271867], - [9.273680106865, 41.522517947178], - [9.2839183612598, 41.520450085063], - [9.277308421099, 41.506124986587], - [9.2688973149711, 41.501624751876], - [9.2759308530555, 41.49643713783], - [9.2876523998677, 41.494831125938], - [9.28400186333, 41.477572296911], - [9.2772722837641, 41.475358221151], - [9.2777164179139, 41.46495547492], - [9.2658821075424, 41.465995458816], - [9.2429445240833, 41.446705574174], - [9.223954267893, 41.442488841516], - [9.2232723456115, 41.436025985419], - [9.2288969116275, 41.425302049177], - [9.2281191406951, 41.409110517705], - [9.2442363338799, 41.421181163353], - [9.2651023772974, 41.428283396377], - [9.2591670709159, 41.413375395828], - [9.2507254948685, 41.40960553083], - [9.2361643789523, 41.393559251695], - [9.2331233905073, 41.386560178849], - [9.2214883823877, 41.376328969738], - [9.2196789477427, 41.368211945774], - [9.1988058887608, 41.36588583439], - [9.1803693126024, 41.366438293705], - [9.1743707764701, 41.379329284074], - [9.1672444080415, 41.385592973955], - [9.1446146072237, 41.387183678065], - [9.1208631045283, 41.39644315535], - [9.0938398987455, 41.393839319394], - [9.0911719516959, 41.401806079279], - [9.0955320043022, 41.412431710561], - [9.1089222562469, 41.419940163471], - [9.1043469551733, 41.425502848125], - [9.120687595476, 41.437616309687], - [9.1192193922242, 41.440772011484], - [9.0994499566209, 41.442768149338], - [9.0935832833779, 41.449719424027], - [9.0822010138671, 41.441973884937], - [9.0743134372406, 41.442920620722], - [9.0664301578555, 41.451023602972], - [9.0704320220003, 41.466940562623], - [9.070286926691, 41.475671427311], - [9.0508357375037, 41.459641860478], - [9.0382611446596, 41.459645198212], - [9.0180268691937, 41.467748490519], - [9.0128843778786, 41.476121872495], - [9.0021701866201, 41.475774397275], - [8.9928461630234, 41.485396435585], - [8.9808637276524, 41.479330164884], - [8.9594585113313, 41.492130159311], - [8.938402541315, 41.48966848731], - [8.9317877201954, 41.495378064347], - [8.9210126230225, 41.497499034287], - [8.9147467175153, 41.507208151354], - [8.9001835704243, 41.508774219762], - [8.8846150462285, 41.50507236925], - [8.8820378648188, 41.509239075837], - [8.8882614285546, 41.51707992067], - [8.8778100883194, 41.523794452944], - [8.865369828875, 41.520128455719], - [8.8450740207766, 41.517958079633], - [8.8414047053005, 41.523766509681], - [8.8519237231626, 41.533233974908], - [8.8511877593354, 41.540860979943], - [8.8416810361388, 41.546552827363], - [8.8229182141785, 41.546156093531], - [8.814890471805, 41.553906217363], - [8.7885345993036, 41.557735921446], - [8.7854932407521, 41.563658878459], - [8.8019653365352, 41.5725251973], - [8.7827891492503, 41.585681206952], - [8.7771927389114, 41.592763979819], - [8.7839015050151, 41.59639969226], - [8.7909467331176, 41.608501287066], - [8.7930767849103, 41.629554383445], - [8.8024752261462, 41.633221115876], - [8.8217796251471, 41.630090136165], - [8.8265171763194, 41.635951775657], - [8.8540761012096, 41.647017321432], - [8.8695009599086, 41.646091120096], - [8.877264032596, 41.652454617448], - [8.8809129542854, 41.668095186004], - [8.8928931495104, 41.674100351332], - [8.9080176286522, 41.677007881852], - [8.9153277451781, 41.681282755136], - [8.9145075925891, 41.689723682063], - [8.8856557174325, 41.690849961129], - [8.8782882421796, 41.695973169993], - [8.8412808961089, 41.697551641036], - [8.8302939411387, 41.706262922095], - [8.8127122072851, 41.714129905775], - [8.7937675276411, 41.707893097781], - [8.7729726652092, 41.711919063255], - [8.7845453570537, 41.731664815454], - [8.7800237021371, 41.739414158852], - [8.7724546247573, 41.741517274673], - [8.7600821507981, 41.738380383757], - [8.7366474883573, 41.729424936258], - [8.7254848567332, 41.727545668736], - [8.7172417233064, 41.722774526354], - [8.7030325607564, 41.726005824599], - [8.7076082107898, 41.73618560032], - [8.6976380199228, 41.741319354452], - [8.6820097937715, 41.739918393262], - [8.6717700658097, 41.743688167428], - [8.6585643232553, 41.741804670222], - [8.6597494147728, 41.749463503232], - [8.6682797961785, 41.752894642014], - [8.6845169668936, 41.747002332036], - [8.7044093153393, 41.757890543543], - [8.7131431683495, 41.760833582026], - [8.7300880504804, 41.77591212379], - [8.7271678055689, 41.78708867668], - [8.7195718291105, 41.788893754962], - [8.7212499540158, 41.797809382794], - [8.7409410916134, 41.79868785997], - [8.7482572136005, 41.810823729007], - [8.7575460129466, 41.80895026474], - [8.7712959607968, 41.811239419914], - [8.7747951360312, 41.82504031127], - [8.7820652523774, 41.833703364592], - [8.7708086871301, 41.836461210042], - [8.767794604169, 41.845931092466], - [8.7841001717388, 41.848170286407], - [8.7906166495097, 41.855520792589], - [8.7902752705309, 41.866416605405], - [8.781211947867, 41.880668839163], - [8.8031333721604, 41.891381047926], - [8.795661885825, 41.908865779323], - [8.7858171453796, 41.920265738823], - [8.7726394721087, 41.927375596769], - [8.7608963047658, 41.924460972208], - [8.7549076702854, 41.932565729457], - [8.745110539203, 41.933164242485], - [8.7399479222249, 41.928307210691], - [8.7410637125693, 41.91754841615], - [8.7310370715364, 41.915900103573], - [8.7214300448374, 41.909256183947], - [8.7032845356386, 41.907630033647], - [8.6868554085917, 41.90859416785], - [8.6704582677272, 41.905060573018], - [8.6643099502431, 41.907384856241], - [8.6414501138477, 41.909889243142], - [8.6149322619016, 41.902346804089], - [8.610306446193, 41.913050837853], - [8.6218879056671, 41.927827389358], - [8.6207764177835, 41.939541948075], - [8.6089998541718, 41.940155623683], - [8.6056928687397, 41.951055349782], - [8.5976997733316, 41.953238328668], - [8.5958844509261, 41.9660969095], - [8.6148401371518, 41.971330910765], - [8.6390210889529, 41.967471298128], - [8.6460663299246, 41.968130756625], - [8.6688781676627, 41.982429503353], - [8.6684592293729, 41.991610798065], - [8.6575664515333, 41.993436712754], - [8.6564246405607, 42.009345707145], - [8.66801032159, 42.017457160521], - [8.6903254906641, 42.027593059646], - [8.702011655943, 42.026639132045], - [8.7253458869114, 42.034356688034], - [8.7226820538602, 42.042540055616], - [8.741329138221, 42.040912179268], - [8.7469869224827, 42.0502108539], - [8.7391608385257, 42.062698609291], - [8.7198555560589, 42.06351093709], - [8.7203352966306, 42.069442470516], - [8.7147668279995, 42.08153861531], - [8.7047370379813, 42.087940049587], - [8.7102579733595, 42.095822368407], - [8.7002490365492, 42.10604379347], - [8.6999858627077, 42.112515614544], - [8.6891550495107, 42.115105402635], - [8.680727946306, 42.105996814848], - [8.6712597688232, 42.107107181013], - [8.6605028767172, 42.103588496488], - [8.6470086216948, 42.121131891644], - [8.6374753377432, 42.11976700426], - [8.6256340976664, 42.122670550852], - [8.6099541503765, 42.1345450022], - [8.5958860094781, 42.13025896889], - [8.5825175645431, 42.129323208282], - [8.5849834154329, 42.135866535707], - [8.5939572487287, 42.143185234803], - [8.5897456767979, 42.149152267892], - [8.5774733357997, 42.156554543452], - [8.5901738822205, 42.163884812642], - [8.5884884100621, 42.171421188299], - [8.5682188559922, 42.169017173529], - [8.5654392505696, 42.177332135912], - [8.582879148895, 42.178547241363], - [8.578217141654, 42.188551889364], - [8.5813855583817, 42.205939854644], - [8.5696750552871, 42.2080024677], - [8.5753209823783, 42.216374212666], - [8.567135591097, 42.219577195648], - [8.5735416635984, 42.225839882474], - [8.5703414705341, 42.230300843511], - [8.5481905843276, 42.228905913957], - [8.5401025407511, 42.234990759489], - [8.5492440260065, 42.239976932275], - [8.5561122651665, 42.236039038782], - [8.5731170667844, 42.238745320634], - [8.578263306898, 42.244253414861], - [8.5893237006741, 42.24450377404], - [8.616717053661, 42.255458016475], - [8.6267416458828, 42.25175456083], - [8.6418418463671, 42.256428059655], - [8.6655881496278, 42.259320114998], - [8.6715712790019, 42.262059482484], - [8.6891048520685, 42.263527621966], - [8.6901226204434, 42.278207035825], - [8.6759776798364, 42.283615563315], - [8.67395545525, 42.294337194236], - [8.660571343066, 42.302118549571], - [8.6486515166656, 42.302732559447], - [8.639933499141, 42.299416084547], - [8.6255148911749, 42.312261962884], - [8.6103565562315, 42.308394659111], - [8.5974331518027, 42.316054932892], - [8.6046294578781, 42.322652105253], - [8.6215546415518, 42.327510035659], - [8.6279955733531, 42.332296015498], - [8.6264440528796, 42.340241753638], - [8.6182826215658, 42.340701534987], - [8.6002435360509, 42.352999825029], - [8.5915444423808, 42.352772156997], - [8.5815591608145, 42.347468214352], - [8.5738501697388, 42.338412964424], - [8.5648822039848, 42.333214755035], - [8.5533077910528, 42.333031073096], - [8.5588034162198, 42.343784641612], - [8.5517937879479, 42.347375798384], - [8.5558846856209, 42.364749965739], - [8.5432048758181, 42.367016637162], - [8.547948004985, 42.379354824713], - [8.5575710562857, 42.370756414133], - [8.5666906484566, 42.370692862461], - [8.5783059458289, 42.375541718692], - [8.5734085639674, 42.381404942274], - [8.5851262589954, 42.38532518234], - [8.5962264339561, 42.382398762993], - [8.6088441270775, 42.386379953813], - [8.6022869184152, 42.400052818571], - [8.6116794771433, 42.403198147717], - [8.6040429146329, 42.409512946067], - [8.6084169092937, 42.416822082277], - [8.6234377365159, 42.421017847031], - [8.6393957751413, 42.418519567154], - [8.6481082467376, 42.413119060137], - [8.6552300368167, 42.415734337364], - [8.6622200218125, 42.426291905255], - [8.6604105317327, 42.43528280362], - [8.6482384069515, 42.442410807187], - [8.6673206951673, 42.444883992318], - [8.6681439215198, 42.45801303094], - [8.6798297088815, 42.468113820166], - [8.6747918186735, 42.476242956982], - [8.6492357429259, 42.474309683953], - [8.6499303561134, 42.478239958239], - [8.6645502904805, 42.49299417376], - [8.6665085981229, 42.515223865295], - [8.6748420529906, 42.518622461042], - [8.6837613976392, 42.516458985462], - [8.6968431485562, 42.525583517795], - [8.7104476758167, 42.523703513378], - [8.7186158657164, 42.528245234685], - [8.7102577314429, 42.535723624921], - [8.7189524706419, 42.540795175147], - [8.7166314657641, 42.549267771155], - [8.7228204001293, 42.556778273386], - [8.7150751347624, 42.564027675983], - [8.7109904635305, 42.576605764442], - [8.7243185035707, 42.584093673826], - [8.7238415443762, 42.574014082285], - [8.7270436936434, 42.561604463168], - [8.7381119728326, 42.567802968518], - [8.7482834774653, 42.568188079066], - [8.7604416501391, 42.558569577855], - [8.7686425102482, 42.555811440464], - [8.7878053378926, 42.558171123435], - [8.8040993857369, 42.569855594773], - [8.8001589769082, 42.582398778056], - [8.8110798196196, 42.589684742309], - [8.8089320042038, 42.599059599401], - [8.8235352570811, 42.606187366031], - [8.8343194896775, 42.601743500142], - [8.8509405731086, 42.610583827688], - [8.8649682002014, 42.607999881244], - [8.8750416263931, 42.613164920347], - [8.8740939946005, 42.61817996916], - [8.8865269490476, 42.628966058933], - [8.9024157028959, 42.627137432183], - [8.9111573343141, 42.628894923509], - [8.9181350468671, 42.63690550884], - [8.9342605989761, 42.638771827731], - [8.9417828616377, 42.634096039449], - [8.9593730520526, 42.635081802897], - [8.9751743716955, 42.640043666233], - [9.0006328532992, 42.641910192535], - [9.0103777713521, 42.64035209136], - [9.0206940431911, 42.644272763711], - [9.0275141840511, 42.652054428408], - [9.0460037274368, 42.655043174979], - [9.0593208042615, 42.660064628209], - [9.0618252740801, 42.665092965545], - [9.0538043881836, 42.679958481466], - [9.0590940519087, 42.694609453744], - [9.0717031140713, 42.693409341766], - [9.0797009215888, 42.700848589665], - [9.0857643447586, 42.714609110752], - [9.0998800974121, 42.715246309427], - [9.1059770511843, 42.724097520742], - [9.1180072147931, 42.726542533128], - [9.1245519786652, 42.731631049124], - [9.1360558292684, 42.730227284287], - [9.1668856039546, 42.736563616418], - [9.1881552949011, 42.727336456562], - [9.2038452583029, 42.726315061736], - [9.217626725491, 42.734222269857], - [9.2245533152652, 42.731999951427], - [9.2340050664169, 42.719909789956], - [9.2544476997124, 42.718515074833], - [9.2593250469014, 42.700693050085], - [9.2679444804296, 42.699476951561], - [9.2788565397074, 42.689592099364], - [9.2844265705845, 42.676336087658], - [9.2933224871581, 42.674311357318], - [9.30315826849, 42.684062221748], - [9.3141769700085, 42.688991839255], - [9.3225981035062, 42.698103422439], - [9.321292738335, 42.713400038631], - [9.3395766319473, 42.728992493133], - [9.3444782391532, 42.737810423971], - [9.339181189137, 42.757928245104], - [9.339659755223, 42.776011504848], - [9.3425627879236, 42.79480205062], - [9.337774931012, 42.804079605712], - [9.3251300488766, 42.813332647957], - [9.3205438024435, 42.823408404009], - [9.3110153694299, 42.834679311095], - [9.3321782165813, 42.85847260124], - [9.3401543659189, 42.86548579796], - [9.3298530724956, 42.872395584774], - [9.3262689644171, 42.890315517283], - [9.322223463327, 42.899632639571], - [9.353819146522, 42.916234653141], - [9.3560395125976, 42.927003469485], - [9.3488941969672, 42.92930970895], - [9.358603665308, 42.94633937258], - [9.348145476117, 42.951797488202], - [9.3457582466882, 42.957906943631], - [9.3505448749339, 42.968270031649], - [9.3421423687094, 42.978546347423], - [9.3443683003848, 42.985532557301], - [9.3408728322382, 42.994464747166], - [9.3590415875145, 43.006725446764], - [9.3728616504645, 43.004763668513], - [9.3799389872775, 43.008193389796], - [9.4044764187179, 43.005823769617], - [9.4136701217893, 43.006531836354], - [9.4217576417904, 43.011724041684], - [9.4308368621636, 43.00272384855], - [9.4385130519137, 43.000490605004], - [9.4512650406387, 42.990315238432], - [9.4635582980189, 42.986401078046], - [9.4540973301679, 42.97307892537], - [9.4518764864235, 42.964359720868], - [9.4576350561474, 42.949057159617], - [9.4693212926991, 42.936145296863], - [9.4676737905393, 42.926807351234], - [9.4707921080556, 42.918530856678], - [9.4738686210525, 42.891155154693], - [9.4775278660748, 42.881442813563], - [9.4730668331504, 42.874128797384], - [9.4823148818977, 42.864255300645], - [9.484277260776, 42.850189178286], - [9.4807429643273, 42.840776037517], - [9.485811781953, 42.832427261458], - [9.4923850966255, 42.805100268638], - [9.4910751495896, 42.794970088426], - [9.472078926813, 42.77053370509], - [9.4671143214594, 42.760859543836], - [9.4685604695043, 42.753048544421], - [9.4613913735206, 42.740659678567], - [9.4624714977006, 42.735628024208], - [9.4561949971884, 42.718039470181], - [9.4523972721956, 42.693495855424], - [9.4463872288639, 42.686125087855], - [9.446189061428, 42.673577272426], - [9.4491942129664, 42.662239762642], - [9.4621969995941, 42.640114758488], - [9.4748795080564, 42.624836118132], - [9.5162152677147, 42.583012642887], - [9.5256781330523, 42.569008285145], - [9.5331957398235, 42.545946562512], - [9.5344917834473, 42.523982588056], - [9.5300256352103, 42.5032908319], - [9.5312290693099, 42.484415645223], - [9.5404627433876, 42.461067005301], - [9.5408346733534, 42.440809257975], - [9.5433951533138, 42.428490625529], - [9.5386315892536, 42.414019694859], - [9.532672682662, 42.379967969125], - [9.5333702262866, 42.366280319789], - [9.5372430000044, 42.345209511976], - [9.5425016250046, 42.328804455976], - [9.5504574617621, 42.313214942216], - [9.5588293070416, 42.285264635275], - [9.5592262719626, 42.271734300663], - [9.5532133692255, 42.241433836434], - [9.5528601939832, 42.221257653469], - [9.557438978743, 42.203166452024], - [9.5544087218137, 42.157011398157], - [9.5566017971818, 42.142142733245], - [9.5499796055405, 42.104165986623], - [9.5313440713912, 42.087489423987], - [9.5029309613993, 42.055616031082], - [9.4647863427601, 42.010954139334], - [9.4415478574917, 41.98974926191], - [9.424255411615, 41.971535954188], - [9.4125689541656, 41.952475652276], - [9.4120532345487, 41.939726645644], - [9.4149982681884, 41.925108109695], - [9.4112475276506, 41.91100050268], - [9.4020635619458, 41.897155488353], - [9.3970189665487, 41.874613277788], - [9.4022711090103, 41.858701678165] - ] - ] - ] - }, - "properties": { "code": "94", "name": "Corse", "ISOCODE": "FR-COR" } - } - ] -} diff --git a/backend/server/static/data/ie.json b/backend/server/static/data/ie.json deleted file mode 100644 index f65d2ae..0000000 --- a/backend/server/static/data/ie.json +++ /dev/null @@ -1,5130 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-6.291881, 54.112196], - [-6.279859, 54.111473], - [-6.258691, 54.099153], - [-6.25079, 54.09715], - [-6.234336, 54.101363], - [-6.203253, 54.098895], - [-6.19072, 54.09395], - [-6.190054, 54.085297], - [-6.18283, 54.07392], - [-6.167452, 54.067574], - [-6.14984, 54.06571], - [-6.138273, 54.061753], - [-6.12263, 54.0657], - [-6.111334, 54.062057], - [-6.097826, 54.063565], - [-6.078461, 54.051622], - [-6.08643, 54.04741], - [-6.097541, 54.048556], - [-6.103985, 54.040127], - [-6.086604, 54.035231], - [-6.081489, 54.029457], - [-6.055656, 54.026437], - [-6.013711, 54.041905], - [-6.0074, 54.05046], - [-5.987931, 54.058845], - [-5.963692, 54.062069], - [-5.957903, 54.072345], - [-5.944522, 54.080479], - [-5.897, 54.104906], - [-5.892444, 54.117901], - [-5.885705, 54.121496], - [-5.889813, 54.130367], - [-5.878604, 54.14806], - [-5.87173, 54.165393], - [-5.872057, 54.176404], - [-5.876434, 54.189112], - [-5.890814, 54.201068], - [-5.888458, 54.211344], - [-5.86658, 54.224711], - [-5.832388, 54.23935], - [-5.828911, 54.24815], - [-5.840516, 54.257039], - [-5.83462, 54.266672], - [-5.820051, 54.272188], - [-5.815366, 54.261279], - [-5.81797, 54.257192], - [-5.831935, 54.253972], - [-5.814704, 54.241948], - [-5.786099, 54.245944], - [-5.762509, 54.246488], - [-5.745811, 54.251994], - [-5.724881, 54.25311], - [-5.713713, 54.249647], - [-5.694572, 54.251357], - [-5.67887, 54.248761], - [-5.6665, 54.235139], - [-5.662749, 54.226058], - [-5.648094, 54.231816], - [-5.636452, 54.244344], - [-5.640598, 54.254204], - [-5.637621, 54.261775], - [-5.608847, 54.248504], - [-5.601926, 54.256723], - [-5.574985, 54.273831], - [-5.56269, 54.283829], - [-5.549244, 54.307175], - [-5.537645, 54.312733], - [-5.54393, 54.331116], - [-5.540838, 54.337842], - [-5.548747, 54.346419], - [-5.551781, 54.35958], - [-5.548869, 54.365467], - [-5.557035, 54.376413], - [-5.565867, 54.371495], - [-5.570631, 54.381445], - [-5.58826, 54.384236], - [-5.60455, 54.37688], - [-5.614738, 54.379383], - [-5.630947, 54.372166], - [-5.654778, 54.367417], - [-5.680487, 54.368109], - [-5.683789, 54.373626], - [-5.670762, 54.376992], - [-5.665207, 54.38214], - [-5.650321, 54.388285], - [-5.641203, 54.400501], - [-5.643893, 54.414826], - [-5.642206, 54.430797], - [-5.629016, 54.4346], - [-5.634408, 54.439863], - [-5.635624, 54.451876], - [-5.645049, 54.454156], - [-5.639281, 54.464354], - [-5.653581, 54.483762], - [-5.648468, 54.489518], - [-5.658198, 54.497753], - [-5.668852, 54.492116], - [-5.678313, 54.499622], - [-5.675104, 54.510439], - [-5.663199, 54.512656], - [-5.665646, 54.518475], - [-5.677779, 54.52032], - [-5.686956, 54.530692], - [-5.717557, 54.537712], - [-5.708515, 54.54421], - [-5.697658, 54.546401], - [-5.699949, 54.564106], - [-5.685742, 54.582272], - [-5.679322, 54.583325], - [-5.655967, 54.568615], - [-5.639044, 54.561658], - [-5.613834, 54.558428], - [-5.605087, 54.549136], - [-5.59542, 54.548546], - [-5.582419, 54.532658], - [-5.562402, 54.533958], - [-5.557336, 54.529146], - [-5.553327, 54.510783], - [-5.546284, 54.503758], - [-5.546686, 54.496063], - [-5.537783, 54.494457], - [-5.541763, 54.484124], - [-5.538135, 54.468187], - [-5.54057, 54.461553], - [-5.532021, 54.453526], - [-5.54015, 54.437047], - [-5.548831, 54.435014], - [-5.572611, 54.418657], - [-5.579308, 54.408087], - [-5.579132, 54.399676], - [-5.570017, 54.390727], - [-5.560381, 54.389426], - [-5.548505, 54.380307], - [-5.53921, 54.369282], - [-5.540735, 54.365033], - [-5.528129, 54.359376], - [-5.530705, 54.354309], - [-5.526465, 54.343013], - [-5.512701, 54.343813], - [-5.504289, 54.331689], - [-5.498228, 54.332967], - [-5.498623, 54.343361], - [-5.490135, 54.357263], - [-5.480076, 54.361524], - [-5.492843, 54.367081], - [-5.489404, 54.375554], - [-5.479416, 54.384599], - [-5.463102, 54.383396], - [-5.457805, 54.393706], - [-5.464346, 54.396822], - [-5.463954, 54.414546], - [-5.479739, 54.426671], - [-5.47381, 54.434826], - [-5.452169, 54.442932], - [-5.450622, 54.450138], - [-5.440961, 54.454048], - [-5.436512, 54.464259], - [-5.442209, 54.474278], - [-5.433335, 54.484819], - [-5.456385, 54.493533], - [-5.463756, 54.498547], - [-5.470242, 54.526331], - [-5.481172, 54.533552], - [-5.485957, 54.547033], - [-5.477282, 54.563864], - [-5.489189, 54.576329], - [-5.503023, 54.581013], - [-5.504449, 54.588675], - [-5.520039, 54.595797], - [-5.533769, 54.621866], - [-5.529196, 54.641944], - [-5.537791, 54.643573], - [-5.541912, 54.654381], - [-5.552814, 54.6556], - [-5.570821, 54.665762], - [-5.57667, 54.675034], - [-5.589292, 54.674553], - [-5.601712, 54.677823], - [-5.609823, 54.674955], - [-5.625006, 54.68022], - [-5.637392, 54.67818], - [-5.63653, 54.668418], - [-5.652023, 54.665744], - [-5.655611, 54.670884], - [-5.672465, 54.662925], - [-5.679322, 54.668869], - [-5.719304, 54.66728], - [-5.734062, 54.672277], - [-5.740667, 54.677551], - [-5.773877, 54.666177], - [-5.797984, 54.661414], - [-5.822465, 54.651664], - [-5.830078, 54.645205], - [-5.84653, 54.640478], - [-5.854978, 54.634056], - [-5.879941, 54.640146], - [-5.898747, 54.629953], - [-5.89898, 54.638771], - [-5.914601, 54.646203], - [-5.902749, 54.65908], - [-5.894224, 54.675166], - [-5.871291, 54.686196], - [-5.842224, 54.704075], - [-5.830845, 54.708653], - [-5.806495, 54.712827], - [-5.789505, 54.721085], - [-5.765677, 54.72292], - [-5.746505, 54.72668], - [-5.733543, 54.73799], - [-5.726451, 54.737894], - [-5.709662, 54.74657], - [-5.70906, 54.750935], - [-5.692353, 54.765634], - [-5.694217, 54.778843], - [-5.689626, 54.801309], - [-5.691941, 54.810303], - [-5.715396, 54.839349], - [-5.746074, 54.855412], - [-5.758076, 54.858555], - [-5.770277, 54.852121], - [-5.790658, 54.84819], - [-5.769548, 54.831794], - [-5.75182, 54.825663], - [-5.751703, 54.82067], - [-5.734349, 54.813376], - [-5.731468, 54.804803], - [-5.723639, 54.799268], - [-5.719323, 54.787835], - [-5.724097, 54.775044], - [-5.736681, 54.795388], - [-5.746946, 54.803828], - [-5.74062, 54.810338], - [-5.748415, 54.815255], - [-5.762727, 54.818352], - [-5.772706, 54.815783], - [-5.803461, 54.82409], - [-5.811656, 54.833826], - [-5.81182, 54.844744], - [-5.797296, 54.845239], - [-5.798423, 54.854253], - [-5.804627, 54.857072], - [-5.811469, 54.867916], - [-5.822804, 54.876003], - [-5.832987, 54.877897], - [-5.839067, 54.883629], - [-5.841353, 54.897155], - [-5.857243, 54.89857], - [-5.878103, 54.90771], - [-5.886294, 54.918888], - [-5.900489, 54.943764], - [-5.918936, 54.961912], - [-5.934533, 54.969578], - [-5.957416, 54.970228], - [-5.969378, 54.981054], - [-5.982838, 54.97914], - [-5.991249, 54.985797], - [-5.987329, 55.000176], - [-5.977234, 55.007369], - [-5.979035, 55.011601], - [-5.971776, 55.023171], - [-5.972285, 55.030597], - [-5.962632, 55.04501], - [-5.96832, 55.05285], - [-5.981121, 55.058115], - [-6.004354, 55.058823], - [-6.023644, 55.057226], - [-6.042579, 55.053001], - [-6.057538, 55.06403], - [-6.052168, 55.074179], - [-6.055526, 55.084416], - [-6.048591, 55.08859], - [-6.035864, 55.102888], - [-6.033529, 55.113619], - [-6.041524, 55.131438], - [-6.02593, 55.13919], - [-6.025655, 55.1584], - [-6.031437, 55.168305], - [-6.044674, 55.171506], - [-6.052747, 55.18251], - [-6.064582, 55.191116], - [-6.06532, 55.19677], - [-6.107527, 55.21018], - [-6.11635, 55.20965], - [-6.140181, 55.227294], - [-6.156062, 55.227257], - [-6.177014, 55.214017], - [-6.236895, 55.204271], - [-6.24616, 55.21149], - [-6.259861, 55.212977], - [-6.271836, 55.220888], - [-6.287044, 55.224607], - [-6.291773, 55.229349], - [-6.31303, 55.2299], - [-6.332603, 55.239573], - [-6.34297, 55.238519], - [-6.360414, 55.241218], - [-6.368481, 55.245865], - [-6.395866, 55.233335], - [-6.407543, 55.232301], - [-6.421243, 55.238446], - [-6.454867, 55.239255], - [-6.473737, 55.251995], - [-6.482339, 55.252142], - [-6.505833, 55.244508], - [-6.517548, 55.236074], - [-6.530876, 55.233649], - [-6.527915, 55.225504], - [-6.543743, 55.2172], - [-6.571593, 55.215185], - [-6.58761, 55.20852], - [-6.6122, 55.206002], - [-6.62931, 55.208388], - [-6.660767, 55.198616], - [-6.672278, 55.200256], - [-6.707386, 55.193806], - [-6.725634, 55.17904], - [-6.727165, 55.172245], - [-6.758587, 55.168481], - [-6.773661, 55.169544], - [-6.846603, 55.16698], - [-6.875908, 55.169071], - [-6.911736, 55.174693], - [-6.945082, 55.188416], - [-6.957044, 55.195179], - [-6.963876, 55.19443], - [-6.960117, 55.178123], - [-6.965664, 55.153837], - [-6.974936, 55.13735], - [-6.992911, 55.114295], - [-6.99433, 55.10531], - [-7.010765, 55.106462], - [-7.019953, 55.10072], - [-7.022765, 55.087236], - [-7.013586, 55.07876], - [-7.025385, 55.067645], - [-7.048638, 55.055652], - [-7.059164, 55.047752], - [-7.110655, 55.042476], - [-7.131569, 55.041963], - [-7.148159, 55.046738], - [-7.1493, 55.057112], - [-7.160467, 55.059704], - [-7.183771, 55.061007], - [-7.210185, 55.057381], - [-7.221965, 55.060589], - [-7.256516, 55.065717], - [-7.246122, 55.080622], - [-7.212903, 55.10409], - [-7.202085, 55.120353], - [-7.188011, 55.126429], - [-7.182973, 55.134017], - [-7.159303, 55.148873], - [-7.148204, 55.153127], - [-7.119991, 55.158329], - [-7.09632, 55.16843], - [-7.070738, 55.175877], - [-7.049526, 55.186549], - [-7.022692, 55.189463], - [-7.00679, 55.19594], - [-6.96458, 55.20703], - [-6.93569, 55.21974], - [-6.92739, 55.226585], - [-6.922777, 55.236834], - [-6.93422, 55.23969], - [-6.93797, 55.24515], - [-6.9577, 55.25379], - [-6.972365, 55.256721], - [-6.995835, 55.25439], - [-7.01177, 55.25763], - [-7.01182, 55.2657], - [-7.027673, 55.266664], - [-7.048264, 55.275417], - [-7.063435, 55.2715], - [-7.07646, 55.27404], - [-7.09297, 55.28531], - [-7.134933, 55.291836], - [-7.153247, 55.295889], - [-7.16202, 55.31095], - [-7.17683, 55.32117], - [-7.16922, 55.32541], - [-7.17075, 55.33594], - [-7.19518, 55.34719], - [-7.22247, 55.35015], - [-7.2398, 55.35462], - [-7.24164, 55.35875], - [-7.27015, 55.35967], - [-7.27659, 55.36668], - [-7.333332, 55.368409], - [-7.33606, 55.37493], - [-7.34771, 55.37598], - [-7.3668, 55.38213], - [-7.380718, 55.382538], - [-7.390885, 55.378217], - [-7.38503, 55.36534], - [-7.37041, 55.35989], - [-7.35823, 55.36101], - [-7.3475, 55.357439], - [-7.3518, 55.34799], - [-7.352752, 55.335225], - [-7.345569, 55.328258], - [-7.332339, 55.324158], - [-7.329597, 55.31112], - [-7.363094, 55.318674], - [-7.373794, 55.311207], - [-7.379559, 55.296268], - [-7.390709, 55.290711], - [-7.408057, 55.291583], - [-7.434914, 55.287232], - [-7.44987, 55.28831], - [-7.46818, 55.29649], - [-7.47083, 55.29191], - [-7.466004, 55.28283], - [-7.47776, 55.28085], - [-7.48932, 55.28356], - [-7.498601, 55.289738], - [-7.522098, 55.286331], - [-7.525757, 55.28025], - [-7.51975, 55.27394], - [-7.50996, 55.27177], - [-7.50979, 55.26421], - [-7.516447, 55.255422], - [-7.534143, 55.246925], - [-7.517734, 55.238792], - [-7.5353, 55.22918], - [-7.545154, 55.217496], - [-7.542358, 55.204863], - [-7.554541, 55.19698], - [-7.54195, 55.1943], - [-7.518222, 55.184027], - [-7.505893, 55.169473], - [-7.489214, 55.159963], - [-7.475921, 55.145367], - [-7.47461, 55.14046], - [-7.461408, 55.137027], - [-7.463521, 55.127134], - [-7.457708, 55.122433], - [-7.462534, 55.115273], - [-7.472802, 55.111029], - [-7.484327, 55.09167], - [-7.458316, 55.079284], - [-7.454996, 55.062955], - [-7.462354, 55.061597], - [-7.470968, 55.07347], - [-7.479351, 55.073897], - [-7.490226, 55.084697], - [-7.519875, 55.081964], - [-7.533148, 55.072179], - [-7.523006, 55.057829], - [-7.507962, 55.056257], - [-7.504269, 55.050488], - [-7.492374, 55.048593], - [-7.469938, 55.04988], - [-7.47627, 55.042944], - [-7.487034, 55.044405], - [-7.494101, 55.04059], - [-7.511925, 55.040546], - [-7.518428, 55.03102], - [-7.51562, 55.024985], - [-7.527471, 55.019711], - [-7.538852, 55.023943], - [-7.557199, 55.010777], - [-7.567192, 55.00811], - [-7.582689, 54.997822], - [-7.596742, 54.993618], - [-7.61052, 54.976346], - [-7.624368, 54.966148], - [-7.635797, 54.972323], - [-7.640951, 54.965548], - [-7.665194, 54.958128], - [-7.651411, 54.982153], - [-7.644386, 54.985385], - [-7.633914, 54.996974], - [-7.619648, 55.00455], - [-7.59929, 55.01038], - [-7.583485, 55.018813], - [-7.582491, 55.023192], - [-7.562094, 55.032396], - [-7.55966, 55.04478], - [-7.568431, 55.05361], - [-7.578064, 55.054665], - [-7.593456, 55.047499], - [-7.60618, 55.045203], - [-7.615387, 55.047287], - [-7.630267, 55.042655], - [-7.63248, 55.04807], - [-7.627376, 55.056146], - [-7.61167, 55.05654], - [-7.59515, 55.06288], - [-7.59805, 55.06958], - [-7.58399, 55.08222], - [-7.55881, 55.08692], - [-7.547983, 55.092768], - [-7.532539, 55.09425], - [-7.524231, 55.103421], - [-7.531484, 55.114785], - [-7.51797, 55.12267], - [-7.522733, 55.136203], - [-7.531564, 55.14318], - [-7.540939, 55.144437], - [-7.55098, 55.15534], - [-7.55985, 55.1575], - [-7.577359, 55.17066], - [-7.57114, 55.17992], - [-7.592594, 55.188506], - [-7.59916, 55.185533], - [-7.615334, 55.190092], - [-7.6253, 55.204432], - [-7.607327, 55.216955], - [-7.603314, 55.230649], - [-7.615658, 55.238351], - [-7.613217, 55.244843], - [-7.616729, 55.254368], - [-7.62518, 55.261947], - [-7.630856, 55.276297], - [-7.644909, 55.280357], - [-7.660283, 55.278135], - [-7.673108, 55.265493], - [-7.692226, 55.259829], - [-7.693401, 55.251403], - [-7.71385, 55.246215], - [-7.752234, 55.250001], - [-7.757608, 55.234198], - [-7.768117, 55.228104], - [-7.795174, 55.219924], - [-7.799023, 55.213441], - [-7.794939, 55.206156], - [-7.77951, 55.203909], - [-7.77194, 55.19209], - [-7.762398, 55.190341], - [-7.747312, 55.198779], - [-7.735123, 55.195638], - [-7.745773, 55.187167], - [-7.71741, 55.17539], - [-7.704352, 55.180877], - [-7.716038, 55.187997], - [-7.721927, 55.199507], - [-7.719237, 55.206835], - [-7.72348, 55.220297], - [-7.708867, 55.227974], - [-7.703561, 55.221318], - [-7.705389, 55.213704], - [-7.698862, 55.210435], - [-7.69845, 55.201045], - [-7.712547, 55.202089], - [-7.71242, 55.191421], - [-7.693424, 55.186642], - [-7.701582, 55.180082], - [-7.680606, 55.179504], - [-7.68002, 55.164916], - [-7.664645, 55.158562], - [-7.669053, 55.142744], - [-7.688428, 55.118121], - [-7.691835, 55.110917], - [-7.70691, 55.10561], - [-7.70729, 55.11458], - [-7.69722, 55.12882], - [-7.69467, 55.138205], - [-7.696564, 55.151947], - [-7.70659, 55.15709], - [-7.70924, 55.16505], - [-7.764785, 55.18855], - [-7.77065, 55.18298], - [-7.796128, 55.183388], - [-7.803776, 55.185664], - [-7.809046, 55.194582], - [-7.807824, 55.214749], - [-7.791045, 55.225741], - [-7.78694, 55.23551], - [-7.788587, 55.245472], - [-7.799831, 55.250317], - [-7.808699, 55.246382], - [-7.806881, 55.238823], - [-7.816061, 55.225655], - [-7.83001, 55.22698], - [-7.8404, 55.23195], - [-7.847909, 55.226989], - [-7.866654, 55.22733], - [-7.865728, 55.216444], - [-7.871396, 55.213582], - [-7.873912, 55.20279], - [-7.864656, 55.1949], - [-7.832541, 55.192567], - [-7.831831, 55.183661], - [-7.825748, 55.181135], - [-7.829632, 55.165915], - [-7.848236, 55.156477], - [-7.840854, 55.149513], - [-7.857879, 55.142457], - [-7.903662, 55.133664], - [-7.89116, 55.14701], - [-7.86355, 55.15072], - [-7.86316, 55.15673], - [-7.85309, 55.16471], - [-7.861003, 55.166841], - [-7.883033, 55.165538], - [-7.881982, 55.169761], - [-7.898937, 55.173791], - [-7.902269, 55.177599], - [-7.895711, 55.187103], - [-7.906126, 55.191339], - [-7.928429, 55.182252], - [-7.945945, 55.180802], - [-7.959424, 55.190825], - [-7.944793, 55.196522], - [-7.939593, 55.204177], - [-7.942454, 55.212468], - [-7.949987, 55.214729], - [-7.968287, 55.213378], - [-7.974516, 55.224298], - [-7.992287, 55.223228], - [-8.00035, 55.21543], - [-8.016618, 55.21432], - [-8.024411, 55.198156], - [-8.02515, 55.190614], - [-8.015354, 55.185568], - [-8.018798, 55.178449], - [-8.037393, 55.170792], - [-8.042303, 55.174747], - [-8.055665, 55.171966], - [-8.068655, 55.162335], - [-8.11495, 55.159565], - [-8.1219, 55.158042], - [-8.122522, 55.137998], - [-8.137514, 55.13797], - [-8.153361, 55.124275], - [-8.16278, 55.12804], - [-8.148255, 55.152954], - [-8.135292, 55.15756], - [-8.14866, 55.16149], - [-8.152279, 55.151707], - [-8.162017, 55.145525], - [-8.177336, 55.147566], - [-8.200723, 55.14738], - [-8.274227, 55.154645], - [-8.280707, 55.15825], - [-8.295952, 55.149518], - [-8.293887, 55.130906], - [-8.29625, 55.12517], - [-8.317155, 55.112532], - [-8.313838, 55.107431], - [-8.315165, 55.092959], - [-8.32659, 55.088849], - [-8.317093, 55.076723], - [-8.314253, 55.062183], - [-8.325704, 55.034529], - [-8.336323, 55.036215], - [-8.336741, 55.046017], - [-8.327306, 55.049467], - [-8.320917, 55.06086], - [-8.330782, 55.067144], - [-8.349939, 55.064565], - [-8.352847, 55.059639], - [-8.342691, 55.053737], - [-8.348174, 55.040182], - [-8.383223, 55.033992], - [-8.391946, 55.043233], - [-8.407497, 55.034193], - [-8.39343, 55.02389], - [-8.407584, 55.01871], - [-8.40392, 55.00755], - [-8.41108, 55.00592], - [-8.44314, 55.00721], - [-8.454655, 54.999442], - [-8.451378, 54.989243], - [-8.44388, 54.98076], - [-8.42536, 54.97282], - [-8.413853, 54.959014], - [-8.408084, 54.959537], - [-8.37715, 54.95196], - [-8.366083, 54.950785], - [-8.3733, 54.94234], - [-8.398589, 54.941092], - [-8.410238, 54.936573], - [-8.43263, 54.935332], - [-8.43004, 54.94159], - [-8.454046, 54.945385], - [-8.457208, 54.936117], - [-8.44441, 54.93142], - [-8.447114, 54.925111], - [-8.459256, 54.922991], - [-8.456076, 54.911403], - [-8.443478, 54.904479], - [-8.416594, 54.899406], - [-8.410625, 54.894914], - [-8.389051, 54.888377], - [-8.38363, 54.882683], - [-8.37299, 54.88983], - [-8.37752, 54.89972], - [-8.3642, 54.89901], - [-8.342126, 54.906586], - [-8.337004, 54.889113], - [-8.32166, 54.882129], - [-8.32327, 54.87458], - [-8.35555, 54.88359], - [-8.36631, 54.8775], - [-8.38138, 54.8795], - [-8.384581, 54.869078], - [-8.38418, 54.85659], - [-8.36134, 54.85481], - [-8.351158, 54.852141], - [-8.346746, 54.844462], - [-8.327621, 54.842487], - [-8.31653, 54.844775], - [-8.272369, 54.864543], - [-8.271023, 54.860087], - [-8.29124, 54.85365], - [-8.31695, 54.842134], - [-8.334359, 54.838952], - [-8.335199, 54.83389], - [-8.351364, 54.83656], - [-8.37847, 54.83812], - [-8.406182, 54.847334], - [-8.42717, 54.847527], - [-8.447112, 54.839111], - [-8.459446, 54.840191], - [-8.47597, 54.84716], - [-8.490121, 54.848246], - [-8.502227, 54.844455], - [-8.522785, 54.831122], - [-8.53913, 54.83474], - [-8.5538, 54.833], - [-8.559176, 54.824714], - [-8.52642, 54.82253], - [-8.52698, 54.8128], - [-8.511405, 54.812761], - [-8.498598, 54.807352], - [-8.49894, 54.799288], - [-8.475928, 54.802903], - [-8.46509, 54.79756], - [-8.45114, 54.79621], - [-8.44777, 54.7839], - [-8.440531, 54.776555], - [-8.425848, 54.777448], - [-8.4131, 54.77516], - [-8.431422, 54.762895], - [-8.445213, 54.770768], - [-8.45332, 54.77155], - [-8.460572, 54.781347], - [-8.48038, 54.79684], - [-8.491141, 54.789465], - [-8.52196, 54.78652], - [-8.52901, 54.79014], - [-8.54691, 54.78876], - [-8.547086, 54.782334], - [-8.53578, 54.78005], - [-8.527621, 54.774536], - [-8.51061, 54.77226], - [-8.50482, 54.7748], - [-8.46795, 54.76581], - [-8.47801, 54.75855], - [-8.505945, 54.76097], - [-8.518171, 54.768154], - [-8.524464, 54.764348], - [-8.536463, 54.765043], - [-8.548792, 54.770556], - [-8.570385, 54.775896], - [-8.598643, 54.778647], - [-8.618527, 54.776341], - [-8.665971, 54.766763], - [-8.676495, 54.760437], - [-8.70259, 54.75304], - [-8.703864, 54.74498], - [-8.729028, 54.742034], - [-8.751177, 54.727584], - [-8.74906, 54.712422], - [-8.778886, 54.702347], - [-8.794689, 54.706401], - [-8.805738, 54.698418], - [-8.788018, 54.683844], - [-8.78435, 54.674444], - [-8.794588, 54.668544], - [-8.77435, 54.658248], - [-8.754444, 54.653205], - [-8.725728, 54.649463], - [-8.722703, 54.64569], - [-8.690559, 54.641952], - [-8.686184, 54.628205], - [-8.680777, 54.623002], - [-8.662718, 54.61967], - [-8.624403, 54.623366], - [-8.614369, 54.618511], - [-8.583539, 54.616247], - [-8.589298, 54.606635], - [-8.563566, 54.614571], - [-8.557122, 54.61964], - [-8.531942, 54.620111], - [-8.520883, 54.624963], - [-8.489181, 54.634985], - [-8.475919, 54.625767], - [-8.48509, 54.622164], - [-8.479355, 54.614589], - [-8.483842, 54.604221], - [-8.462986, 54.606038], - [-8.437638, 54.6296], - [-8.419765, 54.61844], - [-8.41464, 54.626438], - [-8.397794, 54.634805], - [-8.385392, 54.636227], - [-8.387581, 54.628402], - [-8.378676, 54.623344], - [-8.376937, 54.613831], - [-8.396622, 54.602119], - [-8.39933, 54.59811], - [-8.417085, 54.593411], - [-8.447899, 54.589372], - [-8.445227, 54.581401], - [-8.457692, 54.570511], - [-8.451761, 54.568248], - [-8.436649, 54.575138], - [-8.438848, 54.58131], - [-8.429047, 54.586626], - [-8.39323, 54.59295], - [-8.378721, 54.604159], - [-8.353533, 54.614511], - [-8.341993, 54.630695], - [-8.301841, 54.638906], - [-8.28837, 54.646729], - [-8.28229, 54.645546], - [-8.271704, 54.635795], - [-8.282163, 54.630193], - [-8.288675, 54.618901], - [-8.300702, 54.60907], - [-8.296407, 54.603111], - [-8.280699, 54.604963], - [-8.253199, 54.613879], - [-8.234316, 54.618224], - [-8.231442, 54.622922], - [-8.214693, 54.629725], - [-8.192158, 54.636256], - [-8.187044, 54.640429], - [-8.167265, 54.641559], - [-8.152902, 54.634816], - [-8.133359, 54.64405], - [-8.130349, 54.651927], - [-8.115625, 54.650838], - [-8.123916, 54.643702], - [-8.12141, 54.63906], - [-8.131476, 54.622914], - [-8.11779, 54.623839], - [-8.113288, 54.614602], - [-8.12504, 54.615467], - [-8.135135, 54.603838], - [-8.15086, 54.60315], - [-8.1454, 54.61105], - [-8.1533, 54.61316], - [-8.15656, 54.62637], - [-8.165086, 54.625284], - [-8.168323, 54.618526], - [-8.163965, 54.608314], - [-8.16603, 54.59493], - [-8.175504, 54.588596], - [-8.194607, 54.582803], - [-8.207969, 54.572671], - [-8.219389, 54.57466], - [-8.220528, 54.565269], - [-8.21507, 54.560442], - [-8.21285, 54.548455], - [-8.223484, 54.546037], - [-8.252183, 54.530756], - [-8.263959, 54.528662], - [-8.26638, 54.52169], - [-8.254518, 54.512402], - [-8.22028, 54.50308], - [-8.254093, 54.499367], - [-8.261959, 54.504129], - [-8.271498, 54.490809], - [-8.288471, 54.477133], - [-8.311614, 54.478823], - [-8.321741, 54.473362], - [-8.30604, 54.47112], - [-8.29962, 54.463832], - [-8.28272, 54.464744], - [-8.270799, 54.459816], - [-8.254576, 54.462119], - [-8.236823, 54.461026], - [-8.231411, 54.467024], - [-8.217117, 54.472773], - [-8.184524, 54.465505], - [-8.142914, 54.450925], - [-8.160257, 54.440277], - [-8.097772, 54.4069], - [-8.083993, 54.397213], - [-8.056033, 54.36571], - [-8.01827, 54.356717], - [-8.005501, 54.360711], - [-7.997659, 54.355765], - [-7.999458, 54.347194], - [-7.986453, 54.344226], - [-7.982637, 54.336342], - [-7.972558, 54.331084], - [-7.963532, 54.320638], - [-7.961595, 54.312469], - [-7.946681, 54.304489], - [-7.954386, 54.29676], - [-7.970965, 54.285579], - [-7.974415, 54.273518], - [-7.991498, 54.257461], - [-8.009946, 54.248364], - [-8.041349, 54.254049], - [-8.058145, 54.236065], - [-8.037947, 54.220936], - [-8.03281, 54.210981], - [-8.045479, 54.203216], - [-8.048015, 54.18696], - [-8.042249, 54.183095], - [-8.029111, 54.19039], - [-8.016928, 54.187818], - [-8.00608, 54.192291], - [-7.99959, 54.185464], - [-7.984875, 54.178987], - [-7.968104, 54.177148], - [-7.952884, 54.178761], - [-7.944671, 54.1712], - [-7.926412, 54.166796], - [-7.911849, 54.1543], - [-7.88823, 54.141858], - [-7.891722, 54.136781], - [-7.88162, 54.131681], - [-7.875756, 54.124379], - [-7.861972, 54.122649], - [-7.850655, 54.117624], - [-7.858901, 54.113287], - [-7.831475, 54.098716], - [-7.822247, 54.096452], - [-7.816769, 54.104946], - [-7.799788, 54.116435], - [-7.78835, 54.108295], - [-7.762222, 54.107617], - [-7.755266, 54.104731], - [-7.750804, 54.095289], - [-7.738705, 54.094502], - [-7.736597, 54.082923], - [-7.70869, 54.084144], - [-7.698657, 54.072373], - [-7.692319, 54.07019], - [-7.681993, 54.059208], - [-7.657599, 54.056332], - [-7.654954, 54.042769], - [-7.641883, 54.044649], - [-7.63591, 54.04054], - [-7.646343, 54.033114], - [-7.640441, 54.022525], - [-7.620697, 54.018678], - [-7.614035, 54.025382], - [-7.601077, 54.023294], - [-7.594226, 54.015247], - [-7.602252, 54.012614], - [-7.595297, 54.005635], - [-7.593344, 53.997265], - [-7.599633, 53.985713], - [-7.58498, 53.980907], - [-7.58549, 53.972674], - [-7.593693, 53.968936], - [-7.587242, 53.957554], - [-7.603999, 53.950564], - [-7.610204, 53.938428], - [-7.595749, 53.928308], - [-7.593134, 53.920832], - [-7.582841, 53.912405], - [-7.585496, 53.908844], - [-7.560952, 53.905615], - [-7.549898, 53.892865], - [-7.555562, 53.890274], - [-7.558541, 53.877577], - [-7.571946, 53.879898], - [-7.576562, 53.864839], - [-7.58509, 53.856914], - [-7.570822, 53.854539], - [-7.54317, 53.853564], - [-7.528094, 53.863801], - [-7.517065, 53.858766], - [-7.49448, 53.860495], - [-7.488734, 53.852684], - [-7.476604, 53.853615], - [-7.476368, 53.842925], - [-7.471303, 53.838477], - [-7.46567, 53.823484], - [-7.47169, 53.811684], - [-7.462254, 53.801335], - [-7.455302, 53.802308], - [-7.411237, 53.789802], - [-7.410054, 53.779028], - [-7.401532, 53.777459], - [-7.377337, 53.784772], - [-7.331659, 53.804091], - [-7.307997, 53.812725], - [-7.279846, 53.792511], - [-7.27847, 53.781803], - [-7.262537, 53.779041], - [-7.253844, 53.773923], - [-7.240714, 53.778141], - [-7.230289, 53.771873], - [-7.219389, 53.773769], - [-7.21257, 53.785639], - [-7.193872, 53.79472], - [-7.184978, 53.788829], - [-7.171633, 53.795804], - [-7.159537, 53.79499], - [-7.152069, 53.801165], - [-7.1414, 53.799345], - [-7.127708, 53.790521], - [-7.115502, 53.793174], - [-7.10735, 53.789342], - [-7.104955, 53.776575], - [-7.091374, 53.774177], - [-7.080821, 53.77571], - [-7.066723, 53.772424], - [-7.048479, 53.772783], - [-7.038273, 53.777048], - [-7.020884, 53.769046], - [-7.000593, 53.766393], - [-7.00089, 53.772924], - [-6.990776, 53.775477], - [-6.981457, 53.772646], - [-6.970997, 53.777697], - [-6.972973, 53.785102], - [-6.96318, 53.791088], - [-6.951409, 53.781556], - [-6.940732, 53.780665], - [-6.931545, 53.786263], - [-6.941997, 53.789348], - [-6.940123, 53.798388], - [-6.933512, 53.802857], - [-6.921687, 53.801521], - [-6.913495, 53.810429], - [-6.916945, 53.81601], - [-6.933435, 53.827455], - [-6.951215, 53.834931], - [-6.955157, 53.845207], - [-6.963161, 53.843838], - [-6.967345, 53.853085], - [-6.966145, 53.860934], - [-6.930678, 53.872145], - [-6.934179, 53.891204], - [-6.924088, 53.892842], - [-6.907497, 53.887621], - [-6.89676, 53.880923], - [-6.862213, 53.875748], - [-6.840093, 53.882447], - [-6.846357, 53.888639], - [-6.815761, 53.898327], - [-6.813293, 53.891971], - [-6.785256, 53.889914], - [-6.789254, 53.899461], - [-6.779276, 53.916243], - [-6.768898, 53.91068], - [-6.754317, 53.91433], - [-6.728337, 53.912073], - [-6.714489, 53.903404], - [-6.700322, 53.900739], - [-6.684907, 53.912167], - [-6.672582, 53.909435], - [-6.665783, 53.913187], - [-6.647366, 53.916057], - [-6.644174, 53.924039], - [-6.630264, 53.926757], - [-6.633274, 53.932802], - [-6.644934, 53.93453], - [-6.660287, 53.941691], - [-6.647971, 53.945836], - [-6.659223, 53.952899], - [-6.66125, 53.962499], - [-6.63751, 53.964739], - [-6.640303, 53.97514], - [-6.626408, 53.975408], - [-6.61981, 53.98391], - [-6.592976, 53.974567], - [-6.591292, 53.970591], - [-6.568414, 53.97093], - [-6.562216, 53.978715], - [-6.55108, 54.002709], - [-6.566171, 54.017075], - [-6.572869, 54.033046], - [-6.595142, 54.044467], - [-6.595707, 54.051954], - [-6.586429, 54.057572], - [-6.56949, 54.050919], - [-6.549238, 54.050382], - [-6.531866, 54.059681], - [-6.515774, 54.052496], - [-6.509093, 54.057402], - [-6.496531, 54.059281], - [-6.479822, 54.067183], - [-6.477795, 54.077087], - [-6.450595, 54.067549], - [-6.443041, 54.057555], - [-6.418128, 54.062378], - [-6.392533, 54.060321], - [-6.383899, 54.067787], - [-6.367309, 54.070181], - [-6.362283, 54.07934], - [-6.36238, 54.096785], - [-6.368228, 54.111262], - [-6.339932, 54.111888], - [-6.334693, 54.105543], - [-6.336291, 54.094724], - [-6.319118, 54.091021], - [-6.309002, 54.10669], - [-6.291881, 54.112196] - ] - ], - [ - [ - [-6.286456, 55.29437], - [-6.274189, 55.291387], - [-6.254984, 55.291892], - [-6.227528, 55.296076], - [-6.19228, 55.291539], - [-6.18844, 55.285261], - [-6.200899, 55.2754], - [-6.198181, 55.26493], - [-6.192113, 55.260003], - [-6.180835, 55.266131], - [-6.180574, 55.279877], - [-6.169801, 55.301515], - [-6.199873, 55.307138], - [-6.218639, 55.306446], - [-6.238857, 55.312411], - [-6.26524, 55.30558], - [-6.271742, 55.306045], - [-6.286456, 55.29437] - ] - ], - [ - [ - [-8.253514, 55.273225], - [-8.247678, 55.264417], - [-8.222207, 55.26288], - [-8.213386, 55.253637], - [-8.195254, 55.253659], - [-8.224339, 55.270622], - [-8.253514, 55.273225] - ] - ], - [ - [ - [-8.569258, 54.978877], - [-8.566937, 54.975499], - [-8.50329, 54.97175], - [-8.486784, 54.973646], - [-8.4869, 54.98308], - [-8.497609, 54.987756], - [-8.499822, 54.99599], - [-8.494998, 55.002352], - [-8.51444, 55.00727], - [-8.53885, 55.01659], - [-8.555883, 55.008483], - [-8.548702, 55.006049], - [-8.562922, 54.994577], - [-8.560542, 54.98615], - [-8.569258, 54.978877] - ] - ], - [ - [ - [-8.43883, 55.02872], - [-8.42907, 55.02547], - [-8.417848, 55.014678], - [-8.406601, 55.022402], - [-8.416217, 55.032099], - [-8.421515, 55.048943], - [-8.4325, 55.052356], - [-8.42541, 55.03185], - [-8.43883, 55.02872] - ] - ], - [ - [ - [-8.462259, 55.057196], - [-8.455215, 55.048224], - [-8.439447, 55.054238], - [-8.449785, 55.061959], - [-8.462259, 55.057196] - ] - ], - [ - [ - [-8.380795, 55.087177], - [-8.378654, 55.084729], - [-8.354374, 55.082259], - [-8.359851, 55.095695], - [-8.377587, 55.094296], - [-8.380795, 55.087177] - ] - ], - [ - [ - [-5.545185, 54.672822], - [-5.530802, 54.669724], - [-5.521485, 54.67645], - [-5.534328, 54.681695], - [-5.544775, 54.677794], - [-5.545185, 54.672822] - ] - ], - [ - [ - [-8.466858, 54.974338], - [-8.454796, 54.969203], - [-8.448642, 54.976148], - [-8.461146, 54.982974], - [-8.466858, 54.974338] - ] - ], - [ - [ - [-8.45769, 54.95273], - [-8.44529, 54.94845], - [-8.42987, 54.95312], - [-8.43842, 54.96238], - [-8.4572, 54.95581], - [-8.45769, 54.95273] - ] - ] - ] - }, - "properties": { - "OSM_ID": -278664, - "name": "Ulster", - "name_EN": "Ulster", - "name_GA": "Cúige Uladh", - "ISOCODE": "IE-U" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-7.610204, 53.938428], - [-7.619628, 53.935386], - [-7.647069, 53.941831], - [-7.657753, 53.937332], - [-7.667302, 53.92146], - [-7.680071, 53.916946], - [-7.692463, 53.916394], - [-7.69066, 53.90583], - [-7.712285, 53.899106], - [-7.713142, 53.890997], - [-7.72631, 53.888091], - [-7.728204, 53.881298], - [-7.73782, 53.876184], - [-7.746293, 53.87902], - [-7.758207, 53.873566], - [-7.754673, 53.869125], - [-7.77625, 53.864005], - [-7.7719, 53.846052], - [-7.782183, 53.837241], - [-7.780285, 53.8289], - [-7.787774, 53.823019], - [-7.788179, 53.816378], - [-7.803007, 53.815146], - [-7.816257, 53.81973], - [-7.828863, 53.811412], - [-7.837178, 53.810868], - [-7.846413, 53.818512], - [-7.854661, 53.831579], - [-7.863956, 53.824214], - [-7.861063, 53.812526], - [-7.870541, 53.813881], - [-7.88862, 53.823757], - [-7.896888, 53.82404], - [-7.917821, 53.818672], - [-7.91096, 53.810378], - [-7.90957, 53.794281], - [-7.893119, 53.786104], - [-7.88143, 53.785557], - [-7.875882, 53.777348], - [-7.883408, 53.771438], - [-7.886449, 53.759083], - [-7.898967, 53.756086], - [-7.917726, 53.746799], - [-7.916926, 53.735881], - [-7.930762, 53.73328], - [-7.938399, 53.737703], - [-7.947649, 53.736216], - [-7.944018, 53.728415], - [-7.95079, 53.711844], - [-7.964296, 53.711396], - [-7.976909, 53.7018], - [-7.987965, 53.698627], - [-7.982895, 53.690821], - [-7.984194, 53.680711], - [-8.001816, 53.666428], - [-8.025564, 53.656367], - [-8.034274, 53.646098], - [-8.03781, 53.628088], - [-8.03791, 53.61207], - [-8.021353, 53.58641], - [-8.00196, 53.56848], - [-7.980924, 53.552145], - [-7.95496, 53.481126], - [-7.966588, 53.449731], - [-7.959975, 53.442668], - [-7.956052, 53.431185], - [-7.972729, 53.422214], - [-7.942767, 53.412315], - [-7.940446, 53.403676], - [-7.929868, 53.399639], - [-7.923202, 53.38836], - [-7.91355, 53.378698], - [-7.910158, 53.371068], - [-7.925118, 53.3618], - [-7.9326, 53.361174], - [-7.9435, 53.350441], - [-7.943152, 53.34128], - [-7.967783, 53.335445], - [-7.982681, 53.337592], - [-7.986046, 53.329242], - [-8.004361, 53.322098], - [-8.012453, 53.324499], - [-8.026913, 53.321129], - [-8.024347, 53.303832], - [-8.031229, 53.295665], - [-8.045335, 53.289555], - [-8.052073, 53.276942], - [-8.029286, 53.262761], - [-8.026375, 53.252723], - [-8.009057, 53.251337], - [-7.998016, 53.244044], - [-7.981411, 53.239248], - [-7.971346, 53.232889], - [-7.967821, 53.225349], - [-7.971447, 53.212948], - [-7.994127, 53.192991], - [-8.037266, 53.194986], - [-8.050586, 53.193315], - [-8.061843, 53.187893], - [-8.081352, 53.166966], - [-8.057639, 53.15707], - [-8.054976, 53.15388], - [-8.019078, 53.147466], - [-8.001565, 53.138237], - [-7.994572, 53.139148], - [-7.977873, 53.134381], - [-7.974285, 53.129101], - [-7.9552, 53.125346], - [-7.941563, 53.118633], - [-7.935957, 53.109702], - [-7.920491, 53.104193], - [-7.928248, 53.097046], - [-7.920346, 53.089227], - [-7.92822, 53.078715], - [-7.926651, 53.068906], - [-7.934021, 53.060883], - [-7.93587, 53.046827], - [-7.943242, 53.043712], - [-7.954388, 53.046617], - [-7.963384, 53.042178], - [-7.956518, 53.034616], - [-7.962219, 53.031129], - [-7.963442, 53.016705], - [-7.960129, 53.006374], - [-7.950024, 52.995473], - [-7.961045, 52.992801], - [-7.978783, 52.997665], - [-7.992849, 52.99882], - [-8.002688, 52.993188], - [-8.00818, 52.984258], - [-7.987381, 52.972615], - [-7.988006, 52.965607], - [-7.974775, 52.949095], - [-7.985731, 52.946192], - [-7.984231, 52.938596], - [-7.992968, 52.931028], - [-8.01304, 52.928504], - [-8.040828, 52.938891], - [-8.046086, 52.938361], - [-8.05522, 52.928121], - [-8.037965, 52.911735], - [-8.043084, 52.902982], - [-8.039589, 52.889313], - [-7.98717, 52.87921], - [-7.993687, 52.873466], - [-7.99591, 52.862608], - [-7.988919, 52.855607], - [-7.975211, 52.848596], - [-7.967087, 52.848833], - [-7.963634, 52.857948], - [-7.944832, 52.866349], - [-7.945554, 52.880613], - [-7.96126, 52.890836], - [-7.956322, 52.89415], - [-7.939099, 52.888315], - [-7.93244, 52.8762], - [-7.912288, 52.884252], - [-7.91877, 52.893247], - [-7.89579, 52.893125], - [-7.884595, 52.898918], - [-7.892393, 52.905682], - [-7.874122, 52.913614], - [-7.860625, 52.916138], - [-7.871346, 52.923664], - [-7.844599, 52.932651], - [-7.849996, 52.93987], - [-7.86269, 52.942663], - [-7.864565, 52.956472], - [-7.845121, 52.955406], - [-7.84037, 52.964623], - [-7.827801, 52.965558], - [-7.825831, 52.97415], - [-7.802271, 52.981708], - [-7.793318, 52.978155], - [-7.790953, 52.970132], - [-7.770305, 52.97067], - [-7.730547, 52.95755], - [-7.722653, 52.944158], - [-7.711384, 52.942132], - [-7.702053, 52.934072], - [-7.660237, 52.933925], - [-7.665876, 52.921263], - [-7.675878, 52.915445], - [-7.692091, 52.911396], - [-7.706821, 52.901009], - [-7.70886, 52.891389], - [-7.72441, 52.888788], - [-7.717287, 52.865197], - [-7.734498, 52.858438], - [-7.732162, 52.85203], - [-7.716393, 52.837439], - [-7.697079, 52.831867], - [-7.688558, 52.815875], - [-7.689085, 52.808141], - [-7.680183, 52.805539], - [-7.67881, 52.794272], - [-7.671125, 52.777557], - [-7.667279, 52.760871], - [-7.668346, 52.754065], - [-7.654999, 52.747496], - [-7.646068, 52.735184], - [-7.625965, 52.73362], - [-7.605843, 52.719848], - [-7.547834, 52.700454], - [-7.547112, 52.694789], - [-7.536334, 52.689475], - [-7.535374, 52.679076], - [-7.51946, 52.661462], - [-7.520973, 52.654788], - [-7.51062, 52.642531], - [-7.474972, 52.615961], - [-7.480943, 52.603952], - [-7.475625, 52.590925], - [-7.451261, 52.580965], - [-7.459067, 52.557947], - [-7.452761, 52.557618], - [-7.458531, 52.535708], - [-7.457137, 52.52308], - [-7.443298, 52.510452], - [-7.432482, 52.518284], - [-7.420009, 52.510831], - [-7.43039, 52.497636], - [-7.456053, 52.484154], - [-7.461254, 52.474838], - [-7.460943, 52.465844], - [-7.441047, 52.465853], - [-7.441075, 52.459503], - [-7.422959, 52.451989], - [-7.419826, 52.443334], - [-7.403496, 52.434272], - [-7.400181, 52.428013], - [-7.391194, 52.428598], - [-7.382325, 52.420089], - [-7.393059, 52.398564], - [-7.388192, 52.383945], - [-7.39701, 52.364205], - [-7.388622, 52.356669], - [-7.375981, 52.3502], - [-7.372088, 52.343054], - [-7.356832, 52.340974], - [-7.353274, 52.335388], - [-7.323097, 52.330807], - [-7.299257, 52.311217], - [-7.297246, 52.3016], - [-7.284122, 52.297213], - [-7.282908, 52.28971], - [-7.266643, 52.269196], - [-7.258271, 52.264246], - [-7.242241, 52.262643], - [-7.229044, 52.247961], - [-7.211862, 52.243211], - [-7.19978, 52.248184], - [-7.18954, 52.258872], - [-7.164081, 52.276665], - [-7.151659, 52.279911], - [-7.132884, 52.268958], - [-7.100484, 52.26604], - [-7.092069, 52.252624], - [-7.084987, 52.251933], - [-7.069716, 52.256727], - [-7.037869, 52.256335], - [-7.025705, 52.269167], - [-7.000104, 52.275725], - [-6.987848, 52.274145], - [-6.984071, 52.265631], - [-6.992114, 52.257509], - [-6.986628, 52.24927], - [-6.96553, 52.240609], - [-6.955798, 52.24278], - [-6.936461, 52.226828], - [-6.937239, 52.220088], - [-6.920794, 52.218214], - [-6.902986, 52.195713], - [-6.913152, 52.191528], - [-6.898448, 52.174264], - [-6.901131, 52.15557], - [-6.912278, 52.151394], - [-6.913582, 52.146486], - [-6.924826, 52.140717], - [-6.934875, 52.130762], - [-6.929676, 52.123533], - [-6.917406, 52.12587], - [-6.902211, 52.14707], - [-6.88912, 52.151401], - [-6.879983, 52.16236], - [-6.853247, 52.167836], - [-6.843075, 52.17483], - [-6.829852, 52.176192], - [-6.832028, 52.181685], - [-6.823186, 52.190218], - [-6.830953, 52.192853], - [-6.822657, 52.204861], - [-6.821953, 52.215387], - [-6.830182, 52.226281], - [-6.81282, 52.231027], - [-6.796368, 52.2404], - [-6.776735, 52.244893], - [-6.75931, 52.258385], - [-6.753392, 52.247912], - [-6.765415, 52.242596], - [-6.786387, 52.228812], - [-6.788752, 52.214776], - [-6.803965, 52.212009], - [-6.785791, 52.204243], - [-6.769929, 52.206095], - [-6.755199, 52.213758], - [-6.74263, 52.212181], - [-6.708558, 52.217872], - [-6.681946, 52.218858], - [-6.677579, 52.215775], - [-6.663102, 52.216231], - [-6.651685, 52.220458], - [-6.64608, 52.204836], - [-6.611886, 52.187469], - [-6.599557, 52.179777], - [-6.594927, 52.170659], - [-6.577001, 52.176355], - [-6.561643, 52.177882], - [-6.540454, 52.18509], - [-6.514339, 52.186853], - [-6.49822, 52.189888], - [-6.473433, 52.191216], - [-6.419895, 52.187522], - [-6.401541, 52.18362], - [-6.387899, 52.17762], - [-6.36798, 52.17545], - [-6.35767, 52.177747], - [-6.357676, 52.183555], - [-6.344641, 52.190445], - [-6.35076, 52.201658], - [-6.340241, 52.215904], - [-6.326125, 52.224793], - [-6.323925, 52.232817], - [-6.316524, 52.241621], - [-6.329479, 52.248134], - [-6.334251, 52.254975], - [-6.364203, 52.251457], - [-6.374377, 52.257676], - [-6.387695, 52.278283], - [-6.390575, 52.294992], - [-6.408142, 52.288446], - [-6.415551, 52.293479], - [-6.412858, 52.299518], - [-6.43083, 52.30703], - [-6.446969, 52.307696], - [-6.447853, 52.330333], - [-6.456691, 52.336511], - [-6.453484, 52.343928], - [-6.443354, 52.353563], - [-6.43554, 52.356044], - [-6.385452, 52.355404], - [-6.371002, 52.344261], - [-6.358016, 52.34553], - [-6.363712, 52.361616], - [-6.36236, 52.388044], - [-6.353653, 52.407667], - [-6.33815, 52.422738], - [-6.326282, 52.431022], - [-6.294343, 52.46463], - [-6.269734, 52.484951], - [-6.251002, 52.497942], - [-6.239591, 52.5131], - [-6.213476, 52.532409], - [-6.205086, 52.542824], - [-6.196149, 52.560752], - [-6.196289, 52.566938], - [-6.203887, 52.570673], - [-6.203396, 52.58193], - [-6.210101, 52.584982], - [-6.213289, 52.593661], - [-6.211016, 52.604433], - [-6.220987, 52.611901], - [-6.229583, 52.624797], - [-6.224214, 52.641054], - [-6.226087, 52.648014], - [-6.209223, 52.666379], - [-6.209605, 52.66943], - [-6.196943, 52.687056], - [-6.183349, 52.701817], - [-6.160441, 52.715223], - [-6.156946, 52.725291], - [-6.140693, 52.733671], - [-6.146502, 52.746139], - [-6.138143, 52.759241], - [-6.147281, 52.765361], - [-6.14216, 52.778319], - [-6.146002, 52.784328], - [-6.139283, 52.79262], - [-6.141049, 52.801229], - [-6.120272, 52.815716], - [-6.116442, 52.826008], - [-6.105237, 52.838563], - [-6.090181, 52.846882], - [-6.057366, 52.858084], - [-6.065462, 52.870618], - [-6.049635, 52.892906], - [-6.038822, 52.898981], - [-6.038574, 52.915645], - [-6.03033, 52.923033], - [-6.021104, 52.925159], - [-6.013576, 52.95237], - [-5.999717, 52.961168], - [-6.008091, 52.972088], - [-6.020869, 52.972814], - [-6.0321, 52.981509], - [-6.040249, 52.98057], - [-6.054455, 52.991001], - [-6.049417, 52.9984], - [-6.049856, 53.020178], - [-6.046878, 53.037175], - [-6.034843, 53.072304], - [-6.042629, 53.120847], - [-6.057752, 53.141476], - [-6.059509, 53.147659], - [-6.071108, 53.154985], - [-6.077178, 53.16866], - [-6.074353, 53.174329], - [-6.075818, 53.188005], - [-6.091496, 53.196223], - [-6.10324, 53.210797], - [-6.113407, 53.247991], - [-6.112465, 53.25756], - [-6.106703, 53.265842], - [-6.09119, 53.271636], - [-6.102692, 53.284123], - [-6.120686, 53.287915], - [-6.141189, 53.297855], - [-6.154214, 53.295684], - [-6.17606, 53.302131], - [-6.203718, 53.315693], - [-6.209903, 53.337141], - [-6.194591, 53.335051], - [-6.182725, 53.337537], - [-6.196254, 53.353239], - [-6.210331, 53.353685], - [-6.211407, 53.359955], - [-6.176331, 53.357699], - [-6.165383, 53.352794], - [-6.139839, 53.370792], - [-6.153206, 53.372053], - [-6.160409, 53.376686], - [-6.142626, 53.384774], - [-6.116079, 53.388634], - [-6.101691, 53.38524], - [-6.09859, 53.370762], - [-6.076068, 53.360331], - [-6.069427, 53.364334], - [-6.057113, 53.363917], - [-6.045253, 53.375222], - [-6.045248, 53.38498], - [-6.062578, 53.386416], - [-6.094435, 53.393359], - [-6.122279, 53.394335], - [-6.136485, 53.409684], - [-6.126272, 53.4102], - [-6.116885, 53.398098], - [-6.103951, 53.399524], - [-6.115797, 53.414901], - [-6.119949, 53.425851], - [-6.12002, 53.436194], - [-6.124191, 53.444172], - [-6.134734, 53.450881], - [-6.158814, 53.45261], - [-6.176358, 53.456227], - [-6.1967, 53.463104], - [-6.17019, 53.469801], - [-6.154234, 53.468654], - [-6.144659, 53.474647], - [-6.133416, 53.468159], - [-6.142685, 53.462692], - [-6.144831, 53.454157], - [-6.132242, 53.452719], - [-6.117975, 53.476062], - [-6.110676, 53.48294], - [-6.096613, 53.489507], - [-6.107838, 53.493442], - [-6.117279, 53.509371], - [-6.13024, 53.510085], - [-6.127837, 53.498497], - [-6.148779, 53.502428], - [-6.14136, 53.509012], - [-6.124739, 53.513929], - [-6.111427, 53.509697], - [-6.091876, 53.5183], - [-6.084258, 53.516996], - [-6.087406, 53.532006], - [-6.084885, 53.54308], - [-6.079441, 53.549363], - [-6.083805, 53.560383], - [-6.098997, 53.565786], - [-6.104822, 53.581162], - [-6.130185, 53.585879], - [-6.151647, 53.588014], - [-6.168093, 53.608779], - [-6.182962, 53.612881], - [-6.188441, 53.620899], - [-6.1877, 53.63021], - [-6.211051, 53.632797], - [-6.221889, 53.654015], - [-6.232992, 53.668216], - [-6.243892, 53.700137], - [-6.24415, 53.720748], - [-6.250664, 53.732733], - [-6.247832, 53.758505], - [-6.23291, 53.78911], - [-6.22422, 53.78955], - [-6.21645, 53.79591], - [-6.23177, 53.79985], - [-6.244773, 53.799511], - [-6.25949, 53.806053], - [-6.26057, 53.82613], - [-6.249201, 53.851724], - [-6.23795, 53.860207], - [-6.255048, 53.863569], - [-6.268286, 53.870973], - [-6.28964, 53.87143], - [-6.303717, 53.878818], - [-6.317482, 53.875742], - [-6.331691, 53.876117], - [-6.357613, 53.891321], - [-6.36983, 53.904631], - [-6.376053, 53.921978], - [-6.373364, 53.92817], - [-6.374622, 53.941291], - [-6.379719, 53.944069], - [-6.376915, 53.956512], - [-6.367488, 53.956866], - [-6.359996, 53.973386], - [-6.365931, 53.978489], - [-6.359325, 53.985284], - [-6.34712, 53.9881], - [-6.338544, 53.997962], - [-6.349029, 54.008312], - [-6.367078, 54.007112], - [-6.361236, 54.014105], - [-6.346905, 54.01138], - [-6.321762, 54.014181], - [-6.299523, 54.009669], - [-6.269237, 53.994706], - [-6.25534, 53.992111], - [-6.238203, 53.984714], - [-6.228592, 53.986764], - [-6.2007, 53.980202], - [-6.178523, 53.980202], - [-6.164699, 53.977066], - [-6.149226, 53.981646], - [-6.140158, 53.980729], - [-6.132653, 53.987283], - [-6.103241, 54.000156], - [-6.126215, 54.016832], - [-6.129224, 54.03069], - [-6.148494, 54.027272], - [-6.185693, 54.041282], - [-6.194717, 54.055693], - [-6.213034, 54.065924], - [-6.228975, 54.069853], - [-6.245868, 54.077595], - [-6.268601, 54.100965], - [-6.282006, 54.111086], - [-6.291881, 54.112196], - [-6.309002, 54.10669], - [-6.319118, 54.091021], - [-6.336291, 54.094724], - [-6.334693, 54.105543], - [-6.339932, 54.111888], - [-6.368228, 54.111262], - [-6.36238, 54.096785], - [-6.362283, 54.07934], - [-6.367309, 54.070181], - [-6.383899, 54.067787], - [-6.392533, 54.060321], - [-6.418128, 54.062378], - [-6.443041, 54.057555], - [-6.450595, 54.067549], - [-6.477795, 54.077087], - [-6.479822, 54.067183], - [-6.496531, 54.059281], - [-6.509093, 54.057402], - [-6.515774, 54.052496], - [-6.531866, 54.059681], - [-6.549238, 54.050382], - [-6.56949, 54.050919], - [-6.586429, 54.057572], - [-6.595707, 54.051954], - [-6.595142, 54.044467], - [-6.572869, 54.033046], - [-6.566171, 54.017075], - [-6.55108, 54.002709], - [-6.562216, 53.978715], - [-6.568414, 53.97093], - [-6.591292, 53.970591], - [-6.592976, 53.974567], - [-6.61981, 53.98391], - [-6.626408, 53.975408], - [-6.640303, 53.97514], - [-6.63751, 53.964739], - [-6.66125, 53.962499], - [-6.659223, 53.952899], - [-6.647971, 53.945836], - [-6.660287, 53.941691], - [-6.644934, 53.93453], - [-6.633274, 53.932802], - [-6.630264, 53.926757], - [-6.644174, 53.924039], - [-6.647366, 53.916057], - [-6.665783, 53.913187], - [-6.672582, 53.909435], - [-6.684907, 53.912167], - [-6.700322, 53.900739], - [-6.714489, 53.903404], - [-6.728337, 53.912073], - [-6.754317, 53.91433], - [-6.768898, 53.91068], - [-6.779276, 53.916243], - [-6.789254, 53.899461], - [-6.785256, 53.889914], - [-6.813293, 53.891971], - [-6.815761, 53.898327], - [-6.846357, 53.888639], - [-6.840093, 53.882447], - [-6.862213, 53.875748], - [-6.89676, 53.880923], - [-6.907497, 53.887621], - [-6.924088, 53.892842], - [-6.934179, 53.891204], - [-6.930678, 53.872145], - [-6.966145, 53.860934], - [-6.967345, 53.853085], - [-6.963161, 53.843838], - [-6.955157, 53.845207], - [-6.951215, 53.834931], - [-6.933435, 53.827455], - [-6.916945, 53.81601], - [-6.913495, 53.810429], - [-6.921687, 53.801521], - [-6.933512, 53.802857], - [-6.940123, 53.798388], - [-6.941997, 53.789348], - [-6.931545, 53.786263], - [-6.940732, 53.780665], - [-6.951409, 53.781556], - [-6.96318, 53.791088], - [-6.972973, 53.785102], - [-6.970997, 53.777697], - [-6.981457, 53.772646], - [-6.990776, 53.775477], - [-7.00089, 53.772924], - [-7.000593, 53.766393], - [-7.020884, 53.769046], - [-7.038273, 53.777048], - [-7.048479, 53.772783], - [-7.066723, 53.772424], - [-7.080821, 53.77571], - [-7.091374, 53.774177], - [-7.104955, 53.776575], - [-7.10735, 53.789342], - [-7.115502, 53.793174], - [-7.127708, 53.790521], - [-7.1414, 53.799345], - [-7.152069, 53.801165], - [-7.159537, 53.79499], - [-7.171633, 53.795804], - [-7.184978, 53.788829], - [-7.193872, 53.79472], - [-7.21257, 53.785639], - [-7.219389, 53.773769], - [-7.230289, 53.771873], - [-7.240714, 53.778141], - [-7.253844, 53.773923], - [-7.262537, 53.779041], - [-7.27847, 53.781803], - [-7.279846, 53.792511], - [-7.307997, 53.812725], - [-7.331659, 53.804091], - [-7.377337, 53.784772], - [-7.401532, 53.777459], - [-7.410054, 53.779028], - [-7.411237, 53.789802], - [-7.455302, 53.802308], - [-7.462254, 53.801335], - [-7.47169, 53.811684], - [-7.46567, 53.823484], - [-7.471303, 53.838477], - [-7.476368, 53.842925], - [-7.476604, 53.853615], - [-7.488734, 53.852684], - [-7.49448, 53.860495], - [-7.517065, 53.858766], - [-7.528094, 53.863801], - [-7.54317, 53.853564], - [-7.570822, 53.854539], - [-7.58509, 53.856914], - [-7.576562, 53.864839], - [-7.571946, 53.879898], - [-7.558541, 53.877577], - [-7.555562, 53.890274], - [-7.549898, 53.892865], - [-7.560952, 53.905615], - [-7.585496, 53.908844], - [-7.582841, 53.912405], - [-7.593134, 53.920832], - [-7.595749, 53.928308], - [-7.610204, 53.938428] - ] - ], - [ - [ - [-6.035649, 53.489229], - [-6.012297, 53.482234], - [-6.00393, 53.492605], - [-6.010286, 53.498771], - [-6.035649, 53.489229] - ] - ] - ] - }, - "properties": { - "OSM_ID": -278746, - "name": "Leinster", - "name_EN": "Leinster", - "name_GA": "Cúige Laighean", - "ISOCODE": "IE-L" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-9.009377, 53.14085], - [-9.026622, 53.144149], - [-9.030532, 53.151774], - [-9.041844, 53.150294], - [-9.05599, 53.15842], - [-9.07134, 53.15585], - [-9.099645, 53.159345], - [-9.113677, 53.157365], - [-9.121945, 53.15101], - [-9.10909, 53.148659], - [-9.102434, 53.141891], - [-9.120584, 53.136938], - [-9.139106, 53.120632], - [-9.159487, 53.120329], - [-9.17773, 53.127938], - [-9.185996, 53.134904], - [-9.204278, 53.138767], - [-9.219527, 53.139681], - [-9.238934, 53.148625], - [-9.262579, 53.154351], - [-9.282749, 53.144689], - [-9.293075, 53.130612], - [-9.290943, 53.116296], - [-9.300765, 53.104247], - [-9.308809, 53.100117], - [-9.310446, 53.092874], - [-9.319991, 53.086575], - [-9.327716, 53.086558], - [-9.355303, 53.074965], - [-9.365834, 53.06269], - [-9.364902, 53.051087], - [-9.383006, 53.042783], - [-9.386261, 53.037226], - [-9.409254, 53.018832], - [-9.406462, 53.014417], - [-9.392035, 53.010443], - [-9.39897, 53.003658], - [-9.416609, 52.993782], - [-9.417531, 52.989553], - [-9.429368, 52.984568], - [-9.428214, 52.970347], - [-9.438866, 52.961653], - [-9.462714, 52.949671], - [-9.476552, 52.941001], - [-9.459668, 52.933971], - [-9.428593, 52.937521], - [-9.424566, 52.931418], - [-9.402212, 52.932498], - [-9.385531, 52.940195], - [-9.372037, 52.943667], - [-9.358015, 52.943816], - [-9.348532, 52.933639], - [-9.352459, 52.918308], - [-9.367786, 52.915553], - [-9.390409, 52.896646], - [-9.410346, 52.892766], - [-9.434567, 52.882918], - [-9.437575, 52.872247], - [-9.43612, 52.8566], - [-9.453377, 52.848519], - [-9.434169, 52.844072], - [-9.434947, 52.832749], - [-9.455408, 52.833929], - [-9.451636, 52.827322], - [-9.455824, 52.817514], - [-9.471989, 52.810416], - [-9.489399, 52.806301], - [-9.484832, 52.793074], - [-9.488162, 52.789434], - [-9.481982, 52.781262], - [-9.482538, 52.774753], - [-9.499023, 52.771391], - [-9.492686, 52.763144], - [-9.494861, 52.752565], - [-9.510269, 52.745099], - [-9.528169, 52.745987], - [-9.524835, 52.738953], - [-9.539585, 52.738054], - [-9.542643, 52.746331], - [-9.555598, 52.752576], - [-9.569788, 52.752131], - [-9.605513, 52.744586], - [-9.610438, 52.732977], - [-9.623221, 52.729067], - [-9.615899, 52.715706], - [-9.632933, 52.712841], - [-9.651629, 52.70209], - [-9.651858, 52.683887], - [-9.66629, 52.682358], - [-9.674388, 52.677605], - [-9.694023, 52.671856], - [-9.706111, 52.659671], - [-9.718849, 52.658552], - [-9.724393, 52.651085], - [-9.737462, 52.64632], - [-9.746167, 52.63943], - [-9.772865, 52.634143], - [-9.805901, 52.614127], - [-9.806568, 52.604526], - [-9.834233, 52.596924], - [-9.856889, 52.595414], - [-9.873954, 52.592322], - [-9.871566, 52.584485], - [-9.881928, 52.579472], - [-9.898033, 52.581237], - [-9.911612, 52.574127], - [-9.920488, 52.564752], - [-9.938757, 52.559659], - [-9.928736, 52.556149], - [-9.907824, 52.558086], - [-9.881021, 52.55717], - [-9.861214, 52.565803], - [-9.860758, 52.570551], - [-9.847986, 52.571554], - [-9.826709, 52.570022], - [-9.811726, 52.564806], - [-9.789678, 52.570312], - [-9.769975, 52.572699], - [-9.746824, 52.579402], - [-9.744602, 52.585765], - [-9.722725, 52.587071], - [-9.709487, 52.579731], - [-9.697431, 52.582466], - [-9.705388, 52.590566], - [-9.70164, 52.596989], - [-9.707939, 52.607134], - [-9.7022, 52.61179], - [-9.68369, 52.615704], - [-9.668347, 52.613031], - [-9.646273, 52.615661], - [-9.634548, 52.619691], - [-9.620982, 52.617354], - [-9.605557, 52.617732], - [-9.595898, 52.626417], - [-9.576128, 52.632143], - [-9.552042, 52.636651], - [-9.550458, 52.643059], - [-9.560976, 52.65311], - [-9.586392, 52.659337], - [-9.58736, 52.666438], - [-9.566079, 52.66668], - [-9.537533, 52.66434], - [-9.544343, 52.657301], - [-9.540183, 52.646631], - [-9.54309, 52.643372], - [-9.531746, 52.636659], - [-9.52951, 52.631236], - [-9.511139, 52.631728], - [-9.48428, 52.623004], - [-9.463153, 52.61176], - [-9.442869, 52.614766], - [-9.434762, 52.606269], - [-9.403794, 52.60335], - [-9.392679, 52.610076], - [-9.361713, 52.616101], - [-9.351173, 52.614341], - [-9.343838, 52.622295], - [-9.333173, 52.627711], - [-9.314233, 52.628411], - [-9.296656, 52.638186], - [-9.275427, 52.638386], - [-9.280326, 52.631045], - [-9.314907, 52.61428], - [-9.338857, 52.600419], - [-9.33405, 52.59494], - [-9.32076, 52.589122], - [-9.304496, 52.5873], - [-9.290396, 52.589333], - [-9.261453, 52.602654], - [-9.254686, 52.613603], - [-9.255169, 52.620181], - [-9.221646, 52.622349], - [-9.203537, 52.619745], - [-9.178613, 52.620871], - [-9.160573, 52.619828], - [-9.140745, 52.632682], - [-9.12967, 52.643791], - [-9.119107, 52.644786], - [-9.110826, 52.655907], - [-9.103515, 52.660097], - [-9.101734, 52.668794], - [-9.08553, 52.67513], - [-9.06297, 52.693237], - [-9.065007, 52.711552], - [-9.039849, 52.720488], - [-9.034069, 52.726937], - [-9.032954, 52.73953], - [-9.035651, 52.748349], - [-9.027644, 52.757654], - [-9.010033, 52.761031], - [-9.005889, 52.764923], - [-8.989289, 52.762865], - [-8.960837, 52.770538], - [-8.946757, 52.777444], - [-8.944773, 52.767681], - [-8.964487, 52.76144], - [-8.969393, 52.755176], - [-8.958573, 52.751634], - [-8.955501, 52.745682], - [-8.940761, 52.739596], - [-8.941873, 52.732708], - [-8.957186, 52.729836], - [-8.949663, 52.720067], - [-8.933373, 52.712848], - [-8.952448, 52.700382], - [-8.963683, 52.702991], - [-8.965753, 52.684171], - [-8.944033, 52.688631], - [-8.927279, 52.681554], - [-8.922524, 52.689548], - [-8.899908, 52.692283], - [-8.895715, 52.697388], - [-8.856711, 52.698485], - [-8.831343, 52.689823], - [-8.809358, 52.686266], - [-8.789079, 52.678219], - [-8.764492, 52.680526], - [-8.748223, 52.674378], - [-8.789877, 52.663626], - [-8.802732, 52.658326], - [-8.809023, 52.660181], - [-8.813823, 52.668901], - [-8.853632, 52.670213], - [-8.858722, 52.667717], - [-8.88585, 52.667945], - [-8.891523, 52.661756], - [-8.902366, 52.662369], - [-8.935759, 52.654653], - [-8.949756, 52.661182], - [-8.963716, 52.658577], - [-8.971306, 52.649867], - [-8.990633, 52.643691], - [-8.997373, 52.633951], - [-8.988323, 52.624851], - [-9.010213, 52.619341], - [-9.025163, 52.624211], - [-9.044743, 52.624971], - [-9.057813, 52.637141], - [-9.065696, 52.635584], - [-9.069583, 52.624451], - [-9.089327, 52.61641], - [-9.104069, 52.61259], - [-9.121036, 52.616102], - [-9.147068, 52.607589], - [-9.191084, 52.601473], - [-9.215523, 52.591861], - [-9.235723, 52.592461], - [-9.261149, 52.581738], - [-9.296248, 52.571339], - [-9.312983, 52.572811], - [-9.366422, 52.572336], - [-9.363356, 52.583075], - [-9.368969, 52.590436], - [-9.382591, 52.585033], - [-9.407484, 52.579282], - [-9.421143, 52.580681], - [-9.430555, 52.584697], - [-9.451972, 52.581635], - [-9.471158, 52.563613], - [-9.483633, 52.560318], - [-9.490678, 52.568922], - [-9.490523, 52.578611], - [-9.500675, 52.580197], - [-9.532827, 52.566664], - [-9.555657, 52.566765], - [-9.564766, 52.570819], - [-9.596203, 52.575543], - [-9.619313, 52.580632], - [-9.636144, 52.572132], - [-9.646309, 52.5708], - [-9.663254, 52.56195], - [-9.662739, 52.555218], - [-9.6785, 52.547232], - [-9.668118, 52.539366], - [-9.674167, 52.526083], - [-9.681876, 52.525143], - [-9.676092, 52.514312], - [-9.68133, 52.508904], - [-9.680083, 52.496981], - [-9.689313, 52.482566], - [-9.696915, 52.479466], - [-9.71, 52.481234], - [-9.717576, 52.476133], - [-9.729805, 52.474404], - [-9.744066, 52.467471], - [-9.74822, 52.460596], - [-9.770044, 52.448636], - [-9.796132, 52.446057], - [-9.825087, 52.435058], - [-9.839285, 52.434273], - [-9.86576, 52.427404], - [-9.874594, 52.431929], - [-9.898685, 52.433074], - [-9.917288, 52.431141], - [-9.942409, 52.422761], - [-9.947589, 52.410063], - [-9.942549, 52.405502], - [-9.918159, 52.399789], - [-9.871012, 52.391687], - [-9.85438, 52.39231], - [-9.838324, 52.389769], - [-9.8318, 52.378206], - [-9.837755, 52.359391], - [-9.836112, 52.336925], - [-9.847225, 52.318747], - [-9.82813, 52.323622], - [-9.825788, 52.313646], - [-9.843117, 52.313283], - [-9.847615, 52.30674], - [-9.856488, 52.30846], - [-9.868193, 52.301609], - [-9.865252, 52.297493], - [-9.847966, 52.300291], - [-9.833973, 52.298728], - [-9.838185, 52.291373], - [-9.851186, 52.291067], - [-9.861123, 52.283445], - [-9.870916, 52.28688], - [-9.862057, 52.293149], - [-9.885249, 52.301956], - [-9.887943, 52.297974], - [-9.881192, 52.288148], - [-9.873428, 52.283745], - [-9.875574, 52.274431], - [-9.864338, 52.274648], - [-9.846494, 52.279761], - [-9.834647, 52.275631], - [-9.825674, 52.276874], - [-9.816186, 52.272854], - [-9.793392, 52.27156], - [-9.775682, 52.275054], - [-9.766781, 52.269763], - [-9.753499, 52.268144], - [-9.74771, 52.259715], - [-9.763057, 52.249274], - [-9.782201, 52.252626], - [-9.808304, 52.24461], - [-9.82454, 52.2428], - [-9.839307, 52.252509], - [-9.855635, 52.238457], - [-9.896541, 52.229339], - [-9.91174, 52.229014], - [-9.923433, 52.234026], - [-9.9331, 52.231676], - [-9.956692, 52.232803], - [-9.973933, 52.239773], - [-9.979978, 52.245656], - [-9.996377, 52.249013], - [-10.026679, 52.270705], - [-10.023856, 52.280954], - [-10.01332, 52.28413], - [-10.018059, 52.30112], - [-10.036933, 52.30975], - [-10.04097, 52.303101], - [-10.032387, 52.294689], - [-10.032817, 52.28372], - [-10.040435, 52.274117], - [-10.074579, 52.252711], - [-10.096731, 52.245025], - [-10.131519, 52.241952], - [-10.142839, 52.237964], - [-10.151461, 52.239992], - [-10.170813, 52.236201], - [-10.177385, 52.239032], - [-10.160081, 52.246878], - [-10.160425, 52.250501], - [-10.147208, 52.260642], - [-10.161841, 52.265983], - [-10.155349, 52.275491], - [-10.159737, 52.279049], - [-10.157258, 52.287739], - [-10.176438, 52.291634], - [-10.209711, 52.281261], - [-10.208765, 52.273105], - [-10.22203, 52.2769], - [-10.24203, 52.27515], - [-10.257324, 52.271235], - [-10.2669, 52.26092], - [-10.27746, 52.25786], - [-10.29484, 52.25745], - [-10.294521, 52.251071], - [-10.306725, 52.240576], - [-10.31591, 52.240498], - [-10.329215, 52.235772], - [-10.344242, 52.236045], - [-10.36495, 52.23087], - [-10.373179, 52.22089], - [-10.37181, 52.21644], - [-10.355236, 52.216262], - [-10.356166, 52.211738], - [-10.378301, 52.19744], - [-10.379043, 52.190552], - [-10.364319, 52.183643], - [-10.370863, 52.175977], - [-10.383301, 52.178657], - [-10.406604, 52.179662], - [-10.415894, 52.184814], - [-10.414796, 52.19473], - [-10.404223, 52.205405], - [-10.423859, 52.20294], - [-10.438445, 52.192307], - [-10.448268, 52.192173], - [-10.472121, 52.181117], - [-10.460523, 52.179595], - [-10.449996, 52.17167], - [-10.45116, 52.16784], - [-10.465597, 52.157604], - [-10.464947, 52.152484], - [-10.47718, 52.149393], - [-10.466691, 52.143323], - [-10.470012, 52.134926], - [-10.459514, 52.12067], - [-10.464346, 52.114704], - [-10.45636, 52.105738], - [-10.455779, 52.097414], - [-10.423871, 52.09864], - [-10.39553, 52.106297], - [-10.356067, 52.105109], - [-10.362403, 52.115262], - [-10.378186, 52.118251], - [-10.369425, 52.131434], - [-10.357117, 52.130254], - [-10.328743, 52.121028], - [-10.323866, 52.113871], - [-10.302013, 52.11396], - [-10.292269, 52.110705], - [-10.264538, 52.114399], - [-10.261674, 52.120614], - [-10.286255, 52.126843], - [-10.300624, 52.127342], - [-10.308203, 52.131386], - [-10.286618, 52.140868], - [-10.262353, 52.12942], - [-10.260017, 52.122146], - [-10.250827, 52.118413], - [-10.228385, 52.118768], - [-10.215156, 52.123786], - [-10.204548, 52.118901], - [-10.194065, 52.107645], - [-10.15653, 52.11984], - [-10.14805, 52.119894], - [-10.138981, 52.111984], - [-10.124125, 52.114733], - [-10.109227, 52.126418], - [-10.095657, 52.122961], - [-10.052603, 52.134369], - [-10.032242, 52.138274], - [-10.00172, 52.14033], - [-9.986948, 52.143423], - [-9.981299, 52.141581], - [-9.962921, 52.118157], - [-9.956698, 52.112907], - [-9.938926, 52.106192], - [-9.933946, 52.114252], - [-9.94633, 52.12043], - [-9.94441, 52.12839], - [-9.94973, 52.13347], - [-9.96249, 52.13619], - [-9.965328, 52.141208], - [-9.948457, 52.146901], - [-9.921532, 52.148332], - [-9.912569, 52.151629], - [-9.891233, 52.153382], - [-9.86656, 52.159299], - [-9.840231, 52.157115], - [-9.820332, 52.159849], - [-9.811075, 52.154154], - [-9.801365, 52.162056], - [-9.782732, 52.148791], - [-9.79526, 52.14615], - [-9.80063, 52.12979], - [-9.812908, 52.132088], - [-9.820544, 52.125594], - [-9.846348, 52.12118], - [-9.851335, 52.116336], - [-9.88911, 52.11075], - [-9.898484, 52.129694], - [-9.902931, 52.112797], - [-9.909396, 52.101959], - [-9.923576, 52.096051], - [-9.935299, 52.085137], - [-9.924414, 52.076633], - [-9.921772, 52.068858], - [-9.93105, 52.067212], - [-9.935989, 52.073631], - [-9.948621, 52.071828], - [-9.951094, 52.066065], - [-9.977887, 52.052925], - [-10.017412, 52.041984], - [-10.024004, 52.038161], - [-10.03804, 52.03651], - [-10.055882, 52.040522], - [-10.068472, 52.03922], - [-10.106106, 52.025445], - [-10.108291, 52.029421], - [-10.130236, 52.024813], - [-10.14003, 52.026876], - [-10.149973, 52.023997], - [-10.16131, 52.01524], - [-10.19008, 52.0102], - [-10.207219, 52.002267], - [-10.210813, 51.992406], - [-10.228223, 51.995787], - [-10.255669, 51.989806], - [-10.265768, 51.979823], - [-10.265587, 51.967628], - [-10.287557, 51.96923], - [-10.29358, 51.964255], - [-10.308419, 51.962266], - [-10.32103, 51.952577], - [-10.298712, 51.949733], - [-10.263395, 51.942326], - [-10.259899, 51.949364], - [-10.249899, 51.947544], - [-10.226037, 51.950784], - [-10.212377, 51.960042], - [-10.192935, 51.966222], - [-10.184511, 51.960717], - [-10.202611, 51.955968], - [-10.21114, 51.956428], - [-10.22589, 51.948995], - [-10.238509, 51.947162], - [-10.24684, 51.93967], - [-10.269616, 51.933782], - [-10.278047, 51.928669], - [-10.255877, 51.923518], - [-10.257104, 51.913782], - [-10.279239, 51.912177], - [-10.285393, 51.905066], - [-10.295911, 51.899928], - [-10.306695, 51.898477], - [-10.323046, 51.891235], - [-10.339052, 51.891325], - [-10.35051, 51.88496], - [-10.363477, 51.886476], - [-10.396894, 51.881297], - [-10.389312, 51.87262], - [-10.384636, 51.858937], - [-10.394674, 51.848942], - [-10.390272, 51.841158], - [-10.375191, 51.841579], - [-10.361192, 51.846375], - [-10.335349, 51.843036], - [-10.337145, 51.824659], - [-10.331518, 51.822626], - [-10.339146, 51.813793], - [-10.333043, 51.806797], - [-10.354169, 51.797102], - [-10.344933, 51.79227], - [-10.33957, 51.784459], - [-10.322223, 51.791249], - [-10.307503, 51.794757], - [-10.292837, 51.804949], - [-10.283756, 51.802908], - [-10.271564, 51.807681], - [-10.272628, 51.821982], - [-10.254184, 51.83158], - [-10.253988, 51.837932], - [-10.244238, 51.844222], - [-10.211654, 51.843993], - [-10.203602, 51.850945], - [-10.188963, 51.857492], - [-10.185674, 51.853942], - [-10.193882, 51.846034], - [-10.206264, 51.842957], - [-10.191039, 51.833962], - [-10.176696, 51.830549], - [-10.172023, 51.823429], - [-10.178485, 51.808634], - [-10.171632, 51.804953], - [-10.180042, 51.798925], - [-10.182135, 51.787285], - [-10.205416, 51.78124], - [-10.223953, 51.782846], - [-10.223364, 51.777122], - [-10.209913, 51.774549], - [-10.198943, 51.777624], - [-10.192216, 51.771906], - [-10.177626, 51.766119], - [-10.165556, 51.767796], - [-10.147065, 51.764099], - [-10.136764, 51.759416], - [-10.112427, 51.760765], - [-10.133018, 51.748486], - [-10.138261, 51.740172], - [-10.111722, 51.748247], - [-10.103773, 51.748012], - [-10.101215, 51.75556], - [-10.082547, 51.755946], - [-10.071986, 51.76025], - [-10.055496, 51.761472], - [-10.0565, 51.770668], - [-10.033707, 51.773848], - [-10.010133, 51.771857], - [-9.987279, 51.785611], - [-9.970337, 51.788685], - [-9.947696, 51.801229], - [-9.936954, 51.800236], - [-9.902622, 51.807338], - [-9.903086, 51.818846], - [-9.910397, 51.829254], - [-9.904285, 51.830503], - [-9.896911, 51.82252], - [-9.900467, 51.814916], - [-9.888701, 51.814822], - [-9.880988, 51.820893], - [-9.869416, 51.813447], - [-9.86075, 51.816362], - [-9.854103, 51.807498], - [-9.831299, 51.81542], - [-9.829294, 51.825643], - [-9.814325, 51.83038], - [-9.804209, 51.829916], - [-9.778341, 51.83713], - [-9.776265, 51.84007], - [-9.731231, 51.852729], - [-9.695482, 51.860294], - [-9.688063, 51.860373], - [-9.674663, 51.866117], - [-9.655475, 51.870415], - [-9.637322, 51.871238], - [-9.624329, 51.867243], - [-9.598432, 51.873864], - [-9.583357, 51.87227], - [-9.560653, 51.88377], - [-9.561728, 51.875852], - [-9.603301, 51.865531], - [-9.623245, 51.858337], - [-9.644993, 51.844592], - [-9.696151, 51.841872], - [-9.725533, 51.837044], - [-9.743101, 51.827947], - [-9.744463, 51.821173], - [-9.75483, 51.818685], - [-9.778122, 51.808631], - [-9.779954, 51.802996], - [-9.823845, 51.785665], - [-9.818945, 51.779001], - [-9.80919, 51.780858], - [-9.786568, 51.772648], - [-9.779638, 51.765777], - [-9.801604, 51.768132], - [-9.824224, 51.76789], - [-9.846108, 51.777695], - [-9.855239, 51.763841], - [-9.847551, 51.757186], - [-9.866557, 51.747662], - [-9.883723, 51.748153], - [-9.877886, 51.758495], - [-9.886731, 51.763208], - [-9.902582, 51.754727], - [-9.905914, 51.750092], - [-9.919227, 51.748944], - [-9.928607, 51.740579], - [-9.950228, 51.74055], - [-9.966323, 51.733517], - [-9.974443, 51.73554], - [-9.981444, 51.729494], - [-10.004924, 51.717747], - [-9.999956, 51.714398], - [-9.985693, 51.715411], - [-9.983461, 51.710751], - [-9.956456, 51.716089], - [-9.952811, 51.70961], - [-9.961455, 51.706364], - [-9.972984, 51.69052], - [-9.971839, 51.685109], - [-9.986288, 51.682451], - [-10.000187, 51.682964], - [-10.002456, 51.675722], - [-10.016886, 51.672008], - [-10.028947, 51.677678], - [-10.036311, 51.677059], - [-10.055347, 51.668328], - [-10.070308, 51.673548], - [-10.090126, 51.674619], - [-10.105626, 51.664], - [-10.09743, 51.659709], - [-10.08293, 51.65773], - [-10.071291, 51.651089], - [-10.058253, 51.653823], - [-10.062317, 51.644485], - [-10.059123, 51.640717], - [-10.067337, 51.633343], - [-10.062061, 51.625303], - [-10.076363, 51.620206], - [-10.086801, 51.624469], - [-10.09782, 51.618553], - [-10.106631, 51.618552], - [-10.125959, 51.613003], - [-10.136092, 51.620608], - [-10.145337, 51.618966], - [-10.156139, 51.609622], - [-10.141745, 51.606007], - [-10.143472, 51.596974], - [-10.149646, 51.595603], - [-10.160775, 51.586327], - [-10.153411, 51.583893], - [-10.144642, 51.592034], - [-10.125128, 51.596589], - [-10.113496, 51.601786], - [-10.105373, 51.597484], - [-10.094945, 51.600591], - [-10.08277, 51.59905], - [-10.073313, 51.604259], - [-10.041672, 51.601098], - [-10.051944, 51.593128], - [-10.036664, 51.589713], - [-10.006882, 51.598518], - [-9.98617, 51.610839], - [-9.97215, 51.61637], - [-9.95144, 51.615007], - [-9.933523, 51.616041], - [-9.924367, 51.624262], - [-9.921777, 51.640536], - [-9.914716, 51.638164], - [-9.908178, 51.652267], - [-9.880578, 51.649387], - [-9.869841, 51.655742], - [-9.848118, 51.653622], - [-9.837227, 51.65866], - [-9.819823, 51.657834], - [-9.814025, 51.654467], - [-9.801004, 51.655957], - [-9.786947, 51.660555], - [-9.762707, 51.662198], - [-9.74712, 51.66983], - [-9.73162, 51.66673], - [-9.72488, 51.67074], - [-9.726489, 51.680699], - [-9.734259, 51.686727], - [-9.726911, 51.692218], - [-9.716107, 51.683975], - [-9.718168, 51.676281], - [-9.703656, 51.678651], - [-9.681524, 51.678505], - [-9.668286, 51.672561], - [-9.6456, 51.67428], - [-9.633317, 51.680228], - [-9.624071, 51.680621], - [-9.614468, 51.688464], - [-9.59515, 51.69325], - [-9.584175, 51.701036], - [-9.581519, 51.709404], - [-9.56768, 51.70594], - [-9.556352, 51.713677], - [-9.54962, 51.71282], - [-9.54853, 51.72525], - [-9.551952, 51.738951], - [-9.550323, 51.74452], - [-9.538481, 51.750191], - [-9.52667, 51.7438], - [-9.528383, 51.734089], - [-9.52255, 51.72691], - [-9.51473, 51.72861], - [-9.504732, 51.723947], - [-9.502663, 51.716534], - [-9.490271, 51.71385], - [-9.477411, 51.717083], - [-9.46324, 51.725904], - [-9.452942, 51.710371], - [-9.460358, 51.698119], - [-9.444342, 51.692062], - [-9.459583, 51.689108], - [-9.459849, 51.680275], - [-9.470859, 51.677317], - [-9.490051, 51.677048], - [-9.493083, 51.672557], - [-9.508518, 51.668863], - [-9.508474, 51.66396], - [-9.56331, 51.65266], - [-9.581328, 51.64556], - [-9.602541, 51.641089], - [-9.610733, 51.63657], - [-9.643071, 51.628176], - [-9.649813, 51.628867], - [-9.671562, 51.62345], - [-9.683709, 51.615882], - [-9.702102, 51.61072], - [-9.722231, 51.600771], - [-9.74977, 51.59319], - [-9.769268, 51.583711], - [-9.784551, 51.579659], - [-9.791049, 51.574537], - [-9.791874, 51.567509], - [-9.809051, 51.562433], - [-9.818823, 51.555735], - [-9.828892, 51.553092], - [-9.848644, 51.543652], - [-9.83768, 51.54019], - [-9.82293, 51.5435], - [-9.81551, 51.54188], - [-9.795199, 51.550269], - [-9.77333, 51.55076], - [-9.760454, 51.558804], - [-9.755092, 51.557599], - [-9.72575, 51.56943], - [-9.70376, 51.5708], - [-9.692213, 51.579655], - [-9.681946, 51.577052], - [-9.67599, 51.582845], - [-9.653439, 51.584016], - [-9.637675, 51.593366], - [-9.636517, 51.599035], - [-9.624887, 51.598873], - [-9.587385, 51.610246], - [-9.567232, 51.612817], - [-9.560252, 51.610499], - [-9.552251, 51.616147], - [-9.536771, 51.611837], - [-9.539011, 51.605238], - [-9.54952, 51.60263], - [-9.56065, 51.60463], - [-9.5795, 51.59851], - [-9.585741, 51.589743], - [-9.609971, 51.580248], - [-9.622143, 51.577549], - [-9.618999, 51.571797], - [-9.647253, 51.56438], - [-9.645745, 51.555441], - [-9.66349, 51.543797], - [-9.691984, 51.529768], - [-9.721744, 51.525111], - [-9.73295, 51.526605], - [-9.744904, 51.521047], - [-9.758779, 51.519064], - [-9.772696, 51.511988], - [-9.77361, 51.50693], - [-9.787834, 51.498709], - [-9.81422, 51.491891], - [-9.82441, 51.485972], - [-9.826495, 51.477692], - [-9.815597, 51.47826], - [-9.80732, 51.47416], - [-9.81416, 51.4689], - [-9.818563, 51.455797], - [-9.808928, 51.448784], - [-9.793664, 51.451447], - [-9.785576, 51.457231], - [-9.776413, 51.473202], - [-9.763626, 51.449416], - [-9.738514, 51.464998], - [-9.739049, 51.470639], - [-9.723317, 51.475336], - [-9.706457, 51.476115], - [-9.703324, 51.481588], - [-9.704406, 51.49425], - [-9.69195, 51.49758], - [-9.680198, 51.503924], - [-9.663911, 51.499229], - [-9.65657, 51.50688], - [-9.65769, 51.51417], - [-9.63342, 51.51059], - [-9.636211, 51.504827], - [-9.62085, 51.49182], - [-9.601856, 51.49302], - [-9.586372, 51.496701], - [-9.589473, 51.505167], - [-9.572202, 51.503681], - [-9.548844, 51.508502], - [-9.541323, 51.513538], - [-9.544344, 51.525303], - [-9.532761, 51.530394], - [-9.52542, 51.52932], - [-9.528936, 51.519115], - [-9.50454, 51.517422], - [-9.489492, 51.523976], - [-9.478713, 51.522165], - [-9.454765, 51.525274], - [-9.437688, 51.534506], - [-9.44222, 51.54965], - [-9.414435, 51.552223], - [-9.418805, 51.545414], - [-9.413829, 51.539896], - [-9.40168, 51.54442], - [-9.394699, 51.536109], - [-9.406634, 51.521744], - [-9.427422, 51.512854], - [-9.423967, 51.505729], - [-9.412965, 51.496089], - [-9.402547, 51.503202], - [-9.372809, 51.512951], - [-9.372867, 51.522215], - [-9.36824, 51.526816], - [-9.3363, 51.530541], - [-9.33618, 51.5231], - [-9.34704, 51.517886], - [-9.357868, 51.496443], - [-9.353745, 51.492245], - [-9.358272, 51.485372], - [-9.37176, 51.48836], - [-9.384597, 51.479807], - [-9.381788, 51.470321], - [-9.338893, 51.47295], - [-9.320669, 51.478477], - [-9.312652, 51.484391], - [-9.297537, 51.488443], - [-9.28715, 51.495414], - [-9.265023, 51.501293], - [-9.268948, 51.484273], - [-9.252044, 51.491139], - [-9.236444, 51.49373], - [-9.24025, 51.48194], - [-9.22854, 51.48081], - [-9.220397, 51.486517], - [-9.210131, 51.486681], - [-9.215929, 51.496951], - [-9.203646, 51.50829], - [-9.191034, 51.506686], - [-9.187706, 51.519647], - [-9.165371, 51.529541], - [-9.175172, 51.516034], - [-9.150327, 51.52092], - [-9.129585, 51.526796], - [-9.121084, 51.537368], - [-9.1169, 51.55606], - [-9.123318, 51.558614], - [-9.139725, 51.558805], - [-9.137811, 51.565556], - [-9.110468, 51.560715], - [-9.10703, 51.55454], - [-9.095046, 51.548339], - [-9.08194, 51.54596], - [-9.064091, 51.550361], - [-9.03427, 51.55317], - [-9.02194, 51.5606], - [-9.01658, 51.55856], - [-9.002033, 51.567158], - [-8.97647, 51.56015], - [-8.956692, 51.551962], - [-8.952123, 51.534451], - [-8.942402, 51.536464], - [-8.940404, 51.545151], - [-8.928317, 51.547984], - [-8.92413, 51.54021], - [-8.89781, 51.5466], - [-8.88957, 51.55479], - [-8.895252, 51.560887], - [-8.892509, 51.570271], - [-8.869258, 51.575986], - [-8.866827, 51.59206], - [-8.894719, 51.596546], - [-8.892437, 51.604096], - [-8.87104, 51.594783], - [-8.851329, 51.600652], - [-8.856557, 51.607923], - [-8.873458, 51.604124], - [-8.875241, 51.613944], - [-8.8565, 51.61203], - [-8.84751, 51.59254], - [-8.834478, 51.594244], - [-8.80431, 51.59261], - [-8.780423, 51.586867], - [-8.774976, 51.581952], - [-8.756385, 51.584468], - [-8.751297, 51.580687], - [-8.759063, 51.573275], - [-8.73533, 51.571538], - [-8.729056, 51.574302], - [-8.712529, 51.569424], - [-8.697, 51.58264], - [-8.705705, 51.59035], - [-8.704497, 51.594295], - [-8.68161, 51.60656], - [-8.686405, 51.612585], - [-8.698015, 51.613993], - [-8.70004, 51.62147], - [-8.687574, 51.626598], - [-8.68478, 51.63703], - [-8.702143, 51.633142], - [-8.711207, 51.635743], - [-8.734564, 51.636358], - [-8.749434, 51.646528], - [-8.728103, 51.647148], - [-8.719706, 51.641595], - [-8.694769, 51.646283], - [-8.680511, 51.644039], - [-8.678511, 51.650461], - [-8.670069, 51.653806], - [-8.662477, 51.636467], - [-8.62746, 51.63536], - [-8.60971, 51.64004], - [-8.580215, 51.642918], - [-8.563652, 51.637342], - [-8.555056, 51.623033], - [-8.541991, 51.615179], - [-8.545747, 51.610443], - [-8.536751, 51.606025], - [-8.53843, 51.62312], - [-8.54301, 51.63839], - [-8.551753, 51.64321], - [-8.53335, 51.65603], - [-8.52625, 51.66613], - [-8.523905, 51.676958], - [-8.502776, 51.684379], - [-8.51617, 51.694949], - [-8.533302, 51.689651], - [-8.540719, 51.694362], - [-8.557026, 51.698594], - [-8.566305, 51.693358], - [-8.598735, 51.694568], - [-8.598271, 51.700425], - [-8.582937, 51.696641], - [-8.570892, 51.69721], - [-8.55311, 51.706497], - [-8.52937, 51.694334], - [-8.520201, 51.697403], - [-8.518716, 51.703775], - [-8.507874, 51.704847], - [-8.499969, 51.699717], - [-8.492777, 51.687425], - [-8.49154, 51.67455], - [-8.478576, 51.673734], - [-8.469959, 51.681131], - [-8.457486, 51.682898], - [-8.451046, 51.693524], - [-8.461723, 51.698076], - [-8.460849, 51.702989], - [-8.441917, 51.700255], - [-8.44393, 51.69126], - [-8.437276, 51.68559], - [-8.42415, 51.692359], - [-8.42316, 51.701552], - [-8.407917, 51.7047], - [-8.392592, 51.702624], - [-8.386478, 51.710526], - [-8.373638, 51.715269], - [-8.34218, 51.715667], - [-8.337643, 51.727941], - [-8.329667, 51.734277], - [-8.312618, 51.73165], - [-8.312015, 51.7403], - [-8.304092, 51.742707], - [-8.296446, 51.754584], - [-8.299582, 51.769172], - [-8.308, 51.771681], - [-8.29328, 51.779323], - [-8.273742, 51.797813], - [-8.277159, 51.805809], - [-8.284987, 51.810295], - [-8.29406, 51.805297], - [-8.326214, 51.801581], - [-8.350055, 51.809729], - [-8.371735, 51.811551], - [-8.359146, 51.818198], - [-8.34603, 51.813191], - [-8.337806, 51.805327], - [-8.32638, 51.803496], - [-8.309883, 51.81261], - [-8.312335, 51.82324], - [-8.29943, 51.826271], - [-8.303673, 51.834211], - [-8.316512, 51.834225], - [-8.324786, 51.830661], - [-8.333073, 51.836947], - [-8.344615, 51.837356], - [-8.331003, 51.850982], - [-8.319446, 51.842934], - [-8.309831, 51.846434], - [-8.269117, 51.854104], - [-8.265546, 51.858371], - [-8.249032, 51.856654], - [-8.224643, 51.858285], - [-8.21962, 51.856827], - [-8.190182, 51.859014], - [-8.198886, 51.84354], - [-8.214703, 51.843999], - [-8.241708, 51.834469], - [-8.23305, 51.830613], - [-8.234183, 51.82437], - [-8.247054, 51.825046], - [-8.264044, 51.814611], - [-8.24891, 51.80306], - [-8.251952, 51.794452], - [-8.204671, 51.79373], - [-8.179838, 51.795371], - [-8.173244, 51.784724], - [-8.162227, 51.786734], - [-8.135649, 51.80427], - [-8.115782, 51.807574], - [-8.060766, 51.808849], - [-8.050096, 51.814529], - [-8.039156, 51.815025], - [-8.000438, 51.826495], - [-8.021237, 51.832773], - [-8.020755, 51.8448], - [-8.000143, 51.859249], - [-7.963819, 51.869759], - [-7.94001, 51.87], - [-7.928694, 51.873036], - [-7.916931, 51.872463], - [-7.896333, 51.877459], - [-7.871935, 51.8776], - [-7.864441, 51.884059], - [-7.886229, 51.892158], - [-7.903129, 51.893774], - [-7.908529, 51.90214], - [-7.922089, 51.899225], - [-7.924472, 51.905831], - [-7.906369, 51.91507], - [-7.90043, 51.906858], - [-7.883821, 51.912601], - [-7.86818, 51.92854], - [-7.841372, 51.94093], - [-7.842494, 51.950484], - [-7.831974, 51.953009], - [-7.833264, 51.943289], - [-7.818664, 51.938659], - [-7.79424, 51.94176], - [-7.793949, 51.948726], - [-7.77379, 51.95237], - [-7.764626, 51.949274], - [-7.75713, 51.94163], - [-7.74561, 51.93843], - [-7.720672, 51.939019], - [-7.70679, 51.94775], - [-7.722568, 51.951808], - [-7.719978, 51.957877], - [-7.710792, 51.960444], - [-7.710589, 51.967017], - [-7.694938, 51.974847], - [-7.66617, 51.97484], - [-7.63195, 51.98124], - [-7.61202, 51.98152], - [-7.60605, 51.98683], - [-7.58557, 51.99133], - [-7.57733, 52.00904], - [-7.58456, 52.01682], - [-7.576, 52.02466], - [-7.575409, 52.034212], - [-7.564626, 52.041109], - [-7.547716, 52.044646], - [-7.538588, 52.054524], - [-7.551582, 52.054175], - [-7.56636, 52.050495], - [-7.586233, 52.050687], - [-7.605254, 52.06435], - [-7.623505, 52.062231], - [-7.638777, 52.063335], - [-7.626062, 52.081302], - [-7.596726, 52.091785], - [-7.587535, 52.099725], - [-7.57457, 52.092742], - [-7.566883, 52.081345], - [-7.551637, 52.078097], - [-7.547195, 52.091345], - [-7.540373, 52.098299], - [-7.518972, 52.105979], - [-7.4913, 52.10368], - [-7.48277, 52.10985], - [-7.47061, 52.11226], - [-7.462232, 52.121788], - [-7.447926, 52.122642], - [-7.443005, 52.127059], - [-7.401016, 52.131392], - [-7.386532, 52.129191], - [-7.371598, 52.137284], - [-7.347558, 52.138147], - [-7.321343, 52.137303], - [-7.305538, 52.135202], - [-7.290504, 52.141035], - [-7.22133, 52.13221], - [-7.20578, 52.13582], - [-7.1838, 52.13356], - [-7.170598, 52.137912], - [-7.161827, 52.150385], - [-7.152032, 52.15809], - [-7.134214, 52.156735], - [-7.111002, 52.151218], - [-7.097629, 52.144957], - [-7.088132, 52.151565], - [-7.102557, 52.156131], - [-7.112155, 52.154403], - [-7.130928, 52.158571], - [-7.13105, 52.168595], - [-7.106528, 52.170187], - [-7.092454, 52.168297], - [-7.07867, 52.156588], - [-7.090978, 52.145063], - [-7.107995, 52.133632], - [-7.097118, 52.127115], - [-7.082501, 52.133822], - [-7.05032, 52.13847], - [-7.04254, 52.13554], - [-7.02139, 52.13351], - [-7.015052, 52.138264], - [-6.99645, 52.14167], - [-6.993487, 52.14894], - [-6.975253, 52.164768], - [-6.968853, 52.177348], - [-6.981383, 52.185648], - [-6.979743, 52.199188], - [-6.970583, 52.207998], - [-6.975793, 52.212708], - [-6.968083, 52.226158], - [-6.969931, 52.239246], - [-6.96553, 52.240609], - [-6.986628, 52.24927], - [-6.992114, 52.257509], - [-6.984071, 52.265631], - [-6.987848, 52.274145], - [-7.000104, 52.275725], - [-7.025705, 52.269167], - [-7.037869, 52.256335], - [-7.069716, 52.256727], - [-7.084987, 52.251933], - [-7.092069, 52.252624], - [-7.100484, 52.26604], - [-7.132884, 52.268958], - [-7.151659, 52.279911], - [-7.164081, 52.276665], - [-7.18954, 52.258872], - [-7.19978, 52.248184], - [-7.211862, 52.243211], - [-7.229044, 52.247961], - [-7.242241, 52.262643], - [-7.258271, 52.264246], - [-7.266643, 52.269196], - [-7.282908, 52.28971], - [-7.284122, 52.297213], - [-7.297246, 52.3016], - [-7.299257, 52.311217], - [-7.323097, 52.330807], - [-7.353274, 52.335388], - [-7.356832, 52.340974], - [-7.372088, 52.343054], - [-7.375981, 52.3502], - [-7.388622, 52.356669], - [-7.39701, 52.364205], - [-7.388192, 52.383945], - [-7.393059, 52.398564], - [-7.382325, 52.420089], - [-7.391194, 52.428598], - [-7.400181, 52.428013], - [-7.403496, 52.434272], - [-7.419826, 52.443334], - [-7.422959, 52.451989], - [-7.441075, 52.459503], - [-7.441047, 52.465853], - [-7.460943, 52.465844], - [-7.461254, 52.474838], - [-7.456053, 52.484154], - [-7.43039, 52.497636], - [-7.420009, 52.510831], - [-7.432482, 52.518284], - [-7.443298, 52.510452], - [-7.457137, 52.52308], - [-7.458531, 52.535708], - [-7.452761, 52.557618], - [-7.459067, 52.557947], - [-7.451261, 52.580965], - [-7.475625, 52.590925], - [-7.480943, 52.603952], - [-7.474972, 52.615961], - [-7.51062, 52.642531], - [-7.520973, 52.654788], - [-7.51946, 52.661462], - [-7.535374, 52.679076], - [-7.536334, 52.689475], - [-7.547112, 52.694789], - [-7.547834, 52.700454], - [-7.605843, 52.719848], - [-7.625965, 52.73362], - [-7.646068, 52.735184], - [-7.654999, 52.747496], - [-7.668346, 52.754065], - [-7.667279, 52.760871], - [-7.671125, 52.777557], - [-7.67881, 52.794272], - [-7.680183, 52.805539], - [-7.689085, 52.808141], - [-7.688558, 52.815875], - [-7.697079, 52.831867], - [-7.716393, 52.837439], - [-7.732162, 52.85203], - [-7.734498, 52.858438], - [-7.717287, 52.865197], - [-7.72441, 52.888788], - [-7.70886, 52.891389], - [-7.706821, 52.901009], - [-7.692091, 52.911396], - [-7.675878, 52.915445], - [-7.665876, 52.921263], - [-7.660237, 52.933925], - [-7.702053, 52.934072], - [-7.711384, 52.942132], - [-7.722653, 52.944158], - [-7.730547, 52.95755], - [-7.770305, 52.97067], - [-7.790953, 52.970132], - [-7.793318, 52.978155], - [-7.802271, 52.981708], - [-7.825831, 52.97415], - [-7.827801, 52.965558], - [-7.84037, 52.964623], - [-7.845121, 52.955406], - [-7.864565, 52.956472], - [-7.86269, 52.942663], - [-7.849996, 52.93987], - [-7.844599, 52.932651], - [-7.871346, 52.923664], - [-7.860625, 52.916138], - [-7.874122, 52.913614], - [-7.892393, 52.905682], - [-7.884595, 52.898918], - [-7.89579, 52.893125], - [-7.91877, 52.893247], - [-7.912288, 52.884252], - [-7.93244, 52.8762], - [-7.939099, 52.888315], - [-7.956322, 52.89415], - [-7.96126, 52.890836], - [-7.945554, 52.880613], - [-7.944832, 52.866349], - [-7.963634, 52.857948], - [-7.967087, 52.848833], - [-7.975211, 52.848596], - [-7.988919, 52.855607], - [-7.99591, 52.862608], - [-7.993687, 52.873466], - [-7.98717, 52.87921], - [-8.039589, 52.889313], - [-8.043084, 52.902982], - [-8.037965, 52.911735], - [-8.05522, 52.928121], - [-8.046086, 52.938361], - [-8.040828, 52.938891], - [-8.01304, 52.928504], - [-7.992968, 52.931028], - [-7.984231, 52.938596], - [-7.985731, 52.946192], - [-7.974775, 52.949095], - [-7.988006, 52.965607], - [-7.987381, 52.972615], - [-8.00818, 52.984258], - [-8.002688, 52.993188], - [-7.992849, 52.99882], - [-7.978783, 52.997665], - [-7.961045, 52.992801], - [-7.950024, 52.995473], - [-7.960129, 53.006374], - [-7.963442, 53.016705], - [-7.962219, 53.031129], - [-7.956518, 53.034616], - [-7.963384, 53.042178], - [-7.954388, 53.046617], - [-7.943242, 53.043712], - [-7.93587, 53.046827], - [-7.934021, 53.060883], - [-7.926651, 53.068906], - [-7.92822, 53.078715], - [-7.920346, 53.089227], - [-7.928248, 53.097046], - [-7.920491, 53.104193], - [-7.935957, 53.109702], - [-7.941563, 53.118633], - [-7.9552, 53.125346], - [-7.974285, 53.129101], - [-7.977873, 53.134381], - [-7.994572, 53.139148], - [-8.001565, 53.138237], - [-8.019078, 53.147466], - [-8.054976, 53.15388], - [-8.057639, 53.15707], - [-8.081352, 53.166966], - [-8.08472, 53.162838], - [-8.104175, 53.159891], - [-8.125135, 53.159553], - [-8.148007, 53.145168], - [-8.161392, 53.134545], - [-8.172371, 53.120991], - [-8.174603, 53.111164], - [-8.185634, 53.098671], - [-8.197591, 53.089502], - [-8.199805, 53.083591], - [-8.213556, 53.07843], - [-8.218919, 53.067677], - [-8.249605, 53.06302], - [-8.267892, 53.056024], - [-8.268925, 53.036802], - [-8.27839, 53.018677], - [-8.301607, 53.007552], - [-8.316827, 52.98517], - [-8.339551, 52.987433], - [-8.34555, 52.985156], - [-8.351522, 52.975715], - [-8.358764, 52.971243], - [-8.380446, 52.982674], - [-8.402771, 52.986362], - [-8.407223, 52.994207], - [-8.418566, 52.993487], - [-8.424476, 52.983341], - [-8.450115, 52.97229], - [-8.461178, 52.982275], - [-8.484672, 52.988883], - [-8.499191, 52.983378], - [-8.510068, 52.99901], - [-8.508498, 53.006351], - [-8.523988, 53.01167], - [-8.528186, 53.023747], - [-8.551568, 53.022197], - [-8.560196, 53.030829], - [-8.555799, 53.042151], - [-8.595344, 53.039806], - [-8.615317, 53.037412], - [-8.62676, 53.034028], - [-8.640458, 53.039717], - [-8.665163, 53.03933], - [-8.675834, 53.037524], - [-8.693999, 53.026556], - [-8.719552, 53.025352], - [-8.731903, 53.014214], - [-8.737006, 53.005887], - [-8.763888, 52.991686], - [-8.779513, 52.98869], - [-8.780157, 52.974951], - [-8.807862, 52.975783], - [-8.827007, 52.980251], - [-8.836659, 52.990509], - [-8.846378, 52.983355], - [-8.847521, 52.976112], - [-8.872839, 52.98004], - [-8.882557, 52.97655], - [-8.89462, 52.998931], - [-8.89361, 53.010507], - [-8.883421, 53.016413], - [-8.892486, 53.030735], - [-8.899966, 53.03334], - [-8.900058, 53.049173], - [-8.8907, 53.059634], - [-8.906017, 53.066347], - [-8.920133, 53.066203], - [-8.932933, 53.077846], - [-8.956206, 53.087107], - [-8.970291, 53.086441], - [-8.974887, 53.092297], - [-8.993356, 53.094675], - [-8.998698, 53.099981], - [-9.011048, 53.102832], - [-9.01936, 53.110622], - [-9.027999, 53.130239], - [-9.025888, 53.140203], - [-9.009377, 53.14085] - ] - ], - [ - [ - [-9.919496, 51.621666], - [-9.908045, 51.614403], - [-9.886218, 51.61763], - [-9.879363, 51.615623], - [-9.838816, 51.6231], - [-9.820553, 51.625249], - [-9.809882, 51.632416], - [-9.8005, 51.63091], - [-9.787456, 51.640872], - [-9.787006, 51.646697], - [-9.80128, 51.64449], - [-9.819751, 51.637801], - [-9.828907, 51.642708], - [-9.902434, 51.63835], - [-9.919496, 51.621666] - ] - ], - [ - [ - [-9.528116, 51.42717], - [-9.513905, 51.422065], - [-9.501142, 51.430171], - [-9.495422, 51.427912], - [-9.479104, 51.434471], - [-9.460854, 51.448499], - [-9.465247, 51.453193], - [-9.48743, 51.450119], - [-9.503094, 51.441533], - [-9.507396, 51.442332], - [-9.528116, 51.42717] - ] - ], - [ - [ - [-9.439036, 51.46131], - [-9.434674, 51.452208], - [-9.39876, 51.46806], - [-9.393053, 51.472774], - [-9.400663, 51.478408], - [-9.39853, 51.48882], - [-9.404347, 51.490936], - [-9.416508, 51.485805], - [-9.407529, 51.472238], - [-9.424615, 51.473656], - [-9.42631, 51.465246], - [-9.439036, 51.46131] - ] - ], - [ - [ - [-10.430996, 51.882182], - [-10.415325, 51.883314], - [-10.393892, 51.892118], - [-10.38122, 51.88704], - [-10.355686, 51.890357], - [-10.34665, 51.896503], - [-10.307307, 51.906031], - [-10.289067, 51.916388], - [-10.287511, 51.926993], - [-10.295798, 51.928571], - [-10.317328, 51.924207], - [-10.319935, 51.931691], - [-10.334172, 51.928857], - [-10.353987, 51.933916], - [-10.350703, 51.924683], - [-10.385577, 51.913004], - [-10.391758, 51.915052], - [-10.408369, 51.908168], - [-10.423471, 51.895781], - [-10.424948, 51.887487], - [-10.430996, 51.882182] - ] - ], - [ - [ - [-10.23788, 51.5834], - [-10.234252, 51.579043], - [-10.210929, 51.589282], - [-10.178174, 51.596362], - [-10.15677, 51.607611], - [-10.165888, 51.612384], - [-10.173817, 51.608786], - [-10.194465, 51.606384], - [-10.215101, 51.593393], - [-10.23788, 51.5834] - ] - ], - [ - [ - [-9.392583, 51.501548], - [-9.384895, 51.500048], - [-9.385267, 51.488164], - [-9.362041, 51.494667], - [-9.36499, 51.5043], - [-9.356959, 51.506745], - [-9.357829, 51.515447], - [-9.386144, 51.505864], - [-9.392583, 51.501548] - ] - ], - [ - [ - [-10.580378, 52.072425], - [-10.563735, 52.076851], - [-10.56048, 52.081983], - [-10.542345, 52.088558], - [-10.536786, 52.087388], - [-10.524037, 52.094631], - [-10.515962, 52.095448], - [-10.507238, 52.10439], - [-10.521382, 52.104381], - [-10.532953, 52.098318], - [-10.561504, 52.089728], - [-10.575493, 52.07908], - [-10.580378, 52.072425] - ] - ], - [ - [ - [-9.535676, 51.679075], - [-9.5216, 51.68015], - [-9.506449, 51.684803], - [-9.5016, 51.67908], - [-9.480366, 51.69774], - [-9.487465, 51.70103], - [-9.503244, 51.69779], - [-9.508934, 51.692491], - [-9.533085, 51.683139], - [-9.535676, 51.679075] - ] - ], - [ - [ - [-9.456051, 51.488936], - [-9.443472, 51.492695], - [-9.428281, 51.489293], - [-9.436606, 51.49994], - [-9.455145, 51.493208], - [-9.456051, 51.488936] - ] - ], - [ - [ - [-9.813162, 51.821419], - [-9.808635, 51.817285], - [-9.791221, 51.825577], - [-9.792707, 51.831302], - [-9.809498, 51.827089], - [-9.813162, 51.821419] - ] - ], - [ - [ - [-9.584601, 51.491174], - [-9.576944, 51.489336], - [-9.55355, 51.49434], - [-9.561671, 51.498942], - [-9.584601, 51.491174] - ] - ], - [ - [ - [-10.263921, 51.725706], - [-10.245394, 51.726062], - [-10.239225, 51.735953], - [-10.24946, 51.736444], - [-10.259749, 51.732577], - [-10.263921, 51.725706] - ] - ], - [ - [ - [-9.368328, 51.51947], - [-9.35906, 51.515853], - [-9.340648, 51.521495], - [-9.343317, 51.527241], - [-9.360007, 51.52456], - [-9.368328, 51.51947] - ] - ], - [ - [ - [-9.056817, 52.707742], - [-9.02253, 52.712024], - [-9.016302, 52.717146], - [-9.027159, 52.721136], - [-9.054063, 52.711036], - [-9.056817, 52.707742] - ] - ], - [ - [ - [-9.061056, 52.6792], - [-9.044102, 52.681965], - [-9.04486, 52.689963], - [-9.061056, 52.6792] - ] - ], - [ - [ - [-10.315682, 51.937054], - [-10.302819, 51.931502], - [-10.298502, 51.937884], - [-10.306082, 51.941894], - [-10.315682, 51.937054] - ] - ], - [ - [ - [-10.591843, 52.125713], - [-10.578865, 52.124328], - [-10.573111, 52.12737], - [-10.576249, 52.134852], - [-10.591843, 52.125713] - ] - ], - [ - [ - [-9.124254, 52.622016], - [-9.10796, 52.615684], - [-9.101783, 52.618271], - [-9.104953, 52.626731], - [-9.111353, 52.627926], - [-9.124254, 52.622016] - ] - ], - [ - [ - [-9.051787, 53.165643], - [-9.066868, 53.168906], - [-9.082372, 53.167598], - [-9.085185, 53.161918], - [-9.07224, 53.157546], - [-9.051334, 53.164982], - [-9.051787, 53.165643] - ] - ], - [ - [ - [-8.961116, 52.705539], - [-8.950078, 52.702404], - [-8.935932, 52.710809], - [-8.941796, 52.715359], - [-8.961116, 52.705539] - ] - ] - ] - }, - "properties": { - "OSM_ID": -278750, - "name": "Munster", - "name_EN": "Munster", - "name_GA": "Cúige Mumhan", - "ISOCODE": "IE-M" - } - }, - { - "type": "Feature", - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-8.321741, 54.473362], - [-8.336868, 54.470206], - [-8.401012, 54.463214], - [-8.426655, 54.454644], - [-8.444816, 54.456149], - [-8.452434, 54.461755], - [-8.447121, 54.466741], - [-8.454501, 54.472983], - [-8.469028, 54.469829], - [-8.465471, 54.461717], - [-8.478391, 54.45393], - [-8.468021, 54.446344], - [-8.46638, 54.440218], - [-8.482022, 54.431787], - [-8.492817, 54.417181], - [-8.519607, 54.410826], - [-8.528372, 54.40337], - [-8.550741, 54.39738], - [-8.568818, 54.409665], - [-8.571603, 54.39126], - [-8.581348, 54.390387], - [-8.59173, 54.38492], - [-8.619094, 54.379053], - [-8.62173, 54.371134], - [-8.640646, 54.371204], - [-8.675204, 54.361879], - [-8.668258, 54.346682], - [-8.657751, 54.343178], - [-8.649049, 54.335755], - [-8.656343, 54.323804], - [-8.646345, 54.32286], - [-8.647166, 54.331411], - [-8.634386, 54.335615], - [-8.619403, 54.334851], - [-8.6025, 54.338509], - [-8.594905, 54.342959], - [-8.57603, 54.343903], - [-8.551775, 54.340813], - [-8.544534, 54.333432], - [-8.511368, 54.327871], - [-8.500669, 54.323225], - [-8.508131, 54.315523], - [-8.530074, 54.315028], - [-8.566406, 54.325074], - [-8.573591, 54.322239], - [-8.572603, 54.304582], - [-8.553003, 54.305824], - [-8.537604, 54.302149], - [-8.526819, 54.303366], - [-8.491608, 54.29208], - [-8.480257, 54.287102], - [-8.491344, 54.282153], - [-8.506287, 54.283078], - [-8.520951, 54.278113], - [-8.545039, 54.280323], - [-8.559773, 54.277174], - [-8.583987, 54.276327], - [-8.591993, 54.28394], - [-8.60125, 54.281485], - [-8.613323, 54.267042], - [-8.597609, 54.253335], - [-8.588227, 54.252404], - [-8.572115, 54.239587], - [-8.567309, 54.231011], - [-8.544577, 54.230158], - [-8.541608, 54.225065], - [-8.530375, 54.222284], - [-8.537282, 54.215367], - [-8.547167, 54.218282], - [-8.564709, 54.216094], - [-8.579795, 54.207237], - [-8.587705, 54.209378], - [-8.591972, 54.222144], - [-8.604366, 54.222816], - [-8.604888, 54.229625], - [-8.628001, 54.23784], - [-8.643361, 54.253061], - [-8.645679, 54.260986], - [-8.656348, 54.270645], - [-8.682196, 54.273243], - [-8.700141, 54.267746], - [-8.725098, 54.262753], - [-8.740834, 54.267451], - [-8.756532, 54.269017], - [-8.75363, 54.277599], - [-8.773222, 54.276939], - [-8.785045, 54.271393], - [-8.793447, 54.261114], - [-8.827021, 54.252922], - [-8.84418, 54.257158], - [-8.8568, 54.263855], - [-8.865166, 54.262189], - [-8.893923, 54.272298], - [-8.905394, 54.28279], - [-8.927146, 54.290397], - [-8.963631, 54.294014], - [-8.973665, 54.291184], - [-8.991718, 54.294464], - [-8.998467, 54.291893], - [-9.024938, 54.296282], - [-9.038498, 54.293418], - [-9.053561, 54.294371], - [-9.051345, 54.286802], - [-9.053932, 54.274062], - [-9.06449, 54.266411], - [-9.065818, 54.25976], - [-9.077731, 54.244329], - [-9.096634, 54.225316], - [-9.095056, 54.214193], - [-9.100467, 54.21172], - [-9.127154, 54.209306], - [-9.134204, 54.203259], - [-9.119413, 54.20183], - [-9.127751, 54.195451], - [-9.125075, 54.181975], - [-9.145494, 54.174268], - [-9.143159, 54.183229], - [-9.161178, 54.18867], - [-9.158413, 54.200153], - [-9.172843, 54.201444], - [-9.182329, 54.208343], - [-9.191487, 54.207408], - [-9.219152, 54.21344], - [-9.215213, 54.222968], - [-9.197723, 54.229363], - [-9.191714, 54.240109], - [-9.19572, 54.247205], - [-9.214799, 54.243725], - [-9.228221, 54.235225], - [-9.239606, 54.237045], - [-9.219872, 54.24576], - [-9.214893, 54.251409], - [-9.216239, 54.260953], - [-9.206771, 54.27594], - [-9.213436, 54.287213], - [-9.222263, 54.28677], - [-9.228021, 54.278728], - [-9.241476, 54.279828], - [-9.243931, 54.270252], - [-9.254253, 54.269534], - [-9.255338, 54.281455], - [-9.248796, 54.293697], - [-9.251002, 54.3011], - [-9.264472, 54.309939], - [-9.288273, 54.311553], - [-9.304723, 54.316009], - [-9.328492, 54.31841], - [-9.339561, 54.326304], - [-9.352721, 54.316655], - [-9.372132, 54.306333], - [-9.376737, 54.296092], - [-9.38722, 54.295656], - [-9.390528, 54.307073], - [-9.432205, 54.312511], - [-9.452284, 54.307074], - [-9.463755, 54.309869], - [-9.480054, 54.318496], - [-9.490824, 54.315993], - [-9.503667, 54.319125], - [-9.509091, 54.310379], - [-9.532815, 54.312015], - [-9.533697, 54.318145], - [-9.560707, 54.312789], - [-9.55907, 54.32308], - [-9.57852, 54.31965], - [-9.59347, 54.32356], - [-9.643834, 54.324593], - [-9.649525, 54.317577], - [-9.67244, 54.318793], - [-9.688472, 54.317545], - [-9.720109, 54.325517], - [-9.740095, 54.327243], - [-9.745367, 54.334678], - [-9.759684, 54.339157], - [-9.777132, 54.337722], - [-9.784178, 54.3451], - [-9.793125, 54.33838], - [-9.804602, 54.343784], - [-9.836126, 54.327184], - [-9.859704, 54.323776], - [-9.861222, 54.319579], - [-9.854752, 54.307298], - [-9.842343, 54.300911], - [-9.832374, 54.299319], - [-9.818723, 54.290819], - [-9.80831, 54.295297], - [-9.790789, 54.297255], - [-9.778017, 54.289708], - [-9.784884, 54.285451], - [-9.793934, 54.29376], - [-9.804036, 54.293447], - [-9.808402, 54.287335], - [-9.804156, 54.277898], - [-9.785804, 54.270285], - [-9.773511, 54.268664], - [-9.741106, 54.256409], - [-9.747281, 54.253094], - [-9.764637, 54.256136], - [-9.781528, 54.264188], - [-9.803709, 54.269675], - [-9.814372, 54.285286], - [-9.832502, 54.28005], - [-9.841101, 54.280783], - [-9.855918, 54.274232], - [-9.865563, 54.274578], - [-9.870697, 54.260542], - [-9.878484, 54.25768], - [-9.880354, 54.245948], - [-9.866834, 54.234491], - [-9.877157, 54.226764], - [-9.875597, 54.218421], - [-9.898529, 54.21326], - [-9.947618, 54.212586], - [-9.969852, 54.2177], - [-9.946548, 54.227425], - [-9.917951, 54.226976], - [-9.922055, 54.232778], - [-9.909279, 54.239642], - [-9.902074, 54.239128], - [-9.889321, 54.26354], - [-9.893193, 54.267788], - [-9.9063, 54.26168], - [-9.957296, 54.271349], - [-9.973733, 54.288127], - [-9.986634, 54.289966], - [-9.98869, 54.299603], - [-10.001879, 54.305731], - [-10.008024, 54.292771], - [-10.020408, 54.293479], - [-10.03498, 54.281974], - [-10.047765, 54.285158], - [-10.059382, 54.277326], - [-10.070302, 54.276466], - [-10.079411, 54.26753], - [-10.081647, 54.257372], - [-10.095384, 54.247519], - [-10.087394, 54.242818], - [-10.094944, 54.237613], - [-10.081151, 54.231302], - [-10.067651, 54.232316], - [-10.055125, 54.226727], - [-10.054929, 54.218509], - [-10.070086, 54.211365], - [-10.082719, 54.209533], - [-10.094882, 54.200068], - [-10.08686, 54.18778], - [-10.085957, 54.180731], - [-10.098662, 54.157329], - [-10.106974, 54.148386], - [-10.118176, 54.145894], - [-10.123709, 54.134137], - [-10.125407, 54.121597], - [-10.121922, 54.112262], - [-10.132954, 54.109217], - [-10.120638, 54.094073], - [-10.113278, 54.097091], - [-10.09403, 54.087674], - [-10.080631, 54.086592], - [-10.070253, 54.090189], - [-10.060195, 54.098938], - [-10.068897, 54.101352], - [-10.074235, 54.111559], - [-10.092383, 54.112818], - [-10.09141, 54.120943], - [-10.085018, 54.127269], - [-10.066522, 54.12421], - [-10.074101, 54.140783], - [-10.057808, 54.143931], - [-10.058408, 54.148964], - [-10.093104, 54.155437], - [-10.089431, 54.161592], - [-10.070943, 54.16278], - [-10.070278, 54.168305], - [-10.037269, 54.172077], - [-10.041759, 54.1864], - [-10.040021, 54.193344], - [-10.013312, 54.189877], - [-10.004586, 54.195916], - [-10.008992, 54.205508], - [-10.024537, 54.211138], - [-10.020085, 54.214697], - [-10.00676, 54.213459], - [-10.002628, 54.22472], - [-9.992181, 54.227275], - [-9.987475, 54.213713], - [-9.977511, 54.210566], - [-9.955571, 54.19675], - [-9.945201, 54.198812], - [-9.931907, 54.194081], - [-9.937482, 54.186347], - [-9.933976, 54.182492], - [-9.942527, 54.176139], - [-9.954988, 54.173037], - [-9.93809, 54.156166], - [-9.923024, 54.153685], - [-9.932889, 54.146694], - [-9.942216, 54.151199], - [-9.955337, 54.149011], - [-9.960258, 54.143275], - [-9.948554, 54.140569], - [-9.933416, 54.125621], - [-9.92397, 54.133084], - [-9.912458, 54.129854], - [-9.901865, 54.11787], - [-9.910459, 54.116666], - [-9.930164, 54.12077], - [-9.936024, 54.113234], - [-9.956302, 54.10716], - [-9.963975, 54.108902], - [-9.988576, 54.100694], - [-9.975838, 54.095403], - [-9.967954, 54.08561], - [-9.962826, 54.071212], - [-9.967592, 54.061742], - [-9.945123, 54.066653], - [-9.936438, 54.062004], - [-9.922506, 54.067716], - [-9.910837, 54.068022], - [-9.892909, 54.072411], - [-9.891202, 54.080781], - [-9.900427, 54.090514], - [-9.900633, 54.096955], - [-9.885639, 54.093436], - [-9.872751, 54.099626], - [-9.876154, 54.107972], - [-9.859283, 54.112491], - [-9.856843, 54.102581], - [-9.840645, 54.090263], - [-9.848005, 54.086915], - [-9.864791, 54.0863], - [-9.870579, 54.082237], - [-9.868716, 54.073587], - [-9.85822, 54.066024], - [-9.876162, 54.056498], - [-9.887554, 54.057237], - [-9.89208, 54.050068], - [-9.907557, 54.04661], - [-9.907039, 54.037698], - [-9.898983, 54.032492], - [-9.896292, 54.019587], - [-9.88213, 54.019405], - [-9.879978, 54.008414], - [-9.855627, 54.001553], - [-9.848319, 53.995078], - [-9.846606, 53.973661], - [-9.851414, 53.967111], - [-9.841103, 53.962314], - [-9.821707, 53.958161], - [-9.800931, 53.968295], - [-9.792977, 53.956295], - [-9.797532, 53.949836], - [-9.791108, 53.943906], - [-9.794743, 53.923135], - [-9.794035, 53.913751], - [-9.805016, 53.913705], - [-9.808842, 53.923893], - [-9.814886, 53.927415], - [-9.800433, 53.934733], - [-9.79752, 53.946526], - [-9.802257, 53.951087], - [-9.819505, 53.945991], - [-9.833782, 53.952363], - [-9.838875, 53.958762], - [-9.885839, 53.957587], - [-9.905528, 53.951491], - [-9.906221, 53.943804], - [-9.919714, 53.939566], - [-9.919572, 53.932469], - [-9.903492, 53.932073], - [-9.914826, 53.922071], - [-9.915035, 53.917968], - [-9.92989, 53.912851], - [-9.930997, 53.905241], - [-9.922485, 53.891765], - [-9.931195, 53.884803], - [-9.935556, 53.872474], - [-9.915883, 53.868306], - [-9.903059, 53.862033], - [-9.890839, 53.866588], - [-9.881158, 53.864318], - [-9.856001, 53.868081], - [-9.842999, 53.872664], - [-9.819833, 53.875979], - [-9.802622, 53.885226], - [-9.784545, 53.902337], - [-9.77607, 53.905127], - [-9.747606, 53.893689], - [-9.740562, 53.901504], - [-9.724841, 53.896819], - [-9.711677, 53.89992], - [-9.697774, 53.897904], - [-9.689633, 53.899936], - [-9.665624, 53.894093], - [-9.638884, 53.895727], - [-9.633971, 53.89206], - [-9.613138, 53.894411], - [-9.607659, 53.891902], - [-9.586879, 53.897405], - [-9.569363, 53.893064], - [-9.55346, 53.88623], - [-9.564229, 53.877995], - [-9.58649, 53.867829], - [-9.573382, 53.865804], - [-9.573808, 53.858532], - [-9.584722, 53.856231], - [-9.589483, 53.850514], - [-9.603243, 53.846028], - [-9.617501, 53.844751], - [-9.61146, 53.838291], - [-9.620074, 53.832558], - [-9.626941, 53.823101], - [-9.617176, 53.811537], - [-9.592297, 53.810468], - [-9.57514, 53.804135], - [-9.570021, 53.808367], - [-9.553481, 53.80676], - [-9.572459, 53.786956], - [-9.581653, 53.781685], - [-9.596711, 53.782228], - [-9.620598, 53.778307], - [-9.625732, 53.783721], - [-9.639273, 53.789628], - [-9.641323, 53.781928], - [-9.657753, 53.781708], - [-9.661706, 53.787423], - [-9.683482, 53.785536], - [-9.700203, 53.779211], - [-9.741533, 53.774048], - [-9.762576, 53.774354], - [-9.779323, 53.782908], - [-9.803033, 53.778528], - [-9.827429, 53.76926], - [-9.834013, 53.770898], - [-9.864574, 53.768552], - [-9.883839, 53.763525], - [-9.904633, 53.76337], - [-9.907583, 53.753318], - [-9.899323, 53.751198], - [-9.893525, 53.736632], - [-9.901043, 53.720318], - [-9.911852, 53.711574], - [-9.910882, 53.703188], - [-9.919603, 53.689688], - [-9.903207, 53.674429], - [-9.913428, 53.663009], - [-9.908367, 53.651907], - [-9.883903, 53.645389], - [-9.875905, 53.632874], - [-9.853993, 53.625487], - [-9.840124, 53.6237], - [-9.826263, 53.617617], - [-9.815475, 53.615986], - [-9.788513, 53.603647], - [-9.77264, 53.601358], - [-9.760671, 53.603443], - [-9.742076, 53.602238], - [-9.715546, 53.604855], - [-9.700144, 53.604332], - [-9.705317, 53.595036], - [-9.730742, 53.600435], - [-9.759553, 53.598187], - [-9.788773, 53.594297], - [-9.803818, 53.600572], - [-9.809916, 53.606336], - [-9.830139, 53.610895], - [-9.843073, 53.617877], - [-9.860192, 53.620429], - [-9.870804, 53.624763], - [-9.873461, 53.616278], - [-9.901415, 53.612441], - [-9.910447, 53.600963], - [-9.933565, 53.597842], - [-9.947326, 53.600828], - [-9.965007, 53.59979], - [-9.991963, 53.609957], - [-10.006954, 53.611269], - [-10.014742, 53.606594], - [-10.028139, 53.606911], - [-10.034436, 53.610495], - [-10.049256, 53.609418], - [-10.043522, 53.601253], - [-10.045021, 53.59542], - [-10.017453, 53.576817], - [-9.997701, 53.573185], - [-9.964363, 53.570727], - [-9.985566, 53.563133], - [-9.966666, 53.558193], - [-9.953911, 53.55243], - [-9.971932, 53.550153], - [-9.981021, 53.556605], - [-9.989663, 53.548237], - [-10.004953, 53.549117], - [-10.020745, 53.560321], - [-10.013333, 53.566737], - [-10.044003, 53.571597], - [-10.065943, 53.571017], - [-10.077693, 53.575907], - [-10.095683, 53.572677], - [-10.098383, 53.577007], - [-10.112163, 53.577527], - [-10.120603, 53.570777], - [-10.093277, 53.557146], - [-10.106563, 53.555335], - [-10.128275, 53.561511], - [-10.131855, 53.557759], - [-10.154463, 53.565587], - [-10.193243, 53.552267], - [-10.197383, 53.546337], - [-10.184547, 53.540916], - [-10.167603, 53.542917], - [-10.145429, 53.542261], - [-10.142587, 53.529312], - [-10.134373, 53.522617], - [-10.096348, 53.518966], - [-10.080549, 53.51292], - [-10.075973, 53.515271], - [-10.046138, 53.50542], - [-10.061816, 53.502863], - [-10.074303, 53.509967], - [-10.093813, 53.516837], - [-10.133073, 53.521987], - [-10.132904, 53.514558], - [-10.124455, 53.510316], - [-10.107771, 53.495844], - [-10.087962, 53.496323], - [-10.055434, 53.487269], - [-10.036023, 53.473546], - [-10.051147, 53.474886], - [-10.055973, 53.481556], - [-10.083942, 53.488468], - [-10.090778, 53.486209], - [-10.091083, 53.477286], - [-10.066253, 53.463286], - [-10.041783, 53.463516], - [-10.043373, 53.458106], - [-10.057973, 53.458236], - [-10.064504, 53.442011], - [-10.075513, 53.438866], - [-10.093463, 53.444596], - [-10.097253, 53.450196], - [-10.121763, 53.451896], - [-10.126909, 53.456159], - [-10.139663, 53.446986], - [-10.153172, 53.442993], - [-10.15518, 53.434588], - [-10.183037, 53.413644], - [-10.177854, 53.410199], - [-10.152009, 53.419304], - [-10.14676, 53.418896], - [-10.133967, 53.40715], - [-10.105108, 53.409641], - [-10.068418, 53.420619], - [-10.062048, 53.414779], - [-10.043229, 53.412563], - [-10.03505, 53.408028], - [-10.038072, 53.398301], - [-10.035946, 53.389278], - [-10.027818, 53.384639], - [-10.018633, 53.385457], - [-9.987084, 53.379195], - [-9.973885, 53.383224], - [-9.964862, 53.377824], - [-9.952216, 53.380968], - [-9.942078, 53.37746], - [-9.917069, 53.38705], - [-9.919589, 53.406048], - [-9.915305, 53.414697], - [-9.897586, 53.420761], - [-9.884832, 53.414707], - [-9.881533, 53.393451], - [-9.861093, 53.389501], - [-9.845743, 53.404341], - [-9.836763, 53.405691], - [-9.825453, 53.417671], - [-9.802028, 53.418489], - [-9.799324, 53.41335], - [-9.821574, 53.41115], - [-9.815213, 53.401103], - [-9.796383, 53.402893], - [-9.799984, 53.395181], - [-9.793579, 53.388803], - [-9.807446, 53.386151], - [-9.823056, 53.378776], - [-9.838566, 53.379239], - [-9.844235, 53.373633], - [-9.854236, 53.374331], - [-9.865686, 53.369261], - [-9.889236, 53.368701], - [-9.894966, 53.354296], - [-9.881297, 53.344124], - [-9.892799, 53.341927], - [-9.899886, 53.336882], - [-9.896548, 53.330033], - [-9.905937, 53.326041], - [-9.897866, 53.317925], - [-9.890148, 53.318911], - [-9.882583, 53.311985], - [-9.870739, 53.311955], - [-9.856003, 53.319856], - [-9.84145, 53.322644], - [-9.833974, 53.311571], - [-9.813554, 53.310115], - [-9.7896, 53.303296], - [-9.782879, 53.29586], - [-9.771935, 53.297673], - [-9.767042, 53.304597], - [-9.74884, 53.308112], - [-9.739273, 53.305788], - [-9.72989, 53.312972], - [-9.730818, 53.325968], - [-9.721205, 53.327288], - [-9.71774, 53.333509], - [-9.6978, 53.351558], - [-9.694271, 53.360855], - [-9.66175, 53.37116], - [-9.66251, 53.37807], - [-9.65642, 53.386023], - [-9.637682, 53.388088], - [-9.62863, 53.37646], - [-9.63474, 53.365234], - [-9.627022, 53.361232], - [-9.640981, 53.356113], - [-9.64475, 53.347504], - [-9.627221, 53.348455], - [-9.629853, 53.343079], - [-9.642679, 53.340544], - [-9.65519, 53.343994], - [-9.66624, 53.339314], - [-9.649004, 53.335734], - [-9.64429, 53.331114], - [-9.596426, 53.334958], - [-9.594691, 53.342522], - [-9.60258, 53.347854], - [-9.602485, 53.36246], - [-9.59918, 53.365424], - [-9.613858, 53.379257], - [-9.60651, 53.382934], - [-9.570938, 53.379413], - [-9.58366, 53.373054], - [-9.59481, 53.374154], - [-9.59696, 53.358774], - [-9.58466, 53.352174], - [-9.57309, 53.351074], - [-9.568865, 53.344696], - [-9.577439, 53.318313], - [-9.59034, 53.329474], - [-9.600069, 53.32666], - [-9.619759, 53.32694], - [-9.625209, 53.31937], - [-9.608935, 53.301254], - [-9.599252, 53.294849], - [-9.602008, 53.28475], - [-9.597878, 53.280424], - [-9.60554, 53.272229], - [-9.6199, 53.267626], - [-9.631888, 53.250505], - [-9.625276, 53.240983], - [-9.613097, 53.23106], - [-9.59982, 53.24004], - [-9.585779, 53.236259], - [-9.57798, 53.244956], - [-9.57832, 53.254176], - [-9.57352, 53.262646], - [-9.58173, 53.269786], - [-9.5733, 53.277926], - [-9.56394, 53.281176], - [-9.554761, 53.27584], - [-9.557385, 53.267054], - [-9.567892, 53.26432], - [-9.559063, 53.250354], - [-9.550133, 53.2462], - [-9.554982, 53.240861], - [-9.547151, 53.233644], - [-9.532558, 53.22904], - [-9.529152, 53.222575], - [-9.510132, 53.221245], - [-9.474307, 53.228969], - [-9.465308, 53.226336], - [-9.45666, 53.232174], - [-9.4314, 53.23272], - [-9.40751, 53.23485], - [-9.3934, 53.23349], - [-9.37337, 53.23727], - [-9.364289, 53.241452], - [-9.335076, 53.237927], - [-9.309513, 53.242701], - [-9.245249, 53.245262], - [-9.229734, 53.247611], - [-9.220229, 53.245236], - [-9.20346, 53.24716], - [-9.178382, 53.245314], - [-9.162768, 53.245939], - [-9.146063, 53.250354], - [-9.139059, 53.248661], - [-9.11132, 53.252069], - [-9.104865, 53.255757], - [-9.078536, 53.258051], - [-9.069673, 53.262953], - [-9.052419, 53.263947], - [-9.042618, 53.272035], - [-9.01764, 53.26643], - [-8.99576, 53.269673], - [-8.994302, 53.262341], - [-8.983566, 53.263284], - [-8.968634, 53.270843], - [-8.936974, 53.273094], - [-8.942335, 53.258684], - [-8.966609, 53.254852], - [-8.977026, 53.256349], - [-8.98685, 53.246836], - [-8.970585, 53.243759], - [-8.953658, 53.23802], - [-8.984839, 53.232739], - [-8.989464, 53.219136], - [-8.976141, 53.217923], - [-8.972841, 53.213086], - [-8.960563, 53.208308], - [-8.942308, 53.212109], - [-8.929425, 53.211788], - [-8.910428, 53.221484], - [-8.91277, 53.208953], - [-8.92639, 53.207651], - [-8.928204, 53.201715], - [-8.945349, 53.192654], - [-8.945111, 53.185057], - [-8.951646, 53.181227], - [-8.953836, 53.172328], - [-8.94412, 53.168689], - [-8.940806, 53.1576], - [-8.935705, 53.153442], - [-8.939154, 53.140747], - [-8.951881, 53.153339], - [-8.975464, 53.158331], - [-8.989201, 53.164089], - [-8.966534, 53.167525], - [-8.966674, 53.175491], - [-8.985602, 53.173454], - [-9.003281, 53.168649], - [-9.020359, 53.170997], - [-9.051787, 53.165643], - [-9.051334, 53.164982], - [-9.042979, 53.160166], - [-9.021464, 53.158079], - [-9.005248, 53.150322], - [-9.009377, 53.14085], - [-9.025888, 53.140203], - [-9.027999, 53.130239], - [-9.01936, 53.110622], - [-9.011048, 53.102832], - [-8.998698, 53.099981], - [-8.993356, 53.094675], - [-8.974887, 53.092297], - [-8.970291, 53.086441], - [-8.956206, 53.087107], - [-8.932933, 53.077846], - [-8.920133, 53.066203], - [-8.906017, 53.066347], - [-8.8907, 53.059634], - [-8.900058, 53.049173], - [-8.899966, 53.03334], - [-8.892486, 53.030735], - [-8.883421, 53.016413], - [-8.89361, 53.010507], - [-8.89462, 52.998931], - [-8.882557, 52.97655], - [-8.872839, 52.98004], - [-8.847521, 52.976112], - [-8.846378, 52.983355], - [-8.836659, 52.990509], - [-8.827007, 52.980251], - [-8.807862, 52.975783], - [-8.780157, 52.974951], - [-8.779513, 52.98869], - [-8.763888, 52.991686], - [-8.737006, 53.005887], - [-8.731903, 53.014214], - [-8.719552, 53.025352], - [-8.693999, 53.026556], - [-8.675834, 53.037524], - [-8.665163, 53.03933], - [-8.640458, 53.039717], - [-8.62676, 53.034028], - [-8.615317, 53.037412], - [-8.595344, 53.039806], - [-8.555799, 53.042151], - [-8.560196, 53.030829], - [-8.551568, 53.022197], - [-8.528186, 53.023747], - [-8.523988, 53.01167], - [-8.508498, 53.006351], - [-8.510068, 52.99901], - [-8.499191, 52.983378], - [-8.484672, 52.988883], - [-8.461178, 52.982275], - [-8.450115, 52.97229], - [-8.424476, 52.983341], - [-8.418566, 52.993487], - [-8.407223, 52.994207], - [-8.402771, 52.986362], - [-8.380446, 52.982674], - [-8.358764, 52.971243], - [-8.351522, 52.975715], - [-8.34555, 52.985156], - [-8.339551, 52.987433], - [-8.316827, 52.98517], - [-8.301607, 53.007552], - [-8.27839, 53.018677], - [-8.268925, 53.036802], - [-8.267892, 53.056024], - [-8.249605, 53.06302], - [-8.218919, 53.067677], - [-8.213556, 53.07843], - [-8.199805, 53.083591], - [-8.197591, 53.089502], - [-8.185634, 53.098671], - [-8.174603, 53.111164], - [-8.172371, 53.120991], - [-8.161392, 53.134545], - [-8.148007, 53.145168], - [-8.125135, 53.159553], - [-8.104175, 53.159891], - [-8.08472, 53.162838], - [-8.081352, 53.166966], - [-8.061843, 53.187893], - [-8.050586, 53.193315], - [-8.037266, 53.194986], - [-7.994127, 53.192991], - [-7.971447, 53.212948], - [-7.967821, 53.225349], - [-7.971346, 53.232889], - [-7.981411, 53.239248], - [-7.998016, 53.244044], - [-8.009057, 53.251337], - [-8.026375, 53.252723], - [-8.029286, 53.262761], - [-8.052073, 53.276942], - [-8.045335, 53.289555], - [-8.031229, 53.295665], - [-8.024347, 53.303832], - [-8.026913, 53.321129], - [-8.012453, 53.324499], - [-8.004361, 53.322098], - [-7.986046, 53.329242], - [-7.982681, 53.337592], - [-7.967783, 53.335445], - [-7.943152, 53.34128], - [-7.9435, 53.350441], - [-7.9326, 53.361174], - [-7.925118, 53.3618], - [-7.910158, 53.371068], - [-7.91355, 53.378698], - [-7.923202, 53.38836], - [-7.929868, 53.399639], - [-7.940446, 53.403676], - [-7.942767, 53.412315], - [-7.972729, 53.422214], - [-7.956052, 53.431185], - [-7.959975, 53.442668], - [-7.966588, 53.449731], - [-7.95496, 53.481126], - [-7.980924, 53.552145], - [-8.00196, 53.56848], - [-8.021353, 53.58641], - [-8.03791, 53.61207], - [-8.03781, 53.628088], - [-8.034274, 53.646098], - [-8.025564, 53.656367], - [-8.001816, 53.666428], - [-7.984194, 53.680711], - [-7.982895, 53.690821], - [-7.987965, 53.698627], - [-7.976909, 53.7018], - [-7.964296, 53.711396], - [-7.95079, 53.711844], - [-7.944018, 53.728415], - [-7.947649, 53.736216], - [-7.938399, 53.737703], - [-7.930762, 53.73328], - [-7.916926, 53.735881], - [-7.917726, 53.746799], - [-7.898967, 53.756086], - [-7.886449, 53.759083], - [-7.883408, 53.771438], - [-7.875882, 53.777348], - [-7.88143, 53.785557], - [-7.893119, 53.786104], - [-7.90957, 53.794281], - [-7.91096, 53.810378], - [-7.917821, 53.818672], - [-7.896888, 53.82404], - [-7.88862, 53.823757], - [-7.870541, 53.813881], - [-7.861063, 53.812526], - [-7.863956, 53.824214], - [-7.854661, 53.831579], - [-7.846413, 53.818512], - [-7.837178, 53.810868], - [-7.828863, 53.811412], - [-7.816257, 53.81973], - [-7.803007, 53.815146], - [-7.788179, 53.816378], - [-7.787774, 53.823019], - [-7.780285, 53.8289], - [-7.782183, 53.837241], - [-7.7719, 53.846052], - [-7.77625, 53.864005], - [-7.754673, 53.869125], - [-7.758207, 53.873566], - [-7.746293, 53.87902], - [-7.73782, 53.876184], - [-7.728204, 53.881298], - [-7.72631, 53.888091], - [-7.713142, 53.890997], - [-7.712285, 53.899106], - [-7.69066, 53.90583], - [-7.692463, 53.916394], - [-7.680071, 53.916946], - [-7.667302, 53.92146], - [-7.657753, 53.937332], - [-7.647069, 53.941831], - [-7.619628, 53.935386], - [-7.610204, 53.938428], - [-7.603999, 53.950564], - [-7.587242, 53.957554], - [-7.593693, 53.968936], - [-7.58549, 53.972674], - [-7.58498, 53.980907], - [-7.599633, 53.985713], - [-7.593344, 53.997265], - [-7.595297, 54.005635], - [-7.602252, 54.012614], - [-7.594226, 54.015247], - [-7.601077, 54.023294], - [-7.614035, 54.025382], - [-7.620697, 54.018678], - [-7.640441, 54.022525], - [-7.646343, 54.033114], - [-7.63591, 54.04054], - [-7.641883, 54.044649], - [-7.654954, 54.042769], - [-7.657599, 54.056332], - [-7.681993, 54.059208], - [-7.692319, 54.07019], - [-7.698657, 54.072373], - [-7.70869, 54.084144], - [-7.736597, 54.082923], - [-7.738705, 54.094502], - [-7.750804, 54.095289], - [-7.755266, 54.104731], - [-7.762222, 54.107617], - [-7.78835, 54.108295], - [-7.799788, 54.116435], - [-7.816769, 54.104946], - [-7.822247, 54.096452], - [-7.831475, 54.098716], - [-7.858901, 54.113287], - [-7.850655, 54.117624], - [-7.861972, 54.122649], - [-7.875756, 54.124379], - [-7.88162, 54.131681], - [-7.891722, 54.136781], - [-7.88823, 54.141858], - [-7.911849, 54.1543], - [-7.926412, 54.166796], - [-7.944671, 54.1712], - [-7.952884, 54.178761], - [-7.968104, 54.177148], - [-7.984875, 54.178987], - [-7.99959, 54.185464], - [-8.00608, 54.192291], - [-8.016928, 54.187818], - [-8.029111, 54.19039], - [-8.042249, 54.183095], - [-8.048015, 54.18696], - [-8.045479, 54.203216], - [-8.03281, 54.210981], - [-8.037947, 54.220936], - [-8.058145, 54.236065], - [-8.041349, 54.254049], - [-8.009946, 54.248364], - [-7.991498, 54.257461], - [-7.974415, 54.273518], - [-7.970965, 54.285579], - [-7.954386, 54.29676], - [-7.946681, 54.304489], - [-7.961595, 54.312469], - [-7.963532, 54.320638], - [-7.972558, 54.331084], - [-7.982637, 54.336342], - [-7.986453, 54.344226], - [-7.999458, 54.347194], - [-7.997659, 54.355765], - [-8.005501, 54.360711], - [-8.01827, 54.356717], - [-8.056033, 54.36571], - [-8.083993, 54.397213], - [-8.097772, 54.4069], - [-8.160257, 54.440277], - [-8.142914, 54.450925], - [-8.184524, 54.465505], - [-8.217117, 54.472773], - [-8.231411, 54.467024], - [-8.236823, 54.461026], - [-8.254576, 54.462119], - [-8.270799, 54.459816], - [-8.28272, 54.464744], - [-8.29962, 54.463832], - [-8.30604, 54.47112], - [-8.321741, 54.473362] - ] - ], - [ - [ - [-10.258946, 53.974645], - [-10.236996, 53.977075], - [-10.222775, 53.972111], - [-10.215023, 53.965077], - [-10.19528, 53.960319], - [-10.193704, 53.966094], - [-10.182521, 53.968548], - [-10.157242, 53.966721], - [-10.13577, 53.969174], - [-10.125708, 53.973756], - [-10.115041, 53.960675], - [-10.107729, 53.966077], - [-10.099106, 53.963474], - [-10.077718, 53.973567], - [-10.066922, 53.971866], - [-10.049508, 53.963562], - [-10.044468, 53.958172], - [-10.052116, 53.952211], - [-10.054992, 53.9396], - [-10.050442, 53.935609], - [-10.056978, 53.922825], - [-10.052703, 53.914798], - [-10.037789, 53.914067], - [-10.026399, 53.921677], - [-10.015083, 53.912207], - [-10.000995, 53.906766], - [-9.993608, 53.90092], - [-9.995254, 53.894618], - [-9.989501, 53.887869], - [-9.962178, 53.874362], - [-9.948626, 53.877267], - [-9.936836, 53.898862], - [-9.939499, 53.913299], - [-9.931463, 53.920381], - [-9.925539, 53.931115], - [-9.924785, 53.954583], - [-9.914462, 53.964769], - [-9.949234, 53.958321], - [-9.951453, 53.974972], - [-9.948901, 53.981671], - [-9.955741, 53.98939], - [-9.943535, 53.990039], - [-9.928066, 53.995081], - [-9.939141, 54.003308], - [-9.936011, 54.006616], - [-9.968474, 54.027437], - [-9.992519, 54.013975], - [-10.002483, 54.015625], - [-10.026869, 54.011843], - [-10.041822, 54.023753], - [-10.060343, 54.025581], - [-10.072155, 54.023435], - [-10.084564, 54.013548], - [-10.097923, 54.009088], - [-10.099337, 54.000971], - [-10.116338, 54.002595], - [-10.131213, 53.999425], - [-10.144235, 54.003156], - [-10.154955, 54.009475], - [-10.170287, 54.006838], - [-10.186674, 54.015497], - [-10.191899, 54.004877], - [-10.187368, 53.997355], - [-10.223699, 53.981757], - [-10.237209, 53.983261], - [-10.258946, 53.974645] - ] - ], - [ - [ - [-10.14001, 53.697776], - [-10.136723, 53.690778], - [-10.090912, 53.696396], - [-10.088093, 53.706098], - [-10.080748, 53.710837], - [-10.093333, 53.715388], - [-10.103563, 53.709918], - [-10.120483, 53.713088], - [-10.14001, 53.697776] - ] - ], - [ - [ - [-9.83032, 53.13906], - [-9.776752, 53.129024], - [-9.757731, 53.12123], - [-9.742129, 53.117082], - [-9.71731, 53.11326], - [-9.703811, 53.106492], - [-9.69647, 53.108375], - [-9.678879, 53.099348], - [-9.673096, 53.098794], - [-9.653441, 53.088595], - [-9.639268, 53.089005], - [-9.636429, 53.100865], - [-9.650712, 53.10024], - [-9.674473, 53.11527], - [-9.651602, 53.129544], - [-9.660277, 53.134048], - [-9.670651, 53.131385], - [-9.682646, 53.133117], - [-9.689277, 53.1392], - [-9.702937, 53.142165], - [-9.711873, 53.138123], - [-9.738627, 53.137352], - [-9.75206, 53.132845], - [-9.759385, 53.148978], - [-9.781631, 53.152161], - [-9.807407, 53.151859], - [-9.823935, 53.146126], - [-9.83032, 53.13906] - ] - ], - [ - [ - [-9.723954, 53.263367], - [-9.712836, 53.25219], - [-9.717406, 53.24474], - [-9.711236, 53.23337], - [-9.702146, 53.22561], - [-9.684026, 53.22726], - [-9.666686, 53.22363], - [-9.646097, 53.229896], - [-9.641906, 53.242121], - [-9.641776, 53.25695], - [-9.644666, 53.26437], - [-9.653316, 53.27072], - [-9.64489, 53.276245], - [-9.662517, 53.284254], - [-9.670546, 53.27985], - [-9.679546, 53.28108], - [-9.683706, 53.2744], - [-9.703919, 53.266486], - [-9.723954, 53.263367] - ] - ], - [ - [ - [-10.261832, 53.628858], - [-10.25866, 53.619642], - [-10.235883, 53.612937], - [-10.20454, 53.613236], - [-10.207303, 53.607977], - [-10.184083, 53.609487], - [-10.179123, 53.632337], - [-10.207243, 53.635917], - [-10.206882, 53.628062], - [-10.222073, 53.631747], - [-10.242623, 53.622477], - [-10.244845, 53.628699], - [-10.261832, 53.628858] - ] - ], - [ - [ - [-10.053263, 53.788118], - [-10.048113, 53.789958], - [-10.016953, 53.789328], - [-9.984953, 53.790238], - [-9.949036, 53.798523], - [-9.951607, 53.802414], - [-9.942921, 53.810888], - [-9.965552, 53.814687], - [-9.972308, 53.823862], - [-9.98305, 53.828728], - [-9.99286, 53.822498], - [-9.995661, 53.815892], - [-10.016448, 53.811033], - [-10.022152, 53.812134], - [-10.044163, 53.804978], - [-10.045813, 53.792928], - [-10.053263, 53.788118] - ] - ], - [ - [ - [-9.712013, 53.297121], - [-9.691246, 53.291261], - [-9.685819, 53.285903], - [-9.661276, 53.288611], - [-9.648876, 53.288171], - [-9.629766, 53.297241], - [-9.643996, 53.304341], - [-9.650766, 53.300201], - [-9.675706, 53.308901], - [-9.684276, 53.309881], - [-9.704296, 53.304641], - [-9.712013, 53.297121] - ] - ], - [ - [ - [-9.556182, 53.049752], - [-9.541203, 53.048919], - [-9.525511, 53.045341], - [-9.515022, 53.049173], - [-9.501451, 53.059193], - [-9.513368, 53.067137], - [-9.532903, 53.06857], - [-9.546664, 53.062471], - [-9.556182, 53.049752] - ] - ], - [ - [ - [-9.876206, 53.989481], - [-9.866362, 53.975743], - [-9.855257, 53.974151], - [-9.852616, 53.981285], - [-9.859896, 53.994523], - [-9.867779, 53.988445], - [-9.876206, 53.989481] - ] - ], - [ - [ - [-9.620434, 53.068008], - [-9.607663, 53.064917], - [-9.581886, 53.070622], - [-9.570249, 53.083046], - [-9.562031, 53.086358], - [-9.561771, 53.097949], - [-9.571282, 53.101819], - [-9.592752, 53.100287], - [-9.600234, 53.091912], - [-9.613327, 53.084121], - [-9.620434, 53.068008] - ] - ], - [ - [ - [-9.761146, 53.23038], - [-9.734686, 53.23144], - [-9.718826, 53.22756], - [-9.722236, 53.23984], - [-9.718726, 53.24703], - [-9.73154, 53.249976], - [-9.743076, 53.24714], - [-9.741866, 53.236425], - [-9.761146, 53.23038] - ] - ], - [ - [ - [-9.910668, 53.408967], - [-9.902928, 53.387507], - [-9.907908, 53.379787], - [-9.901818, 53.375727], - [-9.890078, 53.377617], - [-9.891528, 53.385287], - [-9.886748, 53.392757], - [-9.894963, 53.409969], - [-9.904383, 53.416492], - [-9.910668, 53.408967] - ] - ], - [ - [ - [-9.874558, 53.304237], - [-9.86164, 53.29969], - [-9.850553, 53.299618], - [-9.845511, 53.306009], - [-9.85255, 53.311634], - [-9.861997, 53.310826], - [-9.874558, 53.304237] - ] - ], - [ - [ - [-8.599468, 54.299622], - [-8.595088, 54.288832], - [-8.584231, 54.289122], - [-8.58207, 54.298157], - [-8.592667, 54.305724], - [-8.599468, 54.299622] - ] - ], - [ - [ - [-10.239503, 54.105803], - [-10.224403, 54.111333], - [-10.207013, 54.112923], - [-10.209983, 54.125064], - [-10.219083, 54.123184], - [-10.231923, 54.115113], - [-10.239503, 54.105803] - ] - ], - [ - [ - [-9.968817, 53.866035], - [-9.944185, 53.857348], - [-9.943541, 53.86705], - [-9.950235, 53.871595], - [-9.967954, 53.872106], - [-9.968817, 53.866035] - ] - ], - [ - [ - [-9.04871, 53.219959], - [-9.027383, 53.213561], - [-9.010332, 53.219206], - [-9.00742, 53.22402], - [-9.028421, 53.224172], - [-9.04871, 53.219959] - ] - ], - [ - [ - [-9.925111, 53.994874], - [-9.911991, 53.987481], - [-9.890977, 53.986631], - [-9.889665, 53.993911], - [-9.896189, 54.000643], - [-9.915336, 54.000146], - [-9.925111, 53.994874] - ] - ], - [ - [ - [-10.182413, 53.533937], - [-10.173063, 53.530177], - [-10.170963, 53.523797], - [-10.150836, 53.525951], - [-10.153825, 53.53741], - [-10.180323, 53.536127], - [-10.182413, 53.533937] - ] - ], - [ - [ - [-9.685408, 53.320305], - [-9.663958, 53.316705], - [-9.664498, 53.323495], - [-9.685408, 53.320305] - ] - ], - [ - [ - [-9.652014, 53.31062], - [-9.636624, 53.31096], - [-9.631624, 53.32034], - [-9.649764, 53.31678], - [-9.652014, 53.31062] - ] - ], - [ - [ - [-10.208693, 54.125844], - [-10.191183, 54.131154], - [-10.184603, 54.137354], - [-10.195203, 54.142124], - [-10.205193, 54.140354], - [-10.208693, 54.125844] - ] - ], - [ - [ - [-10.301463, 53.602137], - [-10.284403, 53.607557], - [-10.262803, 53.605357], - [-10.268395, 53.61345], - [-10.289063, 53.619037], - [-10.301463, 53.602137] - ] - ], - [ - [ - [-9.198093, 54.222758], - [-9.163151, 54.212254], - [-9.155554, 54.215207], - [-9.198093, 54.222758] - ] - ], - [ - [ - [-9.751048, 53.25522], - [-9.746509, 53.248476], - [-9.737976, 53.24845], - [-9.740736, 53.25997], - [-9.751048, 53.25522] - ] - ], - [ - [ - [-10.164375, 53.506775], - [-10.144632, 53.511394], - [-10.152488, 53.515617], - [-10.164375, 53.506775] - ] - ], - [ - [ - [-9.722316, 53.28262], - [-9.720036, 53.27444], - [-9.712736, 53.27243], - [-9.703236, 53.27941], - [-9.722316, 53.28262] - ] - ], - [ - [ - [-10.167723, 53.49987], - [-10.147008, 53.498414], - [-10.146763, 53.503666], - [-10.167723, 53.49987] - ] - ], - [ - [ - [-9.980841, 53.326466], - [-9.972344, 53.319661], - [-9.963418, 53.328888], - [-9.980841, 53.326466] - ] - ] - ] - }, - "properties": { - "OSM_ID": -278721, - "name": "Connacht", - "name_EN": "Connacht", - "name_GA": "Cúige Chonnacht", - "ISOCODE": "IE-C" - } - } - ], - "style": { - "stroke": "#000000", - "fill": "#3498DB", - "stroke-width": 1, - "fill-opacity": 0.8 - } -} diff --git a/backend/server/static/data/is.json b/backend/server/static/data/is.json deleted file mode 100644 index ec06574..0000000 --- a/backend/server/static/data/is.json +++ /dev/null @@ -1,106726 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "id": "11264", - "properties": { - "NAME_ENGLISH": "Capital Region", - "name": "Höfuðborgarsvæði", - "ISOCODE": "IS-1", - "density": 0, - "path": "/world/Iceland/Capital Region" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-21.695094, 64.338611], - [-21.69499, 64.338331], - [-21.696362, 64.338136], - [-21.697013, 64.338136], - [-21.697075, 64.338366], - [-21.696636, 64.338477], - [-21.695648, 64.338617], - [-21.695094, 64.338611] - ] - ], - [ - [ - [-21.554202, 64.371628], - [-21.554169, 64.371118], - [-21.555281, 64.370934], - [-21.556328, 64.370864], - [-21.556655, 64.371232], - [-21.555804, 64.371797], - [-21.554202, 64.371628] - ] - ], - [ - [ - [-21.685918, 64.339393], - [-21.686633, 64.339204], - [-21.687352, 64.338967], - [-21.688105, 64.338894], - [-21.688969, 64.338884], - [-21.688962, 64.339234], - [-21.688404, 64.339486], - [-21.68739, 64.33977], - [-21.686236, 64.339706], - [-21.685639, 64.33959], - [-21.685918, 64.339393] - ] - ], - [ - [ - [-21.826343, 64.186407], - [-21.826956, 64.186502], - [-21.827781, 64.186411], - [-21.828743, 64.186416], - [-21.829654, 64.186493], - [-21.830588, 64.186656], - [-21.831053, 64.186857], - [-21.832169, 64.187096], - [-21.832716, 64.187352], - [-21.833291, 64.187475], - [-21.833465, 64.187593], - [-21.833412, 64.187743], - [-21.833198, 64.187891], - [-21.832794, 64.187975], - [-21.832212, 64.187987], - [-21.830868, 64.187888], - [-21.829772, 64.187748], - [-21.828406, 64.187533], - [-21.82765, 64.187311], - [-21.827297, 64.18718], - [-21.826858, 64.186907], - [-21.826503, 64.18664], - [-21.826105, 64.186414], - [-21.826343, 64.186407] - ] - ], - [ - [ - [-21.541075, 64.374172], - [-21.540968, 64.373708], - [-21.543168, 64.373592], - [-21.543973, 64.37336], - [-21.546602, 64.373452], - [-21.549124, 64.373917], - [-21.550144, 64.374358], - [-21.550144, 64.375309], - [-21.551432, 64.376029], - [-21.551432, 64.376748], - [-21.552505, 64.377282], - [-21.551056, 64.378164], - [-21.549232, 64.37814], - [-21.546817, 64.376632], - [-21.544187, 64.37647], - [-21.54306, 64.375936], - [-21.542255, 64.375518], - [-21.541773, 64.375007], - [-21.541451, 64.374381], - [-21.541075, 64.374172] - ] - ], - [ - [ - [-21.774829, 64.183374], - [-21.77487, 64.183242], - [-21.775023, 64.183106], - [-21.775413, 64.183046], - [-21.775877, 64.183037], - [-21.776426, 64.183078], - [-21.776829, 64.183079], - [-21.777154, 64.182967], - [-21.777675, 64.182708], - [-21.778186, 64.182428], - [-21.779094, 64.182186], - [-21.780102, 64.181997], - [-21.780948, 64.181839], - [-21.782001, 64.181742], - [-21.782994, 64.181565], - [-21.783499, 64.181436], - [-21.783962, 64.181178], - [-21.784437, 64.180849], - [-21.784723, 64.180473], - [-21.784726, 64.180186], - [-21.784577, 64.179959], - [-21.784311, 64.179825], - [-21.784059, 64.179651], - [-21.784271, 64.17933], - [-21.784461, 64.179107], - [-21.784899, 64.178821], - [-21.785748, 64.178629], - [-21.78683, 64.178555], - [-21.787511, 64.178613], - [-21.788479, 64.178719], - [-21.789627, 64.178906], - [-21.790175, 64.179146], - [-21.790752, 64.179457], - [-21.7913, 64.179937], - [-21.791714, 64.18041], - [-21.791984, 64.180663], - [-21.792116, 64.180837], - [-21.791987, 64.181095], - [-21.791625, 64.181388], - [-21.791097, 64.181684], - [-21.79062, 64.181779], - [-21.789937, 64.181776], - [-21.789227, 64.18186], - [-21.788622, 64.182063], - [-21.78823, 64.182309], - [-21.787931, 64.182696], - [-21.787872, 64.183051], - [-21.787945, 64.183212], - [-21.788076, 64.183391], - [-21.788505, 64.183726], - [-21.789151, 64.183986], - [-21.789931, 64.1842], - [-21.790553, 64.184336], - [-21.791146, 64.184519], - [-21.791634, 64.184756], - [-21.79219, 64.185078], - [-21.792806, 64.185459], - [-21.793239, 64.185675], - [-21.793627, 64.185892], - [-21.794009, 64.186167], - [-21.794032, 64.186445], - [-21.793782, 64.186704], - [-21.793395, 64.186902], - [-21.793027, 64.187023], - [-21.792622, 64.187127], - [-21.79199, 64.187035], - [-21.791204, 64.186972], - [-21.790397, 64.186987], - [-21.789647, 64.186952], - [-21.788401, 64.18685], - [-21.787075, 64.186785], - [-21.785775, 64.186683], - [-21.78463, 64.186517], - [-21.783259, 64.186293], - [-21.781701, 64.186106], - [-21.780424, 64.185985], - [-21.779202, 64.18571], - [-21.778253, 64.185486], - [-21.777203, 64.185136], - [-21.776439, 64.184784], - [-21.775961, 64.184616], - [-21.775689, 64.184465], - [-21.775472, 64.184261], - [-21.775413, 64.184067], - [-21.775423, 64.183817], - [-21.775329, 64.183643], - [-21.775075, 64.183517], - [-21.774829, 64.183374] - ] - ], - [ - [ - [-21.182677, 64.350751], - [-21.32129, 64.295756], - [-21.420643, 64.244366], - [-21.419668, 64.244082], - [-21.416648, 64.243205], - [-21.414674, 64.242632], - [-21.414562, 64.24255], - [-21.414537, 64.242531], - [-21.413959, 64.2415], - [-21.413542, 64.241051], - [-21.412662, 64.240626], - [-21.412554, 64.240155], - [-21.412293, 64.239728], - [-21.412097, 64.239632], - [-21.411723, 64.239448], - [-21.411512, 64.239], - [-21.411559, 64.238574], - [-21.410935, 64.238046], - [-21.411011, 64.237867], - [-21.411755, 64.237575], - [-21.412086, 64.237193], - [-21.412122, 64.237109], - [-21.412237, 64.236846], - [-21.412543, 64.236587], - [-21.412333, 64.236206], - [-21.411243, 64.235422], - [-21.41021, 64.235332], - [-21.40925, 64.234749], - [-21.408602, 64.234513], - [-21.407982, 64.23436], - [-21.407427, 64.234213], - [-21.407322, 64.234082], - [-21.407186, 64.233957], - [-21.40698, 64.233847], - [-21.406885, 64.233723], - [-21.406905, 64.233582], - [-21.406895, 64.233444], - [-21.406766, 64.233319], - [-21.406528, 64.233226], - [-21.406283, 64.233136], - [-21.406043, 64.233045], - [-21.405831, 64.232942], - [-21.405675, 64.232821], - [-21.405572, 64.23269], - [-21.405494, 64.232555], - [-21.405432, 64.232419], - [-21.40536, 64.232284], - [-21.405274, 64.232151], - [-21.405179, 64.232018], - [-21.405096, 64.231884], - [-21.404936, 64.231765], - [-21.40488, 64.231629], - [-21.404909, 64.231493], - [-21.405007, 64.23136], - [-21.405059, 64.231224], - [-21.405045, 64.231086], - [-21.404928, 64.230956], - [-21.404738, 64.230845], - [-21.404552, 64.230734], - [-21.40456, 64.230595], - [-21.404701, 64.230474], - [-21.404925, 64.230373], - [-21.405146, 64.230273], - [-21.405396, 64.230187], - [-21.405605, 64.230084], - [-21.405779, 64.229967], - [-21.405949, 64.229849], - [-21.406177, 64.229754], - [-21.406409, 64.229658], - [-21.406626, 64.229557], - [-21.406838, 64.229454], - [-21.407011, 64.229337], - [-21.407156, 64.229214], - [-21.407213, 64.229076], - [-21.407354, 64.228953], - [-21.407568, 64.22885], - [-21.407839, 64.228776], - [-21.408124, 64.228714], - [-21.408408, 64.228652], - [-21.408597, 64.228543], - [-21.408716, 64.228414], - [-21.408842, 64.228286], - [-21.408989, 64.228162], - [-21.409181, 64.228054], - [-21.409428, 64.227965], - [-21.409676, 64.227878], - [-21.409941, 64.227801], - [-21.410186, 64.227713], - [-21.410445, 64.227632], - [-21.410712, 64.227557], - [-21.410913, 64.22745], - [-21.411037, 64.227322], - [-21.410979, 64.227189], - [-21.410853, 64.227061], - [-21.410704, 64.226938], - [-21.410533, 64.226821], - [-21.410316, 64.22672], - [-21.410119, 64.226612], - [-21.409955, 64.226492], - [-21.409792, 64.226374], - [-21.409596, 64.226264], - [-21.409363, 64.226169], - [-21.409103, 64.22609], - [-21.408812, 64.226034], - [-21.408516, 64.225981], - [-21.408231, 64.22592], - [-21.40797, 64.225841], - [-21.407743, 64.225743], - [-21.407547, 64.225634], - [-21.407469, 64.2255], - [-21.407433, 64.225362], - [-21.4074, 64.225224], - [-21.407365, 64.225085], - [-21.407248, 64.224958], - [-21.407093, 64.224836], - [-21.406962, 64.22471], - [-21.406912, 64.224573], - [-21.40689, 64.224434], - [-21.406995, 64.224303], - [-21.407024, 64.224168], - [-21.406903, 64.224039], - [-21.40674, 64.223918], - [-21.406601, 64.223798], - [-21.406692, 64.223665], - [-21.406814, 64.223534], - [-21.406844, 64.223394], - [-21.40668, 64.22328], - [-21.406397, 64.223219], - [-21.406086, 64.223183], - [-21.405786, 64.223135], - [-21.405532, 64.223052], - [-21.40537, 64.222934], - [-21.405222, 64.222811], - [-21.405085, 64.222686], - [-21.404978, 64.222555], - [-21.404916, 64.222419], - [-21.404822, 64.222287], - [-21.404699, 64.222158], - [-21.404543, 64.222039], - [-21.40432, 64.221938], - [-21.404134, 64.221826], - [-21.403986, 64.221704], - [-21.403836, 64.221582], - [-21.40371, 64.221454], - [-21.403576, 64.221329], - [-21.403436, 64.221204], - [-21.403318, 64.221075], - [-21.403164, 64.220955], - [-21.402944, 64.220854], - [-21.402713, 64.220758], - [-21.402556, 64.220638], - [-21.402403, 64.220517], - [-21.402266, 64.220392], - [-21.402122, 64.220269], - [-21.37191, 64.19464], - [-21.439084, 64.145135], - [-21.43915, 64.145047], - [-21.475176, 64.096632], - [-21.503468, 64.076792], - [-21.505442, 64.075373], - [-21.587316, 64.018738], - [-21.586359, 64.018298], - [-21.586427, 64.018086], - [-21.569026, 64.007019], - [-21.609355, 63.989848], - [-21.614495, 63.985543], - [-21.669485, 63.987676], - [-21.70078, 63.995225], - [-21.805917, 63.98946], - [-21.939115, 63.977412], - [-22.023296, 63.97776], - [-22.125454, 64.040568], - [-22.124836, 64.040829], - [-22.121042, 64.041232], - [-22.118329, 64.040888], - [-22.114974, 64.040576], - [-22.112262, 64.040607], - [-22.109763, 64.041045], - [-22.106837, 64.04117], - [-22.104838, 64.041388], - [-22.104552, 64.042107], - [-22.102911, 64.042482], - [-22.101165, 64.04308], - [-22.100593, 64.043448], - [-22.100214, 64.04366], - [-22.100488, 64.043963], - [-22.099575, 64.044095], - [-22.098897, 64.044199], - [-22.098567, 64.044139], - [-22.098523, 64.043949], - [-22.098151, 64.043696], - [-22.097233, 64.043755], - [-22.095496, 64.044389], - [-22.09513, 64.044825], - [-22.094916, 64.04545], - [-22.093774, 64.045918], - [-22.09209, 64.04639], - [-22.090914, 64.046047], - [-22.089608, 64.045732], - [-22.088105, 64.046104], - [-22.086145, 64.046247], - [-22.083793, 64.046132], - [-22.082682, 64.045561], - [-22.081048, 64.045503], - [-22.080264, 64.045875], - [-22.076475, 64.045904], - [-22.075037, 64.046161], - [-22.073731, 64.046704], - [-22.071378, 64.046962], - [-22.06981, 64.047448], - [-22.067981, 64.047877], - [-22.068438, 64.048105], - [-22.068438, 64.048563], - [-22.066413, 64.048849], - [-22.065367, 64.048935], - [-22.064779, 64.048563], - [-22.06393, 64.048134], - [-22.062819, 64.047905], - [-22.061839, 64.047591], - [-22.060533, 64.047162], - [-22.058703, 64.047248], - [-22.058638, 64.047676], - [-22.059422, 64.047934], - [-22.059356, 64.048391], - [-22.05818, 64.048591], - [-22.057592, 64.047877], - [-22.056874, 64.047276], - [-22.054914, 64.04699], - [-22.052757, 64.046876], - [-22.050797, 64.046962], - [-22.049883, 64.047133], - [-22.049752, 64.046561], - [-22.048903, 64.046332], - [-22.048968, 64.046018], - [-22.049164, 64.045503], - [-22.048511, 64.045818], - [-22.047988, 64.045703], - [-22.048249, 64.04516], - [-22.048119, 64.044674], - [-22.04838, 64.044274], - [-22.047661, 64.044131], - [-22.047073, 64.043645], - [-22.045962, 64.043502], - [-22.04642, 64.042958], - [-22.045309, 64.042758], - [-22.045113, 64.042358], - [-22.044917, 64.041957], - [-22.044369, 64.041626], - [-22.04457, 64.04129], - [-22.045178, 64.041128], - [-22.045479, 64.04112], - [-22.045415, 64.041156], - [-22.045495, 64.041211], - [-22.045536, 64.041194], - [-22.045565, 64.041148], - [-22.045915, 64.041073], - [-22.045695, 64.04098], - [-22.04544, 64.040842], - [-22.04519, 64.040769], - [-22.045223, 64.040687], - [-22.045546, 64.040684], - [-22.045862, 64.040777], - [-22.046072, 64.040787], - [-22.046717, 64.040736], - [-22.046878, 64.040709], - [-22.046927, 64.040526], - [-22.046816, 64.040424], - [-22.046628, 64.040424], - [-22.046538, 64.0405], - [-22.046341, 64.040538], - [-22.046185, 64.040533], - [-22.046309, 64.040378], - [-22.046158, 64.040404], - [-22.046157, 64.04045], - [-22.046086, 64.040507], - [-22.045934, 64.040521], - [-22.04582, 64.040509], - [-22.045803, 64.040391], - [-22.045535, 64.040394], - [-22.045311, 64.040516], - [-22.04516, 64.040423], - [-22.045021, 64.040468], - [-22.045041, 64.040544], - [-22.044264, 64.040842], - [-22.043872, 64.040556], - [-22.04361, 64.041014], - [-22.04361, 64.041557], - [-22.043586, 64.042076], - [-22.042981, 64.042225], - [-22.042565, 64.042143], - [-22.042695, 64.041765], - [-22.04251, 64.041361], - [-22.041923, 64.041315], - [-22.04131, 64.041523], - [-22.041679, 64.041846], - [-22.042233, 64.042169], - [-22.042225, 64.042391], - [-22.041495, 64.042452], - [-22.040266, 64.042071], - [-22.039703, 64.042429], - [-22.039547, 64.042723], - [-22.039978, 64.042914], - [-22.040387, 64.043301], - [-22.040915, 64.043564], - [-22.041005, 64.043681], - [-22.040959, 64.043811], - [-22.040674, 64.044161], - [-22.040483, 64.044273], - [-22.040285, 64.044296], - [-22.04004, 64.044295], - [-22.038981, 64.044051], - [-22.038742, 64.044062], - [-22.038537, 64.044196], - [-22.038484, 64.044374], - [-22.038346, 64.044459], - [-22.038065, 64.044522], - [-22.038293, 64.044798], - [-22.038301, 64.044853], - [-22.038182, 64.044902], - [-22.038184, 64.044936], - [-22.038434, 64.045051], - [-22.038103, 64.045547], - [-22.03783, 64.045936], - [-22.037407, 64.045988], - [-22.037314, 64.04611], - [-22.037165, 64.046175], - [-22.036873, 64.046227], - [-22.036674, 64.04627], - [-22.036606, 64.046316], - [-22.036592, 64.046365], - [-22.036656, 64.046515], - [-22.036785, 64.046562], - [-22.036888, 64.046581], - [-22.037, 64.046581], - [-22.037503, 64.046558], - [-22.037715, 64.046555], - [-22.037871, 64.046584], - [-22.037957, 64.046639], - [-22.037992, 64.046717], - [-22.042932, 64.046524], - [-22.043083, 64.04675], - [-22.042612, 64.046829], - [-22.042514, 64.046984], - [-22.042229, 64.047075], - [-22.037939, 64.047241], - [-22.037353, 64.047302], - [-22.036889, 64.047421], - [-22.036598, 64.047614], - [-22.036592, 64.047927], - [-22.036494, 64.048181], - [-22.036233, 64.04827], - [-22.034137, 64.048399], - [-22.033324, 64.048386], - [-22.03279, 64.048221], - [-22.032186, 64.048399], - [-22.031559, 64.048468], - [-22.030944, 64.048468], - [-22.030271, 64.048407], - [-22.029535, 64.048304], - [-22.027749, 64.04821], - [-22.025803, 64.048201], - [-22.025003, 64.048219], - [-22.023963, 64.048419], - [-22.023418, 64.048798], - [-22.023052, 64.048831], - [-22.022576, 64.04879], - [-22.021463, 64.048658], - [-22.020857, 64.048925], - [-22.020174, 64.049048], - [-22.019176, 64.049286], - [-22.016708, 64.049631], - [-22.015609, 64.049796], - [-22.014912, 64.049848], - [-22.013919, 64.050287], - [-22.012672, 64.050515], - [-22.011254, 64.051671], - [-22.009462, 64.052673], - [-22.007613, 64.052965], - [-22.005513, 64.053903], - [-22.002499, 64.055821], - [-21.999211, 64.057579], - [-21.997922, 64.05942], - [-21.997901, 64.05945], - [-21.99781, 64.059536], - [-21.997482, 64.060005], - [-21.997252, 64.060471], - [-21.997126, 64.060822], - [-21.997083, 64.06097], - [-21.996874, 64.061349], - [-21.996705, 64.061671], - [-21.996648, 64.061803], - [-21.996576, 64.062059], - [-21.996629, 64.062167], - [-21.996796, 64.062363], - [-21.997075, 64.062597], - [-21.997094, 64.062688], - [-21.997169, 64.062704], - [-21.997295, 64.062758], - [-21.99737, 64.0628], - [-21.997523, 64.062919], - [-21.997643, 64.06301], - [-21.997767, 64.063117], - [-21.997815, 64.063216], - [-21.99789, 64.063281], - [-21.998105, 64.063429], - [-21.998142, 64.063527], - [-21.998174, 64.063659], - [-21.998182, 64.063814], - [-21.998247, 64.063945], - [-21.998357, 64.064031], - [-21.998461, 64.064084], - [-21.998687, 64.06418], - [-21.998901, 64.064287], - [-21.998995, 64.064357], - [-21.999145, 64.06452], - [-21.999186, 64.064594], - [-21.99918, 64.06466], - [-21.999065, 64.064873], - [-21.999068, 64.065036], - [-21.998958, 64.065184], - [-21.998799, 64.065359], - [-21.998708, 64.065413], - [-21.998528, 64.065501], - [-21.998354, 64.065565], - [-21.998185, 64.065651], - [-21.997839, 64.065739], - [-21.997327, 64.065795], - [-21.996772, 64.065785], - [-21.996316, 64.065768], - [-21.995793, 64.06571], - [-21.995331, 64.065651], - [-21.994838, 64.065556], - [-21.994562, 64.065456], - [-21.994135, 64.065213], - [-21.993875, 64.065037], - [-21.993647, 64.064952], - [-21.993381, 64.064833], - [-21.992912, 64.064748], - [-21.992628, 64.064689], - [-21.992346, 64.064614], - [-21.991777, 64.064545], - [-21.991673, 64.06454], - [-21.991576, 64.064552], - [-21.991504, 64.064565], - [-21.99137, 64.064589], - [-21.991297, 64.064626], - [-21.99115, 64.064727], - [-21.990983, 64.064774], - [-21.990876, 64.064762], - [-21.990876, 64.064682], - [-21.990911, 64.06462], - [-21.990946, 64.064558], - [-21.990798, 64.064533], - [-21.990495, 64.064523], - [-21.989986, 64.064491], - [-21.989573, 64.064487], - [-21.98932, 64.064507], - [-21.9888, 64.06452], - [-21.988465, 64.06449], - [-21.988081, 64.064433], - [-21.987829, 64.064368], - [-21.987531, 64.064277], - [-21.987365, 64.064195], - [-21.987183, 64.064113], - [-21.986998, 64.06406], - [-21.986628, 64.063968], - [-21.986464, 64.063941], - [-21.9863, 64.063929], - [-21.98619, 64.063928], - [-21.985936, 64.063931], - [-21.985756, 64.063921], - [-21.985485, 64.06389], - [-21.985289, 64.063855], - [-21.984908, 64.06376], - [-21.984691, 64.063732], - [-21.984428, 64.063721], - [-21.984246, 64.063733], - [-21.983712, 64.063692], - [-21.983471, 64.063729], - [-21.983068, 64.06376], - [-21.982934, 64.063768], - [-21.982618, 64.063812], - [-21.98243, 64.063809], - [-21.982033, 64.06379], - [-21.981614, 64.063742], - [-21.981268, 64.063681], - [-21.980984, 64.0636], - [-21.98059, 64.063539], - [-21.980053, 64.063453], - [-21.979683, 64.063373], - [-21.979437, 64.063264], - [-21.979375, 64.06325], - [-21.979206, 64.063209], - [-21.97861, 64.063041], - [-21.978399, 64.062919], - [-21.978315, 64.062838], - [-21.978213, 64.062722], - [-21.977902, 64.062471], - [-21.977991, 64.062339], - [-21.978053, 64.062292], - [-21.978176, 64.062274], - [-21.978326, 64.062271], - [-21.978573, 64.062247], - [-21.978798, 64.062267], - [-21.979133, 64.062294], - [-21.97989, 64.062708], - [-21.980126, 64.062841], - [-21.980322, 64.062896], - [-21.980858, 64.063024], - [-21.980984, 64.06303], - [-21.98111, 64.063051], - [-21.981518, 64.063163], - [-21.98162, 64.063158], - [-21.981708, 64.063091], - [-21.981754, 64.063014], - [-21.981714, 64.062769], - [-21.981671, 64.062726], - [-21.981829, 64.062706], - [-21.98217, 64.062712], - [-21.982349, 64.062747], - [-21.982467, 64.0628], - [-21.982602, 64.062892], - [-21.982615, 64.062926], - [-21.982604, 64.063007], - [-21.982591, 64.063083], - [-21.982698, 64.063119], - [-21.98283, 64.063148], - [-21.983012, 64.063178], - [-21.983197, 64.063258], - [-21.983253, 64.063271], - [-21.983511, 64.063297], - [-21.983841, 64.063334], - [-21.984031, 64.063325], - [-21.984155, 64.06329], - [-21.984289, 64.063132], - [-21.984251, 64.06264], - [-21.984291, 64.062583], - [-21.984423, 64.062484], - [-21.984573, 64.062405], - [-21.984788, 64.062339], - [-21.985193, 64.062191], - [-21.985512, 64.062058], - [-21.985716, 64.061933], - [-21.985791, 64.061816], - [-21.985933, 64.061644], - [-21.985995, 64.061491], - [-21.985976, 64.061424], - [-21.985788, 64.061237], - [-21.985608, 64.061143], - [-21.985101, 64.060971], - [-21.984801, 64.060868], - [-21.984004, 64.06065], - [-21.983291, 64.060515], - [-21.982851, 64.06047], - [-21.982615, 64.060461], - [-21.982207, 64.060466], - [-21.981944, 64.06048], - [-21.981614, 64.060514], - [-21.981338, 64.06055], - [-21.980971, 64.060619], - [-21.980885, 64.060652], - [-21.980665, 64.060711], - [-21.98041, 64.060721], - [-21.980217, 64.06076], - [-21.980182, 64.060793], - [-21.980107, 64.060839], - [-21.979746, 64.060831], - [-21.979832, 64.060876], - [-21.979882, 64.060928], - [-21.979908, 64.061001], - [-21.979882, 64.061072], - [-21.979817, 64.061128], - [-21.979702, 64.061169], - [-21.979493, 64.06123], - [-21.979184, 64.061315], - [-21.978789, 64.061414], - [-21.978381, 64.061536], - [-21.977706, 64.061708], - [-21.977119, 64.061855], - [-21.976891, 64.061906], - [-21.976802, 64.061939], - [-21.976766, 64.062039], - [-21.976661, 64.062362], - [-21.976632, 64.062457], - [-21.976589, 64.062647], - [-21.976559, 64.06277], - [-21.976517, 64.062851], - [-21.976409, 64.063053], - [-21.97642, 64.063193], - [-21.976458, 64.063317], - [-21.976548, 64.063424], - [-21.976666, 64.063515], - [-21.977012, 64.063647], - [-21.977577, 64.063849], - [-21.977918, 64.063968], - [-21.97861, 64.064174], - [-21.978959, 64.06424], - [-21.979847, 64.064357], - [-21.981035, 64.06452], - [-21.981296, 64.064572], - [-21.981555, 64.064638], - [-21.982028, 64.064783], - [-21.982736, 64.064975], - [-21.983489, 64.06512], - [-21.984951, 64.065412], - [-21.985107, 64.065437], - [-21.985742, 64.065536], - [-21.986107, 64.065598], - [-21.986485, 64.065645], - [-21.986802, 64.065679], - [-21.988827, 64.065763], - [-21.989145, 64.065777], - [-21.989067, 64.065742], - [-21.989145, 64.065733], - [-21.989329, 64.06571], - [-21.989488, 64.065718], - [-21.98965, 64.065751], - [-21.989747, 64.065793], - [-21.9898, 64.065842], - [-21.989834, 64.065894], - [-21.989831, 64.065939], - [-21.989793, 64.065978], - [-21.989745, 64.06601], - [-21.989869, 64.066108], - [-21.989861, 64.066505], - [-21.98984, 64.067055], - [-21.989871, 64.067593], - [-21.989853, 64.067655], - [-21.989786, 64.067736], - [-21.989666, 64.067801], - [-21.989452, 64.067881], - [-21.989102, 64.067933], - [-21.988595, 64.068023], - [-21.988429, 64.068069], - [-21.988322, 64.068114], - [-21.988234, 64.068171], - [-21.988191, 64.068232], - [-21.988016, 64.068301], - [-21.987999, 64.068421], - [-21.987953, 64.068638], - [-21.987946, 64.068815], - [-21.987949, 64.068933], - [-21.98795, 64.069041], - [-21.987933, 64.069253], - [-21.987926, 64.069343], - [-21.987925, 64.069437], - [-21.987883, 64.069507], - [-21.987824, 64.069563], - [-21.98767, 64.069634], - [-21.987551, 64.069676], - [-21.987418, 64.069702], - [-21.987246, 64.069731], - [-21.987062, 64.069738], - [-21.985822, 64.069727], - [-21.98457, 64.069722], - [-21.984346, 64.069715], - [-21.984142, 64.069726], - [-21.984022, 64.06975], - [-21.983938, 64.069773], - [-21.983849, 64.069811], - [-21.983779, 64.069863], - [-21.983722, 64.069904], - [-21.983673, 64.069952], - [-21.983631, 64.070013], - [-21.983582, 64.070091], - [-21.983526, 64.070151], - [-21.983409, 64.070204], - [-21.983328, 64.070225], - [-21.983245, 64.07023], - [-21.983124, 64.070223], - [-21.983022, 64.070196], - [-21.982964, 64.070161], - [-21.982909, 64.070115], - [-21.98289, 64.070068], - [-21.982896, 64.070037], - [-21.982954, 64.070015], - [-21.983021, 64.069998], - [-21.983083, 64.069974], - [-21.983121, 64.069934], - [-21.983194, 64.069868], - [-21.98326, 64.069782], - [-21.983356, 64.069706], - [-21.983448, 64.069652], - [-21.983555, 64.069601], - [-21.983685, 64.069555], - [-21.98381, 64.069527], - [-21.983941, 64.069505], - [-21.984051, 64.06949], - [-21.984253, 64.069483], - [-21.984848, 64.069492], - [-21.985763, 64.069491], - [-21.986971, 64.069486], - [-21.987032, 64.069465], - [-21.987089, 64.069442], - [-21.98714, 64.069424], - [-21.987182, 64.0694], - [-21.987208, 64.069365], - [-21.987236, 64.069326], - [-21.98727, 64.069206], - [-21.987259, 64.068929], - [-21.987235, 64.068704], - [-21.987224, 64.068644], - [-21.98717, 64.068603], - [-21.987092, 64.068571], - [-21.986973, 64.068544], - [-21.986911, 64.068521], - [-21.986908, 64.068424], - [-21.987119, 64.068435], - [-21.987137, 64.068402], - [-21.98711, 64.068368], - [-21.987085, 64.06832], - [-21.987073, 64.068303], - [-21.986625, 64.068366], - [-21.986515, 64.068444], - [-21.986407, 64.068498], - [-21.986279, 64.068534], - [-21.985835, 64.068587], - [-21.985816, 64.068569], - [-21.985136, 64.06866], - [-21.985107, 64.068679], - [-21.985, 64.068691], - [-21.984982, 64.068707], - [-21.98475, 64.068737], - [-21.984677, 64.068722], - [-21.98453, 64.068749], - [-21.984463, 64.068735], - [-21.984399, 64.068727], - [-21.984345, 64.068727], - [-21.984273, 64.068708], - [-21.984219, 64.068696], - [-21.984197, 64.068681], - [-21.984173, 64.068626], - [-21.984265, 64.068527], - [-21.984978, 64.068422], - [-21.98604, 64.068277], - [-21.986102, 64.068281], - [-21.986264, 64.068264], - [-21.986391, 64.068278], - [-21.986557, 64.068297], - [-21.98677, 64.068211], - [-21.987023, 64.068236], - [-21.987, 64.068162], - [-21.986985, 64.068068], - [-21.986981, 64.06801], - [-21.986558, 64.068022], - [-21.98652, 64.068042], - [-21.986547, 64.068134], - [-21.986583, 64.068138], - [-21.986583, 64.068167], - [-21.983737, 64.068268], - [-21.983552, 64.06824], - [-21.983498, 64.067986], - [-21.986488, 64.06787], - [-21.986517, 64.067969], - [-21.986712, 64.06796], - [-21.986955, 64.06795], - [-21.98692, 64.067853], - [-21.986878, 64.067779], - [-21.986831, 64.067712], - [-21.986763, 64.067661], - [-21.986688, 64.067633], - [-21.986588, 64.06761], - [-21.986472, 64.067594], - [-21.986344, 64.067596], - [-21.985019, 64.067652], - [-21.98369, 64.067715], - [-21.983676, 64.067766], - [-21.983284, 64.06775], - [-21.983333, 64.067563], - [-21.975191, 64.067224], - [-21.975223, 64.067097], - [-21.975231, 64.067044], - [-21.97498, 64.067026], - [-21.974859, 64.067014], - [-21.974773, 64.066996], - [-21.974668, 64.066973], - [-21.974579, 64.066939], - [-21.974459, 64.066895], - [-21.974362, 64.066873], - [-21.974237, 64.066865], - [-21.974139, 64.066873], - [-21.974056, 64.066894], - [-21.974018, 64.066923], - [-21.973975, 64.066962], - [-21.973878, 64.067266], - [-21.973683, 64.067989], - [-21.973667, 64.068054], - [-21.973656, 64.068087], - [-21.973643, 64.068128], - [-21.973603, 64.06816], - [-21.973537, 64.068192], - [-21.973393, 64.0682], - [-21.9733, 64.068194], - [-21.973139, 64.068177], - [-21.97297, 64.068166], - [-21.972867, 64.06816], - [-21.972795, 64.068143], - [-21.972686, 64.068113], - [-21.972532, 64.068075], - [-21.972474, 64.068038], - [-21.972411, 64.068025], - [-21.972339, 64.06802], - [-21.972264, 64.06802], - [-21.972141, 64.068028], - [-21.97202, 64.068394], - [-21.971999, 64.068417], - [-21.971969, 64.068423], - [-21.97194, 64.068418], - [-21.971897, 64.068415], - [-21.971806, 64.068408], - [-21.9718, 64.068429], - [-21.97174, 64.068425], - [-21.971732, 64.068413], - [-21.971856, 64.067971], - [-21.971887, 64.067866], - [-21.971926, 64.067859], - [-21.971953, 64.067864], - [-21.97201, 64.067882], - [-21.972047, 64.067883], - [-21.97213, 64.067833], - [-21.972187, 64.067775], - [-21.972235, 64.067684], - [-21.972398, 64.067188], - [-21.972393, 64.067172], - [-21.972366, 64.067152], - [-21.970784, 64.067041], - [-21.970821, 64.066952], - [-21.972219, 64.067043], - [-21.972321, 64.066975], - [-21.972372, 64.066899], - [-21.972393, 64.066836], - [-21.972385, 64.066784], - [-21.972404, 64.066677], - [-21.972447, 64.066609], - [-21.972459, 64.066601], - [-21.972483, 64.066581], - [-21.972274, 64.066563], - [-21.972314, 64.066468], - [-21.963863, 64.065925], - [-21.963669, 64.065913], - [-21.963567, 64.065905], - [-21.963517, 64.06588], - [-21.963528, 64.065825], - [-21.963538, 64.06576], - [-21.963552, 64.065721], - [-21.963812, 64.065742], - [-21.963845, 64.065736], - [-21.963888, 64.0657], - [-21.963944, 64.065644], - [-21.964004, 64.065581], - [-21.963976, 64.0653], - [-21.96397, 64.064771], - [-21.963974, 64.064733], - [-21.963961, 64.064681], - [-21.96403, 64.064666], - [-21.961677, 64.064577], - [-21.961527, 64.064572], - [-21.961426, 64.064568], - [-21.961364, 64.064557], - [-21.961333, 64.064537], - [-21.961376, 64.064332], - [-21.963941, 64.064429], - [-21.963964, 64.064401], - [-21.963968, 64.064373], - [-21.963954, 64.06435], - [-21.9639, 64.064322], - [-21.963864, 64.064292], - [-21.963873, 64.064265], - [-21.96391, 64.064237], - [-21.96396, 64.064225], - [-21.963973, 64.064193], - [-21.963985, 64.064099], - [-21.963904, 64.064093], - [-21.963866, 64.064104], - [-21.963816, 64.064112], - [-21.963759, 64.064111], - [-21.963414, 64.064103], - [-21.963356, 64.064089], - [-21.963353, 64.064065], - [-21.963361, 64.064046], - [-21.963426, 64.064036], - [-21.963504, 64.064035], - [-21.963831, 64.064038], - [-21.963877, 64.06405], - [-21.963913, 64.064067], - [-21.963926, 64.064074], - [-21.96397, 64.06407], - [-21.963966, 64.064055], - [-21.963904, 64.064025], - [-21.963907, 64.064002], - [-21.964016, 64.063947], - [-21.963874, 64.06394], - [-21.963896, 64.063799], - [-21.963603, 64.063794], - [-21.963604, 64.063759], - [-21.963898, 64.063762], - [-21.963897, 64.063703], - [-21.96372, 64.0637], - [-21.963725, 64.063599], - [-21.963562, 64.063591], - [-21.963577, 64.06351], - [-21.963616, 64.063235], - [-21.963626, 64.063161], - [-21.963606, 64.063138], - [-21.963102, 64.06312], - [-21.962615, 64.063105], - [-21.962405, 64.063098], - [-21.961922, 64.063083], - [-21.961593, 64.063079], - [-21.961513, 64.063087], - [-21.961444, 64.063095], - [-21.961381, 64.063144], - [-21.961342, 64.063225], - [-21.961337, 64.063316], - [-21.961277, 64.063355], - [-21.961084, 64.063354], - [-21.960821, 64.063347], - [-21.960634, 64.063338], - [-21.96046, 64.06333], - [-21.960274, 64.063324], - [-21.96006, 64.063324], - [-21.959882, 64.063286], - [-21.959711, 64.063289], - [-21.959591, 64.063311], - [-21.95946, 64.063314], - [-21.959277, 64.063428], - [-21.959129, 64.063471], - [-21.959061, 64.0635], - [-21.959027, 64.063543], - [-21.959254, 64.063673], - [-21.959624, 64.063874], - [-21.959674, 64.063857], - [-21.959846, 64.063932], - [-21.95995, 64.063981], - [-21.959965, 64.064006], - [-21.959939, 64.064027], - [-21.959891, 64.064042], - [-21.959831, 64.064041], - [-21.959775, 64.064022], - [-21.959697, 64.063981], - [-21.959649, 64.064002], - [-21.959573, 64.063982], - [-21.959474, 64.063941], - [-21.959382, 64.063906], - [-21.959303, 64.063871], - [-21.959211, 64.063824], - [-21.959127, 64.063792], - [-21.959025, 64.063778], - [-21.958915, 64.063784], - [-21.958728, 64.063796], - [-21.958346, 64.063863], - [-21.958089, 64.063918], - [-21.957895, 64.064056], - [-21.957688, 64.064241], - [-21.95729, 64.064697], - [-21.95714, 64.064903], - [-21.957025, 64.065106], - [-21.956901, 64.065367], - [-21.956811, 64.065562], - [-21.95669, 64.065916], - [-21.956662, 64.066078], - [-21.956636, 64.066173], - [-21.956634, 64.066237], - [-21.95665, 64.066286], - [-21.956674, 64.066317], - [-21.956722, 64.06634], - [-21.95679, 64.0664], - [-21.956844, 64.066465], - [-21.956884, 64.066523], - [-21.95687, 64.066586], - [-21.95684, 64.066653], - [-21.956829, 64.066705], - [-21.956864, 64.066747], - [-21.956919, 64.066792], - [-21.957016, 64.066873], - [-21.957188, 64.066979], - [-21.957838, 64.067403], - [-21.957949, 64.067472], - [-21.958031, 64.067483], - [-21.958116, 64.067494], - [-21.958198, 64.06753], - [-21.958233, 64.067572], - [-21.958226, 64.067608], - [-21.958201, 64.067633], - [-21.958271, 64.067684], - [-21.959235, 64.068322], - [-21.95933, 64.068376], - [-21.959519, 64.068425], - [-21.959661, 64.068481], - [-21.959732, 64.068548], - [-21.959758, 64.068601], - [-21.959765, 64.068644], - [-21.959759, 64.068701], - [-21.959751, 64.068749], - [-21.959798, 64.068817], - [-21.95985, 64.06885], - [-21.959921, 64.06887], - [-21.959987, 64.068886], - [-21.960052, 64.068899], - [-21.960606, 64.068979], - [-21.960701, 64.06899], - [-21.960818, 64.069011], - [-21.960868, 64.06905], - [-21.961786, 64.069041], - [-21.963095, 64.069035], - [-21.965278, 64.069016], - [-21.965275, 64.069032], - [-21.965352, 64.069034], - [-21.965455, 64.069042], - [-21.96565, 64.069061], - [-21.965932, 64.069098], - [-21.966549, 64.069195], - [-21.967163, 64.069284], - [-21.967391, 64.069314], - [-21.967721, 64.069351], - [-21.967793, 64.06936], - [-21.967844, 64.069357], - [-21.968261, 64.069079], - [-21.968299, 64.069074], - [-21.968345, 64.06909], - [-21.968349, 64.069107], - [-21.968301, 64.069145], - [-21.968276, 64.069146], - [-21.968184, 64.069219], - [-21.968068, 64.069298], - [-21.967991, 64.069352], - [-21.968048, 64.069384], - [-21.968119, 64.06943], - [-21.968182, 64.069482], - [-21.968183, 64.069522], - [-21.968135, 64.069572], - [-21.96806, 64.069632], - [-21.967943, 64.069715], - [-21.967773, 64.069825], - [-21.967467, 64.070026], - [-21.967134, 64.070257], - [-21.96681, 64.070431], - [-21.966697, 64.070494], - [-21.96663, 64.070542], - [-21.966577, 64.070592], - [-21.96657, 64.070641], - [-21.966588, 64.070678], - [-21.96661, 64.070753], - [-21.966685, 64.070925], - [-21.966773, 64.07105], - [-21.966882, 64.071272], - [-21.966973, 64.071445], - [-21.967063, 64.071535], - [-21.967196, 64.071633], - [-21.967408, 64.071656], - [-21.967581, 64.07165], - [-21.967657, 64.071609], - [-21.967797, 64.071621], - [-21.967855, 64.07165], - [-21.96793, 64.071669], - [-21.967994, 64.071708], - [-21.968045, 64.071778], - [-21.968126, 64.071855], - [-21.968284, 64.071991], - [-21.968316, 64.072009], - [-21.968367, 64.072043], - [-21.968386, 64.072047], - [-21.968423, 64.072039], - [-21.968456, 64.072028], - [-21.968523, 64.072014], - [-21.968563, 64.072014], - [-21.968686, 64.072019], - [-21.968788, 64.072034], - [-21.968853, 64.072046], - [-21.968893, 64.072041], - [-21.968941, 64.072022], - [-21.969024, 64.072], - [-21.969113, 64.071993], - [-21.969172, 64.072001], - [-21.969239, 64.072021], - [-21.969335, 64.0721], - [-21.969376, 64.072139], - [-21.969386, 64.072168], - [-21.969298, 64.072254], - [-21.969303, 64.072265], - [-21.969306, 64.072314], - [-21.969322, 64.072372], - [-21.969314, 64.072394], - [-21.969325, 64.072413], - [-21.969365, 64.072428], - [-21.969427, 64.072444], - [-21.969483, 64.072451], - [-21.969542, 64.072436], - [-21.969604, 64.072407], - [-21.969646, 64.072376], - [-21.969689, 64.07236], - [-21.969759, 64.072363], - [-21.969826, 64.072389], - [-21.969874, 64.072438], - [-21.969877, 64.072504], - [-21.969861, 64.072539], - [-21.969853, 64.072562], - [-21.969888, 64.072598], - [-21.969947, 64.072647], - [-21.970043, 64.072694], - [-21.970151, 64.07274], - [-21.970239, 64.072783], - [-21.970314, 64.072817], - [-21.970427, 64.072843], - [-21.970448, 64.072837], - [-21.970486, 64.072831], - [-21.970516, 64.07284], - [-21.970564, 64.072871], - [-21.970588, 64.072888], - [-21.970703, 64.07291], - [-21.970816, 64.072926], - [-21.970915, 64.072983], - [-21.970971, 64.073003], - [-21.971001, 64.072996], - [-21.971014, 64.07298], - [-21.971036, 64.072956], - [-21.971055, 64.072936], - [-21.971087, 64.07292], - [-21.971146, 64.072904], - [-21.971189, 64.072904], - [-21.971242, 64.072922], - [-21.971253, 64.07294], - [-21.971234, 64.072972], - [-21.971162, 64.073014], - [-21.971092, 64.073047], - [-21.971065, 64.073068], - [-21.971089, 64.07308], - [-21.971127, 64.073069], - [-21.971181, 64.073051], - [-21.971248, 64.073035], - [-21.971288, 64.073038], - [-21.971358, 64.073048], - [-21.971452, 64.073065], - [-21.971489, 64.07309], - [-21.971486, 64.073107], - [-21.971441, 64.073113], - [-21.971379, 64.073109], - [-21.971307, 64.073111], - [-21.97124, 64.073116], - [-21.971234, 64.073123], - [-21.97132, 64.073156], - [-21.971403, 64.073175], - [-21.971465, 64.073183], - [-21.971519, 64.073207], - [-21.971524, 64.073228], - [-21.971489, 64.073237], - [-21.971438, 64.073236], - [-21.971387, 64.073231], - [-21.971352, 64.073242], - [-21.971334, 64.073258], - [-21.971374, 64.073285], - [-21.971406, 64.073282], - [-21.971486, 64.073289], - [-21.971505, 64.073302], - [-21.971545, 64.07334], - [-21.971554, 64.07336], - [-21.971508, 64.07338], - [-21.971478, 64.073395], - [-21.971484, 64.073404], - [-21.971505, 64.073432], - [-21.971497, 64.073441], - [-21.9715, 64.073473], - [-21.971763, 64.073629], - [-21.971819, 64.073665], - [-21.971953, 64.073717], - [-21.971993, 64.073717], - [-21.972036, 64.073713], - [-21.972066, 64.073703], - [-21.972117, 64.073695], - [-21.97216, 64.073691], - [-21.972195, 64.073676], - [-21.972219, 64.073651], - [-21.972264, 64.073638], - [-21.972329, 64.073618], - [-21.972355, 64.073614], - [-21.97238, 64.073614], - [-21.972412, 64.073637], - [-21.972444, 64.073686], - [-21.972482, 64.073727], - [-21.972495, 64.073759], - [-21.972527, 64.07378], - [-21.972624, 64.073815], - [-21.972691, 64.073825], - [-21.972747, 64.073828], - [-21.972806, 64.073818], - [-21.972884, 64.073828], - [-21.972924, 64.073846], - [-21.972943, 64.073873], - [-21.972938, 64.073915], - [-21.972905, 64.073963], - [-21.972857, 64.074001], - [-21.972811, 64.074033], - [-21.972798, 64.074055], - [-21.972769, 64.074083], - [-21.97272, 64.074105], - [-21.972715, 64.074127], - [-21.972774, 64.074175], - [-21.973039, 64.07437], - [-21.973286, 64.074553], - [-21.973595, 64.074772], - [-21.974177, 64.075183], - [-21.974477, 64.07538], - [-21.97455, 64.075414], - [-21.974633, 64.075444], - [-21.97471, 64.075478], - [-21.974772, 64.075516], - [-21.974847, 64.075557], - [-21.974914, 64.075587], - [-21.975, 64.075612], - [-21.975078, 64.075629], - [-21.975153, 64.075652], - [-21.975242, 64.075666], - [-21.975354, 64.07567], - [-21.975486, 64.075672], - [-21.97563, 64.07568], - [-21.975845, 64.075684], - [-21.976019, 64.075668], - [-21.976143, 64.075629], - [-21.976186, 64.075598], - [-21.976237, 64.075564], - [-21.976296, 64.075527], - [-21.976325, 64.075487], - [-21.976349, 64.075438], - [-21.976328, 64.075421], - [-21.976306, 64.075389], - [-21.976301, 64.075353], - [-21.976322, 64.075336], - [-21.976376, 64.07532], - [-21.976441, 64.07531], - [-21.976497, 64.075315], - [-21.97655, 64.075343], - [-21.97662, 64.07537], - [-21.97666, 64.075381], - [-21.976711, 64.075398], - [-21.976736, 64.075414], - [-21.976741, 64.075443], - [-21.976722, 64.075469], - [-21.976663, 64.075506], - [-21.97662, 64.07554], - [-21.976583, 64.075568], - [-21.976569, 64.075586], - [-21.976569, 64.075596], - [-21.976618, 64.075616], - [-21.976668, 64.075627], - [-21.97673, 64.075631], - [-21.976773, 64.075629], - [-21.976813, 64.075622], - [-21.976862, 64.075621], - [-21.97691, 64.075624], - [-21.976926, 64.07564], - [-21.976907, 64.07567], - [-21.976888, 64.075702], - [-21.976921, 64.075729], - [-21.976977, 64.075742], - [-21.977068, 64.075764], - [-21.977127, 64.075795], - [-21.977135, 64.075819], - [-21.977122, 64.07585], - [-21.977057, 64.075873], - [-21.976958, 64.075897], - [-21.976872, 64.075924], - [-21.976851, 64.075952], - [-21.976854, 64.075993], - [-21.976878, 64.07602], - [-21.976907, 64.07606], - [-21.976899, 64.076083], - [-21.976918, 64.076093], - [-21.976988, 64.076157], - [-21.977079, 64.076193], - [-21.977293, 64.076279], - [-21.977403, 64.076298], - [-21.97754, 64.076314], - [-21.977642, 64.076336], - [-21.977725, 64.076356], - [-21.977827, 64.076374], - [-21.9779, 64.076389], - [-21.977961, 64.076394], - [-21.978036, 64.076394], - [-21.978106, 64.076396], - [-21.97816, 64.076406], - [-21.978211, 64.076396], - [-21.978251, 64.076368], - [-21.97827, 64.076338], - [-21.97827, 64.076315], - [-21.978259, 64.076281], - [-21.978264, 64.076254], - [-21.978248, 64.076205], - [-21.978219, 64.07615], - [-21.97834, 64.076127], - [-21.978372, 64.076125], - [-21.978439, 64.076122], - [-21.978533, 64.076115], - [-21.978602, 64.076103], - [-21.978616, 64.076089], - [-21.978651, 64.076064], - [-21.978675, 64.076041], - [-21.97872, 64.076022], - [-21.978771, 64.076015], - [-21.978814, 64.076012], - [-21.978857, 64.076012], - [-21.978903, 64.07603], - [-21.978927, 64.07606], - [-21.978943, 64.07609], - [-21.978951, 64.076117], - [-21.978954, 64.076132], - [-21.978978, 64.076146], - [-21.979013, 64.076165], - [-21.979048, 64.076173], - [-21.979074, 64.076176], - [-21.979115, 64.076168], - [-21.979152, 64.076169], - [-21.97919, 64.076187], - [-21.979217, 64.07621], - [-21.97923, 64.076232], - [-21.979235, 64.076261], - [-21.979235, 64.076285], - [-21.979276, 64.076313], - [-21.979308, 64.076313], - [-21.979356, 64.076313], - [-21.979394, 64.076305], - [-21.979434, 64.076295], - [-21.979453, 64.076282], - [-21.979498, 64.07628], - [-21.979563, 64.076293], - [-21.9796, 64.076311], - [-21.979616, 64.076335], - [-21.979616, 64.076368], - [-21.979587, 64.07639], - [-21.979544, 64.076394], - [-21.979501, 64.0764], - [-21.979455, 64.076399], - [-21.979426, 64.076401], - [-21.97941, 64.076408], - [-21.979423, 64.076421], - [-21.979485, 64.076448], - [-21.979549, 64.076463], - [-21.979646, 64.076481], - [-21.979667, 64.076495], - [-21.979681, 64.076512], - [-21.97971, 64.076529], - [-21.979761, 64.076553], - [-21.979815, 64.076587], - [-21.979871, 64.076612], - [-21.97993, 64.076628], - [-21.979994, 64.07664], - [-21.980051, 64.076657], - [-21.980107, 64.07668], - [-21.980166, 64.076695], - [-21.98023, 64.07671], - [-21.980263, 64.076714], - [-21.980279, 64.076706], - [-21.9803, 64.0767], - [-21.980327, 64.076702], - [-21.980354, 64.076713], - [-21.980383, 64.076717], - [-21.980413, 64.076727], - [-21.980434, 64.076747], - [-21.980453, 64.076766], - [-21.980477, 64.076778], - [-21.980496, 64.076776], - [-21.980491, 64.076753], - [-21.980488, 64.076736], - [-21.980485, 64.07672], - [-21.980496, 64.0767], - [-21.98054, 64.076695], - [-21.980561, 64.076716], - [-21.980569, 64.076748], - [-21.980614, 64.076787], - [-21.980637, 64.076787], - [-21.980648, 64.076783], - [-21.980643, 64.076761], - [-21.980656, 64.076759], - [-21.980701, 64.076754], - [-21.980726, 64.076759], - [-21.980734, 64.076774], - [-21.980725, 64.076805], - [-21.980715, 64.076816], - [-21.980691, 64.07684], - [-21.980704, 64.076851], - [-21.980744, 64.076854], - [-21.980787, 64.076866], - [-21.9808, 64.076878], - [-21.98084, 64.076888], - [-21.980871, 64.076898], - [-21.980906, 64.076902], - [-21.980951, 64.076921], - [-21.980979, 64.076912], - [-21.981027, 64.076901], - [-21.981052, 64.076905], - [-21.981061, 64.076919], - [-21.981059, 64.076935], - [-21.981007, 64.076945], - [-21.980951, 64.076956], - [-21.980942, 64.076968], - [-21.980972, 64.076993], - [-21.981, 64.076996], - [-21.981043, 64.076997], - [-21.981071, 64.077005], - [-21.981101, 64.077015], - [-21.981087, 64.077028], - [-21.98106, 64.077041], - [-21.981023, 64.077058], - [-21.981015, 64.077072], - [-21.98103, 64.077082], - [-21.981125, 64.077137], - [-21.98117, 64.07718], - [-21.981324, 64.077245], - [-21.981358, 64.077258], - [-21.981492, 64.077305], - [-21.981567, 64.077326], - [-21.981713, 64.077375], - [-21.98179, 64.077437], - [-21.9819, 64.077488], - [-21.982061, 64.077542], - [-21.982211, 64.077591], - [-21.982251, 64.0776], - [-21.982321, 64.077639], - [-21.98241, 64.077679], - [-21.982594, 64.077754], - [-21.984357, 64.07821], - [-21.985389, 64.078405], - [-21.987158, 64.07875], - [-21.988765, 64.079743], - [-21.990005, 64.080183], - [-21.990161, 64.080238], - [-21.991642, 64.080541], - [-21.992033, 64.080558], - [-21.993179, 64.080607], - [-21.995624, 64.081388], - [-21.998549, 64.081847], - [-21.999792, 64.081968], - [-22.000818, 64.082929], - [-22.000858, 64.082966], - [-22.001794, 64.084258], - [-22.003531, 64.086143], - [-22.004827, 64.086667], - [-22.006969, 64.08823], - [-22.00903, 64.089291], - [-22.010908, 64.089931], - [-22.013077, 64.090486], - [-22.015682, 64.0909], - [-22.01799, 64.091011], - [-22.018331, 64.090972], - [-22.0187, 64.090857], - [-22.018723, 64.090841], - [-22.019, 64.090649], - [-22.01934, 64.090466], - [-22.019636, 64.090307], - [-22.020053, 64.090172], - [-22.02039, 64.090116], - [-22.020715, 64.090093], - [-22.021026, 64.090114], - [-22.021319, 64.09013], - [-22.021583, 64.090147], - [-22.02193, 64.090193], - [-22.022274, 64.090281], - [-22.022552, 64.090401], - [-22.022831, 64.090572], - [-22.023253, 64.09074], - [-22.023636, 64.090799], - [-22.024232, 64.09083], - [-22.025159, 64.090835], - [-22.025865, 64.090847], - [-22.026602, 64.090884], - [-22.027228, 64.09087], - [-22.027696, 64.09074], - [-22.028305, 64.090629], - [-22.028825, 64.090599], - [-22.0295, 64.090716], - [-22.029812, 64.090839], - [-22.03018, 64.090903], - [-22.030536, 64.090931], - [-22.032126, 64.091475], - [-22.032704, 64.092232], - [-22.031441, 64.092619], - [-22.031187, 64.092845], - [-22.030905, 64.093067], - [-22.030608, 64.093188], - [-22.030194, 64.093222], - [-22.029881, 64.09331], - [-22.029655, 64.093447], - [-22.029498, 64.093554], - [-22.029243, 64.093638], - [-22.028992, 64.093612], - [-22.028883, 64.093527], - [-22.028985, 64.093426], - [-22.029231, 64.093336], - [-22.029504, 64.093193], - [-22.029623, 64.093046], - [-22.029371, 64.093043], - [-22.029253, 64.092936], - [-22.029058, 64.092794], - [-22.028722, 64.092662], - [-22.028272, 64.092672], - [-22.027995, 64.092678], - [-22.027848, 64.092395], - [-22.027617, 64.092278], - [-22.027346, 64.09218], - [-22.027115, 64.092215], - [-22.02667, 64.09212], - [-22.026241, 64.0921], - [-22.026065, 64.09214], - [-22.025743, 64.092115], - [-22.025605, 64.09215], - [-22.025633, 64.092298], - [-22.025438, 64.092295], - [-22.025185, 64.092004], - [-22.024952, 64.091987], - [-22.0245, 64.091432], - [-22.024064, 64.091365], - [-22.023538, 64.091325], - [-22.023154, 64.091358], - [-22.022953, 64.091403], - [-22.022716, 64.091339], - [-22.022424, 64.091103], - [-22.022148, 64.090891], - [-22.021944, 64.090782], - [-22.021488, 64.090708], - [-22.02103, 64.090713], - [-22.02066, 64.090773], - [-22.020474, 64.090844], - [-22.020304, 64.090895], - [-22.020093, 64.090889], - [-22.01985, 64.090847], - [-22.019573, 64.090782], - [-22.019358, 64.090853], - [-22.019192, 64.090977], - [-22.019022, 64.091127], - [-22.018734, 64.091202], - [-22.018398, 64.091266], - [-22.018212, 64.091396], - [-22.018163, 64.091472], - [-22.01828, 64.091551], - [-22.018366, 64.091639], - [-22.018323, 64.091716], - [-22.018163, 64.091769], - [-22.017911, 64.091737], - [-22.017831, 64.09183], - [-22.017959, 64.0919], - [-22.01815, 64.091955], - [-22.018312, 64.092016], - [-22.018524, 64.092072], - [-22.018538, 64.092162], - [-22.018324, 64.092203], - [-22.018243, 64.092298], - [-22.018406, 64.092381], - [-22.018175, 64.092448], - [-22.017987, 64.092308], - [-22.01772, 64.092221], - [-22.017349, 64.09231], - [-22.017078, 64.092254], - [-22.016976, 64.092093], - [-22.016964, 64.091955], - [-22.016992, 64.09177], - [-22.016788, 64.091845], - [-22.016404, 64.092067], - [-22.016247, 64.091892], - [-22.016187, 64.091685], - [-22.016231, 64.091502], - [-22.015988, 64.091383], - [-22.01563, 64.091334], - [-22.015317, 64.091332], - [-22.01532, 64.091467], - [-22.014577, 64.091295], - [-22.01277, 64.091096], - [-22.011284, 64.091041], - [-22.010778, 64.09105], - [-22.010505, 64.091078], - [-22.010312, 64.090835], - [-22.010127, 64.090929], - [-22.009914, 64.091098], - [-22.009716, 64.09127], - [-22.009458, 64.091449], - [-22.008833, 64.091562], - [-22.008386, 64.091647], - [-22.00827, 64.091714], - [-22.008224, 64.091815], - [-22.008051, 64.091916], - [-22.007822, 64.091979], - [-22.00755, 64.092048], - [-22.007338, 64.092002], - [-22.007053, 64.091995], - [-22.006871, 64.092081], - [-22.006602, 64.09207], - [-22.006263, 64.092076], - [-22.006488, 64.092152], - [-22.006687, 64.092223], - [-22.006945, 64.09231], - [-22.00711, 64.09233], - [-22.007319, 64.092306], - [-22.007486, 64.092352], - [-22.007513, 64.092447], - [-22.007255, 64.09251], - [-22.007031, 64.092476], - [-22.006815, 64.092603], - [-22.006517, 64.092733], - [-22.006338, 64.092827], - [-22.006033, 64.092847], - [-22.005675, 64.092864], - [-22.005583, 64.09272], - [-22.00543, 64.092607], - [-22.005675, 64.092547], - [-22.005957, 64.09244], - [-22.006138, 64.092356], - [-22.005966, 64.092301], - [-22.005889, 64.092124], - [-22.005485, 64.092087], - [-22.005072, 64.091967], - [-22.004708, 64.091966], - [-22.004312, 64.091944], - [-22.003918, 64.091856], - [-22.003622, 64.091769], - [-22.003449, 64.0917], - [-22.003137, 64.091617], - [-22.002786, 64.0916], - [-22.002566, 64.091495], - [-22.002406, 64.09156], - [-22.002018, 64.091542], - [-22.001686, 64.091522], - [-22.001337, 64.091587], - [-22.001301, 64.091689], - [-22.00119, 64.091847], - [-22.00158, 64.092385], - [-22.002025, 64.092999], - [-22.003526, 64.092779], - [-22.004874, 64.093116], - [-22.005548, 64.094125], - [-22.006511, 64.095219], - [-22.008148, 64.095682], - [-22.009048, 64.095761], - [-22.010074, 64.09585], - [-22.012289, 64.096355], - [-22.014504, 64.096692], - [-22.016911, 64.096565], - [-22.018837, 64.096313], - [-22.021052, 64.096229], - [-22.022855, 64.096297], - [-22.023255, 64.096414], - [-22.023535, 64.096365], - [-22.023849, 64.096303], - [-22.024259, 64.096268], - [-22.024403, 64.096341], - [-22.024558, 64.096474], - [-22.024933, 64.096483], - [-22.025177, 64.096438], - [-22.025414, 64.096294], - [-22.025796, 64.096192], - [-22.026446, 64.096275], - [-22.027055, 64.096408], - [-22.027648, 64.096572], - [-22.028176, 64.0967], - [-22.029605, 64.096978], - [-22.030354, 64.09692], - [-22.031241, 64.096743], - [-22.031301, 64.096646], - [-22.031475, 64.096564], - [-22.031527, 64.096441], - [-22.031393, 64.09624], - [-22.031052, 64.096097], - [-22.030831, 64.095996], - [-22.030744, 64.095849], - [-22.030684, 64.095686], - [-22.030218, 64.095278], - [-22.030011, 64.095282], - [-22.029856, 64.095242], - [-22.029762, 64.09517], - [-22.029761, 64.095066], - [-22.029788, 64.094935], - [-22.029956, 64.094834], - [-22.030223, 64.094765], - [-22.03049, 64.094708], - [-22.030822, 64.094687], - [-22.031208, 64.094649], - [-22.031584, 64.094567], - [-22.031761, 64.094674], - [-22.032294, 64.09489], - [-22.032651, 64.095045], - [-22.033151, 64.095187], - [-22.033843, 64.095342], - [-22.034439, 64.095437], - [-22.034856, 64.095463], - [-22.036748, 64.095261], - [-22.039059, 64.095009], - [-22.041274, 64.094378], - [-22.044067, 64.093999], - [-22.04503, 64.094588], - [-22.044163, 64.09564], - [-22.042204, 64.096322], - [-22.041347, 64.096883], - [-22.038991, 64.097023], - [-22.037782, 64.096375], - [-22.035307, 64.096199], - [-22.034857, 64.096188], - [-22.034384, 64.096341], - [-22.033686, 64.096602], - [-22.033106, 64.096797], - [-22.032135, 64.097353], - [-22.031174, 64.098754], - [-22.031709, 64.099643], - [-22.035565, 64.101046], - [-22.03685, 64.101748], - [-22.036314, 64.102216], - [-22.034815, 64.102496], - [-22.034044, 64.103197], - [-22.033316, 64.103786], - [-22.032673, 64.104227], - [-22.031495, 64.104694], - [-22.029782, 64.105022], - [-22.029139, 64.10591], - [-22.029032, 64.106845], - [-22.029889, 64.107734], - [-22.030424, 64.108482], - [-22.029568, 64.10909], - [-22.027747, 64.109745], - [-22.026422, 64.110747], - [-22.026035, 64.111329], - [-22.024486, 64.112118], - [-22.020914, 64.112024], - [-22.018289, 64.1121], - [-22.016008, 64.11302], - [-22.013942, 64.113622], - [-22.012135, 64.114636], - [-22.010327, 64.115895], - [-22.009797, 64.116426], - [-22.007443, 64.116966], - [-22.005269, 64.117275], - [-22.002701, 64.117315], - [-21.999657, 64.117722], - [-21.998012, 64.118075], - [-21.996022, 64.118876], - [-21.994556, 64.119778], - [-21.993422, 64.120211], - [-21.991366, 64.120273], - [-21.989688, 64.12025], - [-21.988549, 64.119807], - [-21.987387, 64.11971], - [-21.987106, 64.119059], - [-21.988379, 64.118155], - [-21.98924, 64.117529], - [-21.989929, 64.116891], - [-21.990321, 64.116156], - [-21.989816, 64.114798], - [-21.989144, 64.114174], - [-21.988135, 64.113844], - [-21.98679, 64.11377], - [-21.986118, 64.114431], - [-21.984269, 64.114761], - [-21.981663, 64.114724], - [-21.979394, 64.114211], - [-21.977377, 64.114578], - [-21.976243, 64.114983], - [-21.975527, 64.115238], - [-21.974687, 64.115568], - [-21.97267, 64.116119], - [-21.971157, 64.116156], - [-21.967122, 64.115789], - [-21.964769, 64.115165], - [-21.962835, 64.114541], - [-21.961743, 64.113697], - [-21.960734, 64.112082], - [-21.960341, 64.111965], - [-21.959137, 64.111605], - [-21.957792, 64.110504], - [-21.958717, 64.109587], - [-21.959473, 64.108963], - [-21.959221, 64.108192], - [-21.958044, 64.107531], - [-21.956784, 64.106687], - [-21.957036, 64.105292], - [-21.95754, 64.104411], - [-21.959053, 64.104301], - [-21.959221, 64.103861], - [-21.957372, 64.103053], - [-21.958297, 64.102649], - [-21.961154, 64.103126], - [-21.962835, 64.1032], - [-21.963592, 64.103861], - [-21.964937, 64.104852], - [-21.965609, 64.104191], - [-21.966534, 64.104411], - [-21.967626, 64.105292], - [-21.968467, 64.105843], - [-21.970652, 64.108192], - [-21.972081, 64.108779], - [-21.974099, 64.108779], - [-21.974684, 64.108664], - [-21.97578, 64.108449], - [-21.976872, 64.107788], - [-21.976368, 64.106944], - [-21.975611, 64.10621], - [-21.975948, 64.105329], - [-21.975443, 64.104448], - [-21.977377, 64.104705], - [-21.977756, 64.104769], - [-21.97889, 64.104962], - [-21.979982, 64.104264], - [-21.979646, 64.1032], - [-21.980907, 64.103016], - [-21.983344, 64.103494], - [-21.985698, 64.104154], - [-21.98595, 64.104815], - [-21.987967, 64.104778], - [-21.989984, 64.104118], - [-21.991497, 64.10298], - [-21.993683, 64.10375], - [-21.994775, 64.104191], - [-21.99528, 64.104815], - [-21.999146, 64.104815], - [-22.002508, 64.103494], - [-22.004189, 64.10364], - [-22.007804, 64.102355], - [-22.008056, 64.101915], - [-22.007534, 64.101815], - [-22.007416, 64.101793], - [-22.006711, 64.101658], - [-22.006543, 64.101181], - [-22.005618, 64.100116], - [-22.004189, 64.099308], - [-22.002256, 64.098464], - [-22.000155, 64.097766], - [-21.997465, 64.097069], - [-21.994523, 64.096775], - [-21.992422, 64.095894], - [-21.990657, 64.095233], - [-21.988135, 64.095269], - [-21.986875, 64.09571], - [-21.98637, 64.095122], - [-21.984269, 64.094939], - [-21.982588, 64.094498], - [-21.982252, 64.09582], - [-21.979226, 64.09582], - [-21.977965, 64.096224], - [-21.976704, 64.095894], - [-21.975107, 64.096151], - [-21.974435, 64.096591], - [-21.972333, 64.097326], - [-21.969223, 64.097619], - [-21.965861, 64.097693], - [-21.96065, 64.09817], - [-21.958213, 64.098647], - [-21.957998, 64.099401], - [-21.957092, 64.100231], - [-21.955937, 64.100884], - [-21.955167, 64.100538], - [-21.953989, 64.100568], - [-21.952857, 64.100518], - [-21.952313, 64.099945], - [-21.951226, 64.099974], - [-21.950252, 64.100024], - [-21.950048, 64.100192], - [-21.94921, 64.100192], - [-21.948893, 64.100044], - [-21.947965, 64.099935], - [-21.948055, 64.099737], - [-21.948871, 64.099638], - [-21.949595, 64.099648], - [-21.950252, 64.099608], - [-21.951158, 64.09942], - [-21.951657, 64.099539], - [-21.952427, 64.099569], - [-21.952993, 64.099094], - [-21.953604, 64.099153], - [-21.954171, 64.099292], - [-21.954488, 64.098629], - [-21.955461, 64.098263], - [-21.956843, 64.098164], - [-21.956784, 64.09773], - [-21.955926, 64.096003], - [-21.956838, 64.095326], - [-21.954649, 64.095086], - [-21.953737, 64.094608], - [-21.952825, 64.094369], - [-21.952916, 64.093493], - [-21.953555, 64.093134], - [-21.953277, 64.092953], - [-21.951726, 64.093032], - [-21.948205, 64.09362], - [-21.945303, 64.093901], - [-21.94449, 64.093863], - [-21.943277, 64.093866], - [-21.943058, 64.093929], - [-21.943039, 64.094008], - [-21.943027, 64.09402], - [-21.942873, 64.094029], - [-21.942648, 64.093977], - [-21.942479, 64.09406], - [-21.942448, 64.094209], - [-21.942479, 64.094318], - [-21.942582, 64.094382], - [-21.942826, 64.094399], - [-21.943017, 64.094399], - [-21.943267, 64.094352], - [-21.943352, 64.094296], - [-21.943402, 64.09421], - [-21.943295, 64.09415], - [-21.943438, 64.094095], - [-21.94355, 64.094139], - [-21.94363, 64.094185], - [-21.943681, 64.094231], - [-21.943692, 64.094277], - [-21.94363, 64.094362], - [-21.943511, 64.09443], - [-21.943817, 64.0945], - [-21.944071, 64.094591], - [-21.944268, 64.094704], - [-21.944444, 64.094837], - [-21.944492, 64.094976], - [-21.944504, 64.095066], - [-21.944487, 64.095159], - [-21.944389, 64.095316], - [-21.944199, 64.095467], - [-21.943977, 64.095575], - [-21.943721, 64.095641], - [-21.943464, 64.095675], - [-21.943073, 64.095685], - [-21.942615, 64.095702], - [-21.942565, 64.095739], - [-21.942513, 64.095772], - [-21.942416, 64.095793], - [-21.942319, 64.095801], - [-21.942186, 64.095794], - [-21.942081, 64.095776], - [-21.941968, 64.095724], - [-21.940783, 64.095773], - [-21.940303, 64.095789], - [-21.939825, 64.095785], - [-21.939369, 64.095748], - [-21.938956, 64.095705], - [-21.93852, 64.095598], - [-21.938522, 64.095556], - [-21.938559, 64.095521], - [-21.938632, 64.095497], - [-21.938727, 64.095487], - [-21.93916, 64.095569], - [-21.939528, 64.095455], - [-21.938908, 64.095031], - [-21.938719, 64.095087], - [-21.938525, 64.094985], - [-21.937979, 64.09514], - [-21.937767, 64.095011], - [-21.937628, 64.09486], - [-21.937625, 64.09465], - [-21.937804, 64.09449], - [-21.93767, 64.093893], - [-21.937544, 64.093505], - [-21.937399, 64.093462], - [-21.937281, 64.093426], - [-21.936891, 64.093354], - [-21.935314, 64.093612], - [-21.931027, 64.09429], - [-21.930605, 64.094345], - [-21.930375, 64.094342], - [-21.928676, 64.094751], - [-21.927257, 64.095137], - [-21.926708, 64.095406], - [-21.926801, 64.095503], - [-21.926682, 64.095646], - [-21.926479, 64.095721], - [-21.926209, 64.095727], - [-21.926023, 64.095671], - [-21.925948, 64.095661], - [-21.92555, 64.095731], - [-21.925178, 64.095694], - [-21.924979, 64.095676], - [-21.924939, 64.09575], - [-21.925037, 64.095835], - [-21.925227, 64.095951], - [-21.925386, 64.09615], - [-21.925395, 64.096285], - [-21.925143, 64.096478], - [-21.924975, 64.096697], - [-21.924909, 64.096888], - [-21.924909, 64.097033], - [-21.924957, 64.097166], - [-21.92502, 64.097294], - [-21.925117, 64.097369], - [-21.925185, 64.097417], - [-21.925302, 64.097482], - [-21.925335, 64.097567], - [-21.925344, 64.097644], - [-21.925325, 64.097713], - [-21.925346, 64.097792], - [-21.925375, 64.097872], - [-21.92545, 64.097894], - [-21.925488, 64.097947], - [-21.925527, 64.098005], - [-21.925547, 64.098086], - [-21.925799, 64.098397], - [-21.92603, 64.098571], - [-21.926329, 64.098671], - [-21.926576, 64.098717], - [-21.92688, 64.098684], - [-21.927014, 64.098699], - [-21.927122, 64.098833], - [-21.927411, 64.099111], - [-21.92786, 64.0994], - [-21.928363, 64.099752], - [-21.928792, 64.099953], - [-21.929018, 64.100037], - [-21.929303, 64.100089], - [-21.92957, 64.100115], - [-21.929777, 64.100176], - [-21.93026, 64.100396], - [-21.930898, 64.100805], - [-21.931129, 64.101013], - [-21.931217, 64.101334], - [-21.931337, 64.101522], - [-21.931234, 64.101744], - [-21.931022, 64.102008], - [-21.93108, 64.102264], - [-21.931263, 64.102431], - [-21.931462, 64.102499], - [-21.931458, 64.102537], - [-21.931232, 64.102572], - [-21.931029, 64.102609], - [-21.930969, 64.102665], - [-21.931057, 64.102723], - [-21.93125, 64.102782], - [-21.931283, 64.102882], - [-21.931152, 64.102937], - [-21.930982, 64.102939], - [-21.930785, 64.102919], - [-21.930615, 64.102965], - [-21.930531, 64.103033], - [-21.930502, 64.10314], - [-21.930367, 64.103252], - [-21.930239, 64.103393], - [-21.929947, 64.103464], - [-21.929958, 64.103536], - [-21.929795, 64.103537], - [-21.929647, 64.103624], - [-21.929616, 64.103691], - [-21.929717, 64.103732], - [-21.92989, 64.103769], - [-21.929706, 64.103836], - [-21.929264, 64.103935], - [-21.928899, 64.104071], - [-21.928119, 64.104342], - [-21.927657, 64.104402], - [-21.926967, 64.104386], - [-21.926945, 64.104306], - [-21.926836, 64.104296], - [-21.926697, 64.104319], - [-21.926628, 64.104347], - [-21.926467, 64.104328], - [-21.926084, 64.10427], - [-21.925315, 64.104113], - [-21.924512, 64.103913], - [-21.923034, 64.103465], - [-21.922193, 64.103181], - [-21.920074, 64.102574], - [-21.919524, 64.102458], - [-21.918767, 64.102366], - [-21.918033, 64.102471], - [-21.917352, 64.102488], - [-21.916182, 64.102481], - [-21.915548, 64.102583], - [-21.914949, 64.102671], - [-21.913876, 64.102483], - [-21.912639, 64.102336], - [-21.911941, 64.102235], - [-21.911265, 64.102249], - [-21.910673, 64.102336], - [-21.910071, 64.102365], - [-21.908823, 64.102756], - [-21.908302, 64.102874], - [-21.907794, 64.102851], - [-21.907159, 64.102723], - [-21.906684, 64.102692], - [-21.906406, 64.102661], - [-21.90575, 64.102958], - [-21.90525, 64.103301], - [-21.905203, 64.103333], - [-21.905373, 64.103781], - [-21.905463, 64.104017], - [-21.906622, 64.105263], - [-21.909019, 64.105656], - [-21.911478, 64.105734], - [-21.914092, 64.10622], - [-21.916259, 64.106671], - [-21.91837, 64.106531], - [-21.919091, 64.106747], - [-21.921677, 64.106799], - [-21.924776, 64.107097], - [-21.926855, 64.107391], - [-21.930206, 64.107366], - [-21.932017, 64.107677], - [-21.93371, 64.107907], - [-21.935902, 64.108569], - [-21.937588, 64.109403], - [-21.937705, 64.109931], - [-21.938011, 64.110087], - [-21.938536, 64.110196], - [-21.938808, 64.110226], - [-21.939004, 64.110257], - [-21.939114, 64.110274], - [-21.939229, 64.110316], - [-21.939337, 64.110367], - [-21.939421, 64.110429], - [-21.93956, 64.110793], - [-21.939599, 64.110951], - [-21.939633, 64.111039], - [-21.939518, 64.111076], - [-21.939517, 64.111167], - [-21.939589, 64.111737], - [-21.93959, 64.11175], - [-21.939586, 64.111807], - [-21.939585, 64.111822], - [-21.939641, 64.111836], - [-21.939683, 64.11191], - [-21.939945, 64.111942], - [-21.940908, 64.112451], - [-21.940838, 64.112936], - [-21.941138, 64.113218], - [-21.941365, 64.113332], - [-21.94177, 64.113537], - [-21.94329, 64.113653], - [-21.944122, 64.113488], - [-21.944305, 64.113517], - [-21.944459, 64.113578], - [-21.944772, 64.113757], - [-21.945191, 64.114033], - [-21.94555, 64.114398], - [-21.946359, 64.11504], - [-21.946498, 64.11532], - [-21.946613, 64.11553], - [-21.946869, 64.115654], - [-21.947202, 64.116148], - [-21.947699, 64.11663], - [-21.947578, 64.116717], - [-21.947404, 64.116783], - [-21.946986, 64.116992], - [-21.946606, 64.117268], - [-21.946477, 64.117399], - [-21.946263, 64.117499], - [-21.945509, 64.117327], - [-21.945031, 64.11733], - [-21.944365, 64.117413], - [-21.942784, 64.117426], - [-21.940826, 64.117434], - [-21.939048, 64.117359], - [-21.938751, 64.117312], - [-21.938147, 64.11731], - [-21.937722, 64.116982], - [-21.937692, 64.116418], - [-21.93713, 64.115718], - [-21.936841, 64.115692], - [-21.936235, 64.115714], - [-21.93541, 64.115614], - [-21.933926, 64.115652], - [-21.933794, 64.115611], - [-21.933036, 64.115635], - [-21.932529, 64.115742], - [-21.93202, 64.11592], - [-21.931777, 64.116152], - [-21.930977, 64.116281], - [-21.929446, 64.116401], - [-21.928314, 64.116474], - [-21.925298, 64.116461], - [-21.922985, 64.116451], - [-21.923193, 64.116188], - [-21.923463, 64.116055], - [-21.923896, 64.116007], - [-21.924648, 64.115992], - [-21.924666, 64.115383], - [-21.924692, 64.115252], - [-21.924233, 64.115238], - [-21.923715, 64.115223], - [-21.923688, 64.115183], - [-21.922861, 64.11516], - [-21.922453, 64.115219], - [-21.922116, 64.11535], - [-21.922041, 64.115558], - [-21.922066, 64.115684], - [-21.922516, 64.115834], - [-21.922566, 64.115891], - [-21.922503, 64.115924], - [-21.922341, 64.115888], - [-21.922203, 64.115826], - [-21.922122, 64.11579], - [-21.921353, 64.115752], - [-21.920896, 64.115684], - [-21.920916, 64.115536], - [-21.920982, 64.115426], - [-21.920902, 64.115407], - [-21.920258, 64.115744], - [-21.919726, 64.1157], - [-21.91902, 64.115707], - [-21.918701, 64.115681], - [-21.918607, 64.115512], - [-21.9183, 64.11541], - [-21.917258, 64.115439], - [-21.916776, 64.115453], - [-21.916126, 64.115715], - [-21.914814, 64.115827], - [-21.914181, 64.115844], - [-21.913676, 64.115873], - [-21.91333, 64.115914], - [-21.912783, 64.116001], - [-21.91214, 64.116069], - [-21.911313, 64.116172], - [-21.91094, 64.116229], - [-21.910757, 64.116221], - [-21.910599, 64.116167], - [-21.910492, 64.116085], - [-21.910311, 64.115975], - [-21.910174, 64.115889], - [-21.910006, 64.115903], - [-21.909779, 64.115978], - [-21.909426, 64.116048], - [-21.908982, 64.116091], - [-21.908441, 64.116143], - [-21.907688, 64.116309], - [-21.906983, 64.116464], - [-21.906244, 64.116602], - [-21.905539, 64.116782], - [-21.904789, 64.116968], - [-21.904046, 64.117074], - [-21.903212, 64.117158], - [-21.90268, 64.11722], - [-21.90203, 64.117291], - [-21.901923, 64.117325], - [-21.901749, 64.117379], - [-21.901517, 64.117452], - [-21.901154, 64.117682], - [-21.901008, 64.117891], - [-21.901038, 64.118113], - [-21.90113, 64.118317], - [-21.901401, 64.118647], - [-21.901666, 64.118891], - [-21.901951, 64.1191], - [-21.902631, 64.11935], - [-21.903232, 64.11956], - [-21.903803, 64.119798], - [-21.904384, 64.119933], - [-21.904685, 64.119929], - [-21.905622, 64.120084], - [-21.906302, 64.120181], - [-21.907273, 64.120336], - [-21.907807, 64.120341], - [-21.908174, 64.120296], - [-21.908425, 64.12019], - [-21.908678, 64.120139], - [-21.908867, 64.120157], - [-21.909433, 64.120273], - [-21.910012, 64.120394], - [-21.910478, 64.120471], - [-21.911025, 64.120496], - [-21.911685, 64.120472], - [-21.912448, 64.120496], - [-21.91318, 64.120545], - [-21.913782, 64.120578], - [-21.914257, 64.120582], - [-21.914848, 64.120561], - [-21.915852, 64.120573], - [-21.916866, 64.120608], - [-21.917727, 64.120659], - [-21.918603, 64.120698], - [-21.919671, 64.120731], - [-21.920662, 64.120797], - [-21.921375, 64.120863], - [-21.922068, 64.120914], - [-21.9228, 64.120991], - [-21.92343, 64.121043], - [-21.924085, 64.121116], - [-21.92454, 64.121136], - [-21.92499, 64.12115], - [-21.925342, 64.12107], - [-21.925926, 64.121217], - [-21.926262, 64.121228], - [-21.926706, 64.121239], - [-21.927246, 64.121215], - [-21.927975, 64.121195], - [-21.928278, 64.121198], - [-21.928491, 64.121177], - [-21.928767, 64.121128], - [-21.928928, 64.121099], - [-21.929047, 64.121071], - [-21.929265, 64.120893], - [-21.929266, 64.120849], - [-21.929278, 64.120808], - [-21.929315, 64.120777], - [-21.9294, 64.120752], - [-21.929518, 64.120735], - [-21.929631, 64.120748], - [-21.929721, 64.120781], - [-21.929768, 64.120821], - [-21.92976, 64.120871], - [-21.929713, 64.120912], - [-21.92962, 64.120941], - [-21.929539, 64.120949], - [-21.929494, 64.121017], - [-21.929455, 64.12116], - [-21.929478, 64.121294], - [-21.929575, 64.121357], - [-21.929771, 64.121403], - [-21.929993, 64.121403], - [-21.93019, 64.121383], - [-21.930373, 64.121349], - [-21.930527, 64.121311], - [-21.930668, 64.121257], - [-21.930777, 64.121171], - [-21.930834, 64.121062], - [-21.930832, 64.120981], - [-21.930771, 64.120905], - [-21.930675, 64.120881], - [-21.930567, 64.120885], - [-21.930506, 64.12087], - [-21.930469, 64.120838], - [-21.930484, 64.120799], - [-21.930573, 64.120788], - [-21.930869, 64.12076], - [-21.931303, 64.120739], - [-21.931586, 64.120767], - [-21.931834, 64.120827], - [-21.93204, 64.120831], - [-21.932268, 64.120816], - [-21.932489, 64.120819], - [-21.932562, 64.120813], - [-21.932588, 64.120793], - [-21.932583, 64.120762], - [-21.932658, 64.120741], - [-21.932758, 64.120753], - [-21.932773, 64.120774], - [-21.932849, 64.120804], - [-21.9329, 64.120802], - [-21.932953, 64.120787], - [-21.933044, 64.120792], - [-21.933104, 64.120813], - [-21.933172, 64.120887], - [-21.933189, 64.120944], - [-21.933336, 64.120947], - [-21.933533, 64.120907], - [-21.933751, 64.120816], - [-21.934098, 64.120638], - [-21.934369, 64.120549], - [-21.934561, 64.120517], - [-21.935394, 64.120451], - [-21.936049, 64.1204], - [-21.936397, 64.120377], - [-21.936742, 64.120363], - [-21.937034, 64.120372], - [-21.937402, 64.120415], - [-21.937653, 64.120461], - [-21.937956, 64.120527], - [-21.938216, 64.120635], - [-21.938487, 64.120755], - [-21.938692, 64.120896], - [-21.939441, 64.122055], - [-21.939653, 64.122421], - [-21.939797, 64.122619], - [-21.939917, 64.122685], - [-21.940109, 64.122742], - [-21.940451, 64.122813], - [-21.940712, 64.122874], - [-21.940904, 64.122955], - [-21.941024, 64.123025], - [-21.941133, 64.123129], - [-21.941169, 64.123241], - [-21.941118, 64.123318], - [-21.941057, 64.123414], - [-21.941093, 64.123529], - [-21.94124, 64.123674], - [-21.94141, 64.123832], - [-21.94161, 64.123989], - [-21.94188, 64.124149], - [-21.942246, 64.124299], - [-21.942647, 64.124405], - [-21.943055, 64.124503], - [-21.943558, 64.124636], - [-21.943944, 64.124725], - [-21.944536, 64.124806], - [-21.945098, 64.124845], - [-21.945692, 64.12485], - [-21.946376, 64.124855], - [-21.946918, 64.124857], - [-21.947134, 64.124865], - [-21.947443, 64.124842], - [-21.947804, 64.124807], - [-21.948156, 64.124788], - [-21.948539, 64.124775], - [-21.94876, 64.124739], - [-21.948949, 64.124712], - [-21.949131, 64.124705], - [-21.949269, 64.124707], - [-21.949384, 64.124726], - [-21.949494, 64.124768], - [-21.949594, 64.124826], - [-21.949624, 64.12488], - [-21.949621, 64.124963], - [-21.949632, 64.125041], - [-21.949638, 64.125095], - [-21.949675, 64.125136], - [-21.949791, 64.125186], - [-21.949972, 64.125259], - [-21.950166, 64.125357], - [-21.950501, 64.125398], - [-21.950399, 64.125542], - [-21.950446, 64.12565], - [-21.950476, 64.125743], - [-21.950528, 64.125813], - [-21.950879, 64.125975], - [-21.951254, 64.126232], - [-21.951521, 64.126416], - [-21.951821, 64.126564], - [-21.952432, 64.126771], - [-21.95288, 64.126934], - [-21.953272, 64.127068], - [-21.953582, 64.127167], - [-21.953985, 64.127245], - [-21.954309, 64.127282], - [-21.954737, 64.127295], - [-21.955152, 64.127267], - [-21.955695, 64.127251], - [-21.956054, 64.127243], - [-21.956404, 64.127291], - [-21.956722, 64.127411], - [-21.957061, 64.127511], - [-21.95728, 64.127602], - [-21.957512, 64.127784], - [-21.957687, 64.127917], - [-21.957889, 64.128053], - [-21.958183, 64.128212], - [-21.958323, 64.128329], - [-21.95859, 64.128552], - [-21.958685, 64.128658], - [-21.958863, 64.128929], - [-21.958938, 64.129108], - [-21.959072, 64.129264], - [-21.959209, 64.129331], - [-21.95933, 64.129407], - [-21.959414, 64.129626], - [-21.959454, 64.129804], - [-21.959486, 64.130054], - [-21.959528, 64.130252], - [-21.959651, 64.130416], - [-21.959795, 64.130593], - [-21.959856, 64.130838], - [-21.95982, 64.131018], - [-21.959713, 64.131225], - [-21.959657, 64.131399], - [-21.959576, 64.131582], - [-21.959546, 64.131755], - [-21.959542, 64.131946], - [-21.959586, 64.132098], - [-21.959647, 64.132281], - [-21.959758, 64.132479], - [-21.959933, 64.132695], - [-21.960152, 64.132932], - [-21.960385, 64.13321], - [-21.960573, 64.133432], - [-21.960825, 64.133577], - [-21.961099, 64.133676], - [-21.961579, 64.133728], - [-21.961837, 64.13373], - [-21.962103, 64.13379], - [-21.962294, 64.133872], - [-21.962566, 64.134026], - [-21.962844, 64.134218], - [-21.963014, 64.134382], - [-21.963114, 64.134521], - [-21.96322, 64.13476], - [-21.963244, 64.135001], - [-21.963242, 64.135154], - [-21.963307, 64.135326], - [-21.963429, 64.135522], - [-21.963446, 64.135661], - [-21.963321, 64.135817], - [-21.963256, 64.13594], - [-21.963235, 64.136148], - [-21.963252, 64.136308], - [-21.963296, 64.136561], - [-21.963363, 64.136937], - [-21.963459, 64.137289], - [-21.963587, 64.137444], - [-21.963769, 64.1376], - [-21.963942, 64.13772], - [-21.964077, 64.137815], - [-21.964152, 64.137903], - [-21.964207, 64.138111], - [-21.964264, 64.138275], - [-21.964393, 64.138413], - [-21.964642, 64.138566], - [-21.964933, 64.138752], - [-21.965223, 64.138967], - [-21.965341, 64.139083], - [-21.965426, 64.13927], - [-21.965315, 64.1395], - [-21.965285, 64.139653], - [-21.965324, 64.139822], - [-21.965312, 64.139994], - [-21.965361, 64.140204], - [-21.965441, 64.140368], - [-21.965613, 64.140602], - [-21.965804, 64.140793], - [-21.966115, 64.140953], - [-21.966347, 64.141057], - [-21.966636, 64.141198], - [-21.966912, 64.141314], - [-21.967195, 64.141415], - [-21.967606, 64.141577], - [-21.96791, 64.141665], - [-21.968349, 64.141783], - [-21.96866, 64.141861], - [-21.968948, 64.141896], - [-21.969343, 64.14188], - [-21.96959, 64.141874], - [-21.969847, 64.141907], - [-21.970112, 64.141978], - [-21.970386, 64.14204], - [-21.971073, 64.142205], - [-21.971523, 64.142324], - [-21.971855, 64.142183], - [-21.971985, 64.142088], - [-21.972028, 64.142015], - [-21.972089, 64.141936], - [-21.97216, 64.141878], - [-21.972301, 64.141825], - [-21.972479, 64.141786], - [-21.972675, 64.141781], - [-21.972886, 64.141792], - [-21.973043, 64.141837], - [-21.97318, 64.141885], - [-21.973219, 64.141942], - [-21.973246, 64.141999], - [-21.973238, 64.142072], - [-21.973191, 64.142148], - [-21.97306, 64.142232], - [-21.97291, 64.142282], - [-21.972736, 64.142309], - [-21.972509, 64.142318], - [-21.971968, 64.142485], - [-21.971952, 64.142566], - [-21.971995, 64.14273], - [-21.972031, 64.142915], - [-21.972079, 64.143045], - [-21.972166, 64.143184], - [-21.972272, 64.143321], - [-21.972412, 64.143437], - [-21.972671, 64.143538], - [-21.972872, 64.143596], - [-21.973081, 64.14365], - [-21.973484, 64.143817], - [-21.973826, 64.144013], - [-21.974029, 64.144121], - [-21.974207, 64.144194], - [-21.974438, 64.144263], - [-21.974697, 64.144301], - [-21.974944, 64.144282], - [-21.975232, 64.144255], - [-21.975505, 64.144246], - [-21.975804, 64.144282], - [-21.976128, 64.144361], - [-21.976308, 64.144425], - [-21.976529, 64.144533], - [-21.976925, 64.144694], - [-21.97708, 64.14476], - [-21.977287, 64.14485], - [-21.977718, 64.14503], - [-21.97816, 64.145206], - [-21.978493, 64.145329], - [-21.978696, 64.145419], - [-21.97888, 64.145519], - [-21.979054, 64.145591], - [-21.979236, 64.145654], - [-21.979464, 64.1457], - [-21.979653, 64.145711], - [-21.979765, 64.145682], - [-21.979908, 64.145669], - [-21.980019, 64.14565], - [-21.980685, 64.145308], - [-21.980812, 64.145261], - [-21.98095, 64.145292], - [-21.981237, 64.145366], - [-21.981555, 64.145464], - [-21.981821, 64.145546], - [-21.982151, 64.145636], - [-21.982417, 64.145708], - [-21.982569, 64.145727], - [-21.982727, 64.145705], - [-21.982893, 64.145692], - [-21.98311, 64.145725], - [-21.9835, 64.145847], - [-21.984085, 64.146054], - [-21.984434, 64.146186], - [-21.984777, 64.146262], - [-21.985163, 64.146296], - [-21.985627, 64.146321], - [-21.986138, 64.146388], - [-21.986526, 64.146477], - [-21.98705, 64.146667], - [-21.987459, 64.146804], - [-21.987815, 64.146915], - [-21.988073, 64.147014], - [-21.988306, 64.147094], - [-21.988612, 64.147214], - [-21.988816, 64.147342], - [-21.988951, 64.147457], - [-21.989269, 64.14766], - [-21.989572, 64.147867], - [-21.989891, 64.148081], - [-21.99017, 64.148222], - [-21.99045, 64.148366], - [-21.990581, 64.148418], - [-21.990643, 64.148428], - [-21.990716, 64.14841], - [-21.990773, 64.148402], - [-21.990825, 64.14842], - [-21.991126, 64.148542], - [-21.991145, 64.14858], - [-21.991122, 64.148612], - [-21.991149, 64.148643], - [-21.991231, 64.148671], - [-21.991484, 64.148739], - [-21.991864, 64.148816], - [-21.992213, 64.148851], - [-21.99263, 64.148835], - [-21.993024, 64.14875], - [-21.993444, 64.148677], - [-21.993837, 64.148639], - [-21.994382, 64.148617], - [-21.994849, 64.148616], - [-21.995242, 64.14865], - [-21.995718, 64.148687], - [-21.99625, 64.148739], - [-21.99681, 64.148793], - [-21.997252, 64.148832], - [-21.997578, 64.148824], - [-21.997985, 64.148811], - [-21.998422, 64.148797], - [-21.998661, 64.148816], - [-21.998841, 64.14886], - [-21.998934, 64.148986], - [-21.999003, 64.149137], - [-21.999074, 64.149296], - [-21.999144, 64.149432], - [-21.999307, 64.149565], - [-21.999443, 64.149672], - [-21.999608, 64.149768], - [-21.999835, 64.149872], - [-22.000067, 64.149959], - [-22.000319, 64.150018], - [-22.000644, 64.150063], - [-22.001055, 64.15008], - [-22.001432, 64.150076], - [-22.001904, 64.150038], - [-22.002224, 64.150028], - [-22.002508, 64.15006], - [-22.002728, 64.150101], - [-22.002944, 64.150131], - [-22.00318, 64.150136], - [-22.003174, 64.150195], - [-22.003228, 64.150374], - [-22.003164, 64.150443], - [-22.00306, 64.150552], - [-22.002936, 64.150685], - [-22.002877, 64.150746], - [-22.002947, 64.150782], - [-22.003126, 64.150802], - [-22.0033, 64.150867], - [-22.003667, 64.150958], - [-22.003746, 64.150989], - [-22.003778, 64.151041], - [-22.003899, 64.151084], - [-22.004071, 64.151131], - [-22.004259, 64.151204], - [-22.004361, 64.151226], - [-22.004519, 64.151296], - [-22.004681, 64.151336], - [-22.004763, 64.151411], - [-22.00488, 64.151516], - [-22.004971, 64.151679], - [-22.005062, 64.151864], - [-22.0052, 64.152076], - [-22.005387, 64.152278], - [-22.00561, 64.152432], - [-22.005839, 64.152634], - [-22.005905, 64.152822], - [-22.006009, 64.153053], - [-22.006239, 64.15335], - [-22.006464, 64.153579], - [-22.006662, 64.153673], - [-22.006999, 64.153783], - [-22.008242, 64.154064], - [-22.009339, 64.154252], - [-22.010351, 64.154429], - [-22.011701, 64.15466], - [-22.012546, 64.154768], - [-22.013542, 64.154875], - [-22.014617, 64.15492], - [-22.015946, 64.154945], - [-22.016794, 64.154933], - [-22.017754, 64.154843], - [-22.018438, 64.154754], - [-22.019868, 64.154569], - [-22.020658, 64.154456], - [-22.021126, 64.154359], - [-22.021843, 64.154198], - [-22.022372, 64.15407], - [-22.022946, 64.15389], - [-22.023971, 64.15356], - [-22.024646, 64.153289], - [-22.02507, 64.153076], - [-22.025359, 64.1529], - [-22.025487, 64.152778], - [-22.025584, 64.152651], - [-22.02556, 64.152547], - [-22.025474, 64.152465], - [-22.025336, 64.152353], - [-22.025192, 64.152256], - [-22.025076, 64.152114], - [-22.025108, 64.151973], - [-22.025219, 64.151861], - [-22.025629, 64.151413], - [-22.025796, 64.151233], - [-22.025857, 64.151027], - [-22.025777, 64.150915], - [-22.025758, 64.150579], - [-22.025782, 64.150337], - [-22.025885, 64.150145], - [-22.026173, 64.149981], - [-22.026748, 64.14973], - [-22.027335, 64.149568], - [-22.027997, 64.149488], - [-22.028624, 64.149483], - [-22.029094, 64.149541], - [-22.029572, 64.149626], - [-22.030072, 64.149846], - [-22.030339, 64.149996], - [-22.031041, 64.15036], - [-22.032252, 64.150807], - [-22.032966, 64.151051], - [-22.033238, 64.151153], - [-22.033639, 64.151449], - [-22.033864, 64.151613], - [-22.034331, 64.151741], - [-22.034831, 64.151872], - [-22.03517, 64.152017], - [-22.03541, 64.152195], - [-22.035821, 64.152566], - [-22.036179, 64.153038], - [-22.036351, 64.15334], - [-22.036403, 64.153602], - [-22.036287, 64.15373], - [-22.035971, 64.153825], - [-22.035737, 64.154089], - [-22.035585, 64.154342], - [-22.035447, 64.154601], - [-22.035258, 64.154739], - [-22.034978, 64.154847], - [-22.034394, 64.154963], - [-22.034046, 64.155028], - [-22.033528, 64.155067], - [-22.032994, 64.155066], - [-22.032603, 64.154949], - [-22.032225, 64.154822], - [-22.031925, 64.154815], - [-22.031664, 64.154812], - [-22.031505, 64.154748], - [-22.031347, 64.154644], - [-22.031063, 64.154597], - [-22.030787, 64.154605], - [-22.030502, 64.154628], - [-22.030194, 64.154707], - [-22.029853, 64.154784], - [-22.029585, 64.154919], - [-22.029357, 64.154952], - [-22.029073, 64.15495], - [-22.028659, 64.154923], - [-22.028358, 64.154904], - [-22.027868, 64.154897], - [-22.027203, 64.154882], - [-22.026213, 64.15485], - [-22.025472, 64.154867], - [-22.024781, 64.154936], - [-22.023969, 64.155064], - [-22.023128, 64.155236], - [-22.022437, 64.155481], - [-22.021637, 64.155813], - [-22.020364, 64.156436], - [-22.019376, 64.156954], - [-22.018596, 64.157396], - [-22.018281, 64.157619], - [-22.018054, 64.157845], - [-22.017624, 64.158298], - [-22.017018, 64.158959], - [-22.016526, 64.159542], - [-22.016197, 64.15997], - [-22.015928, 64.160383], - [-22.015796, 64.160818], - [-22.01573, 64.161332], - [-22.015783, 64.161536], - [-22.015861, 64.161836], - [-22.016061, 64.162379], - [-22.016324, 64.16283], - [-22.016566, 64.163075], - [-22.016529, 64.163141], - [-22.016428, 64.163195], - [-22.016192, 64.163142], - [-22.014986, 64.16279], - [-22.014583, 64.162665], - [-22.01428, 64.162672], - [-22.014081, 64.1627], - [-22.013973, 64.162748], - [-22.013849, 64.162761], - [-22.012584, 64.162728], - [-22.012418, 64.162708], - [-22.012247, 64.162637], - [-22.012065, 64.162619], - [-22.011455, 64.162575], - [-22.010901, 64.162557], - [-22.010213, 64.162548], - [-22.009557, 64.162553], - [-22.008824, 64.162555], - [-22.008269, 64.162617], - [-22.007918, 64.162574], - [-22.007703, 64.162467], - [-22.00754, 64.162306], - [-22.007295, 64.162195], - [-22.00692, 64.162074], - [-22.006595, 64.162021], - [-22.006386, 64.161975], - [-22.006239, 64.161909], - [-22.005921, 64.161741], - [-22.005182, 64.161328], - [-22.004679, 64.161035], - [-22.004224, 64.160829], - [-22.003739, 64.160545], - [-22.003325, 64.160319], - [-22.003079, 64.160255], - [-22.002526, 64.160145], - [-22.001712, 64.160017], - [-22.001192, 64.159953], - [-22.000827, 64.159886], - [-22.0003, 64.159757], - [-21.999956, 64.159666], - [-21.999649, 64.159638], - [-21.999376, 64.159585], - [-21.99901, 64.159514], - [-21.998494, 64.159481], - [-21.997666, 64.159474], - [-21.997142, 64.159485], - [-21.996781, 64.159414], - [-21.996524, 64.159306], - [-21.996417, 64.159174], - [-21.996207, 64.159023], - [-21.996033, 64.158949], - [-21.995746, 64.158904], - [-21.995392, 64.158837], - [-21.995182, 64.15874], - [-21.995084, 64.158634], - [-21.994923, 64.15849], - [-21.994658, 64.158401], - [-21.994203, 64.1583], - [-21.993557, 64.158162], - [-21.993188, 64.158075], - [-21.992404, 64.157915], - [-21.991669, 64.157842], - [-21.990342, 64.157703], - [-21.989463, 64.157545], - [-21.988434, 64.157331], - [-21.987537, 64.157139], - [-21.987289, 64.157075], - [-21.98712, 64.156992], - [-21.986727, 64.156603], - [-21.986457, 64.156233], - [-21.986284, 64.15585], - [-21.986104, 64.155344], - [-21.985719, 64.154236], - [-21.985526, 64.153652], - [-21.985296, 64.153034], - [-21.985175, 64.152702], - [-21.985042, 64.152566], - [-21.984788, 64.152425], - [-21.984206, 64.152128], - [-21.983559, 64.151753], - [-21.983255, 64.151623], - [-21.982877, 64.151527], - [-21.982337, 64.151395], - [-21.981827, 64.151268], - [-21.981343, 64.151124], - [-21.981136, 64.151053], - [-21.980613, 64.150873], - [-21.98007, 64.150693], - [-21.979398, 64.150558], - [-21.978741, 64.150451], - [-21.977469, 64.150324], - [-21.97616, 64.150216], - [-21.975032, 64.150147], - [-21.974, 64.150096], - [-21.973126, 64.150064], - [-21.972322, 64.150056], - [-21.971183, 64.150092], - [-21.970951, 64.150119], - [-21.970842, 64.150168], - [-21.970832, 64.150255], - [-21.970773, 64.150326], - [-21.970635, 64.150375], - [-21.970426, 64.150401], - [-21.969871, 64.150411], - [-21.969657, 64.150381], - [-21.969456, 64.150304], - [-21.969247, 64.150234], - [-21.96907, 64.150227], - [-21.96889, 64.150238], - [-21.966834, 64.150505], - [-21.965991, 64.150644], - [-21.965234, 64.150807], - [-21.963828, 64.151142], - [-21.962561, 64.151447], - [-21.962247, 64.151463], - [-21.96193, 64.151468], - [-21.961137, 64.151399], - [-21.960823, 64.151355], - [-21.960578, 64.151339], - [-21.960335, 64.151351], - [-21.960004, 64.151383], - [-21.959566, 64.151455], - [-21.959097, 64.151551], - [-21.956485, 64.152307], - [-21.956332, 64.152393], - [-21.956247, 64.152519], - [-21.956248, 64.152641], - [-21.95637, 64.152822], - [-21.956444, 64.152936], - [-21.956424, 64.153065], - [-21.956338, 64.153166], - [-21.956228, 64.153246], - [-21.956007, 64.153351], - [-21.955763, 64.153431], - [-21.95551, 64.153481], - [-21.955265, 64.153495], - [-21.955025, 64.153474], - [-21.954914, 64.153481], - [-21.954838, 64.153525], - [-21.954108, 64.154065], - [-21.95382, 64.15428], - [-21.953803, 64.15436], - [-21.95389, 64.154417], - [-21.95578, 64.15561], - [-21.95587, 64.155667], - [-21.955833, 64.155733], - [-21.955705, 64.155782], - [-21.946609, 64.158559], - [-21.946433, 64.158679], - [-21.94632, 64.158779], - [-21.946274, 64.158884], - [-21.946553, 64.160147], - [-21.946561, 64.160251], - [-21.946421, 64.16035], - [-21.946222, 64.160394], - [-21.942768, 64.160812], - [-21.941449, 64.160916], - [-21.939292, 64.161121], - [-21.939045, 64.161145], - [-21.938819, 64.16114], - [-21.938566, 64.161098], - [-21.937586, 64.16048], - [-21.937752, 64.160335], - [-21.937907, 64.160199], - [-21.937968, 64.160114], - [-21.937962, 64.160017], - [-21.937873, 64.159942], - [-21.937735, 64.159844], - [-21.937608, 64.159805], - [-21.937469, 64.15978], - [-21.937381, 64.159753], - [-21.937371, 64.159703], - [-21.937418, 64.159646], - [-21.937556, 64.159613], - [-21.937779, 64.159556], - [-21.937892, 64.159462], - [-21.937927, 64.159289], - [-21.938008, 64.159134], - [-21.938136, 64.158932], - [-21.938208, 64.158175], - [-21.938135, 64.158082], - [-21.938036, 64.158022], - [-21.937916, 64.157972], - [-21.937782, 64.157948], - [-21.937655, 64.157951], - [-21.937554, 64.157981], - [-21.937376, 64.158076], - [-21.937183, 64.157996], - [-21.937339, 64.157913], - [-21.937415, 64.157871], - [-21.937462, 64.157742], - [-21.937354, 64.157204], - [-21.937267, 64.157103], - [-21.937132, 64.156998], - [-21.933355, 64.154605], - [-21.93327, 64.154547], - [-21.933252, 64.154476], - [-21.933273, 64.154386], - [-21.933383, 64.154325], - [-21.934203, 64.154048], - [-21.934219, 64.154042], - [-21.934233, 64.154038], - [-21.935017, 64.153782], - [-21.936927, 64.154979], - [-21.936673, 64.155058], - [-21.938023, 64.155917], - [-21.938884, 64.155664], - [-21.939121, 64.155595], - [-21.939674, 64.155433], - [-21.939786, 64.1554], - [-21.940267, 64.155259], - [-21.941386, 64.15493], - [-21.939934, 64.15402], - [-21.941026, 64.153687], - [-21.942564, 64.154646], - [-21.944929, 64.153938], - [-21.945348, 64.153813], - [-21.945724, 64.154053], - [-21.946404, 64.153849], - [-21.946535, 64.15381], - [-21.947035, 64.153661], - [-21.947145, 64.153628], - [-21.947659, 64.153474], - [-21.947775, 64.153439], - [-21.948509, 64.153228], - [-21.948432, 64.153179], - [-21.948609, 64.153124], - [-21.948642, 64.153113], - [-21.948788, 64.153068], - [-21.948891, 64.152955], - [-21.948598, 64.152894], - [-21.948445, 64.152959], - [-21.948373, 64.152989], - [-21.947827, 64.152648], - [-21.947783, 64.15262], - [-21.947694, 64.152565], - [-21.947567, 64.15259], - [-21.947506, 64.152541], - [-21.946781, 64.152698], - [-21.946664, 64.152677], - [-21.945769, 64.152336], - [-21.945698, 64.152266], - [-21.945701, 64.152209], - [-21.945586, 64.152081], - [-21.945515, 64.152012], - [-21.94568, 64.151888], - [-21.945549, 64.151835], - [-21.945316, 64.151928], - [-21.945057, 64.151884], - [-21.944914, 64.15184], - [-21.945099, 64.151716], - [-21.944918, 64.151653], - [-21.94458, 64.151708], - [-21.943188, 64.152305], - [-21.942588, 64.151992], - [-21.942272, 64.152083], - [-21.942331, 64.152115], - [-21.942255, 64.15214], - [-21.942327, 64.152177], - [-21.939992, 64.153003], - [-21.939617, 64.152806], - [-21.941978, 64.151976], - [-21.942065, 64.152024], - [-21.942175, 64.152028], - [-21.942481, 64.151919], - [-21.943859, 64.151424], - [-21.943883, 64.151282], - [-21.943597, 64.151136], - [-21.943136, 64.150901], - [-21.942674, 64.150666], - [-21.941541, 64.151034], - [-21.940311, 64.150726], - [-21.940265, 64.150715], - [-21.937418, 64.149399], - [-21.93739, 64.149386], - [-21.935445, 64.150384], - [-21.935132, 64.150481], - [-21.934755, 64.150592], - [-21.934511, 64.150426], - [-21.934359, 64.15045], - [-21.934002, 64.150508], - [-21.934068, 64.150587], - [-21.932899, 64.150813], - [-21.932835, 64.150745], - [-21.93173, 64.150777], - [-21.931753, 64.150954], - [-21.931816, 64.151152], - [-21.931862, 64.151281], - [-21.931745, 64.151286], - [-21.931604, 64.151293], - [-21.931582, 64.151294], - [-21.93105, 64.15087], - [-21.930668, 64.150538], - [-21.930232, 64.150309], - [-21.929461, 64.149935], - [-21.928573, 64.149801], - [-21.92792, 64.149669], - [-21.927245, 64.149448], - [-21.926891, 64.14928], - [-21.92683, 64.149188], - [-21.926813, 64.149095], - [-21.926673, 64.148991], - [-21.926536, 64.148947], - [-21.922793, 64.147722], - [-21.922708, 64.147712], - [-21.922603, 64.14772], - [-21.92248, 64.147751], - [-21.922359, 64.147769], - [-21.922217, 64.147772], - [-21.922086, 64.147754], - [-21.921982, 64.14772], - [-21.921911, 64.147674], - [-21.921879, 64.147626], - [-21.921879, 64.147578], - [-21.921922, 64.147521], - [-21.921915, 64.147466], - [-21.921858, 64.147415], - [-21.921149, 64.147176], - [-21.91957, 64.146725], - [-21.917654, 64.14633], - [-21.916859, 64.146222], - [-21.916035, 64.146154], - [-21.915194, 64.146159], - [-21.914641, 64.146197], - [-21.914166, 64.146229], - [-21.913363, 64.146325], - [-21.912658, 64.146444], - [-21.912178, 64.146554], - [-21.91121, 64.146819], - [-21.91024, 64.14701], - [-21.909042, 64.147203], - [-21.908233, 64.147304], - [-21.906536, 64.147407], - [-21.905351, 64.147453], - [-21.902715, 64.147536], - [-21.898692, 64.147652], - [-21.896238, 64.147744], - [-21.895052, 64.147822], - [-21.894473, 64.147909], - [-21.89406, 64.148072], - [-21.892921, 64.148262], - [-21.892026, 64.148592], - [-21.891434, 64.149096], - [-21.890191, 64.150212], - [-21.889706, 64.150619], - [-21.889347, 64.150733], - [-21.888862, 64.150771], - [-21.888484, 64.150827], - [-21.888358, 64.151016], - [-21.888169, 64.151212], - [-21.888331, 64.151553], - [-21.888667, 64.151715], - [-21.889213, 64.151821], - [-21.889358, 64.151886], - [-21.889576, 64.152096], - [-21.889636, 64.152232], - [-21.889629, 64.152322], - [-21.889465, 64.152496], - [-21.889325, 64.152452], - [-21.889196, 64.152512], - [-21.889097, 64.15258], - [-21.889224, 64.152627], - [-21.889283, 64.152659], - [-21.889194, 64.152714], - [-21.889214, 64.152786], - [-21.889268, 64.152885], - [-21.889227, 64.152954], - [-21.888832, 64.153073], - [-21.888317, 64.153223], - [-21.887869, 64.153253], - [-21.887464, 64.153308], - [-21.88694, 64.153596], - [-21.886547, 64.153766], - [-21.886531, 64.153919], - [-21.886228, 64.154076], - [-21.885863, 64.154105], - [-21.885419, 64.154026], - [-21.884905, 64.154101], - [-21.88433, 64.154265], - [-21.883839, 64.154501], - [-21.883624, 64.154619], - [-21.882238, 64.154995], - [-21.881644, 64.155142], - [-21.880945, 64.155342], - [-21.88041, 64.155355], - [-21.879667, 64.155285], - [-21.87929, 64.155287], - [-21.878868, 64.15525], - [-21.878508, 64.155269], - [-21.877327, 64.155334], - [-21.875776, 64.155356], - [-21.875329, 64.15542], - [-21.874947, 64.155575], - [-21.873177, 64.156201], - [-21.87257, 64.156279], - [-21.871724, 64.156278], - [-21.870879, 64.156089], - [-21.870587, 64.156007], - [-21.870434, 64.155972], - [-21.869724, 64.155766], - [-21.869314, 64.15583], - [-21.869016, 64.155897], - [-21.868606, 64.15597], - [-21.868175, 64.155984], - [-21.868202, 64.156313], - [-21.868218, 64.156502], - [-21.86808, 64.15663], - [-21.867537, 64.156906], - [-21.864892, 64.157978], - [-21.864654, 64.157875], - [-21.867249, 64.156721], - [-21.867423, 64.156516], - [-21.867333, 64.156372], - [-21.867126, 64.156262], - [-21.866499, 64.156004], - [-21.866225, 64.155989], - [-21.865558, 64.156181], - [-21.8658, 64.156304], - [-21.865265, 64.1565], - [-21.865159, 64.156538], - [-21.864875, 64.156641], - [-21.858948, 64.153524], - [-21.859345, 64.153382], - [-21.858635, 64.153019], - [-21.858476, 64.152964], - [-21.858428, 64.15287], - [-21.858835, 64.152767], - [-21.857595, 64.151579], - [-21.858487, 64.151374], - [-21.858435, 64.151305], - [-21.860925, 64.150807], - [-21.85935, 64.149707], - [-21.85769, 64.148549], - [-21.857233, 64.14867], - [-21.857441, 64.148934], - [-21.856672, 64.149041], - [-21.856834, 64.149217], - [-21.848577, 64.150792], - [-21.848377, 64.150597], - [-21.848066, 64.150655], - [-21.847639, 64.150214], - [-21.841184, 64.147345], - [-21.841038, 64.147291], - [-21.839569, 64.146743], - [-21.839028, 64.146473], - [-21.838887, 64.146252], - [-21.838856, 64.146204], - [-21.838895, 64.146132], - [-21.838924, 64.145732], - [-21.839106, 64.145503], - [-21.839293, 64.14493], - [-21.839078, 64.144375], - [-21.838951, 64.143986], - [-21.83873, 64.143467], - [-21.838596, 64.143247], - [-21.838526, 64.143177], - [-21.837888, 64.143179], - [-21.837769, 64.141918], - [-21.837764, 64.141853], - [-21.837645, 64.140554], - [-21.837363, 64.136699], - [-21.837796, 64.136691], - [-21.837687, 64.135734], - [-21.837981, 64.135684], - [-21.83831, 64.135638], - [-21.838456, 64.135555], - [-21.838379, 64.135401], - [-21.83807, 64.13534], - [-21.837912, 64.135147], - [-21.837783, 64.135021], - [-21.837745, 64.134881], - [-21.837982, 64.134772], - [-21.83916, 64.134579], - [-21.839776, 64.134553], - [-21.840916, 64.134553], - [-21.8419, 64.134291], - [-21.843096, 64.133889], - [-21.843488, 64.133692], - [-21.84357, 64.133481], - [-21.84365, 64.1332], - [-21.84371, 64.132995], - [-21.843821, 64.132759], - [-21.843833, 64.13255], - [-21.843737, 64.132325], - [-21.843917, 64.132223], - [-21.844285, 64.132002], - [-21.84456, 64.131669], - [-21.844706, 64.131331], - [-21.845227, 64.130979], - [-21.845672, 64.130682], - [-21.845811, 64.130536], - [-21.845857, 64.130218], - [-21.845846, 64.129843], - [-21.845614, 64.129858], - [-21.845211, 64.130048], - [-21.844889, 64.130338], - [-21.844395, 64.130682], - [-21.84395, 64.131028], - [-21.843695, 64.131221], - [-21.843446, 64.131412], - [-21.843156, 64.131637], - [-21.842909, 64.131768], - [-21.84265, 64.13196], - [-21.842693, 64.132165], - [-21.842588, 64.132461], - [-21.842454, 64.132681], - [-21.842517, 64.132802], - [-21.842502, 64.132975], - [-21.842301, 64.133243], - [-21.842088, 64.133622], - [-21.841848, 64.133771], - [-21.841452, 64.133958], - [-21.841077, 64.13409], - [-21.840526, 64.134216], - [-21.840198, 64.134151], - [-21.839905, 64.134005], - [-21.840002, 64.133931], - [-21.84052, 64.133528], - [-21.840466, 64.133513], - [-21.840304, 64.133467], - [-21.840437, 64.133344], - [-21.839979, 64.133236], - [-21.839243, 64.133078], - [-21.838494, 64.132925], - [-21.837942, 64.132807], - [-21.837126, 64.13363], - [-21.838604, 64.134169], - [-21.83863, 64.134267], - [-21.838526, 64.134338], - [-21.838275, 64.134356], - [-21.836891, 64.133863], - [-21.836563, 64.134027], - [-21.836328, 64.134026], - [-21.836161, 64.133972], - [-21.836245, 64.133864], - [-21.837202, 64.133055], - [-21.837584, 64.132699], - [-21.837812, 64.13248], - [-21.837754, 64.132395], - [-21.837771, 64.132273], - [-21.838027, 64.132208], - [-21.838168, 64.132091], - [-21.838821, 64.132056], - [-21.839191, 64.131877], - [-21.839581, 64.131599], - [-21.839799, 64.131379], - [-21.840005, 64.131147], - [-21.840428, 64.130861], - [-21.840756, 64.130659], - [-21.841223, 64.130584], - [-21.841738, 64.130527], - [-21.842219, 64.130421], - [-21.843151, 64.129766], - [-21.844232, 64.129162], - [-21.844612, 64.129023], - [-21.844746, 64.128917], - [-21.844732, 64.128807], - [-21.844535, 64.128746], - [-21.844553, 64.128513], - [-21.844537, 64.128245], - [-21.844645, 64.127984], - [-21.844718, 64.12766], - [-21.844938, 64.127403], - [-21.845382, 64.127263], - [-21.84566, 64.127076], - [-21.845206, 64.126238], - [-21.84482, 64.12629], - [-21.844658, 64.126303], - [-21.844521, 64.126238], - [-21.844433, 64.126111], - [-21.844431, 64.125881], - [-21.844185, 64.125165], - [-21.843897, 64.124968], - [-21.843775, 64.124894], - [-21.84365, 64.124872], - [-21.843566, 64.124935], - [-21.843548, 64.125007], - [-21.843601, 64.1251], - [-21.843743, 64.125335], - [-21.843925, 64.12555], - [-21.844021, 64.125722], - [-21.844052, 64.125848], - [-21.844078, 64.126039], - [-21.844078, 64.1262], - [-21.84401, 64.126338], - [-21.843867, 64.126546], - [-21.843708, 64.126679], - [-21.84299, 64.127062], - [-21.842482, 64.127448], - [-21.842136, 64.127735], - [-21.842024, 64.127899], - [-21.842082, 64.128076], - [-21.842207, 64.128481], - [-21.842225, 64.128913], - [-21.84197, 64.129378], - [-21.841368, 64.12985], - [-21.840663, 64.130277], - [-21.839989, 64.130628], - [-21.839879, 64.130688], - [-21.839459, 64.130915], - [-21.838584, 64.131121], - [-21.837835, 64.131339], - [-21.837336, 64.131457], - [-21.836941, 64.131467], - [-21.83656, 64.13136], - [-21.836219, 64.131135], - [-21.836045, 64.130813], - [-21.836006, 64.130386], - [-21.836214, 64.13007], - [-21.836738, 64.129662], - [-21.837075, 64.129286], - [-21.837272, 64.129099], - [-21.837357, 64.128851], - [-21.837608, 64.128356], - [-21.837593, 64.128159], - [-21.837519, 64.127886], - [-21.837546, 64.127565], - [-21.837734, 64.127412], - [-21.838001, 64.127316], - [-21.839019, 64.127147], - [-21.839771, 64.126906], - [-21.840501, 64.126695], - [-21.841148, 64.126359], - [-21.841531, 64.126173], - [-21.841885, 64.125995], - [-21.842538, 64.125572], - [-21.842763, 64.125265], - [-21.842647, 64.125193], - [-21.842196, 64.125077], - [-21.841933, 64.124984], - [-21.841708, 64.124998], - [-21.841645, 64.125054], - [-21.841965, 64.125226], - [-21.842214, 64.125366], - [-21.84229, 64.125525], - [-21.842077, 64.125675], - [-21.841891, 64.125729], - [-21.841645, 64.125771], - [-21.84131, 64.125868], - [-21.840752, 64.126159], - [-21.840165, 64.126414], - [-21.838069, 64.126922], - [-21.837777, 64.12708], - [-21.83738, 64.127277], - [-21.837289, 64.1274], - [-21.83729, 64.127564], - [-21.837233, 64.127722], - [-21.837226, 64.127921], - [-21.837255, 64.128113], - [-21.837259, 64.128283], - [-21.837178, 64.128605], - [-21.837075, 64.128834], - [-21.836878, 64.129012], - [-21.836374, 64.129457], - [-21.835913, 64.129855], - [-21.835591, 64.130122], - [-21.835447, 64.130253], - [-21.835447, 64.13043], - [-21.835568, 64.130767], - [-21.835868, 64.131206], - [-21.836265, 64.131579], - [-21.836438, 64.131828], - [-21.836512, 64.132045], - [-21.836446, 64.13232], - [-21.836005, 64.133103], - [-21.835905, 64.133301], - [-21.835562, 64.133415], - [-21.835156, 64.133473], - [-21.834767, 64.133458], - [-21.834558, 64.133384], - [-21.834175, 64.133256], - [-21.833912, 64.133145], - [-21.833771, 64.132977], - [-21.833552, 64.132901], - [-21.83298, 64.132817], - [-21.832676, 64.132742], - [-21.832541, 64.132643], - [-21.832424, 64.132404], - [-21.832426, 64.132304], - [-21.832508, 64.132245], - [-21.832402, 64.132159], - [-21.832309, 64.132058], - [-21.832147, 64.131841], - [-21.831968, 64.131649], - [-21.831798, 64.131553], - [-21.83161, 64.131529], - [-21.831401, 64.131586], - [-21.831151, 64.131818], - [-21.830984, 64.132011], - [-21.830909, 64.132252], - [-21.830906, 64.132436], - [-21.830746, 64.132561], - [-21.83033, 64.132654], - [-21.829916, 64.132731], - [-21.829242, 64.132874], - [-21.829343, 64.132974], - [-21.82754, 64.133435], - [-21.827448, 64.133403], - [-21.827287, 64.133465], - [-21.827099, 64.133514], - [-21.826883, 64.133511], - [-21.826692, 64.133542], - [-21.826522, 64.133617], - [-21.826424, 64.133762], - [-21.82681, 64.134413], - [-21.826849, 64.134498], - [-21.82675, 64.13459], - [-21.826579, 64.134645], - [-21.82579, 64.134879], - [-21.825507, 64.13499], - [-21.825328, 64.135012], - [-21.825033, 64.135002], - [-21.823833, 64.134868], - [-21.823007, 64.134727], - [-21.822473, 64.134564], - [-21.822026, 64.134434], - [-21.821826, 64.134373], - [-21.821463, 64.134359], - [-21.821115, 64.134368], - [-21.820605, 64.134443], - [-21.82019, 64.134535], - [-21.819815, 64.134658], - [-21.819434, 64.13482], - [-21.819439, 64.134943], - [-21.819316, 64.134975], - [-21.819133, 64.134963], - [-21.819079, 64.13489], - [-21.819082, 64.13478], - [-21.819381, 64.134609], - [-21.820297, 64.13428], - [-21.820206, 64.134217], - [-21.820606, 64.134095], - [-21.820678, 64.133251], - [-21.819331, 64.133136], - [-21.819208, 64.133126], - [-21.819132, 64.133225], - [-21.818938, 64.133205], - [-21.818322, 64.133145], - [-21.816291, 64.132947], - [-21.815953, 64.133696], - [-21.816053, 64.133782], - [-21.815817, 64.13394], - [-21.815337, 64.133984], - [-21.814954, 64.133784], - [-21.814287, 64.13386], - [-21.814155, 64.133948], - [-21.814018, 64.134021], - [-21.813828, 64.134056], - [-21.813176, 64.1339], - [-21.813067, 64.13383], - [-21.812954, 64.133735], - [-21.81291, 64.133638], - [-21.812931, 64.133541], - [-21.812966, 64.133404], - [-21.812999, 64.133237], - [-21.812996, 64.133123], - [-21.812889, 64.132959], - [-21.81275, 64.132801], - [-21.812607, 64.132694], - [-21.81242, 64.132589], - [-21.812262, 64.132524], - [-21.812109, 64.132458], - [-21.811922, 64.132358], - [-21.811796, 64.132249], - [-21.811687, 64.132123], - [-21.811238, 64.131411], - [-21.810907, 64.130845], - [-21.810814, 64.130689], - [-21.810725, 64.130569], - [-21.810633, 64.130468], - [-21.810517, 64.13035], - [-21.810381, 64.130145], - [-21.810262, 64.129996], - [-21.810176, 64.129918], - [-21.810071, 64.129869], - [-21.809756, 64.129767], - [-21.809185, 64.129609], - [-21.808665, 64.129525], - [-21.807911, 64.129453], - [-21.807199, 64.129373], - [-21.806426, 64.129219], - [-21.805579, 64.129046], - [-21.803929, 64.128818], - [-21.802242, 64.128464], - [-21.800331, 64.128182], - [-21.799873, 64.128034], - [-21.799123, 64.127947], - [-21.798436, 64.127828], - [-21.797298, 64.12749], - [-21.79623, 64.127354], - [-21.795554, 64.127139], - [-21.795084, 64.12708], - [-21.794741, 64.127123], - [-21.794419, 64.127164], - [-21.794021, 64.127182], - [-21.793736, 64.127203], - [-21.7935, 64.127275], - [-21.793315, 64.127387], - [-21.793306, 64.127503], - [-21.793416, 64.127616], - [-21.793407, 64.127694], - [-21.793184, 64.12777], - [-21.792813, 64.127758], - [-21.792528, 64.127748], - [-21.792296, 64.127815], - [-21.792156, 64.127972], - [-21.792137, 64.128353], - [-21.791698, 64.129059], - [-21.791318, 64.129363], - [-21.791106, 64.129574], - [-21.791063, 64.129741], - [-21.791146, 64.129867], - [-21.791425, 64.129939], - [-21.791898, 64.130288], - [-21.792204, 64.130461], - [-21.792752, 64.130659], - [-21.793453, 64.130843], - [-21.794553, 64.131166], - [-21.795582, 64.131309], - [-21.796229, 64.131432], - [-21.796816, 64.13144], - [-21.797921, 64.131321], - [-21.798905, 64.131161], - [-21.799115, 64.131196], - [-21.799344, 64.131334], - [-21.79977, 64.131423], - [-21.800648, 64.131621], - [-21.801265, 64.13173], - [-21.801911, 64.131907], - [-21.802912, 64.132178], - [-21.803986, 64.13238], - [-21.805106, 64.132452], - [-21.805516, 64.132546], - [-21.806075, 64.13265], - [-21.806467, 64.1327], - [-21.806747, 64.132782], - [-21.806958, 64.132915], - [-21.807629, 64.133084], - [-21.808372, 64.133326], - [-21.808914, 64.133568], - [-21.809317, 64.133714], - [-21.809863, 64.133808], - [-21.810495, 64.13382], - [-21.811161, 64.133685], - [-21.811513, 64.133639], - [-21.811812, 64.133685], - [-21.812246, 64.133793], - [-21.812562, 64.133948], - [-21.812901, 64.134131], - [-21.81335, 64.134181], - [-21.813842, 64.134343], - [-21.814221, 64.13445], - [-21.814571, 64.134524], - [-21.815005, 64.134617], - [-21.815287, 64.134737], - [-21.815537, 64.134839], - [-21.815787, 64.13488], - [-21.816006, 64.134941], - [-21.816134, 64.13501], - [-21.816299, 64.135084], - [-21.816561, 64.135149], - [-21.816704, 64.135207], - [-21.816698, 64.13531], - [-21.816601, 64.135401], - [-21.816402, 64.135464], - [-21.81622, 64.135511], - [-21.816091, 64.135568], - [-21.815996, 64.135656], - [-21.816027, 64.135768], - [-21.816168, 64.135884], - [-21.816446, 64.13595], - [-21.81702, 64.136057], - [-21.817296, 64.136053], - [-21.817535, 64.135951], - [-21.817767, 64.135881], - [-21.818069, 64.135872], - [-21.818371, 64.135907], - [-21.818602, 64.135974], - [-21.819045, 64.136168], - [-21.819791, 64.136467], - [-21.820079, 64.136532], - [-21.820639, 64.13656], - [-21.820897, 64.136593], - [-21.82116, 64.136678], - [-21.821356, 64.136758], - [-21.822363, 64.137356], - [-21.822472, 64.13744], - [-21.822574, 64.137582], - [-21.822748, 64.138055], - [-21.822939, 64.138438], - [-21.82324, 64.138998], - [-21.823479, 64.139233], - [-21.823879, 64.139525], - [-21.824202, 64.139591], - [-21.824736, 64.140045], - [-21.82512, 64.140336], - [-21.825502, 64.140686], - [-21.825753, 64.141008], - [-21.826237, 64.142101], - [-21.826474, 64.142607], - [-21.825797, 64.143241], - [-21.825782, 64.143474], - [-21.82576, 64.143571], - [-21.825576, 64.143708], - [-21.825185, 64.143961], - [-21.82505, 64.144009], - [-21.824865, 64.144053], - [-21.824185, 64.144158], - [-21.82401, 64.144231], - [-21.82317, 64.144714], - [-21.823006, 64.144834], - [-21.822967, 64.144938], - [-21.822301, 64.145503], - [-21.822419, 64.146094], - [-21.822383, 64.146381], - [-21.822339, 64.146555], - [-21.822172, 64.146977], - [-21.822008, 64.147287], - [-21.821652, 64.147795], - [-21.821193, 64.148419], - [-21.820948, 64.148607], - [-21.820064, 64.149143], - [-21.819481, 64.149483], - [-21.819826, 64.149635], - [-21.820008, 64.149776], - [-21.820123, 64.14996], - [-21.8202, 64.150084], - [-21.820748, 64.150219], - [-21.821143, 64.150371], - [-21.822268, 64.150741], - [-21.823533, 64.151126], - [-21.823678, 64.151232], - [-21.823689, 64.151405], - [-21.823567, 64.151552], - [-21.82332, 64.151683], - [-21.823061, 64.15176], - [-21.822669, 64.151774], - [-21.822186, 64.1518], - [-21.82174, 64.151844], - [-21.820899, 64.152319], - [-21.8206, 64.152481], - [-21.820246, 64.152717], - [-21.81995, 64.153118], - [-21.819887, 64.153189], - [-21.819656, 64.153445], - [-21.819067, 64.15386], - [-21.818577, 64.154286], - [-21.819786, 64.154723], - [-21.819318, 64.154983], - [-21.81924, 64.155024], - [-21.817902, 64.154551], - [-21.816912, 64.155068], - [-21.816946, 64.155194], - [-21.816924, 64.155293], - [-21.816849, 64.155416], - [-21.816776, 64.155525], - [-21.816629, 64.155626], - [-21.816455, 64.155661], - [-21.816143, 64.1557], - [-21.815997, 64.155725], - [-21.815852, 64.155718], - [-21.815765, 64.155654], - [-21.815733, 64.155584], - [-21.815641, 64.155547], - [-21.815494, 64.155516], - [-21.815251, 64.155507], - [-21.815071, 64.155525], - [-21.814932, 64.155507], - [-21.814812, 64.155375], - [-21.814848, 64.15526], - [-21.815058, 64.155138], - [-21.815195, 64.155053], - [-21.815192, 64.155008], - [-21.814935, 64.154924], - [-21.814708, 64.154903], - [-21.81458, 64.154883], - [-21.814553, 64.154853], - [-21.814537, 64.154835], - [-21.81457, 64.154748], - [-21.814692, 64.15467], - [-21.814715, 64.154621], - [-21.814584, 64.154551], - [-21.814441, 64.15454], - [-21.814342, 64.154568], - [-21.814248, 64.154565], - [-21.814207, 64.154525], - [-21.814286, 64.154473], - [-21.814287, 64.15442], - [-21.814179, 64.154373], - [-21.813809, 64.154279], - [-21.813611, 64.154191], - [-21.813464, 64.154136], - [-21.813222, 64.154146], - [-21.811243, 64.154293], - [-21.81098, 64.15434], - [-21.810729, 64.154428], - [-21.810274, 64.154489], - [-21.809075, 64.154717], - [-21.807801, 64.155067], - [-21.807722, 64.155184], - [-21.807617, 64.155226], - [-21.80745, 64.155222], - [-21.807298, 64.155234], - [-21.807152, 64.155314], - [-21.807108, 64.155352], - [-21.807036, 64.155355], - [-21.806973, 64.155242], - [-21.805381, 64.155527], - [-21.803382, 64.155952], - [-21.802914, 64.15607], - [-21.802386, 64.156248], - [-21.80212, 64.156352], - [-21.802102, 64.156465], - [-21.802016, 64.15654], - [-21.801878, 64.156555], - [-21.801705, 64.156532], - [-21.801617, 64.156469], - [-21.801599, 64.156379], - [-21.801526, 64.156335], - [-21.801402, 64.156334], - [-21.801237, 64.156389], - [-21.801168, 64.156454], - [-21.801092, 64.156621], - [-21.800984, 64.1567], - [-21.800459, 64.156943], - [-21.800282, 64.156994], - [-21.8, 64.156984], - [-21.799458, 64.156847], - [-21.798796, 64.156908], - [-21.79829, 64.157155], - [-21.798215, 64.157272], - [-21.798098, 64.157356], - [-21.797932, 64.157423], - [-21.797735, 64.157418], - [-21.797588, 64.157349], - [-21.797627, 64.157128], - [-21.79747, 64.157072], - [-21.797417, 64.156948], - [-21.797333, 64.156831], - [-21.797209, 64.156665], - [-21.797018, 64.156595], - [-21.796489, 64.156536], - [-21.795931, 64.156489], - [-21.795481, 64.156504], - [-21.795128, 64.156601], - [-21.794832, 64.156772], - [-21.794575, 64.156866], - [-21.794317, 64.156912], - [-21.794067, 64.156912], - [-21.793917, 64.156827], - [-21.793857, 64.156674], - [-21.793856, 64.156513], - [-21.793732, 64.156431], - [-21.793604, 64.156423], - [-21.793259, 64.156396], - [-21.792927, 64.156456], - [-21.792145, 64.156653], - [-21.791141, 64.157228], - [-21.790803, 64.15749], - [-21.790261, 64.158002], - [-21.789872, 64.158646], - [-21.789663, 64.159279], - [-21.789586, 64.159641], - [-21.789607, 64.159937], - [-21.789665, 64.160224], - [-21.789833, 64.160391], - [-21.790237, 64.160544], - [-21.790658, 64.160666], - [-21.79139, 64.160753], - [-21.79244, 64.16076], - [-21.793193, 64.160835], - [-21.793864, 64.16091], - [-21.794653, 64.160904], - [-21.795031, 64.160974], - [-21.795683, 64.161118], - [-21.796495, 64.161246], - [-21.797346, 64.161368], - [-21.799642, 64.161905], - [-21.801291, 64.162335], - [-21.802084, 64.162523], - [-21.802918, 64.162756], - [-21.803533, 64.162822], - [-21.804045, 64.162804], - [-21.804356, 64.162815], - [-21.804848, 64.162926], - [-21.805573, 64.162965], - [-21.805944, 64.163064], - [-21.806328, 64.163087], - [-21.80686, 64.163074], - [-21.807138, 64.163059], - [-21.807341, 64.163072], - [-21.807569, 64.163148], - [-21.808417, 64.163217], - [-21.808849, 64.163355], - [-21.809259, 64.163454], - [-21.809644, 64.163491], - [-21.810252, 64.163627], - [-21.810955, 64.163691], - [-21.811851, 64.16384], - [-21.813676, 64.16417], - [-21.814081, 64.164069], - [-21.814565, 64.16418], - [-21.814784, 64.164139], - [-21.815327, 64.164313], - [-21.815201, 64.164452], - [-21.816715, 64.164869], - [-21.816989, 64.164794], - [-21.817517, 64.164472], - [-21.817619, 64.164494], - [-21.817661, 64.164534], - [-21.81713, 64.164952], - [-21.817257, 64.16504], - [-21.817276, 64.165275], - [-21.817762, 64.165398], - [-21.818316, 64.165557], - [-21.819893, 64.166015], - [-21.821095, 64.166604], - [-21.822541, 64.167337], - [-21.823069, 64.167722], - [-21.823449, 64.167989], - [-21.823699, 64.168247], - [-21.823876, 64.168505], - [-21.824106, 64.168686], - [-21.824475, 64.168853], - [-21.824681, 64.169091], - [-21.824666, 64.169232], - [-21.82489, 64.169505], - [-21.825253, 64.169738], - [-21.825316, 64.170053], - [-21.825373, 64.170261], - [-21.825422, 64.170609], - [-21.825633, 64.170934], - [-21.825914, 64.171248], - [-21.825862, 64.171371], - [-21.825784, 64.171657], - [-21.825581, 64.171833], - [-21.825184, 64.172083], - [-21.824338, 64.172632], - [-21.823718, 64.172868], - [-21.822294, 64.173302], - [-21.821666, 64.1734], - [-21.82144, 64.173496], - [-21.82143, 64.173691], - [-21.821506, 64.174038], - [-21.821298, 64.174255], - [-21.820882, 64.174426], - [-21.820706, 64.174555], - [-21.820061, 64.174463], - [-21.820006, 64.174246], - [-21.819719, 64.174353], - [-21.819443, 64.174286], - [-21.819383, 64.174019], - [-21.819406, 64.173767], - [-21.819594, 64.173477], - [-21.819206, 64.173451], - [-21.81837, 64.173384], - [-21.817497, 64.173449], - [-21.816825, 64.173585], - [-21.815927, 64.173756], - [-21.815398, 64.173803], - [-21.814276, 64.173771], - [-21.813284, 64.173741], - [-21.812109, 64.174014], - [-21.810948, 64.174194], - [-21.810443, 64.174183], - [-21.809225, 64.174231], - [-21.807724, 64.174198], - [-21.806879, 64.174313], - [-21.806297, 64.17458], - [-21.805436, 64.17474], - [-21.8046, 64.174788], - [-21.804069, 64.174647], - [-21.803314, 64.174267], - [-21.802844, 64.174068], - [-21.802069, 64.173839], - [-21.800978, 64.173671], - [-21.800201, 64.173387], - [-21.799469, 64.173028], - [-21.79869, 64.172651], - [-21.797741, 64.172137], - [-21.796291, 64.171526], - [-21.795301, 64.17125], - [-21.794836, 64.171019], - [-21.793932, 64.170831], - [-21.793056, 64.170651], - [-21.792691, 64.17046], - [-21.791758, 64.170221], - [-21.790908, 64.169964], - [-21.789864, 64.169779], - [-21.789086, 64.169531], - [-21.787881, 64.169123], - [-21.786854, 64.168995], - [-21.785981, 64.168795], - [-21.785171, 64.168461], - [-21.78449, 64.168221], - [-21.784207, 64.168021], - [-21.783594, 64.167889], - [-21.783014, 64.167765], - [-21.782047, 64.16785], - [-21.781498, 64.167818], - [-21.781053, 64.167715], - [-21.780532, 64.167481], - [-21.780294, 64.167285], - [-21.779997, 64.167034], - [-21.779805, 64.16677], - [-21.7799, 64.166608], - [-21.780215, 64.166524], - [-21.780734, 64.166514], - [-21.781167, 64.166535], - [-21.781439, 64.166504], - [-21.781634, 64.166344], - [-21.781735, 64.166179], - [-21.78185, 64.165958], - [-21.781854, 64.165694], - [-21.7816, 64.165226], - [-21.781183, 64.1649], - [-21.780884, 64.164729], - [-21.780572, 64.164439], - [-21.780447, 64.164088], - [-21.780437, 64.163809], - [-21.780828, 64.163263], - [-21.780988, 64.162918], - [-21.781008, 64.162702], - [-21.781174, 64.162456], - [-21.781377, 64.161841], - [-21.781631, 64.161105], - [-21.78193, 64.160698], - [-21.782667, 64.160373], - [-21.783564, 64.160166], - [-21.784543, 64.160096], - [-21.785428, 64.159657], - [-21.784701, 64.160407], - [-21.785071, 64.160549], - [-21.785479, 64.160588], - [-21.786052, 64.160626], - [-21.787329, 64.160789], - [-21.787792, 64.160911], - [-21.788424, 64.160933], - [-21.789229, 64.160923], - [-21.790161, 64.160884], - [-21.790417, 64.160839], - [-21.790431, 64.160739], - [-21.790055, 64.160626], - [-21.789645, 64.160487], - [-21.789357, 64.160251], - [-21.789061, 64.159985], - [-21.788956, 64.159881], - [-21.788876, 64.159736], - [-21.788831, 64.159578], - [-21.788841, 64.159393], - [-21.788915, 64.159119], - [-21.789054, 64.158765], - [-21.789253, 64.158346], - [-21.789578, 64.157915], - [-21.78978, 64.1577], - [-21.789944, 64.157575], - [-21.79009, 64.157356], - [-21.790181, 64.157166], - [-21.790136, 64.157006], - [-21.789913, 64.156948], - [-21.789476, 64.156921], - [-21.789255, 64.156996], - [-21.788698, 64.157186], - [-21.788488, 64.157202], - [-21.788329, 64.157118], - [-21.788294, 64.15699], - [-21.788208, 64.156872], - [-21.787882, 64.156709], - [-21.787506, 64.15654], - [-21.787091, 64.156417], - [-21.786576, 64.156412], - [-21.786099, 64.156412], - [-21.785729, 64.156384], - [-21.785349, 64.156325], - [-21.785042, 64.1563], - [-21.784753, 64.156307], - [-21.784382, 64.156384], - [-21.784033, 64.156504], - [-21.783701, 64.156681], - [-21.782965, 64.156868], - [-21.782301, 64.156964], - [-21.782057, 64.156925], - [-21.781823, 64.156775], - [-21.781673, 64.156667], - [-21.781458, 64.156588], - [-21.780933, 64.15649], - [-21.780176, 64.156462], - [-21.779357, 64.156464], - [-21.778241, 64.156544], - [-21.777218, 64.156611], - [-21.775778, 64.15687], - [-21.774841, 64.157008], - [-21.773615, 64.157153], - [-21.772907, 64.157296], - [-21.772279, 64.157378], - [-21.771856, 64.157553], - [-21.77155, 64.157644], - [-21.771216, 64.157695], - [-21.770945, 64.15771], - [-21.770639, 64.157746], - [-21.770401, 64.157756], - [-21.770214, 64.157735], - [-21.770085, 64.157668], - [-21.769995, 64.15757], - [-21.770093, 64.157448], - [-21.770253, 64.1573], - [-21.770133, 64.157196], - [-21.769964, 64.157136], - [-21.769898, 64.157021], - [-21.77079, 64.156415], - [-21.770773, 64.156348], - [-21.770694, 64.156277], - [-21.770436, 64.156231], - [-21.770394, 64.156172], - [-21.770407, 64.156093], - [-21.770379, 64.156034], - [-21.770173, 64.155978], - [-21.769859, 64.155934], - [-21.769544, 64.155901], - [-21.769285, 64.155897], - [-21.768987, 64.155902], - [-21.768744, 64.155967], - [-21.768553, 64.156107], - [-21.76852, 64.156254], - [-21.768538, 64.156432], - [-21.768457, 64.15652], - [-21.7683, 64.156594], - [-21.768058, 64.156645], - [-21.767585, 64.156695], - [-21.767233, 64.156757], - [-21.766847, 64.156869], - [-21.766639, 64.157028], - [-21.766654, 64.157187], - [-21.766417, 64.157424], - [-21.766367, 64.157553], - [-21.766433, 64.157623], - [-21.766704, 64.15763], - [-21.766789, 64.157661], - [-21.76686, 64.157726], - [-21.766805, 64.157812], - [-21.766496, 64.157888], - [-21.766351, 64.157908], - [-21.766329, 64.157829], - [-21.766305, 64.157757], - [-21.766217, 64.157695], - [-21.765899, 64.15767], - [-21.765641, 64.157675], - [-21.765334, 64.15773], - [-21.764743, 64.15786], - [-21.764203, 64.158033], - [-21.763876, 64.15818], - [-21.763645, 64.158413], - [-21.763813, 64.158571], - [-21.763986, 64.1587], - [-21.764058, 64.158802], - [-21.763933, 64.158865], - [-21.763715, 64.158914], - [-21.763587, 64.158922], - [-21.763446, 64.158877], - [-21.763394, 64.158801], - [-21.763459, 64.158671], - [-21.763393, 64.158582], - [-21.763182, 64.158579], - [-21.762841, 64.158615], - [-21.762508, 64.158704], - [-21.761848, 64.15894], - [-21.761026, 64.159347], - [-21.760287, 64.159837], - [-21.760012, 64.159947], - [-21.759745, 64.159957], - [-21.759586, 64.15989], - [-21.75944, 64.15982], - [-21.759175, 64.159805], - [-21.758342, 64.159994], - [-21.757738, 64.160184], - [-21.757032, 64.160457], - [-21.756183, 64.160796], - [-21.755707, 64.161093], - [-21.755422, 64.161275], - [-21.754991, 64.161371], - [-21.754139, 64.161528], - [-21.753409, 64.161741], - [-21.752694, 64.162031], - [-21.7519, 64.162471], - [-21.751219, 64.162938], - [-21.750693, 64.163368], - [-21.750103, 64.16382], - [-21.749948, 64.16407], - [-21.749776, 64.164257], - [-21.749505, 64.164468], - [-21.748828, 64.164758], - [-21.748543, 64.164906], - [-21.748387, 64.164943], - [-21.748215, 64.164858], - [-21.748006, 64.164841], - [-21.74764, 64.164823], - [-21.747148, 64.16488], - [-21.746704, 64.164962], - [-21.746483, 64.165188], - [-21.746471, 64.165204], - [-21.746671, 64.165281], - [-21.74696, 64.16528], - [-21.747367, 64.165358], - [-21.74772, 64.165459], - [-21.748124, 64.165536], - [-21.748663, 64.165676], - [-21.749595, 64.165811], - [-21.750701, 64.16602], - [-21.751201, 64.166301], - [-21.751511, 64.166599], - [-21.752318, 64.166944], - [-21.753142, 64.167372], - [-21.754319, 64.16756], - [-21.754482, 64.167917], - [-21.753883, 64.168211], - [-21.753358, 64.168277], - [-21.753658, 64.168799], - [-21.753433, 64.169159], - [-21.752758, 64.169518], - [-21.751559, 64.169877], - [-21.750509, 64.16991], - [-21.74931, 64.169975], - [-21.74811, 64.169975], - [-21.746911, 64.16991], - [-21.746386, 64.169714], - [-21.745187, 64.169616], - [-21.743987, 64.169616], - [-21.743163, 64.16942], - [-21.742038, 64.169322], - [-21.741064, 64.169159], - [-21.73949, 64.169159], - [-21.73904, 64.169191], - [-21.73844, 64.169485], - [-21.73784, 64.169649], - [-21.736641, 64.169747], - [-21.735517, 64.169942], - [-21.734692, 64.170432], - [-21.734242, 64.170922], - [-21.734017, 64.171706], - [-21.733493, 64.172294], - [-21.732518, 64.172784], - [-21.731169, 64.173012], - [-21.72952, 64.173143], - [-21.72847, 64.173306], - [-21.72802, 64.173633], - [-21.727196, 64.17409], - [-21.726221, 64.174188], - [-21.725022, 64.174351], - [-21.724347, 64.174417], - [-21.724122, 64.174841], - [-21.724572, 64.175103], - [-21.724497, 64.175494], - [-21.723373, 64.175756], - [-21.722023, 64.175919], - [-21.721124, 64.175821], - [-21.721499, 64.17556], - [-21.722173, 64.175331], - [-21.722923, 64.175168], - [-21.723448, 64.175103], - [-21.723298, 64.174841], - [-21.723598, 64.174482], - [-21.723747, 64.174156], - [-21.722998, 64.174058], - [-21.721649, 64.174058], - [-21.720524, 64.17409], - [-21.719999, 64.174188], - [-21.719849, 64.174515], - [-21.718875, 64.174547], - [-21.717975, 64.174417], - [-21.717526, 64.174254], - [-21.716851, 64.174156], - [-21.715202, 64.174123], - [-21.713927, 64.174058], - [-21.713178, 64.174319], - [-21.711454, 64.174384], - [-21.710779, 64.174123], - [-21.710179, 64.174384], - [-21.709804, 64.174841], - [-21.70868, 64.174907], - [-21.707484, 64.174884], - [-21.707084, 64.175053], - [-21.706846, 64.175351], - [-21.706634, 64.175713], - [-21.706493, 64.176146], - [-21.706587, 64.176495], - [-21.70671, 64.17677], - [-21.706839, 64.176868], - [-21.706009, 64.177056], - [-21.705984, 64.177058], - [-21.705268, 64.177117], - [-21.704818, 64.177138], - [-21.70504, 64.177488], - [-21.704978, 64.177587], - [-21.704666, 64.177819], - [-21.704985, 64.17796], - [-21.70567, 64.178511], - [-21.705884, 64.178453], - [-21.706651, 64.178315], - [-21.706858, 64.17829], - [-21.707331, 64.178349], - [-21.707775, 64.178411], - [-21.707915, 64.178425], - [-21.708091, 64.178496], - [-21.708299, 64.178509], - [-21.708388, 64.178393], - [-21.708541, 64.178297], - [-21.708959, 64.178342], - [-21.709642, 64.178405], - [-21.709934, 64.178356], - [-21.710716, 64.178563], - [-21.711032, 64.17879], - [-21.711289, 64.179004], - [-21.711697, 64.179096], - [-21.712841, 64.179303], - [-21.713178, 64.179478], - [-21.713544, 64.179578], - [-21.714283, 64.179779], - [-21.714617, 64.179865], - [-21.714602, 64.18], - [-21.715378, 64.180362], - [-21.715744, 64.180706], - [-21.716437, 64.181148], - [-21.716857, 64.181285], - [-21.717292, 64.181427], - [-21.718016, 64.181744], - [-21.718893, 64.182201], - [-21.719856, 64.182507], - [-21.720182, 64.18265], - [-21.720604, 64.182667], - [-21.721148, 64.182588], - [-21.721547, 64.18236], - [-21.722102, 64.182216], - [-21.722625, 64.182117], - [-21.723011, 64.182052], - [-21.724122, 64.181894], - [-21.725753, 64.181742], - [-21.726346, 64.181573], - [-21.726944, 64.181308], - [-21.727372, 64.181114], - [-21.727766, 64.180972], - [-21.728332, 64.180851], - [-21.729038, 64.180707], - [-21.729335, 64.180684], - [-21.729515, 64.180606], - [-21.729592, 64.180466], - [-21.729417, 64.180269], - [-21.729344, 64.180118], - [-21.72938, 64.179906], - [-21.729612, 64.179846], - [-21.729845, 64.17981], - [-21.730145, 64.179629], - [-21.730559, 64.17945], - [-21.730838, 64.179236], - [-21.731, 64.178968], - [-21.732143, 64.178727], - [-21.732668, 64.178335], - [-21.732593, 64.177845], - [-21.733643, 64.17765], - [-21.734242, 64.177976], - [-21.734467, 64.17827], - [-21.735217, 64.177976], - [-21.735667, 64.17765], - [-21.736716, 64.177747], - [-21.73814, 64.177747], - [-21.73949, 64.177682], - [-21.740089, 64.177225], - [-21.741364, 64.17716], - [-21.742563, 64.176996], - [-21.743463, 64.176768], - [-21.745112, 64.176768], - [-21.746161, 64.176507], - [-21.748335, 64.176409], - [-21.750359, 64.176409], - [-21.752158, 64.176605], - [-21.752608, 64.177062], - [-21.753883, 64.177388], - [-21.755532, 64.177845], - [-21.756581, 64.178107], - [-21.757106, 64.178596], - [-21.757781, 64.178564], - [-21.758605, 64.178303], - [-21.758755, 64.178629], - [-21.75868, 64.17889], - [-21.75928, 64.17925], - [-21.760479, 64.179282], - [-21.761304, 64.178988], - [-21.762353, 64.178531], - [-21.763103, 64.177878], - [-21.763403, 64.176964], - [-21.763778, 64.176507], - [-21.763628, 64.175723], - [-21.763928, 64.174776], - [-21.764977, 64.174254], - [-21.766551, 64.173796], - [-21.767376, 64.173502], - [-21.770749, 64.173502], - [-21.771124, 64.173862], - [-21.771799, 64.174547], - [-21.772923, 64.174907], - [-21.774123, 64.175037], - [-21.775247, 64.175592], - [-21.776971, 64.176539], - [-21.777346, 64.17716], - [-21.776971, 64.177878], - [-21.775622, 64.178139], - [-21.774123, 64.178466], - [-21.772548, 64.178629], - [-21.771949, 64.179021], - [-21.771199, 64.179282], - [-21.77, 64.179445], - [-21.76895, 64.180066], - [-21.76835, 64.180556], - [-21.767826, 64.181372], - [-21.766776, 64.18209], - [-21.766176, 64.18258], - [-21.764977, 64.183037], - [-21.764003, 64.183265], - [-21.763778, 64.184245], - [-21.762278, 64.1848], - [-21.760854, 64.185028], - [-21.759505, 64.185191], - [-21.75868, 64.185648], - [-21.758535, 64.186075], - [-21.75838, 64.186549], - [-21.759053, 64.187112], - [-21.760036, 64.187428], - [-21.761279, 64.187743], - [-21.763039, 64.188104], - [-21.764282, 64.188352], - [-21.764592, 64.188803], - [-21.765524, 64.189344], - [-21.766353, 64.18993], - [-21.766974, 64.190313], - [-21.767854, 64.190539], - [-21.768009, 64.190967], - [-21.768475, 64.19144], - [-21.769511, 64.192049], - [-21.770132, 64.192725], - [-21.770339, 64.193581], - [-21.77008, 64.194438], - [-21.769511, 64.195181], - [-21.768268, 64.19561], - [-21.766922, 64.19597], - [-21.765214, 64.196151], - [-21.763505, 64.196196], - [-21.761538, 64.196308], - [-21.75957, 64.196376], - [-21.757551, 64.196601], - [-21.754808, 64.196556], - [-21.752374, 64.196444], - [-21.750252, 64.196128], - [-21.748491, 64.195767], - [-21.747197, 64.195474], - [-21.74523, 64.195429], - [-21.743832, 64.195767], - [-21.742838, 64.19647], - [-21.742018, 64.197217], - [-21.741943, 64.197801], - [-21.7409, 64.198353], - [-21.740974, 64.199196], - [-21.741943, 64.199358], - [-21.742763, 64.199553], - [-21.74254, 64.19991], - [-21.741347, 64.199975], - [-21.739558, 64.200008], - [-21.738663, 64.199683], - [-21.737172, 64.199683], - [-21.735905, 64.19978], - [-21.735383, 64.199975], - [-21.733966, 64.199975], - [-21.733146, 64.19978], - [-21.731804, 64.199878], - [-21.73091, 64.199586], - [-21.728002, 64.199521], - [-21.725393, 64.199521], - [-21.724051, 64.199716], - [-21.72338, 64.199975], - [-21.719802, 64.199975], - [-21.718311, 64.200072], - [-21.717863, 64.200462], - [-21.717267, 64.200948], - [-21.717524, 64.202079], - [-21.718168, 64.202138], - [-21.71905, 64.202418], - [-21.719046, 64.20279], - [-21.718086, 64.203098], - [-21.716948, 64.203079], - [-21.716521, 64.20296], - [-21.714428, 64.202831], - [-21.713396, 64.202724], - [-21.713263, 64.202524], - [-21.713079, 64.202322], - [-21.712746, 64.202175], - [-21.712134, 64.202196], - [-21.711438, 64.202233], - [-21.710719, 64.202175], - [-21.710263, 64.202217], - [-21.709872, 64.202284], - [-21.709406, 64.202422], - [-21.709131, 64.202615], - [-21.708954, 64.202831], - [-21.70881, 64.203143], - [-21.708621, 64.203424], - [-21.7085, 64.203731], - [-21.708455, 64.204024], - [-21.708573, 64.204243], - [-21.708619, 64.204582], - [-21.708917, 64.205231], - [-21.70935, 64.205833], - [-21.710259, 64.206496], - [-21.710629, 64.206668], - [-21.711339, 64.206999], - [-21.712303, 64.207256], - [-21.712946, 64.207338], - [-21.714136, 64.207437], - [-21.71507, 64.20759], - [-21.716298, 64.208021], - [-21.717289, 64.208242], - [-21.719173, 64.208298], - [-21.721121, 64.208264], - [-21.723042, 64.208053], - [-21.724589, 64.207855], - [-21.726255, 64.207585], - [-21.727806, 64.207415], - [-21.729724, 64.207268], - [-21.731514, 64.207074], - [-21.733229, 64.206888], - [-21.735016, 64.206739], - [-21.734963, 64.206677], - [-21.734741, 64.206629], - [-21.734373, 64.206579], - [-21.734215, 64.206517], - [-21.734131, 64.206362], - [-21.734473, 64.206144], - [-21.734977, 64.205966], - [-21.735524, 64.205887], - [-21.736126, 64.205845], - [-21.737123, 64.205798], - [-21.738193, 64.205837], - [-21.738464, 64.206102], - [-21.73848, 64.206385], - [-21.740635, 64.206218], - [-21.742835, 64.205833], - [-21.744519, 64.205545], - [-21.746181, 64.205318], - [-21.748161, 64.205165], - [-21.749556, 64.204998], - [-21.750399, 64.204572], - [-21.750941, 64.204542], - [-21.751656, 64.204531], - [-21.752646, 64.204651], - [-21.753903, 64.204721], - [-21.755884, 64.20455], - [-21.757152, 64.204193], - [-21.757823, 64.203674], - [-21.758165, 64.203229], - [-21.758278, 64.202778], - [-21.758881, 64.202591], - [-21.75959, 64.202687], - [-21.760731, 64.202878], - [-21.761661, 64.202788], - [-21.762763, 64.202698], - [-21.763473, 64.20267], - [-21.764175, 64.202713], - [-21.766035, 64.202848], - [-21.766541, 64.202922], - [-21.766773, 64.203069], - [-21.767826, 64.203658], - [-21.769279, 64.204318], - [-21.770065, 64.204615], - [-21.771493, 64.204875], - [-21.774235, 64.205494], - [-21.775827, 64.205366], - [-21.776417, 64.205394], - [-21.777071, 64.205553], - [-21.778491, 64.206118], - [-21.780134, 64.206243], - [-21.780919, 64.206647], - [-21.782491, 64.206895], - [-21.785133, 64.208014], - [-21.787418, 64.209039], - [-21.789453, 64.209916], - [-21.790346, 64.210251], - [-21.79256, 64.210624], - [-21.794989, 64.210655], - [-21.796131, 64.211028], - [-21.798202, 64.211214], - [-21.799845, 64.211059], - [-21.80113, 64.210531], - [-21.802844, 64.209971], - [-21.804587, 64.209466], - [-21.805201, 64.209288], - [-21.806629, 64.209226], - [-21.808415, 64.208822], - [-21.809343, 64.208604], - [-21.812057, 64.208604], - [-21.815342, 64.20789], - [-21.81777, 64.207299], - [-21.820056, 64.207299], - [-21.822484, 64.206864], - [-21.823779, 64.206844], - [-21.825055, 64.206895], - [-21.826043, 64.207054], - [-21.82684, 64.207268], - [-21.827331, 64.207574], - [-21.827733, 64.20788], - [-21.828265, 64.208396], - [-21.828425, 64.208716], - [-21.828426, 64.209022], - [-21.827837, 64.209634], - [-21.827769, 64.210406], - [-21.82747, 64.210627], - [-21.827019, 64.210781], - [-21.82658, 64.210898], - [-21.825912, 64.210966], - [-21.824269, 64.210686], - [-21.82312, 64.210599], - [-21.820984, 64.211059], - [-21.819341, 64.211929], - [-21.81827, 64.212364], - [-21.817627, 64.213172], - [-21.817056, 64.214166], - [-21.816342, 64.215253], - [-21.815485, 64.216465], - [-21.815249, 64.217003], - [-21.814914, 64.217769], - [-21.814557, 64.218856], - [-21.814057, 64.220068], - [-21.813414, 64.220937], - [-21.812642, 64.22146], - [-21.811895, 64.222272], - [-21.811705, 64.222857], - [-21.811682, 64.223363], - [-21.812535, 64.224477], - [-21.813763, 64.225336], - [-21.814137, 64.226287], - [-21.814777, 64.226589], - [-21.815459, 64.227156], - [-21.815402, 64.227781], - [-21.815986, 64.229007], - [-21.818419, 64.23255], - [-21.819675, 64.233202], - [-21.821824, 64.234418], - [-21.823162, 64.234946], - [-21.824391, 64.235312], - [-21.824965, 64.235561], - [-21.826243, 64.23625], - [-21.827666, 64.236356], - [-21.828057, 64.236366], - [-21.8284, 64.236303], - [-21.829098, 64.236158], - [-21.829307, 64.23614], - [-21.829489, 64.236144], - [-21.829661, 64.236193], - [-21.829736, 64.236256], - [-21.829881, 64.236517], - [-21.829854, 64.236704], - [-21.829784, 64.236804], - [-21.82967, 64.236906], - [-21.829537, 64.236998], - [-21.829532, 64.237082], - [-21.829629, 64.237163], - [-21.829779, 64.237231], - [-21.830058, 64.237352], - [-21.830444, 64.237462], - [-21.831366, 64.237684], - [-21.83214, 64.237887], - [-21.833824, 64.238188], - [-21.836783, 64.238558], - [-21.839449, 64.238865], - [-21.841101, 64.238974], - [-21.842296, 64.239048], - [-21.843837, 64.239052], - [-21.845355, 64.238895], - [-21.846512, 64.238629], - [-21.847049, 64.238386], - [-21.847285, 64.238083], - [-21.847242, 64.237934], - [-21.846722, 64.237754], - [-21.846802, 64.237575], - [-21.846634, 64.237307], - [-21.847202, 64.236973], - [-21.847803, 64.236955], - [-21.848418, 64.237378], - [-21.849634, 64.237695], - [-21.851093, 64.237801], - [-21.853445, 64.237959], - [-21.856647, 64.237818], - [-21.858918, 64.237396], - [-21.860742, 64.236955], - [-21.862485, 64.236462], - [-21.864066, 64.236021], - [-21.865485, 64.235475], - [-21.866458, 64.235052], - [-21.86658, 64.234453], - [-21.867836, 64.233484], - [-21.867552, 64.233184], - [-21.866498, 64.232902], - [-21.86589, 64.232479], - [-21.866377, 64.232056], - [-21.867269, 64.231739], - [-21.867309, 64.231245], - [-21.86812, 64.230893], - [-21.868931, 64.230593], - [-21.870618, 64.230468], - [-21.872052, 64.229818], - [-21.873298, 64.2298], - [-21.874438, 64.229644], - [-21.875579, 64.229113], - [-21.876552, 64.228866], - [-21.876871, 64.228644], - [-21.878844, 64.228318], - [-21.879925, 64.228371], - [-21.882323, 64.228589], - [-21.882755, 64.229228], - [-21.882235, 64.229455], - [-21.882119, 64.229712], - [-21.882625, 64.230073], - [-21.884181, 64.230318], - [-21.885909, 64.230487], - [-21.886125, 64.230919], - [-21.887119, 64.230656], - [-21.887595, 64.231013], - [-21.888459, 64.231238], - [-21.889928, 64.231144], - [-21.891484, 64.231257], - [-21.893083, 64.230769], - [-21.893083, 64.23013], - [-21.894249, 64.229397], - [-21.893861, 64.229153], - [-21.893385, 64.229097], - [-21.893515, 64.22889], - [-21.893472, 64.228533], - [-21.894077, 64.228044], - [-21.8952, 64.228026], - [-21.896496, 64.228627], - [-21.898052, 64.228608], - [-21.899478, 64.228833], - [-21.900602, 64.229303], - [-21.902373, 64.229303], - [-21.903108, 64.229679], - [-21.902417, 64.230017], - [-21.902157, 64.230562], - [-21.9022, 64.230975], - [-21.902892, 64.231219], - [-21.903151, 64.231445], - [-21.904145, 64.231388], - [-21.904836, 64.231388], - [-21.904707, 64.230693], - [-21.905571, 64.230637], - [-21.906262, 64.231238], - [-21.906695, 64.231595], - [-21.907516, 64.232065], - [-21.908639, 64.232553], - [-21.908985, 64.233192], - [-21.90851, 64.233831], - [-21.906911, 64.234131], - [-21.905701, 64.234601], - [-21.903972, 64.235164], - [-21.902244, 64.235615], - [-21.900083, 64.235859], - [-21.89775, 64.236197], - [-21.895114, 64.236348], - [-21.893385, 64.236423], - [-21.892564, 64.236629], - [-21.890922, 64.236629], - [-21.890015, 64.236911], - [-21.889928, 64.237249], - [-21.89049, 64.237531], - [-21.891484, 64.2377], - [-21.892262, 64.23785], - [-21.892002, 64.238395], - [-21.893644, 64.23847], - [-21.893947, 64.238996], - [-21.893428, 64.239315], - [-21.89399, 64.239916], - [-21.89533, 64.24001], - [-21.895632, 64.240573], - [-21.896367, 64.241231], - [-21.898052, 64.241456], - [-21.899392, 64.241569], - [-21.899781, 64.242151], - [-21.900818, 64.242339], - [-21.902589, 64.242357], - [-21.904361, 64.242564], - [-21.905874, 64.242677], - [-21.907386, 64.242902], - [-21.907256, 64.243146], - [-21.905787, 64.24324], - [-21.904145, 64.243503], - [-21.903022, 64.243822], - [-21.900731, 64.243766], - [-21.899781, 64.24324], - [-21.897793, 64.242771], - [-21.895589, 64.242639], - [-21.894552, 64.242433], - [-21.89265, 64.242583], - [-21.89157, 64.242902], - [-21.891354, 64.243371], - [-21.890058, 64.243296], - [-21.888718, 64.24339], - [-21.886601, 64.243785], - [-21.88462, 64.243461], - [-21.884107, 64.243539], - [-21.883187, 64.243683], - [-21.883102, 64.243694], - [-21.882586, 64.243761], - [-21.882108, 64.243891], - [-21.881384, 64.244512], - [-21.881089, 64.24501], - [-21.880942, 64.245086], - [-21.880695, 64.245779], - [-21.880596, 64.245975], - [-21.880607, 64.246214], - [-21.880752, 64.246277], - [-21.880905, 64.246313], - [-21.881092, 64.246429], - [-21.880514, 64.246687], - [-21.879771, 64.247584], - [-21.878844, 64.248203], - [-21.878532, 64.249163], - [-21.878532, 64.250275], - [-21.877597, 64.251338], - [-21.878204, 64.253087], - [-21.878915, 64.25489], - [-21.878963, 64.255187], - [-21.878716, 64.255513], - [-21.877906, 64.256092], - [-21.875769, 64.257162], - [-21.87402, 64.258327], - [-21.872504, 64.25953], - [-21.871266, 64.260054], - [-21.869939, 64.260564], - [-21.868375, 64.261682], - [-21.866762, 64.262401], - [-21.864007, 64.264039], - [-21.862497, 64.26499], - [-21.862238, 64.265197], - [-21.86078, 64.266237], - [-21.859652, 64.267522], - [-21.858703, 64.268766], - [-21.858565, 64.269801], - [-21.858552, 64.27001], - [-21.858401, 64.270798], - [-21.857341, 64.271357], - [-21.856162, 64.271661], - [-21.854162, 64.273328], - [-21.853253, 64.273595], - [-21.852724, 64.274248], - [-21.851286, 64.275102], - [-21.85073, 64.275753], - [-21.849772, 64.276876], - [-21.847724, 64.277781], - [-21.845679, 64.279115], - [-21.844599, 64.279584], - [-21.844188, 64.281347], - [-21.844009, 64.282309], - [-21.843282, 64.283292], - [-21.842946, 64.284014], - [-21.844159, 64.283912], - [-21.844674, 64.28387], - [-21.845006, 64.28386], - [-21.845002, 64.284009], - [-21.843644, 64.28441], - [-21.842228, 64.28468], - [-21.841831, 64.284763], - [-21.841336, 64.284717], - [-21.841301, 64.285099], - [-21.838594, 64.286164], - [-21.836394, 64.286898], - [-21.835971, 64.287302], - [-21.836055, 64.288146], - [-21.836309, 64.289174], - [-21.835081, 64.289965], - [-21.831656, 64.291083], - [-21.82992, 64.290969], - [-21.828186, 64.291182], - [-21.82624, 64.292478], - [-21.824379, 64.292588], - [-21.823199, 64.292572], - [-21.821756, 64.292771], - [-21.821418, 64.293322], - [-21.819106, 64.293367], - [-21.818541, 64.293579], - [-21.817018, 64.293579], - [-21.816239, 64.293503], - [-21.814818, 64.294019], - [-21.813549, 64.294937], - [-21.811772, 64.296111], - [-21.810672, 64.296918], - [-21.810235, 64.297694], - [-21.809876, 64.298754], - [-21.809013, 64.29947], - [-21.807788, 64.299693], - [-21.806719, 64.300022], - [-21.806028, 64.300047], - [-21.805619, 64.300208], - [-21.804623, 64.300413], - [-21.800672, 64.301327], - [-21.799644, 64.301709], - [-21.798403, 64.303076], - [-21.797946, 64.303735], - [-21.796437, 64.304519], - [-21.794872, 64.30545], - [-21.793131, 64.306949], - [-21.791335, 64.3086], - [-21.788258, 64.309581], - [-21.786552, 64.310281], - [-21.783567, 64.312169], - [-21.782125, 64.313197], - [-21.780168, 64.314072], - [-21.777658, 64.315038], - [-21.776492, 64.315338], - [-21.774525, 64.315872], - [-21.772176, 64.31652], - [-21.770269, 64.317289], - [-21.769347, 64.317787], - [-21.768787, 64.318283], - [-21.767803, 64.318746], - [-21.764873, 64.320906], - [-21.763703, 64.321994], - [-21.762324, 64.322988], - [-21.760073, 64.323492], - [-21.757866, 64.325219], - [-21.756157, 64.326638], - [-21.75409, 64.327747], - [-21.752835, 64.328418], - [-21.751676, 64.328758], - [-21.749698, 64.329101], - [-21.7481, 64.329213], - [-21.746881, 64.329881], - [-21.745823, 64.330732], - [-21.744967, 64.330961], - [-21.743703, 64.331378], - [-21.74288, 64.33199], - [-21.742305, 64.332683], - [-21.739945, 64.333016], - [-21.739602, 64.33325], - [-21.739347, 64.333466], - [-21.738969, 64.333618], - [-21.738351, 64.333665], - [-21.736929, 64.333783], - [-21.735908, 64.333981], - [-21.734799, 64.334239], - [-21.733816, 64.334475], - [-21.733126, 64.335333], - [-21.732815, 64.336119], - [-21.731508, 64.337408], - [-21.73142, 64.337912], - [-21.73168, 64.338572], - [-21.731309, 64.33969], - [-21.731079, 64.340718], - [-21.731436, 64.341519], - [-21.731605, 64.342047], - [-21.731971, 64.342571], - [-21.732028, 64.342682], - [-21.73192, 64.342743], - [-21.731527, 64.342724], - [-21.730518, 64.342622], - [-21.729512, 64.342409], - [-21.72902, 64.342196], - [-21.727988, 64.341632], - [-21.726889, 64.341065], - [-21.725682, 64.340543], - [-21.724364, 64.340026], - [-21.722254, 64.339237], - [-21.720215, 64.338411], - [-21.719149, 64.337881], - [-21.718605, 64.337417], - [-21.718306, 64.336905], - [-21.718321, 64.336711], - [-21.71845, 64.336517], - [-21.718756, 64.33634], - [-21.718793, 64.336157], - [-21.718579, 64.335987], - [-21.71818, 64.335903], - [-21.716654, 64.335641], - [-21.716056, 64.335529], - [-21.713326, 64.335076], - [-21.711177, 64.334648], - [-21.710463, 64.334556], - [-21.709933, 64.334528], - [-21.709367, 64.334499], - [-21.709368, 64.334586], - [-21.709311, 64.334654], - [-21.709065, 64.334611], - [-21.708863, 64.334614], - [-21.707165, 64.335165], - [-21.705718, 64.335716], - [-21.703394, 64.336057], - [-21.702639, 64.33661], - [-21.701944, 64.336834], - [-21.70049, 64.337088], - [-21.700234, 64.337028], - [-21.699456, 64.33701], - [-21.699183, 64.337279], - [-21.698864, 64.33729], - [-21.697122, 64.337541], - [-21.696433, 64.337331], - [-21.696286, 64.337098], - [-21.695953, 64.336907], - [-21.695026, 64.336667], - [-21.693293, 64.336568], - [-21.691298, 64.336638], - [-21.690643, 64.336866], - [-21.690331, 64.336982], - [-21.690195, 64.337112], - [-21.689741, 64.337172], - [-21.689191, 64.337], - [-21.688754, 64.336977], - [-21.688174, 64.337023], - [-21.6875, 64.33724], - [-21.686305, 64.337662], - [-21.685911, 64.337646], - [-21.685686, 64.337841], - [-21.685847, 64.337967], - [-21.685571, 64.338181], - [-21.685055, 64.338299], - [-21.684853, 64.338266], - [-21.68459, 64.338218], - [-21.684402, 64.338126], - [-21.683968, 64.338], - [-21.684353, 64.337758], - [-21.684341, 64.337638], - [-21.684175, 64.337501], - [-21.683286, 64.337219], - [-21.681828, 64.337112], - [-21.680609, 64.33667], - [-21.679876, 64.336515], - [-21.679308, 64.336338], - [-21.67821, 64.335834], - [-21.677006, 64.335139], - [-21.675477, 64.334605], - [-21.67358, 64.334249], - [-21.672108, 64.334126], - [-21.671465, 64.334191], - [-21.670349, 64.334126], - [-21.669473, 64.334205], - [-21.668547, 64.334503], - [-21.667659, 64.334795], - [-21.666319, 64.334943], - [-21.665744, 64.334587], - [-21.664602, 64.334578], - [-21.663898, 64.335128], - [-21.663107, 64.335042], - [-21.662667, 64.334821], - [-21.661916, 64.334614], - [-21.662335, 64.334438], - [-21.662207, 64.334101], - [-21.660669, 64.333762], - [-21.659942, 64.333545], - [-21.659122, 64.333515], - [-21.658443, 64.333228], - [-21.6577, 64.333085], - [-21.657346, 64.333109], - [-21.657237, 64.333277], - [-21.656558, 64.334043], - [-21.655421, 64.334517], - [-21.653984, 64.334658], - [-21.653058, 64.334654], - [-21.651696, 64.335079], - [-21.650683, 64.335002], - [-21.649438, 64.334786], - [-21.648422, 64.334735], - [-21.646717, 64.334529], - [-21.645271, 64.334352], - [-21.644986, 64.33401], - [-21.645206, 64.333549], - [-21.64443, 64.33361], - [-21.643893, 64.33357], - [-21.643176, 64.333929], - [-21.642229, 64.333954], - [-21.641374, 64.33415], - [-21.640469, 64.334373], - [-21.639335, 64.334564], - [-21.637068, 64.334698], - [-21.635094, 64.334507], - [-21.634118, 64.334549], - [-21.633699, 64.334577], - [-21.633568, 64.334667], - [-21.633619, 64.334783], - [-21.634332, 64.334898], - [-21.634993, 64.335007], - [-21.63474, 64.335548], - [-21.634783, 64.335897], - [-21.634644, 64.336437], - [-21.635156, 64.336718], - [-21.635864, 64.336871], - [-21.636942, 64.337394], - [-21.636829, 64.337522], - [-21.636159, 64.337461], - [-21.635059, 64.337471], - [-21.633101, 64.337517], - [-21.632645, 64.337317], - [-21.631974, 64.337106], - [-21.631378, 64.33702], - [-21.630488, 64.337144], - [-21.630328, 64.338045], - [-21.630928, 64.338842], - [-21.629808, 64.339067], - [-21.628488, 64.338773], - [-21.628048, 64.338842], - [-21.627848, 64.339206], - [-21.625168, 64.33931], - [-21.624648, 64.338755], - [-21.624848, 64.338253], - [-21.625928, 64.338097], - [-21.626328, 64.337785], - [-21.626208, 64.337162], - [-21.623848, 64.337144], - [-21.624008, 64.337629], - [-21.622968, 64.338149], - [-21.621208, 64.338374], - [-21.620288, 64.3386], - [-21.620408, 64.339067], - [-21.621528, 64.339535], - [-21.620528, 64.339656], - [-21.619088, 64.340938], - [-21.617647, 64.341198], - [-21.616468, 64.34215], - [-21.617175, 64.342411], - [-21.618376, 64.342784], - [-21.621768, 64.342807], - [-21.622185, 64.343168], - [-21.621115, 64.34362], - [-21.621455, 64.344162], - [-21.623174, 64.344166], - [-21.625901, 64.345043], - [-21.628312, 64.345193], - [-21.629509, 64.345521], - [-21.629788, 64.345901], - [-21.630086, 64.345951], - [-21.630435, 64.345967], - [-21.631284, 64.345952], - [-21.631728, 64.3461], - [-21.632323, 64.346262], - [-21.632554, 64.346322], - [-21.632887, 64.34635], - [-21.633469, 64.346405], - [-21.633831, 64.346378], - [-21.634115, 64.346339], - [-21.634909, 64.346225], - [-21.635281, 64.346215], - [-21.635773, 64.346192], - [-21.635998, 64.34603], - [-21.636534, 64.345858], - [-21.637537, 64.345941], - [-21.637827, 64.345939], - [-21.638133, 64.345907], - [-21.638567, 64.345837], - [-21.638679, 64.34581], - [-21.638991, 64.345742], - [-21.63927, 64.345612], - [-21.639436, 64.345491], - [-21.639463, 64.345314], - [-21.640102, 64.345154], - [-21.640708, 64.345194], - [-21.641201, 64.345173], - [-21.642301, 64.345087], - [-21.642975, 64.345122], - [-21.643626, 64.345293], - [-21.644193, 64.345514], - [-21.644715, 64.345609], - [-21.645482, 64.345581], - [-21.645648, 64.345614], - [-21.645702, 64.345721], - [-21.645869, 64.345774], - [-21.646099, 64.3458], - [-21.646358, 64.345737], - [-21.646324, 64.345628], - [-21.646491, 64.345547], - [-21.646767, 64.34553], - [-21.647081, 64.345544], - [-21.647427, 64.345534], - [-21.648041, 64.345565], - [-21.648976, 64.345366], - [-21.651433, 64.344627], - [-21.652177, 64.344532], - [-21.652783, 64.344559], - [-21.653663, 64.344792], - [-21.654521, 64.344986], - [-21.65517, 64.345043], - [-21.655803, 64.345029], - [-21.656377, 64.344999], - [-21.656826, 64.344934], - [-21.657638, 64.344873], - [-21.659228, 64.344623], - [-21.660513, 64.344606], - [-21.661901, 64.344744], - [-21.662235, 64.344773], - [-21.66253, 64.344724], - [-21.663131, 64.344634], - [-21.663544, 64.344715], - [-21.66371, 64.344864], - [-21.663973, 64.344954], - [-21.664351, 64.344972], - [-21.664982, 64.344924], - [-21.666011, 64.344963], - [-21.666843, 64.345291], - [-21.66724, 64.345317], - [-21.667478, 64.345333], - [-21.667069, 64.345716], - [-21.666822, 64.345992], - [-21.667058, 64.346065], - [-21.667401, 64.346595], - [-21.668267, 64.34805], - [-21.669322, 64.34912], - [-21.669729, 64.349455], - [-21.670137, 64.34979], - [-21.670884, 64.350258], - [-21.671435, 64.350456], - [-21.672096, 64.350613], - [-21.673114, 64.350802], - [-21.673436, 64.350827], - [-21.673645, 64.350811], - [-21.67371, 64.350695], - [-21.674016, 64.350634], - [-21.674209, 64.350721], - [-21.674402, 64.350841], - [-21.674742, 64.351129], - [-21.675925, 64.351624], - [-21.676145, 64.35167], - [-21.676312, 64.351675], - [-21.677704, 64.352235], - [-21.677434, 64.353255], - [-21.676975, 64.354053], - [-21.67679, 64.354314], - [-21.676436, 64.354607], - [-21.676016, 64.355228], - [-21.675556, 64.355521], - [-21.675029, 64.355729], - [-21.674441, 64.355837], - [-21.673861, 64.35593], - [-21.672848, 64.356031], - [-21.669033, 64.355874], - [-21.666621, 64.355931], - [-21.664597, 64.356268], - [-21.663274, 64.356774], - [-21.660224, 64.357826], - [-21.659109, 64.358761], - [-21.655995, 64.359384], - [-21.651993, 64.360029], - [-21.650108, 64.360113], - [-21.64808, 64.360132], - [-21.644367, 64.360584], - [-21.643039, 64.36092], - [-21.642338, 64.361065], - [-21.640972, 64.361155], - [-21.639912, 64.361251], - [-21.638136, 64.361639], - [-21.636581, 64.362134], - [-21.635693, 64.362293], - [-21.634676, 64.362522], - [-21.633226, 64.363203], - [-21.631981, 64.36387], - [-21.631069, 64.36402], - [-21.630179, 64.364474], - [-21.629237, 64.364813], - [-21.624717, 64.365546], - [-21.622376, 64.365686], - [-21.621569, 64.366559], - [-21.62084, 64.36744], - [-21.618608, 64.367692], - [-21.617686, 64.368133], - [-21.616619, 64.36828], - [-21.616279, 64.369204], - [-21.614969, 64.36998], - [-21.613562, 64.369875], - [-21.609534, 64.369959], - [-21.606963, 64.370778], - [-21.605167, 64.37082], - [-21.602741, 64.3704], - [-21.601479, 64.37061], - [-21.59983, 64.371197], - [-21.598083, 64.371261], - [-21.595171, 64.371219], - [-21.594201, 64.372373], - [-21.589931, 64.37422], - [-21.587945, 64.374347], - [-21.587332, 64.37387], - [-21.586312, 64.373429], - [-21.584917, 64.373012], - [-21.583146, 64.372756], - [-21.580946, 64.372872], - [-21.580248, 64.37336], - [-21.579712, 64.373893], - [-21.580248, 64.374381], - [-21.582127, 64.374845], - [-21.583844, 64.375263], - [-21.586098, 64.375193], - [-21.587385, 64.375704], - [-21.587171, 64.376214], - [-21.586098, 64.37647], - [-21.582019, 64.376493], - [-21.579551, 64.376191], - [-21.575526, 64.376052], - [-21.574238, 64.376005], - [-21.573433, 64.37647], - [-21.572092, 64.376562], - [-21.571501, 64.377537], - [-21.569945, 64.37763], - [-21.568979, 64.377189], - [-21.564955, 64.376284], - [-21.563023, 64.376122], - [-21.558461, 64.376261], - [-21.557281, 64.375472], - [-21.558086, 64.374567], - [-21.561574, 64.374311], - [-21.562842, 64.373905], - [-21.564901, 64.372454], - [-21.565867, 64.372199], - [-21.56753, 64.371039], - [-21.567906, 64.370342], - [-21.568443, 64.370157], - [-21.568496, 64.369089], - [-21.566833, 64.368926], - [-21.566135, 64.3683], - [-21.566296, 64.367835], - [-21.567101, 64.367418], - [-21.567881, 64.367138], - [-21.567971, 64.366597], - [-21.567792, 64.365863], - [-21.567256, 64.365103], - [-21.566342, 64.364188], - [-21.565142, 64.363496], - [-21.562113, 64.363026], - [-21.558228, 64.362878], - [-21.555485, 64.362729], - [-21.553027, 64.362383], - [-21.547485, 64.362408], - [-21.545656, 64.36179], - [-21.543599, 64.361295], - [-21.540513, 64.361246], - [-21.538684, 64.360776], - [-21.535542, 64.360999], - [-21.530913, 64.360949], - [-21.528684, 64.36179], - [-21.526399, 64.362433], - [-21.524284, 64.362754], - [-21.523084, 64.363718], - [-21.52257, 64.364361], - [-21.520137, 64.364381], - [-21.518651, 64.363549], - [-21.513846, 64.363436], - [-21.510964, 64.363058], - [-21.507674, 64.36222], - [-21.50647, 64.362624], - [-21.505634, 64.362869], - [-21.503887, 64.363965], - [-21.502052, 64.364834], - [-21.500305, 64.365364], - [-21.497946, 64.365477], - [-21.497335, 64.365779], - [-21.495937, 64.365401], - [-21.495502, 64.364706], - [-21.495241, 64.363199], - [-21.495087, 64.361466], - [-21.494889, 64.360723], - [-21.494277, 64.360496], - [-21.492268, 64.36008], - [-21.491394, 64.359589], - [-21.488337, 64.359202], - [-21.487288, 64.358711], - [-21.48327, 64.357879], - [-21.481435, 64.357841], - [-21.480212, 64.357425], - [-21.479775, 64.357123], - [-21.475407, 64.355988], - [-21.472262, 64.355421], - [-21.467894, 64.355232], - [-21.464574, 64.355157], - [-21.46006, 64.354295], - [-21.456325, 64.353787], - [-21.455712, 64.354038], - [-21.45554, 64.3541], - [-21.455355, 64.35407], - [-21.454781, 64.353775], - [-21.454034, 64.353675], - [-21.452702, 64.353742], - [-21.450341, 64.35386], - [-21.44874, 64.354277], - [-21.441838, 64.354755], - [-21.436356, 64.356064], - [-21.434084, 64.356064], - [-21.43322, 64.35615], - [-21.432693, 64.356293], - [-21.432143, 64.356406], - [-21.431457, 64.356448], - [-21.430673, 64.356211], - [-21.429554, 64.356089], - [-21.42887, 64.356108], - [-21.427715, 64.356279], - [-21.426796, 64.356295], - [-21.426305, 64.356389], - [-21.425723, 64.356527], - [-21.424834, 64.356687], - [-21.422923, 64.356973], - [-21.420591, 64.356973], - [-21.419639, 64.356944], - [-21.418764, 64.356973], - [-21.416243, 64.356837], - [-21.413659, 64.357], - [-21.411516, 64.357219], - [-21.410382, 64.357902], - [-21.40918, 64.358571], - [-21.409072, 64.358721], - [-21.408665, 64.359239], - [-21.408547, 64.360363], - [-21.408987, 64.361547], - [-21.410296, 64.362656], - [-21.412013, 64.364104], - [-21.413214, 64.364661], - [-21.414588, 64.365107], - [-21.416004, 64.365492], - [-21.416991, 64.365998], - [-21.418107, 64.367001], - [-21.418193, 64.368003], - [-21.41729, 64.368907], - [-21.415685, 64.370031], - [-21.413621, 64.370891], - [-21.412015, 64.371089], - [-21.411175, 64.371387], - [-21.409951, 64.371453], - [-21.408728, 64.372081], - [-21.408422, 64.372842], - [-21.406206, 64.373338], - [-21.404008, 64.373431], - [-21.401552, 64.374386], - [-21.397728, 64.375125], - [-21.394708, 64.37617], - [-21.391488, 64.377693], - [-21.389475, 64.377867], - [-21.385248, 64.379652], - [-21.383135, 64.379608], - [-21.37987, 64.379706], - [-21.378582, 64.380235], - [-21.3733, 64.380764], - [-21.371303, 64.380569], - [-21.368276, 64.380959], - [-21.365635, 64.381015], - [-21.363123, 64.380931], - [-21.359258, 64.381321], - [-21.358035, 64.381683], - [-21.356778, 64.381966], - [-21.356054, 64.38219], - [-21.355387, 64.384243], - [-21.307806, 64.383318], - [-21.251292, 64.373794], - [-21.182677, 64.350751] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "11268", - "properties": { - "NAME_ENGLISH": "Eastern Region", - "name": "Austurland", - "ISOCODE": "IS-7", - "density": 0, - "path": "/world/Iceland/Eastern Region" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-14.150482, 64.590701], - [-14.151108, 64.589895], - [-14.151905, 64.589187], - [-14.152986, 64.588943], - [-14.153385, 64.588723], - [-14.154295, 64.58865], - [-14.155035, 64.587892], - [-14.156117, 64.586916], - [-14.159475, 64.586256], - [-14.159759, 64.586036], - [-14.161068, 64.586061], - [-14.160158, 64.586574], - [-14.161068, 64.58694], - [-14.163174, 64.586476], - [-14.164085, 64.586793], - [-14.165223, 64.586818], - [-14.164996, 64.585792], - [-14.163345, 64.585596], - [-14.163402, 64.585352], - [-14.165166, 64.585181], - [-14.165166, 64.584961], - [-14.166589, 64.584961], - [-14.168354, 64.585279], - [-14.167728, 64.58589], - [-14.168695, 64.585914], - [-14.169891, 64.585279], - [-14.170517, 64.585401], - [-14.170858, 64.58567], - [-14.172679, 64.585743], - [-14.173135, 64.586036], - [-14.172964, 64.5865], - [-14.171826, 64.5865], - [-14.170858, 64.586916], - [-14.170403, 64.587868], - [-14.169435, 64.588112], - [-14.169435, 64.588674], - [-14.170517, 64.58865], - [-14.171541, 64.588161], - [-14.172224, 64.587697], - [-14.172736, 64.587551], - [-14.173476, 64.587575], - [-14.17359, 64.587135], - [-14.175241, 64.586622], - [-14.17655, 64.58716], - [-14.176834, 64.587315], - [-14.178093, 64.587365], - [-14.178139, 64.587716], - [-14.179421, 64.587596], - [-14.180424, 64.588126], - [-14.178023, 64.589346], - [-14.174036, 64.589876], - [-14.175645, 64.590447], - [-14.177883, 64.590417], - [-14.178232, 64.590207], - [-14.179352, 64.590207], - [-14.179771, 64.591457], - [-14.178675, 64.591767], - [-14.178955, 64.591867], - [-14.181543, 64.591667], - [-14.182476, 64.591197], - [-14.182569, 64.590467], - [-14.184411, 64.590447], - [-14.184061, 64.592837], - [-14.184504, 64.594278], - [-14.181355, 64.595282], - [-14.183579, 64.595366], - [-14.183773, 64.596942], - [-14.185513, 64.59773], - [-14.186045, 64.598621], - [-14.186867, 64.59914], - [-14.186867, 64.599741], - [-14.182661, 64.6014], - [-14.180679, 64.600757], - [-14.18005, 64.59972], - [-14.181017, 64.598808], - [-14.181597, 64.598435], - [-14.181307, 64.598124], - [-14.174152, 64.598704], - [-14.173717, 64.598269], - [-14.171107, 64.59885], - [-14.167723, 64.59887], - [-14.166369, 64.598538], - [-14.166756, 64.59775], - [-14.168738, 64.597128], - [-14.166756, 64.596859], - [-14.165789, 64.597087], - [-14.165209, 64.59746], - [-14.165064, 64.597813], - [-14.163807, 64.59773], - [-14.16342, 64.597481], - [-14.162115, 64.59746], - [-14.161535, 64.597543], - [-14.161777, 64.598041], - [-14.160085, 64.598082], - [-14.159891, 64.59831], - [-14.1611, 64.598725], - [-14.161003, 64.59914], - [-14.160133, 64.599326], - [-14.156024, 64.599264], - [-14.155154, 64.598808], - [-14.155782, 64.598269], - [-14.158296, 64.598144], - [-14.158441, 64.597585], - [-14.160327, 64.597419], - [-14.160375, 64.597087], - [-14.157909, 64.596693], - [-14.157668, 64.59717], - [-14.156798, 64.597004], - [-14.156604, 64.596651], - [-14.156072, 64.596693], - [-14.156121, 64.597253], - [-14.155492, 64.597626], - [-14.154864, 64.59775], - [-14.152302, 64.596589], - [-14.151335, 64.594888], - [-14.153462, 64.595117], - [-14.154332, 64.594888], - [-14.151045, 64.594349], - [-14.150948, 64.593872], - [-14.151093, 64.593292], - [-14.151383, 64.592856], - [-14.152882, 64.593478], - [-14.154235, 64.593437], - [-14.154332, 64.59298], - [-14.156459, 64.592773], - [-14.156314, 64.592462], - [-14.155444, 64.592047], - [-14.15532, 64.591385], - [-14.15088, 64.591214], - [-14.150482, 64.590701] - ] - ], - [ - [ - [-13.494807, 65.076438], - [-13.495139, 65.075692], - [-13.495096, 65.075344], - [-13.495665, 65.075136], - [-13.496427, 65.074756], - [-13.497006, 65.073906], - [-13.4978, 65.073042], - [-13.499238, 65.072251], - [-13.500761, 65.071636], - [-13.501877, 65.070908], - [-13.501866, 65.070696], - [-13.501437, 65.070505], - [-13.501244, 65.070239], - [-13.501319, 65.069954], - [-13.500858, 65.069863], - [-13.501083, 65.069601], - [-13.50163, 65.069642], - [-13.502875, 65.069588], - [-13.503411, 65.069556], - [-13.503862, 65.069099], - [-13.504505, 65.06919], - [-13.504956, 65.06885], - [-13.504677, 65.068457], - [-13.504881, 65.067778], - [-13.504398, 65.067168], - [-13.50487, 65.066756], - [-13.50544, 65.066], - [-13.506179, 65.065284], - [-13.506844, 65.064441], - [-13.507831, 65.064445], - [-13.508539, 65.064418], - [-13.508936, 65.064169], - [-13.508829, 65.063608], - [-13.509999, 65.063599], - [-13.510406, 65.063925], - [-13.510803, 65.064074], - [-13.511329, 65.063975], - [-13.511179, 65.063613], - [-13.511533, 65.063545], - [-13.511994, 65.063739], - [-13.513206, 65.063825], - [-13.514419, 65.063629], - [-13.51589, 65.06329], - [-13.517079, 65.062733], - [-13.517187, 65.062353], - [-13.51788, 65.062202], - [-13.520476, 65.061134], - [-13.52151, 65.06028], - [-13.523195, 65.058562], - [-13.523881, 65.058046], - [-13.524954, 65.057766], - [-13.524847, 65.057205], - [-13.524096, 65.05697], - [-13.524225, 65.056499], - [-13.524933, 65.056481], - [-13.52519, 65.056589], - [-13.525469, 65.056436], - [-13.525341, 65.056155], - [-13.52489, 65.056209], - [-13.523989, 65.056101], - [-13.523538, 65.055178], - [-13.524289, 65.054662], - [-13.525727, 65.054562], - [-13.527894, 65.054526], - [-13.528988, 65.054354], - [-13.529782, 65.053847], - [-13.530469, 65.052454], - [-13.535522, 65.050161], - [-13.539519, 65.048443], - [-13.539837, 65.048459], - [-13.540883, 65.048026], - [-13.541406, 65.047308], - [-13.540901, 65.04704], - [-13.541649, 65.046512], - [-13.542209, 65.046473], - [-13.543218, 65.04574], - [-13.544189, 65.044968], - [-13.545889, 65.044511], - [-13.548392, 65.04299], - [-13.554594, 65.042635], - [-13.556891, 65.042201], - [-13.558853, 65.041382], - [-13.561169, 65.041114], - [-13.562757, 65.040743], - [-13.565167, 65.04027], - [-13.565765, 65.039837], - [-13.567894, 65.040097], - [-13.568646, 65.039425], - [-13.568571, 65.039733], - [-13.56886, 65.039375], - [-13.569011, 65.039326], - [-13.568968, 65.039557], - [-13.568678, 65.039855], - [-13.56959, 65.039561], - [-13.570287, 65.039077], - [-13.571371, 65.038945], - [-13.571446, 65.039194], - [-13.572004, 65.039072], - [-13.572519, 65.038855], - [-13.573817, 65.038905], - [-13.574461, 65.0389], - [-13.574718, 65.038696], - [-13.575748, 65.038506], - [-13.576145, 65.038235], - [-13.577885, 65.038164], - [-13.578021, 65.038305], - [-13.578391, 65.038341], - [-13.578871, 65.038143], - [-13.579709, 65.038175], - [-13.580005, 65.038315], - [-13.58019, 65.038232], - [-13.580067, 65.038086], - [-13.580116, 65.03793], - [-13.581324, 65.038008], - [-13.581804, 65.038133], - [-13.583111, 65.038148], - [-13.58337, 65.03792], - [-13.583678, 65.037847], - [-13.584565, 65.037951], - [-13.584935, 65.037722], - [-13.585847, 65.037769], - [-13.586229, 65.037556], - [-13.587301, 65.036869], - [-13.588775, 65.036236], - [-13.591409, 65.035511], - [-13.592754, 65.035897], - [-13.594752, 65.035905], - [-13.596219, 65.035949], - [-13.596438, 65.035702], - [-13.59682, 65.035739], - [-13.59717, 65.035983], - [-13.597089, 65.036186], - [-13.597389, 65.036234], - [-13.597438, 65.036683], - [-13.598325, 65.036786], - [-13.599455, 65.0368], - [-13.60126, 65.036532], - [-13.605821, 65.035445], - [-13.60876, 65.034472], - [-13.609775, 65.033841], - [-13.611149, 65.033162], - [-13.613187, 65.032039], - [-13.613702, 65.031622], - [-13.616899, 65.028352], - [-13.61973, 65.022313], - [-13.61441, 65.020978], - [-13.610719, 65.018857], - [-13.609217, 65.018685], - [-13.603317, 65.015504], - [-13.599386, 65.011274], - [-13.59858, 65.003645], - [-13.605186, 64.996865], - [-13.613516, 64.993355], - [-13.667443, 64.986194], - [-13.714847, 64.986248], - [-13.717968, 64.985998], - [-13.719787, 64.9861], - [-13.721423, 64.98692], - [-13.722847, 64.986985], - [-13.724423, 64.98619], - [-13.725317, 64.986164], - [-13.725135, 64.986639], - [-13.726075, 64.98717], - [-13.727226, 64.987177], - [-13.728287, 64.987113], - [-13.728499, 64.987305], - [-13.730154, 64.987014], - [-13.73057, 64.987171], - [-13.730857, 64.987346], - [-13.731814, 64.987463], - [-13.732027, 64.987176], - [-13.73307, 64.987203], - [-13.73407, 64.987257], - [-13.7339, 64.987481], - [-13.734581, 64.987499], - [-13.735942, 64.98767], - [-13.738049, 64.98767], - [-13.73973, 64.987706], - [-13.741709, 64.98767], - [-13.743561, 64.987832], - [-13.744752, 64.987913], - [-13.745965, 64.987859], - [-13.747263, 64.988039], - [-13.74903, 64.987931], - [-13.750778, 64.987336], - [-13.752569, 64.987943], - [-13.754286, 64.987766], - [-13.756228, 64.988021], - [-13.759299, 64.98746], - [-13.761903, 64.987231], - [-13.765978, 64.986967], - [-13.767907, 64.986504], - [-13.769173, 64.985043], - [-13.771855, 64.98664], - [-13.774795, 64.986685], - [-13.777177, 64.985769], - [-13.784985, 64.986541], - [-13.785178, 64.987321], - [-13.789384, 64.98851], - [-13.78962, 64.989091], - [-13.794115, 64.991644], - [-13.795677, 64.993934], - [-13.796986, 64.994628], - [-13.796564, 64.995513], - [-13.796971, 64.99708], - [-13.798386, 64.997341], - [-13.79941, 64.998201], - [-13.800793, 64.998159], - [-13.801687, 64.998379], - [-13.80186, 64.999555], - [-13.801736, 65.000881], - [-13.802243, 65.001362], - [-13.803676, 65.002582], - [-13.804139, 65.002641], - [-13.804785, 65.002732], - [-13.806432, 65.003117], - [-13.807261, 65.003163], - [-13.807521, 65.003055], - [-13.808121, 65.003024], - [-13.808336, 65.0031], - [-13.808478, 65.003263], - [-13.80829, 65.003503], - [-13.808312, 65.003821], - [-13.80842, 65.004016], - [-13.808903, 65.004216], - [-13.8093, 65.004329], - [-13.809493, 65.004315], - [-13.809954, 65.004338], - [-13.810134, 65.004517], - [-13.81027, 65.004756], - [-13.810578, 65.005048], - [-13.811071, 65.005423], - [-13.811034, 65.005657], - [-13.811083, 65.005907], - [-13.811243, 65.006235], - [-13.811588, 65.006334], - [-13.81181, 65.006318], - [-13.812168, 65.006303], - [-13.812315, 65.006438], - [-13.812217, 65.006553], - [-13.812254, 65.006761], - [-13.81196, 65.00711], - [-13.811712, 65.007828], - [-13.811032, 65.008617], - [-13.81122, 65.01017], - [-13.81089, 65.01095], - [-13.811775, 65.011938], - [-13.8129, 65.01326], - [-13.81376, 65.0143], - [-13.82036, 65.01536], - [-13.82259, 65.015999], - [-13.825068, 65.017574], - [-13.825541, 65.019163], - [-13.828494, 65.020496], - [-13.830056, 65.021528], - [-13.831119, 65.021804], - [-13.833326, 65.022084], - [-13.83467, 65.022119], - [-13.837994, 65.021996], - [-13.8402, 65.022234], - [-13.841971, 65.022621], - [-13.844369, 65.024017], - [-13.844759, 65.024174], - [-13.845867, 65.024208], - [-13.846358, 65.025416], - [-13.84881, 65.02636], - [-13.851797, 65.02769], - [-13.85335, 65.02866], - [-13.853368, 65.029312], - [-13.855884, 65.030608], - [-13.856819, 65.031524], - [-13.858227, 65.032474], - [-13.859689, 65.033379], - [-13.861923, 65.034042], - [-13.863058, 65.034184], - [-13.865565, 65.03451], - [-13.868389, 65.034694], - [-13.871086, 65.034567], - [-13.871949, 65.034652], - [-13.873448, 65.035246], - [-13.874773, 65.035809], - [-13.876199, 65.03712], - [-13.877752, 65.037519], - [-13.878987, 65.03786], - [-13.882475, 65.038423], - [-13.885108, 65.038703], - [-13.887297, 65.039147], - [-13.887805, 65.039646], - [-13.888459, 65.039944], - [-13.88944, 65.04014], - [-13.890857, 65.040293], - [-13.892264, 65.040841], - [-13.892246, 65.040864], - [-13.8933, 65.041163], - [-13.894017, 65.04117], - [-13.895098, 65.041684], - [-13.896042, 65.041903], - [-13.897577, 65.042152], - [-13.898605, 65.042458], - [-13.899909, 65.043173], - [-13.900455, 65.043322], - [-13.901122, 65.043393], - [-13.902715, 65.043406], - [-13.90477, 65.043655], - [-13.905598, 65.043821], - [-13.906093, 65.04436], - [-13.907069, 65.044913], - [-13.907782, 65.045194], - [-13.908507, 65.045254], - [-13.909618, 65.045181], - [-13.910703, 65.045446], - [-13.911821, 65.045514], - [-13.912925, 65.045845], - [-13.915532, 65.046267], - [-13.920018, 65.046821], - [-13.92208, 65.047062], - [-13.926729, 65.047493], - [-13.927621, 65.047509], - [-13.9297, 65.047415], - [-13.930545, 65.047495], - [-13.932516, 65.047932], - [-13.934441, 65.048231], - [-13.935576, 65.048231], - [-13.936748, 65.048085], - [-13.938827, 65.048039], - [-13.940437, 65.048171], - [-13.941567, 65.048402], - [-13.944181, 65.049553], - [-13.944958, 65.049802], - [-13.946043, 65.049954], - [-13.95057, 65.050054], - [-13.953383, 65.050303], - [-13.955945, 65.050379], - [-13.960986, 65.050845], - [-13.962553, 65.051254], - [-13.966226, 65.052608], - [-13.96814, 65.053136], - [-13.96918, 65.053586], - [-13.971511, 65.054155], - [-13.9732, 65.054393], - [-13.974754, 65.054932], - [-13.978498, 65.056026], - [-13.97939, 65.056227], - [-13.980345, 65.056383], - [-13.980981, 65.056434], - [-13.982017, 65.056576], - [-13.98255, 65.056768], - [-13.982961, 65.057085], - [-13.983449, 65.057396], - [-13.987655, 65.058691], - [-13.989536, 65.059365], - [-13.990333, 65.059574], - [-13.990962, 65.059643], - [-13.991555, 65.059655], - [-13.993278, 65.059561], - [-13.99422, 65.059471], - [-13.994832, 65.059462], - [-13.994685, 65.059719], - [-13.992681, 65.061068], - [-13.992476, 65.061287], - [-13.992559, 65.061512], - [-13.99272, 65.061682], - [-13.993452, 65.062113], - [-13.994598, 65.062586], - [-13.994987, 65.062856], - [-13.995234, 65.062861], - [-13.995476, 65.063008], - [-13.995926, 65.063377], - [-13.996583, 65.063524], - [-13.996813, 65.063645], - [-13.997294, 65.063744], - [-13.998259, 65.064134], - [-13.999371, 65.064281], - [-13.999665, 65.064243], - [-14.000184, 65.064316], - [-14.000547, 65.064492], - [-14.001375, 65.064655], - [-14.001659, 65.064555], - [-14.001823, 65.064626], - [-14.00159, 65.064702], - [-14.002718, 65.065261], - [-14.002976, 65.065514], - [-14.003085, 65.065654], - [-14.003489, 65.065891], - [-14.003234, 65.065984], - [-14.004581, 65.066737], - [-14.005738, 65.066995], - [-14.006054, 65.067189], - [-14.006215, 65.067389], - [-14.007116, 65.0679], - [-14.007498, 65.068056], - [-14.007792, 65.068194], - [-14.008043, 65.068498], - [-14.008289, 65.06854], - [-14.008874, 65.068886], - [-14.008795, 65.06898], - [-14.008994, 65.069038], - [-14.009062, 65.069116], - [-14.009857, 65.069408], - [-14.010713, 65.069662], - [-14.011492, 65.069677], - [-14.012199, 65.069891], - [-14.012793, 65.070117], - [-14.012944, 65.070313], - [-14.01414, 65.070762], - [-14.014709, 65.070851], - [-14.015997, 65.07111], - [-14.016189, 65.071079], - [-14.018189, 65.072347], - [-14.018015, 65.072405], - [-14.018175, 65.072659], - [-14.018432, 65.073056], - [-14.018177, 65.073091], - [-14.018133, 65.073241], - [-14.018209, 65.07348], - [-14.018579, 65.073484], - [-14.018787, 65.073655], - [-14.018922, 65.073954], - [-14.019208, 65.074161], - [-14.019299, 65.074183], - [-14.021179, 65.074382], - [-14.02112, 65.074453], - [-14.020635, 65.074423], - [-14.02061, 65.074457], - [-14.019251, 65.07432], - [-14.019106, 65.074565], - [-14.020446, 65.074705], - [-14.020429, 65.07473], - [-14.01909, 65.074611], - [-14.019029, 65.074728], - [-14.020266, 65.075058], - [-14.02112, 65.074753], - [-14.021855, 65.074386], - [-14.022033, 65.074389], - [-14.022164, 65.074204], - [-14.024946, 65.074437], - [-14.02585, 65.07495], - [-14.024108, 65.075475], - [-14.024791, 65.07571], - [-14.025581, 65.075858], - [-14.025851, 65.075838], - [-14.02647, 65.075676], - [-14.026351, 65.075591], - [-14.026993, 65.075423], - [-14.027165, 65.075494], - [-14.027851, 65.075304], - [-14.026873, 65.074765], - [-14.027352, 65.074622], - [-14.028296, 65.07514], - [-14.028995, 65.074907], - [-14.02903, 65.074761], - [-14.029271, 65.074706], - [-14.028119, 65.074054], - [-14.028451, 65.07393], - [-14.028931, 65.073957], - [-14.029411, 65.074025], - [-14.029835, 65.074031], - [-14.031565, 65.07349], - [-14.031743, 65.073475], - [-14.033407, 65.074064], - [-14.033355, 65.074093], - [-14.03267, 65.07398], - [-14.032236, 65.07416], - [-14.032175, 65.074333], - [-14.032613, 65.07462], - [-14.033053, 65.074822], - [-14.033273, 65.074788], - [-14.033509, 65.074779], - [-14.033685, 65.074806], - [-14.034746, 65.075118], - [-14.034764, 65.075216], - [-14.034498, 65.075535], - [-14.034605, 65.075649], - [-14.034284, 65.075891], - [-14.033766, 65.076059], - [-14.033211, 65.076416], - [-14.03352, 65.076607], - [-14.034021, 65.076683], - [-14.03498, 65.076834], - [-14.035229, 65.076745], - [-14.035517, 65.076596], - [-14.039238, 65.07435], - [-14.041002, 65.073278], - [-14.041206, 65.072447], - [-14.040284, 65.071763], - [-14.039436, 65.071773], - [-14.038822, 65.071311], - [-14.038092, 65.070701], - [-14.036998, 65.06957], - [-14.035893, 65.069163], - [-14.035152, 65.068797], - [-14.034479, 65.06806], - [-14.033321, 65.067712], - [-14.032696, 65.067282], - [-14.031078, 65.066296], - [-14.028771, 65.065364], - [-14.025467, 65.063542], - [-14.021841, 65.061854], - [-14.020918, 65.060913], - [-14.018955, 65.059691], - [-14.018641, 65.058917], - [-14.018812, 65.058533], - [-14.017568, 65.057515], - [-14.016763, 65.057343], - [-14.016401, 65.057099], - [-14.016315, 65.056661], - [-14.01525, 65.056416], - [-14.014041, 65.055584], - [-14.014231, 65.054642], - [-14.013616, 65.053202], - [-14.012472, 65.052009], - [-14.010801, 65.051063], - [-14.007772, 65.049868], - [-14.004017, 65.048918], - [-14.00093, 65.047953], - [-14.000705, 65.047587], - [-13.9992, 65.047053], - [-13.995177, 65.047592], - [-13.995169, 65.046569], - [-13.994375, 65.04608], - [-13.993345, 65.046057], - [-13.992977, 65.045803], - [-13.991851, 65.0454], - [-13.991218, 65.044843], - [-13.989837, 65.044283], - [-13.989676, 65.043649], - [-13.990362, 65.042775], - [-13.989566, 65.042218], - [-13.989483, 65.04177], - [-13.991006, 65.041462], - [-13.992937, 65.041462], - [-13.993761, 65.041775], - [-13.994994, 65.041734], - [-13.997527, 65.04177], - [-14.000402, 65.040593], - [-14.002451, 65.040471], - [-14.003999, 65.040118], - [-14.005029, 65.040168], - [-14.007515, 65.039959], - [-14.008601, 65.039511], - [-14.010176, 65.039325], - [-14.01118, 65.03976], - [-14.012796, 65.040811], - [-14.015562, 65.041249], - [-14.017657, 65.041603], - [-14.018096, 65.04154], - [-14.020092, 65.041848], - [-14.02142, 65.042671], - [-14.024383, 65.042563], - [-14.024831, 65.042065], - [-14.025017, 65.041721], - [-14.025808, 65.041453], - [-14.02566, 65.04125], - [-14.025564, 65.041141], - [-14.025218, 65.041345], - [-14.024883, 65.041306], - [-14.024568, 65.041103], - [-14.023413, 65.040421], - [-14.023487, 65.040122], - [-14.023433, 65.039942], - [-14.023669, 65.03978], - [-14.024223, 65.039711], - [-14.025113, 65.039528], - [-14.026185, 65.039455], - [-14.026903, 65.039447], - [-14.027421, 65.039263], - [-14.027267, 65.039117], - [-14.027439, 65.039006], - [-14.028075, 65.038807], - [-14.028738, 65.038822], - [-14.028838, 65.038922], - [-14.02832, 65.039524], - [-14.027948, 65.039593], - [-14.027703, 65.039773], - [-14.027739, 65.040099], - [-14.027548, 65.040417], - [-14.027157, 65.040766], - [-14.027748, 65.041429], - [-14.029165, 65.041973], - [-14.030419, 65.042061], - [-14.031246, 65.042054], - [-14.031772, 65.041962], - [-14.033168, 65.041878], - [-14.033535, 65.041647], - [-14.035879, 65.041057], - [-14.037205, 65.04057], - [-14.037796, 65.04021], - [-14.038631, 65.039846], - [-14.04026, 65.03893], - [-14.04083, 65.038799], - [-14.041184, 65.039052], - [-14.041584, 65.039163], - [-14.04232, 65.03901], - [-14.043319, 65.038845], - [-14.044373, 65.038742], - [-14.045463, 65.038734], - [-14.046326, 65.038611], - [-14.047116, 65.038527], - [-14.048443, 65.038446], - [-14.049478, 65.038301], - [-14.050087, 65.037752], - [-14.051005, 65.037591], - [-14.05224, 65.037476], - [-14.053339, 65.037611], - [-14.054457, 65.037453], - [-14.054993, 65.037254], - [-14.055683, 65.037101], - [-14.056928, 65.037354], - [-14.058309, 65.037361], - [-14.059089, 65.037632], - [-14.059883, 65.037528], - [-14.060353, 65.037818], - [-14.062188, 65.037795], - [-14.064032, 65.037871], - [-14.067847, 65.037883], - [-14.070173, 65.03768], - [-14.072517, 65.037591], - [-14.076705, 65.037476], - [-14.07845, 65.03751], - [-14.08052, 65.037078], - [-14.082137, 65.036106], - [-14.082499, 65.035812], - [-14.082856, 65.035735], - [-14.083475, 65.035842], - [-14.08408, 65.035828], - [-14.084857, 65.035704], - [-14.085283, 65.035489], - [-14.08559, 65.035334], - [-14.08667, 65.034957], - [-14.089293, 65.033215], - [-14.08973, 65.033], - [-14.090261, 65.032941], - [-14.090841, 65.03292], - [-14.09131, 65.03285], - [-14.09213, 65.032268], - [-14.092582, 65.031868], - [-14.09303, 65.031552], - [-14.093593, 65.031357], - [-14.094474, 65.031201], - [-14.095845, 65.031218], - [-14.096655, 65.031298], - [-14.097306, 65.031471], - [-14.097746, 65.031543], - [-14.09822, 65.031469], - [-14.100878, 65.030707], - [-14.10323, 65.029916], - [-14.103754, 65.029812], - [-14.104526, 65.029772], - [-14.105032, 65.029723], - [-14.105414, 65.0296], - [-14.10642, 65.028994], - [-14.107213, 65.028937], - [-14.107893, 65.028835], - [-14.108624, 65.028675], - [-14.108554, 65.028256], - [-14.108404, 65.028189], - [-14.108494, 65.028041], - [-14.108694, 65.027948], - [-14.109284, 65.027906], - [-14.109187, 65.027704], - [-14.11726, 65.027128], - [-14.117404, 65.027509], - [-14.119852, 65.027787], - [-14.126845, 65.027633], - [-14.127051, 65.027433], - [-14.127271, 65.027255], - [-14.127752, 65.027196], - [-14.128332, 65.027323], - [-14.128952, 65.027281], - [-14.129613, 65.027441], - [-14.129773, 65.027957], - [-14.129713, 65.028337], - [-14.129853, 65.028394], - [-14.129957, 65.028436], - [-14.130414, 65.028379], - [-14.130864, 65.028323], - [-14.131394, 65.028122], - [-14.131773, 65.028026], - [-14.13217, 65.027949], - [-14.133144, 65.027901], - [-14.134114, 65.027969], - [-14.134798, 65.028071], - [-14.135561, 65.028085], - [-14.136241, 65.027936], - [-14.136997, 65.027853], - [-14.137655, 65.027963], - [-14.138411, 65.027925], - [-14.139164, 65.027861], - [-14.13972, 65.02772], - [-14.141529, 65.027306], - [-14.14254, 65.02706], - [-14.143454, 65.026948], - [-14.145859, 65.026644], - [-14.147051, 65.026433], - [-14.147758, 65.026302], - [-14.14803, 65.026121], - [-14.148665, 65.025938], - [-14.149443, 65.025788], - [-14.149929, 65.025714], - [-14.150862, 65.025612], - [-14.151235, 65.025638], - [-14.151569, 65.025716], - [-14.151951, 65.025725], - [-14.152256, 65.02576], - [-14.153125, 65.026031], - [-14.153715, 65.026138], - [-14.154259, 65.026206], - [-14.15505, 65.026611], - [-14.155361, 65.026663], - [-14.155737, 65.026658], - [-14.156067, 65.026628], - [-14.156482, 65.026611], - [-14.157292, 65.026704], - [-14.158064, 65.026718], - [-14.159023, 65.026732], - [-14.159444, 65.026699], - [-14.159652, 65.026636], - [-14.159891, 65.026516], - [-14.16028, 65.026491], - [-14.160818, 65.026483], - [-14.161382, 65.026507], - [-14.16192, 65.026592], - [-14.162419, 65.026743], - [-14.162827, 65.026956], - [-14.163165, 65.027118], - [-14.163715, 65.027243], - [-14.16439, 65.027347], - [-14.16474, 65.02729], - [-14.165025, 65.027246], - [-14.165478, 65.027295], - [-14.165906, 65.027274], - [-14.166146, 65.027213], - [-14.166392, 65.027191], - [-14.166788, 65.027246], - [-14.167532, 65.027507], - [-14.168843, 65.028126], - [-14.170476, 65.028093], - [-14.171593, 65.028369], - [-14.172811, 65.028461], - [-14.175782, 65.028385], - [-14.177507, 65.028312], - [-14.178907, 65.028362], - [-14.179619, 65.028571], - [-14.181085, 65.029061], - [-14.181676, 65.029213], - [-14.18219, 65.029232], - [-14.182464, 65.029223], - [-14.182809, 65.02914], - [-14.183137, 65.029183], - [-14.183619, 65.029181], - [-14.183887, 65.029248], - [-14.184078, 65.029324], - [-14.184445, 65.029465], - [-14.18502, 65.029685], - [-14.185545, 65.029786], - [-14.186021, 65.029798], - [-14.186596, 65.029738], - [-14.18682, 65.029678], - [-14.18723, 65.029597], - [-14.187646, 65.029502], - [-14.188018, 65.029484], - [-14.188872, 65.029648], - [-14.1892, 65.029673], - [-14.189835, 65.029759], - [-14.190058, 65.029818], - [-14.190207, 65.029858], - [-14.190475, 65.029992], - [-14.19064, 65.0301], - [-14.191778, 65.030458], - [-14.192593, 65.03074], - [-14.193365, 65.030867], - [-14.194454, 65.031068], - [-14.195701, 65.031283], - [-14.196571, 65.031403], - [-14.197239, 65.031414], - [-14.198151, 65.03148], - [-14.198537, 65.031571], - [-14.1987, 65.03162], - [-14.199357, 65.031687], - [-14.199619, 65.031687], - [-14.199875, 65.031715], - [-14.199983, 65.031622], - [-14.200172, 65.031625], - [-14.200517, 65.031644], - [-14.200884, 65.031692], - [-14.200951, 65.031772], - [-14.201037, 65.031794], - [-14.201507, 65.031796], - [-14.202469, 65.031799], - [-14.202936, 65.031761], - [-14.203612, 65.031614], - [-14.204127, 65.031471], - [-14.204561, 65.031335], - [-14.205623, 65.031181], - [-14.205763, 65.031131], - [-14.205843, 65.031077], - [-14.205935, 65.031005], - [-14.206133, 65.030964], - [-14.206353, 65.030966], - [-14.206546, 65.031014], - [-14.206691, 65.031086], - [-14.206755, 65.031038], - [-14.207179, 65.031116], - [-14.207243, 65.031229], - [-14.207227, 65.031267], - [-14.208829, 65.031616], - [-14.209657, 65.03176], - [-14.210847, 65.031932], - [-14.211386, 65.031964], - [-14.211987, 65.031946], - [-14.212544, 65.031866], - [-14.213192, 65.031706], - [-14.2149, 65.031048], - [-14.215803, 65.030834], - [-14.216245, 65.030891], - [-14.216342, 65.030882], - [-14.216486, 65.030857], - [-14.21654, 65.030715], - [-14.216736, 65.030621], - [-14.216983, 65.030565], - [-14.217353, 65.030467], - [-14.219175, 65.030693], - [-14.219495, 65.030211], - [-14.220911, 65.030278], - [-14.220854, 65.03045], - [-14.219809, 65.030395], - [-14.219541, 65.030828], - [-14.220772, 65.030956], - [-14.221256, 65.030871], - [-14.221606, 65.03096], - [-14.221936, 65.031006], - [-14.221987, 65.031204], - [-14.223455, 65.031378], - [-14.223815, 65.030869], - [-14.222523, 65.030734], - [-14.221992, 65.030847], - [-14.221822, 65.030793], - [-14.222487, 65.030604], - [-14.224371, 65.030821], - [-14.224732, 65.0311], - [-14.22587, 65.031204], - [-14.226117, 65.031084], - [-14.226205, 65.03095], - [-14.227947, 65.03116], - [-14.22786, 65.031298], - [-14.229287, 65.031504], - [-14.230379, 65.031484], - [-14.231457, 65.031613], - [-14.232491, 65.031628], - [-14.233628, 65.031836], - [-14.234379, 65.032253], - [-14.235173, 65.032144], - [-14.235409, 65.031465], - [-14.2356, 65.029612], - [-14.235772, 65.028325], - [-14.235513, 65.027477], - [-14.2355, 65.02727], - [-14.235624, 65.025749], - [-14.237286, 65.024729], - [-14.238474, 65.024065], - [-14.240516, 65.022226], - [-14.24036, 65.021864], - [-14.239784, 65.020525], - [-14.232875, 65.019963], - [-14.228412, 65.019329], - [-14.226785, 65.019135], - [-14.226073, 65.018939], - [-14.225386, 65.018767], - [-14.224056, 65.018477], - [-14.217576, 65.017344], - [-14.214679, 65.017453], - [-14.211911, 65.017507], - [-14.21028, 65.01748], - [-14.208392, 65.017861], - [-14.206396, 65.018223], - [-14.20521, 65.018309], - [-14.204401, 65.018368], - [-14.202727, 65.018078], - [-14.19998, 65.017172], - [-14.198693, 65.015994], - [-14.19586, 65.015622], - [-14.193479, 65.015187], - [-14.1885, 65.014698], - [-14.183351, 65.013601], - [-14.181419, 65.013057], - [-14.178995, 65.013021], - [-14.178751, 65.013131], - [-14.17851, 65.013356], - [-14.178397, 65.013389], - [-14.178287, 65.013356], - [-14.177984, 65.013181], - [-14.177278, 65.01303], - [-14.174338, 65.013392], - [-14.16936, 65.013293], - [-14.163524, 65.013846], - [-14.159793, 65.01318], - [-14.157086, 65.013529], - [-14.156332, 65.013618], - [-14.155233, 65.013599], - [-14.151186, 65.014355], - [-14.150081, 65.01463], - [-14.14775, 65.014282], - [-14.146851, 65.014044], - [-14.146033, 65.013539], - [-14.145392, 65.013461], - [-14.144483, 65.013647], - [-14.14376, 65.013601], - [-14.14212, 65.013384], - [-14.141184, 65.013148], - [-14.140486, 65.01319], - [-14.138225, 65.012866], - [-14.1367, 65.012894], - [-14.135926, 65.012935], - [-14.135025, 65.013297], - [-14.133997, 65.013556], - [-14.133228, 65.013758], - [-14.132536, 65.014057], - [-14.131465, 65.014199], - [-14.129669, 65.014433], - [-14.128009, 65.014342], - [-14.127094, 65.014083], - [-14.126804, 65.013928], - [-14.125769, 65.013605], - [-14.122762, 65.013746], - [-14.121008, 65.013815], - [-14.119839, 65.014001], - [-14.118127, 65.014083], - [-14.11747, 65.014245], - [-14.116446, 65.014308], - [-14.116151, 65.014514], - [-14.116059, 65.014527], - [-14.113888, 65.014452], - [-14.113087, 65.014533], - [-14.111559, 65.01426], - [-14.110445, 65.014519], - [-14.109335, 65.014536], - [-14.108546, 65.014857], - [-14.104668, 65.014912], - [-14.103143, 65.015056], - [-14.101403, 65.015386], - [-14.100237, 65.01568], - [-14.09924, 65.015724], - [-14.096289, 65.01575], - [-14.09251, 65.015797], - [-14.091296, 65.016085], - [-14.089652, 65.016075], - [-14.088293, 65.016324], - [-14.086697, 65.016392], - [-14.084879, 65.016704], - [-14.080572, 65.016727], - [-14.078951, 65.017105], - [-14.076344, 65.017236], - [-14.073372, 65.017603], - [-14.07128, 65.017843], - [-14.068372, 65.017816], - [-14.064306, 65.017893], - [-14.0623, 65.018219], - [-14.061366, 65.018668], - [-14.061066, 65.01874], - [-14.060808, 65.018691], - [-14.060186, 65.018441], - [-14.054682, 65.017721], - [-14.049629, 65.017513], - [-14.046045, 65.016488], - [-14.044007, 65.015061], - [-14.042408, 65.014454], - [-14.038063, 65.013602], - [-14.034877, 65.013833], - [-14.032624, 65.013625], - [-14.02815, 65.012211], - [-14.023815, 65.011136], - [-14.023021, 65.011259], - [-14.021981, 65.011635], - [-14.020017, 65.012677], - [-14.02035, 65.013421], - [-14.019502, 65.01343], - [-14.018365, 65.013203], - [-14.017228, 65.012945], - [-14.016799, 65.012482], - [-14.015393, 65.011839], - [-14.012207, 65.011676], - [-14.011037, 65.011843], - [-14.00711, 65.011059], - [-14.004493, 65.010593], - [-14.002733, 65.01028], - [-13.995416, 65.011281], - [-13.994944, 65.0112], - [-13.993227, 65.00989], - [-13.990953, 65.010361], - [-13.989805, 65.010277], - [-13.989116, 65.009958], - [-13.988812, 65.009716], - [-13.987885, 65.008978], - [-13.986232, 65.007806], - [-13.983577, 65.007467], - [-13.98207, 65.00677], - [-13.980245, 65.005995], - [-13.977253, 65.005392], - [-13.973317, 65.005406], - [-13.971683, 65.005778], - [-13.970145, 65.005933], - [-13.969123, 65.005514], - [-13.966884, 65.00628], - [-13.96533, 65.006545], - [-13.963652, 65.006808], - [-13.963067, 65.006213], - [-13.961192, 65.00623], - [-13.958801, 65.007251], - [-13.956986, 65.007369], - [-13.954847, 65.008358], - [-13.952436, 65.008495], - [-13.952297, 65.007939], - [-13.951199, 65.007958], - [-13.949062, 65.008835], - [-13.944246, 65.008423], - [-13.941363, 65.00831], - [-13.940903, 65.007215], - [-13.936185, 65.006806], - [-13.934229, 65.00784], - [-13.931632, 65.008723], - [-13.927986, 65.008772], - [-13.924215, 65.008517], - [-13.921608, 65.00813], - [-13.918035, 65.007453], - [-13.916077, 65.00618], - [-13.9164, 65.00356], - [-13.91471, 65.002355], - [-13.912048, 65.002174], - [-13.911617, 65.000991], - [-13.90873, 65.000626], - [-13.9068, 65.001126], - [-13.90514, 65.000608], - [-13.901014, 64.999553], - [-13.898074, 64.999014], - [-13.896714, 64.998713], - [-13.894632, 64.997799], - [-13.8946, 64.997], - [-13.89532, 64.99666], - [-13.89554, 64.99623], - [-13.89494, 64.99623], - [-13.892971, 64.995679], - [-13.891362, 64.993953], - [-13.886479, 64.993393], - [-13.885935, 64.991283], - [-13.88419, 64.990432], - [-13.883165, 64.988425], - [-13.880447, 64.986986], - [-13.878431, 64.986721], - [-13.87784, 64.98614], - [-13.877974, 64.985469], - [-13.87727, 64.98511], - [-13.87478, 64.984263], - [-13.87435, 64.98278], - [-13.87496, 64.98266], - [-13.875254, 64.981637], - [-13.87709, 64.981275], - [-13.878653, 64.979715], - [-13.878156, 64.977758], - [-13.877074, 64.976686], - [-13.876836, 64.975597], - [-13.87528, 64.97513], - [-13.87167, 64.974116], - [-13.869637, 64.974623], - [-13.866785, 64.973698], - [-13.863618, 64.973681], - [-13.859492, 64.972725], - [-13.858404, 64.970855], - [-13.854819, 64.969997], - [-13.852075, 64.970507], - [-13.851519, 64.971624], - [-13.850551, 64.972237], - [-13.84902, 64.971562], - [-13.848485, 64.970773], - [-13.847898, 64.969889], - [-13.846309, 64.96911], - [-13.844505, 64.968902], - [-13.843125, 64.967437], - [-13.841559, 64.966485], - [-13.839547, 64.965784], - [-13.83643, 64.966345], - [-13.833738, 64.966329], - [-13.831109, 64.965481], - [-13.829226, 64.964312], - [-13.828737, 64.963165], - [-13.825587, 64.962538], - [-13.818247, 64.962012], - [-13.810503, 64.959439], - [-13.80439, 64.95334], - [-13.80379, 64.95321], - [-13.8035, 64.95308], - [-13.80322, 64.95255], - [-13.80201, 64.95268], - [-13.80139, 64.9528], - [-13.80143, 64.95204], - [-13.80022, 64.95203], - [-13.80027, 64.951], - [-13.79907, 64.95087], - [-13.79877, 64.95074], - [-13.79849, 64.95022], - [-13.79729, 64.95009], - [-13.7961, 64.94982], - [-13.7958, 64.94969], - [-13.79523, 64.94892], - [-13.79465, 64.9484], - [-13.7944, 64.94738], - [-13.79319, 64.94749], - [-13.79258, 64.94749], - [-13.79078, 64.94722], - [-13.79018, 64.94721], - [-13.78896, 64.94745], - [-13.78836, 64.94758], - [-13.7887, 64.94656], - [-13.78903, 64.94605], - [-13.78782, 64.94604], - [-13.78756, 64.94528], - [-13.78757, 64.94502], - [-13.78758, 64.94476], - [-13.78728, 64.94463], - [-13.78699, 64.9445], - [-13.78701, 64.94425], - [-13.787105, 64.943873], - [-13.78672, 64.94386], - [-13.78369, 64.94409], - [-13.78308, 64.94409], - [-13.78188, 64.94395], - [-13.78161, 64.94344], - [-13.78163, 64.94293], - [-13.78164, 64.94267], - [-13.78136, 64.94216], - [-13.77955, 64.94227], - [-13.77834, 64.94226], - [-13.77474, 64.94197], - [-13.77444, 64.94184], - [-13.77415, 64.94171], - [-13.77295, 64.94158], - [-13.77267, 64.94106], - [-13.77237, 64.94093], - [-13.77177, 64.94093], - [-13.77117, 64.94092], - [-13.76937, 64.94065], - [-13.76877, 64.94065], - [-13.76816, 64.94077], - [-13.7682, 64.93975], - [-13.76579, 64.93985], - [-13.76518, 64.93985], - [-13.76489, 64.93972], - [-13.76462, 64.93895], - [-13.76282, 64.93881], - [-13.76253, 64.93868], - [-13.76223, 64.93854], - [-13.76193, 64.93842], - [-13.76166, 64.9379], - [-13.75985, 64.93776], - [-13.75956, 64.93763], - [-13.75926, 64.9375], - [-13.75263, 64.93719], - [-13.75085, 64.93692], - [-13.75024, 64.93691], - [-13.74903, 64.93703], - [-13.74901, 64.93754], - [-13.74841, 64.93742], - [-13.74812, 64.93728], - [-13.74755, 64.93676], - [-13.74724, 64.93663], - [-13.74664, 64.9365], - [-13.74662, 64.93701], - [-13.74541, 64.93713], - [-13.74481, 64.93713], - [-13.74362, 64.93685], - [-13.74182, 64.93658], - [-13.73941, 64.93656], - [-13.73909, 64.93669], - [-13.73879, 64.93681], - [-13.73758, 64.9368], - [-13.73729, 64.93667], - [-13.73699, 64.93653], - [-13.7367, 64.93641], - [-13.7364, 64.93628], - [-13.7352, 64.93614], - [-13.73518, 64.93666], - [-13.73459, 64.93665], - [-13.7346, 64.93614], - [-13.7334, 64.936], - [-13.73221, 64.93574], - [-13.73161, 64.93573], - [-13.731, 64.93572], - [-13.73041, 64.93559], - [-13.73037, 64.93636], - [-13.72795, 64.93647], - [-13.72765, 64.93659], - [-13.72734, 64.93672], - [-13.72552, 64.93696], - [-13.72491, 64.93695], - [-13.72311, 64.93681], - [-13.72309, 64.93732], - [-13.72248, 64.93731], - [-13.72251, 64.9368], - [-13.7213, 64.93679], - [-13.72163, 64.93653], - [-13.72163, 64.93628], - [-13.72135, 64.93577], - [-13.72074, 64.93589], - [-13.72014, 64.93589], - [-13.71985, 64.93576], - [-13.71986, 64.9355], - [-13.71987, 64.93499], - [-13.718845, 64.934782], - [-13.717438, 64.934549], - [-13.716473, 64.93434], - [-13.715255, 64.933984], - [-13.714444, 64.933911], - [-13.714313, 64.933546], - [-13.714323, 64.933267], - [-13.713935, 64.933188], - [-13.713285, 64.93309], - [-13.712599, 64.933088], - [-13.712015, 64.93313], - [-13.711383, 64.933153], - [-13.710863, 64.9334], - [-13.710475, 64.933676], - [-13.709303, 64.933809], - [-13.708338, 64.933809], - [-13.707878, 64.934043], - [-13.707327, 64.934014], - [-13.707074, 64.933897], - [-13.705902, 64.93378], - [-13.705265, 64.933791], - [-13.705144, 64.934101], - [-13.704372, 64.933881], - [-13.703619, 64.933562], - [-13.702877, 64.933378], - [-13.701942, 64.93332], - [-13.700797, 64.933289], - [-13.700149, 64.933327], - [-13.699646, 64.933382], - [-13.699125, 64.93343], - [-13.698782, 64.933433], - [-13.698449, 64.93336], - [-13.697851, 64.933138], - [-13.696755, 64.932921], - [-13.695955, 64.932944], - [-13.695451, 64.93322], - [-13.695126, 64.933206], - [-13.695451, 64.932924], - [-13.694785, 64.932869], - [-13.693453, 64.932986], - [-13.691828, 64.933419], - [-13.691373, 64.93375], - [-13.69017, 64.933942], - [-13.689715, 64.934177], - [-13.688692, 64.934328], - [-13.687831, 64.934658], - [-13.687278, 64.934982], - [-13.687099, 64.935464], - [-13.686596, 64.936249], - [-13.685978, 64.93724], - [-13.685556, 64.937398], - [-13.684906, 64.937997], - [-13.684207, 64.938561], - [-13.684307, 64.939002], - [-13.684881, 64.938866], - [-13.685249, 64.939732], - [-13.685065, 64.940258], - [-13.684514, 64.940355], - [-13.683273, 64.940297], - [-13.682399, 64.940423], - [-13.681411, 64.941202], - [-13.681159, 64.941387], - [-13.681802, 64.941416], - [-13.681228, 64.941825], - [-13.68063, 64.941679], - [-13.679619, 64.941941], - [-13.67955, 64.941572], - [-13.679205, 64.941338], - [-13.67955, 64.940696], - [-13.680125, 64.940433], - [-13.680354, 64.940053], - [-13.680538, 64.939781], - [-13.681274, 64.939644], - [-13.681641, 64.939469], - [-13.683066, 64.939323], - [-13.68348, 64.939138], - [-13.683135, 64.938632], - [-13.682928, 64.93833], - [-13.683204, 64.93797], - [-13.682652, 64.937824], - [-13.682974, 64.937231], - [-13.682262, 64.93762], - [-13.681664, 64.937542], - [-13.681894, 64.937289], - [-13.682468, 64.936987], - [-13.682675, 64.936646], - [-13.683089, 64.93652], - [-13.683043, 64.935907], - [-13.682239, 64.935946], - [-13.682492, 64.935624], - [-13.683066, 64.935196], - [-13.683296, 64.934709], - [-13.683893, 64.9343], - [-13.684468, 64.93468], - [-13.685226, 64.934456], - [-13.685869, 64.93431], - [-13.68711, 64.934242], - [-13.687556, 64.934153], - [-13.6878, 64.93395], - [-13.6878, 64.933522], - [-13.686926, 64.933278], - [-13.686329, 64.933395], - [-13.685869, 64.933122], - [-13.685499, 64.932937], - [-13.684873, 64.933017], - [-13.684736, 64.932737], - [-13.685126, 64.932614], - [-13.685142, 64.93229], - [-13.685423, 64.932064], - [-13.685857, 64.932015], - [-13.68598, 64.93163], - [-13.686026, 64.93129], - [-13.68378, 64.92726], - [-13.68438, 64.92726], - [-13.68409, 64.92701], - [-13.68412, 64.9265], - [-13.68414, 64.92598], - [-13.68416, 64.92573], - [-13.68448, 64.92522], - [-13.68328, 64.92521], - [-13.68329, 64.92495], - [-13.6829, 64.9206], - [-13.68323, 64.92009], - [-13.68324, 64.91984], - [-13.68325, 64.91958], - [-13.68392, 64.91831], - [-13.68424, 64.9178], - [-13.68545, 64.91781], - [-13.68579, 64.91705], - [-13.68609, 64.91679], - [-13.687628, 64.91681], - [-13.687606, 64.916537], - [-13.68552, 64.91653], - [-13.68583, 64.91628], - [-13.68584, 64.91602], - [-13.68554, 64.91589], - [-13.68434, 64.91575], - [-13.68407, 64.91524], - [-13.68378, 64.91498], - [-13.68257, 64.91497], - [-13.68634, 64.91194], - [-13.68693, 64.91207], - [-13.68753, 64.9122], - [-13.6875, 64.91271], - [-13.68931, 64.91273], - [-13.68964, 64.91223], - [-13.69025, 64.91197], - [-13.69057, 64.91172], - [-13.69117, 64.91172], - [-13.69114, 64.91223], - [-13.69235, 64.91212], - [-13.69417, 64.912], - [-13.69419, 64.9115], - [-13.6972, 64.91165], - [-13.69961, 64.91167], - [-13.70142, 64.91143], - [-13.70264, 64.91131], - [-13.70297, 64.91055], - [-13.70359, 64.9103], - [-13.7039, 64.91003], - [-13.70571, 64.91006], - [-13.70603, 64.90955], - [-13.70665, 64.9093], - [-13.70726, 64.90905], - [-13.70758, 64.9088], - [-13.71118, 64.90895], - [-13.71237, 64.90922], - [-13.71297, 64.90935], - [-13.71296, 64.90961], - [-13.71416, 64.90962], - [-13.71537, 64.90963], - [-13.71657, 64.90964], - [-13.71655, 64.91015], - [-13.71715, 64.91016], - [-13.71775, 64.91016], - [-13.71776, 64.90991], - [-13.727011, 64.909701], - [-13.776063, 64.909025], - [-13.78408, 64.90893], - [-13.78439, 64.90868], - [-13.7847, 64.90855], - [-13.785, 64.90842], - [-13.78531, 64.9083], - [-13.78562, 64.90817], - [-13.78624, 64.90767], - [-13.78655, 64.90754], - [-13.78776, 64.90741], - [-13.78742, 64.90819], - [-13.7874, 64.9087], - [-13.78798, 64.90922], - [-13.78826, 64.90973], - [-13.79005, 64.91], - [-13.79186, 64.91001], - [-13.79206, 64.91019], - [-13.79426, 64.91029], - [-13.800403, 64.911638], - [-13.81937, 64.91458], - [-13.82057, 64.91459], - [-13.82089, 64.91434], - [-13.82119, 64.91421], - [-13.82301, 64.91396], - [-13.82361, 64.91398], - [-13.82422, 64.91398], - [-13.82602, 64.91374], - [-13.82664, 64.91375], - [-13.82693, 64.91388], - [-13.82721, 64.91439], - [-13.82782, 64.91427], - [-13.82813, 64.91414], - [-13.82843, 64.91402], - [-13.82903, 64.91402], - [-13.82933, 64.91415], - [-13.83022, 64.91454], - [-13.83051, 64.91467], - [-13.83079, 64.91519], - [-13.83199, 64.91532], - [-13.83318, 64.91559], - [-13.83377, 64.91585], - [-13.83407, 64.91598], - [-13.83437, 64.91611], - [-13.83556, 64.91637], - [-13.83676, 64.91638], - [-13.83737, 64.91626], - [-13.83705, 64.91677], - [-13.83694, 64.91719], - [-13.83853, 64.91729], - [-13.83873, 64.91747], - [-13.83914, 64.91742], - [-13.84034, 64.91731], - [-13.84032, 64.91782], - [-13.854965, 64.921451], - [-13.862685, 64.922681], - [-13.87085, 64.92266], - [-13.87117, 64.9224], - [-13.87148, 64.92189], - [-13.87208, 64.92202], - [-13.87328, 64.92203], - [-13.87449, 64.92192], - [-13.87482, 64.92141], - [-13.87513, 64.92115], - [-13.87633, 64.92116], - [-13.87666, 64.92065], - [-13.87727, 64.9204], - [-13.87788, 64.92015], - [-13.87823, 64.91913], - [-13.87882, 64.91926], - [-13.88002, 64.9194], - [-13.88004, 64.91889], - [-13.88186, 64.91878], - [-13.88307, 64.91853], - [-13.88368, 64.91828], - [-13.88429, 64.91828], - [-13.88549, 64.91829], - [-13.8861, 64.91829], - [-13.8879, 64.91844], - [-13.88788, 64.91895], - [-13.88968, 64.91909], - [-13.89028, 64.91909], - [-13.89149, 64.91897], - [-13.89147, 64.91949], - [-13.89208, 64.91935], - [-13.89269, 64.91911], - [-13.89329, 64.91911], - [-13.89389, 64.91912], - [-13.8945, 64.91912], - [-13.89509, 64.91938], - [-13.89689, 64.91964], - [-13.89809, 64.91966], - [-13.8999, 64.91955], - [-13.90023, 64.91904], - [-13.90054, 64.91879], - [-13.90114, 64.91879], - [-13.90112, 64.9193], - [-13.90233, 64.91944], - [-13.90292, 64.91944], - [-13.90353, 64.91919], - [-13.90654, 64.91922], - [-13.90715, 64.91922], - [-13.90776, 64.91897], - [-13.90837, 64.91871], - [-13.90958, 64.9186], - [-13.90991, 64.91809], - [-13.91022, 64.91783], - [-13.91082, 64.91796], - [-13.91142, 64.91797], - [-13.912929, 64.917724], - [-13.913248, 64.917861], - [-13.913537, 64.917982], - [-13.914029, 64.918062], - [-13.914249, 64.91804], - [-13.913984, 64.917846], - [-13.914062, 64.917746], - [-13.91445, 64.9176], - [-13.91566, 64.91749], - [-13.91687, 64.91724], - [-13.91868, 64.91725], - [-13.91987, 64.91752], - [-13.92107, 64.91778], - [-13.92166, 64.91804], - [-13.92226, 64.91804], - [-13.92347, 64.91793], - [-13.92375, 64.91844], - [-13.924195, 64.918501], - [-13.924625, 64.918509], - [-13.925078, 64.918497], - [-13.925741, 64.918436], - [-13.926474, 64.918329], - [-13.927212, 64.918204], - [-13.929178, 64.917743], - [-13.929701, 64.91769], - [-13.929767, 64.917642], - [-13.929916, 64.917648], - [-13.930042, 64.917636], - [-13.930089, 64.917733], - [-13.930107, 64.91781], - [-13.930238, 64.91785], - [-13.93043, 64.917862], - [-13.931167, 64.917796], - [-13.931803, 64.917705], - [-13.931868, 64.917717], - [-13.933395, 64.917593], - [-13.933465, 64.917678], - [-13.933582, 64.917733], - [-13.933876, 64.917763], - [-13.934007, 64.91781], - [-13.934152, 64.917826], - [-13.934913, 64.917755], - [-13.935879, 64.917622], - [-13.93856, 64.9174], - [-13.93974, 64.91766], - [-13.94215, 64.91793], - [-13.94696, 64.91822], - [-13.94935, 64.91837], - [-13.94934, 64.91888], - [-13.94995, 64.91876], - [-13.95055, 64.91876], - [-13.95175, 64.91903], - [-13.95356, 64.91904], - [-13.95417, 64.91904], - [-13.95535, 64.91931], - [-13.95716, 64.91932], - [-13.95776, 64.91932], - [-13.95896, 64.91959], - [-13.960572, 64.919391], - [-13.96198, 64.91935], - [-13.964007, 64.918985], - [-13.964596, 64.918817], - [-13.965054, 64.918823], - [-13.965402, 64.918976], - [-13.965664, 64.919229], - [-13.967304, 64.920188], - [-13.96797, 64.92029], - [-13.96877, 64.920513], - [-13.96976, 64.92069], - [-13.971594, 64.92088], - [-13.973521, 64.92114], - [-13.975214, 64.92141], - [-13.97696, 64.92176], - [-13.97875, 64.92203], - [-13.980569, 64.922105], - [-13.982641, 64.922335], - [-13.982831, 64.922377], - [-13.983683, 64.922652], - [-13.984424, 64.92292], - [-13.985425, 64.923148], - [-13.9866, 64.923326], - [-13.986727, 64.923229], - [-13.987259, 64.923306], - [-13.987505, 64.923141], - [-13.988373, 64.923285], - [-13.988623, 64.923111], - [-13.989345, 64.923269], - [-13.989258, 64.923417], - [-13.990718, 64.923679], - [-13.990894, 64.923572], - [-13.991628, 64.92373], - [-13.99156, 64.923823], - [-13.993274, 64.924228], - [-13.99455, 64.924535], - [-13.996138, 64.924788], - [-13.996698, 64.924919], - [-13.996878, 64.924822], - [-13.999024, 64.925286], - [-13.998951, 64.925395], - [-14.000802, 64.925837], - [-14.000847, 64.926028], - [-14.001464, 64.926249], - [-14.002059, 64.926536], - [-14.002721, 64.926745], - [-14.003635, 64.926629], - [-14.004, 64.926679], - [-14.004112, 64.926617], - [-14.004516, 64.926707], - [-14.004342, 64.926819], - [-14.004387, 64.926931], - [-14.005043, 64.927107], - [-14.006558, 64.927601], - [-14.006541, 64.927713], - [-14.007057, 64.927813], - [-14.007697, 64.927934], - [-14.008185, 64.928188], - [-14.008572, 64.928058], - [-14.009116, 64.928198], - [-14.009211, 64.928139], - [-14.009761, 64.928284], - [-14.009711, 64.928369], - [-14.010563, 64.928559], - [-14.01072, 64.92844], - [-14.01196, 64.928764], - [-14.013172, 64.929049], - [-14.013071, 64.92913], - [-14.013834, 64.929368], - [-14.013969, 64.929541], - [-14.013924, 64.929745], - [-14.014182, 64.929774], - [-14.014266, 64.929707], - [-14.014479, 64.929776], - [-14.01476, 64.929722], - [-14.01527, 64.929824], - [-14.01518, 64.929933], - [-14.016011, 64.930114], - [-14.016796, 64.930385], - [-14.018501, 64.930673], - [-14.01909, 64.930656], - [-14.019449, 64.930468], - [-14.020336, 64.93062], - [-14.020549, 64.930853], - [-14.020605, 64.931008], - [-14.021519, 64.931179], - [-14.02272, 64.930198], - [-14.022804, 64.930129], - [-14.023831, 64.930209], - [-14.023612, 64.930494], - [-14.023696, 64.930604], - [-14.024234, 64.930547], - [-14.024767, 64.930616], - [-14.025183, 64.930896], - [-14.025199, 64.931291], - [-14.024307, 64.931672], - [-14.027797, 64.932146], - [-14.03154, 64.933121], - [-14.036214, 64.934406], - [-14.03947, 64.935163], - [-14.03987, 64.935188], - [-14.040724, 64.935299], - [-14.041593, 64.93537], - [-14.042607, 64.935438], - [-14.043917, 64.93544], - [-14.044052, 64.935395], - [-14.044095, 64.935289], - [-14.044052, 64.93508], - [-14.042995, 64.934978], - [-14.042895, 64.934646], - [-14.043423, 64.934014], - [-14.043197, 64.933517], - [-14.042592, 64.933353], - [-14.042357, 64.933566], - [-14.041603, 64.933676], - [-14.040748, 64.933642], - [-14.040331, 64.933519], - [-14.040201, 64.932985], - [-14.040393, 64.932848], - [-14.040331, 64.93269], - [-14.040456, 64.9325], - [-14.041166, 64.932482], - [-14.04119, 64.932405], - [-14.040955, 64.932144], - [-14.041209, 64.931982], - [-14.041795, 64.931937], - [-14.04288, 64.932043], - [-14.043533, 64.932311], - [-14.043701, 64.932659], - [-14.043917, 64.932816], - [-14.044095, 64.933041], - [-14.044238, 64.933051], - [-14.044455, 64.932993], - [-14.044273, 64.931984], - [-14.04649, 64.93219], - [-14.0471, 64.9322], - [-14.046636, 64.931482], - [-14.039159, 64.930173], - [-14.03907, 64.930137], - [-14.039051, 64.930091], - [-14.039101, 64.929996], - [-14.039276, 64.929868], - [-14.039359, 64.929816], - [-14.039526, 64.92979], - [-14.045493, 64.930889], - [-14.04656, 64.9304], - [-14.04716, 64.93041], - [-14.048855, 64.930372], - [-14.049504, 64.930459], - [-14.048405, 64.929984], - [-14.04718, 64.9299], - [-14.046, 64.92925], - [-14.0478, 64.92939], - [-14.04901, 64.92914], - [-14.049422, 64.928682], - [-14.05032, 64.928177], - [-14.05025, 64.92813], - [-14.04845, 64.92811], - [-14.04787, 64.92747], - [-14.04488, 64.92708], - [-14.043319, 64.927028], - [-14.043394, 64.926614], - [-14.04548, 64.92682], - [-14.0461, 64.92644], - [-14.0473, 64.92644], - [-14.04702, 64.92593], - [-14.04673, 64.92542], - [-14.04794, 64.92555], - [-14.04854, 64.92556], - [-14.04914, 64.92543], - [-14.047964, 64.925057], - [-14.048448, 64.924079], - [-14.047773, 64.923925], - [-14.04679, 64.92376], - [-14.04499, 64.92362], - [-14.04497, 64.92413], - [-14.04437, 64.924], - [-14.04378, 64.92386], - [-14.04406, 64.92438], - [-14.04464, 64.92488], - [-14.04523, 64.92541], - [-14.04552, 64.92567], - [-14.04372, 64.92553], - [-14.04341, 64.9254], - [-14.04312, 64.92527], - [-14.04283, 64.92514], - [-14.04253, 64.92501], - [-14.04223, 64.92488], - [-14.041064, 64.92478], - [-14.04074, 64.92436], - [-14.04046, 64.92384], - [-14.039949, 64.923501], - [-14.039745, 64.923342], - [-14.03928, 64.92307], - [-14.037502, 64.922329], - [-14.037713, 64.92164], - [-14.03784, 64.9214], - [-14.03754, 64.92127], - [-14.03606, 64.92062], - [-14.03545, 64.92061], - [-14.03516, 64.92048], - [-14.03486, 64.92035], - [-14.034036, 64.920376], - [-14.032943, 64.919783], - [-14.02952, 64.91802], - [-14.02923, 64.91789], - [-14.02893, 64.91776], - [-14.02863, 64.91763], - [-14.02834, 64.9175], - [-14.02773, 64.91749], - [-14.02684, 64.91736], - [-14.02654, 64.91723], - [-14.02415, 64.9167], - [-14.02234, 64.91669], - [-14.02174, 64.91669], - [-14.01994, 64.91642], - [-14.01814, 64.91628], - [-14.01816, 64.91577], - [-14.01696, 64.91563], - [-14.01515, 64.91549], - [-14.01518, 64.91498], - [-14.01397, 64.91485], - [-14.01368, 64.91472], - [-14.01308, 64.91446], - [-14.0128, 64.91394], - [-14.0116, 64.91381], - [-14.0104, 64.91367], - [-14.01042, 64.91316], - [-14.00981, 64.91328], - [-14.00861, 64.91328], - [-14.00831, 64.91315], - [-14.00801, 64.91302], - [-14.00682, 64.91275], - [-14.00502, 64.91249], - [-14.00322, 64.91223], - [-14.00143, 64.91195], - [-14.00113, 64.91182], - [-14.00083, 64.91169], - [-14.00023, 64.91169], - [-13.99963, 64.91168], - [-13.99783, 64.91141], - [-13.99603, 64.91115], - [-13.99484, 64.91088], - [-13.99364, 64.91087], - [-13.99303, 64.91087], - [-13.99124, 64.9106], - [-13.98763, 64.91045], - [-13.98735, 64.90994], - [-13.98705, 64.90981], - [-13.98404, 64.90966], - [-13.98406, 64.90915], - [-13.98045, 64.90912], - [-13.98047, 64.90861], - [-13.97926, 64.90872], - [-13.97865, 64.90885], - [-13.97867, 64.90834], - [-13.97807, 64.90834], - [-13.97626, 64.90833], - [-13.97506, 64.90832], - [-13.97507, 64.90806], - [-13.97267, 64.90779], - [-13.97208, 64.90766], - [-13.97027, 64.90739], - [-13.96907, 64.90725], - [-13.96906, 64.90751], - [-13.96846, 64.90751], - [-13.96784, 64.90776], - [-13.96725, 64.90775], - [-13.96604, 64.90774], - [-13.96605, 64.90749], - [-13.96485, 64.90748], - [-13.96486, 64.90723], - [-13.96426, 64.90722], - [-13.96366, 64.90722], - [-13.96245, 64.90721], - [-13.96125, 64.9072], - [-13.96006, 64.90668], - [-13.95946, 64.90668], - [-13.95947, 64.90642], - [-13.95828, 64.90616], - [-13.95768, 64.90602], - [-13.95708, 64.90589], - [-13.95708, 64.90615], - [-13.95647, 64.90614], - [-13.95588, 64.90588], - [-13.954091, 64.905879], - [-13.95347, 64.90587], - [-13.95226, 64.90573], - [-13.95047, 64.90546], - [-13.94868, 64.90519], - [-13.94807, 64.90519], - [-13.94747, 64.90518], - [-13.94507, 64.90491], - [-13.94447, 64.90491], - [-13.94328, 64.90464], - [-13.94027, 64.90462], - [-13.93847, 64.90435], - [-13.93667, 64.90409], - [-13.93546, 64.9042], - [-13.93426, 64.9042], - [-13.93406, 64.90403], - [-13.93246, 64.9038], - [-13.93189, 64.90354], - [-13.93158, 64.90341], - [-13.93129, 64.90328], - [-13.93068, 64.90327], - [-13.92888, 64.90326], - [-13.92857, 64.90339], - [-13.92796, 64.90364], - [-13.926051, 64.904479], - [-13.92341, 64.90451], - [-13.9222, 64.90449], - [-13.9192, 64.90434], - [-13.91861, 64.90396], - [-13.91801, 64.90395], - [-13.91681, 64.90369], - [-13.91562, 64.90342], - [-13.91533, 64.90329], - [-13.91503, 64.90316], - [-13.91382, 64.90315], - [-13.91261, 64.9034], - [-13.91141, 64.90339], - [-13.90901, 64.90312], - [-13.90781, 64.90285], - [-13.90752, 64.90272], - [-13.90722, 64.90259], - [-13.905514, 64.902986], - [-13.903272, 64.902341], - [-13.90122, 64.90204], - [-13.90062, 64.90202], - [-13.89943, 64.90177], - [-13.89703, 64.9015], - [-13.89537, 64.901433], - [-13.8886, 64.90143], - [-13.88559, 64.90141], - [-13.884059, 64.901447], - [-13.88348, 64.90152], - [-13.88317, 64.90165], - [-13.881157, 64.901827], - [-13.879099, 64.901725], - [-13.87716, 64.90135], - [-13.87537, 64.90108], - [-13.87297, 64.9008], - [-13.871766, 64.900421], - [-13.870735, 64.900231], - [-13.869496, 64.90026], - [-13.868713, 64.900226], - [-13.866478, 64.899852], - [-13.8652, 64.899584], - [-13.86399, 64.89946], - [-13.863336, 64.899374], - [-13.86272, 64.899403], - [-13.86196, 64.89969], - [-13.861427, 64.899729], - [-13.86098, 64.899601], - [-13.859891, 64.899385], - [-13.85918, 64.89942], - [-13.858517, 64.899735], - [-13.857874, 64.899806], - [-13.856998, 64.899756], - [-13.856308, 64.899496], - [-13.855628, 64.8994], - [-13.855197, 64.899514], - [-13.854864, 64.899786], - [-13.854431, 64.899734], - [-13.854582, 64.899304], - [-13.853389, 64.899126], - [-13.852699, 64.899009], - [-13.852292, 64.898962], - [-13.851843, 64.898873], - [-13.851475, 64.898912], - [-13.85139, 64.898887], - [-13.851562, 64.898695], - [-13.85109, 64.89846], - [-13.851038, 64.898376], - [-13.850764, 64.898251], - [-13.850408, 64.898215], - [-13.849977, 64.898388], - [-13.84961, 64.898183], - [-13.849395, 64.898109], - [-13.849, 64.89806], - [-13.848985, 64.897885], - [-13.84863, 64.897713], - [-13.848384, 64.897556], - [-13.848111, 64.897473], - [-13.847973, 64.897383], - [-13.84783, 64.89716], - [-13.847011, 64.896943], - [-13.84658, 64.896943], - [-13.8463, 64.897144], - [-13.84603, 64.897057], - [-13.845762, 64.896698], - [-13.845361, 64.896581], - [-13.844826, 64.896365], - [-13.844649, 64.895378], - [-13.844822, 64.895208], - [-13.844727, 64.894635], - [-13.844858, 64.894436], - [-13.844617, 64.894197], - [-13.843991, 64.894014], - [-13.843582, 64.894004], - [-13.843117, 64.893992], - [-13.842431, 64.894076], - [-13.841993, 64.894245], - [-13.842352, 64.89455], - [-13.842007, 64.894756], - [-13.841953, 64.895117], - [-13.841532, 64.895176], - [-13.840972, 64.895039], - [-13.841069, 64.894829], - [-13.840799, 64.894696], - [-13.840928, 64.894568], - [-13.841263, 64.894522], - [-13.841058, 64.894394], - [-13.841123, 64.894225], - [-13.841371, 64.894179], - [-13.841597, 64.894115], - [-13.8415, 64.893877], - [-13.840853, 64.893666], - [-13.840022, 64.893547], - [-13.839539, 64.89359], - [-13.83895, 64.89364], - [-13.83835, 64.89363], - [-13.83806, 64.8935], - [-13.83776, 64.89337], - [-13.83747, 64.89324], - [-13.83717, 64.89311], - [-13.83626, 64.89323], - [-13.83595, 64.89336], - [-13.83565, 64.89348], - [-13.83535, 64.89361], - [-13.83473, 64.89372], - [-13.83477, 64.89296], - [-13.83356, 64.89296], - [-13.83359, 64.89219], - [-13.8318, 64.89205], - [-13.8312, 64.89204], - [-13.83059, 64.89216], - [-13.83091, 64.89166], - [-13.83092, 64.89139], - [-13.83063, 64.89127], - [-13.82943, 64.891], - [-13.82914, 64.89087], - [-13.82884, 64.89074], - [-13.82824, 64.89074], - [-13.82764, 64.89073], - [-13.82735, 64.8906], - [-13.82704, 64.89047], - [-13.82525, 64.89033], - [-13.824558, 64.889341], - [-13.82444, 64.88828], - [-13.82445, 64.88802], - [-13.82447, 64.88751], - [-13.82448, 64.88726], - [-13.82479, 64.887], - [-13.8236, 64.88687], - [-13.8233, 64.88675], - [-13.82301, 64.88661], - [-13.82271, 64.88648], - [-13.821772, 64.886335], - [-13.821866, 64.885741], - [-13.82185, 64.88557], - [-13.82005, 64.8853], - [-13.81977, 64.88517], - [-13.819092, 64.885353], - [-13.81917, 64.88491], - [-13.818775, 64.884687], - [-13.81829, 64.884767], - [-13.81732, 64.885089], - [-13.816841, 64.885101], - [-13.81677, 64.88464], - [-13.815706, 64.884166], - [-13.8152, 64.884405], - [-13.814437, 64.884394], - [-13.814519, 64.8841], - [-13.814299, 64.883906], - [-13.814018, 64.883776], - [-13.813544, 64.883668], - [-13.812864, 64.883599], - [-13.812529, 64.88369], - [-13.812262, 64.883885], - [-13.81194, 64.884033], - [-13.81137, 64.88434], - [-13.81106, 64.88446], - [-13.81044, 64.88472], - [-13.81014, 64.88484], - [-13.80984, 64.88497], - [-13.80923, 64.88509], - [-13.80866, 64.88445], - [-13.80807, 64.88419], - [-13.80777, 64.88406], - [-13.80747, 64.88392], - [-13.80628, 64.88379], - [-13.8063, 64.88328], - [-13.80569, 64.8834], - [-13.80449, 64.8834], - [-13.80329, 64.88338], - [-13.801943, 64.883265], - [-13.80241, 64.88273], - [-13.80212, 64.8826], - [-13.80092, 64.88247], - [-13.80123, 64.88221], - [-13.80124, 64.88196], - [-13.801097, 64.881548], - [-13.79976, 64.88156], - [-13.79946, 64.88143], - [-13.798495, 64.880883], - [-13.79892, 64.88015], - [-13.79864, 64.87963], - [-13.79564, 64.87948], - [-13.79534, 64.87935], - [-13.79506, 64.87884], - [-13.79327, 64.87869], - [-13.79147, 64.87842], - [-13.79118, 64.8783], - [-13.7906, 64.87778], - [-13.7903, 64.87765], - [-13.79001, 64.87752], - [-13.78971, 64.87739], - [-13.786264, 64.877068], - [-13.785999, 64.876944], - [-13.785551, 64.876732], - [-13.784965, 64.876601], - [-13.784224, 64.876645], - [-13.783696, 64.876691], - [-13.783322, 64.876791], - [-13.783256, 64.876905], - [-13.783328, 64.877018], - [-13.783163, 64.877183], - [-13.782995, 64.877503], - [-13.782863, 64.877688], - [-13.782662, 64.877774], - [-13.782356, 64.877563], - [-13.782323, 64.877262], - [-13.782271, 64.87674], - [-13.782219, 64.876188], - [-13.782306, 64.875939], - [-13.782323, 64.875845], - [-13.782466, 64.875796], - [-13.782719, 64.875776], - [-13.782708, 64.875725], - [-13.782535, 64.875696], - [-13.782178, 64.875531], - [-13.78203, 64.875471], - [-13.781065, 64.875408], - [-13.780881, 64.875457], - [-13.780731, 64.875593], - [-13.780576, 64.875679], - [-13.780599, 64.875784], - [-13.780335, 64.87582], - [-13.78045, 64.87554], - [-13.780605, 64.875359], - [-13.779588, 64.875264], - [-13.779283, 64.87543], - [-13.779019, 64.875423], - [-13.77895, 64.875237], - [-13.778587, 64.875165], - [-13.778199, 64.875015], - [-13.777801, 64.874993], - [-13.777491, 64.875076], - [-13.777106, 64.875054], - [-13.77675, 64.875091], - [-13.77636, 64.875823], - [-13.776383, 64.875971], - [-13.776204, 64.876325], - [-13.776067, 64.876357], - [-13.775992, 64.87612], - [-13.776049, 64.875945], - [-13.776055, 64.875693], - [-13.776279, 64.875362], - [-13.776371, 64.875254], - [-13.776269, 64.87511], - [-13.776135, 64.87522], - [-13.776055, 64.875315], - [-13.775848, 64.875393], - [-13.775641, 64.875264], - [-13.775699, 64.875157], - [-13.775527, 64.87512], - [-13.77536, 64.875057], - [-13.775377, 64.875269], - [-13.775262, 64.875327], - [-13.775142, 64.875244], - [-13.775107, 64.874916], - [-13.774702, 64.874798], - [-13.774393, 64.874666], - [-13.774021, 64.874508], - [-13.773368, 64.874335], - [-13.772641, 64.874323], - [-13.772172, 64.874357], - [-13.771528, 64.874452], - [-13.77058, 64.87467], - [-13.77028, 64.87481], - [-13.769891, 64.875193], - [-13.769581, 64.875584], - [-13.769805, 64.875686], - [-13.769994, 64.875947], - [-13.770077, 64.876188], - [-13.769489, 64.876174], - [-13.769006, 64.87621], - [-13.768966, 64.876391], - [-13.768545, 64.87654], - [-13.76809, 64.87657], - [-13.76781, 64.87606], - [-13.76752, 64.87593], - [-13.76722, 64.8758], - [-13.76696, 64.87503], - [-13.76576, 64.87489], - [-13.76547, 64.87476], - [-13.76491, 64.87373], - [-13.76492, 64.87348], - [-13.76494, 64.87322], - [-13.76439, 64.87194], - [-13.76382, 64.87142], - [-13.76354, 64.87091], - [-13.76233, 64.87102], - [-13.76173, 64.87102], - [-13.76143, 64.87089], - [-13.76114, 64.87076], - [-13.75994, 64.87062], - [-13.75966, 64.87011], - [-13.75909, 64.86959], - [-13.75882, 64.86882], - [-13.75762, 64.86869], - [-13.75523, 64.86841], - [-13.75494, 64.86828], - [-13.75464, 64.86815], - [-13.75435, 64.86802], - [-13.75377, 64.8675], - [-13.75319, 64.86698], - [-13.75262, 64.86647], - [-13.75263, 64.86596], - [-13.75325, 64.8657], - [-13.75394, 64.86392], - [-13.75456, 64.86341], - [-13.75519, 64.86291], - [-13.75581, 64.8624], - [-13.75732, 64.86216], - [-13.75766, 64.86139], - [-13.75827, 64.86114], - [-13.75863, 64.85987], - [-13.758941, 64.859347], - [-13.758246, 64.859015], - [-13.758729, 64.857722], - [-13.760434, 64.85662], - [-13.76104, 64.854419], - [-13.76251, 64.85402], - [-13.76464, 64.85352], - [-13.76495, 64.85327], - [-13.76617, 64.85277], - [-13.7677, 64.85227], - [-13.76831, 64.85202], - [-13.76893, 64.85177], - [-13.76955, 64.85126], - [-13.77017, 64.85076], - [-13.77079, 64.8505], - [-13.77143, 64.84974], - [-13.77179, 64.84821], - [-13.77359, 64.84835], - [-13.77418, 64.84849], - [-13.77422, 64.84771], - [-13.77602, 64.84773], - [-13.77635, 64.84723], - [-13.77695, 64.84697], - [-13.77728, 64.84647], - [-13.77909, 64.84635], - [-13.78031, 64.84611], - [-13.78211, 64.84599], - [-13.78243, 64.84549], - [-13.78305, 64.84523], - [-13.78337, 64.84473], - [-13.78396, 64.84486], - [-13.78456, 64.84486], - [-13.78517, 64.84474], - [-13.7849, 64.84423], - [-13.78491, 64.84397], - [-13.78554, 64.84295], - [-13.78618, 64.84245], - [-13.7868, 64.84194], - [-13.78711, 64.84169], - [-13.78771, 64.84182], - [-13.78889, 64.84196], - [-13.78888, 64.84247], - [-13.79009, 64.84235], - [-13.7913, 64.8421], - [-13.79191, 64.84198], - [-13.79225, 64.84122], - [-13.79255, 64.84096], - [-13.79315, 64.8411], - [-13.79374, 64.84136], - [-13.79433, 64.84162], - [-13.79613, 64.84163], - [-13.79794, 64.84139], - [-13.79975, 64.84115], - [-13.80036, 64.84115], - [-13.80095, 64.84129], - [-13.80129, 64.84052], - [-13.8013, 64.84027], - [-13.80103, 64.8395], - [-13.80162, 64.83963], - [-13.80222, 64.83976], - [-13.80224, 64.83925], - [-13.80405, 64.83914], - [-13.80526, 64.83902], - [-13.80498, 64.83851], - [-13.80499, 64.83826], - [-13.80563, 64.83749], - [-13.80625, 64.83698], - [-13.80686, 64.83673], - [-13.80748, 64.83622], - [-13.8081, 64.83597], - [-13.80874, 64.83496], - [-13.80937, 64.83445], - [-13.80939, 64.83394], - [-13.81003, 64.83292], - [-13.81034, 64.83267], - [-13.81215, 64.83255], - [-13.81276, 64.83242], - [-13.812984, 64.831416], - [-13.81435, 64.8304], - [-13.81495, 64.83015], - [-13.81527, 64.82989], - [-13.81768, 64.82978], - [-13.81829, 64.82953], - [-13.8189, 64.82928], - [-13.81982, 64.82891], - [-13.81983, 64.82865], - [-13.82014, 64.8284], - [-13.82197, 64.8279], - [-13.82317, 64.82778], - [-13.82381, 64.82689], - [-13.82502, 64.82677], - [-13.82595, 64.82614], - [-13.826025, 64.825563], - [-13.826979, 64.825238], - [-13.827791, 64.825087], - [-13.828109, 64.825813], - [-13.82924, 64.82642], - [-13.83103, 64.82656], - [-13.83222, 64.82683], - [-13.83401, 64.8271], - [-13.83521, 64.82711], - [-13.83582, 64.82686], - [-13.83704, 64.82661], - [-13.83764, 64.82649], - [-13.83735, 64.82623], - [-13.83706, 64.82597], - [-13.83825, 64.82598], - [-13.8383, 64.82522], - [-13.8407, 64.82523], - [-13.84072, 64.82472], - [-13.84132, 64.82485], - [-13.84311, 64.82512], - [-13.8443, 64.82526], - [-13.84456, 64.82629], - [-13.84455, 64.82654], - [-13.84454, 64.8268], - [-13.84511, 64.82757], - [-13.84567, 64.82834], - [-13.84596, 64.8286], - [-13.847786, 64.828783], - [-13.849058, 64.82853], - [-13.849338, 64.82904], - [-13.85013, 64.8294], - [-13.851881, 64.829016], - [-13.852971, 64.829284], - [-13.853433, 64.829593], - [-13.853495, 64.830099], - [-13.853828, 64.830361], - [-13.853955, 64.830634], - [-13.854212, 64.830796], - [-13.854635, 64.830953], - [-13.855202, 64.831045], - [-13.855871, 64.831101], - [-13.856553, 64.83112], - [-13.857025, 64.831109], - [-13.857502, 64.831001], - [-13.857921, 64.831005], - [-13.858277, 64.831067], - [-13.858652, 64.831032], - [-13.859068, 64.831042], - [-13.859432, 64.831129], - [-13.859741, 64.831231], - [-13.860097, 64.831354], - [-13.860209, 64.831497], - [-13.860332, 64.831676], - [-13.86054, 64.83178], - [-13.860942, 64.831846], - [-13.861729, 64.831987], - [-13.862366, 64.83203], - [-13.863223, 64.832012], - [-13.864242, 64.831967], - [-13.865036, 64.83186], - [-13.865507, 64.83177], - [-13.865705, 64.831791], - [-13.866029, 64.831961], - [-13.866412, 64.832121], - [-13.866819, 64.832219], - [-13.867147, 64.832255], - [-13.867567, 64.832202], - [-13.867881, 64.83218], - [-13.868267, 64.832233], - [-13.869235, 64.832168], - [-13.869675, 64.832163], - [-13.869901, 64.83216], - [-13.870538, 64.83222], - [-13.87107, 64.83227], - [-13.871869, 64.832333], - [-13.872678, 64.832269], - [-13.873883, 64.831962], - [-13.874307, 64.831859], - [-13.874636, 64.831933], - [-13.874776, 64.831965], - [-13.877829, 64.832655], - [-13.878122, 64.832721], - [-13.878335, 64.832769], - [-13.8776, 64.83319], - [-13.877761, 64.833328], - [-13.878055, 64.833552], - [-13.878599, 64.833794], - [-13.878697, 64.833825], - [-13.878839, 64.833869], - [-13.878847, 64.833872], - [-13.879013, 64.833924], - [-13.878838, 64.834116], - [-13.878844, 64.834285], - [-13.878888, 64.834348], - [-13.879039, 64.834413], - [-13.881029, 64.834506], - [-13.88475, 64.83465], - [-13.88535, 64.83465], - [-13.88708, 64.834613], - [-13.887358, 64.834632], - [-13.887634, 64.834697], - [-13.88775, 64.8348], - [-13.887766, 64.83522], - [-13.88793, 64.835365], - [-13.888125, 64.83547], - [-13.888439, 64.835563], - [-13.888862, 64.835687], - [-13.889332, 64.835826], - [-13.889763, 64.836046], - [-13.890419, 64.836197], - [-13.890936, 64.836402], - [-13.891699, 64.836545], - [-13.893951, 64.836569], - [-13.894468, 64.836594], - [-13.89528, 64.836629], - [-13.895764, 64.836698], - [-13.896637, 64.836975], - [-13.89727, 64.83705], - [-13.90027, 64.83707], - [-13.900782, 64.837138], - [-13.90119, 64.837235], - [-13.901726, 64.837313], - [-13.902593, 64.837376], - [-13.903873, 64.837411], - [-13.904832, 64.837417], - [-13.90602, 64.837429], - [-13.906901, 64.837557], - [-13.90745, 64.83763], - [-13.90985, 64.83791], - [-13.91045, 64.83791], - [-13.91225, 64.83792], - [-13.912842, 64.838063], - [-13.91344, 64.83819], - [-13.91463, 64.83845], - [-13.91523, 64.83846], - [-13.91644, 64.83821], - [-13.92005, 64.83824], - [-13.920339, 64.838338], - [-13.92124, 64.8385], - [-13.92183, 64.8385], - [-13.92304, 64.83851], - [-13.92341, 64.838649], - [-13.92423, 64.83878], - [-13.92602, 64.83905], - [-13.92962, 64.83933], - [-13.93081, 64.83959], - [-13.9314, 64.83986], - [-13.93259, 64.84012], - [-13.934232, 64.840258], - [-13.935499, 64.840396], - [-13.93618, 64.8404], - [-13.93678, 64.8404], - [-13.93799, 64.84041], - [-13.93859, 64.84042], - [-13.941, 64.84018], - [-13.941739, 64.840196], - [-13.9422, 64.84019], - [-13.9434, 64.84032], - [-13.94338, 64.84083], - [-13.943867, 64.840859], - [-13.94517, 64.84097], - [-13.948054, 64.840819], - [-13.948726, 64.840517], - [-13.9494, 64.84036], - [-13.950096, 64.840292], - [-13.950913, 64.840378], - [-13.951369, 64.840233], - [-13.951893, 64.839368], - [-13.95256, 64.839213], - [-13.953402, 64.839042], - [-13.954635, 64.838227], - [-13.955151, 64.837406], - [-13.95555, 64.83683], - [-13.9559, 64.83555], - [-13.95593, 64.83478], - [-13.95594, 64.83453], - [-13.95595, 64.83427], - [-13.95389, 64.83311], - [-13.95271, 64.83284], - [-13.95242, 64.83271], - [-13.95211, 64.83258], - [-13.95092, 64.83232], - [-13.94883, 64.83192], - [-13.94854, 64.83179], - [-13.94735, 64.83153], - [-13.946833, 64.831058], - [-13.94496, 64.831], - [-13.94376, 64.83099], - [-13.94316, 64.83098], - [-13.94287, 64.83086], - [-13.94257, 64.83072], - [-13.94078, 64.83046], - [-13.93779, 64.83018], - [-13.93749, 64.83005], - [-13.9372, 64.82992], - [-13.93601, 64.82965], - [-13.93482, 64.82939], - [-13.93242, 64.82912], - [-13.93063, 64.82885], - [-13.92944, 64.82871], - [-13.92916, 64.8282], - [-13.92886, 64.82807], - [-13.92707, 64.8278], - [-13.92647, 64.8278], - [-13.92587, 64.82779], - [-13.92408, 64.82752], - [-13.92379, 64.82739], - [-13.92349, 64.82726], - [-13.9217, 64.82699], - [-13.92051, 64.82673], - [-13.91932, 64.82647], - [-13.91812, 64.82633], - [-13.91793, 64.8259], - [-13.91574, 64.8258], - [-13.91576, 64.8253], - [-13.91398, 64.82514], - [-13.91217, 64.82501], - [-13.91219, 64.8245], - [-13.911, 64.82436], - [-13.9092, 64.82409], - [-13.90801, 64.82383], - [-13.90772, 64.8237], - [-13.90743, 64.82357], - [-13.90623, 64.8233], - [-13.90594, 64.82317], - [-13.90564, 64.82304], - [-13.90326, 64.82251], - [-13.90147, 64.82223], - [-13.90028, 64.82198], - [-13.9, 64.82185], - [-13.8991, 64.82146], - [-13.89881, 64.82133], - [-13.89851, 64.8212], - [-13.89732, 64.82092], - [-13.89703, 64.8208], - [-13.89673, 64.82067], - [-13.89644, 64.82054], - [-13.89614, 64.82041], - [-13.89436, 64.81989], - [-13.89377, 64.81963], - [-13.89258, 64.81936], - [-13.89229, 64.81923], - [-13.892, 64.8191], - [-13.89081, 64.81884], - [-13.88961, 64.8187], - [-13.88963, 64.81819], - [-13.88844, 64.81805], - [-13.88785, 64.81779], - [-13.88755, 64.81766], - [-13.88697, 64.81715], - [-13.88668, 64.81702], - [-13.88489, 64.81675], - [-13.8837, 64.81648], - [-13.88339, 64.81635], - [-13.88311, 64.81622], - [-13.88251, 64.81622], - [-13.88131, 64.81621], - [-13.87952, 64.81594], - [-13.87922, 64.81581], - [-13.87893, 64.81569], - [-13.87774, 64.81542], - [-13.87745, 64.81529], - [-13.87687, 64.81477], - [-13.87657, 64.81464], - [-13.87628, 64.81451], - [-13.8757, 64.81399], - [-13.8754, 64.81386], - [-13.87511, 64.81373], - [-13.87481, 64.8136], - [-13.87452, 64.81347], - [-13.87395, 64.8127], - [-13.87366, 64.81257], - [-13.87246, 64.81243], - [-13.87248, 64.81192], - [-13.87129, 64.81179], - [-13.87099, 64.81166], - [-13.8707, 64.81153], - [-13.8671, 64.8115], - [-13.86649, 64.81162], - [-13.86622, 64.81111], - [-13.86593, 64.81098], - [-13.86564, 64.81085], - [-13.86533, 64.81072], - [-13.86235, 64.81018], - [-13.86206, 64.81005], - [-13.86176, 64.80992], - [-13.86057, 64.80979], - [-13.86059, 64.80927], - [-13.8594, 64.80914], - [-13.8591, 64.80901], - [-13.85881, 64.80888], - [-13.85763, 64.80861], - [-13.85702, 64.80861], - [-13.85581, 64.80873], - [-13.85579, 64.80924], - [-13.85338, 64.80935], - [-13.85308, 64.80947], - [-13.85277, 64.8096], - [-13.85156, 64.80984], - [-13.85126, 64.80997], - [-13.84912, 64.81072], - [-13.84886, 64.80995], - [-13.84858, 64.80944], - [-13.84737, 64.80956], - [-13.84497, 64.80967], - [-13.84528, 64.80941], - [-13.84529, 64.80916], - [-13.845, 64.80903], - [-13.8426, 64.80888], - [-13.84262, 64.80837], - [-13.84142, 64.80849], - [-13.84082, 64.80848], - [-13.83903, 64.80821], - [-13.83804, 64.80816], - [-13.83783, 64.80833], - [-13.83722, 64.80833], - [-13.83723, 64.80807], - [-13.83763, 64.80799], - [-13.83786, 64.80756], - [-13.83605, 64.80768], - [-13.83575, 64.8078], - [-13.83513, 64.80831], - [-13.83479, 64.80907], - [-13.83359, 64.80907], - [-13.8333, 64.80854], - [-13.83304, 64.80804], - [-13.83184, 64.8079], - [-13.83155, 64.80777], - [-13.83157, 64.80726], - [-13.8322, 64.8065], - [-13.83221, 64.80624], - [-13.83226, 64.80522], - [-13.83259, 64.80445], - [-13.83379, 64.80446], - [-13.83412, 64.8037], - [-13.83414, 64.80344], - [-13.83416, 64.80293], - [-13.83479, 64.80217], - [-13.83541, 64.80166], - [-13.83602, 64.80142], - [-13.83664, 64.8009], - [-13.84116, 64.8003], - [-13.84177, 64.80018], - [-13.8418, 64.79966], - [-13.843, 64.79955], - [-13.8442, 64.79956], - [-13.8454, 64.79969], - [-13.84543, 64.79893], - [-13.84563, 64.7991], - [-13.84661, 64.79932], - [-13.84721, 64.79945], - [-13.84723, 64.79893], - [-13.84843, 64.79895], - [-13.84836, 64.80048], - [-13.84956, 64.80062], - [-13.85076, 64.80063], - [-13.85137, 64.80051], - [-13.85108, 64.79999], - [-13.85079, 64.79974], - [-13.85199, 64.79975], - [-13.85197, 64.80026], - [-13.85258, 64.80013], - [-13.85318, 64.80014], - [-13.85437, 64.80028], - [-13.85435, 64.80079], - [-13.85554, 64.80092], - [-13.85614, 64.80093], - [-13.85715, 64.80072], - [-13.85736, 64.80055], - [-13.85796, 64.80056], - [-13.85795, 64.80081], - [-13.85755, 64.8009], - [-13.85734, 64.80107], - [-13.85853, 64.8012], - [-13.85913, 64.80133], - [-13.85939, 64.8021], - [-13.85938, 64.80236], - [-13.85938, 64.80262], - [-13.85996, 64.80288], - [-13.86025, 64.80313], - [-13.86145, 64.80301], - [-13.86206, 64.80289], - [-13.86239, 64.80213], - [-13.86302, 64.80162], - [-13.86332, 64.80137], - [-13.86392, 64.80137], - [-13.8636, 64.80215], - [-13.86358, 64.80239], - [-13.86356, 64.8029], - [-13.86355, 64.80317], - [-13.86384, 64.80342], - [-13.86564, 64.80356], - [-13.86683, 64.80357], - [-13.86804, 64.80346], - [-13.86807, 64.80268], - [-13.86987, 64.8027], - [-13.87019, 64.80219], - [-13.8705, 64.80193], - [-13.8717, 64.80194], - [-13.87202, 64.80143], - [-13.87263, 64.80118], - [-13.87325, 64.80068], - [-13.87386, 64.80042], - [-13.87449, 64.79992], - [-13.87479, 64.79966], - [-13.87659, 64.79982], - [-13.87899, 64.79982], - [-13.8802, 64.79958], - [-13.8808, 64.79945], - [-13.88082, 64.79893], - [-13.88202, 64.79895], - [-13.88206, 64.79818], - [-13.88326, 64.79807], - [-13.88387, 64.79781], - [-13.88508, 64.79757], - [-13.88569, 64.79744], - [-13.88632, 64.79668], - [-13.88692, 64.79669], - [-13.88691, 64.79694], - [-13.88659, 64.79745], - [-13.88627, 64.7977], - [-13.88928, 64.7976], - [-13.89408, 64.79762], - [-13.89646, 64.79791], - [-13.89706, 64.79791], - [-13.89887, 64.79767], - [-13.90008, 64.79755], - [-13.9001, 64.79704], - [-13.9019, 64.79704], - [-13.90193, 64.79629], - [-13.90373, 64.79618], - [-13.90434, 64.79605], - [-13.90467, 64.79528], - [-13.90528, 64.79503], - [-13.9059, 64.79453], - [-13.90621, 64.79427], - [-13.90743, 64.79415], - [-13.90981, 64.79417], - [-13.9104, 64.79443], - [-13.9128, 64.79458], - [-13.91308, 64.79509], - [-13.91337, 64.79535], - [-13.916387, 64.795017], - [-13.917608, 64.794905], - [-13.9176, 64.794628], - [-13.917994, 64.794688], - [-13.918788, 64.79482], - [-13.919334, 64.794313], - [-13.919746, 64.794322], - [-13.919217, 64.794669], - [-13.919486, 64.794776], - [-13.92019, 64.794859], - [-13.920837, 64.794828], - [-13.921712, 64.794716], - [-13.922079, 64.794604], - [-13.922309, 64.794468], - [-13.921844, 64.794427], - [-13.921611, 64.794284], - [-13.921697, 64.794022], - [-13.92188, 64.793883], - [-13.922162, 64.793742], - [-13.922561, 64.793795], - [-13.923036, 64.793855], - [-13.923101, 64.794042], - [-13.923684, 64.79398], - [-13.924343, 64.793973], - [-13.925038, 64.793787], - [-13.925031, 64.793881], - [-13.925669, 64.793803], - [-13.926451, 64.793832], - [-13.927007, 64.793457], - [-13.92711, 64.793483], - [-13.927091, 64.793586], - [-13.927226, 64.793633], - [-13.927529, 64.793408], - [-13.927339, 64.793352], - [-13.927496, 64.793147], - [-13.927928, 64.792987], - [-13.92817, 64.792816], - [-13.92963, 64.79356], - [-13.93083, 64.79356], - [-13.93204, 64.79331], - [-13.93265, 64.79306], - [-13.93326, 64.79281], - [-13.93447, 64.79256], - [-13.93566, 64.79244], - [-13.93569, 64.79193], - [-13.9375, 64.79181], - [-13.93991, 64.79157], - [-13.94051, 64.79145], - [-13.941044, 64.792419], - [-13.942941, 64.792684], - [-13.945354, 64.792881], - [-13.946742, 64.792849], - [-13.951388, 64.792262], - [-13.953355, 64.791906], - [-13.954677, 64.791563], - [-13.958596, 64.787491], - [-13.959212, 64.788018], - [-13.95579, 64.79182], - [-13.95577, 64.79233], - [-13.95636, 64.79259], - [-13.95634, 64.79284], - [-13.95634, 64.7931], - [-13.95692, 64.79361], - [-13.9572, 64.79414], - [-13.9584, 64.79426], - [-13.95959, 64.7944], - [-13.95928, 64.79465], - [-13.95927, 64.79491], - [-13.959445, 64.794931], - [-13.96134, 64.79582], - [-13.96193, 64.79595], - [-13.961672, 64.796164], - [-13.963223, 64.796455], - [-13.96429, 64.79686], - [-13.96488, 64.79712], - [-13.96607, 64.79739], - [-13.96786, 64.79765], - [-13.97266, 64.79769], - [-13.97327, 64.79744], - [-13.97388, 64.79718], - [-13.97449, 64.79693], - [-13.9757, 64.79669], - [-13.97691, 64.79644], - [-13.97872, 64.79619], - [-13.97932, 64.79607], - [-13.97903, 64.79581], - [-13.97846, 64.79504], - [-13.97847, 64.79479], - [-13.97913, 64.79325], - [-13.97975, 64.79275], - [-13.98036, 64.7925], - [-13.981, 64.79148], - [-13.98131, 64.79097], - [-13.98191, 64.79097], - [-13.98157, 64.79225], - [-13.98122, 64.79353], - [-13.9824, 64.79366], - [-13.98301, 64.79367], - [-13.98362, 64.79354], - [-13.98363, 64.79303], - [-13.98423, 64.79304], - [-13.98447, 64.79483], - [-13.98476, 64.79509], - [-13.98715, 64.79523], - [-13.98955, 64.79525], - [-13.99015, 64.79512], - [-13.98983, 64.79563], - [-13.98983, 64.79589], - [-13.98982, 64.79614], - [-13.98951, 64.7964], - [-13.9907, 64.79653], - [-13.9919, 64.79654], - [-13.99251, 64.79642], - [-13.99283, 64.79591], - [-13.99343, 64.79566], - [-13.99405, 64.79516], - [-13.99467, 64.79464], - [-13.99529, 64.79414], - [-13.9959, 64.79388], - [-13.99655, 64.79261], - [-13.99716, 64.79236], - [-13.99778, 64.79159], - [-13.99814, 64.79005], - [-13.99994, 64.78995], - [-14.00055, 64.78969], - [-14.00116, 64.78944], - [-14.00237, 64.78932], - [-14.00268, 64.78881], - [-14.00271, 64.78805], - [-14.00213, 64.78753], - [-14.00214, 64.78727], - [-14.00245, 64.78702], - [-14.00426, 64.7869], - [-14.00486, 64.78665], - [-14.005694, 64.785835], - [-14.006279, 64.785203], - [-14.007162, 64.785152], - [-14.008881, 64.784903], - [-14.008977, 64.785011], - [-14.007409, 64.785403], - [-14.007278, 64.785935], - [-14.007231, 64.786003], - [-14.007124, 64.786157], - [-14.006743, 64.786709], - [-14.00663, 64.786872], - [-14.006365, 64.787256], - [-14.006204, 64.787483], - [-14.006003, 64.787748], - [-14.005855, 64.787925], - [-14.005722, 64.788092], - [-14.005751, 64.788566], - [-14.00529, 64.789097], - [-14.00505, 64.7896], - [-14.00505, 64.78985], - [-14.004829, 64.789948], - [-14.004649, 64.7901], - [-14.004647, 64.790313], - [-14.005113, 64.790635], - [-14.00591, 64.79088], - [-14.006394, 64.791017], - [-14.006877, 64.791143], - [-14.007248, 64.791264], - [-14.008561, 64.791493], - [-14.00971, 64.791397], - [-14.010759, 64.791283], - [-14.01282, 64.79042], - [-14.01314, 64.79016], - [-14.01433, 64.79004], - [-14.01494, 64.78992], - [-14.01497, 64.78915], - [-14.01616, 64.78916], - [-14.01649, 64.78865], - [-14.01711, 64.78789], - [-14.01742, 64.78763], - [-14.01842, 64.78755], - [-14.01864, 64.78713], - [-14.019287, 64.786655], - [-14.019347, 64.787219], - [-14.018988, 64.787402], - [-14.01882, 64.78772], - [-14.01861, 64.7879], - [-14.0198, 64.78803], - [-14.02039, 64.788112], - [-14.021013, 64.788132], - [-14.02159, 64.788161], - [-14.022074, 64.788132], - [-14.022521, 64.787992], - [-14.022505, 64.787061], - [-14.023519, 64.787002], - [-14.02372, 64.78767], - [-14.023778, 64.788428], - [-14.023678, 64.789056], - [-14.023739, 64.789699], - [-14.024034, 64.789779], - [-14.024081, 64.789916], - [-14.024189, 64.790086], - [-14.023934, 64.790134], - [-14.023954, 64.790195], - [-14.024434, 64.790348], - [-14.024995, 64.790467], - [-14.026327, 64.790512], - [-14.025519, 64.789866], - [-14.026808, 64.790082], - [-14.02897, 64.790556], - [-14.032101, 64.790238], - [-14.032371, 64.790123], - [-14.032763, 64.789735], - [-14.032977, 64.78963], - [-14.033376, 64.789335], - [-14.034618, 64.788367], - [-14.037032, 64.786526], - [-14.039909, 64.784206], - [-14.040094, 64.78395], - [-14.041603, 64.782719], - [-14.043749, 64.780752], - [-14.045841, 64.778796], - [-14.04688, 64.777754], - [-14.04791, 64.776675], - [-14.048717, 64.775717], - [-14.049528, 64.774778], - [-14.049437, 64.774762], - [-14.049295, 64.774786], - [-14.049217, 64.774805], - [-14.049113, 64.774798], - [-14.049032, 64.774763], - [-14.049009, 64.774708], - [-14.049079, 64.774652], - [-14.049281, 64.774607], - [-14.049529, 64.774589], - [-14.04991, 64.774623], - [-14.050243, 64.774666], - [-14.050483, 64.77475], - [-14.050667, 64.77486], - [-14.05072, 64.774913], - [-14.050683, 64.774963], - [-14.050564, 64.774997], - [-14.050428, 64.774985], - [-14.050327, 64.774928], - [-14.050261, 64.77491], - [-14.050176, 64.774966], - [-14.049122, 64.776092], - [-14.048105, 64.777147], - [-14.048076, 64.777293], - [-14.046704, 64.778656], - [-14.044527, 64.780801], - [-14.042245, 64.782961], - [-14.038825, 64.785942], - [-14.03495, 64.788583], - [-14.04548, 64.790058], - [-14.053902, 64.791167], - [-14.053369, 64.791938], - [-14.04344, 64.7906], - [-14.041491, 64.790374], - [-14.0416, 64.7906], - [-14.041968, 64.790741], - [-14.042751, 64.790805], - [-14.044009, 64.790969], - [-14.04336, 64.79164], - [-14.04335, 64.79189], - [-14.04334, 64.79241], - [-14.04266, 64.7947], - [-14.04235, 64.79483], - [-14.04205, 64.79495], - [-14.04202, 64.79572], - [-14.04229, 64.79649], - [-14.0429, 64.79637], - [-14.0435, 64.79611], - [-14.04532, 64.796], - [-14.04563, 64.79549], - [-14.04564, 64.79523], - [-14.04565, 64.79471], - [-14.04627, 64.79421], - [-14.04658, 64.79396], - [-14.04777, 64.7941], - [-14.04896, 64.79436], - [-14.05016, 64.7945], - [-14.05013, 64.79526], - [-14.05193, 64.7954], - [-14.05253, 64.79541], - [-14.05674, 64.79505], - [-14.05794, 64.79506], - [-14.06159, 64.79354], - [-14.06279, 64.793499], - [-14.06338, 64.79381], - [-14.06336, 64.79432], - [-14.06517, 64.79421], - [-14.069329, 64.793986], - [-14.070478, 64.793683], - [-14.070122, 64.792797], - [-14.068881, 64.792041], - [-14.069959, 64.791242], - [-14.070736, 64.790571], - [-14.071131, 64.78967], - [-14.072708, 64.787628], - [-14.073664, 64.786039], - [-14.075481, 64.785184], - [-14.0707, 64.784695], - [-14.07148, 64.782222], - [-14.073749, 64.77984], - [-14.07913, 64.778042], - [-14.078311, 64.777607], - [-14.075529, 64.778471], - [-14.073733, 64.778222], - [-14.07355, 64.77674], - [-14.07359, 64.77597], - [-14.0724, 64.77609], - [-14.07058, 64.77634], - [-14.07028, 64.77646], - [-14.06997, 64.77659], - [-14.06877, 64.77658], - [-14.06848, 64.77645], - [-14.0679, 64.77594], - [-14.06731, 64.77542], - [-14.06702, 64.77529], - [-14.06523, 64.77503], - [-14.06404, 64.77476], - [-14.06105, 64.77449], - [-14.06076, 64.77436], - [-14.06045, 64.77423], - [-14.06017, 64.7741], - [-14.06018, 64.77384], - [-14.06019, 64.77359], - [-14.05961, 64.77282], - [-14.05963, 64.7723], - [-14.06025, 64.7718], - [-14.06086, 64.77155], - [-14.0615, 64.77027], - [-14.06211, 64.77002], - [-14.06272, 64.76951], - [-14.063358, 64.769167], - [-14.063295, 64.769062], - [-14.06184, 64.76899], - [-14.06182, 64.76951], - [-14.06123, 64.76937], - [-14.06063, 64.76937], - [-14.05823, 64.76961], - [-14.05702, 64.76973], - [-14.05671, 64.77024], - [-14.05639, 64.77075], - [-14.05699, 64.77063], - [-14.0576, 64.7705], - [-14.05761, 64.76999], - [-14.05881, 64.77013], - [-14.0594, 64.77026], - [-14.05909, 64.77051], - [-14.05879, 64.77064], - [-14.05849, 64.77076], - [-14.05818, 64.77089], - [-14.05697, 64.77114], - [-14.056166, 64.771431], - [-14.055519, 64.77177], - [-14.054805, 64.772627], - [-14.052466, 64.772525], - [-14.052148, 64.772567], - [-14.052021, 64.772642], - [-14.051115, 64.773756], - [-14.051085, 64.773876], - [-14.051222, 64.773874], - [-14.051386, 64.773852], - [-14.051484, 64.773867], - [-14.051539, 64.773912], - [-14.051525, 64.773958], - [-14.051465, 64.773994], - [-14.051325, 64.774033], - [-14.051085, 64.774042], - [-14.050822, 64.774026], - [-14.050489, 64.773991], - [-14.050315, 64.773942], - [-14.050135, 64.773892], - [-14.049959, 64.773794], - [-14.049945, 64.773728], - [-14.049984, 64.773678], - [-14.05008, 64.773665], - [-14.050225, 64.773671], - [-14.050278, 64.773712], - [-14.050331, 64.773765], - [-14.050464, 64.773758], - [-14.050505, 64.773664], - [-14.051536, 64.772391], - [-14.052185, 64.770487], - [-14.051272, 64.770469], - [-14.051379, 64.770015], - [-14.051474, 64.769678], - [-14.050776, 64.768489], - [-14.050242, 64.767779], - [-14.050159, 64.76745], - [-14.049869, 64.766772], - [-14.04813, 64.76699], - [-14.04753, 64.76698], - [-14.04634, 64.76698], - [-14.04573, 64.76697], - [-14.04451, 64.7676], - [-14.04571, 64.76774], - [-14.0463, 64.76787], - [-14.04599, 64.76813], - [-14.044783, 64.768498], - [-14.043611, 64.768359], - [-14.0421, 64.76797], - [-14.03972, 64.7677], - [-14.03793, 64.76743], - [-14.03733, 64.76743], - [-14.03612, 64.76768], - [-14.03552, 64.7678], - [-14.03584, 64.76729], - [-14.03587, 64.76627], - [-14.03558, 64.76614], - [-14.03528, 64.76601], - [-14.03499, 64.76588], - [-14.03259, 64.76586], - [-14.03199, 64.76599], - [-14.03172, 64.76522], - [-14.03118, 64.76317], - [-14.0312, 64.76291], - [-14.03121, 64.76266], - [-14.03063, 64.76214], - [-14.03033, 64.76201], - [-14.03004, 64.76188], - [-14.02976, 64.76138], - [-14.02796, 64.76136], - [-14.02799, 64.76085], - [-14.02678, 64.76097], - [-14.02557, 64.76122], - [-14.02527, 64.76134], - [-14.02496, 64.76147], - [-14.02377, 64.76159], - [-14.02374, 64.76209], - [-14.02254, 64.76209], - [-14.02286, 64.76158], - [-14.02287, 64.76133], - [-14.02259, 64.76081], - [-14.02379, 64.76082], - [-14.02351, 64.76031], - [-14.02351, 64.76005], - [-14.02356, 64.75877], - [-14.02328, 64.75826], - [-14.02209, 64.75812], - [-14.0203, 64.75786], - [-14.01911, 64.75785], - [-14.0185, 64.75784], - [-14.01731, 64.75771], - [-14.01762, 64.75745], - [-14.01764, 64.75694], - [-14.01766, 64.75643], - [-14.01766, 64.75618], - [-14.0171, 64.75515], - [-14.01622, 64.75476], - [-14.01442, 64.75488], - [-14.01445, 64.75436], - [-14.01324, 64.75423], - [-14.01295, 64.7541], - [-14.01267, 64.75359], - [-14.01027, 64.7537], - [-14.00966, 64.75382], - [-14.01, 64.7528], - [-14.00979, 64.75062], - [-14.0095, 64.7505], - [-14.0095, 64.75024], - [-14.0101, 64.74999], - [-14.01011, 64.74973], - [-14.01075, 64.74871], - [-14.01137, 64.74821], - [-14.011468, 64.747301], - [-14.011402, 64.746806], - [-14.01084, 64.74616], - [-14.01025, 64.7459], - [-14.010107, 64.745655], - [-14.009379, 64.745498], - [-14.009032, 64.745522], - [-14.00877, 64.74576], - [-14.008486, 64.745826], - [-14.00816, 64.74575], - [-14.007987, 64.745576], - [-14.007493, 64.745275], - [-14.007511, 64.74508], - [-14.00725, 64.744779], - [-14.007, 64.74472], - [-14.00671, 64.74459], - [-14.00612, 64.74433], - [-14.005169, 64.743905], - [-14.004303, 64.743897], - [-14.003747, 64.743617], - [-14.003076, 64.74336], - [-14.00258, 64.74303], - [-14.002, 64.74252], - [-14.00111, 64.74213], - [-14.00052, 64.74187], - [-13.99934, 64.7416], - [-13.99638, 64.7403], - [-13.9952, 64.74004], - [-13.994312, 64.740005], - [-13.994104, 64.740089], - [-13.993684, 64.740327], - [-13.993608, 64.740317], - [-13.993706, 64.740174], - [-13.993268, 64.74032], - [-13.993032, 64.740352], - [-13.992892, 64.740296], - [-13.992781, 64.740186], - [-13.992526, 64.740213], - [-13.992447, 64.74037], - [-13.992321, 64.740389], - [-13.992223, 64.740337], - [-13.992165, 64.740364], - [-13.992051, 64.740342], - [-13.992079, 64.740274], - [-13.991613, 64.740392], - [-13.991699, 64.740477], - [-13.991601, 64.740549], - [-13.991395, 64.740583], - [-13.991297, 64.740553], - [-13.991132, 64.740579], - [-13.991109, 64.740647], - [-13.990985, 64.740618], - [-13.990911, 64.740482], - [-13.990522, 64.740385], - [-13.990108, 64.74038], - [-13.989985, 64.740317], - [-13.989884, 64.740325], - [-13.989866, 64.740409], - [-13.989792, 64.740428], - [-13.989607, 64.740407], - [-13.989146, 64.740134], - [-13.98892, 64.74013], - [-13.98862, 64.74], - [-13.988266, 64.739821], - [-13.987803, 64.739727], - [-13.987263, 64.739705], - [-13.987309, 64.739848], - [-13.986976, 64.739954], - [-13.986629, 64.739916], - [-13.98646, 64.740027], - [-13.986565, 64.740124], - [-13.986681, 64.740141], - [-13.98669, 64.740199], - [-13.986544, 64.740242], - [-13.986488, 64.740197], - [-13.986297, 64.740266], - [-13.985984, 64.740027], - [-13.986507, 64.739354], - [-13.986693, 64.739144], - [-13.986199, 64.738968], - [-13.98623, 64.738767], - [-13.98521, 64.73811], - [-13.984474, 64.738571], - [-13.984968, 64.738087], - [-13.985311, 64.737742], - [-13.98542, 64.73754], - [-13.98604, 64.73678], - [-13.98608, 64.73601], - [-13.98609, 64.73576], - [-13.9861, 64.73525], - [-13.98615, 64.73397], - [-13.98556, 64.7337], - [-13.98528, 64.7332], - [-13.98429, 64.73328], - [-13.98408, 64.73344], - [-13.98348, 64.73344], - [-13.98349, 64.73318], - [-13.98389, 64.7331], - [-13.98441, 64.73268], - [-13.98443, 64.73191], - [-13.98446, 64.73114], - [-13.984654, 64.73005], - [-13.984302, 64.729782], - [-13.984535, 64.729256], - [-13.984945, 64.729014], - [-13.985221, 64.729044], - [-13.985469, 64.729017], - [-13.985605, 64.729068], - [-13.985338, 64.729451], - [-13.986024, 64.729385], - [-13.987179, 64.729262], - [-13.98783, 64.72912], - [-13.989305, 64.728707], - [-13.990209, 64.728564], - [-13.991678, 64.728282], - [-13.99236, 64.72787], - [-13.99269, 64.72711], - [-13.993318, 64.726754], - [-13.993747, 64.726413], - [-13.993601, 64.726344], - [-13.9942, 64.725956], - [-13.994388, 64.725764], - [-13.994423, 64.725666], - [-13.994697, 64.725298], - [-13.994745, 64.725094], - [-13.995013, 64.724733], - [-13.995336, 64.724495], - [-13.996022, 64.724362], - [-13.995522, 64.725024], - [-13.995138, 64.725281], - [-13.995035, 64.725374], - [-13.994624, 64.725682], - [-13.994693, 64.725721], - [-13.994598, 64.725933], - [-13.994905, 64.72564], - [-13.995029, 64.725465], - [-13.995172, 64.725333], - [-13.995555, 64.725127], - [-13.995568, 64.725186], - [-13.995199, 64.725443], - [-13.994999, 64.725741], - [-13.995227, 64.725834], - [-13.995783, 64.725346], - [-13.996341, 64.724752], - [-13.996771, 64.724377], - [-13.996618, 64.724787], - [-13.997745, 64.724707], - [-13.997948, 64.724385], - [-13.998285, 64.72427], - [-13.998299, 64.72454], - [-13.99937, 64.72447], - [-13.99997, 64.72447], - [-14.00056, 64.7246], - [-14.00059, 64.72384], - [-14.00179, 64.72384], - [-14.00184, 64.72231], - [-14.00424, 64.72233], - [-14.00395, 64.72207], - [-14.00366, 64.72181], - [-14.00485, 64.72182], - [-14.00517, 64.72131], - [-14.00548, 64.72106], - [-14.00668, 64.72094], - [-14.00907, 64.72095], - [-14.00966, 64.72121], - [-14.01025, 64.72148], - [-14.01204, 64.72148], - [-14.01264, 64.72149], - [-14.01384, 64.7215], - [-14.01445, 64.7215], - [-14.01502, 64.7215], - [-14.01564, 64.72125], - [-14.01685, 64.721], - [-14.01745, 64.72074], - [-14.01806, 64.7205], - [-14.01866, 64.72038], - [-14.01868, 64.71988], - [-14.01988, 64.71988], - [-14.0202, 64.71936], - [-14.0208, 64.71911], - [-14.02111, 64.71886], - [-14.0223, 64.71874], - [-14.02291, 64.71874], - [-14.02411, 64.71875], - [-14.0247, 64.71875], - [-14.0253, 64.71876], - [-14.0265, 64.71877], - [-14.0271, 64.71877], - [-14.0277, 64.71852], - [-14.02831, 64.71828], - [-14.02951, 64.71815], - [-14.02983, 64.71764], - [-14.03014, 64.71738], - [-14.03073, 64.71751], - [-14.03132, 64.71765], - [-14.03165, 64.71688], - [-14.03226, 64.71663], - [-14.03257, 64.71612], - [-14.03317, 64.71625], - [-14.03376, 64.71626], - [-14.03555, 64.71614], - [-14.03588, 64.71563], - [-14.03649, 64.71538], - [-14.0371, 64.71487], - [-14.03771, 64.71462], - [-14.03802, 64.71437], - [-14.04041, 64.71425], - [-14.04101, 64.71426], - [-14.04161, 64.71426], - [-14.04222, 64.71401], - [-14.04401, 64.71402], - [-14.0446, 64.71428], - [-14.04519, 64.71441], - [-14.04493, 64.71339], - [-14.04464, 64.71313], - [-14.04584, 64.71301], - [-14.04644, 64.71289], - [-14.04615, 64.71263], - [-14.04616, 64.71237], - [-14.04647, 64.71212], - [-14.04766, 64.71225], - [-14.04825, 64.71239], - [-14.04827, 64.71187], - [-14.04947, 64.71175], - [-14.05008, 64.71163], - [-14.04979, 64.71137], - [-14.0495, 64.71111], - [-14.05069, 64.711], - [-14.0513, 64.71074], - [-14.0531, 64.7105], - [-14.05371, 64.71037], - [-14.05402, 64.70986], - [-14.05438, 64.70833], - [-14.05557, 64.70834], - [-14.05558, 64.70807], - [-14.05438, 64.70807], - [-14.05469, 64.70782], - [-14.0553, 64.70757], - [-14.05591, 64.70732], - [-14.05621, 64.70707], - [-14.05861, 64.70695], - [-14.06041, 64.70671], - [-14.06221, 64.70646], - [-14.06282, 64.70634], - [-14.06283, 64.70583], - [-14.06403, 64.70584], - [-14.06435, 64.70533], - [-14.06465, 64.70507], - [-14.06525, 64.70508], - [-14.06522, 64.7061], - [-14.06881, 64.70599], - [-14.06941, 64.70574], - [-14.07121, 64.70563], - [-14.07124, 64.70511], - [-14.07242, 64.70512], - [-14.07245, 64.70435], - [-14.07365, 64.70423], - [-14.07426, 64.70398], - [-14.07546, 64.70385], - [-14.07577, 64.70335], - [-14.07608, 64.7031], - [-14.07727, 64.70311], - [-14.07699, 64.70285], - [-14.07699, 64.70259], - [-14.0773, 64.70234], - [-14.0785, 64.70235], - [-14.07852, 64.70158], - [-14.08031, 64.70159], - [-14.08063, 64.70108], - [-14.08126, 64.70032], - [-14.08158, 64.69955], - [-14.08217, 64.69968], - [-14.08277, 64.69969], - [-14.08397, 64.69944], - [-14.08577, 64.69945], - [-14.08636, 64.69958], - [-14.08664, 64.7001], - [-14.08663, 64.70061], - [-14.08642, 64.700878], - [-14.086717, 64.701614], - [-14.087225, 64.702439], - [-14.08834, 64.70292], - [-14.08862, 64.70343], - [-14.08982, 64.70344], - [-14.0898, 64.70395], - [-14.09159, 64.70396], - [-14.09129, 64.70422], - [-14.09098, 64.70447], - [-14.09277, 64.70461], - [-14.09455, 64.70487], - [-14.09634, 64.70514], - [-14.09753, 64.70515], - [-14.09874, 64.7049], - [-14.09934, 64.70478], - [-14.09996, 64.70414], - [-14.100275, 64.703948], - [-14.100843, 64.703753], - [-14.10147, 64.70351], - [-14.1018, 64.70275], - [-14.10359, 64.70276], - [-14.1033, 64.7025], - [-14.10302, 64.70199], - [-14.10601, 64.70188], - [-14.10662, 64.70162], - [-14.10722, 64.7015], - [-14.10724, 64.70073], - [-14.10844, 64.70061], - [-14.10905, 64.70037], - [-14.10965, 64.70024], - [-14.10997, 64.69947], - [-14.11058, 64.69922], - [-14.11119, 64.69897], - [-14.11149, 64.69871], - [-14.11209, 64.69872], - [-14.11237, 64.69923], - [-14.11236, 64.69948], - [-14.11235, 64.7], - [-14.11264, 64.70025], - [-14.11384, 64.70013], - [-14.11444, 64.69988], - [-14.11504, 64.69988], - [-14.11565, 64.69989], - [-14.11624, 64.69964], - [-14.11685, 64.69951], - [-14.11653, 64.70002], - [-14.11652, 64.70028], - [-14.1168, 64.70053], - [-14.11801, 64.70054], - [-14.11802, 64.70003], - [-14.11922, 64.70004], - [-14.11924, 64.69953], - [-14.12043, 64.69953], - [-14.121719, 64.699119], - [-14.12601, 64.699485], - [-14.130302, 64.700219], - [-14.136138, 64.700292], - [-14.141631, 64.699705], - [-14.146953, 64.699559], - [-14.149871, 64.698532], - [-14.150043, 64.696991], - [-14.15176, 64.695083], - [-14.153476, 64.69523], - [-14.153133, 64.695817], - [-14.152275, 64.697725], - [-14.152275, 64.698458], - [-14.156223, 64.699045], - [-14.158798, 64.698458], - [-14.162059, 64.698091], - [-14.16505, 64.69673], - [-14.16537, 64.69596], - [-14.16656, 64.69596], - [-14.1669, 64.6952], - [-14.16749, 64.69495], - [-14.16781, 64.69444], - [-14.1684, 64.69457], - [-14.16899, 64.6947], - [-14.16931, 64.69419], - [-14.16932, 64.69393], - [-14.16902, 64.6938], - [-14.16863, 64.69376], - [-14.16842, 64.69393], - [-14.16782, 64.69392], - [-14.16783, 64.69367], - [-14.16823, 64.69358], - [-14.16814, 64.69341], - [-14.16815, 64.69316], - [-14.16875, 64.69291], - [-14.16906, 64.69265], - [-14.16965, 64.69266], - [-14.16964, 64.69317], - [-14.17143, 64.69318], - [-14.17175, 64.69267], - [-14.17235, 64.69241], - [-14.17266, 64.69191], - [-14.17446, 64.69191], - [-14.17448, 64.69115], - [-14.17567, 64.69115], - [-14.17599, 64.69064], - [-14.176, 64.69039], - [-14.17571, 64.68987], - [-14.17452, 64.68987], - [-14.17424, 64.68936], - [-14.17394, 64.68923], - [-14.17365, 64.6891], - [-14.17366, 64.68859], - [-14.17427, 64.68833], - [-14.17457, 64.68808], - [-14.17637, 64.68796], - [-14.17697, 64.68783], - [-14.17725, 64.68835], - [-14.17784, 64.68885], - [-14.17813, 64.68912], - [-14.17873, 64.68901], - [-14.17933, 64.68874], - [-14.18232, 64.68863], - [-14.18235, 64.68787], - [-14.18294, 64.68787], - [-14.18323, 64.68838], - [-14.18322, 64.68864], - [-14.18321, 64.68914], - [-14.18321, 64.68941], - [-14.18258, 64.69016], - [-14.18196, 64.69093], - [-14.18134, 64.6917], - [-14.18132, 64.6922], - [-14.1819, 64.69272], - [-14.18219, 64.69298], - [-14.18398, 64.69312], - [-14.18458, 64.69312], - [-14.18518, 64.69312], - [-14.18577, 64.69338], - [-14.18696, 64.69339], - [-14.18816, 64.69314], - [-14.18936, 64.69302], - [-14.18968, 64.69225], - [-14.1903, 64.69149], - [-14.19091, 64.69124], - [-14.19152, 64.69099], - [-14.19152, 64.69073], - [-14.19125, 64.68996], - [-14.19244, 64.68984], - [-14.19365, 64.68958], - [-14.19425, 64.68947], - [-14.19396, 64.68921], - [-14.19367, 64.6887], - [-14.19666, 64.68884], - [-14.19905, 64.68885], - [-14.19965, 64.6886], - [-14.20085, 64.68835], - [-14.20205, 64.68823], - [-14.20175, 64.68848], - [-14.20113, 64.68899], - [-14.20083, 64.68912], - [-14.20054, 64.68924], - [-14.20052, 64.6895], - [-14.20051, 64.69001], - [-14.19989, 64.69052], - [-14.19959, 64.69065], - [-14.19929, 64.69077], - [-14.19928, 64.69103], - [-14.19956, 64.69154], - [-14.19837, 64.69153], - [-14.19806, 64.69204], - [-14.19775, 64.6923], - [-14.19894, 64.69243], - [-14.20073, 64.69257], - [-14.20042, 64.69309], - [-14.20011, 64.69333], - [-14.2013, 64.69334], - [-14.20129, 64.69385], - [-14.20189, 64.69386], - [-14.2022, 64.69335], - [-14.20281, 64.69284], - [-14.20313, 64.69233], - [-14.20372, 64.69246], - [-14.20495, 64.69131], - [-14.20553, 64.69183], - [-14.20585, 64.69106], - [-14.20703, 64.69184], - [-14.20702, 64.69209], - [-14.2067, 64.6926], - [-14.20631, 64.69269], - [-14.20609, 64.69311], - [-14.20768, 64.69303], - [-14.20791, 64.6921], - [-14.20971, 64.69211], - [-14.2094, 64.69236], - [-14.20879, 64.69287], - [-14.20848, 64.693], - [-14.20809, 64.69321], - [-14.20788, 64.69338], - [-14.20907, 64.69351], - [-14.21086, 64.69351], - [-14.21146, 64.69351], - [-14.21265, 64.69353], - [-14.21385, 64.69341], - [-14.21387, 64.69265], - [-14.21507, 64.69265], - [-14.21478, 64.69239], - [-14.21449, 64.69188], - [-14.21569, 64.69176], - [-14.21629, 64.69162], - [-14.21631, 64.69112], - [-14.2175, 64.69113], - [-14.21752, 64.6906], - [-14.21932, 64.69062], - [-14.21933, 64.68986], - [-14.22053, 64.68974], - [-14.22113, 64.68948], - [-14.22174, 64.68936], - [-14.22176, 64.68859], - [-14.22296, 64.6886], - [-14.22327, 64.68783], - [-14.22388, 64.68758], - [-14.22419, 64.68707], - [-14.22598, 64.68708], - [-14.22568, 64.68733], - [-14.22566, 64.68783], - [-14.22594, 64.68861], - [-14.22654, 64.68849], - [-14.22714, 64.68823], - [-14.22775, 64.68811], - [-14.22775, 64.6876], - [-14.22835, 64.68773], - [-14.22894, 64.68799], - [-14.22954, 64.68812], - [-14.22923, 64.68837], - [-14.22921, 64.68889], - [-14.2295, 64.68914], - [-14.2313, 64.68928], - [-14.23189, 64.68941], - [-14.23188, 64.68992], - [-14.23068, 64.68992], - [-14.23068, 64.69043], - [-14.23186, 64.69056], - [-14.23245, 64.69069], - [-14.23274, 64.69121], - [-14.23333, 64.69146], - [-14.23332, 64.69172], - [-14.2333, 64.69274], - [-14.23388, 64.693], - [-14.23447, 64.69326], - [-14.23476, 64.69351], - [-14.23536, 64.69339], - [-14.23597, 64.69314], - [-14.23716, 64.69315], - [-14.23836, 64.69315], - [-14.23896, 64.69316], - [-14.24015, 64.69316], - [-14.24135, 64.69304], - [-14.24107, 64.69253], - [-14.24107, 64.69227], - [-14.24168, 64.69202], - [-14.24228, 64.69178], - [-14.24289, 64.69126], - [-14.2435, 64.69101], - [-14.2441, 64.69076], - [-14.24441, 64.69024], - [-14.24621, 64.69025], - [-14.24622, 64.68974], - [-14.24921, 64.68976], - [-14.24922, 64.68924], - [-14.25102, 64.68912], - [-14.25162, 64.68901], - [-14.2519, 64.68951], - [-14.25249, 64.68977], - [-14.25278, 64.69028], - [-14.25396, 64.69042], - [-14.25456, 64.69068], - [-14.25515, 64.69081], - [-14.25517, 64.6903], - [-14.25637, 64.69016], - [-14.25696, 64.69018], - [-14.25756, 64.69032], - [-14.25784, 64.69108], - [-14.25811, 64.69185], - [-14.2593, 64.69198], - [-14.2599, 64.69198], - [-14.26051, 64.69173], - [-14.2623, 64.69161], - [-14.26232, 64.6911], - [-14.26291, 64.69123], - [-14.2635, 64.69136], - [-14.26318, 64.69238], - [-14.26257, 64.69289], - [-14.26226, 64.69302], - [-14.26196, 64.69314], - [-14.26135, 64.69365], - [-14.26134, 64.69416], - [-14.26191, 64.69493], - [-14.2622, 64.69519], - [-14.2634, 64.6952], - [-14.26339, 64.69571], - [-14.26757, 64.69573], - [-14.26788, 64.69522], - [-14.26849, 64.69498], - [-14.2688, 64.69446], - [-14.27059, 64.69447], - [-14.2706, 64.69396], - [-14.2718, 64.69396], - [-14.27211, 64.69345], - [-14.27242, 64.6932], - [-14.27281, 64.69311], - [-14.27302, 64.69293], - [-14.27362, 64.69295], - [-14.27361, 64.6932], - [-14.27322, 64.69329], - [-14.27331, 64.69346], - [-14.27329, 64.69397], - [-14.27298, 64.69448], - [-14.27417, 64.69461], - [-14.27477, 64.69474], - [-14.27505, 64.69525], - [-14.27564, 64.69551], - [-14.27593, 64.69603], - [-14.27653, 64.6959], - [-14.27773, 64.69565], - [-14.28012, 64.69554], - [-14.27981, 64.69605], - [-14.27981, 64.6963], - [-14.28009, 64.69681], - [-14.27889, 64.69681], - [-14.27857, 64.69757], - [-14.27856, 64.69809], - [-14.27856, 64.69834], - [-14.27823, 64.69936], - [-14.28002, 64.6995], - [-14.28121, 64.69976], - [-14.2824, 64.69989], - [-14.28209, 64.70015], - [-14.28179, 64.7004], - [-14.28298, 64.70041], - [-14.28297, 64.70092], - [-14.28357, 64.70079], - [-14.28477, 64.70054], - [-14.28537, 64.70055], - [-14.28597, 64.70055], - [-14.28716, 64.70043], - [-14.28687, 64.69993], - [-14.28689, 64.69966], - [-14.2872, 64.69915], - [-14.2884, 64.69903], - [-14.289, 64.6989], - [-14.28901, 64.69839], - [-14.28961, 64.69852], - [-14.29259, 64.69866], - [-14.2929, 64.69815], - [-14.29321, 64.6979], - [-14.29501, 64.69778], - [-14.2956, 64.69778], - [-14.2962, 64.69791], - [-14.29589, 64.69817], - [-14.29528, 64.69893], - [-14.29497, 64.69906], - [-14.29467, 64.69919], - [-14.29437, 64.69931], - [-14.29317, 64.69943], - [-14.29346, 64.69969], - [-14.29405, 64.69995], - [-14.29464, 64.70021], - [-14.29494, 64.70047], - [-14.29554, 64.70034], - [-14.29613, 64.70034], - [-14.29792, 64.70048], - [-14.29795, 64.69997], - [-14.29913, 64.69997], - [-14.29945, 64.69946], - [-14.29975, 64.69921], - [-14.30035, 64.69921], - [-14.30003, 64.69998], - [-14.29942, 64.70049], - [-14.29941, 64.70074], - [-14.3, 64.701], - [-14.30029, 64.70126], - [-14.30149, 64.70139], - [-14.30327, 64.70166], - [-14.30446, 64.70179], - [-14.30448, 64.70128], - [-14.30627, 64.70129], - [-14.30629, 64.70052], - [-14.30689, 64.70052], - [-14.30685, 64.70206], - [-14.30565, 64.70205], - [-14.30534, 64.70282], - [-14.30532, 64.70333], - [-14.3059, 64.7041], - [-14.30589, 64.70435], - [-14.306474, 64.704892], - [-14.30676, 64.705429], - [-14.30795, 64.70577], - [-14.30854, 64.70603], - [-14.31033, 64.70629], - [-14.31211, 64.70656], - [-14.31271, 64.70656], - [-14.31391, 64.70656], - [-14.3151, 64.70657], - [-14.3157, 64.70657], - [-14.31749, 64.70658], - [-14.31989, 64.70634], - [-14.3205, 64.70608], - [-14.3211, 64.70596], - [-14.32141, 64.70545], - [-14.32203, 64.70468], - [-14.32264, 64.70418], - [-14.32295, 64.70341], - [-14.32416, 64.70354], - [-14.32474, 64.70367], - [-14.32443, 64.70418], - [-14.32442, 64.7047], - [-14.32441, 64.70495], - [-14.3244, 64.70545], - [-14.32439, 64.70572], - [-14.32439, 64.70597], - [-14.32468, 64.70623], - [-14.32766, 64.70637], - [-14.32886, 64.70651], - [-14.32887, 64.70599], - [-14.33066, 64.706], - [-14.33094, 64.70676], - [-14.33153, 64.70703], - [-14.33183, 64.70729], - [-14.33243, 64.70716], - [-14.33304, 64.70704], - [-14.33304, 64.70652], - [-14.33363, 64.70665], - [-14.33423, 64.70692], - [-14.33482, 64.70704], - [-14.3345, 64.70807], - [-14.33389, 64.70857], - [-14.33358, 64.7087], - [-14.33328, 64.70883], - [-14.33328, 64.70908], - [-14.33386, 64.70985], - [-14.33445, 64.71011], - [-14.33444, 64.71037], - [-14.33413, 64.71062], - [-14.33533, 64.71063], - [-14.33503, 64.71088], - [-14.33472, 64.71101], - [-14.33442, 64.71113], - [-14.33442, 64.71139], - [-14.335, 64.7119], - [-14.33558, 64.71267], - [-14.33616, 64.71344], - [-14.33615, 64.7137], - [-14.33615, 64.71396], - [-14.33644, 64.71421], - [-14.33764, 64.71409], - [-14.33824, 64.71409], - [-14.33883, 64.71435], - [-14.33942, 64.71448], - [-14.33912, 64.71474], - [-14.33902, 64.7149], - [-14.33941, 64.71512], - [-14.33901, 64.71533], - [-14.33909, 64.71576], - [-14.33908, 64.71627], - [-14.33846, 64.71703], - [-14.33846, 64.71729], - [-14.33845, 64.7178], - [-14.3384, 64.71985], - [-14.33839, 64.7201], - [-14.33838, 64.72061], - [-14.33837, 64.72087], - [-14.33836, 64.72113], - [-14.33895, 64.72164], - [-14.33954, 64.7219], - [-14.34013, 64.72216], - [-14.34072, 64.72267], - [-14.34131, 64.72294], - [-14.34188, 64.72396], - [-14.34211, 64.72702], - [-14.3451, 64.72691], - [-14.3463, 64.72691], - [-14.34689, 64.72717], - [-14.34748, 64.72743], - [-14.34807, 64.72769], - [-14.34867, 64.72795], - [-14.34926, 64.72821], - [-14.34985, 64.72847], - [-14.35044, 64.72872], - [-14.35104, 64.72898], - [-14.35163, 64.72924], - [-14.35222, 64.72937], - [-14.3525, 64.73014], - [-14.35277, 64.73142], - [-14.35097, 64.73154], - [-14.35067, 64.73166], - [-14.35037, 64.73179], - [-14.35006, 64.73192], - [-14.34977, 64.73205], - [-14.34946, 64.73217], - [-14.34916, 64.7323], - [-14.34886, 64.73243], - [-14.34856, 64.73255], - [-14.34825, 64.73268], - [-14.34824, 64.73345], - [-14.34852, 64.73396], - [-14.34972, 64.73396], - [-14.34941, 64.73422], - [-14.34941, 64.73447], - [-14.3497, 64.73472], - [-14.3503, 64.7346], - [-14.3515, 64.73448], - [-14.35181, 64.73397], - [-14.35242, 64.73372], - [-14.35272, 64.73347], - [-14.35392, 64.73347], - [-14.35362, 64.73372], - [-14.3533, 64.73423], - [-14.3551, 64.73437], - [-14.35569, 64.7345], - [-14.356, 64.73399], - [-14.35661, 64.73374], - [-14.35722, 64.73323], - [-14.35782, 64.73297], - [-14.35843, 64.73247], - [-14.35874, 64.73195], - [-14.35994, 64.73195], - [-14.35996, 64.73119], - [-14.36175, 64.73133], - [-14.36354, 64.73147], - [-14.36352, 64.73249], - [-14.36591, 64.73237], - [-14.36831, 64.73213], - [-14.36892, 64.732], - [-14.36919, 64.73302], - [-14.36978, 64.73328], - [-14.37008, 64.73354], - [-14.37187, 64.73355], - [-14.37216, 64.73406], - [-14.37215, 64.73432], - [-14.37214, 64.73483], - [-14.37214, 64.73508], - [-14.37152, 64.73585], - [-14.37151, 64.7361], - [-14.37211, 64.73636], - [-14.37209, 64.73713], - [-14.37179, 64.73725], - [-14.37148, 64.73738], - [-14.37119, 64.73763], - [-14.37237, 64.73763], - [-14.37266, 64.73815], - [-14.37266, 64.73841], - [-14.37265, 64.73867], - [-14.37263, 64.73918], - [-14.37202, 64.7402], - [-14.37201, 64.74045], - [-14.37201, 64.74071], - [-14.372, 64.74096], - [-14.37199, 64.74122], - [-14.37137, 64.74224], - [-14.37136, 64.74275], - [-14.37135, 64.74301], - [-14.37135, 64.74326], - [-14.37193, 64.74403], - [-14.37222, 64.74429], - [-14.37282, 64.74416], - [-14.37382, 64.74395], - [-14.37403, 64.74379], - [-14.37463, 64.74379], - [-14.37462, 64.74405], - [-14.37423, 64.74413], - [-14.37431, 64.74455], - [-14.3743, 64.74481], - [-14.3743, 64.74507], - [-14.37459, 64.74558], - [-14.37339, 64.74557], - [-14.37368, 64.74583], - [-14.37397, 64.74634], - [-14.37277, 64.74634], - [-14.37307, 64.7466], - [-14.37305, 64.74711], - [-14.37305, 64.74736], - [-14.37304, 64.74787], - [-14.37303, 64.74813], - [-14.37362, 64.74839], - [-14.37421, 64.7489], - [-14.37479, 64.74967], - [-14.37508, 64.74993], - [-14.37627, 64.75006], - [-14.37687, 64.75019], - [-14.37687, 64.75046], - [-14.37567, 64.75044], - [-14.37596, 64.75096], - [-14.37625, 64.75146], - [-14.37685, 64.75134], - [-14.37745, 64.75134], - [-14.37864, 64.75161], - [-14.37923, 64.75186], - [-14.37983, 64.75199], - [-14.38012, 64.75251], - [-14.38071, 64.75277], - [-14.3813, 64.75328], - [-14.38189, 64.75354], - [-14.38217, 64.75431], - [-14.38397, 64.75419], - [-14.38517, 64.75406], - [-14.38548, 64.75355], - [-14.38609, 64.75304], - [-14.3867, 64.75279], - [-14.3873, 64.75254], - [-14.38791, 64.75203], - [-14.38852, 64.75152], - [-14.38883, 64.75126], - [-14.39002, 64.75127], - [-14.38974, 64.75076], - [-14.38974, 64.7505], - [-14.39035, 64.74999], - [-14.39036, 64.74948], - [-14.39038, 64.74897], - [-14.39098, 64.74846], - [-14.3913, 64.74769], - [-14.3919, 64.74782], - [-14.39249, 64.74808], - [-14.39368, 64.74822], - [-14.39338, 64.74847], - [-14.39338, 64.74873], - [-14.39397, 64.74898], - [-14.39456, 64.74924], - [-14.39456, 64.7495], - [-14.39455, 64.74975], - [-14.39454, 64.75026], - [-14.39453, 64.75078], - [-14.39452, 64.75104], - [-14.39451, 64.75154], - [-14.3945, 64.7518], - [-14.39418, 64.75231], - [-14.39539, 64.75231], - [-14.39567, 64.75308], - [-14.39567, 64.75334], - [-14.39566, 64.75359], - [-14.39564, 64.75411], - [-14.39564, 64.75436], - [-14.39589, 64.75666], - [-14.39709, 64.75667], - [-14.3974, 64.75616], - [-14.39771, 64.75565], - [-14.39951, 64.75566], - [-14.3992, 64.75591], - [-14.3989, 64.75604], - [-14.3986, 64.75616], - [-14.39859, 64.75643], - [-14.39889, 64.75668], - [-14.40009, 64.75655], - [-14.40069, 64.75643], - [-14.40097, 64.75745], - [-14.40155, 64.75797], - [-14.40214, 64.75874], - [-14.40272, 64.75925], - [-14.40331, 64.76002], - [-14.40359, 64.76053], - [-14.40479, 64.76054], - [-14.40507, 64.76156], - [-14.40536, 64.76182], - [-14.40716, 64.76196], - [-14.40775, 64.76208], - [-14.40801, 64.76413], - [-14.40861, 64.76439], - [-14.40918, 64.76541], - [-14.40976, 64.76593], - [-14.41036, 64.76644], - [-14.41095, 64.7667], - [-14.41154, 64.76696], - [-14.41213, 64.76747], - [-14.41272, 64.76773], - [-14.41301, 64.76824], - [-14.4142, 64.76837], - [-14.416, 64.76864], - [-14.41719, 64.7689], - [-14.41777, 64.76915], - [-14.41838, 64.76929], - [-14.41869, 64.76878], - [-14.419, 64.76852], - [-14.41959, 64.76866], - [-14.42019, 64.76891], - [-14.42138, 64.76917], - [-14.42259, 64.76917], - [-14.42497, 64.76918], - [-14.42557, 64.76918], - [-14.42677, 64.76919], - [-14.42737, 64.76919], - [-14.42857, 64.7692], - [-14.42977, 64.7692], - [-14.43037, 64.7692], - [-14.43216, 64.76934], - [-14.432871, 64.769733], - [-14.432503, 64.769955], - [-14.432717, 64.770303], - [-14.433093, 64.770393], - [-14.43328, 64.771463], - [-14.434336, 64.771801], - [-14.433945, 64.772067], - [-14.434845, 64.772619], - [-14.434485, 64.772987], - [-14.43417, 64.77369], - [-14.43416, 64.77421], - [-14.43415, 64.77472], - [-14.43414, 64.77497], - [-14.43413, 64.77548], - [-14.43442, 64.77574], - [-14.43503, 64.77561], - [-14.43623, 64.77536], - [-14.43683, 64.77524], - [-14.43654, 64.77473], - [-14.43625, 64.77447], - [-14.43745, 64.77447], - [-14.43744, 64.77499], - [-14.43804, 64.77486], - [-14.43924, 64.77474], - [-14.43951, 64.77627], - [-14.43998, 64.78241], - [-14.44054, 64.78446], - [-14.44082, 64.78548], - [-14.44201, 64.78549], - [-14.4423, 64.78626], - [-14.44259, 64.78651], - [-14.44379, 64.78652], - [-14.44349, 64.78677], - [-14.44318, 64.78703], - [-14.44498, 64.78716], - [-14.44618, 64.78728], - [-14.44647, 64.78781], - [-14.44676, 64.78806], - [-14.44856, 64.78807], - [-14.44825, 64.78858], - [-14.448456, 64.788952], - [-14.449247, 64.789297], - [-14.44973, 64.78948], - [-14.45033, 64.78948], - [-14.45093, 64.78948], - [-14.45153, 64.78949], - [-14.45213, 64.78949], - [-14.45273, 64.78924], - [-14.45394, 64.78898], - [-14.45514, 64.78886], - [-14.45515, 64.78835], - [-14.45574, 64.78848], - [-14.45754, 64.78874], - [-14.45814, 64.78874], - [-14.46174, 64.7885], - [-14.46654, 64.78852], - [-14.46773, 64.78878], - [-14.46833, 64.78878], - [-14.47013, 64.78879], - [-14.47133, 64.78879], - [-14.47193, 64.78879], - [-14.47372, 64.78906], - [-14.47492, 64.78906], - [-14.47613, 64.78881], - [-14.47673, 64.78868], - [-14.47642, 64.78919], - [-14.4758, 64.78996], - [-14.4755, 64.79008], - [-14.4752, 64.79021], - [-14.4752, 64.79047], - [-14.47519, 64.79072], - [-14.47519, 64.79098], - [-14.47578, 64.79124], - [-14.47578, 64.79149], - [-14.47577, 64.79175], - [-14.47576, 64.79226], - [-14.47575, 64.79277], - [-14.47603, 64.79354], - [-14.47723, 64.79367], - [-14.47843, 64.7938], - [-14.47872, 64.79432], - [-14.47901, 64.79458], - [-14.47962, 64.79445], - [-14.48081, 64.79445], - [-14.4814, 64.79445], - [-14.48202, 64.79433], - [-14.48203, 64.79382], - [-14.48503, 64.79369], - [-14.48683, 64.79358], - [-14.48682, 64.79409], - [-14.49042, 64.79397], - [-14.49101, 64.79385], - [-14.49133, 64.79334], - [-14.49164, 64.79308], - [-14.49404, 64.79309], - [-14.49403, 64.7936], - [-14.49523, 64.79348], - [-14.49583, 64.79348], - [-14.49703, 64.79348], - [-14.50003, 64.79337], - [-14.50033, 64.7926], - [-14.50065, 64.7921], - [-14.50245, 64.79197], - [-14.50365, 64.79184], - [-14.50364, 64.79236], - [-14.50425, 64.79223], - [-14.50486, 64.7921], - [-14.50516, 64.79159], - [-14.50526, 64.79143], - [-14.50426, 64.79121], - [-14.50397, 64.79107], - [-14.50397, 64.79082], - [-14.50428, 64.79031], - [-14.50608, 64.79032], - [-14.50607, 64.79083], - [-14.50787, 64.79084], - [-14.50786, 64.79135], - [-14.50627, 64.79143], - [-14.50606, 64.7916], - [-14.508134, 64.791678], - [-14.509578, 64.791263], - [-14.510033, 64.790997], - [-14.509743, 64.79076], - [-14.509303, 64.790521], - [-14.508802, 64.790364], - [-14.50818, 64.79032], - [-14.50759, 64.78981], - [-14.50729, 64.78968], - [-14.507, 64.78955], - [-14.50641, 64.78903], - [-14.50582, 64.78853], - [-14.50552, 64.7884], - [-14.50522, 64.78827], - [-14.50492, 64.78814], - [-14.50463, 64.78801], - [-14.50433, 64.78788], - [-14.50403, 64.78775], - [-14.50373, 64.78762], - [-14.50344, 64.7875], - [-14.50314, 64.78737], - [-14.50193, 64.78711], - [-14.50164, 64.78698], - [-14.50135, 64.78686], - [-14.50075, 64.78686], - [-14.49955, 64.78684], - [-14.49895, 64.78684], - [-14.49835, 64.78684], - [-14.49775, 64.78684], - [-14.49656, 64.78696], - [-14.49685, 64.7867], - [-14.49716, 64.7862], - [-14.49537, 64.78606], - [-14.49477, 64.78593], - [-14.49446, 64.78644], - [-14.49416, 64.78657], - [-14.49296, 64.78657], - [-14.49117, 64.78643], - [-14.49088, 64.78592], - [-14.49088, 64.78566], - [-14.49118, 64.78541], - [-14.48879, 64.78527], - [-14.48849, 64.78514], - [-14.4879, 64.78463], - [-14.487616, 64.78458], - [-14.487269, 64.784456], - [-14.486917, 64.784393], - [-14.48521, 64.78411], - [-14.48501, 64.78395], - [-14.48462, 64.78385], - [-14.483975, 64.783579], - [-14.483414, 64.783313], - [-14.483005, 64.783193], - [-14.482534, 64.78301], - [-14.48164, 64.78282], - [-14.481432, 64.782615], - [-14.48105, 64.78243], - [-14.48045, 64.78243], - [-14.47925, 64.78217], - [-14.47896, 64.78204], - [-14.47837, 64.78153], - [-14.47807, 64.7814], - [-14.47687, 64.78114], - [-14.47568, 64.78113], - [-14.47508, 64.78113], - [-14.47328, 64.78087], - [-14.47208, 64.78087], - [-14.47148, 64.78086], - [-14.47119, 64.78073], - [-14.47089, 64.78061], - [-14.47029, 64.7806], - [-14.46849, 64.78085], - [-14.46819, 64.78098], - [-14.46786, 64.78149], - [-14.46668, 64.78149], - [-14.46639, 64.78097], - [-14.46581, 64.77995], - [-14.46581, 64.77969], - [-14.46642, 64.77918], - [-14.46643, 64.77893], - [-14.46584, 64.7784], - [-14.46553, 64.77829], - [-14.46524, 64.77816], - [-14.46496, 64.77803], - [-14.464593, 64.777857], - [-14.464149, 64.777769], - [-14.463812, 64.77768], - [-14.46354, 64.777433], - [-14.462946, 64.777116], - [-14.462566, 64.776963], - [-14.461793, 64.776808], - [-14.461241, 64.77675], - [-14.460941, 64.776496], - [-14.460454, 64.776161], - [-14.459945, 64.775715], - [-14.459544, 64.775526], - [-14.459144, 64.775352], - [-14.458678, 64.774962], - [-14.458098, 64.774565], - [-14.457482, 64.774147], - [-14.45706, 64.773777], - [-14.456852, 64.77357], - [-14.456401, 64.773371], - [-14.455764, 64.773213], - [-14.455807, 64.772908], - [-14.456265, 64.772624], - [-14.456179, 64.772297], - [-14.455585, 64.771962], - [-14.455263, 64.771498], - [-14.455026, 64.771217], - [-14.455241, 64.770954], - [-14.455126, 64.770652], - [-14.455585, 64.770478], - [-14.455936, 64.770216], - [-14.455807, 64.770005], - [-14.455964, 64.76973], - [-14.456344, 64.769496], - [-14.456809, 64.769172], - [-14.457382, 64.768952], - [-14.457876, 64.768665], - [-14.458198, 64.768494], - [-14.458191, 64.768415], - [-14.458327, 64.768327], - [-14.458528, 64.768327], - [-14.4587, 64.768262], - [-14.458692, 64.768122], - [-14.4589, 64.767805], - [-14.459308, 64.767701], - [-14.459573, 64.767496], - [-14.459795, 64.767417], - [-14.460074, 64.767414], - [-14.46064, 64.767472], - [-14.461148, 64.767576], - [-14.461642, 64.767582], - [-14.462122, 64.767658], - [-14.462623, 64.767618], - [-14.462881, 64.76753], - [-14.463332, 64.76746], - [-14.463955, 64.767444], - [-14.464528, 64.76753], - [-14.464879, 64.767594], - [-14.465137, 64.767539], - [-14.465946, 64.767264], - [-14.466111, 64.767075], - [-14.466648, 64.766938], - [-14.467135, 64.766971], - [-14.467521, 64.767063], - [-14.467836, 64.767041], - [-14.467944, 64.766932], - [-14.468201, 64.76691], - [-14.46833, 64.767023], - [-14.468581, 64.767225], - [-14.468925, 64.767359], - [-14.469591, 64.76731], - [-14.470342, 64.767142], - [-14.471688, 64.766831], - [-14.47325, 64.766382], - [-14.474524, 64.765897], - [-14.47572, 64.765369], - [-14.476336, 64.765002], - [-14.477059, 64.764453], - [-14.477791, 64.763772], - [-14.47811, 64.762958], - [-14.478327, 64.762679], - [-14.478889, 64.761935], - [-14.478879, 64.761257], - [-14.478646, 64.76067], - [-14.478231, 64.76], - [-14.477542, 64.75886], - [-14.47661, 64.757751], - [-14.475729, 64.75688], - [-14.47483, 64.756066], - [-14.474322, 64.755691], - [-14.473416, 64.75503], - [-14.472337, 64.754345], - [-14.470793, 64.753462], - [-14.469925, 64.753071], - [-14.469118, 64.752855], - [-14.468521, 64.752616], - [-14.468113, 64.752543], - [-14.467691, 64.752335], - [-14.467325, 64.752082], - [-14.466855, 64.7519], - [-14.466382, 64.751805], - [-14.465924, 64.751766], - [-14.465595, 64.751637], - [-14.465437, 64.751454], - [-14.465158, 64.751032], - [-14.464828, 64.750767], - [-14.46447, 64.750626], - [-14.463819, 64.750474], - [-14.46319, 64.750415], - [-14.461987, 64.750268], - [-14.46082, 64.750155], - [-14.459953, 64.750064], - [-14.459488, 64.750039], - [-14.459223, 64.7501], - [-14.458987, 64.750146], - [-14.458593, 64.750036], - [-14.458464, 64.750091], - [-14.458679, 64.750262], - [-14.457999, 64.750329], - [-14.456975, 64.75043], - [-14.456208, 64.750531], - [-14.455693, 64.750583], - [-14.454948, 64.750534], - [-14.45434, 64.750299], - [-14.453674, 64.750097], - [-14.453187, 64.749914], - [-14.452979, 64.749877], - [-14.451898, 64.749651], - [-14.45111, 64.74949], - [-14.450344, 64.749212], - [-14.449635, 64.748891], - [-14.449163, 64.748518], - [-14.448862, 64.748142], - [-14.448394, 64.747862], - [-14.447966, 64.747687], - [-14.447122, 64.747449], - [-14.446442, 64.747284], - [-14.445525, 64.747104], - [-14.444909, 64.746878], - [-14.443943, 64.74663], - [-14.443241, 64.746377], - [-14.442475, 64.74609], - [-14.441802, 64.745803], - [-14.441195, 64.745496], - [-14.440311, 64.745136], - [-14.439462, 64.744917], - [-14.438648, 64.744787], - [-14.437869, 64.744623], - [-14.436998, 64.744457], - [-14.436339, 64.744137], - [-14.435702, 64.743949], - [-14.435185, 64.743999], - [-14.434729, 64.74394], - [-14.434618, 64.744124], - [-14.434329, 64.744301], - [-14.433818, 64.744681], - [-14.433519, 64.74491], - [-14.433443, 64.745016], - [-14.433707, 64.745122], - [-14.433919, 64.745176], - [-14.433935, 64.745353], - [-14.434036, 64.745565], - [-14.433828, 64.745606], - [-14.433585, 64.745643], - [-14.433104, 64.74566], - [-14.432805, 64.745746], - [-14.433286, 64.745867], - [-14.433438, 64.745954], - [-14.433165, 64.745949], - [-14.432856, 64.745854], - [-14.432512, 64.745952], - [-14.431985, 64.746051], - [-14.431783, 64.74588], - [-14.431955, 64.745707], - [-14.432066, 64.745502], - [-14.431864, 64.745304], - [-14.431828, 64.745122], - [-14.431668, 64.74492], - [-14.431177, 64.744778], - [-14.430853, 64.744523], - [-14.430327, 64.7443], - [-14.430043, 64.744091], - [-14.429977, 64.743799], - [-14.429851, 64.743551], - [-14.429481, 64.743106], - [-14.429314, 64.742799], - [-14.429319, 64.742458], - [-14.428995, 64.742296], - [-14.428671, 64.741879], - [-14.428215, 64.741691], - [-14.427998, 64.741745], - [-14.42821, 64.742017], - [-14.428408, 64.742326], - [-14.428352, 64.742468], - [-14.428413, 64.742635], - [-14.428372, 64.742862], - [-14.428342, 64.743041], - [-14.428256, 64.743229], - [-14.428185, 64.743633], - [-14.42817, 64.743849], - [-14.427851, 64.744007], - [-14.427866, 64.744184], - [-14.427729, 64.744616], - [-14.42779, 64.744964], - [-14.428413, 64.745223], - [-14.428661, 64.745538], - [-14.428752, 64.745771], - [-14.42859, 64.745905], - [-14.428317, 64.745957], - [-14.428033, 64.745871], - [-14.427618, 64.745478], - [-14.427334, 64.745143], - [-14.426757, 64.745195], - [-14.426423, 64.745238], - [-14.42618, 64.74529], - [-14.425805, 64.745406], - [-14.425714, 64.745532], - [-14.4258, 64.745691], - [-14.425613, 64.745936], - [-14.425552, 64.745866], - [-14.425319, 64.745581], - [-14.425137, 64.745344], - [-14.424752, 64.745171], - [-14.424195, 64.744933], - [-14.424165, 64.744484], - [-14.423669, 64.743983], - [-14.423396, 64.743555], - [-14.42321, 64.7431], - [-14.423203, 64.742767], - [-14.42306, 64.742364], - [-14.422723, 64.742046], - [-14.422459, 64.741917], - [-14.422279, 64.741578], - [-14.422337, 64.741285], - [-14.422544, 64.741031], - [-14.422352, 64.740882], - [-14.4223, 64.74066], - [-14.4223, 64.74015], - [-14.42201, 64.74002], - [-14.4217, 64.73989], - [-14.42114, 64.73835], - [-14.42115, 64.7381], - [-14.42115, 64.73784], - [-14.42057, 64.73681], - [-14.41999, 64.7363], - [-14.41969, 64.73617], - [-14.41939, 64.73603], - [-14.418468, 64.735639], - [-14.418302, 64.735204], - [-14.418441, 64.734917], - [-14.418451, 64.734675], - [-14.418165, 64.734332], - [-14.417939, 64.734091], - [-14.417676, 64.733869], - [-14.417096, 64.733636], - [-14.416944, 64.733432], - [-14.416681, 64.733173], - [-14.416307, 64.732987], - [-14.41558, 64.73232], - [-14.41529, 64.73219], - [-14.41499, 64.73206], - [-14.4147, 64.73193], - [-14.41411, 64.73142], - [-14.41381, 64.73129], - [-14.41352, 64.73116], - [-14.41322, 64.73103], - [-14.41292, 64.7309], - [-14.41262, 64.73077], - [-14.41233, 64.73064], - [-14.41203, 64.73051], - [-14.41174, 64.73039], - [-14.41144, 64.73026], - [-14.41084, 64.73025], - [-14.41054, 64.73038], - [-14.40993, 64.73115], - [-14.40992, 64.7314], - [-14.41051, 64.73166], - [-14.41051, 64.73192], - [-14.41049, 64.73243], - [-14.41049, 64.73268], - [-14.41019, 64.73281], - [-14.40989, 64.73294], - [-14.40927, 64.7337], - [-14.40897, 64.73383], - [-14.40777, 64.73408], - [-14.40656, 64.7342], - [-14.40658, 64.73343], - [-14.40539, 64.73343], - [-14.4051, 64.73292], - [-14.4048, 64.73279], - [-14.4042, 64.73279], - [-14.4024, 64.73303], - [-14.4018, 64.73316], - [-14.40152, 64.73239], - [-14.40153, 64.73188], - [-14.40154, 64.73162], - [-14.40124, 64.73149], - [-14.40094, 64.73137], - [-14.40036, 64.7306], - [-14.40037, 64.73034], - [-14.40037, 64.73009], - [-14.39982, 64.72829], - [-14.39982, 64.72804], - [-14.40046, 64.7265], - [-14.40046, 64.72625], - [-14.40015, 64.72612], - [-14.39986, 64.72598], - [-14.39928, 64.72496], - [-14.399, 64.72484], - [-14.3978, 64.72458], - [-14.39751, 64.72445], - [-14.39752, 64.72394], - [-14.39753, 64.72342], - [-14.39695, 64.72265], - [-14.39638, 64.72163], - [-14.39638, 64.72137], - [-14.39639, 64.72086], - [-14.3964, 64.72061], - [-14.3964, 64.72035], - [-14.39641, 64.71984], - [-14.39703, 64.71907], - [-14.39704, 64.71882], - [-14.39676, 64.71779], - [-14.39556, 64.71779], - [-14.39587, 64.71755], - [-14.39648, 64.71677], - [-14.39711, 64.71601], - [-14.39713, 64.71473], - [-14.39713, 64.71447], - [-14.39714, 64.71396], - [-14.39687, 64.71294], - [-14.39567, 64.71293], - [-14.39539, 64.71215], - [-14.3948, 64.71165], - [-14.39485, 64.7096], - [-14.39486, 64.70909], - [-14.39488, 64.70807], - [-14.39489, 64.70756], - [-14.3949, 64.7073], - [-14.39491, 64.70679], - [-14.39491, 64.70653], - [-14.39491, 64.70628], - [-14.39434, 64.70576], - [-14.39376, 64.705], - [-14.39347, 64.70448], - [-14.39227, 64.70435], - [-14.39198, 64.70422], - [-14.39168, 64.70409], - [-14.3881, 64.70395], - [-14.38782, 64.70292], - [-14.38783, 64.70267], - [-14.38784, 64.70241], - [-14.38754, 64.70228], - [-14.38724, 64.70216], - [-14.38696, 64.70139], - [-14.38577, 64.70139], - [-14.38549, 64.70061], - [-14.38519, 64.70048], - [-14.38399, 64.70035], - [-14.38373, 64.69882], - [-14.38315, 64.69805], - [-14.38287, 64.69753], - [-14.38166, 64.69753], - [-14.38168, 64.69702], - [-14.37989, 64.69688], - [-14.3781, 64.69675], - [-14.37841, 64.69649], - [-14.37841, 64.69624], - [-14.37812, 64.69611], - [-14.37692, 64.69597], - [-14.37723, 64.69572], - [-14.37756, 64.69419], - [-14.37637, 64.69418], - [-14.37636, 64.69469], - [-14.37576, 64.69456], - [-14.37457, 64.69456], - [-14.37397, 64.69455], - [-14.37367, 64.69443], - [-14.37368, 64.69417], - [-14.37398, 64.69392], - [-14.37279, 64.69404], - [-14.37159, 64.69416], - [-14.37131, 64.69339], - [-14.37132, 64.69263], - [-14.37132, 64.69237], - [-14.37074, 64.69186], - [-14.37045, 64.69173], - [-14.36946, 64.69168], - [-14.36925, 64.69185], - [-14.362928, 64.691734], - [-14.356527, 64.691226], - [-14.35016, 64.69062], - [-14.34987, 64.69049], - [-14.34957, 64.69036], - [-14.34838, 64.6901], - [-14.34809, 64.68997], - [-14.3478, 64.68946], - [-14.34661, 64.68932], - [-14.34542, 64.68932], - [-14.34362, 64.68945], - [-14.34392, 64.68918], - [-14.34393, 64.68893], - [-14.34394, 64.68843], - [-14.34397, 64.68714], - [-14.34398, 64.68688], - [-14.34461, 64.68535], - [-14.34523, 64.68458], - [-14.34523, 64.68433], - [-14.34525, 64.68382], - [-14.34555, 64.68356], - [-14.34436, 64.68356], - [-14.34467, 64.68305], - [-14.344919, 64.682673], - [-14.345542, 64.682368], - [-14.346233, 64.682046], - [-14.34649, 64.68178], - [-14.3465, 64.68152], - [-14.34711, 64.68101], - [-14.34712, 64.6805], - [-14.34684, 64.67973], - [-14.34565, 64.6796], - [-14.34535, 64.67947], - [-14.34506, 64.67934], - [-14.34476, 64.67921], - [-14.34446, 64.67908], - [-14.34417, 64.67895], - [-14.344065, 64.678559], - [-14.343005, 64.678425], - [-14.342332, 64.678624], - [-14.342096, 64.67865], - [-14.341795, 64.678711], - [-14.341756, 64.678584], - [-14.341893, 64.678271], - [-14.342876, 64.677965], - [-14.342678, 64.677455], - [-14.34242, 64.67716], - [-14.343262, 64.676962], - [-14.342842, 64.676466], - [-14.342672, 64.676301], - [-14.342491, 64.675482], - [-14.342164, 64.675222], - [-14.342112, 64.674906], - [-14.342493, 64.674374], - [-14.341178, 64.674202], - [-14.341204, 64.673942], - [-14.34106, 64.673445], - [-14.340441, 64.67326], - [-14.339072, 64.672623], - [-14.336504, 64.672559], - [-14.33386, 64.67303], - [-14.33416, 64.67327], - [-14.333684, 64.67384], - [-14.331314, 64.674677], - [-14.330421, 64.674062], - [-14.331928, 64.673606], - [-14.33224, 64.67225], - [-14.329901, 64.67235], - [-14.328263, 64.672224], - [-14.327562, 64.670215], - [-14.324703, 64.66987], - [-14.32356, 64.671093], - [-14.32234, 64.670975], - [-14.321948, 64.66987], - [-14.319375, 64.669715], - [-14.318388, 64.670393], - [-14.317172, 64.669872], - [-14.318336, 64.669047], - [-14.318036, 64.668168], - [-14.316956, 64.667615], - [-14.315464, 64.667389], - [-14.3137, 64.66743], - [-14.31341, 64.6673], - [-14.31311, 64.66718], - [-14.31252, 64.66717], - [-14.31132, 64.6673], - [-14.3113, 64.66806], - [-14.3101, 64.66806], - [-14.31009, 64.66857], - [-14.3095, 64.66844], - [-14.3089, 64.66843], - [-14.30769, 64.66869], - [-14.3074, 64.66881], - [-14.3071, 64.66894], - [-14.3059, 64.66919], - [-14.3056, 64.66932], - [-14.3055, 64.66948], - [-14.30589, 64.66957], - [-14.30588, 64.66983], - [-14.30528, 64.66983], - [-14.30507, 64.66966], - [-14.30469, 64.66969], - [-14.30409, 64.66969], - [-14.3038, 64.66956], - [-14.30322, 64.66879], - [-14.30293, 64.66866], - [-14.30172, 64.66866], - [-14.30053, 64.66892], - [-14.30023, 64.66903], - [-14.29992, 64.66954], - [-14.29872, 64.66954], - [-14.29903, 64.66928], - [-14.29904, 64.66877], - [-14.29876, 64.66826], - [-14.29756, 64.66838], - [-14.29696, 64.66838], - [-14.29667, 64.66825], - [-14.29637, 64.66812], - [-14.29458, 64.66811], - [-14.29428, 64.66824], - [-14.29397, 64.66875], - [-14.29337, 64.66875], - [-14.29334, 64.667043], - [-14.294323, 64.666774], - [-14.294537, 64.666001], - [-14.294415, 64.665898], - [-14.29404, 64.66581], - [-14.29284, 64.66593], - [-14.29283, 64.66644], - [-14.29224, 64.66644], - [-14.29227, 64.66567], - [-14.29345, 64.66555], - [-14.294151, 64.665378], - [-14.294212, 64.665128], - [-14.29422, 64.664916], - [-14.29407, 64.66478], - [-14.29378, 64.66466], - [-14.29378, 64.66439], - [-14.29379, 64.66414], - [-14.291326, 64.663291], - [-14.292679, 64.662903], - [-14.292909, 64.663059], - [-14.293585, 64.662932], - [-14.294361, 64.662006], - [-14.294435, 64.661836], - [-14.294218, 64.661738], - [-14.2938, 64.661549], - [-14.293733, 64.661433], - [-14.29327, 64.66133], - [-14.29274, 64.661236], - [-14.291811, 64.661093], - [-14.291073, 64.661146], - [-14.290255, 64.661368], - [-14.289005, 64.662037], - [-14.289905, 64.661336], - [-14.289212, 64.661172], - [-14.288387, 64.661162], - [-14.287477, 64.66182], - [-14.28638, 64.66206], - [-14.28606, 64.662564], - [-14.285249, 64.662453], - [-14.28548, 64.66231], - [-14.28549, 64.66206], - [-14.2855, 64.6618], - [-14.28551, 64.66129], - [-14.28613, 64.66053], - [-14.286555, 64.660142], - [-14.28614, 64.65976], - [-14.285507, 64.659382], - [-14.28407, 64.65911], - [-14.282928, 64.659184], - [-14.281502, 64.659623], - [-14.27926, 64.660418], - [-14.277478, 64.660414], - [-14.27754, 64.660219], - [-14.278984, 64.660193], - [-14.280194, 64.659801], - [-14.280662, 64.659339], - [-14.280043, 64.658827], - [-14.280519, 64.658577], - [-14.2811, 64.658148], - [-14.281159, 64.657914], - [-14.281486, 64.657918], - [-14.281773, 64.65774], - [-14.280832, 64.657741], - [-14.280832, 64.657533], - [-14.281002, 64.657533], - [-14.280997, 64.65765], - [-14.281266, 64.657651], - [-14.281573, 64.657651], - [-14.281945, 64.657652], - [-14.282303, 64.657096], - [-14.282377, 64.657109], - [-14.282423, 64.657117], - [-14.282493, 64.656699], - [-14.281482, 64.656481], - [-14.280557, 64.656515], - [-14.279931, 64.656784], - [-14.280202, 64.657174], - [-14.279758, 64.657314], - [-14.279687, 64.657626], - [-14.278926, 64.65767], - [-14.27837, 64.657912], - [-14.277606, 64.658394], - [-14.277768, 64.658611], - [-14.277096, 64.658837], - [-14.27707, 64.659137], - [-14.276668, 64.659253], - [-14.275256, 64.658806], - [-14.274368, 64.659027], - [-14.273577, 64.65923], - [-14.27302, 64.659517], - [-14.272499, 64.660213], - [-14.272553, 64.661367], - [-14.272422, 64.661708], - [-14.272378, 64.661949], - [-14.27206, 64.66199], - [-14.27147, 64.66186], - [-14.26788, 64.6621], - [-14.266804, 64.662251], - [-14.26637, 64.66273], - [-14.26636, 64.66324], - [-14.26604, 64.66375], - [-14.26485, 64.66375], - [-14.26365, 64.66412], - [-14.26335, 64.664], - [-14.26278, 64.66324], - [-14.26248, 64.6631], - [-14.26129, 64.66283], - [-14.261, 64.66271], - [-14.26071, 64.66245], - [-14.262152, 64.662334], - [-14.26251, 64.66195], - [-14.26318, 64.661371], - [-14.263978, 64.661051], - [-14.264597, 64.660431], - [-14.265261, 64.659897], - [-14.26497, 64.6594], - [-14.26377, 64.65939], - [-14.26409, 64.65888], - [-14.26409, 64.65863], - [-14.26411, 64.65812], - [-14.26411, 64.65786], - [-14.26382, 64.65773], - [-14.26352, 64.6576], - [-14.26353, 64.65735], - [-14.26355, 64.65684], - [-14.26355, 64.65658], - [-14.26356, 64.65632], - [-14.26327, 64.6558], - [-14.26208, 64.6558], - [-14.26209, 64.65555], - [-14.26388, 64.65556], - [-14.2639, 64.65478], - [-14.26091, 64.6549], - [-14.26061, 64.65503], - [-14.25999, 64.65605], - [-14.25997, 64.65656], - [-14.26026, 64.65708], - [-14.25966, 64.65694], - [-14.25937, 64.65681], - [-14.25907, 64.65669], - [-14.25728, 64.65667], - [-14.25609, 64.6568], - [-14.25607, 64.65757], - [-14.25547, 64.65743], - [-14.25508, 64.65739], - [-14.25487, 64.65756], - [-14.25428, 64.65756], - [-14.25428, 64.6573], - [-14.25468, 64.65721], - [-14.25519, 64.65679], - [-14.2558, 64.65654], - [-14.25641, 64.65603], - [-14.25702, 64.65527], - [-14.25764, 64.6545], - [-14.25765, 64.65425], - [-14.25736, 64.65374], - [-14.25796, 64.65387], - [-14.25855, 64.654], - [-14.25827, 64.65347], - [-14.258, 64.65245], - [-14.2568, 64.65258], - [-14.2565, 64.65271], - [-14.25619, 64.65283], - [-14.25559, 64.65296], - [-14.25592, 64.65219], - [-14.25593, 64.65168], - [-14.25563, 64.65155], - [-14.25534, 64.65142], - [-14.25478, 64.65014], - [-14.25479, 64.64963], - [-14.2551, 64.64912], - [-14.25629, 64.649], - [-14.2569, 64.64887], - [-14.25691, 64.64836], - [-14.2587, 64.64837], - [-14.25902, 64.64786], - [-14.25932, 64.64761], - [-14.26053, 64.64749], - [-14.26112, 64.64737], - [-14.26113, 64.64685], - [-14.26172, 64.64698], - [-14.26292, 64.64699], - [-14.26411, 64.64686], - [-14.26384, 64.64584], - [-14.26386, 64.64507], - [-14.26417, 64.64482], - [-14.26596, 64.6447], - [-14.26656, 64.6447], - [-14.26894, 64.64471], - [-14.27074, 64.64447], - [-14.27134, 64.64434], - [-14.27135, 64.64383], - [-14.27314, 64.64384], - [-14.27286, 64.64333], - [-14.27257, 64.64307], - [-14.27436, 64.64308], - [-14.27405, 64.64333], - [-14.27404, 64.64359], - [-14.27433, 64.64385], - [-14.27493, 64.64371], - [-14.27553, 64.64371], - [-14.27612, 64.64385], - [-14.27582, 64.64411], - [-14.2758, 64.64462], - [-14.27638, 64.64539], - [-14.27667, 64.64565], - [-14.27726, 64.64565], - [-14.27758, 64.64514], - [-14.27759, 64.64489], - [-14.2776, 64.64437], - [-14.27771, 64.64421], - [-14.27731, 64.64399], - [-14.27702, 64.64386], - [-14.27672, 64.64373], - [-14.27643, 64.6436], - [-14.27616, 64.64258], - [-14.27517, 64.64266], - [-14.27496, 64.64283], - [-14.27436, 64.64282], - [-14.27437, 64.64257], - [-14.27476, 64.64248], - [-14.27468, 64.64231], - [-14.27468, 64.64206], - [-14.27529, 64.6418], - [-14.27529, 64.64155], - [-14.27502, 64.64051], - [-14.27562, 64.64053], - [-14.2759, 64.6413], - [-14.27648, 64.64155], - [-14.27706, 64.64232], - [-14.27705, 64.64258], - [-14.27705, 64.64284], - [-14.27764, 64.64309], - [-14.27811, 64.64403], - [-14.2785, 64.64412], - [-14.27878, 64.64489], - [-14.27907, 64.64515], - [-14.27947, 64.64506], - [-14.27969, 64.64438], - [-14.28008, 64.64431], - [-14.28029, 64.64413], - [-14.28089, 64.64413], - [-14.28088, 64.64439], - [-14.28049, 64.64447], - [-14.28026, 64.64515], - [-14.27987, 64.64524], - [-14.27936, 64.6454], - [-14.27936, 64.64566], - [-14.27986, 64.64583], - [-14.28047, 64.645754], - [-14.28117, 64.645899], - [-14.28143, 64.64618], - [-14.281734, 64.646662], - [-14.28261, 64.6467], - [-14.28232, 64.64644], - [-14.28205, 64.64542], - [-14.28384, 64.64543], - [-14.28385, 64.64492], - [-14.28564, 64.64492], - [-14.28566, 64.64415], - [-14.28685, 64.64415], - [-14.28716, 64.6434], - [-14.28779, 64.64263], - [-14.2884, 64.64187], - [-14.28901, 64.64136], - [-14.28902, 64.64109], - [-14.28873, 64.64097], - [-14.28843, 64.64085], - [-14.28844, 64.64033], - [-14.28845, 64.64007], - [-14.28846, 64.63982], - [-14.28876, 64.63957], - [-14.28995, 64.63957], - [-14.29027, 64.63907], - [-14.29058, 64.63855], - [-14.29356, 64.6387], - [-14.29415, 64.63883], - [-14.29413, 64.63959], - [-14.29533, 64.63973], - [-14.29591, 64.63999], - [-14.2965, 64.64012], - [-14.29651, 64.63961], - [-14.29771, 64.63961], - [-14.29772, 64.6391], - [-14.29951, 64.63898], - [-14.30011, 64.63898], - [-14.3013, 64.63899], - [-14.3019, 64.63874], - [-14.30251, 64.63847], - [-14.3031, 64.63849], - [-14.30369, 64.63874], - [-14.30429, 64.63875], - [-14.30608, 64.6385], - [-14.30667, 64.6385], - [-14.30727, 64.63863], - [-14.30756, 64.63915], - [-14.30815, 64.6394], - [-14.30844, 64.63966], - [-14.30725, 64.63966], - [-14.30694, 64.64017], - [-14.30663, 64.64029], - [-14.30633, 64.64042], - [-14.306, 64.6417], - [-14.3066, 64.64157], - [-14.30721, 64.64132], - [-14.3084, 64.6412], - [-14.30839, 64.64171], - [-14.30898, 64.64171], - [-14.30929, 64.6412], - [-14.30929, 64.64094], - [-14.30902, 64.64043], - [-14.31021, 64.64031], - [-14.312, 64.64032], - [-14.31378, 64.64058], - [-14.31497, 64.64071], - [-14.31499, 64.6402], - [-14.31678, 64.64007], - [-14.31797, 64.64009], - [-14.31916, 64.64009], - [-14.31976, 64.63997], - [-14.32004, 64.64074], - [-14.32063, 64.641], - [-14.32122, 64.64151], - [-14.3212, 64.64202], - [-14.32089, 64.64253], - [-14.32268, 64.6424], - [-14.32327, 64.64229], - [-14.32326, 64.64305], - [-14.32565, 64.64307], - [-14.32535, 64.64332], - [-14.32534, 64.64358], - [-14.32533, 64.64409], - [-14.32531, 64.6446], - [-14.32529, 64.64562], - [-14.32499, 64.64575], - [-14.32379, 64.646], - [-14.32349, 64.64612], - [-14.32348, 64.64664], - [-14.32347, 64.64689], - [-14.32346, 64.64715], - [-14.32375, 64.6474], - [-14.32435, 64.64728], - [-14.32615, 64.64703], - [-14.32675, 64.64677], - [-14.33153, 64.64667], - [-14.3312, 64.64769], - [-14.33059, 64.64846], - [-14.33028, 64.64897], - [-14.32908, 64.64897], - [-14.32877, 64.64973], - [-14.32876, 64.64999], - [-14.32935, 64.65024], - [-14.32964, 64.65076], - [-14.33083, 64.65063], - [-14.33144, 64.65064], - [-14.33203, 64.65064], - [-14.33263, 64.65039], - [-14.33323, 64.65012], - [-14.33383, 64.64988], - [-14.33444, 64.64963], - [-14.33504, 64.6495], - [-14.33537, 64.64797], - [-14.33598, 64.64746], - [-14.33629, 64.64722], - [-14.33688, 64.64734], - [-14.33747, 64.64747], - [-14.33717, 64.64772], - [-14.33655, 64.64874], - [-14.33654, 64.649], - [-14.33652, 64.64926], - [-14.33623, 64.64938], - [-14.33593, 64.64951], - [-14.33561, 64.65028], - [-14.33442, 64.65028], - [-14.33471, 64.65052], - [-14.335, 64.65078], - [-14.3356, 64.65065], - [-14.3368, 64.65066], - [-14.33739, 64.65066], - [-14.33859, 64.65041], - [-14.33919, 64.65029], - [-14.33921, 64.64978], - [-14.3404, 64.64978], - [-14.34041, 64.64927], - [-14.3422, 64.64928], - [-14.34251, 64.64877], - [-14.34282, 64.64851], - [-14.34401, 64.64839], - [-14.34461, 64.64827], - [-14.34462, 64.64775], - [-14.34702, 64.64777], - [-14.34671, 64.64802], - [-14.34638, 64.64904], - [-14.34817, 64.64892], - [-14.34877, 64.64892], - [-14.35175, 64.64906], - [-14.35176, 64.64855], - [-14.35357, 64.64843], - [-14.35594, 64.64832], - [-14.35564, 64.64857], - [-14.35534, 64.6487], - [-14.35504, 64.64881], - [-14.35503, 64.64908], - [-14.35562, 64.64934], - [-14.35591, 64.64959], - [-14.35651, 64.64947], - [-14.35712, 64.64922], - [-14.35831, 64.64909], - [-14.3583, 64.6496], - [-14.35949, 64.64974], - [-14.36008, 64.65], - [-14.36067, 64.65012], - [-14.36064, 64.65166], - [-14.36124, 64.65154], - [-14.36244, 64.65128], - [-14.36304, 64.65103], - [-14.36424, 64.65091], - [-14.36422, 64.65142], - [-14.36542, 64.6513], - [-14.36602, 64.65117], - [-14.366, 64.65194], - [-14.36699, 64.65186], - [-14.3672, 64.65169], - [-14.36839, 64.65169], - [-14.36839, 64.65195], - [-14.36739, 64.65203], - [-14.36689, 64.65245], - [-14.36658, 64.65258], - [-14.36628, 64.65271], - [-14.36598, 64.65283], - [-14.36568, 64.65296], - [-14.36538, 64.65309], - [-14.36508, 64.65321], - [-14.36506, 64.65347], - [-14.36566, 64.65373], - [-14.36595, 64.65399], - [-14.36715, 64.65386], - [-14.36775, 64.65361], - [-14.37015, 64.65336], - [-14.37074, 64.65324], - [-14.37071, 64.65477], - [-14.37369, 64.65491], - [-14.37429, 64.65492], - [-14.37668, 64.6548], - [-14.37669, 64.65429], - [-14.37789, 64.65429], - [-14.37789, 64.65378], - [-14.37968, 64.65392], - [-14.38028, 64.65392], - [-14.38088, 64.65366], - [-14.38208, 64.65341], - [-14.38267, 64.65342], - [-14.38326, 64.65355], - [-14.38326, 64.65405], - [-14.38445, 64.65405], - [-14.38446, 64.65355], - [-14.38566, 64.65343], - [-14.38626, 64.6533], - [-14.38594, 64.65407], - [-14.38594, 64.65433], - [-14.38653, 64.65458], - [-14.38652, 64.65484], - [-14.38622, 64.65509], - [-14.38741, 64.65523], - [-14.388, 64.65548], - [-14.38978, 64.65562], - [-14.38948, 64.65587], - [-14.38948, 64.65613], - [-14.39006, 64.65664], - [-14.39065, 64.65716], - [-14.39094, 64.65742], - [-14.39213, 64.65742], - [-14.39242, 64.65793], - [-14.39301, 64.65819], - [-14.3936, 64.65845], - [-14.39389, 64.65871], - [-14.39509, 64.65858], - [-14.39569, 64.65859], - [-14.39688, 64.65859], - [-14.39748, 64.65834], - [-14.39808, 64.65834], - [-14.39927, 64.65834], - [-14.401122, 64.65781], - [-14.40286, 64.65798], - [-14.40315, 64.65849], - [-14.40344, 64.65874], - [-14.40523, 64.65888], - [-14.40643, 64.65914], - [-14.40701, 64.65914], - [-14.40821, 64.65916], - [-14.4088, 64.65916], - [-14.409042, 64.658774], - [-14.409642, 64.658593], - [-14.41061, 64.65839], - [-14.411852, 64.657885], - [-14.41274, 64.657885], - [-14.41359, 64.6584], - [-14.41418, 64.65866], - [-14.415576, 64.658601], - [-14.41597, 64.65892], - [-14.41656, 64.65918], - [-14.417778, 64.659369], - [-14.418876, 64.659385], - [-14.419594, 64.659385], - [-14.420652, 64.659356], - [-14.422221, 64.659165], - [-14.423043, 64.658946], - [-14.423636, 64.658424], - [-14.42493, 64.65845], - [-14.42553, 64.65845], - [-14.42612, 64.65845], - [-14.426693, 64.6579], - [-14.431031, 64.657934], - [-14.431028, 64.657379], - [-14.43212, 64.65707], - [-14.43331, 64.6572], - [-14.4345, 64.65746], - [-14.43629, 64.65772], - [-14.43748, 64.65773], - [-14.43808, 64.65747], - [-14.43988, 64.65722], - [-14.44107, 64.65698], - [-14.44167, 64.65698], - [-14.44226, 64.65723], - [-14.44465, 64.65724], - [-14.44525, 64.65699], - [-14.44645, 64.65674], - [-14.44765, 64.65649], - [-14.44825, 64.65649], - [-14.44884, 64.65649], - [-14.44944, 64.65625], - [-14.45064, 64.65599], - [-14.45244, 64.65587], - [-14.45245, 64.65535], - [-14.45364, 64.65523], - [-14.45424, 64.6551], - [-14.45393, 64.65562], - [-14.45363, 64.65587], - [-14.45542, 64.656], - [-14.456121, 64.65614], - [-14.457337, 64.656393], - [-14.458951, 64.656746], - [-14.459339, 64.656739], - [-14.459919, 64.656722], - [-14.46048, 64.65666], - [-14.460676, 64.656287], - [-14.46139, 64.6559], - [-14.46258, 64.65603], - [-14.46377, 64.65603], - [-14.46438, 64.65578], - [-14.46497, 64.65578], - [-14.46616, 64.65604], - [-14.46675, 64.65617], - [-14.46645, 64.65643], - [-14.46644, 64.65694], - [-14.46643, 64.6572], - [-14.466753, 64.657327], - [-14.467091, 64.657261], - [-14.467814, 64.657357], - [-14.468428, 64.657439], - [-14.46911, 64.65733], - [-14.46971, 64.65733], - [-14.47031, 64.65734], - [-14.4715, 64.65734], - [-14.47269, 64.65735], - [-14.47329, 64.65735], - [-14.47448, 64.65735], - [-14.47508, 64.65723], - [-14.47507, 64.65774], - [-14.47627, 64.65774], - [-14.47667, 64.65788], - [-14.47805, 64.65813], - [-14.47925, 64.65788], - [-14.47985, 64.65763], - [-14.48165, 64.65738], - [-14.48224, 64.65738], - [-14.482703, 64.657175], - [-14.483194, 64.656914], - [-14.48344, 64.65674], - [-14.484857, 64.656339], - [-14.48525, 64.65625], - [-14.48678, 64.655771], - [-14.487295, 64.655621], - [-14.48795, 64.65548], - [-14.48855, 64.65523], - [-14.48915, 64.65497], - [-14.48975, 64.65472], - [-14.49005, 64.65447], - [-14.49065, 64.65459], - [-14.49124, 64.65485], - [-14.492473, 64.654746], - [-14.493641, 64.654842], - [-14.49402, 64.6549], - [-14.49453, 64.65448], - [-14.49513, 64.65423], - [-14.49543, 64.65397], - [-14.49663, 64.65398], - [-14.49694, 64.65347], - [-14.49694, 64.65321], - [-14.49664, 64.65308], - [-14.49566, 64.65303], - [-14.49545, 64.65321], - [-14.49485, 64.6532], - [-14.49486, 64.65295], - [-14.49525, 64.65286], - [-14.49517, 64.65244], - [-14.49467, 64.65227], - [-14.49368, 64.65218], - [-14.49399, 64.65141], - [-14.49429, 64.65116], - [-14.49549, 64.65103], - [-14.49668, 64.65091], - [-14.49669, 64.65065], - [-14.4949, 64.65077], - [-14.4943, 64.65077], - [-14.49311, 64.65064], - [-14.49341, 64.65039], - [-14.49372, 64.64987], - [-14.49612, 64.64988], - [-14.49591, 64.64971], - [-14.49551, 64.64963], - [-14.49583, 64.6491], - [-14.49613, 64.6486], - [-14.49792, 64.64861], - [-14.49763, 64.6481], - [-14.49734, 64.64784], - [-14.49853, 64.64772], - [-14.49913, 64.64772], - [-14.49973, 64.64772], - [-14.50093, 64.64772], - [-14.5027, 64.64799], - [-14.5033, 64.64812], - [-14.50361, 64.64761], - [-14.50421, 64.6471], - [-14.50422, 64.64684], - [-14.50392, 64.64671], - [-14.497362, 64.646671], - [-14.495688, 64.645786], - [-14.49575, 64.645795], - [-14.495171, 64.645485], - [-14.4944, 64.6454], - [-14.49261, 64.64527], - [-14.49263, 64.64501], - [-14.49381, 64.64489], - [-14.49441, 64.64476], - [-14.49412, 64.64451], - [-14.49362, 64.64433], - [-14.49263, 64.64437], - [-14.49203, 64.6445], - [-14.49174, 64.64399], - [-14.49145, 64.64386], - [-14.49115, 64.64373], - [-14.49056, 64.64321], - [-14.49028, 64.64271], - [-14.48849, 64.64271], - [-14.48851, 64.64167], - [-14.48671, 64.64179], - [-14.48612, 64.64179], - [-14.48552, 64.64166], - [-14.48522, 64.64217], - [-14.48491, 64.64268], - [-14.48312, 64.64268], - [-14.48313, 64.64217], - [-14.48134, 64.64216], - [-14.48106, 64.6414], - [-14.48076, 64.64126], - [-14.48047, 64.64113], - [-14.48018, 64.64062], - [-14.47898, 64.64074], - [-14.47838, 64.64087], - [-14.47839, 64.64036], - [-14.4772, 64.64022], - [-14.47691, 64.6401], - [-14.47632, 64.63958], - [-14.47603, 64.63945], - [-14.47572, 64.63933], - [-14.47572, 64.63907], - [-14.47574, 64.63882], - [-14.47516, 64.63805], - [-14.47485, 64.63792], - [-14.47426, 64.63791], - [-14.47367, 64.63791], - [-14.47307, 64.63791], - [-14.47188, 64.63803], - [-14.47189, 64.63752], - [-14.47069, 64.63752], - [-14.47041, 64.63675], - [-14.46983, 64.63624], - [-14.46924, 64.63572], - [-14.46894, 64.63559], - [-14.46775, 64.63546], - [-14.46747, 64.63495], - [-14.46717, 64.63482], - [-14.46657, 64.63482], - [-14.46598, 64.63482], - [-14.46538, 64.63481], - [-14.4624, 64.63493], - [-14.46241, 64.63442], - [-14.46181, 64.63454], - [-14.46002, 64.63467], - [-14.46001, 64.63518], - [-14.45882, 64.63505], - [-14.45762, 64.63504], - [-14.45703, 64.63504], - [-14.45643, 64.63504], - [-14.45524, 64.63503], - [-14.45346, 64.63477], - [-14.45227, 64.63451], - [-14.45108, 64.63451], - [-14.44869, 64.6345], - [-14.4484, 64.63437], - [-14.44811, 64.63386], - [-14.44751, 64.63398], - [-14.44453, 64.63397], - [-14.44334, 64.63397], - [-14.44095, 64.63397], - [-14.44036, 64.63395], - [-14.43856, 64.6342], - [-14.43826, 64.63433], - [-14.43796, 64.63446], - [-14.43617, 64.6347], - [-14.43587, 64.63483], - [-14.43556, 64.63496], - [-14.43437, 64.63508], - [-14.43436, 64.63559], - [-14.43376, 64.63559], - [-14.43377, 64.63508], - [-14.43198, 64.6352], - [-14.43079, 64.6352], - [-14.43049, 64.63507], - [-14.4305, 64.63481], - [-14.43053, 64.63352], - [-14.42996, 64.632], - [-14.42997, 64.63174], - [-14.42998, 64.63123], - [-14.42968, 64.6311], - [-14.42939, 64.63097], - [-14.42939, 64.63072], - [-14.4294, 64.6302], - [-14.42882, 64.62969], - [-14.42852, 64.62956], - [-14.42823, 64.62943], - [-14.42823, 64.62918], - [-14.42854, 64.62892], - [-14.42735, 64.62879], - [-14.42705, 64.62866], - [-14.42676, 64.62853], - [-14.42557, 64.6284], - [-14.42587, 64.62813], - [-14.42588, 64.62763], - [-14.42589, 64.62738], - [-14.42591, 64.62611], - [-14.42592, 64.62584], - [-14.42592, 64.62559], - [-14.42563, 64.62546], - [-14.42444, 64.62533], - [-14.42474, 64.62507], - [-14.42475, 64.62456], - [-14.42476, 64.6243], - [-14.42476, 64.62405], - [-14.42447, 64.62391], - [-14.42328, 64.62366], - [-14.42299, 64.62353], - [-14.42269, 64.6234], - [-14.42151, 64.62314], - [-14.42121, 64.62301], - [-14.42091, 64.62288], - [-14.41496, 64.62286], - [-14.41376, 64.62311], - [-14.41196, 64.62336], - [-14.41167, 64.62349], - [-14.41136, 64.62361], - [-14.40898, 64.62373], - [-14.40896, 64.62449], - [-14.40837, 64.62437], - [-14.40807, 64.62424], - [-14.4081, 64.62296], - [-14.40811, 64.6227], - [-14.40753, 64.62193], - [-14.40724, 64.62142], - [-14.40605, 64.62129], - [-14.40486, 64.62116], - [-14.40518, 64.62039], - [-14.40579, 64.61963], - [-14.40579, 64.61937], - [-14.4055, 64.61924], - [-14.4052, 64.61912], - [-14.40521, 64.61886], - [-14.40522, 64.61834], - [-14.40523, 64.6181], - [-14.40586, 64.61656], - [-14.40646, 64.6163], - [-14.40706, 64.61579], - [-14.40708, 64.61528], - [-14.40708, 64.61503], - [-14.40709, 64.61452], - [-14.4071, 64.61426], - [-14.40771, 64.61349], - [-14.40832, 64.61273], - [-14.40833, 64.61222], - [-14.40834, 64.61196], - [-14.40845, 64.61128], - [-14.40806, 64.61119], - [-14.40807, 64.61068], - [-14.40866, 64.61069], - [-14.40886, 64.61111], - [-14.40925, 64.6112], - [-14.40927, 64.61018], - [-14.40888, 64.61026], - [-14.40867, 64.61043], - [-14.40807, 64.61043], - [-14.40808, 64.61017], - [-14.40847, 64.61009], - [-14.40869, 64.60966], - [-14.4069, 64.60953], - [-14.40512, 64.60939], - [-14.40483, 64.60888], - [-14.40484, 64.60862], - [-14.40515, 64.60786], - [-14.40635, 64.60773], - [-14.40695, 64.60748], - [-14.40814, 64.60736], - [-14.40786, 64.60685], - [-14.40786, 64.60658], - [-14.40847, 64.60583], - [-14.40848, 64.60558], - [-14.40849, 64.60506], - [-14.4088, 64.60456], - [-14.40999, 64.60442], - [-14.41059, 64.6043], - [-14.4106, 64.60404], - [-14.4094, 64.60404], - [-14.40942, 64.60354], - [-14.40882, 64.60354], - [-14.40851, 64.60404], - [-14.40821, 64.60416], - [-14.40761, 64.60416], - [-14.40702, 64.60416], - [-14.40583, 64.60428], - [-14.40557, 64.60249], - [-14.40501, 64.60095], - [-14.40501, 64.6007], - [-14.40561, 64.60044], - [-14.40591, 64.60019], - [-14.40711, 64.60019], - [-14.40714, 64.59866], - [-14.40774, 64.59879], - [-14.40832, 64.59905], - [-14.40892, 64.59905], - [-14.41249, 64.59894], - [-14.41251, 64.59817], - [-14.41371, 64.59817], - [-14.41401, 64.59766], - [-14.41462, 64.5969], - [-14.41463, 64.59639], - [-14.41464, 64.59613], - [-14.41496, 64.59485], - [-14.41436, 64.59498], - [-14.41377, 64.59498], - [-14.41258, 64.59472], - [-14.41229, 64.59459], - [-14.41229, 64.59433], - [-14.41291, 64.59357], - [-14.41321, 64.59331], - [-14.4144, 64.59345], - [-14.41617, 64.59358], - [-14.41649, 64.59307], - [-14.4171, 64.59256], - [-14.41719, 64.59239], - [-14.41621, 64.5923], - [-14.41621, 64.59205], - [-14.4174, 64.59205], - [-14.4176, 64.59222], - [-14.41799, 64.59244], - [-14.41858, 64.59257], - [-14.41886, 64.59359], - [-14.41915, 64.59385], - [-14.41975, 64.59372], - [-14.42035, 64.59347], - [-14.42214, 64.59335], - [-14.42214, 64.59284], - [-14.42394, 64.59272], - [-14.42454, 64.59259], - [-14.42455, 64.59208], - [-14.42574, 64.59208], - [-14.42575, 64.59157], - [-14.42694, 64.59158], - [-14.42696, 64.59081], - [-14.42874, 64.59069], - [-14.42934, 64.59069], - [-14.42993, 64.59082], - [-14.42963, 64.59108], - [-14.42932, 64.59133], - [-14.43111, 64.59146], - [-14.4317, 64.59147], - [-14.4323, 64.59121], - [-14.4329, 64.59109], - [-14.43293, 64.59032], - [-14.43351, 64.59045], - [-14.4341, 64.59058], - [-14.43412, 64.58981], - [-14.43531, 64.58982], - [-14.43562, 64.58931], - [-14.43622, 64.58905], - [-14.43653, 64.58829], - [-14.43772, 64.58817], - [-14.43892, 64.58791], - [-14.43952, 64.58792], - [-14.4413, 64.58818], - [-14.44189, 64.58831], - [-14.44188, 64.58882], - [-14.44069, 64.58882], - [-14.44038, 64.58933], - [-14.43977, 64.59009], - [-14.43977, 64.59035], - [-14.44034, 64.59061], - [-14.44034, 64.59087], - [-14.44034, 64.59112], - [-14.44063, 64.59137], - [-14.44242, 64.59125], - [-14.44362, 64.59113], - [-14.44363, 64.59062], - [-14.44422, 64.59062], - [-14.44421, 64.59113], - [-14.4454, 64.59126], - [-14.44599, 64.59139], - [-14.4463, 64.59088], - [-14.44689, 64.59063], - [-14.4472, 64.59038], - [-14.4478, 64.5905], - [-14.44839, 64.59064], - [-14.44807, 64.59166], - [-14.44807, 64.59218], - [-14.44835, 64.59268], - [-14.45014, 64.59256], - [-14.45073, 64.59256], - [-14.45172, 64.59262], - [-14.45192, 64.59244], - [-14.45252, 64.59244], - [-14.45251, 64.5927], - [-14.45212, 64.59278], - [-14.45191, 64.59295], - [-14.45311, 64.59283], - [-14.4543, 64.59283], - [-14.45489, 64.59296], - [-14.4546, 64.59245], - [-14.45432, 64.59194], - [-14.45551, 64.59181], - [-14.45611, 64.59156], - [-14.45671, 64.59143], - [-14.457, 64.59195], - [-14.45699, 64.5922], - [-14.45668, 64.59271], - [-14.45787, 64.59284], - [-14.45965, 64.59311], - [-14.46025, 64.59311], - [-14.46085, 64.59285], - [-14.46145, 64.5926], - [-14.46205, 64.59235], - [-14.46265, 64.59209], - [-14.46324, 64.59197], - [-14.46325, 64.59146], - [-14.46564, 64.59147], - [-14.46563, 64.59198], - [-14.46741, 64.59211], - [-14.468, 64.59211], - [-14.46859, 64.59199], - [-14.46891, 64.59148], - [-14.46892, 64.59097], - [-14.46893, 64.59071], - [-14.46923, 64.5902], - [-14.47082, 64.59012], - [-14.47102, 64.58995], - [-14.47162, 64.58995], - [-14.47161, 64.59021], - [-14.47121, 64.59029], - [-14.47071, 64.59097], - [-14.47069, 64.592], - [-14.47097, 64.59251], - [-14.47196, 64.59242], - [-14.47217, 64.59226], - [-14.47276, 64.59226], - [-14.47276, 64.59251], - [-14.47237, 64.5926], - [-14.47216, 64.59277], - [-14.47394, 64.59277], - [-14.47426, 64.59201], - [-14.47428, 64.5915], - [-14.47428, 64.59073], - [-14.47488, 64.59048], - [-14.47548, 64.59022], - [-14.47579, 64.58971], - [-14.47698, 64.58972], - [-14.47729, 64.58921], - [-14.4773, 64.58869], - [-14.477, 64.58844], - [-14.4782, 64.58831], - [-14.47939, 64.58806], - [-14.47999, 64.5878], - [-14.48059, 64.58768], - [-14.4809, 64.58692], - [-14.48121, 64.58615], - [-14.483, 64.58616], - [-14.48302, 64.58565], - [-14.48599, 64.58553], - [-14.48659, 64.58527], - [-14.48778, 64.58515], - [-14.48779, 64.58464], - [-14.48838, 64.58477], - [-14.49016, 64.58503], - [-14.49076, 64.58516], - [-14.49075, 64.58567], - [-14.49194, 64.58568], - [-14.49193, 64.58619], - [-14.49312, 64.58619], - [-14.49311, 64.5867], - [-14.4943, 64.58671], - [-14.49457, 64.58825], - [-14.49516, 64.5885], - [-14.49545, 64.58876], - [-14.49307, 64.58875], - [-14.49336, 64.58901], - [-14.49365, 64.58952], - [-14.49246, 64.58951], - [-14.49275, 64.59029], - [-14.49303, 64.5908], - [-14.49184, 64.59092], - [-14.49154, 64.59105], - [-14.49122, 64.59233], - [-14.49002, 64.59245], - [-14.48973, 64.59257], - [-14.48912, 64.59308], - [-14.48882, 64.59333], - [-14.49001, 64.59333], - [-14.48999, 64.59385], - [-14.49119, 64.59373], - [-14.49179, 64.59373], - [-14.49238, 64.59373], - [-14.49298, 64.59348], - [-14.49418, 64.59323], - [-14.49478, 64.59297], - [-14.49657, 64.59285], - [-14.49688, 64.59209], - [-14.49718, 64.59158], - [-14.49957, 64.59158], - [-14.49987, 64.59107], - [-14.50018, 64.59082], - [-14.50078, 64.59095], - [-14.50135, 64.59108], - [-14.50106, 64.59133], - [-14.50046, 64.59184], - [-14.50044, 64.59287], - [-14.50103, 64.59312], - [-14.50132, 64.59338], - [-14.50311, 64.59351], - [-14.50488, 64.59377], - [-14.50607, 64.59377], - [-14.50667, 64.59377], - [-14.50845, 64.59404], - [-14.510209, 64.594152], - [-14.510767, 64.593973], - [-14.511398, 64.59386], - [-14.512473, 64.593547], - [-14.513009, 64.593308], - [-14.514178, 64.592857], - [-14.514809, 64.59277], - [-14.515062, 64.592302], - [-14.516578, 64.592238], - [-14.51711, 64.592055], - [-14.51772, 64.5919], - [-14.51802, 64.59139], - [-14.51981, 64.59127], - [-14.52102, 64.59102], - [-14.52339, 64.59077], - [-14.52399, 64.59077], - [-14.52458, 64.59103], - [-14.526865, 64.590819], - [-14.52756, 64.590717], - [-14.529055, 64.590397], - [-14.52906, 64.5904], - [-14.52877, 64.58989], - [-14.53055, 64.58977], - [-14.53115, 64.58951], - [-14.53294, 64.58927], - [-14.53353, 64.58901], - [-14.53414, 64.58901], - [-14.53533, 64.58902], - [-14.53712, 64.58877], - [-14.53772, 64.58864], - [-14.53742, 64.58838], - [-14.53743, 64.58813], - [-14.53803, 64.58787], - [-14.53804, 64.58736], - [-14.53775, 64.58685], - [-14.53835, 64.58698], - [-14.53893, 64.58698], - [-14.54013, 64.58673], - [-14.54073, 64.5866], - [-14.54073, 64.58609], - [-14.54193, 64.58597], - [-14.5455, 64.58585], - [-14.5452, 64.58611], - [-14.5449, 64.58623], - [-14.54461, 64.58636], - [-14.54399, 64.58713], - [-14.54369, 64.58725], - [-14.54339, 64.58738], - [-14.54309, 64.58751], - [-14.54279, 64.58763], - [-14.54219, 64.58814], - [-14.54189, 64.58827], - [-14.54159, 64.5884], - [-14.54159, 64.58865], - [-14.54187, 64.58916], - [-14.54068, 64.58916], - [-14.54066, 64.59044], - [-14.54245, 64.59045], - [-14.542931, 64.591381], - [-14.543789, 64.591462], - [-14.544459, 64.591489], - [-14.54569, 64.591718], - [-14.546657, 64.591897], - [-14.547426, 64.591941], - [-14.54956, 64.59238], - [-14.55075, 64.59252], - [-14.551094, 64.592794], - [-14.55252, 64.59303], - [-14.552893, 64.593196], - [-14.553287, 64.593302], - [-14.5543, 64.59342], - [-14.555001, 64.593466], - [-14.55549, 64.593491], - [-14.55614, 64.593567], - [-14.557293, 64.593552], - [-14.559108, 64.593264], - [-14.559685, 64.593264], - [-14.560247, 64.593168], - [-14.56056, 64.59306], - [-14.56086, 64.5928], - [-14.562587, 64.592441], - [-14.563724, 64.592216], - [-14.564226, 64.592061], - [-14.564012, 64.591836], - [-14.56356, 64.59153], - [-14.56327, 64.5914], - [-14.56297, 64.59127], - [-14.56299, 64.59], - [-14.5633, 64.58923], - [-14.56449, 64.5891], - [-14.56509, 64.58911], - [-14.56568, 64.58911], - [-14.56628, 64.58885], - [-14.56689, 64.5886], - [-14.56748, 64.58835], - [-14.56808, 64.58822], - [-14.56779, 64.58796], - [-14.56749, 64.58784], - [-14.56392, 64.58757], - [-14.56274, 64.58731], - [-14.56244, 64.58718], - [-14.56186, 64.58667], - [-14.56186, 64.58616], - [-14.56216, 64.5859], - [-14.56336, 64.58578], - [-14.56396, 64.58552], - [-14.56456, 64.5854], - [-14.56457, 64.58463], - [-14.56516, 64.58463], - [-14.56515, 64.58514], - [-14.56575, 64.58502], - [-14.56635, 64.5849], - [-14.56605, 64.58463], - [-14.56576, 64.58438], - [-14.56695, 64.58425], - [-14.56755, 64.58413], - [-14.56788, 64.58234], - [-14.56818, 64.58183], - [-14.56937, 64.5817], - [-14.56997, 64.5817], - [-14.57056, 64.58183], - [-14.57057, 64.58132], - [-14.57176, 64.5812], - [-14.57295, 64.58107], - [-14.57296, 64.58056], - [-14.57415, 64.58057], - [-14.57414, 64.58108], - [-14.57653, 64.58097], - [-14.57772, 64.58083], - [-14.57771, 64.58134], - [-14.5795, 64.58122], - [-14.58069, 64.5811], - [-14.58067, 64.58238], - [-14.58127, 64.58225], - [-14.58186, 64.58212], - [-14.58216, 64.58136], - [-14.58248, 64.58059], - [-14.58367, 64.58046], - [-14.58427, 64.58034], - [-14.58399, 64.57957], - [-14.58399, 64.57932], - [-14.5846, 64.57829], - [-14.5852, 64.57778], - [-14.5858, 64.57753], - [-14.58611, 64.57728], - [-14.586829, 64.57732], - [-14.586968, 64.576737], - [-14.58726, 64.576746], - [-14.587358, 64.576285], - [-14.587296, 64.575896], - [-14.58732, 64.575563], - [-14.587274, 64.575216], - [-14.587386, 64.57477], - [-14.58729, 64.574495], - [-14.58705, 64.5737], - [-14.58706, 64.57319], - [-14.58737, 64.57242], - [-14.58618, 64.57229], - [-14.5838, 64.57228], - [-14.58201, 64.5724], - [-14.582, 64.57292], - [-14.58022, 64.57291], - [-14.58023, 64.5724], - [-14.57904, 64.57251], - [-14.57725, 64.57265], - [-14.57755, 64.57239], - [-14.57756, 64.57214], - [-14.57726, 64.57201], - [-14.57697, 64.57188], - [-14.57639, 64.57085], - [-14.5758, 64.57034], - [-14.57581, 64.56983], - [-14.57582, 64.56932], - [-14.57523, 64.56881], - [-14.57494, 64.5683], - [-14.57613, 64.5683], - [-14.57644, 64.56753], - [-14.57644, 64.56727], - [-14.57616, 64.56651], - [-14.57497, 64.5665], - [-14.57527, 64.56599], - [-14.57557, 64.56574], - [-14.57617, 64.56587], - [-14.57676, 64.566], - [-14.57677, 64.56523], - [-14.57796, 64.5651], - [-14.57856, 64.56498], - [-14.57829, 64.56344], - [-14.57799, 64.56293], - [-14.57918, 64.56306], - [-14.58037, 64.56307], - [-14.58097, 64.56294], - [-14.58097, 64.56268], - [-14.57978, 64.56268], - [-14.57979, 64.56217], - [-14.5786, 64.56217], - [-14.571325, 64.561682], - [-14.56672, 64.559949], - [-14.564775, 64.558227], - [-14.569679, 64.552339], - [-14.57615, 64.54809], - [-14.57674, 64.54784], - [-14.57735, 64.54707], - [-14.57794, 64.54656], - [-14.578164, 64.546187], - [-14.57877, 64.545741], - [-14.579447, 64.545551], - [-14.580077, 64.545007], - [-14.58066, 64.54452], - [-14.580935, 64.544357], - [-14.581643, 64.54408], - [-14.581415, 64.543921], - [-14.581785, 64.543782], - [-14.582115, 64.543647], - [-14.582367, 64.543498], - [-14.582737, 64.54321], - [-14.583162, 64.542926], - [-14.583249, 64.542622], - [-14.583044, 64.542195], - [-14.582501, 64.541637], - [-14.580966, 64.540784], - [-14.580447, 64.540098], - [-14.580274, 64.53982], - [-14.580282, 64.539556], - [-14.580014, 64.539367], - [-14.579518, 64.53915], - [-14.578983, 64.538856], - [-14.578251, 64.538788], - [-14.576834, 64.538423], - [-14.576456, 64.538328], - [-14.576291, 64.538111], - [-14.57622, 64.537905], - [-14.57552, 64.537773], - [-14.574607, 64.537353], - [-14.573875, 64.537137], - [-14.57335, 64.53683], - [-14.572466, 64.536634], - [-14.571537, 64.536559], - [-14.57053, 64.53665], - [-14.569947, 64.537192], - [-14.569058, 64.537605], - [-14.568436, 64.537662], - [-14.567838, 64.53754], - [-14.567161, 64.537172], - [-14.56661, 64.536728], - [-14.565941, 64.536153], - [-14.565374, 64.535365], - [-14.564981, 64.534874], - [-14.564509, 64.534647], - [-14.563816, 64.534508], - [-14.563304, 64.534366], - [-14.563026, 64.534169], - [-14.563082, 64.533874], - [-14.562628, 64.533699], - [-14.562355, 64.533614], - [-14.561895, 64.533219], - [-14.561541, 64.53306], - [-14.56099, 64.532921], - [-14.560361, 64.532925], - [-14.55918, 64.533239], - [-14.558393, 64.533595], - [-14.557559, 64.533825], - [-14.55557, 64.53423], - [-14.55527, 64.53435], - [-14.552954, 64.534708], - [-14.552033, 64.53509], - [-14.550924, 64.535365], - [-14.549814, 64.535777], - [-14.549531, 64.536035], - [-14.548893, 64.536119], - [-14.548169, 64.536078], - [-14.547649, 64.53597], - [-14.547327, 64.536133], - [-14.547413, 64.536288], - [-14.5478, 64.53676], - [-14.5478, 64.53727], - [-14.5475, 64.53739], - [-14.5469, 64.53739], - [-14.54631, 64.53726], - [-14.546225, 64.537679], - [-14.545556, 64.537784], - [-14.544895, 64.537801], - [-14.544375, 64.537632], - [-14.544021, 64.537517], - [-14.543966, 64.53774], - [-14.543785, 64.538217], - [-14.544147, 64.538691], - [-14.544603, 64.538715], - [-14.544517, 64.538948], - [-14.543604, 64.539127], - [-14.543281, 64.539046], - [-14.541738, 64.539689], - [-14.541235, 64.539682], - [-14.540943, 64.539462], - [-14.54063, 64.53929], - [-14.54034, 64.53916], - [-14.539692, 64.538742], - [-14.53907, 64.53839], - [-14.538362, 64.538285], - [-14.536512, 64.53816], - [-14.535166, 64.538153], - [-14.533915, 64.538227], - [-14.532939, 64.538457], - [-14.532348, 64.538789], - [-14.532073, 64.538725], - [-14.531239, 64.539026], - [-14.530294, 64.539466], - [-14.52946, 64.539821], - [-14.528712, 64.540217], - [-14.527917, 64.540559], - [-14.526965, 64.541086], - [-14.526823, 64.541553], - [-14.526414, 64.542054], - [-14.525556, 64.542849], - [-14.525186, 64.542974], - [-14.524611, 64.542951], - [-14.524399, 64.5429], - [-14.524297, 64.54269], - [-14.523919, 64.542666], - [-14.523691, 64.542751], - [-14.52299, 64.542578], - [-14.522423, 64.54224], - [-14.522211, 64.542037], - [-14.521707, 64.541668], - [-14.521644, 64.541486], - [-14.522282, 64.541367], - [-14.522754, 64.54112], - [-14.523344, 64.541218], - [-14.523887, 64.541303], - [-14.524116, 64.541239], - [-14.524194, 64.540951], - [-14.523761, 64.540413], - [-14.52299, 64.540213], - [-14.521786, 64.539875], - [-14.52107, 64.539831], - [-14.520117, 64.539506], - [-14.520078, 64.53933], - [-14.51896, 64.5391], - [-14.518213, 64.538935], - [-14.518102, 64.538725], - [-14.517418, 64.53867], - [-14.516945, 64.538518], - [-14.516552, 64.538488], - [-14.515899, 64.53818], - [-14.5156, 64.537997], - [-14.515891, 64.537743], - [-14.515765, 64.53751], - [-14.515371, 64.537243], - [-14.515182, 64.536799], - [-14.51408, 64.536766], - [-14.512648, 64.536593], - [-14.512349, 64.536738], - [-14.512514, 64.537087], - [-14.512105, 64.537036], - [-14.511861, 64.537219], - [-14.511097, 64.537192], - [-14.509838, 64.537314], - [-14.50913, 64.537253], - [-14.50872, 64.537101], - [-14.507831, 64.536897], - [-14.50765, 64.536688], - [-14.507327, 64.536566], - [-14.507217, 64.53639], - [-14.506855, 64.536261], - [-14.506572, 64.536001], - [-14.506469, 64.535554], - [-14.507217, 64.535134], - [-14.507776, 64.534908], - [-14.507201, 64.534945], - [-14.506548, 64.535094], - [-14.50543, 64.535202], - [-14.50458, 64.535436], - [-14.503478, 64.53531], - [-14.502825, 64.535273], - [-14.502353, 64.53503], - [-14.501763, 64.534586], - [-14.501031, 64.534204], - [-14.499874, 64.533777], - [-14.498276, 64.533564], - [-14.497497, 64.533821], - [-14.498166, 64.534231], - [-14.499803, 64.534637], - [-14.500645, 64.534837], - [-14.501109, 64.535507], - [-14.501645, 64.535801], - [-14.501881, 64.536255], - [-14.500188, 64.536627], - [-14.49926, 64.53704], - [-14.499197, 64.537314], - [-14.49878, 64.537351], - [-14.498079, 64.53727], - [-14.497, 64.53697], - [-14.496111, 64.536979], - [-14.494356, 64.536525], - [-14.49344, 64.53658], - [-14.492821, 64.536897], - [-14.491287, 64.537317], - [-14.490704, 64.537537], - [-14.489602, 64.537645], - [-14.488886, 64.537662], - [-14.48838, 64.53758], - [-14.487808, 64.537307], - [-14.487453, 64.536853], - [-14.487335, 64.536393], - [-14.48691, 64.536901], - [-14.486777, 64.537337], - [-14.486304, 64.537574], - [-14.485045, 64.537649], - [-14.484313, 64.537974], - [-14.483731, 64.538386], - [-14.48271, 64.53871], - [-14.48241, 64.53884], - [-14.48211, 64.53897], - [-14.48152, 64.53897], - [-14.48092, 64.53896], - [-14.47973, 64.53896], - [-14.47914, 64.53896], - [-14.47884, 64.53909], - [-14.47854, 64.53921], - [-14.47735, 64.53934], - [-14.47764, 64.53959], - [-14.47763, 64.54036], - [-14.47734, 64.54049], - [-14.47703, 64.54061], - [-14.47642, 64.54138], - [-14.47611, 64.54189], - [-14.47493, 64.54188], - [-14.47462, 64.54239], - [-14.47432, 64.54253], - [-14.47402, 64.54265], - [-14.47372, 64.54277], - [-14.47342, 64.5429], - [-14.47312, 64.54303], - [-14.47281, 64.54316], - [-14.47252, 64.54328], - [-14.47222, 64.54341], - [-14.47192, 64.54355], - [-14.47162, 64.54366], - [-14.47132, 64.54379], - [-14.47013, 64.54391], - [-14.47012, 64.54441], - [-14.46775, 64.54441], - [-14.46805, 64.54391], - [-14.46806, 64.54365], - [-14.46807, 64.54314], - [-14.46868, 64.54237], - [-14.46929, 64.54161], - [-14.4696, 64.54084], - [-14.47079, 64.54085], - [-14.47048, 64.54059], - [-14.4705, 64.54008], - [-14.4711, 64.53982], - [-14.47171, 64.53931], - [-14.47202, 64.53855], - [-14.47261, 64.53868], - [-14.4732, 64.53881], - [-14.47351, 64.53804], - [-14.47411, 64.53779], - [-14.47441, 64.53729], - [-14.47561, 64.53729], - [-14.47592, 64.53652], - [-14.47652, 64.53627], - [-14.47712, 64.53601], - [-14.47772, 64.53576], - [-14.47832, 64.5355], - [-14.47892, 64.53525], - [-14.47951, 64.53474], - [-14.48012, 64.53449], - [-14.48072, 64.53423], - [-14.48132, 64.53398], - [-14.48191, 64.53373], - [-14.48251, 64.53347], - [-14.48311, 64.53322], - [-14.48371, 64.53296], - [-14.48431, 64.53246], - [-14.48491, 64.5322], - [-14.48551, 64.53195], - [-14.48582, 64.53118], - [-14.48701, 64.53119], - [-14.48734, 64.52965], - [-14.48735, 64.52914], - [-14.48735, 64.52889], - [-14.48797, 64.52812], - [-14.48797, 64.52761], - [-14.48797, 64.52735], - [-14.48858, 64.52659], - [-14.48919, 64.52582], - [-14.4892, 64.52557], - [-14.4889, 64.52544], - [-14.48861, 64.52531], - [-14.48802, 64.5248], - [-14.48803, 64.52428], - [-14.48868, 64.52122], - [-14.48899, 64.52045], - [-14.48781, 64.52032], - [-14.48662, 64.52019], - [-14.48634, 64.51967], - [-14.48635, 64.51916], - [-14.48696, 64.51814], - [-14.48757, 64.51712], - [-14.48818, 64.51661], - [-14.48848, 64.51636], - [-14.49026, 64.51636], - [-14.48997, 64.51611], - [-14.48938, 64.51559], - [-14.4888, 64.51508], - [-14.48821, 64.51456], - [-14.48763, 64.5138], - [-14.48651, 64.51072], - [-14.48593, 64.51021], - [-14.48564, 64.50919], - [-14.48386, 64.50917], - [-14.48387, 64.50892], - [-14.48565, 64.50893], - [-14.48565, 64.50868], - [-14.48387, 64.50867], - [-14.48361, 64.50688], - [-14.48332, 64.50662], - [-14.4845, 64.50663], - [-14.48332, 64.50624], - [-14.48303, 64.50611], - [-14.48274, 64.50598], - [-14.48096, 64.50585], - [-14.48098, 64.50508], - [-14.48038, 64.50508], - [-14.48037, 64.50559], - [-14.47978, 64.50546], - [-14.47949, 64.50533], - [-14.47919, 64.5052], - [-14.4789, 64.50507], - [-14.4786, 64.50494], - [-14.47801, 64.50494], - [-14.47741, 64.50507], - [-14.47772, 64.50456], - [-14.47803, 64.50404], - [-14.47684, 64.50404], - [-14.47683, 64.50455], - [-14.47564, 64.50455], - [-14.47565, 64.50404], - [-14.47506, 64.50416], - [-14.47387, 64.50429], - [-14.47407, 64.50445], - [-14.47446, 64.50454], - [-14.47445, 64.5048], - [-14.47386, 64.5048], - [-14.47366, 64.50463], - [-14.47327, 64.50467], - [-14.47089, 64.50467], - [-14.4706, 64.50453], - [-14.47002, 64.50376], - [-14.46973, 64.50363], - [-14.46854, 64.50349], - [-14.46884, 64.50324], - [-14.46885, 64.50273], - [-14.46856, 64.5026], - [-14.46827, 64.50247], - [-14.46768, 64.50196], - [-14.4671, 64.50145], - [-14.46652, 64.50093], - [-14.46622, 64.50068], - [-14.46741, 64.50068], - [-14.46712, 64.50043], - [-14.46713, 64.49991], - [-14.46713, 64.49966], - [-14.46684, 64.49889], - [-14.46566, 64.49901], - [-14.46507, 64.49901], - [-14.46388, 64.49888], - [-14.46389, 64.49837], - [-14.465088, 64.498017], - [-14.465721, 64.497879], - [-14.466526, 64.497592], - [-14.467331, 64.4978], - [-14.468382, 64.497592], - [-14.46836, 64.49736], - [-14.46808, 64.49685], - [-14.468232, 64.496576], - [-14.468908, 64.496719], - [-14.468951, 64.496433], - [-14.469058, 64.496128], - [-14.469112, 64.495832], - [-14.469477, 64.4955], - [-14.470174, 64.495222], - [-14.47019, 64.49507], - [-14.469337, 64.495038], - [-14.469262, 64.494862], - [-14.469348, 64.494543], - [-14.46962, 64.49404], - [-14.46933, 64.49378], - [-14.469015, 64.493578], - [-14.469026, 64.493361], - [-14.469981, 64.493416], - [-14.470796, 64.493439], - [-14.471644, 64.493453], - [-14.4723, 64.49328], - [-14.472683, 64.492994], - [-14.473081, 64.492695], - [-14.472588, 64.492169], - [-14.471815, 64.492141], - [-14.470464, 64.492141], - [-14.470582, 64.491734], - [-14.471558, 64.491642], - [-14.472363, 64.49112], - [-14.473371, 64.490856], - [-14.473092, 64.491351], - [-14.474004, 64.491161], - [-14.47458, 64.490992], - [-14.475216, 64.490806], - [-14.476558, 64.490491], - [-14.477124, 64.490135], - [-14.477416, 64.489849], - [-14.477534, 64.489077], - [-14.477759, 64.489031], - [-14.479057, 64.488685], - [-14.47983, 64.488361], - [-14.480635, 64.487807], - [-14.4813, 64.487493], - [-14.481621, 64.487262], - [-14.48189, 64.487128], - [-14.482212, 64.486915], - [-14.482705, 64.486642], - [-14.483167, 64.486245], - [-14.48336, 64.486078], - [-14.484014, 64.485251], - [-14.484121, 64.485103], - [-14.484111, 64.484872], - [-14.48413, 64.48454], - [-14.483563, 64.484059], - [-14.48277, 64.483689], - [-14.482501, 64.483551], - [-14.482673, 64.48331], - [-14.483285, 64.483241], - [-14.483746, 64.483606], - [-14.484561, 64.483333], - [-14.485602, 64.482885], - [-14.486042, 64.482626], - [-14.486771, 64.482289], - [-14.487125, 64.482058], - [-14.48734, 64.48183], - [-14.486922, 64.481522], - [-14.486787, 64.481372], - [-14.486621, 64.481189], - [-14.486439, 64.48081], - [-14.486224, 64.480648], - [-14.485924, 64.480643], - [-14.485806, 64.480551], - [-14.486289, 64.480486], - [-14.486632, 64.480431], - [-14.486664, 64.480426], - [-14.486385, 64.48026], - [-14.486235, 64.480066], - [-14.48645, 64.479871], - [-14.486621, 64.479594], - [-14.486385, 64.479534], - [-14.48587, 64.479405], - [-14.486331, 64.479298], - [-14.486664, 64.479377], - [-14.487093, 64.479317], - [-14.487801, 64.479192], - [-14.488027, 64.478952], - [-14.488082, 64.478911], - [-14.48829, 64.47876], - [-14.488005, 64.478508], - [-14.488091, 64.478258], - [-14.488402, 64.478073], - [-14.488467, 64.47793], - [-14.488348, 64.477759], - [-14.48866, 64.477616], - [-14.488456, 64.47757], - [-14.487995, 64.477588], - [-14.487801, 64.477449], - [-14.488327, 64.477311], - [-14.488649, 64.477389], - [-14.489497, 64.477175], - [-14.489121, 64.477186], - [-14.488939, 64.476905], - [-14.489518, 64.476628], - [-14.490044, 64.476511], - [-14.490494, 64.476229], - [-14.491415, 64.475722], - [-14.49161, 64.475558], - [-14.492147, 64.475059], - [-14.492211, 64.474569], - [-14.492275, 64.473598], - [-14.493466, 64.47309], - [-14.494507, 64.472479], - [-14.495097, 64.472022], - [-14.495301, 64.471582], - [-14.495075, 64.471305], - [-14.494507, 64.471074], - [-14.494721, 64.470926], - [-14.495709, 64.47063], - [-14.496481, 64.470029], - [-14.497243, 64.469674], - [-14.497972, 64.469018], - [-14.498165, 64.468694], - [-14.498187, 64.468407], - [-14.498509, 64.467593], - [-14.500225, 64.466308], - [-14.501781, 64.465645], - [-14.50206, 64.465266], - [-14.502155, 64.465086], - [-14.502339, 64.464738], - [-14.502854, 64.46423], - [-14.502811, 64.463758], - [-14.502854, 64.463462], - [-14.5028, 64.46321], - [-14.502457, 64.463189], - [-14.502457, 64.46306], - [-14.502039, 64.462879], - [-14.501835, 64.463037], - [-14.50147, 64.46306], - [-14.501352, 64.462842], - [-14.50147, 64.462611], - [-14.502425, 64.462704], - [-14.501867, 64.462426], - [-14.501588, 64.462195], - [-14.502393, 64.462403], - [-14.502671, 64.462273], - [-14.503111, 64.462454], - [-14.503605, 64.462357], - [-14.503626, 64.462135], - [-14.50427, 64.462195], - [-14.505043, 64.461649], - [-14.505386, 64.461177], - [-14.505407, 64.460789], - [-14.505392, 64.460521], - [-14.505386, 64.460409], - [-14.504774, 64.460271], - [-14.504431, 64.460118], - [-14.503905, 64.459845], - [-14.503326, 64.459956], - [-14.502661, 64.459933], - [-14.503669, 64.459586], - [-14.503337, 64.45941], - [-14.503691, 64.459401], - [-14.504485, 64.459494], - [-14.504431, 64.459188], - [-14.503916, 64.45916], - [-14.503787, 64.458966], - [-14.504066, 64.458818], - [-14.504249, 64.458837], - [-14.504377, 64.45898], - [-14.50471, 64.4591], - [-14.505536, 64.458929], - [-14.505643, 64.45867], - [-14.505461, 64.458425], - [-14.505794, 64.458554], - [-14.505987, 64.458272], - [-14.506459, 64.458328], - [-14.506738, 64.45805], - [-14.506362, 64.457911], - [-14.506738, 64.457615], - [-14.505922, 64.457412], - [-14.505493, 64.45749], - [-14.505311, 64.457379], - [-14.505354, 64.457259], - [-14.505718, 64.457264], - [-14.505879, 64.457171], - [-14.506083, 64.457116], - [-14.505965, 64.457278], - [-14.506201, 64.457301], - [-14.506631, 64.457005], - [-14.506791, 64.456861], - [-14.506598, 64.456741], - [-14.507081, 64.456551], - [-14.50721, 64.456209], - [-14.507135, 64.455908], - [-14.507725, 64.455381], - [-14.507982, 64.454715], - [-14.507811, 64.454423], - [-14.507496, 64.454193], - [-14.507135, 64.4539], - [-14.506909, 64.453956], - [-14.506856, 64.45409], - [-14.506631, 64.453937], - [-14.506276, 64.453965], - [-14.506191, 64.453873], - [-14.506759, 64.453826], - [-14.507167, 64.453771], - [-14.507725, 64.453877], - [-14.507698, 64.453739], - [-14.508004, 64.453683], - [-14.509034, 64.452017], - [-14.509592, 64.451092], - [-14.509635, 64.450537], - [-14.50933, 64.450161], - [-14.509527, 64.449671], - [-14.508905, 64.449486], - [-14.508562, 64.449204], - [-14.508025, 64.448973], - [-14.507821, 64.448871], - [-14.507467, 64.448899], - [-14.50778, 64.44865], - [-14.508025, 64.448454], - [-14.5081, 64.448103], - [-14.508229, 64.447765], - [-14.508336, 64.447325], - [-14.508379, 64.447108], - [-14.5081, 64.446705], - [-14.507864, 64.446636], - [-14.507575, 64.446649], - [-14.507371, 64.446562], - [-14.507102, 64.446585], - [-14.50662, 64.446413], - [-14.506931, 64.446437], - [-14.506738, 64.44627], - [-14.506373, 64.446191], - [-14.506373, 64.445992], - [-14.506062, 64.445816], - [-14.505643, 64.445844], - [-14.505665, 64.445742], - [-14.505815, 64.445641], - [-14.505257, 64.445483], - [-14.505536, 64.44534], - [-14.505096, 64.445136], - [-14.505043, 64.4449], - [-14.50462, 64.44468], - [-14.50432, 64.44455], - [-14.503584, 64.444234], - [-14.502908, 64.444326], - [-14.50279, 64.444724], - [-14.502446, 64.444618], - [-14.502468, 64.444428], - [-14.502511, 64.443854], - [-14.502028, 64.443729], - [-14.501674, 64.443706], - [-14.501534, 64.44391], - [-14.501373, 64.443706], - [-14.501545, 64.443488], - [-14.502103, 64.443484], - [-14.502339, 64.443308], - [-14.501802, 64.443322], - [-14.501556, 64.443183], - [-14.501888, 64.442993], - [-14.502275, 64.442868], - [-14.501996, 64.442567], - [-14.501631, 64.442419], - [-14.49985, 64.442382], - [-14.499185, 64.44229], - [-14.499045, 64.442007], - [-14.498187, 64.4421], - [-14.497854, 64.441864], - [-14.497146, 64.442007], - [-14.49661, 64.441975], - [-14.497232, 64.441785], - [-14.496631, 64.441656], - [-14.49698, 64.44145], - [-14.49698, 64.4412], - [-14.497253, 64.440966], - [-14.496878, 64.440711], - [-14.497, 64.44043], - [-14.497232, 64.440207], - [-14.496889, 64.439984], - [-14.496771, 64.439707], - [-14.497543, 64.439572], - [-14.498101, 64.439494], - [-14.4982, 64.43928], - [-14.497243, 64.439304], - [-14.496599, 64.439022], - [-14.49702, 64.43889], - [-14.497447, 64.438605], - [-14.498155, 64.438522], - [-14.49881, 64.43852], - [-14.498981, 64.43817], - [-14.498959, 64.437911], - [-14.498766, 64.437679], - [-14.498498, 64.437438], - [-14.497801, 64.437536], - [-14.497318, 64.437494], - [-14.497382, 64.437392], - [-14.497994, 64.437327], - [-14.498165, 64.437221], - [-14.497361, 64.437077], - [-14.497983, 64.437017], - [-14.498026, 64.436911], - [-14.497618, 64.436837], - [-14.49824, 64.43679], - [-14.49853, 64.436397], - [-14.498713, 64.436036], - [-14.499399, 64.43598], - [-14.499796, 64.435827], - [-14.499925, 64.435429], - [-14.50015, 64.435369], - [-14.500193, 64.435262], - [-14.499496, 64.435128], - [-14.5003, 64.435124], - [-14.501513, 64.435068], - [-14.50176, 64.434943], - [-14.50184, 64.43456], - [-14.501534, 64.434411], - [-14.502511, 64.434258], - [-14.50383, 64.434221], - [-14.504506, 64.434221], - [-14.505279, 64.434137], - [-14.506298, 64.434142], - [-14.509248, 64.433475], - [-14.512478, 64.432461], - [-14.515321, 64.431054], - [-14.517982, 64.429794], - [-14.520878, 64.428405], - [-14.526071, 64.425617], - [-14.529333, 64.42369], - [-14.531929, 64.421782], - [-14.533495, 64.420058], - [-14.534397, 64.418243], - [-14.533903, 64.417789], - [-14.53291, 64.41753], - [-14.531843, 64.416658], - [-14.532187, 64.415889], - [-14.532122, 64.415333], - [-14.532315, 64.414657], - [-14.53267, 64.4142], - [-14.53268, 64.41369], - [-14.53268, 64.41344], - [-14.53269, 64.41294], - [-14.5327, 64.41267], - [-14.5327, 64.41216], - [-14.53271, 64.4119], - [-14.53271, 64.41165], - [-14.53242, 64.41152], - [-14.53006, 64.41125], - [-14.52977, 64.41113], - [-14.52977, 64.41087], - [-14.53037, 64.41062], - [-14.53098, 64.40934], - [-14.53128, 64.40909], - [-14.53246, 64.40896], - [-14.53306, 64.4087], - [-14.53365, 64.40858], - [-14.53396, 64.40807], - [-14.53398, 64.40756], - [-14.53398, 64.4073], - [-14.53398, 64.40705], - [-14.53398, 64.40679], - [-14.53428, 64.40654], - [-14.53487, 64.40666], - [-14.53546, 64.4068], - [-14.53547, 64.40577], - [-14.53666, 64.40578], - [-14.53696, 64.40527], - [-14.53756, 64.40476], - [-14.53817, 64.40374], - [-14.53817, 64.40348], - [-14.53818, 64.40322], - [-14.53877, 64.40297], - [-14.53877, 64.40272], - [-14.53879, 64.4022], - [-14.53939, 64.40169], - [-14.53948, 64.40153], - [-14.53909, 64.40144], - [-14.5391, 64.40118], - [-14.53969, 64.40118], - [-14.53989, 64.40135], - [-14.54028, 64.40131], - [-14.54146, 64.40132], - [-14.541763, 64.401073], - [-14.542575, 64.400942], - [-14.54324, 64.40094], - [-14.5454, 64.402052], - [-14.545629, 64.40288], - [-14.545207, 64.403627], - [-14.549671, 64.403988], - [-14.570957, 64.403107], - [-14.590354, 64.401402], - [-14.621768, 64.398731], - [-14.641853, 64.396803], - [-14.67258, 64.39339], - [-14.693695, 64.389977], - [-14.721332, 64.385154], - [-14.73661, 64.382334], - [-14.74588, 64.379513], - [-14.759613, 64.373351], - [-14.760986, 64.371347], - [-14.764076, 64.37001], - [-14.767509, 64.370679], - [-14.778667, 64.368228], - [-14.801841, 64.362881], - [-14.824961, 64.357055], - [-14.847409, 64.353857], - [-14.850682, 64.352419], - [-14.853058, 64.351105], - [-14.85979, 64.350305], - [-14.862561, 64.349848], - [-14.865729, 64.349276], - [-14.870656, 64.34858], - [-14.872989, 64.346591], - [-14.874441, 64.345848], - [-14.877344, 64.345848], - [-14.880644, 64.346077], - [-14.882492, 64.346419], - [-14.885, 64.346305], - [-14.889092, 64.346191], - [-14.891467, 64.345962], - [-14.894689, 64.345905], - [-14.897935, 64.345562], - [-14.903479, 64.346248], - [-14.907174, 64.345505], - [-14.91021, 64.343276], - [-14.912982, 64.343276], - [-14.912091, 64.340563], - [-14.910443, 64.339477], - [-14.908686, 64.338319], - [-14.907438, 64.335046], - [-14.910092, 64.331501], - [-14.916085, 64.328079], - [-14.924845, 64.32583], - [-14.932509, 64.325811], - [-14.935963, 64.324672], - [-14.939248, 64.322866], - [-14.943736, 64.320464], - [-14.947696, 64.31852], - [-14.953503, 64.316232], - [-14.958135, 64.313044], - [-14.964115, 64.312495], - [-14.964567, 64.312251], - [-14.964195, 64.311655], - [-14.963931, 64.311302], - [-14.963254, 64.310395], - [-14.965347, 64.309487], - [-14.962875, 64.307249], - [-14.966307, 64.303643], - [-14.970306, 64.301207], - [-14.97185, 64.300267], - [-14.97383, 64.299866], - [-14.972921, 64.298663], - [-14.972102, 64.29758], - [-14.971377, 64.296621], - [-14.956539, 64.296488], - [-14.939776, 64.293454], - [-14.921693, 64.294428], - [-14.914434, 64.295572], - [-14.904799, 64.29729], - [-14.900547, 64.297816], - [-14.899001, 64.295582], - [-14.901405, 64.293795], - [-14.904838, 64.291412], - [-14.907413, 64.289327], - [-14.90719, 64.28845], - [-14.90689, 64.28832], - [-14.90543, 64.28666], - [-14.90512, 64.28653], - [-14.90483, 64.28639], - [-14.90366, 64.28628], - [-14.90337, 64.28576], - [-14.9019, 64.28551], - [-14.9022, 64.28525], - [-14.9022, 64.285], - [-14.9019, 64.28448], - [-14.90152, 64.28457], - [-14.90131, 64.28474], - [-14.90072, 64.28474], - [-14.90111, 64.2844], - [-14.90014, 64.28308], - [-14.89955, 64.28282], - [-14.89867, 64.28218], - [-14.89838, 64.28192], - [-14.89956, 64.28193], - [-14.89956, 64.28244], - [-14.90015, 64.28193], - [-14.90132, 64.28205], - [-14.9025, 64.28205], - [-14.90368, 64.2818], - [-14.90427, 64.28167], - [-14.90427, 64.28115], - [-14.90368, 64.28129], - [-14.9031, 64.28129], - [-14.90279, 64.28115], - [-14.9025, 64.2809], - [-14.90545, 64.28129], - [-14.90603, 64.28155], - [-14.90662, 64.2818], - [-14.9078, 64.28155], - [-14.90898, 64.28155], - [-14.91251, 64.28104], - [-14.91428, 64.28078], - [-14.91487, 64.28066], - [-14.91487, 64.27938], - [-14.91781, 64.27938], - [-14.91781, 64.27989], - [-14.91899, 64.28002], - [-14.92134, 64.28002], - [-14.92311, 64.27976], - [-14.92429, 64.27951], - [-14.92546, 64.27925], - [-14.92605, 64.279], - [-14.92664, 64.27874], - [-14.92723, 64.27849], - [-14.92841, 64.27823], - [-14.9296, 64.27772], - [-14.93018, 64.27747], - [-14.93077, 64.27734], - [-14.93106, 64.27683], - [-14.93165, 64.27657], - [-14.93224, 64.27581], - [-14.93283, 64.27555], - [-14.93342, 64.27529], - [-14.93401, 64.27478], - [-14.9346, 64.27427], - [-14.93519, 64.27351], - [-14.93578, 64.27274], - [-14.93578, 64.27248], - [-14.93578, 64.27197], - [-14.93549, 64.27183], - [-14.9352, 64.26992], - [-14.93549, 64.26967], - [-14.93667, 64.26967], - [-14.93697, 64.2689], - [-14.93697, 64.26839], - [-14.93697, 64.26762], - [-14.93697, 64.26711], - [-14.93697, 64.26686], - [-14.935893, 64.265579], - [-14.935786, 64.264666], - [-14.935464, 64.263725], - [-14.934262, 64.263427], - [-14.934069, 64.262803], - [-14.934906, 64.262822], - [-14.935593, 64.262626], - [-14.935679, 64.262272], - [-14.934735, 64.262141], - [-14.93482, 64.261964], - [-14.934584, 64.261545], - [-14.9354, 64.261405], - [-14.936086, 64.26134], - [-14.936194, 64.261116], - [-14.936472, 64.260837], - [-14.937095, 64.260911], - [-14.937717, 64.260762], - [-14.937545, 64.260538], - [-14.938339, 64.259886], - [-14.939176, 64.259625], - [-14.939755, 64.259308], - [-14.940678, 64.259169], - [-14.941687, 64.259234], - [-14.942459, 64.259327], - [-14.942545, 64.259756], - [-14.942245, 64.260203], - [-14.942631, 64.260445], - [-14.942609, 64.260753], - [-14.941923, 64.261182], - [-14.94291, 64.261452], - [-14.944047, 64.26161], - [-14.945892, 64.261675], - [-14.948618, 64.261526], - [-14.950484, 64.261359], - [-14.952115, 64.261032], - [-14.95439, 64.260399], - [-14.956321, 64.259765], - [-14.957694, 64.259318], - [-14.95866, 64.258908], - [-14.960462, 64.25819], - [-14.961728, 64.25765], - [-14.962973, 64.256969], - [-14.964325, 64.256131], - [-14.96514, 64.255348], - [-14.965591, 64.254621], - [-14.965591, 64.25395], - [-14.965247, 64.2534], - [-14.96441, 64.253409], - [-14.963874, 64.253465], - [-14.963552, 64.253278], - [-14.963853, 64.253092], - [-14.963659, 64.252906], - [-14.963037, 64.252952], - [-14.962887, 64.252794], - [-14.962951, 64.252514], - [-14.963895, 64.252383], - [-14.964453, 64.252542], - [-14.964754, 64.252822], - [-14.965226, 64.252859], - [-14.965505, 64.252766], - [-14.965398, 64.252579], - [-14.965054, 64.252402], - [-14.96529, 64.252123], - [-14.966063, 64.251973], - [-14.966771, 64.252188], - [-14.967264, 64.251917], - [-14.968723, 64.250379], - [-14.969346, 64.249168], - [-14.969646, 64.247881], - [-14.969324, 64.246548], - [-14.968638, 64.245541], - [-14.968144, 64.245261], - [-14.966921, 64.24514], - [-14.965376, 64.245392], - [-14.963402, 64.245103], - [-14.962157, 64.244991], - [-14.961278, 64.244925], - [-14.960527, 64.24472], - [-14.959561, 64.244692], - [-14.959582, 64.244431], - [-14.959711, 64.244245], - [-14.958767, 64.24403], - [-14.957801, 64.244114], - [-14.956922, 64.243853], - [-14.957179, 64.243527], - [-14.957244, 64.243266], - [-14.957437, 64.242725], - [-14.957952, 64.242352], - [-14.95907, 64.24231], - [-14.95969, 64.242082], - [-14.95984, 64.241727], - [-14.95969, 64.241196], - [-14.960376, 64.241261], - [-14.960183, 64.240683], - [-14.960913, 64.240412], - [-14.960956, 64.240086], - [-14.960784, 64.239806], - [-14.96142, 64.23976], - [-14.963617, 64.239452], - [-14.964668, 64.239508], - [-14.96484, 64.23934], - [-14.966363, 64.239377], - [-14.966385, 64.23975], - [-14.966749, 64.239965], - [-14.96731, 64.23963], - [-14.968251, 64.239554], - [-14.969303, 64.239778], - [-14.969668, 64.239386], - [-14.972693, 64.239172], - [-14.972521, 64.239097], - [-14.970569, 64.238864], - [-14.97044, 64.238566], - [-14.97318, 64.23861], - [-14.97494, 64.23834], - [-14.97612, 64.23834], - [-14.977585, 64.238249], - [-14.979195, 64.238146], - [-14.982049, 64.238314], - [-14.982285, 64.238398], - [-14.982542, 64.238687], - [-14.982027, 64.23906], - [-14.982413, 64.239284], - [-14.98325, 64.239573], - [-14.984066, 64.23962], - [-14.984902, 64.239508], - [-14.985911, 64.239293], - [-14.985696, 64.238743], - [-14.985825, 64.238165], - [-14.986769, 64.238277], - [-14.986791, 64.238006], - [-14.986769, 64.237615], - [-14.988357, 64.237419], - [-14.989194, 64.237615], - [-14.989795, 64.238109], - [-14.991082, 64.238109], - [-14.992241, 64.238249], - [-14.992627, 64.238575], - [-14.992134, 64.238874], - [-14.990932, 64.239041], - [-14.991404, 64.239312], - [-14.992262, 64.239377], - [-14.993292, 64.239247], - [-14.993765, 64.239013], - [-14.994451, 64.23893], - [-14.995567, 64.239051], - [-14.996618, 64.238855], - [-14.996876, 64.238557], - [-14.996533, 64.238417], - [-14.996661, 64.238193], - [-14.997713, 64.237652], - [-14.998271, 64.237176], - [-15.00136, 64.237214], - [-15.002712, 64.237372], - [-15.003292, 64.237652], - [-15.002348, 64.23782], - [-15.002219, 64.23809], - [-15.00256, 64.23834], - [-15.004815, 64.238808], - [-15.007283, 64.239191], - [-15.01063, 64.239508], - [-15.013141, 64.239536], - [-15.015458, 64.239368], - [-15.0196, 64.23861], - [-15.02019, 64.23834], - [-15.02313, 64.23784], - [-15.02548, 64.2381], - [-15.02783, 64.23834], - [-15.03311, 64.23861], - [-15.04135, 64.23886], - [-15.05017, 64.23911], - [-15.05781, 64.23936], - [-15.06487, 64.23962], - [-15.07132, 64.23987], - [-15.07838, 64.24012], - [-15.09836, 64.24062], - [-15.10424, 64.24075], - [-15.116837, 64.240727], - [-15.120882, 64.240579], - [-15.123984, 64.24045], - [-15.126774, 64.240283], - [-15.128662, 64.240135], - [-15.131849, 64.239755], - [-15.134435, 64.239523], - [-15.13597, 64.23931], - [-15.13715, 64.23906], - [-15.13891, 64.2388], - [-15.14008, 64.23854], - [-15.14184, 64.23828], - [-15.14287, 64.237956], - [-15.144726, 64.237649], - [-15.14712, 64.237118], - [-15.155039, 64.23656], - [-15.158461, 64.236188], - [-15.159996, 64.236133], - [-15.161424, 64.235948], - [-15.163538, 64.235502], - [-15.166118, 64.234814], - [-15.166891, 64.234497], - [-15.167051, 64.233802], - [-15.167523, 64.233783], - [-15.167277, 64.235028], - [-15.167813, 64.235247], - [-15.168436, 64.235439], - [-15.169118, 64.235628], - [-15.170062, 64.235874], - [-15.171692, 64.236144], - [-15.176031, 64.236362], - [-15.178274, 64.236325], - [-15.180381, 64.236205], - [-15.183263, 64.23569], - [-15.18596, 64.235151], - [-15.187376, 64.234764], - [-15.188621, 64.234358], - [-15.189088, 64.234091], - [-15.189372, 64.233799], - [-15.189511, 64.233533], - [-15.189479, 64.233253], - [-15.189147, 64.233239], - [-15.188685, 64.233244], - [-15.188406, 64.23323], - [-15.188256, 64.233164], - [-15.188183, 64.233025], - [-15.190531, 64.232973], - [-15.191796, 64.232978], - [-15.192945, 64.233141], - [-15.193653, 64.233612], - [-15.193706, 64.234116], - [-15.192097, 64.235291], - [-15.189704, 64.236336], - [-15.187253, 64.237273], - [-15.1846, 64.238257], - [-15.184042, 64.238365], - [-15.182776, 64.238615], - [-15.182779, 64.238747], - [-15.182379, 64.238782], - [-15.181907, 64.238688], - [-15.18132, 64.23877], - [-15.180726, 64.238892], - [-15.180136, 64.239082], - [-15.179707, 64.239184], - [-15.178848, 64.239384], - [-15.177908, 64.239698], - [-15.177357, 64.239942], - [-15.177281, 64.240132], - [-15.177227, 64.240374], - [-15.177044, 64.240635], - [-15.176948, 64.240909], - [-15.176556, 64.241027], - [-15.176148, 64.241059], - [-15.175231, 64.240941], - [-15.17477, 64.24081], - [-15.173504, 64.240573], - [-15.172511, 64.240481], - [-15.1716, 64.240458], - [-15.171218, 64.240323], - [-15.168552, 64.24015], - [-15.16595, 64.24005], - [-15.162174, 64.240143], - [-15.16066, 64.24031], - [-15.1589, 64.240477], - [-15.157834, 64.240584], - [-15.157341, 64.2407], - [-15.15699, 64.240825], - [-15.15596, 64.24108], - [-15.15567, 64.24121], - [-15.155348, 64.241321], - [-15.155016, 64.241442], - [-15.154543, 64.241609], - [-15.15362, 64.24185], - [-15.15229, 64.241989], - [-15.151646, 64.24204], - [-15.15127, 64.24211], - [-15.15083, 64.242184], - [-15.150315, 64.242263], - [-15.148105, 64.242513], - [-15.1476, 64.24276], - [-15.147418, 64.242866], - [-15.14598, 64.24314], - [-15.144595, 64.243464], - [-15.143802, 64.243613], - [-15.142792, 64.243849], - [-15.141602, 64.244021], - [-15.140357, 64.244091], - [-15.13981, 64.244124], - [-15.138952, 64.244203], - [-15.138393, 64.244273], - [-15.137932, 64.244333], - [-15.137492, 64.244407], - [-15.135732, 64.244591], - [-15.13482, 64.24469], - [-15.134166, 64.244783], - [-15.13394, 64.24481], - [-15.132363, 64.244921], - [-15.1313, 64.24494], - [-15.130506, 64.244973], - [-15.128102, 64.245139], - [-15.126343, 64.245334], - [-15.125323, 64.245432], - [-15.12483, 64.24546], - [-15.12336, 64.245543], - [-15.121901, 64.245599], - [-15.119797, 64.24565], - [-15.1166, 64.24572], - [-15.11602, 64.24572], - [-15.11434, 64.245735], - [-15.112451, 64.245815], - [-15.110627, 64.245866], - [-15.10896, 64.24599], - [-15.108149, 64.246071], - [-15.10735, 64.246156], - [-15.106561, 64.246304], - [-15.106149, 64.246491], - [-15.105945, 64.246644], - [-15.10639, 64.247073], - [-15.106336, 64.247376], - [-15.10662, 64.247743], - [-15.106282, 64.247745], - [-15.105714, 64.247367], - [-15.105043, 64.247286], - [-15.104324, 64.24695], - [-15.103434, 64.246508], - [-15.101513, 64.246398], - [-15.099899, 64.246416], - [-15.098584, 64.246477], - [-15.096637, 64.246575], - [-15.095409, 64.246723], - [-15.094303, 64.246862], - [-15.09266, 64.247061], - [-15.091072, 64.247257], - [-15.089699, 64.247446], - [-15.087295, 64.247929], - [-15.085932, 64.2481], - [-15.081319, 64.247966], - [-15.079967, 64.247905], - [-15.079398, 64.247863], - [-15.078431, 64.247808], - [-15.077123, 64.247699], - [-15.076076, 64.247663], - [-15.07428, 64.24754], - [-15.07326, 64.247489], - [-15.071276, 64.247335], - [-15.069966, 64.247228], - [-15.068668, 64.247451], - [-15.06782, 64.24754], - [-15.064687, 64.24739], - [-15.062477, 64.247311], - [-15.062058, 64.247418], - [-15.061704, 64.247569], - [-15.061082, 64.247625], - [-15.060148, 64.2476], - [-15.059033, 64.247521], - [-15.056682, 64.247378], - [-15.052724, 64.247302], - [-15.048646, 64.247368], - [-15.045952, 64.247471], - [-15.042454, 64.247146], - [-15.038945, 64.246877], - [-15.03725, 64.2468], - [-15.035568, 64.246677], - [-15.034256, 64.246656], - [-15.033473, 64.246646], - [-15.032217, 64.246493], - [-15.031283, 64.246418], - [-15.030072, 64.24633], - [-15.028108, 64.246154], - [-15.02666, 64.24602], - [-15.025104, 64.245686], - [-15.024095, 64.245465], - [-15.02314, 64.24526], - [-15.02196, 64.245], - [-15.01961, 64.245], - [-15.01785, 64.24526], - [-15.01667, 64.24526], - [-15.01609, 64.24526], - [-15.01255, 64.24539], - [-15.01256, 64.24564], - [-15.01432, 64.24578], - [-15.01549, 64.2459], - [-15.0152, 64.24615], - [-15.01461, 64.24667], - [-15.01432, 64.24718], - [-15.014181, 64.247438], - [-15.015312, 64.247465], - [-15.01549, 64.24782], - [-15.01609, 64.24807], - [-15.016681, 64.248092], - [-15.016761, 64.24788], - [-15.017217, 64.247602], - [-15.017764, 64.24718], - [-15.018795, 64.246377], - [-15.019357, 64.24595], - [-15.020093, 64.245575], - [-15.020827, 64.245363], - [-15.022765, 64.245747], - [-15.023612, 64.246186], - [-15.02476, 64.246475], - [-15.025748, 64.246757], - [-15.026295, 64.246831], - [-15.027018, 64.24691], - [-15.028333, 64.246798], - [-15.029321, 64.246724], - [-15.031735, 64.247375], - [-15.033323, 64.248306], - [-15.0349, 64.24858], - [-15.03607, 64.24884], - [-15.03666, 64.24909], - [-15.03725, 64.24935], - [-15.037529, 64.249498], - [-15.03813, 64.25075], - [-15.038054, 64.251036], - [-15.037733, 64.251269], - [-15.037371, 64.251208], - [-15.037025, 64.251082], - [-15.036373, 64.251171], - [-15.03563, 64.251422], - [-15.035332, 64.251823], - [-15.035362, 64.252178], - [-15.034513, 64.253004], - [-15.034374, 64.253407], - [-15.033505, 64.253602], - [-15.033097, 64.253825], - [-15.032786, 64.254013], - [-15.032207, 64.254024], - [-15.031649, 64.254024], - [-15.030812, 64.254163], - [-15.030061, 64.253857], - [-15.029593, 64.25337], - [-15.028906, 64.253193], - [-15.028123, 64.253221], - [-15.027507, 64.253258], - [-15.026992, 64.253351], - [-15.026824, 64.253212], - [-15.026835, 64.252951], - [-15.02638, 64.25255], - [-15.02638, 64.25229], - [-15.02638, 64.25204], - [-15.02579, 64.25076], - [-15.02549, 64.25063], - [-15.02402, 64.2505], - [-15.02373, 64.25063], - [-15.02226, 64.25102], - [-15.02196, 64.25114], - [-15.02079, 64.25127], - [-15.020264, 64.251747], - [-15.020071, 64.25191], - [-15.019706, 64.252045], - [-15.01955, 64.252406], - [-15.01991, 64.2528], - [-15.020033, 64.253636], - [-15.02035, 64.254292], - [-15.019561, 64.254275], - [-15.01858, 64.25407], - [-15.018005, 64.253725], - [-15.016788, 64.253453], - [-15.01609, 64.2537], - [-15.014615, 64.253669], - [-15.013639, 64.253841], - [-15.012909, 64.254018], - [-15.012695, 64.25434], - [-15.01197, 64.25447], - [-15.010924, 64.254396], - [-15.01021, 64.25459], - [-15.00953, 64.254801], - [-15.008687, 64.255068], - [-15.008279, 64.255634], - [-15.008178, 64.256148], - [-15.00874, 64.25664], - [-15.008783, 64.256914], - [-15.009058, 64.257378], - [-15.00962, 64.25766], - [-15.010736, 64.257907], - [-15.012115, 64.257886], - [-15.013043, 64.258193], - [-15.013375, 64.258898], - [-15.013343, 64.259664], - [-15.013644, 64.260276], - [-15.014331, 64.260888], - [-15.014985, 64.261611], - [-15.015773, 64.262398], - [-15.016707, 64.262773], - [-15.016798, 64.263186], - [-15.017218, 64.26356], - [-15.01753, 64.263606], - [-15.018188, 64.263604], - [-15.019019, 64.263758], - [-15.019555, 64.263998], - [-15.019421, 64.264159], - [-15.019816, 64.265016], - [-15.020473, 64.26569], - [-15.021315, 64.26628], - [-15.022214, 64.267047], - [-15.022521, 64.26718], - [-15.023546, 64.267103], - [-15.02478, 64.267292], - [-15.026063, 64.266811], - [-15.026798, 64.266881], - [-15.026444, 64.267125], - [-15.026079, 64.267183], - [-15.025982, 64.26738], - [-15.026588, 64.267337], - [-15.026449, 64.267669], - [-15.025663, 64.267587], - [-15.025265, 64.2678], - [-15.025649, 64.268721], - [-15.026872, 64.269522], - [-15.027254, 64.270204], - [-15.027473, 64.270635], - [-15.027892, 64.270659], - [-15.028187, 64.270571], - [-15.029019, 64.270518], - [-15.029281, 64.27078], - [-15.028702, 64.271357], - [-15.029563, 64.271603], - [-15.03087, 64.271195], - [-15.030509, 64.271463], - [-15.030743, 64.271567], - [-15.031562, 64.271424], - [-15.031559, 64.271589], - [-15.031274, 64.271745], - [-15.031513, 64.271915], - [-15.032421, 64.271802], - [-15.032752, 64.271997], - [-15.032477, 64.272299], - [-15.032095, 64.272443], - [-15.032172, 64.27272], - [-15.032659, 64.273176], - [-15.033064, 64.27325], - [-15.033745, 64.273004], - [-15.033836, 64.273208], - [-15.034187, 64.273226], - [-15.035222, 64.273127], - [-15.036107, 64.273463], - [-15.036222, 64.273875], - [-15.035719, 64.274399], - [-15.035696, 64.274802], - [-15.036221, 64.274753], - [-15.036502, 64.274835], - [-15.036185, 64.275064], - [-15.03564, 64.275257], - [-15.035807, 64.275368], - [-15.036119, 64.275324], - [-15.036234, 64.275425], - [-15.035998, 64.275561], - [-15.037959, 64.276437], - [-15.039134, 64.277046], - [-15.040338, 64.277753], - [-15.040593, 64.277785], - [-15.040932, 64.277684], - [-15.041238, 64.277696], - [-15.041434, 64.277459], - [-15.042118, 64.277481], - [-15.042273, 64.277607], - [-15.041948, 64.278026], - [-15.042807, 64.278575], - [-15.043153, 64.278642], - [-15.043987, 64.27876], - [-15.044739, 64.278944], - [-15.044711, 64.279091], - [-15.046554, 64.280174], - [-15.047142, 64.280295], - [-15.047897, 64.279977], - [-15.048497, 64.279906], - [-15.048535, 64.280026], - [-15.048115, 64.280203], - [-15.049232, 64.281021], - [-15.050155, 64.281571], - [-15.050786, 64.281605], - [-15.052067, 64.282349], - [-15.05286, 64.28245], - [-15.053463, 64.282602], - [-15.054639, 64.282671], - [-15.056245, 64.283054], - [-15.05721, 64.283484], - [-15.058037, 64.283512], - [-15.059616, 64.283748], - [-15.06085, 64.284042], - [-15.0615, 64.284449], - [-15.063117, 64.284919], - [-15.06431, 64.285409], - [-15.065616, 64.285669], - [-15.06719, 64.286122], - [-15.067584, 64.286249], - [-15.06851, 64.28655], - [-15.070338, 64.286529], - [-15.07093, 64.286843], - [-15.071737, 64.286919], - [-15.073101, 64.287507], - [-15.074219, 64.287842], - [-15.07498, 64.28795], - [-15.076368, 64.288189], - [-15.077568, 64.288038], - [-15.078217, 64.288595], - [-15.078745, 64.288855], - [-15.079531, 64.289161], - [-15.079686, 64.289272], - [-15.080671, 64.289549], - [-15.081468, 64.289692], - [-15.082348, 64.289441], - [-15.082465, 64.289519], - [-15.082273, 64.289797], - [-15.083683, 64.289966], - [-15.084112, 64.289753], - [-15.084222, 64.289857], - [-15.084801, 64.289945], - [-15.08513, 64.289924], - [-15.085466, 64.289801], - [-15.086105, 64.289275], - [-15.086959, 64.289753], - [-15.086842, 64.289927], - [-15.087033, 64.290037], - [-15.088284, 64.290238], - [-15.08964, 64.290413], - [-15.09017, 64.290331], - [-15.090785, 64.290167], - [-15.091225, 64.290268], - [-15.093113, 64.290086], - [-15.094857, 64.290055], - [-15.095216, 64.28989], - [-15.095477, 64.289683], - [-15.096407, 64.289371], - [-15.096802, 64.289361], - [-15.09673, 64.289637], - [-15.096864, 64.289772], - [-15.096738, 64.290005], - [-15.097392, 64.290295], - [-15.0995, 64.290733], - [-15.101186, 64.291024], - [-15.101676, 64.29093], - [-15.101614, 64.290445], - [-15.101852, 64.290105], - [-15.102167, 64.289954], - [-15.102715, 64.290033], - [-15.102998, 64.290121], - [-15.103238, 64.290275], - [-15.103523, 64.290385], - [-15.103652, 64.290849], - [-15.103871, 64.290875], - [-15.10421, 64.290808], - [-15.104534, 64.290848], - [-15.104704, 64.291099], - [-15.105406, 64.291367], - [-15.107571, 64.291533], - [-15.108243, 64.291526], - [-15.108855, 64.291377], - [-15.109761, 64.290762], - [-15.110147, 64.290659], - [-15.110699, 64.290675], - [-15.111054, 64.290868], - [-15.111797, 64.291249], - [-15.112665, 64.29129], - [-15.11326, 64.29151], - [-15.114379, 64.291523], - [-15.114863, 64.291479], - [-15.115059, 64.291344], - [-15.115204, 64.291167], - [-15.115072, 64.29087], - [-15.115727, 64.290107], - [-15.116524, 64.289523], - [-15.116354, 64.289313], - [-15.116781, 64.288946], - [-15.117712, 64.28869], - [-15.118025, 64.288676], - [-15.118303, 64.28857], - [-15.118268, 64.288305], - [-15.117837, 64.288347], - [-15.117504, 64.288241], - [-15.117617, 64.28766], - [-15.117258, 64.287504], - [-15.116957, 64.28756], - [-15.116872, 64.287344], - [-15.117431, 64.287071], - [-15.117803, 64.286981], - [-15.118006, 64.286714], - [-15.117844, 64.286615], - [-15.117514, 64.286633], - [-15.117242, 64.286443], - [-15.117149, 64.286197], - [-15.117851, 64.285828], - [-15.11778, 64.285623], - [-15.117941, 64.285561], - [-15.118134, 64.285605], - [-15.118295, 64.285419], - [-15.118204, 64.284856], - [-15.119013, 64.284812], - [-15.119037, 64.284551], - [-15.119845, 64.284714], - [-15.119989, 64.284672], - [-15.119409, 64.284407], - [-15.119389, 64.284233], - [-15.119011, 64.284087], - [-15.118627, 64.284092], - [-15.118387, 64.284196], - [-15.118039, 64.28427], - [-15.117897, 64.284419], - [-15.117314, 64.284466], - [-15.11682, 64.284666], - [-15.116629, 64.284801], - [-15.116542, 64.284695], - [-15.116417, 64.28459], - [-15.116777, 64.284392], - [-15.11712, 64.284396], - [-15.1183, 64.283875], - [-15.119398, 64.283426], - [-15.119789, 64.283007], - [-15.119707, 64.282789], - [-15.119333, 64.282656], - [-15.119356, 64.282503], - [-15.119766, 64.282155], - [-15.120355, 64.282127], - [-15.120652, 64.282237], - [-15.121046, 64.282369], - [-15.121253, 64.282325], - [-15.12188, 64.282015], - [-15.12202, 64.281853], - [-15.122075, 64.281716], - [-15.121879, 64.281357], - [-15.121725, 64.281091], - [-15.121504, 64.280942], - [-15.120323, 64.280653], - [-15.119799, 64.280386], - [-15.119366, 64.280393], - [-15.119093, 64.280305], - [-15.118982, 64.279815], - [-15.118899, 64.279643], - [-15.119293, 64.279141], - [-15.119293, 64.278769], - [-15.119701, 64.278631], - [-15.120291, 64.278404], - [-15.120713, 64.27806], - [-15.121128, 64.277962], - [-15.121485, 64.278172], - [-15.121828, 64.278777], - [-15.121989, 64.279015], - [-15.12218, 64.279312], - [-15.123123, 64.279289], - [-15.123255, 64.278982], - [-15.123692, 64.278691], - [-15.124264, 64.278479], - [-15.124325, 64.278232], - [-15.124744, 64.277972], - [-15.124983, 64.277697], - [-15.124916, 64.27708], - [-15.125755, 64.276938], - [-15.126482, 64.276835], - [-15.126721, 64.276901], - [-15.127193, 64.276733], - [-15.127826, 64.276989], - [-15.128596, 64.276998], - [-15.129111, 64.276798], - [-15.130012, 64.276414], - [-15.130433, 64.276337], - [-15.130764, 64.276163], - [-15.131375, 64.275671], - [-15.131858, 64.275412], - [-15.132481, 64.274642], - [-15.132578, 64.274296], - [-15.132896, 64.274041], - [-15.132938, 64.273667], - [-15.133087, 64.273532], - [-15.133178, 64.273638], - [-15.133192, 64.27404], - [-15.133758, 64.27428], - [-15.134102, 64.274316], - [-15.134863, 64.274372], - [-15.13526, 64.27422], - [-15.135582, 64.273353], - [-15.1354, 64.273209], - [-15.135197, 64.272942], - [-15.134896, 64.272528], - [-15.135025, 64.272364], - [-15.135422, 64.272463], - [-15.136183, 64.272091], - [-15.13672, 64.27192], - [-15.13731, 64.271757], - [-15.137353, 64.2716], - [-15.13731, 64.27141], - [-15.137589, 64.271182], - [-15.138126, 64.271089], - [-15.138522, 64.271121], - [-15.139456, 64.270921], - [-15.139724, 64.270667], - [-15.140303, 64.270777], - [-15.140819, 64.270754], - [-15.141226, 64.270753], - [-15.141044, 64.270973], - [-15.140948, 64.271354], - [-15.141022, 64.271834], - [-15.140807, 64.272213], - [-15.140518, 64.271969], - [-15.14011, 64.271971], - [-15.139589, 64.272056], - [-15.139474, 64.272269], - [-15.139215, 64.272802], - [-15.138839, 64.273563], - [-15.13879, 64.27422], - [-15.139177, 64.274749], - [-15.139057, 64.275277], - [-15.139047, 64.276562], - [-15.1394, 64.27729], - [-15.1394, 64.277364], - [-15.138371, 64.277797], - [-15.137758, 64.278133], - [-15.137018, 64.278483], - [-15.136922, 64.278713], - [-15.138059, 64.278556], - [-15.138642, 64.278345], - [-15.139046, 64.278179], - [-15.139563, 64.278056], - [-15.139969, 64.2781], - [-15.13931, 64.27866], - [-15.13931, 64.27899], - [-15.140539, 64.278619], - [-15.141535, 64.278107], - [-15.142222, 64.277614], - [-15.14293, 64.27703], - [-15.14292, 64.27677], - [-15.142405, 64.276437], - [-15.141621, 64.276456], - [-15.14146, 64.27678], - [-15.14086, 64.27678], - [-15.140164, 64.275769], - [-15.140453, 64.275216], - [-15.140893, 64.274707], - [-15.141151, 64.273783], - [-15.141623, 64.273421], - [-15.143018, 64.273441], - [-15.143704, 64.273441], - [-15.14423, 64.273325], - [-15.145014, 64.27318], - [-15.145196, 64.272784], - [-15.14584, 64.272835], - [-15.146247, 64.273068], - [-15.146794, 64.273091], - [-15.147374, 64.272962], - [-15.147803, 64.272284], - [-15.148244, 64.271988], - [-15.149092, 64.271027], - [-15.149519, 64.271173], - [-15.14966, 64.27139], - [-15.149595, 64.271941], - [-15.14996, 64.27268], - [-15.14997, 64.27293], - [-15.150153, 64.273097], - [-15.15085, 64.27319], - [-15.150914, 64.2734], - [-15.151274, 64.27337], - [-15.15196, 64.273089], - [-15.153203, 64.272762], - [-15.154801, 64.272555], - [-15.155018, 64.272645], - [-15.155319, 64.272679], - [-15.155579, 64.27264], - [-15.155609, 64.27249], - [-15.155474, 64.27238], - [-15.155676, 64.272254], - [-15.156199, 64.272212], - [-15.156536, 64.272472], - [-15.156863, 64.272491], - [-15.156953, 64.272563], - [-15.157497, 64.272572], - [-15.157674, 64.27258], - [-15.156964, 64.272637], - [-15.156243, 64.272746], - [-15.156142, 64.272791], - [-15.156177, 64.272854], - [-15.15676, 64.273243], - [-15.15704, 64.27343], - [-15.157577, 64.273564], - [-15.158231, 64.273594], - [-15.158525, 64.273405], - [-15.158768, 64.273188], - [-15.159133, 64.273199], - [-15.159444, 64.273435], - [-15.15968, 64.27369], - [-15.15929, 64.27378], - [-15.158822, 64.273981], - [-15.157287, 64.273948], - [-15.156945, 64.274256], - [-15.156661, 64.274638], - [-15.156682, 64.274829], - [-15.156972, 64.274964], - [-15.157099, 64.275235], - [-15.157758, 64.275416], - [-15.158016, 64.275549], - [-15.158582, 64.275567], - [-15.158644, 64.27578], - [-15.158467, 64.275936], - [-15.158172, 64.276059], - [-15.157914, 64.276105], - [-15.157435, 64.276111], - [-15.157112, 64.276252], - [-15.15675, 64.27649], - [-15.156677, 64.276609], - [-15.156744, 64.276886], - [-15.156782, 64.276997], - [-15.157036, 64.277134], - [-15.157109, 64.277218], - [-15.15676, 64.277388], - [-15.156717, 64.277518], - [-15.156869, 64.277483], - [-15.157483, 64.277343], - [-15.158248, 64.277263], - [-15.1586, 64.277154], - [-15.158841, 64.277165], - [-15.159206, 64.277205], - [-15.159571, 64.277151], - [-15.159957, 64.277176], - [-15.16014, 64.277125], - [-15.160193, 64.277082], - [-15.160301, 64.276775], - [-15.160173, 64.276567], - [-15.161557, 64.27629], - [-15.162511, 64.276336], - [-15.163499, 64.276322], - [-15.164007, 64.2762], - [-15.164186, 64.275862], - [-15.164186, 64.275391], - [-15.164454, 64.275006], - [-15.164872, 64.27488], - [-15.165409, 64.274857], - [-15.165978, 64.274945], - [-15.166364, 64.275061], - [-15.166493, 64.275285], - [-15.166407, 64.275681], - [-15.16602, 64.276027], - [-15.165583, 64.276279], - [-15.164915, 64.276389], - [-15.164543, 64.276538], - [-15.164559, 64.276738], - [-15.164669, 64.27695], - [-15.164607, 64.277138], - [-15.164765, 64.277325], - [-15.16531, 64.277345], - [-15.165666, 64.27751], - [-15.165597, 64.277563], - [-15.165272, 64.277555], - [-15.165055, 64.27759], - [-15.164893, 64.277761], - [-15.16412, 64.27854], - [-15.16354, 64.27931], - [-15.16324, 64.27944], - [-15.16295, 64.27957], - [-15.162306, 64.279991], - [-15.16148, 64.28021], - [-15.16031, 64.28046], - [-15.158926, 64.28066], - [-15.15884, 64.28187], - [-15.15884, 64.28213], - [-15.15885, 64.28238], - [-15.15944, 64.28264], - [-15.15973, 64.28341], - [-15.1593, 64.283588], - [-15.158936, 64.283846], - [-15.158131, 64.283967], - [-15.157669, 64.284028], - [-15.15709, 64.28418], - [-15.1568, 64.2843], - [-15.156696, 64.284345], - [-15.1565, 64.28443], - [-15.156961, 64.284532], - [-15.158538, 64.28443], - [-15.159772, 64.284067], - [-15.160202, 64.283823], - [-15.160931, 64.283562], - [-15.161361, 64.283213], - [-15.1612, 64.28289], - [-15.160685, 64.282315], - [-15.160857, 64.282184], - [-15.161275, 64.282065], - [-15.161855, 64.281919], - [-15.162552, 64.281795], - [-15.163786, 64.281663], - [-15.165159, 64.281572], - [-15.16561, 64.281267], - [-15.165771, 64.280918], - [-15.166726, 64.280904], - [-15.167317, 64.280774], - [-15.167616, 64.280597], - [-15.16767, 64.28033], - [-15.16752, 64.279718], - [-15.168508, 64.279401], - [-15.169066, 64.279058], - [-15.169603, 64.278229], - [-15.170214, 64.277468], - [-15.170408, 64.277064], - [-15.17147, 64.27674], - [-15.173681, 64.276424], - [-15.174399, 64.276276], - [-15.175022, 64.276276], - [-15.175845, 64.276294], - [-15.176572, 64.276543], - [-15.176921, 64.276655], - [-15.177505, 64.276539], - [-15.177666, 64.276688], - [-15.177661, 64.276813], - [-15.17712, 64.277006], - [-15.176888, 64.277245], - [-15.176442, 64.277899], - [-15.176641, 64.278189], - [-15.176905, 64.27826], - [-15.17707, 64.278344], - [-15.177399, 64.27836], - [-15.177928, 64.278349], - [-15.178513, 64.278854], - [-15.179259, 64.279086], - [-15.180246, 64.279072], - [-15.18163, 64.278751], - [-15.182315, 64.278669], - [-15.18325, 64.2789], - [-15.183947, 64.279062], - [-15.184375, 64.279144], - [-15.184762, 64.27926], - [-15.18502, 64.27954], - [-15.18472, 64.279822], - [-15.184065, 64.280097], - [-15.18415, 64.28108], - [-15.18444, 64.28133], - [-15.184933, 64.281386], - [-15.18562, 64.2812], - [-15.186832, 64.28099], - [-15.187358, 64.280856], - [-15.18768, 64.280536], - [-15.188217, 64.280299], - [-15.18914, 64.28017], - [-15.18973, 64.27992], - [-15.19032, 64.27979], - [-15.19061, 64.27928], - [-15.1909, 64.27902], - [-15.19167, 64.278804], - [-15.192691, 64.278825], - [-15.193711, 64.278732], - [-15.19473, 64.27851], - [-15.19531, 64.27774], - [-15.195318, 64.277458], - [-15.196351, 64.276775], - [-15.197166, 64.276496], - [-15.197973, 64.276176], - [-15.198701, 64.275921], - [-15.199538, 64.275759], - [-15.200129, 64.275615], - [-15.20058, 64.27492], - [-15.200483, 64.274674], - [-15.1997, 64.27453], - [-15.19941, 64.27441], - [-15.19912, 64.27428], - [-15.19558, 64.27428], - [-15.19204, 64.27403], - [-15.19028, 64.27378], - [-15.1891, 64.27352], - [-15.18851, 64.27327], - [-15.18733, 64.27314], - [-15.186611, 64.272816], - [-15.185501, 64.272727], - [-15.1838, 64.27289], - [-15.183527, 64.272527], - [-15.183983, 64.272282], - [-15.184053, 64.271791], - [-15.183812, 64.2713], - [-15.184525, 64.271008], - [-15.184852, 64.27063], - [-15.18525, 64.26982], - [-15.184607, 64.269263], - [-15.182943, 64.269054], - [-15.182165, 64.26902], - [-15.181388, 64.269129], - [-15.180744, 64.269046], - [-15.180841, 64.2688], - [-15.181081, 64.268526], - [-15.181324, 64.268267], - [-15.182, 64.26778], - [-15.181131, 64.267822], - [-15.178309, 64.268187], - [-15.177429, 64.268313], - [-15.176485, 64.268146], - [-15.176124, 64.267986], - [-15.17612, 64.26779], - [-15.176355, 64.267665], - [-15.176629, 64.267598], - [-15.176941, 64.267532], - [-15.177626, 64.267458], - [-15.17784, 64.26725], - [-15.177797, 64.267026], - [-15.17729, 64.26688], - [-15.17699, 64.26676], - [-15.176473, 64.266336], - [-15.176369, 64.26576], - [-15.177194, 64.265336], - [-15.177578, 64.265219], - [-15.177498, 64.264931], - [-15.177227, 64.264702], - [-15.176387, 64.264571], - [-15.176344, 64.264319], - [-15.17668, 64.264163], - [-15.17628, 64.263951], - [-15.175349, 64.263789], - [-15.174853, 64.263406], - [-15.175372, 64.263077], - [-15.175972, 64.262772], - [-15.17667, 64.26242], - [-15.177238, 64.262121], - [-15.17801, 64.261826], - [-15.17843, 64.26165], - [-15.179305, 64.261193], - [-15.180013, 64.261184], - [-15.180598, 64.261325], - [-15.180168, 64.261616], - [-15.17917, 64.262133], - [-15.17962, 64.262461], - [-15.1805, 64.26292], - [-15.18109, 64.26318], - [-15.18138, 64.26343], - [-15.181627, 64.263379], - [-15.18197, 64.26274], - [-15.183483, 64.262325], - [-15.184627, 64.26247], - [-15.184906, 64.262666], - [-15.185318, 64.262748], - [-15.185784, 64.262614], - [-15.186209, 64.262448], - [-15.18682, 64.262146], - [-15.186767, 64.261871], - [-15.186692, 64.261692], - [-15.186907, 64.261357], - [-15.186038, 64.261217], - [-15.18578, 64.26087], - [-15.18578, 64.26061], - [-15.185716, 64.260346], - [-15.18489, 64.26023], - [-15.18371, 64.26023], - [-15.183076, 64.260094], - [-15.182739, 64.259483], - [-15.18371, 64.25908], - [-15.18415, 64.258786], - [-15.18488, 64.25831], - [-15.185589, 64.257989], - [-15.186179, 64.257771], - [-15.18664, 64.25754], - [-15.187349, 64.257298], - [-15.18781, 64.25703], - [-15.188647, 64.256718], - [-15.190053, 64.256458], - [-15.191447, 64.256449], - [-15.192223, 64.256487], - [-15.192778, 64.256803], - [-15.192545, 64.257293], - [-15.192016, 64.257752], - [-15.19135, 64.25805], - [-15.190921, 64.258276], - [-15.190374, 64.258583], - [-15.19047, 64.25882], - [-15.19047, 64.25933], - [-15.190405, 64.259755], - [-15.191596, 64.26016], - [-15.192164, 64.260466], - [-15.192594, 64.260604], - [-15.19373, 64.26099], - [-15.19401, 64.261049], - [-15.194525, 64.260679], - [-15.195051, 64.260395], - [-15.195463, 64.260117], - [-15.195184, 64.259642], - [-15.19548, 64.25932], - [-15.196042, 64.259208], - [-15.196515, 64.259246], - [-15.196157, 64.259487], - [-15.196099, 64.260087], - [-15.197276, 64.260112], - [-15.197976, 64.260055], - [-15.198411, 64.260078], - [-15.198851, 64.26016], - [-15.198862, 64.259939], - [-15.198969, 64.259761], - [-15.199312, 64.259374], - [-15.199796, 64.259153], - [-15.20037, 64.259071], - [-15.200779, 64.259022], - [-15.201125, 64.258988], - [-15.201458, 64.258925], - [-15.201776, 64.258782], - [-15.201751, 64.25868], - [-15.200863, 64.258228], - [-15.200746, 64.258005], - [-15.200315, 64.257736], - [-15.20009, 64.257677], - [-15.200106, 64.25759], - [-15.20041, 64.257536], - [-15.200662, 64.257387], - [-15.200649, 64.257274], - [-15.200991, 64.257046], - [-15.201468, 64.25688], - [-15.201456, 64.256762], - [-15.202147, 64.256714], - [-15.202954, 64.25673], - [-15.203443, 64.256583], - [-15.203506, 64.256346], - [-15.20337, 64.256303], - [-15.203208, 64.256321], - [-15.20269, 64.25651], - [-15.202303, 64.256464], - [-15.201859, 64.256335], - [-15.201546, 64.25607], - [-15.201107, 64.255938], - [-15.200414, 64.255961], - [-15.200123, 64.255894], - [-15.199508, 64.256035], - [-15.199017, 64.255952], - [-15.198764, 64.255827], - [-15.198352, 64.255732], - [-15.198211, 64.255552], - [-15.198632, 64.255191], - [-15.198536, 64.25509], - [-15.197735, 64.254891], - [-15.196756, 64.254871], - [-15.196459, 64.254693], - [-15.196073, 64.254572], - [-15.19598, 64.254471], - [-15.195011, 64.254838], - [-15.194754, 64.255201], - [-15.194508, 64.255266], - [-15.194582, 64.255395], - [-15.194318, 64.255422], - [-15.193904, 64.255744], - [-15.19386, 64.255878], - [-15.193716, 64.255922], - [-15.193613, 64.255896], - [-15.19369, 64.255948], - [-15.1936, 64.255977], - [-15.1935, 64.255953], - [-15.193527, 64.25603], - [-15.193379, 64.25602], - [-15.193355, 64.255902], - [-15.193234, 64.255981], - [-15.192628, 64.255939], - [-15.192002, 64.255789], - [-15.191844, 64.255672], - [-15.191614, 64.255652], - [-15.191643, 64.25559], - [-15.191487, 64.255511], - [-15.191669, 64.255489], - [-15.191932, 64.2556], - [-15.19257, 64.25533], - [-15.193223, 64.254887], - [-15.193523, 64.254813], - [-15.193747, 64.254673], - [-15.194177, 64.254595], - [-15.194872, 64.254324], - [-15.195576, 64.254142], - [-15.195596, 64.254023], - [-15.195981, 64.253934], - [-15.196065, 64.253654], - [-15.196501, 64.253548], - [-15.196764, 64.253545], - [-15.19677, 64.253479], - [-15.19647, 64.253067], - [-15.196173, 64.253137], - [-15.195225, 64.253174], - [-15.19506, 64.253563], - [-15.194818, 64.25363], - [-15.194599, 64.253627], - [-15.19426, 64.253502], - [-15.194164, 64.253152], - [-15.193941, 64.253146], - [-15.19384, 64.25294], - [-15.193429, 64.252936], - [-15.193298, 64.252864], - [-15.192756, 64.252739], - [-15.19232, 64.252886], - [-15.192057, 64.252898], - [-15.191918, 64.252957], - [-15.191516, 64.25285], - [-15.191117, 64.252359], - [-15.19115, 64.25214], - [-15.19139, 64.251943], - [-15.191884, 64.251855], - [-15.191001, 64.251827], - [-15.19069, 64.251781], - [-15.19063, 64.251732], - [-15.191242, 64.251669], - [-15.191593, 64.251547], - [-15.191667, 64.251559], - [-15.191685, 64.251725], - [-15.192504, 64.251775], - [-15.192878, 64.25131], - [-15.192812, 64.251179], - [-15.192295, 64.251065], - [-15.192319, 64.251013], - [-15.192157, 64.250949], - [-15.191863, 64.250943], - [-15.191113, 64.2507], - [-15.190804, 64.250678], - [-15.190805, 64.249958], - [-15.191152, 64.249695], - [-15.191112, 64.249609], - [-15.191453, 64.249071], - [-15.191218, 64.2488], - [-15.191247, 64.248735], - [-15.191455, 64.248757], - [-15.192178, 64.249284], - [-15.192844, 64.249354], - [-15.194204, 64.249179], - [-15.194481, 64.248729], - [-15.197515, 64.24909], - [-15.197501, 64.249228], - [-15.199532, 64.249335], - [-15.199518, 64.249234], - [-15.200413, 64.249299], - [-15.201076, 64.250174], - [-15.203083, 64.249818], - [-15.203191, 64.249903], - [-15.204145, 64.249853], - [-15.204187, 64.249909], - [-15.205149, 64.24983], - [-15.20583, 64.249792], - [-15.20581, 64.249582], - [-15.20551, 64.249458], - [-15.205551, 64.248692], - [-15.204956, 64.248705], - [-15.204153, 64.248723], - [-15.204096, 64.248704], - [-15.20399, 64.248667], - [-15.203893, 64.248402], - [-15.203397, 64.248148], - [-15.201006, 64.248394], - [-15.200817, 64.248456], - [-15.200847, 64.248525], - [-15.199865, 64.248642], - [-15.199732, 64.248543], - [-15.199167, 64.248463], - [-15.196602, 64.248235], - [-15.196461, 64.248099], - [-15.196218, 64.247997], - [-15.196103, 64.248037], - [-15.195825, 64.248027], - [-15.195371, 64.247954], - [-15.194447, 64.247596], - [-15.193952, 64.247517], - [-15.193661, 64.247502], - [-15.193635, 64.247952], - [-15.192531, 64.247946], - [-15.192544, 64.247844], - [-15.192437, 64.247834], - [-15.192218, 64.24767], - [-15.191516, 64.24762], - [-15.191188, 64.247481], - [-15.191046, 64.247329], - [-15.191125, 64.247279], - [-15.191263, 64.247285], - [-15.191553, 64.247526], - [-15.192085, 64.247614], - [-15.191912, 64.247149], - [-15.19188, 64.246873], - [-15.191936, 64.246463], - [-15.192243, 64.246257], - [-15.192413, 64.246133], - [-15.192497, 64.246014], - [-15.192746, 64.245907], - [-15.194099, 64.245808], - [-15.195088, 64.245685], - [-15.195613, 64.24573], - [-15.196401, 64.245598], - [-15.197401, 64.245322], - [-15.197416, 64.245156], - [-15.197534, 64.245058], - [-15.1977, 64.245063], - [-15.197876, 64.24519], - [-15.198075, 64.245149], - [-15.198625, 64.245062], - [-15.19961, 64.244875], - [-15.200012, 64.244777], - [-15.200553, 64.24463], - [-15.201146, 64.24438], - [-15.202309, 64.244096], - [-15.202936, 64.24384], - [-15.20375, 64.243688], - [-15.204677, 64.243197], - [-15.204862, 64.242961], - [-15.205058, 64.242729], - [-15.204886, 64.242598], - [-15.206335, 64.241918], - [-15.206682, 64.241941], - [-15.206916, 64.241998], - [-15.207248, 64.242007], - [-15.207688, 64.242012], - [-15.208155, 64.241944], - [-15.20852, 64.241872], - [-15.208783, 64.241728], - [-15.208686, 64.241557], - [-15.208708, 64.241369], - [-15.209121, 64.241333], - [-15.209237, 64.241304], - [-15.209367, 64.241359], - [-15.209576, 64.241295], - [-15.209807, 64.241289], - [-15.2101, 64.24114], - [-15.210188, 64.241161], - [-15.209968, 64.241268], - [-15.210043, 64.241278], - [-15.210687, 64.241089], - [-15.210947, 64.241023], - [-15.210979, 64.240987], - [-15.210856, 64.240972], - [-15.210966, 64.240951], - [-15.211325, 64.24096], - [-15.211604, 64.240911], - [-15.211932, 64.240949], - [-15.212339, 64.241107], - [-15.2125, 64.241377], - [-15.212157, 64.241571], - [-15.211997, 64.241659], - [-15.211822, 64.24169], - [-15.211627, 64.241863], - [-15.211594, 64.241964], - [-15.211637, 64.242063], - [-15.211783, 64.242116], - [-15.211992, 64.242282], - [-15.212008, 64.242431], - [-15.211941, 64.242555], - [-15.211737, 64.242678], - [-15.211523, 64.242856], - [-15.211394, 64.242944], - [-15.211198, 64.242869], - [-15.211042, 64.242869], - [-15.210755, 64.242978], - [-15.210587, 64.243142], - [-15.210517, 64.243273], - [-15.210473, 64.24348], - [-15.21075, 64.243624], - [-15.210924, 64.243612], - [-15.211149, 64.243656], - [-15.211289, 64.243702], - [-15.211361, 64.243754], - [-15.212018, 64.243669], - [-15.212051, 64.243747], - [-15.211302, 64.243833], - [-15.211093, 64.244638], - [-15.210465, 64.244941], - [-15.210197, 64.244983], - [-15.20991, 64.24467], - [-15.209561, 64.244632], - [-15.208882, 64.244824], - [-15.208547, 64.244994], - [-15.208482, 64.245087], - [-15.20853, 64.245256], - [-15.209038, 64.245322], - [-15.208988, 64.245418], - [-15.209809, 64.245462], - [-15.210267, 64.245378], - [-15.210437, 64.245447], - [-15.210253, 64.245614], - [-15.210175, 64.245869], - [-15.2097, 64.247904], - [-15.209665, 64.248209], - [-15.209823, 64.248373], - [-15.209772, 64.248445], - [-15.209609, 64.248452], - [-15.209527, 64.24856], - [-15.20962, 64.248697], - [-15.209391, 64.248976], - [-15.209644, 64.249056], - [-15.209029, 64.249119], - [-15.208953, 64.249253], - [-15.208727, 64.249225], - [-15.20853, 64.249326], - [-15.208613, 64.249856], - [-15.208694, 64.249979], - [-15.209099, 64.250251], - [-15.209453, 64.250328], - [-15.20993, 64.250389], - [-15.210352, 64.250397], - [-15.210752, 64.250345], - [-15.211865, 64.25015], - [-15.212118, 64.250157], - [-15.212418, 64.250156], - [-15.212607, 64.250101], - [-15.212966, 64.250075], - [-15.213148, 64.250101], - [-15.213504, 64.250328], - [-15.213673, 64.250344], - [-15.21395, 64.250283], - [-15.214189, 64.250265], - [-15.214326, 64.250324], - [-15.214385, 64.250321], - [-15.214701, 64.250265], - [-15.215201, 64.250138], - [-15.215512, 64.250054], - [-15.215709, 64.25013], - [-15.215777, 64.250277], - [-15.215839, 64.250321], - [-15.215821, 64.250435], - [-15.215658, 64.250592], - [-15.215564, 64.250727], - [-15.215431, 64.250935], - [-15.215439, 64.251025], - [-15.215539, 64.25115], - [-15.215669, 64.251366], - [-15.215376, 64.252843], - [-15.215297, 64.252894], - [-15.215113, 64.252903], - [-15.215018, 64.252974], - [-15.215011, 64.25308], - [-15.214637, 64.253351], - [-15.21463, 64.253547], - [-15.214663, 64.253678], - [-15.214968, 64.253892], - [-15.215775, 64.254253], - [-15.215793, 64.254335], - [-15.215545, 64.254427], - [-15.215464, 64.254581], - [-15.215631, 64.254819], - [-15.216032, 64.254963], - [-15.215826, 64.255028], - [-15.215887, 64.255112], - [-15.215584, 64.255095], - [-15.215457, 64.255131], - [-15.215505, 64.255236], - [-15.215118, 64.255249], - [-15.214975, 64.255353], - [-15.216383, 64.255188], - [-15.215823, 64.255349], - [-15.21513, 64.255397], - [-15.214784, 64.255548], - [-15.214418, 64.255548], - [-15.214328, 64.255592], - [-15.214572, 64.255888], - [-15.214987, 64.256198], - [-15.215227, 64.256182], - [-15.2152, 64.256306], - [-15.215007, 64.256412], - [-15.215218, 64.256448], - [-15.215136, 64.256507], - [-15.215307, 64.256624], - [-15.215183, 64.256698], - [-15.215395, 64.256709], - [-15.21541, 64.256973], - [-15.215292, 64.256828], - [-15.215234, 64.256842], - [-15.215297, 64.25706], - [-15.214923, 64.257165], - [-15.214771, 64.257309], - [-15.21508, 64.257518], - [-15.215394, 64.257628], - [-15.215935, 64.257503], - [-15.216321, 64.257526], - [-15.216609, 64.257448], - [-15.216358, 64.257711], - [-15.21649, 64.257743], - [-15.216237, 64.257929], - [-15.216324, 64.258142], - [-15.216236, 64.258405], - [-15.216327, 64.258581], - [-15.216633, 64.258713], - [-15.216929, 64.258598], - [-15.217166, 64.258601], - [-15.21738, 64.258865], - [-15.217983, 64.25891], - [-15.218115, 64.25905], - [-15.217911, 64.259207], - [-15.217148, 64.259511], - [-15.217189, 64.25972], - [-15.216836, 64.259748], - [-15.216437, 64.259899], - [-15.21527, 64.25992], - [-15.214853, 64.260053], - [-15.2146, 64.260041], - [-15.214317, 64.260119], - [-15.214128, 64.260355], - [-15.214197, 64.260413], - [-15.214484, 64.26047], - [-15.214536, 64.260556], - [-15.214436, 64.260671], - [-15.214147, 64.260764], - [-15.214138, 64.260836], - [-15.21424, 64.260922], - [-15.214379, 64.260928], - [-15.217545, 64.260425], - [-15.217989, 64.260394], - [-15.217852, 64.260482], - [-15.216793, 64.260655], - [-15.21666, 64.26072], - [-15.216369, 64.2607], - [-15.215833, 64.260787], - [-15.2162, 64.260979], - [-15.21618, 64.261146], - [-15.21599, 64.261297], - [-15.215465, 64.261431], - [-15.215623, 64.261683], - [-15.215776, 64.261762], - [-15.215963, 64.261775], - [-15.216074, 64.261867], - [-15.215866, 64.262101], - [-15.215925, 64.262325], - [-15.216342, 64.262544], - [-15.216928, 64.262729], - [-15.217748, 64.262641], - [-15.21833, 64.262454], - [-15.218653, 64.262205], - [-15.218994, 64.262166], - [-15.219084, 64.262085], - [-15.219326, 64.262097], - [-15.21977, 64.261946], - [-15.220049, 64.261913], - [-15.220263, 64.261944], - [-15.220669, 64.261881], - [-15.220886, 64.261904], - [-15.221147, 64.261842], - [-15.221353, 64.261999], - [-15.221156, 64.262034], - [-15.221068, 64.261948], - [-15.221018, 64.262013], - [-15.220855, 64.262026], - [-15.220863, 64.261943], - [-15.220774, 64.261932], - [-15.220344, 64.261976], - [-15.220467, 64.262134], - [-15.220465, 64.262311], - [-15.220342, 64.262314], - [-15.220059, 64.26216], - [-15.219992, 64.262191], - [-15.219909, 64.262167], - [-15.219877, 64.262228], - [-15.219599, 64.262289], - [-15.21971, 64.262465], - [-15.219584, 64.262615], - [-15.219258, 64.262705], - [-15.219288, 64.262806], - [-15.219587, 64.263012], - [-15.220482, 64.263019], - [-15.220601, 64.263064], - [-15.220512, 64.263384], - [-15.220406, 64.263436], - [-15.220446, 64.263575], - [-15.220176, 64.263604], - [-15.22011, 64.263783], - [-15.219868, 64.263763], - [-15.219759, 64.263558], - [-15.219462, 64.26349], - [-15.219183, 64.2635], - [-15.218856, 64.263616], - [-15.218645, 64.263597], - [-15.218463, 64.263694], - [-15.218164, 64.263613], - [-15.218024, 64.263678], - [-15.217664, 64.263544], - [-15.217458, 64.263592], - [-15.217497, 64.263646], - [-15.217398, 64.263697], - [-15.217141, 64.263687], - [-15.216992, 64.2636], - [-15.216744, 64.263586], - [-15.216438, 64.263688], - [-15.21639, 64.263844], - [-15.21608, 64.263811], - [-15.215631, 64.264029], - [-15.215521, 64.264163], - [-15.215612, 64.264373], - [-15.215464, 64.264504], - [-15.215552, 64.264558], - [-15.215432, 64.26481], - [-15.215316, 64.264855], - [-15.214977, 64.26487], - [-15.214715, 64.265053], - [-15.214245, 64.265061], - [-15.213674, 64.265507], - [-15.213911, 64.265618], - [-15.213613, 64.26582], - [-15.213206, 64.265932], - [-15.212893, 64.265956], - [-15.212267, 64.265867], - [-15.210259, 64.265772], - [-15.20964, 64.26582], - [-15.20905, 64.26583], - [-15.20846, 64.26608], - [-15.20729, 64.26634], - [-15.20699, 64.26647], - [-15.207, 64.26672], - [-15.20759, 64.26749], - [-15.20789, 64.26775], - [-15.21024, 64.26762], - [-15.21082, 64.26736], - [-15.21318, 64.2671], - [-15.21435, 64.26697], - [-15.21435, 64.26748], - [-15.21318, 64.26762], - [-15.21289, 64.26774], - [-15.2126, 64.26825], - [-15.21318, 64.26812], - [-15.21554, 64.26799], - [-15.21524, 64.26825], - [-15.21466, 64.26901], - [-15.21437, 64.26978], - [-15.21261, 64.26991], - [-15.21202, 64.27017], - [-15.21026, 64.27017], - [-15.20938, 64.27056], - [-15.20939, 64.27158], - [-15.20969, 64.27235], - [-15.21027, 64.27222], - [-15.21086, 64.27222], - [-15.21145, 64.27234], - [-15.21145, 64.2726], - [-15.2091, 64.2726], - [-15.20881, 64.27312], - [-15.20852, 64.27337], - [-15.20969, 64.2735], - [-15.21028, 64.27375], - [-15.21087, 64.27388], - [-15.21059, 64.27465], - [-15.21029, 64.27477], - [-15.20794, 64.27491], - [-15.207189, 64.275017], - [-15.20677, 64.27542], - [-15.20706, 64.27568], - [-15.20707, 64.2767], - [-15.206245, 64.276927], - [-15.20501, 64.27707], - [-15.20472, 64.27721], - [-15.20472, 64.27747], - [-15.20795, 64.277458], - [-15.208047, 64.277937], - [-15.209174, 64.278054], - [-15.208594, 64.27837], - [-15.208691, 64.278589], - [-15.20944, 64.279], - [-15.209474, 64.279218], - [-15.20856, 64.27951], - [-15.208187, 64.279627], - [-15.2068, 64.28002], - [-15.2068, 64.28053], - [-15.20445, 64.28067], - [-15.20328, 64.28092], - [-15.20298, 64.28105], - [-15.20299, 64.28156], - [-15.20329, 64.28233], - [-15.20387, 64.2822], - [-15.20446, 64.28194], - [-15.20505, 64.28169], - [-15.20622, 64.28143], - [-15.208, 64.28117], - [-15.20915, 64.28117], - [-15.21034, 64.28131], - [-15.21005, 64.28181], - [-15.20976, 64.28206], - [-15.21152, 64.28206], - [-15.21182, 64.28257], - [-15.21212, 64.28283], - [-15.21271, 64.2827], - [-15.21329, 64.28244], - [-15.21388, 64.28244], - [-15.21447, 64.2827], - [-15.21565, 64.28282], - [-15.21537, 64.28385], - [-15.21478, 64.2841], - [-15.21449, 64.28462], - [-15.21331, 64.28462], - [-15.21332, 64.28615], - [-15.21273, 64.28602], - [-15.21214, 64.28603], - [-15.21185, 64.28615], - [-15.21156, 64.28667], - [-15.21038, 64.28667], - [-15.2101, 64.28744], - [-15.20921, 64.28782], - [-15.20627, 64.28808], - [-15.2051, 64.28834], - [-15.20039, 64.28886], - [-15.19922, 64.28937], - [-15.19745, 64.28963], - [-15.197285, 64.289665], - [-15.19628, 64.28988], - [-15.19598, 64.29001], - [-15.19569, 64.29027], - [-15.19746, 64.29014], - [-15.19804, 64.28988], - [-15.20098, 64.28962], - [-15.20216, 64.28936], - [-15.20393, 64.28923], - [-15.20393, 64.28974], - [-15.20452, 64.28962], - [-15.20628, 64.28949], - [-15.20629, 64.29025], - [-15.20511, 64.29026], - [-15.20482, 64.29102], - [-15.20424, 64.29154], - [-15.20394, 64.29166], - [-15.20277, 64.29179], - [-15.20277, 64.2923], - [-15.20158, 64.29231], - [-15.20129, 64.29282], - [-15.20102, 64.29384], - [-15.19983, 64.29384], - [-15.19983, 64.29435], - [-15.19866, 64.29436], - [-15.19868, 64.29512], - [-15.19631, 64.29514], - [-15.19573, 64.29616], - [-15.1975, 64.29616], - [-15.1975, 64.29666], - [-15.19868, 64.29653], - [-15.20044, 64.29627], - [-15.2028, 64.29614], - [-15.2028, 64.29589], - [-15.20162, 64.29576], - [-15.20132, 64.29563], - [-15.20073, 64.29512], - [-15.20043, 64.29461], - [-15.20161, 64.29448], - [-15.2022, 64.29435], - [-15.20336, 64.29282], - [-15.20513, 64.29268], - [-15.20631, 64.29256], - [-15.2066, 64.29204], - [-15.21071, 64.29025], - [-15.21129, 64.28974], - [-15.21188, 64.28922], - [-15.21246, 64.28897], - [-15.21246, 64.28845], - [-15.21216, 64.2882], - [-15.21334, 64.2882], - [-15.21333, 64.28769], - [-15.217559, 64.287317], - [-15.21922, 64.28717], - [-15.21922, 64.28768], - [-15.22158, 64.28793], - [-15.22138, 64.28776], - [-15.22099, 64.28767], - [-15.22099, 64.28741], - [-15.22157, 64.28741], - [-15.22178, 64.28759], - [-15.22334, 64.28741], - [-15.22363, 64.2869], - [-15.22422, 64.28639], - [-15.22451, 64.28626], - [-15.22353, 64.28622], - [-15.22333, 64.28639], - [-15.22274, 64.28639], - [-15.22274, 64.28614], - [-15.22313, 64.28605], - [-15.22333, 64.28588], - [-15.22509, 64.28588], - [-15.2248, 64.28537], - [-15.22479, 64.28409], - [-15.22419, 64.28358], - [-15.2236, 64.28332], - [-15.2233, 64.28256], - [-15.227181, 64.281749], - [-15.228501, 64.281828], - [-15.22907, 64.28275], - [-15.22922, 64.283053], - [-15.229477, 64.283411], - [-15.229874, 64.283607], - [-15.23038, 64.28395], - [-15.23155, 64.28369], - [-15.232095, 64.283388], - [-15.232664, 64.282643], - [-15.23389, 64.28152], - [-15.23419, 64.281446], - [-15.234784, 64.281605], - [-15.235459, 64.28175], - [-15.23625, 64.28151], - [-15.236727, 64.281263], - [-15.237898, 64.280755], - [-15.238524, 64.280656], - [-15.239061, 64.280786], - [-15.239321, 64.280631], - [-15.240036, 64.280434], - [-15.240784, 64.280137], - [-15.241045, 64.280081], - [-15.241248, 64.279855], - [-15.241598, 64.279791], - [-15.242102, 64.279805], - [-15.242565, 64.280052], - [-15.242549, 64.280165], - [-15.242297, 64.280282], - [-15.241874, 64.28031], - [-15.241565, 64.280617], - [-15.24011, 64.281143], - [-15.240012, 64.281407], - [-15.240329, 64.281609], - [-15.240492, 64.281951], - [-15.240394, 64.282064], - [-15.240939, 64.282275], - [-15.241037, 64.282318], - [-15.24116, 64.282353], - [-15.24142, 64.282649], - [-15.241331, 64.282939], - [-15.241087, 64.282991], - [-15.24081, 64.28291], - [-15.240095, 64.283044], - [-15.239615, 64.283253], - [-15.238737, 64.283916], - [-15.238883, 64.284181], - [-15.239062, 64.284286], - [-15.239388, 64.284322], - [-15.239688, 64.284505], - [-15.23929, 64.284604], - [-15.239249, 64.284798], - [-15.238843, 64.284964], - [-15.238558, 64.284988], - [-15.23829, 64.285098], - [-15.237948, 64.285151], - [-15.237704, 64.285376], - [-15.237233, 64.285546], - [-15.236851, 64.285835], - [-15.237054, 64.28611], - [-15.23716, 64.286435], - [-15.236566, 64.286664], - [-15.236225, 64.286936], - [-15.235574, 64.287229], - [-15.23512, 64.28765], - [-15.23483, 64.28842], - [-15.23483, 64.28868], - [-15.23543, 64.2897], - [-15.23602, 64.28995], - [-15.23661, 64.29046], - [-15.23691, 64.29072], - [-15.23573, 64.29072], - [-15.23545, 64.2915], - [-15.23546, 64.29277], - [-15.23546, 64.29302], - [-15.23517, 64.29354], - [-15.23693, 64.29354], - [-15.23723, 64.29404], - [-15.23782, 64.2943], - [-15.23812, 64.29506], - [-15.23929, 64.29519], - [-15.23989, 64.29545], - [-15.24166, 64.29558], - [-15.24137, 64.29532], - [-15.24136, 64.29506], - [-15.24195, 64.29429], - [-15.24224, 64.29404], - [-15.24106, 64.29391], - [-15.24075, 64.29378], - [-15.24075, 64.2925], - [-15.24016, 64.29199], - [-15.24016, 64.29148], - [-15.23956, 64.29046], - [-15.23955, 64.28995], - [-15.23896, 64.28969], - [-15.23895, 64.28867], - [-15.23954, 64.28816], - [-15.24012, 64.2879], - [-15.24042, 64.28764], - [-15.24395, 64.28764], - [-15.24395, 64.28815], - [-15.24278, 64.28815], - [-15.24308, 64.28917], - [-15.24308, 64.28969], - [-15.24308, 64.28994], - [-15.24369, 64.29148], - [-15.24428, 64.29199], - [-15.24428, 64.29224], - [-15.24429, 64.29275], - [-15.24458, 64.29301], - [-15.24517, 64.29288], - [-15.24635, 64.29288], - [-15.24694, 64.29288], - [-15.24812, 64.29275], - [-15.24812, 64.29326], - [-15.25106, 64.29325], - [-15.25137, 64.29402], - [-15.25167, 64.29479], - [-15.25285, 64.29478], - [-15.25285, 64.2953], - [-15.25403, 64.29543], - [-15.25521, 64.29567], - [-15.2558, 64.2958], - [-15.25551, 64.29606], - [-15.25492, 64.29632], - [-15.25463, 64.29683], - [-15.2564, 64.2967], - [-15.25698, 64.29657], - [-15.25729, 64.29759], - [-15.25788, 64.29836], - [-15.25819, 64.29912], - [-15.25936, 64.29899], - [-15.25995, 64.29886], - [-15.25996, 64.29989], - [-15.26055, 64.29976], - [-15.26115, 64.29976], - [-15.26173, 64.29988], - [-15.26144, 64.3004], - [-15.26144, 64.30065], - [-15.26174, 64.30091], - [-15.26212, 64.30082], - [-15.26232, 64.30065], - [-15.26291, 64.30065], - [-15.26291, 64.3009], - [-15.26253, 64.30099], - [-15.26233, 64.30116], - [-15.26409, 64.30116], - [-15.2638, 64.30141], - [-15.26381, 64.30167], - [-15.2644, 64.30193], - [-15.26441, 64.30346], - [-15.26471, 64.30371], - [-15.26647, 64.303904], - [-15.26707, 64.30397], - [-15.26677, 64.30346], - [-15.26677, 64.3032], - [-15.26706, 64.30294], - [-15.26824, 64.30294], - [-15.26823, 64.30243], - [-15.26941, 64.30268], - [-15.26912, 64.30294], - [-15.26853, 64.3032], - [-15.26884, 64.30499], - [-15.27003, 64.30498], - [-15.27003, 64.30447], - [-15.2712, 64.30473], - [-15.27091, 64.30498], - [-15.27091, 64.30524], - [-15.27209, 64.30575], - [-15.27269, 64.30626], - [-15.27299, 64.30677], - [-15.27181, 64.30677], - [-15.27181, 64.30703], - [-15.27299, 64.30702], - [-15.27271, 64.3083], - [-15.27271, 64.30856], - [-15.27301, 64.30881], - [-15.27359, 64.30881], - [-15.27359, 64.3083], - [-15.27477, 64.3083], - [-15.27447, 64.30779], - [-15.27446, 64.30702], - [-15.27445, 64.30625], - [-15.27386, 64.30574], - [-15.27268, 64.30523], - [-15.27208, 64.30472], - [-15.27149, 64.30447], - [-15.27089, 64.30396], - [-15.27089, 64.30319], - [-15.26969, 64.3014], - [-15.26939, 64.30064], - [-15.27057, 64.30063], - [-15.27056, 64.30012], - [-15.2688, 64.30013], - [-15.26671, 64.29706], - [-15.2664, 64.29629], - [-15.26523, 64.29629], - [-15.26492, 64.29579], - [-15.26491, 64.29374], - [-15.26431, 64.29323], - [-15.26431, 64.29297], - [-15.2649, 64.29272], - [-15.26548, 64.2922], - [-15.26577, 64.29169], - [-15.26812, 64.29194], - [-15.26812, 64.29246], - [-15.2699, 64.29245], - [-15.2699, 64.29296], - [-15.27108, 64.29309], - [-15.27167, 64.29322], - [-15.27197, 64.29373], - [-15.27198, 64.29424], - [-15.27228, 64.29526], - [-15.27346, 64.29539], - [-15.27405, 64.29564], - [-15.27464, 64.29564], - [-15.27523, 64.29538], - [-15.27738, 64.29516], - [-15.27758, 64.29474], - [-15.2764, 64.29474], - [-15.27669, 64.29449], - [-15.27698, 64.29396], - [-15.27757, 64.2941], - [-15.27816, 64.29435], - [-15.27935, 64.29448], - [-15.27935, 64.29474], - [-15.27817, 64.29474], - [-15.27846, 64.29498], - [-15.27875, 64.29512], - [-15.27779, 64.29534], - [-15.27729, 64.29551], - [-15.27671, 64.29602], - [-15.27671, 64.29628], - [-15.27702, 64.29679], - [-15.27583, 64.29679], - [-15.27584, 64.2973], - [-15.27702, 64.2973], - [-15.27673, 64.29755], - [-15.27673, 64.29807], - [-15.27732, 64.29832], - [-15.27762, 64.29858], - [-15.27879, 64.29857], - [-15.27879, 64.29806], - [-15.27997, 64.2982], - [-15.28174, 64.29831], - [-15.28145, 64.29857], - [-15.28056, 64.29895], - [-15.27998, 64.29895], - [-15.27939, 64.29883], - [-15.27939, 64.2996], - [-15.2788, 64.2996], - [-15.27851, 64.29909], - [-15.27821, 64.29896], - [-15.27762, 64.29883], - [-15.27793, 64.30037], - [-15.27823, 64.30062], - [-15.27881, 64.30049], - [-15.2794, 64.30024], - [-15.28116, 64.29998], - [-15.28293, 64.29984], - [-15.28294, 64.30061], - [-15.28412, 64.30074], - [-15.28471, 64.30086], - [-15.28442, 64.30112], - [-15.28442, 64.30138], - [-15.28472, 64.30189], - [-15.2859, 64.30188], - [-15.28591, 64.30291], - [-15.28708, 64.30291], - [-15.28709, 64.30367], - [-15.28886, 64.3038], - [-15.29063, 64.30405], - [-15.29299, 64.30417], - [-15.29269, 64.30392], - [-15.2921, 64.30315], - [-15.2915, 64.3029], - [-15.29091, 64.30213], - [-15.29031, 64.30162], - [-15.2903, 64.30034], - [-15.29, 64.30009], - [-15.29235, 64.29983], - [-15.29206, 64.29957], - [-15.29147, 64.29932], - [-15.29146, 64.29906], - [-15.29234, 64.29829], - [-15.29293, 64.29842], - [-15.29411, 64.29854], - [-15.2941, 64.29803], - [-15.29528, 64.29803], - [-15.29557, 64.29752], - [-15.29616, 64.29726], - [-15.29615, 64.297], - [-15.29586, 64.29689], - [-15.29556, 64.29675], - [-15.29526, 64.29662], - [-15.29468, 64.29662], - [-15.29291, 64.29689], - [-15.29233, 64.29714], - [-15.29174, 64.29727], - [-15.29173, 64.2965], - [-15.29291, 64.2965], - [-15.29261, 64.29624], - [-15.29231, 64.29573], - [-15.29171, 64.29587], - [-15.29056, 64.29587], - [-15.29025, 64.29574], - [-15.28995, 64.29523], - [-15.28877, 64.29523], - [-15.28877, 64.29472], - [-15.28995, 64.29485], - [-15.29054, 64.2951], - [-15.29171, 64.2951], - [-15.29231, 64.29497], - [-15.29231, 64.29471], - [-15.29112, 64.29471], - [-15.29141, 64.29446], - [-15.29141, 64.29395], - [-15.29111, 64.29343], - [-15.28993, 64.29331], - [-15.28934, 64.29331], - [-15.28817, 64.29357], - [-15.28581, 64.2937], - [-15.2861, 64.29344], - [-15.2861, 64.29319], - [-15.28551, 64.29293], - [-15.28492, 64.29242], - [-15.28462, 64.29191], - [-15.28285, 64.29192], - [-15.28283, 64.29089], - [-15.28166, 64.29102], - [-15.28107, 64.29102], - [-15.28078, 64.2909], - [-15.28048, 64.29039], - [-15.2793, 64.29026], - [-15.27812, 64.29001], - [-15.27782, 64.28988], - [-15.27781, 64.28886], - [-15.27751, 64.28835], - [-15.27928, 64.28834], - [-15.27898, 64.28809], - [-15.27868, 64.28758], - [-15.27986, 64.28745], - [-15.28104, 64.28744], - [-15.2828, 64.28718], - [-15.29104, 64.28717], - [-15.29163, 64.28741], - [-15.29399, 64.28793], - [-15.29576, 64.28793], - [-15.29635, 64.2878], - [-15.29635, 64.28831], - [-15.29694, 64.28818], - [-15.29812, 64.28818], - [-15.29989, 64.2883], - [-15.29989, 64.28881], - [-15.30166, 64.28881], - [-15.30196, 64.28932], - [-15.30255, 64.28958], - [-15.30315, 64.2906], - [-15.30374, 64.29111], - [-15.30434, 64.29136], - [-15.30463, 64.29162], - [-15.30581, 64.29161], - [-15.30582, 64.29213], - [-15.30699, 64.29225], - [-15.30758, 64.29252], - [-15.30877, 64.29276], - [-15.31053, 64.29275], - [-15.31112, 64.2925], - [-15.31701, 64.29249], - [-15.31759, 64.29223], - [-15.32112, 64.29171], - [-15.32229, 64.29171], - [-15.32525, 64.29207], - [-15.32525, 64.2926], - [-15.32643, 64.29272], - [-15.32702, 64.29297], - [-15.32761, 64.29309], - [-15.32762, 64.29361], - [-15.32998, 64.29386], - [-15.33028, 64.29463], - [-15.33088, 64.29488], - [-15.33088, 64.29514], - [-15.33031, 64.29668], - [-15.32973, 64.29744], - [-15.32915, 64.29821], - [-15.32884, 64.29833], - [-15.32769, 64.29847], - [-15.32769, 64.29951], - [-15.32651, 64.29951], - [-15.32682, 64.30001], - [-15.32682, 64.30026], - [-15.32624, 64.30103], - [-15.32625, 64.30206], - [-15.32655, 64.30257], - [-15.32537, 64.3027], - [-15.32508, 64.30283], - [-15.32479, 64.30295], - [-15.32243, 64.30309], - [-15.32245, 64.3036], - [-15.32362, 64.30373], - [-15.3248, 64.30398], - [-15.32598, 64.3041], - [-15.32628, 64.30461], - [-15.32629, 64.30512], - [-15.32599, 64.30525], - [-15.3257, 64.30538], - [-15.32512, 64.30589], - [-15.32482, 64.30602], - [-15.32453, 64.30615], - [-15.32424, 64.30628], - [-15.32394, 64.30641], - [-15.32365, 64.30654], - [-15.32336, 64.30667], - [-15.32277, 64.30718], - [-15.32248, 64.30731], - [-15.32219, 64.30744], - [-15.32161, 64.30794], - [-15.32131, 64.30808], - [-15.31837, 64.30821], - [-15.31867, 64.30872], - [-15.31897, 64.30923], - [-15.32015, 64.30936], - [-15.32133, 64.30961], - [-15.32251, 64.30974], - [-15.32223, 64.31102], - [-15.32165, 64.31153], - [-15.32166, 64.31255], - [-15.32225, 64.31281], - [-15.32284, 64.31306], - [-15.32314, 64.31332], - [-15.32137, 64.31318], - [-15.32019, 64.31307], - [-15.3199, 64.31358], - [-15.31961, 64.31371], - [-15.31843, 64.31384], - [-15.31814, 64.31436], - [-15.31756, 64.31512], - [-15.317, 64.31717], - [-15.31641, 64.31768], - [-15.31583, 64.31819], - [-15.31554, 64.31832], - [-15.31436, 64.31857], - [-15.31318, 64.31884], - [-15.31201, 64.31897], - [-15.31231, 64.31973], - [-15.31261, 64.32024], - [-15.31438, 64.32011], - [-15.31732, 64.31985], - [-15.3185, 64.31959], - [-15.31967, 64.31933], - [-15.32085, 64.31907], - [-15.32203, 64.31882], - [-15.32438, 64.31868], - [-15.32439, 64.3192], - [-15.32557, 64.31919], - [-15.32587, 64.31996], - [-15.32648, 64.32124], - [-15.32708, 64.3225], - [-15.32769, 64.32379], - [-15.32829, 64.32532], - [-15.3289, 64.3266], - [-15.3295, 64.32788], - [-15.33011, 64.32916], - [-15.33011, 64.32941], - [-15.33012, 64.33044], - [-15.33072, 64.33096], - [-15.33133, 64.33171], - [-15.33193, 64.33324], - [-15.33256, 64.33734], - [-15.33288, 64.33887], - [-15.32816, 64.33901], - [-15.32787, 64.33914], - [-15.32757, 64.33926], - [-15.32728, 64.33939], - [-15.32729, 64.34016], - [-15.32789, 64.34118], - [-15.32849, 64.34169], - [-15.32849, 64.3422], - [-15.3285, 64.34272], - [-15.3288, 64.34323], - [-15.33235, 64.34335], - [-15.33292, 64.3436], - [-15.33412, 64.34385], - [-15.3353, 64.34398], - [-15.3353, 64.3445], - [-15.33589, 64.34436], - [-15.33766, 64.34436], - [-15.33944, 64.34461], - [-15.34121, 64.34486], - [-15.34357, 64.34511], - [-15.34475, 64.34536], - [-15.34535, 64.34562], - [-15.34594, 64.34574], - [-15.34624, 64.34626], - [-15.34684, 64.34651], - [-15.34743, 64.34702], - [-15.34803, 64.34779], - [-15.34863, 64.34855], - [-15.34922, 64.34881], - [-15.34983, 64.34983], - [-15.35042, 64.35034], - [-15.35102, 64.35085], - [-15.35162, 64.35136], - [-15.35191, 64.35161], - [-15.3531, 64.35174], - [-15.35369, 64.35186], - [-15.35399, 64.35237], - [-15.35458, 64.35263], - [-15.35488, 64.35288], - [-15.35606, 64.35288], - [-15.35636, 64.35339], - [-15.35665, 64.3539], - [-15.35725, 64.35377], - [-15.35843, 64.35377], - [-15.35903, 64.35402], - [-15.35962, 64.35415], - [-15.35963, 64.35466], - [-15.36081, 64.35479], - [-15.3614, 64.35491], - [-15.367556, 64.353854], - [-15.368886, 64.354081], - [-15.37347, 64.35258], - [-15.37405, 64.35206], - [-15.37463, 64.35156], - [-15.37521, 64.35053], - [-15.37521, 64.35028], - [-15.3749, 64.34977], - [-15.37667, 64.34976], - [-15.37696, 64.34925], - [-15.37755, 64.34899], - [-15.37814, 64.34873], - [-15.37872, 64.34822], - [-15.37931, 64.34796], - [-15.37989, 64.34771], - [-15.38047, 64.34719], - [-15.38045, 64.34515], - [-15.37984, 64.34413], - [-15.37922, 64.34259], - [-15.37863, 64.34157], - [-15.37833, 64.34143], - [-15.37715, 64.34119], - [-15.37685, 64.34106], - [-15.37655, 64.34094], - [-15.37626, 64.34081], - [-15.37566, 64.34004], - [-15.37505, 64.33902], - [-15.37476, 64.3389], - [-15.37446, 64.33877], - [-15.37416, 64.33864], - [-15.37387, 64.33851], - [-15.37357, 64.33839], - [-15.37327, 64.33826], - [-15.37266, 64.33647], - [-15.37236, 64.33596], - [-15.37295, 64.33609], - [-15.37354, 64.33621], - [-15.37324, 64.3357], - [-15.37264, 64.33519], - [-15.37204, 64.33443], - [-15.37174, 64.33417], - [-15.37292, 64.33417], - [-15.37293, 64.33494], - [-15.37411, 64.33493], - [-15.37441, 64.33544], - [-15.37471, 64.3357], - [-15.37529, 64.33557], - [-15.37589, 64.33557], - [-15.37825, 64.33556], - [-15.37884, 64.3353], - [-15.37942, 64.33505], - [-15.38119, 64.33479], - [-15.38177, 64.33453], - [-15.38295, 64.3344], - [-15.38294, 64.33389], - [-15.38354, 64.33402], - [-15.38413, 64.33427], - [-15.38649, 64.33452], - [-15.38825, 64.33451], - [-15.38885, 64.33438], - [-15.38883, 64.33386], - [-15.38943, 64.334], - [-15.39179, 64.33399], - [-15.39238, 64.33386], - [-15.39208, 64.33361], - [-15.39178, 64.3331], - [-15.39237, 64.33322], - [-15.39296, 64.33335], - [-15.39297, 64.33386], - [-15.39356, 64.33373], - [-15.39414, 64.33347], - [-15.39473, 64.33334], - [-15.39443, 64.33258], - [-15.39442, 64.33207], - [-15.39441, 64.33181], - [-15.39441, 64.33156], - [-15.39469, 64.33079], - [-15.39352, 64.33092], - [-15.39234, 64.33105], - [-15.39234, 64.33054], - [-15.39056, 64.33054], - [-15.39054, 64.32926], - [-15.39172, 64.32913], - [-15.39231, 64.329], - [-15.39231, 64.32875], - [-15.39113, 64.32875], - [-15.39082, 64.32773], - [-15.39022, 64.32722], - [-15.38992, 64.32709], - [-15.38963, 64.32696], - [-15.38933, 64.32684], - [-15.38815, 64.32658], - [-15.38697, 64.32646], - [-15.38726, 64.3262], - [-15.38785, 64.32595], - [-15.38842, 64.32492], - [-15.389, 64.32441], - [-15.389, 64.32415], - [-15.38899, 64.32339], - [-15.38899, 64.32287], - [-15.38838, 64.32237], - [-15.38838, 64.32185], - [-15.38896, 64.32135], - [-15.38925, 64.32108], - [-15.39043, 64.32095], - [-15.39101, 64.32082], - [-15.39072, 64.32057], - [-15.39071, 64.32031], - [-15.39071, 64.3198], - [-15.3907, 64.31955], - [-15.39129, 64.31929], - [-15.39158, 64.31903], - [-15.39336, 64.3189], - [-15.39451, 64.31864], - [-15.3957, 64.31838], - [-15.39628, 64.31812], - [-15.39687, 64.31787], - [-15.39745, 64.31774], - [-15.39744, 64.31698], - [-15.39686, 64.3171], - [-15.39626, 64.3171], - [-15.39598, 64.31698], - [-15.39567, 64.31685], - [-15.39538, 64.31672], - [-15.39478, 64.31621], - [-15.39478, 64.31595], - [-15.39507, 64.3157], - [-15.39566, 64.31582], - [-15.39625, 64.31595], - [-15.39624, 64.31493], - [-15.39506, 64.31506], - [-15.39447, 64.31519], - [-15.39446, 64.31468], - [-15.39328, 64.31468], - [-15.39357, 64.31391], - [-15.39357, 64.31366], - [-15.39326, 64.31314], - [-15.39208, 64.31315], - [-15.39178, 64.31213], - [-15.39118, 64.31136], - [-15.39087, 64.31123], - [-15.38911, 64.31124], - [-15.38794, 64.3115], - [-15.38764, 64.31162], - [-15.38736, 64.31214], - [-15.38677, 64.31201], - [-15.38558, 64.31176], - [-15.38529, 64.31163], - [-15.38499, 64.3115], - [-15.38322, 64.31138], - [-15.38294, 64.31215], - [-15.38266, 64.31343], - [-15.38384, 64.31343], - [-15.38355, 64.31368], - [-15.38356, 64.31419], - [-15.38356, 64.31445], - [-15.38357, 64.31496], - [-15.38416, 64.31547], - [-15.38446, 64.31573], - [-15.38328, 64.31586], - [-15.38299, 64.31599], - [-15.3827, 64.31611], - [-15.38211, 64.31611], - [-15.38093, 64.31599], - [-15.38093, 64.3165], - [-15.37975, 64.31638], - [-15.37858, 64.31638], - [-15.37681, 64.31638], - [-15.37651, 64.31626], - [-15.37621, 64.31613], - [-15.37592, 64.316], - [-15.37562, 64.31588], - [-15.37533, 64.31575], - [-15.37503, 64.31562], - [-15.37473, 64.31549], - [-15.37444, 64.31538], - [-15.37414, 64.31524], - [-15.37385, 64.31511], - [-15.37356, 64.31499], - [-15.37295, 64.31422], - [-15.37234, 64.31294], - [-15.37204, 64.31218], - [-15.37086, 64.31218], - [-15.37086, 64.31269], - [-15.36969, 64.31269], - [-15.36999, 64.31321], - [-15.37029, 64.31346], - [-15.36911, 64.31359], - [-15.36852, 64.31372], - [-15.36851, 64.31321], - [-15.36793, 64.31334], - [-15.36734, 64.31334], - [-15.36704, 64.31321], - [-15.36645, 64.3127], - [-15.36615, 64.31257], - [-15.36585, 64.31245], - [-15.36526, 64.31194], - [-15.36466, 64.31117], - [-15.36406, 64.31041], - [-15.36376, 64.31027], - [-15.36347, 64.31015], - [-15.36317, 64.3099], - [-15.36435, 64.31002], - [-15.36494, 64.31015], - [-15.36523, 64.30964], - [-15.36581, 64.30912], - [-15.3661, 64.30861], - [-15.36492, 64.30861], - [-15.36491, 64.30836], - [-15.36668, 64.30835], - [-15.36697, 64.30784], - [-15.36755, 64.30733], - [-15.36754, 64.30656], - [-15.36694, 64.3058], - [-15.36664, 64.30529], - [-15.36546, 64.30529], - [-15.36546, 64.30478], - [-15.36428, 64.30478], - [-15.36397, 64.30401], - [-15.36397, 64.30376], - [-15.36397, 64.3035], - [-15.36366, 64.30299], - [-15.36484, 64.30312], - [-15.36544, 64.30324], - [-15.36514, 64.30273], - [-15.36512, 64.30145], - [-15.36541, 64.3012], - [-15.36718, 64.30132], - [-15.36895, 64.30144], - [-15.36894, 64.30119], - [-15.36776, 64.30106], - [-15.36747, 64.30094], - [-15.36717, 64.30082], - [-15.36688, 64.30068], - [-15.36658, 64.30055], - [-15.36628, 64.30043], - [-15.36568, 64.29941], - [-15.36508, 64.29864], - [-15.36508, 64.29838], - [-15.36507, 64.29813], - [-15.36507, 64.29762], - [-15.36565, 64.29736], - [-15.36623, 64.29633], - [-15.36623, 64.29608], - [-15.36562, 64.2948], - [-15.36562, 64.29456], - [-15.3656, 64.29327], - [-15.3656, 64.29301], - [-15.36559, 64.29276], - [-15.36529, 64.29225], - [-15.36647, 64.29224], - [-15.36617, 64.29199], - [-15.36616, 64.29148], - [-15.36645, 64.29071], - [-15.36762, 64.2907], - [-15.36791, 64.29019], - [-15.3685, 64.28994], - [-15.36908, 64.28917], - [-15.36936, 64.28865], - [-15.37054, 64.28865], - [-15.37053, 64.28788], - [-15.37171, 64.28788], - [-15.3717, 64.28711], - [-15.37347, 64.28724], - [-15.37406, 64.28749], - [-15.37465, 64.28749], - [-15.37582, 64.28723], - [-15.37641, 64.2871], - [-15.3761, 64.28608], - [-15.37609, 64.28506], - [-15.37666, 64.28429], - [-15.37725, 64.28403], - [-15.37754, 64.28377], - [-15.37872, 64.28377], - [-15.37871, 64.28326], - [-15.38107, 64.28338], - [-15.38284, 64.28364], - [-15.38343, 64.28376], - [-15.38373, 64.28427], - [-15.38432, 64.28452], - [-15.38492, 64.28503], - [-15.38551, 64.28529], - [-15.38581, 64.2858], - [-15.38757, 64.28566], - [-15.38816, 64.28554], - [-15.38786, 64.28477], - [-15.38726, 64.284], - [-15.38725, 64.28375], - [-15.38725, 64.28324], - [-15.38694, 64.28311], - [-15.38665, 64.28298], - [-15.38635, 64.28246], - [-15.38517, 64.28235], - [-15.38488, 64.28222], - [-15.38458, 64.28209], - [-15.38399, 64.28209], - [-15.3834, 64.28222], - [-15.3831, 64.28171], - [-15.38281, 64.2816], - [-15.38251, 64.28146], - [-15.38251, 64.28095], - [-15.38308, 64.28018], - [-15.38366, 64.27967], - [-15.38425, 64.2794], - [-15.38453, 64.27813], - [-15.38629, 64.27825], - [-15.38747, 64.27825], - [-15.38864, 64.27799], - [-15.38923, 64.27786], - [-15.38893, 64.27735], - [-15.388751, 64.277278], - [-15.38863, 64.27723], - [-15.38804, 64.27723], - [-15.38775, 64.27735], - [-15.38746, 64.27748], - [-15.38687, 64.27748], - [-15.38628, 64.27749], - [-15.38511, 64.27762], - [-15.38509, 64.27659], - [-15.38392, 64.27672], - [-15.38333, 64.27673], - [-15.38215, 64.27673], - [-15.38155, 64.27686], - [-15.38155, 64.27636], - [-15.37979, 64.27622], - [-15.37861, 64.2761], - [-15.37831, 64.27559], - [-15.380425, 64.274638], - [-15.382491, 64.273821], - [-15.388222, 64.273701], - [-15.392807, 64.271774], - [-15.396506, 64.270506], - [-15.399723, 64.267616], - [-15.400869, 64.266042], - [-15.404642, 64.264501], - [-15.407822, 64.266428], - [-15.411057, 64.267814], - [-15.411984, 64.269111], - [-15.413893, 64.270621], - [-15.415881, 64.270667], - [-15.417057, 64.269668], - [-15.4169, 64.268226], - [-15.41622, 64.267363], - [-15.41724, 64.265274], - [-15.418391, 64.26407], - [-15.421607, 64.262844], - [-15.425347, 64.261401], - [-15.429152, 64.259235], - [-15.433996, 64.255348], - [-15.437325, 64.253886], - [-15.43947, 64.251476], - [-15.442133, 64.250786], - [-15.447088, 64.249484], - [-15.451674, 64.248922], - [-15.454078, 64.247363], - [-15.454891, 64.245226], - [-15.454965, 64.243314], - [-15.457126, 64.241594], - [-15.453206, 64.240051], - [-15.439226, 64.240212], - [-15.429778, 64.240697], - [-15.40938, 64.241584], - [-15.39777, 64.243129], - [-15.381102, 64.24191], - [-15.371322, 64.242069], - [-15.372054, 64.24475], - [-15.36651, 64.248182], - [-15.363529, 64.247591], - [-15.360809, 64.244069], - [-15.354324, 64.24366], - [-15.347054, 64.24316], - [-15.33643, 64.24231], - [-15.33524, 64.24206], - [-15.32818, 64.24182], - [-15.32524, 64.24183], - [-15.32466, 64.24183], - [-15.32114, 64.24158], - [-15.31936, 64.24133], - [-15.31877, 64.24133], - [-15.3176, 64.24133], - [-15.31642, 64.24134], - [-15.31583, 64.24134], - [-15.31525, 64.24134], - [-15.31407, 64.24134], - [-15.3129, 64.24134], - [-15.31231, 64.24134], - [-15.31113, 64.24135], - [-15.31054, 64.24135], - [-15.307803, 64.241471], - [-15.30643, 64.24161], - [-15.30467, 64.24162], - [-15.30408, 64.24162], - [-15.302073, 64.241396], - [-15.299617, 64.241221], - [-15.29659, 64.240989], - [-15.293296, 64.240712], - [-15.291194, 64.240536], - [-15.289444, 64.240351], - [-15.28643, 64.240084], - [-15.28173, 64.23962], - [-15.27467, 64.23936], - [-15.26879, 64.23913], - [-15.26232, 64.23889], - [-15.25645, 64.23863], - [-15.250851, 64.238275], - [-15.24528, 64.2384], - [-15.24234, 64.23841], - [-15.23999, 64.23867], - [-15.237683, 64.238949], - [-15.2353, 64.23944], - [-15.23295, 64.23996], - [-15.230943, 64.240583], - [-15.23061, 64.24086], - [-15.22958, 64.241205], - [-15.229182, 64.24202], - [-15.22944, 64.242409], - [-15.229086, 64.242675], - [-15.228602, 64.24279], - [-15.22797, 64.242778], - [-15.227101, 64.242517], - [-15.225748, 64.242557], - [-15.22562, 64.2424], - [-15.22562, 64.24189], - [-15.225148, 64.241427], - [-15.224, 64.24101], - [-15.22311, 64.24081], - [-15.222401, 64.240875], - [-15.221404, 64.241051], - [-15.22091, 64.24113], - [-15.22062, 64.24125], - [-15.219408, 64.241045], - [-15.21842, 64.240729], - [-15.217649, 64.240598], - [-15.217274, 64.240397], - [-15.217016, 64.240156], - [-15.216512, 64.239951], - [-15.215814, 64.239678], - [-15.215074, 64.239368], - [-15.214194, 64.239079], - [-15.213636, 64.238888], - [-15.212971, 64.238541], - [-15.212693, 64.238398], - [-15.211652, 64.237995], - [-15.211211, 64.237782], - [-15.210805, 64.237488], - [-15.210483, 64.237028], - [-15.210118, 64.236406], - [-15.210032, 64.235807], - [-15.20999, 64.23565], - [-15.20964, 64.235254], - [-15.208971, 64.235097], - [-15.208498, 64.234968], - [-15.207425, 64.234763], - [-15.206932, 64.234578], - [-15.206406, 64.234471], - [-15.20528, 64.23437], - [-15.20499, 64.23425], - [-15.20469, 64.23413], - [-15.2044, 64.23399], - [-15.20411, 64.23386], - [-15.202533, 64.233876], - [-15.202126, 64.23376], - [-15.201385, 64.233593], - [-15.20072, 64.233217], - [-15.20041, 64.232999], - [-15.200098, 64.232776], - [-15.19998, 64.23259], - [-15.198911, 64.232133], - [-15.198474, 64.231685], - [-15.197082, 64.231243], - [-15.195772, 64.230998], - [-15.19487, 64.230801], - [-15.19279, 64.230466], - [-15.191657, 64.230967], - [-15.190275, 64.23103], - [-15.18909, 64.230664], - [-15.185952, 64.230371], - [-15.186149, 64.229837], - [-15.188103, 64.229914], - [-15.191533, 64.229002], - [-15.193382, 64.228234], - [-15.194692, 64.228441], - [-15.194972, 64.229069], - [-15.193019, 64.229819], - [-15.196926, 64.230529], - [-15.198287, 64.230764], - [-15.19997, 64.23131], - [-15.20174, 64.23156], - [-15.2035, 64.23182], - [-15.20527, 64.23207], - [-15.207789, 64.232414], - [-15.210624, 64.232581], - [-15.215871, 64.232681], - [-15.218797, 64.232731], - [-15.222117, 64.232672], - [-15.22525, 64.23282], - [-15.22819, 64.23306], - [-15.23113, 64.23331], - [-15.23347, 64.23356], - [-15.235797, 64.233615], - [-15.238319, 64.233716], - [-15.241012, 64.233686], - [-15.244842, 64.233897], - [-15.247879, 64.234203], - [-15.250239, 64.234267], - [-15.25333, 64.234544], - [-15.257568, 64.234823], - [-15.262923, 64.235156], - [-15.267, 64.235406], - [-15.270573, 64.235656], - [-15.281239, 64.236102], - [-15.28404, 64.23629], - [-15.29286, 64.23653], - [-15.29639, 64.23677], - [-15.30697, 64.23675], - [-15.31696, 64.23673], - [-15.3293, 64.2367], - [-15.33928, 64.23643], - [-15.34515, 64.23641], - [-15.34986, 64.23666], - [-15.35574, 64.236598], - [-15.35814, 64.236612], - [-15.361524, 64.236596], - [-15.36454, 64.236554], - [-15.367246, 64.236655], - [-15.36945, 64.236587], - [-15.371828, 64.236495], - [-15.374129, 64.236562], - [-15.377416, 64.236663], - [-15.379349, 64.236562], - [-15.382384, 64.236604], - [-15.387082, 64.236503], - [-15.389769, 64.236444], - [-15.393713, 64.236318], - [-15.396497, 64.236234], - [-15.400074, 64.236176], - [-15.403438, 64.236108], - [-15.406415, 64.236075], - [-15.411925, 64.235898], - [-15.416449, 64.23573], - [-15.418266, 64.235722], - [-15.421398, 64.23568], - [-15.424143, 64.235655], - [-15.42745, 64.235478], - [-15.428861, 64.235486], - [-15.430311, 64.235377], - [-15.431877, 64.235285], - [-15.434854, 64.235335], - [-15.43729, 64.235192], - [-15.439494, 64.235033], - [-15.442162, 64.234713], - [-15.444849, 64.234629], - [-15.447749, 64.23447], - [-15.448812, 64.23447], - [-15.451307, 64.234268], - [-15.453491, 64.234226], - [-15.455231, 64.234066], - [-15.456507, 64.233957], - [-15.458382, 64.234049], - [-15.460412, 64.233949], - [-15.463003, 64.233495], - [-15.465613, 64.232772], - [-15.46716, 64.232242], - [-15.468339, 64.231999], - [-15.46975, 64.231738], - [-15.470949, 64.231444], - [-15.472979, 64.230965], - [-15.474487, 64.230368], - [-15.475975, 64.229486], - [-15.476807, 64.228603], - [-15.476807, 64.228191], - [-15.476459, 64.227905], - [-15.475802, 64.227762], - [-15.47526, 64.228065], - [-15.475028, 64.227931], - [-15.475009, 64.227603], - [-15.475512, 64.227191], - [-15.476265, 64.226678], - [-15.477, 64.226527], - [-15.477019, 64.226897], - [-15.476381, 64.227376], - [-15.477812, 64.227704], - [-15.479533, 64.227863], - [-15.480983, 64.227855], - [-15.483167, 64.227645], - [-15.484695, 64.227216], - [-15.486164, 64.227149], - [-15.488716, 64.226838], - [-15.490823, 64.226418], - [-15.493298, 64.226191], - [-15.496333, 64.225989], - [-15.499252, 64.225905], - [-15.502268, 64.225686], - [-15.505884, 64.225333], - [-15.508165, 64.22519], - [-15.511142, 64.22482], - [-15.513153, 64.224702], - [-15.515724, 64.224518], - [-15.519572, 64.224055], - [-15.521872, 64.223912], - [-15.525391, 64.223685], - [-15.529915, 64.223097], - [-15.532699, 64.222828], - [-15.534671, 64.222651], - [-15.537687, 64.2225], - [-15.540045, 64.222281], - [-15.543525, 64.221979], - [-15.546038, 64.221777], - [-15.550775, 64.221331], - [-15.558702, 64.220659], - [-15.563216, 64.220201], - [-15.568547, 64.219642], - [-15.573453, 64.219214], - [-15.590185, 64.217716], - [-15.603777, 64.21634], - [-15.606878, 64.215953], - [-15.609899, 64.215227], - [-15.611201, 64.214729], - [-15.613782, 64.214502], - [-15.618894, 64.213544], - [-15.621727, 64.212742], - [-15.62465, 64.211885], - [-15.630175, 64.211036], - [-15.638377, 64.209771], - [-15.644615, 64.208493], - [-15.65884, 64.206383], - [-15.671581, 64.204361], - [-15.6829, 64.201981], - [-15.691157, 64.199316], - [-15.694602, 64.197269], - [-15.697609, 64.194603], - [-15.700198, 64.190563], - [-15.70148, 64.189729], - [-15.702948, 64.188435], - [-15.707044, 64.185025], - [-15.712348, 64.181326], - [-15.714807, 64.179733], - [-15.715356, 64.178865], - [-15.715925, 64.17829], - [-15.717063, 64.177661], - [-15.718089, 64.177369], - [-15.718075, 64.176937], - [-15.718837, 64.17633], - [-15.719555, 64.176204], - [-15.721294, 64.175779], - [-15.721093, 64.175409], - [-15.721653, 64.175059], - [-15.722587, 64.175121], - [-15.722561, 64.175575], - [-15.723374, 64.175741], - [-15.729146, 64.175068], - [-15.746299, 64.173404], - [-15.76581, 64.171173], - [-15.779385, 64.169402], - [-15.805155, 64.166497], - [-15.818162, 64.164726], - [-15.827873, 64.162999], - [-15.830612, 64.161925], - [-15.831938, 64.161405], - [-15.835515, 64.1602], - [-15.860066, 64.156302], - [-15.884941, 64.152014], - [-15.901316, 64.148689], - [-15.913518, 64.145662], - [-15.94081, 64.138899], - [-15.954582, 64.134944], - [-15.966336, 64.131451], - [-15.979871, 64.126688], - [-15.988011, 64.123516], - [-15.99596, 64.1205], - [-15.99624, 64.12024], - [-15.9974, 64.12012], - [-15.99856, 64.11959], - [-15.99972, 64.11932], - [-16.0026, 64.11802], - [-16.00318, 64.11789], - [-16.00346, 64.11738], - [-16.00404, 64.11712], - [-16.00573, 64.11557], - [-16.00803, 64.11453], - [-16.00831, 64.11428], - [-16.00948, 64.11415], - [-16.01121, 64.11336], - [-16.01179, 64.11323], - [-16.01206, 64.11272], - [-16.01436, 64.11168], - [-16.01493, 64.11116], - [-16.01953, 64.10908], - [-16.01982, 64.10883], - [-16.02098, 64.10869], - [-16.02156, 64.10856], - [-16.02184, 64.10804], - [-16.02299, 64.10752], - [-16.02443, 64.10713], - [-16.03019, 64.10454], - [-16.03135, 64.10427], - [-16.03365, 64.10323], - [-16.03481, 64.10296], - [-16.03653, 64.10218], - [-16.0377, 64.10205], - [-16.03797, 64.10154], - [-16.04085, 64.10024], - [-16.04171, 64.09972], - [-16.04287, 64.09959], - [-16.0446, 64.0988], - [-16.04576, 64.09854], - [-16.04691, 64.09802], - [-16.04806, 64.09775], - [-16.04864, 64.09749], - [-16.0498, 64.09723], - [-16.05037, 64.09697], - [-16.05095, 64.09684], - [-16.05123, 64.09632], - [-16.0541, 64.09502], - [-16.05438, 64.09477], - [-16.05555, 64.09464], - [-16.06015, 64.09255], - [-16.06188, 64.09203], - [-16.06304, 64.09176], - [-16.06362, 64.0915], - [-16.06535, 64.09111], - [-16.06533, 64.09084], - [-16.06418, 64.09086], - [-16.06447, 64.0906], - [-16.06848, 64.08878], - [-16.06876, 64.08851], - [-16.06993, 64.08839], - [-16.0705, 64.08813], - [-16.07108, 64.08799], - [-16.07135, 64.08748], - [-16.07193, 64.08722], - [-16.07221, 64.08696], - [-16.07337, 64.08683], - [-16.07854, 64.08449], - [-16.08086, 64.08396], - [-16.08259, 64.08318], - [-16.08374, 64.08291], - [-16.08489, 64.08239], - [-16.08606, 64.08226], - [-16.08633, 64.08174], - [-16.0892, 64.08044], - [-16.08977, 64.07993], - [-16.09378, 64.07811], - [-16.09493, 64.0776], - [-16.09608, 64.07707], - [-16.09665, 64.07655], - [-16.09779, 64.07603], - [-16.09836, 64.07551], - [-16.10008, 64.07473], - [-16.10036, 64.07448], - [-16.10152, 64.07434], - [-16.10668, 64.072], - [-16.10726, 64.07174], - [-16.10956, 64.0707], - [-16.11129, 64.07016], - [-16.11187, 64.07004], - [-16.11214, 64.06953], - [-16.12075, 64.06562], - [-16.129603, 64.061838], - [-16.138909, 64.057798], - [-16.14529, 64.054944], - [-16.15171, 64.052482], - [-16.158929, 64.049745], - [-16.163239, 64.047955], - [-16.166909, 64.046285], - [-16.169618, 64.04484], - [-16.172451, 64.043352], - [-16.17383, 64.042393], - [-16.173954, 64.041886], - [-16.175308, 64.042306], - [-16.17686, 64.042856], - [-16.178559, 64.042874], - [-16.178718, 64.043051], - [-16.180407, 64.042899], - [-16.179682, 64.041617], - [-16.180151, 64.040782], - [-16.181322, 64.040085], - [-16.182551, 64.039684], - [-16.1836, 64.03942], - [-16.18474, 64.0389], - [-16.18589, 64.03863], - [-16.18704, 64.03811], - [-16.18877, 64.03759], - [-16.18993, 64.03732], - [-16.19107, 64.0368], - [-16.19223, 64.03654], - [-16.1928, 64.03627], - [-16.20204, 64.03415], - [-16.20662, 64.03207], - [-16.20719, 64.03181], - [-16.20948, 64.03076], - [-16.21121, 64.03024], - [-16.21178, 64.02999], - [-16.21467, 64.02931], - [-16.21494, 64.0288], - [-16.21607, 64.02802], - [-16.21722, 64.0275], - [-16.21749, 64.02724], - [-16.21923, 64.02685], - [-16.22037, 64.02632], - [-16.22153, 64.02606], - [-16.22267, 64.02554], - [-16.2244, 64.02501], - [-16.22671, 64.02448], - [-16.22728, 64.02422], - [-16.22844, 64.02395], - [-16.23072, 64.02291], - [-16.23188, 64.02265], - [-16.23531, 64.02108], - [-16.23646, 64.02082], - [-16.24104, 64.01873], - [-16.24219, 64.01847], - [-16.24448, 64.01742], - [-16.24679, 64.01689], - [-16.24736, 64.01663], - [-16.24967, 64.0161], - [-16.25024, 64.01584], - [-16.25139, 64.01556], - [-16.25196, 64.01531], - [-16.25312, 64.01505], - [-16.25369, 64.01479], - [-16.25484, 64.01452], - [-16.25541, 64.01425], - [-16.25657, 64.01399], - [-16.26057, 64.01217], - [-16.26114, 64.01204], - [-16.26141, 64.01152], - [-16.26256, 64.011], - [-16.26283, 64.01074], - [-16.26342, 64.01074], - [-16.274998, 64.003426], - [-16.31081, 63.986129], - [-16.316984, 63.983146], - [-16.32148, 63.98105], - [-16.32206, 63.98105], - [-16.32263, 63.98079], - [-16.32261, 63.98028], - [-16.32299, 63.98019], - [-16.32347, 63.98002], - [-16.32404, 63.97976], - [-16.3246, 63.97924], - [-16.32517, 63.97898], - [-16.32573, 63.97846], - [-16.3263, 63.9782], - [-16.32687, 63.97794], - [-16.32742, 63.97741], - [-16.32856, 63.9769], - [-16.32913, 63.97664], - [-16.3297, 63.97638], - [-16.32998, 63.97612], - [-16.33114, 63.97598], - [-16.33399, 63.97468], - [-16.33514, 63.97441], - [-16.33571, 63.97415], - [-16.33686, 63.97376], - [-16.33712, 63.97324], - [-16.33769, 63.97298], - [-16.33825, 63.97246], - [-16.34338, 63.97011], - [-16.34366, 63.96986], - [-16.34481, 63.96972], - [-16.34596, 63.96945], - [-16.34653, 63.96919], - [-16.34941, 63.96852], - [-16.34968, 63.96801], - [-16.35135, 63.96646], - [-16.3519, 63.96569], - [-16.35245, 63.96517], - [-16.35758, 63.96282], - [-16.35814, 63.9623], - [-16.35926, 63.96152], - [-16.35983, 63.96126], - [-16.36039, 63.96075], - [-16.36096, 63.96049], - [-16.36151, 63.95997], - [-16.36265, 63.95945], - [-16.36321, 63.95893], - [-16.36549, 63.95788], - [-16.36604, 63.95737], - [-16.36775, 63.95658], - [-16.36831, 63.95607], - [-16.36945, 63.95555], - [-16.37167, 63.95348], - [-16.37395, 63.95243], - [-16.3745, 63.95192], - [-16.37564, 63.95139], - [-16.3762, 63.95088], - [-16.37677, 63.95063], - [-16.37734, 63.95035], - [-16.37789, 63.94984], - [-16.37903, 63.94932], - [-16.38016, 63.94854], - [-16.38127, 63.9475], - [-16.38525, 63.94568], - [-16.38552, 63.94542], - [-16.38668, 63.94528], - [-16.38782, 63.94475], - [-16.38955, 63.94435], - [-16.38981, 63.94384], - [-16.39037, 63.94332], - [-16.39321, 63.94202], - [-16.39377, 63.9415], - [-16.39775, 63.93967], - [-16.3983, 63.93915], - [-16.40058, 63.93811], - [-16.40113, 63.93759], - [-16.4017, 63.93733], - [-16.40282, 63.93655], - [-16.40505, 63.93448], - [-16.40559, 63.93371], - [-16.40726, 63.93216], - [-16.40838, 63.93164], - [-16.40895, 63.93112], - [-16.41065, 63.93034], - [-16.41093, 63.93008], - [-16.41208, 63.92994], - [-16.41323, 63.92967], - [-16.4138, 63.92941], - [-16.41438, 63.92928], - [-16.41464, 63.92876], - [-16.41635, 63.92798], - [-16.4169, 63.92746], - [-16.41747, 63.9272], - [-16.41803, 63.92668], - [-16.4203, 63.92564], - [-16.42057, 63.92538], - [-16.42173, 63.92524], - [-16.424, 63.92419], - [-16.42457, 63.92393], - [-16.42741, 63.92263], - [-16.42798, 63.92249], - [-16.42825, 63.92198], - [-16.42995, 63.92119], - [-16.43107, 63.92042], - [-16.43164, 63.92015], - [-16.43192, 63.91991], - [-16.43307, 63.91975], - [-16.43422, 63.91949], - [-16.43479, 63.91923], - [-16.43536, 63.91909], - [-16.43563, 63.91858], - [-16.43702, 63.91729], - [-16.43817, 63.91715], - [-16.43874, 63.91701], - [-16.43901, 63.9165], - [-16.44015, 63.91598], - [-16.4407, 63.91546], - [-16.44638, 63.91285], - [-16.44665, 63.91259], - [-16.44781, 63.91245], - [-16.44837, 63.91219], - [-16.44952, 63.91192], - [-16.45179, 63.91088], - [-16.45237, 63.91074], - [-16.45263, 63.91022], - [-16.4532, 63.90996], - [-16.45486, 63.90841], - [-16.45598, 63.90763], - [-16.45654, 63.90712], - [-16.45767, 63.90659], - [-16.45795, 63.90633], - [-16.4591, 63.90619], - [-16.46369, 63.90512], - [-16.46542, 63.90485], - [-16.46772, 63.90433], - [-16.46828, 63.90405], - [-16.46943, 63.90379], - [-16.472264, 63.902478], - [-16.47453, 63.90143], - [-16.47569, 63.90129], - [-16.47596, 63.90078], - [-16.47709, 63.90026], - [-16.47764, 63.89974], - [-16.47821, 63.89948], - [-16.47877, 63.89923], - [-16.47934, 63.89895], - [-16.47991, 63.89869], - [-16.48047, 63.89843], - [-16.48104, 63.89817], - [-16.48161, 63.89792], - [-16.48218, 63.89765], - [-16.48245, 63.89739], - [-16.4836, 63.89725], - [-16.48417, 63.89699], - [-16.48474, 63.89672], - [-16.48531, 63.89645], - [-16.48645, 63.89619], - [-16.48701, 63.89593], - [-16.48817, 63.89567], - [-16.48873, 63.8954], - [-16.48988, 63.89514], - [-16.49045, 63.89487], - [-16.49102, 63.89474], - [-16.49128, 63.89423], - [-16.49185, 63.89397], - [-16.49242, 63.8937], - [-16.49298, 63.89344], - [-16.49355, 63.89318], - [-16.49412, 63.89292], - [-16.49467, 63.8924], - [-16.49524, 63.89214], - [-16.49637, 63.89162], - [-16.49665, 63.89137], - [-16.49895, 63.89095], - [-16.50009, 63.89068], - [-16.50124, 63.89041], - [-16.50239, 63.89015], - [-16.50353, 63.88988], - [-16.5041, 63.88962], - [-16.50467, 63.88936], - [-16.50523, 63.88909], - [-16.50581, 63.88883], - [-16.50637, 63.88857], - [-16.50693, 63.88831], - [-16.5075, 63.88805], - [-16.50807, 63.88778], - [-16.50863, 63.88752], - [-16.509017, 63.887248], - [-16.50947, 63.88688], - [-16.51004, 63.88661], - [-16.5106, 63.88635], - [-16.51117, 63.88609], - [-16.51173, 63.88582], - [-16.51316, 63.88543], - [-16.51373, 63.88517], - [-16.51488, 63.8849], - [-16.51544, 63.88464], - [-16.51601, 63.88438], - [-16.51715, 63.88411], - [-16.51772, 63.88385], - [-16.51829, 63.88359], - [-16.51943, 63.88332], - [-16.52, 63.88307], - [-16.52057, 63.88279], - [-16.52113, 63.88253], - [-16.521624, 63.882249], - [-16.52197, 63.88188], - [-16.52254, 63.88162], - [-16.5231, 63.88136], - [-16.52367, 63.8811], - [-16.52423, 63.88084], - [-16.52479, 63.88032], - [-16.52535, 63.88006], - [-16.5259, 63.87954], - [-16.52647, 63.87927], - [-16.52704, 63.87902], - [-16.5276, 63.87875], - [-16.52817, 63.87849], - [-16.52873, 63.87823], - [-16.5293, 63.87796], - [-16.52987, 63.87771], - [-16.53043, 63.87745], - [-16.531, 63.87718], - [-16.53156, 63.87692], - [-16.53213, 63.87665], - [-16.5327, 63.8764], - [-16.533356, 63.876206], - [-16.534013, 63.875962], - [-16.53469, 63.87574], - [-16.53584, 63.87547], - [-16.536723, 63.875152], - [-16.537345, 63.874853], - [-16.53782, 63.87455], - [-16.53837, 63.87404], - [-16.53892, 63.87352], - [-16.53949, 63.87326], - [-16.54005, 63.87299], - [-16.54062, 63.87273], - [-16.54119, 63.87247], - [-16.54174, 63.87195], - [-16.5423, 63.87169], - [-16.54287, 63.87143], - [-16.543387, 63.87109], - [-16.544032, 63.870787], - [-16.54455, 63.8704], - [-16.54512, 63.87013], - [-16.54567, 63.86961], - [-16.54594, 63.86935], - [-16.546328, 63.869189], - [-16.546521, 63.869043], - [-16.5465, 63.86883], - [-16.546737, 63.868726], - [-16.546892, 63.868602], - [-16.546717, 63.868532], - [-16.547093, 63.868235], - [-16.547437, 63.868206], - [-16.54769, 63.868139], - [-16.547834, 63.868002], - [-16.54818, 63.86779], - [-16.548555, 63.867693], - [-16.548942, 63.867463], - [-16.549515, 63.86701], - [-16.550009, 63.866849], - [-16.5507, 63.86623], - [-16.551689, 63.865884], - [-16.55211, 63.86545], - [-16.553452, 63.865099], - [-16.55408, 63.8644], - [-16.55465, 63.86414], - [-16.55521, 63.86388], - [-16.55547, 63.86336], - [-16.55663, 63.86322], - [-16.55719, 63.86309], - [-16.5569, 63.86284], - [-16.55688, 63.86258], - [-16.55742, 63.86181], - [-16.55797, 63.86129], - [-16.55854, 63.86103], - [-16.55878, 63.86026], - [-16.55994, 63.86025], - [-16.5602, 63.85973], - [-16.56077, 63.85948], - [-16.56134, 63.85921], - [-16.56187, 63.85843], - [-16.56245, 63.85817], - [-16.56297, 63.8574], - [-16.56323, 63.85689], - [-16.56497, 63.85687], - [-16.56467, 63.85661], - [-16.56464, 63.8561], - [-16.56491, 63.85584], - [-16.56609, 63.85584], - [-16.56577, 63.85558], - [-16.56576, 63.85532], - [-16.56774, 63.85453], - [-16.568, 63.85402], - [-16.56855, 63.85351], - [-16.56912, 63.85324], - [-16.56932, 63.8517], - [-16.5699, 63.8517], - [-16.57053, 63.85246], - [-16.57048, 63.85169], - [-16.57164, 63.85168], - [-16.5719, 63.85116], - [-16.57244, 63.85039], - [-16.57301, 63.85013], - [-16.57353, 63.8491], - [-16.57321, 63.84885], - [-16.57439, 63.84883], - [-16.57408, 63.84858], - [-16.57406, 63.84833], - [-16.57434, 63.84807], - [-16.5755, 63.84805], - [-16.57547, 63.84754], - [-16.57663, 63.84754], - [-16.57658, 63.84676], - [-16.57774, 63.84662], - [-16.58003, 63.84621], - [-16.57973, 63.84596], - [-16.57999, 63.84545], - [-16.58113, 63.84518], - [-16.57997, 63.84519], - [-16.57995, 63.84468], - [-16.5811, 63.84467], - [-16.58138, 63.84415], - [-16.58193, 63.8439], - [-16.58248, 63.84337], - [-16.58305, 63.84311], - [-16.58361, 63.84285], - [-16.58418, 63.84259], - [-16.58444, 63.84207], - [-16.58597, 63.84189], - [-16.58557, 63.84168], - [-16.58594, 63.84146], - [-16.58641, 63.84103], - [-16.58668, 63.84077], - [-16.58727, 63.84089], - [-16.58843, 63.84101], - [-16.59014, 63.84047], - [-16.59063, 63.83893], - [-16.59237, 63.83892], - [-16.59207, 63.83866], - [-16.59259, 63.83764], - [-16.59315, 63.83737], - [-16.5937, 63.83685], - [-16.59482, 63.83607], - [-16.59508, 63.83556], - [-16.59624, 63.83555], - [-16.5965, 63.83503], - [-16.59706, 63.83477], - [-16.59763, 63.83451], - [-16.59789, 63.834], - [-16.59904, 63.83398], - [-16.59874, 63.83373], - [-16.59842, 63.83322], - [-16.59958, 63.83321], - [-16.59955, 63.8327], - [-16.60013, 63.83269], - [-16.60073, 63.83319], - [-16.60096, 63.83191], - [-16.60207, 63.83113], - [-16.60231, 63.83036], - [-16.60482, 63.82854], - [-16.60538, 63.82828], - [-16.6065, 63.8275], - [-16.60906, 63.82672], - [-16.60932, 63.82619], - [-16.60929, 63.82568], - [-16.60985, 63.82542], - [-16.6104, 63.8249], - [-16.61068, 63.82464], - [-16.61184, 63.82463], - [-16.61153, 63.82439], - [-16.61121, 63.82387], - [-16.61318, 63.82282], - [-16.61374, 63.82256], - [-16.61429, 63.82204], - [-16.61487, 63.82178], - [-16.61512, 63.82127], - [-16.61623, 63.82049], - [-16.61765, 63.81996], - [-16.61791, 63.8197], - [-16.61907, 63.81956], - [-16.61964, 63.8193], - [-16.6202, 63.81903], - [-16.62077, 63.8189], - [-16.62103, 63.81839], - [-16.6216, 63.81813], - [-16.62271, 63.81734], - [-16.62326, 63.81683], - [-16.62382, 63.81656], - [-16.62494, 63.81578], - [-16.6255, 63.81552], - [-16.62608, 63.81526], - [-16.62661, 63.81474], - [-16.62718, 63.81449], - [-16.62745, 63.81422], - [-16.62887, 63.81369], - [-16.62943, 63.81343], - [-16.62943, 63.81318], - [-16.6291, 63.81267], - [-16.63083, 63.81265], - [-16.63108, 63.81188], - [-16.63164, 63.81162], - [-16.63192, 63.81136], - [-16.63363, 63.81095], - [-16.63477, 63.81068], - [-16.63534, 63.81054], - [-16.63531, 63.81004], - [-16.63647, 63.81003], - [-16.63673, 63.80951], - [-16.63836, 63.8077], - [-16.6389, 63.80693], - [-16.63881, 63.80539], - [-16.63908, 63.80514], - [-16.63793, 63.80528], - [-16.63735, 63.80528], - [-16.63678, 63.80529], - [-16.63563, 63.80543], - [-16.63611, 63.80389], - [-16.63496, 63.8039], - [-16.63523, 63.80364], - [-16.63577, 63.80287], - [-16.63575, 63.80261], - [-16.63572, 63.80211], - [-16.63571, 63.80185], - [-16.63537, 63.80109], - [-16.63654, 63.8012], - [-16.637397, 63.801383], - [-16.638041, 63.801147], - [-16.638319, 63.800792], - [-16.63853, 63.80054], - [-16.63905, 63.79951], - [-16.63933, 63.79925], - [-16.64047, 63.79911], - [-16.64103, 63.79884], - [-16.64853, 63.7985], - [-16.64911, 63.7985], - [-16.65025, 63.79823], - [-16.65082, 63.79797], - [-16.65369, 63.79768], - [-16.66001, 63.79684], - [-16.66231, 63.79655], - [-16.66346, 63.79654], - [-16.66404, 63.79653], - [-16.66461, 63.79627], - [-16.66692, 63.79625], - [-16.66866, 63.79635], - [-16.66845, 63.79619], - [-16.66807, 63.79611], - [-16.66805, 63.79585], - [-16.66863, 63.79585], - [-16.66884, 63.79601], - [-16.67151, 63.79568], - [-16.67209, 63.79567], - [-16.67266, 63.79567], - [-16.67381, 63.7954], - [-16.67439, 63.79539], - [-16.67497, 63.79539], - [-16.67727, 63.79523], - [-16.67958, 63.79508], - [-16.68016, 63.7952], - [-16.68013, 63.79469], - [-16.6813, 63.7948], - [-16.68188, 63.79479], - [-16.68244, 63.79454], - [-16.68302, 63.79452], - [-16.6836, 63.79452], - [-16.68474, 63.79425], - [-16.68531, 63.79425], - [-16.68589, 63.79423], - [-16.68647, 63.79423], - [-16.68935, 63.79394], - [-16.69336, 63.79338], - [-16.69392, 63.79312], - [-16.6945, 63.79311], - [-16.69911, 63.7928], - [-16.69969, 63.79278], - [-16.70027, 63.79278], - [-16.70143, 63.79277], - [-16.7043, 63.79248], - [-16.70602, 63.79221], - [-16.7066, 63.79207], - [-16.70662, 63.79258], - [-16.70719, 63.79245], - [-16.70775, 63.79219], - [-16.71065, 63.79215], - [-16.71122, 63.79215], - [-16.71238, 63.79213], - [-16.71296, 63.79213], - [-16.71352, 63.79186], - [-16.71583, 63.79184], - [-16.71641, 63.79183], - [-16.7193, 63.79179], - [-16.71988, 63.79179], - [-16.72161, 63.79176], - [-16.72333, 63.79149], - [-16.72447, 63.79122], - [-16.72505, 63.79121], - [-16.72736, 63.79119], - [-16.73025, 63.79115], - [-16.73199, 63.79113], - [-16.73315, 63.79112], - [-16.73372, 63.79111], - [-16.7343, 63.7911], - [-16.73544, 63.79083], - [-16.736, 63.79057], - [-16.73658, 63.79056], - [-16.73718, 63.79069], - [-16.7372, 63.7912], - [-16.73836, 63.79119], - [-16.73832, 63.79067], - [-16.73891, 63.79079], - [-16.73949, 63.79078], - [-16.74121, 63.79051], - [-16.74235, 63.79024], - [-16.74293, 63.79023], - [-16.74468, 63.79047], - [-16.74928, 63.79015], - [-16.74986, 63.79015], - [-16.75044, 63.79014], - [-16.75274, 63.78986], - [-16.75331, 63.78985], - [-16.75389, 63.78984], - [-16.75619, 63.78956], - [-16.75792, 63.78954], - [-16.75908, 63.78952], - [-16.75966, 63.78952], - [-16.76023, 63.78938], - [-16.7602, 63.78887], - [-16.76252, 63.78897], - [-16.76308, 63.78896], - [-16.76426, 63.78895], - [-16.76483, 63.78894], - [-16.76772, 63.78891], - [-16.7683, 63.78903], - [-16.77059, 63.78862], - [-16.77115, 63.78835], - [-16.77173, 63.78835], - [-16.77231, 63.78834], - [-16.7752, 63.7883], - [-16.77578, 63.7883], - [-16.7775, 63.78828], - [-16.77808, 63.78828], - [-16.77866, 63.78826], - [-16.7798, 63.78786], - [-16.78038, 63.78786], - [-16.78041, 63.78837], - [-16.78156, 63.78822], - [-16.78272, 63.78821], - [-16.78329, 63.7882], - [-16.78424, 63.78799], - [-16.7879, 63.78789], - [-16.78906, 63.78788], - [-16.78964, 63.788], - [-16.78961, 63.78749], - [-16.79135, 63.78759], - [-16.79424, 63.78756], - [-16.80176, 63.78746], - [-16.8029, 63.78719], - [-16.80404, 63.78705], - [-16.80425, 63.78722], - [-16.80463, 63.78717], - [-16.80521, 63.78716], - [-16.80636, 63.78715], - [-16.80866, 63.78699], - [-16.8087, 63.7875], - [-16.80927, 63.78737], - [-16.81213, 63.78681], - [-16.81271, 63.78681], - [-16.81444, 63.78679], - [-16.81558, 63.78653], - [-16.81616, 63.78651], - [-16.81731, 63.7865], - [-16.81789, 63.78649], - [-16.81905, 63.78648], - [-16.81963, 63.78647], - [-16.8202, 63.78646], - [-16.82424, 63.78641], - [-16.82484, 63.78666], - [-16.82602, 63.7869], - [-16.82659, 63.78677], - [-16.82638, 63.7866], - [-16.826, 63.78653], - [-16.82598, 63.78626], - [-16.82655, 63.78626], - [-16.82676, 63.78642], - [-16.83521, 63.78602], - [-16.83578, 63.78575], - [-16.83807, 63.78547], - [-16.83923, 63.78545], - [-16.84271, 63.78567], - [-16.84444, 63.78564], - [-16.84502, 63.78564], - [-16.84558, 63.78537], - [-16.84615, 63.78524], - [-16.84619, 63.78575], - [-16.84733, 63.78561], - [-16.84907, 63.78559], - [-16.84963, 63.78532], - [-16.85021, 63.78531], - [-16.8508, 63.78556], - [-16.8514, 63.78581], - [-16.85198, 63.78593], - [-16.85195, 63.78542], - [-16.85254, 63.78554], - [-16.85311, 63.78553], - [-16.85369, 63.78553], - [-16.85485, 63.78551], - [-16.85716, 63.78548], - [-16.85831, 63.78547], - [-16.86119, 63.78517], - [-16.86638, 63.78498], - [-16.86635, 63.78447], - [-16.86693, 63.78459], - [-16.86751, 63.78458], - [-16.8698, 63.78417], - [-16.86983, 63.78468], - [-16.87095, 63.78415], - [-16.88539, 63.78384], - [-16.89059, 63.78377], - [-16.89117, 63.78375], - [-16.89233, 63.78375], - [-16.89291, 63.78374], - [-16.89348, 63.78373], - [-16.89406, 63.78372], - [-16.89464, 63.78371], - [-16.8952, 63.78345], - [-16.89578, 63.78344], - [-16.89637, 63.78369], - [-16.89695, 63.78368], - [-16.89751, 63.78342], - [-16.89924, 63.78314], - [-16.89981, 63.78314], - [-16.90038, 63.78313], - [-16.90096, 63.78312], - [-16.90154, 63.78311], - [-16.9021, 63.78285], - [-16.90324, 63.78258], - [-16.90438, 63.78231], - [-16.90667, 63.78202], - [-16.91072, 63.78197], - [-16.91129, 63.78196], - [-16.91245, 63.78194], - [-16.91361, 63.78193], - [-16.91418, 63.78179], - [-16.915143, 63.781917], - [-16.91593, 63.78203], - [-16.91707, 63.78188], - [-16.91763, 63.78162], - [-16.91821, 63.78161], - [-16.91938, 63.78185], - [-16.92114, 63.78209], - [-16.92171, 63.78208], - [-16.92287, 63.78206], - [-16.92345, 63.78205], - [-16.92633, 63.78189], - [-16.92636, 63.7824], - [-16.92693, 63.78226], - [-16.92809, 63.78225], - [-16.92924, 63.78223], - [-16.92982, 63.78223], - [-16.93097, 63.78221], - [-16.93271, 63.78219], - [-16.9333, 63.78231], - [-16.93326, 63.7818], - [-16.93385, 63.78192], - [-16.935, 63.7819], - [-16.93674, 63.78188], - [-16.93733, 63.78212], - [-16.93791, 63.78212], - [-16.93907, 63.7821], - [-16.93964, 63.78209], - [-16.94253, 63.78205], - [-16.94369, 63.78204], - [-16.94427, 63.78203], - [-16.94716, 63.78199], - [-16.94773, 63.78198], - [-16.94888, 63.78197], - [-16.95234, 63.78167], - [-16.95292, 63.78166], - [-16.95581, 63.78162], - [-16.95695, 63.78148], - [-16.95663, 63.78097], - [-16.95632, 63.78072], - [-16.95805, 63.78057], - [-16.95862, 63.78043], - [-16.95865, 63.78094], - [-16.95923, 63.78081], - [-16.95978, 63.78054], - [-16.9615, 63.78027], - [-16.96322, 63.78011], - [-16.96439, 63.78035], - [-16.96556, 63.78046], - [-16.96614, 63.78046], - [-16.96787, 63.78043], - [-16.96904, 63.78067], - [-16.97193, 63.78063], - [-16.97309, 63.78062], - [-16.97424, 63.7806], - [-16.97482, 63.78059], - [-16.97599, 63.78083], - [-16.97773, 63.78081], - [-16.97831, 63.7808], - [-16.97948, 63.78104], - [-16.98062, 63.78103], - [-16.9812, 63.78089], - [-16.98124, 63.7814], - [-16.98181, 63.78126], - [-16.98295, 63.781], - [-16.98352, 63.781], - [-16.9847, 63.78123], - [-16.98759, 63.78119], - [-16.98874, 63.78117], - [-16.98992, 63.78141], - [-16.99049, 63.7814], - [-16.99336, 63.78111], - [-16.99394, 63.7811], - [-16.99452, 63.78109], - [-16.99681, 63.7808], - [-17.00142, 63.78048], - [-17.00257, 63.78047], - [-17.00432, 63.78069], - [-17.0049, 63.78069], - [-17.00893, 63.78038], - [-17.01064, 63.7801], - [-17.01236, 63.77982], - [-17.01292, 63.77955], - [-17.01463, 63.77928], - [-17.01519, 63.77901], - [-17.01577, 63.779], - [-17.01635, 63.779], - [-17.0175, 63.77898], - [-17.01866, 63.77896], - [-17.01924, 63.77896], - [-17.02214, 63.77904], - [-17.02217, 63.77955], - [-17.02275, 63.77955], - [-17.0227, 63.77903], - [-17.02445, 63.77914], - [-17.02621, 63.77937], - [-17.02736, 63.77935], - [-17.02773, 63.77913], - [-17.02791, 63.77896], - [-17.03081, 63.77905], - [-17.03139, 63.77904], - [-17.03175, 63.77882], - [-17.03194, 63.77865], - [-17.03426, 63.77874], - [-17.03464, 63.77878], - [-17.03483, 63.77861], - [-17.03578, 63.77851], - [-17.03595, 63.77834], - [-17.03655, 63.77833], - [-17.03656, 63.77858], - [-17.03619, 63.77868], - [-17.036, 63.77885], - [-17.03773, 63.7787], - [-17.04002, 63.77841], - [-17.04173, 63.77813], - [-17.04345, 63.77785], - [-17.04402, 63.77771], - [-17.04396, 63.77694], - [-17.04281, 63.77696], - [-17.04308, 63.7767], - [-17.0436, 63.77593], - [-17.04416, 63.77566], - [-17.0444, 63.77515], - [-17.057127, 63.774542], - [-17.06686, 63.7738], - [-17.06802, 63.77379], - [-17.06823, 63.77395], - [-17.06919, 63.77403], - [-17.0694, 63.77419], - [-17.0698, 63.7744], - [-17.07039, 63.77465], - [-17.07098, 63.77477], - [-17.071, 63.77503], - [-17.06984, 63.77504], - [-17.07015, 63.77529], - [-17.07075, 63.77554], - [-17.07107, 63.77605], - [-17.07281, 63.77602], - [-17.07314, 63.77653], - [-17.07346, 63.77703], - [-17.07578, 63.77713], - [-17.07753, 63.77736], - [-17.07869, 63.77734], - [-17.07927, 63.77733], - [-17.08102, 63.77757], - [-17.0845, 63.77777], - [-17.08625, 63.778], - [-17.08916, 63.77823], - [-17.09149, 63.77844], - [-17.09498, 63.77864], - [-17.09613, 63.77863], - [-17.0967, 63.77849], - [-17.09674, 63.779], - [-17.10195, 63.77905], - [-17.10254, 63.7793], - [-17.10661, 63.7795], - [-17.1072, 63.77974], - [-17.10778, 63.77974], - [-17.1095, 63.77945], - [-17.11008, 63.77945], - [-17.11125, 63.77969], - [-17.11185, 63.77993], - [-17.113, 63.77992], - [-17.11358, 63.77991], - [-17.11416, 63.7799], - [-17.11531, 63.77988], - [-17.11763, 63.77998], - [-17.11767, 63.78049], - [-17.11824, 63.78035], - [-17.11882, 63.78034], - [-17.11997, 63.78032], - [-17.12113, 63.78031], - [-17.12228, 63.78029], - [-17.12344, 63.78027], - [-17.12404, 63.78052], - [-17.12463, 63.78077], - [-17.12521, 63.78076], - [-17.12866, 63.78045], - [-17.13096, 63.78029], - [-17.13117, 63.78046], - [-17.1333, 63.78064], - [-17.13388, 63.78063], - [-17.13445, 63.78062], - [-17.13621, 63.78084], - [-17.13678, 63.78084], - [-17.13967, 63.7808], - [-17.14143, 63.78103], - [-17.14258, 63.78101], - [-17.14316, 63.78101], - [-17.14722, 63.7812], - [-17.1478, 63.78119], - [-17.14838, 63.78118], - [-17.14896, 63.78118], - [-17.15183, 63.78088], - [-17.15239, 63.78074], - [-17.15243, 63.78125], - [-17.1536, 63.78136], - [-17.15475, 63.78134], - [-17.15533, 63.78134], - [-17.16054, 63.78139], - [-17.16058, 63.7819], - [-17.16116, 63.78189], - [-17.16112, 63.78138], - [-17.16227, 63.78136], - [-17.16231, 63.78187], - [-17.16288, 63.78173], - [-17.16402, 63.78146], - [-17.16458, 63.7812], - [-17.16631, 63.78117], - [-17.16806, 63.7814], - [-17.16866, 63.78165], - [-17.16924, 63.78164], - [-17.17328, 63.78158], - [-17.17386, 63.78158], - [-17.17675, 63.78153], - [-17.17732, 63.78152], - [-17.17848, 63.7815], - [-17.17906, 63.78149], - [-17.18021, 63.78147], - [-17.18657, 63.78138], - [-17.18715, 63.78137], - [-17.19583, 63.78149], - [-17.19641, 63.78148], - [-17.19698, 63.78135], - [-17.19694, 63.78084], - [-17.19926, 63.78093], - [-17.20041, 63.78091], - [-17.20271, 63.78062], - [-17.20442, 63.78034], - [-17.205, 63.78033], - [-17.20615, 63.78031], - [-17.20673, 63.7803], - [-17.20733, 63.78056], - [-17.20791, 63.78054], - [-17.20848, 63.78053], - [-17.20906, 63.78052], - [-17.21022, 63.78051], - [-17.21137, 63.78049], - [-17.21195, 63.78048], - [-17.2137, 63.78071], - [-17.21546, 63.78094], - [-17.21661, 63.78092], - [-17.21719, 63.78091], - [-17.21777, 63.7809], - [-17.21832, 63.78064], - [-17.2189, 63.78063], - [-17.22006, 63.78061], - [-17.22062, 63.78047], - [-17.22066, 63.781], - [-17.22123, 63.78084], - [-17.22239, 63.78083], - [-17.22528, 63.78079], - [-17.22757, 63.7805], - [-17.22988, 63.78046], - [-17.23105, 63.78069], - [-17.23221, 63.78068], - [-17.23336, 63.78066], - [-17.23394, 63.78065], - [-17.2345, 63.78039], - [-17.23681, 63.78035], - [-17.23797, 63.78033], - [-17.23854, 63.78033], - [-17.2397, 63.78031], - [-17.24028, 63.7803], - [-17.24317, 63.78025], - [-17.24375, 63.78024], - [-17.24432, 63.78024], - [-17.24488, 63.77998], - [-17.2489, 63.77965], - [-17.25061, 63.77937], - [-17.25119, 63.77936], - [-17.25177, 63.77935], - [-17.25235, 63.77934], - [-17.25446, 63.77935], - [-17.25494, 63.77917], - [-17.25544, 63.77933], - [-17.25697, 63.77927], - [-17.25753, 63.77901], - [-17.25926, 63.77898], - [-17.26041, 63.77896], - [-17.26157, 63.77894], - [-17.26506, 63.77914], - [-17.26621, 63.77913], - [-17.26679, 63.77912], - [-17.26737, 63.77911], - [-17.26792, 63.77884], - [-17.27081, 63.7788], - [-17.27197, 63.77878], - [-17.27255, 63.77877], - [-17.27312, 63.77876], - [-17.27368, 63.7785], - [-17.27426, 63.77849], - [-17.27484, 63.77848], - [-17.27886, 63.77816], - [-17.27944, 63.77815], - [-17.28001, 63.77814], - [-17.28059, 63.77813], - [-17.28119, 63.77838], - [-17.28177, 63.77838], - [-17.28232, 63.7781], - [-17.2829, 63.77809], - [-17.28348, 63.77809], - [-17.28404, 63.77782], - [-17.28575, 63.77754], - [-17.2869, 63.77752], - [-17.28748, 63.77751], - [-17.28864, 63.77749], - [-17.28921, 63.77748], - [-17.28977, 63.77722], - [-17.29035, 63.7772], - [-17.29151, 63.77719], - [-17.29209, 63.77718], - [-17.29555, 63.77713], - [-17.2961, 63.77686], - [-17.30013, 63.77654], - [-17.3007, 63.77653], - [-17.3013, 63.77678], - [-17.30188, 63.77676], - [-17.30244, 63.7765], - [-17.30588, 63.77618], - [-17.30759, 63.77591], - [-17.30817, 63.7759], - [-17.31048, 63.77586], - [-17.31104, 63.77561], - [-17.31219, 63.77558], - [-17.31277, 63.77557], - [-17.31622, 63.77526], - [-17.31737, 63.77524], - [-17.31853, 63.77522], - [-17.3191, 63.77521], - [-17.31968, 63.77521], - [-17.32084, 63.77519], - [-17.32141, 63.77518], - [-17.32371, 63.77501], - [-17.32369, 63.77476], - [-17.32254, 63.77478], - [-17.32249, 63.77426], - [-17.32537, 63.77409], - [-17.32593, 63.77383], - [-17.32706, 63.77355], - [-17.32822, 63.77353], - [-17.32937, 63.77351], - [-17.32995, 63.7735], - [-17.33228, 63.77372], - [-17.33287, 63.77384], - [-17.33283, 63.77333], - [-17.33342, 63.77345], - [-17.33399, 63.77344], - [-17.33573, 63.77341], - [-17.33688, 63.77339], - [-17.33801, 63.77312], - [-17.33973, 63.77283], - [-17.34088, 63.77282], - [-17.34435, 63.77276], - [-17.3449, 63.77249], - [-17.34606, 63.77248], - [-17.34663, 63.77247], - [-17.34719, 63.7722], - [-17.34776, 63.77206], - [-17.3478, 63.77258], - [-17.34837, 63.77244], - [-17.34892, 63.77217], - [-17.35008, 63.77215], - [-17.35066, 63.77214], - [-17.3541, 63.77183], - [-17.35466, 63.77157], - [-17.35752, 63.77127], - [-17.35866, 63.77099], - [-17.35923, 63.77098], - [-17.35981, 63.77097], - [-17.359398, 63.776273], - [-17.357019, 63.802808], - [-17.354045, 63.843219], - [-17.350179, 63.87912], - [-17.347502, 63.916152], - [-17.343635, 63.959273], - [-17.345262, 64.006343], - [-17.340678, 64.005044], - [-17.33239, 64.003281], - [-17.330136, 64.001578], - [-17.324155, 64.000334], - [-17.316187, 64.000299], - [-17.309356, 63.999008], - [-17.301564, 63.999607], - [-17.291687, 63.998881], - [-17.280967, 63.999188], - [-17.270406, 63.998706], - [-17.267491, 63.997114], - [-17.270013, 63.995081], - [-17.266822, 63.995229], - [-17.264976, 63.994903], - [-17.259463, 63.996171], - [-17.256117, 63.996905], - [-17.25239, 63.997366], - [-17.250096, 63.997114], - [-17.248881, 63.996491], - [-17.248653, 63.996421], - [-17.248406, 63.99641], - [-17.248108, 63.996334], - [-17.248334, 63.996211], - [-17.248344, 63.996092], - [-17.248385, 63.996036], - [-17.248558, 63.995946], - [-17.248359, 63.995854], - [-17.248108, 63.995815], - [-17.247823, 63.99591], - [-17.247633, 63.995816], - [-17.245909, 63.995654], - [-17.2455, 63.995682], - [-17.245174, 63.995633], - [-17.244976, 63.995624], - [-17.2451, 63.995485], - [-17.245031, 63.995293], - [-17.244937, 63.994965], - [-17.243837, 63.994797], - [-17.242884, 63.994762], - [-17.241956, 63.994554], - [-17.239865, 63.993876], - [-17.238753, 63.99387], - [-17.237171, 63.993839], - [-17.235758, 63.993653], - [-17.235271, 63.99364], - [-17.234717, 63.993401], - [-17.234088, 63.993553], - [-17.233861, 63.993618], - [-17.233613, 63.993681], - [-17.232858, 63.993932], - [-17.23172, 63.994271], - [-17.230392, 63.994488], - [-17.229473, 63.994411], - [-17.227598, 63.994308], - [-17.227082, 63.995237], - [-17.225114, 63.995597], - [-17.221634, 63.995686], - [-17.217714, 63.996278], - [-17.215418, 63.997147], - [-17.2122, 63.99909], - [-17.208711, 63.999321], - [-17.205844, 64.000934], - [-17.200922, 64.002882], - [-17.199166, 64.003163], - [-17.196557, 64.002772], - [-17.193607, 64.002837], - [-17.191672, 64.00281], - [-17.1888, 64.002584], - [-17.186224, 64.00243], - [-17.184132, 64.002363], - [-17.183011, 64.002271], - [-17.181338, 64.001905], - [-17.17887, 64.002041], - [-17.176272, 64.001645], - [-17.172309, 64.0018], - [-17.169007, 64.001536], - [-17.1656, 64.001238], - [-17.161853, 64.000986], - [-17.158201, 64.001032], - [-17.155031, 64.001831], - [-17.155198, 64.00224], - [-17.154171, 64.002627], - [-17.153173, 64.002835], - [-17.146751, 64.005562], - [-17.135049, 64.00897], - [-17.126685, 64.010691], - [-17.117017, 64.012478], - [-17.106953, 64.019272], - [-17.102662, 64.021678], - [-17.095452, 64.022656], - [-17.081547, 64.029723], - [-17.078809, 64.036383], - [-17.076912, 64.040996], - [-17.091675, 64.043025], - [-17.105915, 64.045763], - [-17.125321, 64.048359], - [-17.134067, 64.051923], - [-17.13853, 64.052825], - [-17.141114, 64.056021], - [-17.14386, 64.062854], - [-17.147465, 64.069385], - [-17.148667, 64.071937], - [-17.158786, 64.076099], - [-17.172013, 64.076666], - [-17.187291, 64.077341], - [-17.199307, 64.078391], - [-17.198449, 64.080868], - [-17.194157, 64.084919], - [-17.184029, 64.094595], - [-17.179394, 64.09827], - [-17.173214, 64.101719], - [-17.167721, 64.103144], - [-17.162056, 64.101794], - [-17.147113, 64.104452], - [-17.134754, 64.103102], - [-17.116214, 64.103102], - [-17.115871, 64.106101], - [-17.116901, 64.111498], - [-17.120334, 64.113597], - [-17.116223, 64.116261], - [-17.1097, 64.118584], - [-17.134591, 64.120008], - [-17.145405, 64.122105], - [-17.139912, 64.125027], - [-17.135964, 64.125552], - [-17.129441, 64.126001], - [-17.116566, 64.127724], - [-17.103348, 64.127499], - [-17.088242, 64.127125], - [-17.072792, 64.1269], - [-17.067299, 64.1269], - [-17.06009, 64.1269], - [-17.057, 64.12248], - [-17.056485, 64.119783], - [-17.045842, 64.114163], - [-17.033825, 64.117985], - [-17.027302, 64.121581], - [-17.015801, 64.123005], - [-17.013913, 64.121881], - [-17.009441, 64.120491], - [-17.005673, 64.11716], - [-16.999493, 64.118734], - [-16.992112, 64.121356], - [-16.985588, 64.12233], - [-16.97855, 64.121356], - [-16.968937, 64.120907], - [-16.961556, 64.121131], - [-16.953831, 64.12263], - [-16.9516, 64.119333], - [-16.937008, 64.118584], - [-16.926357, 64.119741], - [-16.921902, 64.118584], - [-16.918469, 64.118509], - [-16.916924, 64.116636], - [-16.915894, 64.114313], - [-16.912117, 64.109666], - [-16.905594, 64.111689], - [-16.900444, 64.108916], - [-16.899414, 64.103968], - [-16.901303, 64.099245], - [-16.914177, 64.09602], - [-16.924477, 64.09437], - [-16.931507, 64.093354], - [-16.93803, 64.091554], - [-16.94009, 64.089004], - [-16.939403, 64.086753], - [-16.937, 64.085253], - [-16.932537, 64.085403], - [-16.925335, 64.083944], - [-16.900959, 64.09062], - [-16.893406, 64.093095], - [-16.88139, 64.101644], - [-16.875554, 64.104493], - [-16.861306, 64.107942], - [-16.863366, 64.104643], - [-16.858731, 64.100969], - [-16.876755, 64.09962], - [-16.871777, 64.09752], - [-16.857701, 64.090695], - [-16.832638, 64.093695], - [-16.818219, 64.09527], - [-16.816159, 64.093995], - [-16.848431, 64.084019], - [-16.860791, 64.080342], - [-16.877099, 64.076666], - [-16.894265, 64.066082], - [-16.913147, 64.053242], - [-16.925335, 64.037314], - [-16.931, 64.031527], - [-16.932249, 64.029265], - [-16.932931, 64.02803], - [-16.931552, 64.027442], - [-16.929101, 64.028032], - [-16.927959, 64.028307], - [-16.92711, 64.027752], - [-16.926016, 64.027931], - [-16.923698, 64.026831], - [-16.922282, 64.026183], - [-16.922067, 64.024924], - [-16.921387, 64.024482], - [-16.920308, 64.023937], - [-16.919278, 64.024322], - [-16.918849, 64.023909], - [-16.916338, 64.023824], - [-16.914686, 64.024209], - [-16.913763, 64.023505], - [-16.912169, 64.023135], - [-16.909429, 64.022781], - [-16.907197, 64.023091], - [-16.906511, 64.0228], - [-16.905631, 64.023072], - [-16.904107, 64.022142], - [-16.902541, 64.022029], - [-16.900653, 64.021766], - [-16.899773, 64.02233], - [-16.899129, 64.021578], - [-16.897649, 64.02154], - [-16.896747, 64.022104], - [-16.894923, 64.021897], - [-16.894108, 64.022424], - [-16.890419, 64.02185], - [-16.888551, 64.022442], - [-16.887349, 64.022668], - [-16.887822, 64.023471], - [-16.888958, 64.02373], - [-16.887628, 64.02388], - [-16.887507, 64.024528], - [-16.88741, 64.024853], - [-16.885762, 64.030388], - [-16.882329, 64.035499], - [-16.877099, 64.037615], - [-16.874352, 64.043251], - [-16.872292, 64.047082], - [-16.863366, 64.052641], - [-16.856842, 64.056321], - [-16.849976, 64.058574], - [-16.846028, 64.063004], - [-16.836758, 64.066007], - [-16.825257, 64.067058], - [-16.816502, 64.069235], - [-16.803627, 64.070061], - [-16.800881, 64.067809], - [-16.800709, 64.0594], - [-16.806717, 64.056922], - [-16.815815, 64.053692], - [-16.806202, 64.050763], - [-16.797448, 64.049711], - [-16.787663, 64.050613], - [-16.778385, 64.051322], - [-16.772891, 64.050872], - [-16.770488, 64.048318], - [-16.769115, 64.045313], - [-16.770145, 64.040354], - [-16.751262, 64.045613], - [-16.747486, 64.040805], - [-16.750232, 64.037348], - [-16.762592, 64.03344], - [-16.786281, 64.030884], - [-16.814433, 64.030132], - [-16.818897, 64.029381], - [-16.826287, 64.027167], - [-16.831265, 64.026114], - [-16.83487, 64.025062], - [-16.840535, 64.021829], - [-16.847401, 64.018219], - [-16.855126, 64.014233], - [-16.864052, 64.009795], - [-16.87064, 64.008384], - [-16.874426, 64.006543], - [-16.876375, 64.005527], - [-16.877585, 64.003718], - [-16.877948, 64.002757], - [-16.872798, 64.000048], - [-16.869708, 63.998242], - [-16.861477, 63.996553], - [-16.856671, 63.999563], - [-16.849804, 64.00325], - [-16.837273, 64.009269], - [-16.830063, 64.012804], - [-16.819249, 64.015737], - [-16.811696, 64.017392], - [-16.799679, 64.01837], - [-16.791268, 64.019197], - [-16.774617, 64.021152], - [-16.76672, 64.023182], - [-16.753502, 64.024987], - [-16.747151, 64.024085], - [-16.752816, 64.02213], - [-16.762592, 64.019607], - [-16.771518, 64.0172], - [-16.774951, 64.018704], - [-16.788521, 64.018295], - [-16.78835, 64.016339], - [-16.784564, 64.014041], - [-16.773235, 64.012236], - [-16.755382, 64.01359], - [-16.752292, 64.012086], - [-16.743022, 64.009979], - [-16.752292, 64.007873], - [-16.747486, 64.005165], - [-16.730319, 64.005616], - [-16.72311, 64.005014], - [-16.734439, 64.004563], - [-16.740962, 64.004111], - [-16.746799, 64.002607], - [-16.754695, 63.998844], - [-16.758815, 63.998092], - [-16.761562, 63.994178], - [-16.771862, 63.994178], - [-16.774265, 63.993726], - [-16.767742, 63.991167], - [-16.784564, 63.989511], - [-16.806537, 63.985596], - [-16.799671, 63.981078], - [-16.788341, 63.98394], - [-16.769458, 63.985446], - [-16.756069, 63.98936], - [-16.751605, 63.991619], - [-16.745426, 63.991619], - [-16.750919, 63.989963], - [-16.759502, 63.984391], - [-16.774265, 63.980626], - [-16.784908, 63.978819], - [-16.802419, 63.972247], - [-16.805815, 63.969682], - [-16.807186, 63.968521], - [-16.805153, 63.967919], - [-16.802032, 63.968438], - [-16.789033, 63.970802], - [-16.764061, 63.972686], - [-16.749416, 63.975522], - [-16.735529, 63.977772], - [-16.750901, 63.9732], - [-16.761378, 63.968892], - [-16.769035, 63.966677], - [-16.758598, 63.966969], - [-16.746697, 63.968911], - [-16.741306, 63.969178], - [-16.737595, 63.967234], - [-16.720846, 63.970028], - [-16.713678, 63.970834], - [-16.706542, 63.971705], - [-16.710179, 63.968106], - [-16.723774, 63.964196], - [-16.730906, 63.957649], - [-16.743051, 63.95389], - [-16.749548, 63.947655], - [-16.743178, 63.948384], - [-16.734409, 63.951793], - [-16.726978, 63.952191], - [-16.715203, 63.954223], - [-16.709852, 63.955268], - [-16.712868, 63.953715], - [-16.715676, 63.950867], - [-16.72204, 63.949635], - [-16.725068, 63.945758], - [-16.714782, 63.948057], - [-16.717798, 63.945573], - [-16.719028, 63.944216], - [-16.710017, 63.946205], - [-16.700646, 63.948013], - [-16.699941, 63.94685], - [-16.692871, 63.946132], - [-16.6915, 63.948059], - [-16.686286, 63.94922], - [-16.678368, 63.949095], - [-16.67421, 63.951314], - [-16.674801, 63.952413], - [-16.672666, 63.95279], - [-16.671563, 63.951466], - [-16.673255, 63.948083], - [-16.678331, 63.942358], - [-16.676134, 63.939639], - [-16.671729, 63.937862], - [-16.671226, 63.940322], - [-16.667086, 63.938333], - [-16.662581, 63.942505], - [-16.660056, 63.941661], - [-16.657571, 63.946409], - [-16.655088, 63.947791], - [-16.653553, 63.946771], - [-16.657192, 63.938233], - [-16.644964, 63.938805], - [-16.638722, 63.93964], - [-16.637051, 63.944583], - [-16.63679, 63.950031], - [-16.636367, 63.953762], - [-16.631075, 63.949033], - [-16.626812, 63.946106], - [-16.623203, 63.942648], - [-16.618358, 63.939508], - [-16.611027, 63.936193], - [-16.603609, 63.941107], - [-16.604883, 63.945268], - [-16.603711, 63.952731], - [-16.601509, 63.955898], - [-16.590785, 63.951028], - [-16.579982, 63.951162], - [-16.572906, 63.946179], - [-16.567738, 63.939764], - [-16.566133, 63.937312], - [-16.559231, 63.9346], - [-16.561518, 63.940324], - [-16.563363, 63.945661], - [-16.568878, 63.951938], - [-16.574794, 63.954258], - [-16.578004, 63.956536], - [-16.575173, 63.958336], - [-16.576325, 63.961147], - [-16.582347, 63.963753], - [-16.585915, 63.965601], - [-16.579, 63.966233], - [-16.57157, 63.965328], - [-16.575342, 63.969379], - [-16.566679, 63.966429], - [-16.55832, 63.962827], - [-16.543552, 63.95682], - [-16.533628, 63.952898], - [-16.527259, 63.950607], - [-16.520268, 63.948721], - [-16.516072, 63.947649], - [-16.510993, 63.94614], - [-16.509189, 63.946945], - [-16.506514, 63.945592], - [-16.50097, 63.943111], - [-16.492452, 63.942032], - [-16.486233, 63.942075], - [-16.48115, 63.941703], - [-16.477228, 63.942373], - [-16.472466, 63.942865], - [-16.469467, 63.944068], - [-16.469465, 63.94613], - [-16.471731, 63.947886], - [-16.475148, 63.948416], - [-16.479717, 63.949603], - [-16.482147, 63.949946], - [-16.480089, 63.951359], - [-16.47773, 63.951171], - [-16.47866, 63.952176], - [-16.487018, 63.954192], - [-16.496592, 63.955475], - [-16.517544, 63.959796], - [-16.532222, 63.962397], - [-16.541492, 63.964808], - [-16.551448, 63.969178], - [-16.557971, 63.972041], - [-16.557971, 63.975656], - [-16.556255, 63.977313], - [-16.554882, 63.978819], - [-16.552135, 63.979572], - [-16.53937, 63.976354], - [-16.523637, 63.976407], - [-16.513679, 63.978374], - [-16.507802, 63.984267], - [-16.512443, 63.986295], - [-16.529967, 63.987976], - [-16.518871, 63.989493], - [-16.503954, 63.988231], - [-16.489911, 63.989311], - [-16.488839, 63.99301], - [-16.4939, 63.994563], - [-16.496796, 63.9974], - [-16.50613, 64.000198], - [-16.515743, 64.001704], - [-16.526953, 64.000871], - [-16.5364, 64.000285], - [-16.550231, 64.000277], - [-16.562007, 63.998417], - [-16.571405, 63.998815], - [-16.563233, 64.001524], - [-16.543866, 64.003446], - [-16.515335, 64.003004], - [-16.508108, 64.001878], - [-16.47742, 64.00102], - [-16.452896, 64.005095], - [-16.446231, 64.006626], - [-16.445659, 64.0082], - [-16.448751, 64.01036], - [-16.455841, 64.012343], - [-16.461637, 64.01375], - [-16.466606, 64.013183], - [-16.470927, 64.010323], - [-16.48242, 64.010696], - [-16.491163, 64.01105], - [-16.507259, 64.009651], - [-16.513339, 64.01013], - [-16.522266, 64.014342], - [-16.527759, 64.016147], - [-16.534282, 64.02081], - [-16.530577, 64.022679], - [-16.508235, 64.025134], - [-16.492487, 64.025117], - [-16.479694, 64.023517], - [-16.469394, 64.02081], - [-16.462871, 64.0172], - [-16.454975, 64.013289], - [-16.439087, 64.008025], - [-16.414371, 64.012053], - [-16.412151, 64.012452], - [-16.410193, 64.013214], - [-16.410194, 64.014942], - [-16.409337, 64.015864], - [-16.41039, 64.01668], - [-16.409435, 64.017538], - [-16.407011, 64.018181], - [-16.40721, 64.01956], - [-16.409703, 64.019985], - [-16.409374, 64.020622], - [-16.407452, 64.020789], - [-16.404871, 64.021371], - [-16.405763, 64.022664], - [-16.409495, 64.023973], - [-16.410568, 64.026687], - [-16.407591, 64.03022], - [-16.403405, 64.031603], - [-16.400673, 64.033049], - [-16.404346, 64.037598], - [-16.410734, 64.039718], - [-16.415417, 64.037597], - [-16.421394, 64.036504], - [-16.435264, 64.035357], - [-16.440357, 64.035354], - [-16.453945, 64.039752], - [-16.474544, 64.043209], - [-16.486217, 64.045914], - [-16.51025, 64.04997], - [-16.518489, 64.051773], - [-16.51481, 64.053353], - [-16.516422, 64.057241], - [-16.539313, 64.056983], - [-16.521779, 64.060155], - [-16.505418, 64.062662], - [-16.497203, 64.067615], - [-16.489587, 64.078585], - [-16.488584, 64.081543], - [-16.480449, 64.082955], - [-16.464778, 64.080616], - [-16.457868, 64.082184], - [-16.458611, 64.084151], - [-16.442355, 64.082145], - [-16.429992, 64.07774], - [-16.422846, 64.069782], - [-16.42675, 64.066157], - [-16.414231, 64.058455], - [-16.411929, 64.058317], - [-16.409769, 64.058188], - [-16.408357, 64.058104], - [-16.401283, 64.057645], - [-16.404442, 64.05935], - [-16.406849, 64.059933], - [-16.406497, 64.060274], - [-16.406905, 64.060509], - [-16.406849, 64.061302], - [-16.406609, 64.061886], - [-16.405923, 64.062088], - [-16.40572, 64.062777], - [-16.404053, 64.063158], - [-16.402664, 64.063174], - [-16.401793, 64.063514], - [-16.40033, 64.063636], - [-16.399774, 64.063943], - [-16.398626, 64.064073], - [-16.39833, 64.06387], - [-16.397589, 64.064057], - [-16.397256, 64.064802], - [-16.3962, 64.06494], - [-16.394459, 64.064705], - [-16.393774, 64.064761], - [-16.393144, 64.065045], - [-16.392681, 64.064794], - [-16.391922, 64.064729], - [-16.392181, 64.06434], - [-16.391755, 64.064138], - [-16.390699, 64.064365], - [-16.389866, 64.064227], - [-16.389051, 64.064705], - [-16.388133, 64.06475], - [-16.388646, 64.071111], - [-16.400733, 64.082428], - [-16.38257, 64.07035], - [-16.368679, 64.07082], - [-16.350231, 64.077148], - [-16.323139, 64.087053], - [-16.286403, 64.090204], - [-16.265676, 64.085461], - [-16.264307, 64.087719], - [-16.259341, 64.090052], - [-16.251869, 64.097082], - [-16.249023, 64.099037], - [-16.247451, 64.099289], - [-16.247085, 64.100319], - [-16.249861, 64.100799], - [-16.252847, 64.102195], - [-16.253004, 64.10343], - [-16.249809, 64.103179], - [-16.247399, 64.103545], - [-16.24484, 64.104343], - [-16.242579, 64.104963], - [-16.240903, 64.106107], - [-16.238965, 64.106954], - [-16.236284, 64.107119], - [-16.229927, 64.10776], - [-16.22854, 64.108395], - [-16.226131, 64.108372], - [-16.224507, 64.107571], - [-16.223831, 64.106624], - [-16.218009, 64.106692], - [-16.212141, 64.109895], - [-16.203706, 64.114218], - [-16.201689, 64.117073], - [-16.197961, 64.121128], - [-16.19625, 64.124569], - [-16.196883, 64.125536], - [-16.198817, 64.12849], - [-16.206396, 64.130917], - [-16.21748, 64.13404], - [-16.224262, 64.135322], - [-16.235935, 64.139216], - [-16.246234, 64.143109], - [-16.256534, 64.147601], - [-16.260997, 64.14805], - [-16.268894, 64.150894], - [-16.27576, 64.156283], - [-16.27782, 64.158078], - [-16.27885, 64.165261], - [-16.26546, 64.166607], - [-16.26546, 64.170048], - [-16.27061, 64.176479], - [-16.282627, 64.177975], - [-16.285716, 64.179769], - [-16.285716, 64.183358], - [-16.285373, 64.187096], - [-16.283313, 64.193224], - [-16.27885, 64.19965], - [-16.271984, 64.205627], - [-16.273014, 64.20966], - [-16.269924, 64.215634], - [-16.26649, 64.21877], - [-16.2634, 64.220114], - [-16.257564, 64.220413], - [-16.252414, 64.219816], - [-16.246578, 64.21653], - [-16.242458, 64.212647], - [-16.232501, 64.208316], - [-16.226665, 64.207419], - [-16.222202, 64.204581], - [-16.219798, 64.201593], - [-16.219112, 64.199501], - [-16.222888, 64.195615], - [-16.218082, 64.193971], - [-16.211559, 64.19442], - [-16.207782, 64.190982], - [-16.195766, 64.18859], - [-16.190959, 64.186796], - [-16.189929, 64.18261], - [-16.190616, 64.178573], - [-16.182376, 64.177227], - [-16.173107, 64.169898], - [-16.156627, 64.169749], - [-16.142894, 64.172142], - [-16.132251, 64.17289], - [-16.127788, 64.175433], - [-16.125385, 64.184405], - [-16.123668, 64.187544], - [-16.123668, 64.191281], - [-16.119548, 64.198305], - [-16.106159, 64.205477], - [-16.110622, 64.210706], - [-16.114742, 64.214738], - [-16.130535, 64.220413], - [-16.134311, 64.222205], - [-16.138431, 64.22534], - [-16.153194, 64.225489], - [-16.158867, 64.229486], - [-16.154232, 64.232173], - [-16.15903, 64.236683], - [-16.16933, 64.240265], - [-16.177063, 64.251942], - [-16.165562, 64.251121], - [-16.162129, 64.254701], - [-16.157494, 64.255372], - [-16.152172, 64.264914], - [-16.133633, 64.251867], - [-16.122647, 64.250599], - [-16.131745, 64.260665], - [-16.12299, 64.262305], - [-16.11887, 64.262305], - [-16.112175, 64.266405], - [-16.103249, 64.266777], - [-16.096211, 64.265734], - [-16.084195, 64.26551], - [-16.079216, 64.257087], - [-16.071492, 64.261112], - [-16.068917, 64.266852], - [-16.061879, 64.26797], - [-16.054669, 64.269982], - [-16.055699, 64.268491], - [-16.056042, 64.264467], - [-16.055699, 64.261932], - [-16.041108, 64.263423], - [-16.036121, 64.264873], - [-16.024105, 64.262786], - [-16.020328, 64.260549], - [-16.017238, 64.257567], - [-16.007968, 64.254287], - [-15.996982, 64.251602], - [-15.984279, 64.250856], - [-15.968486, 64.252348], - [-15.95956, 64.251453], - [-15.95338, 64.250409], - [-15.939304, 64.247426], - [-15.933991, 64.242693], - [-15.923005, 64.245975], - [-15.91734, 64.247467], - [-15.911847, 64.248362], - [-15.90601, 64.247989], - [-15.896225, 64.246796], - [-15.880261, 64.248362], - [-15.880948, 64.254253], - [-15.874424, 64.254402], - [-15.870133, 64.257608], - [-15.862752, 64.258354], - [-15.855542, 64.258727], - [-15.842495, 64.256341], - [-15.832196, 64.255744], - [-15.825329, 64.254701], - [-15.820857, 64.252944], - [-15.813304, 64.248917], - [-15.806168, 64.245403], - [-15.805091, 64.243206], - [-15.802558, 64.242382], - [-15.789891, 64.250084], - [-15.784413, 64.25484], - [-15.782771, 64.256139], - [-15.781316, 64.25688], - [-15.778287, 64.257581], - [-15.774107, 64.258174], - [-15.770569, 64.258394], - [-15.765384, 64.258546], - [-15.758779, 64.258034], - [-15.746712, 64.258322], - [-15.739175, 64.26041], - [-15.734936, 64.263646], - [-15.724355, 64.266547], - [-15.71536, 64.267564], - [-15.687429, 64.265376], - [-15.681599, 64.267009], - [-15.677268, 64.271573], - [-15.680136, 64.277115], - [-15.680842, 64.280852], - [-15.684802, 64.281386], - [-15.714332, 64.282359], - [-15.736368, 64.280738], - [-15.749036, 64.277199], - [-15.770773, 64.272656], - [-15.776915, 64.27288], - [-15.778626, 64.27465], - [-15.793392, 64.277839], - [-15.806832, 64.286008], - [-15.816394, 64.289906], - [-15.823457, 64.292594], - [-15.832938, 64.294719], - [-15.843437, 64.295135], - [-15.850005, 64.29637], - [-15.85349, 64.300095], - [-15.857734, 64.301395], - [-15.855571, 64.303852], - [-15.846616, 64.306106], - [-15.838097, 64.31299], - [-15.830634, 64.311242], - [-15.816603, 64.308175], - [-15.813711, 64.30603], - [-15.814605, 64.303739], - [-15.810092, 64.303157], - [-15.805647, 64.304153], - [-15.787059, 64.301735], - [-15.759701, 64.296593], - [-15.736769, 64.292919], - [-15.710103, 64.289807], - [-15.697347, 64.289129], - [-15.695389, 64.290102], - [-15.694055, 64.293071], - [-15.680156, 64.29366], - [-15.67773, 64.296399], - [-15.679763, 64.298911], - [-15.687394, 64.299566], - [-15.699268, 64.300585], - [-15.713944, 64.303419], - [-15.733651, 64.309528], - [-15.761894, 64.314953], - [-15.781114, 64.317458], - [-15.791978, 64.319596], - [-15.789867, 64.32283], - [-15.794215, 64.332557], - [-15.806148, 64.336841], - [-15.804884, 64.333348], - [-15.801457, 64.329792], - [-15.805353, 64.326202], - [-15.812995, 64.326484], - [-15.836374, 64.331505], - [-15.844784, 64.336393], - [-15.847713, 64.339829], - [-15.860683, 64.344364], - [-15.873729, 64.347485], - [-15.885059, 64.349715], - [-15.894672, 64.35343], - [-15.900852, 64.355956], - [-15.901538, 64.356402], - [-15.905211, 64.359976], - [-15.906001, 64.362047], - [-15.905315, 64.364869], - [-15.907718, 64.366206], - [-15.909091, 64.369771], - [-15.904628, 64.369919], - [-15.901538, 64.369325], - [-15.895015, 64.366206], - [-15.881282, 64.3668], - [-15.875103, 64.369028], - [-15.871669, 64.373038], - [-15.863773, 64.37571], - [-15.84901, 64.379719], - [-15.826694, 64.383281], - [-15.815708, 64.383875], - [-15.803348, 64.385508], - [-15.791675, 64.385508], - [-15.791675, 64.384321], - [-15.775539, 64.373929], - [-15.760776, 64.371701], - [-15.744305, 64.361717], - [-15.73864, 64.367658], - [-15.722332, 64.371074], - [-15.709964, 64.371256], - [-15.700694, 64.367988], - [-15.686618, 64.365167], - [-15.684854, 64.363878], - [-15.682794, 64.362067], - [-15.681134, 64.354808], - [-15.679417, 64.350127], - [-15.669796, 64.346742], - [-15.658074, 64.342608], - [-15.645352, 64.339387], - [-15.629829, 64.335192], - [-15.624345, 64.33082], - [-15.616275, 64.328096], - [-15.606227, 64.324011], - [-15.603782, 64.319171], - [-15.59652, 64.318036], - [-15.586236, 64.320371], - [-15.577368, 64.324974], - [-15.573993, 64.331211], - [-15.570482, 64.331105], - [-15.565175, 64.328552], - [-15.556159, 64.328648], - [-15.544184, 64.332207], - [-15.54086, 64.334708], - [-15.537517, 64.337291], - [-15.539719, 64.342813], - [-15.542706, 64.344757], - [-15.554337, 64.346692], - [-15.565526, 64.347006], - [-15.582528, 64.349432], - [-15.591955, 64.354137], - [-15.596531, 64.358009], - [-15.613619, 64.365094], - [-15.632717, 64.370959], - [-15.651256, 64.379422], - [-15.659839, 64.384914], - [-15.672885, 64.389812], - [-15.690713, 64.39742], - [-15.698471, 64.404541], - [-15.720272, 64.410028], - [-15.718899, 64.41885], - [-15.712033, 64.420332], - [-15.702248, 64.422778], - [-15.706883, 64.427669], - [-15.704995, 64.429299], - [-15.700531, 64.427298], - [-15.698815, 64.422926], - [-15.694523, 64.416181], - [-15.691425, 64.414139], - [-15.673066, 64.411733], - [-15.660534, 64.411066], - [-15.669976, 64.421518], - [-15.647316, 64.416923], - [-15.640622, 64.420999], - [-15.652629, 64.428517], - [-15.660869, 64.433111], - [-15.668946, 64.435522], - [-15.669687, 64.444571], - [-15.668701, 64.445437], - [-15.663916, 64.445605], - [-15.661177, 64.442535], - [-15.656736, 64.442627], - [-15.651461, 64.44016], - [-15.640191, 64.437509], - [-15.630548, 64.434408], - [-15.620766, 64.434397], - [-15.605767, 64.430857], - [-15.598305, 64.430724], - [-15.588433, 64.432181], - [-15.588423, 64.43342], - [-15.599319, 64.436629], - [-15.606976, 64.438485], - [-15.623455, 64.443595], - [-15.639926, 64.448664], - [-15.6456, 64.449667], - [-15.639763, 64.456034], - [-15.634777, 64.463616], - [-15.618649, 64.46854], - [-15.605774, 64.479192], - [-15.602341, 64.479562], - [-15.599938, 64.479414], - [-15.594788, 64.477269], - [-15.587407, 64.474681], - [-15.57848, 64.471722], - [-15.567837, 64.467874], - [-15.549633, 64.463172], - [-15.544139, 64.460656], - [-15.540706, 64.458287], - [-15.539339, 64.455643], - [-15.544951, 64.452002], - [-15.54378, 64.447868], - [-15.5366, 64.443856], - [-15.533741, 64.440867], - [-15.529399, 64.440176], - [-15.525034, 64.437653], - [-15.517289, 64.429934], - [-15.512545, 64.428314], - [-15.504072, 64.427289], - [-15.500712, 64.424326], - [-15.490063, 64.422946], - [-15.478501, 64.423441], - [-15.470683, 64.423791], - [-15.468781, 64.424822], - [-15.467577, 64.425475], - [-15.462869, 64.428957], - [-15.46053, 64.43005], - [-15.456224, 64.429741], - [-15.450857, 64.428986], - [-15.445262, 64.42748], - [-15.433513, 64.422811], - [-15.424625, 64.419279], - [-15.419055, 64.419989], - [-15.410876, 64.418575], - [-15.406991, 64.418826], - [-15.4048, 64.421689], - [-15.409337, 64.42458], - [-15.415813, 64.426989], - [-15.424195, 64.43201], - [-15.434971, 64.438855], - [-15.444232, 64.442888], - [-15.448189, 64.446335], - [-15.451966, 64.450777], - [-15.465184, 64.459438], - [-15.470333, 64.459956], - [-15.47926, 64.459586], - [-15.489903, 64.460104], - [-15.505867, 64.461659], - [-15.514221, 64.465465], - [-15.519152, 64.472116], - [-15.525375, 64.476291], - [-15.528179, 64.481915], - [-15.522109, 64.486011], - [-15.515923, 64.489539], - [-15.513497, 64.494899], - [-15.509099, 64.498142], - [-15.506374, 64.502217], - [-15.501919, 64.507873], - [-15.491105, 64.515186], - [-15.473767, 64.519027], - [-15.446129, 64.505952], - [-15.436516, 64.508981], - [-15.436001, 64.514669], - [-15.463295, 64.530471], - [-15.457287, 64.536819], - [-15.447331, 64.538074], - [-15.428096, 64.530578], - [-15.417797, 64.524524], - [-15.4142, 64.52043], - [-15.398794, 64.512716], - [-15.379279, 64.50843], - [-15.367934, 64.504955], - [-15.356843, 64.498981], - [-15.337276, 64.494977], - [-15.326589, 64.494469], - [-15.30571, 64.492428], - [-15.296956, 64.492871], - [-15.29831, 64.49524], - [-15.311955, 64.498788], - [-15.339274, 64.505709], - [-15.348573, 64.508944], - [-15.363926, 64.516274], - [-15.376516, 64.521522], - [-15.382434, 64.528806], - [-15.386211, 64.533974], - [-15.386898, 64.537664], - [-15.38622, 64.541542], - [-15.367671, 64.542682], - [-15.356007, 64.538369], - [-15.344506, 64.541321], - [-15.337811, 64.543534], - [-15.33249, 64.544715], - [-15.3294, 64.548035], - [-15.329056, 64.549879], - [-15.321675, 64.549953], - [-15.316516, 64.55065], - [-15.306569, 64.546486], - [-15.298672, 64.544641], - [-15.299531, 64.548699], - [-15.310002, 64.553493], - [-15.315323, 64.555264], - [-15.324069, 64.557435], - [-15.327159, 64.559058], - [-15.340892, 64.564219], - [-15.352222, 64.569085], - [-15.357895, 64.573843], - [-15.344506, 64.569789], - [-15.344334, 64.574285], - [-15.340558, 64.574359], - [-15.332661, 64.571705], - [-15.325451, 64.571337], - [-15.3191, 64.573253], - [-15.308113, 64.571411], - [-15.296612, 64.571927], - [-15.313427, 64.579698], - [-15.32425, 64.581728], - [-15.322018, 64.586738], - [-15.310173, 64.588579], - [-15.300217, 64.590421], - [-15.290947, 64.587548], - [-15.279274, 64.585412], - [-15.283909, 64.590936], - [-15.260907, 64.587916], - [-15.279961, 64.597712], - [-15.260735, 64.601246], - [-15.252324, 64.600731], - [-15.244075, 64.599733], - [-15.237732, 64.597491], - [-15.226059, 64.592925], - [-15.221596, 64.59322], - [-15.217991, 64.592704], - [-15.215931, 64.593809], - [-15.236359, 64.604265], - [-15.260563, 64.609565], - [-15.257302, 64.612215], - [-15.25713, 64.616115], - [-15.263825, 64.618985], - [-15.27052, 64.620824], - [-15.290776, 64.621634], - [-15.332661, 64.619941], - [-15.342618, 64.624282], - [-15.348969, 64.624061], - [-15.353252, 64.625051], - [-15.348454, 64.629431], - [-15.342961, 64.631344], - [-15.337811, 64.632226], - [-15.329743, 64.631197], - [-15.318757, 64.629946], - [-15.31189, 64.631197], - [-15.31498, 64.632667], - [-15.313092, 64.635535], - [-15.30159, 64.6373], - [-15.291634, 64.639874], - [-15.302964, 64.642226], - [-15.312233, 64.644726], - [-15.321675, 64.650238], - [-15.330258, 64.655015], - [-15.347767, 64.660746], - [-15.361835, 64.662248], - [-15.376941, 64.666803], - [-15.389644, 64.672531], - [-15.394693, 64.672974], - [-15.399952, 64.672205], - [-15.412318, 64.670113], - [-15.418835, 64.666329], - [-15.428448, 64.667064], - [-15.441151, 64.666182], - [-15.443726, 64.662069], - [-15.452309, 64.658542], - [-15.454369, 64.663979], - [-15.450421, 64.669414], - [-15.461064, 64.673086], - [-15.469295, 64.673853], - [-15.474329, 64.673638], - [-15.478917, 64.672498], - [-15.490075, 64.669855], - [-15.500194, 64.670181], - [-15.513927, 64.672972], - [-15.515309, 64.671324], - [-15.532647, 64.663391], - [-15.536251, 64.659277], - [-15.538303, 64.65446], - [-15.528346, 64.648287], - [-15.52457, 64.646523], - [-15.514965, 64.644432], - [-15.507412, 64.643917], - [-15.506897, 64.639506], - [-15.520287, 64.639432], - [-15.538989, 64.644759], - [-15.546543, 64.647258], - [-15.555306, 64.651855], - [-15.561142, 64.653986], - [-15.561142, 64.660673], - [-15.558739, 64.663465], - [-15.550156, 64.668533], - [-15.546208, 64.672572], - [-15.542775, 64.677125], - [-15.536595, 64.67852], - [-15.537453, 64.684833], - [-15.532132, 64.689163], - [-15.52681, 64.696575], - [-15.529557, 64.70193], - [-15.53917, 64.705451], - [-15.546723, 64.706038], - [-15.561846, 64.695891], - [-15.568366, 64.69661], - [-15.576907, 64.695457], - [-15.583008, 64.694245], - [-15.583303, 64.693332], - [-15.584254, 64.69251], - [-15.584212, 64.692176], - [-15.582944, 64.691842], - [-15.582839, 64.691327], - [-15.583768, 64.691453], - [-15.585184, 64.691896], - [-15.58567, 64.692601], - [-15.584593, 64.693432], - [-15.584888, 64.69401], - [-15.583473, 64.69532], - [-15.585692, 64.695735], - [-15.593568, 64.693526], - [-15.610325, 64.678884], - [-15.62535, 64.676403], - [-15.630453, 64.672257], - [-15.645157, 64.665234], - [-15.655961, 64.665476], - [-15.665859, 64.664768], - [-15.673734, 64.665937], - [-15.68076, 64.666475], - [-15.700697, 64.667241], - [-15.713423, 64.667402], - [-15.71915, 64.666923], - [-15.723502, 64.666787], - [-15.730958, 64.666635], - [-15.743491, 64.667774], - [-15.755978, 64.669267], - [-15.764809, 64.670668], - [-15.767994, 64.673527], - [-15.768509, 64.676097], - [-15.774337, 64.679103], - [-15.781783, 64.67929], - [-15.795555, 64.680108], - [-15.804078, 64.679166], - [-15.811049, 64.67793], - [-15.815797, 64.675928], - [-15.820344, 64.675881], - [-15.825214, 64.678213], - [-15.830011, 64.681699], - [-15.834423, 64.684483], - [-15.841766, 64.687611], - [-15.844221, 64.688948], - [-15.846996, 64.689884], - [-15.853288, 64.689375], - [-15.860931, 64.690262], - [-15.864393, 64.690332], - [-15.867814, 64.69208], - [-15.869013, 64.692571], - [-15.869643, 64.69317], - [-15.8707, 64.693792], - [-15.87539, 64.695408], - [-15.879082, 64.696467], - [-15.882988, 64.697061], - [-15.882568, 64.698361], - [-15.88394, 64.700243], - [-15.884573, 64.70323], - [-15.883996, 64.705235], - [-15.884337, 64.707733], - [-15.887674, 64.70907], - [-15.889643, 64.709543], - [-15.890965, 64.70969], - [-15.891268, 64.710277], - [-15.891697, 64.710587], - [-15.892181, 64.710754], - [-15.892426, 64.710973], - [-15.89261, 64.711297], - [-15.892915, 64.711449], - [-15.893218, 64.711461], - [-15.893583, 64.711402], - [-15.894069, 64.711419], - [-15.894904, 64.711598], - [-15.89506, 64.711606], - [-15.894935, 64.711497], - [-15.895354, 64.711527], - [-15.89577, 64.71148], - [-15.896439, 64.711372], - [-15.896727, 64.711214], - [-15.896729, 64.711421], - [-15.896532, 64.711443], - [-15.896407, 64.711597], - [-15.896459, 64.711611], - [-15.896684, 64.711562], - [-15.896846, 64.711509], - [-15.897146, 64.711457], - [-15.897362, 64.711436], - [-15.897594, 64.711363], - [-15.897857, 64.711191], - [-15.897943, 64.710987], - [-15.898298, 64.710945], - [-15.899045, 64.710848], - [-15.899712, 64.710754], - [-15.900073, 64.710404], - [-15.900323, 64.710218], - [-15.900666, 64.710093], - [-15.900899, 64.71009], - [-15.901247, 64.71009], - [-15.901603, 64.710114], - [-15.901847, 64.710187], - [-15.902123, 64.710161], - [-15.902324, 64.710114], - [-15.902582, 64.710132], - [-15.902863, 64.710121], - [-15.903187, 64.710056], - [-15.903499, 64.710056], - [-15.903683, 64.709949], - [-15.904032, 64.709708], - [-15.904552, 64.709371], - [-15.905415, 64.709018], - [-15.906106, 64.708801], - [-15.907269, 64.708352], - [-15.907936, 64.707996], - [-15.908462, 64.707813], - [-15.908646, 64.70774], - [-15.908817, 64.707724], - [-15.908915, 64.707635], - [-15.909117, 64.707554], - [-15.909252, 64.707424], - [-15.909288, 64.707316], - [-15.909496, 64.707178], - [-15.909637, 64.707029], - [-15.9099, 64.706914], - [-15.910151, 64.70683], - [-15.910316, 64.706811], - [-15.910518, 64.706812], - [-15.910604, 64.706927], - [-15.910598, 64.707029], - [-15.910353, 64.707316], - [-15.909998, 64.70762], - [-15.909766, 64.707816], - [-15.909478, 64.708048], - [-15.90886, 64.708354], - [-15.908621, 64.70854], - [-15.907661, 64.708898], - [-15.906675, 64.709345], - [-15.905968, 64.709671], - [-15.905035, 64.710511], - [-15.904332, 64.710805], - [-15.903606, 64.710927], - [-15.903068, 64.710919], - [-15.902765, 64.710831], - [-15.902454, 64.710956], - [-15.902514, 64.711082], - [-15.9025, 64.711244], - [-15.90216, 64.711548], - [-15.901796, 64.71181], - [-15.901381, 64.711892], - [-15.901311, 64.712113], - [-15.901009, 64.712339], - [-15.900753, 64.712485], - [-15.900742, 64.712738], - [-15.900468, 64.712868], - [-15.900316, 64.713069], - [-15.899689, 64.713088], - [-15.899689, 64.713224], - [-15.899832, 64.713315], - [-15.900282, 64.713313], - [-15.900299, 64.713747], - [-15.900057, 64.714032], - [-15.899775, 64.714001], - [-15.899585, 64.71413], - [-15.899659, 64.714407], - [-15.899105, 64.714537], - [-15.899096, 64.714684], - [-15.898841, 64.714747], - [-15.898144, 64.715267], - [-15.898399, 64.715305], - [-15.898373, 64.715723], - [-15.898231, 64.715766], - [-15.897558, 64.715584], - [-15.897088, 64.71566], - [-15.896275, 64.71596], - [-15.895833, 64.715963], - [-15.89515, 64.716161], - [-15.895137, 64.71625], - [-15.895764, 64.716196], - [-15.896353, 64.716117], - [-15.896549, 64.716075], - [-15.897084, 64.7162], - [-15.897426, 64.716246], - [-15.897967, 64.716261], - [-15.898287, 64.716368], - [-15.897763, 64.716399], - [-15.897313, 64.716444], - [-15.897028, 64.716616], - [-15.896759, 64.71666], - [-15.896655, 64.716766], - [-15.899879, 64.716871], - [-15.900285, 64.718192], - [-15.898529, 64.719704], - [-15.907764, 64.719119], - [-15.913622, 64.714337], - [-15.920072, 64.713862], - [-15.925188, 64.717599], - [-15.928376, 64.722127], - [-15.928821, 64.72754], - [-15.933715, 64.728806], - [-15.942093, 64.727065], - [-15.948544, 64.728236], - [-15.955736, 64.731781], - [-15.953808, 64.734914], - [-15.95759, 64.741654], - [-15.958183, 64.744501], - [-15.967896, 64.742983], - [-15.977164, 64.743173], - [-15.984384, 64.747463], - [-15.993031, 64.750732], - [-16.010505, 64.771326], - [-16.021739, 64.772784], - [-16.027375, 64.77365], - [-16.034585, 64.773284], - [-16.056901, 64.774089], - [-16.0672, 64.775845], - [-16.074753, 64.773504], - [-16.079898, 64.776371], - [-16.088169, 64.778196], - [-16.099787, 64.779889], - [-16.11212, 64.781739], - [-16.118744, 64.783542], - [-16.121314, 64.784082], - [-16.126636, 64.785201], - [-16.133931, 64.785346], - [-16.1405, 64.784037], - [-16.150962, 64.785729], - [-16.156975, 64.783753], - [-16.162628, 64.782386], - [-16.168824, 64.778625], - [-16.173287, 64.779356], - [-16.178952, 64.778698], - [-16.18599, 64.780087], - [-16.195774, 64.779575], - [-16.199379, 64.775991], - [-16.201954, 64.774455], - [-16.205559, 64.774382], - [-16.218949, 64.769772], - [-16.226502, 64.768602], - [-16.23869, 64.766772], - [-16.246758, 64.766187], - [-16.255169, 64.761137], - [-16.263409, 64.757769], - [-16.268044, 64.754841], - [-16.28006, 64.752059], - [-16.29139, 64.750521], - [-16.300488, 64.75118], - [-16.305466, 64.748105], - [-16.306153, 64.74144], - [-16.321602, 64.741074], - [-16.33276, 64.740634], - [-16.340828, 64.737997], - [-16.350785, 64.735286], - [-16.35336, 64.731623], - [-16.362193, 64.732157], - [-16.365612, 64.737369], - [-16.389409, 64.733015], - [-16.404858, 64.729571], - [-16.405201, 64.72554], - [-16.410351, 64.726713], - [-16.416703, 64.724588], - [-16.424256, 64.720556], - [-16.432324, 64.716011], - [-16.440049, 64.711025], - [-16.44949, 64.705891], - [-16.45361, 64.702517], - [-16.462708, 64.699876], - [-16.469403, 64.696061], - [-16.476003, 64.69147], - [-16.481376, 64.687293], - [-16.482621, 64.685273], - [-16.484509, 64.683071], - [-16.491547, 64.676317], - [-16.495541, 64.673924], - [-16.490002, 64.673233], - [-16.497384, 64.668092], - [-16.50116, 64.66464], - [-16.5094, 64.66082], - [-16.512146, 64.657734], - [-16.520901, 64.654795], - [-16.526738, 64.651414], - [-16.530343, 64.649136], - [-16.536866, 64.644799], - [-16.54871, 64.642153], - [-16.559868, 64.636491], - [-16.566391, 64.633844], - [-16.574631, 64.629284], - [-16.584416, 64.627077], - [-16.593342, 64.626048], - [-16.599007, 64.624061], - [-16.607247, 64.621707], - [-16.627846, 64.617293], - [-16.645871, 64.615968], - [-16.653252, 64.620309], - [-16.651192, 64.621928], - [-16.651879, 64.623767], - [-16.645356, 64.625753], - [-16.636601, 64.628769], - [-16.625786, 64.633256], - [-16.620636, 64.636344], - [-16.61583, 64.636932], - [-16.610165, 64.638035], - [-16.60038, 64.643035], - [-16.598835, 64.64796], - [-16.604663, 64.650345], - [-16.596767, 64.651815], - [-16.59608, 64.656224], - [-16.585437, 64.65931], - [-16.592656, 64.660526], - [-16.589051, 64.66251], - [-16.582013, 64.666109], - [-16.574288, 64.666109], - [-16.567078, 64.669047], - [-16.573258, 64.672939], - [-16.579094, 64.674187], - [-16.574116, 64.675729], - [-16.578064, 64.677418], - [-16.575146, 64.677932], - [-16.572056, 64.679327], - [-16.576691, 64.681897], - [-16.579266, 64.683952], - [-16.576691, 64.686815], - [-16.569825, 64.690851], - [-16.592647, 64.69059], - [-16.596775, 64.692832], - [-16.607247, 64.692172], - [-16.608277, 64.690704], - [-16.613083, 64.686007], - [-16.6148, 64.684319], - [-16.614972, 64.687769], - [-16.616173, 64.689163], - [-16.618576, 64.689824], - [-16.620456, 64.691177], - [-16.617032, 64.691952], - [-16.615315, 64.693346], - [-16.612397, 64.696648], - [-16.607247, 64.702444], - [-16.606045, 64.709338], - [-16.611538, 64.713884], - [-16.617546, 64.71777], - [-16.623898, 64.719603], - [-16.640712, 64.724327], - [-16.647579, 64.724034], - [-16.651355, 64.722714], - [-16.648446, 64.719383], - [-16.650334, 64.718503], - [-16.66029, 64.722682], - [-16.669732, 64.717624], - [-16.663371, 64.713331], - [-16.657535, 64.710544], - [-16.642609, 64.701857], - [-16.639176, 64.680575], - [-16.652222, 64.705524], - [-16.652737, 64.704497], - [-16.656685, 64.704057], - [-16.66029, 64.701563], - [-16.674366, 64.70149], - [-16.680031, 64.692832], - [-16.687756, 64.690851], - [-16.67677, 64.685053], - [-16.678658, 64.678666], - [-16.693764, 64.670075], - [-16.697026, 64.672131], - [-16.689129, 64.680869], - [-16.71814, 64.68219], - [-16.72535, 64.671617], - [-16.733761, 64.680135], - [-16.740456, 64.679327], - [-16.738396, 64.671397], - [-16.749039, 64.672425], - [-16.749726, 64.676904], - [-16.745949, 64.679914], - [-16.738224, 64.682924], - [-16.742552, 64.690159], - [-16.750401, 64.693235], - [-16.757595, 64.697987], - [-16.768714, 64.704974], - [-16.74059, 64.719223], - [-16.709851, 64.731789], - [-16.70331, 64.745744], - [-16.681727, 64.759692], - [-16.674533, 64.768337], - [-16.681727, 64.779486], - [-16.679111, 64.79091], - [-16.665528, 64.801874], - [-16.641742, 64.833157], - [-16.614533, 64.869646], - [-16.597775, 64.878788], - [-16.577796, 64.88979], - [-16.486776, 64.912121], - [-16.435472, 64.923518], - [-16.421665, 64.92679], - [-16.352415, 64.96356], - [-16.317577, 64.981224], - [-16.221841, 64.975378], - [-16.178706, 65.000888], - [-16.160473, 65.009725], - [-16.146643, 65.04658], - [-16.143186, 65.089574], - [-16.149048, 65.129196], - [-16.150116, 65.175664], - [-16.127158, 65.199191], - [-16.099108, 65.226095], - [-16.024417, 65.252037], - [-16.010385, 65.271925], - [-15.995318, 65.292567], - [-15.989805, 65.300038], - [-15.978874, 65.335032], - [-16.015544, 65.356474], - [-16.037169, 65.370738], - [-16.104573, 65.399572], - [-16.103194, 65.427355], - [-16.10093, 65.457144], - [-16.091821, 65.487394], - [-16.072072, 65.507788], - [-16.031704, 65.546282], - [-15.953936, 65.546203], - [-15.840423, 65.544774], - [-15.805811, 65.533459], - [-15.747515, 65.53195], - [-15.70015, 65.54779], - [-15.677895, 65.567214], - [-15.650947, 65.590748], - [-15.671192, 65.639202], - [-15.683317, 65.669107], - [-15.681159, 65.699319], - [-15.648848, 65.733826], - [-15.632972, 65.750585], - [-15.479903, 65.760667], - [-15.466851, 65.766044], - [-15.410757, 65.788522], - [-15.375114, 65.800971], - [-15.300871, 65.830399], - [-15.295906, 65.844765], - [-15.286548, 65.869952], - [-15.201635, 65.874452], - [-15.139365, 65.877199], - [-15.070797, 65.880749], - [-14.990801, 65.884671], - [-14.885664, 65.888593], - [-14.814503, 65.89298], - [-14.777783, 65.919013], - [-14.748985, 65.93859], - [-14.727622, 65.954142], - [-14.64979, 65.954427], - [-14.606289, 65.954336], - [-14.606601, 65.951716], - [-14.606799, 65.951074], - [-14.608026, 65.948327], - [-14.61016, 65.9457], - [-14.60894, 65.94365], - [-14.60929, 65.94108], - [-14.61054, 65.94108], - [-14.61248, 65.93726], - [-14.612829, 65.936876], - [-14.613533, 65.936495], - [-14.613887, 65.93611], - [-14.613844, 65.935896], - [-14.614048, 65.935515], - [-14.614305, 65.935231], - [-14.614541, 65.935012], - [-14.614165, 65.934684], - [-14.61346, 65.93445], - [-14.613264, 65.933957], - [-14.613619, 65.933507], - [-14.613136, 65.933378], - [-14.613159, 65.933292], - [-14.613195, 65.933192], - [-14.613356, 65.93296], - [-14.613796, 65.93293], - [-14.614547, 65.932643], - [-14.614885, 65.932704], - [-14.615212, 65.932682], - [-14.615942, 65.932538], - [-14.615979, 65.932409], - [-14.616457, 65.932245], - [-14.616773, 65.931814], - [-14.617503, 65.931122], - [-14.617267, 65.930589], - [-14.617454, 65.930363], - [-14.617937, 65.930193], - [-14.618398, 65.929807], - [-14.618377, 65.929431], - [-14.618581, 65.928832], - [-14.618913, 65.928267], - [-14.619525, 65.927821], - [-14.619686, 65.927532], - [-14.619654, 65.927366], - [-14.619332, 65.927318], - [-14.619032, 65.926963], - [-14.619375, 65.926469], - [-14.619847, 65.92646], - [-14.62019, 65.92614], - [-14.619815, 65.92569], - [-14.61955, 65.92552], - [-14.618313, 65.925506], - [-14.61813, 65.925177], - [-14.617905, 65.925142], - [-14.617776, 65.925685], - [-14.617455, 65.925734], - [-14.617057, 65.925191], - [-14.616392, 65.925077], - [-14.615867, 65.924744], - [-14.61606, 65.924434], - [-14.616993, 65.924035], - [-14.61769, 65.923436], - [-14.617626, 65.922197], - [-14.618613, 65.921606], - [-14.619171, 65.921459], - [-14.619809, 65.921195], - [-14.620222, 65.92091], - [-14.620677, 65.920863], - [-14.620576, 65.920547], - [-14.621113, 65.920608], - [-14.621455, 65.920487], - [-14.622218, 65.919588], - [-14.623141, 65.919019], - [-14.623581, 65.918257], - [-14.624289, 65.917758], - [-14.624932, 65.91736], - [-14.624804, 65.916913], - [-14.624932, 65.916471], - [-14.625841, 65.915665], - [-14.626821, 65.914799], - [-14.626724, 65.914308], - [-14.626303, 65.91364], - [-14.627228, 65.913443], - [-14.627421, 65.913104], - [-14.628494, 65.912552], - [-14.628645, 65.911808], - [-14.627861, 65.911423], - [-14.628012, 65.910801], - [-14.629009, 65.910446], - [-14.629814, 65.910236], - [-14.630265, 65.909364], - [-14.630157, 65.909018], - [-14.629503, 65.908821], - [-14.630071, 65.908326], - [-14.630361, 65.908357], - [-14.630511, 65.908795], - [-14.631219, 65.907584], - [-14.631212, 65.90722], - [-14.631627, 65.906601], - [-14.632627, 65.90631], - [-14.635082, 65.905453], - [-14.636756, 65.904678], - [-14.637517, 65.904626], - [-14.639011, 65.904312], - [-14.640692, 65.904036], - [-14.64428, 65.90282], - [-14.646131, 65.901868], - [-14.648666, 65.900379], - [-14.649491, 65.900096], - [-14.651471, 65.898921], - [-14.652527, 65.897086], - [-14.653824, 65.895369], - [-14.654544, 65.895329], - [-14.654589, 65.89528], - [-14.654849, 65.894998], - [-14.65472, 65.89441], - [-14.655851, 65.892683], - [-14.65505, 65.890852], - [-14.655799, 65.889746], - [-14.65574, 65.88802], - [-14.6564, 65.887354], - [-14.656849, 65.887004], - [-14.658075, 65.886636], - [-14.65888, 65.88648], - [-14.66016, 65.885837], - [-14.66078, 65.88522], - [-14.664455, 65.88457], - [-14.66579, 65.88395], - [-14.666922, 65.883547], - [-14.66705, 65.88293], - [-14.66518, 65.88292], - [-14.66519, 65.8824], - [-14.66394, 65.88267], - [-14.66489, 65.8814], - [-14.6746, 65.87937], - [-14.67712, 65.87822], - [-14.68149, 65.87861], - [-14.68149, 65.8781], - [-14.68274, 65.87836], - [-14.68275, 65.87785], - [-14.684, 65.87785], - [-14.68339, 65.87632], - [-14.68464, 65.87632], - [-14.68465, 65.87581], - [-14.69028, 65.87531], - [-14.6906, 65.8748], - [-14.69655, 65.87366], - [-14.70093, 65.87277], - [-14.70094, 65.87226], - [-14.7072, 65.87099], - [-14.7072, 65.87048], - [-14.71033, 65.87049], - [-14.71034, 65.86972], - [-14.71534, 65.86922], - [-14.71597, 65.86857], - [-14.71942, 65.86795], - [-14.71975, 65.8659], - [-14.72163, 65.86578], - [-14.72226, 65.86488], - [-14.72476, 65.86514], - [-14.7301, 65.86157], - [-14.73044, 65.85927], - [-14.73169, 65.85928], - [-14.73234, 65.85621], - [-14.73359, 65.85621], - [-14.7321, 65.84956], - [-14.72681, 65.84776], - [-14.7212, 65.84737], - [-14.71995, 65.84776], - [-14.72036, 65.84741], - [-14.71966, 65.84596], - [-14.72185, 65.84481], - [-14.72372, 65.84507], - [-14.72498, 65.84456], - [-14.7285, 65.84486], - [-14.72934, 65.84469], - [-14.72893, 65.84504], - [-14.73121, 65.84559], - [-14.73184, 65.84469], - [-14.73308, 65.84509], - [-14.73871, 65.84446], - [-14.73869, 65.84497], - [-14.73996, 65.8442], - [-14.74121, 65.84421], - [-14.74121, 65.84344], - [-14.76246, 65.84104], - [-14.76309, 65.84041], - [-14.76683, 65.84003], - [-14.77058, 65.84016], - [-14.77308, 65.83901], - [-14.78244, 65.83928], - [-14.78618, 65.83954], - [-14.79056, 65.8384], - [-14.79496, 65.83483], - [-14.798153, 65.83005], - [-14.799611, 65.827523], - [-14.800175, 65.82621], - [-14.800441, 65.824726], - [-14.800706, 65.823247], - [-14.80068, 65.82128], - [-14.80163, 65.81949], - [-14.802461, 65.818843], - [-14.80382, 65.81873], - [-14.804631, 65.818308], - [-14.805584, 65.816942], - [-14.807268, 65.81567], - [-14.80758, 65.81515], - [-14.80821, 65.81464], - [-14.81102, 65.81388], - [-14.81134, 65.81235], - [-14.812767, 65.812077], - [-14.81384, 65.81184], - [-14.814833, 65.811429], - [-14.815884, 65.810805], - [-14.817898, 65.809397], - [-14.819295, 65.808985], - [-14.820862, 65.809064], - [-14.823569, 65.808926], - [-14.824427, 65.808697], - [-14.825023, 65.808398], - [-14.825163, 65.80494], - [-14.825058, 65.804708], - [-14.82553, 65.80376], - [-14.82512, 65.80341], - [-14.82699, 65.80367], - [-14.82699, 65.80316], - [-14.826646, 65.80316], - [-14.8245, 65.80316], - [-14.823919, 65.799791], - [-14.82328, 65.79958], - [-14.82055, 65.78807], - [-14.81777, 65.78678], - [-14.81714, 65.78601], - [-14.81279, 65.78499], - [-14.80968, 65.78396], - [-14.80407, 65.7837], - [-14.80471, 65.78293], - [-14.80907, 65.78282], - [-14.81933, 65.78499], - [-14.82088, 65.78525], - [-14.82119, 65.78653], - [-14.82398, 65.78705], - [-14.824397, 65.787018], - [-14.824571, 65.787076], - [-14.82464, 65.787249], - [-14.824757, 65.787445], - [-14.824687, 65.787745], - [-14.824534, 65.787984], - [-14.824343, 65.788426], - [-14.823994, 65.788876], - [-14.823836, 65.789206], - [-14.823765, 65.789602], - [-14.82374, 65.789899], - [-14.82402, 65.790127], - [-14.824603, 65.79033], - [-14.826176, 65.790807], - [-14.82663, 65.790877], - [-14.827271, 65.790967], - [-14.827784, 65.790907], - [-14.829027, 65.790685], - [-14.829461, 65.790538], - [-14.830059, 65.790218], - [-14.83065, 65.789835], - [-14.830946, 65.789598], - [-14.831155, 65.789312], - [-14.831187, 65.788979], - [-14.831355, 65.788702], - [-14.831784, 65.788332], - [-14.832327, 65.787959], - [-14.832547, 65.787684], - [-14.832552, 65.787446], - [-14.832189, 65.786463], - [-14.832297, 65.786239], - [-14.832362, 65.785963], - [-14.832364, 65.785499], - [-14.832299, 65.784524], - [-14.831807, 65.784239], - [-14.831603, 65.783227], - [-14.831219, 65.78256], - [-14.830453, 65.782036], - [-14.829139, 65.78145], - [-14.828655, 65.781216], - [-14.828673, 65.781059], - [-14.828952, 65.780992], - [-14.829233, 65.780898], - [-14.829701, 65.780642], - [-14.830087, 65.780516], - [-14.830375, 65.780498], - [-14.830821, 65.780499], - [-14.831272, 65.780367], - [-14.831469, 65.780194], - [-14.831506, 65.7799], - [-14.831374, 65.779485], - [-14.8309, 65.779151], - [-14.830547, 65.778919], - [-14.830952, 65.778834], - [-14.83133, 65.778727], - [-14.831518, 65.778515], - [-14.831499, 65.778195], - [-14.831412, 65.77789], - [-14.831452, 65.777634], - [-14.83165, 65.777475], - [-14.831696, 65.777202], - [-14.831624, 65.776998], - [-14.831689, 65.776646], - [-14.83173, 65.776215], - [-14.831633, 65.775918], - [-14.831434, 65.775616], - [-14.831135, 65.775267], - [-14.831216, 65.775166], - [-14.831322, 65.775033], - [-14.831325, 65.774791], - [-14.831082, 65.774499], - [-14.831143, 65.774287], - [-14.831347, 65.774063], - [-14.831629, 65.77386], - [-14.831758, 65.773724], - [-14.831749, 65.77364], - [-14.831666, 65.773542], - [-14.831523, 65.773422], - [-14.830773, 65.772788], - [-14.830045, 65.772254], - [-14.829799, 65.772191], - [-14.829666, 65.772103], - [-14.829682, 65.772036], - [-14.829912, 65.771947], - [-14.830341, 65.771852], - [-14.830649, 65.771856], - [-14.831098, 65.771746], - [-14.831516, 65.771763], - [-14.832197, 65.77186], - [-14.832919, 65.772], - [-14.833229, 65.772017], - [-14.833658, 65.771986], - [-14.834276, 65.771989], - [-14.83511, 65.77193], - [-14.835738, 65.771934], - [-14.836164, 65.771927], - [-14.836712, 65.771986], - [-14.837335, 65.772057], - [-14.838459, 65.772089], - [-14.839154, 65.77208], - [-14.839914, 65.77216], - [-14.840583, 65.772179], - [-14.8414, 65.772146], - [-14.841861, 65.772093], - [-14.842495, 65.77214], - [-14.843747, 65.772278], - [-14.84551, 65.772525], - [-14.847169, 65.772821], - [-14.848632, 65.77304], - [-14.849271, 65.773099], - [-14.850162, 65.773198], - [-14.850606, 65.77323], - [-14.851091, 65.773216], - [-14.851463, 65.773149], - [-14.851703, 65.773013], - [-14.851936, 65.772788], - [-14.852168, 65.772484], - [-14.852399, 65.772219], - [-14.852651, 65.771971], - [-14.852933, 65.771714], - [-14.853272, 65.771511], - [-14.853693, 65.771244], - [-14.853962, 65.771096], - [-14.85429, 65.770961], - [-14.854746, 65.770858], - [-14.855342, 65.770751], - [-14.856314, 65.770631], - [-14.85747, 65.770517], - [-14.858545, 65.770495], - [-14.85917, 65.770482], - [-14.859835, 65.770437], - [-14.860348, 65.770382], - [-14.860653, 65.770309], - [-14.861094, 65.770153], - [-14.861399, 65.770019], - [-14.861572, 65.769962], - [-14.862022, 65.76989], - [-14.862597, 65.769794], - [-14.863, 65.76969], - [-14.863345, 65.769505], - [-14.863504, 65.76932], - [-14.863738, 65.7692], - [-14.864131, 65.769027], - [-14.864567, 65.768852], - [-14.864835, 65.768667], - [-14.864972, 65.768553], - [-14.865076, 65.768451], - [-14.865213, 65.768381], - [-14.865301, 65.768264], - [-14.865395, 65.768115], - [-14.865501, 65.768011], - [-14.865673, 65.767893], - [-14.865877, 65.767799], - [-14.866009, 65.767684], - [-14.866181, 65.767572], - [-14.866394, 65.767531], - [-14.866868, 65.767454], - [-14.86731, 65.767361], - [-14.867656, 65.767222], - [-14.867891, 65.767106], - [-14.868188, 65.767006], - [-14.868267, 65.76685], - [-14.868299, 65.76652], - [-14.868099, 65.766035], - [-14.867765, 65.765577], - [-14.866857, 65.764717], - [-14.866598, 65.764577], - [-14.866321, 65.764457], - [-14.866253, 65.764401], - [-14.866283, 65.764322], - [-14.866334, 65.764226], - [-14.866308, 65.764132], - [-14.866339, 65.764047], - [-14.866438, 65.763961], - [-14.866636, 65.763931], - [-14.86704, 65.763915], - [-14.867663, 65.763819], - [-14.868431, 65.763586], - [-14.868988, 65.763431], - [-14.870013, 65.763236], - [-14.871181, 65.763132], - [-14.871714, 65.763129], - [-14.872016, 65.763173], - [-14.87247, 65.763189], - [-14.873393, 65.763096], - [-14.874432, 65.763012], - [-14.876264, 65.762963], - [-14.877633, 65.76289], - [-14.878202, 65.762884], - [-14.879354, 65.762959], - [-14.880266, 65.763042], - [-14.881863, 65.763144], - [-14.883717, 65.763115], - [-14.884443, 65.762995], - [-14.884875, 65.7628], - [-14.884976, 65.762576], - [-14.884881, 65.762329], - [-14.885021, 65.762068], - [-14.885333, 65.761873], - [-14.885805, 65.761761], - [-14.886287, 65.761722], - [-14.886835, 65.761583], - [-14.88728, 65.761396], - [-14.88749, 65.761098], - [-14.887756, 65.760977], - [-14.887931, 65.760898], - [-14.888463, 65.760728], - [-14.888828, 65.760507], - [-14.88918, 65.760184], - [-14.889842, 65.759954], - [-14.890612, 65.759688], - [-14.890694, 65.75966], - [-14.891758, 65.759278], - [-14.892711, 65.759232], - [-14.893277, 65.759146], - [-14.893369, 65.759098], - [-14.893678, 65.758938], - [-14.893955, 65.758793], - [-14.894279, 65.758634], - [-14.894701, 65.758526], - [-14.895251, 65.758405], - [-14.8961, 65.758354], - [-14.896482, 65.758299], - [-14.896732, 65.758199], - [-14.897027, 65.757812], - [-14.897234, 65.757669], - [-14.897737, 65.75753], - [-14.898156, 65.757438], - [-14.898541, 65.757253], - [-14.898791, 65.757076], - [-14.898852, 65.756883], - [-14.898791, 65.756719], - [-14.898422, 65.756546], - [-14.898591, 65.756377], - [-14.898703, 65.756262], - [-14.898721, 65.756011], - [-14.898742, 65.755725], - [-14.898306, 65.755256], - [-14.897899, 65.75479], - [-14.897048, 65.75445], - [-14.896246, 65.754147], - [-14.895729, 65.754255], - [-14.895106, 65.754374], - [-14.894501, 65.754525], - [-14.894098, 65.754474], - [-14.893704, 65.754395], - [-14.893356, 65.754311], - [-14.893208, 65.754153], - [-14.89322, 65.753973], - [-14.892644, 65.753534], - [-14.892091, 65.753114], - [-14.891989, 65.753036], - [-14.891404, 65.752629], - [-14.890989, 65.752243], - [-14.890886, 65.752092], - [-14.890892, 65.751842], - [-14.891021, 65.751592], - [-14.891049, 65.751396], - [-14.890286, 65.750876], - [-14.88936, 65.750471], - [-14.888497, 65.750118], - [-14.886291, 65.74963], - [-14.88472, 65.749297], - [-14.884216, 65.749104], - [-14.884175, 65.748883], - [-14.883871, 65.748738], - [-14.881419, 65.748532], - [-14.880433, 65.749076], - [-14.879161, 65.749512], - [-14.878295, 65.749782], - [-14.877876, 65.749828], - [-14.877276, 65.749842], - [-14.876127, 65.749917], - [-14.875445, 65.750007], - [-14.874691, 65.75028], - [-14.873475, 65.750882], - [-14.872624, 65.75122], - [-14.872059, 65.751571], - [-14.871157, 65.752226], - [-14.871067, 65.752265], - [-14.870674, 65.752434], - [-14.869944, 65.752667], - [-14.868683, 65.753252], - [-14.867904, 65.753615], - [-14.867213, 65.753767], - [-14.866579, 65.753982], - [-14.8663, 65.754028], - [-14.86468, 65.754711], - [-14.863752, 65.755119], - [-14.862367, 65.75569], - [-14.861435, 65.756224], - [-14.860831, 65.756411], - [-14.86013, 65.75668], - [-14.858967, 65.757038], - [-14.858193, 65.757144], - [-14.85707, 65.757626], - [-14.85632, 65.75802], - [-14.855916, 65.758207], - [-14.855699, 65.758256], - [-14.855267, 65.758293], - [-14.854976, 65.75839], - [-14.854534, 65.758571], - [-14.854096, 65.758718], - [-14.852779, 65.759165], - [-14.851528, 65.759618], - [-14.850238, 65.760233], - [-14.849535, 65.760488], - [-14.848767, 65.760971], - [-14.848147, 65.761151], - [-14.846226, 65.761723], - [-14.843975, 65.762527], - [-14.843051, 65.762879], - [-14.842173, 65.763282], - [-14.841559, 65.763678], - [-14.840837, 65.763997], - [-14.84009, 65.76425], - [-14.839371, 65.764409], - [-14.838361, 65.764613], - [-14.837503, 65.76493], - [-14.83681, 65.765309], - [-14.836119, 65.765538], - [-14.834714, 65.766095], - [-14.833451, 65.766471], - [-14.832877, 65.766739], - [-14.831486, 65.767387], - [-14.830032, 65.768004], - [-14.829757, 65.768149], - [-14.82954, 65.768335], - [-14.829144, 65.768486], - [-14.828935, 65.768635], - [-14.828893, 65.768785], - [-14.828752, 65.768842], - [-14.828455, 65.768947], - [-14.827975, 65.769065], - [-14.827687, 65.769147], - [-14.827633, 65.769251], - [-14.827688, 65.769382], - [-14.827878, 65.769844], - [-14.828166, 65.770201], - [-14.828621, 65.770579], - [-14.829212, 65.77092], - [-14.829996, 65.771333], - [-14.830131, 65.771439], - [-14.829984, 65.771537], - [-14.829463, 65.771672], - [-14.829238, 65.771717], - [-14.828983, 65.771678], - [-14.828855, 65.771584], - [-14.828907, 65.771514], - [-14.828952, 65.77146], - [-14.828906, 65.77139], - [-14.828694, 65.771296], - [-14.828398, 65.771096], - [-14.828111, 65.770921], - [-14.827814, 65.770636], - [-14.827304, 65.770148], - [-14.826902, 65.769704], - [-14.826749, 65.769518], - [-14.826693, 65.769399], - [-14.826657, 65.769282], - [-14.826533, 65.76919], - [-14.826398, 65.769245], - [-14.826193, 65.769348], - [-14.825896, 65.769464], - [-14.825663, 65.769568], - [-14.825549, 65.769717], - [-14.825277, 65.769862], - [-14.82494, 65.76996], - [-14.825415, 65.770095], - [-14.82524, 65.770198], - [-14.824952, 65.770284], - [-14.824532, 65.770325], - [-14.823975, 65.770405], - [-14.823296, 65.770505], - [-14.822636, 65.770616], - [-14.822332, 65.770762], - [-14.822062, 65.770983], - [-14.82193, 65.771152], - [-14.821627, 65.77127], - [-14.821508, 65.771355], - [-14.821377, 65.771426], - [-14.821223, 65.771484], - [-14.820941, 65.771527], - [-14.820841, 65.77157], - [-14.820768, 65.771679], - [-14.820081, 65.771975], - [-14.819818, 65.772056], - [-14.819523, 65.772087], - [-14.819221, 65.772187], - [-14.818985, 65.772349], - [-14.818589, 65.77247], - [-14.818015, 65.772596], - [-14.817634, 65.77267], - [-14.817385, 65.772777], - [-14.817311, 65.772869], - [-14.817283, 65.772983], - [-14.817271, 65.773097], - [-14.817265, 65.773201], - [-14.817049, 65.773327], - [-14.816831, 65.77338], - [-14.816629, 65.773437], - [-14.816509, 65.77349], - [-14.816475, 65.773551], - [-14.816463, 65.77363], - [-14.816517, 65.773686], - [-14.816423, 65.773746], - [-14.816309, 65.77376], - [-14.816147, 65.773787], - [-14.815934, 65.773822], - [-14.815843, 65.773898], - [-14.815757, 65.773986], - [-14.815596, 65.774044], - [-14.8154, 65.774146], - [-14.815299, 65.774225], - [-14.815111, 65.774358], - [-14.814916, 65.774428], - [-14.814718, 65.774454], - [-14.814591, 65.774541], - [-14.814503, 65.774619], - [-14.814317, 65.774702], - [-14.814149, 65.774778], - [-14.814093, 65.774862], - [-14.814031, 65.774932], - [-14.813933, 65.774972], - [-14.813757, 65.775021], - [-14.813525, 65.77507], - [-14.813256, 65.77517], - [-14.812913, 65.775341], - [-14.812584, 65.775541], - [-14.812377, 65.7757], - [-14.812266, 65.775862], - [-14.811986, 65.776008], - [-14.811762, 65.776101], - [-14.811555, 65.776144], - [-14.811029, 65.776352], - [-14.810052, 65.776712], - [-14.809781, 65.776888], - [-14.809619, 65.777017], - [-14.809608, 65.77715], - [-14.809642, 65.777242], - [-14.80953, 65.777294], - [-14.809424, 65.777354], - [-14.80936, 65.777445], - [-14.80935, 65.77754], - [-14.809296, 65.777599], - [-14.809095, 65.777624], - [-14.808848, 65.777648], - [-14.808693, 65.777658], - [-14.808574, 65.777701], - [-14.808434, 65.777786], - [-14.808289, 65.777897], - [-14.808144, 65.777995], - [-14.807969, 65.778058], - [-14.807716, 65.778076], - [-14.80746, 65.778094], - [-14.807107, 65.778143], - [-14.806799, 65.778237], - [-14.806614, 65.778345], - [-14.806413, 65.778468], - [-14.806137, 65.778553], - [-14.80597, 65.778612], - [-14.805754, 65.77871], - [-14.805561, 65.778786], - [-14.805419, 65.778904], - [-14.805315, 65.778979], - [-14.80514, 65.779018], - [-14.80503, 65.779083], - [-14.80491, 65.779157], - [-14.804819, 65.779229], - [-14.804671, 65.779276], - [-14.80455, 65.779355], - [-14.804247, 65.779541], - [-14.803908, 65.779719], - [-14.803564, 65.779944], - [-14.803203, 65.780132], - [-14.802807, 65.780304], - [-14.8026, 65.780399], - [-14.802344, 65.780438], - [-14.802049, 65.780491], - [-14.80184, 65.780555], - [-14.801669, 65.780657], - [-14.801283, 65.780859], - [-14.80087, 65.781078], - [-14.800528, 65.781278], - [-14.80024, 65.781487], - [-14.800065, 65.781606], - [-14.799581, 65.781795], - [-14.799343, 65.781957], - [-14.799063, 65.782095], - [-14.798941, 65.782218], - [-14.798735, 65.78236], - [-14.798406, 65.782523], - [-14.79759, 65.782886], - [-14.796685, 65.783266], - [-14.79643, 65.783436], - [-14.796188, 65.783605], - [-14.795884, 65.783695], - [-14.795415, 65.783883], - [-14.795247, 65.784096], - [-14.795162, 65.784248], - [-14.794934, 65.784408], - [-14.794739, 65.784453], - [-14.794478, 65.784471], - [-14.794107, 65.784582], - [-14.79379, 65.7847], - [-14.793621, 65.78479], - [-14.793491, 65.784864], - [-14.793401, 65.784975], - [-14.793258, 65.785043], - [-14.792878, 65.785145], - [-14.792425, 65.785202], - [-14.791739, 65.785296], - [-14.791022, 65.785351], - [-14.79049, 65.785477], - [-14.790161, 65.785626], - [-14.789947, 65.785793], - [-14.789847, 65.786092], - [-14.789841, 65.786316], - [-14.789836, 65.786475], - [-14.789881, 65.786598], - [-14.789823, 65.786707], - [-14.789735, 65.78677], - [-14.789527, 65.786767], - [-14.789128, 65.786842], - [-14.788447, 65.786971], - [-14.788093, 65.787076], - [-14.787824, 65.78722], - [-14.787546, 65.787491], - [-14.787301, 65.787652], - [-14.78724, 65.78777], - [-14.787054, 65.787847], - [-14.786874, 65.787865], - [-14.786604, 65.78785], - [-14.786397, 65.787789], - [-14.786286, 65.787729], - [-14.786207, 65.787626], - [-14.786337, 65.787534], - [-14.786403, 65.787438], - [-14.786203, 65.787385], - [-14.785904, 65.787332], - [-14.785668, 65.787349], - [-14.785522, 65.78746], - [-14.785454, 65.787675], - [-14.785362, 65.78779], - [-14.785238, 65.78782], - [-14.785124, 65.78778], - [-14.785108, 65.787706], - [-14.784958, 65.787628], - [-14.784793, 65.78785], - [-14.784603, 65.787888], - [-14.784453, 65.787847], - [-14.784272, 65.787772], - [-14.783912, 65.787716], - [-14.783178, 65.787723], - [-14.782961, 65.787746], - [-14.782608, 65.787838], - [-14.782199, 65.788037], - [-14.782029, 65.788118], - [-14.781799, 65.788175], - [-14.781528, 65.788203], - [-14.781247, 65.788229], - [-14.781075, 65.788312], - [-14.780911, 65.788409], - [-14.780751, 65.788526], - [-14.780574, 65.788579], - [-14.780436, 65.788585], - [-14.780251, 65.788497], - [-14.780005, 65.788392], - [-14.779808, 65.788433], - [-14.779738, 65.788524], - [-14.779577, 65.788652], - [-14.779564, 65.788762], - [-14.77951, 65.788815], - [-14.77939, 65.788865], - [-14.779236, 65.788916], - [-14.779268, 65.788975], - [-14.77912, 65.789095], - [-14.778967, 65.789179], - [-14.778812, 65.789203], - [-14.778682, 65.789139], - [-14.778495, 65.789121], - [-14.778356, 65.789029], - [-14.777921, 65.788977], - [-14.777573, 65.789051], - [-14.777061, 65.789216], - [-14.776215, 65.789643], - [-14.775486, 65.790196], - [-14.775342, 65.790247], - [-14.775169, 65.790102], - [-14.774758, 65.790042], - [-14.774517, 65.789968], - [-14.774226, 65.78988], - [-14.773714, 65.789832], - [-14.773326, 65.78984], - [-14.773143, 65.789971], - [-14.77292, 65.790086], - [-14.772654, 65.790139], - [-14.772577, 65.790301], - [-14.772547, 65.790447], - [-14.772463, 65.790506], - [-14.772336, 65.790506], - [-14.772272, 65.790437], - [-14.772191, 65.790341], - [-14.772026, 65.790335], - [-14.772058, 65.790221], - [-14.772177, 65.790112], - [-14.772072, 65.790062], - [-14.771802, 65.790025], - [-14.771441, 65.789998], - [-14.771209, 65.79003], - [-14.771036, 65.790072], - [-14.770981, 65.790134], - [-14.770995, 65.790213], - [-14.771142, 65.790275], - [-14.77117, 65.790336], - [-14.770838, 65.790389], - [-14.770273, 65.790424], - [-14.769756, 65.790488], - [-14.769437, 65.790591], - [-14.768944, 65.790735], - [-14.76861, 65.79087], - [-14.768268, 65.790914], - [-14.767894, 65.790833], - [-14.767378, 65.790766], - [-14.766603, 65.790774], - [-14.766115, 65.790685], - [-14.765351, 65.790278], - [-14.76474, 65.789873], - [-14.764315, 65.789795], - [-14.76408, 65.789643], - [-14.764051, 65.78943], - [-14.764115, 65.789114], - [-14.764372, 65.788664], - [-14.764616, 65.788049], - [-14.764737, 65.787582], - [-14.764997, 65.787185], - [-14.765363, 65.787], - [-14.765839, 65.786828], - [-14.766498, 65.786687], - [-14.766983, 65.786442], - [-14.767308, 65.786081], - [-14.767995, 65.785755], - [-14.768449, 65.785665], - [-14.769004, 65.785474], - [-14.769175, 65.785277], - [-14.769259, 65.785049], - [-14.769806, 65.784694], - [-14.770475, 65.784388], - [-14.770964, 65.784289], - [-14.771155, 65.783977], - [-14.771562, 65.783552], - [-14.77234, 65.78289], - [-14.775937, 65.781008], - [-14.776549, 65.780765], - [-14.77669, 65.780656], - [-14.776811, 65.780529], - [-14.77756, 65.780105], - [-14.777593, 65.780005], - [-14.777618, 65.779904], - [-14.777692, 65.779844], - [-14.77775, 65.779868], - [-14.777807, 65.779916], - [-14.777954, 65.779922], - [-14.778102, 65.779891], - [-14.778284, 65.779799], - [-14.778646, 65.779664], - [-14.779013, 65.779525], - [-14.779337, 65.779429], - [-14.779596, 65.779311], - [-14.779846, 65.779191], - [-14.780044, 65.779166], - [-14.780236, 65.779072], - [-14.780465, 65.778913], - [-14.780694, 65.778741], - [-14.780742, 65.778633], - [-14.78103, 65.778443], - [-14.7813, 65.778423], - [-14.781487, 65.778225], - [-14.781555, 65.778122], - [-14.781488, 65.778066], - [-14.781301, 65.778013], - [-14.781246, 65.777946], - [-14.781293, 65.77784], - [-14.781372, 65.777721], - [-14.781565, 65.777598], - [-14.781738, 65.777514], - [-14.781962, 65.777432], - [-14.782169, 65.777316], - [-14.782312, 65.777202], - [-14.78248, 65.777145], - [-14.782542, 65.777589], - [-14.782689, 65.777677], - [-14.782902, 65.777661], - [-14.783219, 65.777609], - [-14.783535, 65.777548], - [-14.783819, 65.777459], - [-14.783985, 65.777313], - [-14.784212, 65.777121], - [-14.784493, 65.776888], - [-14.784678, 65.776783], - [-14.784759, 65.776829], - [-14.785483, 65.776441], - [-14.785894, 65.776144], - [-14.786162, 65.775852], - [-14.786277, 65.775574], - [-14.786249, 65.775445], - [-14.786151, 65.775352], - [-14.786053, 65.775264], - [-14.785984, 65.775188], - [-14.785904, 65.775125], - [-14.78602, 65.775027], - [-14.786153, 65.774929], - [-14.786272, 65.774789], - [-14.786401, 65.774704], - [-14.786568, 65.77464], - [-14.786707, 65.774535], - [-14.786855, 65.774465], - [-14.786953, 65.77446], - [-14.786949, 65.774514], - [-14.786992, 65.774613], - [-14.787113, 65.774707], - [-14.787377, 65.774788], - [-14.787513, 65.774786], - [-14.787664, 65.774754], - [-14.787852, 65.774675], - [-14.787957, 65.774589], - [-14.788096, 65.774518], - [-14.788189, 65.774417], - [-14.78819, 65.774334], - [-14.7881, 65.774261], - [-14.787899, 65.774168], - [-14.787609, 65.774074], - [-14.78737, 65.773987], - [-14.787216, 65.773948], - [-14.78711, 65.774026], - [-14.786915, 65.774189], - [-14.786656, 65.774291], - [-14.786463, 65.774261], - [-14.786458, 65.774217], - [-14.786474, 65.774106], - [-14.786599, 65.773854], - [-14.786778, 65.773678], - [-14.786895, 65.773543], - [-14.786769, 65.773391], - [-14.78662, 65.773294], - [-14.786459, 65.773212], - [-14.786265, 65.773148], - [-14.786026, 65.772916], - [-14.785771, 65.772777], - [-14.785749, 65.772695], - [-14.785824, 65.772584], - [-14.785875, 65.772529], - [-14.785852, 65.772384], - [-14.785836, 65.772316], - [-14.785886, 65.772245], - [-14.785977, 65.772192], - [-14.786063, 65.772117], - [-14.786227, 65.77196], - [-14.786399, 65.7718], - [-14.78637, 65.771698], - [-14.786364, 65.771603], - [-14.786403, 65.771484], - [-14.786517, 65.771348], - [-14.786648, 65.771169], - [-14.786707, 65.77106], - [-14.786845, 65.770972], - [-14.787055, 65.770939], - [-14.787213, 65.770966], - [-14.78736, 65.770932], - [-14.787631, 65.77087], - [-14.787783, 65.77086], - [-14.787925, 65.770878], - [-14.788016, 65.770933], - [-14.788061, 65.770982], - [-14.78805, 65.771045], - [-14.788258, 65.77108], - [-14.788371, 65.771135], - [-14.788531, 65.771117], - [-14.788682, 65.771066], - [-14.78878, 65.770995], - [-14.788892, 65.770887], - [-14.78909, 65.770722], - [-14.789368, 65.770502], - [-14.789679, 65.770284], - [-14.78981, 65.770177], - [-14.789894, 65.770064], - [-14.789888, 65.769959], - [-14.789936, 65.769801], - [-14.790125, 65.769763], - [-14.790212, 65.769704], - [-14.790341, 65.76962], - [-14.790385, 65.769526], - [-14.790376, 65.76941], - [-14.790338, 65.769319], - [-14.790452, 65.769228], - [-14.790625, 65.769116], - [-14.790902, 65.768844], - [-14.791085, 65.768646], - [-14.79116, 65.768483], - [-14.791104, 65.768387], - [-14.791234, 65.768237], - [-14.791509, 65.768085], - [-14.791722, 65.768025], - [-14.791758, 65.768093], - [-14.791899, 65.768153], - [-14.792093, 65.768131], - [-14.792296, 65.768071], - [-14.793851, 65.768484], - [-14.794343, 65.768609], - [-14.794813, 65.768638], - [-14.795269, 65.768635], - [-14.795618, 65.768598], - [-14.795681, 65.768489], - [-14.79585, 65.768401], - [-14.79587, 65.768336], - [-14.795797, 65.768255], - [-14.795643, 65.768108], - [-14.795642, 65.767982], - [-14.795635, 65.767843], - [-14.795619, 65.767732], - [-14.79575, 65.76761], - [-14.795905, 65.767559], - [-14.796156, 65.767529], - [-14.796369, 65.767524], - [-14.796421, 65.767661], - [-14.796427, 65.767837], - [-14.796397, 65.767993], - [-14.796465, 65.768155], - [-14.796458, 65.768343], - [-14.796501, 65.768409], - [-14.796694, 65.768414], - [-14.796748, 65.768398], - [-14.79692, 65.76835], - [-14.79702, 65.768281], - [-14.797266, 65.768145], - [-14.797256, 65.767982], - [-14.797151, 65.767714], - [-14.797158, 65.76742], - [-14.797299, 65.767379], - [-14.797572, 65.76737], - [-14.797666, 65.767462], - [-14.797965, 65.767499], - [-14.798213, 65.767451], - [-14.798401, 65.767496], - [-14.7984, 65.767631], - [-14.798449, 65.767739], - [-14.798674, 65.767805], - [-14.799016, 65.767841], - [-14.799369, 65.767867], - [-14.799734, 65.767832], - [-14.800038, 65.76777], - [-14.800267, 65.767673], - [-14.800606, 65.767686], - [-14.801001, 65.767639], - [-14.801433, 65.767573], - [-14.802904, 65.767414], - [-14.803384, 65.767364], - [-14.80379, 65.767219], - [-14.804457, 65.766975], - [-14.804937, 65.766796], - [-14.805436, 65.766684], - [-14.805737, 65.766642], - [-14.805845, 65.766478], - [-14.805892, 65.76628], - [-14.806303, 65.766068], - [-14.806679, 65.76587], - [-14.807026, 65.765736], - [-14.8072, 65.765543], - [-14.807552, 65.76504], - [-14.808498, 65.764215], - [-14.808967, 65.76356], - [-14.81109, 65.76261], - [-14.811404, 65.762439], - [-14.812009, 65.762108], - [-14.812378, 65.762162], - [-14.812748, 65.762204], - [-14.813022, 65.762182], - [-14.813214, 65.7621], - [-14.813311, 65.761957], - [-14.81344, 65.761781], - [-14.813442, 65.761633], - [-14.813522, 65.761444], - [-14.813684, 65.761336], - [-14.814285, 65.761166], - [-14.814433, 65.761132], - [-14.815089, 65.760979], - [-14.815519, 65.760798], - [-14.815662, 65.760609], - [-14.815683, 65.760462], - [-14.81596, 65.760179], - [-14.816813, 65.759934], - [-14.816901, 65.759925], - [-14.81719, 65.759897], - [-14.817271, 65.759889], - [-14.817458, 65.759998], - [-14.817851, 65.760031], - [-14.818003, 65.76007], - [-14.817886, 65.760101], - [-14.817864, 65.76016], - [-14.817988, 65.760222], - [-14.818252, 65.760244], - [-14.818538, 65.760235], - [-14.818749, 65.760214], - [-14.818956, 65.760145], - [-14.819108, 65.76003], - [-14.819215, 65.759847], - [-14.819342, 65.759643], - [-14.819478, 65.759433], - [-14.81973, 65.759225], - [-14.819915, 65.758904], - [-14.819791, 65.758806], - [-14.819719, 65.758704], - [-14.819596, 65.758601], - [-14.819534, 65.758523], - [-14.819569, 65.758443], - [-14.819699, 65.758339], - [-14.819869, 65.758254], - [-14.820066, 65.758152], - [-14.819714, 65.758098], - [-14.819771, 65.758034], - [-14.819841, 65.757956], - [-14.819886, 65.757906], - [-14.820038, 65.757891], - [-14.820194, 65.757894], - [-14.820312, 65.757904], - [-14.820401, 65.757894], - [-14.820456, 65.757873], - [-14.820572, 65.757857], - [-14.820656, 65.757843], - [-14.820771, 65.757787], - [-14.820847, 65.757726], - [-14.820933, 65.757671], - [-14.821001, 65.757618], - [-14.821025, 65.757566], - [-14.821014, 65.757512], - [-14.820842, 65.757471], - [-14.820681, 65.757481], - [-14.820354, 65.7575], - [-14.820059, 65.757517], - [-14.819905, 65.757526], - [-14.819915, 65.757499], - [-14.819991, 65.757301], - [-14.821203, 65.756489], - [-14.82397, 65.754706], - [-14.824558, 65.754259], - [-14.824848, 65.753437], - [-14.82504, 65.753302], - [-14.825712, 65.752558], - [-14.825758, 65.752507], - [-14.825846, 65.752484], - [-14.826054, 65.752432], - [-14.826444, 65.752476], - [-14.826743, 65.752568], - [-14.827189, 65.752662], - [-14.827772, 65.752671], - [-14.82832, 65.752641], - [-14.828734, 65.752501], - [-14.828946, 65.752323], - [-14.829025, 65.75199], - [-14.829374, 65.751389], - [-14.829391, 65.750968], - [-14.82955, 65.750802], - [-14.829739, 65.750691], - [-14.82982, 65.750831], - [-14.829984, 65.750919], - [-14.830446, 65.750901], - [-14.830517, 65.750804], - [-14.830586, 65.75068], - [-14.830435, 65.750577], - [-14.830421, 65.750445], - [-14.830701, 65.750367], - [-14.831014, 65.750354], - [-14.831334, 65.750321], - [-14.831716, 65.750285], - [-14.832155, 65.750107], - [-14.832376, 65.749977], - [-14.832461, 65.749823], - [-14.832417, 65.749668], - [-14.832372, 65.749546], - [-14.832488, 65.749436], - [-14.832645, 65.749297], - [-14.832954, 65.74923], - [-14.833261, 65.749214], - [-14.833629, 65.74923], - [-14.833922, 65.749191], - [-14.834063, 65.749103], - [-14.834067, 65.749006], - [-14.833879, 65.748911], - [-14.833603, 65.748825], - [-14.833292, 65.748869], - [-14.83301, 65.748887], - [-14.832804, 65.748854], - [-14.832694, 65.748763], - [-14.832789, 65.748675], - [-14.832763, 65.748488], - [-14.832817, 65.748284], - [-14.833081, 65.748178], - [-14.833115, 65.747994], - [-14.833398, 65.747675], - [-14.83378, 65.747329], - [-14.83425, 65.747358], - [-14.834649, 65.747448], - [-14.835083, 65.747374], - [-14.835538, 65.747154], - [-14.835681, 65.746866], - [-14.835705, 65.746529], - [-14.835634, 65.746232], - [-14.835335, 65.746072], - [-14.835253, 65.745995], - [-14.835232, 65.745882], - [-14.835292, 65.745823], - [-14.835339, 65.745781], - [-14.835392, 65.74576], - [-14.835483, 65.745758], - [-14.835721, 65.745774], - [-14.83593, 65.745783], - [-14.835998, 65.745806], - [-14.836061, 65.74585], - [-14.836349, 65.746037], - [-14.83658, 65.746144], - [-14.836911, 65.74614], - [-14.837244, 65.746102], - [-14.837468, 65.746017], - [-14.837608, 65.745917], - [-14.838166, 65.745604], - [-14.839217, 65.745374], - [-14.839964, 65.745043], - [-14.840588, 65.744429], - [-14.840863, 65.744008], - [-14.840975, 65.743601], - [-14.841065, 65.743143], - [-14.841576, 65.742743], - [-14.842279, 65.742405], - [-14.842767, 65.742269], - [-14.843048, 65.742022], - [-14.843161, 65.741727], - [-14.843354, 65.741275], - [-14.843543, 65.741066], - [-14.844148, 65.740924], - [-14.84464, 65.740691], - [-14.845033, 65.74016], - [-14.845507, 65.739939], - [-14.845906, 65.73987], - [-14.846007, 65.739532], - [-14.846625, 65.738968], - [-14.847573, 65.738885], - [-14.848496, 65.73877], - [-14.849511, 65.738439], - [-14.85132, 65.738164], - [-14.852923, 65.737598], - [-14.854755, 65.736849], - [-14.855536, 65.736031], - [-14.855714, 65.735308], - [-14.855585, 65.734396], - [-14.855028, 65.733555], - [-14.854197, 65.732698], - [-14.852558, 65.731297], - [-14.850828, 65.729937], - [-14.847592, 65.727971], - [-14.845629, 65.72705], - [-14.843498, 65.726054], - [-14.838642, 65.724315], - [-14.835245, 65.723183], - [-14.829443, 65.721594], - [-14.822751, 65.72018], - [-14.816788, 65.719286], - [-14.811539, 65.71904], - [-14.807326, 65.718975], - [-14.8046, 65.71916], - [-14.803463, 65.719442], - [-14.802836, 65.719628], - [-14.801684, 65.71991], - [-14.799687, 65.720293], - [-14.798995, 65.720629], - [-14.798605, 65.720712], - [-14.798053, 65.720797], - [-14.797461, 65.720803], - [-14.796987, 65.720802], - [-14.796731, 65.721066], - [-14.796673, 65.721277], - [-14.796377, 65.721577], - [-14.795839, 65.721891], - [-14.794759, 65.722192], - [-14.79399, 65.72232], - [-14.79121, 65.723237], - [-14.789, 65.72436], - [-14.78587, 65.7264], - [-14.784, 65.72793], - [-14.78276, 65.7278], - [-14.780847, 65.727941], - [-14.77902, 65.72869], - [-14.77777, 65.72971], - [-14.776055, 65.731004], - [-14.77402, 65.73226], - [-14.771461, 65.733284], - [-14.7678, 65.73353], - [-14.76034, 65.73377], - [-14.76034, 65.73326], - [-14.75566, 65.733634], - [-14.755267, 65.734755], - [-14.75411, 65.73504], - [-14.753625, 65.734517], - [-14.75287, 65.73504], - [-14.75223, 65.73504], - [-14.75038, 65.73465], - [-14.74977, 65.7344], - [-14.74044, 65.73464], - [-14.73607, 65.73552], - [-14.73545, 65.73681], - [-14.73294, 65.73833], - [-14.730085, 65.739103], - [-14.72489, 65.739477], - [-14.72173, 65.74074], - [-14.71986, 65.74112], - [-14.717558, 65.742016], - [-14.71425, 65.74239], - [-14.71177, 65.74264], - [-14.70926, 65.74443], - [-14.707252, 65.74467], - [-14.70489, 65.74595], - [-14.70303, 65.7462], - [-14.69987, 65.74952], - [-14.69738, 65.74977], - [-14.69675, 65.75054], - [-14.69489, 65.75028], - [-14.69428, 65.749], - [-14.69366, 65.749], - [-14.69114, 65.75129], - [-14.6899, 65.75142], - [-14.68679, 65.75103], - [-14.68575, 65.75196], - [-14.682387, 65.75204], - [-14.68179, 65.75358], - [-14.68116, 65.75357], - [-14.68056, 65.75255], - [-14.67993, 65.75255], - [-14.6793, 65.75357], - [-14.67868, 65.75357], - [-14.678075, 65.752064], - [-14.676308, 65.751937], - [-14.675817, 65.751509], - [-14.675886, 65.751388], - [-14.676498, 65.751289], - [-14.677153, 65.750617], - [-14.677107, 65.750197], - [-14.676377, 65.749732], - [-14.675533, 65.749562], - [-14.675059, 65.749495], - [-14.674358, 65.749464], - [-14.673819, 65.74964], - [-14.673643, 65.749724], - [-14.67203, 65.750404], - [-14.671304, 65.750425], - [-14.670575, 65.750103], - [-14.669706, 65.749984], - [-14.668772, 65.750262], - [-14.668858, 65.750641], - [-14.668719, 65.750714], - [-14.668214, 65.750672], - [-14.668021, 65.750509], - [-14.666896, 65.750578], - [-14.666477, 65.751319], - [-14.666519, 65.751857], - [-14.665339, 65.752038], - [-14.664931, 65.751372], - [-14.6644, 65.75124], - [-14.663977, 65.750531], - [-14.663833, 65.750128], - [-14.661288, 65.750276], - [-14.66006, 65.75046], - [-14.659041, 65.749734], - [-14.656348, 65.74979], - [-14.65137, 65.74942], - [-14.649329, 65.749838], - [-14.648194, 65.750319], - [-14.647135, 65.750157], - [-14.646253, 65.749887], - [-14.644783, 65.74992], - [-14.643208, 65.750231], - [-14.640453, 65.752134], - [-14.641749, 65.753938], - [-14.641864, 65.754959], - [-14.640867, 65.754924], - [-14.64032, 65.754302], - [-14.638817, 65.754408], - [-14.638297, 65.754689], - [-14.63761, 65.75501], - [-14.635549, 65.755266], - [-14.634987, 65.755906], - [-14.63517, 65.75636], - [-14.634973, 65.756518], - [-14.63341, 65.7568], - [-14.63198, 65.75705], - [-14.63091, 65.755889], - [-14.630247, 65.755827], - [-14.629285, 65.756173], - [-14.62452, 65.75703], - [-14.623222, 65.756686], - [-14.62018, 65.75638], - [-14.6127, 65.75687], - [-14.609001, 65.756237], - [-14.60772, 65.75698], - [-14.60585, 65.75723], - [-14.605152, 65.756826], - [-14.604024, 65.756523], - [-14.602988, 65.756575], - [-14.60213, 65.75671], - [-14.598454, 65.756971], - [-14.595379, 65.757755], - [-14.59464, 65.75823], - [-14.590239, 65.757815], - [-14.589982, 65.758332], - [-14.589647, 65.758584], - [-14.588476, 65.758464], - [-14.58841, 65.75872], - [-14.58717, 65.75872], - [-14.586837, 65.75806], - [-14.58531, 65.7582], - [-14.583907, 65.757132], - [-14.580959, 65.757301], - [-14.57663, 65.75665], - [-14.575085, 65.756509], - [-14.57104, 65.75612], - [-14.57016, 65.755954], - [-14.569435, 65.755894], - [-14.568397, 65.755911], - [-14.566744, 65.756095], - [-14.564992, 65.756188], - [-14.56275, 65.75621], - [-14.560561, 65.75621], - [-14.55948, 65.756463], - [-14.559092, 65.756584], - [-14.55859, 65.75659], - [-14.549775, 65.757048], - [-14.549261, 65.756737], - [-14.548706, 65.756505], - [-14.548151, 65.75648], - [-14.547999, 65.756599], - [-14.548816, 65.756853], - [-14.548889, 65.75715], - [-14.548916, 65.757264], - [-14.548713, 65.757472], - [-14.548605, 65.75747], - [-14.548514, 65.757396], - [-14.547003, 65.757722], - [-14.547128, 65.758292], - [-14.547033, 65.758294], - [-14.546865, 65.757936], - [-14.544091, 65.757941], - [-14.542331, 65.757889], - [-14.539624, 65.758223], - [-14.53927, 65.75858], - [-14.53304, 65.75895], - [-14.52867, 65.76008], - [-14.52866, 65.7606], - [-14.52057, 65.76057], - [-14.52056, 65.76108], - [-14.51683, 65.7612], - [-14.51182, 65.76297], - [-14.49746, 65.76536], - [-14.49242, 65.76866], - [-14.48334, 65.77119], - [-14.48302, 65.77196], - [-14.47803, 65.77219], - [-14.47802, 65.77271], - [-14.47426, 65.7741], - [-14.47053, 65.77396], - [-14.46989, 65.77472], - [-14.46864, 65.77472], - [-14.468, 65.77548], - [-14.46551, 65.77586], - [-14.4624, 65.77572], - [-14.46238, 65.77649], - [-14.4605, 65.77698], - [-14.46114, 65.77623], - [-14.4599, 65.77622], - [-14.45929, 65.77545], - [-14.45555, 65.7757], - [-14.45615, 65.77698], - [-14.4549, 65.77697], - [-14.45551, 65.77774], - [-14.45302, 65.77824], - [-14.45299, 65.77901], - [-14.45113, 65.77875], - [-14.45049, 65.77951], - [-14.44987, 65.77951], - [-14.44988, 65.779], - [-14.44863, 65.77899], - [-14.44864, 65.77848], - [-14.44678, 65.77822], - [-14.44679, 65.77771], - [-14.44366, 65.7786], - [-14.43742, 65.77921], - [-14.43678, 65.78023], - [-14.43178, 65.78072], - [-14.43177, 65.78123], - [-14.42865, 65.78161], - [-14.42742, 65.78122], - [-14.42614, 65.78249], - [-14.42239, 65.78312], - [-14.42115, 65.78298], - [-14.42051, 65.78375], - [-14.41802, 65.78374], - [-14.41801, 65.78425], - [-14.41614, 65.78424], - [-14.41613, 65.78476], - [-14.41176, 65.78499], - [-14.41175, 65.78551], - [-14.41113, 65.7855], - [-14.41114, 65.78499], - [-14.4099, 65.78499], - [-14.41051, 65.7855], - [-14.40864, 65.78549], - [-14.40772, 65.78472], - [-14.40806, 65.7837], - [-14.4037, 65.78356], - [-14.402761, 65.783164], - [-14.40185, 65.78278], - [-14.38939, 65.78363], - [-14.38873, 65.78465], - [-14.38811, 65.78465], - [-14.3875, 65.78388], - [-14.37503, 65.78486], - [-14.37499, 65.78638], - [-14.36066, 65.78671], - [-14.35942, 65.78619], - [-14.34756, 65.78767], - [-14.3432, 65.7874], - [-14.34071, 65.78726], - [-14.33885, 65.78713], - [-14.33572, 65.78775], - [-14.33384, 65.78825], - [-14.33322, 65.78825], - [-14.33141, 65.78569], - [-14.33016, 65.78594], - [-14.32924, 65.78517], - [-14.33051, 65.7844], - [-14.32992, 65.78312], - [-14.32784, 65.77953], - [-14.32883, 65.77724], - [-14.33361, 65.77278], - [-14.335454, 65.771306], - [-14.33743, 65.76986], - [-14.33868, 65.76935], - [-14.33993, 65.76923], - [-14.341728, 65.767826], - [-14.342289, 65.76631], - [-14.34313, 65.76579], - [-14.34314, 65.76528], - [-14.344202, 65.764071], - [-14.34692, 65.76338], - [-14.348866, 65.760575], - [-14.349224, 65.756771], - [-14.347964, 65.755703], - [-14.349676, 65.754163], - [-14.351998, 65.753968], - [-14.351815, 65.752976], - [-14.349954, 65.752745], - [-14.350139, 65.750648], - [-14.351646, 65.751283], - [-14.35374, 65.751357], - [-14.358008, 65.748486], - [-14.359638, 65.746935], - [-14.360756, 65.746516], - [-14.361228, 65.74516], - [-14.36293, 65.74504], - [-14.363227, 65.743331], - [-14.36141, 65.74209], - [-14.36208, 65.740989], - [-14.36429, 65.74057], - [-14.36585, 65.74006], - [-14.36679, 65.73968], - [-14.369504, 65.739528], - [-14.370491, 65.738789], - [-14.370738, 65.73727], - [-14.375148, 65.736617], - [-14.376078, 65.734751], - [-14.37811, 65.73461], - [-14.380175, 65.733539], - [-14.380393, 65.731864], - [-14.381765, 65.731277], - [-14.38317, 65.73093], - [-14.385597, 65.730421], - [-14.386657, 65.72698], - [-14.384678, 65.726351], - [-14.385249, 65.72493], - [-14.38643, 65.724479], - [-14.386566, 65.719877], - [-14.383314, 65.717284], - [-14.381461, 65.714886], - [-14.376791, 65.710985], - [-14.365795, 65.704929], - [-14.350644, 65.697643], - [-14.33949, 65.692754], - [-14.320196, 65.687009], - [-14.306118, 65.6807], - [-14.290448, 65.675574], - [-14.281505, 65.672502], - [-14.275668, 65.669993], - [-14.272367, 65.669114], - [-14.270129, 65.668485], - [-14.263872, 65.665936], - [-14.249115, 65.661481], - [-14.236289, 65.657219], - [-14.227005, 65.654181], - [-14.215954, 65.650349], - [-14.202197, 65.645332], - [-14.191147, 65.641661], - [-14.17259, 65.636329], - [-14.162118, 65.633187], - [-14.12064, 65.6226], - [-14.096668, 65.617387], - [-14.068663, 65.612664], - [-14.033477, 65.606914], - [-14.005281, 65.604672], - [-13.988853, 65.601787], - [-13.983472, 65.600908], - [-13.982263, 65.600559], - [-13.979608, 65.600687], - [-13.978196, 65.600606], - [-13.97732, 65.600209], - [-13.976359, 65.600151], - [-13.975625, 65.600501], - [-13.975343, 65.601177], - [-13.97458, 65.601504], - [-13.973874, 65.601306], - [-13.972631, 65.601376], - [-13.972235, 65.601656], - [-13.971444, 65.601807], - [-13.970625, 65.601492], - [-13.969354, 65.600979], - [-13.968224, 65.600664], - [-13.966105, 65.600594], - [-13.966105, 65.601387], - [-13.965682, 65.601411], - [-13.965371, 65.600722], - [-13.963224, 65.600886], - [-13.962038, 65.601317], - [-13.961727, 65.601691], - [-13.960908, 65.602321], - [-13.96071, 65.602601], - [-13.960879, 65.603068], - [-13.960541, 65.603383], - [-13.95958, 65.603009], - [-13.959072, 65.603173], - [-13.959043, 65.603663], - [-13.958676, 65.60441], - [-13.959043, 65.605086], - [-13.959072, 65.60588], - [-13.958507, 65.605915], - [-13.95797, 65.605541], - [-13.95749, 65.605016], - [-13.956868, 65.604853], - [-13.956755, 65.605378], - [-13.956727, 65.605728], - [-13.956049, 65.605915], - [-13.955399, 65.606183], - [-13.954552, 65.606195], - [-13.953563, 65.606638], - [-13.953507, 65.60707], - [-13.952716, 65.607291], - [-13.951445, 65.607513], - [-13.950216, 65.607639], - [-13.949651, 65.607773], - [-13.949156, 65.608088], - [-13.94934, 65.608269], - [-13.949594, 65.608286], - [-13.949707, 65.60852], - [-13.949425, 65.608718], - [-13.948832, 65.608636], - [-13.948436, 65.608327], - [-13.948041, 65.608409], - [-13.947719, 65.60836], - [-13.947094, 65.608269], - [-13.946558, 65.608269], - [-13.945851, 65.608525], - [-13.945795, 65.60887], - [-13.946303, 65.608985], - [-13.94571, 65.609592], - [-13.945004, 65.610128], - [-13.944213, 65.610735], - [-13.944157, 65.611237], - [-13.9441, 65.611808], - [-13.94362, 65.612053], - [-13.943224, 65.611773], - [-13.94266, 65.611831], - [-13.942179, 65.611563], - [-13.940965, 65.611948], - [-13.940258, 65.612496], - [-13.940258, 65.613068], - [-13.940117, 65.613628], - [-13.940343, 65.613989], - [-13.939722, 65.614619], - [-13.938563, 65.614841], - [-13.937434, 65.615167], - [-13.936219, 65.615284], - [-13.935287, 65.615085], - [-13.934439, 65.614794], - [-13.933422, 65.615015], - [-13.933027, 65.615389], - [-13.932462, 65.615552], - [-13.931953, 65.61575], - [-13.930937, 65.615482], - [-13.931021, 65.615039], - [-13.930061, 65.614666], - [-13.928846, 65.614782], - [-13.928987, 65.615074], - [-13.928615, 65.615272], - [-13.927217, 65.614876], - [-13.925699, 65.61429], - [-13.925059, 65.614026], - [-13.923561, 65.613573], - [-13.922043, 65.613317], - [-13.920606, 65.61333], - [-13.919787, 65.613773], - [-13.920635, 65.614112], - [-13.920465, 65.614391], - [-13.919138, 65.614251], - [-13.918431, 65.613843], - [-13.918855, 65.613458], - [-13.917245, 65.61305], - [-13.91377, 65.612864], - [-13.910889, 65.612688], - [-13.909081, 65.612898], - [-13.90846, 65.613213], - [-13.908488, 65.613785], - [-13.908036, 65.613808], - [-13.906963, 65.613178], - [-13.906143, 65.613108], - [-13.904929, 65.6127], - [-13.902273, 65.612584], - [-13.899477, 65.612758], - [-13.89781, 65.613213], - [-13.89685, 65.613587], - [-13.897273, 65.614007], - [-13.8975, 65.614531], - [-13.897613, 65.615021], - [-13.897217, 65.615324], - [-13.895861, 65.615488], - [-13.894505, 65.615546], - [-13.894081, 65.615359], - [-13.893008, 65.615266], - [-13.892358, 65.615546], - [-13.891398, 65.615966], - [-13.890409, 65.615954], - [-13.889957, 65.615359], - [-13.889477, 65.615091], - [-13.887923, 65.61487], - [-13.886341, 65.614531], - [-13.884901, 65.613902], - [-13.884138, 65.613797], - [-13.882415, 65.613295], - [-13.882415, 65.613027], - [-13.883404, 65.612945], - [-13.883347, 65.612712], - [-13.881793, 65.612257], - [-13.880777, 65.612292], - [-13.881003, 65.612619], - [-13.880777, 65.612782], - [-13.879618, 65.612537], - [-13.877415, 65.612257], - [-13.87702, 65.61186], - [-13.877585, 65.611604], - [-13.876907, 65.611242], - [-13.875862, 65.611114], - [-13.875212, 65.610682], - [-13.873517, 65.610344], - [-13.871681, 65.609831], - [-13.869958, 65.609749], - [-13.868178, 65.609842], - [-13.867472, 65.610087], - [-13.865975, 65.609936], - [-13.865381, 65.609936], - [-13.862924, 65.609656], - [-13.859534, 65.609317], - [-13.858687, 65.609049], - [-13.858743, 65.608734], - [-13.858037, 65.608454], - [-13.858913, 65.608221], - [-13.860184, 65.608174], - [-13.861568, 65.608501], - [-13.862472, 65.608209], - [-13.862698, 65.607906], - [-13.862472, 65.607579], - [-13.861455, 65.607136], - [-13.860721, 65.606949], - [-13.860608, 65.606238], - [-13.861172, 65.605946], - [-13.860297, 65.605584], - [-13.859675, 65.605584], - [-13.859195, 65.605316], - [-13.860071, 65.605059], - [-13.860268, 65.604756], - [-13.860551, 65.604336], - [-13.860014, 65.603916], - [-13.858969, 65.603869], - [-13.858997, 65.603519], - [-13.859675, 65.603484], - [-13.859506, 65.602877], - [-13.858574, 65.602516], - [-13.857867, 65.602212], - [-13.857754, 65.601909], - [-13.858658, 65.601851], - [-13.858884, 65.601232], - [-13.858715, 65.60052], - [-13.858009, 65.59989], - [-13.856568, 65.599038], - [-13.855466, 65.59828], - [-13.854195, 65.597346], - [-13.852613, 65.596062], - [-13.851286, 65.595175], - [-13.849506, 65.59479], - [-13.848404, 65.594744], - [-13.8475, 65.5943], - [-13.848263, 65.593681], - [-13.848291, 65.593063], - [-13.847472, 65.592281], - [-13.846427, 65.591674], - [-13.844845, 65.591744], - [-13.843546, 65.591826], - [-13.842952, 65.591534], - [-13.843404, 65.591102], - [-13.84332, 65.590705], - [-13.845467, 65.590646], - [-13.845551, 65.590238], - [-13.845184, 65.589339], - [-13.844591, 65.588347], - [-13.844647, 65.587681], - [-13.845495, 65.587401], - [-13.847472, 65.587716], - [-13.84928, 65.588055], - [-13.850975, 65.587798], - [-13.85154, 65.587273], - [-13.852981, 65.586864], - [-13.854449, 65.586502], - [-13.855071, 65.586047], - [-13.856596, 65.585696], - [-13.857907, 65.585467], - [-13.85928, 65.585042], - [-13.863065, 65.584494], - [-13.864704, 65.584097], - [-13.866201, 65.584073], - [-13.868925, 65.58364], - [-13.870881, 65.583227], - [-13.872426, 65.583058], - [-13.873295, 65.582983], - [-13.874368, 65.583063], - [-13.876224, 65.582836], - [-13.876932, 65.58257], - [-13.877093, 65.58226], - [-13.877543, 65.582406], - [-13.878155, 65.582375], - [-13.879335, 65.582029], - [-13.880408, 65.581878], - [-13.880837, 65.581701], - [-13.881255, 65.581803], - [-13.881942, 65.581657], - [-13.882017, 65.581439], - [-13.882425, 65.581346], - [-13.883401, 65.581227], - [-13.88376, 65.581036], - [-13.884189, 65.580807], - [-13.884721, 65.580051], - [-13.884988, 65.579287], - [-13.885118, 65.577523], - [-13.885311, 65.576622], - [-13.885166, 65.575731], - [-13.885032, 65.574786], - [-13.883947, 65.573055], - [-13.883359, 65.572472], - [-13.882813, 65.572285], - [-13.88237, 65.572168], - [-13.882092, 65.571982], - [-13.881462, 65.571684], - [-13.880983, 65.571518], - [-13.879525, 65.571411], - [-13.877787, 65.571419], - [-13.875955, 65.571431], - [-13.873233, 65.571601], - [-13.871895, 65.571684], - [-13.870623, 65.571782], - [-13.869178, 65.571915], - [-13.867221, 65.572022], - [-13.866641, 65.572022], - [-13.865523, 65.572088], - [-13.864584, 65.57203], - [-13.864776, 65.571662], - [-13.864347, 65.571866], - [-13.863625, 65.571857], - [-13.864787, 65.571525], - [-13.864045, 65.571287], - [-13.863645, 65.57113], - [-13.862427, 65.570981], - [-13.862127, 65.570791], - [-13.861108, 65.57056], - [-13.860809, 65.570411], - [-13.85977, 65.570436], - [-13.859454, 65.570344], - [-13.859311, 65.570502], - [-13.858732, 65.570511], - [-13.858312, 65.570593], - [-13.857753, 65.570593], - [-13.857753, 65.570395], - [-13.857273, 65.570337], - [-13.856854, 65.570808], - [-13.856474, 65.570725], - [-13.857008, 65.570265], - [-13.856526, 65.570154], - [-13.856335, 65.570263], - [-13.855976, 65.570151], - [-13.855667, 65.570162], - [-13.855316, 65.570064], - [-13.854936, 65.57018], - [-13.855516, 65.570824], - [-13.855256, 65.570899], - [-13.855013, 65.570761], - [-13.854981, 65.570535], - [-13.854745, 65.570256], - [-13.853898, 65.570172], - [-13.853179, 65.569874], - [-13.852341, 65.56967], - [-13.851311, 65.569399], - [-13.850402, 65.569247], - [-13.849324, 65.56904], - [-13.848684, 65.568941], - [-13.848065, 65.569139], - [-13.847586, 65.569139], - [-13.847406, 65.569296], - [-13.847066, 65.569825], - [-13.846527, 65.569949], - [-13.846188, 65.569734], - [-13.846108, 65.569387], - [-13.845708, 65.569247], - [-13.845169, 65.569271], - [-13.84469, 65.569453], - [-13.845029, 65.569602], - [-13.84467, 65.569734], - [-13.84415, 65.569858], - [-13.843651, 65.569792], - [-13.843251, 65.56985], - [-13.842572, 65.569907], - [-13.842267, 65.570154], - [-13.841853, 65.570122], - [-13.841853, 65.569866], - [-13.841387, 65.569736], - [-13.841175, 65.569535], - [-13.840635, 65.569569], - [-13.840075, 65.569693], - [-13.839756, 65.569602], - [-13.839436, 65.569585], - [-13.839097, 65.569775], - [-13.838917, 65.569974], - [-13.838298, 65.570023], - [-13.838118, 65.569974], - [-13.837399, 65.569817], - [-13.83616, 65.569784], - [-13.835881, 65.569891], - [-13.834982, 65.569932], - [-13.834203, 65.569883], - [-13.833744, 65.569965], - [-13.833064, 65.56999], - [-13.832868, 65.569768], - [-13.832396, 65.569577], - [-13.832225, 65.569238], - [-13.832386, 65.568836], - [-13.832124, 65.568662], - [-13.831613, 65.568596], - [-13.831047, 65.5689], - [-13.830568, 65.569015], - [-13.829609, 65.568916], - [-13.82889, 65.568825], - [-13.827912, 65.568627], - [-13.828091, 65.569024], - [-13.827851, 65.569255], - [-13.827472, 65.569321], - [-13.827332, 65.569048], - [-13.826872, 65.568883], - [-13.826293, 65.568825], - [-13.825914, 65.569032], - [-13.825354, 65.569032], - [-13.825197, 65.568689], - [-13.824833, 65.568605], - [-13.824196, 65.568718], - [-13.823617, 65.568842], - [-13.823845, 65.568543], - [-13.823277, 65.56845], - [-13.822538, 65.568619], - [-13.822877, 65.568338], - [-13.821904, 65.568245], - [-13.821185, 65.568064], - [-13.820401, 65.568049], - [-13.819462, 65.56804], - [-13.819881, 65.567702], - [-13.819602, 65.567561], - [-13.818962, 65.567677], - [-13.818163, 65.567768], - [-13.818463, 65.567413], - [-13.818104, 65.567256], - [-13.817145, 65.567545], - [-13.816905, 65.567404], - [-13.817045, 65.567099], - [-13.816925, 65.566967], - [-13.816745, 65.566859], - [-13.816126, 65.566661], - [-13.816606, 65.566487], - [-13.816705, 65.566305], - [-13.816496, 65.566], - [-13.815267, 65.565421], - [-13.814822, 65.565037], - [-13.814928, 65.564983], - [-13.815807, 65.565025], - [-13.815966, 65.564843], - [-13.814788, 65.564686], - [-13.814688, 65.564504], - [-13.814404, 65.564318], - [-13.814726, 65.563901], - [-13.814458, 65.563887], - [-13.814149, 65.564008], - [-13.813789, 65.564232], - [-13.81343, 65.564182], - [-13.813331, 65.563856], - [-13.81316, 65.563448], - [-13.813769, 65.563422], - [-13.814109, 65.56319], - [-13.814009, 65.562942], - [-13.813809, 65.56262], - [-13.81321, 65.562298], - [-13.81339, 65.562067], - [-13.813849, 65.562141], - [-13.814448, 65.562108], - [-13.814628, 65.561877], - [-13.814288, 65.561645], - [-13.814908, 65.561513], - [-13.815008, 65.561248], - [-13.814528, 65.561009], - [-13.813929, 65.560711], - [-13.813989, 65.56048], - [-13.814229, 65.56029], - [-13.814149, 65.56005], - [-13.814129, 65.559811], - [-13.814768, 65.559753], - [-13.814788, 65.55948], - [-13.814448, 65.559306], - [-13.814868, 65.559191], - [-13.814648, 65.558976], - [-13.814049, 65.558753], - [-13.814029, 65.558579], - [-13.813789, 65.558414], - [-13.814029, 65.558215], - [-13.813689, 65.558083], - [-13.813809, 65.55791], - [-13.81329, 65.557753], - [-13.81329, 65.557637], - [-13.813609, 65.557364], - [-13.814169, 65.557199], - [-13.813929, 65.556926], - [-13.813949, 65.556604], - [-13.813949, 65.556298], - [-13.814388, 65.556141], - [-13.814488, 65.555926], - [-13.814688, 65.555744], - [-13.815247, 65.555893], - [-13.815507, 65.555827], - [-13.815627, 65.55538], - [-13.815547, 65.555157], - [-13.815008, 65.554909], - [-13.814448, 65.554901], - [-13.814328, 65.554711], - [-13.814948, 65.554653], - [-13.815227, 65.554546], - [-13.815207, 65.554339], - [-13.814728, 65.554198], - [-13.814149, 65.553967], - [-13.81339, 65.553926], - [-13.81305, 65.553727], - [-13.81325, 65.553231], - [-13.81339, 65.553033], - [-13.814089, 65.552901], - [-13.814828, 65.552777], - [-13.814728, 65.55257], - [-13.815247, 65.552355], - [-13.815447, 65.551876], - [-13.815607, 65.551512], - [-13.815048, 65.551297], - [-13.814968, 65.551115], - [-13.815767, 65.550884], - [-13.815867, 65.550586], - [-13.816206, 65.549834], - [-13.816086, 65.549354], - [-13.816306, 65.548866], - [-13.816187, 65.548595], - [-13.816546, 65.548331], - [-13.816586, 65.548091], - [-13.816202, 65.547766], - [-13.815373, 65.547969], - [-13.814774, 65.547878], - [-13.815104, 65.547655], - [-13.815214, 65.547427], - [-13.814605, 65.547237], - [-13.814644, 65.546948], - [-13.814914, 65.546741], - [-13.814654, 65.546555], - [-13.814708, 65.546328], - [-13.814948, 65.545898], - [-13.815088, 65.545642], - [-13.815028, 65.545245], - [-13.814868, 65.544724], - [-13.815527, 65.544253], - [-13.816146, 65.543781], - [-13.817105, 65.543442], - [-13.817704, 65.543054], - [-13.817884, 65.542623], - [-13.817709, 65.542153], - [-13.817165, 65.541788], - [-13.816206, 65.541342], - [-13.814968, 65.541003], - [-13.81353, 65.54092], - [-13.812191, 65.541003], - [-13.811612, 65.541168], - [-13.810893, 65.541499], - [-13.810693, 65.541879], - [-13.810294, 65.542334], - [-13.809715, 65.542698], - [-13.809036, 65.543103], - [-13.808416, 65.543136], - [-13.808636, 65.542888], - [-13.809175, 65.542566], - [-13.809155, 65.542251], - [-13.809096, 65.541929], - [-13.809595, 65.54154], - [-13.809495, 65.541185], - [-13.810134, 65.541044], - [-13.810214, 65.540721], - [-13.810074, 65.540382], - [-13.810354, 65.540176], - [-13.810657, 65.540146], - [-13.810893, 65.539822], - [-13.811011, 65.539688], - [-13.810913, 65.539572], - [-13.810414, 65.539555], - [-13.810228, 65.539631], - [-13.810013, 65.539462], - [-13.810024, 65.539218], - [-13.810496, 65.539209], - [-13.810829, 65.539275], - [-13.811013, 65.5391], - [-13.811253, 65.538695], - [-13.811013, 65.53829], - [-13.810947, 65.538054], - [-13.810571, 65.537858], - [-13.810657, 65.53748], - [-13.811073, 65.537239], - [-13.811452, 65.536727], - [-13.811591, 65.536619], - [-13.811644, 65.536276], - [-13.811945, 65.536117], - [-13.812095, 65.535761], - [-13.812556, 65.535597], - [-13.812363, 65.535583], - [-13.812063, 65.53549], - [-13.812363, 65.535077], - [-13.812728, 65.535175], - [-13.813211, 65.534944], - [-13.813329, 65.534504], - [-13.813382, 65.534028], - [-13.813972, 65.533575], - [-13.814566, 65.533225], - [-13.814541, 65.533042], - [-13.814745, 65.532855], - [-13.814953, 65.532262], - [-13.814745, 65.531846], - [-13.814841, 65.531446], - [-13.814648, 65.531144], - [-13.814412, 65.531087], - [-13.814239, 65.530991], - [-13.814589, 65.530792], - [-13.814578, 65.530515], - [-13.814299, 65.530126], - [-13.814419, 65.529866], - [-13.814419, 65.529588], - [-13.814489, 65.52932], - [-13.814938, 65.52939], - [-13.815158, 65.529262], - [-13.815078, 65.529084], - [-13.8151, 65.528949], - [-13.815213, 65.528674], - [-13.815223, 65.528464], - [-13.815123, 65.528301], - [-13.815079, 65.52823], - [-13.815062, 65.527935], - [-13.815056, 65.527691], - [-13.814962, 65.527488], - [-13.814867, 65.527343], - [-13.814587, 65.527186], - [-13.814423, 65.527093], - [-13.814253, 65.526987], - [-13.814068, 65.52688], - [-13.813833, 65.526888], - [-13.813797, 65.526663], - [-13.813779, 65.526551], - [-13.813575, 65.526456], - [-13.81326, 65.52637], - [-13.812776, 65.526202], - [-13.812383, 65.526147], - [-13.811482, 65.526176], - [-13.811161, 65.52634], - [-13.810782, 65.526349], - [-13.809904, 65.526515], - [-13.80981, 65.526731], - [-13.809544, 65.526879], - [-13.809252, 65.526949], - [-13.808801, 65.526682], - [-13.807675, 65.526665], - [-13.807975, 65.526887], - [-13.807868, 65.527002], - [-13.806999, 65.526909], - [-13.806661, 65.526951], - [-13.806371, 65.526729], - [-13.806393, 65.526473], - [-13.806323, 65.526371], - [-13.806065, 65.526309], - [-13.805947, 65.526355], - [-13.806001, 65.526722], - [-13.805958, 65.526896], - [-13.80577, 65.526836], - [-13.805625, 65.526722], - [-13.805808, 65.526327], - [-13.80562, 65.526304], - [-13.805529, 65.526344], - [-13.805389, 65.526536], - [-13.805454, 65.526744], - [-13.805509, 65.52697], - [-13.805078, 65.52714], - [-13.804923, 65.527125], - [-13.804767, 65.527111], - [-13.804885, 65.526936], - [-13.804558, 65.527142], - [-13.804193, 65.527111], - [-13.804171, 65.527177], - [-13.803812, 65.52718], - [-13.803692, 65.52711], - [-13.803973, 65.526893], - [-13.804306, 65.526536], - [-13.803962, 65.526576], - [-13.803751, 65.526614], - [-13.803426, 65.526907], - [-13.803158, 65.526936], - [-13.80304, 65.527129], - [-13.802873, 65.527207], - [-13.802868, 65.527085], - [-13.802782, 65.527009], - [-13.802595, 65.527118], - [-13.802407, 65.527158], - [-13.802396, 65.526973], - [-13.802358, 65.526738], - [-13.80246, 65.526491], - [-13.802423, 65.526387], - [-13.802369, 65.526427], - [-13.802337, 65.526551], - [-13.802165, 65.526751], - [-13.801954, 65.526879], - [-13.801715, 65.526822], - [-13.801715, 65.52672], - [-13.801495, 65.526665], - [-13.801237, 65.52648], - [-13.800815, 65.526308], - [-13.800176, 65.525985], - [-13.800116, 65.525662], - [-13.800572, 65.525593], - [-13.80069, 65.525464], - [-13.800272, 65.525438], - [-13.800616, 65.525166], - [-13.800315, 65.524984], - [-13.799896, 65.524942], - [-13.799357, 65.525017], - [-13.799134, 65.524909], - [-13.798855, 65.524984], - [-13.79892, 65.525193], - [-13.798703, 65.525277], - [-13.798533, 65.525291], - [-13.798566, 65.525429], - [-13.798572, 65.525555], - [-13.798918, 65.525919], - [-13.798698, 65.526184], - [-13.798194, 65.526158], - [-13.798263, 65.525947], - [-13.798016, 65.525986], - [-13.797786, 65.525918], - [-13.797815, 65.525647], - [-13.797839, 65.525108], - [-13.798458, 65.524644], - [-13.798941, 65.524504], - [-13.798909, 65.52422], - [-13.798587, 65.5239], - [-13.797986, 65.523691], - [-13.79698, 65.523535], - [-13.79692, 65.523237], - [-13.79738, 65.522882], - [-13.798159, 65.522658], - [-13.798219, 65.522344], - [-13.797647, 65.522064], - [-13.79736, 65.52183], - [-13.79716, 65.521513], - [-13.7974, 65.52121], - [-13.79684, 65.521028], - [-13.795462, 65.520713], - [-13.793205, 65.520424], - [-13.790089, 65.520266], - [-13.787412, 65.520101], - [-13.784556, 65.520117], - [-13.78142, 65.520151], - [-13.779443, 65.520275], - [-13.777745, 65.520415], - [-13.776327, 65.52063], - [-13.773491, 65.520943], - [-13.772945, 65.521064], - [-13.771937, 65.521224], - [-13.771121, 65.52133], - [-13.770413, 65.521526], - [-13.769641, 65.521722], - [-13.769049, 65.522094], - [-13.768761, 65.522504], - [-13.768053, 65.523011], - [-13.76713, 65.523544], - [-13.766551, 65.524006], - [-13.766077, 65.52441], - [-13.765338, 65.52501], - [-13.76553, 65.525291], - [-13.765895, 65.525793], - [-13.766358, 65.526198], - [-13.766883, 65.52658], - [-13.767978, 65.527225], - [-13.768547, 65.527513], - [-13.768976, 65.527736], - [-13.769336, 65.528145], - [-13.769135, 65.528362], - [-13.76833, 65.528593], - [-13.767708, 65.529184], - [-13.766894, 65.529838], - [-13.766658, 65.53058], - [-13.766368, 65.530767], - [-13.766014, 65.530851], - [-13.765671, 65.531153], - [-13.764984, 65.531473], - [-13.764663, 65.531491], - [-13.764319, 65.531731], - [-13.763837, 65.531611], - [-13.763815, 65.531722], - [-13.763933, 65.531909], - [-13.76374, 65.532229], - [-13.763686, 65.53254], - [-13.763869, 65.532913], - [-13.764062, 65.533002], - [-13.764721, 65.533192], - [-13.764351, 65.533237], - [-13.764512, 65.533366], - [-13.764427, 65.533366], - [-13.764115, 65.533419], - [-13.763886, 65.533334], - [-13.763438, 65.533108], - [-13.76315, 65.533206], - [-13.762914, 65.533206], - [-13.762699, 65.533322], - [-13.762967, 65.533521], - [-13.762953, 65.533837], - [-13.763053, 65.533982], - [-13.763021, 65.534326], - [-13.762613, 65.534228], - [-13.762377, 65.534162], - [-13.761959, 65.534326], - [-13.762163, 65.534566], - [-13.762023, 65.534619], - [-13.762066, 65.534837], - [-13.761691, 65.534712], - [-13.761755, 65.534584], - [-13.761541, 65.534504], - [-13.761315, 65.534566], - [-13.760875, 65.534593], - [-13.760736, 65.534637], - [-13.7605, 65.534775], - [-13.760543, 65.534944], - [-13.760317, 65.534944], - [-13.76006, 65.534872], - [-13.760135, 65.534757], - [-13.759772, 65.534722], - [-13.759631, 65.534677], - [-13.759373, 65.534699], - [-13.758873, 65.53473], - [-13.75874, 65.534788], - [-13.758772, 65.534997], - [-13.758612, 65.535041], - [-13.758601, 65.535241], - [-13.757953, 65.535364], - [-13.757839, 65.535411], - [-13.756951, 65.535867], - [-13.75669, 65.536185], - [-13.756938, 65.536569], - [-13.757796, 65.537085], - [-13.758118, 65.537209], - [-13.758386, 65.537285], - [-13.758612, 65.537121], - [-13.75903, 65.537054], - [-13.759062, 65.537161], - [-13.758976, 65.537281], - [-13.759202, 65.537338], - [-13.758912, 65.537494], - [-13.758762, 65.5376], - [-13.759148, 65.537654], - [-13.759152, 65.537799], - [-13.758848, 65.537845], - [-13.758837, 65.537983], - [-13.75889, 65.538045], - [-13.758772, 65.53812], - [-13.758826, 65.538351], - [-13.758569, 65.538271], - [-13.758558, 65.538178], - [-13.758204, 65.538165], - [-13.758064, 65.538231], - [-13.758054, 65.538347], - [-13.758418, 65.538596], - [-13.758433, 65.538841], - [-13.758204, 65.539186], - [-13.757814, 65.539304], - [-13.757807, 65.539053], - [-13.757517, 65.53888], - [-13.756573, 65.538933], - [-13.7555, 65.539177], - [-13.755146, 65.539369], - [-13.755028, 65.539475], - [-13.754967, 65.539825], - [-13.754932, 65.540008], - [-13.754888, 65.540231], - [-13.755125, 65.540275], - [-13.75549, 65.540341], - [-13.756262, 65.540493], - [-13.75667, 65.540861], - [-13.756766, 65.541012], - [-13.756487, 65.541021], - [-13.75623, 65.540728], - [-13.755887, 65.540608], - [-13.755425, 65.540488], - [-13.755054, 65.540481], - [-13.754769, 65.540516], - [-13.754515, 65.540634], - [-13.754295, 65.540822], - [-13.754155, 65.541031], - [-13.754114, 65.541105], - [-13.7541, 65.54113], - [-13.753496, 65.541013], - [-13.753236, 65.541052], - [-13.753057, 65.541089], - [-13.752992, 65.541194], - [-13.753068, 65.541241], - [-13.753715, 65.541631], - [-13.753756, 65.541656], - [-13.754245, 65.541676], - [-13.754284, 65.541658], - [-13.754647, 65.54149], - [-13.755103, 65.541157], - [-13.755013, 65.541112], - [-13.755043, 65.540975], - [-13.755532, 65.54107], - [-13.755532, 65.54124], - [-13.755303, 65.541521], - [-13.755123, 65.541645], - [-13.755513, 65.541786], - [-13.755772, 65.541881], - [-13.756022, 65.541815], - [-13.755802, 65.541732], - [-13.755962, 65.541612], - [-13.756601, 65.541591], - [-13.756615, 65.541753], - [-13.756371, 65.541794], - [-13.756907, 65.541901], - [-13.7572, 65.541931], - [-13.757889, 65.542067], - [-13.757899, 65.542174], - [-13.758249, 65.542212], - [-13.758369, 65.542336], - [-13.758329, 65.542559], - [-13.758608, 65.542629], - [-13.758838, 65.542757], - [-13.758429, 65.542869], - [-13.75814, 65.542995], - [-13.75798, 65.543212], - [-13.758063, 65.543308], - [-13.758329, 65.54327], - [-13.758779, 65.543329], - [-13.758678, 65.543576], - [-13.758528, 65.543689], - [-13.758355, 65.543875], - [-13.758268, 65.544113], - [-13.757785, 65.54413], - [-13.756638, 65.544091], - [-13.756502, 65.543919], - [-13.756338, 65.543788], - [-13.756595, 65.543669], - [-13.756766, 65.54354], - [-13.756208, 65.543513], - [-13.75615, 65.543402], - [-13.755962, 65.543337], - [-13.755887, 65.543367], - [-13.755704, 65.543433], - [-13.755504, 65.54344], - [-13.755169, 65.543513], - [-13.755128, 65.543431], - [-13.755323, 65.543014], - [-13.755413, 65.542555], - [-13.755688, 65.542309], - [-13.755517, 65.542268], - [-13.755646, 65.542017], - [-13.755342, 65.542303], - [-13.755193, 65.542401], - [-13.754848, 65.542324], - [-13.754625, 65.542424], - [-13.754426, 65.542358], - [-13.754042, 65.542088], - [-13.753435, 65.541872], - [-13.752806, 65.541601], - [-13.752079, 65.541168], - [-13.751507, 65.541154], - [-13.750489, 65.541344], - [-13.750169, 65.541535], - [-13.750548, 65.541774], - [-13.750568, 65.541923], - [-13.750307, 65.542136], - [-13.750269, 65.542362], - [-13.749932, 65.542456], - [-13.749546, 65.542367], - [-13.749277, 65.542536], - [-13.74919, 65.542825], - [-13.749342, 65.543096], - [-13.74949, 65.543205], - [-13.749513, 65.543424], - [-13.749438, 65.543629], - [-13.749342, 65.543771], - [-13.749402, 65.543855], - [-13.749513, 65.543975], - [-13.749299, 65.544166], - [-13.748983, 65.543954], - [-13.748723, 65.544086], - [-13.748762, 65.544273], - [-13.748966, 65.544397], - [-13.748848, 65.544539], - [-13.748923, 65.544966], - [-13.748709, 65.54485], - [-13.748602, 65.544512], - [-13.748333, 65.544122], - [-13.748011, 65.543988], - [-13.747518, 65.544095], - [-13.74711, 65.544219], - [-13.747245, 65.544401], - [-13.747175, 65.544544], - [-13.746939, 65.544521], - [-13.746756, 65.544264], - [-13.746391, 65.544308], - [-13.746266, 65.544516], - [-13.746263, 65.544681], - [-13.745926, 65.544789], - [-13.745576, 65.544823], - [-13.745308, 65.544752], - [-13.744922, 65.544966], - [-13.744828, 65.545227], - [-13.744857, 65.545325], - [-13.74519, 65.545339], - [-13.744889, 65.545481], - [-13.744975, 65.545729], - [-13.744628, 65.545773], - [-13.744664, 65.545587], - [-13.744535, 65.545383], - [-13.744428, 65.545618], - [-13.744128, 65.545658], - [-13.744042, 65.545352], - [-13.743473, 65.545188], - [-13.742797, 65.545019], - [-13.742175, 65.545036], - [-13.741907, 65.545032], - [-13.741231, 65.545316], - [-13.740598, 65.545694], - [-13.740083, 65.545738], - [-13.7396, 65.546054], - [-13.739589, 65.546484], - [-13.739729, 65.546662], - [-13.739568, 65.546764], - [-13.73956, 65.54689], - [-13.73974, 65.547102], - [-13.7396, 65.547208], - [-13.739246, 65.547213], - [-13.738924, 65.547084], - [-13.739031, 65.546933], - [-13.738227, 65.546853], - [-13.73754, 65.546898], - [-13.737272, 65.547049], - [-13.737322, 65.547262], - [-13.737672, 65.547465], - [-13.738002, 65.547771], - [-13.738151, 65.54806], - [-13.738062, 65.548143], - [-13.738081, 65.548316], - [-13.738241, 65.54849], - [-13.738032, 65.548482], - [-13.737862, 65.548332], - [-13.737798, 65.54819], - [-13.737658, 65.548057], - [-13.737482, 65.548254], - [-13.737542, 65.548374], - [-13.737068, 65.548066], - [-13.736489, 65.547972], - [-13.735942, 65.548114], - [-13.735738, 65.548425], - [-13.735854, 65.548622], - [-13.736044, 65.548738], - [-13.736564, 65.548705], - [-13.737036, 65.548896], - [-13.736821, 65.548914], - [-13.736478, 65.54886], - [-13.736454, 65.548937], - [-13.736623, 65.54904], - [-13.736918, 65.549034], - [-13.736913, 65.549172], - [-13.736982, 65.549322], - [-13.737362, 65.549362], - [-13.737433, 65.549571], - [-13.737519, 65.54966], - [-13.737658, 65.549797], - [-13.737826, 65.549939], - [-13.737897, 65.550401], - [-13.738001, 65.550597], - [-13.737787, 65.55085], - [-13.73783, 65.551032], - [-13.737798, 65.551131], - [-13.737487, 65.551272], - [-13.737379, 65.551098], - [-13.737283, 65.550872], - [-13.737004, 65.550703], - [-13.736781, 65.550518], - [-13.737035, 65.550225], - [-13.737326, 65.550126], - [-13.737233, 65.549945], - [-13.736864, 65.549615], - [-13.736489, 65.549713], - [-13.736315, 65.549874], - [-13.736512, 65.550196], - [-13.736484, 65.550482], - [-13.736315, 65.550851], - [-13.735723, 65.550956], - [-13.735314, 65.550874], - [-13.734643, 65.550894], - [-13.733928, 65.55102], - [-13.733629, 65.550879], - [-13.733504, 65.550874], - [-13.733222, 65.55102], - [-13.733292, 65.551307], - [-13.733956, 65.551336], - [-13.734069, 65.55157], - [-13.73408, 65.551756], - [-13.734352, 65.551798], - [-13.734789, 65.552353], - [-13.73494, 65.552693], - [-13.734478, 65.553067], - [-13.733893, 65.553101], - [-13.733957, 65.552968], - [-13.733613, 65.552857], - [-13.73356, 65.552657], - [-13.733603, 65.552435], - [-13.733345, 65.552284], - [-13.733055, 65.552293], - [-13.732354, 65.551695], - [-13.732337, 65.55168], - [-13.732734, 65.552173], - [-13.732594, 65.552247], - [-13.732347, 65.552071], - [-13.731929, 65.552], - [-13.731789, 65.552078], - [-13.731722, 65.552086], - [-13.73135, 65.552133], - [-13.731323, 65.552111], - [-13.730857, 65.551715], - [-13.730292, 65.551628], - [-13.729882, 65.551978], - [-13.729713, 65.552393], - [-13.729536, 65.552772], - [-13.729611, 65.552888], - [-13.729581, 65.553377], - [-13.729268, 65.553376], - [-13.729075, 65.55359], - [-13.728822, 65.553617], - [-13.728292, 65.553363], - [-13.728378, 65.553034], - [-13.728023, 65.55303], - [-13.727949, 65.553359], - [-13.727623, 65.553303], - [-13.727283, 65.553221], - [-13.727176, 65.552728], - [-13.726784, 65.552989], - [-13.726833, 65.553128], - [-13.726427, 65.553184], - [-13.726285, 65.553204], - [-13.725354, 65.55291], - [-13.725273, 65.552889], - [-13.724609, 65.552719], - [-13.723479, 65.552532], - [-13.722781, 65.552724], - [-13.721863, 65.552924], - [-13.721017, 65.552914], - [-13.72034, 65.552774], - [-13.72031, 65.552599], - [-13.719663, 65.552534], - [-13.719204, 65.552824], - [-13.719543, 65.553424], - [-13.719083, 65.553594], - [-13.718872, 65.553492], - [-13.719033, 65.553003], - [-13.718818, 65.552724], - [-13.718334, 65.552784], - [-13.718189, 65.553104], - [-13.718293, 65.553217], - [-13.71773, 65.553414], - [-13.717488, 65.552944], - [-13.717402, 65.552799], - [-13.716981, 65.552784], - [-13.717029, 65.553234], - [-13.716909, 65.553359], - [-13.716353, 65.553374], - [-13.716082, 65.553248], - [-13.7157, 65.553284], - [-13.715653, 65.553563], - [-13.71516, 65.553585], - [-13.714878, 65.553404], - [-13.714892, 65.553083], - [-13.714588, 65.552904], - [-13.713138, 65.552394], - [-13.712907, 65.552062], - [-13.712341, 65.552024], - [-13.712196, 65.551604], - [-13.712209, 65.551485], - [-13.712422, 65.551237], - [-13.71251, 65.551125], - [-13.712214, 65.550885], - [-13.711644, 65.550692], - [-13.71092, 65.550449], - [-13.710096, 65.550293], - [-13.708891, 65.550231], - [-13.707669, 65.550198], - [-13.706694, 65.550262], - [-13.705974, 65.550242], - [-13.705472, 65.550237], - [-13.705236, 65.550234], - [-13.705478, 65.550444], - [-13.705729, 65.550726], - [-13.705718, 65.551036], - [-13.705236, 65.550994], - [-13.704704, 65.551264], - [-13.704704, 65.551554], - [-13.703979, 65.551834], - [-13.703375, 65.551794], - [-13.703254, 65.551394], - [-13.702408, 65.551694], - [-13.702046, 65.551854], - [-13.701587, 65.551864], - [-13.701442, 65.552224], - [-13.701901, 65.552554], - [-13.701792, 65.552892], - [-13.70103, 65.552688], - [-13.701577, 65.552932], - [-13.701513, 65.553154], - [-13.701098, 65.553042], - [-13.700958, 65.553004], - [-13.700558, 65.55295], - [-13.700282, 65.553184], - [-13.700386, 65.55347], - [-13.700032, 65.553487], - [-13.699234, 65.553302], - [-13.699218, 65.553314], - [-13.698807, 65.553424], - [-13.698082, 65.553114], - [-13.697962, 65.553364], - [-13.698069, 65.553754], - [-13.697715, 65.553523], - [-13.697261, 65.553144], - [-13.696342, 65.552934], - [-13.695859, 65.552974], - [-13.695333, 65.552941], - [-13.695086, 65.552714], - [-13.695593, 65.552524], - [-13.696077, 65.552414], - [-13.695762, 65.552154], - [-13.695279, 65.551834], - [-13.694548, 65.551862], - [-13.693322, 65.552224], - [-13.693273, 65.552812], - [-13.692704, 65.552955], - [-13.692162, 65.552934], - [-13.691823, 65.552544], - [-13.691533, 65.551994], - [-13.69163, 65.551594], - [-13.690639, 65.551164], - [-13.689576, 65.550954], - [-13.68844, 65.550704], - [-13.687546, 65.550914], - [-13.686748, 65.550944], - [-13.685927, 65.550844], - [-13.685467, 65.551094], - [-13.683921, 65.551724], - [-13.683606, 65.551929], - [-13.683002, 65.551944], - [-13.682941, 65.552355], - [-13.683188, 65.552901], - [-13.682866, 65.552879], - [-13.682662, 65.552732], - [-13.682501, 65.552262], - [-13.682448, 65.552613], - [-13.681987, 65.552624], - [-13.682072, 65.552888], - [-13.682362, 65.553083], - [-13.681965, 65.553283], - [-13.681456, 65.553204], - [-13.681385, 65.552932], - [-13.681021, 65.552714], - [-13.681235, 65.552497], - [-13.68116, 65.552226], - [-13.680827, 65.552094], - [-13.680344, 65.551944], - [-13.679305, 65.551664], - [-13.679025, 65.551809], - [-13.678113, 65.55184], - [-13.677072, 65.552], - [-13.676901, 65.552124], - [-13.677126, 65.552191], - [-13.67718, 65.552342], - [-13.677448, 65.552484], - [-13.677448, 65.552675], - [-13.676976, 65.552408], - [-13.677008, 65.552284], - [-13.676675, 65.552275], - [-13.676386, 65.55212], - [-13.67601, 65.5522], - [-13.675583, 65.552124], - [-13.675656, 65.552], - [-13.675442, 65.551898], - [-13.675517, 65.55172], - [-13.6751, 65.551624], - [-13.674351, 65.551184], - [-13.674068, 65.550752], - [-13.674519, 65.550757], - [-13.674712, 65.550894], - [-13.675313, 65.550726], - [-13.67557, 65.550495], - [-13.675462, 65.550284], - [-13.675003, 65.549904], - [-13.675197, 65.549573], - [-13.675921, 65.549653], - [-13.676018, 65.549663], - [-13.676574, 65.549723], - [-13.676501, 65.549553], - [-13.67597, 65.549353], - [-13.675535, 65.549173], - [-13.675921, 65.549003], - [-13.676791, 65.548953], - [-13.677758, 65.549123], - [-13.678381, 65.549171], - [-13.678617, 65.549051], - [-13.678773, 65.548763], - [-13.678749, 65.548303], - [-13.678386, 65.547983], - [-13.678639, 65.547648], - [-13.678701, 65.547263], - [-13.678564, 65.547044], - [-13.678231, 65.546969], - [-13.677984, 65.546747], - [-13.67822, 65.546578], - [-13.677831, 65.546342], - [-13.677394, 65.54616], - [-13.676901, 65.546178], - [-13.676933, 65.545991], - [-13.676767, 65.545832], - [-13.675607, 65.545012], - [-13.67539, 65.544612], - [-13.676018, 65.544441], - [-13.676515, 65.544566], - [-13.676439, 65.544743], - [-13.677137, 65.544632], - [-13.678006, 65.544486], - [-13.678169, 65.544572], - [-13.678652, 65.544522], - [-13.678907, 65.544512], - [-13.678918, 65.544353], - [-13.67858, 65.544191], - [-13.678392, 65.544068], - [-13.678135, 65.544184], - [-13.678017, 65.544321], - [-13.677641, 65.544157], - [-13.677877, 65.544006], - [-13.677444, 65.543891], - [-13.676985, 65.543581], - [-13.677661, 65.543371], - [-13.677931, 65.543455], - [-13.678017, 65.543615], - [-13.678499, 65.543655], - [-13.678692, 65.543562], - [-13.678692, 65.543398], - [-13.678424, 65.543202], - [-13.679154, 65.543162], - [-13.679197, 65.543016], - [-13.678918, 65.542967], - [-13.678328, 65.543025], - [-13.678049, 65.543096], - [-13.678081, 65.54294], - [-13.678703, 65.542851], - [-13.679175, 65.542834], - [-13.679208, 65.542611], - [-13.679283, 65.542287], - [-13.679626, 65.542181], - [-13.679474, 65.54199], - [-13.679411, 65.541834], - [-13.679572, 65.541683], - [-13.679232, 65.54166], - [-13.679218, 65.541425], - [-13.679347, 65.541248], - [-13.679039, 65.54095], - [-13.679261, 65.54095], - [-13.680409, 65.541243], - [-13.679411, 65.540817], - [-13.679377, 65.540469], - [-13.679669, 65.540333], - [-13.679937, 65.54015], - [-13.680709, 65.540044], - [-13.680109, 65.539977], - [-13.679798, 65.540062], - [-13.679497, 65.539995], - [-13.679508, 65.539817], - [-13.679281, 65.539669], - [-13.679057, 65.539342], - [-13.678971, 65.539098], - [-13.679184, 65.539018], - [-13.679744, 65.53932], - [-13.680119, 65.539395], - [-13.679969, 65.539226], - [-13.680119, 65.539231], - [-13.680624, 65.539595], - [-13.680484, 65.539231], - [-13.680173, 65.539071], - [-13.680012, 65.538911], - [-13.68013, 65.538822], - [-13.681093, 65.538908], - [-13.681621, 65.538973], - [-13.682211, 65.53888], - [-13.683462, 65.538508], - [-13.683896, 65.538258], - [-13.683993, 65.537958], - [-13.684025, 65.53772], - [-13.6838, 65.537497], - [-13.683921, 65.536827], - [-13.683574, 65.536654], - [-13.683703, 65.536494], - [-13.683341, 65.536416], - [-13.683531, 65.536276], - [-13.684282, 65.53625], - [-13.683864, 65.536112], - [-13.683403, 65.536099], - [-13.683389, 65.535916], - [-13.683359, 65.535779], - [-13.684066, 65.535736], - [-13.68455, 65.535517], - [-13.684525, 65.535195], - [-13.684647, 65.53497], - [-13.684443, 65.534784], - [-13.684872, 65.534668], - [-13.685119, 65.534566], - [-13.684904, 65.534348], - [-13.685065, 65.534255], - [-13.685505, 65.534388], - [-13.685291, 65.534184], - [-13.684926, 65.534073], - [-13.684477, 65.534155], - [-13.684175, 65.533993], - [-13.684078, 65.534241], - [-13.683317, 65.53421], - [-13.683231, 65.533935], - [-13.683746, 65.533895], - [-13.684121, 65.533788], - [-13.684187, 65.533424], - [-13.684776, 65.533348], - [-13.684863, 65.533044], - [-13.684162, 65.532813], - [-13.684379, 65.53258], - [-13.684926, 65.532571], - [-13.685141, 65.532486], - [-13.684829, 65.532286], - [-13.685334, 65.532175], - [-13.68496, 65.532103], - [-13.684668, 65.531895], - [-13.684196, 65.531873], - [-13.684307, 65.531682], - [-13.684164, 65.531469], - [-13.684507, 65.531322], - [-13.684862, 65.531233], - [-13.685484, 65.531193], - [-13.685387, 65.530962], - [-13.685216, 65.530851], - [-13.685098, 65.530913], - [-13.684604, 65.531033], - [-13.68469, 65.530793], - [-13.684936, 65.530641], - [-13.685157, 65.530647], - [-13.684963, 65.530422], - [-13.684524, 65.530435], - [-13.684545, 65.530333], - [-13.684622, 65.530251], - [-13.684561, 65.530182], - [-13.684282, 65.530184], - [-13.684452, 65.52988], - [-13.684787, 65.52978], - [-13.684754, 65.52972], - [-13.684609, 65.529707], - [-13.684245, 65.529715], - [-13.684121, 65.529584], - [-13.684175, 65.5295], - [-13.684218, 65.529433], - [-13.684357, 65.5292], - [-13.684636, 65.528958], - [-13.684808, 65.528784], - [-13.685312, 65.528871], - [-13.685516, 65.528671], - [-13.685322, 65.528529], - [-13.685248, 65.528322], - [-13.685285, 65.528189], - [-13.685105, 65.528118], - [-13.684845, 65.528109], - [-13.684545, 65.528216], - [-13.684282, 65.528047], - [-13.684304, 65.527887], - [-13.684573, 65.527858], - [-13.684856, 65.527647], - [-13.684777, 65.527397], - [-13.684776, 65.527391], - [-13.68351, 65.526817], - [-13.68264, 65.526527], - [-13.681093, 65.526076], - [-13.678411, 65.525425], - [-13.676864, 65.525065], - [-13.675003, 65.524775], - [-13.672828, 65.524464], - [-13.671257, 65.524274], - [-13.670097, 65.524324], - [-13.669711, 65.524635], - [-13.669561, 65.524812], - [-13.669271, 65.524856], - [-13.669024, 65.525189], - [-13.66866, 65.5251], - [-13.668309, 65.524965], - [-13.668134, 65.525207], - [-13.668649, 65.52558], - [-13.668745, 65.526043], - [-13.668327, 65.525572], - [-13.667984, 65.52558], - [-13.667694, 65.525861], - [-13.667941, 65.526092], - [-13.668177, 65.526407], - [-13.668177, 65.52703], - [-13.667447, 65.526225], - [-13.667125, 65.526425], - [-13.666793, 65.526483], - [-13.666496, 65.526607], - [-13.666545, 65.526887], - [-13.667093, 65.527043], - [-13.667439, 65.527268], - [-13.667052, 65.527668], - [-13.666846, 65.528052], - [-13.666636, 65.528234], - [-13.666213, 65.528643], - [-13.66616, 65.529096], - [-13.666042, 65.528803], - [-13.665815, 65.528821], - [-13.665698, 65.529123], - [-13.66573, 65.529508], - [-13.665602, 65.529732], - [-13.665226, 65.529918], - [-13.665065, 65.529696], - [-13.665046, 65.529479], - [-13.665141, 65.529323], - [-13.664862, 65.529256], - [-13.664551, 65.52909], - [-13.664518, 65.529474], - [-13.664153, 65.529349], - [-13.663696, 65.529345], - [-13.663594, 65.529529], - [-13.663731, 65.529833], - [-13.664003, 65.529852], - [-13.664209, 65.530031], - [-13.664021, 65.530145], - [-13.663611, 65.530088], - [-13.663372, 65.530145], - [-13.663303, 65.530307], - [-13.663696, 65.530555], - [-13.663474, 65.530619], - [-13.662984, 65.530607], - [-13.662866, 65.531047], - [-13.662448, 65.530789], - [-13.662022, 65.530739], - [-13.662073, 65.531037], - [-13.662039, 65.531369], - [-13.661936, 65.531638], - [-13.661629, 65.531412], - [-13.661595, 65.531022], - [-13.661218, 65.531001], - [-13.661133, 65.531192], - [-13.661304, 65.531362], - [-13.66132, 65.53171], - [-13.661103, 65.53177], - [-13.660571, 65.5317], - [-13.660463, 65.532118], - [-13.660216, 65.532056], - [-13.660257, 65.53192], - [-13.659967, 65.53203], - [-13.659315, 65.53238], - [-13.659508, 65.532611], - [-13.659919, 65.532621], - [-13.659822, 65.532861], - [-13.659146, 65.533101], - [-13.658643, 65.533356], - [-13.658449, 65.533536], - [-13.657893, 65.533616], - [-13.657168, 65.533526], - [-13.65683, 65.533536], - [-13.656516, 65.533446], - [-13.656057, 65.533516], - [-13.655163, 65.533516], - [-13.654897, 65.533386], - [-13.65451, 65.533266], - [-13.654196, 65.533266], - [-13.653833, 65.533316], - [-13.653423, 65.533076], - [-13.653298, 65.532962], - [-13.652609, 65.532985], - [-13.651944, 65.533087], - [-13.651172, 65.533322], - [-13.649648, 65.533247], - [-13.649058, 65.532865], - [-13.649573, 65.532616], - [-13.649155, 65.53254], - [-13.649015, 65.53238], - [-13.648779, 65.532016], - [-13.648886, 65.531456], - [-13.650742, 65.531842], - [-13.650855, 65.53149], - [-13.651128, 65.531186], - [-13.650855, 65.531087], - [-13.650735, 65.530931], - [-13.650989, 65.530838], - [-13.65026, 65.530847], - [-13.650002, 65.530758], - [-13.650099, 65.530638], - [-13.650796, 65.530652], - [-13.650974, 65.53057], - [-13.65012, 65.530131], - [-13.650086, 65.529876], - [-13.65094, 65.529862], - [-13.65123, 65.530074], - [-13.651538, 65.529876], - [-13.651692, 65.529551], - [-13.651384, 65.529416], - [-13.650735, 65.529593], - [-13.649966, 65.529692], - [-13.649351, 65.529543], - [-13.649675, 65.529303], - [-13.649778, 65.529048], - [-13.64947, 65.528921], - [-13.649402, 65.528581], - [-13.649932, 65.528262], - [-13.649949, 65.528085], - [-13.64959, 65.528092], - [-13.649004, 65.527812], - [-13.648641, 65.527968], - [-13.648539, 65.528138], - [-13.648616, 65.528514], - [-13.648428, 65.528648], - [-13.648086, 65.528574], - [-13.647864, 65.528322], - [-13.647924, 65.528142], - [-13.647753, 65.528103], - [-13.647479, 65.528312], - [-13.647377, 65.528602], - [-13.647112, 65.528871], - [-13.646924, 65.528874], - [-13.646762, 65.528701], - [-13.646557, 65.528623], - [-13.646283, 65.528637], - [-13.646164, 65.528503], - [-13.645976, 65.528411], - [-13.645805, 65.528503], - [-13.64548, 65.52862], - [-13.645326, 65.528443], - [-13.645247, 65.528239], - [-13.644884, 65.528269], - [-13.644691, 65.528039], - [-13.644377, 65.527669], - [-13.644715, 65.527238], - [-13.644618, 65.526948], - [-13.645029, 65.526647], - [-13.644957, 65.526447], - [-13.644522, 65.526307], - [-13.64526, 65.526247], - [-13.646552, 65.526067], - [-13.646383, 65.525926], - [-13.645875, 65.525716], - [-13.645923, 65.525366], - [-13.646552, 65.525196], - [-13.646783, 65.524861], - [-13.647083, 65.524445], - [-13.646866, 65.524114], - [-13.646172, 65.523718], - [-13.645603, 65.523776], - [-13.646022, 65.523616], - [-13.645222, 65.523263], - [-13.645102, 65.523213], - [-13.644449, 65.522903], - [-13.644111, 65.522462], - [-13.643676, 65.521631], - [-13.643144, 65.52109], - [-13.642709, 65.52071], - [-13.641597, 65.520169], - [-13.640123, 65.519728], - [-13.63877, 65.519708], - [-13.637368, 65.519618], - [-13.636957, 65.519578], - [-13.636716, 65.518937], - [-13.636426, 65.518336], - [-13.635822, 65.517816], - [-13.636169, 65.517547], - [-13.63604, 65.517276], - [-13.636931, 65.517356], - [-13.636527, 65.517161], - [-13.636119, 65.517036], - [-13.63576, 65.516962], - [-13.635604, 65.51693], - [-13.635145, 65.516684], - [-13.634141, 65.516716], - [-13.634102, 65.517054], - [-13.633287, 65.51705], - [-13.632321, 65.51749], - [-13.632203, 65.517045], - [-13.632396, 65.516743], - [-13.632993, 65.516742], - [-13.633348, 65.516565], - [-13.633777, 65.51664], - [-13.633551, 65.516351], - [-13.634009, 65.516153], - [-13.633598, 65.515729], - [-13.63413, 65.515692], - [-13.634106, 65.515342], - [-13.63355, 65.515011], - [-13.632607, 65.514701], - [-13.631762, 65.514651], - [-13.630358, 65.514675], - [-13.629684, 65.514391], - [-13.629055, 65.514621], - [-13.628402, 65.514651], - [-13.627774, 65.51438], - [-13.627967, 65.51414], - [-13.627822, 65.513879], - [-13.627122, 65.51397], - [-13.626421, 65.5142], - [-13.625841, 65.514541], - [-13.625502, 65.51419], - [-13.626131, 65.513849], - [-13.625744, 65.513539], - [-13.625382, 65.513499], - [-13.625237, 65.513739], - [-13.624657, 65.513669], - [-13.624077, 65.513188], - [-13.624101, 65.512878], - [-13.623497, 65.512417], - [-13.622892, 65.512287], - [-13.621757, 65.512477], - [-13.621032, 65.512808], - [-13.621177, 65.513118], - [-13.620935, 65.513258], - [-13.620476, 65.513008], - [-13.620814, 65.512347], - [-13.620476, 65.512116], - [-13.619001, 65.512056], - [-13.618421, 65.512066], - [-13.617841, 65.512277], - [-13.616899, 65.512136], - [-13.616904, 65.512576], - [-13.615981, 65.512692], - [-13.615831, 65.512265], - [-13.615546, 65.512417], - [-13.614966, 65.512347], - [-13.614144, 65.512086], - [-13.613806, 65.511666], - [-13.613298, 65.511435], - [-13.613008, 65.511555], - [-13.613295, 65.512002], - [-13.613392, 65.51214], - [-13.612936, 65.512297], - [-13.612356, 65.512187], - [-13.611604, 65.512065], - [-13.611335, 65.511678], - [-13.611507, 65.511162], - [-13.611196, 65.510774], - [-13.610767, 65.511269], - [-13.610313, 65.511144], - [-13.610037, 65.510904], - [-13.61035, 65.510474], - [-13.60919, 65.510333], - [-13.608296, 65.510373], - [-13.608485, 65.510735], - [-13.607933, 65.510824], - [-13.608296, 65.510984], - [-13.608789, 65.511002], - [-13.608639, 65.511108], - [-13.608653, 65.511207], - [-13.608856, 65.511363], - [-13.60905, 65.511513], - [-13.608948, 65.511906], - [-13.60876, 65.512034], - [-13.608321, 65.511558], - [-13.608406, 65.511994], - [-13.608731, 65.512387], - [-13.608353, 65.512505], - [-13.607933, 65.512417], - [-13.607559, 65.512407], - [-13.607256, 65.511946], - [-13.606958, 65.51182], - [-13.607087, 65.511616], - [-13.606583, 65.511447], - [-13.606531, 65.511205], - [-13.606193, 65.510564], - [-13.606846, 65.510193], - [-13.606846, 65.509902], - [-13.606293, 65.509992], - [-13.606014, 65.509846], - [-13.60669, 65.509565], - [-13.606411, 65.509301], - [-13.605971, 65.509214], - [-13.605903, 65.509021], - [-13.605799, 65.508738], - [-13.606282, 65.508765], - [-13.607015, 65.508911], - [-13.607595, 65.509141], - [-13.607698, 65.508894], - [-13.608085, 65.508734], - [-13.608127, 65.508342], - [-13.608449, 65.508338], - [-13.6086, 65.50792], - [-13.608213, 65.507595], - [-13.60802, 65.507382], - [-13.608052, 65.50723], - [-13.607773, 65.507204], - [-13.607353, 65.507268], - [-13.606748, 65.507113], - [-13.606595, 65.506985], - [-13.606407, 65.506617], - [-13.606304, 65.506227], - [-13.606748, 65.505965], - [-13.607107, 65.505994], - [-13.607295, 65.50593], - [-13.607227, 65.505802], - [-13.607722, 65.505611], - [-13.608457, 65.505087], - [-13.608696, 65.50464], - [-13.608901, 65.504683], - [-13.609141, 65.505016], - [-13.609346, 65.505391], - [-13.609534, 65.505434], - [-13.609688, 65.505349], - [-13.609858, 65.505526], - [-13.609739, 65.505738], - [-13.609841, 65.505937], - [-13.609927, 65.506071], - [-13.610132, 65.506036], - [-13.610251, 65.505809], - [-13.610439, 65.505561], - [-13.610219, 65.505138], - [-13.610166, 65.505037], - [-13.60979, 65.504236], - [-13.609397, 65.503712], - [-13.609346, 65.503273], - [-13.609705, 65.503223], - [-13.610012, 65.503152], - [-13.609756, 65.503053], - [-13.609312, 65.50289], - [-13.609568, 65.502706], - [-13.609756, 65.502507], - [-13.609517, 65.502387], - [-13.609807, 65.502281], - [-13.610149, 65.502167], - [-13.610115, 65.502054], - [-13.610405, 65.501983], - [-13.610696, 65.502217], - [-13.610645, 65.502529], - [-13.611157, 65.502585], - [-13.61167, 65.502557], - [-13.612456, 65.502415], - [-13.612951, 65.502267], - [-13.613515, 65.50204], - [-13.613925, 65.501806], - [-13.614301, 65.501452], - [-13.614985, 65.501069], - [-13.614746, 65.500679], - [-13.614729, 65.500382], - [-13.614455, 65.500084], - [-13.614455, 65.499836], - [-13.614216, 65.499659], - [-13.614472, 65.499638], - [-13.614677, 65.499779], - [-13.614985, 65.499857], - [-13.615207, 65.499808], - [-13.615481, 65.49973], - [-13.61507, 65.499411], - [-13.615361, 65.499305], - [-13.616062, 65.499574], - [-13.616489, 65.499531], - [-13.616865, 65.499361], - [-13.616947, 65.49921], - [-13.617279, 65.498974], - [-13.617394, 65.498759], - [-13.617394, 65.498341], - [-13.617343, 65.497951], - [-13.617121, 65.497639], - [-13.616608, 65.497313], - [-13.616215, 65.49703], - [-13.616099, 65.496771], - [-13.616289, 65.496609], - [-13.616352, 65.496555], - [-13.616027, 65.496229], - [-13.615316, 65.496024], - [-13.614852, 65.495445], - [-13.613771, 65.495374], - [-13.613717, 65.495005], - [-13.613352, 65.494395], - [-13.613707, 65.494239], - [-13.614007, 65.494333], - [-13.614339, 65.494239], - [-13.614693, 65.493959], - [-13.614329, 65.493736], - [-13.614254, 65.493469], - [-13.614093, 65.492837], - [-13.614436, 65.49302], - [-13.614543, 65.49338], - [-13.61479, 65.49387], - [-13.614983, 65.493451], - [-13.61527, 65.492989], - [-13.614844, 65.492459], - [-13.614916, 65.492097], - [-13.614919, 65.492085], - [-13.615359, 65.491987], - [-13.615552, 65.492432], - [-13.616197, 65.492225], - [-13.617311, 65.491915], - [-13.617801, 65.492031], - [-13.618781, 65.491843], - [-13.61964, 65.491093], - [-13.620635, 65.490652], - [-13.620766, 65.490341], - [-13.62112, 65.490198], - [-13.62123, 65.489999], - [-13.6213, 65.489186], - [-13.621074, 65.488948], - [-13.620734, 65.48864], - [-13.620401, 65.488573], - [-13.619865, 65.488561], - [-13.6199, 65.488198], - [-13.619586, 65.487981], - [-13.619607, 65.487959], - [-13.620593, 65.487771], - [-13.620635, 65.487763], - [-13.62039, 65.487342], - [-13.619886, 65.486263], - [-13.619836, 65.486184], - [-13.619546, 65.485725], - [-13.619271, 65.485526], - [-13.618151, 65.485004], - [-13.618256, 65.484626], - [-13.618991, 65.4839], - [-13.618501, 65.48297], - [-13.618046, 65.482171], - [-13.616786, 65.481692], - [-13.617941, 65.481053], - [-13.618501, 65.480254], - [-13.618781, 65.479586], - [-13.618771, 65.478717], - [-13.618845, 65.478152], - [-13.619241, 65.477669], - [-13.619241, 65.476642], - [-13.619241, 65.475954], - [-13.618159, 65.475581], - [-13.61763, 65.47543], - [-13.617491, 65.475391], - [-13.616947, 65.475231], - [-13.617306, 65.475041], - [-13.617887, 65.475098], - [-13.618184, 65.475], - [-13.61811, 65.47481], - [-13.618107, 65.474652], - [-13.61885, 65.474385], - [-13.618998, 65.473912], - [-13.618965, 65.473848], - [-13.6188, 65.473532], - [-13.619171, 65.473285], - [-13.619518, 65.472792], - [-13.620087, 65.472484], - [-13.619493, 65.472073], - [-13.619468, 65.471631], - [-13.618553, 65.471056], - [-13.618256, 65.47007], - [-13.618305, 65.469844], - [-13.618998, 65.47083], - [-13.61927, 65.471025], - [-13.619642, 65.470737], - [-13.619394, 65.470244], - [-13.619963, 65.469967], - [-13.61984, 65.469546], - [-13.61927, 65.469371], - [-13.618998, 65.46896], - [-13.619741, 65.469042], - [-13.620582, 65.469463], - [-13.621325, 65.469196], - [-13.622216, 65.469001], - [-13.622339, 65.468682], - [-13.621622, 65.468508], - [-13.620335, 65.468323], - [-13.619903, 65.467764], - [-13.620681, 65.467521], - [-13.621003, 65.467686], - [-13.621646, 65.467604], - [-13.621671, 65.467192], - [-13.621275, 65.466596], - [-13.621374, 65.466031], - [-13.620154, 65.464865], - [-13.620165, 65.464598], - [-13.620358, 65.464656], - [-13.621201, 65.465528], - [-13.621919, 65.466175], - [-13.622042, 65.465774], - [-13.62182, 65.465384], - [-13.621547, 65.464685], - [-13.621869, 65.464438], - [-13.622265, 65.464664], - [-13.622815, 65.465364], - [-13.623032, 65.46524], - [-13.623756, 65.466188], - [-13.62375, 65.466206], - [-13.623973, 65.466062], - [-13.623215, 65.464824], - [-13.623416, 65.464718], - [-13.623684, 65.464794], - [-13.623923, 65.465004], - [-13.624567, 65.46634], - [-13.624987, 65.466422], - [-13.625854, 65.466525], - [-13.626398, 65.466607], - [-13.626398, 65.465651], - [-13.626635, 65.465355], - [-13.626893, 65.465517], - [-13.627338, 65.465702], - [-13.627537, 65.466432], - [-13.628031, 65.466463], - [-13.627932, 65.466021], - [-13.628544, 65.46589], - [-13.628695, 65.465916], - [-13.629046, 65.466504], - [-13.629467, 65.46709], - [-13.630927, 65.46709], - [-13.632709, 65.466781], - [-13.633674, 65.466422], - [-13.633625, 65.466103], - [-13.633061, 65.465876], - [-13.633029, 65.46552], - [-13.632833, 65.465435], - [-13.632805, 65.46538], - [-13.632697, 65.465159], - [-13.632439, 65.464691], - [-13.632448, 65.464687], - [-13.632933, 65.464451], - [-13.634016, 65.464762], - [-13.633973, 65.465284], - [-13.63451, 65.465511], - [-13.635153, 65.465288], - [-13.635555, 65.465538], - [-13.636594, 65.465764], - [-13.637733, 65.465898], - [-13.639267, 65.465877], - [-13.640851, 65.465733], - [-13.642707, 65.465456], - [-13.643672, 65.465003], - [-13.643661, 65.464803], - [-13.6435, 65.464584], - [-13.643865, 65.464629], - [-13.644563, 65.465034], - [-13.645517, 65.465248], - [-13.647261, 65.465117], - [-13.649092, 65.464767], - [-13.650701, 65.464284], - [-13.65184, 65.463863], - [-13.654116, 65.462588], - [-13.655075, 65.461772], - [-13.656416, 65.461037], - [-13.657317, 65.461385], - [-13.657242, 65.460783], - [-13.657507, 65.460307], - [-13.658324, 65.459392], - [-13.658484, 65.458918], - [-13.658843, 65.45786], - [-13.659345, 65.456599], - [-13.659431, 65.455939], - [-13.659731, 65.455075], - [-13.660385, 65.454611], - [-13.659924, 65.454718], - [-13.659883, 65.454026], - [-13.659908, 65.4531], - [-13.660328, 65.452082], - [-13.659239, 65.45161], - [-13.658571, 65.451291], - [-13.657853, 65.451054], - [-13.65617, 65.450376], - [-13.6557, 65.450376], - [-13.654983, 65.450694], - [-13.654611, 65.450612], - [-13.654413, 65.450211], - [-13.654908, 65.449862], - [-13.654389, 65.449707], - [-13.65325, 65.449502], - [-13.652704, 65.449668], - [-13.65226, 65.449748], - [-13.651864, 65.449944], - [-13.651221, 65.45017], - [-13.650577, 65.449748], - [-13.650404, 65.449131], - [-13.650602, 65.448926], - [-13.6508, 65.448689], - [-13.650815, 65.448549], - [-13.650526, 65.44862], - [-13.650305, 65.448566], - [-13.650899, 65.448319], - [-13.652087, 65.448124], - [-13.651815, 65.447928], - [-13.651394, 65.447712], - [-13.650825, 65.447887], - [-13.650553, 65.447846], - [-13.650478, 65.447363], - [-13.650129, 65.447238], - [-13.649934, 65.447342], - [-13.649736, 65.447568], - [-13.649563, 65.447969], - [-13.64882, 65.448062], - [-13.648476, 65.447916], - [-13.648627, 65.447591], - [-13.64835, 65.447743], - [-13.647954, 65.447795], - [-13.647113, 65.447579], - [-13.646791, 65.447188], - [-13.646172, 65.446417], - [-13.646341, 65.446258], - [-13.646846, 65.446182], - [-13.646717, 65.446087], - [-13.646123, 65.446098], - [-13.646098, 65.445748], - [-13.646543, 65.445388], - [-13.646685, 65.445277], - [-13.647178, 65.44533], - [-13.647618, 65.445143], - [-13.647468, 65.444791], - [-13.647339, 65.44426], - [-13.647607, 65.442945], - [-13.647843, 65.442535], - [-13.648026, 65.442303], - [-13.64783, 65.442045], - [-13.647187, 65.441881], - [-13.646296, 65.442004], - [-13.645652, 65.442179], - [-13.645083, 65.442117], - [-13.644489, 65.441552], - [-13.645133, 65.44149], - [-13.645974, 65.441531], - [-13.646543, 65.441325], - [-13.647434, 65.441377], - [-13.648251, 65.441675], - [-13.648795, 65.441655], - [-13.649414, 65.441408], - [-13.649835, 65.440883], - [-13.649662, 65.440431], - [-13.64929, 65.440009], - [-13.649464, 65.4397], - [-13.649414, 65.439196], - [-13.64934, 65.4386], - [-13.649142, 65.438071], - [-13.648795, 65.437519], - [-13.648498, 65.437283], - [-13.647706, 65.436655], - [-13.64721, 65.436367], - [-13.646519, 65.43611], - [-13.645479, 65.436182], - [-13.644732, 65.436438], - [-13.644266, 65.436429], - [-13.643079, 65.43648], - [-13.641668, 65.436347], - [-13.640678, 65.436079], - [-13.640084, 65.43577], - [-13.639663, 65.435277], - [-13.639416, 65.434978], - [-13.638772, 65.434577], - [-13.638426, 65.434361], - [-13.638079, 65.434258], - [-13.638228, 65.434073], - [-13.637906, 65.433805], - [-13.637312, 65.433744], - [-13.637535, 65.43363], - [-13.637188, 65.433281], - [-13.636768, 65.432869], - [-13.637164, 65.432704], - [-13.637213, 65.432488], - [-13.636718, 65.432303], - [-13.636396, 65.432046], - [-13.636248, 65.431603], - [-13.636842, 65.431408], - [-13.636248, 65.431109], - [-13.635555, 65.430852], - [-13.634664, 65.430852], - [-13.634169, 65.43076], - [-13.63411, 65.430488], - [-13.634367, 65.430235], - [-13.635085, 65.429813], - [-13.635654, 65.429298], - [-13.635967, 65.428802], - [-13.635852, 65.42867], - [-13.635484, 65.428672], - [-13.635666, 65.428851], - [-13.63558, 65.429082], - [-13.635208, 65.429442], - [-13.63459, 65.429864], - [-13.634325, 65.429747], - [-13.6344, 65.429538], - [-13.63469, 65.429467], - [-13.634733, 65.42902], - [-13.635035, 65.42866], - [-13.634904, 65.428436], - [-13.635174, 65.428389], - [-13.634813, 65.427868], - [-13.634441, 65.427436], - [-13.634763, 65.427127], - [-13.634466, 65.426952], - [-13.634218, 65.426959], - [-13.63455, 65.426874], - [-13.634664, 65.426777], - [-13.63381, 65.426674], - [-13.633542, 65.426692], - [-13.633005, 65.426772], - [-13.632877, 65.426642], - [-13.63443, 65.426457], - [-13.634411, 65.426317], - [-13.634025, 65.426228], - [-13.634261, 65.426112], - [-13.634727, 65.42618], - [-13.635182, 65.425722], - [-13.635305, 65.425278], - [-13.63514, 65.424835], - [-13.634668, 65.424318], - [-13.634153, 65.424095], - [-13.634089, 65.423988], - [-13.634293, 65.423854], - [-13.63411, 65.423568], - [-13.634175, 65.423381], - [-13.634743, 65.423104], - [-13.634819, 65.422836], - [-13.635226, 65.422863], - [-13.635533, 65.422614], - [-13.635795, 65.422126], - [-13.635445, 65.421777], - [-13.635645, 65.421707], - [-13.635634, 65.421529], - [-13.635495, 65.421444], - [-13.635677, 65.421444], - [-13.635777, 65.421289], - [-13.63587, 65.421154], - [-13.63618, 65.421173], - [-13.636845, 65.421231], - [-13.637265, 65.421056], - [-13.637691, 65.420739], - [-13.637964, 65.420384], - [-13.638458, 65.420039], - [-13.638916, 65.419864], - [-13.63878, 65.419669], - [-13.639052, 65.419494], - [-13.639176, 65.419329], - [-13.639032, 65.419203], - [-13.639014, 65.419], - [-13.639391, 65.418987], - [-13.64014, 65.419196], - [-13.640375, 65.419137], - [-13.640449, 65.418931], - [-13.6404, 65.418823], - [-13.640078, 65.418763], - [-13.63967, 65.418768], - [-13.639558, 65.418599], - [-13.639459, 65.418462], - [-13.639447, 65.41821], - [-13.639497, 65.417911], - [-13.639472, 65.417391], - [-13.639719, 65.417361], - [-13.639744, 65.417525], - [-13.640189, 65.417623], - [-13.640746, 65.417633], - [-13.640957, 65.417438], - [-13.641204, 65.41718], - [-13.640548, 65.417209], - [-13.640194, 65.41712], - [-13.640408, 65.416999], - [-13.640376, 65.416691], - [-13.640462, 65.416312], - [-13.640741, 65.416236], - [-13.641149, 65.416678], - [-13.641213, 65.416959], - [-13.641724, 65.417021], - [-13.642107, 65.41698], - [-13.642528, 65.416697], - [-13.642776, 65.416455], - [-13.64264, 65.416259], - [-13.642404, 65.416048], - [-13.642522, 65.415897], - [-13.642232, 65.415611], - [-13.642586, 65.415638], - [-13.642701, 65.415502], - [-13.642429, 65.415095], - [-13.642751, 65.41507], - [-13.643147, 65.415353], - [-13.64337, 65.415605], - [-13.643357, 65.415837], - [-13.643691, 65.41596], - [-13.64405, 65.415909], - [-13.644223, 65.415749], - [-13.644137, 65.415518], - [-13.644087, 65.415317], - [-13.644298, 65.415265], - [-13.644508, 65.415543], - [-13.64478, 65.415579], - [-13.644768, 65.415456], - [-13.644854, 65.415384], - [-13.645139, 65.415487], - [-13.645399, 65.415451], - [-13.645684, 65.415229], - [-13.645745, 65.4149], - [-13.645448, 65.414699], - [-13.645275, 65.414519], - [-13.645337, 65.414195], - [-13.645399, 65.413999], - [-13.645647, 65.414179], - [-13.645696, 65.414359], - [-13.645869, 65.414292], - [-13.645906, 65.414117], - [-13.646141, 65.414241], - [-13.64608, 65.414086], - [-13.64624, 65.414004], - [-13.646414, 65.414195], - [-13.646401, 65.414473], - [-13.646476, 65.414787], - [-13.646649, 65.414951], - [-13.646859, 65.414802], - [-13.646834, 65.414632], - [-13.646624, 65.414251], - [-13.646859, 65.414231], - [-13.646933, 65.414493], - [-13.647168, 65.414817], - [-13.64702, 65.415008], - [-13.64728, 65.415075], - [-13.647626, 65.415075], - [-13.647626, 65.414848], - [-13.647713, 65.414617], - [-13.647923, 65.414684], - [-13.648059, 65.415034], - [-13.648567, 65.415039], - [-13.648584, 65.41474], - [-13.64882, 65.415031], - [-13.649087, 65.415073], - [-13.64956, 65.41504], - [-13.649991, 65.414929], - [-13.650461, 65.414733], - [-13.650263, 65.414671], - [-13.65049, 65.414438], - [-13.650525, 65.414212], - [-13.6507, 65.414241], - [-13.65077, 65.41438], - [-13.65091, 65.414416], - [-13.651103, 65.414205], - [-13.651225, 65.414001], - [-13.651418, 65.414016], - [-13.651365, 65.414168], - [-13.65119, 65.414314], - [-13.6514, 65.414372], - [-13.651995, 65.414423], - [-13.6528, 65.414343], - [-13.653518, 65.414168], - [-13.65448, 65.41387], - [-13.655058, 65.413571], - [-13.655215, 65.413389], - [-13.655338, 65.41291], - [-13.655487, 65.412761], - [-13.655635, 65.412782], - [-13.655714, 65.412932], - [-13.656082, 65.412855], - [-13.65623, 65.412724], - [-13.656292, 65.412546], - [-13.656134, 65.41244], - [-13.656008, 65.412397], - [-13.655954, 65.412553], - [-13.655794, 65.412625], - [-13.655729, 65.412535], - [-13.655826, 65.412406], - [-13.655635, 65.412313], - [-13.655775, 65.412204], - [-13.6556, 65.412087], - [-13.655364, 65.411923], - [-13.655557, 65.411767], - [-13.655869, 65.411714], - [-13.6563, 65.411774], - [-13.656423, 65.411905], - [-13.656738, 65.412043], - [-13.657333, 65.41188], - [-13.657446, 65.411736], - [-13.657263, 65.411607], - [-13.657038, 65.41154], - [-13.656931, 65.411317], - [-13.657328, 65.411339], - [-13.657457, 65.411451], - [-13.657735, 65.411611], - [-13.657893, 65.411654], - [-13.658165, 65.411455], - [-13.658519, 65.411375], - [-13.658744, 65.411442], - [-13.658132, 65.411754], - [-13.658111, 65.411892], - [-13.658164, 65.412025], - [-13.658365, 65.412175], - [-13.658847, 65.412291], - [-13.659372, 65.412309], - [-13.659984, 65.412258], - [-13.660457, 65.412178], - [-13.661244, 65.411993], - [-13.66207, 65.411839], - [-13.662767, 65.411596], - [-13.663134, 65.411479], - [-13.663607, 65.411395], - [-13.663712, 65.411228], - [-13.663983, 65.411195], - [-13.664202, 65.411312], - [-13.664149, 65.411465], - [-13.66435, 65.411534], - [-13.664464, 65.411654], - [-13.665015, 65.411563], - [-13.665575, 65.411472], - [-13.666407, 65.411195], - [-13.666966, 65.411031], - [-13.668261, 65.410878], - [-13.66911, 65.410747], - [-13.669198, 65.41023], - [-13.669303, 65.410001], - [-13.669495, 65.410008], - [-13.669425, 65.410208], - [-13.669548, 65.410325], - [-13.670029, 65.410292], - [-13.670528, 65.410292], - [-13.671228, 65.410172], - [-13.671884, 65.409855], - [-13.672243, 65.409586], - [-13.67268, 65.409196], - [-13.673433, 65.408482], - [-13.673931, 65.407955], - [-13.674176, 65.407492], - [-13.674386, 65.407106], - [-13.674413, 65.406778], - [-13.674246, 65.406443], - [-13.673984, 65.406127], - [-13.673625, 65.40585], - [-13.67317, 65.405679], - [-13.672479, 65.405533], - [-13.671222, 65.405624], - [-13.670921, 65.40549], - [-13.670235, 65.405566], - [-13.669988, 65.405436], - [-13.669805, 65.405794], - [-13.669365, 65.40578], - [-13.669365, 65.405499], - [-13.669044, 65.405329], - [-13.669194, 65.405155], - [-13.668926, 65.405066], - [-13.668078, 65.404825], - [-13.668368, 65.404668], - [-13.667381, 65.404467], - [-13.668196, 65.40449], - [-13.668915, 65.404677], - [-13.669269, 65.404534], - [-13.669462, 65.404619], - [-13.669569, 65.40478], - [-13.669859, 65.404914], - [-13.669988, 65.405066], - [-13.670326, 65.40507], - [-13.670519, 65.405118], - [-13.670808, 65.405074], - [-13.671455, 65.404932], - [-13.672059, 65.404663], - [-13.672409, 65.404411], - [-13.67275, 65.404124], - [-13.673109, 65.403698], - [-13.673275, 65.40337], - [-13.67331, 65.403046], - [-13.67324, 65.402685], - [-13.673153, 65.402427], - [-13.67296, 65.402157], - [-13.673185, 65.401676], - [-13.672943, 65.401589], - [-13.672628, 65.401115], - [-13.672418, 65.400758], - [-13.671963, 65.400307], - [-13.671718, 65.40011], - [-13.671324, 65.399859], - [-13.67114, 65.399542], - [-13.670607, 65.39925], - [-13.66953, 65.399345], - [-13.669023, 65.399345], - [-13.668734, 65.399221], - [-13.668323, 65.39913], - [-13.668051, 65.399207], - [-13.667395, 65.398897], - [-13.666975, 65.39878], - [-13.666345, 65.398722], - [-13.665532, 65.39881], - [-13.665033, 65.398941], - [-13.664455, 65.399156], - [-13.663764, 65.399407], - [-13.663432, 65.39932], - [-13.66337, 65.399174], - [-13.663703, 65.399101], - [-13.663834, 65.39901], - [-13.663607, 65.398839], - [-13.662977, 65.398555], - [-13.662688, 65.398474], - [-13.66183, 65.398249], - [-13.661507, 65.398107], - [-13.660807, 65.398023], - [-13.660133, 65.397983], - [-13.65973, 65.397994], - [-13.659442, 65.397895], - [-13.659433, 65.398107], - [-13.659267, 65.398394], - [-13.659065, 65.398431], - [-13.65903, 65.39819], - [-13.65889, 65.398077], - [-13.65882, 65.397771], - [-13.658698, 65.397819], - [-13.658689, 65.398281], - [-13.658628, 65.398482], - [-13.658348, 65.398733], - [-13.657945, 65.398817], - [-13.657237, 65.398748], - [-13.656773, 65.398737], - [-13.656475, 65.398416], - [-13.656117, 65.398285], - [-13.655907, 65.398445], - [-13.6556, 65.398485], - [-13.655224, 65.398194], - [-13.655023, 65.397994], - [-13.654839, 65.397349], - [-13.654778, 65.397072], - [-13.654918, 65.396963], - [-13.655154, 65.396981], - [-13.655268, 65.397119], - [-13.655478, 65.397028], - [-13.655697, 65.396886], - [-13.655627, 65.39666], - [-13.655303, 65.396679], - [-13.654962, 65.39677], - [-13.654769, 65.396722], - [-13.654822, 65.39634], - [-13.655145, 65.395746], - [-13.655294, 65.395331], - [-13.655889, 65.395025], - [-13.656178, 65.395061], - [-13.656117, 65.395243], - [-13.656475, 65.395309], - [-13.657053, 65.395232], - [-13.657674, 65.39516], - [-13.657858, 65.394937], - [-13.657735, 65.394693], - [-13.657753, 65.394464], - [-13.658033, 65.394282], - [-13.658392, 65.393968], - [-13.658628, 65.393881], - [-13.65854, 65.393407], - [-13.658322, 65.392871], - [-13.657945, 65.392245], - [-13.657757, 65.39227], - [-13.65751, 65.392202], - [-13.657778, 65.3921], - [-13.657385, 65.391778], - [-13.656738, 65.391381], - [-13.656379, 65.391228], - [-13.655922, 65.391179], - [-13.655749, 65.391341], - [-13.655373, 65.391432], - [-13.655504, 65.390951], - [-13.655408, 65.390693], - [-13.655014, 65.390496], - [-13.65434, 65.390266], - [-13.653422, 65.390132], - [-13.653457, 65.389953], - [-13.653279, 65.389865], - [-13.652832, 65.389912], - [-13.6525, 65.389846], - [-13.652132, 65.389897], - [-13.651625, 65.389948], - [-13.65138, 65.389701], - [-13.651397, 65.389067], - [-13.65152, 65.388658], - [-13.65117, 65.388637], - [-13.651047, 65.388556], - [-13.65096, 65.38817], - [-13.651135, 65.387762], - [-13.650461, 65.387904], - [-13.650182, 65.387748], - [-13.649957, 65.387837], - [-13.650086, 65.388195], - [-13.649717, 65.388119], - [-13.649262, 65.388061], - [-13.64935, 65.387879], - [-13.649367, 65.38774], - [-13.648895, 65.387485], - [-13.648912, 65.387055], - [-13.649402, 65.38672], - [-13.64998, 65.386523], - [-13.650209, 65.386448], - [-13.650766, 65.386336], - [-13.650935, 65.386316], - [-13.651219, 65.386311], - [-13.651285, 65.386335], - [-13.651285, 65.386367], - [-13.651323, 65.386398], - [-13.651415, 65.386427], - [-13.651435, 65.38645], - [-13.651423, 65.386491], - [-13.651453, 65.386546], - [-13.651484, 65.386593], - [-13.651543, 65.386634], - [-13.651638, 65.386657], - [-13.651724, 65.386664], - [-13.651782, 65.386667], - [-13.651888, 65.38666], - [-13.651956, 65.386634], - [-13.651968, 65.386608], - [-13.651964, 65.386583], - [-13.651969, 65.386556], - [-13.651923, 65.386534], - [-13.651851, 65.386498], - [-13.651828, 65.386474], - [-13.651816, 65.386437], - [-13.65185, 65.386409], - [-13.651916, 65.386392], - [-13.652072, 65.386397], - [-13.652215, 65.386403], - [-13.652315, 65.386419], - [-13.652402, 65.386439], - [-13.652489, 65.386479], - [-13.652528, 65.386541], - [-13.652628, 65.386597], - [-13.65283, 65.386659], - [-13.652949, 65.386661], - [-13.653138, 65.386616], - [-13.65355, 65.386516], - [-13.654215, 65.386297], - [-13.654652, 65.386006], - [-13.6546, 65.385772], - [-13.653935, 65.385721], - [-13.65411, 65.385473], - [-13.654477, 65.385568], - [-13.654862, 65.385597], - [-13.655667, 65.38492], - [-13.655418, 65.384723], - [-13.655472, 65.38458], - [-13.655364, 65.384441], - [-13.655515, 65.38433], - [-13.65565, 65.383994], - [-13.65614, 65.38368], - [-13.656351, 65.383588], - [-13.656759, 65.383672], - [-13.656459, 65.383762], - [-13.656394, 65.383994], - [-13.656491, 65.384084], - [-13.656727, 65.383932], - [-13.657017, 65.383976], - [-13.657452, 65.384001], - [-13.65782, 65.383768], - [-13.65789, 65.38336], - [-13.657662, 65.383177], - [-13.657067, 65.383177], - [-13.657059, 65.38348], - [-13.656523, 65.383422], - [-13.656385, 65.383236], - [-13.656315, 65.383017], - [-13.656507, 65.382784], - [-13.657015, 65.382674], - [-13.657347, 65.382857], - [-13.65782, 65.382922], - [-13.658152, 65.382711], - [-13.658065, 65.382434], - [-13.65831, 65.382368], - [-13.658835, 65.382696], - [-13.659202, 65.382908], - [-13.65978, 65.382951], - [-13.660497, 65.382951], - [-13.660847, 65.382835], - [-13.660777, 65.382645], - [-13.660917, 65.382434], - [-13.661355, 65.382419], - [-13.661495, 65.382674], - [-13.661495, 65.382893], - [-13.661232, 65.38301], - [-13.661355, 65.383236], - [-13.662335, 65.383294], - [-13.662671, 65.383208], - [-13.662274, 65.382783], - [-13.662456, 65.38277], - [-13.663014, 65.383172], - [-13.663368, 65.383096], - [-13.663271, 65.382788], - [-13.663443, 65.38277], - [-13.663658, 65.383033], - [-13.664344, 65.382949], - [-13.665525, 65.382649], - [-13.666522, 65.382175], - [-13.667287, 65.381617], - [-13.668197, 65.381114], - [-13.669435, 65.380353], - [-13.67009, 65.379817], - [-13.670128, 65.379281], - [-13.670116, 65.379047], - [-13.669913, 65.378854], - [-13.669497, 65.378064], - [-13.669274, 65.377564], - [-13.669695, 65.377162], - [-13.670684, 65.376919], - [-13.671699, 65.376806], - [-13.672874, 65.376624], - [-13.674248, 65.376203], - [-13.674694, 65.375852], - [-13.674273, 65.375532], - [-13.673345, 65.375285], - [-13.673184, 65.374805], - [-13.673603, 65.37463], - [-13.674193, 65.374635], - [-13.674054, 65.374295], - [-13.673707, 65.374211], - [-13.67399, 65.374045], - [-13.674078, 65.373866], - [-13.674269, 65.373776], - [-13.674118, 65.373486], - [-13.674647, 65.373149], - [-13.674741, 65.373021], - [-13.674601, 65.37294], - [-13.67488, 65.372717], - [-13.67488, 65.372511], - [-13.67546, 65.372422], - [-13.675899, 65.372024], - [-13.67635, 65.371849], - [-13.676738, 65.371551], - [-13.677047, 65.371411], - [-13.677315, 65.371478], - [-13.678142, 65.371143], - [-13.678646, 65.370897], - [-13.678807, 65.370982], - [-13.67871, 65.371192], - [-13.679461, 65.370834], - [-13.680641, 65.370293], - [-13.681006, 65.370285], - [-13.680631, 65.370588], - [-13.68062, 65.370812], - [-13.681339, 65.370495], - [-13.68209, 65.370334], - [-13.682347, 65.37024], - [-13.683184, 65.37024], - [-13.683517, 65.370159], - [-13.683903, 65.370235], - [-13.684311, 65.370007], - [-13.684568, 65.369462], - [-13.684751, 65.369538], - [-13.684665, 65.369891], - [-13.687293, 65.36939], - [-13.688506, 65.369198], - [-13.690823, 65.368992], - [-13.693559, 65.368787], - [-13.693816, 65.368572], - [-13.69402, 65.368532], - [-13.694235, 65.368858], - [-13.695168, 65.368684], - [-13.697175, 65.368456], - [-13.69848, 65.368224], - [-13.700189, 65.367548], - [-13.702228, 65.367172], - [-13.702539, 65.366448], - [-13.702732, 65.36601], - [-13.70403, 65.365477], - [-13.704878, 65.36516], - [-13.705286, 65.365057], - [-13.705725, 65.36465], - [-13.70712, 65.364337], - [-13.707388, 65.364122], - [-13.70756, 65.364292], - [-13.707882, 65.364306], - [-13.707474, 65.363241], - [-13.707635, 65.363237], - [-13.707936, 65.363586], - [-13.707989, 65.363756], - [-13.708622, 65.363443], - [-13.708408, 65.362633], - [-13.708547, 65.362494], - [-13.708976, 65.362562], - [-13.709094, 65.362785], - [-13.709277, 65.362968], - [-13.709384, 65.362772], - [-13.709845, 65.362705], - [-13.709963, 65.362517], - [-13.709427, 65.362508], - [-13.709566, 65.362311], - [-13.710156, 65.362271], - [-13.71047, 65.36203], - [-13.710457, 65.361761], - [-13.71095, 65.361394], - [-13.711444, 65.361215], - [-13.711669, 65.361408], - [-13.713043, 65.361148], - [-13.714802, 65.360929], - [-13.71463, 65.360432], - [-13.715027, 65.360128], - [-13.716208, 65.360334], - [-13.71654, 65.360517], - [-13.716937, 65.360312], - [-13.717216, 65.360714], - [-13.718042, 65.360822], - [-13.718858, 65.360813], - [-13.718375, 65.360325], - [-13.71874, 65.360227], - [-13.718879, 65.360406], - [-13.71934, 65.360383], - [-13.719276, 65.360508], - [-13.718922, 65.360571], - [-13.719297, 65.360683], - [-13.719845, 65.360768], - [-13.720381, 65.360875], - [-13.72095, 65.36085], - [-13.720821, 65.360455], - [-13.721111, 65.360437], - [-13.72154, 65.360585], - [-13.721883, 65.360303], - [-13.722473, 65.360271], - [-13.722988, 65.360419], - [-13.723213, 65.360307], - [-13.72301, 65.35999], - [-13.723235, 65.35965], - [-13.722645, 65.359547], - [-13.722581, 65.358961], - [-13.722924, 65.358876], - [-13.722988, 65.359095], - [-13.723696, 65.358885], - [-13.7236, 65.358411], - [-13.72302, 65.35825], - [-13.723203, 65.358097], - [-13.723632, 65.358062], - [-13.724072, 65.358343], - [-13.724147, 65.358536], - [-13.724673, 65.358303], - [-13.726893, 65.35829], - [-13.727108, 65.358129], - [-13.727097, 65.357811], - [-13.727741, 65.357561], - [-13.728192, 65.357887], - [-13.728535, 65.357386], - [-13.729039, 65.357288], - [-13.729393, 65.35744], - [-13.729576, 65.357587], - [-13.730069, 65.35748], - [-13.730348, 65.357704], - [-13.733459, 65.358402], - [-13.734983, 65.358518], - [-13.735358, 65.358138], - [-13.735638, 65.358335], - [-13.736131, 65.358728], - [-13.737751, 65.359019], - [-13.738137, 65.358478], - [-13.738856, 65.358549], - [-13.739017, 65.358742], - [-13.739521, 65.358889], - [-13.73941, 65.35921], - [-13.740648, 65.359471], - [-13.74289, 65.360173], - [-13.743148, 65.35994], - [-13.744017, 65.360097], - [-13.74425, 65.36053], - [-13.744982, 65.360965], - [-13.745497, 65.361094], - [-13.746098, 65.361103], - [-13.746398, 65.360848], - [-13.747568, 65.36083], - [-13.74745, 65.361269], - [-13.748104, 65.361587], - [-13.748501, 65.361595], - [-13.748684, 65.361421], - [-13.749102, 65.361891], - [-13.749531, 65.362222], - [-13.750304, 65.362441], - [-13.751108, 65.362588], - [-13.752074, 65.362597], - [-13.753394, 65.362369], - [-13.75466, 65.36224], - [-13.755442, 65.362009], - [-13.756194, 65.361788], - [-13.755808, 65.361367], - [-13.756966, 65.361403], - [-13.756258, 65.36113], - [-13.756559, 65.36101], - [-13.757911, 65.361233], - [-13.758758, 65.361582], - [-13.762545, 65.361994], - [-13.764595, 65.362356], - [-13.767384, 65.362731], - [-13.769444, 65.362682], - [-13.771558, 65.362494], - [-13.772598, 65.362244], - [-13.772545, 65.36202], - [-13.772663, 65.361734], - [-13.772963, 65.361546], - [-13.77359, 65.36205], - [-13.774433, 65.362052], - [-13.776911, 65.362159], - [-13.777759, 65.361962], - [-13.778295, 65.361591], - [-13.778789, 65.361587], - [-13.77924, 65.361788], - [-13.780108, 65.361689], - [-13.780345, 65.361412], - [-13.780774, 65.361112], - [-13.781707, 65.361247], - [-13.782372, 65.36181], - [-13.783467, 65.361827], - [-13.783692, 65.361663], - [-13.783563, 65.361484], - [-13.784293, 65.361148], - [-13.785784, 65.361242], - [-13.786546, 65.360875], - [-13.788037, 65.360951], - [-13.788134, 65.361282], - [-13.794524, 65.361267], - [-13.801155, 65.361707], - [-13.802348, 65.361515], - [-13.803268, 65.36188], - [-13.804126, 65.361848], - [-13.804491, 65.361495], - [-13.805064, 65.361567], - [-13.805753, 65.362118], - [-13.806808, 65.362381], - [-13.807902, 65.362376], - [-13.808159, 65.361941], - [-13.810148, 65.362576], - [-13.811156, 65.362693], - [-13.812767, 65.362799], - [-13.813209, 65.362469], - [-13.816271, 65.362984], - [-13.816668, 65.363244], - [-13.817708, 65.363274], - [-13.818353, 65.362846], - [-13.818787, 65.362812], - [-13.81979, 65.363038], - [-13.820702, 65.363367], - [-13.821161, 65.363173], - [-13.821683, 65.363442], - [-13.8217, 65.363553], - [-13.82207, 65.363569], - [-13.822207, 65.363416], - [-13.82258, 65.363452], - [-13.822603, 65.363605], - [-13.822914, 65.363778], - [-13.824457, 65.364112], - [-13.82612, 65.364183], - [-13.828834, 65.364754], - [-13.83053, 65.36472], - [-13.831104, 65.364766], - [-13.831996, 65.36523], - [-13.83944, 65.365301], - [-13.84644, 65.36351], - [-13.84735, 65.36365], - [-13.84703, 65.36416], - [-13.853919, 65.363766], - [-13.856824, 65.36292], - [-13.858139, 65.36231], - [-13.85383, 65.36268], - [-13.85512, 65.36115], - [-13.85268, 65.36114], - [-13.85208, 65.36036], - [-13.85457, 65.35987], - [-13.85514, 65.36051], - [-13.859626, 65.359354], - [-13.859657, 65.359116], - [-13.855221, 65.359273], - [-13.85462, 65.35859], - [-13.852611, 65.358814], - [-13.852651, 65.358671], - [-13.85278, 65.35858], - [-13.85166, 65.35652], - [-13.85042, 65.35651], - [-13.849065, 65.35622], - [-13.84824, 65.355585], - [-13.847832, 65.354646], - [-13.847539, 65.354261], - [-13.846859, 65.354012], - [-13.84566, 65.35342], - [-13.84262, 65.35274], - [-13.840929, 65.352443], - [-13.839204, 65.352035], - [-13.82866, 65.34995], - [-13.828388, 65.349842], - [-13.827648, 65.349716], - [-13.82745, 65.34969], - [-13.823507, 65.348349], - [-13.82166, 65.34853], - [-13.820981, 65.34796], - [-13.81946, 65.347678], - [-13.818948, 65.347471], - [-13.818452, 65.347512], - [-13.817623, 65.347352], - [-13.81654, 65.34704], - [-13.816037, 65.347003], - [-13.812321, 65.346705], - [-13.810488, 65.346248], - [-13.809955, 65.346535], - [-13.804979, 65.346148], - [-13.803247, 65.345867], - [-13.802963, 65.345501], - [-13.801857, 65.345446], - [-13.800572, 65.345643], - [-13.797139, 65.345301], - [-13.796568, 65.344845], - [-13.79275, 65.34494], - [-13.791305, 65.344777], - [-13.79091, 65.34505], - [-13.78968, 65.34517], - [-13.78786, 65.34477], - [-13.78727, 65.34425], - [-13.78177, 65.34408], - [-13.78057, 65.34356], - [-13.77508, 65.34313], - [-13.774004, 65.342388], - [-13.767412, 65.341231], - [-13.75498, 65.34092], - [-13.753412, 65.340374], - [-13.74894, 65.33908], - [-13.74657, 65.33753], - [-13.74251, 65.336986], - [-13.740515, 65.337363], - [-13.739506, 65.336825], - [-13.738112, 65.336288], - [-13.737425, 65.336861], - [-13.736781, 65.336852], - [-13.735773, 65.336324], - [-13.734543, 65.336785], - [-13.73412, 65.336673], - [-13.734249, 65.336127], - [-13.732297, 65.336064], - [-13.731867, 65.336395], - [-13.731043, 65.33632], - [-13.73073, 65.335903], - [-13.729421, 65.336091], - [-13.728713, 65.33567], - [-13.72764, 65.33601], - [-13.727705, 65.33507], - [-13.727383, 65.334828], - [-13.72676, 65.335616], - [-13.725108, 65.335319], - [-13.725085, 65.333922], - [-13.723811, 65.333907], - [-13.723316, 65.33363], - [-13.72289, 65.33349], - [-13.721117, 65.333818], - [-13.720173, 65.333763], - [-13.720259, 65.333293], - [-13.720023, 65.333037], - [-13.720098, 65.332751], - [-13.721227, 65.33263], - [-13.721719, 65.332581], - [-13.72295, 65.33221], - [-13.72301, 65.3311], - [-13.72283, 65.32838], - [-13.722769, 65.327682], - [-13.723147, 65.327422], - [-13.723413, 65.326347], - [-13.724035, 65.326374], - [-13.724078, 65.326786], - [-13.724572, 65.326974], - [-13.72558, 65.326696], - [-13.726557, 65.325643], - [-13.727833, 65.32495], - [-13.728305, 65.325344], - [-13.730267, 65.325442], - [-13.730723, 65.324906], - [-13.730923, 65.324278], - [-13.731352, 65.323633], - [-13.731481, 65.32331], - [-13.731824, 65.32383], - [-13.732318, 65.323902], - [-13.73445, 65.32208], - [-13.73568, 65.32197], - [-13.739214, 65.319502], - [-13.741588, 65.319321], - [-13.742658, 65.318166], - [-13.74339, 65.317899], - [-13.743648, 65.318123], - [-13.744678, 65.318212], - [-13.746539, 65.317935], - [-13.74694, 65.31681], - [-13.747688, 65.316551], - [-13.748743, 65.316077], - [-13.749948, 65.314876], - [-13.752127, 65.314155], - [-13.75378, 65.31444], - [-13.75623, 65.31433], - [-13.756616, 65.313609], - [-13.759345, 65.313361], - [-13.76244, 65.31234], - [-13.76315, 65.3103], - [-13.76437, 65.31032], - [-13.76441, 65.30954], - [-13.7678, 65.30906], - [-13.76814, 65.30829], - [-13.769934, 65.307781], - [-13.771758, 65.308192], - [-13.774207, 65.308218], - [-13.776205, 65.307726], - [-13.777414, 65.307743], - [-13.779063, 65.307914], - [-13.779955, 65.307815], - [-13.780262, 65.307678], - [-13.780908, 65.307747], - [-13.781328, 65.307524], - [-13.781687, 65.307678], - [-13.7835, 65.308286], - [-13.784791, 65.308282], - [-13.784873, 65.308068], - [-13.78517, 65.308141], - [-13.785652, 65.30841], - [-13.785785, 65.308235], - [-13.786, 65.308132], - [-13.78641, 65.308248], - [-13.787476, 65.308329], - [-13.788429, 65.30838], - [-13.788828, 65.307961], - [-13.789617, 65.308072], - [-13.791349, 65.308248], - [-13.794883, 65.308216], - [-13.794914, 65.307935], - [-13.796308, 65.307802], - [-13.79723, 65.307974], - [-13.798019, 65.307828], - [-13.799136, 65.308111], - [-13.801636, 65.308205], - [-13.80348, 65.308055], - [-13.805427, 65.308624], - [-13.807292, 65.308569], - [-13.807835, 65.308423], - [-13.809177, 65.30862], - [-13.812917, 65.308552], - [-13.814331, 65.308397], - [-13.816022, 65.308693], - [-13.818378, 65.308898], - [-13.819977, 65.309176], - [-13.821442, 65.309206], - [-13.824157, 65.309639], - [-13.824537, 65.309557], - [-13.825387, 65.309686], - [-13.826299, 65.309664], - [-13.828246, 65.30984], - [-13.828656, 65.309759], - [-13.832713, 65.309926], - [-13.83385, 65.310264], - [-13.835346, 65.310362], - [-13.837099, 65.310332], - [-13.84005, 65.310482], - [-13.846115, 65.310829], - [-13.849466, 65.310529], - [-13.850747, 65.310426], - [-13.851669, 65.310229], - [-13.85255, 65.31011], - [-13.853175, 65.309913], - [-13.857325, 65.309442], - [-13.863995, 65.309044], - [-13.864508, 65.309057], - [-13.865614, 65.308667], - [-13.86671, 65.308509], - [-13.867969, 65.308391], - [-13.868876, 65.308098], - [-13.87019, 65.307763], - [-13.871333, 65.307394], - [-13.872238, 65.307258], - [-13.873718, 65.306845], - [-13.874264, 65.306795], - [-13.875199, 65.306551], - [-13.875889, 65.306285], - [-13.876365, 65.306192], - [-13.876887, 65.306022], - [-13.877996, 65.305389], - [-13.881967, 65.304549], - [-13.883248, 65.304421], - [-13.885605, 65.303659], - [-13.885769, 65.303475], - [-13.88748, 65.302546], - [-13.888566, 65.302212], - [-13.890093, 65.301565], - [-13.891589, 65.30088], - [-13.892767, 65.300405], - [-13.893361, 65.299891], - [-13.894498, 65.299399], - [-13.896138, 65.2988], - [-13.897224, 65.298427], - [-13.898023, 65.298046], - [-13.898259, 65.297755], - [-13.899027, 65.297673], - [-13.898945, 65.297519], - [-13.901589, 65.296479], - [-13.901517, 65.296325], - [-13.901999, 65.296346], - [-13.90206, 65.29614], - [-13.903177, 65.295759], - [-13.903464, 65.295798], - [-13.903915, 65.295511], - [-13.904191, 65.295609], - [-13.904376, 65.2954], - [-13.905093, 65.295108], - [-13.905165, 65.295507], - [-13.905544, 65.295515], - [-13.905933, 65.295155], - [-13.906446, 65.295027], - [-13.90661, 65.295091], - [-13.906845, 65.294894], - [-13.907696, 65.294577], - [-13.908187, 65.294586], - [-13.909274, 65.2942], - [-13.911077, 65.293631], - [-13.913587, 65.29304], - [-13.915715, 65.292263], - [-13.917587, 65.291872], - [-13.922618, 65.290821], - [-13.926242, 65.290506], - [-13.933487, 65.288956], - [-13.940443, 65.288774], - [-13.944703, 65.288047], - [-13.946239, 65.288047], - [-13.949931, 65.28723], - [-13.951145, 65.287203], - [-13.952122, 65.286969], - [-13.95415, 65.287247], - [-13.957947, 65.286981], - [-13.959296, 65.286876], - [-13.960328, 65.286715], - [-13.961088, 65.286469], - [-13.961328, 65.286454], - [-13.961978, 65.286107], - [-13.962209, 65.286136], - [-13.962568, 65.285967], - [-13.962903, 65.285698], - [-13.963816, 65.285588], - [-13.964452, 65.285597], - [-13.964695, 65.285593], - [-13.965201, 65.285605], - [-13.966676, 65.285802], - [-13.970221, 65.285536], - [-13.972107, 65.284902], - [-13.972455, 65.284294], - [-13.971963, 65.284191], - [-13.972296, 65.283647], - [-13.973051, 65.283343], - [-13.97414, 65.28304], - [-13.978866, 65.283336], - [-13.988747, 65.280478], - [-13.988827, 65.280455], - [-13.989104, 65.280458], - [-13.989477, 65.280353], - [-13.989796, 65.280263], - [-13.990085, 65.280216], - [-13.991018, 65.279956], - [-13.991373, 65.279848], - [-13.991934, 65.279757], - [-13.992343, 65.279608], - [-13.992738, 65.279467], - [-13.993136, 65.279316], - [-13.993565, 65.279217], - [-13.994164, 65.279105], - [-13.994612, 65.279045], - [-13.995007, 65.278937], - [-13.9955, 65.278751], - [-13.995862, 65.278604], - [-13.996418, 65.27845], - [-13.997855, 65.278178], - [-13.999012, 65.277908], - [-13.999784, 65.277656], - [-14.000523, 65.277411], - [-14.00091, 65.277279], - [-14.001192, 65.277153], - [-14.001726, 65.276972], - [-14.002269, 65.276762], - [-14.002608, 65.276691], - [-14.003404, 65.276307], - [-14.003626, 65.276225], - [-14.00405, 65.276038], - [-14.004243, 65.275917], - [-14.00471, 65.275686], - [-14.004998, 65.275574], - [-14.005093, 65.275495], - [-14.005342, 65.275321], - [-14.005655, 65.275169], - [-14.00645, 65.274787], - [-14.00665, 65.274635], - [-14.00671, 65.274479], - [-14.006865, 65.274352], - [-14.007039, 65.274252], - [-14.007134, 65.274197], - [-14.007166, 65.274084], - [-14.007268, 65.273997], - [-14.007393, 65.27396], - [-14.007493, 65.273882], - [-14.007545, 65.273798], - [-14.007457, 65.273387], - [-14.007555, 65.27324], - [-14.007572, 65.273098], - [-14.007769, 65.272773], - [-14.00778, 65.272671], - [-14.007845, 65.272506], - [-14.007715, 65.272471], - [-14.007376, 65.272427], - [-14.007449, 65.272149], - [-14.007832, 65.272136], - [-14.007864, 65.272053], - [-14.008009, 65.272018], - [-14.008154, 65.27196], - [-14.008358, 65.271882], - [-14.008464, 65.271795], - [-14.008537, 65.271652], - [-14.008806, 65.271388], - [-14.009154, 65.271113], - [-14.009214, 65.270959], - [-14.009384, 65.270869], - [-14.009859, 65.270627], - [-14.010121, 65.270335], - [-14.010239, 65.270081], - [-14.010217, 65.26989], - [-14.010226, 65.269621], - [-14.010027, 65.269617], - [-14.010015, 65.269496], - [-14.00994, 65.269456], - [-14.01011, 65.268988], - [-14.010141, 65.268903], - [-14.010179, 65.268708], - [-14.010163, 65.268626], - [-14.010236, 65.268582], - [-14.010348, 65.268514], - [-14.01048, 65.268395], - [-14.010557, 65.268157], - [-14.01056, 65.267888], - [-14.010657, 65.267727], - [-14.010782, 65.267446], - [-14.010813, 65.267362], - [-14.010927, 65.26729], - [-14.010966, 65.26714], - [-14.011042, 65.266802], - [-14.011074, 65.266735], - [-14.011158, 65.266552], - [-14.011189, 65.266515], - [-14.011223, 65.266471], - [-14.011236, 65.266422], - [-14.011406, 65.266091], - [-14.011353, 65.265809], - [-14.011256, 65.26555], - [-14.011138, 65.265464], - [-14.011035, 65.265244], - [-14.010885, 65.265195], - [-14.010775, 65.265092], - [-14.01067, 65.264992], - [-14.010387, 65.264933], - [-14.010203, 65.26484], - [-14.009589, 65.264965], - [-14.009194, 65.264993], - [-14.008884, 65.265075], - [-14.008578, 65.26507], - [-14.008433, 65.265022], - [-14.008488, 65.264984], - [-14.008599, 65.264955], - [-14.008773, 65.264917], - [-14.009226, 65.264762], - [-14.009091, 65.264717], - [-14.009241, 65.264591], - [-14.009451, 65.264645], - [-14.010203, 65.26422], - [-14.010134, 65.264179], - [-14.010316, 65.264101], - [-14.010187, 65.264045], - [-14.010004, 65.264118], - [-14.0099, 65.264083], - [-14.009608, 65.264143], - [-14.009313, 65.264261], - [-14.008355, 65.264522], - [-14.008142, 65.264629], - [-14.008062, 65.264697], - [-14.007966, 65.264755], - [-14.007844, 65.264818], - [-14.007641, 65.264739], - [-14.007308, 65.264645], - [-14.006975, 65.26455], - [-14.006391, 65.264414], - [-14.005913, 65.264194], - [-14.00582, 65.264203], - [-14.005475, 65.264054], - [-14.005363, 65.263979], - [-14.005377, 65.263919], - [-14.007454, 65.263366], - [-14.008114, 65.2632], - [-14.007781, 65.263003], - [-14.007888, 65.262973], - [-14.007522, 65.262742], - [-14.007184, 65.262563], - [-14.006095, 65.26275], - [-14.005985, 65.262755], - [-14.005927, 65.262733], - [-14.005848, 65.262632], - [-14.005837, 65.262597], - [-14.005829, 65.26253], - [-14.005918, 65.262476], - [-14.006672, 65.262333], - [-14.006785, 65.262263], - [-14.006804, 65.262187], - [-14.006757, 65.262108], - [-14.006263, 65.26188], - [-14.006141, 65.261786], - [-14.005678, 65.261611], - [-14.005433, 65.261598], - [-14.0053, 65.261599], - [-14.005216, 65.261548], - [-14.005406, 65.261514], - [-14.006166, 65.261477], - [-14.007417, 65.261862], - [-14.007572, 65.261872], - [-14.009164, 65.261354], - [-14.009435, 65.26121], - [-14.009413, 65.261056], - [-14.009065, 65.26064], - [-14.008733, 65.260312], - [-14.007901, 65.260301], - [-14.007456, 65.260549], - [-14.006992, 65.260628], - [-14.006305, 65.2607], - [-14.00493, 65.261162], - [-14.00427, 65.261397], - [-14.003835, 65.26143], - [-14.003344, 65.261436], - [-14.002934, 65.261452], - [-14.002708, 65.261509], - [-14.002664, 65.26159], - [-14.002665, 65.261713], - [-14.002968, 65.262001], - [-14.003545, 65.262354], - [-14.003829, 65.262508], - [-14.0038, 65.26273], - [-14.003977, 65.262747], - [-14.004325, 65.262745], - [-14.004677, 65.262725], - [-14.005061, 65.262667], - [-14.005185, 65.262669], - [-14.005283, 65.262711], - [-14.005343, 65.262815], - [-14.00533, 65.26285], - [-14.005192, 65.2629], - [-14.004948, 65.263003], - [-14.004697, 65.263201], - [-14.004384, 65.263331], - [-14.004239, 65.263347], - [-14.00426, 65.263458], - [-14.004108, 65.263452], - [-14.003833, 65.263519], - [-14.003743, 65.263453], - [-14.003636, 65.263383], - [-14.003484, 65.263285], - [-14.003434, 65.263254], - [-14.002545, 65.263494], - [-14.000413, 65.264075], - [-14.000138, 65.263908], - [-13.999765, 65.264024], - [-13.999482, 65.264085], - [-13.999126, 65.264137], - [-13.998792, 65.26413], - [-13.998341, 65.264056], - [-13.998261, 65.264078], - [-13.998213, 65.264097], - [-13.998345, 65.264188], - [-13.998361, 65.264253], - [-13.998247, 65.26429], - [-13.998111, 65.264305], - [-13.997972, 65.264354], - [-13.997854, 65.264413], - [-13.997553, 65.26457], - [-13.997371, 65.264677], - [-13.99725, 65.264696], - [-13.997111, 65.264683], - [-13.996062, 65.264498], - [-13.995909, 65.264463], - [-13.995802, 65.264436], - [-13.99577, 65.264395], - [-13.995791, 65.264368], - [-13.995866, 65.264341], - [-13.995984, 65.264341], - [-13.996145, 65.264373], - [-13.996852, 65.264515], - [-13.997014, 65.264534], - [-13.997132, 65.264534], - [-13.997281, 65.264508], - [-13.997486, 65.264427], - [-13.997797, 65.264243], - [-13.997829, 65.26418], - [-13.997776, 65.264117], - [-13.997583, 65.263982], - [-13.997186, 65.263852], - [-13.996967, 65.263809], - [-13.996837, 65.263794], - [-13.996493, 65.263818], - [-13.996328, 65.263882], - [-13.996072, 65.263993], - [-13.995933, 65.264039], - [-13.994969, 65.264497], - [-13.994798, 65.264518], - [-13.994863, 65.264585], - [-13.994979, 65.264631], - [-13.99494, 65.264695], - [-13.994676, 65.26484], - [-13.994492, 65.264867], - [-13.99431, 65.264807], - [-13.994005, 65.26491], - [-13.993748, 65.265141], - [-13.993659, 65.265255], - [-13.993455, 65.265242], - [-13.993276, 65.265244], - [-13.993147, 65.265324], - [-13.993175, 65.265427], - [-13.993248, 65.265528], - [-13.993756, 65.26553], - [-13.993181, 65.265979], - [-13.992965, 65.265946], - [-13.992794, 65.266051], - [-13.992905, 65.266117], - [-13.992465, 65.26642], - [-13.992183, 65.266347], - [-13.991989, 65.266465], - [-13.992137, 65.266521], - [-13.991461, 65.266991], - [-13.991209, 65.266958], - [-13.990931, 65.267105], - [-13.990789, 65.267269], - [-13.990842, 65.267363], - [-13.990923, 65.267412], - [-13.990758, 65.267489], - [-13.990609, 65.267519], - [-13.990298, 65.267643], - [-13.99011, 65.267694], - [-13.990328, 65.267706], - [-13.989442, 65.268072], - [-13.989346, 65.267887], - [-13.989069, 65.267934], - [-13.988855, 65.268188], - [-13.988541, 65.268549], - [-13.988759, 65.268739], - [-13.988593, 65.269117], - [-13.987059, 65.269734], - [-13.986878, 65.269692], - [-13.986547, 65.269793], - [-13.986611, 65.269844], - [-13.985675, 65.270324], - [-13.985519, 65.270343], - [-13.985238, 65.270492], - [-13.985035, 65.270502], - [-13.983455, 65.27141], - [-13.983408, 65.271531], - [-13.983144, 65.271678], - [-13.98271, 65.2717], - [-13.982268, 65.271829], - [-13.982265, 65.271906], - [-13.981189, 65.27223], - [-13.980993, 65.272189], - [-13.97888, 65.272744], - [-13.978612, 65.272909], - [-13.978279, 65.272986], - [-13.978269, 65.273075], - [-13.977792, 65.273122], - [-13.977659, 65.273095], - [-13.977443, 65.27321], - [-13.976035, 65.273333], - [-13.97567, 65.273352], - [-13.975102, 65.273552], - [-13.974264, 65.273579], - [-13.973568, 65.273617], - [-13.969991, 65.274779], - [-13.968381, 65.274905], - [-13.967796, 65.27505], - [-13.966999, 65.275248], - [-13.96539, 65.275569], - [-13.963773, 65.276391], - [-13.962593, 65.2767], - [-13.961628, 65.2771], - [-13.95892, 65.27751], - [-13.95708, 65.27801], - [-13.953688, 65.278105], - [-13.9491, 65.27871], - [-13.94724, 65.27947], - [-13.939825, 65.280547], - [-13.93133, 65.28013], - [-13.92887, 65.28037], - [-13.909103, 65.28063], - [-13.90807, 65.28124], - [-13.89887, 65.28206], - [-13.897927, 65.282186], - [-13.89763, 65.28244], - [-13.887145, 65.285219], - [-13.885539, 65.285751], - [-13.884806, 65.286246], - [-13.884247, 65.286452], - [-13.884026, 65.28684], - [-13.883921, 65.287415], - [-13.88273, 65.28821], - [-13.882507, 65.288222], - [-13.880488, 65.288641], - [-13.879952, 65.288656], - [-13.878895, 65.288686], - [-13.878422, 65.288462], - [-13.878345, 65.288194], - [-13.877019, 65.287899], - [-13.876452, 65.28786], - [-13.876012, 65.287916], - [-13.875593, 65.288017], - [-13.875553, 65.288123], - [-13.875438, 65.288121], - [-13.875449, 65.28805], - [-13.875095, 65.288076], - [-13.873118, 65.288782], - [-13.872704, 65.288919], - [-13.8723, 65.289026], - [-13.871493, 65.289049], - [-13.871219, 65.28906], - [-13.870892, 65.289127], - [-13.869365, 65.289865], - [-13.868745, 65.289948], - [-13.868438, 65.290047], - [-13.866429, 65.290449], - [-13.86422, 65.291045], - [-13.86075, 65.2917], - [-13.859801, 65.291932], - [-13.859359, 65.29208], - [-13.858806, 65.292154], - [-13.858265, 65.292179], - [-13.856701, 65.292422], - [-13.854856, 65.292401], - [-13.85237, 65.292809], - [-13.84964, 65.293022], - [-13.848331, 65.29325], - [-13.847051, 65.293398], - [-13.844356, 65.292984], - [-13.84218, 65.2929], - [-13.839587, 65.293362], - [-13.833747, 65.293328], - [-13.830009, 65.293961], - [-13.82624, 65.293732], - [-13.824892, 65.293482], - [-13.823165, 65.293101], - [-13.81835, 65.29322], - [-13.81741, 65.293203], - [-13.816761, 65.293051], - [-13.816617, 65.292775], - [-13.816815, 65.292623], - [-13.816885, 65.29251], - [-13.816171, 65.292499], - [-13.815656, 65.292492], - [-13.815678, 65.292616], - [-13.815817, 65.29284], - [-13.815391, 65.293004], - [-13.810528, 65.292463], - [-13.808924, 65.292575], - [-13.806714, 65.292423], - [-13.804836, 65.292138], - [-13.80374, 65.2917], - [-13.802992, 65.291408], - [-13.801891, 65.291127], - [-13.80195, 65.29092], - [-13.801341, 65.290645], - [-13.80075, 65.2904], - [-13.798237, 65.290406], - [-13.79768, 65.29063], - [-13.79646, 65.29062], - [-13.796179, 65.2902], - [-13.795346, 65.289975], - [-13.794882, 65.289568], - [-13.794354, 65.289248], - [-13.794126, 65.289265], - [-13.793842, 65.289283], - [-13.793651, 65.28923], - [-13.793684, 65.288938], - [-13.793552, 65.288855], - [-13.793316, 65.288812], - [-13.793151, 65.288626], - [-13.792624, 65.288704], - [-13.792222, 65.288861], - [-13.79167, 65.28879], - [-13.791578, 65.288559], - [-13.791203, 65.288489], - [-13.790376, 65.288346], - [-13.789695, 65.288451], - [-13.789143, 65.288463], - [-13.78684, 65.2882], - [-13.785613, 65.28833], - [-13.784786, 65.288134], - [-13.784537, 65.28772], - [-13.78317, 65.28732], - [-13.782008, 65.287287], - [-13.78133, 65.28743], - [-13.781461, 65.287583], - [-13.781182, 65.287695], - [-13.780764, 65.287716], - [-13.779755, 65.287704], - [-13.778432, 65.287611], - [-13.777847, 65.287071], - [-13.77694, 65.286768], - [-13.77592, 65.28559], - [-13.773631, 65.285188], - [-13.772998, 65.285046], - [-13.772625, 65.285058], - [-13.771483, 65.285077], - [-13.770911, 65.285218], - [-13.770665, 65.2852], - [-13.770649, 65.285092], - [-13.770375, 65.285027], - [-13.769791, 65.285123], - [-13.769529, 65.285052], - [-13.769421, 65.284865], - [-13.76908, 65.284815], - [-13.768468, 65.285147], - [-13.767818, 65.285324], - [-13.765367, 65.284792], - [-13.763676, 65.284625], - [-13.762449, 65.284488], - [-13.761154, 65.284442], - [-13.760161, 65.284605], - [-13.759676, 65.284709], - [-13.759056, 65.284841], - [-13.758104, 65.284799], - [-13.757873, 65.28475], - [-13.757536, 65.28477], - [-13.757171, 65.284822], - [-13.756952, 65.284926], - [-13.756683, 65.285024], - [-13.756261, 65.285325], - [-13.756425, 65.285755], - [-13.75574, 65.28594], - [-13.755165, 65.285814], - [-13.754456, 65.285706], - [-13.752694, 65.285511], - [-13.750527, 65.285924], - [-13.748424, 65.285852], - [-13.746128, 65.28613], - [-13.743746, 65.286172], - [-13.74349, 65.28661], - [-13.74164, 65.28697], - [-13.74044, 65.28645], - [-13.739476, 65.286283], - [-13.738296, 65.286408], - [-13.736536, 65.286665], - [-13.736, 65.286391], - [-13.735987, 65.286039], - [-13.734406, 65.286018], - [-13.73312, 65.28601], - [-13.732141, 65.28576], - [-13.729584, 65.285556], - [-13.727047, 65.28555], - [-13.723793, 65.285577], - [-13.72276, 65.28554], - [-13.721216, 65.285583], - [-13.719496, 65.285775], - [-13.718405, 65.286292], - [-13.718221, 65.287033], - [-13.7184, 65.28742], - [-13.71712, 65.28843], - [-13.716544, 65.288694], - [-13.71585, 65.28944], - [-13.71463, 65.28943], - [-13.71431, 65.289563], - [-13.7134, 65.28968], - [-13.713064, 65.29015], - [-13.710374, 65.290734], - [-13.710028, 65.291099], - [-13.710146, 65.291462], - [-13.709953, 65.291799], - [-13.709021, 65.292837], - [-13.708569, 65.293108], - [-13.707818, 65.293265], - [-13.707299, 65.293538], - [-13.707046, 65.294722], - [-13.707067, 65.295296], - [-13.707303, 65.295467], - [-13.707156, 65.295962], - [-13.706355, 65.296067], - [-13.705593, 65.295928], - [-13.705089, 65.296315], - [-13.704301, 65.297468], - [-13.702902, 65.297333], - [-13.702151, 65.297284], - [-13.701968, 65.297571], - [-13.701507, 65.297566], - [-13.70126, 65.297338], - [-13.701014, 65.297406], - [-13.700627, 65.297802], - [-13.70014, 65.29826], - [-13.699307, 65.298342], - [-13.69858, 65.298195], - [-13.697998, 65.29792], - [-13.697301, 65.297763], - [-13.696915, 65.298378], - [-13.696497, 65.298396], - [-13.696819, 65.297452], - [-13.694855, 65.297562], - [-13.693492, 65.297252], - [-13.693364, 65.297979], - [-13.693074, 65.298171], - [-13.692677, 65.298212], - [-13.69224, 65.29742], - [-13.691691, 65.29708], - [-13.691169, 65.296792], - [-13.691132, 65.296409], - [-13.69169, 65.29614], - [-13.68681, 65.29584], - [-13.684973, 65.295487], - [-13.684719, 65.295292], - [-13.6843, 65.295166], - [-13.682949, 65.294969], - [-13.680104, 65.294925], - [-13.678042, 65.294405], - [-13.676224, 65.294313], - [-13.673585, 65.294475], - [-13.672048, 65.294207], - [-13.670282, 65.294018], - [-13.668905, 65.293579], - [-13.66779, 65.29307], - [-13.665298, 65.292426], - [-13.660297, 65.292051], - [-13.656699, 65.292259], - [-13.655431, 65.291287], - [-13.652951, 65.290825], - [-13.650971, 65.290606], - [-13.648116, 65.290145], - [-13.645803, 65.289579], - [-13.645301, 65.289713], - [-13.644904, 65.289758], - [-13.644743, 65.289628], - [-13.644818, 65.289193], - [-13.644713, 65.289006], - [-13.642325, 65.288261], - [-13.639743, 65.288221], - [-13.637789, 65.287647], - [-13.636341, 65.287013], - [-13.635142, 65.286347], - [-13.633549, 65.285964], - [-13.632746, 65.285484], - [-13.632975, 65.284856], - [-13.63171, 65.2842], - [-13.630066, 65.283834], - [-13.62747, 65.28377], - [-13.625582, 65.283876], - [-13.623004, 65.284785], - [-13.622738, 65.284977], - [-13.622878, 65.285694], - [-13.622637, 65.285881], - [-13.62073, 65.28553], - [-13.618874, 65.284473], - [-13.619241, 65.284093], - [-13.619842, 65.28381], - [-13.620088, 65.28346], - [-13.620054, 65.282931], - [-13.61952, 65.28215], - [-13.618841, 65.281577], - [-13.619117, 65.280812], - [-13.618308, 65.280464], - [-13.615139, 65.28009], - [-13.613512, 65.280068], - [-13.612321, 65.280049], - [-13.607031, 65.279885], - [-13.603643, 65.279331], - [-13.601872, 65.279109], - [-13.60091, 65.27896], - [-13.599478, 65.278229], - [-13.598749, 65.278014], - [-13.597883, 65.277938], - [-13.597429, 65.278058], - [-13.597095, 65.27835], - [-13.596206, 65.278027], - [-13.595636, 65.277708], - [-13.59518, 65.27763], - [-13.59486, 65.27788], - [-13.593277, 65.278139], - [-13.592944, 65.278574], - [-13.592655, 65.278476], - [-13.592676, 65.278171], - [-13.592259, 65.2782], - [-13.591625, 65.277978], - [-13.591528, 65.277426], - [-13.590541, 65.277538], - [-13.590112, 65.277206], - [-13.590133, 65.276829], - [-13.589393, 65.276308], - [-13.589211, 65.276003], - [-13.588428, 65.275613], - [-13.58891, 65.275348], - [-13.588985, 65.275236], - [-13.588621, 65.275052], - [-13.587666, 65.274527], - [-13.586991, 65.274419], - [-13.586668, 65.274141], - [-13.58591, 65.27396], - [-13.586132, 65.273365], - [-13.585091, 65.272997], - [-13.584222, 65.272979], - [-13.582538, 65.273401], - [-13.582593, 65.273938], - [-13.58163, 65.27392], - [-13.58047, 65.27288], - [-13.57925, 65.27287], - [-13.57869, 65.27184], - [-13.57445, 65.2713], - [-13.57561, 65.27232], - [-13.573847, 65.272542], - [-13.572421, 65.2711], - [-13.572564, 65.270596], - [-13.572446, 65.270568], - [-13.572326, 65.27055], - [-13.572241, 65.270511], - [-13.572166, 65.270453], - [-13.572076, 65.270394], - [-13.571979, 65.270352], - [-13.571959, 65.270258], - [-13.572032, 65.270149], - [-13.572144, 65.270072], - [-13.572192, 65.270044], - [-13.572211, 65.269991], - [-13.572273, 65.269921], - [-13.572315, 65.26985], - [-13.57236, 65.269801], - [-13.572407, 65.269723], - [-13.572534, 65.269728], - [-13.572664, 65.269724], - [-13.572862, 65.269752], - [-13.572689, 65.269683], - [-13.57253, 65.269651], - [-13.572508, 65.269625], - [-13.572486, 65.269569], - [-13.572539, 65.269503], - [-13.57251, 65.269467], - [-13.572526, 65.269409], - [-13.572504, 65.269378], - [-13.572539, 65.269334], - [-13.5726, 65.269286], - [-13.572668, 65.269254], - [-13.57267, 65.26917], - [-13.572732, 65.268977], - [-13.572747, 65.268876], - [-13.572764, 65.268846], - [-13.572814, 65.268825], - [-13.57294, 65.268784], - [-13.572916, 65.268756], - [-13.572919, 65.268711], - [-13.572917, 65.268665], - [-13.572982, 65.268628], - [-13.572988, 65.268585], - [-13.573005, 65.268535], - [-13.573069, 65.268485], - [-13.573115, 65.26843], - [-13.573238, 65.268352], - [-13.573269, 65.268429], - [-13.573259, 65.268534], - [-13.573305, 65.268597], - [-13.573316, 65.268645], - [-13.573293, 65.268677], - [-13.573256, 65.268718], - [-13.573287, 65.268747], - [-13.57338, 65.268773], - [-13.573468, 65.268776], - [-13.573406, 65.268685], - [-13.573448, 65.268616], - [-13.573493, 65.268564], - [-13.573558, 65.268544], - [-13.57362, 65.268541], - [-13.573674, 65.268502], - [-13.57375, 65.268474], - [-13.573934, 65.268438], - [-13.57387, 65.268375], - [-13.57388, 65.268327], - [-13.573984, 65.26826], - [-13.574125, 65.26819], - [-13.574248, 65.268091], - [-13.574369, 65.268024], - [-13.574275, 65.267961], - [-13.574326, 65.267898], - [-13.574403, 65.267847], - [-13.57449, 65.267768], - [-13.574334, 65.267727], - [-13.574211, 65.267685], - [-13.574121, 65.267658], - [-13.57414, 65.267611], - [-13.57422, 65.267576], - [-13.574297, 65.267567], - [-13.574318, 65.267583], - [-13.574369, 65.267596], - [-13.574429, 65.267593], - [-13.574399, 65.267522], - [-13.574389, 65.267494], - [-13.574505, 65.267472], - [-13.574619, 65.267434], - [-13.574801, 65.267388], - [-13.574867, 65.267332], - [-13.575016, 65.267278], - [-13.575176, 65.267297], - [-13.575351, 65.267367], - [-13.575437, 65.267381], - [-13.575512, 65.267373], - [-13.575607, 65.267332], - [-13.575722, 65.267264], - [-13.57584, 65.267189], - [-13.575956, 65.267095], - [-13.57606, 65.266991], - [-13.576218, 65.266814], - [-13.576351, 65.266712], - [-13.576471, 65.266642], - [-13.576575, 65.266599], - [-13.576577, 65.266552], - [-13.576568, 65.266465], - [-13.57657, 65.266393], - [-13.576571, 65.26635], - [-13.576496, 65.266351], - [-13.576469, 65.266305], - [-13.576527, 65.266132], - [-13.576653, 65.266071], - [-13.57669, 65.265989], - [-13.576776, 65.26594], - [-13.576903, 65.265879], - [-13.576867, 65.265825], - [-13.576861, 65.265762], - [-13.576902, 65.265674], - [-13.577013, 65.265592], - [-13.577139, 65.265434], - [-13.577152, 65.265386], - [-13.57718, 65.265325], - [-13.577191, 65.265246], - [-13.577199, 65.265143], - [-13.577197, 65.265102], - [-13.577291, 65.265058], - [-13.577389, 65.265032], - [-13.577511, 65.265038], - [-13.577621, 65.26506], - [-13.577641, 65.265103], - [-13.577653, 65.265153], - [-13.577644, 65.26519], - [-13.577716, 65.265211], - [-13.577846, 65.265249], - [-13.577818, 65.265283], - [-13.577816, 65.265375], - [-13.577846, 65.265492], - [-13.577917, 65.265595], - [-13.57799, 65.265687], - [-13.578101, 65.265758], - [-13.578398, 65.265848], - [-13.578681, 65.265914], - [-13.578919, 65.265927], - [-13.579074, 65.265918], - [-13.579145, 65.26594], - [-13.5792, 65.265888], - [-13.579276, 65.265832], - [-13.579384, 65.265753], - [-13.579535, 65.265699], - [-13.579515, 65.265675], - [-13.579499, 65.26563], - [-13.579526, 65.265598], - [-13.579651, 65.265573], - [-13.579636, 65.265516], - [-13.579636, 65.265448], - [-13.579663, 65.265394], - [-13.579743, 65.265358], - [-13.579665, 65.265302], - [-13.579562, 65.26522], - [-13.579535, 65.265167], - [-13.579469, 65.265086], - [-13.579424, 65.264993], - [-13.579478, 65.264977], - [-13.579552, 65.264968], - [-13.579559, 65.264934], - [-13.579471, 65.264907], - [-13.579369, 65.264871], - [-13.579363, 65.26482], - [-13.579452, 65.264735], - [-13.579426, 65.264698], - [-13.579413, 65.264626], - [-13.579483, 65.26456], - [-13.579501, 65.264505], - [-13.579498, 65.264422], - [-13.579605, 65.264319], - [-13.579619, 65.264266], - [-13.57971, 65.264201], - [-13.57977, 65.264154], - [-13.579833, 65.264088], - [-13.579883, 65.264019], - [-13.579946, 65.263964], - [-13.579888, 65.263883], - [-13.579956, 65.263855], - [-13.580089, 65.263862], - [-13.580213, 65.263885], - [-13.580348, 65.263911], - [-13.58054, 65.263946], - [-13.580728, 65.263933], - [-13.58087, 65.263898], - [-13.581048, 65.263829], - [-13.58115, 65.263819], - [-13.5813, 65.263744], - [-13.581411, 65.263684], - [-13.581459, 65.263661], - [-13.581527, 65.263675], - [-13.581575, 65.263721], - [-13.581585, 65.263792], - [-13.581602, 65.263816], - [-13.581666, 65.263817], - [-13.581757, 65.263803], - [-13.581787, 65.263766], - [-13.582169, 65.263831], - [-13.582392, 65.263714], - [-13.582487, 65.263559], - [-13.58275, 65.263387], - [-13.582856, 65.263127], - [-13.583204, 65.262981], - [-13.583214, 65.263189], - [-13.583151, 65.263339], - [-13.583109, 65.263409], - [-13.58352, 65.263361], - [-13.584295, 65.263198], - [-13.584595, 65.263012], - [-13.584532, 65.262695], - [-13.584237, 65.262664], - [-13.584342, 65.2625], - [-13.584711, 65.262359], - [-13.584901, 65.262187], - [-13.584606, 65.261936], - [-13.584363, 65.261636], - [-13.584329, 65.261354], - [-13.58449, 65.261216], - [-13.585165, 65.261124], - [-13.585692, 65.261261], - [-13.586208, 65.261384], - [-13.586168, 65.261511], - [-13.58644, 65.261481], - [-13.586641, 65.261556], - [-13.586967, 65.261662], - [-13.587379, 65.261618], - [-13.58768, 65.261511], - [-13.58798, 65.261371], - [-13.58798, 65.261239], - [-13.587674, 65.261287], - [-13.587168, 65.26123], - [-13.586894, 65.261128], - [-13.586936, 65.26089], - [-13.586746, 65.260559], - [-13.586662, 65.260369], - [-13.586399, 65.26019], - [-13.586251, 65.259937], - [-13.586113, 65.259588], - [-13.586124, 65.259416], - [-13.585903, 65.259054], - [-13.58604, 65.258895], - [-13.585829, 65.258556], - [-13.586029, 65.25864], - [-13.586124, 65.258807], - [-13.586419, 65.258931], - [-13.586461, 65.259063], - [-13.586598, 65.259196], - [-13.586683, 65.25946], - [-13.586809, 65.259902], - [-13.587039, 65.259657], - [-13.587326, 65.259394], - [-13.587474, 65.259121], - [-13.587593, 65.259004], - [-13.587959, 65.258851], - [-13.588043, 65.258534], - [-13.588201, 65.258534], - [-13.588328, 65.258648], - [-13.588475, 65.258499], - [-13.588728, 65.258234], - [-13.589002, 65.258406], - [-13.589013, 65.2586], - [-13.589614, 65.258648], - [-13.589993, 65.258507], - [-13.590447, 65.258392], - [-13.590847, 65.258242], - [-13.590615, 65.258123], - [-13.590619, 65.257974], - [-13.590373, 65.257814], - [-13.590384, 65.257638], - [-13.590753, 65.257722], - [-13.590879, 65.257907], - [-13.591111, 65.257845], - [-13.591448, 65.257907], - [-13.591818, 65.257838], - [-13.592534, 65.257651], - [-13.592524, 65.25736], - [-13.592587, 65.257003], - [-13.592661, 65.256786], - [-13.592465, 65.256884], - [-13.592418, 65.256544], - [-13.592408, 65.25642], - [-13.592924, 65.256367], - [-13.593093, 65.256226], - [-13.593293, 65.256111], - [-13.593705, 65.256071], - [-13.594453, 65.256248], - [-13.595318, 65.256296], - [-13.596362, 65.256226], - [-13.597251, 65.256133], - [-13.597964, 65.255996], - [-13.598555, 65.255621], - [-13.598426, 65.255462], - [-13.598344, 65.255193], - [-13.598839, 65.255259], - [-13.599129, 65.255075], - [-13.599546, 65.254765], - [-13.599219, 65.254672], - [-13.599103, 65.254491], - [-13.599314, 65.254266], - [-13.599409, 65.254032], - [-13.599303, 65.253887], - [-13.599145, 65.253679], - [-13.599535, 65.253353], - [-13.599693, 65.253198], - [-13.599851, 65.253406], - [-13.600168, 65.253476], - [-13.6004, 65.253339], - [-13.600674, 65.253013], - [-13.600974, 65.25261], - [-13.60137, 65.252346], - [-13.602066, 65.252205], - [-13.602993, 65.252029], - [-13.60332, 65.251839], - [-13.60313, 65.251654], - [-13.603299, 65.251561], - [-13.60352, 65.25172], - [-13.603733, 65.251698], - [-13.603911, 65.251548], - [-13.604237, 65.251292], - [-13.604409, 65.250943], - [-13.603688, 65.249721], - [-13.602622, 65.248047], - [-13.60446, 65.24651], - [-13.604789, 65.246179], - [-13.605519, 65.245751], - [-13.60598, 65.245333], - [-13.60609, 65.24448], - [-13.605916, 65.244178], - [-13.605036, 65.243963], - [-13.604489, 65.243886], - [-13.604201, 65.243422], - [-13.604768, 65.242925], - [-13.60465, 65.242655], - [-13.60539, 65.24261], - [-13.605626, 65.242871], - [-13.605991, 65.243046], - [-13.60687, 65.242988], - [-13.6076, 65.242673], - [-13.608664, 65.242767], - [-13.608909, 65.242534], - [-13.608411, 65.242101], - [-13.608866, 65.241878], - [-13.6084, 65.24117], - [-13.612111, 65.240412], - [-13.613555, 65.239943], - [-13.613812, 65.239627], - [-13.613643, 65.239339], - [-13.614187, 65.238678], - [-13.614971, 65.238795], - [-13.615743, 65.238548], - [-13.615847, 65.238094], - [-13.616269, 65.238018], - [-13.616415, 65.237574], - [-13.617228, 65.237362], - [-13.617653, 65.236234], - [-13.617727, 65.235127], - [-13.618795, 65.23444], - [-13.61967, 65.234292], - [-13.620142, 65.23445], - [-13.62129, 65.234477], - [-13.623175, 65.234162], - [-13.623328, 65.233636], - [-13.623052, 65.232692], - [-13.624302, 65.232302], - [-13.625588, 65.232081], - [-13.626516, 65.231754], - [-13.628769, 65.231175], - [-13.631225, 65.230721], - [-13.633374, 65.22993], - [-13.633823, 65.2298], - [-13.634218, 65.2296], - [-13.634445, 65.229373], - [-13.634604, 65.22902], - [-13.634534, 65.228608], - [-13.63377, 65.22836], - [-13.633628, 65.228134], - [-13.633135, 65.22791], - [-13.63322, 65.227597], - [-13.633178, 65.227325], - [-13.633907, 65.227046], - [-13.63447, 65.22658], - [-13.634476, 65.226237], - [-13.63424, 65.226039], - [-13.633784, 65.225866], - [-13.633762, 65.224729], - [-13.63587, 65.22301], - [-13.637169, 65.222072], - [-13.638424, 65.221862], - [-13.63933, 65.22099], - [-13.639971, 65.220672], - [-13.64184, 65.21961], - [-13.643134, 65.218701], - [-13.643477, 65.218706], - [-13.643896, 65.218962], - [-13.645001, 65.219052], - [-13.646129, 65.218848], - [-13.647605, 65.217796], - [-13.651571, 65.21735], - [-13.651997, 65.217273], - [-13.65172, 65.21701], - [-13.654887, 65.216999], - [-13.657475, 65.216416], - [-13.65786, 65.21605], - [-13.66031, 65.215779], - [-13.660914, 65.215603], - [-13.662105, 65.21532], - [-13.66279, 65.21481], - [-13.66556, 65.213999], - [-13.666887, 65.213995], - [-13.668147, 65.213934], - [-13.669154, 65.213716], - [-13.66988, 65.21333], - [-13.67329, 65.21246], - [-13.674698, 65.212431], - [-13.67512, 65.21211], - [-13.67701, 65.211792], - [-13.677566, 65.21211], - [-13.680941, 65.212038], - [-13.682118, 65.211467], - [-13.685641, 65.2115], - [-13.68614, 65.21118], - [-13.686888, 65.211055], - [-13.68738, 65.21068], - [-13.691885, 65.21053], - [-13.69228, 65.21021], - [-13.695865, 65.21041], - [-13.69655, 65.21], - [-13.697513, 65.209959], - [-13.700663, 65.209558], - [-13.701617, 65.209741], - [-13.703021, 65.209697], - [-13.703579, 65.209398], - [-13.704299, 65.20949], - [-13.705372, 65.209468], - [-13.70695, 65.20919], - [-13.715975, 65.209099], - [-13.716551, 65.209274], - [-13.717526, 65.209181], - [-13.719464, 65.208826], - [-13.721675, 65.208975], - [-13.721825, 65.20911], - [-13.72227, 65.209175], - [-13.722725, 65.209096], - [-13.72403, 65.20869], - [-13.729063, 65.208504], - [-13.731325, 65.208214], - [-13.73175, 65.208147], - [-13.732423, 65.207754], - [-13.732665, 65.207632], - [-13.732914, 65.207605], - [-13.733764, 65.207672], - [-13.734219, 65.207724], - [-13.734874, 65.207741], - [-13.736422, 65.207568], - [-13.737675, 65.207387], - [-13.73964, 65.20729], - [-13.739707, 65.207119], - [-13.739889, 65.206988], - [-13.739842, 65.206788], - [-13.739883, 65.206664], - [-13.740917, 65.20655], - [-13.741673, 65.206607], - [-13.742452, 65.206627], - [-13.744378, 65.206166], - [-13.744904, 65.205988], - [-13.745553, 65.205683], - [-13.746285, 65.205391], - [-13.747425, 65.205089], - [-13.747909, 65.204988], - [-13.748087, 65.204981], - [-13.748232, 65.204974], - [-13.74836, 65.204983], - [-13.748488, 65.204979], - [-13.748636, 65.204969], - [-13.748841, 65.204986], - [-13.749002, 65.205001], - [-13.749198, 65.205037], - [-13.749421, 65.205079], - [-13.749718, 65.205063], - [-13.750146, 65.205022], - [-13.750229, 65.205002], - [-13.750319, 65.204977], - [-13.750482, 65.204951], - [-13.750593, 65.204938], - [-13.750706, 65.204896], - [-13.750808, 65.204897], - [-13.750847, 65.204927], - [-13.750951, 65.204922], - [-13.751079, 65.204897], - [-13.751298, 65.204835], - [-13.751469, 65.204833], - [-13.751658, 65.2048], - [-13.751895, 65.204802], - [-13.751979, 65.204766], - [-13.75207, 65.204762], - [-13.752053, 65.204836], - [-13.752107, 65.204857], - [-13.75222, 65.204823], - [-13.752316, 65.204759], - [-13.752422, 65.204681], - [-13.752546, 65.204633], - [-13.752704, 65.204647], - [-13.752886, 65.204595], - [-13.753077, 65.204607], - [-13.75312, 65.204672], - [-13.753222, 65.204671], - [-13.753403, 65.204669], - [-13.753596, 65.204697], - [-13.753938, 65.204735], - [-13.75432, 65.204762], - [-13.754713, 65.204764], - [-13.754906, 65.20478], - [-13.755143, 65.204775], - [-13.755596, 65.204718], - [-13.755839, 65.204664], - [-13.755804, 65.204497], - [-13.755843, 65.204452], - [-13.756013, 65.204463], - [-13.756153, 65.204505], - [-13.75616, 65.204588], - [-13.756249, 65.204572], - [-13.756292, 65.204608], - [-13.756299, 65.204683], - [-13.756392, 65.204678], - [-13.756585, 65.204641], - [-13.757065, 65.20458], - [-13.757551, 65.204592], - [-13.757883, 65.204567], - [-13.758221, 65.204541], - [-13.758536, 65.20448], - [-13.758779, 65.204422], - [-13.758972, 65.204386], - [-13.759243, 65.204372], - [-13.759534, 65.204382], - [-13.759675, 65.204383], - [-13.759931, 65.204377], - [-13.760152, 65.204318], - [-13.760326, 65.204261], - [-13.760332, 65.204332], - [-13.760418, 65.204344], - [-13.760538, 65.204365], - [-13.760579, 65.204314], - [-13.76065, 65.204265], - [-13.760781, 65.204228], - [-13.760749, 65.204198], - [-13.760621, 65.204215], - [-13.76051, 65.204232], - [-13.760499, 65.204186], - [-13.760584, 65.204054], - [-13.760696, 65.203872], - [-13.760903, 65.203797], - [-13.761046, 65.203746], - [-13.761162, 65.203636], - [-13.761349, 65.203684], - [-13.761371, 65.203829], - [-13.761487, 65.203891], - [-13.761802, 65.203898], - [-13.762199, 65.203836], - [-13.762691, 65.203766], - [-13.762841, 65.203669], - [-13.76342, 65.203501], - [-13.764164, 65.203374], - [-13.764707, 65.20333], - [-13.765635, 65.203352], - [-13.765894, 65.203387], - [-13.76645, 65.203412], - [-13.767294, 65.20328], - [-13.767967, 65.203221], - [-13.768918, 65.203204], - [-13.769834, 65.203226], - [-13.771104, 65.203271], - [-13.771948, 65.203176], - [-13.772734, 65.20304], - [-13.773785, 65.202991], - [-13.775132, 65.202842], - [-13.776177, 65.202765], - [-13.777418, 65.202678], - [-13.778522, 65.202708], - [-13.780176, 65.202787], - [-13.780923, 65.202755], - [-13.781457, 65.202678], - [-13.78317, 65.202324], - [-13.784416, 65.202096], - [-13.785663, 65.202067], - [-13.787305, 65.202158], - [-13.789039, 65.20206], - [-13.790957, 65.20238], - [-13.792825, 65.202349], - [-13.79432, 65.202306], - [-13.794997, 65.202318], - [-13.795112, 65.20211], - [-13.795555, 65.202135], - [-13.79548, 65.202244], - [-13.795434, 65.202245], - [-13.795376, 65.202404], - [-13.795446, 65.202406], - [-13.795492, 65.20243], - [-13.795504, 65.202489], - [-13.795613, 65.202581], - [-13.797029, 65.202753], - [-13.797753, 65.202755], - [-13.799977, 65.203246], - [-13.801723, 65.203659], - [-13.804024, 65.203756], - [-13.807829, 65.203976], - [-13.808905, 65.20395], - [-13.809388, 65.203895], - [-13.810423, 65.203699], - [-13.81129, 65.203645], - [-13.812293, 65.203588], - [-13.812802, 65.203635], - [-13.813871, 65.203793], - [-13.814521, 65.203922], - [-13.815318, 65.204167], - [-13.81611, 65.204455], - [-13.816718, 65.204593], - [-13.817385, 65.20466], - [-13.818357, 65.204727], - [-13.818703, 65.204772], - [-13.819217, 65.204786], - [-13.819984, 65.204757], - [-13.82064, 65.204754], - [-13.821981, 65.20467], - [-13.822211, 65.204655], - [-13.823209, 65.204653], - [-13.823776, 65.204628], - [-13.824804, 65.204648], - [-13.82553, 65.204747], - [-13.826918, 65.204895], - [-13.827964, 65.204945], - [-13.828808, 65.204957], - [-13.829369, 65.204928], - [-13.830049, 65.204819], - [-13.830344, 65.204824], - [-13.830787, 65.204933], - [-13.831041, 65.205081], - [-13.831661, 65.205267], - [-13.832045, 65.205359], - [-13.833031, 65.205413], - [-13.833925, 65.205399], - [-13.834868, 65.205329], - [-13.836681, 65.20523], - [-13.837538, 65.205243], - [-13.837928, 65.205215], - [-13.839056, 65.20525], - [-13.840538, 65.205401], - [-13.841879, 65.205644], - [-13.842825, 65.205781], - [-13.843107, 65.205785], - [-13.843704, 65.205842], - [-13.844295, 65.205879], - [-13.845381, 65.205733], - [-13.847087, 65.205552], - [-13.847673, 65.205485], - [-13.847956, 65.205475], - [-13.848447, 65.20544], - [-13.848866, 65.205356], - [-13.849415, 65.205252], - [-13.85003, 65.20522], - [-13.850668, 65.205255], - [-13.851565, 65.205324], - [-13.852853, 65.205309], - [-13.853686, 65.205217], - [-13.854329, 65.205185], - [-13.854938, 65.205183], - [-13.855841, 65.205208], - [-13.856651, 65.205341], - [-13.857607, 65.205549], - [-13.85811, 65.20576], - [-13.858499, 65.205938], - [-13.858936, 65.206097], - [-13.859238, 65.206171], - [-13.859887, 65.206191], - [-13.861216, 65.206181], - [-13.861901, 65.206139], - [-13.86257, 65.206124], - [-13.863709, 65.206223], - [-13.864394, 65.20624], - [-13.86515, 65.206226], - [-13.866053, 65.206419], - [-13.866603, 65.206476], - [-13.867394, 65.206553], - [-13.869024, 65.206684], - [-13.870607, 65.20659], - [-13.871204, 65.206515], - [-13.872509, 65.206543], - [-13.873844, 65.206548], - [-13.875002, 65.2065], - [-13.875828, 65.206411], - [-13.876768, 65.206367], - [-13.877671, 65.206352], - [-13.878085, 65.206386], - [-13.879101, 65.206389], - [-13.879561, 65.206416], - [-13.879951, 65.206414], - [-13.880648, 65.206436], - [-13.881191, 65.206456], - [-13.881587, 65.206456], - [-13.882, 65.206434], - [-13.883111, 65.206332], - [-13.884576, 65.206213], - [-13.885532, 65.206129], - [-13.885993, 65.206122], - [-13.886466, 65.206124], - [-13.886974, 65.206094], - [-13.88747, 65.206008], - [-13.88783, 65.205923], - [-13.888373, 65.205864], - [-13.888928, 65.205864], - [-13.889637, 65.205733], - [-13.89057, 65.205619], - [-13.891551, 65.205507], - [-13.891811, 65.205463], - [-13.892396, 65.205297], - [-13.893518, 65.205084], - [-13.894073, 65.205106], - [-13.894811, 65.204893], - [-13.89503, 65.204734], - [-13.895355, 65.204682], - [-13.896323, 65.204678], - [-13.897516, 65.204673], - [-13.898414, 65.204628], - [-13.899158, 65.204551], - [-13.89995, 65.20436], - [-13.90015, 65.204316], - [-13.900487, 65.204247], - [-13.900836, 65.204259], - [-13.901149, 65.204261], - [-13.901521, 65.204192], - [-13.902371, 65.204024], - [-13.903169, 65.203897], - [-13.904078, 65.203843], - [-13.904527, 65.203788], - [-13.905035, 65.203754], - [-13.905413, 65.203768], - [-13.905667, 65.203786], - [-13.906269, 65.203744], - [-13.906518, 65.203647], - [-13.906907, 65.203481], - [-13.907315, 65.203449], - [-13.908112, 65.203303], - [-13.908224, 65.203261], - [-13.908868, 65.203137], - [-13.909825, 65.202973], - [-13.910805, 65.202795], - [-13.911443, 65.202562], - [-13.912418, 65.202138], - [-13.912867, 65.201945], - [-13.913203, 65.201873], - [-13.913818, 65.201745], - [-13.914337, 65.201554], - [-13.914739, 65.201423], - [-13.91533, 65.201294], - [-13.915767, 65.201157], - [-13.916428, 65.201019], - [-13.916901, 65.200962], - [-13.917527, 65.200823], - [-13.917964, 65.200702], - [-13.918342, 65.200479], - [-13.918732, 65.200303], - [-13.91937, 65.200191], - [-13.920114, 65.200085], - [-13.920728, 65.200033], - [-13.921791, 65.199896], - [-13.922004, 65.199849], - [-13.922358, 65.199718], - [-13.922718, 65.199577], - [-13.923563, 65.199384], - [-13.923935, 65.199364], - [-13.924514, 65.199257], - [-13.925229, 65.199114], - [-13.925914, 65.19899], - [-13.92667, 65.198871], - [-13.92713, 65.198764], - [-13.927739, 65.198665], - [-13.928542, 65.198588], - [-13.929174, 65.198487], - [-13.929735, 65.19841], - [-13.930627, 65.198343], - [-13.931424, 65.198254], - [-13.931909, 65.198145], - [-13.93218, 65.198085], - [-13.933131, 65.197892], - [-13.933763, 65.197793], - [-13.934732, 65.197738], - [-13.935441, 65.197714], - [-13.936752, 65.197706], - [-13.937591, 65.197731], - [-13.938352, 65.197766], - [-13.938866, 65.197731], - [-13.939067, 65.197741], - [-13.939534, 65.197773], - [-13.939735, 65.197778], - [-13.939935, 65.197734], - [-13.940975, 65.197679], - [-13.942133, 65.197639], - [-13.942286, 65.197642], - [-13.942629, 65.197684], - [-13.9429, 65.197724], - [-13.943024, 65.197709], - [-13.943249, 65.197654], - [-13.943544, 65.197607], - [-13.943893, 65.197625], - [-13.944194, 65.197647], - [-13.944595, 65.19761], - [-13.944897, 65.19758], - [-13.945546, 65.197625], - [-13.945812, 65.197615], - [-13.946066, 65.197649], - [-13.94655, 65.197692], - [-13.947336, 65.19763], - [-13.947903, 65.19758], - [-13.948334, 65.197587], - [-13.948564, 65.19763], - [-13.948895, 65.197694], - [-13.949315, 65.197704], - [-13.949722, 65.197669], - [-13.95026, 65.197699], - [-13.950561, 65.197672], - [-13.950779, 65.19759], - [-13.950921, 65.197498], - [-13.951145, 65.197456], - [-13.951476, 65.197419], - [-13.95199, 65.197317], - [-13.95228, 65.197307], - [-13.952569, 65.19727], - [-13.952888, 65.197188], - [-13.95331, 65.197077], - [-13.953668, 65.197055], - [-13.954069, 65.19701], - [-13.954518, 65.197003], - [-13.954855, 65.197045], - [-13.955197, 65.197018], - [-13.955469, 65.196961], - [-13.955871, 65.196839], - [-13.956408, 65.196738], - [-13.956644, 65.196614], - [-13.956892, 65.196512], - [-13.958788, 65.196391], - [-13.959497, 65.196356], - [-13.960176, 65.196314], - [-13.960519, 65.196301], - [-13.960897, 65.196309], - [-13.961369, 65.196376], - [-13.961724, 65.196443], - [-13.961901, 65.196554], - [-13.962013, 65.196584], - [-13.962202, 65.196557], - [-13.962403, 65.19652], - [-13.962627, 65.196544], - [-13.962917, 65.196559], - [-13.96323, 65.196522], - [-13.963549, 65.196492], - [-13.963915, 65.19643], - [-13.96424, 65.196381], - [-13.964565, 65.196314], - [-13.964765, 65.196225], - [-13.964984, 65.19623], - [-13.965462, 65.196284], - [-13.965722, 65.196257], - [-13.966023, 65.196212], - [-13.966295, 65.196197], - [-13.966561, 65.196207], - [-13.966827, 65.196205], - [-13.967264, 65.19616], - [-13.968032, 65.196143], - [-13.968356, 65.196138], - [-13.9689, 65.196061], - [-13.969337, 65.195965], - [-13.969615, 65.195915], - [-13.969786, 65.195893], - [-13.969998, 65.195853], - [-13.970164, 65.195786], - [-13.970264, 65.195692], - [-13.97056, 65.19562], - [-13.971079, 65.195578], - [-13.971446, 65.19557], - [-13.971776, 65.195585], - [-13.972007, 65.195615], - [-13.972343, 65.195583], - [-13.97255, 65.195625], - [-13.9726, 65.195658], - [-13.973099, 65.195665], - [-13.973489, 65.195665], - [-13.97405, 65.195704], - [-13.97434, 65.195702], - [-13.974839, 65.19567], - [-13.975291, 65.19561], - [-13.975663, 65.195528], - [-13.976172, 65.195513], - [-13.976608, 65.195449], - [-13.97682, 65.195434], - [-13.977115, 65.195444], - [-13.97734, 65.195457], - [-13.977653, 65.195429], - [-13.978208, 65.195397], - [-13.978757, 65.195422], - [-13.979076, 65.195471], - [-13.980027, 65.195325], - [-13.980901, 65.195189], - [-13.981598, 65.195077], - [-13.982532, 65.195001], - [-13.983004, 65.194944], - [-13.983831, 65.194869], - [-13.984345, 65.194787], - [-13.984687, 65.194733], - [-13.985101, 65.194726], - [-13.98555, 65.194669], - [-13.985869, 65.194617], - [-13.986353, 65.194495], - [-13.986784, 65.194483], - [-13.987652, 65.194354], - [-13.988349, 65.194267], - [-13.98865, 65.194161], - [-13.989153, 65.194091], - [-13.989968, 65.19401], - [-13.990446, 65.193972], - [-13.990865, 65.19397], - [-13.991421, 65.19394], - [-13.991999, 65.193866], - [-13.992448, 65.193841], - [-13.993517, 65.193882], - [-13.993936, 65.193837], - [-13.994432, 65.193808], - [-13.994621, 65.193832], - [-13.994887, 65.193885], - [-13.995584, 65.193914], - [-13.996045, 65.193889], - [-13.996866, 65.193753], - [-13.997173, 65.193763], - [-13.997456, 65.193795], - [-13.997876, 65.19368], - [-13.99836, 65.193603], - [-13.998573, 65.193544], - [-13.998815, 65.193521], - [-13.999075, 65.193563], - [-13.999353, 65.193573], - [-14.000068, 65.193567], - [-14.000218, 65.193506], - [-14.000826, 65.193335], - [-14.001166, 65.193254], - [-14.002022, 65.193217], - [-14.002495, 65.193182], - [-14.00282, 65.193142], - [-14.003068, 65.19308], - [-14.003552, 65.193053], - [-14.004107, 65.192946], - [-14.004775, 65.19283], - [-14.005383, 65.19278], - [-14.005932, 65.192733], - [-14.006523, 65.192562], - [-14.007373, 65.192243], - [-14.009067, 65.191841], - [-14.009705, 65.191657], - [-14.010308, 65.191524], - [-14.010704, 65.191479], - [-14.011052, 65.191471], - [-14.011743, 65.191434], - [-14.012475, 65.191397], - [-14.012853, 65.191303], - [-14.01306, 65.191194], - [-14.013314, 65.191132], - [-14.013846, 65.191167], - [-14.014235, 65.191167], - [-14.014413, 65.191127], - [-14.014714, 65.191058], - [-14.015068, 65.191035], - [-14.015252, 65.191021], - [-14.015934, 65.190882], - [-14.016385, 65.190765], - [-14.017011, 65.190634], - [-14.017495, 65.190493], - [-14.018571, 65.190434], - [-14.019029, 65.190126], - [-14.019163, 65.190074], - [-14.019024, 65.189907], - [-14.018836, 65.189879], - [-14.018179, 65.189668], - [-14.017158, 65.189535], - [-14.015354, 65.189053], - [-14.013493, 65.188578], - [-14.015237, 65.188082], - [-14.01356, 65.18811], - [-14.012726, 65.18766], - [-14.01208, 65.187097], - [-14.00996, 65.18681], - [-14.00753, 65.18666], - [-14.001698, 65.187129], - [-13.998358, 65.187406], - [-13.991028, 65.187766], - [-13.98401, 65.188302], - [-13.982512, 65.189116], - [-13.980141, 65.189529], - [-13.977653, 65.189229], - [-13.975474, 65.188602], - [-13.96788, 65.18895], - [-13.960368, 65.189532], - [-13.951137, 65.19039], - [-13.949762, 65.190348], - [-13.940014, 65.19094], - [-13.938577, 65.191243], - [-13.93665, 65.191688], - [-13.934408, 65.192093], - [-13.932443, 65.19231], - [-13.930405, 65.192023], - [-13.92266, 65.19298], - [-13.92132, 65.193042], - [-13.91108, 65.19341], - [-13.893854, 65.195568], - [-13.892644, 65.195602], - [-13.88661, 65.19617], - [-13.88473, 65.19744], - [-13.88227, 65.19806], - [-13.877763, 65.197914], - [-13.87198, 65.19644], - [-13.866404, 65.196527], - [-13.862234, 65.196949], - [-13.856626, 65.196406], - [-13.852255, 65.196292], - [-13.8513, 65.19591], - [-13.838497, 65.19465], - [-13.837572, 65.194338], - [-13.83135, 65.1928], - [-13.829951, 65.193063], - [-13.829058, 65.192805], - [-13.827668, 65.192694], - [-13.827119, 65.192213], - [-13.824864, 65.192138], - [-13.823664, 65.192306], - [-13.82165, 65.19171], - [-13.820805, 65.191565], - [-13.819539, 65.191709], - [-13.817336, 65.19129], - [-13.81682, 65.19078], - [-13.815687, 65.190591], - [-13.81502, 65.19026], - [-13.8126, 65.18998], - [-13.81172, 65.189291], - [-13.808359, 65.188704], - [-13.807756, 65.188437], - [-13.802168, 65.18707], - [-13.801608, 65.186857], - [-13.79027, 65.18558], - [-13.78114, 65.18576], - [-13.78052, 65.18602], - [-13.77441, 65.18648], - [-13.770022, 65.186355], - [-13.769305, 65.186667], - [-13.768151, 65.186846], - [-13.767348, 65.187212], - [-13.760337, 65.186616], - [-13.759394, 65.186847], - [-13.757548, 65.187063], - [-13.754793, 65.186667], - [-13.753916, 65.187151], - [-13.749442, 65.187054], - [-13.748554, 65.187643], - [-13.743135, 65.187551], - [-13.741161, 65.187668], - [-13.739251, 65.187533], - [-13.738178, 65.187758], - [-13.73305, 65.187173], - [-13.731224, 65.187406], - [-13.72926, 65.18853], - [-13.727366, 65.188609], - [-13.72681, 65.18903], - [-13.72191, 65.18936], - [-13.72068, 65.18987], - [-13.71581, 65.19008], - [-13.70306, 65.1892], - [-13.692518, 65.18977], - [-13.691792, 65.190287], - [-13.69144, 65.19025], - [-13.690344, 65.189722], - [-13.68845, 65.18908], - [-13.68418, 65.18916], - [-13.68237, 65.1889], - [-13.681985, 65.189428], - [-13.681409, 65.189508], - [-13.680321, 65.190044], - [-13.67888, 65.190169], - [-13.67794, 65.190728], - [-13.674893, 65.190872], - [-13.673623, 65.191323], - [-13.673004, 65.191268], - [-13.671738, 65.190917], - [-13.670934, 65.191197], - [-13.669957, 65.190548], - [-13.668522, 65.190429], - [-13.66699, 65.19209], - [-13.664751, 65.1919], - [-13.66452, 65.19283], - [-13.659562, 65.192859], - [-13.654238, 65.193907], - [-13.651672, 65.194249], - [-13.651019, 65.195182], - [-13.6504, 65.19513], - [-13.6474, 65.19421], - [-13.645124, 65.193342], - [-13.64261, 65.19263], - [-13.63969, 65.191969], - [-13.636051, 65.191419], - [-13.634708, 65.191008], - [-13.632683, 65.190666], - [-13.628229, 65.189433], - [-13.6257, 65.18992], - [-13.62482, 65.1894], - [-13.62365, 65.18837], - [-13.62312, 65.18683], - [-13.62383, 65.18505], - [-13.62359, 65.18376], - [-13.62404, 65.18096], - [-13.62344, 65.18069], - [-13.62381, 65.17942], - [-13.624271, 65.179154], - [-13.624284, 65.178437], - [-13.624495, 65.177725], - [-13.624505, 65.177305], - [-13.62455, 65.17687], - [-13.624893, 65.176462], - [-13.624726, 65.175915], - [-13.624981, 65.175381], - [-13.62527, 65.17483], - [-13.625836, 65.174043], - [-13.627517, 65.17136], - [-13.628918, 65.169056], - [-13.631196, 65.166479], - [-13.632836, 65.165834], - [-13.632354, 65.164712], - [-13.632831, 65.164332], - [-13.633989, 65.163437], - [-13.63501, 65.1629], - [-13.635554, 65.162559], - [-13.63626, 65.16214], - [-13.63987, 65.15706], - [-13.641934, 65.156437], - [-13.64237, 65.1558], - [-13.64396, 65.15428], - [-13.64605, 65.153198], - [-13.648321, 65.152911], - [-13.649437, 65.152367], - [-13.651543, 65.150601], - [-13.653603, 65.150024], - [-13.653404, 65.149932], - [-13.653981, 65.149822], - [-13.653956, 65.149729], - [-13.653895, 65.149683], - [-13.653974, 65.149605], - [-13.65408, 65.149563], - [-13.654225, 65.149561], - [-13.654376, 65.14954], - [-13.654412, 65.149481], - [-13.654397, 65.149424], - [-13.654453, 65.149363], - [-13.654528, 65.149268], - [-13.6546, 65.149225], - [-13.654773, 65.149214], - [-13.65497, 65.149174], - [-13.655223, 65.149137], - [-13.655385, 65.149115], - [-13.655563, 65.149107], - [-13.655736, 65.149124], - [-13.655975, 65.149118], - [-13.656094, 65.149138], - [-13.656442, 65.149059], - [-13.656384, 65.149], - [-13.656282, 65.148946], - [-13.656227, 65.148873], - [-13.655974, 65.148827], - [-13.655769, 65.148793], - [-13.655587, 65.148784], - [-13.655499, 65.148741], - [-13.655476, 65.148699], - [-13.65563, 65.148689], - [-13.655831, 65.148657], - [-13.656059, 65.148647], - [-13.656391, 65.148541], - [-13.656653, 65.148454], - [-13.656857, 65.148362], - [-13.657028, 65.148322], - [-13.657211, 65.148323], - [-13.657473, 65.148261], - [-13.657749, 65.148201], - [-13.658097, 65.148135], - [-13.658341, 65.148079], - [-13.658574, 65.147993], - [-13.65877, 65.14794], - [-13.658969, 65.147946], - [-13.659539, 65.147876], - [-13.659692, 65.147801], - [-13.659822, 65.147734], - [-13.66004, 65.14767], - [-13.660395, 65.147561], - [-13.660602, 65.147509], - [-13.660732, 65.147426], - [-13.660919, 65.147454], - [-13.661019, 65.147512], - [-13.660989, 65.147636], - [-13.660983, 65.147725], - [-13.661108, 65.147527], - [-13.661273, 65.147435], - [-13.661552, 65.147338], - [-13.661769, 65.147232], - [-13.662024, 65.147122], - [-13.662295, 65.147037], - [-13.662533, 65.146978], - [-13.662413, 65.147098], - [-13.662434, 65.14717], - [-13.662357, 65.147278], - [-13.662559, 65.147303], - [-13.662992, 65.147292], - [-13.663678, 65.147264], - [-13.664407, 65.147268], - [-13.665283, 65.147334], - [-13.665873, 65.147368], - [-13.666217, 65.147361], - [-13.666662, 65.147343], - [-13.667135, 65.147296], - [-13.667477, 65.147285], - [-13.667845, 65.14722], - [-13.6684, 65.147198], - [-13.668851, 65.147235], - [-13.668995, 65.147252], - [-13.669283, 65.147204], - [-13.669602, 65.147172], - [-13.669865, 65.147139], - [-13.670461, 65.147065], - [-13.671207, 65.146987], - [-13.67205, 65.14692], - [-13.67271, 65.146888], - [-13.672889, 65.14688], - [-13.673502, 65.146896], - [-13.673875, 65.146929], - [-13.674559, 65.146969], - [-13.675062, 65.146974], - [-13.675299, 65.146969], - [-13.675625, 65.146914], - [-13.676029, 65.146832], - [-13.676299, 65.146762], - [-13.67649, 65.146692], - [-13.676684, 65.146619], - [-13.676825, 65.14656], - [-13.676926, 65.1465], - [-13.677066, 65.146448], - [-13.677544, 65.1463], - [-13.677848, 65.14618], - [-13.678276, 65.146055], - [-13.678505, 65.145997], - [-13.678668, 65.145975], - [-13.678785, 65.145981], - [-13.678868, 65.146005], - [-13.678943, 65.146035], - [-13.679155, 65.146169], - [-13.680416, 65.146796], - [-13.68109, 65.146862], - [-13.681182, 65.146888], - [-13.681246, 65.146921], - [-13.681272, 65.146952], - [-13.681652, 65.14697], - [-13.681758, 65.147009], - [-13.681775, 65.147124], - [-13.681853, 65.147185], - [-13.681966, 65.147245], - [-13.68217, 65.147289], - [-13.682458, 65.147313], - [-13.682992, 65.14731], - [-13.683225, 65.147308], - [-13.683536, 65.147305], - [-13.683689, 65.147304], - [-13.684397, 65.147292], - [-13.68501, 65.147269], - [-13.685868, 65.147237], - [-13.685856, 65.146711], - [-13.685852, 65.146532], - [-13.686541, 65.146561], - [-13.687361, 65.146578], - [-13.687391, 65.147133], - [-13.688844, 65.147124], - [-13.68948, 65.14712], - [-13.689966, 65.147117], - [-13.691765, 65.147107], - [-13.691832, 65.147056], - [-13.691903, 65.147022], - [-13.691994, 65.147022], - [-13.692086, 65.147058], - [-13.6921, 65.147101], - [-13.692168, 65.147164], - [-13.692865, 65.147199], - [-13.693329, 65.147272], - [-13.693725, 65.147301], - [-13.694064, 65.147291], - [-13.694775, 65.147346], - [-13.694916, 65.14736], - [-13.695054, 65.14737], - [-13.695381, 65.147419], - [-13.695544, 65.14746], - [-13.696062, 65.14759], - [-13.696485, 65.147656], - [-13.697446, 65.147692], - [-13.698122, 65.147696], - [-13.698801, 65.1477], - [-13.700271, 65.147623], - [-13.702276, 65.147436], - [-13.702404, 65.147424], - [-13.703077, 65.147322], - [-13.703416, 65.14722], - [-13.703681, 65.147102], - [-13.703803, 65.147037], - [-13.703887, 65.146977], - [-13.70451, 65.146956], - [-13.704525, 65.147031], - [-13.704712, 65.147035], - [-13.704909, 65.147059], - [-13.705028, 65.147123], - [-13.705138, 65.147186], - [-13.705145, 65.147258], - [-13.70621, 65.147329], - [-13.70643, 65.147309], - [-13.706524, 65.147281], - [-13.706579, 65.147234], - [-13.706708, 65.147208], - [-13.706962, 65.147185], - [-13.707596, 65.14718], - [-13.707711, 65.147208], - [-13.707811, 65.147276], - [-13.707916, 65.147338], - [-13.707999, 65.147323], - [-13.708027, 65.147265], - [-13.708125, 65.147234], - [-13.708729, 65.147185], - [-13.70913, 65.147153], - [-13.709268, 65.147147], - [-13.709328, 65.147209], - [-13.70947, 65.14726], - [-13.709626, 65.147249], - [-13.710062, 65.147238], - [-13.710892, 65.147199], - [-13.711491, 65.147166], - [-13.711838, 65.147143], - [-13.712128, 65.147123], - [-13.712739, 65.147068], - [-13.713159, 65.147059], - [-13.713412, 65.147026], - [-13.713614, 65.146974], - [-13.71469, 65.146889], - [-13.715203, 65.146843], - [-13.715455, 65.146798], - [-13.715657, 65.146781], - [-13.715871, 65.146815], - [-13.716007, 65.146795], - [-13.716432, 65.146747], - [-13.716687, 65.14673], - [-13.71688, 65.146754], - [-13.717042, 65.146796], - [-13.71716, 65.146775], - [-13.717463, 65.146729], - [-13.717813, 65.146727], - [-13.718121, 65.146724], - [-13.718386, 65.146671], - [-13.718761, 65.146558], - [-13.719115, 65.146471], - [-13.719463, 65.146411], - [-13.719726, 65.146371], - [-13.719666, 65.146435], - [-13.719675, 65.146492], - [-13.719796, 65.14654], - [-13.720058, 65.146565], - [-13.720281, 65.146583], - [-13.720531, 65.146575], - [-13.720696, 65.146543], - [-13.720975, 65.146473], - [-13.721397, 65.146344], - [-13.721716, 65.146259], - [-13.721902, 65.146235], - [-13.722097, 65.146248], - [-13.72228, 65.146275], - [-13.722472, 65.146259], - [-13.722784, 65.146194], - [-13.723175, 65.146069], - [-13.723717, 65.145854], - [-13.724132, 65.145698], - [-13.724527, 65.145592], - [-13.725175, 65.145329], - [-13.725356, 65.145334], - [-13.725531, 65.145334], - [-13.725729, 65.145308], - [-13.725919, 65.145243], - [-13.726076, 65.145229], - [-13.726138, 65.14519], - [-13.726105, 65.145141], - [-13.726592, 65.144933], - [-13.72666, 65.144936], - [-13.728443, 65.144214], - [-13.728749, 65.144084], - [-13.728897, 65.144067], - [-13.729062, 65.144077], - [-13.729325, 65.14392], - [-13.729678, 65.143733], - [-13.729951, 65.143621], - [-13.730255, 65.143529], - [-13.731164, 65.143388], - [-13.731634, 65.143264], - [-13.732248, 65.143041], - [-13.733082, 65.14268], - [-13.733556, 65.142427], - [-13.733504, 65.142132], - [-13.733584, 65.141972], - [-13.735064, 65.140744], - [-13.735123, 65.140499], - [-13.735107, 65.140254], - [-13.733987, 65.139973], - [-13.734122, 65.139875], - [-13.735623, 65.138788], - [-13.737041, 65.139131], - [-13.738676, 65.13953], - [-13.738788, 65.139454], - [-13.738933, 65.13947], - [-13.739606, 65.139059], - [-13.739537, 65.138989], - [-13.739777, 65.13885], - [-13.740023, 65.138672], - [-13.74013, 65.13865], - [-13.740247, 65.13863], - [-13.740413, 65.138493], - [-13.738906, 65.138124], - [-13.739114, 65.13779], - [-13.739339, 65.137214], - [-13.739531, 65.136763], - [-13.73998, 65.135601], - [-13.739809, 65.135592], - [-13.739665, 65.135595], - [-13.739542, 65.135626], - [-13.739419, 65.135664], - [-13.7392, 65.135768], - [-13.739045, 65.135839], - [-13.738895, 65.135851], - [-13.738853, 65.135801], - [-13.738874, 65.135718], - [-13.738965, 65.135615], - [-13.739403, 65.135536], - [-13.740092, 65.135419], - [-13.740461, 65.135365], - [-13.740675, 65.135298], - [-13.740568, 65.135172], - [-13.740424, 65.135004], - [-13.740274, 65.134934], - [-13.738243, 65.135271], - [-13.737223, 65.135476], - [-13.737005, 65.135547], - [-13.737106, 65.13566], - [-13.737649, 65.136061], - [-13.737834, 65.136075], - [-13.738014, 65.136113], - [-13.738136, 65.136167], - [-13.738051, 65.136227], - [-13.737672, 65.136244], - [-13.737453, 65.136266], - [-13.737428, 65.136192], - [-13.737225, 65.136031], - [-13.736999, 65.135917], - [-13.73669, 65.135709], - [-13.736612, 65.135641], - [-13.736278, 65.135417], - [-13.736273, 65.135341], - [-13.736047, 65.135295], - [-13.735014, 65.134852], - [-13.733891, 65.134526], - [-13.733605, 65.134372], - [-13.733079, 65.134144], - [-13.732389, 65.133927], - [-13.731802, 65.133596], - [-13.731274, 65.133281], - [-13.731145, 65.132935], - [-13.730953, 65.132759], - [-13.730526, 65.132475], - [-13.730594, 65.132387], - [-13.730688, 65.132349], - [-13.730827, 65.132365], - [-13.730945, 65.132446], - [-13.731934, 65.132528], - [-13.732066, 65.132816], - [-13.731968, 65.133084], - [-13.732548, 65.133285], - [-13.732834, 65.13308], - [-13.733001, 65.133079], - [-13.734243, 65.13332], - [-13.734537, 65.133354], - [-13.734952, 65.133291], - [-13.736409, 65.133114], - [-13.737691, 65.132843], - [-13.738966, 65.1326], - [-13.73993, 65.132438], - [-13.742155, 65.131978], - [-13.744989, 65.131527], - [-13.745367, 65.131429], - [-13.74656, 65.131244], - [-13.74786, 65.131105], - [-13.749477, 65.130822], - [-13.74981, 65.13073], - [-13.750188, 65.130631], - [-13.749975, 65.130425], - [-13.749462, 65.130093], - [-13.749296, 65.130007], - [-13.749157, 65.129906], - [-13.749152, 65.129753], - [-13.749179, 65.129666], - [-13.749264, 65.129591], - [-13.749237, 65.129522], - [-13.749066, 65.12947], - [-13.748879, 65.129373], - [-13.748858, 65.129288], - [-13.748949, 65.129214], - [-13.749018, 65.129131], - [-13.748965, 65.129048], - [-13.748774, 65.128948], - [-13.748743, 65.128831], - [-13.748781, 65.128605], - [-13.748864, 65.128478], - [-13.749023, 65.128341], - [-13.749076, 65.128255], - [-13.748842, 65.128236], - [-13.748555, 65.128243], - [-13.748162, 65.128224], - [-13.747731, 65.128201], - [-13.7473, 65.128208], - [-13.747073, 65.12822], - [-13.746801, 65.128157], - [-13.746605, 65.128058], - [-13.745939, 65.12818], - [-13.745543, 65.12807], - [-13.744704, 65.127889], - [-13.744113, 65.127696], - [-13.744048, 65.127905], - [-13.74383, 65.128047], - [-13.743468, 65.128169], - [-13.742981, 65.1282], - [-13.742585, 65.128367], - [-13.742196, 65.128355], - [-13.742468, 65.128206], - [-13.742883, 65.12786], - [-13.743492, 65.127479], - [-13.744383, 65.127185], - [-13.744755, 65.126885], - [-13.744042, 65.126929], - [-13.743165, 65.12716], - [-13.743195, 65.127404], - [-13.7422, 65.127448], - [-13.741932, 65.127804], - [-13.741257, 65.127876], - [-13.740737, 65.128093], - [-13.739089, 65.128011], - [-13.738024, 65.127978], - [-13.737508, 65.127906], - [-13.737187, 65.127873], - [-13.73671, 65.12775], - [-13.736459, 65.127848], - [-13.73638, 65.128071], - [-13.735468, 65.128207], - [-13.735167, 65.128225], - [-13.735404, 65.128379], - [-13.73513, 65.128441], - [-13.734911, 65.128347], - [-13.734723, 65.128338], - [-13.734424, 65.128601], - [-13.734076, 65.128838], - [-13.733648, 65.128974], - [-13.733139, 65.129035], - [-13.732677, 65.129153], - [-13.732136, 65.129187], - [-13.731817, 65.129197], - [-13.731538, 65.129222], - [-13.731166, 65.12929], - [-13.73093, 65.129317], - [-13.730932, 65.129462], - [-13.730943, 65.12952], - [-13.731074, 65.129542], - [-13.731069, 65.129597], - [-13.730916, 65.129599], - [-13.730884, 65.129733], - [-13.730764, 65.129811], - [-13.730864, 65.129957], - [-13.730659, 65.129964], - [-13.730391, 65.12997], - [-13.730296, 65.130094], - [-13.730019, 65.130172], - [-13.729866, 65.130235], - [-13.729651, 65.130191], - [-13.729199, 65.130242], - [-13.728579, 65.130246], - [-13.727975, 65.130266], - [-13.727629, 65.130361], - [-13.72745, 65.130392], - [-13.727151, 65.130337], - [-13.726603, 65.13036], - [-13.726274, 65.130534], - [-13.726074, 65.130569], - [-13.726037, 65.130699], - [-13.725995, 65.130768], - [-13.725864, 65.130812], - [-13.725906, 65.13098], - [-13.725712, 65.131156], - [-13.725428, 65.131256], - [-13.725449, 65.131337], - [-13.725638, 65.131256], - [-13.725927, 65.131256], - [-13.726069, 65.131362], - [-13.725948, 65.131514], - [-13.725549, 65.131605], - [-13.725071, 65.131644], - [-13.725066, 65.131706], - [-13.725066, 65.131792], - [-13.725376, 65.131812], - [-13.725948, 65.131797], - [-13.726326, 65.131843], - [-13.726741, 65.132022], - [-13.7271, 65.132147], - [-13.727797, 65.132345], - [-13.728085, 65.132314], - [-13.728584, 65.132292], - [-13.729115, 65.132166], - [-13.729241, 65.132082], - [-13.729215, 65.131993], - [-13.729582, 65.131976], - [-13.729768, 65.13206], - [-13.729787, 65.132192], - [-13.729913, 65.132267], - [-13.729698, 65.132356], - [-13.729393, 65.132371], - [-13.728952, 65.132448], - [-13.728031, 65.13281], - [-13.727466, 65.133047], - [-13.726841, 65.133111], - [-13.726258, 65.13308], - [-13.725812, 65.13303], - [-13.724961, 65.132857], - [-13.723756, 65.132565], - [-13.723056, 65.132344], - [-13.721842, 65.132013], - [-13.721164, 65.131841], - [-13.720281, 65.131876], - [-13.718538, 65.132132], - [-13.715155, 65.132424], - [-13.711374, 65.132689], - [-13.710085, 65.1328], - [-13.709822, 65.132923], - [-13.709097, 65.132937], - [-13.708415, 65.132862], - [-13.707974, 65.132937], - [-13.707637, 65.133034], - [-13.706986, 65.132998], - [-13.706493, 65.133029], - [-13.706398, 65.133131], - [-13.705862, 65.133118], - [-13.705789, 65.133016], - [-13.705075, 65.133012], - [-13.704896, 65.133118], - [-13.703709, 65.133171], - [-13.703657, 65.133347], - [-13.703289, 65.133237], - [-13.702806, 65.133184], - [-13.702207, 65.133237], - [-13.702459, 65.133392], - [-13.701776, 65.133255], - [-13.700957, 65.133233], - [-13.700295, 65.133206], - [-13.700274, 65.133352], - [-13.699466, 65.13333], - [-13.698888, 65.13337], - [-13.698331, 65.133264], - [-13.697344, 65.133343], - [-13.697008, 65.133546], - [-13.696724, 65.133506], - [-13.696913, 65.13325], - [-13.696283, 65.133175], - [-13.695317, 65.133272], - [-13.694718, 65.133511], - [-13.694613, 65.133621], - [-13.694039, 65.133577], - [-13.693439, 65.133632], - [-13.692817, 65.133648], - [-13.692165, 65.133453], - [-13.691735, 65.133321], - [-13.691703, 65.133091], - [-13.691094, 65.13314], - [-13.690947, 65.133397], - [-13.690695, 65.133396], - [-13.690737, 65.133144], - [-13.690296, 65.133056], - [-13.689697, 65.132963], - [-13.688972, 65.132928], - [-13.688374, 65.132963], - [-13.688069, 65.133069], - [-13.687859, 65.133021], - [-13.687922, 65.132817], - [-13.687344, 65.132658], - [-13.686672, 65.132809], - [-13.686401, 65.13294], - [-13.685916, 65.132782], - [-13.685926, 65.132513], - [-13.685653, 65.132437], - [-13.685107, 65.132446], - [-13.684613, 65.13238], - [-13.684162, 65.132636], - [-13.683815, 65.132654], - [-13.683521, 65.132504], - [-13.683227, 65.132305], - [-13.68245, 65.132177], - [-13.682302, 65.132486], - [-13.681903, 65.132597], - [-13.681735, 65.13246], - [-13.681641, 65.132296], - [-13.681662, 65.13212], - [-13.680632, 65.132062], - [-13.680131, 65.132049], - [-13.679298, 65.13204], - [-13.678983, 65.13189], - [-13.679099, 65.131775], - [-13.678574, 65.131612], - [-13.678006, 65.131466], - [-13.677093, 65.131448], - [-13.676393, 65.131383], - [-13.67599, 65.131625], - [-13.67579, 65.131625], - [-13.67578, 65.131351], - [-13.676021, 65.131135], - [-13.675591, 65.131232], - [-13.675029, 65.131265], - [-13.674897, 65.131532], - [-13.674677, 65.131585], - [-13.674519, 65.13185], - [-13.674193, 65.131868], - [-13.673975, 65.132065], - [-13.673784, 65.13204], - [-13.673742, 65.131757], - [-13.673343, 65.131881], - [-13.67305, 65.131807], - [-13.672713, 65.13189], - [-13.672817, 65.131996], - [-13.672576, 65.132102], - [-13.672135, 65.132128], - [-13.672471, 65.132274], - [-13.672156, 65.132411], - [-13.671547, 65.132155], - [-13.671378, 65.131996], - [-13.671095, 65.13212], - [-13.670799, 65.132138], - [-13.669791, 65.131534], - [-13.669416, 65.130766], - [-13.668279, 65.130841], - [-13.667795, 65.131135], - [-13.667292, 65.131067], - [-13.667292, 65.130697], - [-13.665426, 65.130011], - [-13.662554, 65.130176], - [-13.660903, 65.130607], - [-13.660544, 65.130516], - [-13.660831, 65.130109], - [-13.657619, 65.130139], - [-13.656937, 65.130697], - [-13.656058, 65.130516], - [-13.656363, 65.130078], - [-13.655088, 65.129814], - [-13.654047, 65.130094], - [-13.653348, 65.129875], - [-13.652755, 65.129731], - [-13.65189, 65.1298], - [-13.651714, 65.130094], - [-13.652085, 65.130468], - [-13.651732, 65.130471], - [-13.651373, 65.130101], - [-13.650991, 65.130398], - [-13.650727, 65.130675], - [-13.650425, 65.131102], - [-13.64976, 65.131087], - [-13.649527, 65.130536], - [-13.649581, 65.13009], - [-13.649581, 65.129185], - [-13.649491, 65.128966], - [-13.649868, 65.12892], - [-13.64933, 65.12852], - [-13.649204, 65.127547], - [-13.64863, 65.127411], - [-13.649348, 65.127011], - [-13.650066, 65.126633], - [-13.649491, 65.126195], - [-13.648989, 65.125765], - [-13.649545, 65.125531], - [-13.648863, 65.125395], - [-13.649348, 65.12501], - [-13.649904, 65.124587], - [-13.650496, 65.124255], - [-13.651591, 65.123651], - [-13.651304, 65.123425], - [-13.651645, 65.123055], - [-13.65195, 65.122828], - [-13.652345, 65.122745], - [-13.652847, 65.122466], - [-13.653493, 65.122609], - [-13.654534, 65.122323], - [-13.654875, 65.122202], - [-13.655163, 65.121734], - [-13.655455, 65.121706], - [-13.655611, 65.121575], - [-13.655663, 65.121377], - [-13.656742, 65.121084], - [-13.657376, 65.120655], - [-13.657262, 65.120473], - [-13.657854, 65.12045], - [-13.658465, 65.120178], - [-13.659883, 65.119967], - [-13.660654, 65.11999], - [-13.661651, 65.119821], - [-13.662543, 65.119614], - [-13.663382, 65.119325], - [-13.664531, 65.118948], - [-13.665608, 65.118789], - [-13.666397, 65.118562], - [-13.666882, 65.118374], - [-13.66873, 65.117974], - [-13.670561, 65.117641], - [-13.671368, 65.117445], - [-13.672696, 65.117347], - [-13.67354, 65.117098], - [-13.673935, 65.116999], - [-13.675011, 65.116562], - [-13.675891, 65.116388], - [-13.676124, 65.116184], - [-13.678368, 65.115784], - [-13.67933, 65.11546], - [-13.68036, 65.115089], - [-13.680611, 65.114575], - [-13.680611, 65.113646], - [-13.680072, 65.11265], - [-13.6801, 65.11215], - [-13.681113, 65.111857], - [-13.682262, 65.111728], - [-13.683752, 65.111924], - [-13.68438, 65.112068], - [-13.685672, 65.111909], - [-13.686354, 65.111796], - [-13.687377, 65.111517], - [-13.688113, 65.111305], - [-13.688274, 65.111131], - [-13.688813, 65.11129], - [-13.689154, 65.111403], - [-13.6898, 65.111471], - [-13.6953, 65.11177], - [-13.69594, 65.11113], - [-13.69717, 65.11102], - [-13.69904, 65.10963], - [-13.70208, 65.10965], - [-13.70301, 65.10928], - [-13.70216, 65.10799], - [-13.70399, 65.10788], - [-13.70524, 65.10712], - [-13.71069, 65.1073], - [-13.71071, 65.10679], - [-13.70647, 65.10676], - [-13.70591, 65.10572], - [-13.70773, 65.10574], - [-13.70774, 65.10548], - [-13.706795, 65.105347], - [-13.70292, 65.1048], - [-13.69987, 65.10516], - [-13.70102, 65.10645], - [-13.69981, 65.10644], - [-13.70033, 65.10823], - [-13.69884, 65.10771], - [-13.69918, 65.10694], - [-13.69796, 65.10693], - [-13.698, 65.10616], - [-13.69681, 65.10577], - [-13.69437, 65.106], - [-13.688035, 65.10618], - [-13.67946, 65.106547], - [-13.670688, 65.107687], - [-13.660517, 65.108715], - [-13.655443, 65.109226], - [-13.6517, 65.10959], - [-13.648098, 65.10954], - [-13.645907, 65.110947], - [-13.644419, 65.110547], - [-13.641989, 65.110517], - [-13.640407, 65.111925], - [-13.63643, 65.1115], - [-13.6352, 65.11174], - [-13.633437, 65.112199], - [-13.630948, 65.11245], - [-13.629446, 65.112956], - [-13.628171, 65.113459], - [-13.626035, 65.113837], - [-13.62531, 65.10935], - [-13.63332, 65.10124], - [-13.64305, 65.0888], - [-13.64426, 65.08881], - [-13.64374, 65.08727], - [-13.642605, 65.086943], - [-13.63776, 65.08555], - [-13.63594, 65.08553], - [-13.6323, 65.08563], - [-13.62977, 65.08765], - [-13.62856, 65.08764], - [-13.62787, 65.08917], - [-13.62422, 65.08965], - [-13.62356, 65.09041], - [-13.62235, 65.0904], - [-13.62231, 65.09091], - [-13.62111, 65.0909], - [-13.62139, 65.09141], - [-13.62042, 65.09243], - [-13.61859, 65.09267], - [-13.61857, 65.09318], - [-13.616992, 65.093305], - [-13.61607, 65.09443], - [-13.614336, 65.09448], - [-13.61423, 65.09493], - [-13.61302, 65.09492], - [-13.61294, 65.09645], - [-13.61172, 65.09644], - [-13.60883, 65.09948], - [-13.60664, 65.10074], - [-13.60542, 65.10073], - [-13.60474, 65.10226], - [-13.60232, 65.10223], - [-13.60229, 65.10274], - [-13.59925, 65.10296], - [-13.59922, 65.10348], - [-13.59801, 65.10347], - [-13.59662, 65.10678], - [-13.59812, 65.10704], - [-13.59837, 65.10808], - [-13.59716, 65.10807], - [-13.59718, 65.10756], - [-13.59597, 65.10755], - [-13.59523, 65.11011], - [-13.59341, 65.11008], - [-13.59268, 65.11237], - [-13.59086, 65.11236], - [-13.59083, 65.11286], - [-13.58962, 65.11286], - [-13.58893, 65.11439], - [-13.58772, 65.11437], - [-13.587565, 65.118087], - [-13.585745, 65.118713], - [-13.584551, 65.123149], - [-13.582721, 65.124423], - [-13.580209, 65.125544], - [-13.57795, 65.12681], - [-13.577884, 65.127684], - [-13.575369, 65.129721], - [-13.573214, 65.131236], - [-13.57329, 65.13444], - [-13.573908, 65.135455], - [-13.572291, 65.135804], - [-13.569535, 65.137355], - [-13.567057, 65.142157], - [-13.566144, 65.144602], - [-13.562804, 65.142928], - [-13.558866, 65.144058], - [-13.559374, 65.145417], - [-13.555725, 65.145654], - [-13.554701, 65.147288], - [-13.551057, 65.147962], - [-13.546675, 65.148588], - [-13.54423, 65.149472], - [-13.543866, 65.150631], - [-13.542301, 65.151649], - [-13.539852, 65.152662], - [-13.539742, 65.154067], - [-13.53876, 65.155474], - [-13.537206, 65.156326], - [-13.53438, 65.15683], - [-13.531026, 65.157687], - [-13.529371, 65.15983], - [-13.528846, 65.16367], - [-13.523344, 65.165466], - [-13.520248, 65.165405], - [-13.519036, 65.165737], - [-13.519268, 65.16663], - [-13.517761, 65.167273], - [-13.516253, 65.166985], - [-13.514151, 65.167413], - [-13.511408, 65.166774], - [-13.51354, 65.165622], - [-13.515721, 65.164596], - [-13.519105, 65.163711], - [-13.51917, 65.16257], - [-13.5186, 65.1618], - [-13.51958, 65.16052], - [-13.51717, 65.16024], - [-13.51828, 65.15667], - [-13.51629, 65.1541], - [-13.511144, 65.154214], - [-13.511745, 65.153578], - [-13.515741, 65.153336], - [-13.519464, 65.151932], - [-13.519455, 65.15066], - [-13.51962, 65.14901], - [-13.52144, 65.14903], - [-13.524543, 65.14852], - [-13.524831, 65.147239], - [-13.52566, 65.14421], - [-13.52842, 65.14373], - [-13.52902, 65.13836], - [-13.52785, 65.13758], - [-13.52921, 65.13504], - [-13.52743, 65.13426], - [-13.52842, 65.13273], - [-13.52721, 65.13272], - [-13.52634, 65.13195], - [-13.5267, 65.13092], - [-13.52489, 65.13065], - [-13.52402, 65.12987], - [-13.52498, 65.12912], - [-13.526218, 65.127291], - [-13.527799, 65.124169], - [-13.528126, 65.122856], - [-13.524572, 65.122487], - [-13.524563, 65.120677], - [-13.52524, 65.11889], - [-13.52465, 65.116691], - [-13.526552, 65.114963], - [-13.527516, 65.113815], - [-13.524464, 65.112797], - [-13.525124, 65.111131], - [-13.528568, 65.109611], - [-13.53045, 65.107946], - [-13.53018, 65.1064], - [-13.53337, 65.10362], - [-13.5338, 65.10132], - [-13.537767, 65.10123], - [-13.53846, 65.09932], - [-13.543066, 65.098321], - [-13.544188, 65.095435], - [-13.542018, 65.092727], - [-13.539863, 65.089754], - [-13.535924, 65.087434], - [-13.531507, 65.085233], - [-13.529412, 65.084208], - [-13.527996, 65.084178], - [-13.527119, 65.084363], - [-13.525505, 65.084327], - [-13.524585, 65.084559], - [-13.523027, 65.084601], - [-13.522758, 65.084756], - [-13.522433, 65.084965], - [-13.521569, 65.084685], - [-13.521088, 65.084685], - [-13.520918, 65.085054], - [-13.520522, 65.084923], - [-13.519805, 65.084977], - [-13.519708, 65.0849], - [-13.519537, 65.084846], - [-13.518764, 65.085104], - [-13.517852, 65.085212], - [-13.51753, 65.085664], - [-13.517069, 65.085425], - [-13.516468, 65.085479], - [-13.516457, 65.08566], - [-13.515921, 65.085981], - [-13.51546, 65.085709], - [-13.51405, 65.08553], - [-13.513035, 65.085181], - [-13.511125, 65.084964], - [-13.508518, 65.085031], - [-13.507005, 65.084571], - [-13.503626, 65.083987], - [-13.502907, 65.083938], - [-13.501716, 65.08354], - [-13.501415, 65.083156], - [-13.501888, 65.08297], - [-13.501984, 65.082627], - [-13.501737, 65.08184], - [-13.500793, 65.08133], - [-13.497993, 65.080358], - [-13.495858, 65.079259], - [-13.495064, 65.078251], - [-13.494807, 65.076438] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "11269", - "properties": { - "NAME_ENGLISH": "Northeastern Region", - "name": "Norðurland eystra", - "ISOCODE": "IS-6", - "density": 0, - "path": "/world/Iceland/Northeastern Region" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-17.981147, 66.546058], - [-17.981451, 66.545858], - [-17.981664, 66.545769], - [-17.981874, 66.545763], - [-17.982029, 66.54582], - [-17.982198, 66.545932], - [-17.982316, 66.546051], - [-17.982294, 66.546155], - [-17.982064, 66.54623], - [-17.981522, 66.546282], - [-17.981156, 66.546259], - [-17.981055, 66.546175], - [-17.981147, 66.546058] - ] - ], - [ - [ - [-17.994118, 66.528122], - [-17.994198, 66.528024], - [-17.994456, 66.527929], - [-17.99484, 66.527821], - [-17.995139, 66.527763], - [-17.99538, 66.527778], - [-17.995494, 66.527839], - [-17.99549, 66.527944], - [-17.995422, 66.528265], - [-17.995277, 66.528437], - [-17.995082, 66.528505], - [-17.994811, 66.528555], - [-17.994502, 66.528515], - [-17.994299, 66.52842], - [-17.994119, 66.528254], - [-17.994118, 66.528122] - ] - ], - [ - [ - [-17.977101, 66.546064], - [-17.977088, 66.545966], - [-17.977319, 66.545843], - [-17.977641, 66.54565], - [-17.977717, 66.545491], - [-17.97795, 66.54534], - [-17.978215, 66.545272], - [-17.978651, 66.545261], - [-17.978767, 66.545407], - [-17.978795, 66.545581], - [-17.978684, 66.545727], - [-17.978378, 66.545961], - [-17.977956, 66.546069], - [-17.977326, 66.546114], - [-17.977101, 66.546064] - ] - ], - [ - [ - [-18.681627, 67.150241], - [-18.682497, 67.150014], - [-18.683115, 67.15004], - [-18.683149, 67.150209], - [-18.683617, 67.150319], - [-18.683266, 67.150475], - [-18.683416, 67.150488], - [-18.683801, 67.150507], - [-18.684636, 67.150501], - [-18.68462, 67.150254], - [-18.685372, 67.150235], - [-18.685472, 67.150391], - [-18.685639, 67.150598], - [-18.685539, 67.150728], - [-18.684887, 67.150981], - [-18.684436, 67.150949], - [-18.684269, 67.1508], - [-18.681661, 67.15067], - [-18.681627, 67.150241] - ] - ], - [ - [ - [-17.36709, 66.114532], - [-17.369472, 66.113238], - [-17.370224, 66.113289], - [-17.371164, 66.113949], - [-17.372355, 66.114456], - [-17.37154, 66.116284], - [-17.37005, 66.116985], - [-17.367717, 66.11707], - [-17.367153, 66.116334], - [-17.366776, 66.115294], - [-17.36709, 66.114532] - ] - ], - [ - [ - [-17.832814, 66.170451], - [-17.832799, 66.170088], - [-17.833365, 66.169719], - [-17.833733, 66.168711], - [-17.83458, 66.167869], - [-17.836105, 66.166914], - [-17.837856, 66.166306], - [-17.839087, 66.16568], - [-17.839839, 66.165073], - [-17.840061, 66.164617], - [-17.839808, 66.164159], - [-17.839233, 66.163393], - [-17.839256, 66.162791], - [-17.840347, 66.162148], - [-17.840842, 66.161674], - [-17.841265, 66.161285], - [-17.841941, 66.160667], - [-17.842664, 66.160106], - [-17.84279, 66.159546], - [-17.842805, 66.159194], - [-17.8428, 66.158677], - [-17.842888, 66.158343], - [-17.843167, 66.157911], - [-17.843645, 66.15731], - [-17.844541, 66.156916], - [-17.845383, 66.156759], - [-17.846208, 66.156807], - [-17.847035, 66.156959], - [-17.847527, 66.157207], - [-17.847486, 66.157449], - [-17.847188, 66.157701], - [-17.846742, 66.157847], - [-17.846234, 66.158053], - [-17.845571, 66.158231], - [-17.84515, 66.158111], - [-17.845141, 66.157892], - [-17.8447, 66.157873], - [-17.844705, 66.158083], - [-17.845031, 66.158457], - [-17.847269, 66.15863], - [-17.848174, 66.158948], - [-17.848983, 66.15863], - [-17.848134, 66.158354], - [-17.848178, 66.157958], - [-17.848484, 66.157839], - [-17.849049, 66.157809], - [-17.850819, 66.157882], - [-17.852477, 66.157888], - [-17.852975, 66.15799], - [-17.853118, 66.158019], - [-17.854672, 66.158338], - [-17.855373, 66.158787], - [-17.855919, 66.158962], - [-17.858154, 66.159077], - [-17.864958, 66.158043], - [-17.867581, 66.15788], - [-17.870062, 66.157449], - [-17.873396, 66.15759], - [-17.877407, 66.157266], - [-17.877929, 66.157325], - [-17.877918, 66.157511], - [-17.876847, 66.158929], - [-17.876884, 66.160555], - [-17.880122, 66.161434], - [-17.880172, 66.162322], - [-17.882753, 66.163704], - [-17.883065, 66.164328], - [-17.882536, 66.164994], - [-17.878379, 66.165895], - [-17.876377, 66.166822], - [-17.876361, 66.167808], - [-17.873573, 66.168767], - [-17.870055, 66.169582], - [-17.86767, 66.170285], - [-17.86619, 66.170867], - [-17.864068, 66.171201], - [-17.862357, 66.171724], - [-17.859863, 66.172152], - [-17.857641, 66.172328], - [-17.856441, 66.17255], - [-17.852965, 66.172719], - [-17.849668, 66.172657], - [-17.847579, 66.172476], - [-17.845495, 66.172338], - [-17.842756, 66.172344], - [-17.841859, 66.172401], - [-17.840458, 66.172534], - [-17.838865, 66.172935], - [-17.836502, 66.172905], - [-17.836169, 66.172596], - [-17.834991, 66.172041], - [-17.834915, 66.171334], - [-17.832814, 66.170451] - ] - ], - [ - [ - [-17.978605, 66.538686], - [-17.978344, 66.537843], - [-17.978713, 66.536247], - [-17.97883, 66.535802], - [-17.979089, 66.534989], - [-17.979696, 66.534304], - [-17.979992, 66.534016], - [-17.979981, 66.533812], - [-17.97985, 66.533412], - [-17.980173, 66.532944], - [-17.98093, 66.532217], - [-17.981565, 66.531571], - [-17.981543, 66.530901], - [-17.981559, 66.530008], - [-17.98171, 66.529445], - [-17.981943, 66.528766], - [-17.981991, 66.528319], - [-17.981587, 66.528344], - [-17.981225, 66.528371], - [-17.981203, 66.528373], - [-17.981068, 66.528306], - [-17.981067, 66.528079], - [-17.981274, 66.528036], - [-17.981553, 66.52798], - [-17.981706, 66.527828], - [-17.981654, 66.527648], - [-17.98126, 66.527578], - [-17.980712, 66.526678], - [-17.980858, 66.526456], - [-17.981063, 66.526371], - [-17.981397, 66.526232], - [-17.981681, 66.52625], - [-17.981984, 66.526291], - [-17.982043, 66.526366], - [-17.982087, 66.526421], - [-17.982089, 66.526613], - [-17.982254, 66.526669], - [-17.982434, 66.52683], - [-17.982447, 66.526979], - [-17.982682, 66.527259], - [-17.983133, 66.527516], - [-17.984048, 66.52771], - [-17.984893, 66.527716], - [-17.985741, 66.527615], - [-17.986862, 66.527587], - [-17.988242, 66.527459], - [-17.988963, 66.527342], - [-17.989101, 66.527085], - [-17.989301, 66.527015], - [-17.989657, 66.526932], - [-17.989707, 66.52692], - [-17.990177, 66.526946], - [-17.990358, 66.527089], - [-17.990356, 66.527144], - [-17.990352, 66.527253], - [-17.990365, 66.527418], - [-17.990587, 66.527513], - [-17.990811, 66.527546], - [-17.991011, 66.527476], - [-17.991082, 66.527462], - [-17.991298, 66.52742], - [-17.991631, 66.527426], - [-17.991892, 66.527537], - [-17.991975, 66.527671], - [-17.992129, 66.527742], - [-17.99252, 66.527784], - [-17.992602, 66.52796], - [-17.992629, 66.52803], - [-17.992673, 66.528145], - [-17.993007, 66.528227], - [-17.993153, 66.528494], - [-17.993196, 66.52866], - [-17.993221, 66.528761], - [-17.993223, 66.529059], - [-17.993419, 66.529385], - [-17.993531, 66.529525], - [-17.993619, 66.529637], - [-17.993815, 66.529988], - [-17.993846, 66.530351], - [-17.994059, 66.530774], - [-17.994364, 66.531346], - [-17.995096, 66.531716], - [-17.996049, 66.532167], - [-17.997005, 66.532528], - [-17.997211, 66.532666], - [-17.997497, 66.532857], - [-17.998156, 66.5331], - [-17.998917, 66.533195], - [-17.999705, 66.533195], - [-18.000658, 66.533182], - [-18.001069, 66.533147], - [-18.001381, 66.533125], - [-18.001707, 66.533027], - [-18.001896, 66.533095], - [-18.00166, 66.533312], - [-18.001728, 66.533394], - [-18.001987, 66.533505], - [-18.001975, 66.533795], - [-18.001908, 66.533976], - [-18.001868, 66.534085], - [-18.001597, 66.534302], - [-18.001617, 66.534322], - [-18.001723, 66.534427], - [-18.002112, 66.534572], - [-18.002946, 66.53493], - [-18.003491, 66.535028], - [-18.004217, 66.535105], - [-18.004801, 66.535141], - [-18.005198, 66.535072], - [-18.005352, 66.534816], - [-18.005353, 66.534665], - [-18.005528, 66.534575], - [-18.005684, 66.534576], - [-18.005836, 66.53481], - [-18.005679, 66.53499], - [-18.005636, 66.535101], - [-18.005344, 66.535307], - [-18.005471, 66.535427], - [-18.006002, 66.535592], - [-18.006954, 66.535693], - [-18.007953, 66.535804], - [-18.008526, 66.535808], - [-18.00899, 66.535752], - [-18.009307, 66.535689], - [-18.009449, 66.535747], - [-18.009383, 66.535899], - [-18.009162, 66.53604], - [-18.009276, 66.536333], - [-18.009552, 66.536581], - [-18.00984, 66.536766], - [-18.010402, 66.537004], - [-18.01073, 66.537093], - [-18.010792, 66.537127], - [-18.010787, 66.537255], - [-18.010877, 66.537403], - [-18.011145, 66.537645], - [-18.011331, 66.537688], - [-18.011684, 66.537982], - [-18.012089, 66.538164], - [-18.012272, 66.538291], - [-18.013196, 66.538555], - [-18.013327, 66.538593], - [-18.013498, 66.538716], - [-18.013617, 66.538747], - [-18.013892, 66.538734], - [-18.01548, 66.538286], - [-18.015523, 66.538274], - [-18.015954, 66.538256], - [-18.016804, 66.53847], - [-18.016698, 66.538513], - [-18.016468, 66.538473], - [-18.015825, 66.538336], - [-18.015579, 66.538372], - [-18.015296, 66.5384], - [-18.015281, 66.538431], - [-18.01537, 66.538476], - [-18.015494, 66.538539], - [-18.01515, 66.538636], - [-18.015093, 66.538651], - [-18.014986, 66.538682], - [-18.014923, 66.538699], - [-18.014809, 66.538638], - [-18.014482, 66.538736], - [-18.014871, 66.53889], - [-18.014994, 66.538939], - [-18.015029, 66.538961], - [-18.015285, 66.53889], - [-18.015419, 66.538852], - [-18.015506, 66.5389], - [-18.01518, 66.539005], - [-18.015353, 66.539069], - [-18.015356, 66.53907], - [-18.01537, 66.53907], - [-18.015374, 66.539071], - [-18.016037, 66.539092], - [-18.016458, 66.539095], - [-18.016888, 66.539094], - [-18.016671, 66.538903], - [-18.016789, 66.538868], - [-18.017084, 66.539109], - [-18.0173, 66.539093], - [-18.017751, 66.539021], - [-18.018258, 66.538895], - [-18.018385, 66.538788], - [-18.018487, 66.538688], - [-18.018565, 66.538599], - [-18.01856, 66.53853], - [-18.018495, 66.538488], - [-18.018406, 66.538464], - [-18.018279, 66.538436], - [-18.01814, 66.538357], - [-18.018045, 66.538312], - [-18.017854, 66.538221], - [-18.017663, 66.538125], - [-18.017403, 66.538063], - [-18.017061, 66.538005], - [-18.016965, 66.537971], - [-18.016742, 66.537931], - [-18.016721, 66.537898], - [-18.016776, 66.537839], - [-18.016807, 66.537794], - [-18.016913, 66.537771], - [-18.016951, 66.537776], - [-18.016987, 66.537781], - [-18.01701, 66.537784], - [-18.017105, 66.537814], - [-18.01718, 66.537838], - [-18.017306, 66.537878], - [-18.017514, 66.537906], - [-18.017797, 66.537953], - [-18.018065, 66.537981], - [-18.018498, 66.538005], - [-18.018872, 66.538031], - [-18.019357, 66.53807], - [-18.01958, 66.538068], - [-18.019954, 66.537906], - [-18.020509, 66.537994], - [-18.021287, 66.538521], - [-18.021545, 66.538853], - [-18.021937, 66.539237], - [-18.021638, 66.539545], - [-18.021691, 66.539791], - [-18.021575, 66.540009], - [-18.021559, 66.540013], - [-18.021375, 66.540068], - [-18.021108, 66.540082], - [-18.020756, 66.539994], - [-18.019642, 66.540144], - [-18.019574, 66.540238], - [-18.01974, 66.54038], - [-18.019806, 66.540616], - [-18.020094, 66.540947], - [-18.020563, 66.541116], - [-18.020915, 66.541084], - [-18.021214, 66.540978], - [-18.021911, 66.540847], - [-18.022038, 66.54085], - [-18.022436, 66.540859], - [-18.022429, 66.541042], - [-18.022156, 66.54116], - [-18.021807, 66.541308], - [-18.021877, 66.541441], - [-18.022209, 66.541516], - [-18.022373, 66.541529], - [-18.022457, 66.541598], - [-18.02233, 66.541632], - [-18.022241, 66.541693], - [-18.022075, 66.541746], - [-18.021938, 66.541791], - [-18.021664, 66.541961], - [-18.021341, 66.542254], - [-18.020974, 66.542586], - [-18.021098, 66.543055], - [-18.021267, 66.543179], - [-18.021429, 66.543218], - [-18.021668, 66.543293], - [-18.021954, 66.543367], - [-18.021998, 66.543479], - [-18.021776, 66.543482], - [-18.021419, 66.543483], - [-18.021149, 66.543486], - [-18.020869, 66.543488], - [-18.020743, 66.54351], - [-18.020489, 66.543585], - [-18.020484, 66.543701], - [-18.020596, 66.543805], - [-18.020818, 66.54381], - [-18.021146, 66.543805], - [-18.021183, 66.543837], - [-18.021194, 66.543847], - [-18.02123, 66.543878], - [-18.021171, 66.543905], - [-18.021073, 66.543939], - [-18.020876, 66.543937], - [-18.020822, 66.543937], - [-18.020705, 66.543986], - [-18.020703, 66.54404], - [-18.020795, 66.54416], - [-18.020882, 66.54438], - [-18.021225, 66.544497], - [-18.021514, 66.544514], - [-18.021969, 66.544471], - [-18.022188, 66.544538], - [-18.022042, 66.544579], - [-18.021761, 66.5446], - [-18.021538, 66.544633], - [-18.021576, 66.544668], - [-18.02173, 66.544673], - [-18.02203, 66.544648], - [-18.022301, 66.544623], - [-18.022326, 66.544622], - [-18.022648, 66.544613], - [-18.022701, 66.54469], - [-18.022447, 66.544711], - [-18.022171, 66.544733], - [-18.021648, 66.544776], - [-18.021511, 66.544845], - [-18.021653, 66.544899], - [-18.021796, 66.544962], - [-18.022105, 66.544948], - [-18.022483, 66.544908], - [-18.022621, 66.544889], - [-18.022851, 66.544857], - [-18.023102, 66.54487], - [-18.023079, 66.544958], - [-18.02274, 66.544983], - [-18.022701, 66.544988], - [-18.022149, 66.545056], - [-18.022032, 66.545098], - [-18.022331, 66.5451], - [-18.022696, 66.545125], - [-18.022757, 66.545126], - [-18.023072, 66.545131], - [-18.023041, 66.5452], - [-18.022915, 66.545207], - [-18.022784, 66.545205], - [-18.022616, 66.545201], - [-18.022633, 66.545267], - [-18.02272, 66.545267], - [-18.0228, 66.545265], - [-18.022971, 66.545261], - [-18.023309, 66.545256], - [-18.023501, 66.545257], - [-18.023509, 66.545314], - [-18.023256, 66.545355], - [-18.022937, 66.545376], - [-18.02283, 66.545387], - [-18.022792, 66.545391], - [-18.022835, 66.545407], - [-18.022887, 66.545426], - [-18.023089, 66.545435], - [-18.023213, 66.545474], - [-18.023153, 66.545535], - [-18.022997, 66.545588], - [-18.022862, 66.545587], - [-18.022795, 66.545604], - [-18.022667, 66.545636], - [-18.022509, 66.545727], - [-18.022646, 66.546065], - [-18.02282, 66.546678], - [-18.0235, 66.547058], - [-18.024113, 66.54722], - [-18.024565, 66.547074], - [-18.02543, 66.547129], - [-18.025937, 66.547488], - [-18.026099, 66.547795], - [-18.025773, 66.547892], - [-18.025335, 66.547851], - [-18.024859, 66.547807], - [-18.024572, 66.548161], - [-18.024952, 66.548598], - [-18.02596, 66.548821], - [-18.026758, 66.548698], - [-18.026794, 66.548709], - [-18.027272, 66.548859], - [-18.027681, 66.549187], - [-18.027938, 66.549594], - [-18.027507, 66.549871], - [-18.027203, 66.550004], - [-18.026747, 66.550258], - [-18.026213, 66.55061], - [-18.026128, 66.550876], - [-18.026047, 66.551386], - [-18.025835, 66.551437], - [-18.025428, 66.551461], - [-18.025062, 66.551458], - [-18.024838, 66.551494], - [-18.024453, 66.551616], - [-18.023601, 66.551961], - [-18.023253, 66.552146], - [-18.022542, 66.552586], - [-18.02204, 66.553016], - [-18.021691, 66.553238], - [-18.021427, 66.553289], - [-18.021059, 66.553307], - [-18.020654, 66.553279], - [-18.020262, 66.55325], - [-18.019624, 66.553158], - [-18.019075, 66.553112], - [-18.018552, 66.553104], - [-18.017855, 66.553162], - [-18.017171, 66.553236], - [-18.01684, 66.553312], - [-18.016441, 66.553472], - [-18.015814, 66.55376], - [-18.0152, 66.554033], - [-18.014559, 66.554347], - [-18.014277, 66.554528], - [-18.014046, 66.55473], - [-18.01366, 66.555195], - [-18.013508, 66.556025], - [-18.013781, 66.556827], - [-18.01372, 66.557374], - [-18.013413, 66.558902], - [-18.013808, 66.559945], - [-18.015166, 66.560968], - [-18.016382, 66.561668], - [-18.017023, 66.561957], - [-18.017813, 66.56242], - [-18.018446, 66.562931], - [-18.018989, 66.563355], - [-18.019809, 66.56383], - [-18.020836, 66.564616], - [-18.02134, 66.565226], - [-18.021819, 66.565801], - [-18.021785, 66.565999], - [-18.021594, 66.566191], - [-18.021376, 66.566289], - [-18.020942, 66.56639], - [-18.020431, 66.566437], - [-18.019921, 66.566438], - [-18.019223, 66.566348], - [-18.018076, 66.566147], - [-18.017201, 66.565948], - [-18.01663, 66.565778], - [-18.016004, 66.565562], - [-18.015739, 66.565398], - [-18.015621, 66.565244], - [-18.015551, 66.564991], - [-18.015519, 66.564653], - [-18.015446, 66.564504], - [-18.015279, 66.564422], - [-18.014942, 66.564352], - [-18.014614, 66.56435], - [-18.014193, 66.564415], - [-18.013876, 66.564413], - [-18.013381, 66.56432], - [-18.012838, 66.564169], - [-18.012373, 66.563984], - [-18.012052, 66.56382], - [-18.011876, 66.563636], - [-18.01173, 66.563337], - [-18.011492, 66.563049], - [-18.011049, 66.56266], - [-18.010489, 66.562234], - [-18.009971, 66.56173], - [-18.009655, 66.561441], - [-18.009222, 66.561109], - [-18.008933, 66.56081], - [-18.008351, 66.559614], - [-18.006839, 66.55854], - [-18.004728, 66.55771], - [-18.001599, 66.556675], - [-18.000163, 66.555292], - [-17.999229, 66.554461], - [-17.998371, 66.553794], - [-17.996547, 66.553175], - [-17.994994, 66.552453], - [-17.993228, 66.551616], - [-17.99244, 66.551164], - [-17.991576, 66.550415], - [-17.991101, 66.549989], - [-17.990582, 66.549206], - [-17.989318, 66.548145], - [-17.988182, 66.547049], - [-17.984472, 66.545471], - [-17.983082, 66.544851], - [-17.982116, 66.544191], - [-17.981582, 66.543283], - [-17.981466, 66.543008], - [-17.981303, 66.542185], - [-17.980687, 66.541124], - [-17.979403, 66.539827], - [-17.978605, 66.538686] - ] - ], - [ - [ - [-18.34971, 65.983986], - [-18.350138, 65.983566], - [-18.351888, 65.9822], - [-18.352447, 65.981882], - [-18.352618, 65.98157], - [-18.352723, 65.981244], - [-18.353065, 65.98098], - [-18.354024, 65.980483], - [-18.355532, 65.98011], - [-18.356198, 65.979765], - [-18.356365, 65.979672], - [-18.356372, 65.979666], - [-18.357284, 65.979191], - [-18.357861, 65.979118], - [-18.358139, 65.979129], - [-18.35841, 65.979139], - [-18.359822, 65.979194], - [-18.360759, 65.979173], - [-18.36118, 65.979133], - [-18.361999, 65.978971], - [-18.362331, 65.978799], - [-18.362347, 65.97879], - [-18.362374, 65.978788], - [-18.362807, 65.978751], - [-18.363127, 65.978664], - [-18.363489, 65.978447], - [-18.363984, 65.978319], - [-18.364315, 65.97803], - [-18.364705, 65.97769], - [-18.364856, 65.977626], - [-18.364949, 65.977587], - [-18.36536, 65.977545], - [-18.366229, 65.977458], - [-18.366648, 65.977381], - [-18.366728, 65.977366], - [-18.366741, 65.977364], - [-18.367863, 65.977158], - [-18.368118, 65.977164], - [-18.368236, 65.977199], - [-18.369369, 65.977537], - [-18.370471, 65.977758], - [-18.370688, 65.977806], - [-18.370785, 65.977828], - [-18.371732, 65.977936], - [-18.373037, 65.977903], - [-18.376201, 65.977783], - [-18.376797, 65.977796], - [-18.377274, 65.977833], - [-18.378112, 65.977897], - [-18.378942, 65.977909], - [-18.379631, 65.977953], - [-18.380013, 65.978028], - [-18.380527, 65.978249], - [-18.380844, 65.978385], - [-18.381245, 65.978515], - [-18.381576, 65.978565], - [-18.382001, 65.978629], - [-18.382281, 65.978734], - [-18.382447, 65.978852], - [-18.382639, 65.979009], - [-18.382754, 65.979095], - [-18.382799, 65.979148], - [-18.382765, 65.979177], - [-18.382747, 65.979187], - [-18.382726, 65.979198], - [-18.382647, 65.979211], - [-18.382582, 65.979198], - [-18.382493, 65.97912], - [-18.382391, 65.979035], - [-18.38225, 65.97892], - [-18.382116, 65.97884], - [-18.382038, 65.978808], - [-18.381837, 65.978791], - [-18.381395, 65.978749], - [-18.380953, 65.978705], - [-18.380589, 65.978675], - [-18.380501, 65.978674], - [-18.380478, 65.978674], - [-18.380354, 65.978671], - [-18.380334, 65.978692], - [-18.380366, 65.978711], - [-18.380411, 65.978761], - [-18.380436, 65.978807], - [-18.380454, 65.978847], - [-18.380427, 65.978878], - [-18.380348, 65.97889], - [-18.380349, 65.978894], - [-18.380119, 65.978907], - [-18.379861, 65.979364], - [-18.379928, 65.97942], - [-18.379999, 65.97942], - [-18.380269, 65.979421], - [-18.380268, 65.979451], - [-18.380009, 65.97945], - [-18.379999, 65.979451], - [-18.379892, 65.979466], - [-18.379852, 65.979508], - [-18.379817, 65.97963], - [-18.379792, 65.979821], - [-18.379737, 65.979943], - [-18.379793, 65.980065], - [-18.379881, 65.980201], - [-18.380081, 65.980292], - [-18.38034, 65.98037], - [-18.381315, 65.980565], - [-18.381759, 65.980668], - [-18.381852, 65.980672], - [-18.381889, 65.980674], - [-18.38204, 65.980648], - [-18.382185, 65.980579], - [-18.382344, 65.980458], - [-18.382648, 65.980265], - [-18.382827, 65.980136], - [-18.382947, 65.980038], - [-18.382981, 65.979948], - [-18.38293, 65.979913], - [-18.382704, 65.979846], - [-18.382574, 65.979829], - [-18.382438, 65.9798], - [-18.382354, 65.979775], - [-18.382368, 65.979728], - [-18.38244, 65.979712], - [-18.382557, 65.97971], - [-18.382706, 65.979737], - [-18.382952, 65.979804], - [-18.383027, 65.979828], - [-18.383056, 65.979837], - [-18.383062, 65.979836], - [-18.38318, 65.979832], - [-18.383292, 65.979768], - [-18.383595, 65.979618], - [-18.383872, 65.979484], - [-18.384057, 65.979363], - [-18.384149, 65.979339], - [-18.384305, 65.979337], - [-18.384319, 65.97936], - [-18.384324, 65.979369], - [-18.384304, 65.979412], - [-18.384026, 65.979562], - [-18.383551, 65.979817], - [-18.383313, 65.979954], - [-18.382766, 65.980425], - [-18.382347, 65.980745], - [-18.382433, 65.980864], - [-18.383049, 65.981478], - [-18.382865, 65.981745], - [-18.382864, 65.981746], - [-18.382929, 65.982061], - [-18.383475, 65.982512], - [-18.384112, 65.982793], - [-18.384903, 65.982921], - [-18.385494, 65.982959], - [-18.386459, 65.983104], - [-18.387279, 65.983303], - [-18.388154, 65.983618], - [-18.389121, 65.983748], - [-18.391377, 65.983928], - [-18.392036, 65.983968], - [-18.393244, 65.984131], - [-18.39427, 65.984362], - [-18.395017, 65.984574], - [-18.395605, 65.984642], - [-18.39623, 65.984695], - [-18.396738, 65.98486], - [-18.397329, 65.985241], - [-18.398112, 65.985454], - [-18.398695, 65.985563], - [-18.398788, 65.985679], - [-18.398669, 65.98582], - [-18.398415, 65.986257], - [-18.398565, 65.986844], - [-18.398909, 65.987248], - [-18.399682, 65.987561], - [-18.401219, 65.987735], - [-18.401361, 65.987752], - [-18.402149, 65.987841], - [-18.40314, 65.988193], - [-18.403621, 65.988936], - [-18.402647, 65.98944], - [-18.402027, 65.990019], - [-18.402334, 65.990659], - [-18.403537, 65.991042], - [-18.404027, 65.991436], - [-18.403874, 65.9919], - [-18.403969, 65.992394], - [-18.403629, 65.993235], - [-18.402521, 65.993681], - [-18.402069, 65.994391], - [-18.401912, 65.994986], - [-18.402111, 65.995626], - [-18.402278, 65.996106], - [-18.401268, 65.996382], - [-18.400008, 65.996717], - [-18.399309, 65.997061], - [-18.399106, 65.997328], - [-18.399143, 65.997657], - [-18.399361, 65.997917], - [-18.399308, 65.998087], - [-18.398713, 65.998433], - [-18.398618, 65.998674], - [-18.398686, 65.999046], - [-18.398901, 65.999334], - [-18.399842, 65.999735], - [-18.39993, 65.999773], - [-18.400082, 65.999815], - [-18.400018, 65.999868], - [-18.399724, 66.000006], - [-18.399169, 66.000281], - [-18.398956, 66.000663], - [-18.398809, 66.001059], - [-18.3987, 66.001457], - [-18.398796, 66.001885], - [-18.398742, 66.002069], - [-18.398249, 66.002446], - [-18.39793, 66.002826], - [-18.397926, 66.00321], - [-18.398203, 66.003586], - [-18.399159, 66.004158], - [-18.400262, 66.004675], - [-18.401386, 66.005335], - [-18.4019, 66.005786], - [-18.402872, 66.006859], - [-18.402612, 66.007664], - [-18.40303, 66.008123], - [-18.403813, 66.008954], - [-18.404257, 66.009424], - [-18.405136, 66.009613], - [-18.405424, 66.009908], - [-18.405229, 66.010234], - [-18.40426, 66.010786], - [-18.404415, 66.011002], - [-18.405493, 66.011542], - [-18.405646, 66.011881], - [-18.405499, 66.012447], - [-18.405752, 66.012992], - [-18.40645, 66.013373], - [-18.407056, 66.013597], - [-18.407422, 66.013789], - [-18.407633, 66.013925], - [-18.407945, 66.014341], - [-18.408338, 66.014702], - [-18.408571, 66.015018], - [-18.40867, 66.015378], - [-18.409202, 66.015555], - [-18.409786, 66.015753], - [-18.410762, 66.016367], - [-18.410835, 66.016705], - [-18.410771, 66.017151], - [-18.410603, 66.017499], - [-18.410801, 66.018208], - [-18.411179, 66.018527], - [-18.41143, 66.018777], - [-18.411758, 66.018934], - [-18.411933, 66.019018], - [-18.412649, 66.019337], - [-18.413382, 66.019604], - [-18.414004, 66.019811], - [-18.414282, 66.019872], - [-18.414456, 66.01991], - [-18.414744, 66.020205], - [-18.415264, 66.020391], - [-18.415365, 66.020421], - [-18.41518, 66.020518], - [-18.414375, 66.020519], - [-18.413944, 66.020611], - [-18.413743, 66.020879], - [-18.413545, 66.021431], - [-18.41377, 66.021649], - [-18.414779, 66.022064], - [-18.41545, 66.022347], - [-18.415269, 66.023051], - [-18.415503, 66.023357], - [-18.415803, 66.023528], - [-18.415926, 66.023598], - [-18.416405, 66.023631], - [-18.416502, 66.024145], - [-18.416646, 66.024204], - [-18.416953, 66.024332], - [-18.417622, 66.024367], - [-18.418052, 66.024303], - [-18.418268, 66.02445], - [-18.418342, 66.0245], - [-18.418149, 66.024728], - [-18.418126, 66.024819], - [-18.418091, 66.024957], - [-18.41774, 66.025335], - [-18.417663, 66.025391], - [-18.418047, 66.025719], - [-18.418149, 66.025789], - [-18.418469, 66.026004], - [-18.418992, 66.026572], - [-18.419411, 66.026991], - [-18.419463, 66.027043], - [-18.419992, 66.027328], - [-18.420387, 66.027645], - [-18.420116, 66.027827], - [-18.419939, 66.028179], - [-18.420133, 66.02834], - [-18.420234, 66.028384], - [-18.419976, 66.028508], - [-18.419856, 66.028648], - [-18.42048, 66.029073], - [-18.420486, 66.029357], - [-18.420148, 66.02958], - [-18.419365, 66.029709], - [-18.418736, 66.029684], - [-18.418045, 66.029573], - [-18.41747, 66.029392], - [-18.41691, 66.028685], - [-18.416453, 66.028363], - [-18.415939, 66.028226], - [-18.41475, 66.028221], - [-18.414013, 66.028223], - [-18.413084, 66.028064], - [-18.412017, 66.027534], - [-18.411408, 66.02731], - [-18.410436, 66.027208], - [-18.409389, 66.027176], - [-18.408927, 66.027254], - [-18.408583, 66.027533], - [-18.408411, 66.02783], - [-18.408382, 66.028114], - [-18.408283, 66.028768], - [-18.408206, 66.028824], - [-18.40803, 66.028821], - [-18.407668, 66.028601], - [-18.407023, 66.028391], - [-18.406456, 66.02811], - [-18.40658, 66.027927], - [-18.406425, 66.027739], - [-18.406331, 66.027623], - [-18.406956, 66.027335], - [-18.406951, 66.027036], - [-18.407573, 66.026976], - [-18.407816, 66.026901], - [-18.407862, 66.026695], - [-18.407451, 66.026246], - [-18.407281, 66.0262], - [-18.40626, 66.025912], - [-18.405898, 66.025677], - [-18.405797, 66.025648], - [-18.40557, 66.0258], - [-18.405275, 66.025938], - [-18.405135, 66.02595], - [-18.405126, 66.025693], - [-18.404667, 66.025387], - [-18.404649, 66.025215], - [-18.404658, 66.02513], - [-18.404183, 66.024979], - [-18.403735, 66.024544], - [-18.4036, 66.024513], - [-18.402986, 66.024689], - [-18.402702, 66.024726], - [-18.402562, 66.024709], - [-18.402757, 66.024528], - [-18.402819, 66.024272], - [-18.402305, 66.023807], - [-18.401974, 66.023275], - [-18.401499, 66.023124], - [-18.40087, 66.023099], - [-18.400399, 66.023262], - [-18.40004, 66.023342], - [-18.399936, 66.023325], - [-18.400364, 66.022563], - [-18.400429, 66.022279], - [-18.40003, 66.022058], - [-18.399979, 66.021887], - [-18.399895, 66.021672], - [-18.398891, 66.021212], - [-18.398735, 66.021011], - [-18.398686, 66.020825], - [-18.398138, 66.020701], - [-18.397142, 66.020499], - [-18.396054, 66.019825], - [-18.39543, 66.01943], - [-18.39553, 66.019146], - [-18.395368, 66.019001], - [-18.39492, 66.018937], - [-18.394779, 66.018934], - [-18.394665, 66.01869], - [-18.39386, 66.018349], - [-18.393805, 66.018191], - [-18.393666, 66.017846], - [-18.393185, 66.017738], - [-18.392749, 66.017561], - [-18.392676, 66.017231], - [-18.392448, 66.017071], - [-18.392133, 66.017065], - [-18.39172, 66.017001], - [-18.391581, 66.016984], - [-18.391319, 66.017151], - [-18.391245, 66.017207], - [-18.390933, 66.017173], - [-18.390688, 66.016827], - [-18.390121, 66.016547], - [-18.389958, 66.016088], - [-18.389451, 66.015566], - [-18.388622, 66.014768], - [-18.388295, 66.014534], - [-18.387777, 66.014469], - [-18.386832, 66.014273], - [-18.386325, 66.013931], - [-18.385952, 66.013825], - [-18.384797, 66.013477], - [-18.383772, 66.012806], - [-18.38378, 66.012805], - [-18.383704, 66.012518], - [-18.383159, 66.012367], - [-18.383069, 66.012237], - [-18.382262, 66.011568], - [-18.381636, 66.011172], - [-18.38068, 66.0106], - [-18.380262, 66.010222], - [-18.380135, 66.009764], - [-18.380134, 66.009436], - [-18.380054, 66.009178], - [-18.379888, 66.008762], - [-18.379868, 66.008263], - [-18.378956, 66.007606], - [-18.378526, 66.007371], - [-18.37841, 66.007127], - [-18.378185, 66.006938], - [-18.377517, 66.006612], - [-18.376702, 66.00637], - [-18.375882, 66.006171], - [-18.375493, 66.005879], - [-18.375156, 66.005746], - [-18.374595, 66.005408], - [-18.374039, 66.005028], - [-18.373588, 66.00465], - [-18.373215, 66.004202], - [-18.372755, 66.003894], - [-18.371675, 66.003506], - [-18.371216, 66.003212], - [-18.370802, 66.002821], - [-18.370428, 66.002701], - [-18.369691, 66.002388], - [-18.369144, 66.002265], - [-18.36867, 66.002114], - [-18.368087, 66.001648], - [-18.367678, 66.001214], - [-18.366769, 66.000514], - [-18.366262, 66.000335], - [-18.365414, 66.00042], - [-18.36503, 66.000399], - [-18.364968, 66.00034], - [-18.365806, 66.000013], - [-18.365612, 65.999853], - [-18.364576, 65.999768], - [-18.364546, 65.999705], - [-18.364445, 65.999489], - [-18.363965, 65.999396], - [-18.363454, 65.999259], - [-18.363237, 65.998998], - [-18.363297, 65.998757], - [-18.363157, 65.99874], - [-18.362661, 65.998803], - [-18.362597, 65.998745], - [-18.362663, 65.998447], - [-18.362837, 65.998108], - [-18.362172, 65.997783], - [-18.361361, 65.997498], - [-18.361001, 65.99725], - [-18.36076, 65.996875], - [-18.360473, 65.9966], - [-18.359883, 65.996233], - [-18.359524, 65.99597], - [-18.358818, 65.995701], - [-18.357932, 65.995458], - [-18.357491, 65.995336], - [-18.357097, 65.995074], - [-18.356741, 65.994782], - [-18.356274, 65.994575], - [-18.355623, 65.99445], - [-18.355264, 65.994187], - [-18.354832, 65.99398], - [-18.354955, 65.993796], - [-18.3549, 65.993639], - [-18.354526, 65.993547], - [-18.354001, 65.993552], - [-18.353936, 65.993494], - [-18.354197, 65.993341], - [-18.354925, 65.993084], - [-18.355299, 65.992833], - [-18.355318, 65.992649], - [-18.354403, 65.992034], - [-18.353752, 65.991553], - [-18.353493, 65.991007], - [-18.352777, 65.990495], - [-18.35278, 65.990125], - [-18.352845, 65.989841], - [-18.352544, 65.989365], - [-18.352029, 65.988929], - [-18.351544, 65.98855], - [-18.351216, 65.988017], - [-18.351088, 65.987217], - [-18.350727, 65.986654], - [-18.350163, 65.986018], - [-18.349928, 65.985586], - [-18.349825, 65.985243], - [-18.349605, 65.984327], - [-18.34971, 65.983986] - ] - ], - [ - [ - [-14.529574, 66.37791], - [-14.53016, 66.37734], - [-14.535, 66.37479], - [-14.53821, 66.37327], - [-14.54013, 66.37276], - [-14.54333, 66.37188], - [-14.5491, 66.36998], - [-14.5536, 66.36782], - [-14.56066, 66.36464], - [-14.56833, 66.36249], - [-14.585125, 66.361039], - [-14.60536, 66.35798], - [-14.61526, 66.35635], - [-14.61686, 66.35571], - [-14.6188, 66.3538], - [-14.621969, 66.35323], - [-14.63091, 66.35319], - [-14.65834, 66.34966], - [-14.67363, 66.34893], - [-14.68065, 66.34755], - [-14.68065, 66.34703], - [-14.681568, 66.346692], - [-14.682446, 66.346331], - [-14.683736, 66.345947], - [-14.684854, 66.345599], - [-14.685737, 66.34523], - [-14.686863, 66.344919], - [-14.690391, 66.343953], - [-14.694075, 66.343477], - [-14.69767, 66.343108], - [-14.699514, 66.342481], - [-14.701195, 66.34158], - [-14.70277, 66.340901], - [-14.704826, 66.340249], - [-14.706182, 66.339903], - [-14.723781, 66.337322], - [-14.725924, 66.33684], - [-14.728189, 66.336203], - [-14.728997, 66.335814], - [-14.730737, 66.335325], - [-14.73334, 66.334742], - [-14.737055, 66.333964], - [-14.741447, 66.333134], - [-14.749163, 66.331829], - [-14.750323, 66.33149], - [-14.752223, 66.33086], - [-14.753416, 66.330138], - [-14.754259, 66.329768], - [-14.756316, 66.329647], - [-14.761654, 66.328153], - [-14.762725, 66.328102], - [-14.763282, 66.328097], - [-14.767773, 66.329023], - [-14.769281, 66.329012], - [-14.77017, 66.329088], - [-14.771222, 66.329017], - [-14.775862, 66.328548], - [-14.778912, 66.327478], - [-14.779031, 66.32722], - [-14.778452, 66.32706], - [-14.778484, 66.326888], - [-14.778677, 66.32678], - [-14.77915, 66.327162], - [-14.779106, 66.326647], - [-14.779578, 66.326841], - [-14.779814, 66.32678], - [-14.779718, 66.326604], - [-14.780265, 66.326733], - [-14.780512, 66.326966], - [-14.781316, 66.326825], - [-14.78205, 66.3265], - [-14.782556, 66.325927], - [-14.782892, 66.325744], - [-14.784946, 66.325493], - [-14.786424, 66.325175], - [-14.788144, 66.324747], - [-14.788793, 66.32445], - [-14.789088, 66.324113], - [-14.789545, 66.324014], - [-14.79014, 66.323884], - [-14.791597, 66.323481], - [-14.792944, 66.323293], - [-14.795817, 66.32204], - [-14.7974, 66.321085], - [-14.797503, 66.320823], - [-14.79737, 66.320488], - [-14.796996, 66.320478], - [-14.796714, 66.32037], - [-14.796539, 66.320343], - [-14.796601, 66.320086], - [-14.796802, 66.320038], - [-14.797253, 66.320068], - [-14.797509, 66.320154], - [-14.797597, 66.320224], - [-14.79787, 66.320287], - [-14.79873, 66.319714], - [-14.799259, 66.318803], - [-14.799506, 66.318432], - [-14.799957, 66.318062], - [-14.801759, 66.317782], - [-14.804162, 66.317519], - [-14.806812, 66.316166], - [-14.807928, 66.315679], - [-14.80949, 66.31503], - [-14.81204, 66.3135], - [-14.813238, 66.312951], - [-14.815534, 66.31214], - [-14.81683, 66.31171], - [-14.81783, 66.311227], - [-14.81842, 66.31095], - [-14.81945, 66.310554], - [-14.82033, 66.31031], - [-14.821188, 66.309916], - [-14.82193, 66.30967], - [-14.823033, 66.309235], - [-14.82352, 66.30891], - [-14.825887, 66.307972], - [-14.82798, 66.30687], - [-14.828698, 66.306554], - [-14.82926, 66.30636], - [-14.831133, 66.305665], - [-14.832217, 66.305131], - [-14.832217, 66.304915], - [-14.832861, 66.304941], - [-14.835747, 66.303988], - [-14.841769, 66.303897], - [-14.842757, 66.303882], - [-14.844559, 66.303696], - [-14.848411, 66.302614], - [-14.851983, 66.302386], - [-14.8528, 66.30229], - [-14.854859, 66.301402], - [-14.85631, 66.29999], - [-14.856865, 66.299233], - [-14.858345, 66.298763], - [-14.861435, 66.298556], - [-14.864646, 66.299042], - [-14.864912, 66.299082], - [-14.866977, 66.298889], - [-14.867487, 66.298841], - [-14.868431, 66.298949], - [-14.869804, 66.298996], - [-14.872787, 66.299315], - [-14.874804, 66.299339], - [-14.876113, 66.299361], - [-14.877432, 66.299289], - [-14.87924, 66.298395], - [-14.880018, 66.298084], - [-14.881922, 66.297659], - [-14.883607, 66.297614], - [-14.886734, 66.29751], - [-14.887852, 66.297381], - [-14.891578, 66.296039], - [-14.892276, 66.295493], - [-14.893306, 66.29506], - [-14.894765, 66.294616], - [-14.901084, 66.293397], - [-14.902881, 66.293197], - [-14.904705, 66.293188], - [-14.905677, 66.293021], - [-14.905977, 66.29297], - [-14.907843, 66.29283], - [-14.912033, 66.291937], - [-14.913501, 66.291842], - [-14.91464, 66.291768], - [-14.915584, 66.291923], - [-14.91641, 66.29216], - [-14.916946, 66.292165], - [-14.917386, 66.292135], - [-14.917772, 66.292057], - [-14.918877, 66.2916], - [-14.919671, 66.291203], - [-14.921645, 66.290504], - [-14.925347, 66.289999], - [-14.92942, 66.289655], - [-14.93025, 66.289585], - [-14.931441, 66.289283], - [-14.933072, 66.288567], - [-14.93481, 66.28803], - [-14.935732, 66.287264], - [-14.940024, 66.287195], - [-14.943629, 66.286945], - [-14.944717, 66.286992], - [-14.947835, 66.286504], - [-14.949354, 66.286143], - [-14.94978, 66.286042], - [-14.950667, 66.285831], - [-14.952306, 66.285237], - [-14.953161, 66.28505], - [-14.954461, 66.285054], - [-14.955353, 66.285106], - [-14.956775, 66.2849], - [-14.958475, 66.284407], - [-14.958898, 66.284315], - [-14.960461, 66.283975], - [-14.960881, 66.283884], - [-14.962284, 66.283454], - [-14.963222, 66.283462], - [-14.964235, 66.28354], - [-14.965378, 66.283424], - [-14.96657, 66.28318], - [-14.96745, 66.282595], - [-14.968704, 66.281926], - [-14.969011, 66.28159], - [-14.969011, 66.28147], - [-14.969196, 66.281373], - [-14.969382, 66.281403], - [-14.969568, 66.281384], - [-14.969475, 66.281287], - [-14.96954, 66.281186], - [-14.969763, 66.281149], - [-14.969967, 66.281182], - [-14.970209, 66.281164], - [-14.970107, 66.281044], - [-14.969958, 66.280898], - [-14.970051, 66.280816], - [-14.97032, 66.28082], - [-14.970897, 66.280835], - [-14.971352, 66.280767], - [-14.971956, 66.28042], - [-14.972262, 66.280027], - [-14.972782, 66.279541], - [-14.974009, 66.278633], - [-14.975514, 66.277438], - [-14.97674, 66.27602], - [-14.977075, 66.275618], - [-14.977679, 66.275218], - [-14.978432, 66.274822], - [-14.97928, 66.27449], - [-14.980383, 66.27397], - [-14.981562, 66.273476], - [-14.98182, 66.27321], - [-14.981776, 66.273016], - [-14.981479, 66.27287], - [-14.981804, 66.272792], - [-14.982436, 66.272713], - [-14.982891, 66.272452], - [-14.98627, 66.26912], - [-14.988601, 66.265168], - [-14.989174, 66.262302], - [-14.989747, 66.260259], - [-14.989819, 66.258728], - [-14.989287, 66.257999], - [-14.987946, 66.257363], - [-14.987271, 66.257018], - [-14.986798, 66.256827], - [-14.986088, 66.256682], - [-14.985447, 66.256489], - [-14.983362, 66.255673], - [-14.982196, 66.255228], - [-14.981156, 66.254801], - [-14.98056, 66.25455], - [-14.979725, 66.254166], - [-14.97917, 66.253824], - [-14.97898, 66.25353], - [-14.978375, 66.253086], - [-14.97771, 66.25276], - [-14.977143, 66.252354], - [-14.97639, 66.251946], - [-14.975119, 66.25107], - [-14.974537, 66.250648], - [-14.973943, 66.250189], - [-14.973337, 66.24988], - [-14.972361, 66.249458], - [-14.971547, 66.249114], - [-14.970436, 66.248235], - [-14.969684, 66.247644], - [-14.969039, 66.246836], - [-14.968618, 66.246374], - [-14.968095, 66.245969], - [-14.967363, 66.245645], - [-14.966692, 66.245301], - [-14.965655, 66.244904], - [-14.96472, 66.24432], - [-14.964202, 66.243855], - [-14.962878, 66.242911], - [-14.962627, 66.242243], - [-14.96217, 66.241807], - [-14.961248, 66.241204], - [-14.960675, 66.240537], - [-14.960165, 66.240097], - [-14.960003, 66.239703], - [-14.95966, 66.23946], - [-14.959018, 66.239083], - [-14.958526, 66.239036], - [-14.95815, 66.238816], - [-14.956851, 66.238552], - [-14.956182, 66.23834], - [-14.955347, 66.23804], - [-14.954577, 66.237643], - [-14.95415, 66.237399], - [-14.95333, 66.23639], - [-14.95275, 66.236054], - [-14.94541, 66.2323], - [-14.94573, 66.23153], - [-14.94256, 66.23076], - [-14.94067, 66.22923], - [-14.9394, 66.22922], - [-14.9394, 66.22769], - [-14.93813, 66.22769], - [-14.93719, 66.22589], - [-14.93308, 66.22283], - [-14.92801, 66.22181], - [-14.92802, 66.22129], - [-14.92675, 66.22129], - [-14.92676, 66.21899], - [-14.92549, 66.21899], - [-14.92392, 66.21516], - [-14.93028, 66.2029], - [-14.93219, 66.20212], - [-14.93536, 66.19777], - [-14.93569, 66.19087], - [-14.93696, 66.19087], - [-14.93728, 66.18857], - [-14.93792, 66.18729], - [-14.94172, 66.18653], - [-14.94203, 66.18576], - [-14.9433, 66.18576], - [-14.9433, 66.18423], - [-14.94646, 66.18384], - [-14.94773, 66.18295], - [-14.949, 66.18295], - [-14.94995, 66.18142], - [-14.952938, 66.180122], - [-14.956498, 66.179723], - [-14.957795, 66.179354], - [-14.958964, 66.178854], - [-14.961124, 66.178045], - [-14.96197, 66.17631], - [-14.962245, 66.175713], - [-14.964103, 66.175444], - [-14.966718, 66.175046], - [-14.968714, 66.17487], - [-14.969586, 66.174703], - [-14.97032, 66.174388], - [-14.971411, 66.174], - [-14.973151, 66.17324], - [-14.974528, 66.172859], - [-14.975551, 66.172219], - [-14.976037, 66.171608], - [-14.977606, 66.1712], - [-14.978809, 66.170884], - [-14.980138, 66.17044], - [-14.981859, 66.17018], - [-14.984347, 66.169679], - [-14.986228, 66.169317], - [-14.98764, 66.168975], - [-14.988773, 66.168557], - [-14.990209, 66.168373], - [-14.992784, 66.168], - [-14.994974, 66.167444], - [-14.996107, 66.167101], - [-14.997173, 66.166655], - [-14.998593, 66.165987], - [-14.999913, 66.165073], - [-15.00023, 66.164374], - [-15.000922, 66.164202], - [-15.001868, 66.164105], - [-15.003308, 66.163571], - [-15.004832, 66.163131], - [-15.00591, 66.1625], - [-15.010682, 66.160794], - [-15.012192, 66.160432], - [-15.013385, 66.160061], - [-15.015951, 66.159486], - [-15.016168, 66.15942], - [-15.018701, 66.158648], - [-15.020084, 66.157223], - [-15.024067, 66.15546], - [-15.025535, 66.154162], - [-15.026799, 66.153705], - [-15.028062, 66.153059], - [-15.02992, 66.15227], - [-15.030446, 66.152029], - [-15.03118, 66.15176], - [-15.032211, 66.151074], - [-15.033366, 66.150165], - [-15.03419, 66.149822], - [-15.035118, 66.149414], - [-15.036539, 66.149006], - [-15.038247, 66.148576], - [-15.040059, 66.14826], - [-15.041302, 66.147531], - [-15.043043, 66.1469], - [-15.044369, 66.146501], - [-15.045448, 66.146186], - [-15.046581, 66.14601], - [-15.047315, 66.14563], - [-15.04873, 66.145152], - [-15.050061, 66.145134], - [-15.052378, 66.144791], - [-15.054144, 66.14442], - [-15.055406, 66.143733], - [-15.057173, 66.143422], - [-15.059167, 66.142633], - [-15.060912, 66.142267], - [-15.062601, 66.141882], - [-15.064, 66.141622], - [-15.065785, 66.141205], - [-15.068625, 66.140194], - [-15.06968, 66.13973], - [-15.070776, 66.139372], - [-15.071877, 66.139103], - [-15.074074, 66.138719], - [-15.075817, 66.138171], - [-15.077134, 66.137828], - [-15.078235, 66.137485], - [-15.080916, 66.136625], - [-15.084167, 66.135899], - [-15.087224, 66.135353], - [-15.090298, 66.135056], - [-15.096423, 66.134453], - [-15.10225, 66.134295], - [-15.105623, 66.134314], - [-15.108479, 66.133737], - [-15.109935, 66.133219], - [-15.111412, 66.132902], - [-15.114225, 66.132987], - [-15.117116, 66.133163], - [-15.119983, 66.133107], - [-15.122884, 66.132892], - [-15.127668, 66.132124], - [-15.132265, 66.131825], - [-15.1365, 66.131817], - [-15.14079, 66.132244], - [-15.145332, 66.132485], - [-15.149191, 66.132112], - [-15.149396, 66.132092], - [-15.15109, 66.131604], - [-15.152717, 66.13058], - [-15.15454, 66.12868], - [-15.15484, 66.12765], - [-15.156859, 66.12674], - [-15.158157, 66.125447], - [-15.159838, 66.123405], - [-15.160595, 66.12307], - [-15.161169, 66.122642], - [-15.161985, 66.122238], - [-15.16238, 66.12202], - [-15.163169, 66.121547], - [-15.16364, 66.12125], - [-15.164386, 66.12089], - [-15.165375, 66.120739], - [-15.166884, 66.119984], - [-15.168198, 66.119038], - [-15.169833, 66.118429], - [-15.171491, 66.117928], - [-15.173145, 66.117633], - [-15.174832, 66.117311], - [-15.176355, 66.116756], - [-15.178969, 66.115183], - [-15.181224, 66.113508], - [-15.182765, 66.112017], - [-15.183852, 66.111524], - [-15.184646, 66.111157], - [-15.184695, 66.110631], - [-15.184825, 66.110362], - [-15.185156, 66.110085], - [-15.18627, 66.109382], - [-15.187226, 66.108824], - [-15.187518, 66.108358], - [-15.187242, 66.107386], - [-15.186755, 66.106503], - [-15.185928, 66.105421], - [-15.185263, 66.105033], - [-15.184502, 66.104798], - [-15.183706, 66.104711], - [-15.182918, 66.104365], - [-15.182392, 66.10412], - [-15.181794, 66.103883], - [-15.18098, 66.103713], - [-15.180277, 66.103344], - [-15.179958, 66.102983], - [-15.179296, 66.102567], - [-15.177801, 66.102287], - [-15.17712, 66.102103], - [-15.176503, 66.101989], - [-15.175731, 66.101797], - [-15.174638, 66.101663], - [-15.173322, 66.101428], - [-15.171902, 66.101246], - [-15.17055, 66.101012], - [-15.169577, 66.10088], - [-15.168852, 66.100745], - [-15.167301, 66.100498], - [-15.166057, 66.100427], - [-15.165127, 66.10034], - [-15.164429, 66.100126], - [-15.16321, 66.09985], - [-15.16287, 66.099606], - [-15.161983, 66.099373], - [-15.16161, 66.09926], - [-15.160201, 66.098534], - [-15.158209, 66.097968], - [-15.15707, 66.097581], - [-15.15649, 66.096845], - [-15.15496, 66.09518], - [-15.15432, 66.09288], - [-15.153404, 66.091928], - [-15.15147, 66.09084], - [-15.149706, 66.090081], - [-15.147929, 66.089817], - [-15.147321, 66.089726], - [-15.142855, 66.089324], - [-15.140987, 66.089282], - [-15.138367, 66.089483], - [-15.136153, 66.089458], - [-15.135114, 66.089336], - [-15.133683, 66.089172], - [-15.132583, 66.089184], - [-15.131258, 66.089477], - [-15.130384, 66.089684], - [-15.129601, 66.089556], - [-15.128005, 66.089422], - [-15.12561, 66.089629], - [-15.12437, 66.08984], - [-15.123833, 66.090142], - [-15.12311, 66.09035], - [-15.12248, 66.09035], - [-15.12201, 66.090118], - [-15.121272, 66.089916], - [-15.120338, 66.089984], - [-15.11957, 66.090154], - [-15.117552, 66.090368], - [-15.11618, 66.09061], - [-15.115594, 66.090917], - [-15.115489, 66.091119], - [-15.114751, 66.091162], - [-15.112311, 66.091919], - [-15.111467, 66.092218], - [-15.109886, 66.092566], - [-15.109449, 66.092938], - [-15.109088, 66.093139], - [-15.10863, 66.09317], - [-15.10844, 66.09298], - [-15.108666, 66.092511], - [-15.108802, 66.092083], - [-15.10862, 66.09164], - [-15.108274, 66.091424], - [-15.107687, 66.091363], - [-15.107265, 66.091357], - [-15.106859, 66.091601], - [-15.106015, 66.091973], - [-15.105217, 66.092382], - [-15.104509, 66.092492], - [-15.103862, 66.092297], - [-15.103139, 66.092077], - [-15.101994, 66.092028], - [-15.100834, 66.092132], - [-15.099991, 66.092041], - [-15.09975, 66.091882], - [-15.099283, 66.091827], - [-15.098424, 66.091906], - [-15.0974, 66.092382], - [-15.096482, 66.09298], - [-15.095909, 66.093383], - [-15.095186, 66.093518], - [-15.094042, 66.093463], - [-15.0913, 66.09367], - [-15.08871, 66.093768], - [-15.087309, 66.093737], - [-15.085622, 66.09364], - [-15.084433, 66.093707], - [-15.083107, 66.094055], - [-15.081465, 66.094305], - [-15.080517, 66.09436], - [-15.079131, 66.094696], - [-15.078016, 66.094921], - [-15.076812, 66.094903], - [-15.075155, 66.094885], - [-15.072158, 66.095342], - [-15.070501, 66.09566], - [-15.068513, 66.096325], - [-15.066645, 66.096679], - [-15.065862, 66.096734], - [-15.064416, 66.096807], - [-15.063136, 66.096734], - [-15.062579, 66.096459], - [-15.061389, 66.096057], - [-15.060169, 66.095812], - [-15.058994, 66.095642], - [-15.05821, 66.0955], - [-15.057428, 66.095105], - [-15.057021, 66.094513], - [-15.057217, 66.093762], - [-15.05759, 66.09295], - [-15.058603, 66.092456], - [-15.05946, 66.09167], - [-15.059913, 66.091314], - [-15.06072, 66.0909], - [-15.061238, 66.090466], - [-15.06172, 66.09013], - [-15.062413, 66.089721], - [-15.063452, 66.089239], - [-15.063995, 66.088958], - [-15.064552, 66.088543], - [-15.064582, 66.087914], - [-15.064898, 66.087163], - [-15.065621, 66.086254], - [-15.065983, 66.085765], - [-15.06541, 66.085136], - [-15.065727, 66.084135], - [-15.06669, 66.08246], - [-15.067519, 66.081741], - [-15.068422, 66.081204], - [-15.068648, 66.080483], - [-15.068874, 66.079244], - [-15.069085, 66.078602], - [-15.068709, 66.078236], - [-15.068272, 66.077522], - [-15.068046, 66.076837], - [-15.066329, 66.076019], - [-15.064733, 66.074584], - [-15.064025, 66.073252], - [-15.0641, 66.072391], - [-15.064266, 66.072073], - [-15.064285, 66.071888], - [-15.064296, 66.071792], - [-15.063498, 66.071371], - [-15.062564, 66.071169], - [-15.062202, 66.070833], - [-15.061811, 66.070503], - [-15.062232, 66.070338], - [-15.062835, 66.070112], - [-15.063362, 66.069801], - [-15.062955, 66.069416], - [-15.062654, 66.069214], - [-15.061509, 66.069269], - [-15.060832, 66.069019], - [-15.060289, 66.068347], - [-15.060832, 66.067326], - [-15.06166, 66.066336], - [-15.06305, 66.066155], - [-15.063588, 66.065707], - [-15.064323, 66.064034], - [-15.066878, 66.062472], - [-15.067289, 66.061861], - [-15.068017, 66.061193], - [-15.07009, 66.05842], - [-15.07088, 66.058155], - [-15.07134, 66.05791], - [-15.071973, 66.057518], - [-15.0726, 66.05713], - [-15.073521, 66.056738], - [-15.07386, 66.05638], - [-15.07465, 66.055872], - [-15.077012, 66.054708], - [-15.078223, 66.053758], - [-15.079212, 66.053208], - [-15.08045, 66.05228], - [-15.08453, 66.04998], - [-15.085709, 66.049452], - [-15.08705, 66.0487], - [-15.088039, 66.048106], - [-15.08956, 66.04716], - [-15.09082, 66.046698], - [-15.09207, 66.04588], - [-15.093667, 66.045256], - [-15.094319, 66.044888], - [-15.09426, 66.04384], - [-15.09458, 66.04332], - [-15.09332, 66.04332], - [-15.09205, 66.04154], - [-15.091505, 66.041144], - [-15.09079, 66.04077], - [-15.087681, 66.039409], - [-15.084195, 66.038303], - [-15.0821, 66.037913], - [-15.081098, 66.037913], - [-15.080095, 66.038089], - [-15.077157, 66.038546], - [-15.075938, 66.038759], - [-15.071432, 66.039294], - [-15.06941, 66.03976], - [-15.067253, 66.040223], - [-15.064868, 66.040339], - [-15.063459, 66.040827], - [-15.061901, 66.040847], - [-15.060127, 66.040835], - [-15.059595, 66.041231], - [-15.05921, 66.04152], - [-15.057525, 66.041664], - [-15.056046, 66.041496], - [-15.054154, 66.041448], - [-15.051611, 66.041496], - [-15.050043, 66.04158], - [-15.048801, 66.042108], - [-15.04426, 66.04335], - [-15.043272, 66.043633], - [-15.041438, 66.043921], - [-15.040492, 66.043969], - [-15.038954, 66.043693], - [-15.037505, 66.043585], - [-15.036234, 66.043933], - [-15.035169, 66.044413], - [-15.034164, 66.044377], - [-15.033099, 66.044305], - [-15.031887, 66.04457], - [-15.029906, 66.04475], - [-15.028457, 66.044149], - [-15.026741, 66.043921], - [-15.024228, 66.043645], - [-15.022543, 66.043669], - [-15.020709, 66.043729], - [-15.019293, 66.043276], - [-15.018611, 66.042795], - [-15.016983, 66.042488], - [-15.014944, 66.042309], - [-15.013666, 66.042316], - [-15.012349, 66.042584], - [-15.011173, 66.042784], - [-15.010083, 66.04335], - [-15.009354, 66.043669], - [-15.008233, 66.043844], - [-15.007014, 66.043795], - [-15.00652, 66.04361], - [-15.005053, 66.042872], - [-15.003953, 66.041915], - [-15.004117, 66.041218], - [-15.003012, 66.039604], - [-15.001954, 66.039079], - [-15.001577, 66.037235], - [-15.001201, 66.036012], - [-15.000206, 66.035287], - [-14.999041, 66.034857], - [-14.998316, 66.034727], - [-14.997791, 66.034226], - [-14.996145, 66.033786], - [-14.994787, 66.03347], - [-14.993963, 66.033246], - [-14.992781, 66.032745], - [-14.991676, 66.032564], - [-14.99079, 66.03287], - [-14.990084, 66.033294], - [-14.989112, 66.033424], - [-14.98796, 66.033299], - [-14.986666, 66.033519], - [-14.985843, 66.0335], - [-14.984816, 66.033326], - [-14.984186, 66.033034], - [-14.983327, 66.033032], - [-14.982272, 66.033086], - [-14.98199, 66.03261], - [-14.98168, 66.032401], - [-14.980834, 66.032315], - [-14.980057, 66.032382], - [-14.97948, 66.03261], - [-14.978929, 66.032908], - [-14.978403, 66.033151], - [-14.977613, 66.033456], - [-14.976908, 66.033699], - [-14.976177, 66.033825], - [-14.975166, 66.034025], - [-14.974507, 66.034465], - [-14.97382, 66.03456], - [-14.97272, 66.034494], - [-14.971849, 66.03457], - [-14.97105, 66.034388], - [-14.97021, 66.033886], - [-14.96942, 66.03338], - [-14.968552, 66.032623], - [-14.968159, 66.032557], - [-14.967799, 66.032537], - [-14.967552, 66.032564], - [-14.967375, 66.032583], - [-14.967306, 66.032683], - [-14.967402, 66.032792], - [-14.966453, 66.033228], - [-14.96509, 66.033185], - [-14.963613, 66.033193], - [-14.96313, 66.03287], - [-14.962687, 66.032396], - [-14.961925, 66.03233], - [-14.960938, 66.032505], - [-14.959896, 66.032851], - [-14.958909, 66.033236], - [-14.95684, 66.03338], - [-14.955445, 66.034191], - [-14.954532, 66.034476], - [-14.954275, 66.034605], - [-14.953889, 66.034958], - [-14.953465, 66.034985], - [-14.953406, 66.034592], - [-14.95302, 66.034279], - [-14.952193, 66.03417], - [-14.95118, 66.03452], - [-14.949845, 66.034383], - [-14.949454, 66.03457], - [-14.949025, 66.035007], - [-14.946819, 66.034684], - [-14.944678, 66.034676], - [-14.94426, 66.03414], - [-14.94238, 66.0335], - [-14.941572, 66.033546], - [-14.941069, 66.033804], - [-14.940525, 66.03432], - [-14.939309, 66.034344], - [-14.938708, 66.034562], - [-14.938289, 66.03454], - [-14.937753, 66.034601], - [-14.936809, 66.034488], - [-14.936254, 66.034598], - [-14.934604, 66.035583], - [-14.933247, 66.035176], - [-14.931359, 66.035098], - [-14.929191, 66.034897], - [-14.92791, 66.03503], - [-14.9254, 66.03579], - [-14.920047, 66.036413], - [-14.916252, 66.035455], - [-14.915322, 66.035333], - [-14.914975, 66.035051], - [-14.913868, 66.034314], - [-14.913307, 66.034165], - [-14.912481, 66.034152], - [-14.911602, 66.034235], - [-14.910421, 66.034483], - [-14.908688, 66.034938], - [-14.907586, 66.03555], - [-14.906734, 66.036116], - [-14.906305, 66.036433], - [-14.905773, 66.036786], - [-14.904357, 66.037409], - [-14.904188, 66.037363], - [-14.904022, 66.037228], - [-14.903598, 66.037331], - [-14.903378, 66.037287], - [-14.90339, 66.0372], - [-14.90339, 66.03463], - [-14.90025, 66.03386], - [-14.899478, 66.033217], - [-14.89963, 66.03207], - [-14.900577, 66.031687], - [-14.901216, 66.03157], - [-14.901635, 66.031408], - [-14.90216, 66.030968], - [-14.902439, 66.030345], - [-14.902525, 66.029334], - [-14.90153, 66.02874], - [-14.900798, 66.028571], - [-14.899778, 66.028649], - [-14.898759, 66.029368], - [-14.898201, 66.029412], - [-14.89838, 66.029], - [-14.8988, 66.02866], - [-14.89839, 66.02772], - [-14.895377, 66.026886], - [-14.894297, 66.024378], - [-14.89185, 66.024081], - [-14.889693, 66.024181], - [-14.889607, 66.024796], - [-14.889253, 66.024874], - [-14.88896, 66.02414], - [-14.888524, 66.022023], - [-14.889157, 66.021748], - [-14.889619, 66.021048], - [-14.889919, 66.020763], - [-14.890525, 66.020473], - [-14.89088, 66.01929], - [-14.88903, 66.019011], - [-14.888724, 66.015994], - [-14.887879, 66.015572], - [-14.88608, 66.015067], - [-14.883962, 66.014491], - [-14.88183, 66.013932], - [-14.880134, 66.013463], - [-14.878266, 66.013121], - [-14.875593, 66.012728], - [-14.874414, 66.0126], - [-14.874086, 66.012564], - [-14.872008, 66.012452], - [-14.86926, 66.01223], - [-14.86752, 66.012006], - [-14.865565, 66.011805], - [-14.863766, 66.011664], - [-14.862216, 66.011576], - [-14.860485, 66.011544], - [-14.857911, 66.011595], - [-14.854715, 66.011832], - [-14.851983, 66.012126], - [-14.850376, 66.012347], - [-14.848543, 66.012492], - [-14.84793, 66.012641], - [-14.845739, 66.013225], - [-14.84504, 66.01413], - [-14.841792, 66.014332], - [-14.838997, 66.014635], - [-14.83749, 66.01489], - [-14.836417, 66.01547], - [-14.836253, 66.015497], - [-14.836033, 66.015493], - [-14.835829, 66.015467], - [-14.835692, 66.015411], - [-14.835719, 66.015054], - [-14.835706, 66.014987], - [-14.835534, 66.014959], - [-14.835271, 66.014935], - [-14.834931, 66.014936], - [-14.834037, 66.01495], - [-14.833128, 66.014982], - [-14.831817, 66.015124], - [-14.830586, 66.015327], - [-14.830308, 66.015635], - [-14.830393, 66.01571], - [-14.829997, 66.015907], - [-14.829528, 66.016066], - [-14.829488, 66.016329], - [-14.829378, 66.016429], - [-14.829383, 66.01655], - [-14.829004, 66.016774], - [-14.828745, 66.017167], - [-14.828628, 66.017265], - [-14.828602, 66.017407], - [-14.828037, 66.017518], - [-14.827512, 66.017672], - [-14.827158, 66.017864], - [-14.826989, 66.018137], - [-14.826558, 66.018485], - [-14.826657, 66.018571], - [-14.826553, 66.018682], - [-14.826062, 66.018927], - [-14.825769, 66.019417], - [-14.825644, 66.019664], - [-14.825248, 66.019869], - [-14.825386, 66.020039], - [-14.825149, 66.020049], - [-14.825127, 66.020119], - [-14.824821, 66.020203], - [-14.824234, 66.020657], - [-14.82516, 66.021073], - [-14.825327, 66.02121], - [-14.825318, 66.021337], - [-14.825125, 66.021522], - [-14.825025, 66.021558], - [-14.824857, 66.02154], - [-14.824823, 66.021474], - [-14.824995, 66.021339], - [-14.824987, 66.021237], - [-14.824289, 66.02099], - [-14.82347, 66.020728], - [-14.822475, 66.021423], - [-14.822574, 66.021524], - [-14.823885, 66.021849], - [-14.824608, 66.021965], - [-14.825153, 66.021926], - [-14.825535, 66.021923], - [-14.825761, 66.021816], - [-14.825765, 66.021779], - [-14.825967, 66.0217], - [-14.82612, 66.021566], - [-14.826365, 66.021552], - [-14.826591, 66.021614], - [-14.826755, 66.02178], - [-14.826432, 66.021782], - [-14.82673, 66.021943], - [-14.82667, 66.022035], - [-14.826485, 66.022156], - [-14.826092, 66.022219], - [-14.825592, 66.022265], - [-14.825063, 66.022307], - [-14.824321, 66.022312], - [-14.823487, 66.02228], - [-14.822994, 66.022221], - [-14.822671, 66.022117], - [-14.822296, 66.02208], - [-14.821844, 66.021953], - [-14.821364, 66.021948], - [-14.819388, 66.022886], - [-14.819035, 66.023399], - [-14.818638, 66.023822], - [-14.817915, 66.024675], - [-14.817475, 66.024923], - [-14.817126, 66.025015], - [-14.816615, 66.025029], - [-14.816152, 66.025201], - [-14.815439, 66.025541], - [-14.81497, 66.026043], - [-14.814351, 66.026274], - [-14.814278, 66.026351], - [-14.813894, 66.026437], - [-14.813817, 66.026533], - [-14.813093, 66.026895], - [-14.812623, 66.027221], - [-14.812459, 66.027371], - [-14.812158, 66.027489], - [-14.811791, 66.02797], - [-14.811361, 66.028263], - [-14.811386, 66.028366], - [-14.81046, 66.029115], - [-14.809878, 66.029901], - [-14.810309, 66.029947], - [-14.810382, 66.030001], - [-14.810831, 66.03005], - [-14.810365, 66.030894], - [-14.810344, 66.031125], - [-14.810115, 66.031083], - [-14.809934, 66.031132], - [-14.810089, 66.031167], - [-14.810167, 66.031221], - [-14.810133, 66.031331], - [-14.80971, 66.031421], - [-14.809565, 66.031393], - [-14.809475, 66.031378], - [-14.809346, 66.031455], - [-14.809155, 66.031625], - [-14.809111, 66.031779], - [-14.808959, 66.032007], - [-14.808732, 66.032269], - [-14.808666, 66.032662], - [-14.808758, 66.032713], - [-14.808775, 66.032846], - [-14.808917, 66.032973], - [-14.808858, 66.033062], - [-14.808706, 66.033176], - [-14.808664, 66.033306], - [-14.80876, 66.033425], - [-14.808628, 66.033543], - [-14.808698, 66.033649], - [-14.808603, 66.033738], - [-14.808685, 66.033764], - [-14.808599, 66.033992], - [-14.808581, 66.034037], - [-14.808564, 66.034178], - [-14.808513, 66.034307], - [-14.808391, 66.034451], - [-14.808174, 66.034721], - [-14.808142, 66.034834], - [-14.808055, 66.034949], - [-14.808084, 66.03501], - [-14.808013, 66.035108], - [-14.80788, 66.03533], - [-14.807839, 66.035388], - [-14.807764, 66.035475], - [-14.807535, 66.035709], - [-14.807357, 66.035889], - [-14.80715, 66.03602], - [-14.807012, 66.036157], - [-14.806914, 66.036244], - [-14.806767, 66.036413], - [-14.806727, 66.036462], - [-14.806599, 66.036566], - [-14.806496, 66.036886], - [-14.806186, 66.037087], - [-14.80597, 66.037334], - [-14.805724, 66.037532], - [-14.805763, 66.037698], - [-14.805703, 66.038032], - [-14.80554, 66.038281], - [-14.806028, 66.03838], - [-14.806195, 66.038566], - [-14.806159, 66.03866], - [-14.806043, 66.038685], - [-14.806092, 66.038704], - [-14.80654, 66.038604], - [-14.807603, 66.038581], - [-14.807618, 66.038693], - [-14.807039, 66.038708], - [-14.806989, 66.038745], - [-14.806346, 66.03885], - [-14.805789, 66.038886], - [-14.805875, 66.038964], - [-14.805631, 66.039194], - [-14.80553, 66.039262], - [-14.805344, 66.039195], - [-14.805221, 66.039233], - [-14.805115, 66.039146], - [-14.804922, 66.039082], - [-14.804782, 66.039074], - [-14.804568, 66.039037], - [-14.804408, 66.038985], - [-14.804355, 66.038843], - [-14.804527, 66.038736], - [-14.804493, 66.038698], - [-14.80441, 66.038615], - [-14.804372, 66.038547], - [-14.804278, 66.038432], - [-14.804107, 66.038374], - [-14.80386, 66.03832], - [-14.803481, 66.038288], - [-14.803174, 66.038268], - [-14.802874, 66.038265], - [-14.80233, 66.038308], - [-14.801619, 66.038411], - [-14.801115, 66.038521], - [-14.800951, 66.038778], - [-14.800968, 66.038959], - [-14.800831, 66.03906], - [-14.8008, 66.039242], - [-14.80068, 66.039398], - [-14.800451, 66.039489], - [-14.800309, 66.03955], - [-14.800247, 66.039593], - [-14.80015, 66.03966], - [-14.799928, 66.039627], - [-14.799721, 66.03965], - [-14.799585, 66.039687], - [-14.7994, 66.039758], - [-14.799107, 66.039783], - [-14.798738, 66.03996], - [-14.798654, 66.039993], - [-14.798597, 66.040059], - [-14.798542, 66.040112], - [-14.79866, 66.040166], - [-14.798758, 66.040261], - [-14.798375, 66.040917], - [-14.798209, 66.040977], - [-14.798168, 66.041058], - [-14.798252, 66.041088], - [-14.798153, 66.041234], - [-14.79783, 66.041474], - [-14.797715, 66.041516], - [-14.797497, 66.041701], - [-14.79712, 66.042044], - [-14.796654, 66.042398], - [-14.796396, 66.042402], - [-14.79621, 66.042298], - [-14.795925, 66.042217], - [-14.795172, 66.04228], - [-14.795064, 66.041999], - [-14.794769, 66.041895], - [-14.794446, 66.042158], - [-14.794252, 66.042372], - [-14.794075, 66.042163], - [-14.793854, 66.042021], - [-14.793335, 66.041871], - [-14.792809, 66.041683], - [-14.79194, 66.041588], - [-14.790948, 66.041638], - [-14.790502, 66.042198], - [-14.790009, 66.042184], - [-14.789483, 66.042363], - [-14.787488, 66.043269], - [-14.78694, 66.043213], - [-14.786007, 66.043313], - [-14.785202, 66.043125], - [-14.784654, 66.04322], - [-14.78321, 66.04371], - [-14.780999, 66.045252], - [-14.78006, 66.0455], - [-14.77933, 66.045814], - [-14.777242, 66.046279], - [-14.776373, 66.046889], - [-14.775836, 66.046771], - [-14.77574, 66.04651], - [-14.77589, 66.046027], - [-14.775589, 66.045987], - [-14.774946, 66.046278], - [-14.774484, 66.046284], - [-14.774334, 66.045866], - [-14.774527, 66.045325], - [-14.774017, 66.045221], - [-14.773497, 66.045125], - [-14.772961, 66.04506], - [-14.771995, 66.04506], - [-14.771266, 66.045151], - [-14.770687, 66.045308], - [-14.76872, 66.0465], - [-14.768383, 66.047027], - [-14.766257, 66.048334], - [-14.765609, 66.048704], - [-14.765011, 66.049193], - [-14.764022, 66.049511], - [-14.763605, 66.049651], - [-14.763176, 66.050195], - [-14.762844, 66.050265], - [-14.761247, 66.050152], - [-14.760424, 66.050346], - [-14.759258, 66.050557], - [-14.75862, 66.05083], - [-14.757479, 66.053178], - [-14.7548, 66.05492], - [-14.753905, 66.055068], - [-14.75354, 66.05543], - [-14.752312, 66.055498], - [-14.752372, 66.055042], - [-14.752462, 66.054618], - [-14.751289, 66.05438], - [-14.750183, 66.05441], - [-14.74914, 66.05465], - [-14.747878, 66.055059], - [-14.74661, 66.05542], - [-14.746149, 66.055669], - [-14.746042, 66.056052], - [-14.745791, 66.056829], - [-14.745581, 66.057027], - [-14.745313, 66.057101], - [-14.745162, 66.056487], - [-14.74479, 66.056389], - [-14.744254, 66.056311], - [-14.743564, 66.05593], - [-14.742641, 66.05566], - [-14.741536, 66.056096], - [-14.739787, 66.055913], - [-14.737314, 66.055538], - [-14.736776, 66.055936], - [-14.736424, 66.05691], - [-14.73604, 66.057818], - [-14.735844, 66.057755], - [-14.735362, 66.057345], - [-14.733967, 66.056853], - [-14.733173, 66.056866], - [-14.732744, 66.05707], - [-14.732712, 66.057276], - [-14.731966, 66.058055], - [-14.731934, 66.05832], - [-14.731494, 66.058377], - [-14.731279, 66.05762], - [-14.731531, 66.057394], - [-14.732288, 66.057207], - [-14.732191, 66.057076], - [-14.731977, 66.056989], - [-14.731424, 66.056976], - [-14.731396, 66.056832], - [-14.731311, 66.056695], - [-14.731043, 66.05668], - [-14.730636, 66.056653], - [-14.730142, 66.056654], - [-14.729933, 66.056748], - [-14.729745, 66.056762], - [-14.729654, 66.05668], - [-14.729659, 66.056582], - [-14.729418, 66.056558], - [-14.729225, 66.056667], - [-14.729005, 66.056989], - [-14.728514, 66.057093], - [-14.728018, 66.057207], - [-14.727696, 66.05722], - [-14.727771, 66.056872], - [-14.727631, 66.056644], - [-14.727996, 66.056036], - [-14.726928, 66.055727], - [-14.726634, 66.055707], - [-14.726634, 66.055289], - [-14.725606, 66.054976], - [-14.724649, 66.054781], - [-14.721059, 66.054781], - [-14.719821, 66.054383], - [-14.718566, 66.054148], - [-14.715637, 66.053492], - [-14.710383, 66.052754], - [-14.70884, 66.052375], - [-14.708204, 66.05236], - [-14.707681, 66.052449], - [-14.707066, 66.05194], - [-14.706326, 66.051853], - [-14.704366, 66.051713], - [-14.703272, 66.051228], - [-14.7028, 66.050986], - [-14.702113, 66.050799], - [-14.700842, 66.050662], - [-14.700268, 66.050306], - [-14.698725, 66.05003], - [-14.69821, 66.04996], - [-14.696845, 66.049841], - [-14.695595, 66.049612], - [-14.695048, 66.04934], - [-14.69412, 66.049118], - [-14.69383, 66.04893], - [-14.692849, 66.048651], - [-14.691829, 66.04856], - [-14.68944, 66.04815], - [-14.688785, 66.047788], - [-14.68818, 66.04764], - [-14.68756, 66.04713], - [-14.686036, 66.046427], - [-14.685489, 66.045943], - [-14.68475, 66.04559], - [-14.68256, 66.04482], - [-14.681616, 66.044675], - [-14.680531, 66.044756], - [-14.679629, 66.0449], - [-14.67848, 66.045076], - [-14.677383, 66.045196], - [-14.677528, 66.045577], - [-14.677216, 66.046015], - [-14.674521, 66.046134], - [-14.673175, 66.045323], - [-14.67346, 66.0425], - [-14.674188, 66.04165], - [-14.67564, 66.041652], - [-14.676734, 66.041482], - [-14.677013, 66.040689], - [-14.676348, 66.040258], - [-14.674942, 66.039543], - [-14.674996, 66.038637], - [-14.675039, 66.038175], - [-14.674816, 66.037711], - [-14.674449, 66.037426], - [-14.673746, 66.037209], - [-14.672559, 66.036835], - [-14.671237, 66.03631], - [-14.670522, 66.036262], - [-14.669267, 66.036197], - [-14.66695, 66.03609], - [-14.666054, 66.034572], - [-14.66635, 66.03353], - [-14.667025, 66.03219], - [-14.667861, 66.031093], - [-14.667722, 66.030143], - [-14.666885, 66.029211], - [-14.66626, 66.027734], - [-14.664997, 66.027083], - [-14.663372, 66.026523], - [-14.662749, 66.026261], - [-14.66017, 66.02559], - [-14.659452, 66.026056], - [-14.658409, 66.025723], - [-14.65744, 66.02567], - [-14.656368, 66.025709], - [-14.65592, 66.025227], - [-14.658545, 66.02447], - [-14.65831, 66.02329], - [-14.65833, 66.02303], - [-14.65833, 66.02252], - [-14.658443, 66.022237], - [-14.658892, 66.021058], - [-14.658407, 66.019982], - [-14.658418, 66.01911], - [-14.658198, 66.018426], - [-14.658152, 66.016671], - [-14.657712, 66.015298], - [-14.656693, 66.014552], - [-14.655598, 66.01433], - [-14.654435, 66.014395], - [-14.653038, 66.014488], - [-14.65184, 66.01381], - [-14.652222, 66.013146], - [-14.653055, 66.012598], - [-14.653291, 66.011926], - [-14.65159, 66.00946], - [-14.651156, 66.009032], - [-14.650694, 66.00859], - [-14.650158, 66.008171], - [-14.649912, 66.007067], - [-14.648682, 66.005845], - [-14.6484, 66.005387], - [-14.648062, 66.004094], - [-14.648129, 66.003483], - [-14.647648, 66.002905], - [-14.646994, 66.002359], - [-14.645202, 66.0016], - [-14.64459, 66.001421], - [-14.643925, 66.001399], - [-14.643228, 66.001706], - [-14.642241, 66.00177], - [-14.64297, 66.001028], - [-14.642998, 66.000851], - [-14.641152, 66.000001], - [-14.63854, 65.99921], - [-14.635304, 65.998329], - [-14.629468, 65.997302], - [-14.62862, 65.997381], - [-14.627849, 65.997432], - [-14.62727, 65.99739], - [-14.62439, 65.997118], - [-14.622941, 65.996632], - [-14.620412, 65.995907], - [-14.61916, 65.9943], - [-14.617517, 65.994034], - [-14.61728, 65.99353], - [-14.616503, 65.993242], - [-14.61603, 65.99301], - [-14.61415, 65.99275], - [-14.613745, 65.992649], - [-14.613605, 65.992448], - [-14.613498, 65.992072], - [-14.613284, 65.991326], - [-14.613166, 65.989973], - [-14.613372, 65.987804], - [-14.610124, 65.987081], - [-14.609496, 65.986227], - [-14.60947, 65.98543], - [-14.611976, 65.984479], - [-14.6124, 65.98406], - [-14.613131, 65.982713], - [-14.610652, 65.981228], - [-14.608981, 65.981323], - [-14.608713, 65.98107], - [-14.608649, 65.980162], - [-14.608971, 65.97914], - [-14.609508, 65.976842], - [-14.609687, 65.976518], - [-14.6097, 65.975842], - [-14.610097, 65.975152], - [-14.610977, 65.973806], - [-14.61068, 65.97331], - [-14.609637, 65.972987], - [-14.608853, 65.972695], - [-14.608097, 65.972454], - [-14.60661, 65.972068], - [-14.606203, 65.970565], - [-14.606074, 65.968835], - [-14.605902, 65.967113], - [-14.60546, 65.96512], - [-14.6052, 65.96282], - [-14.605635, 65.962537], - [-14.605773, 65.962237], - [-14.605709, 65.96187], - [-14.604738, 65.961155], - [-14.604189, 65.960227], - [-14.60399, 65.96], - [-14.604143, 65.958583], - [-14.605065, 65.957184], - [-14.605151, 65.955628], - [-14.606289, 65.954336], - [-14.64979, 65.954427], - [-14.727622, 65.954142], - [-14.748985, 65.93859], - [-14.777783, 65.919013], - [-14.814503, 65.89298], - [-14.885664, 65.888593], - [-14.990801, 65.884671], - [-15.070797, 65.880749], - [-15.139365, 65.877199], - [-15.201635, 65.874452], - [-15.286548, 65.869952], - [-15.295906, 65.844765], - [-15.300871, 65.830399], - [-15.375114, 65.800971], - [-15.410757, 65.788522], - [-15.466851, 65.766044], - [-15.479903, 65.760667], - [-15.632972, 65.750585], - [-15.648848, 65.733826], - [-15.681159, 65.699319], - [-15.683317, 65.669107], - [-15.671192, 65.639202], - [-15.650947, 65.590748], - [-15.677895, 65.567214], - [-15.70015, 65.54779], - [-15.747515, 65.53195], - [-15.805811, 65.533459], - [-15.840423, 65.544774], - [-15.953936, 65.546203], - [-16.031704, 65.546282], - [-16.072072, 65.507788], - [-16.091821, 65.487394], - [-16.10093, 65.457144], - [-16.103194, 65.427355], - [-16.104573, 65.399572], - [-16.037169, 65.370738], - [-16.015544, 65.356474], - [-15.978874, 65.335032], - [-15.989805, 65.300038], - [-15.995318, 65.292567], - [-16.010385, 65.271925], - [-16.024417, 65.252037], - [-16.099108, 65.226095], - [-16.127158, 65.199191], - [-16.150116, 65.175664], - [-16.149048, 65.129196], - [-16.143186, 65.089574], - [-16.146643, 65.04658], - [-16.160473, 65.009725], - [-16.178706, 65.000888], - [-16.221841, 64.975378], - [-16.317577, 64.981224], - [-16.352415, 64.96356], - [-16.421665, 64.92679], - [-16.435472, 64.923518], - [-16.486776, 64.912121], - [-16.577796, 64.88979], - [-16.597775, 64.878788], - [-16.614533, 64.869646], - [-16.641742, 64.833157], - [-16.665528, 64.801874], - [-16.679111, 64.79091], - [-16.690884, 64.802329], - [-16.726201, 64.815691], - [-16.741486, 64.81627], - [-16.769295, 64.817584], - [-16.795216, 64.819995], - [-16.818047, 64.817803], - [-16.838695, 64.817361], - [-16.859625, 64.813186], - [-16.89169, 64.821017], - [-16.919142, 64.822648], - [-16.943995, 64.823761], - [-16.961654, 64.821814], - [-16.983891, 64.82237], - [-17.00482, 64.830994], - [-17.028492, 64.82803], - [-17.036214, 64.821535], - [-17.042408, 64.820068], - [-17.060261, 64.815393], - [-17.078114, 64.810937], - [-17.101288, 64.807503], - [-17.120514, 64.806114], - [-17.146264, 64.801218], - [-17.161135, 64.797038], - [-17.165713, 64.787289], - [-17.167035, 64.784988], - [-17.170468, 64.783233], - [-17.173386, 64.781185], - [-17.176991, 64.779941], - [-17.181626, 64.779064], - [-17.182999, 64.774747], - [-17.185917, 64.772772], - [-17.188149, 64.768382], - [-17.210122, 64.765601], - [-17.223854, 64.765747], - [-17.232094, 64.76765], - [-17.239819, 64.768967], - [-17.248574, 64.769041], - [-17.254067, 64.770431], - [-17.259732, 64.770138], - [-17.26574, 64.772772], - [-17.271576, 64.775552], - [-17.278786, 64.77665], - [-17.283078, 64.779502], - [-17.290116, 64.782794], - [-17.296811, 64.78294], - [-17.303849, 64.78433], - [-17.311573, 64.7855], - [-17.32153, 64.784768], - [-17.334576, 64.785353], - [-17.346421, 64.78294], - [-17.361355, 64.775918], - [-17.380238, 64.774967], - [-17.383328, 64.77226], - [-17.387104, 64.770724], - [-17.393456, 64.769626], - [-17.394829, 64.764211], - [-17.392083, 64.759966], - [-17.396546, 64.761795], - [-17.397576, 64.763113], - [-17.402039, 64.761503], - [-17.405987, 64.759819], - [-17.411815, 64.760511], - [-17.417308, 64.760511], - [-17.419368, 64.759193], - [-17.421771, 64.75729], - [-17.424518, 64.754801], - [-17.434818, 64.747918], - [-17.438594, 64.745721], - [-17.444774, 64.743524], - [-17.451297, 64.742791], - [-17.45576, 64.742205], - [-17.464009, 64.742172], - [-17.470017, 64.737631], - [-17.47224, 64.734733], - [-17.479106, 64.732681], - [-17.484943, 64.728578], - [-17.507611, 64.732575], - [-17.515507, 64.728911], - [-17.502452, 64.71509], - [-17.518245, 64.712451], - [-17.523395, 64.712011], - [-17.53233, 64.714031], - [-17.537308, 64.716084], - [-17.541428, 64.71755], - [-17.550869, 64.721656], - [-17.559101, 64.718756], - [-17.561169, 64.71953], - [-17.561341, 64.718064], - [-17.562371, 64.717844], - [-17.565624, 64.716264], - [-17.56322, 64.711864], - [-17.558071, 64.708051], - [-17.551204, 64.702183], - [-17.547608, 64.696721], - [-17.548294, 64.694227], - [-17.543488, 64.690044], - [-17.541248, 64.687802], - [-17.539531, 64.684866], - [-17.532665, 64.683251], - [-17.533351, 64.681342], - [-17.528545, 64.680168], - [-17.526142, 64.676203], - [-17.531978, 64.67635], - [-17.539875, 64.680902], - [-17.543488, 64.684833], - [-17.546063, 64.687695], - [-17.549324, 64.68997], - [-17.555676, 64.695547], - [-17.561847, 64.698662], - [-17.57146, 64.698955], - [-17.574893, 64.698662], - [-17.57455, 64.697635], - [-17.568714, 64.693526], - [-17.571803, 64.694847], - [-17.57455, 64.693672], - [-17.57455, 64.691911], - [-17.571297, 64.686961], - [-17.572147, 64.683398], - [-17.565624, 64.681048], - [-17.563564, 64.678112], - [-17.56116, 64.67635], - [-17.559624, 64.675803], - [-17.556706, 64.674628], - [-17.560654, 64.669928], - [-17.574893, 64.674441], - [-17.579013, 64.677231], - [-17.580387, 64.678846], - [-17.584163, 64.679727], - [-17.587253, 64.680902], - [-17.590686, 64.683104], - [-17.595149, 64.684278], - [-17.596179, 64.683398], - [-17.594119, 64.681489], - [-17.595493, 64.679433], - [-17.596866, 64.681636], - [-17.599269, 64.683251], - [-17.605792, 64.68237], - [-17.606479, 64.680608], - [-17.604256, 64.678373], - [-17.604256, 64.67595], - [-17.604762, 64.673706], - [-17.604076, 64.671797], - [-17.611286, 64.671797], - [-17.610942, 64.6693], - [-17.615749, 64.671503], - [-17.620899, 64.672091], - [-17.630512, 64.672238], - [-17.637378, 64.672825], - [-17.637035, 64.670916], - [-17.634632, 64.668566], - [-17.627422, 64.667244], - [-17.624675, 64.664599], - [-17.620555, 64.661514], - [-17.617122, 64.659457], - [-17.616435, 64.656224], - [-17.614899, 64.652664], - [-17.615757, 64.6509], - [-17.622615, 64.650786], - [-17.634288, 64.652403], - [-17.642871, 64.65255], - [-17.657978, 64.652991], - [-17.664157, 64.651227], - [-17.667771, 64.642226], - [-17.670174, 64.638035], - [-17.655574, 64.636377], - [-17.656948, 64.634024], - [-17.668621, 64.634024], - [-17.674981, 64.634138], - [-17.68528, 64.632888], - [-17.69867, 64.630976], - [-17.705356, 64.630935], - [-17.720119, 64.634171], - [-17.727672, 64.636965], - [-17.740375, 64.640201], - [-17.763034, 64.640936], - [-17.825431, 64.666047], - [-17.989588, 64.669057], - [-18.057595, 64.694129], - [-18.134984, 64.765207], - [-18.27059, 64.76492], - [-18.301829, 64.778279], - [-18.302526, 64.778335], - [-18.303574, 64.778211], - [-18.304762, 64.778034], - [-18.307075, 64.777605], - [-18.308845, 64.777295], - [-18.310063, 64.777131], - [-18.311514, 64.776987], - [-18.313601, 64.776826], - [-18.314778, 64.776761], - [-18.316017, 64.776726], - [-18.317331, 64.776607], - [-18.318696, 64.776319], - [-18.320244, 64.776204], - [-18.321858, 64.776101], - [-18.32216, 64.776081], - [-18.323585, 64.775866], - [-18.324511, 64.77564], - [-18.324858, 64.775489], - [-18.325729, 64.775134], - [-18.327491, 64.774211], - [-18.328308, 64.773712], - [-18.328898, 64.773495], - [-18.329677, 64.77338], - [-18.330172, 64.773447], - [-18.330902, 64.773489], - [-18.331363, 64.773568], - [-18.332529, 64.774273], - [-18.333149, 64.774427], - [-18.333881, 64.774455], - [-18.335147, 64.774477], - [-18.336286, 64.774455], - [-18.336649, 64.774504], - [-18.33742, 64.774817], - [-18.339228, 64.775776], - [-18.340112, 64.775963], - [-18.34154, 64.77606], - [-18.342171, 64.776086], - [-18.343212, 64.776033], - [-18.343758, 64.775914], - [-18.345142, 64.775426], - [-18.346126, 64.775286], - [-18.347141, 64.775148], - [-18.347832, 64.774933], - [-18.34845, 64.774744], - [-18.350369, 64.774593], - [-18.351756, 64.774418], - [-18.352949, 64.774183], - [-18.354471, 64.773829], - [-18.355589, 64.773488], - [-18.356324, 64.773131], - [-18.356933, 64.772714], - [-18.357357, 64.772151], - [-18.357752, 64.771874], - [-18.357943, 64.771962], - [-18.358067, 64.772392], - [-18.358588, 64.772872], - [-18.358659, 64.773187], - [-18.358815, 64.773632], - [-18.359121, 64.773922], - [-18.359272, 64.774044], - [-18.359677, 64.774374], - [-18.359556, 64.7746], - [-18.359091, 64.775248], - [-18.358764, 64.775512], - [-18.358078, 64.775699], - [-18.356131, 64.775793], - [-18.355186, 64.775904], - [-18.35449, 64.776178], - [-18.354229, 64.776458], - [-18.35407, 64.776726], - [-18.353718, 64.776905], - [-18.353311, 64.776955], - [-18.352009, 64.776946], - [-18.351296, 64.777075], - [-18.35, 64.777665], - [-18.349601, 64.778], - [-18.349353, 64.778495], - [-18.349098, 64.778928], - [-18.349151, 64.779176], - [-18.349185, 64.779518], - [-18.34939, 64.779807], - [-18.349833, 64.780057], - [-18.350371, 64.780366], - [-18.350759, 64.780829], - [-18.351097, 64.781477], - [-18.351563, 64.782184], - [-18.351229, 64.782862], - [-18.351189, 64.783616], - [-18.35099, 64.783926], - [-18.350333, 64.784157], - [-18.349814, 64.784347], - [-18.349547, 64.784684], - [-18.349871, 64.785118], - [-18.349744, 64.785401], - [-18.348787, 64.786296], - [-18.348549, 64.786677], - [-18.348868, 64.787178], - [-18.348925, 64.787268], - [-18.348928, 64.787581], - [-18.348661, 64.787919], - [-18.348279, 64.788055], - [-18.346847, 64.788685], - [-18.345287, 64.789256], - [-18.34462, 64.789571], - [-18.34457, 64.789741], - [-18.344432, 64.790138], - [-18.34456, 64.790525], - [-18.345204, 64.791107], - [-18.345241, 64.791421], - [-18.345041, 64.79165], - [-18.345623, 64.792283], - [-18.34556, 64.79261], - [-18.34548, 64.793079], - [-18.345376, 64.793338], - [-18.345445, 64.793435], - [-18.345469, 64.793848], - [-18.345211, 64.7941], - [-18.344618, 64.794346], - [-18.344092, 64.794594], - [-18.344174, 64.794795], - [-18.344441, 64.795142], - [-18.344829, 64.795263], - [-18.345254, 64.79537], - [-18.345397, 64.795615], - [-18.345479, 64.795801], - [-18.345116, 64.796095], - [-18.344412, 64.796438], - [-18.34366, 64.79661], - [-18.342945, 64.796753], - [-18.342355, 64.796971], - [-18.341626, 64.797243], - [-18.340308, 64.797719], - [-18.339202, 64.798084], - [-18.338329, 64.798453], - [-18.33739, 64.798835], - [-18.336932, 64.799055], - [-18.336361, 64.799335], - [-18.33647, 64.799329], - [-18.336335, 64.79938], - [-18.334987, 64.799879], - [-18.33168, 64.801455], - [-18.330939, 64.801855], - [-18.330433, 64.802245], - [-18.33, 64.802894], - [-18.329668, 64.803201], - [-18.328782, 64.803603], - [-18.328711, 64.80374], - [-18.328138, 64.804128], - [-18.327627, 64.804561], - [-18.327157, 64.804923], - [-18.32566, 64.805509], - [-18.325642, 64.805694], - [-18.324223, 64.806168], - [-18.321966, 64.806683], - [-18.320805, 64.806918], - [-18.319256, 64.807033], - [-18.318934, 64.807241], - [-18.318387, 64.80736], - [-18.317416, 64.807698], - [-18.316435, 64.808151], - [-18.315615, 64.808664], - [-18.315054, 64.809238], - [-18.314853, 64.80959], - [-18.314892, 64.809876], - [-18.314924, 64.810233], - [-18.314984, 64.810619], - [-18.315133, 64.811135], - [-18.315328, 64.811866], - [-18.315005, 64.812416], - [-18.314715, 64.812981], - [-18.31449, 64.813575], - [-18.314524, 64.813904], - [-18.314626, 64.814219], - [-18.31458, 64.814566], - [-18.31418, 64.81785], - [-18.315634, 64.819863], - [-18.316689, 64.821255], - [-18.316966, 64.821621], - [-18.317747, 64.822908], - [-18.317869, 64.823108], - [-18.317991, 64.823235], - [-18.319642, 64.824951], - [-18.319835, 64.826337], - [-18.319861, 64.826525], - [-18.319603, 64.82761], - [-18.319237, 64.829013], - [-18.319924, 64.831942], - [-18.31995, 64.832181], - [-18.320041, 64.832938], - [-18.32011, 64.832975], - [-18.320156, 64.833004], - [-18.320994, 64.833536], - [-18.321239, 64.833691], - [-18.3226, 64.834554], - [-18.324607, 64.834751], - [-18.326338, 64.83492], - [-18.326919, 64.834996], - [-18.327406, 64.835147], - [-18.327945, 64.835456], - [-18.328685, 64.835754], - [-18.329441, 64.835896], - [-18.330483, 64.835844], - [-18.331182, 64.835884], - [-18.331798, 64.836096], - [-18.33249, 64.836194], - [-18.333236, 64.836122], - [-18.334199, 64.835853], - [-18.334952, 64.835682], - [-18.335487, 64.835691], - [-18.336376, 64.83585], - [-18.337021, 64.83609], - [-18.337473, 64.836611], - [-18.337981, 64.836891], - [-18.338821, 64.837191], - [-18.33971, 64.837349], - [-18.340605, 64.837451], - [-18.341614, 64.83774], - [-18.342608, 64.838185], - [-18.343534, 64.838287], - [-18.344996, 64.838413], - [-18.346165, 64.838488], - [-18.346226, 64.838492], - [-18.347383, 64.838656], - [-18.347827, 64.838906], - [-18.347929, 64.839235], - [-18.348435, 64.839544], - [-18.349213, 64.8398], - [-18.349658, 64.840036], - [-18.34986, 64.840367], - [-18.349634, 64.84062], - [-18.349703, 64.840935], - [-18.350351, 64.84116], - [-18.351312, 64.841262], - [-18.351879, 64.841287], - [-18.352651, 64.841258], - [-18.353742, 64.841064], - [-18.355303, 64.840849], - [-18.357628, 64.840719], - [-18.3593, 64.840749], - [-18.359966, 64.840775], - [-18.36063, 64.840844], - [-18.361254, 64.840955], - [-18.361963, 64.841238], - [-18.362451, 64.841404], - [-18.363341, 64.841534], - [-18.364492, 64.841753], - [-18.36484, 64.841945], - [-18.365378, 64.842268], - [-18.366027, 64.842494], - [-18.367534, 64.842834], - [-18.368619, 64.843039], - [-18.369408, 64.843194], - [-18.36985, 64.843459], - [-18.370691, 64.843773], - [-18.370792, 64.843775], - [-18.371716, 64.843905], - [-18.373007, 64.844056], - [-18.374104, 64.844148], - [-18.374769, 64.844202], - [-18.375566, 64.844273], - [-18.376803, 64.844295], - [-18.377947, 64.844243], - [-18.379328, 64.844168], - [-18.379799, 64.844185], - [-18.380129, 64.844196], - [-18.380953, 64.844311], - [-18.381872, 64.844513], - [-18.383679, 64.845214], - [-18.384318, 64.845525], - [-18.385596, 64.846074], - [-18.38562, 64.846108], - [-18.386508, 64.847378], - [-18.386556, 64.84766], - [-18.386428, 64.847956], - [-18.386529, 64.848286], - [-18.386808, 64.848519], - [-18.387554, 64.848774], - [-18.388614, 64.848893], - [-18.389269, 64.849061], - [-18.390056, 64.849232], - [-18.390896, 64.849204], - [-18.391505, 64.849129], - [-18.392145, 64.849097], - [-18.392706, 64.849193], - [-18.393565, 64.849322], - [-18.394342, 64.84925], - [-18.395068, 64.849006], - [-18.395745, 64.848947], - [-18.397372, 64.849075], - [-18.398717, 64.849028], - [-18.399451, 64.849068], - [-18.399978, 64.849164], - [-18.400356, 64.849398], - [-18.400349, 64.849826], - [-18.400728, 64.850402], - [-18.400993, 64.850804], - [-18.401138, 64.851023], - [-18.401814, 64.851305], - [-18.40267, 64.851463], - [-18.403743, 64.851453], - [-18.404652, 64.851397], - [-18.405345, 64.851167], - [-18.406328, 64.850685], - [-18.407224, 64.85043], - [-18.408038, 64.850331], - [-18.409926, 64.850207], - [-18.411446, 64.85009], - [-18.412529, 64.849967], - [-18.415132, 64.84937], - [-18.416764, 64.849114], - [-18.417351, 64.848939], - [-18.417749, 64.848632], - [-18.418174, 64.848383], - [-18.419352, 64.848332], - [-18.42046, 64.848308], - [-18.421351, 64.848438], - [-18.422079, 64.848522], - [-18.422926, 64.848399], - [-18.423134, 64.848369], - [-18.423798, 64.848424], - [-18.425869, 64.84883], - [-18.426752, 64.849059], - [-18.427756, 64.849419], - [-18.427965, 64.849678], - [-18.428215, 64.849869], - [-18.428935, 64.850037], - [-18.430334, 64.850133], - [-18.431497, 64.850239], - [-18.431923, 64.850299], - [-18.432462, 64.850391], - [-18.433309, 64.850676], - [-18.433463, 64.850794], - [-18.434123, 64.851299], - [-18.434829, 64.851688], - [-18.435709, 64.852172], - [-18.436186, 64.852408], - [-18.437156, 64.852889], - [-18.437517, 64.853068], - [-18.437758, 64.853188], - [-18.438704, 64.853318], - [-18.439406, 64.853416], - [-18.440268, 64.853535], - [-18.443517, 64.853625], - [-18.444546, 64.853566], - [-18.445344, 64.85352], - [-18.445934, 64.853486], - [-18.446234, 64.853469], - [-18.446486, 64.853405], - [-18.447532, 64.853145], - [-18.448196, 64.853473], - [-18.448855, 64.853798], - [-18.449354, 64.854044], - [-18.449834, 64.85428], - [-18.4504, 64.85456], - [-18.450812, 64.854762], - [-18.451245, 64.854976], - [-18.451588, 64.855145], - [-18.451996, 64.855346], - [-18.452549, 64.855619], - [-18.452843, 64.855837], - [-18.452874, 64.855899], - [-18.452997, 64.856146], - [-18.453207, 64.856568], - [-18.453351, 64.856858], - [-18.453654, 64.857466], - [-18.453909, 64.857978], - [-18.454179, 64.858519], - [-18.454546, 64.859255], - [-18.45489, 64.859947], - [-18.455022, 64.860211], - [-18.455211, 64.860591], - [-18.455476, 64.861123], - [-18.455631, 64.861434], - [-18.45569, 64.861552], - [-18.454724, 64.862141], - [-18.453744, 64.862566], - [-18.45285, 64.862821], - [-18.451948, 64.863504], - [-18.451333, 64.863979], - [-18.449736, 64.864564], - [-18.44917, 64.864882], - [-18.447884, 64.865344], - [-18.447462, 64.865565], - [-18.447182, 64.866045], - [-18.44705, 64.866371], - [-18.446593, 64.866933], - [-18.446079, 64.867409], - [-18.446021, 64.867664], - [-18.446277, 64.868153], - [-18.44641, 64.868526], - [-18.44647, 64.86894], - [-18.446453, 64.869126], - [-18.446422, 64.869453], - [-18.446389, 64.869795], - [-18.446392, 64.870122], - [-18.446461, 64.870466], - [-18.446585, 64.87091], - [-18.446731, 64.871404], - [-18.446762, 64.871512], - [-18.447014, 64.872043], - [-18.447496, 64.872265], - [-18.447902, 64.872482], - [-18.447368, 64.873194], - [-18.44695, 64.873663], - [-18.4467, 64.874044], - [-18.446666, 64.874406], - [-18.446425, 64.874697], - [-18.445146, 64.875242], - [-18.444257, 64.875612], - [-18.444188, 64.875672], - [-18.443902, 64.875852], - [-18.443475, 64.87613], - [-18.441992, 64.876546], - [-18.441501, 64.87678], - [-18.440982, 64.877313], - [-18.440223, 64.87787], - [-18.439829, 64.878149], - [-18.439203, 64.878379], - [-18.438363, 64.87875], - [-18.437792, 64.879111], - [-18.437277, 64.879587], - [-18.43674, 64.879948], - [-18.435911, 64.880205], - [-18.435221, 64.880392], - [-18.434564, 64.880595], - [-18.434458, 64.881021], - [-18.434221, 64.881372], - [-18.433474, 64.88183], - [-18.433443, 64.882157], - [-18.434954, 64.88284], - [-18.435844, 64.883368], - [-18.436484, 64.883678], - [-18.437236, 64.883876], - [-18.438003, 64.883918], - [-18.438625, 64.884085], - [-18.43903, 64.884078], - [-18.439489, 64.884103], - [-18.440165, 64.884141], - [-18.44045, 64.884192], - [-18.441066, 64.884301], - [-18.441504, 64.884491], - [-18.441657, 64.884665], - [-18.441734, 64.884895], - [-18.441583, 64.885091], - [-18.441454, 64.885374], - [-18.441124, 64.885668], - [-18.440565, 64.885901], - [-18.43976, 64.886257], - [-18.43953, 64.886567], - [-18.439619, 64.887025], - [-18.439851, 64.887413], - [-18.440466, 64.887652], - [-18.441042, 64.887947], - [-18.441049, 64.888232], - [-18.440613, 64.888567], - [-18.439356, 64.889101], - [-18.438294, 64.889667], - [-18.437735, 64.890256], - [-18.437637, 64.890568], - [-18.437706, 64.890911], - [-18.438002, 64.89133], - [-18.438771, 64.891713], - [-18.438982, 64.891959], - [-18.439223, 64.892249], - [-18.440153, 64.892692], - [-18.440223, 64.893021], - [-18.440518, 64.893454], - [-18.440378, 64.893851], - [-18.440249, 64.894148], - [-18.440203, 64.89429], - [-18.440235, 64.894647], - [-18.440493, 64.895464], - [-18.440489, 64.895862], - [-18.440259, 64.896528], - [-18.440134, 64.896768], - [-18.439526, 64.897157], - [-18.438718, 64.897542], - [-18.438273, 64.897649], - [-18.437685, 64.897824], - [-18.437046, 64.898183], - [-18.436572, 64.898589], - [-18.436238, 64.898925], - [-18.435554, 64.899042], - [-18.434267, 64.899176], - [-18.433415, 64.899304], - [-18.433233, 64.899371], - [-18.432824, 64.899522], - [-18.432455, 64.899747], - [-18.431606, 64.900064], - [-18.43095, 64.900174], - [-18.430212, 64.900175], - [-18.429417, 64.900062], - [-18.428617, 64.900005], - [-18.427573, 64.900045], - [-18.427348, 64.900077], - [-18.426688, 64.900171], - [-18.425347, 64.900504], - [-18.425217, 64.900527], - [-18.424528, 64.900647], - [-18.423727, 64.900605], - [-18.422827, 64.900533], - [-18.4213, 64.900609], - [-18.42114, 64.900617], - [-18.42044, 64.900577], - [-18.419781, 64.900437], - [-18.419016, 64.900367], - [-18.418383, 64.900369], - [-18.417575, 64.900355], - [-18.416802, 64.900371], - [-18.416077, 64.900572], - [-18.415218, 64.900771], - [-18.415113, 64.900781], - [-18.414203, 64.900867], - [-18.412871, 64.900829], - [-18.412774, 64.900829], - [-18.409995, 64.900652], - [-18.409472, 64.900515], - [-18.408638, 64.900457], - [-18.40766, 64.900512], - [-18.40657, 64.900678], - [-18.405617, 64.900804], - [-18.404537, 64.90087], - [-18.402957, 64.900899], - [-18.401208, 64.900926], - [-18.400031, 64.900962], - [-18.398959, 64.900944], - [-18.397373, 64.90103], - [-18.396492, 64.901115], - [-18.395855, 64.901104], - [-18.394142, 64.900774], - [-18.392955, 64.900554], - [-18.391814, 64.900221], - [-18.3912, 64.899967], - [-18.390405, 64.899512], - [-18.38957, 64.899112], - [-18.38885, 64.898929], - [-18.387954, 64.898841], - [-18.386779, 64.898835], - [-18.385949, 64.898749], - [-18.385065, 64.898506], - [-18.384184, 64.898262], - [-18.383451, 64.898221], - [-18.382638, 64.898292], - [-18.382015, 64.89837], - [-18.381208, 64.898152], - [-18.380377, 64.897725], - [-18.379743, 64.897699], - [-18.378928, 64.897799], - [-18.378262, 64.89773], - [-18.377426, 64.897546], - [-18.377277, 64.897513], - [-18.376802, 64.897576], - [-18.375932, 64.897889], - [-18.375347, 64.898035], - [-18.374401, 64.89809], - [-18.37377, 64.898036], - [-18.373623, 64.898066], - [-18.372651, 64.898267], - [-18.372588, 64.89828], - [-18.371206, 64.89869], - [-18.369987, 64.898749], - [-18.368431, 64.899082], - [-18.367968, 64.899359], - [-18.367138, 64.899615], - [-18.365805, 64.899862], - [-18.364689, 64.899942], - [-18.363877, 64.900013], - [-18.362609, 64.900262], - [-18.361056, 64.900705], - [-18.359302, 64.90113], - [-18.358857, 64.901204], - [-18.358144, 64.901323], - [-18.356045, 64.901485], - [-18.354857, 64.901635], - [-18.353693, 64.901856], - [-18.351922, 64.902452], - [-18.351355, 64.902756], - [-18.350934, 64.902947], - [-18.350756, 64.903058], - [-18.349826, 64.903299], - [-18.348668, 64.903806], - [-18.34781, 64.904332], - [-18.346527, 64.905421], - [-18.346009, 64.905911], - [-18.345956, 64.906109], - [-18.345341, 64.906554], - [-18.344983, 64.907133], - [-18.345013, 64.90749], - [-18.345279, 64.907864], - [-18.34595, 64.90825], - [-18.346201, 64.908394], - [-18.346536, 64.908728], - [-18.347198, 64.909182], - [-18.347664, 64.909561], - [-18.347951, 64.910036], - [-18.348467, 64.910587], - [-18.349431, 64.911046], - [-18.349731, 64.911274], - [-18.349836, 64.911353], - [-18.349853, 64.911524], - [-18.349679, 64.91192], - [-18.349745, 64.912277], - [-18.350255, 64.912557], - [-18.350495, 64.912847], - [-18.350524, 64.913232], - [-18.35026, 64.913527], - [-18.350158, 64.913881], - [-18.350281, 64.914326], - [-18.35035, 64.914655], - [-18.350011, 64.915019], - [-18.349945, 64.915346], - [-18.349796, 64.915827], - [-18.349525, 64.916193], - [-18.348821, 64.916537], - [-18.348353, 64.916842], - [-18.347929, 64.917063], - [-18.347082, 64.917475], - [-18.346375, 64.917819], - [-18.345688, 64.917993], - [-18.34468, 64.918345], - [-18.344012, 64.918633], - [-18.343643, 64.918968], - [-18.343132, 64.919386], - [-18.342699, 64.919678], - [-18.341859, 64.920019], - [-18.340192, 64.920629], - [-18.339982, 64.920637], - [-18.339601, 64.920653], - [-18.338783, 64.920691], - [-18.33839, 64.920798], - [-18.338404, 64.920998], - [-18.338999, 64.921765], - [-18.339275, 64.922026], - [-18.339358, 64.922213], - [-18.339107, 64.922379], - [-18.338446, 64.922595], - [-18.337823, 64.922783], - [-18.337033, 64.923297], - [-18.336368, 64.923585], - [-18.335641, 64.923785], - [-18.334522, 64.923894], - [-18.333629, 64.924106], - [-18.333219, 64.924156], - [-18.332734, 64.923976], - [-18.332571, 64.923931], - [-18.332498, 64.923644], - [-18.332498, 64.923301], - [-18.332364, 64.922971], - [-18.331638, 64.922502], - [-18.330958, 64.922233], - [-18.33003, 64.922117], - [-18.328749, 64.922152], - [-18.327612, 64.922117], - [-18.326901, 64.922161], - [-18.325449, 64.922248], - [-18.324784, 64.922166], - [-18.324302, 64.921958], - [-18.323892, 64.921694], - [-18.32315, 64.921395], - [-18.321898, 64.92113], - [-18.320834, 64.921025], - [-18.320161, 64.921042], - [-18.319342, 64.92117], - [-18.318137, 64.921462], - [-18.317362, 64.921491], - [-18.317027, 64.92147], - [-18.316123, 64.921454], - [-18.31545, 64.921456], - [-18.314809, 64.921305], - [-18.314686, 64.921276], - [-18.313301, 64.921368], - [-18.311467, 64.921655], - [-18.311326, 64.92171], - [-18.310918, 64.922115], - [-18.310251, 64.922389], - [-18.309859, 64.922623], - [-18.309359, 64.922914], - [-18.308639, 64.923057], - [-18.307525, 64.923451], - [-18.3063, 64.9236], - [-18.305878, 64.923792], - [-18.305563, 64.924256], - [-18.30517, 64.924819], - [-18.30491, 64.925], - [-18.304592, 64.925223], - [-18.30381, 64.925322], - [-18.303465, 64.925402], - [-18.302989, 64.925464], - [-18.301986, 64.925418], - [-18.300934, 64.925527], - [-18.300385, 64.925645], - [-18.299658, 64.925846], - [-18.299057, 64.925821], - [-18.2983, 64.92565], - [-18.297492, 64.925351], - [-18.296188, 64.92527], - [-18.294845, 64.92526], - [-18.294007, 64.925259], - [-18.291728, 64.925203], - [-18.291152, 64.925206], - [-18.291019, 64.925216], - [-18.290699, 64.925244], - [-18.290351, 64.925295], - [-18.290066, 64.925358], - [-18.289454, 64.925761], - [-18.289113, 64.926139], - [-18.289001, 64.926593], - [-18.289061, 64.926651], - [-18.289193, 64.927352], - [-18.289803, 64.927619], - [-18.290471, 64.928002], - [-18.291824, 64.928255], - [-18.292557, 64.928639], - [-18.292666, 64.928884], - [-18.292727, 64.929283], - [-18.293135, 64.929562], - [-18.293864, 64.929661], - [-18.294562, 64.929745], - [-18.295547, 64.930304], - [-18.295737, 64.93075], - [-18.296329, 64.931217], - [-18.297227, 64.931974], - [-18.297637, 64.932566], - [-18.297701, 64.932938], - [-18.297667, 64.933279], - [-18.297639, 64.933549], - [-18.297624, 64.933706], - [-18.297787, 64.93408], - [-18.298899, 64.934855], - [-18.299015, 64.9349], - [-18.299431, 64.935121], - [-18.300461, 64.935567], - [-18.301689, 64.936156], - [-18.301842, 64.936191], - [-18.302543, 64.936589], - [-18.303274, 64.937001], - [-18.30377, 64.937424], - [-18.303796, 64.937809], - [-18.303854, 64.938252], - [-18.303754, 64.938564], - [-18.303689, 64.938876], - [-18.303187, 64.939195], - [-18.302052, 64.939446], - [-18.301556, 64.939707], - [-18.301606, 64.939879], - [-18.302192, 64.940388], - [-18.302645, 64.940924], - [-18.302625, 64.941437], - [-18.302572, 64.941649], - [-18.30217, 64.941956], - [-18.301784, 64.942448], - [-18.301612, 64.94283], - [-18.301777, 64.943084], - [-18.301874, 64.943233], - [-18.30299, 64.944166], - [-18.303633, 64.944463], - [-18.3044, 64.944862], - [-18.305183, 64.945418], - [-18.305473, 64.945879], - [-18.305416, 64.946344], - [-18.305415, 64.946417], - [-18.305254, 64.946739], - [-18.304777, 64.947029], - [-18.304308, 64.947238], - [-18.303451, 64.947493], - [-18.30256, 64.948074], - [-18.302058, 64.948608], - [-18.301483, 64.949456], - [-18.301458, 64.949698], - [-18.301521, 64.950069], - [-18.301597, 64.950655], - [-18.301481, 64.951138], - [-18.301476, 64.951523], - [-18.301691, 64.952054], - [-18.301856, 64.952755], - [-18.301966, 64.953655], - [-18.301868, 64.953981], - [-18.301641, 64.95422], - [-18.300799, 64.954561], - [-18.300263, 64.954879], - [-18.299897, 64.955396], - [-18.299242, 64.956235], - [-18.298417, 64.956841], - [-18.297707, 64.957213], - [-18.29716, 64.957645], - [-18.296822, 64.957886], - [-18.296838, 64.958167], - [-18.2973, 64.958916], - [-18.29847, 64.959992], - [-18.298929, 64.9601], - [-18.299468, 64.960096], - [-18.300678, 64.960118], - [-18.30122, 64.960071], - [-18.302114, 64.960201], - [-18.303419, 64.960609], - [-18.304429, 64.960927], - [-18.305106, 64.961238], - [-18.305425, 64.961416], - [-18.306199, 64.961743], - [-18.307281, 64.962005], - [-18.307787, 64.962014], - [-18.30828, 64.961971], - [-18.308793, 64.962032], - [-18.308894, 64.96202], - [-18.309322, 64.962127], - [-18.309955, 64.962182], - [-18.310538, 64.962406], - [-18.310981, 64.962684], - [-18.311215, 64.96303], - [-18.311165, 64.963529], - [-18.311069, 64.963826], - [-18.310822, 64.964263], - [-18.311075, 64.964425], - [-18.311534, 64.964562], - [-18.311919, 64.964739], - [-18.31186, 64.964981], - [-18.311552, 64.965375], - [-18.311592, 64.965646], - [-18.312073, 64.965882], - [-18.312385, 64.96613], - [-18.312685, 64.966834], - [-18.312748, 64.966864], - [-18.313935, 64.967114], - [-18.315018, 64.96739], - [-18.315759, 64.967717], - [-18.316259, 64.968097], - [-18.316528, 64.968444], - [-18.316549, 64.968886], - [-18.31638, 64.969239], - [-18.316006, 64.969602], - [-18.315297, 64.969975], - [-18.313741, 64.970716], - [-18.313447, 64.970968], - [-18.312958, 64.971486], - [-18.312669, 64.972023], - [-18.312633, 64.972379], - [-18.313039, 64.972685], - [-18.313501, 64.973107], - [-18.314206, 64.973461], - [-18.314554, 64.97351], - [-18.314713, 64.973519], - [-18.315224, 64.973563], - [-18.315974, 64.973699], - [-18.316885, 64.973926], - [-18.317249, 64.974001], - [-18.318644, 64.974183], - [-18.319503, 64.974327], - [-18.320017, 64.974578], - [-18.320032, 64.974764], - [-18.319728, 64.975115], - [-18.319662, 64.975238], - [-18.319563, 64.975425], - [-18.319788, 64.975871], - [-18.320154, 64.976234], - [-18.321102, 64.976865], - [-18.321801, 64.977276], - [-18.323011, 64.977283], - [-18.323165, 64.977247], - [-18.323736, 64.977111], - [-18.32468, 64.977085], - [-18.325514, 64.977172], - [-18.326469, 64.977374], - [-18.327648, 64.977708], - [-18.328548, 64.978124], - [-18.32905, 64.978489], - [-18.329342, 64.978712], - [-18.329409, 64.978722], - [-18.330884, 64.979475], - [-18.332842, 64.980444], - [-18.333069, 64.980556], - [-18.333758, 64.98097], - [-18.334529, 64.981434], - [-18.335162, 64.981815], - [-18.335574, 64.982283], - [-18.335733, 64.982714], - [-18.335703, 64.983355], - [-18.336035, 64.983746], - [-18.336587, 64.984268], - [-18.336752, 64.984406], - [-18.336867, 64.984502], - [-18.336968, 64.984979], - [-18.337264, 64.985229], - [-18.337553, 64.98544], - [-18.338585, 64.985844], - [-18.339539, 64.986089], - [-18.340469, 64.986205], - [-18.341572, 64.986282], - [-18.342407, 64.986354], - [-18.3435, 64.98644], - [-18.344038, 64.986706], - [-18.344591, 64.987091], - [-18.344645, 64.987206], - [-18.344942, 64.98761], - [-18.345259, 64.988157], - [-18.345309, 64.988657], - [-18.345362, 64.98891], - [-18.345448, 64.989315], - [-18.345486, 64.989587], - [-18.345616, 64.989646], - [-18.346172, 64.990155], - [-18.34664, 64.990534], - [-18.347142, 64.9909], - [-18.347537, 64.99132], - [-18.347578, 64.991592], - [-18.347523, 64.991804], - [-18.347481, 64.992127], - [-18.348189, 64.992557], - [-18.348592, 64.992921], - [-18.348727, 64.993593], - [-18.348903, 64.993853], - [-18.34954, 64.994235], - [-18.350102, 64.995], - [-18.350049, 64.995198], - [-18.350002, 64.995668], - [-18.34994, 64.995952], - [-18.350077, 64.996283], - [-18.350481, 64.996618], - [-18.351263, 64.99723], - [-18.351724, 64.997666], - [-18.351991, 64.998041], - [-18.351961, 64.99834], - [-18.351895, 64.998666], - [-18.352526, 64.999447], - [-18.35256, 64.999501], - [-18.352705, 64.999736], - [-18.35276, 65.000203], - [-18.352888, 65.001302], - [-18.352942, 65.001772], - [-18.353007, 65.002326], - [-18.353112, 65.003248], - [-18.352908, 65.004043], - [-18.352863, 65.004218], - [-18.353009, 65.004559], - [-18.354483, 65.008014], - [-18.354573, 65.008108], - [-18.354707, 65.008249], - [-18.356571, 65.010195], - [-18.356635, 65.010394], - [-18.357158, 65.012024], - [-18.358077, 65.013599], - [-18.359404, 65.014646], - [-18.3596, 65.014801], - [-18.359929, 65.015061], - [-18.362018, 65.015683], - [-18.363213, 65.016028], - [-18.363991, 65.016109], - [-18.364734, 65.016185], - [-18.364742, 65.016217], - [-18.364868, 65.01672], - [-18.365637, 65.019784], - [-18.365931, 65.020958], - [-18.366649, 65.023821], - [-18.367929, 65.028916], - [-18.368705, 65.032007], - [-18.368121, 65.032935], - [-18.367065, 65.034613], - [-18.366267, 65.03588], - [-18.365711, 65.036765], - [-18.36405, 65.039401], - [-18.363664, 65.040016], - [-18.361499, 65.043453], - [-18.355482, 65.053003], - [-18.354737, 65.054184], - [-18.352707, 65.057405], - [-18.352193, 65.05822], - [-18.351796, 65.058849], - [-18.350393, 65.061075], - [-18.350059, 65.061604], - [-18.348595, 65.063924], - [-18.34828, 65.064423], - [-18.346318, 65.067533], - [-18.3455, 65.06883], - [-18.342094, 65.074226], - [-18.340498, 65.076754], - [-18.339782, 65.077886], - [-18.339454, 65.078407], - [-18.337844, 65.080956], - [-18.337504, 65.081494], - [-18.336822, 65.082573], - [-18.333945, 65.087126], - [-18.33262, 65.089223], - [-18.331973, 65.090247], - [-18.329206, 65.094624], - [-18.327376, 65.097517], - [-18.325827, 65.099966], - [-18.321139, 65.107374], - [-18.320864, 65.107809], - [-18.320361, 65.108602], - [-18.321515, 65.110309], - [-18.323634, 65.113443], - [-18.324722, 65.115052], - [-18.329358, 65.121906], - [-18.329999, 65.122853], - [-18.334779, 65.129916], - [-18.335664, 65.131222], - [-18.339277, 65.136558], - [-18.345561, 65.145832], - [-18.346928, 65.147847], - [-18.35035, 65.152894], - [-18.351255, 65.154228], - [-18.352483, 65.156038], - [-18.359042, 65.165703], - [-18.359415, 65.166252], - [-18.359427, 65.166544], - [-18.359451, 65.167146], - [-18.359616, 65.171222], - [-18.359687, 65.173004], - [-18.359734, 65.174161], - [-18.359765, 65.174932], - [-18.359782, 65.175348], - [-18.359861, 65.194558], - [-18.358478, 65.195507], - [-18.357647, 65.196187], - [-18.357308, 65.197036], - [-18.357482, 65.19784], - [-18.358329, 65.198282], - [-18.360085, 65.198527], - [-18.361571, 65.198927], - [-18.361609, 65.199468], - [-18.360973, 65.200375], - [-18.36068, 65.200708], - [-18.360511, 65.200901], - [-18.360364, 65.201069], - [-18.36018, 65.201279], - [-18.356109, 65.204518], - [-18.355997, 65.204556], - [-18.355313, 65.204956], - [-18.355326, 65.20517], - [-18.355262, 65.205469], - [-18.354905, 65.205633], - [-18.35454, 65.205884], - [-18.353607, 65.206381], - [-18.353233, 65.206744], - [-18.35303, 65.207068], - [-18.352661, 65.207376], - [-18.352161, 65.20761], - [-18.35164, 65.207728], - [-18.350926, 65.207744], - [-18.350311, 65.207776], - [-18.349809, 65.208052], - [-18.348984, 65.208152], - [-18.34876, 65.208361], - [-18.348389, 65.208669], - [-18.348156, 65.208964], - [-18.348113, 65.209391], - [-18.348471, 65.20954], - [-18.348679, 65.209829], - [-18.348735, 65.2103], - [-18.349221, 65.210523], - [-18.349848, 65.211061], - [-18.350053, 65.211378], - [-18.350385, 65.211783], - [-18.350525, 65.212049], - [-18.350562, 65.212384], - [-18.354882, 65.213483], - [-18.36222, 65.215349], - [-18.365898, 65.216285], - [-18.367819, 65.216773], - [-18.371088, 65.217604], - [-18.375873, 65.21882], - [-18.381146, 65.22016], - [-18.399188, 65.224742], - [-18.402645, 65.225619], - [-18.40386, 65.225928], - [-18.412677, 65.228165], - [-18.413773, 65.228443], - [-18.415004, 65.228755], - [-18.41623, 65.229066], - [-18.420647, 65.230187], - [-18.428225, 65.232108], - [-18.430806, 65.232762], - [-18.433494, 65.233444], - [-18.433944, 65.233558], - [-18.436907, 65.234308], - [-18.437111, 65.23436], - [-18.439384, 65.234936], - [-18.445858, 65.236576], - [-18.45144, 65.23799], - [-18.454773, 65.238834], - [-18.483605, 65.24613], - [-18.485928, 65.246718], - [-18.489885, 65.247718], - [-18.492717, 65.248434], - [-18.494269, 65.24974], - [-18.496416, 65.251751], - [-18.497399, 65.252672], - [-18.498923, 65.2541], - [-18.499895, 65.255617], - [-18.501523, 65.258156], - [-18.503771, 65.261661], - [-18.506667, 65.266177], - [-18.512774, 65.275692], - [-18.515149, 65.279392], - [-18.516333, 65.281235], - [-18.51894, 65.285294], - [-18.523897, 65.293006], - [-18.524629, 65.294143], - [-18.524893, 65.294556], - [-18.525227, 65.295075], - [-18.525792, 65.295953], - [-18.525076, 65.299243], - [-18.524966, 65.299751], - [-18.524851, 65.300679], - [-18.524573, 65.302928], - [-18.524562, 65.303001], - [-18.523956, 65.306886], - [-18.523865, 65.307475], - [-18.523509, 65.310259], - [-18.523868, 65.313176], - [-18.523935, 65.313724], - [-18.524054, 65.314717], - [-18.524195, 65.315894], - [-18.524251, 65.316362], - [-18.524438, 65.320374], - [-18.524472, 65.32117], - [-18.524539, 65.322792], - [-18.524583, 65.323834], - [-18.5247, 65.326587], - [-18.524794, 65.328592], - [-18.525142, 65.329895], - [-18.526124, 65.332202], - [-18.52622, 65.332428], - [-18.527481, 65.33402], - [-18.529428, 65.336331], - [-18.531111, 65.338442], - [-18.532153, 65.339656], - [-18.533231, 65.340913], - [-18.535324, 65.342676], - [-18.537194, 65.343807], - [-18.5405, 65.345196], - [-18.541087, 65.345442], - [-18.545299, 65.34669], - [-18.548135, 65.347561], - [-18.550175, 65.347966], - [-18.552662, 65.34846], - [-18.552814, 65.348482], - [-18.558842, 65.349382], - [-18.559159, 65.34943], - [-18.565491, 65.350161], - [-18.574978, 65.351374], - [-18.577986, 65.351667], - [-18.581975, 65.352054], - [-18.582478, 65.352104], - [-18.58272, 65.352127], - [-18.583244, 65.352181], - [-18.5842, 65.352279], - [-18.585441, 65.352406], - [-18.589526, 65.352826], - [-18.591891, 65.353011], - [-18.596345, 65.35336], - [-18.601488, 65.353763], - [-18.604364, 65.353988], - [-18.606923, 65.354188], - [-18.610043, 65.354433], - [-18.610927, 65.354502], - [-18.614654, 65.354915], - [-18.620588, 65.355912], - [-18.623699, 65.356904], - [-18.626395, 65.358322], - [-18.628179, 65.359626], - [-18.628867, 65.360129], - [-18.631768, 65.362414], - [-18.633045, 65.363325], - [-18.634161, 65.364126], - [-18.637575, 65.366494], - [-18.638588, 65.367197], - [-18.641404, 65.369402], - [-18.642534, 65.370316], - [-18.645619, 65.372808], - [-18.647555, 65.374332], - [-18.649042, 65.375282], - [-18.650139, 65.375983], - [-18.654344, 65.378643], - [-18.654597, 65.378803], - [-18.655189, 65.379279], - [-18.657586, 65.381207], - [-18.660421, 65.383216], - [-18.662236, 65.384427], - [-18.666025, 65.386957], - [-18.666488, 65.387247], - [-18.669186, 65.388941], - [-18.671724, 65.390699], - [-18.674827, 65.392822], - [-18.67519, 65.39307], - [-18.677955, 65.394596], - [-18.67885, 65.39509], - [-18.679145, 65.395253], - [-18.680914, 65.396108], - [-18.682083, 65.396674], - [-18.68267, 65.396958], - [-18.683241, 65.397156], - [-18.683855, 65.39737], - [-18.686329, 65.398232], - [-18.690059, 65.399711], - [-18.690246, 65.399785], - [-18.691223, 65.400233], - [-18.692471, 65.400805], - [-18.694325, 65.401655], - [-18.695579, 65.402359], - [-18.697593, 65.403491], - [-18.698442, 65.403968], - [-18.698638, 65.404078], - [-18.701333, 65.405227], - [-18.702088, 65.405549], - [-18.702365, 65.405667], - [-18.703614, 65.406205], - [-18.704637, 65.406645], - [-18.70631, 65.40725], - [-18.707471, 65.40767], - [-18.707111, 65.409629], - [-18.707135, 65.410891], - [-18.707144, 65.411307], - [-18.707145, 65.411398], - [-18.707139, 65.411676], - [-18.707116, 65.412812], - [-18.707232, 65.413795], - [-18.707278, 65.41419], - [-18.706812, 65.415204], - [-18.706566, 65.415869], - [-18.706449, 65.416658], - [-18.706436, 65.416747], - [-18.706358, 65.417277], - [-18.706334, 65.417437], - [-18.705746, 65.418764], - [-18.70461, 65.419886], - [-18.704039, 65.421017], - [-18.70358, 65.421953], - [-18.702902, 65.423199], - [-18.702456, 65.424018], - [-18.702184, 65.424957], - [-18.70215, 65.425074], - [-18.701781, 65.426327], - [-18.701396, 65.427057], - [-18.701102, 65.427613], - [-18.701165, 65.429077], - [-18.701256, 65.429804], - [-18.701386, 65.430839], - [-18.701541, 65.431818], - [-18.701759, 65.43319], - [-18.701812, 65.433518], - [-18.701876, 65.433731], - [-18.702018, 65.434204], - [-18.702203, 65.43482], - [-18.702291, 65.435112], - [-18.702375, 65.435388], - [-18.702605, 65.436154], - [-18.702762, 65.436676], - [-18.702879, 65.436891], - [-18.703494, 65.438023], - [-18.703572, 65.438191], - [-18.703978, 65.43906], - [-18.704201, 65.439536], - [-18.704289, 65.439724], - [-18.70455, 65.440015], - [-18.705095, 65.44062], - [-18.705149, 65.44068], - [-18.706076, 65.441478], - [-18.706519, 65.441859], - [-18.70673, 65.44204], - [-18.707018, 65.442431], - [-18.707152, 65.442611], - [-18.707405, 65.442954], - [-18.70764, 65.44331], - [-18.707826, 65.443591], - [-18.708328, 65.444347], - [-18.709545, 65.445223], - [-18.710722, 65.446069], - [-18.711208, 65.446551], - [-18.712363, 65.447695], - [-18.713853, 65.44909], - [-18.714106, 65.449326], - [-18.714294, 65.449502], - [-18.714667, 65.449935], - [-18.714809, 65.4501], - [-18.714835, 65.450193], - [-18.714898, 65.450414], - [-18.714919, 65.450491], - [-18.715097, 65.451126], - [-18.715019, 65.451399], - [-18.714756, 65.452309], - [-18.714556, 65.453003], - [-18.714526, 65.453344], - [-18.714512, 65.45351], - [-18.714487, 65.453788], - [-18.714587, 65.454554], - [-18.7146, 65.454647], - [-18.714516, 65.454807], - [-18.713928, 65.455862], - [-18.71393, 65.456923], - [-18.714592, 65.457994], - [-18.714706, 65.45836], - [-18.714731, 65.458439], - [-18.714814, 65.458705], - [-18.713845, 65.460065], - [-18.713366, 65.460515], - [-18.712403, 65.461419], - [-18.712324, 65.461598], - [-18.711933, 65.462473], - [-18.71169, 65.463098], - [-18.712694, 65.463506], - [-18.714385, 65.463769], - [-18.714931, 65.463854], - [-18.716593, 65.464311], - [-18.718433, 65.464889], - [-18.720199, 65.46523], - [-18.721523, 65.465787], - [-18.721749, 65.465882], - [-18.723026, 65.466412], - [-18.724711, 65.466595], - [-18.72754, 65.466676], - [-18.730381, 65.466426], - [-18.730588, 65.466408], - [-18.731271, 65.466292], - [-18.732506, 65.466083], - [-18.73286, 65.466043], - [-18.734026, 65.46591], - [-18.735355, 65.465929], - [-18.735696, 65.465979], - [-18.737128, 65.466191], - [-18.737333, 65.466206], - [-18.739946, 65.46639], - [-18.741524, 65.466728], - [-18.741786, 65.466815], - [-18.74327, 65.467304], - [-18.744845, 65.467682], - [-18.745095, 65.467685], - [-18.746261, 65.467703], - [-18.747414, 65.467484], - [-18.747656, 65.467438], - [-18.747798, 65.467411], - [-18.748186, 65.467527], - [-18.748621, 65.467657], - [-18.749047, 65.467785], - [-18.74918, 65.467825], - [-18.749227, 65.46789], - [-18.749518, 65.468301], - [-18.749579, 65.468346], - [-18.750853, 65.469264], - [-18.751019, 65.469327], - [-18.752593, 65.469919], - [-18.752669, 65.47004], - [-18.753065, 65.470669], - [-18.753092, 65.470712], - [-18.753041, 65.470747], - [-18.752498, 65.471128], - [-18.751147, 65.471523], - [-18.750937, 65.471583], - [-18.750003, 65.472552], - [-18.749997, 65.473469], - [-18.749996, 65.47373], - [-18.749908, 65.473943], - [-18.749638, 65.47459], - [-18.748383, 65.475616], - [-18.748316, 65.47567], - [-18.747707, 65.476826], - [-18.747638, 65.476957], - [-18.747425, 65.477742], - [-18.747361, 65.477974], - [-18.746291, 65.478632], - [-18.745864, 65.478895], - [-18.745308, 65.479202], - [-18.743821, 65.480024], - [-18.742898, 65.480535], - [-18.741289, 65.481423], - [-18.740164, 65.481899], - [-18.738512, 65.482599], - [-18.737173, 65.483166], - [-18.736262, 65.483456], - [-18.731628, 65.48493], - [-18.729381, 65.485761], - [-18.728655, 65.485999], - [-18.726023, 65.486862], - [-18.721906, 65.488211], - [-18.719378, 65.48904], - [-18.71643, 65.490006], - [-18.713268, 65.491056], - [-18.710255, 65.492056], - [-18.708732, 65.492562], - [-18.707801, 65.492937], - [-18.706476, 65.493471], - [-18.705094, 65.494118], - [-18.7035, 65.494977], - [-18.702611, 65.495455], - [-18.701695, 65.496137], - [-18.700607, 65.496947], - [-18.700282, 65.497188], - [-18.699728, 65.497871], - [-18.69939, 65.498286], - [-18.699115, 65.498624], - [-18.698692, 65.49976], - [-18.699166, 65.501618], - [-18.69974, 65.502999], - [-18.700228, 65.504173], - [-18.700671, 65.505312], - [-18.701049, 65.506285], - [-18.70165, 65.507831], - [-18.702055, 65.50887], - [-18.702197, 65.509156], - [-18.702584, 65.509935], - [-18.702968, 65.510704], - [-18.70304, 65.510797], - [-18.704024, 65.512054], - [-18.704342, 65.51246], - [-18.704757, 65.5129], - [-18.70506, 65.513221], - [-18.705477, 65.513663], - [-18.705954, 65.514168], - [-18.706097, 65.514319], - [-18.706188, 65.514457], - [-18.706375, 65.51474], - [-18.706577, 65.515045], - [-18.706963, 65.515627], - [-18.707104, 65.515841], - [-18.709357, 65.518544], - [-18.709445, 65.518639], - [-18.710124, 65.519376], - [-18.710629, 65.519924], - [-18.711629, 65.521009], - [-18.712069, 65.521486], - [-18.712905, 65.521919], - [-18.713228, 65.522132], - [-18.713746, 65.522497], - [-18.713917, 65.522639], - [-18.714304, 65.522961], - [-18.71458, 65.523179], - [-18.714709, 65.523281], - [-18.714921, 65.523404], - [-18.715819, 65.523925], - [-18.716077, 65.524098], - [-18.716765, 65.524523], - [-18.716892, 65.524646], - [-18.71715, 65.524895], - [-18.717263, 65.525105], - [-18.717497, 65.525586], - [-18.717526, 65.525646], - [-18.717913, 65.526068], - [-18.718116, 65.526281], - [-18.718349, 65.526428], - [-18.719347, 65.527015], - [-18.719672, 65.527165], - [-18.719726, 65.52719], - [-18.720114, 65.52748], - [-18.720841, 65.527878], - [-18.721226, 65.5281], - [-18.721893, 65.528447], - [-18.721951, 65.528477], - [-18.722604, 65.528854], - [-18.722948, 65.529054], - [-18.723047, 65.529105], - [-18.723721, 65.529458], - [-18.723992, 65.52954], - [-18.724551, 65.529709], - [-18.725056, 65.529852], - [-18.725334, 65.530267], - [-18.72579, 65.530701], - [-18.725879, 65.530772], - [-18.726073, 65.530926], - [-18.72675, 65.531357], - [-18.726917, 65.531444], - [-18.727388, 65.531691], - [-18.727749, 65.53189], - [-18.728397, 65.532179], - [-18.728999, 65.532522], - [-18.729183, 65.532627], - [-18.729577, 65.532828], - [-18.729879, 65.532914], - [-18.73069, 65.533069], - [-18.731694, 65.53323], - [-18.731952, 65.533321], - [-18.732152, 65.533391], - [-18.732241, 65.533434], - [-18.732797, 65.533741], - [-18.733486, 65.534061], - [-18.734001, 65.534183], - [-18.734572, 65.534295], - [-18.73479, 65.534327], - [-18.736258, 65.534545], - [-18.736835, 65.534633], - [-18.737487, 65.534752], - [-18.737808, 65.534807], - [-18.738904, 65.534995], - [-18.739409, 65.535117], - [-18.740344, 65.535384], - [-18.740384, 65.535422], - [-18.740672, 65.535526], - [-18.741102, 65.535682], - [-18.741656, 65.535785], - [-18.742742, 65.535999], - [-18.743521, 65.536361], - [-18.743942, 65.536544], - [-18.745053, 65.536689], - [-18.745568, 65.536805], - [-18.745858, 65.53687], - [-18.746316, 65.53704], - [-18.74646, 65.537123], - [-18.747023, 65.537373], - [-18.748196, 65.537676], - [-18.74878, 65.53784], - [-18.749989, 65.538443], - [-18.750631, 65.538695], - [-18.750956, 65.5388], - [-18.752459, 65.539151], - [-18.753048, 65.539241], - [-18.753526, 65.53928], - [-18.75414, 65.539332], - [-18.754871, 65.539353], - [-18.755619, 65.539409], - [-18.75747, 65.539395], - [-18.757633, 65.539407], - [-18.758248, 65.539459], - [-18.758561, 65.539497], - [-18.759313, 65.539537], - [-18.760454, 65.539519], - [-18.761099, 65.539522], - [-18.761697, 65.539525], - [-18.763343, 65.539534], - [-18.764033, 65.539568], - [-18.765491, 65.53967], - [-18.766131, 65.539851], - [-18.766417, 65.540051], - [-18.766644, 65.540229], - [-18.767281, 65.540437], - [-18.767827, 65.540474], - [-18.768524, 65.540406], - [-18.769057, 65.540275], - [-18.770109, 65.539924], - [-18.770833, 65.539816], - [-18.771053, 65.539798], - [-18.771426, 65.539769], - [-18.773604, 65.539522], - [-18.773163, 65.539996], - [-18.772719, 65.540346], - [-18.77215, 65.540508], - [-18.771909, 65.540577], - [-18.77161, 65.540858], - [-18.771718, 65.541216], - [-18.772237, 65.541579], - [-18.772332, 65.541666], - [-18.771935, 65.541903], - [-18.771637, 65.542169], - [-18.771611, 65.542468], - [-18.771576, 65.54288], - [-18.771233, 65.543274], - [-18.771205, 65.543602], - [-18.771447, 65.54399], - [-18.771722, 65.544176], - [-18.77203, 65.544383], - [-18.772372, 65.544816], - [-18.773276, 65.545114], - [-18.774279, 65.545384], - [-18.774856, 65.545481], - [-18.775368, 65.545578], - [-18.775502, 65.545603], - [-18.776728, 65.545803], - [-18.777296, 65.545899], - [-18.777776, 65.545964], - [-18.779347, 65.546335], - [-18.780033, 65.546461], - [-18.780884, 65.546622], - [-18.782081, 65.546882], - [-18.78261, 65.546982], - [-18.782987, 65.54704], - [-18.784523, 65.547279], - [-18.785142, 65.547364], - [-18.785866, 65.547447], - [-18.786174, 65.547483], - [-18.787097, 65.547631], - [-18.787639, 65.547731], - [-18.787983, 65.547819], - [-18.788237, 65.547883], - [-18.78953, 65.548136], - [-18.789743, 65.548177], - [-18.79034, 65.548265], - [-18.791064, 65.548317], - [-18.791193, 65.548326], - [-18.792236, 65.548184], - [-18.792582, 65.548114], - [-18.792982, 65.548037], - [-18.793148, 65.548006], - [-18.794545, 65.547718], - [-18.795215, 65.54758], - [-18.795798, 65.547499], - [-18.796423, 65.547387], - [-18.797371, 65.547218], - [-18.797486, 65.547205], - [-18.797907, 65.547158], - [-18.798508, 65.547095], - [-18.799386, 65.546977], - [-18.799785, 65.546925], - [-18.800641, 65.546811], - [-18.80122, 65.546728], - [-18.802033, 65.546587], - [-18.803008, 65.546463], - [-18.803246, 65.546433], - [-18.803769, 65.54637], - [-18.804402, 65.546209], - [-18.804855, 65.546108], - [-18.80542, 65.545981], - [-18.80566, 65.545909], - [-18.806157, 65.545792], - [-18.807036, 65.545563], - [-18.807402, 65.545504], - [-18.808123, 65.545389], - [-18.808776, 65.545324], - [-18.810403, 65.545184], - [-18.810851, 65.545169], - [-18.811368, 65.545189], - [-18.811451, 65.545192], - [-18.811979, 65.545249], - [-18.812998, 65.545392], - [-18.813775, 65.545414], - [-18.813849, 65.545416], - [-18.814359, 65.545334], - [-18.814941, 65.545178], - [-18.815841, 65.54512], - [-18.816359, 65.54514], - [-18.816544, 65.545148], - [-18.816965, 65.545168], - [-18.817758, 65.545218], - [-18.818977, 65.545272], - [-18.819366, 65.545305], - [-18.81967, 65.54533], - [-18.82015, 65.545381], - [-18.821236, 65.545554], - [-18.821745, 65.545818], - [-18.822133, 65.546018], - [-18.822292, 65.546081], - [-18.822965, 65.546245], - [-18.823473, 65.546369], - [-18.824139, 65.546585], - [-18.824507, 65.546741], - [-18.824609, 65.546771], - [-18.826269, 65.547464], - [-18.826675, 65.547555], - [-18.827313, 65.547722], - [-18.827654, 65.547934], - [-18.827805, 65.548027], - [-18.828571, 65.548323], - [-18.828971, 65.548457], - [-18.830197, 65.54884], - [-18.830406, 65.548957], - [-18.830909, 65.549238], - [-18.831368, 65.549634], - [-18.831566, 65.550039], - [-18.831742, 65.550482], - [-18.832145, 65.551498], - [-18.832219, 65.552292], - [-18.83233, 65.553483], - [-18.83231, 65.553614], - [-18.832102, 65.554998], - [-18.832069, 65.55522], - [-18.832008, 65.555416], - [-18.831269, 65.557819], - [-18.831758, 65.558166], - [-18.83193, 65.558288], - [-18.834724, 65.559778], - [-18.83776, 65.561176], - [-18.84037, 65.562083], - [-18.842094, 65.562306], - [-18.843719, 65.562517], - [-18.845356, 65.562541], - [-18.84815, 65.56258], - [-18.848379, 65.56259], - [-18.850078, 65.562663], - [-18.852338, 65.56276], - [-18.85275, 65.562784], - [-18.853752, 65.562842], - [-18.854545, 65.562888], - [-18.856733, 65.563258], - [-18.858414, 65.564103], - [-18.859369, 65.565277], - [-18.859787, 65.566023], - [-18.860489, 65.567275], - [-18.861635, 65.568801], - [-18.862068, 65.569376], - [-18.863536, 65.569977], - [-18.865845, 65.5703], - [-18.869461, 65.570351], - [-18.8697, 65.57034], - [-18.871688, 65.570251], - [-18.873563, 65.570166], - [-18.87697, 65.569924], - [-18.878743, 65.570127], - [-18.879862, 65.570254], - [-18.882897, 65.570636], - [-18.883973, 65.570694], - [-18.885464, 65.570773], - [-18.887169, 65.570864], - [-18.887573, 65.570894], - [-18.890924, 65.571144], - [-18.892741, 65.57128], - [-18.892247, 65.572372], - [-18.891653, 65.573687], - [-18.891309, 65.574931], - [-18.890883, 65.576474], - [-18.89087, 65.576511], - [-18.890198, 65.578425], - [-18.890174, 65.578494], - [-18.889959, 65.5798], - [-18.889711, 65.580198], - [-18.889564, 65.580434], - [-18.889207, 65.581007], - [-18.889201, 65.581089], - [-18.889131, 65.581949], - [-18.889116, 65.582134], - [-18.889293, 65.582464], - [-18.889874, 65.583543], - [-18.890258, 65.58393], - [-18.891285, 65.584961], - [-18.893012, 65.586519], - [-18.893593, 65.587429], - [-18.893952, 65.587711], - [-18.894413, 65.588072], - [-18.894496, 65.588389], - [-18.89371, 65.588672], - [-18.893245, 65.588737], - [-18.891616, 65.588964], - [-18.890181, 65.589164], - [-18.889308, 65.58933], - [-18.8882, 65.58954], - [-18.88703, 65.58989], - [-18.886248, 65.590125], - [-18.886176, 65.590146], - [-18.885455, 65.590443], - [-18.884925, 65.59066], - [-18.884371, 65.590888], - [-18.884233, 65.590962], - [-18.883259, 65.591481], - [-18.882449, 65.591912], - [-18.881977, 65.592163], - [-18.881783, 65.59252], - [-18.881587, 65.592878], - [-18.881465, 65.593103], - [-18.881551, 65.593352], - [-18.881715, 65.593823], - [-18.881906, 65.594373], - [-18.881966, 65.594442], - [-18.88236, 65.594902], - [-18.882812, 65.59543], - [-18.883002, 65.595651], - [-18.883235, 65.5959], - [-18.883613, 65.596306], - [-18.884268, 65.597006], - [-18.884884, 65.597666], - [-18.885009, 65.5978], - [-18.885985, 65.599212], - [-18.886166, 65.599639], - [-18.886351, 65.600074], - [-18.885698, 65.600241], - [-18.881956, 65.600464], - [-18.880501, 65.600722], - [-18.880034, 65.600945], - [-18.879611, 65.601146], - [-18.879223, 65.60133], - [-18.878689, 65.601584], - [-18.878157, 65.601836], - [-18.877575, 65.602113], - [-18.877119, 65.602327], - [-18.876756, 65.602497], - [-18.876385, 65.60267], - [-18.875937, 65.60288], - [-18.875558, 65.603057], - [-18.874863, 65.603383], - [-18.874034, 65.603771], - [-18.873823, 65.60387], - [-18.872953, 65.604259], - [-18.870476, 65.605366], - [-18.867643, 65.606632], - [-18.866973, 65.606931], - [-18.865639, 65.607527], - [-18.86193, 65.609184], - [-18.859695, 65.610189], - [-18.858358, 65.61079], - [-18.857568, 65.611145], - [-18.856421, 65.61166], - [-18.855574, 65.612041], - [-18.855116, 65.612247], - [-18.854629, 65.612465], - [-18.854337, 65.612596], - [-18.851003, 65.614154], - [-18.849229, 65.614983], - [-18.848784, 65.615179], - [-18.847643, 65.615682], - [-18.844613, 65.616385], - [-18.844526, 65.616405], - [-18.844025, 65.616585], - [-18.843481, 65.61678], - [-18.842951, 65.61697], - [-18.841997, 65.617949], - [-18.841584, 65.61898], - [-18.841762, 65.619752], - [-18.841825, 65.620021], - [-18.843378, 65.621036], - [-18.844852, 65.621688], - [-18.847096, 65.622284], - [-18.847829, 65.622655], - [-18.848206, 65.623383], - [-18.848018, 65.624327], - [-18.847943, 65.624407], - [-18.847749, 65.62461], - [-18.846703, 65.625707], - [-18.844899, 65.62676], - [-18.844042, 65.62726], - [-18.843834, 65.627381], - [-18.842836, 65.627916], - [-18.842001, 65.628362], - [-18.841556, 65.6286], - [-18.841449, 65.628657], - [-18.841206, 65.628788], - [-18.840559, 65.629308], - [-18.84039, 65.629444], - [-18.840269, 65.629541], - [-18.840122, 65.630087], - [-18.839796, 65.631294], - [-18.839773, 65.63135], - [-18.839106, 65.633021], - [-18.839239, 65.634145], - [-18.839427, 65.635733], - [-18.839623, 65.637315], - [-18.840071, 65.638494], - [-18.842965, 65.640475], - [-18.845538, 65.642384], - [-18.8459, 65.642726], - [-18.846653, 65.643437], - [-18.848584, 65.645179], - [-18.849251, 65.646068], - [-18.849372, 65.646228], - [-18.850551, 65.647824], - [-18.851476, 65.649781], - [-18.851667, 65.650185], - [-18.852141, 65.651463], - [-18.852382, 65.652113], - [-18.852596, 65.652428], - [-18.853255, 65.653395], - [-18.853597, 65.653899], - [-18.853741, 65.654109], - [-18.853973, 65.654432], - [-18.854354, 65.654963], - [-18.854435, 65.655129], - [-18.854675, 65.65562], - [-18.855077, 65.656271], - [-18.855096, 65.656302], - [-18.856424, 65.658757], - [-18.856777, 65.659294], - [-18.85827, 65.661557], - [-18.85852, 65.661871], - [-18.859475, 65.663067], - [-18.85993, 65.663636], - [-18.860592, 65.664466], - [-18.860747, 65.66466], - [-18.862641, 65.666897], - [-18.863424, 65.668013], - [-18.863477, 65.668691], - [-18.863354, 65.668771], - [-18.861512, 65.669972], - [-18.861165, 65.670113], - [-18.860661, 65.670318], - [-18.860198, 65.670506], - [-18.859688, 65.670713], - [-18.859187, 65.670917], - [-18.858738, 65.6711], - [-18.858628, 65.671145], - [-18.857997, 65.671401], - [-18.857437, 65.671629], - [-18.856973, 65.671754], - [-18.85602, 65.672011], - [-18.853298, 65.672743], - [-18.85145, 65.673272], - [-18.8505, 65.673544], - [-18.850343, 65.673598], - [-18.850062, 65.673693], - [-18.849381, 65.673904], - [-18.849149, 65.673959], - [-18.84864, 65.674078], - [-18.847864, 65.674224], - [-18.847688, 65.674257], - [-18.847527, 65.674293], - [-18.846766, 65.674462], - [-18.846567, 65.674502], - [-18.846253, 65.674584], - [-18.845617, 65.674767], - [-18.842666, 65.675616], - [-18.839624, 65.676678], - [-18.837033, 65.677515], - [-18.836813, 65.677586], - [-18.834601, 65.67787], - [-18.832442, 65.677954], - [-18.831198, 65.678002], - [-18.830719, 65.678051], - [-18.829246, 65.6782], - [-18.827822, 65.678344], - [-18.827074, 65.67842], - [-18.82657, 65.678471], - [-18.826254, 65.678503], - [-18.826122, 65.678517], - [-18.825592, 65.678538], - [-18.82474, 65.678574], - [-18.824061, 65.678602], - [-18.823533, 65.678624], - [-18.822926, 65.678649], - [-18.822531, 65.678665], - [-18.820619, 65.678745], - [-18.819643, 65.678785], - [-18.81948, 65.678782], - [-18.818144, 65.678757], - [-18.816919, 65.678734], - [-18.814687, 65.678693], - [-18.8144, 65.678687], - [-18.811338, 65.678723], - [-18.809027, 65.678751], - [-18.80864, 65.678755], - [-18.807924, 65.678764], - [-18.807499, 65.678769], - [-18.807262, 65.678785], - [-18.806524, 65.678837], - [-18.806128, 65.678865], - [-18.805705, 65.678894], - [-18.805241, 65.678927], - [-18.804451, 65.678982], - [-18.803761, 65.67903], - [-18.803554, 65.679635], - [-18.803436, 65.679988], - [-18.803263, 65.680505], - [-18.803182, 65.680749], - [-18.803171, 65.680782], - [-18.802451, 65.681427], - [-18.802156, 65.681691], - [-18.801039, 65.682691], - [-18.800623, 65.683123], - [-18.799839, 65.683937], - [-18.798349, 65.684727], - [-18.796115, 65.685259], - [-18.792028, 65.685696], - [-18.791003, 65.685661], - [-18.788732, 65.685582], - [-18.788089, 65.68556], - [-18.787553, 65.685541], - [-18.786809, 65.68557], - [-18.786148, 65.685596], - [-18.785113, 65.685637], - [-18.785028, 65.68564], - [-18.784611, 65.685823], - [-18.784248, 65.685982], - [-18.783906, 65.686131], - [-18.783436, 65.686339], - [-18.783243, 65.686491], - [-18.782843, 65.686806], - [-18.782144, 65.687358], - [-18.781583, 65.688444], - [-18.781357, 65.68888], - [-18.781281, 65.689773], - [-18.781218, 65.690502], - [-18.7811, 65.690734], - [-18.780695, 65.691528], - [-18.780641, 65.691591], - [-18.780197, 65.692104], - [-18.779901, 65.692446], - [-18.779598, 65.692796], - [-18.779575, 65.692823], - [-18.77966, 65.69285], - [-18.780232, 65.69303], - [-18.780769, 65.693198], - [-18.781229, 65.693343], - [-18.781427, 65.693405], - [-18.782671, 65.69385], - [-18.784164, 65.694384], - [-18.784496, 65.694549], - [-18.784586, 65.694594], - [-18.786662, 65.695627], - [-18.788947, 65.697251], - [-18.789423, 65.69759], - [-18.791148, 65.699001], - [-18.791392, 65.699202], - [-18.79429, 65.701594], - [-18.794553, 65.701839], - [-18.795302, 65.702535], - [-18.796, 65.703184], - [-18.79614, 65.703345], - [-18.796597, 65.703867], - [-18.79778, 65.705221], - [-18.797925, 65.705631], - [-18.798042, 65.705962], - [-18.79841, 65.706459], - [-18.798889, 65.707104], - [-18.799373, 65.707756], - [-18.799977, 65.70857], - [-18.800087, 65.708719], - [-18.801438, 65.710467], - [-18.802532, 65.711884], - [-18.802779, 65.712171], - [-18.803144, 65.712599], - [-18.803631, 65.713168], - [-18.804508, 65.714192], - [-18.804699, 65.714567], - [-18.805134, 65.715418], - [-18.805532, 65.716196], - [-18.805573, 65.716291], - [-18.806349, 65.718085], - [-18.80651, 65.719271], - [-18.806549, 65.719564], - [-18.806421, 65.721082], - [-18.806336, 65.721269], - [-18.806115, 65.721759], - [-18.805919, 65.722193], - [-18.805749, 65.722569], - [-18.805618, 65.722858], - [-18.80552, 65.722979], - [-18.805223, 65.723342], - [-18.80481, 65.723846], - [-18.804538, 65.724178], - [-18.804406, 65.724339], - [-18.804176, 65.724967], - [-18.803982, 65.725495], - [-18.80424, 65.726303], - [-18.804706, 65.726707], - [-18.805438, 65.727342], - [-18.805656, 65.727531], - [-18.805919, 65.727726], - [-18.806561, 65.728204], - [-18.807264, 65.728559], - [-18.807983, 65.728919], - [-18.808139, 65.728997], - [-18.809163, 65.729727], - [-18.809518, 65.730008], - [-18.810079, 65.730455], - [-18.810368, 65.730635], - [-18.811628, 65.731416], - [-18.812774, 65.731992], - [-18.816624, 65.732991], - [-18.817953, 65.733346], - [-18.82032, 65.733977], - [-18.822651, 65.734681], - [-18.823804, 65.735048], - [-18.824995, 65.735427], - [-18.825297, 65.735523], - [-18.825485, 65.735579], - [-18.826818, 65.735972], - [-18.827842, 65.736275], - [-18.828893, 65.736692], - [-18.829155, 65.737456], - [-18.829, 65.737549], - [-18.827862, 65.738235], - [-18.827188, 65.738641], - [-18.825467, 65.739577], - [-18.824371, 65.740297], - [-18.824319, 65.740341], - [-18.823402, 65.741111], - [-18.822786, 65.741629], - [-18.822407, 65.741948], - [-18.822378, 65.741972], - [-18.821131, 65.743066], - [-18.820345, 65.743756], - [-18.820035, 65.743956], - [-18.819256, 65.744457], - [-18.818952, 65.744653], - [-18.818164, 65.745085], - [-18.816573, 65.745734], - [-18.815916, 65.746036], - [-18.815375, 65.746492], - [-18.815217, 65.746877], - [-18.815404, 65.747261], - [-18.816182, 65.747711], - [-18.816758, 65.747932], - [-18.817368, 65.748167], - [-18.820202, 65.748801], - [-18.821857, 65.749122], - [-18.824, 65.749539], - [-18.824927, 65.749769], - [-18.824575, 65.750391], - [-18.821132, 65.751754], - [-18.816685, 65.753475], - [-18.815876, 65.753787], - [-18.815111, 65.754084], - [-18.814881, 65.75417], - [-18.813504, 65.754686], - [-18.810015, 65.755993], - [-18.809159, 65.756314], - [-18.807245, 65.756934], - [-18.805952, 65.757352], - [-18.804811, 65.757721], - [-18.804656, 65.757772], - [-18.80376, 65.758044], - [-18.802963, 65.758286], - [-18.801658, 65.758683], - [-18.800397, 65.759066], - [-18.799098, 65.759461], - [-18.798284, 65.759708], - [-18.798141, 65.759752], - [-18.797304, 65.759975], - [-18.796593, 65.760165], - [-18.794947, 65.760604], - [-18.795462, 65.761307], - [-18.795712, 65.761648], - [-18.795786, 65.761749], - [-18.796083, 65.762268], - [-18.796262, 65.76258], - [-18.796465, 65.762935], - [-18.7965, 65.76335], - [-18.796537, 65.76378], - [-18.796569, 65.764155], - [-18.796527, 65.765256], - [-18.796783, 65.765857], - [-18.797004, 65.766374], - [-18.797101, 65.766444], - [-18.797303, 65.766589], - [-18.797622, 65.766819], - [-18.797756, 65.766915], - [-18.798279, 65.767291], - [-18.798687, 65.767497], - [-18.799974, 65.768146], - [-18.800374, 65.768347], - [-18.801012, 65.768626], - [-18.801804, 65.768972], - [-18.803234, 65.769596], - [-18.803453, 65.76973], - [-18.806024, 65.771292], - [-18.806108, 65.771343], - [-18.806169, 65.771381], - [-18.807482, 65.772266], - [-18.807882, 65.772693], - [-18.809057, 65.773945], - [-18.809598, 65.774317], - [-18.810161, 65.774325], - [-18.811781, 65.774348], - [-18.812966, 65.774373], - [-18.816306, 65.774444], - [-18.816457, 65.774447], - [-18.81733, 65.774588], - [-18.817867, 65.774846], - [-18.818329, 65.775069], - [-18.819368, 65.775569], - [-18.81948, 65.775623], - [-18.820388, 65.776186], - [-18.82109, 65.77662], - [-18.821954, 65.777155], - [-18.823247, 65.778257], - [-18.823459, 65.778438], - [-18.823363, 65.778961], - [-18.822548, 65.77943], - [-18.820791, 65.780442], - [-18.81934, 65.781597], - [-18.819271, 65.781677], - [-18.818835, 65.78219], - [-18.81835, 65.782759], - [-18.818242, 65.782886], - [-18.817957, 65.78379], - [-18.818347, 65.784245], - [-18.818794, 65.784766], - [-18.818905, 65.784894], - [-18.819807, 65.785319], - [-18.820357, 65.785578], - [-18.824049, 65.78625], - [-18.828194, 65.787122], - [-18.828325, 65.787166], - [-18.831732, 65.788306], - [-18.832296, 65.788495], - [-18.832719, 65.788755], - [-18.834326, 65.789742], - [-18.835104, 65.790476], - [-18.835822, 65.791153], - [-18.836057, 65.791559], - [-18.836593, 65.792485], - [-18.836914, 65.79304], - [-18.837028, 65.793039], - [-18.839283, 65.793037], - [-18.841306, 65.793034], - [-18.846655, 65.793027], - [-18.849307, 65.79335], - [-18.850632, 65.793511], - [-18.851971, 65.793674], - [-18.853453, 65.793854], - [-18.854905, 65.794031], - [-18.857179, 65.794165], - [-18.859155, 65.794283], - [-18.861843, 65.794731], - [-18.862648, 65.794866], - [-18.864685, 65.795429], - [-18.864903, 65.795604], - [-18.865809, 65.796332], - [-18.867048, 65.797097], - [-18.868811, 65.797554], - [-18.869856, 65.797825], - [-18.870975, 65.798114], - [-18.871854, 65.79848], - [-18.873795, 65.799287], - [-18.875476, 65.799806], - [-18.878469, 65.80073], - [-18.879548, 65.800995], - [-18.882076, 65.801616], - [-18.88281, 65.801796], - [-18.883956, 65.801994], - [-18.885214, 65.802212], - [-18.889724, 65.802618], - [-18.894938, 65.802577], - [-18.895146, 65.802575], - [-18.896627, 65.80422], - [-18.897318, 65.804838], - [-18.897652, 65.805136], - [-18.898618, 65.806001], - [-18.899007, 65.806254], - [-18.899396, 65.806508], - [-18.899707, 65.806711], - [-18.899836, 65.806764], - [-18.900378, 65.806987], - [-18.901421, 65.807418], - [-18.902293, 65.807575], - [-18.903892, 65.807864], - [-18.904503, 65.807974], - [-18.905525, 65.808172], - [-18.90676, 65.808411], - [-18.909313, 65.809066], - [-18.911333, 65.809863], - [-18.912738, 65.810524], - [-18.913715, 65.811339], - [-18.914735, 65.81225], - [-18.915485, 65.813287], - [-18.915555, 65.814357], - [-18.919026, 65.81527], - [-18.919303, 65.815337], - [-18.920642, 65.815665], - [-18.921983, 65.815992], - [-18.923013, 65.816243], - [-18.92659, 65.816979], - [-18.928911, 65.817457], - [-18.930072, 65.817632], - [-18.933571, 65.818161], - [-18.933959, 65.81822], - [-18.938665, 65.818689], - [-18.942422, 65.818654], - [-18.943746, 65.818496], - [-18.946814, 65.81813], - [-18.949106, 65.817857], - [-18.95004, 65.81908], - [-18.950417, 65.819575], - [-18.950853, 65.820146], - [-18.95174, 65.82103], - [-18.953027, 65.822313], - [-18.953778, 65.822838], - [-18.954596, 65.823409], - [-18.955186, 65.823821], - [-18.955598, 65.824108], - [-18.95604, 65.824417], - [-18.95652, 65.824734], - [-18.956983, 65.825039], - [-18.958228, 65.825862], - [-18.959608, 65.826773], - [-18.961115, 65.828029], - [-18.961991, 65.828758], - [-18.962152, 65.828892], - [-18.962449, 65.82902], - [-18.965116, 65.830167], - [-18.965279, 65.830237], - [-18.967108, 65.830845], - [-18.96843, 65.831284], - [-18.969504, 65.831599], - [-18.972967, 65.832616], - [-18.973898, 65.832874], - [-18.977972, 65.834004], - [-18.978634, 65.834188], - [-18.979129, 65.834312], - [-18.980301, 65.834608], - [-18.980782, 65.834729], - [-18.981085, 65.834859], - [-18.982246, 65.835358], - [-18.98261, 65.835618], - [-18.983207, 65.836044], - [-18.983679, 65.836381], - [-18.984041, 65.837242], - [-18.984144, 65.837487], - [-18.984488, 65.838303], - [-18.984602, 65.838574], - [-18.984731, 65.839386], - [-18.984917, 65.840556], - [-18.984866, 65.84076], - [-18.984711, 65.841386], - [-18.984611, 65.841792], - [-18.984174, 65.842705], - [-18.983577, 65.843398], - [-18.983198, 65.843836], - [-18.981094, 65.845358], - [-18.980266, 65.845957], - [-18.979758, 65.846442], - [-18.980339, 65.847653], - [-18.980476, 65.847938], - [-18.980554, 65.848106], - [-18.98067, 65.848359], - [-18.980832, 65.84871], - [-18.981011, 65.849099], - [-18.980886, 65.849372], - [-18.98057, 65.850066], - [-18.980615, 65.850328], - [-18.980689, 65.850759], - [-18.980842, 65.851642], - [-18.980928, 65.852144], - [-18.980918, 65.852443], - [-18.980891, 65.853288], - [-18.980883, 65.853595], - [-18.980879, 65.853738], - [-18.980841, 65.855254], - [-18.980847, 65.856505], - [-18.97973, 65.858756], - [-18.979307, 65.859583], - [-18.978311, 65.861528], - [-18.977517, 65.862992], - [-18.976817, 65.863771], - [-18.976215, 65.864441], - [-18.9758, 65.864904], - [-18.975555, 65.865136], - [-18.974811, 65.865842], - [-18.974289, 65.866338], - [-18.973711, 65.866886], - [-18.971483, 65.868642], - [-18.970216, 65.869334], - [-18.968765, 65.870126], - [-18.968426, 65.870312], - [-18.965799, 65.871446], - [-18.963923, 65.872257], - [-18.963071, 65.872625], - [-18.962726, 65.872872], - [-18.961457, 65.873786], - [-18.961408, 65.873821], - [-18.960738, 65.874559], - [-18.959633, 65.875775], - [-18.958474, 65.877016], - [-18.958107, 65.87741], - [-18.957463, 65.878098], - [-18.957148, 65.878371], - [-18.95681, 65.878664], - [-18.956285, 65.879119], - [-18.955752, 65.87924], - [-18.953951, 65.878896], - [-18.953442, 65.878883], - [-18.952182, 65.878853], - [-18.950396, 65.878809], - [-18.950091, 65.878801], - [-18.949023, 65.879019], - [-18.947183, 65.879393], - [-18.945948, 65.879644], - [-18.944214, 65.879993], - [-18.944127, 65.88001], - [-18.943708, 65.880095], - [-18.942761, 65.880285], - [-18.940858, 65.880667], - [-18.939415, 65.880957], - [-18.937606, 65.88136], - [-18.93516, 65.880579], - [-18.932402, 65.879921], - [-18.930596, 65.879491], - [-18.92688, 65.878917], - [-18.926133, 65.878857], - [-18.921065, 65.878453], - [-18.920578, 65.878169], - [-18.920167, 65.877928], - [-18.919362, 65.877515], - [-18.918712, 65.877182], - [-18.918315, 65.877085], - [-18.917138, 65.876797], - [-18.916373, 65.87661], - [-18.916304, 65.876593], - [-18.915745, 65.876507], - [-18.915151, 65.876415], - [-18.914618, 65.876332], - [-18.913884, 65.876219], - [-18.913017, 65.876223], - [-18.911631, 65.87623], - [-18.910342, 65.876241], - [-18.909198, 65.876251], - [-18.908538, 65.876256], - [-18.908232, 65.876259], - [-18.907918, 65.876282], - [-18.907335, 65.876325], - [-18.906961, 65.876353], - [-18.906273, 65.876404], - [-18.905652, 65.87645], - [-18.905551, 65.876457], - [-18.905176, 65.876547], - [-18.903135, 65.877036], - [-18.900488, 65.877671], - [-18.898332, 65.878475], - [-18.897309, 65.879039], - [-18.896392, 65.879827], - [-18.895839, 65.879712], - [-18.895101, 65.879558], - [-18.893875, 65.879301], - [-18.893113, 65.879239], - [-18.892917, 65.879224], - [-18.891708, 65.879126], - [-18.891019, 65.87907], - [-18.890936, 65.879071], - [-18.889001, 65.879095], - [-18.887793, 65.879111], - [-18.886991, 65.879121], - [-18.885635, 65.879308], - [-18.884877, 65.879413], - [-18.881997, 65.880326], - [-18.88155, 65.880468], - [-18.881176, 65.880592], - [-18.880576, 65.880792], - [-18.879987, 65.880988], - [-18.879454, 65.881166], - [-18.87911, 65.881241], - [-18.878451, 65.881384], - [-18.877458, 65.881601], - [-18.877059, 65.881688], - [-18.875843, 65.881996], - [-18.875457, 65.882094], - [-18.875192, 65.882316], - [-18.874503, 65.882893], - [-18.874349, 65.883075], - [-18.874056, 65.883421], - [-18.873534, 65.884037], - [-18.87327, 65.884351], - [-18.87317, 65.884467], - [-18.872669, 65.884995], - [-18.872126, 65.885567], - [-18.871746, 65.885967], - [-18.871567, 65.886156], - [-18.87138, 65.886369], - [-18.871124, 65.886661], - [-18.87087, 65.886951], - [-18.870535, 65.887334], - [-18.870411, 65.887476], - [-18.87014, 65.887552], - [-18.869565, 65.887713], - [-18.869395, 65.887761], - [-18.868526, 65.887887], - [-18.86806, 65.887954], - [-18.867913, 65.887976], - [-18.867853, 65.887998], - [-18.867716, 65.888048], - [-18.866241, 65.888594], - [-18.86573, 65.88882], - [-18.864504, 65.889361], - [-18.864183, 65.889546], - [-18.862857, 65.890311], - [-18.862278, 65.890506], - [-18.861475, 65.890777], - [-18.861234, 65.890858], - [-18.861119, 65.890897], - [-18.860596, 65.891073], - [-18.860544, 65.891091], - [-18.858544, 65.891615], - [-18.856748, 65.892085], - [-18.856577, 65.892149], - [-18.855729, 65.892462], - [-18.853448, 65.893305], - [-18.852579, 65.893625], - [-18.850902, 65.89415], - [-18.849426, 65.894613], - [-18.848658, 65.894769], - [-18.847773, 65.894948], - [-18.846812, 65.895143], - [-18.846074, 65.895293], - [-18.845916, 65.895325], - [-18.845249, 65.895459], - [-18.844585, 65.895592], - [-18.844733, 65.895917], - [-18.845115, 65.896755], - [-18.845206, 65.896847], - [-18.846079, 65.89773], - [-18.847502, 65.89884], - [-18.84969, 65.899696], - [-18.850951, 65.899947], - [-18.853384, 65.90043], - [-18.85452, 65.900775], - [-18.855691, 65.90113], - [-18.855743, 65.901146], - [-18.85594, 65.901207], - [-18.856875, 65.901837], - [-18.857181, 65.9025], - [-18.857539, 65.903278], - [-18.857524, 65.903398], - [-18.857483, 65.903715], - [-18.857391, 65.904431], - [-18.856988, 65.904819], - [-18.856253, 65.905527], - [-18.855979, 65.905797], - [-18.855161, 65.906607], - [-18.854705, 65.907058], - [-18.854314, 65.907445], - [-18.854018, 65.907689], - [-18.853196, 65.908365], - [-18.852007, 65.909344], - [-18.851223, 65.909989], - [-18.848816, 65.91178], - [-18.848656, 65.911899], - [-18.848289, 65.912201], - [-18.847557, 65.912804], - [-18.847251, 65.913055], - [-18.847072, 65.913203], - [-18.846349, 65.913798], - [-18.84517, 65.914768], - [-18.845097, 65.914908], - [-18.844951, 65.915189], - [-18.844736, 65.915602], - [-18.844574, 65.916857], - [-18.84454, 65.917125], - [-18.844484, 65.917567], - [-18.844358, 65.918553], - [-18.844281, 65.919156], - [-18.844271, 65.919235], - [-18.844332, 65.919385], - [-18.844444, 65.919662], - [-18.844536, 65.919888], - [-18.844629, 65.920119], - [-18.844734, 65.920375], - [-18.844803, 65.920547], - [-18.844807, 65.920621], - [-18.844831, 65.921008], - [-18.844853, 65.921366], - [-18.844907, 65.922258], - [-18.844955, 65.923041], - [-18.844989, 65.923605], - [-18.845028, 65.92425], - [-18.845083, 65.925145], - [-18.845126, 65.925859], - [-18.845159, 65.92639], - [-18.845184, 65.926807], - [-18.845225, 65.927475], - [-18.845272, 65.928246], - [-18.845368, 65.929824], - [-18.845431, 65.930857], - [-18.845437, 65.930954], - [-18.845447, 65.931127], - [-18.845659, 65.934602], - [-18.850614, 65.936405], - [-18.855125, 65.938047], - [-18.857517, 65.938917], - [-18.859471, 65.939628], - [-18.8617, 65.940439], - [-18.86427, 65.941374], - [-18.865385, 65.941915], - [-18.866418, 65.942417], - [-18.867258, 65.942826], - [-18.868038, 65.943205], - [-18.869145, 65.943743], - [-18.86964, 65.943983], - [-18.869826, 65.944057], - [-18.870728, 65.944415], - [-18.871744, 65.944818], - [-18.87264, 65.945173], - [-18.873309, 65.945438], - [-18.873915, 65.945679], - [-18.874487, 65.945906], - [-18.875251, 65.946208], - [-18.876022, 65.946514], - [-18.876576, 65.946734], - [-18.877299, 65.94702], - [-18.878171, 65.947366], - [-18.878827, 65.947626], - [-18.879237, 65.947789], - [-18.879714, 65.947978], - [-18.880297, 65.948209], - [-18.880805, 65.94841], - [-18.881206, 65.948569], - [-18.881299, 65.948598], - [-18.881937, 65.948794], - [-18.882252, 65.948891], - [-18.882826, 65.949067], - [-18.883268, 65.949203], - [-18.883607, 65.949308], - [-18.883995, 65.949366], - [-18.884629, 65.949462], - [-18.885162, 65.949543], - [-18.885647, 65.949616], - [-18.886534, 65.949751], - [-18.887666, 65.949898], - [-18.888675, 65.950028], - [-18.88915, 65.950089], - [-18.889516, 65.950153], - [-18.890493, 65.950322], - [-18.890803, 65.950421], - [-18.891821, 65.950746], - [-18.892569, 65.951205], - [-18.893005, 65.951639], - [-18.893203, 65.952411], - [-18.893177, 65.952598], - [-18.893097, 65.953183], - [-18.893073, 65.95335], - [-18.892924, 65.953603], - [-18.892647, 65.954071], - [-18.892322, 65.954373], - [-18.891966, 65.954703], - [-18.892151, 65.955452], - [-18.892241, 65.955819], - [-18.89266, 65.956466], - [-18.893213, 65.957038], - [-18.893699, 65.95754], - [-18.894254, 65.958113], - [-18.894989, 65.959109], - [-18.895649, 65.960001], - [-18.895857, 65.960283], - [-18.896134, 65.960607], - [-18.896549, 65.961094], - [-18.896925, 65.961533], - [-18.897347, 65.962027], - [-18.89773, 65.962476], - [-18.897886, 65.962659], - [-18.898009, 65.962803], - [-18.898371, 65.963086], - [-18.900128, 65.964457], - [-18.901309, 65.966034], - [-18.901689, 65.966905], - [-18.901875, 65.967333], - [-18.90204, 65.96771], - [-18.902354, 65.968432], - [-18.902589, 65.96897], - [-18.902475, 65.970358], - [-18.902336, 65.971414], - [-18.901711, 65.971857], - [-18.901389, 65.972085], - [-18.90011, 65.972443], - [-18.899349, 65.972656], - [-18.897893, 65.972805], - [-18.896387, 65.972958], - [-18.895441, 65.97295], - [-18.893403, 65.972931], - [-18.891933, 65.972918], - [-18.889972, 65.973159], - [-18.888768, 65.973762], - [-18.888485, 65.974656], - [-18.889281, 65.975234], - [-18.889326, 65.975266], - [-18.890887, 65.976057], - [-18.890929, 65.976095], - [-18.891812, 65.976861], - [-18.892061, 65.977078], - [-18.892161, 65.977203], - [-18.892747, 65.977938], - [-18.893345, 65.978689], - [-18.893478, 65.979242], - [-18.893723, 65.980264], - [-18.893814, 65.980641], - [-18.893679, 65.982916], - [-18.893189, 65.985036], - [-18.892924, 65.985854], - [-18.892485, 65.987208], - [-18.890902, 65.991022], - [-18.890716, 65.99147], - [-18.890104, 65.992416], - [-18.889143, 65.993903], - [-18.88873, 65.994543], - [-18.887275, 65.996896], - [-18.88644, 65.997931], - [-18.886047, 65.998418], - [-18.885254, 65.999061], - [-18.88437, 65.999775], - [-18.881649, 66.001516], - [-18.881263, 66.001763], - [-18.880268, 66.003105], - [-18.879117, 66.004694], - [-18.878982, 66.005494], - [-18.879076, 66.005974], - [-18.87922, 66.006715], - [-18.879042, 66.00804], - [-18.877637, 66.009404], - [-18.877401, 66.009588], - [-18.877129, 66.009798], - [-18.876716, 66.010678], - [-18.87708, 66.011209], - [-18.877874, 66.011469], - [-18.878069, 66.011525], - [-18.8796, 66.011963], - [-18.880579, 66.012447], - [-18.880904, 66.013447], - [-18.880968, 66.013545], - [-18.881627, 66.014564], - [-18.881852, 66.014833], - [-18.882431, 66.015529], - [-18.883894, 66.016739], - [-18.883895, 66.016902], - [-18.8839, 66.017486], - [-18.884359, 66.018246], - [-18.884498, 66.018476], - [-18.885602, 66.019194], - [-18.886498, 66.019777], - [-18.887028, 66.020317], - [-18.887627, 66.020926], - [-18.888054, 66.021513], - [-18.888169, 66.022594], - [-18.887706, 66.023251], - [-18.887586, 66.023343], - [-18.885891, 66.024638], - [-18.885513, 66.024908], - [-18.883377, 66.026437], - [-18.882782, 66.026864], - [-18.88251, 66.026989], - [-18.881629, 66.027395], - [-18.880822, 66.027767], - [-18.879811, 66.028234], - [-18.878608, 66.028573], - [-18.877206, 66.028968], - [-18.876816, 66.029078], - [-18.873499, 66.029696], - [-18.872655, 66.029901], - [-18.871347, 66.03022], - [-18.870261, 66.030792], - [-18.868663, 66.031634], - [-18.868073, 66.031945], - [-18.867779, 66.032036], - [-18.866748, 66.032353], - [-18.866397, 66.032461], - [-18.864164, 66.033007], - [-18.86325, 66.033231], - [-18.862745, 66.033355], - [-18.862079, 66.033517], - [-18.861257, 66.033718], - [-18.861039, 66.033781], - [-18.859793, 66.03414], - [-18.859275, 66.034392], - [-18.85802, 66.035001], - [-18.856284, 66.035512], - [-18.853324, 66.036384], - [-18.852997, 66.036481], - [-18.851252, 66.036996], - [-18.851088, 66.037326], - [-18.85235, 66.038505], - [-18.853455, 66.039903], - [-18.855425, 66.042394], - [-18.856941, 66.04388], - [-18.857185, 66.04412], - [-18.858436, 66.044268], - [-18.860083, 66.044464], - [-18.860325, 66.044497], - [-18.864458, 66.04505], - [-18.864598, 66.045089], - [-18.865288, 66.04528], - [-18.867718, 66.045953], - [-18.868081, 66.046172], - [-18.870436, 66.047586], - [-18.870829, 66.047822], - [-18.870922, 66.047889], - [-18.871697, 66.048442], - [-18.872206, 66.048806], - [-18.87237, 66.048923], - [-18.87351, 66.049383], - [-18.874214, 66.049667], - [-18.874756, 66.049773], - [-18.875454, 66.04991], - [-18.875673, 66.049953], - [-18.876211, 66.050058], - [-18.877505, 66.050311], - [-18.878167, 66.050441], - [-18.879138, 66.050729], - [-18.879616, 66.050871], - [-18.879966, 66.050975], - [-18.880462, 66.051122], - [-18.881688, 66.051485], - [-18.882229, 66.051668], - [-18.885529, 66.052783], - [-18.88644, 66.053214], - [-18.886921, 66.053442], - [-18.888477, 66.054179], - [-18.889022, 66.054555], - [-18.890216, 66.055379], - [-18.890362, 66.055433], - [-18.891059, 66.055694], - [-18.891977, 66.056037], - [-18.892788, 66.05634], - [-18.893346, 66.056549], - [-18.893981, 66.056786], - [-18.895579, 66.057114], - [-18.897731, 66.057556], - [-18.900356, 66.058459], - [-18.900578, 66.058536], - [-18.9018, 66.059048], - [-18.902618, 66.059391], - [-18.903318, 66.059684], - [-18.90386, 66.059912], - [-18.90433, 66.060108], - [-18.904359, 66.060153], - [-18.904572, 66.060485], - [-18.904344, 66.060568], - [-18.903659, 66.060815], - [-18.902638, 66.061183], - [-18.901764, 66.061498], - [-18.901577, 66.061609], - [-18.899616, 66.062769], - [-18.897991, 66.064297], - [-18.897708, 66.065247], - [-18.897344, 66.067179], - [-18.896058, 66.068212], - [-18.895447, 66.068702], - [-18.895276, 66.069129], - [-18.895789, 66.069309], - [-18.896113, 66.069423], - [-18.896535, 66.06957], - [-18.896968, 66.069722], - [-18.897447, 66.06989], - [-18.898155, 66.070138], - [-18.901434, 66.071288], - [-18.902027, 66.071613], - [-18.903336, 66.07233], - [-18.904649, 66.073048], - [-18.905215, 66.073359], - [-18.905323, 66.073414], - [-18.905798, 66.073659], - [-18.906355, 66.073946], - [-18.907153, 66.074357], - [-18.907886, 66.074734], - [-18.908291, 66.074943], - [-18.908731, 66.075169], - [-18.909987, 66.075816], - [-18.910111, 66.075913], - [-18.910834, 66.076478], - [-18.912037, 66.077419], - [-18.912293, 66.077618], - [-18.91259, 66.07772], - [-18.913575, 66.078054], - [-18.913818, 66.078137], - [-18.916064, 66.078167], - [-18.918015, 66.07818], - [-18.919996, 66.078193], - [-18.920083, 66.078194], - [-18.921485, 66.078258], - [-18.922686, 66.078313], - [-18.925651, 66.078449], - [-18.926191, 66.078468], - [-18.92932, 66.078581], - [-18.929966, 66.078728], - [-18.931127, 66.078992], - [-18.9321, 66.07944], - [-18.934412, 66.080503], - [-18.935045, 66.081196], - [-18.936227, 66.082491], - [-18.936478, 66.083026], - [-18.936808, 66.08373], - [-18.937316, 66.084235], - [-18.939283, 66.084317], - [-18.941549, 66.08447], - [-18.942334, 66.084523], - [-18.944512, 66.08541], - [-18.945173, 66.085933], - [-18.945912, 66.086517], - [-18.946114, 66.086676], - [-18.946177, 66.08842], - [-18.946294, 66.088898], - [-18.946484, 66.089683], - [-18.947179, 66.089738], - [-18.949565, 66.08993], - [-18.953936, 66.09028], - [-18.954909, 66.090307], - [-18.957475, 66.090379], - [-18.959959, 66.090449], - [-18.960343, 66.09046], - [-18.961352, 66.090488], - [-18.96243, 66.090864], - [-18.963541, 66.09125], - [-18.964065, 66.091478], - [-18.965452, 66.092078], - [-18.967462, 66.092519], - [-18.969274, 66.092617], - [-18.970854, 66.092702], - [-18.971797, 66.092796], - [-18.972327, 66.092848], - [-18.973428, 66.092957], - [-18.975144, 66.093672], - [-18.976058, 66.095039], - [-18.976347, 66.096551], - [-18.975158, 66.09778], - [-18.974811, 66.097972], - [-18.973838, 66.09851], - [-18.973302, 66.098807], - [-18.974583, 66.098896], - [-18.97608, 66.099], - [-18.977711, 66.099114], - [-18.978815, 66.09931], - [-18.979729, 66.099472], - [-18.980781, 66.09997], - [-18.981955, 66.100977], - [-18.982058, 66.101066], - [-18.982157, 66.10109], - [-18.983797, 66.101503], - [-18.984001, 66.101561], - [-18.984641, 66.10174], - [-18.987, 66.102403], - [-18.987577, 66.102548], - [-18.990545, 66.103293], - [-18.991783, 66.103852], - [-18.991994, 66.103948], - [-18.992364, 66.104451], - [-18.992248, 66.105915], - [-18.992167, 66.106247], - [-18.992021, 66.106844], - [-18.991952, 66.107166], - [-18.992314, 66.107673], - [-18.993446, 66.108247], - [-18.99461, 66.108837], - [-18.995236, 66.109084], - [-18.996138, 66.109439], - [-18.99686, 66.109724], - [-18.997346, 66.110028], - [-18.998177, 66.110548], - [-18.999579, 66.11142], - [-19.000069, 66.111589], - [-19.001594, 66.112126], - [-19.002198, 66.11241], - [-19.002867, 66.112729], - [-19.003482, 66.113185], - [-19.003481, 66.1134], - [-19.003477, 66.114082], - [-19.003422, 66.114344], - [-19.003289, 66.11499], - [-19.003267, 66.115095], - [-19.00311, 66.115367], - [-19.002933, 66.115674], - [-19.002739, 66.116011], - [-19.002604, 66.116124], - [-19.002264, 66.116407], - [-19.001555, 66.116998], - [-19.001501, 66.117051], - [-19.000851, 66.117675], - [-19.000568, 66.117886], - [-18.999875, 66.118403], - [-18.999571, 66.118629], - [-18.999535, 66.118886], - [-18.99947, 66.11924], - [-18.999525, 66.11973], - [-18.999571, 66.119927], - [-18.999587, 66.119988], - [-18.999641, 66.120213], - [-19.000788, 66.121386], - [-19.000907, 66.121507], - [-19.001092, 66.121729], - [-19.002097, 66.122934], - [-19.00277, 66.12354], - [-19.003556, 66.124246], - [-19.003923, 66.124655], - [-19.004158, 66.124916], - [-19.004364, 66.125146], - [-19.004501, 66.125367], - [-19.004888, 66.125996], - [-19.005, 66.126334], - [-19.005147, 66.126779], - [-19.005127, 66.126819], - [-19.004979, 66.127106], - [-19.004763, 66.127526], - [-19.004685, 66.127581], - [-19.004212, 66.127914], - [-19.003773, 66.128041], - [-19.002679, 66.128356], - [-19.00175, 66.128573], - [-19.000731, 66.12881], - [-18.999954, 66.128991], - [-18.999571, 66.12908], - [-18.999397, 66.129086], - [-18.998911, 66.129366], - [-18.997406, 66.130234], - [-18.997324, 66.130288], - [-18.996357, 66.130936], - [-18.995686, 66.131385], - [-18.995659, 66.13141], - [-18.995182, 66.131851], - [-18.994597, 66.132392], - [-18.994513, 66.13247], - [-18.994283, 66.132727], - [-18.993909, 66.133144], - [-18.993472, 66.133631], - [-18.993119, 66.134026], - [-18.992726, 66.134463], - [-18.992826, 66.134477], - [-18.993369, 66.13455], - [-18.995036, 66.134774], - [-18.996041, 66.13491], - [-18.996871, 66.135105], - [-18.997196, 66.135181], - [-18.997392, 66.13528], - [-18.997745, 66.135456], - [-18.998949, 66.136059], - [-18.999519, 66.136345], - [-18.999571, 66.136371], - [-19.000195, 66.136608], - [-19.00129, 66.137024], - [-19.001965, 66.13728], - [-19.003926, 66.137638], - [-19.004771, 66.13793], - [-19.004978, 66.138002], - [-19.005666, 66.138424], - [-19.005721, 66.138458], - [-19.005968, 66.13861], - [-19.006808, 66.139303], - [-19.007024, 66.139482], - [-19.007722, 66.139964], - [-19.007848, 66.140011], - [-19.008772, 66.140362], - [-19.010348, 66.140663], - [-19.011833, 66.140908], - [-19.012184, 66.140967], - [-19.012521, 66.141005], - [-19.013152, 66.141078], - [-19.013625, 66.141132], - [-19.014015, 66.141177], - [-19.014379, 66.141397], - [-19.014613, 66.141538], - [-19.01496, 66.141747], - [-19.015162, 66.141869], - [-19.015533, 66.142092], - [-19.015915, 66.142323], - [-19.016178, 66.142481], - [-19.016473, 66.142659], - [-19.016869, 66.142898], - [-19.017609, 66.143344], - [-19.018108, 66.143645], - [-19.019011, 66.144189], - [-19.019303, 66.144365], - [-19.019743, 66.144631], - [-19.020317, 66.144976], - [-19.02075, 66.145237], - [-19.021102, 66.14545], - [-19.021669, 66.145791], - [-19.022833, 66.146493], - [-19.023344, 66.146801], - [-19.023709, 66.14702], - [-19.024512, 66.147505], - [-19.026439, 66.148666], - [-19.029803, 66.150692], - [-19.03122, 66.151546], - [-19.032022, 66.152029], - [-19.033802, 66.153101], - [-19.03678, 66.154895], - [-19.039579, 66.15658], - [-19.03964, 66.156617], - [-19.040612, 66.157202], - [-19.041162, 66.157533], - [-19.041821, 66.15793], - [-19.042797, 66.158517], - [-19.04321, 66.158766], - [-19.043626, 66.159017], - [-19.044493, 66.159481], - [-19.043987, 66.159645], - [-19.042798, 66.159935], - [-19.041623, 66.160139], - [-19.041069, 66.160379], - [-19.040542, 66.16051], - [-19.040194, 66.160634], - [-19.039507, 66.160646], - [-19.038395, 66.160674], - [-19.037287, 66.16068], - [-19.036491, 66.160687], - [-19.035031, 66.160856], - [-19.033625, 66.161015], - [-19.032738, 66.161162], - [-19.032049, 66.161358], - [-19.031635, 66.161524], - [-19.031345, 66.161814], - [-19.031031, 66.162146], - [-19.030259, 66.162461], - [-19.028839, 66.162883], - [-19.026148, 66.16355], - [-19.024042, 66.163883], - [-19.022089, 66.164076], - [-19.020858, 66.164179], - [-19.020285, 66.164244], - [-19.019374, 66.164371], - [-19.018366, 66.164585], - [-19.017856, 66.164973], - [-19.01755, 66.165206], - [-19.017166, 66.165828], - [-19.017066, 66.165877], - [-19.016494, 66.166158], - [-19.016249, 66.16634], - [-19.015918, 66.166586], - [-19.015539, 66.167233], - [-19.015201, 66.167338], - [-19.014814, 66.167344], - [-19.014291, 66.167306], - [-19.013745, 66.167359], - [-19.011308, 66.167927], - [-19.011168, 66.16803], - [-19.01078, 66.168315], - [-19.009964, 66.168646], - [-19.009645, 66.16881], - [-19.009299, 66.168988], - [-19.008345, 66.169461], - [-19.007554, 66.169678], - [-19.006632, 66.169737], - [-19.00492, 66.170014], - [-19.00283, 66.170436], - [-19.001456, 66.170713], - [-19.001038, 66.170886], - [-19.000807, 66.170959], - [-19.000278, 66.171202], - [-18.998655, 66.171536], - [-18.998051, 66.171678], - [-18.997629, 66.171881], - [-18.997604, 66.172065], - [-18.997577, 66.17227], - [-18.997382, 66.17245], - [-18.996199, 66.172964], - [-18.994964, 66.173698], - [-18.993677, 66.174572], - [-18.993417, 66.174909], - [-18.993436, 66.175114], - [-18.993531, 66.175848], - [-18.99334, 66.176324], - [-18.993022, 66.17653], - [-18.992353, 66.176903], - [-18.992289, 66.17734], - [-18.992257, 66.177585], - [-18.991684, 66.177688], - [-18.991664, 66.177676], - [-18.991398, 66.177521], - [-18.990972, 66.177464], - [-18.990295, 66.177548], - [-18.988813, 66.177695], - [-18.986577, 66.177821], - [-18.985771, 66.177905], - [-18.98486, 66.178073], - [-18.982549, 66.178356], - [-18.980862, 66.178562], - [-18.978506, 66.179064], - [-18.975736, 66.180054], - [-18.974271, 66.180685], - [-18.973347, 66.180981], - [-18.972678, 66.181714], - [-18.971867, 66.181791], - [-18.971596, 66.181817], - [-18.971054, 66.182035], - [-18.971054, 66.182127], - [-18.971054, 66.182344], - [-18.971054, 66.182576], - [-18.970703, 66.183014], - [-18.970543, 66.183696], - [-18.970319, 66.184352], - [-18.970088, 66.184303], - [-18.969563, 66.184193], - [-18.969524, 66.184185], - [-18.968696, 66.184056], - [-18.966467, 66.184583], - [-18.963059, 66.185123], - [-18.961053, 66.185598], - [-18.959237, 66.185932], - [-18.956881, 66.186356], - [-18.954778, 66.186961], - [-18.952994, 66.187462], - [-18.952229, 66.187668], - [-18.951401, 66.187861], - [-18.95089, 66.187743], - [-18.950432, 66.187521], - [-18.949578, 66.187286], - [-18.949182, 66.186867], - [-18.948755, 66.186583], - [-18.948145, 66.186459], - [-18.946649, 66.186311], - [-18.945275, 66.186187], - [-18.944176, 66.186186], - [-18.943349, 66.186339], - [-18.941807, 66.186479], - [-18.941788, 66.18648], - [-18.940444, 66.186621], - [-18.938444, 66.186955], - [-18.93701, 66.187161], - [-18.936565, 66.18725], - [-18.936055, 66.187353], - [-18.934845, 66.18725], - [-18.932202, 66.187159], - [-18.930356, 66.187132], - [-18.928922, 66.187363], - [-18.92803, 66.18771], - [-18.927393, 66.187774], - [-18.926884, 66.187684], - [-18.926534, 66.187349], - [-18.925993, 66.187169], - [-18.925587, 66.187113], - [-18.923649, 66.186847], - [-18.923543, 66.186833], - [-18.923064, 66.186719], - [-18.922527, 66.186592], - [-18.921315, 66.186304], - [-18.919713, 66.185655], - [-18.919671, 66.185638], - [-18.918867, 66.185312], - [-18.918577, 66.185219], - [-18.91823, 66.185011], - [-18.91767, 66.184616], - [-18.916061, 66.183746], - [-18.914842, 66.183114], - [-18.913686, 66.182581], - [-18.912941, 66.182116], - [-18.912429, 66.181859], - [-18.912201, 66.181502], - [-18.911492, 66.181327], - [-18.909981, 66.181104], - [-18.908757, 66.181046], - [-18.907675, 66.180981], - [-18.907146, 66.180703], - [-18.906818, 66.18053], - [-18.906327, 66.179971], - [-18.905961, 66.179405], - [-18.905325, 66.178892], - [-18.904889, 66.178525], - [-18.904411, 66.178114], - [-18.904044, 66.177893], - [-18.903232, 66.177426], - [-18.902312, 66.176744], - [-18.902118, 66.176493], - [-18.902042, 66.176394], - [-18.901963, 66.176293], - [-18.90202, 66.175876], - [-18.902127, 66.175096], - [-18.901971, 66.174464], - [-18.901939, 66.174337], - [-18.901337, 66.173757], - [-18.901312, 66.173713], - [-18.901084, 66.173307], - [-18.901471, 66.171994], - [-18.901476, 66.170707], - [-18.901466, 66.170594], - [-18.901415, 66.170012], - [-18.900833, 66.169433], - [-18.900781, 66.169381], - [-18.900336, 66.169124], - [-18.899952, 66.168613], - [-18.899862, 66.168493], - [-18.899807, 66.168256], - [-18.899695, 66.167768], - [-18.89958, 66.167257], - [-18.899455, 66.166626], - [-18.899171, 66.166201], - [-18.898918, 66.165712], - [-18.898824, 66.165364], - [-18.89891, 66.165197], - [-18.899016, 66.164991], - [-18.899416, 66.164539], - [-18.899606, 66.164261], - [-18.899994, 66.163995], - [-18.900301, 66.163512], - [-18.899952, 66.162814], - [-18.900822, 66.162345], - [-18.901187, 66.162051], - [-18.901379, 66.161705], - [-18.901574, 66.161287], - [-18.901736, 66.160823], - [-18.902026, 66.160404], - [-18.902345, 66.159704], - [-18.903143, 66.158958], - [-18.903846, 66.158212], - [-18.904708, 66.157363], - [-18.905121, 66.15683], - [-18.905857, 66.156257], - [-18.906535, 66.155359], - [-18.9065, 66.155068], - [-18.906466, 66.15479], - [-18.904816, 66.154248], - [-18.90389, 66.154062], - [-18.903141, 66.153928], - [-18.902719, 66.153933], - [-18.902107, 66.154177], - [-18.900129, 66.15367], - [-18.898282, 66.153606], - [-18.89602, 66.152813], - [-18.89633, 66.152736], - [-18.898312, 66.153441], - [-18.900209, 66.153203], - [-18.900192, 66.153086], - [-18.899715, 66.153085], - [-18.899667, 66.151716], - [-18.900413, 66.151619], - [-18.900534, 66.150962], - [-18.899485, 66.150952], - [-18.898576, 66.151704], - [-18.898385, 66.151627], - [-18.899176, 66.150817], - [-18.900487, 66.150788], - [-18.900727, 66.150422], - [-18.901401, 66.15011], - [-18.903172, 66.148556], - [-18.903603, 66.148283], - [-18.90243, 66.147875], - [-18.904339, 66.14748], - [-18.905816, 66.147628], - [-18.905717, 66.147892], - [-18.906403, 66.148215], - [-18.906944, 66.148265], - [-18.90724, 66.147724], - [-18.907694, 66.147759], - [-18.907398, 66.148335], - [-18.908306, 66.148515], - [-18.908399, 66.14837], - [-18.909705, 66.148491], - [-18.909251, 66.14911], - [-18.910516, 66.149227], - [-18.911117, 66.148919], - [-18.91064, 66.148794], - [-18.910446, 66.148735], - [-18.910498, 66.148675], - [-18.910374, 66.148636], - [-18.910369, 66.148586], - [-18.910565, 66.148238], - [-18.910985, 66.148277], - [-18.910945, 66.148538], - [-18.911352, 66.148572], - [-18.911506, 66.148529], - [-18.911506, 66.148504], - [-18.91155, 66.148456], - [-18.911625, 66.14841], - [-18.911723, 66.148359], - [-18.911742, 66.148327], - [-18.911755, 66.148277], - [-18.911775, 66.148242], - [-18.911841, 66.148208], - [-18.911991, 66.148155], - [-18.912016, 66.148136], - [-18.912016, 66.148112], - [-18.912001, 66.148073], - [-18.912024, 66.148043], - [-18.912067, 66.148019], - [-18.912081, 66.148011], - [-18.912148, 66.147993], - [-18.912193, 66.147988], - [-18.91221, 66.147975], - [-18.912192, 66.147958], - [-18.912092, 66.147951], - [-18.911986, 66.147943], - [-18.912003, 66.14792], - [-18.912019, 66.147876], - [-18.912044, 66.147788], - [-18.912175, 66.14779], - [-18.912172, 66.147818], - [-18.912312, 66.147829], - [-18.912361, 66.147832], - [-18.912369, 66.147809], - [-18.912372, 66.147798], - [-18.912397, 66.147798], - [-18.91245, 66.147799], - [-18.912474, 66.147771], - [-18.912545, 66.147688], - [-18.912634, 66.147582], - [-18.912688, 66.147381], - [-18.91275, 66.147228], - [-18.912732, 66.147176], - [-18.912668, 66.14713], - [-18.912662, 66.147126], - [-18.912548, 66.147083], - [-18.912389, 66.147073], - [-18.911826, 66.147035], - [-18.911458, 66.14701], - [-18.911467, 66.146978], - [-18.911833, 66.146996], - [-18.912566, 66.147034], - [-18.912509, 66.147005], - [-18.911872, 66.146951], - [-18.911843, 66.146936], - [-18.911819, 66.146923], - [-18.911815, 66.146894], - [-18.911874, 66.14676], - [-18.911917, 66.146663], - [-18.911897, 66.146629], - [-18.911886, 66.14661], - [-18.911825, 66.14657], - [-18.911702, 66.146505], - [-18.91168, 66.146478], - [-18.911689, 66.146446], - [-18.911724, 66.14643], - [-18.911803, 66.146439], - [-18.911891, 66.146474], - [-18.912066, 66.146571], - [-18.912167, 66.146594], - [-18.912364, 66.146609], - [-18.912875, 66.146648], - [-18.912919, 66.146623], - [-18.913097, 66.146395], - [-18.913212, 66.146339], - [-18.913439, 66.146188], - [-18.913494, 66.146028], - [-18.913397, 66.145948], - [-18.913354, 66.145806], - [-18.913527, 66.145361], - [-18.911321, 66.145217], - [-18.911258, 66.145232], - [-18.911255, 66.145233], - [-18.910945, 66.146057], - [-18.910914, 66.146084], - [-18.910866, 66.146094], - [-18.910791, 66.146101], - [-18.910742, 66.14608], - [-18.910743, 66.145964], - [-18.911, 66.145215], - [-18.910869, 66.145178], - [-18.909041, 66.145058], - [-18.906097, 66.144867], - [-18.90604, 66.144848], - [-18.906038, 66.144839], - [-18.906028, 66.144788], - [-18.906018, 66.144734], - [-18.906204, 66.144421], - [-18.906358, 66.144254], - [-18.906418, 66.144239], - [-18.906495, 66.14422], - [-18.906627, 66.144199], - [-18.906662, 66.144174], - [-18.90667, 66.144085], - [-18.906676, 66.144024], - [-18.906703, 66.143893], - [-18.906835, 66.143773], - [-18.906936, 66.143626], - [-18.907016, 66.143586], - [-18.907073, 66.143557], - [-18.907135, 66.143469], - [-18.907154, 66.143429], - [-18.907179, 66.143375], - [-18.907324, 66.143318], - [-18.907812, 66.143129], - [-18.907956, 66.143013], - [-18.907933, 66.142781], - [-18.907743, 66.142472], - [-18.90803, 66.14227], - [-18.908698, 66.142039], - [-18.908906, 66.142035], - [-18.909183, 66.142037], - [-18.909344, 66.142054], - [-18.909451, 66.142066], - [-18.909692, 66.142121], - [-18.909776, 66.142082], - [-18.909847, 66.142066], - [-18.909912, 66.142052], - [-18.910088, 66.142045], - [-18.910343, 66.142007], - [-18.910414, 66.141977], - [-18.910458, 66.141947], - [-18.91059, 66.141929], - [-18.910656, 66.141899], - [-18.910673, 66.141867], - [-18.910818, 66.141837], - [-18.911135, 66.141812], - [-18.911412, 66.141793], - [-18.911649, 66.141791], - [-18.911807, 66.141807], - [-18.91204, 66.141813], - [-18.912154, 66.141813], - [-18.912418, 66.141786], - [-18.91251, 66.141779], - [-18.912625, 66.141786], - [-18.912761, 66.141783], - [-18.912844, 66.141793], - [-18.91295, 66.141834], - [-18.913011, 66.141852], - [-18.913108, 66.141861], - [-18.913218, 66.141881], - [-18.91325, 66.141885], - [-18.913354, 66.141897], - [-18.913433, 66.141879], - [-18.913578, 66.141862], - [-18.913605, 66.141854], - [-18.91367, 66.141837], - [-18.914053, 66.141751], - [-18.914286, 66.141711], - [-18.914557, 66.141695], - [-18.914675, 66.141676], - [-18.914751, 66.141577], - [-18.914984, 66.140989], - [-18.915241, 66.140529], - [-18.916749, 66.139182], - [-18.918385, 66.137844], - [-18.919936, 66.136665], - [-18.920553, 66.136082], - [-18.919865, 66.135519], - [-18.919823, 66.135497], - [-18.919493, 66.135365], - [-18.919273, 66.135287], - [-18.919107, 66.13523], - [-18.918806, 66.135125], - [-18.918762, 66.135109], - [-18.917911, 66.134821], - [-18.917362, 66.135333], - [-18.917295, 66.135396], - [-18.91649, 66.135549], - [-18.915402, 66.13572], - [-18.91526, 66.135726], - [-18.914637, 66.135751], - [-18.913994, 66.135784], - [-18.912891, 66.136296], - [-18.912194, 66.136659], - [-18.911516, 66.136887], - [-18.911262, 66.136972], - [-18.91064, 66.137218], - [-18.910117, 66.137526], - [-18.906989, 66.138908], - [-18.905868, 66.139524], - [-18.905904, 66.139691], - [-18.905805, 66.139858], - [-18.905358, 66.140092], - [-18.90527, 66.14014], - [-18.90463, 66.140486], - [-18.903837, 66.140746], - [-18.902008, 66.141171], - [-18.900679, 66.141594], - [-18.900332, 66.14162], - [-18.899788, 66.141466], - [-18.89904, 66.141368], - [-18.898977, 66.141334], - [-18.898836, 66.141334], - [-18.898583, 66.141292], - [-18.89769, 66.141342], - [-18.895654, 66.1418], - [-18.894087, 66.142178], - [-18.893441, 66.142509], - [-18.892007, 66.143533], - [-18.891067, 66.143969], - [-18.890675, 66.144478], - [-18.889916, 66.145034], - [-18.888018, 66.146182], - [-18.885742, 66.147253], - [-18.884225, 66.148018], - [-18.883276, 66.148553], - [-18.882279, 66.149166], - [-18.882277, 66.149664], - [-18.881992, 66.150055], - [-18.880795, 66.150443], - [-18.880043, 66.150727], - [-18.879316, 66.150783], - [-18.878752, 66.151049], - [-18.878446, 66.151238], - [-18.878188, 66.151418], - [-18.877367, 66.151408], - [-18.876874, 66.151541], - [-18.876263, 66.15192], - [-18.875158, 66.152412], - [-18.875062, 66.152982], - [-18.875459, 66.153248], - [-18.87452, 66.153532], - [-18.873064, 66.153872], - [-18.872123, 66.154469], - [-18.871887, 66.154877], - [-18.871159, 66.155142], - [-18.869748, 66.155843], - [-18.868737, 66.156402], - [-18.868241, 66.157076], - [-18.868403, 66.157475], - [-18.867931, 66.158091], - [-18.8676, 66.15867], - [-18.867457, 66.159087], - [-18.86739, 66.159132], - [-18.867245, 66.159229], - [-18.866979, 66.159227], - [-18.866382, 66.159222], - [-18.866072, 66.159219], - [-18.865086, 66.159398], - [-18.864334, 66.159739], - [-18.864028, 66.1599], - [-18.863754, 66.159928], - [-18.863207, 66.159985], - [-18.862032, 66.160515], - [-18.861791, 66.160754], - [-18.861167, 66.161111], - [-18.8606, 66.161572], - [-18.860111, 66.161922], - [-18.859497, 66.162526], - [-18.858806, 66.163215], - [-18.85793, 66.16426], - [-18.857692, 66.164829], - [-18.857336, 66.165636], - [-18.856839, 66.166375], - [-18.856898, 66.167377], - [-18.856665, 66.168026], - [-18.856147, 66.168387], - [-18.85598, 66.168908], - [-18.855907, 66.169354], - [-18.855764, 66.169715], - [-18.855763, 66.16998], - [-18.85623, 66.170341], - [-18.856463, 66.170913], - [-18.856273, 66.171044], - [-18.855546, 66.171053], - [-18.854513, 66.171099], - [-18.853503, 66.171278], - [-18.852563, 66.17161], - [-18.851362, 66.172254], - [-18.850867, 66.172747], - [-18.850582, 66.173183], - [-18.850088, 66.173543], - [-18.849569, 66.17396], - [-18.849356, 66.174264], - [-18.84933, 66.174615], - [-18.84907, 66.174966], - [-18.849068, 66.17527], - [-18.849277, 66.17563], - [-18.849111, 66.175924], - [-18.848627, 66.176496], - [-18.847947, 66.177028], - [-18.84727, 66.177726], - [-18.84708, 66.178143], - [-18.847289, 66.17843], - [-18.847336, 66.178494], - [-18.84736, 66.178508], - [-18.847663, 66.178684], - [-18.84795, 66.178812], - [-18.848155, 66.178903], - [-18.848509, 66.179058], - [-18.848787, 66.179179], - [-18.848927, 66.179359], - [-18.848926, 66.179426], - [-18.848691, 66.179473], - [-18.848192, 66.179354], - [-18.848012, 66.179311], - [-18.847284, 66.179282], - [-18.846917, 66.1794], - [-18.846696, 66.179471], - [-18.846414, 66.17967], - [-18.846366, 66.17986], - [-18.846622, 66.180164], - [-18.847371, 66.180544], - [-18.848096, 66.180934], - [-18.84772, 66.180981], - [-18.846594, 66.180894], - [-18.84516, 66.181292], - [-18.844054, 66.181708], - [-18.843179, 66.18278], - [-18.843152, 66.183396], - [-18.84256, 66.184212], - [-18.841745, 66.185277], - [-18.841722, 66.185548], - [-18.842079, 66.186071], - [-18.842592, 66.18666], - [-18.842866, 66.18779], - [-18.842978, 66.188663], - [-18.843, 66.189052], - [-18.842337, 66.189953], - [-18.842048, 66.191025], - [-18.842347, 66.192088], - [-18.84274, 66.193094], - [-18.84358, 66.194016], - [-18.844717, 66.1946], - [-18.844727, 66.194605], - [-18.847023, 66.195414], - [-18.847656, 66.195633], - [-18.849252, 66.195786], - [-18.850239, 66.195787], - [-18.851671, 66.195827], - [-18.853032, 66.196037], - [-18.854042, 66.196123], - [-18.855051, 66.196247], - [-18.858008, 66.196544], - [-18.858759, 66.196735], - [-18.858823, 66.196797], - [-18.859012, 66.196983], - [-18.85932, 66.197286], - [-18.859904, 66.19777], - [-18.859931, 66.197853], - [-18.860043, 66.198207], - [-18.859759, 66.198548], - [-18.859077, 66.198747], - [-18.858043, 66.198755], - [-18.857269, 66.198517], - [-18.856543, 66.19827], - [-18.856004, 66.198051], - [-18.855254, 66.197709], - [-18.854904, 66.197339], - [-18.854459, 66.197025], - [-18.854032, 66.196862], - [-18.85346, 66.196768], - [-18.852699, 66.196653], - [-18.851418, 66.19646], - [-18.850701, 66.196371], - [-18.849958, 66.196247], - [-18.848946, 66.196147], - [-18.847895, 66.196105], - [-18.846523, 66.196134], - [-18.845125, 66.196221], - [-18.844201, 66.196303], - [-18.843406, 66.196442], - [-18.84293, 66.196539], - [-18.842378, 66.196747], - [-18.841927, 66.197088], - [-18.84168, 66.197354], - [-18.841184, 66.197876], - [-18.840336, 66.198216], - [-18.838642, 66.198604], - [-18.837208, 66.198877], - [-18.83561, 66.198899], - [-18.834593, 66.198842], - [-18.832455, 66.19867], - [-18.831545, 66.198614], - [-18.83014, 66.198547], - [-18.828918, 66.198574], - [-18.828183, 66.198531], - [-18.828096, 66.198526], - [-18.827268, 66.198488], - [-18.827251, 66.198487], - [-18.825936, 66.198448], - [-18.824549, 66.19857], - [-18.823609, 66.198626], - [-18.822905, 66.198634], - [-18.822859, 66.198624], - [-18.822037, 66.198434], - [-18.820725, 66.197967], - [-18.819225, 66.197491], - [-18.818421, 66.197374], - [-18.81831, 66.197357], - [-18.816292, 66.197061], - [-18.813875, 66.196811], - [-18.811574, 66.196657], - [-18.811371, 66.196641], - [-18.810541, 66.196579], - [-18.809487, 66.196227], - [-18.808174, 66.19595], - [-18.807658, 66.19587], - [-18.806167, 66.195564], - [-18.804053, 66.195149], - [-18.802219, 66.194752], - [-18.801082, 66.194437], - [-18.799026, 66.193739], - [-18.797647, 66.193377], - [-18.796369, 66.193088], - [-18.79552, 66.192944], - [-18.794201, 66.192924], - [-18.792601, 66.193273], - [-18.79067, 66.193897], - [-18.78933, 66.194019], - [-18.788298, 66.19396], - [-18.786821, 66.193807], - [-18.785985, 66.193695], - [-18.785612, 66.193585], - [-18.785231, 66.193464], - [-18.78508, 66.193429], - [-18.784233, 66.193157], - [-18.782922, 66.193011], - [-18.781946, 66.192844], - [-18.780879, 66.192595], - [-18.780211, 66.192358], - [-18.778702, 66.191958], - [-18.776669, 66.191132], - [-18.776651, 66.191126], - [-18.776631, 66.191116], - [-18.77443, 66.189965], - [-18.773425, 66.189451], - [-18.77324, 66.189379], - [-18.772438, 66.189071], - [-18.77174, 66.188803], - [-18.770315, 66.187985], - [-18.769732, 66.187604], - [-18.768329, 66.186967], - [-18.767209, 66.186187], - [-18.765806, 66.185577], - [-18.765588, 66.185505], - [-18.765057, 66.185329], - [-18.764754, 66.185082], - [-18.765141, 66.184885], - [-18.765423, 66.184691], - [-18.765606, 66.184303], - [-18.765411, 66.183842], - [-18.765, 66.183549], - [-18.764933, 66.18345], - [-18.764796, 66.183098], - [-18.764741, 66.182725], - [-18.764365, 66.182215], - [-18.763926, 66.181936], - [-18.763477, 66.181753], - [-18.762745, 66.181454], - [-18.76188, 66.18114], - [-18.761484, 66.180826], - [-18.761368, 66.180636], - [-18.761467, 66.180114], - [-18.761072, 66.17962], - [-18.760771, 66.179173], - [-18.760776, 66.178727], - [-18.760685, 66.178386], - [-18.760689, 66.177987], - [-18.760668, 66.177664], - [-18.760601, 66.177323], - [-18.760603, 66.177066], - [-18.76084, 66.17683], - [-18.760866, 66.176611], - [-18.760751, 66.176298], - [-18.760659, 66.176099], - [-18.760662, 66.175823], - [-18.760118, 66.175184], - [-18.759664, 66.174846], - [-18.75913, 66.174487], - [-18.758595, 66.174138], - [-18.757981, 66.173756], - [-18.757447, 66.173397], - [-18.757028, 66.172952], - [-18.757533, 66.172824], - [-18.757561, 66.172817], - [-18.758322, 66.172612], - [-18.758654, 66.172205], - [-18.758705, 66.171863], - [-18.75899, 66.171465], - [-18.759392, 66.171181], - [-18.759762, 66.170908], - [-18.760292, 66.170368], - [-18.760725, 66.17007], - [-18.761948, 66.169424], - [-18.762023, 66.169055], - [-18.762284, 66.168811], - [-18.762807, 66.168399], - [-18.76313, 66.168094], - [-18.763435, 66.167729], - [-18.763838, 66.167325], - [-18.764238, 66.167072], - [-18.765101, 66.166677], - [-18.765724, 66.16635], - [-18.766326, 66.165839], - [-18.766646, 66.165602], - [-18.766648, 66.165332], - [-18.766648, 66.165327], - [-18.766691, 66.165297], - [-18.766932, 66.165128], - [-18.767435, 66.164828], - [-18.767948, 66.164314], - [-18.768231, 66.164105], - [-18.768444, 66.163906], - [-18.768892, 66.163603], - [-18.769387, 66.163367], - [-18.770187, 66.163064], - [-18.770989, 66.162657], - [-18.771364, 66.162295], - [-18.771391, 66.162269], - [-18.771394, 66.162266], - [-18.772005, 66.161795], - [-18.772477, 66.161407], - [-18.77295, 66.161019], - [-18.77385, 66.160533], - [-18.774122, 66.160277], - [-18.774586, 66.15986], - [-18.775129, 66.159539], - [-18.775688, 66.159167], - [-18.776151, 66.158943], - [-18.776312, 66.158692], - [-18.777014, 66.15834], - [-18.77754, 66.158109], - [-18.777855, 66.157923], - [-18.778171, 66.157665], - [-18.778184, 66.157498], - [-18.778207, 66.15717], - [-18.778354, 66.156847], - [-18.778407, 66.156623], - [-18.778448, 66.156276], - [-18.778452, 66.156146], - [-18.778789, 66.155645], - [-18.778792, 66.155344], - [-18.779006, 66.154973], - [-18.779531, 66.15456], - [-18.77982, 66.154299], - [-18.780037, 66.154117], - [-18.780409, 66.15381], - [-18.780706, 66.153296], - [-18.780805, 66.152908], - [-18.781145, 66.152471], - [-18.78134, 66.152151], - [-18.781103, 66.151791], - [-18.780841, 66.151613], - [-18.780387, 66.151304], - [-18.780352, 66.151169], - [-18.780707, 66.150828], - [-18.781061, 66.150553], - [-18.781113, 66.149965], - [-18.781468, 66.149501], - [-18.782057, 66.14916], - [-18.782294, 66.148856], - [-18.782342, 66.148724], - [-18.782414, 66.148524], - [-18.782561, 66.148272], - [-18.782724, 66.147993], - [-18.782687, 66.14768], - [-18.782743, 66.147568], - [-18.783152, 66.147197], - [-18.783367, 66.146732], - [-18.783933, 66.146315], - [-18.784146, 66.146078], - [-18.784266, 66.145803], - [-18.784598, 66.145301], - [-18.784953, 66.144979], - [-18.785662, 66.144258], - [-18.785853, 66.143813], - [-18.785973, 66.143462], - [-18.785976, 66.143177], - [-18.786349, 66.142907], - [-18.786697, 66.142106], - [-18.786898, 66.141758], - [-18.786888, 66.141593], - [-18.787472, 66.140797], - [-18.787874, 66.140418], - [-18.788346, 66.140001], - [-18.788917, 66.13956], - [-18.789313, 66.139202], - [-18.789829, 66.138253], - [-18.790261, 66.137868], - [-18.790601, 66.13728], - [-18.791186, 66.136735], - [-18.791451, 66.13641], - [-18.791572, 66.13564], - [-18.791757, 66.13545], - [-18.792114, 66.134825], - [-18.792351, 66.134417], - [-18.792471, 66.134113], - [-18.792545, 66.133667], - [-18.792759, 66.133288], - [-18.792902, 66.132937], - [-18.792928, 66.132624], - [-18.792345, 66.132071], - [-18.791671, 66.131721], - [-18.790479, 66.131349], - [-18.789262, 66.13112], - [-18.787963, 66.130919], - [-18.786618, 66.130688], - [-18.783334, 66.130268], - [-18.77964, 66.129893], - [-18.778468, 66.129932], - [-18.77825, 66.129958], - [-18.777743, 66.129971], - [-18.776702, 66.130224], - [-18.775896, 66.130355], - [-18.774721, 66.130406], - [-18.773262, 66.130633], - [-18.771046, 66.130852], - [-18.769078, 66.131012], - [-18.768134, 66.131197], - [-18.767431, 66.131479], - [-18.766694, 66.132074], - [-18.766286, 66.133108], - [-18.766279, 66.13383], - [-18.766249, 66.134551], - [-18.765985, 66.135262], - [-18.765176, 66.136628], - [-18.76515, 66.13696], - [-18.764295, 66.138201], - [-18.763655, 66.138903], - [-18.762994, 66.13949], - [-18.762663, 66.139792], - [-18.761707, 66.14045], - [-18.760037, 66.141121], - [-18.758266, 66.14186], - [-18.757549, 66.142258], - [-18.756659, 66.143012], - [-18.755807, 66.143465], - [-18.754477, 66.144108], - [-18.753009, 66.144972], - [-18.751944, 66.145623], - [-18.751777, 66.146001], - [-18.75154, 66.146106], - [-18.751172, 66.146008], - [-18.750932, 66.145944], - [-18.750232, 66.145715], - [-18.749221, 66.145988], - [-18.74882, 66.146169], - [-18.748444, 66.146338], - [-18.747737, 66.146735], - [-18.747123, 66.1472], - [-18.746672, 66.147768], - [-18.746198, 66.148223], - [-18.745817, 66.14882], - [-18.746209, 66.149514], - [-18.745901, 66.149807], - [-18.745194, 66.150186], - [-18.744112, 66.150583], - [-18.742791, 66.151321], - [-18.742457, 66.151899], - [-18.742219, 66.15225], - [-18.741677, 66.152552], - [-18.74125, 66.153083], - [-18.740918, 66.153434], - [-18.740536, 66.153486], - [-18.739547, 66.153622], - [-18.739415, 66.15364], - [-18.738945, 66.153772], - [-18.738661, 66.154056], - [-18.738096, 66.154274], - [-18.736924, 66.154234], - [-18.735985, 66.154346], - [-18.735021, 66.154534], - [-18.734314, 66.154865], - [-18.734287, 66.155216], - [-18.734232, 66.155355], - [-18.734231, 66.155356], - [-18.734143, 66.155577], - [-18.733883, 66.155775], - [-18.733411, 66.156012], - [-18.732603, 66.156189], - [-18.731358, 66.156569], - [-18.730235, 66.157041], - [-18.728511, 66.157533], - [-18.727326, 66.157806], - [-18.726259, 66.158055], - [-18.724128, 66.158351], - [-18.722323, 66.158587], - [-18.720872, 66.158847], - [-18.718827, 66.159298], - [-18.715451, 66.159902], - [-18.712074, 66.160613], - [-18.710829, 66.160898], - [-18.708757, 66.161181], - [-18.706445, 66.161727], - [-18.704401, 66.162177], - [-18.702121, 66.16252], - [-18.699044, 66.162717], - [-18.694815, 66.162936], - [-18.69162, 66.16311], - [-18.689403, 66.163105], - [-18.687394, 66.162771], - [-18.685009, 66.162247], - [-18.684945, 66.162236], - [-18.684272, 66.162114], - [-18.683474, 66.162065], - [-18.682351, 66.16211], - [-18.681434, 66.162168], - [-18.680251, 66.162154], - [-18.679514, 66.161997], - [-18.678046, 66.161228], - [-18.676535, 66.160586], - [-18.67547, 66.160298], - [-18.674346, 66.160309], - [-18.673466, 66.160254], - [-18.672767, 66.160214], - [-18.672235, 66.159893], - [-18.671691, 66.159378], - [-18.67151, 66.159207], - [-18.671514, 66.158887], - [-18.671351, 66.158476], - [-18.670905, 66.158041], - [-18.670375, 66.157526], - [-18.670013, 66.157183], - [-18.669423, 66.156988], - [-18.668578, 66.156746], - [-18.667582, 66.156461], - [-18.666543, 66.156274], - [-18.66507, 66.156209], - [-18.664197, 66.156153], - [-18.663712, 66.156046], - [-18.66291, 66.155578], - [-18.662239, 66.155226], - [-18.66149, 66.154958], - [-18.660561, 66.154716], - [-18.6604, 66.154594], - [-18.660261, 66.154411], - [-18.660122, 66.154239], - [-18.659448, 66.15401], - [-18.657878, 66.153649], - [-18.657172, 66.153377], - [-18.656131, 66.153192], - [-18.655315, 66.153065], - [-18.654366, 66.152798], - [-18.653788, 66.152576], - [-18.653409, 66.15217], - [-18.653022, 66.151575], - [-18.652325, 66.150992], - [-18.651682, 66.150606], - [-18.650396, 66.150045], - [-18.650175, 66.149756], - [-18.649626, 66.149305], - [-18.649263, 66.148973], - [-18.648406, 66.148333], - [-18.647929, 66.148051], - [-18.647349, 66.147642], - [-18.647028, 66.147481], - [-18.646678, 66.147252], - [-18.645997, 66.146985], - [-18.645278, 66.146765], - [-18.644769, 66.146581], - [-18.644663, 66.146196], - [-18.644344, 66.145834], - [-18.643785, 66.145426], - [-18.642949, 66.144958], - [-18.641746, 66.144255], - [-18.640055, 66.143503], - [-18.639597, 66.14314], - [-18.639483, 66.142867], - [-18.639318, 66.142352], - [-18.638876, 66.141818], - [-18.638432, 66.141172], - [-18.638043, 66.140837], - [-18.637579, 66.140601], - [-18.636558, 66.139939], - [-18.635909, 66.139513], - [-18.635053, 66.139109], - [-18.633749, 66.138636], - [-18.631867, 66.138055], - [-18.630464, 66.137728], - [-18.629751, 66.137406], - [-18.629181, 66.137085], - [-18.628685, 66.136575], - [-18.628514, 66.136022], - [-18.628308, 66.135396], - [-18.627787, 66.134708], - [-18.627244, 66.134115], - [-18.626375, 66.133349], - [-18.625338, 66.132535], - [-18.624247, 66.1316], - [-18.62373, 66.131113], - [-18.623418, 66.130733], - [-18.622937, 66.130315], - [-18.621287, 66.12928], - [-18.620286, 66.128587], - [-18.619823, 66.12826], - [-18.619472, 66.127948], - [-18.619288, 66.127743], - [-18.619292, 66.127478], - [-18.619184, 66.127212], - [-18.618943, 66.127014], - [-18.618819, 66.126597], - [-18.618711, 66.126316], - [-18.618488, 66.126164], - [-18.61849, 66.126043], - [-18.618744, 66.125956], - [-18.618999, 66.125824], - [-18.618979, 66.125773], - [-18.618914, 66.125696], - [-18.618806, 66.125532], - [-18.618094, 66.124965], - [-18.616796, 66.124219], - [-18.61596, 66.123792], - [-18.615086, 66.123426], - [-18.614546, 66.12325], - [-18.613634, 66.122929], - [-18.612349, 66.122532], - [-18.611528, 66.122333], - [-18.610768, 66.121891], - [-18.610286, 66.121617], - [-18.60977, 66.121039], - [-18.609382, 66.120727], - [-18.609274, 66.120469], - [-18.609166, 66.120211], - [-18.608757, 66.120005], - [-18.608582, 66.119819], - [-18.608536, 66.11977], - [-18.608621, 66.119568], - [-18.608699, 66.118735], - [-18.608563, 66.118407], - [-18.608527, 66.117927], - [-18.608512, 66.1177], - [-18.608032, 66.117266], - [-18.60787, 66.11708], - [-18.608076, 66.116857], - [-18.608434, 66.116638], - [-18.608735, 66.116563], - [-18.608812, 66.116419], - [-18.60831, 66.116205], - [-18.607922, 66.116004], - [-18.608016, 66.115856], - [-18.60826, 66.115803], - [-18.608597, 66.115774], - [-18.608767, 66.115698], - [-18.6089, 66.11557], - [-18.608715, 66.115433], - [-18.608342, 66.115311], - [-18.608364, 66.115151], - [-18.608762, 66.114766], - [-18.608935, 66.114478], - [-18.608716, 66.114152], - [-18.608588, 66.113924], - [-18.608744, 66.11353], - [-18.609027, 66.113333], - [-18.609274, 66.113084], - [-18.609608, 66.112848], - [-18.610166, 66.112275], - [-18.610265, 66.111896], - [-18.610437, 66.111684], - [-18.610664, 66.111502], - [-18.61091, 66.111283], - [-18.610914, 66.111018], - [-18.610942, 66.110892], - [-18.611517, 66.110731], - [-18.611818, 66.110641], - [-18.612139, 66.110407], - [-18.612461, 66.110052], - [-18.612522, 66.109827], - [-18.612512, 66.109263], - [-18.612461, 66.108929], - [-18.612019, 66.10845], - [-18.611782, 66.108101], - [-18.611937, 66.107737], - [-18.611979, 66.107426], - [-18.6123, 66.107184], - [-18.613148, 66.1068], - [-18.613731, 66.106566], - [-18.614169, 66.106261], - [-18.614785, 66.105811], - [-18.615515, 66.104984], - [-18.616094, 66.104636], - [-18.617392, 66.104131], - [-18.618833, 66.103727], - [-18.620816, 66.10299], - [-18.621619, 66.102702], - [-18.622702, 66.102165], - [-18.624557, 66.101535], - [-18.625291, 66.101226], - [-18.625971, 66.100735], - [-18.626705, 66.10041], - [-18.62725, 66.100214], - [-18.627663, 66.100071], - [-18.62838, 66.099618], - [-18.628628, 66.09933], - [-18.6291, 66.099006], - [-18.629308, 66.098794], - [-18.629332, 66.098453], - [-18.629466, 66.098225], - [-18.629711, 66.098097], - [-18.63058, 66.097818], - [-18.631567, 66.097536], - [-18.631944, 66.097347], - [-18.632228, 66.097101], - [-18.632364, 66.09689], - [-18.632665, 66.096792], - [-18.632872, 66.096709], - [-18.633475, 66.09637], - [-18.634643, 66.09569], - [-18.635697, 66.095184], - [-18.636282, 66.094837], - [-18.636923, 66.094414], - [-18.638052, 66.09387], - [-18.639038, 66.093653], - [-18.639393, 66.093477], - [-18.640435, 66.0932], - [-18.641197, 66.093036], - [-18.641798, 66.092724], - [-18.642199, 66.092483], - [-18.642784, 66.092337], - [-18.643485, 66.092119], - [-18.644819, 66.091758], - [-18.645299, 66.091561], - [-18.645525, 66.091485], - [-18.646054, 66.091276], - [-18.646909, 66.091194], - [-18.64766, 66.091024], - [-18.648275, 66.09067], - [-18.648682, 66.090291], - [-18.648759, 66.090128], - [-18.648493, 66.089994], - [-18.648673, 66.089916], - [-18.64934, 66.090123], - [-18.649744, 66.089991], - [-18.650267, 66.089975], - [-18.650295, 66.089974], - [-18.65095, 66.089902], - [-18.652052, 66.089668], - [-18.652758, 66.089366], - [-18.653019, 66.08911], - [-18.65321, 66.088778], - [-18.653472, 66.088485], - [-18.653873, 66.08822], - [-18.654366, 66.08805], - [-18.655495, 66.087578], - [-18.656387, 66.087305], - [-18.657351, 66.086927], - [-18.65827, 66.086445], - [-18.658908, 66.085934], - [-18.659314, 66.08586], - [-18.659755, 66.085716], - [-18.660507, 66.085348], - [-18.66114, 66.08517], - [-18.661845, 66.084868], - [-18.663502, 66.084066], - [-18.664025, 66.083704], - [-18.664227, 66.083355], - [-18.664233, 66.082871], - [-18.664106, 66.081903], - [-18.663856, 66.081431], - [-18.663613, 66.081075], - [-18.663545, 66.080843], - [-18.663453, 66.080654], - [-18.663274, 66.08039], - [-18.662961, 66.080022], - [-18.662886, 66.079945], - [-18.662864, 66.079835], - [-18.662812, 66.079737], - [-18.662807, 66.07968], - [-18.662725, 66.079631], - [-18.662649, 66.079591], - [-18.662627, 66.079507], - [-18.662435, 66.079308], - [-18.662244, 66.079062], - [-18.66217, 66.078873], - [-18.662107, 66.078703], - [-18.662003, 66.078562], - [-18.661853, 66.078363], - [-18.661546, 66.077985], - [-18.661349, 66.077702], - [-18.661309, 66.077614], - [-18.661169, 66.077566], - [-18.661081, 66.077491], - [-18.661094, 66.077436], - [-18.661177, 66.077379], - [-18.661101, 66.077307], - [-18.66099, 66.077243], - [-18.660909, 66.077171], - [-18.660728, 66.07701], - [-18.660519, 66.076854], - [-18.660174, 66.076655], - [-18.659858, 66.076497], - [-18.65928, 66.076113], - [-18.65862, 66.075751], - [-18.658509, 66.075679], - [-18.658422, 66.075571], - [-18.658283, 66.07543], - [-18.658113, 66.075332], - [-18.65775, 66.075202], - [-18.657193, 66.075031], - [-18.656882, 66.074944], - [-18.656631, 66.074841], - [-18.656584, 66.074795], - [-18.656585, 66.074724], - [-18.656681, 66.074621], - [-18.656687, 66.074569], - [-18.656717, 66.074521], - [-18.656812, 66.074492], - [-18.656865, 66.074457], - [-18.65689, 66.074394], - [-18.656922, 66.074348], - [-18.65695, 66.074308], - [-18.656945, 66.074234], - [-18.656936, 66.074214], - [-18.656905, 66.074139], - [-18.656331, 66.074026], - [-18.65623, 66.074226], - [-18.656091, 66.074883], - [-18.655907, 66.075524], - [-18.655765, 66.075651], - [-18.655483, 66.075755], - [-18.655225, 66.075792], - [-18.652269, 66.075757], - [-18.650597, 66.075787], - [-18.650047, 66.075833], - [-18.648871, 66.076333], - [-18.64879, 66.076262], - [-18.649707, 66.075865], - [-18.648947, 66.075935], - [-18.648772, 66.075897], - [-18.64875, 66.075806], - [-18.650389, 66.075578], - [-18.655092, 66.07554], - [-18.655429, 66.07538], - [-18.655618, 66.075201], - [-18.655852, 66.074346], - [-18.655838, 66.073984], - [-18.654345, 66.073995], - [-18.654382, 66.074418], - [-18.651244, 66.074397], - [-18.650669, 66.075091], - [-18.650543, 66.075073], - [-18.650654, 66.074929], - [-18.650512, 66.074888], - [-18.65088, 66.074405], - [-18.647884, 66.074432], - [-18.647066, 66.074849], - [-18.646832, 66.074742], - [-18.647441, 66.074433], - [-18.646353, 66.074418], - [-18.645265, 66.07463], - [-18.644481, 66.074782], - [-18.643274, 66.075659], - [-18.644734, 66.075841], - [-18.646186, 66.075293], - [-18.646564, 66.075431], - [-18.645163, 66.075984], - [-18.646963, 66.076355], - [-18.647635, 66.076544], - [-18.647308, 66.076698], - [-18.644824, 66.076173], - [-18.643507, 66.076083], - [-18.643025, 66.076078], - [-18.641784, 66.076134], - [-18.641266, 66.076319], - [-18.639486, 66.077586], - [-18.639092, 66.077725], - [-18.638393, 66.077971], - [-18.63633, 66.078522], - [-18.633774, 66.078743], - [-18.63074, 66.078841], - [-18.628984, 66.078942], - [-18.628627, 66.078957], - [-18.627005, 66.07918], - [-18.625862, 66.079591], - [-18.62486, 66.079928], - [-18.62424, 66.080024], - [-18.623747, 66.080132], - [-18.62298, 66.08024], - [-18.622656, 66.080603], - [-18.621634, 66.080908], - [-18.620775, 66.080979], - [-18.620252, 66.081277], - [-18.619671, 66.081425], - [-18.618835, 66.08147], - [-18.618413, 66.081508], - [-18.617881, 66.081597], - [-18.617376, 66.081785], - [-18.617329, 66.081926], - [-18.617287, 66.082072], - [-18.617021, 66.082155], - [-18.616737, 66.082209], - [-18.616127, 66.082288], - [-18.616, 66.08241], - [-18.615744, 66.082591], - [-18.615381, 66.082772], - [-18.614893, 66.082932], - [-18.614521, 66.083021], - [-18.614135, 66.083083], - [-18.61378, 66.08314], - [-18.613056, 66.083314], - [-18.612076, 66.083654], - [-18.611054, 66.083975], - [-18.610133, 66.084168], - [-18.609371, 66.084425], - [-18.60823, 66.084665], - [-18.607507, 66.084995], - [-18.606906, 66.085139], - [-18.606264, 66.085356], - [-18.605783, 66.085517], - [-18.60536, 66.085759], - [-18.604738, 66.085968], - [-18.604108, 66.086098], - [-18.603577, 66.086208], - [-18.603226, 66.086302], - [-18.601513, 66.086761], - [-18.599453, 66.087088], - [-18.59867, 66.087369], - [-18.596507, 66.087882], - [-18.595224, 66.088259], - [-18.5936, 66.088741], - [-18.592159, 66.089037], - [-18.590454, 66.089575], - [-18.589131, 66.089936], - [-18.588205, 66.090411], - [-18.587493, 66.090939], - [-18.586626, 66.09125], - [-18.586168, 66.091452], - [-18.584842, 66.092029], - [-18.584455, 66.09211], - [-18.583751, 66.092127], - [-18.582386, 66.092271], - [-18.581702, 66.092435], - [-18.580926, 66.0927], - [-18.580371, 66.092894], - [-18.580195, 66.092956], - [-18.579238, 66.093165], - [-18.578032, 66.093337], - [-18.577666, 66.093346], - [-18.577055, 66.093362], - [-18.576145, 66.093442], - [-18.575689, 66.093561], - [-18.574889, 66.093899], - [-18.573744, 66.094467], - [-18.572829, 66.094879], - [-18.57207, 66.095164], - [-18.571608, 66.095224], - [-18.571288, 66.095265], - [-18.570724, 66.095263], - [-18.570199, 66.095188], - [-18.569806, 66.094972], - [-18.569518, 66.094834], - [-18.5685, 66.094617], - [-18.568056, 66.094511], - [-18.567041, 66.094325], - [-18.566366, 66.094202], - [-18.565655, 66.094076], - [-18.564913, 66.09397], - [-18.564505, 66.093977], - [-18.564107, 66.09396], - [-18.563538, 66.093867], - [-18.563263, 66.093879], - [-18.562733, 66.093844], - [-18.561961, 66.093714], - [-18.561514, 66.093593], - [-18.560755, 66.093305], - [-18.560209, 66.09301], - [-18.559841, 66.092738], - [-18.559625, 66.092619], - [-18.55931, 66.092552], - [-18.55906, 66.092536], - [-18.558831, 66.092522], - [-18.558506, 66.092484], - [-18.558355, 66.092384], - [-18.558269, 66.092322], - [-18.558183, 66.09226], - [-18.55793, 66.09218], - [-18.557595, 66.092122], - [-18.5574, 66.09207], - [-18.556935, 66.091946], - [-18.556857, 66.091912], - [-18.556753, 66.091867], - [-18.556521, 66.091746], - [-18.556013, 66.091646], - [-18.555675, 66.091605], - [-18.555626, 66.091599], - [-18.554844, 66.09144], - [-18.55465, 66.091378], - [-18.554256, 66.091252], - [-18.553789, 66.09116], - [-18.552983, 66.091031], - [-18.552762, 66.090995], - [-18.552377, 66.090899], - [-18.551929, 66.090832], - [-18.551494, 66.090661], - [-18.551343, 66.09054], - [-18.551377, 66.090338], - [-18.551316, 66.090285], - [-18.551247, 66.090226], - [-18.551221, 66.090217], - [-18.550811, 66.090076], - [-18.550558, 66.089992], - [-18.550224, 66.089838], - [-18.550114, 66.089735], - [-18.549803, 66.089448], - [-18.549138, 66.088983], - [-18.548654, 66.088532], - [-18.548287, 66.088112], - [-18.548116, 66.088008], - [-18.547281, 66.08771], - [-18.545945, 66.08746], - [-18.545395, 66.087401], - [-18.544857, 66.087296], - [-18.544554, 66.087154], - [-18.543928, 66.08683], - [-18.543436, 66.086402], - [-18.54327, 66.086009], - [-18.543095, 66.085512], - [-18.542957, 66.085272], - [-18.54225, 66.084352], - [-18.541094, 66.082843], - [-18.540621, 66.082565], - [-18.540236, 66.082406], - [-18.539923, 66.082232], - [-18.539677, 66.081768], - [-18.539601, 66.081474], - [-18.53937, 66.081254], - [-18.539075, 66.080662], - [-18.538896, 66.08045], - [-18.538817, 66.080268], - [-18.53856, 66.079316], - [-18.538411, 66.079059], - [-18.538039, 66.078789], - [-18.537725, 66.078689], - [-18.53733, 66.078593], - [-18.536863, 66.078467], - [-18.53654, 66.078322], - [-18.536288, 66.078176], - [-18.535817, 66.077749], - [-18.535042, 66.077184], - [-18.534681, 66.076889], - [-18.53403, 66.076255], - [-18.53365, 66.075869], - [-18.533561, 66.075712], - [-18.533677, 66.07553], - [-18.533865, 66.07548], - [-18.533922, 66.075464], - [-18.53425, 66.075374], - [-18.534313, 66.0753], - [-18.534193, 66.075163], - [-18.534212, 66.075068], - [-18.534223, 66.075011], - [-18.534238, 66.074936], - [-18.534196, 66.074902], - [-18.533947, 66.0747], - [-18.533589, 66.074223], - [-18.53344, 66.074011], - [-18.533137, 66.073833], - [-18.532948, 66.073601], - [-18.532208, 66.072825], - [-18.531534, 66.072393], - [-18.530982, 66.07182], - [-18.530947, 66.071768], - [-18.530633, 66.071307], - [-18.530048, 66.070657], - [-18.529923, 66.070282], - [-18.529648, 66.069965], - [-18.529077, 66.069579], - [-18.528858, 66.069437], - [-18.528757, 66.069371], - [-18.527842, 66.069077], - [-18.527591, 66.068877], - [-18.526952, 66.068405], - [-18.52663, 66.067949], - [-18.526511, 66.06781], - [-18.526352, 66.067624], - [-18.526313, 66.067425], - [-18.52628, 66.067257], - [-18.526264, 66.06714], - [-18.526249, 66.067036], - [-18.526164, 66.066933], - [-18.525739, 66.066668], - [-18.525645, 66.066558], - [-18.525699, 66.066519], - [-18.525802, 66.066445], - [-18.525951, 66.066377], - [-18.526538, 66.066033], - [-18.526701, 66.065806], - [-18.526704, 66.065646], - [-18.526647, 66.065425], - [-18.526766, 66.065169], - [-18.526864, 66.06507], - [-18.52719, 66.06495], - [-18.527509, 66.064791], - [-18.527708, 66.064592], - [-18.527808, 66.064017], - [-18.527828, 66.062917], - [-18.527783, 66.062257], - [-18.5276, 66.061613], - [-18.527729, 66.061445], - [-18.527792, 66.06101], - [-18.527634, 66.060737], - [-18.527312, 66.060464], - [-18.527118, 66.060146], - [-18.526921, 66.059934], - [-18.526856, 66.059607], - [-18.526825, 66.059342], - [-18.526594, 66.059046], - [-18.52629, 66.058824], - [-18.526095, 66.058595], - [-18.526008, 66.058374], - [-18.525922, 66.058153], - [-18.525745, 66.057909], - [-18.524975, 66.057369], - [-18.524187, 66.056806], - [-18.523186, 66.056], - [-18.522774, 66.055733], - [-18.522453, 66.05543], - [-18.522298, 66.054987], - [-18.522092, 66.054346], - [-18.521887, 66.053667], - [-18.521891, 66.053446], - [-18.521469, 66.052774], - [-18.52083, 66.052005], - [-18.520491, 66.051688], - [-18.520229, 66.051156], - [-18.519876, 66.050654], - [-18.519755, 66.050337], - [-18.519553, 66.049869], - [-18.518796, 66.04925], - [-18.518388, 66.048755], - [-18.518162, 66.048224], - [-18.517936, 66.047707], - [-18.517928, 66.047169], - [-18.51801, 66.046654], - [-18.517835, 66.046329], - [-18.517822, 66.046093], - [-18.517764, 66.045565], - [-18.517794, 66.044895], - [-18.518064, 66.043917], - [-18.51843, 66.043054], - [-18.518636, 66.042626], - [-18.518626, 66.041982], - [-18.518523, 66.041616], - [-18.518159, 66.041096], - [-18.518144, 66.040739], - [-18.518435, 66.040472], - [-18.518702, 66.040303], - [-18.518817, 66.040008], - [-18.519022, 66.039634], - [-18.519097, 66.039161], - [-18.519279, 66.038831], - [-18.519707, 66.03826], - [-18.519734, 66.037957], - [-18.519644, 66.037786], - [-18.519523, 66.037569], - [-18.519036, 66.037177], - [-18.518632, 66.036657], - [-18.518817, 66.036546], - [-18.519415, 66.036528], - [-18.519569, 66.036402], - [-18.519749, 66.036009], - [-18.519731, 66.035786], - [-18.519713, 66.035589], - [-18.519783, 66.03533], - [-18.519857, 66.035246], - [-18.519986, 66.035098], - [-18.520164, 66.034979], - [-18.520386, 66.03485], - [-18.520358, 66.03458], - [-18.520081, 66.034147], - [-18.520074, 66.034136], - [-18.519846, 66.033563], - [-18.519852, 66.033207], - [-18.519861, 66.032754], - [-18.5199, 66.032483], - [-18.519952, 66.032117], - [-18.519751, 66.031522], - [-18.519172, 66.031185], - [-18.517998, 66.030604], - [-18.51703, 66.030124], - [-18.515313, 66.029474], - [-18.514556, 66.02932], - [-18.514079, 66.029224], - [-18.513561, 66.029199], - [-18.512861, 66.02934], - [-18.512575, 66.029338], - [-18.512204, 66.029335], - [-18.511603, 66.029158], - [-18.511464, 66.02884], - [-18.511443, 66.02843], - [-18.510681, 66.027607], - [-18.509013, 66.026587], - [-18.508775, 66.026466], - [-18.508199, 66.026174], - [-18.50752, 66.025567], - [-18.507503, 66.02552], - [-18.507293, 66.02494], - [-18.507203, 66.024087], - [-18.507073, 66.023694], - [-18.506927, 66.023255], - [-18.50693, 66.022631], - [-18.506904, 66.022189], - [-18.506887, 66.021646], - [-18.507551, 66.021184], - [-18.508048, 66.02087], - [-18.508343, 66.020632], - [-18.508391, 66.020307], - [-18.508377, 66.019948], - [-18.508525, 66.019707], - [-18.508887, 66.019309], - [-18.509363, 66.01875], - [-18.509534, 66.018392], - [-18.509705, 66.01805], - [-18.510202, 66.017662], - [-18.511345, 66.017039], - [-18.51231, 66.016545], - [-18.51397, 66.015752], - [-18.514887, 66.015049], - [-18.515237, 66.014685], - [-18.515541, 66.013997], - [-18.515848, 66.013209], - [-18.515938, 66.012681], - [-18.516027, 66.012164], - [-18.516229, 66.011206], - [-18.516359, 66.010839], - [-18.516803, 66.010394], - [-18.517397, 66.009835], - [-18.517632, 66.009407], - [-18.517792, 66.008605], - [-18.517988, 66.008012], - [-18.518073, 66.007319], - [-18.517689, 66.006771], - [-18.517085, 66.006135], - [-18.51703, 66.005661], - [-18.517039, 66.00524], - [-18.516947, 66.004789], - [-18.516589, 66.004201], - [-18.516266, 66.003799], - [-18.515443, 66.002887], - [-18.514953, 66.001751], - [-18.514844, 66.001], - [-18.514934, 66.00055], - [-18.515588, 65.999551], - [-18.516306, 65.998402], - [-18.516749, 65.997753], - [-18.516903, 65.997169], - [-18.516875, 65.996477], - [-18.516729, 65.9955], - [-18.516759, 65.994992], - [-18.516934, 65.994458], - [-18.517155, 65.993513], - [-18.517174, 65.993455], - [-18.51732, 65.992732], - [-18.517974, 65.991816], - [-18.518758, 65.990955], - [-18.520301, 65.990128], - [-18.521617, 65.989385], - [-18.522335, 65.988953], - [-18.523119, 65.988208], - [-18.523813, 65.987486], - [-18.524234, 65.987078], - [-18.524616, 65.986562], - [-18.524692, 65.986156], - [-18.524708, 65.985301], - [-18.524837, 65.984711], - [-18.525135, 65.984388], - [-18.525454, 65.984042], - [-18.525602, 65.983461], - [-18.525961, 65.982629], - [-18.526447, 65.98219], - [-18.527783, 65.9816], - [-18.52881, 65.981012], - [-18.529082, 65.980371], - [-18.529198, 65.980043], - [-18.529242, 65.979882], - [-18.529255, 65.979787], - [-18.529257, 65.979697], - [-18.529242, 65.979629], - [-18.529224, 65.979545], - [-18.529188, 65.979425], - [-18.529062, 65.979199], - [-18.528794, 65.978831], - [-18.528592, 65.978652], - [-18.528229, 65.978365], - [-18.528018, 65.978218], - [-18.527926, 65.978153], - [-18.527814, 65.97802], - [-18.527802, 65.977976], - [-18.527794, 65.977948], - [-18.527699, 65.977912], - [-18.52767, 65.977887], - [-18.527641, 65.977812], - [-18.527606, 65.977768], - [-18.527581, 65.97769], - [-18.527569, 65.977537], - [-18.527473, 65.97741], - [-18.527457, 65.97728], - [-18.527378, 65.977032], - [-18.527333, 65.976897], - [-18.527331, 65.976793], - [-18.527336, 65.976709], - [-18.527225, 65.97643], - [-18.527207, 65.976377], - [-18.527137, 65.976157], - [-18.526931, 65.975509], - [-18.526901, 65.975495], - [-18.526606, 65.975468], - [-18.526197, 65.975421], - [-18.52579, 65.975373], - [-18.525238, 65.97535], - [-18.521931, 65.97504], - [-18.521752, 65.974996], - [-18.520929, 65.974565], - [-18.519415, 65.973791], - [-18.519394, 65.973732], - [-18.519406, 65.973677], - [-18.519455, 65.973638], - [-18.519563, 65.973612], - [-18.519702, 65.973617], - [-18.519778, 65.97365], - [-18.521795, 65.97471], - [-18.522083, 65.97484], - [-18.522259, 65.97488], - [-18.524598, 65.975127], - [-18.524743, 65.975128], - [-18.524797, 65.975117], - [-18.524862, 65.975104], - [-18.52491, 65.975067], - [-18.524892, 65.974914], - [-18.524721, 65.973973], - [-18.523978, 65.973875], - [-18.523866, 65.97385], - [-18.523823, 65.973826], - [-18.523819, 65.973771], - [-18.523648, 65.973749], - [-18.523666, 65.973642], - [-18.52372, 65.973618], - [-18.523838, 65.973621], - [-18.523916, 65.97363], - [-18.528522, 65.974194], - [-18.528582, 65.973777], - [-18.528636, 65.973718], - [-18.528793, 65.973378], - [-18.528821, 65.973319], - [-18.528939, 65.973284], - [-18.529087, 65.973275], - [-18.529197, 65.973268], - [-18.529299, 65.97325], - [-18.529318, 65.973236], - [-18.529403, 65.97317], - [-18.529454, 65.973006], - [-18.529465, 65.972687], - [-18.529413, 65.972575], - [-18.529234, 65.972415], - [-18.528948, 65.972217], - [-18.527534, 65.972219], - [-18.527326, 65.972219], - [-18.527253, 65.972219], - [-18.527266, 65.972105], - [-18.527786, 65.972106], - [-18.528864, 65.972108], - [-18.528885, 65.972062], - [-18.528886, 65.97206], - [-18.528432, 65.971717], - [-18.528038, 65.971404], - [-18.527972, 65.971351], - [-18.527962, 65.971349], - [-18.527646, 65.971273], - [-18.527458, 65.97126], - [-18.527351, 65.971251], - [-18.527198, 65.971206], - [-18.527154, 65.971193], - [-18.526924, 65.971162], - [-18.526682, 65.971153], - [-18.526565, 65.971163], - [-18.526549, 65.971166], - [-18.526381, 65.971204], - [-18.526288, 65.971268], - [-18.526191, 65.971335], - [-18.525988, 65.971623], - [-18.526046, 65.971634], - [-18.525836, 65.97197], - [-18.525084, 65.97324], - [-18.525046, 65.973268], - [-18.52497, 65.973278], - [-18.524943, 65.973281], - [-18.524895, 65.9733], - [-18.524857, 65.973322], - [-18.524776, 65.973331], - [-18.524674, 65.973322], - [-18.524616, 65.973289], - [-18.524617, 65.973219], - [-18.5248, 65.972887], - [-18.525326, 65.972038], - [-18.525823, 65.971248], - [-18.525972, 65.97103], - [-18.526086, 65.970954], - [-18.526108, 65.970912], - [-18.526045, 65.970853], - [-18.526009, 65.970772], - [-18.526114, 65.970611], - [-18.52617, 65.970525], - [-18.526196, 65.970484], - [-18.526187, 65.97039], - [-18.526143, 65.970304], - [-18.525871, 65.970135], - [-18.525393, 65.969915], - [-18.524741, 65.969636], - [-18.524104, 65.96936], - [-18.523675, 65.969171], - [-18.523422, 65.969071], - [-18.523118, 65.968967], - [-18.522365, 65.968765], - [-18.521467, 65.968566], - [-18.520169, 65.968208], - [-18.52003, 65.968169], - [-18.519322, 65.96799], - [-18.518774, 65.967894], - [-18.518432, 65.967781], - [-18.518296, 65.967681], - [-18.518297, 65.967605], - [-18.518276, 65.967562], - [-18.518197, 65.967455], - [-18.518051, 65.967372], - [-18.515194, 65.966627], - [-18.513717, 65.966267], - [-18.51195, 65.965937], - [-18.508287, 65.965326], - [-18.504268, 65.964682], - [-18.500002, 65.964108], - [-18.498479, 65.964064], - [-18.495025, 65.963652], - [-18.49481, 65.963631], - [-18.491661, 65.963389], - [-18.488901, 65.963199], - [-18.48855, 65.96319], - [-18.483783, 65.962985], - [-18.483749, 65.962979], - [-18.481709, 65.962872], - [-18.47684, 65.962799], - [-18.474502, 65.96277], - [-18.47274, 65.962714], - [-18.470437, 65.962664], - [-18.469355, 65.962624], - [-18.466959, 65.963335], - [-18.464445, 65.963893], - [-18.462547, 65.964462], - [-18.461293, 65.964579], - [-18.460506, 65.96458], - [-18.459503, 65.964581], - [-18.458582, 65.964424], - [-18.457906, 65.964193], - [-18.456794, 65.963933], - [-18.455576, 65.96378], - [-18.453486, 65.963559], - [-18.451792, 65.963567], - [-18.450849, 65.963571], - [-18.450101, 65.963468], - [-18.449509, 65.963381], - [-18.449237, 65.963344], - [-18.449022, 65.963315], - [-18.448851, 65.963229], - [-18.448942, 65.962952], - [-18.449054, 65.962618], - [-18.449044, 65.96229], - [-18.448787, 65.962054], - [-18.448393, 65.961711], - [-18.447701, 65.961438], - [-18.446946, 65.961288], - [-18.446553, 65.961228], - [-18.446437, 65.961137], - [-18.44663, 65.960915], - [-18.447019, 65.960681], - [-18.447231, 65.960525], - [-18.447185, 65.960269], - [-18.446997, 65.960062], - [-18.44641, 65.959782], - [-18.446016, 65.959418], - [-18.445882, 65.959175], - [-18.445733, 65.958797], - [-18.445654, 65.958406], - [-18.44566, 65.958114], - [-18.44551, 65.957793], - [-18.445014, 65.957307], - [-18.444604, 65.956907], - [-18.443567, 65.956426], - [-18.442511, 65.95603], - [-18.441943, 65.955673], - [-18.440653, 65.954793], - [-18.440157, 65.954364], - [-18.439398, 65.953934], - [-18.438895, 65.953804], - [-18.437747, 65.953608], - [-18.436062, 65.953274], - [-18.43542, 65.953101], - [-18.434926, 65.952921], - [-18.434449, 65.952472], - [-18.433847, 65.952201], - [-18.433345, 65.952107], - [-18.431891, 65.951917], - [-18.430872, 65.951659], - [-18.429938, 65.951443], - [-18.428398, 65.951189], - [-18.427501, 65.950945], - [-18.426778, 65.950644], - [-18.426211, 65.950345], - [-18.425455, 65.949988], - [-18.424161, 65.949607], - [-18.422968, 65.949355], - [-18.422383, 65.94914], - [-18.421626, 65.948826], - [-18.421073, 65.948668], - [-18.420519, 65.948616], - [-18.419432, 65.948314], - [-18.418723, 65.948156], - [-18.418209, 65.947835], - [-18.417521, 65.947535], - [-18.416813, 65.947376], - [-18.416382, 65.947219], - [-18.415243, 65.946917], - [-18.413621, 65.946464], - [-18.412308, 65.946183], - [-18.410925, 65.945915], - [-18.409993, 65.945671], - [-18.409282, 65.945612], - [-18.407301, 65.945682], - [-18.404778, 65.945878], - [-18.402586, 65.946089], - [-18.402132, 65.946194], - [-18.401742, 65.946511], - [-18.401622, 65.947205], - [-18.401462, 65.947374], - [-18.400726, 65.947648], - [-18.399712, 65.947941], - [-18.399359, 65.948202], - [-18.399337, 65.948372], - [-18.399572, 65.948542], - [-18.399593, 65.948558], - [-18.399746, 65.948707], - [-18.399605, 65.948798], - [-18.3993, 65.948843], - [-18.398562, 65.94883], - [-18.397471, 65.948949], - [-18.396441, 65.948881], - [-18.394756, 65.948957], - [-18.393611, 65.948917], - [-18.392361, 65.948884], - [-18.391579, 65.94893], - [-18.391089, 65.949056], - [-18.39093, 65.949183], - [-18.390872, 65.949459], - [-18.390745, 65.949709], - [-18.390719, 65.949968], - [-18.390472, 65.950347], - [-18.390189, 65.950549], - [-18.389947, 65.950693], - [-18.389647, 65.950665], - [-18.389314, 65.950634], - [-18.388662, 65.950502], - [-18.387929, 65.950442], - [-18.387331, 65.950529], - [-18.386736, 65.950519], - [-18.386198, 65.950606], - [-18.385582, 65.950644], - [-18.38544, 65.950781], - [-18.385102, 65.950796], - [-18.384827, 65.950665], - [-18.384734, 65.950397], - [-18.383886, 65.950151], - [-18.382896, 65.950058], - [-18.382281, 65.950056], - [-18.381222, 65.950343], - [-18.380611, 65.950162], - [-18.379914, 65.950257], - [-18.379376, 65.950368], - [-18.378683, 65.950284], - [-18.377872, 65.950176], - [-18.377143, 65.949954], - [-18.376338, 65.949806], - [-18.375637, 65.949866], - [-18.374563, 65.950121], - [-18.373897, 65.950153], - [-18.373281, 65.950028], - [-18.373236, 65.949794], - [-18.373394, 65.949559], - [-18.373063, 65.949396], - [-18.372216, 65.949244], - [-18.370978, 65.949304], - [-18.370677, 65.949171], - [-18.370923, 65.948643], - [-18.370959, 65.948368], - [-18.370772, 65.947721], - [-18.370559, 65.94739], - [-18.370085, 65.947185], - [-18.369189, 65.946919], - [-18.368402, 65.946728], - [-18.367906, 65.946726], - [-18.367533, 65.946744], - [-18.367352, 65.946753], - [-18.366857, 65.946691], - [-18.366408, 65.946557], - [-18.366367, 65.946381], - [-18.36617, 65.946193], - [-18.365749, 65.946071], - [-18.365036, 65.94588], - [-18.3639, 65.945642], - [-18.363056, 65.945541], - [-18.361861, 65.945469], - [-18.360775, 65.945449], - [-18.360327, 65.945547], - [-18.359288, 65.945634], - [-18.358158, 65.945797], - [-18.357889, 65.945836], - [-18.35747, 65.946332], - [-18.353588, 65.947086], - [-18.353494, 65.946963], - [-18.354795, 65.946747], - [-18.354733, 65.946638], - [-18.357295, 65.946216], - [-18.357459, 65.945787], - [-18.357007, 65.945752], - [-18.356319, 65.945513], - [-18.35596, 65.9455], - [-18.355641, 65.945951], - [-18.355414, 65.94595], - [-18.355369, 65.945821], - [-18.355211, 65.945821], - [-18.355199, 65.94582], - [-18.35513, 65.945995], - [-18.355296, 65.946161], - [-18.355004, 65.94618], - [-18.354881, 65.945957], - [-18.355028, 65.945797], - [-18.354148, 65.945506], - [-18.354109, 65.945492], - [-18.354098, 65.94548], - [-18.353673, 65.945364], - [-18.353589, 65.945342], - [-18.352922, 65.945261], - [-18.351444, 65.945166], - [-18.348533, 65.945132], - [-18.3477, 65.945085], - [-18.346196, 65.944903], - [-18.34461, 65.944764], - [-18.343966, 65.944684], - [-18.342684, 65.944585], - [-18.342028, 65.944621], - [-18.341514, 65.944718], - [-18.339544, 65.944874], - [-18.337603, 65.944932], - [-18.335745, 65.944935], - [-18.334265, 65.944885], - [-18.331925, 65.944732], - [-18.33128, 65.944685], - [-18.33028, 65.944835], - [-18.329578, 65.944886], - [-18.328932, 65.944884], - [-18.327806, 65.944692], - [-18.326917, 65.944666], - [-18.326167, 65.944531], - [-18.325525, 65.944363], - [-18.324699, 65.944008], - [-18.32422, 65.943786], - [-18.323738, 65.943696], - [-18.323124, 65.943463], - [-18.322441, 65.942833], - [-18.322288, 65.942503], - [-18.322393, 65.941558], - [-18.322403, 65.941173], - [-18.322075, 65.940953], - [-18.321224, 65.940675], - [-18.320416, 65.939934], - [-18.320018, 65.939772], - [-18.319096, 65.939397], - [-18.317966, 65.938719], - [-18.317471, 65.938283], - [-18.316545, 65.937937], - [-18.316298, 65.937459], - [-18.316396, 65.937199], - [-18.315608, 65.937146], - [-18.315369, 65.936996], - [-18.315166, 65.936624], - [-18.314839, 65.936374], - [-18.314618, 65.936165], - [-18.314712, 65.935699], - [-18.314717, 65.935501], - [-18.31435, 65.935343], - [-18.313715, 65.935216], - [-18.31308, 65.935075], - [-18.312627, 65.934962], - [-18.312116, 65.9348], - [-18.312184, 65.934515], - [-18.312208, 65.934252], - [-18.312418, 65.933907], - [-18.312502, 65.933695], - [-18.312392, 65.933548], - [-18.311081, 65.932625], - [-18.310092, 65.932124], - [-18.309373, 65.931737], - [-18.30951, 65.931179], - [-18.309525, 65.930584], - [-18.309477, 65.930113], - [-18.309094, 65.92969], - [-18.30859, 65.929216], - [-18.308176, 65.928805], - [-18.307706, 65.92822], - [-18.307403, 65.927779], - [-18.306576, 65.92731], - [-18.306277, 65.927053], - [-18.306132, 65.926234], - [-18.305912, 65.926054], - [-18.305373, 65.925779], - [-18.30369, 65.925102], - [-18.303495, 65.925055], - [-18.302914, 65.924913], - [-18.302254, 65.924634], - [-18.302058, 65.924517], - [-18.302118, 65.924374], - [-18.301937, 65.924249], - [-18.3015, 65.923991], - [-18.301057, 65.923963], - [-18.300523, 65.923882], - [-18.300245, 65.923816], - [-18.300115, 65.923586], - [-18.299362, 65.923285], - [-18.298863, 65.92311], - [-18.298562, 65.922981], - [-18.298342, 65.922846], - [-18.29817, 65.922675], - [-18.298324, 65.922601], - [-18.298693, 65.922589], - [-18.29901, 65.922616], - [-18.299244, 65.922691], - [-18.299107, 65.922762], - [-18.29931, 65.922912], - [-18.29933, 65.923065], - [-18.300093, 65.923355], - [-18.300324, 65.923368], - [-18.300834, 65.923325], - [-18.301808, 65.92314], - [-18.302085, 65.922964], - [-18.302251, 65.922736], - [-18.302338, 65.922501], - [-18.30233, 65.922497], - [-18.301911, 65.922268], - [-18.302008, 65.922236], - [-18.302338, 65.922406], - [-18.302643, 65.92247], - [-18.303585, 65.922496], - [-18.303603, 65.922497], - [-18.304159, 65.922346], - [-18.304669, 65.922145], - [-18.304968, 65.921725], - [-18.304953, 65.921404], - [-18.304757, 65.92093], - [-18.304583, 65.920559], - [-18.304756, 65.920099], - [-18.305103, 65.919702], - [-18.304971, 65.919253], - [-18.304865, 65.919027], - [-18.304721, 65.918716], - [-18.304404, 65.918286], - [-18.303944, 65.917849], - [-18.303083, 65.917417], - [-18.302496, 65.917241], - [-18.302161, 65.917183], - [-18.302065, 65.916902], - [-18.302, 65.916647], - [-18.302022, 65.916392], - [-18.30167, 65.916103], - [-18.301117, 65.915855], - [-18.300923, 65.915602], - [-18.300718, 65.915212], - [-18.300468, 65.914966], - [-18.299721, 65.914211], - [-18.298495, 65.913669], - [-18.297638, 65.913394], - [-18.296896, 65.913018], - [-18.296434, 65.912666], - [-18.296111, 65.912465], - [-18.294738, 65.911742], - [-18.293296, 65.911242], - [-18.292026, 65.910841], - [-18.290578, 65.910559], - [-18.289112, 65.910321], - [-18.288451, 65.910206], - [-18.286795, 65.909921], - [-18.285698, 65.909667], - [-18.28502, 65.909579], - [-18.284258, 65.909651], - [-18.283361, 65.909689], - [-18.282692, 65.909572], - [-18.281771, 65.909296], - [-18.281549, 65.908942], - [-18.281432, 65.908569], - [-18.281018, 65.908184], - [-18.280539, 65.907858], - [-18.280096, 65.907689], - [-18.279717, 65.907501], - [-18.279326, 65.90746], - [-18.279034, 65.907322], - [-18.279217, 65.907071], - [-18.278855, 65.906853], - [-18.278405, 65.906629], - [-18.277929, 65.906489], - [-18.277604, 65.906393], - [-18.27721, 65.90645], - [-18.276948, 65.906618], - [-18.276876, 65.906664], - [-18.276731, 65.906614], - [-18.276654, 65.906588], - [-18.27638, 65.906374], - [-18.276057, 65.906219], - [-18.275916, 65.906087], - [-18.275697, 65.905916], - [-18.275373, 65.905784], - [-18.275065, 65.905635], - [-18.274597, 65.905225], - [-18.274301, 65.904919], - [-18.274211, 65.904709], - [-18.274171, 65.904438], - [-18.274313, 65.904226], - [-18.274623, 65.903995], - [-18.275243, 65.903874], - [-18.275647, 65.903703], - [-18.276047, 65.903433], - [-18.2765, 65.903242], - [-18.276826, 65.903025], - [-18.277081, 65.902777], - [-18.277256, 65.902546], - [-18.277611, 65.90243], - [-18.278024, 65.902233], - [-18.278095, 65.901998], - [-18.278078, 65.901723], - [-18.277878, 65.90145], - [-18.276493, 65.900357], - [-18.275565, 65.89982], - [-18.274887, 65.89959], - [-18.273838, 65.898875], - [-18.273096, 65.898118], - [-18.272167, 65.897581], - [-18.271731, 65.897101], - [-18.271205, 65.89664], - [-18.271084, 65.896143], - [-18.271618, 65.895498], - [-18.272087, 65.895425], - [-18.272724, 65.895379], - [-18.273548, 65.895334], - [-18.273926, 65.895097], - [-18.274199, 65.894806], - [-18.274708, 65.894635], - [-18.274951, 65.894473], - [-18.274984, 65.894235], - [-18.274993, 65.893931], - [-18.274686, 65.893507], - [-18.274358, 65.893182], - [-18.274546, 65.892889], - [-18.274819, 65.892743], - [-18.275017, 65.89212], - [-18.275036, 65.891725], - [-18.275162, 65.891384], - [-18.274916, 65.891032], - [-18.274645, 65.890784], - [-18.274512, 65.890536], - [-18.274242, 65.890251], - [-18.273817, 65.889688], - [-18.27336, 65.889402], - [-18.272976, 65.889039], - [-18.272427, 65.888742], - [-18.27204, 65.888503], - [-18.271287, 65.888044], - [-18.270969, 65.887796], - [-18.270742, 65.887595], - [-18.27054, 65.887376], - [-18.270337, 65.887138], - [-18.270184, 65.886805], - [-18.269841, 65.886652], - [-18.269636, 65.886594], - [-18.269248, 65.886278], - [-18.269371, 65.886023], - [-18.269124, 65.885718], - [-18.268482, 65.885449], - [-18.26756, 65.884837], - [-18.266684, 65.884322], - [-18.266223, 65.884119], - [-18.265697, 65.883841], - [-18.264626, 65.883134], - [-18.264562, 65.883112], - [-18.264039, 65.88294], - [-18.263713, 65.882617], - [-18.263465, 65.88235], - [-18.263263, 65.882131], - [-18.262872, 65.882005], - [-18.262389, 65.881851], - [-18.261923, 65.881722], - [-18.261333, 65.881457], - [-18.261042, 65.881076], - [-18.261052, 65.880734], - [-18.261127, 65.880519], - [-18.261279, 65.88008], - [-18.261455, 65.879616], - [-18.261491, 65.87917], - [-18.261971, 65.879093], - [-18.262382, 65.878833], - [-18.262506, 65.878577], - [-18.262857, 65.878446], - [-18.263141, 65.878276], - [-18.263313, 65.877907], - [-18.263114, 65.877584], - [-18.2628, 65.877212], - [-18.262645, 65.876945], - [-18.26251, 65.876783], - [-18.262401, 65.876536], - [-18.262525, 65.87628], - [-18.26253, 65.8761], - [-18.262353, 65.875805], - [-18.262059, 65.875519], - [-18.261602, 65.875298], - [-18.261053, 65.87503], - [-18.260793, 65.874959], - [-18.260787, 65.87492], - [-18.260281, 65.874447], - [-18.259713, 65.874027], - [-18.259579, 65.873827], - [-18.259521, 65.873437], - [-18.259412, 65.8732], - [-18.259469, 65.87283], - [-18.259684, 65.872593], - [-18.259969, 65.872367], - [-18.260115, 65.872121], - [-18.259938, 65.871816], - [-18.259807, 65.87154], - [-18.260214, 65.871096], - [-18.260571, 65.870785], - [-18.261091, 65.870436], - [-18.261143, 65.870228], - [-18.261036, 65.869933], - [-18.260812, 65.869666], - [-18.260678, 65.869457], - [-18.260684, 65.869257], - [-18.260783, 65.869049], - [-18.260722, 65.868745], - [-18.260614, 65.86845], - [-18.26046, 65.868155], - [-18.260007, 65.867802], - [-18.259712, 65.867572], - [-18.258701, 65.867235], - [-18.257256, 65.866688], - [-18.255232, 65.866099], - [-18.252761, 65.865755], - [-18.250889, 65.865527], - [-18.247533, 65.865321], - [-18.243595, 65.865197], - [-18.240951, 65.865213], - [-18.238196, 65.865276], - [-18.237865, 65.865283], - [-18.234221, 65.865584], - [-18.233208, 65.865698], - [-18.232462, 65.865878], - [-18.232246, 65.865991], - [-18.231505, 65.866378], - [-18.230821, 65.866765], - [-18.230683, 65.866843], - [-18.229976, 65.867234], - [-18.229586, 65.867535], - [-18.229468, 65.867738], - [-18.229373, 65.867902], - [-18.229109, 65.868097], - [-18.228552, 65.868122], - [-18.228512, 65.868118], - [-18.227997, 65.868063], - [-18.227808, 65.868166], - [-18.227722, 65.868218], - [-18.227478, 65.868364], - [-18.226642, 65.868398], - [-18.225742, 65.868251], - [-18.225494, 65.868112], - [-18.225194, 65.867944], - [-18.224901, 65.867687], - [-18.224395, 65.867551], - [-18.223539, 65.867452], - [-18.22303, 65.86744], - [-18.222792, 65.867373], - [-18.222437, 65.867261], - [-18.22215, 65.867094], - [-18.221682, 65.866237], - [-18.221314, 65.865813], - [-18.220918, 65.865536], - [-18.220078, 65.865136], - [-18.219637, 65.864859], - [-18.219356, 65.864527], - [-18.218673, 65.86411], - [-18.21799, 65.863684], - [-18.217181, 65.86301], - [-18.216475, 65.862602], - [-18.215169, 65.862017], - [-18.214437, 65.861747], - [-18.213305, 65.861355], - [-18.212412, 65.861204], - [-18.211452, 65.86107], - [-18.210535, 65.860964], - [-18.209667, 65.860758], - [-18.208803, 65.860405], - [-18.207871, 65.860087], - [-18.205798, 65.859654], - [-18.204643, 65.859272], - [-18.203957, 65.858984], - [-18.203539, 65.858715], - [-18.203325, 65.858383], - [-18.202906, 65.857426], - [-18.202556, 65.85704], - [-18.201838, 65.856713], - [-18.200957, 65.856402], - [-18.199554, 65.855984], - [-18.198389, 65.855693], - [-18.197026, 65.855284], - [-18.194331, 65.854278], - [-18.194323, 65.854276], - [-18.193452, 65.853899], - [-18.193044, 65.853619], - [-18.192833, 65.853339], - [-18.192642, 65.853113], - [-18.192138, 65.852692], - [-18.191575, 65.8523], - [-18.19089, 65.851929], - [-18.190673, 65.851776], - [-18.190678, 65.851591], - [-18.190848, 65.851475], - [-18.193736, 65.850537], - [-18.193276, 65.850317], - [-18.193805, 65.850135], - [-18.194038, 65.850263], - [-18.193606, 65.850413], - [-18.193879, 65.850537], - [-18.194776, 65.850226], - [-18.19613, 65.849714], - [-18.197072, 65.849264], - [-18.197216, 65.848995], - [-18.197033, 65.848783], - [-18.196597, 65.848881], - [-18.196329, 65.848802], - [-18.196931, 65.848584], - [-18.197685, 65.848595], - [-18.197586, 65.848215], - [-18.197509, 65.848127], - [-18.196952, 65.848147], - [-18.19626, 65.848259], - [-18.196184, 65.848441], - [-18.195936, 65.848431], - [-18.195926, 65.848431], - [-18.196075, 65.848145], - [-18.197177, 65.847997], - [-18.197179, 65.847995], - [-18.197343, 65.847863], - [-18.19738, 65.847688], - [-18.197344, 65.847349], - [-18.196536, 65.846332], - [-18.19584, 65.845761], - [-18.195614, 65.845443], - [-18.19519, 65.84465], - [-18.194888, 65.844178], - [-18.194612, 65.843824], - [-18.194335, 65.843497], - [-18.193924, 65.842888], - [-18.193905, 65.842861], - [-18.193696, 65.842489], - [-18.193532, 65.842274], - [-18.193356, 65.842044], - [-18.193192, 65.841639], - [-18.192945, 65.841296], - [-18.192784, 65.841051], - [-18.192454, 65.840268], - [-18.191942, 65.839043], - [-18.191744, 65.838259], - [-18.19128, 65.837629], - [-18.191075, 65.837059], - [-18.191114, 65.836234], - [-18.191344, 65.835586], - [-18.191514, 65.835152], - [-18.191796, 65.834516], - [-18.191857, 65.833797], - [-18.191729, 65.833293], - [-18.191676, 65.832885], - [-18.191378, 65.832401], - [-18.190958, 65.832012], - [-18.190458, 65.831264], - [-18.190418, 65.831169], - [-18.190251, 65.830775], - [-18.190432, 65.830417], - [-18.190466, 65.830364], - [-18.19077, 65.829988], - [-18.190798, 65.82987], - [-18.19079, 65.82987], - [-18.190557, 65.829868], - [-18.190026, 65.829875], - [-18.189665, 65.829873], - [-18.189187, 65.829723], - [-18.188929, 65.829514], - [-18.18867, 65.829305], - [-18.188747, 65.829167], - [-18.188823, 65.829049], - [-18.188682, 65.82893], - [-18.188588, 65.82883], - [-18.188808, 65.828752], - [-18.189046, 65.828833], - [-18.189185, 65.829021], - [-18.189107, 65.829208], - [-18.189197, 65.829397], - [-18.189551, 65.829656], - [-18.189838, 65.829736], - [-18.190248, 65.829738], - [-18.190659, 65.829681], - [-18.191023, 65.829514], - [-18.191078, 65.829015], - [-18.191281, 65.828357], - [-18.191268, 65.827933], - [-18.191099, 65.827487], - [-18.190905, 65.827326], - [-18.190658, 65.827486], - [-18.190355, 65.827832], - [-18.190322, 65.828111], - [-18.190126, 65.82817], - [-18.189836, 65.828118], - [-18.189973, 65.827916], - [-18.190091, 65.827741], - [-18.190533, 65.827194], - [-18.190893, 65.826542], - [-18.191371, 65.825917], - [-18.191517, 65.825419], - [-18.191294, 65.824608], - [-18.190952, 65.824231], - [-18.19085, 65.823742], - [-18.190953, 65.823429], - [-18.190994, 65.823303], - [-18.191083, 65.822987], - [-18.191144, 65.822698], - [-18.191169, 65.822238], - [-18.191175, 65.82213], - [-18.191213, 65.821958], - [-18.190975, 65.821583], - [-18.190438, 65.821088], - [-18.190329, 65.820801], - [-18.190377, 65.82036], - [-18.190575, 65.819781], - [-18.19097, 65.819061], - [-18.190962, 65.818461], - [-18.190865, 65.818224], - [-18.190576, 65.81744], - [-18.190378, 65.817096], - [-18.190204, 65.816794], - [-18.190067, 65.816359], - [-18.190001, 65.81615], - [-18.18979, 65.815376], - [-18.189585, 65.814828], - [-18.189596, 65.814253], - [-18.1896, 65.814166], - [-18.189639, 65.813795], - [-18.189598, 65.813401], - [-18.1894, 65.812789], - [-18.189308, 65.812413], - [-18.188981, 65.811988], - [-18.188815, 65.811858], - [-18.188875, 65.811617], - [-18.189199, 65.811102], - [-18.189097, 65.810773], - [-18.188854, 65.810454], - [-18.188295, 65.809702], - [-18.188085, 65.809366], - [-18.188281, 65.809135], - [-18.188542, 65.808814], - [-18.188455, 65.80845], - [-18.18844, 65.808381], - [-18.188317, 65.808145], - [-18.188156, 65.80787], - [-18.188126, 65.807575], - [-18.188028, 65.807355], - [-18.187763, 65.807037], - [-18.187644, 65.806661], - [-18.187655, 65.806334], - [-18.187873, 65.806029], - [-18.188345, 65.805565], - [-18.18858, 65.80517], - [-18.188602, 65.80488], - [-18.188778, 65.804677], - [-18.189072, 65.804465], - [-18.188935, 65.804265], - [-18.188589, 65.804044], - [-18.187535, 65.803486], - [-18.186466, 65.803121], - [-18.184985, 65.802615], - [-18.18298, 65.802007], - [-18.181109, 65.801498], - [-18.180568, 65.801351], - [-18.178483, 65.800534], - [-18.178009, 65.800348], - [-18.177264, 65.800104], - [-18.176835, 65.799963], - [-18.176276, 65.799779], - [-18.175448, 65.799383], - [-18.174422, 65.798762], - [-18.173622, 65.798179], - [-18.17259, 65.797763], - [-18.171652, 65.797245], - [-18.170329, 65.796669], - [-18.169703, 65.796339], - [-18.169737, 65.795985], - [-18.170109, 65.795961], - [-18.17047, 65.796038], - [-18.170748, 65.796172], - [-18.170865, 65.796313], - [-18.17116, 65.796555], - [-18.171975, 65.796884], - [-18.1725, 65.797155], - [-18.172652, 65.797241], - [-18.172962, 65.797249], - [-18.173101, 65.797194], - [-18.173156, 65.797088], - [-18.17331, 65.797096], - [-18.173429, 65.797167], - [-18.173509, 65.797351], - [-18.173569, 65.797627], - [-18.173546, 65.797803], - [-18.173713, 65.797967], - [-18.174036, 65.798103], - [-18.174461, 65.798267], - [-18.17478, 65.798509], - [-18.175169, 65.798723], - [-18.175491, 65.798859], - [-18.17563, 65.798825], - [-18.175635, 65.798662], - [-18.175725, 65.798564], - [-18.175979, 65.798602], - [-18.176094, 65.798768], - [-18.175987, 65.798967], - [-18.17618, 65.799241], - [-18.176993, 65.799718], - [-18.177492, 65.799903], - [-18.178393, 65.800118], - [-18.179014, 65.800267], - [-18.179574, 65.800435], - [-18.180068, 65.800696], - [-18.180527, 65.800937], - [-18.181425, 65.801274], - [-18.182266, 65.801477], - [-18.183627, 65.801849], - [-18.185766, 65.802531], - [-18.187003, 65.802968], - [-18.187959, 65.803387], - [-18.188534, 65.80373], - [-18.188893, 65.803873], - [-18.189355, 65.80395], - [-18.189701, 65.803869], - [-18.189953, 65.80353], - [-18.189949, 65.803017], - [-18.18984, 65.802652], - [-18.189875, 65.802589], - [-18.189968, 65.802421], - [-18.190058, 65.802372], - [-18.190563, 65.802101], - [-18.191125, 65.801565], - [-18.191557, 65.801302], - [-18.191626, 65.801021], - [-18.192207, 65.800519], - [-18.192788, 65.800033], - [-18.192921, 65.799644], - [-18.192737, 65.79925], - [-18.192734, 65.799179], - [-18.192319, 65.799043], - [-18.190806, 65.798869], - [-18.190172, 65.798494], - [-18.188415, 65.798238], - [-18.187262, 65.797949], - [-18.18709, 65.797775], - [-18.186928, 65.797611], - [-18.187243, 65.797189], - [-18.187135, 65.797092], - [-18.186908, 65.796887], - [-18.186533, 65.79679], - [-18.186213, 65.796708], - [-18.185788, 65.796643], - [-18.185239, 65.79656], - [-18.183476, 65.796498], - [-18.182625, 65.796193], - [-18.182617, 65.795756], - [-18.183111, 65.795236], - [-18.183321, 65.79491], - [-18.183103, 65.794238], - [-18.182788, 65.793685], - [-18.182775, 65.793531], - [-18.182738, 65.793334], - [-18.182705, 65.793154], - [-18.182571, 65.792639], - [-18.182358, 65.792171], - [-18.181098, 65.791791], - [-18.18063, 65.791472], - [-18.180616, 65.79122], - [-18.181124, 65.790961], - [-18.181487, 65.790254], - [-18.181797, 65.789789], - [-18.18151, 65.789508], - [-18.181044, 65.789169], - [-18.180048, 65.789052], - [-18.179611, 65.789063], - [-18.178774, 65.789083], - [-18.177713, 65.788872], - [-18.177446, 65.788684], - [-18.17624, 65.788752], - [-18.175036, 65.788727], - [-18.173881, 65.788637], - [-18.172842, 65.788417], - [-18.172831, 65.788421], - [-18.172476, 65.788322], - [-18.17227, 65.788123], - [-18.172052, 65.787677], - [-18.172, 65.787502], - [-18.171733, 65.78739], - [-18.171211, 65.787387], - [-18.170204, 65.787445], - [-18.169547, 65.787418], - [-18.169107, 65.787272], - [-18.168254, 65.786736], - [-18.167839, 65.786416], - [-18.167411, 65.785922], - [-18.16686, 65.785617], - [-18.166419, 65.785495], - [-18.165975, 65.785477], - [-18.165567, 65.785554], - [-18.165621, 65.78565], - [-18.165928, 65.785747], - [-18.166286, 65.786011], - [-18.166566, 65.786346], - [-18.167139, 65.787151], - [-18.167454, 65.787589], - [-18.168319, 65.788356], - [-18.169094, 65.788892], - [-18.169601, 65.789379], - [-18.169556, 65.789569], - [-18.169381, 65.789608], - [-18.168938, 65.78955], - [-18.168177, 65.789165], - [-18.166898, 65.788642], - [-18.166151, 65.788431], - [-18.165439, 65.788324], - [-18.165225, 65.788371], - [-18.165239, 65.788514], - [-18.165627, 65.789087], - [-18.166351, 65.790036], - [-18.166342, 65.790298], - [-18.166426, 65.790703], - [-18.166971, 65.79119], - [-18.16763, 65.791733], - [-18.167682, 65.791924], - [-18.167558, 65.792178], - [-18.167682, 65.79252], - [-18.168045, 65.79268], - [-18.168411, 65.792706], - [-18.168714, 65.792756], - [-18.168911, 65.792788], - [-18.16906, 65.792964], - [-18.168902, 65.793082], - [-18.168517, 65.793146], - [-18.167783, 65.793119], - [-18.166256, 65.792823], - [-18.16523, 65.792403], - [-18.16458, 65.792193], - [-18.164219, 65.791985], - [-18.164165, 65.79185], - [-18.164499, 65.791693], - [-18.164933, 65.791433], - [-18.165345, 65.79107], - [-18.165276, 65.790371], - [-18.16491, 65.789519], - [-18.164531, 65.788883], - [-18.164202, 65.788577], - [-18.162815, 65.787673], - [-18.161276, 65.78668], - [-18.158468, 65.785548], - [-18.154849, 65.784224], - [-18.15274, 65.783412], - [-18.150796, 65.782749], - [-18.150388, 65.782471], - [-18.150504, 65.782233], - [-18.150832, 65.78222], - [-18.151498, 65.782335], - [-18.151935, 65.782353], - [-18.152461, 65.782363], - [-18.153236, 65.78249], - [-18.154358, 65.782761], - [-18.155261, 65.783049], - [-18.155614, 65.783126], - [-18.156133, 65.783152], - [-18.158191, 65.782618], - [-18.159733, 65.78209], - [-18.160104, 65.781853], - [-18.160243, 65.781588], - [-18.160123, 65.781401], - [-18.159787, 65.781323], - [-18.159225, 65.781318], - [-18.159187, 65.781301], - [-18.159093, 65.781258], - [-18.159149, 65.781043], - [-18.159157, 65.780414], - [-18.159275, 65.779974], - [-18.159641, 65.779361], - [-18.159656, 65.779038], - [-18.159451, 65.778788], - [-18.159021, 65.778457], - [-18.158364, 65.778037], - [-18.157336, 65.777447], - [-18.156818, 65.777303], - [-18.156358, 65.777297], - [-18.156073, 65.777376], - [-18.155823, 65.777445], - [-18.1555, 65.777359], - [-18.15571, 65.777176], - [-18.156042, 65.777016], - [-18.156502, 65.776448], - [-18.156399, 65.776041], - [-18.155563, 65.7754], - [-18.15533, 65.775063], - [-18.15565, 65.774709], - [-18.156077, 65.774311], - [-18.156949, 65.772955], - [-18.156942, 65.772425], - [-18.156644, 65.770999], - [-18.156942, 65.770904], - [-18.157643, 65.770308], - [-18.15766, 65.769788], - [-18.157671, 65.769468], - [-18.157056, 65.768914], - [-18.155001, 65.767623], - [-18.15299, 65.766774], - [-18.151013, 65.766143], - [-18.150426, 65.76584], - [-18.15049, 65.765556], - [-18.15164, 65.764826], - [-18.152537, 65.764252], - [-18.153484, 65.763546], - [-18.154154, 65.762828], - [-18.154399, 65.762392], - [-18.154948, 65.761855], - [-18.155396, 65.761553], - [-18.155516, 65.761411], - [-18.156073, 65.76132], - [-18.157218, 65.760937], - [-18.158036, 65.760628], - [-18.158782, 65.760414], - [-18.159112, 65.760197], - [-18.15921, 65.760036], - [-18.159674, 65.759953], - [-18.16005, 65.759766], - [-18.160426, 65.759549], - [-18.160594, 65.75936], - [-18.160922, 65.75922], - [-18.161344, 65.759013], - [-18.161535, 65.758825], - [-18.161428, 65.758568], - [-18.161339, 65.758453], - [-18.161298, 65.758292], - [-18.161028, 65.758081], - [-18.160784, 65.757776], - [-18.160353, 65.757546], - [-18.159509, 65.7572], - [-18.15892, 65.756845], - [-18.158171, 65.756452], - [-18.158091, 65.756062], - [-18.157662, 65.755775], - [-18.157111, 65.755668], - [-18.15672, 65.755637], - [-18.15615, 65.755441], - [-18.156074, 65.755183], - [-18.156322, 65.754831], - [-18.156926, 65.754386], - [-18.158242, 65.753756], - [-18.158657, 65.753463], - [-18.158805, 65.753285], - [-18.158664, 65.752639], - [-18.158376, 65.752276], - [-18.158105, 65.752066], - [-18.158111, 65.751905], - [-18.157748, 65.751694], - [-18.157568, 65.75156], - [-18.157414, 65.751303], - [-18.157265, 65.750923], - [-18.157154, 65.750789], - [-18.157695, 65.750479], - [-18.157821, 65.750157], - [-18.157439, 65.749832], - [-18.157102, 65.749536], - [-18.156829, 65.74943], - [-18.156719, 65.749249], - [-18.156195, 65.749056], - [-18.155961, 65.748979], - [-18.155783, 65.748921], - [-18.155624, 65.748854], - [-18.155678, 65.748827], - [-18.155906, 65.748713], - [-18.156347, 65.74863], - [-18.156723, 65.748414], - [-18.156937, 65.748225], - [-18.157111, 65.747837], - [-18.157279, 65.747638], - [-18.157994, 65.746959], - [-18.158099, 65.746551], - [-18.15783, 65.746312], - [-18.15733, 65.746072], - [-18.157083, 65.745862], - [-18.15679, 65.745633], - [-18.156175, 65.745382], - [-18.15542, 65.745198], - [-18.155219, 65.744979], - [-18.154715, 65.744852], - [-18.154485, 65.744818], - [-18.15398, 65.744744], - [-18.153632, 65.744799], - [-18.15365, 65.74497], - [-18.153485, 65.745074], - [-18.153023, 65.74509], - [-18.152795, 65.744984], - [-18.152731, 65.744801], - [-18.152669, 65.744623], - [-18.152655, 65.744319], - [-18.152929, 65.743732], - [-18.153499, 65.743213], - [-18.15376, 65.743006], - [-18.154456, 65.742886], - [-18.154794, 65.742432], - [-18.155174, 65.742093], - [-18.155394, 65.741733], - [-18.155357, 65.741439], - [-18.155574, 65.741155], - [-18.15563, 65.740861], - [-18.156049, 65.74075], - [-18.155594, 65.740529], - [-18.155581, 65.740225], - [-18.155594, 65.739836], - [-18.155599, 65.739665], - [-18.15563, 65.739437], - [-18.155638, 65.7392], - [-18.155644, 65.73901], - [-18.155882, 65.738765], - [-18.156233, 65.738634], - [-18.156672, 65.738608], - [-18.157236, 65.738307], - [-18.157826, 65.737883], - [-18.157785, 65.737731], - [-18.157674, 65.737588], - [-18.157957, 65.737419], - [-18.158308, 65.737269], - [-18.159256, 65.737189], - [-18.159746, 65.73702], - [-18.160596, 65.736437], - [-18.161098, 65.735898], - [-18.160959, 65.735176], - [-18.160946, 65.734863], - [-18.160726, 65.734529], - [-18.160388, 65.734309], - [-18.160349, 65.734062], - [-18.160106, 65.733729], - [-18.159928, 65.733547], - [-18.160116, 65.733434], - [-18.16012, 65.733301], - [-18.160032, 65.733178], - [-18.160386, 65.732914], - [-18.160692, 65.732726], - [-18.160866, 65.732356], - [-18.160872, 65.732166], - [-18.160897, 65.732091], - [-18.160632, 65.731738], - [-18.160141, 65.731223], - [-18.15944, 65.730782], - [-18.158703, 65.730582], - [-18.15867, 65.730332], - [-18.158562, 65.730113], - [-18.158197, 65.729978], - [-18.157509, 65.72986], - [-18.157475, 65.729854], - [-18.157097, 65.729782], - [-18.15666, 65.729613], - [-18.156437, 65.729503], - [-18.156209, 65.729407], - [-18.156213, 65.729274], - [-18.15613, 65.728998], - [-18.155444, 65.728654], - [-18.15537, 65.728402], - [-18.155147, 65.728034], - [-18.15468, 65.727686], - [-18.153964, 65.727153], - [-18.15339, 65.726734], - [-18.153121, 65.726495], - [-18.15255, 65.726321], - [-18.151967, 65.726508], - [-18.151729, 65.726725], - [-18.15142, 65.727027], - [-18.151546, 65.727407], - [-18.151717, 65.727816], - [-18.151705, 65.728177], - [-18.151254, 65.728573], - [-18.1512, 65.72881], - [-18.150545, 65.729101], - [-18.149997, 65.728908], - [-18.150001, 65.728791], - [-18.150006, 65.728642], - [-18.149609, 65.728089], - [-18.14918, 65.727812], - [-18.148436, 65.727671], - [-18.147902, 65.727377], - [-18.148014, 65.727085], - [-18.147689, 65.72683], - [-18.147103, 65.72671], - [-18.146569, 65.726637], - [-18.145903, 65.726546], - [-18.144446, 65.726421], - [-18.143897, 65.726434], - [-18.143572, 65.72648], - [-18.143395, 65.726394], - [-18.143375, 65.726225], - [-18.1432, 65.726087], - [-18.143008, 65.726046], - [-18.142501, 65.725936], - [-18.142205, 65.725792], - [-18.142251, 65.725671], - [-18.142445, 65.725541], - [-18.142515, 65.725351], - [-18.142312, 65.725106], - [-18.141831, 65.724938], - [-18.141285, 65.724857], - [-18.140167, 65.724798], - [-18.139937, 65.724727], - [-18.13994, 65.724623], - [-18.140135, 65.72442], - [-18.140282, 65.724164], - [-18.140173, 65.723963], - [-18.139856, 65.723801], - [-18.139547, 65.723372], - [-18.139273, 65.723285], - [-18.138892, 65.722951], - [-18.138369, 65.72273], - [-18.138424, 65.722562], - [-18.138953, 65.722221], - [-18.139093, 65.722131], - [-18.139567, 65.721855], - [-18.139616, 65.721656], - [-18.139431, 65.721489], - [-18.1391, 65.721288], - [-18.138729, 65.721163], - [-18.138526, 65.7211], - [-18.138285, 65.721013], - [-18.137053, 65.720682], - [-18.13642, 65.720533], - [-18.135896, 65.720417], - [-18.135408, 65.720226], - [-18.134886, 65.719986], - [-18.134329, 65.719913], - [-18.133757, 65.719936], - [-18.13306, 65.719932], - [-18.132327, 65.719876], - [-18.131712, 65.719794], - [-18.131145, 65.719597], - [-18.130526, 65.719258], - [-18.130367, 65.719132], - [-18.13048, 65.718925], - [-18.129961, 65.718506], - [-18.129593, 65.718163], - [-18.129592, 65.71777], - [-18.129369, 65.717392], - [-18.129367, 65.717212], - [-18.129334, 65.717153], - [-18.129221, 65.716992], - [-18.128909, 65.716677], - [-18.128638, 65.716505], - [-18.128367, 65.716323], - [-18.127709, 65.716015], - [-18.127287, 65.715935], - [-18.127038, 65.715881], - [-18.126845, 65.715669], - [-18.126856, 65.715318], - [-18.126548, 65.714898], - [-18.126441, 65.714651], - [-18.125968, 65.714325], - [-18.124875, 65.713901], - [-18.124375, 65.713699], - [-18.124149, 65.713556], - [-18.12439, 65.713234], - [-18.124748, 65.712895], - [-18.124995, 65.712579], - [-18.125026, 65.71229], - [-18.124654, 65.711982], - [-18.123549, 65.711521], - [-18.123113, 65.711471], - [-18.122245, 65.711219], - [-18.121932, 65.710932], - [-18.122002, 65.710673], - [-18.122388, 65.710544], - [-18.122607, 65.710362], - [-18.122221, 65.70988], - [-18.121377, 65.709619], - [-18.12106, 65.709456], - [-18.121646, 65.709156], - [-18.121562, 65.708927], - [-18.120975, 65.708554], - [-18.120431, 65.708285], - [-18.120094, 65.708027], - [-18.120035, 65.707723], - [-18.11986, 65.707446], - [-18.119223, 65.707224], - [-18.118667, 65.707037], - [-18.118268, 65.706815], - [-18.117984, 65.70679], - [-18.117652, 65.70676], - [-18.117505, 65.706549], - [-18.117568, 65.70636], - [-18.117663, 65.706026], - [-18.114774, 65.705228], - [-18.113916, 65.704963], - [-18.113836, 65.704941], - [-18.113724, 65.704955], - [-18.113605, 65.704983], - [-18.113504, 65.705003], - [-18.113429, 65.705016], - [-18.113344, 65.705003], - [-18.11324, 65.704967], - [-18.113229, 65.704934], - [-18.113293, 65.704892], - [-18.113392, 65.704844], - [-18.113455, 65.704813], - [-18.113514, 65.704792], - [-18.113517, 65.704783], - [-18.113523, 65.704771], - [-18.112825, 65.704418], - [-18.112732, 65.704343], - [-18.112621, 65.704286], - [-18.11247, 65.704259], - [-18.112657, 65.70356], - [-18.11294, 65.703478], - [-18.112991, 65.703498], - [-18.113045, 65.703462], - [-18.113092, 65.703408], - [-18.113129, 65.703346], - [-18.11312, 65.703207], - [-18.113089, 65.702956], - [-18.113068, 65.702858], - [-18.113024, 65.702804], - [-18.112907, 65.70276], - [-18.112776, 65.702731], - [-18.112647, 65.702708], - [-18.112492, 65.70265], - [-18.112255, 65.702557], - [-18.11302, 65.701905], - [-18.11343, 65.701976], - [-18.113606, 65.701872], - [-18.113783, 65.701736], - [-18.114004, 65.701551], - [-18.114106, 65.701413], - [-18.11434, 65.701183], - [-18.114806, 65.70074], - [-18.11511, 65.700733], - [-18.115244, 65.700717], - [-18.115332, 65.700681], - [-18.115407, 65.700632], - [-18.115432, 65.700592], - [-18.115428, 65.700556], - [-18.115342, 65.7005], - [-18.115235, 65.700432], - [-18.115109, 65.700367], - [-18.11506, 65.700294], - [-18.115004, 65.700206], - [-18.114812, 65.700068], - [-18.114449, 65.699888], - [-18.11421, 65.69974], - [-18.113869, 65.699576], - [-18.113553, 65.699469], - [-18.113296, 65.699424], - [-18.113117, 65.699374], - [-18.112782, 65.699236], - [-18.112546, 65.699126], - [-18.112323, 65.699078], - [-18.112132, 65.699056], - [-18.111914, 65.699029], - [-18.111613, 65.698988], - [-18.11143, 65.698929], - [-18.111228, 65.698858], - [-18.111091, 65.698791], - [-18.110955, 65.69874], - [-18.110792, 65.698728], - [-18.110587, 65.698681], - [-18.110417, 65.698639], - [-18.11022, 65.698618], - [-18.11004, 65.698613], - [-18.109696, 65.698566], - [-18.109396, 65.698531], - [-18.109046, 65.6985], - [-18.10884, 65.698496], - [-18.108686, 65.698485], - [-18.108656, 65.698445], - [-18.108558, 65.69838], - [-18.108461, 65.698271], - [-18.108465, 65.69822], - [-18.108562, 65.698191], - [-18.108725, 65.698175], - [-18.108866, 65.698198], - [-18.108887, 65.69814], - [-18.108875, 65.698056], - [-18.108772, 65.697961], - [-18.108573, 65.697898], - [-18.108402, 65.697851], - [-18.108295, 65.697828], - [-18.108222, 65.69778], - [-18.108172, 65.697706], - [-18.108189, 65.697632], - [-18.108121, 65.697569], - [-18.108012, 65.697507], - [-18.107827, 65.697464], - [-18.107109, 65.697435], - [-18.106014, 65.697524], - [-18.105636, 65.697426], - [-18.105353, 65.696994], - [-18.105027, 65.696478], - [-18.105158, 65.696439], - [-18.105517, 65.696376], - [-18.10695, 65.696208], - [-18.106977, 65.696039], - [-18.107009, 65.695804], - [-18.106963, 65.695728], - [-18.106874, 65.695684], - [-18.106634, 65.695655], - [-18.106146, 65.695611], - [-18.10608, 65.695605], - [-18.105265, 65.695528], - [-18.105221, 65.695524], - [-18.104505, 65.695448], - [-18.103694, 65.695363], - [-18.102799, 65.695268], - [-18.102626, 65.69527], - [-18.102249, 65.695265], - [-18.102011, 65.695255], - [-18.101796, 65.69524], - [-18.101539, 65.695233], - [-18.101398, 65.695236], - [-18.101287, 65.695235], - [-18.101237, 65.695265], - [-18.101209, 65.695345], - [-18.101147, 65.69561], - [-18.101109, 65.695748], - [-18.10103, 65.695805], - [-18.100938, 65.695867], - [-18.100778, 65.695885], - [-18.1006, 65.695881], - [-18.100365, 65.695848], - [-18.100133, 65.695814], - [-18.099645, 65.695679], - [-18.099529, 65.695613], - [-18.099487, 65.695557], - [-18.099486, 65.695474], - [-18.09955, 65.695376], - [-18.099595, 65.695298], - [-18.099531, 65.695209], - [-18.099444, 65.695144], - [-18.099191, 65.695119], - [-18.098947, 65.695084], - [-18.098689, 65.695062], - [-18.098517, 65.695047], - [-18.098413, 65.695045], - [-18.098145, 65.69504], - [-18.098013, 65.695121], - [-18.097832, 65.695207], - [-18.097645, 65.695261], - [-18.097298, 65.695295], - [-18.09713, 65.695323], - [-18.096976, 65.695331], - [-18.096833, 65.695304], - [-18.096714, 65.69534], - [-18.09641, 65.695534], - [-18.096136, 65.695667], - [-18.096004, 65.695708], - [-18.095832, 65.695721], - [-18.095635, 65.695723], - [-18.094783, 65.695671], - [-18.09366, 65.695533], - [-18.093372, 65.695478], - [-18.09324, 65.695452], - [-18.0931, 65.695448], - [-18.092972, 65.695448], - [-18.092668, 65.695388], - [-18.09258, 65.695364], - [-18.092546, 65.695339], - [-18.092581, 65.695315], - [-18.092662, 65.695309], - [-18.092819, 65.695326], - [-18.093025, 65.695359], - [-18.095631, 65.694782], - [-18.095728, 65.694718], - [-18.095781, 65.694639], - [-18.09574, 65.694557], - [-18.095488, 65.694415], - [-18.095447, 65.694272], - [-18.095301, 65.694162], - [-18.095004, 65.694089], - [-18.094762, 65.694087], - [-18.091964, 65.694716], - [-18.091584, 65.694401], - [-18.091172, 65.694318], - [-18.090515, 65.694319], - [-18.089878, 65.694429], - [-18.089206, 65.694553], - [-18.088709, 65.694583], - [-18.088252, 65.69449], - [-18.08783, 65.694374], - [-18.087505, 65.694424], - [-18.087402, 65.694405], - [-18.087347, 65.694347], - [-18.087406, 65.694295], - [-18.092605, 65.69317], - [-18.09239, 65.692975], - [-18.092621, 65.692913], - [-18.09267, 65.692894], - [-18.092684, 65.692863], - [-18.092633, 65.69277], - [-18.092368, 65.692574], - [-18.092215, 65.69254], - [-18.09185, 65.692777], - [-18.091791, 65.692794], - [-18.091746, 65.692795], - [-18.091693, 65.692787], - [-18.091659, 65.692768], - [-18.09161, 65.692494], - [-18.091602, 65.692347], - [-18.091644, 65.692297], - [-18.09165, 65.692247], - [-18.091606, 65.692182], - [-18.091483, 65.692039], - [-18.091421, 65.692011], - [-18.091344, 65.691999], - [-18.091232, 65.691996], - [-18.09112, 65.691993], - [-18.091034, 65.691998], - [-18.090891, 65.692028], - [-18.090479, 65.692312], - [-18.087333, 65.691593], - [-18.08532, 65.692264], - [-18.087679, 65.69351], - [-18.087676, 65.693586], - [-18.087496, 65.693632], - [-18.087272, 65.693519], - [-18.08686, 65.693467], - [-18.085814, 65.693417], - [-18.083979, 65.692459], - [-18.083687, 65.69234], - [-18.083303, 65.692426], - [-18.082421, 65.691945], - [-18.084449, 65.691266], - [-18.081822, 65.690373], - [-18.081446, 65.690294], - [-18.081184, 65.690237], - [-18.080829, 65.690221], - [-18.080571, 65.690192], - [-18.080296, 65.690144], - [-18.079441, 65.689891], - [-18.078329, 65.68951], - [-18.078316, 65.689454], - [-18.078254, 65.689382], - [-18.078108, 65.689305], - [-18.077878, 65.689208], - [-18.077675, 65.689144], - [-18.077071, 65.688916], - [-18.076938, 65.688848], - [-18.076355, 65.68845], - [-18.075799, 65.688493], - [-18.074876, 65.686966], - [-18.075031, 65.686951], - [-18.074841, 65.686659], - [-18.074834, 65.686648], - [-18.07471, 65.686439], - [-18.074662, 65.686358], - [-18.074498, 65.686068], - [-18.074459, 65.68602], - [-18.074357, 65.685964], - [-18.074294, 65.685922], - [-18.074217, 65.685885], - [-18.074091, 65.685852], - [-18.073985, 65.685808], - [-18.073956, 65.685756], - [-18.07394, 65.685706], - [-18.073977, 65.685645], - [-18.074027, 65.685608], - [-18.074104, 65.685545], - [-18.074147, 65.685507], - [-18.074093, 65.685403], - [-18.07411, 65.685348], - [-18.074153, 65.685283], - [-18.074199, 65.685238], - [-18.07426, 65.685188], - [-18.074254, 65.685129], - [-18.074259, 65.685099], - [-18.074289, 65.685083], - [-18.075548, 65.685027], - [-18.078634, 65.684866], - [-18.078781, 65.684981], - [-18.079275, 65.685012], - [-18.0795, 65.685024], - [-18.07992, 65.685047], - [-18.080659, 65.685037], - [-18.080827, 65.68503], - [-18.080932, 65.685025], - [-18.081516, 65.684998], - [-18.083125, 65.684824], - [-18.084227, 65.684552], - [-18.084198, 65.684405], - [-18.084755, 65.684304], - [-18.084937, 65.684368], - [-18.085349, 65.684356], - [-18.085721, 65.684282], - [-18.085618, 65.684174], - [-18.085039, 65.684269], - [-18.084532, 65.683846], - [-18.0849, 65.683702], - [-18.084822, 65.683599], - [-18.085835, 65.682702], - [-18.086002, 65.682727], - [-18.085585, 65.68313], - [-18.086231, 65.683265], - [-18.086641, 65.683326], - [-18.086707, 65.683215], - [-18.086878, 65.683115], - [-18.087037, 65.683066], - [-18.087288, 65.68303], - [-18.087543, 65.68303], - [-18.087778, 65.683063], - [-18.086995, 65.682408], - [-18.086859, 65.682227], - [-18.087006, 65.682093], - [-18.087347, 65.681946], - [-18.087165, 65.681624], - [-18.086923, 65.681581], - [-18.086665, 65.681799], - [-18.086577, 65.681873], - [-18.086159, 65.682088], - [-18.086067, 65.68207], - [-18.086112, 65.681974], - [-18.086578, 65.681554], - [-18.0871, 65.681084], - [-18.086922, 65.680411], - [-18.086922, 65.679927], - [-18.087259, 65.678953], - [-18.087658, 65.678105], - [-18.08778, 65.677709], - [-18.087633, 65.677688], - [-18.087613, 65.677669], - [-18.087614, 65.677629], - [-18.087646, 65.677604], - [-18.087701, 65.677584], - [-18.087794, 65.677583], - [-18.087894, 65.676861], - [-18.087641, 65.676086], - [-18.087242, 65.675416], - [-18.085197, 65.673556], - [-18.084981, 65.673359], - [-18.084747, 65.673295], - [-18.084344, 65.673306], - [-18.08412, 65.673144], - [-18.083769, 65.67298], - [-18.08423, 65.672882], - [-18.084369, 65.672741], - [-18.084154, 65.672508], - [-18.083762, 65.672173], - [-18.082471, 65.670742], - [-18.082085, 65.670538], - [-18.081299, 65.670545], - [-18.079652, 65.670601], - [-18.076799, 65.67057], - [-18.074005, 65.670501], - [-18.072273, 65.670348], - [-18.067526, 65.669859], - [-18.065798, 65.669597], - [-18.063865, 65.669304], - [-18.061686, 65.668973], - [-18.059969, 65.668816], - [-18.059437, 65.668898], - [-18.059111, 65.669005], - [-18.05875, 65.668972], - [-18.058489, 65.668731], - [-18.057106, 65.668746], - [-18.055842, 65.668767], - [-18.055853, 65.66891], - [-18.055545, 65.669053], - [-18.055292, 65.669084], - [-18.055041, 65.66903], - [-18.054822, 65.668984], - [-18.054683, 65.668898], - [-18.054448, 65.668858], - [-18.052814, 65.669075], - [-18.051114, 65.669384], - [-18.049282, 65.669848], - [-18.04802, 65.67027], - [-18.046976, 65.670758], - [-18.046298, 65.67117], - [-18.045761, 65.671497], - [-18.045402, 65.671946], - [-18.045389, 65.672297], - [-18.045384, 65.67235], - [-18.045265, 65.672568], - [-18.045264, 65.672753], - [-18.04526, 65.673067], - [-18.045318, 65.673372], - [-18.045662, 65.674276], - [-18.046192, 65.675092], - [-18.046492, 65.675555], - [-18.046647, 65.675866], - [-18.047146, 65.676267], - [-18.047101, 65.676452], - [-18.047311, 65.676597], - [-18.047474, 65.676964], - [-18.047526, 65.677115], - [-18.047553, 65.677423], - [-18.047906, 65.677734], - [-18.048055, 65.677861], - [-18.048472, 65.678006], - [-18.048487, 65.678101], - [-18.04869, 65.67834], - [-18.049006, 65.67847], - [-18.049212, 65.678535], - [-18.049259, 65.678616], - [-18.049164, 65.678793], - [-18.049086, 65.678939], - [-18.049343, 65.679087], - [-18.049605, 65.679276], - [-18.049756, 65.679419], - [-18.050057, 65.679867], - [-18.050164, 65.680401], - [-18.050413, 65.680687], - [-18.050748, 65.681079], - [-18.051178, 65.681434], - [-18.051573, 65.682085], - [-18.051688, 65.682402], - [-18.052029, 65.682968], - [-18.052117, 65.683329], - [-18.052088, 65.683617], - [-18.052429, 65.684332], - [-18.052449, 65.684669], - [-18.052919, 65.684975], - [-18.052912, 65.685171], - [-18.053039, 65.685358], - [-18.053193, 65.685476], - [-18.053173, 65.685662], - [-18.05337, 65.686002], - [-18.053902, 65.686364], - [-18.054303, 65.686502], - [-18.05458, 65.686911], - [-18.054724, 65.687302], - [-18.054806, 65.687524], - [-18.055043, 65.68796], - [-18.055594, 65.688478], - [-18.056039, 65.688977], - [-18.056385, 65.689222], - [-18.056502, 65.689505], - [-18.056846, 65.689802], - [-18.056965, 65.69002], - [-18.057101, 65.690269], - [-18.05737, 65.690558], - [-18.057673, 65.690787], - [-18.058019, 65.690983], - [-18.058505, 65.6912], - [-18.059209, 65.691427], - [-18.059375, 65.691577], - [-18.059551, 65.691735], - [-18.059584, 65.691931], - [-18.059608, 65.69207], - [-18.059572, 65.692286], - [-18.059335, 65.692504], - [-18.059372, 65.692899], - [-18.059386, 65.693056], - [-18.059559, 65.693344], - [-18.059563, 65.693569], - [-18.059727, 65.693949], - [-18.05998, 65.694319], - [-18.059962, 65.694826], - [-18.059992, 65.695218], - [-18.060524, 65.69577], - [-18.060771, 65.696122], - [-18.060883, 65.696281], - [-18.061018, 65.696826], - [-18.061078, 65.697066], - [-18.06125, 65.697259], - [-18.061287, 65.697476], - [-18.061446, 65.697647], - [-18.061645, 65.697861], - [-18.062135, 65.697878], - [-18.062123, 65.697936], - [-18.062113, 65.697986], - [-18.062253, 65.698162], - [-18.062658, 65.698344], - [-18.06304, 65.698516], - [-18.063434, 65.698694], - [-18.063725, 65.698825], - [-18.063907, 65.698984], - [-18.064023, 65.699216], - [-18.064112, 65.699393], - [-18.064087, 65.69953], - [-18.064266, 65.699752], - [-18.06464, 65.700093], - [-18.064719, 65.700319], - [-18.064901, 65.70048], - [-18.064965, 65.700536], - [-18.06498, 65.700711], - [-18.065031, 65.701391], - [-18.065138, 65.701816], - [-18.065233, 65.702192], - [-18.0653, 65.702458], - [-18.065592, 65.702804], - [-18.065678, 65.703284], - [-18.065977, 65.703618], - [-18.066231, 65.703901], - [-18.066641, 65.704077], - [-18.066795, 65.704282], - [-18.066925, 65.704456], - [-18.06729, 65.704599], - [-18.067719, 65.704848], - [-18.068071, 65.704993], - [-18.068177, 65.705036], - [-18.068484, 65.705052], - [-18.068641, 65.705172], - [-18.068911, 65.705377], - [-18.069258, 65.705641], - [-18.069452, 65.706012], - [-18.069785, 65.706365], - [-18.070323, 65.706796], - [-18.070622, 65.70713], - [-18.07088, 65.707417], - [-18.071027, 65.707721], - [-18.071174, 65.708023], - [-18.071231, 65.708462], - [-18.071392, 65.708795], - [-18.071426, 65.709152], - [-18.071467, 65.709594], - [-18.071585, 65.70986], - [-18.07184, 65.710151], - [-18.072015, 65.710351], - [-18.072357, 65.710501], - [-18.072772, 65.710682], - [-18.072785, 65.710802], - [-18.072916, 65.711007], - [-18.073356, 65.711266], - [-18.073455, 65.711324], - [-18.073651, 65.711649], - [-18.073836, 65.711954], - [-18.074017, 65.712255], - [-18.074546, 65.712811], - [-18.074961, 65.713132], - [-18.075052, 65.713493], - [-18.075095, 65.713664], - [-18.075263, 65.713722], - [-18.075394, 65.714091], - [-18.075779, 65.714423], - [-18.076064, 65.714667], - [-18.076341, 65.714905], - [-18.07649, 65.715191], - [-18.076667, 65.715532], - [-18.076955, 65.715726], - [-18.077259, 65.71593], - [-18.077313, 65.716036], - [-18.077455, 65.716316], - [-18.077754, 65.716618], - [-18.077904, 65.716927], - [-18.078205, 65.717546], - [-18.078576, 65.718269], - [-18.078929, 65.718889], - [-18.079361, 65.719243], - [-18.079615, 65.719765], - [-18.079666, 65.720257], - [-18.07999, 65.720751], - [-18.080747, 65.720925], - [-18.080907, 65.721205], - [-18.081258, 65.721602], - [-18.081554, 65.721913], - [-18.081131, 65.722276], - [-18.081214, 65.722852], - [-18.081203, 65.723147], - [-18.081191, 65.723499], - [-18.081283, 65.72378], - [-18.081445, 65.72402], - [-18.081472, 65.724231], - [-18.080785, 65.72434], - [-18.08077, 65.724775], - [-18.080862, 65.725057], - [-18.080983, 65.725507], - [-18.081273, 65.726015], - [-18.081118, 65.726534], - [-18.081645, 65.727086], - [-18.082312, 65.727539], - [-18.082666, 65.728132], - [-18.082652, 65.728553], - [-18.083108, 65.729161], - [-18.083297, 65.729611], - [-18.083418, 65.730062], - [-18.083745, 65.730471], - [-18.083733, 65.730809], - [-18.083822, 65.731189], - [-18.083673, 65.731553], - [-18.08359, 65.731961], - [-18.083411, 65.732212], - [-18.083471, 65.732452], - [-18.083154, 65.732717], - [-18.082766, 65.733052], - [-18.082992, 65.733433], - [-18.083358, 65.733716], - [-18.083483, 65.734026], - [-18.083575, 65.734336], - [-18.083559, 65.7348], - [-18.083501, 65.735474], - [-18.083416, 65.735937], - [-18.083453, 65.736823], - [-18.08337, 65.73723], - [-18.083282, 65.737806], - [-18.08315, 65.738648], - [-18.083198, 65.739225], - [-18.083332, 65.739578], - [-18.083469, 65.739963], - [-18.083477, 65.740485], - [-18.083522, 65.740881], - [-18.083763, 65.741076], - [-18.084227, 65.74145], - [-18.084818, 65.741843], - [-18.085054, 65.741984], - [-18.085675, 65.741929], - [-18.086206, 65.741905], - [-18.086534, 65.741933], - [-18.08686, 65.741977], - [-18.086898, 65.741945], - [-18.087355, 65.742005], - [-18.0871, 65.742153], - [-18.08697, 65.742129], - [-18.086485, 65.742363], - [-18.086421, 65.742395], - [-18.086771, 65.742518], - [-18.087092, 65.742617], - [-18.087143, 65.742635], - [-18.087425, 65.742734], - [-18.087784, 65.742842], - [-18.088088, 65.742902], - [-18.088519, 65.743025], - [-18.08881, 65.743099], - [-18.089485, 65.743243], - [-18.090196, 65.743422], - [-18.090929, 65.743683], - [-18.091401, 65.743892], - [-18.091747, 65.744157], - [-18.09185, 65.744304], - [-18.091817, 65.744519], - [-18.091718, 65.744686], - [-18.091484, 65.744912], - [-18.091231, 65.745071], - [-18.090654, 65.745356], - [-18.090021, 65.745768], - [-18.089593, 65.746077], - [-18.08924, 65.746439], - [-18.089141, 65.746619], - [-18.088937, 65.747141], - [-18.088816, 65.747355], - [-18.088714, 65.747886], - [-18.088686, 65.748191], - [-18.088948, 65.74839], - [-18.089811, 65.748692], - [-18.090317, 65.748986], - [-18.090671, 65.749122], - [-18.091106, 65.749062], - [-18.091422, 65.749085], - [-18.091754, 65.749145], - [-18.091924, 65.749273], - [-18.091951, 65.749462], - [-18.091986, 65.749644], - [-18.091996, 65.749827], - [-18.092332, 65.750238], - [-18.092416, 65.750309], - [-18.092713, 65.75056], - [-18.093054, 65.750808], - [-18.093306, 65.751012], - [-18.09364, 65.751233], - [-18.093817, 65.751406], - [-18.093803, 65.75158], - [-18.093468, 65.75172], - [-18.092906, 65.751956], - [-18.091571, 65.752472], - [-18.090671, 65.75293], - [-18.090016, 65.75331], - [-18.089711, 65.753673], - [-18.089587, 65.754068], - [-18.089597, 65.754564], - [-18.089804, 65.754927], - [-18.090522, 65.755597], - [-18.090703, 65.755925], - [-18.090691, 65.756264], - [-18.09051, 65.756726], - [-18.090471, 65.757064], - [-18.090598, 65.757336], - [-18.090428, 65.757504], - [-18.089811, 65.757955], - [-18.089336, 65.758487], - [-18.089119, 65.758868], - [-18.089056, 65.759423], - [-18.088968, 65.759891], - [-18.088962, 65.760562], - [-18.089209, 65.760837], - [-18.089838, 65.761419], - [-18.09001, 65.761736], - [-18.08994, 65.762048], - [-18.089598, 65.762516], - [-18.088893, 65.763325], - [-18.088296, 65.764013], - [-18.087301, 65.765447], - [-18.086654, 65.766262], - [-18.085876, 65.767331], - [-18.085559, 65.767966], - [-18.085553, 65.768636], - [-18.085638, 65.769122], - [-18.085735, 65.769794], - [-18.085661, 65.770448], - [-18.085445, 65.770829], - [-18.08503, 65.771435], - [-18.084398, 65.77242], - [-18.083982, 65.773025], - [-18.083566, 65.77363], - [-18.083167, 65.774011], - [-18.08316, 65.774164], - [-18.082657, 65.774925], - [-18.082561, 65.775151], - [-18.082423, 65.775775], - [-18.08191, 65.776621], - [-18.08192, 65.776835], - [-18.082624, 65.777361], - [-18.082731, 65.777649], - [-18.082503, 65.778115], - [-18.08165, 65.77891], - [-18.081069, 65.779141], - [-18.080287, 65.779312], - [-18.079239, 65.779662], - [-18.078042, 65.780139], - [-18.076424, 65.780621], - [-18.075433, 65.781101], - [-18.074731, 65.781473], - [-18.074084, 65.781973], - [-18.073641, 65.782507], - [-18.07347, 65.783102], - [-18.073433, 65.783429], - [-18.073287, 65.78441], - [-18.072792, 65.785085], - [-18.072686, 65.785425], - [-18.072671, 65.786151], - [-18.072886, 65.787011], - [-18.072739, 65.787407], - [-18.072461, 65.787716], - [-18.07219, 65.788252], - [-18.071813, 65.788815], - [-18.07122, 65.789146], - [-18.070706, 65.789393], - [-18.069892, 65.789533], - [-18.068925, 65.789786], - [-18.068247, 65.789958], - [-18.067368, 65.790055], - [-18.066167, 65.790232], - [-18.064334, 65.790482], - [-18.063346, 65.790606], - [-18.062729, 65.790836], - [-18.062247, 65.791112], - [-18.061792, 65.791745], - [-18.061554, 65.792324], - [-18.06145, 65.792622], - [-18.061112, 65.793143], - [-18.06041, 65.793813], - [-18.060151, 65.794265], - [-18.060075, 65.79462], - [-18.059716, 65.795026], - [-18.059586, 65.795266], - [-18.059685, 65.79561], - [-18.059443, 65.795905], - [-18.059695, 65.796437], - [-18.059434, 65.796902], - [-18.059533, 65.797246], - [-18.060265, 65.797831], - [-18.060662, 65.798009], - [-18.061109, 65.798046], - [-18.061676, 65.797943], - [-18.062199, 65.797925], - [-18.062364, 65.798014], - [-18.062046, 65.798364], - [-18.061412, 65.798437], - [-18.060674, 65.798523], - [-18.059706, 65.798775], - [-18.05897, 65.799131], - [-18.05865, 65.799496], - [-18.058535, 65.800221], - [-18.058602, 65.800835], - [-18.058758, 65.801294], - [-18.058976, 65.801481], - [-18.058979, 65.801484], - [-18.059977, 65.801887], - [-18.06031, 65.802185], - [-18.060666, 65.802543], - [-18.060884, 65.802761], - [-18.060749, 65.803015], - [-18.0601, 65.803244], - [-18.059433, 65.803602], - [-18.059287, 65.803956], - [-18.0593, 65.804455], - [-18.059485, 65.805271], - [-18.059798, 65.805576], - [-18.061044, 65.805925], - [-18.061898, 65.806337], - [-18.062169, 65.806848], - [-18.062141, 65.807612], - [-18.062009, 65.807849], - [-18.060232, 65.808465], - [-18.059677, 65.808767], - [-18.059107, 65.809198], - [-18.05841, 65.809513], - [-18.057818, 65.809829], - [-18.057488, 65.810279], - [-18.057216, 65.810748], - [-18.057413, 65.811335], - [-18.057144, 65.811893], - [-18.056999, 65.8125], - [-18.056998, 65.812504], - [-18.056999, 65.812505], - [-18.057305, 65.813168], - [-18.057204, 65.813676], - [-18.056797, 65.814607], - [-18.056162, 65.814994], - [-18.055435, 65.815268], - [-18.05461, 65.815579], - [-18.053763, 65.8161], - [-18.052568, 65.817141], - [-18.052498, 65.817439], - [-18.052523, 65.817838], - [-18.05275, 65.818284], - [-18.053194, 65.81865], - [-18.053943, 65.819091], - [-18.054309, 65.819541], - [-18.054931, 65.819867], - [-18.055452, 65.820175], - [-18.056013, 65.820443], - [-18.05794, 65.820922], - [-18.059196, 65.821488], - [-18.059997, 65.821774], - [-18.060773, 65.822003], - [-18.061784, 65.822279], - [-18.062346, 65.822532], - [-18.062927, 65.822913], - [-18.063516, 65.823239], - [-18.0644, 65.823726], - [-18.065204, 65.824298], - [-18.065566, 65.824775], - [-18.06566, 65.825176], - [-18.065651, 65.825561], - [-18.065735, 65.826033], - [-18.066071, 65.826452], - [-18.066275, 65.826798], - [-18.066266, 65.827183], - [-18.066147, 65.827609], - [-18.06618, 65.827937], - [-18.066383, 65.828283], - [-18.066985, 65.829093], - [-18.067015, 65.82945], - [-18.066893, 65.829904], - [-18.066546, 65.830509], - [-18.065775, 65.831179], - [-18.064495, 65.832025], - [-18.063267, 65.832727], - [-18.062228, 65.833306], - [-18.061016, 65.833868], - [-18.05994, 65.834446], - [-18.058986, 65.834898], - [-18.05816, 65.835409], - [-18.057591, 65.835826], - [-18.057303, 65.83622], - [-18.057343, 65.836477], - [-18.057577, 65.836866], - [-18.058321, 65.837665], - [-18.058483, 65.838067], - [-18.05826, 65.838804], - [-18.058281, 65.839218], - [-18.058546, 65.83995], - [-18.058675, 65.840352], - [-18.059003, 65.840814], - [-18.059021, 65.841271], - [-18.059271, 65.841518], - [-18.05934, 65.841534], - [-18.060188, 65.841721], - [-18.060646, 65.841972], - [-18.060745, 65.842316], - [-18.060812, 65.842958], - [-18.061102, 65.843463], - [-18.061303, 65.843838], - [-18.061408, 65.844124], - [-18.061574, 65.844384], - [-18.061712, 65.844416], - [-18.062194, 65.84453], - [-18.062298, 65.844853], - [-18.062585, 65.845244], - [-18.062898, 65.84555], - [-18.063285, 65.845761], - [-18.063194, 65.84634], - [-18.06303, 65.847292], - [-18.06341, 65.847423], - [-18.063589, 65.847595], - [-18.063829, 65.848014], - [-18.063539, 65.848335], - [-18.063551, 65.848648], - [-18.063546, 65.848791], - [-18.063618, 65.848873], - [-18.063924, 65.84922], - [-18.063934, 65.8496], - [-18.063956, 65.849666], - [-18.064093, 65.849864], - [-18.064109, 65.850334], - [-18.064308, 65.851037], - [-18.064789, 65.851702], - [-18.065441, 65.852384], - [-18.065928, 65.852763], - [-18.066493, 65.853184], - [-18.066873, 65.853557], - [-18.067346, 65.853939], - [-18.067773, 65.854331], - [-18.067886, 65.854482], - [-18.068016, 65.854655], - [-18.06886, 65.85496], - [-18.069125, 65.855003], - [-18.069459, 65.855058], - [-18.069874, 65.855127], - [-18.070167, 65.855357], - [-18.070509, 65.855511], - [-18.070572, 65.855691], - [-18.070657, 65.85591], - [-18.070487, 65.856127], - [-18.070474, 65.856478], - [-18.070671, 65.856812], - [-18.070915, 65.857127], - [-18.071245, 65.857613], - [-18.072014, 65.85813], - [-18.073383, 65.858765], - [-18.074044, 65.859072], - [-18.075117, 65.859525], - [-18.075446, 65.859648], - [-18.075964, 65.859843], - [-18.076378, 65.86], - [-18.07665, 65.860104], - [-18.077018, 65.860182], - [-18.077104, 65.860372], - [-18.076914, 65.860458], - [-18.076214, 65.860787], - [-18.07592, 65.861238], - [-18.076058, 65.861761], - [-18.07636, 65.86238], - [-18.076381, 65.862496], - [-18.076438, 65.862808], - [-18.076763, 65.863307], - [-18.077401, 65.863831], - [-18.078281, 65.864423], - [-18.078986, 65.864816], - [-18.079504, 65.865246], - [-18.07977, 65.865609], - [-18.08015, 65.865991], - [-18.080465, 65.866258], - [-18.080339, 65.866542], - [-18.079507, 65.86705], - [-18.07869, 65.867505], - [-18.078487, 65.867775], - [-18.078537, 65.867928], - [-18.078633, 65.868222], - [-18.079259, 65.868871], - [-18.079935, 65.869444], - [-18.080062, 65.869787], - [-18.080269, 65.870462], - [-18.080251, 65.870989], - [-18.080242, 65.871231], - [-18.080334, 65.871651], - [-18.080402, 65.871963], - [-18.080476, 65.872727], - [-18.080487, 65.872836], - [-18.080794, 65.873313], - [-18.080907, 65.873369], - [-18.081615, 65.873726], - [-18.082321, 65.874091], - [-18.082657, 65.874434], - [-18.082875, 65.874599], - [-18.083827, 65.875315], - [-18.084225, 65.875793], - [-18.084607, 65.876354], - [-18.084718, 65.877152], - [-18.084813, 65.877741], - [-18.08507, 65.87834], - [-18.085233, 65.878987], - [-18.085439, 65.879709], - [-18.085843, 65.880092], - [-18.086297, 65.880398], - [-18.087055, 65.880611], - [-18.089426, 65.881138], - [-18.090715, 65.881421], - [-18.09223, 65.881904], - [-18.093696, 65.882454], - [-18.095257, 65.882938], - [-18.096747, 65.883459], - [-18.097707, 65.883873], - [-18.099133, 65.884242], - [-18.100648, 65.884716], - [-18.10172, 65.885244], - [-18.102329, 65.88576], - [-18.102459, 65.886008], - [-18.10233, 65.886386], - [-18.102001, 65.886508], - [-18.101837, 65.886564], - [-18.101422, 65.886476], - [-18.101416, 65.886473], - [-18.101056, 65.886322], - [-18.101086, 65.886132], - [-18.100816, 65.885884], - [-18.100517, 65.885816], - [-18.099989, 65.885651], - [-18.099383, 65.885724], - [-18.099086, 65.885824], - [-18.098767, 65.88609], - [-18.098392, 65.886174], - [-18.097766, 65.886161], - [-18.097328, 65.886092], - [-18.097298, 65.886088], - [-18.096842, 65.886032], - [-18.096334, 65.885962], - [-18.095802, 65.885912], - [-18.09513, 65.885879], - [-18.094597, 65.885857], - [-18.094018, 65.885835], - [-18.093592, 65.885884], - [-18.093552, 65.885889], - [-18.093296, 65.885907], - [-18.09318, 65.885838], - [-18.093069, 65.885772], - [-18.092982, 65.885611], - [-18.092781, 65.885576], - [-18.092474, 65.885522], - [-18.092059, 65.885444], - [-18.091524, 65.885488], - [-18.090633, 65.885739], - [-18.089577, 65.886075], - [-18.088884, 65.88665], - [-18.088918, 65.88701], - [-18.089511, 65.887299], - [-18.089361, 65.887592], - [-18.089029, 65.887808], - [-18.08837, 65.888051], - [-18.087902, 65.888181], - [-18.088729, 65.888409], - [-18.089556, 65.888637], - [-18.089782, 65.888819], - [-18.090452, 65.888908], - [-18.090654, 65.888912], - [-18.090912, 65.888918], - [-18.091125, 65.888922], - [-18.091612, 65.888903], - [-18.091752, 65.888897], - [-18.092307, 65.888957], - [-18.092727, 65.888893], - [-18.093288, 65.888792], - [-18.093566, 65.888813], - [-18.093635, 65.888828], - [-18.094095, 65.88893], - [-18.094815, 65.888925], - [-18.09526, 65.888823], - [-18.095867, 65.888712], - [-18.09637, 65.888924], - [-18.096526, 65.889105], - [-18.096404, 65.889266], - [-18.0962, 65.889377], - [-18.096026, 65.889473], - [-18.096076, 65.889607], - [-18.096153, 65.889815], - [-18.096696, 65.890217], - [-18.097197, 65.890351], - [-18.097386, 65.890401], - [-18.09798, 65.890457], - [-18.098682, 65.890523], - [-18.099328, 65.890631], - [-18.100233, 65.890636], - [-18.100518, 65.890699], - [-18.100665, 65.890905], - [-18.101017, 65.89097], - [-18.101195, 65.891003], - [-18.101418, 65.891091], - [-18.10163, 65.891176], - [-18.101908, 65.891197], - [-18.102304, 65.891161], - [-18.102558, 65.8912], - [-18.102928, 65.891221], - [-18.103184, 65.891194], - [-18.10358, 65.891159], - [-18.104204, 65.891257], - [-18.10447, 65.891282], - [-18.104528, 65.891288], - [-18.104663, 65.891365], - [-18.104771, 65.891427], - [-18.104846, 65.89147], - [-18.105078, 65.8916], - [-18.105119, 65.891623], - [-18.105321, 65.891833], - [-18.105598, 65.891873], - [-18.106198, 65.891981], - [-18.106544, 65.892049], - [-18.107002, 65.892223], - [-18.107283, 65.892298], - [-18.107439, 65.892339], - [-18.107829, 65.892484], - [-18.107617, 65.892577], - [-18.107034, 65.892641], - [-18.106253, 65.892689], - [-18.10593, 65.892782], - [-18.106304, 65.89295], - [-18.10653, 65.892966], - [-18.106999, 65.893001], - [-18.107902, 65.893054], - [-18.108362, 65.893189], - [-18.108328, 65.893246], - [-18.108238, 65.893397], - [-18.108466, 65.893531], - [-18.108988, 65.893715], - [-18.109154, 65.893773], - [-18.109286, 65.893997], - [-18.109373, 65.894144], - [-18.109664, 65.894469], - [-18.109889, 65.894679], - [-18.110206, 65.894908], - [-18.110906, 65.895029], - [-18.111415, 65.895523], - [-18.111665, 65.895686], - [-18.112452, 65.895756], - [-18.113543, 65.895763], - [-18.113754, 65.895758], - [-18.114495, 65.89574], - [-18.115473, 65.896343], - [-18.116243, 65.896917], - [-18.116893, 65.897604], - [-18.117194, 65.898973], - [-18.117674, 65.899868], - [-18.118191, 65.900364], - [-18.118995, 65.900635], - [-18.119318, 65.900715], - [-18.119778, 65.900829], - [-18.119938, 65.90082], - [-18.120545, 65.900786], - [-18.121141, 65.901017], - [-18.121646, 65.901191], - [-18.12178, 65.901363], - [-18.121768, 65.901712], - [-18.121766, 65.901761], - [-18.122304, 65.902343], - [-18.122587, 65.902492], - [-18.122942, 65.902679], - [-18.123742, 65.903063], - [-18.124522, 65.903362], - [-18.12546, 65.903756], - [-18.125754, 65.903986], - [-18.125605, 65.904279], - [-18.125601, 65.904403], - [-18.125732, 65.90465], - [-18.125261, 65.904856], - [-18.124931, 65.905098], - [-18.124419, 65.905517], - [-18.124407, 65.905865], - [-18.124507, 65.906046], - [-18.124642, 65.906288], - [-18.12505, 65.906633], - [-18.125229, 65.906784], - [-18.125431, 65.90712], - [-18.125732, 65.907457], - [-18.127429, 65.907915], - [-18.129454, 65.908328], - [-18.134423, 65.909116], - [-18.134699, 65.909364], - [-18.133632, 65.909387], - [-18.132744, 65.909358], - [-18.131548, 65.909219], - [-18.13028, 65.909017], - [-18.129138, 65.908786], - [-18.128821, 65.908858], - [-18.126519, 65.909374], - [-18.126909, 65.909625], - [-18.12729, 65.909903], - [-18.127352, 65.910194], - [-18.126554, 65.910539], - [-18.125444, 65.910924], - [-18.125162, 65.911062], - [-18.12529, 65.911257], - [-18.125558, 65.91143], - [-18.125721, 65.911535], - [-18.126084, 65.911874], - [-18.126128, 65.912058], - [-18.125948, 65.912221], - [-18.125716, 65.912403], - [-18.125732, 65.912679], - [-18.125898, 65.912946], - [-18.126416, 65.913143], - [-18.127335, 65.913312], - [-18.128821, 65.913426], - [-18.130114, 65.913389], - [-18.131367, 65.913353], - [-18.133398, 65.913204], - [-18.134144, 65.913208], - [-18.134778, 65.913357], - [-18.135125, 65.913641], - [-18.135497, 65.913715], - [-18.135789, 65.913958], - [-18.136155, 65.914229], - [-18.136575, 65.914375], - [-18.137076, 65.914778], - [-18.137535, 65.914868], - [-18.13824, 65.915046], - [-18.138616, 65.915484], - [-18.138355, 65.91586], - [-18.137893, 65.915857], - [-18.137666, 65.915856], - [-18.137076, 65.915853], - [-18.136394, 65.916052], - [-18.135601, 65.916382], - [-18.13533, 65.916563], - [-18.13491, 65.916842], - [-18.134189, 65.917158], - [-18.134076, 65.91736], - [-18.134482, 65.917566], - [-18.1346, 65.917625], - [-18.134844, 65.917757], - [-18.134982, 65.917888], - [-18.135288, 65.918296], - [-18.135243, 65.918587], - [-18.135411, 65.918863], - [-18.13555, 65.91898], - [-18.135862, 65.9192], - [-18.135853, 65.91949], - [-18.135842, 65.919795], - [-18.136009, 65.919835], - [-18.136336, 65.919914], - [-18.136589, 65.919915], - [-18.137153, 65.919918], - [-18.137467, 65.919722], - [-18.137626, 65.919664], - [-18.138112, 65.919661], - [-18.13834, 65.919798], - [-18.138406, 65.919838], - [-18.138383, 65.920077], - [-18.137976, 65.920314], - [-18.137883, 65.920512], - [-18.138265, 65.920625], - [-18.13846, 65.920777], - [-18.13866, 65.920761], - [-18.13868, 65.92061], - [-18.138772, 65.920423], - [-18.139179, 65.920221], - [-18.139412, 65.920059], - [-18.139476, 65.919867], - [-18.139466, 65.919721], - [-18.139616, 65.919598], - [-18.139521, 65.919249], - [-18.139468, 65.918726], - [-18.139197, 65.918318], - [-18.139203, 65.91815], - [-18.139205, 65.918072], - [-18.139665, 65.918132], - [-18.13979, 65.918178], - [-18.140192, 65.918324], - [-18.140863, 65.918292], - [-18.141011, 65.918285], - [-18.141261, 65.918286], - [-18.141793, 65.918289], - [-18.142221, 65.918233], - [-18.142802, 65.917874], - [-18.14313, 65.917629], - [-18.143172, 65.917426], - [-18.143749, 65.917182], - [-18.143753, 65.917037], - [-18.143942, 65.916704], - [-18.144163, 65.916473], - [-18.144391, 65.916382], - [-18.144631, 65.916287], - [-18.145309, 65.916318], - [-18.145341, 65.91632], - [-18.145799, 65.916453], - [-18.146265, 65.91631], - [-18.146729, 65.916269], - [-18.147258, 65.916374], - [-18.147758, 65.916304], - [-18.147876, 65.916253], - [-18.148155, 65.916132], - [-18.148505, 65.916279], - [-18.148601, 65.916614], - [-18.148805, 65.91689], - [-18.149046, 65.917139], - [-18.149751, 65.917317], - [-18.149867, 65.91732], - [-18.150319, 65.917334], - [-18.150612, 65.91706], - [-18.150524, 65.916479], - [-18.150395, 65.916086], - [-18.150023, 65.915518], - [-18.149431, 65.915137], - [-18.149055, 65.9147], - [-18.148888, 65.914379], - [-18.148115, 65.914114], - [-18.147378, 65.913834], - [-18.146994, 65.913628], - [-18.146402, 65.913248], - [-18.145603, 65.912691], - [-18.14494, 65.912325], - [-18.14463, 65.912033], - [-18.144242, 65.911958], - [-18.143683, 65.911664], - [-18.143193, 65.911444], - [-18.14292, 65.911109], - [-18.142468, 65.910801], - [-18.141877, 65.910406], - [-18.141315, 65.910199], - [-18.140936, 65.909849], - [-18.140587, 65.909673], - [-18.140063, 65.909379], - [-18.139341, 65.908975], - [-18.139117, 65.908736], - [-18.138662, 65.908458], - [-18.138601, 65.908183], - [-18.138279, 65.908086], - [-18.137733, 65.907732], - [-18.137041, 65.907605], - [-18.137074, 65.90731], - [-18.137106, 65.907054], - [-18.136695, 65.906834], - [-18.136122, 65.906603], - [-18.13568, 65.906638], - [-18.135211, 65.90675], - [-18.134956, 65.906739], - [-18.134938, 65.906606], - [-18.135154, 65.906398], - [-18.135534, 65.906125], - [-18.135519, 65.905887], - [-18.135412, 65.905612], - [-18.135797, 65.905206], - [-18.13611, 65.904875], - [-18.136259, 65.904591], - [-18.136527, 65.904213], - [-18.137187, 65.904264], - [-18.137315, 65.904274], - [-18.13798, 65.904534], - [-18.139292, 65.904864], - [-18.1407, 65.905119], - [-18.141205, 65.905321], - [-18.141768, 65.905504], - [-18.142009, 65.905582], - [-18.143024, 65.905796], - [-18.143972, 65.905916], - [-18.145611, 65.906209], - [-18.146788, 65.906434], - [-18.147003, 65.906472], - [-18.147342, 65.906532], - [-18.147595, 65.906628], - [-18.147702, 65.906865], - [-18.147703, 65.906866], - [-18.147713, 65.906869], - [-18.14796, 65.906942], - [-18.148393, 65.907069], - [-18.14897, 65.907187], - [-18.150221, 65.907353], - [-18.1514, 65.907437], - [-18.151745, 65.907553], - [-18.152067, 65.907631], - [-18.152317, 65.907803], - [-18.152823, 65.907948], - [-18.153538, 65.908104], - [-18.153916, 65.908215], - [-18.153999, 65.908239], - [-18.154387, 65.908441], - [-18.154939, 65.908586], - [-18.155449, 65.908617], - [-18.15582, 65.908648], - [-18.156422, 65.908699], - [-18.157048, 65.908749], - [-18.158069, 65.908774], - [-18.159021, 65.908789], - [-18.159951, 65.908765], - [-18.161069, 65.908657], - [-18.162165, 65.90853], - [-18.162958, 65.908399], - [-18.163742, 65.908185], - [-18.16437, 65.907864], - [-18.16464, 65.907426], - [-18.164438, 65.907185], - [-18.164143, 65.906966], - [-18.163662, 65.906754], - [-18.163456, 65.906658], - [-18.163041, 65.906589], - [-18.162953, 65.906428], - [-18.163424, 65.90624], - [-18.164104, 65.906035], - [-18.165015, 65.905869], - [-18.165527, 65.905815], - [-18.165879, 65.905731], - [-18.166319, 65.905762], - [-18.166875, 65.905813], - [-18.167803, 65.905837], - [-18.168267, 65.905839], - [-18.168639, 65.905841], - [-18.169044, 65.905876], - [-18.169614, 65.906087], - [-18.170408, 65.90643], - [-18.17264, 65.907799], - [-18.173506, 65.908335], - [-18.174189, 65.908775], - [-18.174449, 65.909041], - [-18.176413, 65.909904], - [-18.177151, 65.91016], - [-18.179834, 65.910822], - [-18.181104, 65.911047], - [-18.181843, 65.911194], - [-18.182737, 65.91154], - [-18.182941, 65.911607], - [-18.183381, 65.911752], - [-18.184648, 65.912082], - [-18.1855, 65.912333], - [-18.186073, 65.912583], - [-18.187432, 65.912951], - [-18.187439, 65.912953], - [-18.188052, 65.913182], - [-18.189192, 65.913871], - [-18.189808, 65.914216], - [-18.190606, 65.914704], - [-18.190828, 65.915038], - [-18.191044, 65.915551], - [-18.191289, 65.915904], - [-18.192161, 65.91625], - [-18.192521, 65.916603], - [-18.192926, 65.917032], - [-18.19329, 65.9173], - [-18.193442, 65.917633], - [-18.193626, 65.918031], - [-18.194152, 65.918325], - [-18.194826, 65.918551], - [-18.195774, 65.918811], - [-18.19635, 65.919005], - [-18.19683, 65.919255], - [-18.197284, 65.919493], - [-18.197379, 65.919542], - [-18.197884, 65.919744], - [-18.198458, 65.919811], - [-18.198995, 65.919873], - [-18.199616, 65.920076], - [-18.200235, 65.920364], - [-18.200834, 65.920528], - [-18.200942, 65.920795], - [-18.201299, 65.921252], - [-18.201519, 65.921671], - [-18.201865, 65.922508], - [-18.202313, 65.923042], - [-18.202601, 65.923397], - [-18.203129, 65.92372], - [-18.203192, 65.923938], - [-18.203091, 65.924204], - [-18.203363, 65.924404], - [-18.203518, 65.924652], - [-18.203305, 65.924803], - [-18.203205, 65.925011], - [-18.203341, 65.925126], - [-18.203615, 65.925279], - [-18.203793, 65.925536], - [-18.203489, 65.925596], - [-18.203419, 65.92561], - [-18.203471, 65.925663], - [-18.203689, 65.925887], - [-18.203451, 65.926085], - [-18.203286, 65.92617], - [-18.203164, 65.926349], - [-18.203134, 65.926558], - [-18.203059, 65.926747], - [-18.203028, 65.926975], - [-18.20279, 65.927173], - [-18.202785, 65.927344], - [-18.202732, 65.927543], - [-18.202208, 65.927958], - [-18.202013, 65.928251], - [-18.202002, 65.928602], - [-18.20194, 65.929086], - [-18.201788, 65.929493], - [-18.201866, 65.930006], - [-18.201851, 65.93049], - [-18.20167, 65.931068], - [-18.20166, 65.931382], - [-18.202004, 65.931554], - [-18.202609, 65.931633], - [-18.202837, 65.931663], - [-18.203241, 65.931671], - [-18.204045, 65.931688], - [-18.204717, 65.931758], - [-18.205268, 65.931998], - [-18.205772, 65.932247], - [-18.206208, 65.932401], - [-18.206435, 65.932592], - [-18.20678, 65.932727], - [-18.206818, 65.933003], - [-18.206853, 65.933382], - [-18.206751, 65.933657], - [-18.206274, 65.934063], - [-18.205941, 65.934279], - [-18.205051, 65.934503], - [-18.204582, 65.934643], - [-18.204131, 65.934944], - [-18.204054, 65.935171], - [-18.20421, 65.935391], - [-18.204362, 65.935733], - [-18.204354, 65.935999], - [-18.204414, 65.936322], - [-18.204568, 65.936588], - [-18.205096, 65.936809], - [-18.205441, 65.936953], - [-18.205318, 65.937152], - [-18.204987, 65.93735], - [-18.204681, 65.937462], - [-18.204094, 65.937649], - [-18.203689, 65.93796], - [-18.202837, 65.938449], - [-18.202069, 65.939214], - [-18.201564, 65.939762], - [-18.200984, 65.940471], - [-18.200408, 65.941018], - [-18.199909, 65.941367], - [-18.199179, 65.941658], - [-18.198024, 65.942164], - [-18.197216, 65.94271], - [-18.197232, 65.942967], - [-18.197424, 65.943177], - [-18.197406, 65.943358], - [-18.19726, 65.943406], - [-18.197061, 65.943389], - [-18.196986, 65.943383], - [-18.196774, 65.943462], - [-18.196555, 65.943566], - [-18.196509, 65.943589], - [-18.196349, 65.943668], - [-18.196228, 65.943769], - [-18.196179, 65.943781], - [-18.196059, 65.943811], - [-18.195938, 65.943842], - [-18.19558, 65.943867], - [-18.195309, 65.943887], - [-18.195177, 65.943886], - [-18.194517, 65.943883], - [-18.194472, 65.943882], - [-18.193779, 65.943868], - [-18.19302, 65.943859], - [-18.191104, 65.944203], - [-18.189909, 65.944472], - [-18.189084, 65.944818], - [-18.188516, 65.945119], - [-18.187968, 65.945534], - [-18.187656, 65.945855], - [-18.186616, 65.946381], - [-18.186374, 65.946655], - [-18.186313, 65.9467], - [-18.187227, 65.94695], - [-18.187056, 65.947055], - [-18.186109, 65.946805], - [-18.185098, 65.94747], - [-18.184721, 65.947722], - [-18.183947, 65.948314], - [-18.183016, 65.949189], - [-18.182039, 65.950033], - [-18.18146, 65.950955], - [-18.181295, 65.951457], - [-18.18135, 65.952334], - [-18.181547, 65.952953], - [-18.181817, 65.953363], - [-18.182111, 65.953561], - [-18.183569, 65.953814], - [-18.184135, 65.953293], - [-18.185417, 65.953341], - [-18.185413, 65.953449], - [-18.184283, 65.953369], - [-18.183918, 65.953836], - [-18.185824, 65.954159], - [-18.186933, 65.952812], - [-18.187232, 65.95284], - [-18.187188, 65.952657], - [-18.186715, 65.952321], - [-18.187053, 65.952174], - [-18.187751, 65.952768], - [-18.186611, 65.954034], - [-18.186566, 65.954421], - [-18.186913, 65.955021], - [-18.18755, 65.955418], - [-18.188056, 65.955721], - [-18.188785, 65.956073], - [-18.189769, 65.9565], - [-18.19106, 65.957074], - [-18.191476, 65.957248], - [-18.191692, 65.957338], - [-18.192435, 65.957574], - [-18.193286, 65.957869], - [-18.193994, 65.958071], - [-18.19471, 65.95828], - [-18.195444, 65.958511], - [-18.196089, 65.958686], - [-18.196544, 65.95876], - [-18.197186, 65.959024], - [-18.197684, 65.95918], - [-18.198161, 65.959362], - [-18.198209, 65.95938], - [-18.198256, 65.959385], - [-18.198437, 65.959404], - [-18.198911, 65.959459], - [-18.199228, 65.959572], - [-18.199726, 65.959735], - [-18.200107, 65.959853], - [-18.200533, 65.959994], - [-18.201022, 65.960149], - [-18.201282, 65.960333], - [-18.201616, 65.960492], - [-18.202038, 65.960752], - [-18.202268, 65.960999], - [-18.202471, 65.961247], - [-18.202666, 65.961449], - [-18.20302, 65.961865], - [-18.203387, 65.962132], - [-18.203846, 65.962377], - [-18.204296, 65.962633], - [-18.204838, 65.962856], - [-18.20529, 65.963049], - [-18.205582, 65.963216], - [-18.205632, 65.963245], - [-18.206366, 65.963476], - [-18.206762, 65.963533], - [-18.206776, 65.963535], - [-18.20736, 65.96359], - [-18.208155, 65.963952], - [-18.20856, 65.964171], - [-18.209017, 65.964494], - [-18.209412, 65.964743], - [-18.209807, 65.964998], - [-18.210364, 65.965348], - [-18.211338, 65.965839], - [-18.212044, 65.966159], - [-18.212885, 65.966429], - [-18.213447, 65.966615], - [-18.214086, 65.966674], - [-18.214278, 65.966701], - [-18.214597, 65.966747], - [-18.21508, 65.966824], - [-18.215379, 65.966927], - [-18.215812, 65.967145], - [-18.216016, 65.967341], - [-18.216404, 65.967537], - [-18.216491, 65.967675], - [-18.216805, 65.967916], - [-18.217129, 65.968067], - [-18.217602, 65.968192], - [-18.218074, 65.968307], - [-18.218468, 65.96832], - [-18.218699, 65.968556], - [-18.219004, 65.968759], - [-18.219228, 65.968913], - [-18.219603, 65.969016], - [-18.219618, 65.96902], - [-18.219639, 65.969022], - [-18.220112, 65.96906], - [-18.220567, 65.969144], - [-18.221005, 65.969199], - [-18.221548, 65.96941], - [-18.222045, 65.969614], - [-18.222455, 65.969806], - [-18.222587, 65.969867], - [-18.223018, 65.970161], - [-18.223366, 65.970442], - [-18.223725, 65.970698], - [-18.224408, 65.971116], - [-18.225033, 65.971354], - [-18.225466, 65.971573], - [-18.225853, 65.971806], - [-18.226013, 65.971956], - [-18.226434, 65.972249], - [-18.226738, 65.972516], - [-18.227171, 65.972746], - [-18.227589, 65.972841], - [-18.228218, 65.972941], - [-18.228699, 65.973078], - [-18.229141, 65.973304], - [-18.229582, 65.973568], - [-18.229752, 65.97371], - [-18.230338, 65.974016], - [-18.230944, 65.974265], - [-18.231372, 65.974353], - [-18.231793, 65.97465], - [-18.232273, 65.97513], - [-18.232866, 65.975547], - [-18.233297, 65.975807], - [-18.233786, 65.976004], - [-18.234377, 65.976152], - [-18.234928, 65.976424], - [-18.235515, 65.976699], - [-18.236178, 65.976882], - [-18.236423, 65.976946], - [-18.237339, 65.977152], - [-18.237885, 65.977296], - [-18.238791, 65.977766], - [-18.239249, 65.978034], - [-18.24028, 65.978627], - [-18.241378, 65.979288], - [-18.242342, 65.979776], - [-18.243005, 65.980207], - [-18.243254, 65.980436], - [-18.243898, 65.980733], - [-18.244727, 65.981224], - [-18.245198, 65.981651], - [-18.245661, 65.981748], - [-18.245551, 65.982345], - [-18.245346, 65.983478], - [-18.245493, 65.983738], - [-18.24636, 65.984124], - [-18.246775, 65.984287], - [-18.246933, 65.984449], - [-18.246905, 65.98463], - [-18.246895, 65.984962], - [-18.246944, 65.985076], - [-18.247049, 65.985257], - [-18.247415, 65.985496], - [-18.247618, 65.985715], - [-18.248031, 65.985954], - [-18.248445, 65.986137], - [-18.248807, 65.98649], - [-18.249078, 65.986776], - [-18.249085, 65.987355], - [-18.249377, 65.987717], - [-18.249627, 65.987955], - [-18.249709, 65.988335], - [-18.249981, 65.988574], - [-18.250415, 65.98887], - [-18.251291, 65.989188], - [-18.252008, 65.98939], - [-18.25249, 65.989621], - [-18.252901, 65.989936], - [-18.253196, 65.990193], - [-18.253071, 65.990497], - [-18.253248, 65.99082], - [-18.253706, 65.991079], - [-18.254236, 65.99129], - [-18.254484, 65.991566], - [-18.254746, 65.992185], - [-18.254966, 65.992641], - [-18.255166, 65.992993], - [-18.255837, 65.993139], - [-18.256533, 65.993237], - [-18.257392, 65.993374], - [-18.257785, 65.993461], - [-18.258361, 65.993711], - [-18.258938, 65.993894], - [-18.259118, 65.994123], - [-18.259206, 65.994303], - [-18.259334, 65.99443], - [-18.259342, 65.994437], - [-18.259969, 65.994516], - [-18.260245, 65.994631], - [-18.26045, 65.994803], - [-18.260725, 65.994975], - [-18.261139, 65.995148], - [-18.261157, 65.995328], - [-18.261039, 65.995394], - [-18.261387, 65.995443], - [-18.261831, 65.995407], - [-18.26236, 65.995647], - [-18.262261, 65.995846], - [-18.262392, 65.99615], - [-18.26208, 65.996481], - [-18.261789, 65.996859], - [-18.261432, 65.997133], - [-18.261379, 65.99736], - [-18.261066, 65.997701], - [-18.260911, 65.998231], - [-18.261111, 65.998574], - [-18.261009, 65.998858], - [-18.261351, 65.999116], - [-18.261788, 65.999327], - [-18.262299, 65.999396], - [-18.262549, 65.999615], - [-18.262869, 65.999814], - [-18.262899, 66.0001], - [-18.262716, 66.000655], - [-18.262589, 66.001351], - [-18.262509, 66.002088], - [-18.262506, 66.002112], - [-18.262513, 66.002119], - [-18.262641, 66.002267], - [-18.262757, 66.002402], - [-18.263087, 66.002516], - [-18.263102, 66.002535], - [-18.263146, 66.002591], - [-18.263153, 66.002706], - [-18.26318, 66.002831], - [-18.26338, 66.002944], - [-18.263386, 66.002947], - [-18.263392, 66.002951], - [-18.263512, 66.003023], - [-18.26356, 66.003052], - [-18.263587, 66.003173], - [-18.263614, 66.003293], - [-18.263753, 66.003414], - [-18.263768, 66.003609], - [-18.263782, 66.003841], - [-18.263894, 66.004177], - [-18.264052, 66.004372], - [-18.264247, 66.004667], - [-18.264586, 66.004913], - [-18.264689, 66.005208], - [-18.264708, 66.005352], - [-18.264714, 66.005399], - [-18.264771, 66.005561], - [-18.265093, 66.005699], - [-18.265341, 66.005907], - [-18.265809, 66.006278], - [-18.266323, 66.006455], - [-18.266435, 66.006471], - [-18.266728, 66.006515], - [-18.267007, 66.006748], - [-18.267155, 66.006881], - [-18.267284, 66.007002], - [-18.267597, 66.007124], - [-18.268048, 66.007341], - [-18.268263, 66.007661], - [-18.268435, 66.008056], - [-18.268841, 66.008455], - [-18.269328, 66.008884], - [-18.269755, 66.009234], - [-18.270317, 66.009557], - [-18.270607, 66.009723], - [-18.271542, 66.010117], - [-18.272095, 66.010372], - [-18.272151, 66.010397], - [-18.2724, 66.010508], - [-18.272547, 66.010573], - [-18.272889, 66.010736], - [-18.273232, 66.010846], - [-18.273408, 66.01088], - [-18.273647, 66.010926], - [-18.273875, 66.011139], - [-18.27404, 66.011409], - [-18.274181, 66.011828], - [-18.274427, 66.012148], - [-18.274594, 66.012352], - [-18.274915, 66.012515], - [-18.274975, 66.012606], - [-18.275032, 66.012694], - [-18.275166, 66.012805], - [-18.275311, 66.012825], - [-18.27548, 66.012831], - [-18.275639, 66.012782], - [-18.276008, 66.012756], - [-18.276158, 66.012827], - [-18.276335, 66.013056], - [-18.276541, 66.013343], - [-18.276627, 66.013538], - [-18.276897, 66.013705], - [-18.27722, 66.013818], - [-18.277323, 66.014138], - [-18.277294, 66.014432], - [-18.277117, 66.014568], - [-18.277285, 66.014747], - [-18.277415, 66.014852], - [-18.277435, 66.014868], - [-18.277634, 66.015014], - [-18.278099, 66.015136], - [-18.278493, 66.01527], - [-18.278878, 66.015322], - [-18.278976, 66.015455], - [-18.278921, 66.015591], - [-18.278803, 66.015827], - [-18.278616, 66.015965], - [-18.278492, 66.016056], - [-18.278428, 66.016103], - [-18.278457, 66.016131], - [-18.278587, 66.016257], - [-18.27853, 66.016468], - [-18.27828, 66.01667], - [-18.278272, 66.016676], - [-18.277989, 66.016888], - [-18.277983, 66.017108], - [-18.278111, 66.017257], - [-18.27813, 66.017303], - [-18.278286, 66.017544], - [-18.278488, 66.017695], - [-18.278575, 66.017761], - [-18.278894, 66.018003], - [-18.279302, 66.01832], - [-18.279333, 66.018344], - [-18.279673, 66.018578], - [-18.279686, 66.01859], - [-18.279842, 66.018724], - [-18.280037, 66.019006], - [-18.280317, 66.01919], - [-18.280464, 66.019394], - [-18.280628, 66.019443], - [-18.28106, 66.019575], - [-18.281484, 66.019713], - [-18.281835, 66.019885], - [-18.282063, 66.020134], - [-18.28221, 66.0203], - [-18.28227, 66.020367], - [-18.282184, 66.020537], - [-18.281999, 66.020611], - [-18.282004, 66.020789], - [-18.282086, 66.021133], - [-18.282069, 66.021418], - [-18.282067, 66.021452], - [-18.282092, 66.021655], - [-18.281986, 66.0218], - [-18.281077, 66.021878], - [-18.280656, 66.022021], - [-18.280161, 66.022234], - [-18.28015, 66.0224], - [-18.280143, 66.022504], - [-18.28031, 66.022724], - [-18.280636, 66.022929], - [-18.280901, 66.023096], - [-18.281069, 66.023253], - [-18.281208, 66.023383], - [-18.28107, 66.023573], - [-18.28038, 66.023851], - [-18.279915, 66.024077], - [-18.279534, 66.024262], - [-18.279219, 66.024604], - [-18.279152, 66.02473], - [-18.279122, 66.024786], - [-18.278712, 66.024888], - [-18.278363, 66.024952], - [-18.278045, 66.025063], - [-18.277898, 66.025199], - [-18.27775, 66.025397], - [-18.277568, 66.025699], - [-18.27742, 66.025888], - [-18.277527, 66.026092], - [-18.27743, 66.026261], - [-18.27719, 66.026488], - [-18.277186, 66.026617], - [-18.277089, 66.026827], - [-18.276943, 66.026939], - [-18.276939, 66.027075], - [-18.276903, 66.027266], - [-18.276846, 66.027345], - [-18.276789, 66.027424], - [-18.276712, 66.02753], - [-18.276706, 66.027601], - [-18.276698, 66.027683], - [-18.276641, 66.027903], - [-18.276618, 66.027994], - [-18.276632, 66.028205], - [-18.276738, 66.028365], - [-18.276808, 66.028471], - [-18.276998, 66.028651], - [-18.277036, 66.028687], - [-18.277276, 66.028867], - [-18.277639, 66.028997], - [-18.278164, 66.029144], - [-18.278874, 66.029255], - [-18.279413, 66.029303], - [-18.279768, 66.029338], - [-18.279889, 66.029409], - [-18.280018, 66.029518], - [-18.280016, 66.029577], - [-18.280015, 66.029625], - [-18.279787, 66.029748], - [-18.279483, 66.030078], - [-18.279384, 66.030193], - [-18.279272, 66.030322], - [-18.279191, 66.030666], - [-18.279125, 66.030864], - [-18.279221, 66.031063], - [-18.279244, 66.031088], - [-18.279356, 66.031205], - [-18.279419, 66.031272], - [-18.279659, 66.031434], - [-18.280103, 66.031561], - [-18.280312, 66.031756], - [-18.28051, 66.031948], - [-18.280709, 66.032135], - [-18.280873, 66.032447], - [-18.280971, 66.032528], - [-18.280973, 66.03253], - [-18.281099, 66.032875], - [-18.281234, 66.033032], - [-18.281516, 66.033146], - [-18.281769, 66.033213], - [-18.282, 66.033314], - [-18.282169, 66.033488], - [-18.281917, 66.033744], - [-18.281682, 66.034141], - [-18.281242, 66.03457], - [-18.281308, 66.03474], - [-18.281578, 66.034923], - [-18.281686, 66.035069], - [-18.2816, 66.035226], - [-18.281423, 66.035391], - [-18.281317, 66.035523], - [-18.281232, 66.035663], - [-18.28138, 66.035826], - [-18.281611, 66.035955], - [-18.281921, 66.036143], - [-18.282372, 66.036414], - [-18.282551, 66.036581], - [-18.282791, 66.036727], - [-18.282831, 66.036777], - [-18.283121, 66.036965], - [-18.283534, 66.037137], - [-18.283629, 66.037398], - [-18.283807, 66.037594], - [-18.284038, 66.037719], - [-18.284377, 66.037969], - [-18.284646, 66.038173], - [-18.284906, 66.038357], - [-18.28491, 66.038376], - [-18.28496, 66.03861], - [-18.284797, 66.038998], - [-18.284705, 66.039197], - [-18.284602, 66.03942], - [-18.284523, 66.039689], - [-18.284351, 66.040159], - [-18.284182, 66.040769], - [-18.284058, 66.041009], - [-18.284059, 66.04102], - [-18.284091, 66.041286], - [-18.284249, 66.041469], - [-18.284527, 66.041728], - [-18.284715, 66.041936], - [-18.285018, 66.042028], - [-18.285453, 66.042138], - [-18.285716, 66.042226], - [-18.285722, 66.042234], - [-18.285925, 66.04251], - [-18.286091, 66.04265], - [-18.285863, 66.042803], - [-18.285861, 66.042815], - [-18.285814, 66.043092], - [-18.286058, 66.043567], - [-18.285882, 66.043891], - [-18.285786, 66.044474], - [-18.285557, 66.045297], - [-18.285615, 66.04549], - [-18.285796, 66.045566], - [-18.286028, 66.045666], - [-18.286015, 66.045774], - [-18.285992, 66.045865], - [-18.285988, 66.046018], - [-18.286084, 66.046222], - [-18.286102, 66.046265], - [-18.286149, 66.046376], - [-18.28617, 66.046425], - [-18.285929, 66.046652], - [-18.285926, 66.046784], - [-18.285952, 66.046942], - [-18.286007, 66.047158], - [-18.285982, 66.047303], - [-18.28595, 66.047365], - [-18.285929, 66.047402], - [-18.28597, 66.047758], - [-18.286084, 66.048036], - [-18.286198, 66.048173], - [-18.28671, 66.04845], - [-18.287138, 66.048666], - [-18.287442, 66.048814], - [-18.28773, 66.048919], - [-18.288182, 66.048928], - [-18.288438, 66.048856], - [-18.288672, 66.048923], - [-18.288772, 66.04895], - [-18.289122, 66.049043], - [-18.289319, 66.049118], - [-18.289568, 66.049303], - [-18.289669, 66.04942], - [-18.289708, 66.049466], - [-18.289762, 66.049511], - [-18.289885, 66.049614], - [-18.2901, 66.049725], - [-18.290183, 66.049825], - [-18.290222, 66.049873], - [-18.290492, 66.050032], - [-18.290561, 66.050073], - [-18.290809, 66.050273], - [-18.290711, 66.050538], - [-18.29076, 66.050752], - [-18.290848, 66.050856], - [-18.291081, 66.050923], - [-18.291413, 66.051141], - [-18.29142, 66.051145], - [-18.291472, 66.051172], - [-18.291509, 66.05119], - [-18.291532, 66.051217], - [-18.291685, 66.051397], - [-18.291818, 66.051435], - [-18.292026, 66.051494], - [-18.292133, 66.051593], - [-18.292175, 66.051633], - [-18.292185, 66.051642], - [-18.292181, 66.051804], - [-18.292265, 66.052033], - [-18.292273, 66.052095], - [-18.29228, 66.052151], - [-18.292679, 66.05216], - [-18.292892, 66.052316], - [-18.292887, 66.052507], - [-18.29281, 66.052669], - [-18.292691, 66.052826], - [-18.292659, 66.052867], - [-18.292673, 66.053022], - [-18.292706, 66.053147], - [-18.292505, 66.053168], - [-18.292433, 66.053175], - [-18.292269, 66.053204], - [-18.292267, 66.053278], - [-18.292627, 66.053361], - [-18.292903, 66.053721], - [-18.29288, 66.053935], - [-18.29335, 66.054129], - [-18.293507, 66.054337], - [-18.293611, 66.054499], - [-18.293644, 66.054617], - [-18.293876, 66.054758], - [-18.294098, 66.054861], - [-18.29418, 66.0549], - [-18.294467, 66.055019], - [-18.294918, 66.055109], - [-18.295298, 66.05514], - [-18.295606, 66.05512], - [-18.295837, 66.055114], - [-18.295842, 66.055113], - [-18.296307, 66.055366], - [-18.297011, 66.055646], - [-18.297486, 66.05599], - [-18.297572, 66.056152], - [-18.297929, 66.056375], - [-18.298143, 66.056494], - [-18.298519, 66.056658], - [-18.298841, 66.056828], - [-18.299163, 66.056999], - [-18.299459, 66.057195], - [-18.299465, 66.057199], - [-18.300005, 66.057349], - [-18.300399, 66.057513], - [-18.300653, 66.057637], - [-18.300843, 66.057854], - [-18.300478, 66.057948], - [-18.300191, 66.057858], - [-18.299863, 66.057916], - [-18.299314, 66.05809], - [-18.29922, 66.058364], - [-18.299216, 66.058377], - [-18.299176, 66.058502], - [-18.299283, 66.058699], - [-18.299349, 66.058819], - [-18.299017, 66.058986], - [-18.298577, 66.059206], - [-18.297689, 66.059595], - [-18.296834, 66.060185], - [-18.296195, 66.060851], - [-18.295714, 66.061391], - [-18.295491, 66.061969], - [-18.295829, 66.062552], - [-18.296326, 66.062896], - [-18.296572, 66.063149], - [-18.29668, 66.063322], - [-18.2972, 66.063578], - [-18.297264, 66.06361], - [-18.297457, 66.063821], - [-18.297538, 66.063909], - [-18.297786, 66.064116], - [-18.298232, 66.06429], - [-18.298366, 66.064364], - [-18.298403, 66.064385], - [-18.298481, 66.064428], - [-18.298589, 66.064623], - [-18.299029, 66.065014], - [-18.299035, 66.065133], - [-18.299048, 66.065358], - [-18.299007, 66.06543], - [-18.298932, 66.065564], - [-18.2989, 66.06562], - [-18.298902, 66.065623], - [-18.299218, 66.065931], - [-18.299229, 66.065942], - [-18.299991, 66.066418], - [-18.300078, 66.066516], - [-18.300139, 66.066734], - [-18.300141, 66.066744], - [-18.300252, 66.066982], - [-18.3003, 66.067005], - [-18.300552, 66.067125], - [-18.300404, 66.06741], - [-18.300362, 66.067713], - [-18.300345, 66.067836], - [-18.300285, 66.068029], - [-18.300219, 66.068239], - [-18.300217, 66.068244], - [-18.300188, 66.068273], - [-18.299768, 66.068693], - [-18.300033, 66.069154], - [-18.29986, 66.069479], - [-18.299728, 66.069922], - [-18.299439, 66.070214], - [-18.298868, 66.070582], - [-18.298249, 66.071016], - [-18.297959, 66.071366], - [-18.297901, 66.071755], - [-18.298046, 66.071998], - [-18.29881, 66.072425], - [-18.299016, 66.072799], - [-18.299451, 66.072992], - [-18.299032, 66.073136], - [-18.298943, 66.073208], - [-18.298929, 66.073219], - [-18.29865, 66.073447], - [-18.298631, 66.073554], - [-18.298577, 66.073853], - [-18.298567, 66.073912], - [-18.298442, 66.074196], - [-18.298176, 66.074508], - [-18.298165, 66.074915], - [-18.298162, 66.07502], - [-18.298103, 66.075476], - [-18.298, 66.075836], - [-18.297939, 66.075854], - [-18.297505, 66.075986], - [-18.297311, 66.076222], - [-18.297231, 66.076601], - [-18.297228, 66.076694], - [-18.297218, 66.077057], - [-18.297218, 66.077085], - [-18.297435, 66.077675], - [-18.297306, 66.07813], - [-18.297297, 66.078236], - [-18.297236, 66.078982], - [-18.297033, 66.07989], - [-18.29707, 66.080205], - [-18.29743, 66.08044], - [-18.297552, 66.080627], - [-18.297758, 66.081264], - [-18.297995, 66.081746], - [-18.298002, 66.081758], - [-18.298344, 66.082064], - [-18.298584, 66.082296], - [-18.298777, 66.082483], - [-18.29904, 66.08312], - [-18.29917, 66.083481], - [-18.299088, 66.083918], - [-18.299079, 66.084269], - [-18.299509, 66.084783], - [-18.299871, 66.085231], - [-18.300213, 66.08574], - [-18.300751, 66.086541], - [-18.30126, 66.087448], - [-18.301411, 66.087943], - [-18.301355, 66.088293], - [-18.301348, 66.08854], - [-18.301619, 66.088892], - [-18.301754, 66.089083], - [-18.30214, 66.089493], - [-18.302532, 66.089732], - [-18.302943, 66.090075], - [-18.303288, 66.090295], - [-18.303676, 66.090648], - [-18.303878, 66.090953], - [-18.303991, 66.091124], - [-18.304401, 66.091524], - [-18.30495, 66.091992], - [-18.305247, 66.092164], - [-18.30585, 66.092432], - [-18.305967, 66.092459], - [-18.306268, 66.092529], - [-18.306429, 66.092653], - [-18.306425, 66.092796], - [-18.306418, 66.093042], - [-18.306391, 66.093194], - [-18.306502, 66.093422], - [-18.306684, 66.093613], - [-18.30675, 66.093737], - [-18.307028, 66.093861], - [-18.306998, 66.094089], - [-18.307037, 66.094393], - [-18.306928, 66.094971], - [-18.306941, 66.095361], - [-18.307068, 66.095845], - [-18.307066, 66.095922], - [-18.307061, 66.096082], - [-18.307281, 66.096299], - [-18.307312, 66.09633], - [-18.307539, 66.096597], - [-18.307554, 66.096901], - [-18.307636, 66.097319], - [-18.307746, 66.097585], - [-18.307589, 66.09792], - [-18.307231, 66.098446], - [-18.307165, 66.09857], - [-18.307108, 66.098673], - [-18.30709, 66.098778], - [-18.307081, 66.098835], - [-18.30733, 66.09913], - [-18.307578, 66.099482], - [-18.307544, 66.099852], - [-18.307186, 66.100126], - [-18.306971, 66.100296], - [-18.306885, 66.100893], - [-18.306892, 66.100904], - [-18.307201, 66.101322], - [-18.307212, 66.101768], - [-18.307412, 66.102167], - [-18.307493, 66.102614], - [-18.308037, 66.103281], - [-18.30866, 66.103625], - [-18.309215, 66.103855], - [-18.309724, 66.104057], - [-18.310282, 66.104202], - [-18.310534, 66.104421], - [-18.310828, 66.104811], - [-18.310889, 66.105125], - [-18.311313, 66.105567], - [-18.311323, 66.105781], - [-18.311755, 66.106021], - [-18.312124, 66.106222], - [-18.312959, 66.106462], - [-18.31296, 66.106463], - [-18.313276, 66.106599], - [-18.31376, 66.107006], - [-18.314092, 66.107467], - [-18.314909, 66.107971], - [-18.315058, 66.108207], - [-18.315156, 66.108361], - [-18.316711, 66.108871], - [-18.317473, 66.109254], - [-18.318349, 66.109751], - [-18.319224, 66.110315], - [-18.3193, 66.110961], - [-18.318956, 66.111595], - [-18.31894, 66.112176], - [-18.318927, 66.112677], - [-18.318964, 66.1128], - [-18.319228, 66.113665], - [-18.319592, 66.114094], - [-18.320329, 66.114553], - [-18.321106, 66.115006], - [-18.321675, 66.1151], - [-18.32178, 66.115365], - [-18.321603, 66.11588], - [-18.321333, 66.116746], - [-18.321314, 66.117138], - [-18.321603, 66.117718], - [-18.323119, 66.119255], - [-18.323524, 66.119978], - [-18.323533, 66.119995], - [-18.323825, 66.120471], - [-18.323633, 66.12083], - [-18.323603, 66.120887], - [-18.323595, 66.121201], - [-18.323776, 66.121316], - [-18.32394, 66.12142], - [-18.324049, 66.121753], - [-18.324042, 66.121761], - [-18.323831, 66.122027], - [-18.323239, 66.122262], - [-18.322952, 66.122469], - [-18.322248, 66.122542], - [-18.321843, 66.122778], - [-18.321195, 66.123012], - [-18.321028, 66.123144], - [-18.320979, 66.123295], - [-18.320823, 66.123339], - [-18.320576, 66.123382], - [-18.320244, 66.123919], - [-18.319862, 66.124193], - [-18.31979, 66.124471], - [-18.320127, 66.124811], - [-18.320258, 66.125024], - [-18.320261, 66.12503], - [-18.32009, 66.125323], - [-18.320036, 66.125579], - [-18.319524, 66.125778], - [-18.319136, 66.125955], - [-18.318562, 66.126379], - [-18.318553, 66.126393], - [-18.318344, 66.126682], - [-18.318011, 66.126852], - [-18.318123, 66.127051], - [-18.317739, 66.127382], - [-18.317731, 66.127695], - [-18.317885, 66.128085], - [-18.317879, 66.128313], - [-18.317864, 66.128399], - [-18.318214, 66.128733], - [-18.318685, 66.12954], - [-18.318821, 66.129864], - [-18.319017, 66.130443], - [-18.319196, 66.130767], - [-18.31909, 66.131222], - [-18.319239, 66.131764], - [-18.319165, 66.132116], - [-18.319123, 66.132316], - [-18.318712, 66.133071], - [-18.318644, 66.133613], - [-18.318365, 66.134673], - [-18.318032, 66.135763], - [-18.317914, 66.136102], - [-18.317894, 66.136387], - [-18.317941, 66.136522], - [-18.318119, 66.136893], - [-18.317925, 66.13712], - [-18.317709, 66.137192], - [-18.317476, 66.13727], - [-18.317445, 66.137535], - [-18.317442, 66.137676], - [-18.317437, 66.137839], - [-18.317523, 66.138124], - [-18.317515, 66.138456], - [-18.317152, 66.138872], - [-18.317005, 66.139099], - [-18.31658, 66.139517], - [-18.316572, 66.139525], - [-18.316458, 66.140005], - [-18.316492, 66.140502], - [-18.316045, 66.141146], - [-18.315327, 66.141627], - [-18.314088, 66.14202], - [-18.313575, 66.142321], - [-18.313538, 66.142662], - [-18.313752, 66.142966], - [-18.314039, 66.143583], - [-18.314171, 66.143932], - [-18.314162, 66.144083], - [-18.314132, 66.144601], - [-18.313889, 66.145185], - [-18.313975, 66.14583], - [-18.313975, 66.14716], - [-18.31376, 66.147869], - [-18.313573, 66.148293], - [-18.313573, 66.148635], - [-18.313573, 66.148962], - [-18.31343, 66.149331], - [-18.313299, 66.14971], - [-18.312917, 66.150217], - [-18.312695, 66.150754], - [-18.312523, 66.151173], - [-18.312507, 66.151757], - [-18.312598, 66.152925], - [-18.312378, 66.154254], - [-18.312237, 66.15495], - [-18.311979, 66.155396], - [-18.311633, 66.155693], - [-18.3107, 66.156124], - [-18.309462, 66.156503], - [-18.307116, 66.156928], - [-18.304062, 66.157355], - [-18.303087, 66.157597], - [-18.302414, 66.157907], - [-18.299892, 66.159419], - [-18.298819, 66.159873], - [-18.297919, 66.160406], - [-18.296928, 66.161083], - [-18.296429, 66.161367], - [-18.295532, 66.161599], - [-18.293061, 66.162085], - [-18.291144, 66.162524], - [-18.289593, 66.163076], - [-18.287402, 66.164195], - [-18.287129, 66.164357], - [-18.286783, 66.164562], - [-18.285783, 66.165319], - [-18.28573, 66.165354], - [-18.28448, 66.166192], - [-18.283492, 66.166777], - [-18.282912, 66.167405], - [-18.282879, 66.167664], - [-18.282998, 66.168039], - [-18.28259, 66.168842], - [-18.282462, 66.16892], - [-18.282252, 66.169047], - [-18.281324, 66.169322], - [-18.280039, 66.169544], - [-18.278984, 66.169776], - [-18.277934, 66.170124], - [-18.275495, 66.170839], - [-18.27367, 66.171927], - [-18.27155, 66.173124], - [-18.271312, 66.173371], - [-18.271711, 66.173725], - [-18.27155, 66.174003], - [-18.270432, 66.17465], - [-18.269457, 66.174738], - [-18.268693, 66.174621], - [-18.268686, 66.174561], - [-18.268673, 66.174445], - [-18.268246, 66.174184], - [-18.267459, 66.173974], - [-18.266234, 66.173875], - [-18.264395, 66.173794], - [-18.262735, 66.173714], - [-18.261509, 66.173656], - [-18.260766, 66.173694], - [-18.259557, 66.173842], - [-18.257713, 66.174011], - [-18.257174, 66.174081], - [-18.256996, 66.174038], - [-18.256875, 66.17381], - [-18.2565, 66.173519], - [-18.25597, 66.173278], - [-18.25503, 66.173046], - [-18.253375, 66.172786], - [-18.252094, 66.17278], - [-18.250717, 66.172812], - [-18.249878, 66.172836], - [-18.249387, 66.172849], - [-18.248895, 66.172925], - [-18.248624, 66.172939], - [-18.248317, 66.173014], - [-18.247217, 66.173376], - [-18.246213, 66.173735], - [-18.245463, 66.174007], - [-18.24508, 66.174026], - [-18.244082, 66.173933], - [-18.243487, 66.173952], - [-18.24286, 66.174126], - [-18.242591, 66.17409], - [-18.242458, 66.174013], - [-18.242468, 66.173974], - [-18.242519, 66.173784], - [-18.242176, 66.173498], - [-18.241774, 66.173375], - [-18.24083, 66.173294], - [-18.23789, 66.173061], - [-18.237052, 66.173057], - [-18.236287, 66.173154], - [-18.235886, 66.173205], - [-18.2351, 66.173255], - [-18.234102, 66.173194], - [-18.23394, 66.173184], - [-18.233102, 66.17318], - [-18.230824, 66.173431], - [-18.227274, 66.173689], - [-18.225411, 66.173851], - [-18.223634, 66.173945], - [-18.222536, 66.173939], - [-18.221442, 66.173797], - [-18.220607, 66.173468], - [-18.220207, 66.173171], - [-18.220221, 66.172723], - [-18.220014, 66.172416], - [-18.218967, 66.171922], - [-18.217559, 66.171387], - [-18.215915, 66.171204], - [-18.214302, 66.170944], - [-18.213092, 66.170719], - [-18.212552, 66.170716], - [-18.212024, 66.170812], - [-18.211138, 66.171007], - [-18.210751, 66.171031], - [-18.210151, 66.171002], - [-18.20958, 66.17089], - [-18.207686, 66.170703], - [-18.206823, 66.170655], - [-18.205875, 66.170705], - [-18.205034, 66.17082], - [-18.204239, 66.171049], - [-18.202774, 66.171334], - [-18.202485, 66.171397], - [-18.202284, 66.171441], - [-18.201744, 66.171449], - [-18.201395, 66.17137], - [-18.201104, 66.171161], - [-18.201193, 66.170888], - [-18.201012, 66.170625], - [-18.200537, 66.170262], - [-18.20006, 66.169975], - [-18.199096, 66.169664], - [-18.197912, 66.169494], - [-18.196347, 66.169431], - [-18.193535, 66.16945], - [-18.192291, 66.169454], - [-18.190888, 66.169403], - [-18.189811, 66.169245], - [-18.188764, 66.169031], - [-18.18782, 66.168983], - [-18.186898, 66.169066], - [-18.185567, 66.169515], - [-18.184789, 66.169789], - [-18.183714, 66.169762], - [-18.181378, 66.16975], - [-18.178846, 66.169365], - [-18.176651, 66.168864], - [-18.176625, 66.168865], - [-18.175512, 66.168895], - [-18.173261, 66.169218], - [-18.17246, 66.169483], - [-18.171152, 66.16954], - [-18.170018, 66.16948], - [-18.168184, 66.169371], - [-18.165647, 66.169249], - [-18.164809, 66.169255], - [-18.163859, 66.16937], - [-18.163422, 66.169532], - [-18.163205, 66.169601], - [-18.162547, 66.169811], - [-18.16187, 66.169862], - [-18.161224, 66.169782], - [-18.159898, 66.169686], - [-18.158955, 66.169738], - [-18.157806, 66.169878], - [-18.15706, 66.169826], - [-18.15656, 66.169702], - [-18.155447, 66.169291], - [-18.154775, 66.168633], - [-18.153932, 66.167961], - [-18.153459, 66.167565], - [-18.152629, 66.16732], - [-18.151064, 66.166872], - [-18.150092, 66.166006], - [-18.149532, 66.165559], - [-18.150185, 66.164471], - [-18.150339, 66.16377], - [-18.150316, 66.163446], - [-18.150071, 66.163136], - [-18.149554, 66.162837], - [-18.149408, 66.162631], - [-18.149544, 66.162136], - [-18.149502, 66.161855], - [-18.149238, 66.161598], - [-18.148666, 66.161223], - [-18.14805, 66.16095], - [-18.147776, 66.160425], - [-18.147776, 66.160417], - [-18.147778, 66.160341], - [-18.147791, 66.159953], - [-18.147164, 66.159142], - [-18.147032, 66.15897], - [-18.147077, 66.158454], - [-18.147099, 66.158194], - [-18.146996, 66.157553], - [-18.14578, 66.1565], - [-18.144893, 66.155601], - [-18.144452, 66.155075], - [-18.144362, 66.154029], - [-18.144269, 66.153479], - [-18.143892, 66.153132], - [-18.143195, 66.152741], - [-18.142578, 66.152502], - [-18.141097, 66.152081], - [-18.139067, 66.151714], - [-18.136488, 66.15146], - [-18.13483, 66.151374], - [-18.132147, 66.151368], - [-18.128915, 66.151475], - [-18.127838, 66.151563], - [-18.127178, 66.15161], - [-18.126294, 66.151768], - [-18.125457, 66.15217], - [-18.124784, 66.152638], - [-18.124386, 66.152878], - [-18.1232, 66.153557], - [-18.122352, 66.154295], - [-18.122083, 66.15453], - [-18.121587, 66.155624], - [-18.121598, 66.156036], - [-18.121628, 66.157149], - [-18.121628, 66.157165], - [-18.121642, 66.157665], - [-18.121695, 66.157738], - [-18.122438, 66.15875], - [-18.122453, 66.158839], - [-18.122611, 66.15978], - [-18.12266, 66.160388], - [-18.1219, 66.160843], - [-18.12072, 66.161137], - [-18.120358, 66.161365], - [-18.120312, 66.16168], - [-18.120442, 66.162011], - [-18.120324, 66.16234], - [-18.119753, 66.162466], - [-18.119561, 66.162895], - [-18.118838, 66.163234], - [-18.118061, 66.163202], - [-18.117391, 66.163631], - [-18.116803, 66.163712], - [-18.116737, 66.16384], - [-18.116576, 66.164098], - [-18.115935, 66.164221], - [-18.115529, 66.164414], - [-18.115528, 66.164414], - [-18.115149, 66.164546], - [-18.114178, 66.164744], - [-18.112685, 66.16485], - [-18.111679, 66.164814], - [-18.110181, 66.164704], - [-18.108719, 66.164763], - [-18.107885, 66.164775], - [-18.106293, 66.164968], - [-18.10573, 66.165011], - [-18.104636, 66.164876], - [-18.103645, 66.164799], - [-18.103043, 66.164795], - [-18.101701, 66.164644], - [-18.100677, 66.164509], - [-18.0998, 66.164594], - [-18.09939, 66.164749], - [-18.098701, 66.165009], - [-18.097991, 66.165022], - [-18.096932, 66.164992], - [-18.096491, 66.16498], - [-18.095909, 66.164926], - [-18.095429, 66.164983], - [-18.095097, 66.16504], - [-18.094728, 66.165278], - [-18.094127, 66.165231], - [-18.093531, 66.165041], - [-18.092935, 66.164866], - [-18.092227, 66.164819], - [-18.091734, 66.164716], - [-18.091497, 66.164413], - [-18.090732, 66.163978], - [-18.089964, 66.163658], - [-18.089443, 66.163339], - [-18.089452, 66.163081], - [-18.089327, 66.162622], - [-18.089066, 66.161989], - [-18.088897, 66.161744], - [-18.089051, 66.161401], - [-18.088904, 66.161146], - [-18.088116, 66.160793], - [-18.087518, 66.160646], - [-18.086261, 66.160526], - [-18.085704, 66.160473], - [-18.084549, 66.160109], - [-18.08395, 66.160112], - [-18.083453, 66.160146], - [-18.081312, 66.159763], - [-18.080904, 66.159641], - [-18.080649, 66.159409], - [-18.080357, 66.159188], - [-18.079688, 66.159176], - [-18.079197, 66.159167], - [-18.078666, 66.158886], - [-18.077899, 66.158814], - [-18.077441, 66.158806], - [-18.077246, 66.158673], - [-18.07777, 66.158113], - [-18.077754, 66.157942], - [-18.077283, 66.157734], - [-18.076325, 66.157502], - [-18.076072, 66.157554], - [-18.075469, 66.157899], - [-18.075327, 66.157896], - [-18.075067, 66.157707], - [-18.07464, 66.157142], - [-18.074932, 66.156749], - [-18.075928, 66.156054], - [-18.076466, 66.155666], - [-18.0764, 66.155622], - [-18.076278, 66.155462], - [-18.076712, 66.155072], - [-18.076527, 66.154826], - [-18.076542, 66.154698], - [-18.077311, 66.154142], - [-18.077833, 66.153582], - [-18.077979, 66.153242], - [-18.07819, 66.152933], - [-18.079259, 66.152526], - [-18.08099, 66.15156], - [-18.082097, 66.150811], - [-18.08227, 66.150544], - [-18.082429, 66.148902], - [-18.082631, 66.147925], - [-18.082487, 66.147283], - [-18.081835, 66.146457], - [-18.08096, 66.145705], - [-18.080435, 66.145364], - [-18.079861, 66.145153], - [-18.079709, 66.145087], - [-18.079546, 66.145019], - [-18.079413, 66.144961], - [-18.078298, 66.144354], - [-18.077766, 66.144087], - [-18.076139, 66.143543], - [-18.07475, 66.143173], - [-18.073271, 66.142787], - [-18.071867, 66.142436], - [-18.070329, 66.142087], - [-18.068751, 66.141779], - [-18.067591, 66.14167], - [-18.066199, 66.141568], - [-18.065056, 66.141545], - [-18.06428, 66.141564], - [-18.063106, 66.141847], - [-18.061303, 66.142362], - [-18.06003, 66.142732], - [-18.058999, 66.14289], - [-18.057436, 66.143017], - [-18.056326, 66.143182], - [-18.055051, 66.143542], - [-18.052586, 66.144687], - [-18.049497, 66.145905], - [-18.048315, 66.146271], - [-18.047619, 66.146466], - [-18.046864, 66.146602], - [-18.041095, 66.14677], - [-18.038595, 66.146937], - [-18.036523, 66.147156], - [-18.034757, 66.147449], - [-18.030927, 66.14839], - [-18.02748, 66.149338], - [-18.024748, 66.151158], - [-18.02325, 66.15215], - [-18.021808, 66.153414], - [-18.02125, 66.155027], - [-18.020207, 66.155567], - [-18.018911, 66.155877], - [-18.016924, 66.15607], - [-18.015958, 66.156087], - [-18.014877, 66.156016], - [-18.01096, 66.15508], - [-18.007517, 66.154671], - [-18.00332, 66.15472], - [-17.9927, 66.15582], - [-17.991061, 66.155764], - [-17.99033, 66.155161], - [-17.990074, 66.154455], - [-17.98993, 66.15383], - [-17.98955, 66.153499], - [-17.988745, 66.153174], - [-17.987564, 66.152975], - [-17.985335, 66.152849], - [-17.983875, 66.153023], - [-17.982436, 66.153335], - [-17.980685, 66.153323], - [-17.978873, 66.153344], - [-17.977834, 66.153612], - [-17.976945, 66.153973], - [-17.975969, 66.154241], - [-17.974947, 66.154039], - [-17.973959, 66.153435], - [-17.97267, 66.152781], - [-17.971502, 66.152226], - [-17.97011, 66.151791], - [-17.968575, 66.15157], - [-17.966352, 66.151268], - [-17.964059, 66.151092], - [-17.961646, 66.151141], - [-17.96014, 66.151055], - [-17.958232, 66.150617], - [-17.956749, 66.150052], - [-17.955465, 66.149449], - [-17.954455, 66.148954], - [-17.95366, 66.148303], - [-17.95262, 66.1477], - [-17.951153, 66.147444], - [-17.949883, 66.147422], - [-17.948234, 66.147574], - [-17.946055, 66.147688], - [-17.943856, 66.147753], - [-17.941847, 66.147918], - [-17.940358, 66.148087], - [-17.93821, 66.14833], - [-17.935926, 66.148334], - [-17.934114, 66.148187], - [-17.932729, 66.147904], - [-17.931228, 66.147348], - [-17.930002, 66.146781], - [-17.928535, 66.14577], - [-17.92756, 66.145332], - [-17.926376, 66.145085], - [-17.925155, 66.144741], - [-17.923844, 66.144398], - [-17.922656, 66.143955], - [-17.921784, 66.1434], - [-17.91906, 66.141352], - [-17.91825, 66.14087], - [-17.917009, 66.140116], - [-17.916327, 66.139629], - [-17.915026, 66.138454], - [-17.91465, 66.138128], - [-17.91316, 66.137751], - [-17.911863, 66.137594], - [-17.91024, 66.137498], - [-17.908591, 66.137428], - [-17.906603, 66.137343], - [-17.90564, 66.137246], - [-17.904931, 66.137042], - [-17.903591, 66.136752], - [-17.902356, 66.136596], - [-17.901164, 66.136504], - [-17.900134, 66.13651], - [-17.89891, 66.136467], - [-17.89815, 66.13638], - [-17.897337, 66.136253], - [-17.896539, 66.135978], - [-17.895863, 66.13558], - [-17.895127, 66.134925], - [-17.894479, 66.134248], - [-17.893571, 66.133824], - [-17.892687, 66.133597], - [-17.891807, 66.133397], - [-17.89147, 66.13318], - [-17.891554, 66.132886], - [-17.892303, 66.132232], - [-17.892714, 66.131955], - [-17.893393, 66.131607], - [-17.894, 66.131357], - [-17.895522, 66.131086], - [-17.895995, 66.131087], - [-17.896982, 66.130956], - [-17.897815, 66.130706], - [-17.898374, 66.130263], - [-17.898935, 66.129542], - [-17.89938, 66.128691], - [-17.899661, 66.127978], - [-17.899552, 66.12711], - [-17.89896, 66.125998], - [-17.897411, 66.124201], - [-17.894946, 66.121776], - [-17.892884, 66.119936], - [-17.890309, 66.118687], - [-17.889061, 66.11827], - [-17.887945, 66.11779], - [-17.886479, 66.117218], - [-17.884515, 66.116503], - [-17.883351, 66.116427], - [-17.883025, 66.116279], - [-17.882885, 66.116055], - [-17.883116, 66.115741], - [-17.883378, 66.115416], - [-17.883419, 66.115082], - [-17.883246, 66.114489], - [-17.882965, 66.113933], - [-17.882322, 66.113193], - [-17.881296, 66.112561], - [-17.879497, 66.111752], - [-17.878052, 66.111229], - [-17.870134, 66.108605], - [-17.866166, 66.107353], - [-17.864838, 66.107006], - [-17.863907, 66.106853], - [-17.86241, 66.106698], - [-17.860416, 66.106703], - [-17.859414, 66.106765], - [-17.858185, 66.106886], - [-17.855031, 66.107203], - [-17.85311, 66.10745], - [-17.849605, 66.107469], - [-17.847005, 66.107451], - [-17.841855, 66.107563], - [-17.839442, 66.107734], - [-17.8382, 66.107825], - [-17.836964, 66.107889], - [-17.83628, 66.107894], - [-17.835582, 66.107864], - [-17.834398, 66.107767], - [-17.832986, 66.107573], - [-17.83172, 66.10729], - [-17.828296, 66.106373], - [-17.825979, 66.105855], - [-17.824402, 66.105695], - [-17.823307, 66.10573], - [-17.822907, 66.105817], - [-17.822804, 66.106042], - [-17.82247, 66.106137], - [-17.821912, 66.106026], - [-17.820453, 66.105387], - [-17.819036, 66.104309], - [-17.818306, 66.103912], - [-17.817426, 66.103582], - [-17.816258, 66.103408], - [-17.815205, 66.103365], - [-17.81424, 66.103335], - [-17.813588, 66.103131], - [-17.812555, 66.102925], - [-17.811804, 66.102666], - [-17.811633, 66.102418], - [-17.812019, 66.102136], - [-17.8125, 66.10188], - [-17.813308, 66.101414], - [-17.813929, 66.100919], - [-17.81453, 66.100183], - [-17.815023, 66.099675], - [-17.81513, 66.099219], - [-17.814799, 66.098732], - [-17.814273, 66.098145], - [-17.813457, 66.097533], - [-17.812019, 66.096655], - [-17.811054, 66.096024], - [-17.81042, 66.095468], - [-17.809558, 66.094753], - [-17.809348, 66.094294], - [-17.808865, 66.09382], - [-17.808146, 66.093393], - [-17.807406, 66.093106], - [-17.805818, 66.092659], - [-17.804176, 66.092031], - [-17.802116, 66.091341], - [-17.79876, 66.090523], - [-17.796946, 66.089946], - [-17.795379, 66.089297], - [-17.793244, 66.088653], - [-17.790186, 66.088145], - [-17.789167, 66.087776], - [-17.788523, 66.087309], - [-17.786174, 66.086562], - [-17.784682, 66.086037], - [-17.782697, 66.085397], - [-17.780552, 66.084608], - [-17.778298, 66.083739], - [-17.77582, 66.082899], - [-17.773653, 66.082099], - [-17.771486, 66.08143], - [-17.768578, 66.080278], - [-17.766271, 66.079532], - [-17.761615, 66.078107], - [-17.758998, 66.077716], - [-17.756165, 66.077006], - [-17.753912, 66.076323], - [-17.750446, 66.075512], - [-17.748569, 66.075065], - [-17.747451, 66.074668], - [-17.746208, 66.074008], - [-17.740522, 66.071532], - [-17.738323, 66.070732], - [-17.737249, 66.070053], - [-17.736059, 66.069356], - [-17.734664, 66.06849], - [-17.733656, 66.067885], - [-17.732701, 66.06735], - [-17.732111, 66.067036], - [-17.731563, 66.066697], - [-17.730888, 66.066391], - [-17.725663, 66.064899], - [-17.724547, 66.064834], - [-17.724482, 66.064221], - [-17.724515, 66.063553], - [-17.724256, 66.062953], - [-17.724493, 66.062182], - [-17.724622, 66.061521], - [-17.72444, 66.06093], - [-17.723742, 66.059872], - [-17.722756, 66.058843], - [-17.721176, 66.057846], - [-17.719925, 66.057212], - [-17.718861, 66.056753], - [-17.717768, 66.056432], - [-17.716275, 66.056171], - [-17.714826, 66.056027], - [-17.713648, 66.05607], - [-17.712638, 66.056035], - [-17.71149, 66.056176], - [-17.711525, 66.055975], - [-17.712005, 66.055722], - [-17.711972, 66.055478], - [-17.711692, 66.055226], - [-17.71149, 66.055082], - [-17.711135, 66.054602], - [-17.710889, 66.054189], - [-17.710641, 66.053772], - [-17.70972, 66.053183], - [-17.709044, 66.052634], - [-17.708539, 66.051834], - [-17.70805, 66.05129], - [-17.707488, 66.050894], - [-17.706544, 66.050523], - [-17.70458, 66.049443], - [-17.704452, 66.049172], - [-17.704548, 66.048628], - [-17.704399, 66.048071], - [-17.704195, 66.047623], - [-17.703832, 66.047392], - [-17.704128, 66.046867], - [-17.704226, 66.04641], - [-17.704079, 66.04605], - [-17.703808, 66.045687], - [-17.703013, 66.045265], - [-17.702679, 66.045039], - [-17.702467, 66.044896], - [-17.70192, 66.044537], - [-17.701287, 66.044124], - [-17.700096, 66.043693], - [-17.699238, 66.043227], - [-17.698154, 66.04256], - [-17.69706, 66.04209], - [-17.695611, 66.041802], - [-17.695268, 66.041161], - [-17.69441, 66.040481], - [-17.693476, 66.039941], - [-17.692629, 66.039571], - [-17.692156, 66.038547], - [-17.691609, 66.038102], - [-17.690601, 66.037545], - [-17.690094, 66.037291], - [-17.689721, 66.036949], - [-17.6897, 66.036726], - [-17.689195, 66.036613], - [-17.688887, 66.036526], - [-17.688788, 66.036382], - [-17.688155, 66.035767], - [-17.687039, 66.035171], - [-17.685075, 66.034569], - [-17.682726, 66.034075], - [-17.680269, 66.033624], - [-17.679228, 66.033511], - [-17.678531, 66.03347], - [-17.677415, 66.033714], - [-17.676869, 66.034108], - [-17.67635, 66.03419], - [-17.676171, 66.034036], - [-17.676447, 66.033558], - [-17.67621, 66.03291], - [-17.675698, 66.032481], - [-17.674958, 66.032271], - [-17.674412, 66.032364], - [-17.67381, 66.03216], - [-17.67448, 66.03141], - [-17.674542, 66.030365], - [-17.67619, 66.02984], - [-17.675894, 66.028761], - [-17.674628, 66.028299], - [-17.674214, 66.026556], - [-17.672792, 66.026817], - [-17.672675, 66.026655], - [-17.67299, 66.02631], - [-17.673778, 66.026107], - [-17.675052, 66.025836], - [-17.675637, 66.025526], - [-17.67576, 66.025182], - [-17.674537, 66.024327], - [-17.676559, 66.023512], - [-17.67673, 66.02293], - [-17.676731, 66.022326], - [-17.677482, 66.022082], - [-17.677525, 66.021751], - [-17.67617, 66.02063], - [-17.674816, 66.019889], - [-17.674119, 66.019759], - [-17.673421, 66.019741], - [-17.671113, 66.019662], - [-17.671683, 66.018555], - [-17.67368, 66.01786], - [-17.674392, 66.017608], - [-17.674499, 66.017294], - [-17.673621, 66.016636], - [-17.672869, 66.016169], - [-17.671753, 66.016047], - [-17.670487, 66.016169], - [-17.6695, 66.016466], - [-17.669097, 66.016394], - [-17.670717, 66.014949], - [-17.671027, 66.014648], - [-17.670968, 66.014404], - [-17.67048, 66.01434], - [-17.670216, 66.014134], - [-17.6703, 66.01375], - [-17.670556, 66.013528], - [-17.670567, 66.013304], - [-17.670246, 66.012956], - [-17.669902, 66.012425], - [-17.669871, 66.012023], - [-17.670128, 66.011552], - [-17.670825, 66.010962], - [-17.671285, 66.01068], - [-17.671769, 66.010214], - [-17.671921, 66.009828], - [-17.671845, 66.009393], - [-17.671694, 66.008754], - [-17.671493, 66.008447], - [-17.67137, 66.00826], - [-17.670995, 66.007896], - [-17.670419, 66.00756], - [-17.669562, 66.007295], - [-17.668537, 66.007137], - [-17.668098, 66.007662], - [-17.66795, 66.007643], - [-17.66787, 66.007599], - [-17.668004, 66.007372], - [-17.668052, 66.00715], - [-17.667462, 66.007154], - [-17.667237, 66.007301], - [-17.667156, 66.007475], - [-17.666866, 66.007488], - [-17.666632, 66.007424], - [-17.665239, 66.000605], - [-17.665038, 66.000454], - [-17.663361, 65.999781], - [-17.661109, 65.998707], - [-17.660404, 65.998143], - [-17.65945, 65.997615], - [-17.656966, 65.996491], - [-17.654356, 65.99551], - [-17.651223, 65.99469], - [-17.6485, 65.992896], - [-17.647833, 65.99256], - [-17.646739, 65.992228], - [-17.644979, 65.992036], - [-17.643348, 65.991975], - [-17.641901, 65.991878], - [-17.635916, 65.990683], - [-17.631732, 65.990543], - [-17.628639, 65.98868], - [-17.60725, 65.98625], - [-17.5701, 65.9852], - [-17.56314, 65.98469], - [-17.54302, 65.98451], - [-17.527288, 65.984411], - [-17.500834, 65.985003], - [-17.490906, 65.985176], - [-17.48126, 65.985782], - [-17.467325, 65.986691], - [-17.45697, 65.987601], - [-17.448708, 65.988639], - [-17.444251, 65.989056], - [-17.439843, 65.989476], - [-17.434098, 65.989765], - [-17.424524, 65.991612], - [-17.414631, 65.992319], - [-17.411049, 65.992304], - [-17.410305, 65.993776], - [-17.409418, 65.995218], - [-17.408957, 65.996387], - [-17.408603, 65.998507], - [-17.407255, 65.998969], - [-17.403794, 65.999766], - [-17.40272, 66.000104], - [-17.401771, 66.000879], - [-17.400765, 66.000867], - [-17.400074, 66.000886], - [-17.40043, 66.001284], - [-17.400675, 66.001738], - [-17.401013, 66.001957], - [-17.400788, 66.002066], - [-17.400077, 66.002008], - [-17.399862, 66.001831], - [-17.398174, 66.00163], - [-17.394729, 66.002051], - [-17.391949, 66.002621], - [-17.389025, 66.003522], - [-17.387248, 66.004239], - [-17.383737, 66.005642], - [-17.380927, 66.007064], - [-17.380291, 66.007444], - [-17.379863, 66.007668], - [-17.379972, 66.007927], - [-17.379775, 66.008068], - [-17.379313, 66.008198], - [-17.379266, 66.008388], - [-17.379252, 66.008863], - [-17.379218, 66.009131], - [-17.379055, 66.009322], - [-17.379055, 66.009471], - [-17.379035, 66.009719], - [-17.378831, 66.010128], - [-17.378661, 66.010357], - [-17.378288, 66.010575], - [-17.378322, 66.010705], - [-17.378682, 66.01102], - [-17.378716, 66.011194], - [-17.379042, 66.011392], - [-17.379042, 66.011522], - [-17.379096, 66.011677], - [-17.379782, 66.011845], - [-17.379986, 66.011889], - [-17.379877, 66.012063], - [-17.380237, 66.012127], - [-17.380508, 66.012419], - [-17.38044, 66.012648], - [-17.380495, 66.012996], - [-17.380732, 66.013173], - [-17.381466, 66.013388], - [-17.382389, 66.01354], - [-17.383034, 66.013678], - [-17.383652, 66.013882], - [-17.384406, 66.014103], - [-17.385225, 66.014412], - [-17.385475, 66.014405], - [-17.38571, 66.014501], - [-17.385882, 66.014572], - [-17.385988, 66.014708], - [-17.386328, 66.014725], - [-17.386595, 66.014705], - [-17.387211, 66.014814], - [-17.387951, 66.015011], - [-17.388051, 66.015185], - [-17.387933, 66.015354], - [-17.387797, 66.015509], - [-17.387522, 66.015724], - [-17.386993, 66.015907], - [-17.386428, 66.016058], - [-17.385803, 66.016231], - [-17.385597, 66.016329], - [-17.385514, 66.016451], - [-17.385431, 66.016548], - [-17.385357, 66.016583], - [-17.385195, 66.016592], - [-17.38502, 66.01656], - [-17.384911, 66.01659], - [-17.384985, 66.016672], - [-17.385125, 66.016741], - [-17.385165, 66.016856], - [-17.38496, 66.017047], - [-17.384806, 66.017283], - [-17.384775, 66.017465], - [-17.384819, 66.017536], - [-17.384727, 66.017601], - [-17.384653, 66.017678], - [-17.384841, 66.017809], - [-17.38488, 66.01789], - [-17.38481, 66.017996], - [-17.384617, 66.018095], - [-17.384351, 66.018286], - [-17.384193, 66.018329], - [-17.384066, 66.018421], - [-17.384036, 66.018519], - [-17.383947, 66.018543], - [-17.383807, 66.018557], - [-17.38369, 66.018635], - [-17.383059, 66.018832], - [-17.382497, 66.019072], - [-17.382082, 66.019294], - [-17.381677, 66.019545], - [-17.38132, 66.019801], - [-17.380882, 66.020031], - [-17.380094, 66.020588], - [-17.379918, 66.020847], - [-17.379456, 66.021074], - [-17.378926, 66.021499], - [-17.379035, 66.021587], - [-17.378953, 66.021769], - [-17.378777, 66.022056], - [-17.379211, 66.022299], - [-17.3797, 66.022354], - [-17.379592, 66.022514], - [-17.379822, 66.022592], - [-17.380773, 66.02257], - [-17.381167, 66.022906], - [-17.381181, 66.023199], - [-17.381248, 66.023629], - [-17.381045, 66.023988], - [-17.380909, 66.02417], - [-17.380284, 66.024325], - [-17.380311, 66.024567], - [-17.380203, 66.024805], - [-17.379605, 66.024827], - [-17.378722, 66.025395], - [-17.37784, 66.026008], - [-17.376074, 66.026819], - [-17.375504, 66.02704], - [-17.374213, 66.027167], - [-17.372978, 66.027448], - [-17.371674, 66.027818], - [-17.370234, 66.028496], - [-17.36984, 66.028877], - [-17.369745, 66.02918], - [-17.369107, 66.029081], - [-17.367925, 66.029247], - [-17.36654, 66.029561], - [-17.365291, 66.029876], - [-17.36195, 66.031183], - [-17.359872, 66.031779], - [-17.356979, 66.032711], - [-17.354032, 66.033743], - [-17.351574, 66.034902], - [-17.349632, 66.03601], - [-17.34845, 66.036783], - [-17.347377, 66.037605], - [-17.345924, 66.039055], - [-17.345449, 66.039634], - [-17.34481, 66.041107], - [-17.34481, 66.041526], - [-17.344946, 66.042293], - [-17.345157, 66.042838], - [-17.345289, 66.043221], - [-17.34517, 66.043804], - [-17.345115, 66.043843], - [-17.344951, 66.043879], - [-17.344923, 66.043906], - [-17.344964, 66.043938], - [-17.34504, 66.043941], - [-17.34513, 66.043928], - [-17.345189, 66.043945], - [-17.34612, 66.043782], - [-17.346242, 66.043776], - [-17.346348, 66.043782], - [-17.346432, 66.043815], - [-17.346794, 66.044142], - [-17.346947, 66.044285], - [-17.347006, 66.044348], - [-17.347129, 66.044401], - [-17.347311, 66.044425], - [-17.348069, 66.044457], - [-17.348368, 66.044456], - [-17.348867, 66.044479], - [-17.34911, 66.044513], - [-17.349262, 66.044569], - [-17.349394, 66.044646], - [-17.349461, 66.044664], - [-17.349665, 66.044707], - [-17.349698, 66.044728], - [-17.349696, 66.044749], - [-17.348748, 66.045422], - [-17.348718, 66.045434], - [-17.34868, 66.045441], - [-17.348634, 66.045442], - [-17.348424, 66.045394], - [-17.348394, 66.045381], - [-17.348381, 66.045365], - [-17.348386, 66.045348], - [-17.34921, 66.044762], - [-17.349176, 66.044747], - [-17.347931, 66.044733], - [-17.347306, 66.04476], - [-17.346063, 66.044799], - [-17.346072, 66.044863], - [-17.344326, 66.044913], - [-17.344299, 66.045167], - [-17.344387, 66.045524], - [-17.344777, 66.045944], - [-17.34494, 66.046109], - [-17.345352, 66.046477], - [-17.345608, 66.046606], - [-17.345712, 66.046568], - [-17.345913, 66.0466], - [-17.346106, 66.046544], - [-17.34715, 66.046179], - [-17.347319, 66.046091], - [-17.346924, 66.045591], - [-17.347213, 66.045555], - [-17.347771, 66.046089], - [-17.347832, 66.046178], - [-17.347795, 66.046258], - [-17.347045, 66.046835], - [-17.347029, 66.046925], - [-17.347208, 66.046974], - [-17.347435, 66.046977], - [-17.347585, 66.046909], - [-17.347947, 66.046689], - [-17.348032, 66.046672], - [-17.348091, 66.046678], - [-17.348149, 66.046698], - [-17.348165, 66.04673], - [-17.348129, 66.046774], - [-17.347995, 66.046879], - [-17.34768, 66.047096], - [-17.347765, 66.047174], - [-17.347989, 66.047278], - [-17.348272, 66.047378], - [-17.348762, 66.047504], - [-17.349446, 66.047626], - [-17.349761, 66.047646], - [-17.3501, 66.047628], - [-17.350635, 66.047577], - [-17.351106, 66.047511], - [-17.354031, 66.046849], - [-17.354227, 66.04675], - [-17.354659, 66.046127], - [-17.354876, 66.045896], - [-17.35497, 66.045788], - [-17.353234, 66.044861], - [-17.353219, 66.044848], - [-17.353215, 66.044835], - [-17.353221, 66.044823], - [-17.353243, 66.04481], - [-17.353449, 66.044743], - [-17.353496, 66.044727], - [-17.353606, 66.044781], - [-17.353559, 66.044797], - [-17.353932, 66.044981], - [-17.354154, 66.044931], - [-17.354362, 66.044886], - [-17.354616, 66.044877], - [-17.354793, 66.044902], - [-17.355007, 66.044972], - [-17.355236, 66.045068], - [-17.356014, 66.045497], - [-17.356163, 66.045622], - [-17.356216, 66.045696], - [-17.35634, 66.045724], - [-17.358317, 66.04581], - [-17.358507, 66.045806], - [-17.358596, 66.04579], - [-17.358652, 66.045763], - [-17.358892, 66.045526], - [-17.359312, 66.045227], - [-17.359464, 66.045118], - [-17.359514, 66.045019], - [-17.35953, 66.044864], - [-17.359169, 66.044835], - [-17.359857, 66.043698], - [-17.360483, 66.04376], - [-17.360514, 66.043723], - [-17.360712, 66.04369], - [-17.36104, 66.043635], - [-17.361305, 66.04361], - [-17.361603, 66.043617], - [-17.361797, 66.043681], - [-17.361894, 66.043775], - [-17.361916, 66.043857], - [-17.361834, 66.04395], - [-17.361596, 66.044073], - [-17.361196, 66.044327], - [-17.360664, 66.045151], - [-17.360252, 66.045483], - [-17.359528, 66.045923], - [-17.35941, 66.046119], - [-17.359407, 66.046313], - [-17.359515, 66.046514], - [-17.359537, 66.046733], - [-17.359498, 66.046875], - [-17.359366, 66.047063], - [-17.359025, 66.047497], - [-17.358984, 66.047727], - [-17.359026, 66.047834], - [-17.3593, 66.048051], - [-17.360021, 66.04866], - [-17.360424, 66.049038], - [-17.360722, 66.049396], - [-17.361432, 66.049817], - [-17.361672, 66.049981], - [-17.362124, 66.050098], - [-17.362921, 66.050188], - [-17.363507, 66.050012], - [-17.363574, 66.050199], - [-17.36367, 66.050519], - [-17.363526, 66.050889], - [-17.363497, 66.051194], - [-17.363343, 66.051299], - [-17.363017, 66.051377], - [-17.363219, 66.051704], - [-17.363363, 66.052094], - [-17.363449, 66.052351], - [-17.363833, 66.052507], - [-17.36391, 66.052819], - [-17.363324, 66.052819], - [-17.36271, 66.052877], - [-17.362402, 66.05315], - [-17.362124, 66.053279], - [-17.361432, 66.053482], - [-17.360597, 66.053766], - [-17.360069, 66.054168], - [-17.359848, 66.054573], - [-17.359771, 66.054951], - [-17.359685, 66.055407], - [-17.359224, 66.055961], - [-17.358887, 66.056338], - [-17.358407, 66.056518], - [-17.358062, 66.057032], - [-17.35785, 66.057395], - [-17.357687, 66.05766], - [-17.357466, 66.058139], - [-17.357735, 66.058478], - [-17.357399, 66.058607], - [-17.35665, 66.058708], - [-17.356218, 66.058895], - [-17.356045, 66.059145], - [-17.355651, 66.059597], - [-17.35544, 66.060123], - [-17.35519, 66.060797], - [-17.354892, 66.061346], - [-17.354393, 66.06202], - [-17.353721, 66.062971], - [-17.353279, 66.063676], - [-17.353346, 66.064272], - [-17.353596, 66.064646], - [-17.354259, 66.06502], - [-17.354796, 66.065422], - [-17.354729, 66.065546], - [-17.353999, 66.065804], - [-17.353327, 66.066146], - [-17.352789, 66.066665], - [-17.352645, 66.066922], - [-17.351925, 66.067506], - [-17.351234, 66.06802], - [-17.350744, 66.068523], - [-17.350417, 66.068908], - [-17.350216, 66.069368], - [-17.350158, 66.069734], - [-17.34988, 66.07012], - [-17.349976, 66.070763], - [-17.35012, 66.071324], - [-17.350398, 66.07174], - [-17.350655, 66.071903], - [-17.351032, 66.072141], - [-17.351964, 66.072554], - [-17.352645, 66.07271], - [-17.353875, 66.072924], - [-17.354873, 66.072815], - [-17.355786, 66.072632], - [-17.356487, 66.072582], - [-17.356909, 66.072562], - [-17.357053, 66.072874], - [-17.357207, 66.073216], - [-17.357572, 66.073423], - [-17.358186, 66.073544], - [-17.35833, 66.073863], - [-17.358638, 66.074229], - [-17.359512, 66.074603], - [-17.360203, 66.074708], - [-17.360482, 66.074763], - [-17.360587, 66.075175], - [-17.360904, 66.07576], - [-17.361115, 66.076032], - [-17.361893, 66.076426], - [-17.362777, 66.076651], - [-17.362959, 66.07694], - [-17.362729, 66.077321], - [-17.362095, 66.077473], - [-17.361106, 66.077543], - [-17.359992, 66.077711], - [-17.359156, 66.077746], - [-17.357764, 66.077788], - [-17.356131, 66.077648], - [-17.354643, 66.077769], - [-17.353433, 66.07794], - [-17.352069, 66.078209], - [-17.350657, 66.078345], - [-17.348497, 66.078711], - [-17.346115, 66.079249], - [-17.343676, 66.079821], - [-17.34285, 66.080086], - [-17.341678, 66.080499], - [-17.340948, 66.080923], - [-17.34043, 66.081379], - [-17.340209, 66.081994], - [-17.340132, 66.082523], - [-17.339969, 66.083407], - [-17.339844, 66.083812], - [-17.340219, 66.084641], - [-17.340478, 66.085354], - [-17.340833, 66.086109], - [-17.341025, 66.086389], - [-17.341294, 66.086607], - [-17.341813, 66.086864], - [-17.342639, 66.087175], - [-17.343196, 66.087234], - [-17.344204, 66.087308], - [-17.344867, 66.087308], - [-17.345318, 66.087362], - [-17.345817, 66.087662], - [-17.346221, 66.087794], - [-17.346768, 66.087876], - [-17.347191, 66.088117], - [-17.347978, 66.088374], - [-17.348996, 66.08839], - [-17.349611, 66.088398], - [-17.349726, 66.088631], - [-17.350417, 66.088779], - [-17.350898, 66.088997], - [-17.351531, 66.089161], - [-17.351877, 66.089402], - [-17.352146, 66.089916], - [-17.352741, 66.090461], - [-17.353625, 66.09134], - [-17.354585, 66.092197], - [-17.354739, 66.092928], - [-17.354566, 66.093535], - [-17.354028, 66.094111], - [-17.353029, 66.094897], - [-17.352357, 66.095205], - [-17.351493, 66.095598], - [-17.349591, 66.096104], - [-17.348343, 66.096197], - [-17.346576, 66.096166], - [-17.34479, 66.096322], - [-17.343426, 66.096415], - [-17.343541, 66.096111], - [-17.343887, 66.095816], - [-17.343196, 66.095302], - [-17.341486, 66.094991], - [-17.337876, 66.094298], - [-17.335071, 66.093854], - [-17.331882, 66.093597], - [-17.32977, 66.093669], - [-17.328474, 66.093704], - [-17.326198, 66.093653], - [-17.325113, 66.093649], - [-17.322741, 66.093825], - [-17.319965, 66.093934], - [-17.316527, 66.094253], - [-17.314155, 66.094529], - [-17.31018, 66.095066], - [-17.308326, 66.095268], - [-17.307318, 66.095478], - [-17.30556, 66.095938], - [-17.304523, 66.096171], - [-17.303208, 66.096335], - [-17.302007, 66.096603], - [-17.301777, 66.096693], - [-17.301373, 66.096895], - [-17.30097, 66.097366], - [-17.300855, 66.097747], - [-17.300499, 66.098062], - [-17.299942, 66.098467], - [-17.299405, 66.098895], - [-17.299174, 66.099323], - [-17.299069, 66.099661], - [-17.299433, 66.099914], - [-17.299184, 66.100035], - [-17.298608, 66.100113], - [-17.297743, 66.100385], - [-17.296639, 66.100957], - [-17.295746, 66.101435], - [-17.295102, 66.101883], - [-17.29468, 66.102132], - [-17.294209, 66.102641], - [-17.29418, 66.103112], - [-17.294421, 66.103707], - [-17.294123, 66.104517], - [-17.29356, 66.105175], - [-17.293055, 66.105329], - [-17.291737, 66.105532], - [-17.289727, 66.105708], - [-17.287527, 66.105923], - [-17.285721, 66.106044], - [-17.284702, 66.106104], - [-17.2842, 66.10633], - [-17.283895, 66.106441], - [-17.283127, 66.10672], - [-17.281103, 66.107331], - [-17.279722, 66.108178], - [-17.278676, 66.108472], - [-17.277861, 66.108645], - [-17.277379, 66.108623], - [-17.276707, 66.108975], - [-17.275824, 66.109404], - [-17.274167, 66.110413], - [-17.273053, 66.111123], - [-17.271302, 66.112209], - [-17.270364, 66.112883], - [-17.269658, 66.113661], - [-17.269169, 66.114002], - [-17.268171, 66.114508], - [-17.266966, 66.11513], - [-17.265977, 66.115538], - [-17.265391, 66.115989], - [-17.265122, 66.116269], - [-17.265064, 66.116433], - [-17.264373, 66.116666], - [-17.263528, 66.117362], - [-17.262683, 66.11791], - [-17.261741, 66.118754], - [-17.261069, 66.119322], - [-17.260464, 66.11992], - [-17.26021, 66.120511], - [-17.260272, 66.12081], - [-17.260239, 66.12116], - [-17.260151, 66.121582], - [-17.259892, 66.122196], - [-17.259786, 66.122698], - [-17.259719, 66.123063], - [-17.259546, 66.123397], - [-17.25971, 66.123906], - [-17.260113, 66.124598], - [-17.260516, 66.125317], - [-17.26067, 66.125994], - [-17.260881, 66.126336], - [-17.26109, 66.126631], - [-17.261188, 66.126771], - [-17.261333, 66.127187], - [-17.26116, 66.12777], - [-17.261419, 66.128221], - [-17.261688, 66.128757], - [-17.261841, 66.129196], - [-17.261822, 66.129655], - [-17.261601, 66.130545], - [-17.26164, 66.131221], - [-17.261515, 66.131672], - [-17.261188, 66.132247], - [-17.260737, 66.133377], - [-17.260545, 66.134127], - [-17.260257, 66.134796], - [-17.260007, 66.135363], - [-17.259623, 66.135837], - [-17.258982, 66.136494], - [-17.258493, 66.13718], - [-17.258126, 66.138416], - [-17.257889, 66.139018], - [-17.257862, 66.13962], - [-17.257773, 66.139957], - [-17.257597, 66.140466], - [-17.257155, 66.141051], - [-17.257053, 66.141328], - [-17.257026, 66.141658], - [-17.257373, 66.142067], - [-17.257603, 66.142468], - [-17.257617, 66.142762], - [-17.257712, 66.14294], - [-17.257936, 66.143264], - [-17.258058, 66.143437], - [-17.25833, 66.143509], - [-17.258683, 66.143534], - [-17.258695, 66.14362], - [-17.25871, 66.143728], - [-17.258554, 66.144061], - [-17.258333, 66.144558], - [-17.257824, 66.145579], - [-17.257517, 66.146472], - [-17.257392, 66.146802], - [-17.257498, 66.147467], - [-17.2577, 66.147777], - [-17.257997, 66.148402], - [-17.258468, 66.148795], - [-17.259246, 66.149156], - [-17.260277, 66.149717], - [-17.261076, 66.149919], - [-17.262421, 66.15023], - [-17.264399, 66.150781], - [-17.266301, 66.151402], - [-17.268413, 66.151977], - [-17.269489, 66.15221], - [-17.270699, 66.152373], - [-17.271506, 66.152645], - [-17.272466, 66.153157], - [-17.273119, 66.15391], - [-17.273273, 66.154361], - [-17.273772, 66.154967], - [-17.274367, 66.155456], - [-17.274271, 66.155766], - [-17.27381, 66.156271], - [-17.273311, 66.156869], - [-17.273964, 66.157358], - [-17.275462, 66.158437], - [-17.276134, 66.159004], - [-17.27623, 66.15992], - [-17.275904, 66.160587], - [-17.275115, 66.161727], - [-17.274599, 66.162457], - [-17.273811, 66.163166], - [-17.274327, 66.163374], - [-17.274232, 66.16372], - [-17.273893, 66.163841], - [-17.273635, 66.163676], - [-17.273322, 66.163544], - [-17.27286, 66.16367], - [-17.27229, 66.163879], - [-17.271883, 66.16428], - [-17.271842, 66.164576], - [-17.272154, 66.164735], - [-17.27282, 66.164647], - [-17.273472, 66.164548], - [-17.27377, 66.164625], - [-17.27339, 66.164746], - [-17.272439, 66.164922], - [-17.271842, 66.164905], - [-17.271353, 66.164927], - [-17.270864, 66.164807], - [-17.270185, 66.165064], - [-17.269275, 66.165388], - [-17.268012, 66.165915], - [-17.267455, 66.166535], - [-17.267347, 66.167062], - [-17.267442, 66.167688], - [-17.268093, 66.168544], - [-17.268745, 66.168972], - [-17.269465, 66.168983], - [-17.270402, 66.169246], - [-17.269737, 66.169279], - [-17.26899, 66.169416], - [-17.268379, 66.169795], - [-17.266925, 66.170184], - [-17.26535, 66.170448], - [-17.263625, 66.170667], - [-17.262403, 66.170492], - [-17.261425, 66.170332], - [-17.260556, 66.170525], - [-17.260502, 66.170788], - [-17.260977, 66.171002], - [-17.260339, 66.171139], - [-17.259076, 66.171348], - [-17.257908, 66.171748], - [-17.257731, 66.172099], - [-17.257147, 66.172423], - [-17.256033, 66.172692], - [-17.255056, 66.173065], - [-17.254811, 66.173383], - [-17.253467, 66.173795], - [-17.252326, 66.174184], - [-17.250941, 66.174563], - [-17.249216, 66.17498], - [-17.248835, 66.174744], - [-17.24798, 66.174552], - [-17.247246, 66.174415], - [-17.246337, 66.174168], - [-17.245304, 66.174217], - [-17.244245, 66.17453], - [-17.243009, 66.175188], - [-17.242642, 66.175534], - [-17.241542, 66.175874], - [-17.240252, 66.176494], - [-17.239777, 66.176993], - [-17.239478, 66.177498], - [-17.238935, 66.178244], - [-17.238758, 66.178781], - [-17.238432, 66.179154], - [-17.238419, 66.179527], - [-17.238785, 66.180092], - [-17.239084, 66.18052], - [-17.238894, 66.181008], - [-17.238582, 66.181754], - [-17.238025, 66.182423], - [-17.237332, 66.182878], - [-17.237088, 66.183229], - [-17.236572, 66.18375], - [-17.236137, 66.18409], - [-17.235268, 66.184562], - [-17.234018, 66.184968], - [-17.232647, 66.185543], - [-17.23118, 66.186108], - [-17.23061, 66.186322], - [-17.229971, 66.186651], - [-17.229523, 66.187024], - [-17.228518, 66.187276], - [-17.227717, 66.187534], - [-17.226698, 66.188055], - [-17.225517, 66.188954], - [-17.225068, 66.189294], - [-17.224254, 66.189618], - [-17.223547, 66.189903], - [-17.222665, 66.190434], - [-17.222053, 66.190506], - [-17.221429, 66.190265], - [-17.2206, 66.190155], - [-17.219161, 66.190177], - [-17.217898, 66.190232], - [-17.216743, 66.190424], - [-17.214815, 66.190681], - [-17.212547, 66.190769], - [-17.211677, 66.190862], - [-17.209871, 66.19112], - [-17.20907, 66.191443], - [-17.208486, 66.191597], - [-17.207657, 66.191717], - [-17.206992, 66.191833], - [-17.205593, 66.192041], - [-17.2049, 66.192222], - [-17.204724, 66.192436], - [-17.203787, 66.192342], - [-17.203067, 66.192447], - [-17.202497, 66.192512], - [-17.201397, 66.192732], - [-17.200147, 66.193307], - [-17.199142, 66.193598], - [-17.197431, 66.193867], - [-17.196263, 66.193867], - [-17.195679, 66.193686], - [-17.195176, 66.193242], - [-17.194647, 66.192732], - [-17.193981, 66.19192], - [-17.193139, 66.191268], - [-17.191876, 66.190687], - [-17.190912, 66.190287], - [-17.190206, 66.18987], - [-17.189513, 66.189245], - [-17.189065, 66.188872], - [-17.188304, 66.188483], - [-17.187625, 66.188071], - [-17.186702, 66.187841], - [-17.185873, 66.187721], - [-17.184637, 66.187731], - [-17.182913, 66.187901], - [-17.181473, 66.188082], - [-17.180305, 66.188077], - [-17.178933, 66.187962], - [-17.177684, 66.187721], - [-17.17638, 66.187523], - [-17.174778, 66.187397], - [-17.173365, 66.187337], - [-17.172075, 66.187304], - [-17.171355, 66.187298], - [-17.170771, 66.18703], - [-17.170255, 66.186942], - [-17.169771, 66.18689], - [-17.168394, 66.186744], - [-17.167838, 66.186564], - [-17.16633, 66.186328], - [-17.164877, 66.186213], - [-17.163016, 66.186191], - [-17.160952, 66.186322], - [-17.158738, 66.18647], - [-17.157217, 66.186613], - [-17.155139, 66.186942], - [-17.154257, 66.187161], - [-17.152572, 66.187644], - [-17.151309, 66.188011], - [-17.149897, 66.188559], - [-17.14862, 66.188992], - [-17.147588, 66.189596], - [-17.146828, 66.190144], - [-17.146244, 66.190605], - [-17.145565, 66.190977], - [-17.145116, 66.191405], - [-17.144831, 66.191931], - [-17.144464, 66.192348], - [-17.143724, 66.192795], - [-17.142801, 66.193318], - [-17.141877, 66.193757], - [-17.141409, 66.194116], - [-17.141045, 66.194631], - [-17.140915, 66.194904], - [-17.140948, 66.195325], - [-17.14116, 66.19567], - [-17.141371, 66.195957], - [-17.141861, 66.196515], - [-17.142034, 66.196918], - [-17.141746, 66.197185], - [-17.14189, 66.197523], - [-17.142072, 66.198054], - [-17.142034, 66.198391], - [-17.141947, 66.198689], - [-17.142062, 66.199034], - [-17.142331, 66.199247], - [-17.142908, 66.199491], - [-17.144012, 66.2001], - [-17.144636, 66.200472], - [-17.144982, 66.200844], - [-17.14526, 66.201146], - [-17.145808, 66.201522], - [-17.146221, 66.201913], - [-17.146157, 66.202479], - [-17.146292, 66.202695], - [-17.146618, 66.202791], - [-17.146727, 66.20298], - [-17.146462, 66.20335], - [-17.146279, 66.203553], - [-17.146123, 66.203901], - [-17.146523, 66.204145], - [-17.147073, 66.204337], - [-17.147746, 66.20429], - [-17.148696, 66.204172], - [-17.149002, 66.20423], - [-17.148635, 66.204361], - [-17.148309, 66.204501], - [-17.148221, 66.204706], - [-17.148479, 66.204945], - [-17.148832, 66.205243], - [-17.148608, 66.205528], - [-17.148282, 66.205843], - [-17.14801, 66.206011], - [-17.147807, 66.206243], - [-17.148031, 66.206531], - [-17.147888, 66.206613], - [-17.147786, 66.206884], - [-17.147175, 66.206879], - [-17.146843, 66.206934], - [-17.146652, 66.207139], - [-17.146659, 66.207295], - [-17.146177, 66.207361], - [-17.145905, 66.20746], - [-17.145946, 66.207728], - [-17.145776, 66.207895], - [-17.145586, 66.208191], - [-17.145315, 66.208517], - [-17.145077, 66.208731], - [-17.144452, 66.208898], - [-17.143827, 66.208909], - [-17.143169, 66.208821], - [-17.142578, 66.208624], - [-17.142863, 66.208498], - [-17.143006, 66.208271], - [-17.143135, 66.207986], - [-17.143583, 66.207706], - [-17.143882, 66.207558], - [-17.14414, 66.207484], - [-17.144052, 66.207268], - [-17.143902, 66.207019], - [-17.143909, 66.206802], - [-17.143569, 66.206419], - [-17.143461, 66.206156], - [-17.143359, 66.205778], - [-17.143298, 66.205474], - [-17.143067, 66.205183], - [-17.142816, 66.204937], - [-17.142524, 66.204468], - [-17.142048, 66.204243], - [-17.141356, 66.204008], - [-17.140724, 66.203649], - [-17.139228, 66.203224], - [-17.137865, 66.202945], - [-17.136578, 66.202778], - [-17.135051, 66.202689], - [-17.134235, 66.202771], - [-17.133706, 66.202879], - [-17.133361, 66.202817], - [-17.132909, 66.202728], - [-17.132584, 66.202649], - [-17.132346, 66.202358], - [-17.132482, 66.202169], - [-17.130625, 66.201657], - [-17.127369, 66.200902], - [-17.12574, 66.200652], - [-17.123775, 66.200683], - [-17.122053, 66.201068], - [-17.119939, 66.201536], - [-17.11861, 66.20177], - [-17.116981, 66.201914], - [-17.116064, 66.201785], - [-17.114399, 66.201415], - [-17.11249, 66.201204], - [-17.110992, 66.200932], - [-17.10942, 66.20072], - [-17.108559, 66.200788], - [-17.107942, 66.201151], - [-17.107118, 66.201392], - [-17.105078, 66.20171], - [-17.103506, 66.202019], - [-17.101559, 66.202427], - [-17.100549, 66.202971], - [-17.099501, 66.203545], - [-17.098808, 66.203877], - [-17.098378, 66.203907], - [-17.097666, 66.203688], - [-17.09718, 66.203364], - [-17.096132, 66.203129], - [-17.095215, 66.202956], - [-17.093493, 66.202835], - [-17.092033, 66.202933], - [-17.090517, 66.203107], - [-17.088963, 66.203348], - [-17.086849, 66.203311], - [-17.08464, 66.203552], - [-17.08318, 66.203734], - [-17.081795, 66.203877], - [-17.080635, 66.203847], - [-17.079156, 66.203575], - [-17.077434, 66.203454], - [-17.075357, 66.203598], - [-17.074047, 66.203628], - [-17.072699, 66.203817], - [-17.07167, 66.204156], - [-17.070603, 66.204451], - [-17.068264, 66.204655], - [-17.067328, 66.20436], - [-17.06598, 66.203786], - [-17.064371, 66.203454], - [-17.060927, 66.20353], - [-17.058007, 66.203749], - [-17.055031, 66.204202], - [-17.053534, 66.204383], - [-17.051606, 66.20461], - [-17.04908, 66.204594], - [-17.04732, 66.2047], - [-17.044532, 66.204995], - [-17.043016, 66.205267], - [-17.040807, 66.20578], - [-17.039796, 66.206097], - [-17.03828, 66.206135], - [-17.037232, 66.206074], - [-17.035342, 66.205946], - [-17.033882, 66.206105], - [-17.032778, 66.206376], - [-17.032179, 66.206286], - [-17.031823, 66.205999], - [-17.030757, 66.204972], - [-17.028754, 66.203696], - [-17.027893, 66.202835], - [-17.026901, 66.202253], - [-17.025441, 66.201823], - [-17.02357, 66.201241], - [-17.02181, 66.200214], - [-17.020407, 66.19927], - [-17.018535, 66.198666], - [-17.016289, 66.197918], - [-17.014848, 66.197692], - [-17.012808, 66.197435], - [-17.008878, 66.196717], - [-17.005434, 66.196143], - [-17.003993, 66.195524], - [-17.002252, 66.194202], - [-17.000886, 66.193355], - [-16.998247, 66.191897], - [-16.996806, 66.190719], - [-16.995271, 66.1896], - [-16.993063, 66.188467], - [-16.991004, 66.187515], - [-16.988758, 66.186291], - [-16.987541, 66.185195], - [-16.986437, 66.183638], - [-16.986269, 66.182618], - [-16.986531, 66.182089], - [-16.987466, 66.181106], - [-16.98771, 66.180343], - [-16.987092, 66.179927], - [-16.986269, 66.179315], - [-16.986194, 66.178287], - [-16.985988, 66.177312], - [-16.985539, 66.176624], - [-16.984827, 66.176026], - [-16.983293, 66.175119], - [-16.982525, 66.174484], - [-16.982001, 66.173365], - [-16.981852, 66.172738], - [-16.980878, 66.171407], - [-16.980317, 66.170666], - [-16.980141, 66.169859], - [-16.97998, 66.169191], - [-16.979419, 66.168314], - [-16.978165, 66.166469], - [-16.977734, 66.165092], - [-16.977341, 66.164041], - [-16.976742, 66.163126], - [-16.976125, 66.162377], - [-16.976761, 66.161719], - [-16.977828, 66.161061], - [-16.979175, 66.160471], - [-16.97998, 66.159941], - [-16.98013, 66.159268], - [-16.97955, 66.158232], - [-16.978651, 66.157089], - [-16.977678, 66.156393], - [-16.976536, 66.155584], - [-16.975227, 66.154914], - [-16.974606, 66.154351], - [-16.972997, 66.153708], - [-16.972024, 66.153314], - [-16.971256, 66.152906], - [-16.970302, 66.152081], - [-16.968393, 66.151407], - [-16.967494, 66.151082], - [-16.966334, 66.150499], - [-16.965117, 66.149886], - [-16.963882, 66.149008], - [-16.963246, 66.148501], - [-16.961898, 66.14782], - [-16.960513, 66.147003], - [-16.959072, 66.146352], - [-16.95765, 66.145883], - [-16.957257, 66.145467], - [-16.956265, 66.14502], - [-16.95516, 66.14471], - [-16.954693, 66.14421], - [-16.954019, 66.14365], - [-16.952821, 66.14309], - [-16.952185, 66.14262], - [-16.950949, 66.142227], - [-16.950126, 66.14175], - [-16.949471, 66.141205], - [-16.948984, 66.140266], - [-16.948947, 66.138578], - [-16.948928, 66.137556], - [-16.948292, 66.136798], - [-16.947412, 66.13614], - [-16.947655, 66.134981], - [-16.948516, 66.133467], - [-16.949396, 66.13205], - [-16.950182, 66.130127], - [-16.950463, 66.129036], - [-16.95007, 66.128142], - [-16.949377, 66.127415], - [-16.947843, 66.1269], - [-16.945784, 66.12665], - [-16.942115, 66.125893], - [-16.940113, 66.125756], - [-16.939473, 66.125802], - [-16.938185, 66.125893], - [-16.937542, 66.125752], - [-16.933387, 66.125116], - [-16.927922, 66.124631], - [-16.925208, 66.124366], - [-16.920323, 66.123957], - [-16.916561, 66.123874], - [-16.912275, 66.123555], - [-16.911617, 66.123527], - [-16.907297, 66.123336], - [-16.90331, 66.123071], - [-16.899736, 66.122987], - [-16.895263, 66.122851], - [-16.890658, 66.122934], - [-16.88611, 66.123002], - [-16.880215, 66.1232], - [-16.872092, 66.123389], - [-16.865897, 66.123722], - [-16.86148, 66.123874], - [-16.858186, 66.124146], - [-16.855117, 66.124404], - [-16.851673, 66.124798], - [-16.847518, 66.125427], - [-16.843182, 66.12594], - [-16.8205, 66.1275], - [-16.82117, 66.128], - [-16.82032, 66.12784], - [-16.80049, 66.13016], - [-16.79921, 66.12979], - [-16.79801, 66.13083], - [-16.7936, 66.13101], - [-16.79238, 66.13153], - [-16.79111, 66.13142], - [-16.79179, 66.13218], - [-16.78363, 66.13279], - [-16.78305, 66.13356], - [-16.77802, 66.13388], - [-16.77805, 66.13439], - [-16.76931, 66.13576], - [-16.76934, 66.13628], - [-16.74561, 66.14013], - [-16.74565, 66.14064], - [-16.74437, 66.1404], - [-16.7444, 66.14091], - [-16.74251, 66.14093], - [-16.74254, 66.14144], - [-16.73378, 66.14256], - [-16.7332, 66.14333], - [-16.73192, 66.14322], - [-16.72759, 66.14442], - [-16.72762, 66.14493], - [-16.72327, 66.146], - [-16.72331, 66.14652], - [-16.72143, 66.14679], - [-16.71963, 66.14809], - [-16.713066, 66.149678], - [-16.70843, 66.15076], - [-16.69968, 66.152152], - [-16.69971, 66.15265], - [-16.69657, 66.15294], - [-16.69599, 66.15372], - [-16.69473, 66.15374], - [-16.69477, 66.15425], - [-16.69036, 66.15456], - [-16.69041, 66.15532], - [-16.68787, 66.15509], - [-16.68729, 66.15587], - [-16.68601, 66.15562], - [-16.68604, 66.15613], - [-16.67913, 66.15672], - [-16.67981, 66.15722], - [-16.67852, 66.15698], - [-16.678621, 66.157756], - [-16.67729, 66.15763], - [-16.6729, 66.15807], - [-16.67293, 66.15858], - [-16.67108, 66.15924], - [-16.66791, 66.15914], - [-16.66795, 66.15964], - [-16.665263, 66.159746], - [-16.6629, 66.15984], - [-16.661839, 66.160288], - [-16.66167, 66.16036], - [-16.660229, 66.160477], - [-16.656005, 66.160835], - [-16.65605, 66.16132], - [-16.652375, 66.161986], - [-16.64787, 66.16192], - [-16.6479, 66.16243], - [-16.64599, 66.16219], - [-16.64603, 66.1627], - [-16.64474, 66.16246], - [-16.64416, 66.16323], - [-16.64288, 66.16299], - [-16.64291, 66.1635], - [-16.64166, 66.16352], - [-16.64168, 66.16403], - [-16.640793, 66.164037], - [-16.63916, 66.16405], - [-16.63919, 66.16456], - [-16.62541, 66.1665], - [-16.62544, 66.16701], - [-16.62228, 66.16704], - [-16.62231, 66.16756], - [-16.61789, 66.1676], - [-16.61791, 66.16811], - [-16.61414, 66.16815], - [-16.6142, 66.16918], - [-16.61356, 66.16918], - [-16.61353, 66.16867], - [-16.61227, 66.16867], - [-16.612319, 66.169429], - [-16.604071, 66.170433], - [-16.599766, 66.17114], - [-16.593126, 66.172559], - [-16.587824, 66.17377], - [-16.58209, 66.174989], - [-16.580494, 66.175364], - [-16.57918, 66.175808], - [-16.578533, 66.175677], - [-16.577175, 66.175886], - [-16.573877, 66.176443], - [-16.570794, 66.177131], - [-16.568639, 66.177889], - [-16.566591, 66.17835], - [-16.564112, 66.179177], - [-16.559046, 66.180135], - [-16.553355, 66.181389], - [-16.546996, 66.183164], - [-16.541133, 66.184722], - [-16.537274, 66.185837], - [-16.532855, 66.186872], - [-16.530527, 66.187403], - [-16.530432, 66.187432], - [-16.526819, 66.188543], - [-16.522853, 66.189614], - [-16.516559, 66.191398], - [-16.514101, 66.19212], - [-16.510609, 66.193347], - [-16.508389, 66.194017], - [-16.504573, 66.19507], - [-16.501017, 66.196209], - [-16.497654, 66.197488], - [-16.492522, 66.199769], - [-16.492444, 66.199815], - [-16.490689, 66.200837], - [-16.490545, 66.200906], - [-16.488797, 66.201747], - [-16.486719, 66.202689], - [-16.481912, 66.204696], - [-16.477081, 66.207438], - [-16.476103, 66.20823], - [-16.47564, 66.208605], - [-16.475112, 66.209034], - [-16.474547, 66.209492], - [-16.470922, 66.211435], - [-16.470805, 66.211498], - [-16.466589, 66.213944], - [-16.465358, 66.215013], - [-16.465334, 66.215768], - [-16.466873, 66.216169], - [-16.46801, 66.216436], - [-16.467465, 66.216895], - [-16.467158, 66.217458], - [-16.467892, 66.218299], - [-16.468863, 66.219273], - [-16.468389, 66.219894], - [-16.467394, 66.220132], - [-16.465902, 66.220419], - [-16.463676, 66.220896], - [-16.461711, 66.221555], - [-16.46029, 66.222329], - [-16.458537, 66.222968], - [-16.458892, 66.223398], - [-16.458584, 66.223656], - [-16.457306, 66.223465], - [-16.455458, 66.223302], - [-16.454321, 66.223742], - [-16.452166, 66.224668], - [-16.452095, 66.225346], - [-16.451645, 66.22568], - [-16.44968, 66.2261], - [-16.44788, 66.227255], - [-16.443759, 66.229212], - [-16.443427, 66.229718], - [-16.44032, 66.231664], - [-16.438779, 66.23269], - [-16.437138, 66.233925], - [-16.435815, 66.234991], - [-16.435112, 66.235497], - [-16.434124, 66.236226], - [-16.43265, 66.237467], - [-16.431629, 66.238257], - [-16.430959, 66.239148], - [-16.430105, 66.239843], - [-16.430004, 66.240166], - [-16.430205, 66.240328], - [-16.430055, 66.240659], - [-16.429569, 66.240801], - [-16.428899, 66.241091], - [-16.428464, 66.241799], - [-16.426387, 66.243068], - [-16.4255, 66.244552], - [-16.425617, 66.245591], - [-16.425985, 66.246717], - [-16.426839, 66.247958], - [-16.427157, 66.249692], - [-16.427476, 66.251061], - [-16.428296, 66.251742], - [-16.428765, 66.253232], - [-16.429033, 66.254318], - [-16.428799, 66.254932], - [-16.428631, 66.255727], - [-16.429452, 66.257211], - [-16.429921, 66.257662], - [-16.430071, 66.258202], - [-16.429267, 66.258808], - [-16.429184, 66.259692], - [-16.429167, 66.260818], - [-16.428966, 66.261795], - [-16.428062, 66.262638], - [-16.425382, 66.263595], - [-16.423892, 66.26408], - [-16.422961, 66.265328], - [-16.422073, 66.266338], - [-16.420715, 66.267654], - [-16.420213, 66.268753], - [-16.42043, 66.269555], - [-16.419777, 66.270208], - [-16.419124, 66.272021], - [-16.418438, 66.273362], - [-16.41817, 66.275006], - [-16.41832, 66.276967], - [-16.418622, 66.27791], - [-16.419761, 66.278476], - [-16.420079, 66.279001], - [-16.420112, 66.2795], - [-16.421418, 66.279958], - [-16.423847, 66.28049], - [-16.425772, 66.281117], - [-16.426526, 66.28179], - [-16.42733, 66.282699], - [-16.428351, 66.28336], - [-16.43083, 66.284053], - [-16.433643, 66.284761], - [-16.437813, 66.285535], - [-16.440509, 66.285946], - [-16.441447, 66.28631], - [-16.440275, 66.286646], - [-16.438583, 66.287259], - [-16.437646, 66.287858], - [-16.436239, 66.289064], - [-16.435452, 66.290094], - [-16.434866, 66.291192], - [-16.434698, 66.292579], - [-16.434916, 66.293562], - [-16.435284, 66.294127], - [-16.435622, 66.294344], - [-16.436457, 66.294881], - [-16.437227, 66.295205], - [-16.438399, 66.296046], - [-16.440174, 66.297554], - [-16.441598, 66.298402], - [-16.443443, 66.299301], - [-16.444916, 66.299526], - [-16.446176, 66.299543], - [-16.447343, 66.299426], - [-16.448195, 66.299284], - [-16.448442, 66.29925], - [-16.448567, 66.299233], - [-16.448771, 66.299475], - [-16.449344, 66.299698], - [-16.450978, 66.300288], - [-16.450935, 66.300779], - [-16.450292, 66.300906], - [-16.449463, 66.301316], - [-16.449084, 66.301944], - [-16.449202, 66.302725], - [-16.449984, 66.303943], - [-16.451594, 66.304923], - [-16.45311, 66.305313], - [-16.455478, 66.305275], - [-16.457207, 66.305427], - [-16.458557, 66.305894], - [-16.459528, 66.306046], - [-16.460759, 66.305799], - [-16.46083, 66.30557], - [-16.460191, 66.305399], - [-16.460783, 66.305228], - [-16.462891, 66.305047], - [-16.465401, 66.305256], - [-16.467414, 66.305646], - [-16.46874, 66.306322], - [-16.469356, 66.307131], - [-16.469806, 66.307902], - [-16.470374, 66.308216], - [-16.470398, 66.308825], - [-16.469569, 66.309729], - [-16.468527, 66.310167], - [-16.468243, 66.31069], - [-16.46893, 66.311223], - [-16.467935, 66.311432], - [-16.467343, 66.311765], - [-16.466893, 66.312564], - [-16.466727, 66.313972], - [-16.467627, 66.314581], - [-16.468385, 66.315181], - [-16.469853, 66.315704], - [-16.471511, 66.315856], - [-16.473216, 66.315685], - [-16.474661, 66.315219], - [-16.475893, 66.31539], - [-16.476414, 66.315894], - [-16.4762, 66.316389], - [-16.474993, 66.316941], - [-16.474259, 66.318006], - [-16.473927, 66.319338], - [-16.473643, 66.320717], - [-16.473666, 66.32182], - [-16.474472, 66.322438], - [-16.474472, 66.323018], - [-16.474329, 66.324188], - [-16.473264, 66.325472], - [-16.473382, 66.326157], - [-16.473572, 66.327545], - [-16.474424, 66.328743], - [-16.475893, 66.329751], - [-16.476508, 66.330787], - [-16.478237, 66.331919], - [-16.47909, 66.332442], - [-16.478877, 66.332936], - [-16.478166, 66.333297], - [-16.477882, 66.333839], - [-16.47774, 66.335046], - [-16.477645, 66.33594], - [-16.478166, 66.33671], - [-16.4789, 66.337328], - [-16.480937, 66.338126], - [-16.483495, 66.339238], - [-16.48565, 66.340008], - [-16.486739, 66.34055], - [-16.486644, 66.340968], - [-16.4861, 66.341804], - [-16.485626, 66.342517], - [-16.485484, 66.343315], - [-16.485579, 66.344114], - [-16.486123, 66.34476], - [-16.48655, 66.34532], - [-16.486502, 66.346223], - [-16.487142, 66.34685], - [-16.487971, 66.347287], - [-16.489036, 66.347468], - [-16.489818, 66.347876], - [-16.490836, 66.347857], - [-16.492115, 66.348076], - [-16.493157, 66.348513], - [-16.494602, 66.348836], - [-16.495194, 66.349197], - [-16.496023, 66.349691], - [-16.497373, 66.35009], - [-16.498983, 66.350413], - [-16.500949, 66.350489], - [-16.501636, 66.350622], - [-16.502441, 66.350964], - [-16.50372, 66.35123], - [-16.504572, 66.351648], - [-16.505401, 66.352085], - [-16.505662, 66.352484], - [-16.506372, 66.352731], - [-16.505993, 66.352921], - [-16.506277, 66.353139], - [-16.506798, 66.353738], - [-16.507272, 66.35388], - [-16.507083, 66.35446], - [-16.507864, 66.355191], - [-16.507935, 66.355656], - [-16.508385, 66.356245], - [-16.508575, 66.356834], - [-16.508267, 66.357413], - [-16.507793, 66.358135], - [-16.507556, 66.358591], - [-16.507746, 66.358885], - [-16.508954, 66.359132], - [-16.509427, 66.359683], - [-16.510067, 66.360633], - [-16.511085, 66.36145], - [-16.511203, 66.361753], - [-16.510398, 66.361772], - [-16.51028, 66.362209], - [-16.509901, 66.362636], - [-16.509238, 66.362769], - [-16.509238, 66.363197], - [-16.509901, 66.363624], - [-16.509001, 66.363586], - [-16.507959, 66.363871], - [-16.507864, 66.364298], - [-16.507959, 66.365039], - [-16.507746, 66.365969], - [-16.507083, 66.366881], - [-16.506822, 66.367707], - [-16.507106, 66.368058], - [-16.507912, 66.368219], - [-16.508196, 66.368476], - [-16.507935, 66.368808], - [-16.507698, 66.36915], - [-16.508551, 66.369406], - [-16.508598, 66.369852], - [-16.508125, 66.37007], - [-16.508196, 66.370336], - [-16.508646, 66.370592], - [-16.508077, 66.370507], - [-16.507319, 66.37045], - [-16.50642, 66.370887], - [-16.505425, 66.37195], - [-16.504264, 66.373364], - [-16.503886, 66.373877], - [-16.503838, 66.374531], - [-16.503388, 66.37493], - [-16.504738, 66.375101], - [-16.50578, 66.375386], - [-16.504999, 66.375813], - [-16.504572, 66.376221], - [-16.505283, 66.376458], - [-16.505117, 66.376857], - [-16.505733, 66.37716], - [-16.505472, 66.377474], - [-16.506325, 66.378631], - [-16.507462, 66.379637], - [-16.509546, 66.380434], - [-16.512388, 66.380719], - [-16.515229, 66.3807], - [-16.516698, 66.380529], - [-16.517787, 66.380909], - [-16.517124, 66.381288], - [-16.516129, 66.381554], - [-16.516224, 66.382579], - [-16.515282, 66.382879], - [-16.514763, 66.383711], - [-16.513827, 66.384101], - [-16.513294, 66.384547], - [-16.512926, 66.384951], - [-16.512612, 66.385454], - [-16.511562, 66.38576], - [-16.510648, 66.386006], - [-16.509979, 66.386268], - [-16.509188, 66.386727], - [-16.50781, 66.387153], - [-16.507019, 66.38752], - [-16.506405, 66.387946], - [-16.505887, 66.388618], - [-16.505655, 66.389219], - [-16.505723, 66.389547], - [-16.5059, 66.389853], - [-16.506159, 66.390268], - [-16.506105, 66.390634], - [-16.505941, 66.391076], - [-16.505764, 66.391606], - [-16.505805, 66.392398], - [-16.5059, 66.392781], - [-16.506337, 66.393103], - [-16.507019, 66.393316], - [-16.508192, 66.393731], - [-16.508901, 66.394256], - [-16.509734, 66.394835], - [-16.510347, 66.395764], - [-16.51047, 66.39684], - [-16.51047, 66.397331], - [-16.510279, 66.397779], - [-16.509816, 66.398713], - [-16.509611, 66.39939], - [-16.509502, 66.399986], - [-16.50972, 66.400554], - [-16.510566, 66.401471], - [-16.510811, 66.401848], - [-16.511562, 66.402121], - [-16.512366, 66.402449], - [-16.513158, 66.402678], - [-16.514481, 66.402907], - [-16.515518, 66.403148], - [-16.51665, 66.403628], - [-16.517946, 66.404349], - [-16.519201, 66.404786], - [-16.520811, 66.405403], - [-16.521643, 66.405823], - [-16.521998, 66.406473], - [-16.521984, 66.407063], - [-16.52167, 66.407379], - [-16.521343, 66.407843], - [-16.521288, 66.408193], - [-16.521384, 66.40875], - [-16.521534, 66.409356], - [-16.521452, 66.409852], - [-16.521193, 66.410218], - [-16.521411, 66.41054], - [-16.522066, 66.410999], - [-16.524191, 66.41187], - [-16.52504, 66.412353], - [-16.525629, 66.412777], - [-16.525812, 66.413163], - [-16.525879, 66.413399], - [-16.525561, 66.413734], - [-16.52533, 66.413927], - [-16.524799, 66.414279], - [-16.524027, 66.41446], - [-16.523188, 66.414313], - [-16.521867, 66.41414], - [-16.521249, 66.414194], - [-16.520593, 66.41446], - [-16.520136, 66.414797], - [-16.519364, 66.415044], - [-16.517894, 66.415431], - [-16.517354, 66.41555], - [-16.516785, 66.415589], - [-16.516341, 66.415431], - [-16.516004, 66.415218], - [-16.515483, 66.415184], - [-16.515087, 66.415292], - [-16.514798, 66.415307], - [-16.514692, 66.415257], - [-16.514825, 66.415204], - [-16.5155, 66.415057], - [-16.515327, 66.414849], - [-16.51552, 66.414779], - [-16.516195, 66.41464], - [-16.516272, 66.414239], - [-16.515732, 66.413822], - [-16.514111, 66.413482], - [-16.511951, 66.413367], - [-16.50952, 66.413598], - [-16.506819, 66.413915], - [-16.503462, 66.414694], - [-16.500452, 66.415528], - [-16.498542, 66.416254], - [-16.497925, 66.416724], - [-16.497925, 66.417072], - [-16.498427, 66.417651], - [-16.5008, 66.419896], - [-16.501417, 66.42063], - [-16.502574, 66.421239], - [-16.503018, 66.421779], - [-16.503964, 66.422574], - [-16.506058, 66.424069], - [-16.507187, 66.424771], - [-16.508566, 66.425671], - [-16.509743, 66.426882], - [-16.510824, 66.427731], - [-16.512309, 66.428734], - [-16.514258, 66.429714], - [-16.514836, 66.430261], - [-16.515434, 66.430801], - [-16.516168, 66.431689], - [-16.516901, 66.432591], - [-16.517788, 66.433763], - [-16.517981, 66.434118], - [-16.517769, 66.434496], - [-16.517692, 66.434959], - [-16.518135, 66.435607], - [-16.519389, 66.436602], - [-16.520682, 66.43752], - [-16.521666, 66.438275], - [-16.522225, 66.438838], - [-16.523209, 66.439725], - [-16.523499, 66.440296], - [-16.523634, 66.440596], - [-16.523402, 66.440997], - [-16.523248, 66.44156], - [-16.52346, 66.442015], - [-16.523807, 66.442755], - [-16.524212, 66.443326], - [-16.524907, 66.443912], - [-16.524868, 66.444259], - [-16.525042, 66.444652], - [-16.525293, 66.445045], - [-16.525794, 66.445446], - [-16.526412, 66.445577], - [-16.52645, 66.445863], - [-16.526798, 66.446223], - [-16.527415, 66.446523], - [-16.528226, 66.446777], - [-16.529645, 66.447563], - [-16.530736, 66.448119], - [-16.532101, 66.448086], - [-16.534065, 66.447802], - [-16.534938, 66.447901], - [-16.535293, 66.448358], - [-16.535893, 66.44898], - [-16.537093, 66.449121], - [-16.538185, 66.449438], - [-16.538376, 66.44995], - [-16.539303, 66.450441], - [-16.53944, 66.450876], - [-16.539276, 66.45152], - [-16.539931, 66.451803], - [-16.539931, 66.452174], - [-16.538894, 66.452381], - [-16.537393, 66.45225], - [-16.536848, 66.452402], - [-16.535947, 66.452915], - [-16.535074, 66.453612], - [-16.535238, 66.454343], - [-16.536057, 66.454888], - [-16.537012, 66.45504], - [-16.538185, 66.454702], - [-16.539221, 66.454888], - [-16.540258, 66.455215], - [-16.541268, 66.455433], - [-16.541431, 66.456043], - [-16.540695, 66.456642], - [-16.540204, 66.457307], - [-16.540149, 66.457699], - [-16.539167, 66.458419], - [-16.539876, 66.45856], - [-16.540504, 66.459083], - [-16.539849, 66.459596], - [-16.539467, 66.460249], - [-16.539112, 66.461361], - [-16.538894, 66.461927], - [-16.539385, 66.462614], - [-16.539849, 66.463235], - [-16.541186, 66.463812], - [-16.541677, 66.464608], - [-16.54195, 66.465207], - [-16.542686, 66.465937], - [-16.542796, 66.467233], - [-16.543041, 66.467712], - [-16.544187, 66.468148], - [-16.545715, 66.468366], - [-16.548607, 66.468813], - [-16.550326, 66.469379], - [-16.550981, 66.46976], - [-16.55169, 66.47037], - [-16.552454, 66.471568], - [-16.553054, 66.47305], - [-16.553518, 66.473692], - [-16.554282, 66.473986], - [-16.556137, 66.474269], - [-16.557692, 66.474618], - [-16.558784, 66.475217], - [-16.559793, 66.475935], - [-16.560912, 66.476338], - [-16.562903, 66.476807], - [-16.564922, 66.477166], - [-16.566259, 66.477896], - [-16.56776, 66.478712], - [-16.568851, 66.479376], - [-16.56997, 66.48016], - [-16.570079, 66.480781], - [-16.569533, 66.481478], - [-16.569574, 66.482849], - [-16.569724, 66.483905], - [-16.569342, 66.484537], - [-16.56851, 66.485136], - [-16.567678, 66.485331], - [-16.567215, 66.48528], - [-16.565421, 66.485357], - [-16.563222, 66.485665], - [-16.562469, 66.485958], - [-16.562508, 66.486435], - [-16.562778, 66.486866], - [-16.56299, 66.487612], - [-16.563029, 66.488213], - [-16.563241, 66.489044], - [-16.563222, 66.489806], - [-16.563531, 66.490429], - [-16.563338, 66.490691], - [-16.562373, 66.491237], - [-16.561717, 66.491761], - [-16.56083, 66.492869], - [-16.560193, 66.493469], - [-16.559055, 66.493992], - [-16.557017, 66.494852], - [-16.554671, 66.496071], - [-16.552379, 66.497692], - [-16.550006, 66.499574], - [-16.548041, 66.501108], - [-16.546874, 66.502786], - [-16.546301, 66.504157], - [-16.546137, 66.505315], - [-16.546219, 66.506474], - [-16.546028, 66.507023], - [-16.545728, 66.507735], - [-16.545059, 66.508546], - [-16.543804, 66.509187], - [-16.54244, 66.509519], - [-16.540216, 66.509671], - [-16.538061, 66.509492], - [-16.536833, 66.509236], - [-16.53653, 66.508617], - [-16.534775, 66.508379], - [-16.531746, 66.508456], - [-16.52916, 66.507833], - [-16.526112, 66.506864], - [-16.522543, 66.506241], - [-16.520151, 66.505956], - [-16.516814, 66.50601], - [-16.513437, 66.506249], - [-16.510794, 66.506548], - [-16.509463, 66.506887], - [-16.507418, 66.507441], - [-16.505392, 66.507764], - [-16.502576, 66.50824], - [-16.50093, 66.50866], - [-16.500193, 66.509144], - [-16.499384, 66.509812], - [-16.498585, 66.510471], - [-16.497899, 66.51069], - [-16.496314, 66.510887], - [-16.494301, 66.510937], - [-16.492772, 66.510695], - [-16.491254, 66.510193], - [-16.489826, 66.509839], - [-16.488432, 66.509489], - [-16.487228, 66.509408], - [-16.486992, 66.508897], - [-16.487116, 66.508373], - [-16.48688, 66.507965], - [-16.486228, 66.507831], - [-16.485362, 66.507799], - [-16.485002, 66.507965], - [-16.484339, 66.507961], - [-16.484451, 66.507737], - [-16.483934, 66.507495], - [-16.483102, 66.507607], - [-16.482854, 66.507759], - [-16.482326, 66.507979], - [-16.481921, 66.507929], - [-16.481764, 66.507647], - [-16.481314, 66.507544], - [-16.480808, 66.50732], - [-16.480887, 66.506957], - [-16.481404, 66.506715], - [-16.481055, 66.50628], - [-16.480414, 66.506087], - [-16.4801, 66.506271], - [-16.47956, 66.506302], - [-16.479121, 66.506222], - [-16.478469, 66.50589], - [-16.478244, 66.505549], - [-16.477727, 66.505235], - [-16.4773, 66.505191], - [-16.477154, 66.504621], - [-16.476659, 66.504464], - [-16.476232, 66.504316], - [-16.475867, 66.504333], - [-16.475803, 66.505372], - [-16.475899, 66.506121], - [-16.475326, 66.50664], - [-16.474849, 66.507008], - [-16.473768, 66.507388], - [-16.473259, 66.507667], - [-16.472124, 66.507999], - [-16.471618, 66.5082], - [-16.471663, 66.508398], - [-16.472169, 66.508658], - [-16.472394, 66.508828], - [-16.472979, 66.508837], - [-16.47299, 66.509106], - [-16.473462, 66.509209], - [-16.473687, 66.509379], - [-16.473552, 66.509715], - [-16.473271, 66.510029], - [-16.4729, 66.510159], - [-16.473204, 66.510316], - [-16.473451, 66.5105], - [-16.473867, 66.510854], - [-16.474407, 66.510952], - [-16.475171, 66.510979], - [-16.475801, 66.510885], - [-16.476284, 66.5108], - [-16.476329, 66.510639], - [-16.476588, 66.510432], - [-16.476453, 66.510123], - [-16.476003, 66.509998], - [-16.476161, 66.509859], - [-16.477083, 66.50998], - [-16.477555, 66.510253], - [-16.477623, 66.510661], - [-16.477713, 66.510984], - [-16.478151, 66.511194], - [-16.478533, 66.51106], - [-16.479163, 66.510934], - [-16.479815, 66.51097], - [-16.480389, 66.511194], - [-16.480681, 66.511741], - [-16.480456, 66.512113], - [-16.480119, 66.512624], - [-16.479781, 66.512839], - [-16.478601, 66.513345], - [-16.477274, 66.51391], - [-16.475913, 66.514327], - [-16.474913, 66.514578], - [-16.473383, 66.514721], - [-16.471899, 66.514705], - [-16.470913, 66.514797], - [-16.469625, 66.515], - [-16.467446, 66.515127], - [-16.464807, 66.515307], - [-16.459965, 66.515611], - [-16.457015, 66.515874], - [-16.453318, 66.516166], - [-16.45028, 66.516347], - [-16.446273, 66.51641], - [-16.443633, 66.5166], - [-16.441932, 66.516834], - [-16.439706, 66.517227], - [-16.438942, 66.517455], - [-16.438036, 66.517832], - [-16.437503, 66.518314], - [-16.437098, 66.518647], - [-16.43674, 66.51872], - [-16.436557, 66.518659], - [-16.436398, 66.518317], - [-16.436581, 66.517931], - [-16.43732, 66.517379], - [-16.437479, 66.516882], - [-16.437225, 66.516568], - [-16.436613, 66.516232], - [-16.435309, 66.515878], - [-16.43348, 66.515668], - [-16.4322, 66.515586], - [-16.431564, 66.515409], - [-16.431309, 66.514962], - [-16.431071, 66.514252], - [-16.430689, 66.513685], - [-16.430276, 66.51321], - [-16.429035, 66.512912], - [-16.426761, 66.512269], - [-16.425378, 66.511825], - [-16.424662, 66.5116], - [-16.424185, 66.511045], - [-16.424249, 66.510259], - [-16.42506, 66.509521], - [-16.425203, 66.50916], - [-16.424782, 66.508884], - [-16.424384, 66.508586], - [-16.42479, 66.508399], - [-16.425163, 66.508675], - [-16.425513, 66.50915], - [-16.426094, 66.509343], - [-16.426817, 66.509594], - [-16.427533, 66.509435], - [-16.427501, 66.50922], - [-16.42789, 66.508982], - [-16.429202, 66.508776], - [-16.430149, 66.508694], - [-16.430991, 66.509014], - [-16.431572, 66.508786], - [-16.431715, 66.508475], - [-16.431333, 66.508126], - [-16.430626, 66.507959], - [-16.430236, 66.507819], - [-16.430125, 66.507264], - [-16.430697, 66.50663], - [-16.430848, 66.506117], - [-16.430339, 66.505882], - [-16.429528, 66.505448], - [-16.43053, 66.50516], - [-16.431333, 66.505065], - [-16.432478, 66.504925], - [-16.432558, 66.504681], - [-16.431969, 66.50425], - [-16.431349, 66.503591], - [-16.43115, 66.503011], - [-16.430077, 66.502405], - [-16.42925, 66.502291], - [-16.429171, 66.502091], - [-16.430077, 66.501939], - [-16.431055, 66.501609], - [-16.43092, 66.501248], - [-16.430308, 66.500405], - [-16.429624, 66.499799], - [-16.428622, 66.499086], - [-16.427636, 66.498572], - [-16.426324, 66.498569], - [-16.425243, 66.498296], - [-16.424098, 66.498239], - [-16.423398, 66.497932], - [-16.422611, 66.497871], - [-16.421291, 66.497941], - [-16.420544, 66.498265], - [-16.419796, 66.49823], - [-16.418143, 66.497783], - [-16.417316, 66.497684], - [-16.416457, 66.497875], - [-16.414978, 66.49784], - [-16.414008, 66.498005], - [-16.413444, 66.498296], - [-16.412553, 66.49841], - [-16.410812, 66.498344], - [-16.410192, 66.498651], - [-16.410263, 66.499136], - [-16.411042, 66.499377], - [-16.411877, 66.499396], - [-16.412529, 66.499568], - [-16.412951, 66.499986], - [-16.413515, 66.500636], - [-16.414633, 66.50093], - [-16.414204, 66.50118], - [-16.413663, 66.501297], - [-16.412009, 66.501354], - [-16.411771, 66.501614], - [-16.411564, 66.501931], - [-16.411731, 66.502191], - [-16.412295, 66.502445], - [-16.413154, 66.502572], - [-16.413321, 66.502873], - [-16.41387, 66.503069], - [-16.414673, 66.503307], - [-16.414768, 66.503526], - [-16.414005, 66.503596], - [-16.41356, 66.503729], - [-16.413114, 66.50403], - [-16.412597, 66.50402], - [-16.411866, 66.503741], - [-16.411158, 66.503602], - [-16.410031, 66.503683], - [-16.409427, 66.504089], - [-16.409491, 66.504596], - [-16.410381, 66.504951], - [-16.411081, 66.505471], - [-16.409904, 66.505674], - [-16.407869, 66.504951], - [-16.407232, 66.504114], - [-16.405674, 66.504216], - [-16.403766, 66.503569], - [-16.402367, 66.503049], - [-16.40119, 66.502973], - [-16.400045, 66.503316], - [-16.398804, 66.503772], - [-16.397596, 66.504089], - [-16.397087, 66.503747], - [-16.396101, 66.503404], - [-16.395688, 66.503848], - [-16.395274, 66.504064], - [-16.394225, 66.503696], - [-16.393366, 66.50381], - [-16.393239, 66.504152], - [-16.392762, 66.50471], - [-16.393396, 66.505232], - [-16.393419, 66.505644], - [-16.394003, 66.505895], - [-16.394656, 66.506146], - [-16.394453, 66.506854], - [-16.394206, 66.507482], - [-16.394521, 66.507912], - [-16.393756, 66.508253], - [-16.392789, 66.508513], - [-16.391777, 66.508387], - [-16.391507, 66.508764], - [-16.392294, 66.509131], - [-16.391822, 66.509445], - [-16.390878, 66.509562], - [-16.389821, 66.509356], - [-16.388179, 66.508988], - [-16.386402, 66.508764], - [-16.385638, 66.508952], - [-16.384153, 66.509212], - [-16.382725, 66.509166], - [-16.38223, 66.508897], - [-16.382162, 66.508619], - [-16.380813, 66.50844], - [-16.380318, 66.508135], - [-16.380926, 66.507821], - [-16.382702, 66.50748], - [-16.382815, 66.507086], - [-16.382095, 66.506871], - [-16.380813, 66.506692], - [-16.379509, 66.506826], - [-16.378249, 66.506692], - [-16.377395, 66.506441], - [-16.376788, 66.50653], - [-16.376585, 66.507014], - [-16.375956, 66.507005], - [-16.375393, 66.507158], - [-16.374561, 66.507346], - [-16.373842, 66.507158], - [-16.372987, 66.507086], - [-16.372582, 66.50679], - [-16.371953, 66.5067], - [-16.371435, 66.506844], - [-16.370693, 66.506862], - [-16.370648, 66.506638], - [-16.371435, 66.506297], - [-16.371705, 66.505938], - [-16.371256, 66.505652], - [-16.371615, 66.505311], - [-16.373099, 66.505508], - [-16.374044, 66.505678], - [-16.375078, 66.505427], - [-16.376338, 66.505221], - [-16.377012, 66.504881], - [-16.376585, 66.504737], - [-16.375821, 66.504656], - [-16.375393, 66.504253], - [-16.374044, 66.504235], - [-16.374606, 66.503885], - [-16.374764, 66.503383], - [-16.374044, 66.503302], - [-16.372852, 66.503634], - [-16.372627, 66.504208], - [-16.371953, 66.504414], - [-16.370086, 66.50428], - [-16.369726, 66.50384], - [-16.368624, 66.503285], - [-16.36651, 66.503258], - [-16.365183, 66.503437], - [-16.364486, 66.50393], - [-16.363272, 66.504253], - [-16.36271, 66.504737], - [-16.361923, 66.504871], - [-16.361203, 66.505311], - [-16.360258, 66.505795], - [-16.357627, 66.505616], - [-16.357223, 66.50601], - [-16.358055, 66.506189], - [-16.359651, 66.506387], - [-16.360146, 66.506826], - [-16.359809, 66.507086], - [-16.360371, 66.507194], - [-16.361315, 66.506871], - [-16.361653, 66.507032], - [-16.361248, 66.507283], - [-16.36163, 66.507498], - [-16.361923, 66.507956], - [-16.3628, 66.508162], - [-16.363587, 66.508099], - [-16.364082, 66.508368], - [-16.364644, 66.50861], - [-16.364981, 66.509013], - [-16.365948, 66.509193], - [-16.366803, 66.509282], - [-16.368332, 66.509479], - [-16.370716, 66.509255], - [-16.372897, 66.509004], - [-16.375191, 66.508664], - [-16.375831, 66.508558], - [-16.376785, 66.508831], - [-16.377993, 66.509148], - [-16.378725, 66.509458], - [-16.379472, 66.509522], - [-16.379758, 66.509338], - [-16.379981, 66.509116], - [-16.380442, 66.509357], - [-16.380919, 66.509876], - [-16.380649, 66.510301], - [-16.379218, 66.510498], - [-16.378041, 66.510358], - [-16.37618, 66.510073], - [-16.374431, 66.510136], - [-16.372253, 66.51013], - [-16.370456, 66.509813], - [-16.369136, 66.509743], - [-16.367355, 66.509826], - [-16.365542, 66.509629], - [-16.363713, 66.509173], - [-16.362091, 66.508533], - [-16.360533, 66.508197], - [-16.358466, 66.508038], - [-16.358036, 66.507487], - [-16.358033, 66.506923], - [-16.356465, 66.506264], - [-16.35554, 66.505867], - [-16.354482, 66.505651], - [-16.353164, 66.505357], - [-16.353236, 66.504866], - [-16.353979, 66.504149], - [-16.354373, 66.503388], - [-16.353758, 66.502858], - [-16.352306, 66.501781], - [-16.350679, 66.501075], - [-16.348889, 66.500317], - [-16.346764, 66.49999], - [-16.344979, 66.499761], - [-16.343138, 66.49976], - [-16.341764, 66.50011], - [-16.341101, 66.500225], - [-16.340252, 66.500027], - [-16.340173, 66.499764], - [-16.340513, 66.499423], - [-16.340636, 66.498944], - [-16.340118, 66.498731], - [-16.339279, 66.498098], - [-16.338046, 66.497776], - [-16.336903, 66.497964], - [-16.335888, 66.49794], - [-16.335603, 66.497412], - [-16.336197, 66.496779], - [-16.337549, 66.496057], - [-16.338081, 66.494838], - [-16.337895, 66.494033], - [-16.337133, 66.493478], - [-16.336389, 66.492949], - [-16.335257, 66.492425], - [-16.334616, 66.491876], - [-16.334249, 66.491389], - [-16.334494, 66.490704], - [-16.334588, 66.489957], - [-16.335476, 66.489265], - [-16.335783, 66.488528], - [-16.33486, 66.487699], - [-16.332967, 66.487086], - [-16.331368, 66.486729], - [-16.329779, 66.486445], - [-16.328573, 66.486279], - [-16.326681, 66.4861], - [-16.323725, 66.486004], - [-16.32158, 66.485895], - [-16.319451, 66.485712], - [-16.312817, 66.485239], - [-16.311132, 66.485253], - [-16.30948, 66.485492], - [-16.308637, 66.485732], - [-16.307217, 66.485893], - [-16.306705, 66.48608], - [-16.305991, 66.48634], - [-16.30537, 66.487395], - [-16.30377, 66.48844], - [-16.303119, 66.488937], - [-16.302265, 66.489461], - [-16.301675, 66.489753], - [-16.300839, 66.489809], - [-16.30004, 66.489649], - [-16.298923, 66.489318], - [-16.297626, 66.489021], - [-16.29535, 66.488698], - [-16.293326, 66.488279], - [-16.29159, 66.48828], - [-16.289724, 66.488232], - [-16.287654, 66.488106], - [-16.285546, 66.488164], - [-16.281785, 66.488411], - [-16.278045, 66.488842], - [-16.274222, 66.489316], - [-16.272411, 66.489542], - [-16.270701, 66.489758], - [-16.270141, 66.489832], - [-16.26927, 66.48999], - [-16.267459, 66.490273], - [-16.265985, 66.490919], - [-16.265396, 66.491244], - [-16.264395, 66.491524], - [-16.263521, 66.49163], - [-16.261943, 66.491784], - [-16.261096, 66.491878], - [-16.260837, 66.492235], - [-16.260577, 66.492652], - [-16.260273, 66.492943], - [-16.259116, 66.49306], - [-16.257615, 66.492962], - [-16.257111, 66.492963], - [-16.256669, 66.492994], - [-16.256, 66.493161], - [-16.254364, 66.494101], - [-16.253404, 66.494876], - [-16.252582, 66.495571], - [-16.252428, 66.495973], - [-16.252475, 66.496335], - [-16.253555, 66.496878], - [-16.254296, 66.497107], - [-16.255771, 66.497548], - [-16.256568, 66.49779], - [-16.257368, 66.498244], - [-16.258404, 66.498572], - [-16.259195, 66.498862], - [-16.259732, 66.499215], - [-16.260073, 66.499655], - [-16.260014, 66.499988], - [-16.259626, 66.500251], - [-16.258979, 66.500321], - [-16.258033, 66.500439], - [-16.254615, 66.501189], - [-16.252675, 66.501827], - [-16.251282, 66.502366], - [-16.2507, 66.50267], - [-16.250021, 66.503262], - [-16.249605, 66.504312], - [-16.249464, 66.505372], - [-16.249181, 66.505911], - [-16.249028, 66.506591], - [-16.248758, 66.506947], - [-16.248793, 66.507229], - [-16.249487, 66.507915], - [-16.25052, 66.508482], - [-16.251479, 66.508889], - [-16.252359, 66.509222], - [-16.253308, 66.509417], - [-16.254035, 66.509548], - [-16.254936, 66.50973], - [-16.255935, 66.50999], - [-16.256508, 66.510238], - [-16.256971, 66.510572], - [-16.256521, 66.511087], - [-16.255936, 66.511637], - [-16.255244, 66.512359], - [-16.253757, 66.51338], - [-16.251294, 66.514228], - [-16.249852, 66.514491], - [-16.248393, 66.51457], - [-16.246946, 66.514566], - [-16.244771, 66.514476], - [-16.243653, 66.514266], - [-16.242422, 66.51389], - [-16.241689, 66.513492], - [-16.24129, 66.512975], - [-16.240936, 66.511561], - [-16.240161, 66.510352], - [-16.239788, 66.509526], - [-16.239966, 66.508962], - [-16.240556, 66.508184], - [-16.240996, 66.508023], - [-16.241352, 66.508003], - [-16.241642, 66.508082], - [-16.241568, 66.508275], - [-16.241193, 66.508381], - [-16.240844, 66.508719], - [-16.240653, 66.509084], - [-16.240661, 66.509302], - [-16.24111, 66.509336], - [-16.241435, 66.509697], - [-16.24116, 66.509956], - [-16.240846, 66.510145], - [-16.24126, 66.510257], - [-16.241665, 66.510412], - [-16.242087, 66.510582], - [-16.242399, 66.510741], - [-16.242424, 66.510933], - [-16.242408, 66.511129], - [-16.242707, 66.511215], - [-16.242557, 66.511421], - [-16.242491, 66.511577], - [-16.242316, 66.511659], - [-16.24234, 66.512026], - [-16.242499, 66.512183], - [-16.242383, 66.512395], - [-16.242441, 66.512581], - [-16.242241, 66.512697], - [-16.242208, 66.512846], - [-16.242266, 66.512982], - [-16.242499, 66.513071], - [-16.242433, 66.513247], - [-16.242607, 66.513463], - [-16.242898, 66.513585], - [-16.243181, 66.513774], - [-16.243389, 66.513857], - [-16.24358, 66.513894], - [-16.243214, 66.513304], - [-16.243173, 66.512995], - [-16.243348, 66.512843], - [-16.243439, 66.512657], - [-16.243338, 66.512513], - [-16.243399, 66.512433], - [-16.243539, 66.512365], - [-16.243552, 66.512255], - [-16.243393, 66.512159], - [-16.243429, 66.512065], - [-16.243725, 66.511613], - [-16.243893, 66.511427], - [-16.243699, 66.511256], - [-16.243745, 66.511003], - [-16.24367, 66.510778], - [-16.243646, 66.510532], - [-16.243652, 66.510379], - [-16.243817, 66.510311], - [-16.244152, 66.51037], - [-16.244329, 66.510464], - [-16.24467, 66.51049], - [-16.24517, 66.510438], - [-16.245334, 66.510283], - [-16.245211, 66.509975], - [-16.245704, 66.509895], - [-16.246178, 66.509961], - [-16.247157, 66.509722], - [-16.247492, 66.509749], - [-16.248298, 66.509669], - [-16.248839, 66.50959], - [-16.249363, 66.509785], - [-16.251074, 66.510205], - [-16.252623, 66.5107], - [-16.252948, 66.510849], - [-16.253297, 66.510942], - [-16.253763, 66.511055], - [-16.254292, 66.511077], - [-16.254594, 66.511095], - [-16.254786, 66.510946], - [-16.255052, 66.510783], - [-16.255096, 66.510575], - [-16.254486, 66.510462], - [-16.254012, 66.510359], - [-16.253438, 66.510346], - [-16.253038, 66.510397], - [-16.253147, 66.510256], - [-16.253047, 66.510123], - [-16.25274, 66.51007], - [-16.252432, 66.510117], - [-16.252299, 66.510074], - [-16.25195, 66.509812], - [-16.251176, 66.509878], - [-16.250902, 66.509693], - [-16.250424, 66.509653], - [-16.250428, 66.509613], - [-16.251001, 66.509563], - [-16.251126, 66.50949], - [-16.250577, 66.50946], - [-16.250195, 66.509451], - [-16.250014, 66.509386], - [-16.250228, 66.509132], - [-16.25017, 66.508897], - [-16.249854, 66.508721], - [-16.249271, 66.508605], - [-16.248682, 66.508604], - [-16.248348, 66.508532], - [-16.248415, 66.50829], - [-16.247965, 66.508068], - [-16.247824, 66.507412], - [-16.247508, 66.50713], - [-16.247034, 66.506908], - [-16.246119, 66.506447], - [-16.245353, 66.505943], - [-16.244506, 66.505402], - [-16.243588, 66.504786], - [-16.242929, 66.50409], - [-16.242449, 66.503347], - [-16.242623, 66.502582], - [-16.242412, 66.502024], - [-16.242137, 66.501674], - [-16.242106, 66.501442], - [-16.24173, 66.501288], - [-16.241118, 66.501381], - [-16.240683, 66.501564], - [-16.240318, 66.501902], - [-16.239742, 66.501996], - [-16.23913, 66.502], - [-16.238766, 66.50186], - [-16.238574, 66.501638], - [-16.238566, 66.501498], - [-16.23857, 66.501387], - [-16.238682, 66.501249], - [-16.239305, 66.50088], - [-16.239586, 66.500825], - [-16.239839, 66.500668], - [-16.239968, 66.500529], - [-16.239737, 66.500426], - [-16.239457, 66.500473], - [-16.23921, 66.500562], - [-16.238886, 66.500536], - [-16.238378, 66.500527], - [-16.238102, 66.500428], - [-16.23798, 66.500288], - [-16.238092, 66.500152], - [-16.238039, 66.499898], - [-16.237935, 66.499661], - [-16.238293, 66.499544], - [-16.238649, 66.499378], - [-16.238671, 66.499216], - [-16.23892, 66.499139], - [-16.23912, 66.498984], - [-16.239496, 66.49912], - [-16.239767, 66.499252], - [-16.239873, 66.499472], - [-16.240155, 66.499758], - [-16.240472, 66.49988], - [-16.240555, 66.499589], - [-16.240743, 66.499331], - [-16.240414, 66.499008], - [-16.24046, 66.498715], - [-16.240731, 66.498801], - [-16.240814, 66.49897], - [-16.241543, 66.498975], - [-16.242286, 66.498924], - [-16.242589, 66.498884], - [-16.242922, 66.498874], - [-16.242556, 66.499043], - [-16.242431, 66.499146], - [-16.242681, 66.499216], - [-16.242989, 66.49909], - [-16.243088, 66.499189], - [-16.24293, 66.499312], - [-16.243172, 66.499428], - [-16.243704, 66.499345], - [-16.243945, 66.499435], - [-16.244191, 66.499508], - [-16.244461, 66.499411], - [-16.24471, 66.499146], - [-16.244978, 66.499171], - [-16.245194, 66.499098], - [-16.245161, 66.498995], - [-16.2452, 66.498912], - [-16.245294, 66.498955], - [-16.245495, 66.499048], - [-16.245868, 66.498959], - [-16.246408, 66.498776], - [-16.246476, 66.498794], - [-16.246563, 66.498871], - [-16.247137, 66.49896], - [-16.247281, 66.498905], - [-16.247415, 66.498894], - [-16.247492, 66.498891], - [-16.247524, 66.49891], - [-16.247681, 66.498887], - [-16.247995, 66.498989], - [-16.248164, 66.499005], - [-16.248248, 66.498981], - [-16.248377, 66.498986], - [-16.248439, 66.498948], - [-16.248275, 66.498865], - [-16.248102, 66.498877], - [-16.24805, 66.498853], - [-16.248091, 66.498832], - [-16.248008, 66.498789], - [-16.248193, 66.498741], - [-16.248364, 66.498745], - [-16.24878, 66.498819], - [-16.248847, 66.498794], - [-16.248844, 66.498766], - [-16.248803, 66.498764], - [-16.24879, 66.498719], - [-16.248771, 66.498712], - [-16.248718, 66.498721], - [-16.24855, 66.498638], - [-16.248585, 66.498617], - [-16.248559, 66.498586], - [-16.248497, 66.498597], - [-16.248399, 66.498556], - [-16.248419, 66.498503], - [-16.248564, 66.498429], - [-16.24848, 66.498248], - [-16.249268, 66.497549], - [-16.249351, 66.497296], - [-16.249563, 66.49709], - [-16.250127, 66.496841], - [-16.250174, 66.49656], - [-16.249915, 66.496363], - [-16.249539, 66.496077], - [-16.249035, 66.495785], - [-16.248754, 66.495636], - [-16.248911, 66.495474], - [-16.249097, 66.495125], - [-16.249953, 66.494993], - [-16.251317, 66.494794], - [-16.251626, 66.494769], - [-16.251833, 66.4945], - [-16.251993, 66.494497], - [-16.252136, 66.494359], - [-16.252173, 66.494074], - [-16.252371, 66.493986], - [-16.25249, 66.493856], - [-16.252826, 66.493629], - [-16.253559, 66.493331], - [-16.25372, 66.49323], - [-16.253748, 66.493108], - [-16.253565, 66.493035], - [-16.253755, 66.492911], - [-16.254272, 66.492746], - [-16.25463, 66.492736], - [-16.254705, 66.492637], - [-16.254572, 66.492265], - [-16.254098, 66.492036], - [-16.253549, 66.491957], - [-16.253191, 66.491837], - [-16.253332, 66.491569], - [-16.253274, 66.4913], - [-16.252725, 66.491214], - [-16.252085, 66.491227], - [-16.251902, 66.491224], - [-16.251702, 66.491283], - [-16.251486, 66.491257], - [-16.251536, 66.491151], - [-16.251475, 66.490993], - [-16.251444, 66.490875], - [-16.251353, 66.490762], - [-16.25137, 66.490683], - [-16.251669, 66.490673], - [-16.25231, 66.490489], - [-16.252567, 66.490371], - [-16.252808, 66.490155], - [-16.252991, 66.490006], - [-16.253063, 66.489815], - [-16.25285, 66.489661], - [-16.252675, 66.489535], - [-16.252235, 66.489528], - [-16.251711, 66.489601], - [-16.251195, 66.489608], - [-16.250729, 66.489495], - [-16.25018, 66.489439], - [-16.249515, 66.489472], - [-16.249082, 66.489518], - [-16.248059, 66.489299], - [-16.247311, 66.48923], - [-16.24687, 66.489283], - [-16.246155, 66.489253], - [-16.245955, 66.489352], - [-16.24534, 66.489518], - [-16.24493, 66.48981], - [-16.244882, 66.489877], - [-16.245024, 66.490009], - [-16.244741, 66.490033], - [-16.244516, 66.48996], - [-16.244242, 66.489863], - [-16.244067, 66.48998], - [-16.244017, 66.490165], - [-16.243918, 66.490391], - [-16.244117, 66.490454], - [-16.244417, 66.490583], - [-16.244641, 66.490653], - [-16.24472, 66.491051], - [-16.244966, 66.491363], - [-16.245149, 66.491559], - [-16.245165, 66.491721], - [-16.245519, 66.49193], - [-16.245681, 66.492073], - [-16.245722, 66.492199], - [-16.246005, 66.492199], - [-16.246221, 66.492123], - [-16.246188, 66.492013], - [-16.24613, 66.4919], - [-16.246163, 66.491794], - [-16.246562, 66.49198], - [-16.246745, 66.492338], - [-16.24682, 66.492494], - [-16.246604, 66.492584], - [-16.246314, 66.492679], - [-16.245781, 66.492531], - [-16.245423, 66.492547], - [-16.245099, 66.492534], - [-16.244225, 66.492289], - [-16.24337, 66.492025], - [-16.24267, 66.491947], - [-16.242379, 66.491957], - [-16.242096, 66.492089], - [-16.241893, 66.492215], - [-16.241256, 66.492109], - [-16.240582, 66.492004], - [-16.240217, 66.491771], - [-16.240002, 66.490996], - [-16.239749, 66.490142], - [-16.239318, 66.489913], - [-16.238943, 66.489521], - [-16.238562, 66.488812], - [-16.238387, 66.488248], - [-16.238186, 66.487216], - [-16.237855, 66.487365], - [-16.237796, 66.48764], - [-16.23743, 66.487737], - [-16.237389, 66.487912], - [-16.237489, 66.488102], - [-16.237081, 66.487992], - [-16.236748, 66.487869], - [-16.236649, 66.488005], - [-16.236865, 66.488078], - [-16.237148, 66.488141], - [-16.237148, 66.488224], - [-16.236957, 66.488327], - [-16.237206, 66.488496], - [-16.237114, 66.488699], - [-16.237369, 66.488933], - [-16.237156, 66.489127], - [-16.236798, 66.489213], - [-16.236624, 66.489346], - [-16.236724, 66.489542], - [-16.236873, 66.489704], - [-16.236748, 66.48988], - [-16.236457, 66.489989], - [-16.23605, 66.490056], - [-16.235418, 66.490006], - [-16.234927, 66.489989], - [-16.234713, 66.49004], - [-16.234761, 66.490212], - [-16.23426, 66.490497], - [-16.233979, 66.490789], - [-16.233984, 66.491186], - [-16.233779, 66.491343], - [-16.23346, 66.491418], - [-16.232684, 66.491362], - [-16.231814, 66.491285], - [-16.231606, 66.491461], - [-16.23097, 66.49139], - [-16.23086, 66.49113], - [-16.230549, 66.491046], - [-16.230544, 66.491396], - [-16.230735, 66.491638], - [-16.231489, 66.492069], - [-16.231559, 66.492262], - [-16.231924, 66.492322], - [-16.232116, 66.492703], - [-16.23126, 66.492824], - [-16.23097, 66.492581], - [-16.231191, 66.492322], - [-16.230528, 66.492228], - [-16.230057, 66.492553], - [-16.22909, 66.49279], - [-16.228537, 66.492697], - [-16.228094, 66.492851], - [-16.227914, 66.493072], - [-16.227996, 66.493619], - [-16.22779, 66.494257], - [-16.227071, 66.494583], - [-16.227588, 66.495532], - [-16.228329, 66.496579], - [-16.229256, 66.497141], - [-16.23108, 66.498492], - [-16.231376, 66.498852], - [-16.232108, 66.499163], - [-16.232108, 66.499455], - [-16.231742, 66.499488], - [-16.231459, 66.499568], - [-16.231359, 66.499734], - [-16.231556, 66.500003], - [-16.231858, 66.500178], - [-16.232106, 66.500279], - [-16.23244, 66.500337], - [-16.232776, 66.500358], - [-16.233401, 66.500535], - [-16.233954, 66.500908], - [-16.233738, 66.501074], - [-16.233264, 66.501193], - [-16.232914, 66.501306], - [-16.23274, 66.501548], - [-16.232773, 66.5018], - [-16.232532, 66.502012], - [-16.232049, 66.502038], - [-16.231392, 66.502098], - [-16.230943, 66.502251], - [-16.230436, 66.5023], - [-16.229983, 66.502414], - [-16.230369, 66.50246], - [-16.230822, 66.502471], - [-16.23273, 66.50255], - [-16.233875, 66.5026], - [-16.233907, 66.502445], - [-16.234503, 66.502366], - [-16.235034, 66.502461], - [-16.235322, 66.502673], - [-16.236137, 66.502885], - [-16.23641, 66.503033], - [-16.236775, 66.503029], - [-16.237118, 66.502912], - [-16.237235, 66.502759], - [-16.237118, 66.502441], - [-16.236969, 66.502176], - [-16.237551, 66.502063], - [-16.239164, 66.502388], - [-16.239832, 66.502652], - [-16.239647, 66.502945], - [-16.239164, 66.503104], - [-16.23775, 66.503303], - [-16.236004, 66.503376], - [-16.235189, 66.50327], - [-16.233692, 66.502866], - [-16.231703, 66.502695], - [-16.228987, 66.502657], - [-16.228103, 66.502594], - [-16.226889, 66.502746], - [-16.224776, 66.502939], - [-16.223595, 66.502958], - [-16.222663, 66.503297], - [-16.221555, 66.503817], - [-16.220587, 66.504108], - [-16.220002, 66.504318], - [-16.219399, 66.504613], - [-16.217391, 66.505478], - [-16.21565, 66.50653], - [-16.21436, 66.507218], - [-16.212675, 66.508861], - [-16.211602, 66.509382], - [-16.211367, 66.509997], - [-16.210215, 66.511999], - [-16.209012, 66.513866], - [-16.208123, 66.514752], - [-16.206297, 66.515446], - [-16.205222, 66.515921], - [-16.204695, 66.516371], - [-16.204173, 66.517048], - [-16.204251, 66.51789], - [-16.204277, 66.518901], - [-16.204611, 66.52097], - [-16.205535, 66.52142], - [-16.205997, 66.522341], - [-16.204251, 66.523507], - [-16.203326, 66.524449], - [-16.203264, 66.524816], - [-16.203572, 66.525047], - [-16.204521, 66.525701], - [-16.20468, 66.526819], - [-16.204862, 66.527398], - [-16.205407, 66.527914], - [-16.206006, 66.528765], - [-16.205225, 66.529973], - [-16.20419, 66.531174], - [-16.203373, 66.531607], - [-16.202465, 66.53173], - [-16.201558, 66.531986], - [-16.20004, 66.532595], - [-16.198215, 66.533907], - [-16.198114, 66.534163], - [-16.198329, 66.534735], - [-16.198014, 66.535127], - [-16.197068, 66.535935], - [-16.196778, 66.536397], - [-16.196778, 66.536758], - [-16.196791, 66.537396], - [-16.19664, 66.537647], - [-16.196375, 66.537928], - [-16.195719, 66.537772], - [-16.194459, 66.537797], - [-16.193526, 66.537677], - [-16.192417, 66.537235], - [-16.191525, 66.536536], - [-16.19132, 66.53583], - [-16.191416, 66.535079], - [-16.1919, 66.534168], - [-16.191786, 66.533255], - [-16.191522, 66.532622], - [-16.191635, 66.531985], - [-16.191623, 66.531598], - [-16.191274, 66.531392], - [-16.190538, 66.53093], - [-16.18948, 66.530669], - [-16.188131, 66.530233], - [-16.186544, 66.529865], - [-16.185415, 66.529641], - [-16.183, 66.529715], - [-16.180439, 66.530395], - [-16.178896, 66.53094], - [-16.174665, 66.53216], - [-16.172948, 66.532629], - [-16.171741, 66.533003], - [-16.170525, 66.53314], - [-16.168017, 66.533187], - [-16.164499, 66.533044], - [-16.162572, 66.533146], - [-16.160874, 66.533354], - [-16.158986, 66.533695], - [-16.157574, 66.533942], - [-16.155603, 66.534292], - [-16.153043, 66.534032], - [-16.150355, 66.533942], - [-16.147531, 66.53397], - [-16.146814, 66.534025], - [-16.146069, 66.534256], - [-16.144989, 66.534036], - [-16.14402, 66.533745], - [-16.14319, 66.53341], - [-16.142365, 66.533182], - [-16.141502, 66.533117], - [-16.140149, 66.532795], - [-16.138188, 66.53268], - [-16.137044, 66.532589], - [-16.13612, 66.532256], - [-16.134492, 66.531936], - [-16.132786, 66.531938], - [-16.130708, 66.532099], - [-16.12967, 66.53223], - [-16.12761, 66.532947], - [-16.126557, 66.533605], - [-16.125576, 66.53388], - [-16.124445, 66.533933], - [-16.123361, 66.53367], - [-16.12145, 66.533533], - [-16.118158, 66.533139], - [-16.116324, 66.532427], - [-16.113256, 66.533406], - [-16.111698, 66.533859], - [-16.109874, 66.533982], - [-16.107589, 66.533713], - [-16.105508, 66.532775], - [-16.103692, 66.532279], - [-16.101707, 66.531854], - [-16.099704, 66.531599], - [-16.097284, 66.530821], - [-16.094996, 66.529931], - [-16.092254, 66.529345], - [-16.091046, 66.528882], - [-16.090066, 66.528767], - [-16.089619, 66.528641], - [-16.089548, 66.528488], - [-16.089717, 66.528311], - [-16.090011, 66.528221], - [-16.090305, 66.528223], - [-16.091409, 66.528335], - [-16.093053, 66.52851], - [-16.094234, 66.528514], - [-16.095414, 66.529118], - [-16.096108, 66.529661], - [-16.096647, 66.529701], - [-16.097238, 66.529333], - [-16.098316, 66.529364], - [-16.099215, 66.529154], - [-16.100679, 66.529026], - [-16.102066, 66.529129], - [-16.10371, 66.529507], - [-16.103889, 66.530141], - [-16.102166, 66.530209], - [-16.101014, 66.530218], - [-16.100166, 66.530566], - [-16.101114, 66.530905], - [-16.102653, 66.531413], - [-16.103633, 66.531727], - [-16.104891, 66.531768], - [-16.104913, 66.531371], - [-16.105636, 66.531277], - [-16.106791, 66.530949], - [-16.107666, 66.53155], - [-16.108563, 66.532156], - [-16.109334, 66.53278], - [-16.11031, 66.533117], - [-16.111349, 66.533043], - [-16.11334, 66.532524], - [-16.114523, 66.531492], - [-16.114059, 66.529333], - [-16.113441, 66.529202], - [-16.113178, 66.528826], - [-16.113254, 66.528579], - [-16.11243, 66.528302], - [-16.111853, 66.527991], - [-16.1117, 66.527686], - [-16.111113, 66.527561], - [-16.111003, 66.527426], - [-16.10904, 66.527091], - [-16.108872, 66.526991], - [-16.108437, 66.52686], - [-16.108114, 66.526779], - [-16.108174, 66.526627], - [-16.108148, 66.526502], - [-16.108046, 66.526414], - [-16.107783, 66.526488], - [-16.107689, 66.526651], - [-16.107494, 66.526816], - [-16.107273, 66.526844], - [-16.106848, 66.526552], - [-16.106449, 66.526332], - [-16.106084, 66.526204], - [-16.105291, 66.526181], - [-16.104996, 66.526136], - [-16.104801, 66.526001], - [-16.104427, 66.525865], - [-16.104018, 66.525886], - [-16.103603, 66.525933], - [-16.103059, 66.526079], - [-16.102677, 66.526048], - [-16.102439, 66.525899], - [-16.102345, 66.525612], - [-16.102328, 66.525429], - [-16.102099, 66.525378], - [-16.101759, 66.525106], - [-16.100461, 66.524811], - [-16.098758, 66.52471], - [-16.098446, 66.524678], - [-16.098174, 66.524674], - [-16.097843, 66.524725], - [-16.097783, 66.52482], - [-16.097264, 66.524904], - [-16.095933, 66.524758], - [-16.094593, 66.52474], - [-16.094682, 66.525165], - [-16.094954, 66.52525], - [-16.095029, 66.525333], - [-16.0952, 66.525422], - [-16.095132, 66.52551], - [-16.095217, 66.5257], - [-16.095557, 66.525913], - [-16.095747, 66.525953], - [-16.095933, 66.52675], - [-16.095363, 66.527134], - [-16.093753, 66.527323], - [-16.090478, 66.526992], - [-16.088686, 66.526643], - [-16.087369, 66.526086], - [-16.08545, 66.525221], - [-16.084713, 66.524963], - [-16.083637, 66.524612], - [-16.083425, 66.524446], - [-16.08339, 66.524287], - [-16.083555, 66.524148], - [-16.084048, 66.52408], - [-16.0844, 66.52411], - [-16.08466, 66.524057], - [-16.085072, 66.524015], - [-16.085354, 66.524169], - [-16.085577, 66.524123], - [-16.085719, 66.524034], - [-16.085695, 66.52394], - [-16.085836, 66.523757], - [-16.086142, 66.523682], - [-16.086859, 66.523574], - [-16.087001, 66.523331], - [-16.086848, 66.523181], - [-16.086236, 66.523134], - [-16.085389, 66.523115], - [-16.084672, 66.523223], - [-16.083943, 66.523218], - [-16.082684, 66.522962], - [-16.081931, 66.522829], - [-16.081087, 66.522615], - [-16.081037, 66.5223], - [-16.081558, 66.522064], - [-16.082019, 66.521724], - [-16.082649, 66.521864], - [-16.083072, 66.521766], - [-16.083449, 66.521649], - [-16.083272, 66.521213], - [-16.083002, 66.520927], - [-16.082719, 66.5208], - [-16.082308, 66.520566], - [-16.081562, 66.520472], - [-16.081449, 66.520018], - [-16.080943, 66.519741], - [-16.080108, 66.519124], - [-16.079696, 66.518799], - [-16.07857, 66.518685], - [-16.077579, 66.518677], - [-16.076549, 66.518554], - [-16.076222, 66.518357], - [-16.075968, 66.518021], - [-16.075897, 66.517764], - [-16.075731, 66.517609], - [-16.075615, 66.517412], - [-16.075121, 66.51744], - [-16.074592, 66.517567], - [-16.074286, 66.517698], - [-16.073768, 66.517675], - [-16.073521, 66.51774], - [-16.073239, 66.517848], - [-16.073098, 66.518087], - [-16.072616, 66.518302], - [-16.072651, 66.518617], - [-16.072454, 66.518877], - [-16.072121, 66.518989], - [-16.071569, 66.51894], - [-16.071345, 66.518766], - [-16.071116, 66.518564], - [-16.07124, 66.518279], - [-16.071487, 66.518068], - [-16.071816, 66.51782], - [-16.072251, 66.517778], - [-16.07278, 66.517693], - [-16.072745, 66.517548], - [-16.072051, 66.517351], - [-16.071407, 66.517059], - [-16.071781, 66.516925], - [-16.071992, 66.516709], - [-16.07119, 66.516468], - [-16.070654, 66.516365], - [-16.070013, 66.516391], - [-16.069618, 66.516258], - [-16.068913, 66.516098], - [-16.068842, 66.515869], - [-16.069018, 66.515822], - [-16.069183, 66.515902], - [-16.069359, 66.515986], - [-16.069559, 66.515958], - [-16.069665, 66.515859], - [-16.069531, 66.515732], - [-16.069677, 66.515559], - [-16.069348, 66.515348], - [-16.069101, 66.515076], - [-16.069371, 66.514847], - [-16.069571, 66.514739], - [-16.069489, 66.514627], - [-16.069442, 66.514463], - [-16.069395, 66.514322], - [-16.069371, 66.51413], - [-16.068818, 66.514167], - [-16.068654, 66.514036], - [-16.06883, 66.513938], - [-16.068866, 66.513764], - [-16.068422, 66.513729], - [-16.067583, 66.51345], - [-16.066301, 66.513089], - [-16.065431, 66.513005], - [-16.064972, 66.513141], - [-16.064408, 66.513492], - [-16.064067, 66.5136], - [-16.063714, 66.513638], - [-16.063354, 66.513703], - [-16.063014, 66.513772], - [-16.062711, 66.513727], - [-16.062402, 66.513822], - [-16.062485, 66.513963], - [-16.06259, 66.514071], - [-16.062508, 66.51424], - [-16.062367, 66.514418], - [-16.06272, 66.514643], - [-16.062508, 66.514985], - [-16.062249, 66.515205], - [-16.062379, 66.515575], - [-16.06312, 66.516175], - [-16.062861, 66.516475], - [-16.062943, 66.517019], - [-16.062685, 66.51731], - [-16.06259, 66.517713], - [-16.062191, 66.518247], - [-16.062602, 66.51872], - [-16.063167, 66.51895], - [-16.063156, 66.519514], - [-16.062461, 66.519517], - [-16.062085, 66.519648], - [-16.061838, 66.519873], - [-16.061743, 66.520237], - [-16.061979, 66.520759], - [-16.062426, 66.52133], - [-16.062085, 66.52186], - [-16.061991, 66.522104], - [-16.06132, 66.522071], - [-16.061167, 66.5223], - [-16.061282, 66.522496], - [-16.060626, 66.522596], - [-16.059968, 66.522596], - [-16.059309, 66.52261], - [-16.058744, 66.522566], - [-16.05718, 66.522371], - [-16.05638, 66.522272], - [-16.055745, 66.522118], - [-16.055169, 66.521893], - [-16.054439, 66.521804], - [-16.053981, 66.52171], - [-16.053369, 66.521827], - [-16.053031, 66.52217], - [-16.052193, 66.522094], - [-16.051299, 66.522291], - [-16.050345, 66.522562], - [-16.049864, 66.522811], - [-16.049653, 66.522921], - [-16.049588, 66.522955], - [-16.049471, 66.523015], - [-16.04994, 66.523331], - [-16.050272, 66.523522], - [-16.050793, 66.523739], - [-16.051405, 66.523823], - [-16.052358, 66.523809], - [-16.052475, 66.524034], - [-16.052417, 66.524245], - [-16.052783, 66.524381], - [-16.053146, 66.52432], - [-16.053615, 66.524424], - [-16.053831, 66.524954], - [-16.05424, 66.52506], - [-16.05464, 66.525088], - [-16.055616, 66.525079], - [-16.056134, 66.525257], - [-16.056685, 66.525343], - [-16.057157, 66.525285], - [-16.057621, 66.52514], - [-16.05817, 66.52506], - [-16.058458, 66.525009], - [-16.05838, 66.524816], - [-16.058564, 66.524729], - [-16.058998, 66.524603], - [-16.060551, 66.524841], - [-16.061494, 66.525274], - [-16.0629, 66.525597], - [-16.063655, 66.526024], - [-16.064006, 66.526122], - [-16.064417, 66.526174], - [-16.064796, 66.526301], - [-16.06499, 66.526515], - [-16.065494, 66.526513], - [-16.065852, 66.526374], - [-16.066405, 66.526005], - [-16.066867, 66.525195], - [-16.066808, 66.5244], - [-16.066814, 66.52369], - [-16.067075, 66.523628], - [-16.067555, 66.523631], - [-16.068014, 66.523498], - [-16.068231, 66.523316], - [-16.06838, 66.52323], - [-16.068838, 66.523141], - [-16.069362, 66.522786], - [-16.06952, 66.522634], - [-16.069819, 66.522528], - [-16.069967, 66.522405], - [-16.070135, 66.522263], - [-16.070651, 66.522037], - [-16.071108, 66.521706], - [-16.071557, 66.521875], - [-16.071973, 66.521911], - [-16.072855, 66.521835], - [-16.073146, 66.521829], - [-16.073379, 66.521759], - [-16.073662, 66.52163], - [-16.074004, 66.521571], - [-16.074518, 66.52162], - [-16.074893, 66.521855], - [-16.074942, 66.522064], - [-16.07525, 66.522239], - [-16.075624, 66.522183], - [-16.076074, 66.522137], - [-16.076523, 66.5221], - [-16.076884, 66.522206], - [-16.07688, 66.522455], - [-16.076456, 66.52267], - [-16.075716, 66.522703], - [-16.075059, 66.522607], - [-16.074005, 66.522456], - [-16.07303, 66.522465], - [-16.072007, 66.522594], - [-16.070784, 66.522922], - [-16.06988, 66.52326], - [-16.068745, 66.523572], - [-16.067923, 66.523856], - [-16.067349, 66.524268], - [-16.067624, 66.524413], - [-16.068039, 66.524863], - [-16.067754, 66.525529], - [-16.067331, 66.525941], - [-16.066849, 66.526294], - [-16.066446, 66.526529], - [-16.065752, 66.526788], - [-16.06466, 66.52706], - [-16.063939, 66.527219], - [-16.063437, 66.52729], - [-16.061908, 66.527267], - [-16.060144, 66.52715], - [-16.059297, 66.526841], - [-16.058297, 66.52655], - [-16.056145, 66.525852], - [-16.054933, 66.525571], - [-16.053651, 66.525374], - [-16.050252, 66.524418], - [-16.048817, 66.523828], - [-16.047412, 66.523192], - [-16.0463, 66.522966], - [-16.044924, 66.52291], - [-16.042417, 66.522756], - [-16.041478, 66.522666], - [-16.040324, 66.522798], - [-16.038668, 66.523074], - [-16.036678, 66.523552], - [-16.034478, 66.524156], - [-16.032702, 66.524761], - [-16.031347, 66.525475], - [-16.030918, 66.526784], - [-16.030139, 66.528378], - [-16.029721, 66.530189], - [-16.030171, 66.531105], - [-16.029059, 66.533152], - [-16.028591, 66.536776], - [-16.028969, 66.536954], - [-16.029847, 66.536773], - [-16.03125, 66.536765], - [-16.03216, 66.536332], - [-16.033067, 66.536119], - [-16.033184, 66.536623], - [-16.032713, 66.537063], - [-16.031788, 66.537373], - [-16.030665, 66.537277], - [-16.029599, 66.537622], - [-16.027121, 66.537218], - [-16.023882, 66.53721], - [-16.020709, 66.5367], - [-16.017718, 66.535376], - [-16.017772, 66.534796], - [-16.016062, 66.533483], - [-16.013127, 66.531363], - [-16.011298, 66.529323], - [-16.009981, 66.528352], - [-16.008365, 66.527866], - [-16.007528, 66.527248], - [-16.008159, 66.525954], - [-16.007528, 66.524947], - [-16.007959, 66.523027], - [-16.007384, 66.522454], - [-16.005948, 66.521742], - [-16.005243, 66.520942], - [-16.005505, 66.52002], - [-16.005679, 66.519011], - [-16.005035, 66.518379], - [-16.003653, 66.5179], - [-16.000774, 66.516825], - [-15.99728, 66.516044], - [-15.995621, 66.515701], - [-15.993741, 66.515751], - [-15.99242, 66.51641], - [-15.984347, 66.516835], - [-15.98038, 66.517675], - [-15.978412, 66.51811], - [-15.976436, 66.518329], - [-15.974633, 66.518095], - [-15.973147, 66.517583], - [-15.972908, 66.516179], - [-15.972661, 66.515505], - [-15.973056, 66.514757], - [-15.972811, 66.51429], - [-15.972847, 66.513793], - [-15.972721, 66.513457], - [-15.972274, 66.512971], - [-15.971633, 66.512291], - [-15.971411, 66.511745], - [-15.971364, 66.51141], - [-15.971421, 66.511214], - [-15.971701, 66.511085], - [-15.971995, 66.51119], - [-15.972297, 66.511262], - [-15.972033, 66.511383], - [-15.971889, 66.511497], - [-15.972018, 66.51172], - [-15.972308, 66.51198], - [-15.972795, 66.511972], - [-15.973248, 66.512074], - [-15.973512, 66.512366], - [-15.973723, 66.512577], - [-15.974176, 66.512826], - [-15.974637, 66.512823], - [-15.975185, 66.512767], - [-15.975527, 66.512911], - [-15.976093, 66.512835], - [-15.976667, 66.512908], - [-15.976961, 66.512832], - [-15.977021, 66.512664], - [-15.977257, 66.512394], - [-15.977021, 66.512252], - [-15.976884, 66.512079], - [-15.977021, 66.511996], - [-15.977513, 66.512049], - [-15.9781, 66.512143], - [-15.977866, 66.511905], - [-15.97713, 66.51171], - [-15.977471, 66.511305], - [-15.977396, 66.510726], - [-15.976585, 66.510305], - [-15.975576, 66.510306], - [-15.97497, 66.510144], - [-15.974664, 66.509959], - [-15.973245, 66.509785], - [-15.972952, 66.509562], - [-15.97286, 66.509356], - [-15.972379, 66.509237], - [-15.972113, 66.508927], - [-15.971974, 66.508569], - [-15.971451, 66.508484], - [-15.970971, 66.508344], - [-15.971216, 66.508008], - [-15.971867, 66.507999], - [-15.97288, 66.50824], - [-15.973938, 66.508718], - [-15.974492, 66.508786], - [-15.975133, 66.50854], - [-15.974642, 66.508101], - [-15.974344, 66.507727], - [-15.975251, 66.507463], - [-15.975614, 66.507055], - [-15.975197, 66.506727], - [-15.974173, 66.506842], - [-15.973628, 66.506744], - [-15.973223, 66.506689], - [-15.972755, 66.50673], - [-15.97239, 66.506718], - [-15.972341, 66.506449], - [-15.971867, 66.506119], - [-15.971269, 66.50608], - [-15.970778, 66.506208], - [-15.969903, 66.506476], - [-15.969305, 66.506467], - [-15.968799, 66.506711], - [-15.968068, 66.506976], - [-15.96612, 66.506904], - [-15.965236, 66.506769], - [-15.964799, 66.506226], - [-15.96406, 66.505606], - [-15.963456, 66.505396], - [-15.962819, 66.505427], - [-15.962173, 66.505673], - [-15.960724, 66.505956], - [-15.960437, 66.50622], - [-15.960503, 66.50649], - [-15.960814, 66.507045], - [-15.960977, 66.507616], - [-15.961098, 66.507763], - [-15.961463, 66.507833], - [-15.961992, 66.507893], - [-15.962278, 66.507815], - [-15.96255, 66.507658], - [-15.963275, 66.507508], - [-15.964161, 66.507576], - [-15.964882, 66.507752], - [-15.965079, 66.507988], - [-15.965282, 66.508206], - [-15.965581, 66.508214], - [-15.965709, 66.508329], - [-15.965207, 66.508537], - [-15.96525, 66.508746], - [-15.965636, 66.509027], - [-15.966072, 66.509171], - [-15.96652, 66.509159], - [-15.966766, 66.509073], - [-15.966883, 66.508946], - [-15.967096, 66.50892], - [-15.96732, 66.509065], - [-15.967459, 66.509282], - [-15.967811, 66.509273], - [-15.968337, 66.509219], - [-15.968974, 66.509538], - [-15.969431, 66.509834], - [-15.97001, 66.510099], - [-15.970412, 66.51052], - [-15.969722, 66.510984], - [-15.969137, 66.511591], - [-15.967801, 66.511715], - [-15.966616, 66.51149], - [-15.965036, 66.511498], - [-15.963421, 66.511701], - [-15.962357, 66.511971], - [-15.9615, 66.51264], - [-15.960788, 66.513094], - [-15.960383, 66.513693], - [-15.959252, 66.514871], - [-15.958453, 66.515127], - [-15.957506, 66.514704], - [-15.956963, 66.514445], - [-15.95609, 66.514064], - [-15.955345, 66.513711], - [-15.954778, 66.513331], - [-15.954886, 66.513017], - [-15.955293, 66.512485], - [-15.954868, 66.511959], - [-15.954357, 66.511522], - [-15.953461, 66.51117], - [-15.953167, 66.510239], - [-15.953147, 66.509443], - [-15.953595, 66.508896], - [-15.954044, 66.508596], - [-15.955174, 66.508142], - [-15.956626, 66.507861], - [-15.957819, 66.507858], - [-15.958739, 66.508022], - [-15.959624, 66.508118], - [-15.959892, 66.508018], - [-15.960191, 66.507678], - [-15.960154, 66.507305], - [-15.959724, 66.506707], - [-15.959017, 66.505977], - [-15.958426, 66.505661], - [-15.958189, 66.505425], - [-15.958856, 66.505153], - [-15.959396, 66.505295], - [-15.960053, 66.505591], - [-15.960746, 66.50561], - [-15.96122, 66.50549], - [-15.962703, 66.50496], - [-15.964223, 66.503294], - [-15.964955, 66.502768], - [-15.965779, 66.502246], - [-15.965855, 66.501689], - [-15.965616, 66.50099], - [-15.964888, 66.500181], - [-15.964286, 66.49967], - [-15.9637, 66.499202], - [-15.962931, 66.49883], - [-15.961724, 66.498302], - [-15.960897, 66.497962], - [-15.960172, 66.497688], - [-15.958717, 66.497403], - [-15.956608, 66.496968], - [-15.95429, 66.496694], - [-15.952762, 66.496725], - [-15.951404, 66.497481], - [-15.9507, 66.49814], - [-15.95046, 66.498443], - [-15.949525, 66.498721], - [-15.947508, 66.499543], - [-15.94692, 66.49995], - [-15.94438, 66.50047], - [-15.94251, 66.50176], - [-15.94058, 66.50178], - [-15.9406, 66.50229], - [-15.93868, 66.5023], - [-15.9387, 66.50281], - [-15.93806, 66.50281], - [-15.93603, 66.50001], - [-15.93155, 66.50004], - [-15.93153, 66.49953], - [-15.92897, 66.49954], - [-15.9283, 66.49878], - [-15.91739, 66.49834], - [-15.91733, 66.49654], - [-15.92115, 66.49588], - [-15.92243, 66.49601], - [-15.92242, 66.49549], - [-15.92434, 66.49548], - [-15.92674, 66.49112], - [-15.92802, 66.49137], - [-15.928, 66.4906], - [-15.92928, 66.49059], - [-15.92926, 66.49008], - [-15.930208, 66.489702], - [-15.930848, 66.489376], - [-15.930928, 66.488913], - [-15.930673, 66.488518], - [-15.930113, 66.488086], - [-15.92929, 66.487669], - [-15.928214, 66.487151], - [-15.926563, 66.486595], - [-15.924902, 66.486184], - [-15.92371, 66.486036], - [-15.922355, 66.485927], - [-15.920948, 66.485942], - [-15.919619, 66.486265], - [-15.918773, 66.486539], - [-15.917124, 66.486904], - [-15.916134, 66.487086], - [-15.914776, 66.487665], - [-15.913987, 66.487874], - [-15.912832, 66.487933], - [-15.911955, 66.488051], - [-15.910695, 66.488205], - [-15.909308, 66.488242], - [-15.908341, 66.488322], - [-15.90779, 66.488388], - [-15.907307, 66.488595], - [-15.906346, 66.488916], - [-15.904324, 66.488924], - [-15.90215, 66.488814], - [-15.90099, 66.488645], - [-15.899221, 66.488571], - [-15.895395, 66.488135], - [-15.894504, 66.487903], - [-15.893799, 66.487451], - [-15.892573, 66.486882], - [-15.89117, 66.486433], - [-15.890344, 66.486027], - [-15.890175, 66.485542], - [-15.890717, 66.484855], - [-15.891621, 66.484654], - [-15.893592, 66.48458], - [-15.895564, 66.484393], - [-15.896428, 66.484416], - [-15.897121, 66.484698], - [-15.897827, 66.485273], - [-15.898732, 66.485734], - [-15.900363, 66.486315], - [-15.901671, 66.486646], - [-15.902519, 66.486903], - [-15.903463, 66.487153], - [-15.905747, 66.487404], - [-15.910179, 66.486785], - [-15.913968, 66.486851], - [-15.915013, 66.48682], - [-15.915738, 66.486738], - [-15.916487, 66.486436], - [-15.91822, 66.48593], - [-15.918988, 66.485476], - [-15.919643, 66.485355], - [-15.920578, 66.485182], - [-15.921453, 66.484905], - [-15.92248, 66.484692], - [-15.924227, 66.484531], - [-15.924386, 66.484614], - [-15.924318, 66.484666], - [-15.924097, 66.48476], - [-15.92394, 66.485], - [-15.925062, 66.485446], - [-15.926192, 66.485649], - [-15.927384, 66.486005], - [-15.928439, 66.4862], - [-15.929038, 66.486208], - [-15.929195, 66.486371], - [-15.929566, 66.486504], - [-15.929839, 66.486481], - [-15.929787, 66.486322], - [-15.929788, 66.485949], - [-15.929742, 66.485675], - [-15.929058, 66.484625], - [-15.928654, 66.484233], - [-15.928511, 66.483772], - [-15.928168, 66.482932], - [-15.92515, 66.48295], - [-15.92513, 66.48244], - [-15.92066, 66.48272], - [-15.92447, 66.48193], - [-15.924274, 66.480381], - [-15.922997, 66.480493], - [-15.922589, 66.480304], - [-15.922246, 66.480299], - [-15.921615, 66.480184], - [-15.920215, 66.480456], - [-15.91868, 66.48094], - [-15.91491, 66.48288], - [-15.91042, 66.48278], - [-15.90813, 66.48126], - [-15.90836, 66.47895], - [-15.90964, 66.47895], - [-15.90928, 66.47767], - [-15.91209, 66.47586], - [-15.91337, 66.47586], - [-15.91335, 66.47535], - [-15.915323, 66.474736], - [-15.917188, 66.474736], - [-15.918919, 66.475312], - [-15.919674, 66.476004], - [-15.919585, 66.476712], - [-15.919985, 66.476846], - [-15.920697, 66.47689], - [-15.92179, 66.476876], - [-15.922601, 66.476736], - [-15.924419, 66.476309], - [-15.924158, 66.475964], - [-15.924231, 66.475831], - [-15.924443, 66.475725], - [-15.92535, 66.475449], - [-15.928419, 66.474384], - [-15.930461, 66.474588], - [-15.93428, 66.474154], - [-15.936411, 66.474358], - [-15.938276, 66.474074], - [-15.940007, 66.473259], - [-15.94078, 66.47288], - [-15.941184, 66.472311], - [-15.943426, 66.471885], - [-15.943404, 66.471105], - [-15.94316, 66.470388], - [-15.93997, 66.469953], - [-15.938365, 66.468739], - [-15.937486, 66.466982], - [-15.936775, 66.466878], - [-15.93544, 66.466427], - [-15.93669, 66.46626], - [-15.937241, 66.46571], - [-15.937481, 66.46534], - [-15.938272, 66.464676], - [-15.938176, 66.464329], - [-15.938337, 66.463999], - [-15.938145, 66.463725], - [-15.936073, 66.463227], - [-15.936518, 66.462564], - [-15.93843, 66.46163], - [-15.939985, 66.461068], - [-15.940236, 66.460831], - [-15.940266, 66.460583], - [-15.939693, 66.46018], - [-15.93882, 66.459829], - [-15.937437, 66.459491], - [-15.935917, 66.459347], - [-15.935024, 66.459396], - [-15.934235, 66.459596], - [-15.933358, 66.460323], - [-15.933062, 66.460426], - [-15.932417, 66.460393], - [-15.931707, 66.46047], - [-15.931274, 66.460555], - [-15.930841, 66.460676], - [-15.930316, 66.460776], - [-15.929874, 66.46089], - [-15.928472, 66.460764], - [-15.927988, 66.460366], - [-15.92649, 66.45865], - [-15.925439, 66.45713], - [-15.926103, 66.456942], - [-15.925999, 66.456843], - [-15.925648, 66.456843], - [-15.925584, 66.456719], - [-15.925321, 66.456728], - [-15.925071, 66.4567], - [-15.925724, 66.456106], - [-15.925673, 66.456081], - [-15.925642, 66.456031], - [-15.925587, 66.455853], - [-15.925952, 66.455647], - [-15.926416, 66.455476], - [-15.926682, 66.455265], - [-15.927218, 66.454536], - [-15.927272, 66.454499], - [-15.927547, 66.454509], - [-15.927964, 66.454561], - [-15.928163, 66.454277], - [-15.928276, 66.454143], - [-15.928461, 66.454016], - [-15.929048, 66.453679], - [-15.929828, 66.45342], - [-15.930107, 66.453605], - [-15.930426, 66.453806], - [-15.930524, 66.453798], - [-15.930475, 66.453614], - [-15.93063, 66.453611], - [-15.930785, 66.45364], - [-15.930873, 66.453982], - [-15.93215, 66.453461], - [-15.934807, 66.453761], - [-15.935746, 66.453761], - [-15.935987, 66.453698], - [-15.936065, 66.453605], - [-15.93598, 66.453493], - [-15.937104, 66.453639], - [-15.937661, 66.453662], - [-15.937875, 66.453722], - [-15.93809, 66.453836], - [-15.937888, 66.454086], - [-15.937661, 66.45426], - [-15.937068, 66.454552], - [-15.936553, 66.455036], - [-15.936273, 66.455257], - [-15.936338, 66.45559], - [-15.936332, 66.455801], - [-15.936775, 66.455972], - [-15.937628, 66.456428], - [-15.937509, 66.457424], - [-15.937774, 66.457611], - [-15.938415, 66.457798], - [-15.93917, 66.457936], - [-15.939743, 66.458016], - [-15.94002, 66.458015], - [-15.940267, 66.457984], - [-15.940558, 66.457935], - [-15.940751, 66.457918], - [-15.940935, 66.457902], - [-15.94106, 66.457989], - [-15.941163, 66.458061], - [-15.941162, 66.458162], - [-15.94125, 66.458208], - [-15.941675, 66.458209], - [-15.941698, 66.458168], - [-15.942858, 66.458163], - [-15.942842, 66.458385], - [-15.943872, 66.458395], - [-15.944145, 66.458398], - [-15.944585, 66.458335], - [-15.945131, 66.458318], - [-15.945631, 66.458287], - [-15.945937, 66.458164], - [-15.9463, 66.458088], - [-15.946609, 66.458045], - [-15.946913, 66.458005], - [-15.947341, 66.457841], - [-15.948045, 66.457548], - [-15.948013, 66.457435], - [-15.94791, 66.457335], - [-15.9477, 66.45725], - [-15.947432, 66.457241], - [-15.946768, 66.457342], - [-15.94631, 66.456858], - [-15.947067, 66.456743], - [-15.94725, 66.456667], - [-15.947271, 66.456573], - [-15.947212, 66.456439], - [-15.947071, 66.456248], - [-15.946967, 66.455981], - [-15.946162, 66.456111], - [-15.946099, 66.456111], - [-15.946067, 66.456094], - [-15.945723, 66.455715], - [-15.945717, 66.455694], - [-15.945784, 66.455676], - [-15.945942, 66.455651], - [-15.945996, 66.455623], - [-15.946858, 66.455498], - [-15.946719, 66.455214], - [-15.945966, 66.455302], - [-15.945396, 66.45461], - [-15.945377, 66.454477], - [-15.946207, 66.454443], - [-15.946435, 66.454463], - [-15.946599, 66.454295], - [-15.946646, 66.454164], - [-15.946661, 66.454059], - [-15.946628, 66.453945], - [-15.946509, 66.453576], - [-15.946602, 66.453474], - [-15.946689, 66.453396], - [-15.947365, 66.453177], - [-15.947477, 66.453105], - [-15.947386, 66.453055], - [-15.946911, 66.452806], - [-15.94664, 66.452877], - [-15.946464, 66.452891], - [-15.946286, 66.452848], - [-15.946133, 66.45277], - [-15.946023, 66.452684], - [-15.946077, 66.45259], - [-15.946218, 66.452478], - [-15.946365, 66.452373], - [-15.946647, 66.45228], - [-15.94674, 66.452173], - [-15.946713, 66.452037], - [-15.9467, 66.451934], - [-15.94646, 66.451832], - [-15.946185, 66.451732], - [-15.946129, 66.451651], - [-15.946177, 66.45156], - [-15.946297, 66.451438], - [-15.94635, 66.451346], - [-15.94633, 66.451249], - [-15.946191, 66.451168], - [-15.946, 66.451095], - [-15.94577, 66.451056], - [-15.945465, 66.451053], - [-15.945045, 66.45105], - [-15.944734, 66.451025], - [-15.944459, 66.450975], - [-15.944249, 66.450907], - [-15.941929, 66.449969], - [-15.940994, 66.449457], - [-15.940557, 66.449206], - [-15.939959, 66.449007], - [-15.939594, 66.448911], - [-15.939033, 66.44874], - [-15.938361, 66.448528], - [-15.937937, 66.448378], - [-15.93755, 66.448198], - [-15.937402, 66.448049], - [-15.937141, 66.44789], - [-15.93668, 66.447709], - [-15.93644, 66.447645], - [-15.936249, 66.447493], - [-15.936097, 66.447279], - [-15.936018, 66.447148], - [-15.935984, 66.447013], - [-15.936006, 66.446848], - [-15.936074, 66.446654], - [-15.936194, 66.446316], - [-15.936169, 66.446248], - [-15.936015, 66.446219], - [-15.935785, 66.446201], - [-15.935632, 66.446184], - [-15.935526, 66.446164], - [-15.935429, 66.446104], - [-15.935437, 66.44602], - [-15.935508, 66.445952], - [-15.935562, 66.445893], - [-15.935713, 66.445871], - [-15.935879, 66.445854], - [-15.93604, 66.445869], - [-15.936211, 66.445921], - [-15.936258, 66.445836], - [-15.936403, 66.445508], - [-15.936425, 66.445407], - [-15.936501, 66.445267], - [-15.936587, 66.44506], - [-15.936639, 66.44483], - [-15.936615, 66.444597], - [-15.936585, 66.444484], - [-15.936488, 66.444224], - [-15.936245, 66.444122], - [-15.935986, 66.444057], - [-15.935897, 66.443991], - [-15.935801, 66.443898], - [-15.935825, 66.443821], - [-15.935903, 66.443749], - [-15.935928, 66.443615], - [-15.935946, 66.443452], - [-15.935939, 66.443227], - [-15.935818, 66.443182], - [-15.935657, 66.443122], - [-15.935581, 66.443066], - [-15.935586, 66.443018], - [-15.935675, 66.442977], - [-15.935679, 66.442903], - [-15.935683, 66.442838], - [-15.935825, 66.442845], - [-15.935959, 66.442801], - [-15.936012, 66.442736], - [-15.935997, 66.442629], - [-15.935929, 66.442518], - [-15.935854, 66.44244], - [-15.935807, 66.442392], - [-15.935826, 66.442332], - [-15.935994, 66.442149], - [-15.936219, 66.442115], - [-15.936386, 66.442045], - [-15.936418, 66.441882], - [-15.936555, 66.441637], - [-15.936861, 66.441349], - [-15.937358, 66.441139], - [-15.937856, 66.440951], - [-15.938292, 66.440838], - [-15.938768, 66.440745], - [-15.939237, 66.440694], - [-15.939683, 66.440676], - [-15.939932, 66.44069], - [-15.940351, 66.440782], - [-15.94065, 66.440873], - [-15.940782, 66.440946], - [-15.94075, 66.441034], - [-15.940673, 66.441141], - [-15.940716, 66.441236], - [-15.940889, 66.441322], - [-15.941117, 66.441386], - [-15.941431, 66.441413], - [-15.941854, 66.441406], - [-15.942516, 66.441362], - [-15.943002, 66.441322], - [-15.943451, 66.441293], - [-15.943941, 66.441249], - [-15.944376, 66.441198], - [-15.944861, 66.441068], - [-15.945385, 66.440927], - [-15.946024, 66.44084], - [-15.946289, 66.440718], - [-15.946346, 66.440556], - [-15.946404, 66.440391], - [-15.946368, 66.439903], - [-15.946375, 66.439422], - [-15.946089, 66.438967], - [-15.945683, 66.438519], - [-15.945191, 66.438131], - [-15.944291, 66.437835], - [-15.942681, 66.437552], - [-15.941553, 66.437299], - [-15.940278, 66.437069], - [-15.939823, 66.437016], - [-15.939391, 66.437022], - [-15.93902, 66.437034], - [-15.938367, 66.437097], - [-15.937738, 66.437256], - [-15.937098, 66.437431], - [-15.936663, 66.43743], - [-15.936644, 66.437526], - [-15.937519, 66.437839], - [-15.937903, 66.438031], - [-15.938358, 66.437947], - [-15.938755, 66.438016], - [-15.938905, 66.438219], - [-15.93836, 66.438469], - [-15.937532, 66.438642], - [-15.936492, 66.438709], - [-15.935452, 66.438656], - [-15.933682, 66.437933], - [-15.93278, 66.437536], - [-15.93111, 66.43663], - [-15.928833, 66.436054], - [-15.92787, 66.43563], - [-15.927024, 66.435453], - [-15.926386, 66.435297], - [-15.925363, 66.435185], - [-15.924512, 66.435033], - [-15.923164, 66.434643], - [-15.920764, 66.433586], - [-15.91949, 66.43337], - [-15.918928, 66.432945], - [-15.918896, 66.432492], - [-15.919681, 66.431769], - [-15.920555, 66.431441], - [-15.9232, 66.43028], - [-15.92372, 66.429903], - [-15.924772, 66.429397], - [-15.92686, 66.428898], - [-15.928256, 66.428558], - [-15.929432, 66.428272], - [-15.930146, 66.427985], - [-15.931123, 66.427622], - [-15.93313, 66.427024], - [-15.934713, 66.426314], - [-15.936623, 66.424652], - [-15.936555, 66.424068], - [-15.936038, 66.42247], - [-15.935361, 66.420569], - [-15.935186, 66.419744], - [-15.935399, 66.418933], - [-15.935241, 66.418235], - [-15.934907, 66.417538], - [-15.933617, 66.417161], - [-15.932261, 66.41689], - [-15.926231, 66.416278], - [-15.924897, 66.416541], - [-15.924183, 66.416741], - [-15.923399, 66.417132], - [-15.92273, 66.4175], - [-15.922361, 66.417765], - [-15.920941, 66.418882], - [-15.918373, 66.418961], - [-15.917841, 66.418734], - [-15.917313, 66.418482], - [-15.91701, 66.41805], - [-15.915942, 66.417583], - [-15.914155, 66.417118], - [-15.908639, 66.418015], - [-15.907267, 66.417801], - [-15.906354, 66.417502], - [-15.904087, 66.415831], - [-15.90397, 66.415143], - [-15.903089, 66.41486], - [-15.902738, 66.414365], - [-15.903291, 66.413623], - [-15.90177, 66.413753], - [-15.901522, 66.413351], - [-15.901928, 66.412822], - [-15.902958, 66.412562], - [-15.903284, 66.412384], - [-15.902675, 66.412228], - [-15.902194, 66.412361], - [-15.90084, 66.41226], - [-15.899723, 66.413652], - [-15.898982, 66.414297], - [-15.898762, 66.414654], - [-15.89882, 66.414976], - [-15.899272, 66.415299], - [-15.900195, 66.41552], - [-15.901356, 66.415518], - [-15.902827, 66.415469], - [-15.90345, 66.41591], - [-15.900927, 66.416454], - [-15.899705, 66.416885], - [-15.899349, 66.417114], - [-15.899843, 66.417371], - [-15.900895, 66.418181], - [-15.901179, 66.420055], - [-15.900941, 66.421074], - [-15.89989, 66.42147], - [-15.899787, 66.421607], - [-15.89927, 66.42199], - [-15.897467, 66.422918], - [-15.89613, 66.42328], - [-15.893912, 66.423851], - [-15.89232, 66.42408], - [-15.888898, 66.424547], - [-15.8853, 66.42411], - [-15.884255, 66.423904], - [-15.885929, 66.423005], - [-15.88527, 66.422912], - [-15.883545, 66.423799], - [-15.882571, 66.423716], - [-15.882941, 66.423384], - [-15.883364, 66.422897], - [-15.882334, 66.42237], - [-15.88253, 66.422124], - [-15.882327, 66.421923], - [-15.881736, 66.421864], - [-15.881062, 66.421396], - [-15.880404, 66.421743], - [-15.879782, 66.421736], - [-15.879541, 66.420989], - [-15.879618, 66.419861], - [-15.879848, 66.418792], - [-15.881111, 66.418352], - [-15.882905, 66.418118], - [-15.883184, 66.417375], - [-15.88246, 66.41595], - [-15.881864, 66.415567], - [-15.88116, 66.41544], - [-15.878825, 66.415101], - [-15.87681, 66.41532], - [-15.875041, 66.415646], - [-15.873595, 66.415976], - [-15.872001, 66.416485], - [-15.868617, 66.416066], - [-15.865842, 66.415861], - [-15.863742, 66.415775], - [-15.862083, 66.415711], - [-15.858341, 66.416091], - [-15.857196, 66.416259], - [-15.85506, 66.416229], - [-15.854323, 66.416593], - [-15.8513, 66.41944], - [-15.850656, 66.419768], - [-15.85003, 66.41996], - [-15.850432, 66.420143], - [-15.849914, 66.420425], - [-15.848774, 66.420253], - [-15.84814, 66.42048], - [-15.847445, 66.420634], - [-15.846538, 66.421034], - [-15.846894, 66.421297], - [-15.846446, 66.421424], - [-15.846052, 66.421289], - [-15.845333, 66.421543], - [-15.843543, 66.422094], - [-15.84245, 66.4223], - [-15.841275, 66.4226], - [-15.8401, 66.422687], - [-15.84052, 66.422823], - [-15.840586, 66.422959], - [-15.839341, 66.423273], - [-15.838152, 66.423226], - [-15.83707, 66.423109], - [-15.836002, 66.423128], - [-15.835868, 66.422909], - [-15.836141, 66.422576], - [-15.835874, 66.422052], - [-15.837057, 66.421711], - [-15.837648, 66.421435], - [-15.83732, 66.4213], - [-15.838096, 66.421049], - [-15.838935, 66.420948], - [-15.839809, 66.420931], - [-15.84131, 66.420671], - [-15.84111, 66.42026], - [-15.840021, 66.420226], - [-15.839762, 66.419924], - [-15.838143, 66.420303], - [-15.835975, 66.420323], - [-15.836234, 66.419998], - [-15.835836, 66.419785], - [-15.834156, 66.420062], - [-15.832575, 66.420396], - [-15.830453, 66.420812], - [-15.828171, 66.421197], - [-15.827534, 66.421124], - [-15.827432, 66.421025], - [-15.827564, 66.42098], - [-15.827389, 66.420816], - [-15.827175, 66.420784], - [-15.827013, 66.420792], - [-15.826974, 66.420891], - [-15.826474, 66.420905], - [-15.82641, 66.420814], - [-15.825987, 66.420727], - [-15.826107, 66.420474], - [-15.826547, 66.420363], - [-15.826269, 66.42023], - [-15.826526, 66.420156], - [-15.826419, 66.420101], - [-15.826096, 66.420061], - [-15.825457, 66.419874], - [-15.82491, 66.419599], - [-15.824961, 66.419525], - [-15.824764, 66.419455], - [-15.824392, 66.41959], - [-15.82423, 66.419572], - [-15.82423, 66.419422], - [-15.824397, 66.419294], - [-15.824307, 66.419055], - [-15.823965, 66.419101], - [-15.823371, 66.418627], - [-15.823473, 66.418555], - [-15.823268, 66.418422], - [-15.822999, 66.41841], - [-15.822623, 66.4181], - [-15.823687, 66.417483], - [-15.823486, 66.417396], - [-15.823743, 66.417273], - [-15.823973, 66.41712], - [-15.823888, 66.417028], - [-15.8242, 66.416804], - [-15.824106, 66.416719], - [-15.824116, 66.416608], - [-15.824652, 66.416445], - [-15.825414, 66.416159], - [-15.825807, 66.416094], - [-15.826017, 66.41604], - [-15.826188, 66.415949], - [-15.826137, 66.415843], - [-15.826338, 66.415766], - [-15.826705, 66.415776], - [-15.826898, 66.415706], - [-15.827141, 66.415702], - [-15.827244, 66.415656], - [-15.827244, 66.415574], - [-15.826812, 66.41533], - [-15.82694, 66.415236], - [-15.827534, 66.415155], - [-15.828103, 66.415254], - [-15.828342, 66.415316], - [-15.827893, 66.415614], - [-15.828099, 66.415648], - [-15.82859, 66.415737], - [-15.829129, 66.415759], - [-15.829471, 66.415675], - [-15.829334, 66.415634], - [-15.829357, 66.415561], - [-15.829926, 66.415507], - [-15.830048, 66.415458], - [-15.830109, 66.415457], - [-15.830353, 66.415637], - [-15.830426, 66.415743], - [-15.830605, 66.415729], - [-15.830665, 66.415828], - [-15.831208, 66.415753], - [-15.831547, 66.415671], - [-15.832551, 66.415219], - [-15.832717, 66.415036], - [-15.83273, 66.414889], - [-15.83276, 66.414557], - [-15.832602, 66.41432], - [-15.832461, 66.41426], - [-15.831546, 66.414224], - [-15.830725, 66.414326], - [-15.830547, 66.414197], - [-15.830358, 66.41415], - [-15.830274, 66.414028], - [-15.830174, 66.414003], - [-15.830435, 66.413708], - [-15.832478, 66.413284], - [-15.832441, 66.413208], - [-15.832707, 66.413141], - [-15.833051, 66.41295], - [-15.833662, 66.412986], - [-15.833973, 66.412789], - [-15.833798, 66.412801], - [-15.833801, 66.412729], - [-15.834194, 66.412642], - [-15.834563, 66.412614], - [-15.834829, 66.412634], - [-15.834938, 66.41266], - [-15.835427, 66.412617], - [-15.835352, 66.412558], - [-15.83553, 66.412502], - [-15.835853, 66.412538], - [-15.835977, 66.412478], - [-15.836401, 66.412281], - [-15.837864, 66.411579], - [-15.837537, 66.411336], - [-15.837902, 66.411244], - [-15.838879, 66.411196], - [-15.839714, 66.41045], - [-15.840563, 66.410527], - [-15.8414, 66.410472], - [-15.842215, 66.41036], - [-15.842797, 66.410136], - [-15.844599, 66.409287], - [-15.844897, 66.408939], - [-15.845028, 66.408547], - [-15.845384, 66.408408], - [-15.845675, 66.408186], - [-15.845754, 66.407663], - [-15.845144, 66.406613], - [-15.845209, 66.406312], - [-15.844722, 66.405709], - [-15.843494, 66.404957], - [-15.841587, 66.403876], - [-15.840336, 66.40327], - [-15.838599, 66.402518], - [-15.836138, 66.40168], - [-15.833228, 66.400918], - [-15.828417, 66.399972], - [-15.827087, 66.399757], - [-15.825938, 66.399732], - [-15.824148, 66.399962], - [-15.820521, 66.400919], - [-15.818169, 66.401267], - [-15.817257, 66.401496], - [-15.81498, 66.40225], - [-15.81245, 66.4029], - [-15.81069, 66.403452], - [-15.809315, 66.404251], - [-15.806767, 66.405169], - [-15.805802, 66.405486], - [-15.804643, 66.405546], - [-15.803077, 66.405349], - [-15.802862, 66.404911], - [-15.799404, 66.404388], - [-15.793013, 66.403923], - [-15.789859, 66.402944], - [-15.7884, 66.402798], - [-15.78756, 66.40277], - [-15.785674, 66.402703], - [-15.784194, 66.40291], - [-15.780825, 66.403227], - [-15.780151, 66.4026], - [-15.779499, 66.401398], - [-15.77857, 66.4009], - [-15.77722, 66.400218], - [-15.76, 66.39856], - [-15.754883, 66.399138], - [-15.751836, 66.399525], - [-15.750384, 66.399761], - [-15.749576, 66.400096], - [-15.748084, 66.400967], - [-15.747437, 66.400814], - [-15.747551, 66.400331], - [-15.7479, 66.39952], - [-15.747158, 66.399242], - [-15.746149, 66.399242], - [-15.74469, 66.399328], - [-15.743394, 66.399518], - [-15.74217, 66.3998], - [-15.74027, 66.4002], - [-15.737523, 66.400221], - [-15.734052, 66.399704], - [-15.733554, 66.398709], - [-15.733656, 66.397756], - [-15.73124, 66.39691], - [-15.729498, 66.397077], - [-15.728934, 66.397333], - [-15.72743, 66.39758], - [-15.721645, 66.397154], - [-15.718834, 66.396922], - [-15.716588, 66.397093], - [-15.713662, 66.397876], - [-15.712375, 66.398159], - [-15.710698, 66.398299], - [-15.708534, 66.398254], - [-15.706236, 66.397983], - [-15.70431, 66.397515], - [-15.701888, 66.396879], - [-15.70124, 66.3964], - [-15.699627, 66.395458], - [-15.70019, 66.39309], - [-15.697977, 66.391208], - [-15.69714, 66.390306], - [-15.696272, 66.389539], - [-15.694992, 66.388637], - [-15.693873, 66.387822], - [-15.693235, 66.385002], - [-15.691791, 66.381663], - [-15.690016, 66.379784], - [-15.689179, 66.37779], - [-15.687578, 66.374108], - [-15.691046, 66.368898], - [-15.69184, 66.366248], - [-15.691705, 66.363669], - [-15.68976, 66.36169], - [-15.68877, 66.36041], - [-15.68787, 66.359736], - [-15.68649, 66.35838], - [-15.685755, 66.355811], - [-15.68447, 66.35429], - [-15.682535, 66.35193], - [-15.68013, 66.34715], - [-15.679622, 66.346486], - [-15.679094, 66.345874], - [-15.678926, 66.345331], - [-15.678601, 66.344463], - [-15.678361, 66.343467], - [-15.679287, 66.341466], - [-15.680832, 66.339451], - [-15.682592, 66.335391], - [-15.684223, 66.330343], - [-15.68521, 66.327948], - [-15.68718, 66.32565], - [-15.687559, 66.325224], - [-15.69155, 66.32256], - [-15.692176, 66.322248], - [-15.69343, 66.32153], - [-15.693852, 66.321257], - [-15.69493, 66.320505], - [-15.699065, 66.317954], - [-15.703427, 66.314207], - [-15.705197, 66.311445], - [-15.705702, 66.310802], - [-15.706714, 66.310174], - [-15.707719, 66.309737], - [-15.708993, 66.309337], - [-15.70965, 66.30919], - [-15.709999, 66.308949], - [-15.71087, 66.30841], - [-15.711528, 66.308085], - [-15.71275, 66.30738], - [-15.714252, 66.306609], - [-15.71649, 66.30506], - [-15.716966, 66.304735], - [-15.718124, 66.303593], - [-15.720818, 66.302549], - [-15.722543, 66.301504], - [-15.724858, 66.299766], - [-15.727457, 66.29893], - [-15.730293, 66.298721], - [-15.732703, 66.298712], - [-15.735113, 66.297648], - [-15.73595, 66.29653], - [-15.7372, 66.29601], - [-15.73846, 66.29549], - [-15.7422, 66.29318], - [-15.745379, 66.291435], - [-15.74593, 66.29034], - [-15.74998, 66.28751], - [-15.749974, 66.287169], - [-15.750423, 66.287117], - [-15.751601, 66.286345], - [-15.754804, 66.285509], - [-15.756575, 66.284714], - [-15.758554, 66.283252], - [-15.76057, 66.28107], - [-15.758289, 66.276926], - [-15.756978, 66.276292], - [-15.75638, 66.275292], - [-15.756334, 66.273441], - [-15.755034, 66.272399], - [-15.75362, 66.27139], - [-15.751445, 66.269992], - [-15.749017, 66.269265], - [-15.747016, 66.268238], - [-15.745371, 66.26739], - [-15.743714, 66.266705], - [-15.740654, 66.2657], - [-15.739366, 66.26496], - [-15.737433, 66.264441], - [-15.737502, 66.264094], - [-15.73625, 66.26354], - [-15.735259, 66.262575], - [-15.734316, 66.261862], - [-15.733516, 66.261135], - [-15.732261, 66.26052], - [-15.731326, 66.260228], - [-15.730626, 66.259933], - [-15.730041, 66.259557], - [-15.728894, 66.259082], - [-15.727552, 66.258784], - [-15.725575, 66.258535], - [-15.723159, 66.25863], - [-15.721589, 66.259362], - [-15.720814, 66.259695], - [-15.716338, 66.260529], - [-15.714345, 66.261001], - [-15.712952, 66.261032], - [-15.712337, 66.261205], - [-15.712163, 66.261485], - [-15.712038, 66.261863], - [-15.711224, 66.261878], - [-15.71041, 66.261764], - [-15.709297, 66.262012], - [-15.709473, 66.262507], - [-15.70809, 66.262868], - [-15.707658, 66.262797], - [-15.70705, 66.26291], - [-15.706695, 66.263637], - [-15.706146, 66.263675], - [-15.705527, 66.263613], - [-15.704836, 66.263859], - [-15.704093, 66.26419], - [-15.70326, 66.264606], - [-15.702278, 66.264454], - [-15.701649, 66.264515], - [-15.700517, 66.264764], - [-15.699066, 66.2648], - [-15.698381, 66.264921], - [-15.69812, 66.2651], - [-15.697852, 66.26555], - [-15.697937, 66.266227], - [-15.694898, 66.266356], - [-15.694183, 66.266417], - [-15.693891, 66.266691], - [-15.69193, 66.26694], - [-15.69096, 66.267308], - [-15.69068, 66.26759], - [-15.68941, 66.26759], - [-15.688421, 66.267272], - [-15.688563, 66.266413], - [-15.688119, 66.266004], - [-15.688913, 66.265852], - [-15.689743, 66.265799], - [-15.688484, 66.265286], - [-15.687191, 66.264887], - [-15.685844, 66.264918], - [-15.68425, 66.26455], - [-15.685017, 66.262437], - [-15.685111, 66.262046], - [-15.684561, 66.261889], - [-15.683737, 66.26182], - [-15.683611, 66.261527], - [-15.684557, 66.261382], - [-15.685256, 66.261374], - [-15.68536, 66.260951], - [-15.685251, 66.260843], - [-15.685012, 66.260824], - [-15.684542, 66.260813], - [-15.684514, 66.260723], - [-15.684775, 66.260594], - [-15.68516, 66.260507], - [-15.685616, 66.260421], - [-15.685798, 66.260241], - [-15.686185, 66.259583], - [-15.685755, 66.25937], - [-15.685925, 66.259186], - [-15.687203, 66.258895], - [-15.687926, 66.259012], - [-15.68872, 66.258886], - [-15.689743, 66.258022], - [-15.690067, 66.257239], - [-15.691168, 66.256797], - [-15.692806, 66.256269], - [-15.693564, 66.255498], - [-15.693537, 66.2548], - [-15.693982, 66.254373], - [-15.69411, 66.25376], - [-15.694115, 66.253262], - [-15.694539, 66.253075], - [-15.695104, 66.253058], - [-15.695315, 66.252934], - [-15.69535, 66.25274], - [-15.695183, 66.252544], - [-15.694875, 66.252391], - [-15.694325, 66.252325], - [-15.694015, 66.2522], - [-15.693846, 66.252045], - [-15.693965, 66.251835], - [-15.694186, 66.251601], - [-15.693787, 66.251502], - [-15.693254, 66.251559], - [-15.692579, 66.251488], - [-15.692397, 66.250989], - [-15.692954, 66.250822], - [-15.693725, 66.250825], - [-15.693894, 66.250522], - [-15.69378, 66.250191], - [-15.691607, 66.25034], - [-15.691414, 66.250047], - [-15.691962, 66.249939], - [-15.691733, 66.249731], - [-15.691893, 66.249295], - [-15.692712, 66.249239], - [-15.692627, 66.248998], - [-15.693709, 66.2485], - [-15.69368, 66.248295], - [-15.692834, 66.248321], - [-15.692272, 66.248162], - [-15.693282, 66.247906], - [-15.693858, 66.247786], - [-15.694575, 66.247722], - [-15.695394, 66.24734], - [-15.696329, 66.247449], - [-15.696709, 66.247266], - [-15.6969, 66.247153], - [-15.69755, 66.247226], - [-15.698472, 66.246786], - [-15.6983, 66.24505], - [-15.698188, 66.244854], - [-15.6985, 66.24473], - [-15.699362, 66.244157], - [-15.700649, 66.24357], - [-15.701642, 66.242913], - [-15.702579, 66.241934], - [-15.703065, 66.241444], - [-15.703056, 66.24094], - [-15.702178, 66.240292], - [-15.702911, 66.239012], - [-15.703997, 66.237846], - [-15.70488, 66.235156], - [-15.704924, 66.234555], - [-15.705109, 66.234011], - [-15.706222, 66.233108], - [-15.706441, 66.232236], - [-15.705777, 66.231478], - [-15.706191, 66.230595], - [-15.706186, 66.230018], - [-15.705863, 66.229441], - [-15.704575, 66.228988], - [-15.703355, 66.228528], - [-15.701817, 66.228196], - [-15.700537, 66.227475], - [-15.699133, 66.226929], - [-15.698012, 66.226505], - [-15.6933, 66.22475], - [-15.691219, 66.224269], - [-15.689852, 66.224061], - [-15.688326, 66.224116], - [-15.688022, 66.223547], - [-15.688426, 66.223305], - [-15.689958, 66.223215], - [-15.691562, 66.223268], - [-15.693036, 66.223615], - [-15.694601, 66.223009], - [-15.695954, 66.221577], - [-15.696962, 66.220806], - [-15.69751, 66.22015], - [-15.696679, 66.22], - [-15.695908, 66.219879], - [-15.694954, 66.220271], - [-15.694156, 66.221233], - [-15.693297, 66.222114], - [-15.691293, 66.222439], - [-15.69083, 66.222563], - [-15.690649, 66.2228], - [-15.689846, 66.223025], - [-15.688826, 66.222899], - [-15.688195, 66.223015], - [-15.687691, 66.223193], - [-15.687435, 66.223441], - [-15.68733, 66.224126], - [-15.6862, 66.224141], - [-15.684454, 66.224994], - [-15.682743, 66.225305], - [-15.68192, 66.22518], - [-15.67892, 66.22454], - [-15.67619, 66.22445], - [-15.675425, 66.22393], - [-15.674535, 66.223516], - [-15.673006, 66.22302], - [-15.671738, 66.22272], - [-15.668884, 66.222466], - [-15.665356, 66.222666], - [-15.663855, 66.222888], - [-15.662351, 66.223282], - [-15.66097, 66.22374], - [-15.66102, 66.224749], - [-15.659797, 66.225245], - [-15.65912, 66.22554], - [-15.658529, 66.225801], - [-15.657984, 66.22615], - [-15.65735, 66.226457], - [-15.656383, 66.226569], - [-15.655311, 66.226452], - [-15.6547, 66.22632], - [-15.652728, 66.225968], - [-15.648564, 66.226128], - [-15.645284, 66.226303], - [-15.642075, 66.226321], - [-15.64205, 66.224732], - [-15.642019, 66.223838], - [-15.64259, 66.2233], - [-15.642341, 66.22259], - [-15.641318, 66.222177], - [-15.639102, 66.221577], - [-15.638198, 66.221383], - [-15.636946, 66.221311], - [-15.63084, 66.221203], - [-15.628947, 66.221039], - [-15.626494, 66.22086], - [-15.625778, 66.220605], - [-15.625274, 66.220322], - [-15.624858, 66.220306], - [-15.624548, 66.220404], - [-15.624203, 66.22062], - [-15.623017, 66.220969], - [-15.621665, 66.221383], - [-15.62112, 66.221508], - [-15.619686, 66.221764], - [-15.61911, 66.22161], - [-15.618638, 66.221159], - [-15.617928, 66.221191], - [-15.617201, 66.221286], - [-15.61624, 66.221734], - [-15.614749, 66.222958], - [-15.613046, 66.223998], - [-15.60841, 66.22523], - [-15.607256, 66.225455], - [-15.60654, 66.22576], - [-15.605953, 66.226381], - [-15.604861, 66.227565], - [-15.604146, 66.227896], - [-15.60344, 66.22883], - [-15.60146, 66.229209], - [-15.59902, 66.22936], - [-15.599452, 66.228743], - [-15.596942, 66.229042], - [-15.596173, 66.229045], - [-15.595705, 66.229213], - [-15.59399, 66.23091], - [-15.592298, 66.231191], - [-15.59146, 66.23144], - [-15.590553, 66.231647], - [-15.58895, 66.23247], - [-15.58706, 66.23273], - [-15.58705, 66.23222], - [-15.58556, 66.232383], - [-15.58452, 66.23248], - [-15.584212, 66.232812], - [-15.583083, 66.232565], - [-15.582221, 66.231801], - [-15.582632, 66.231292], - [-15.581685, 66.231246], - [-15.581905, 66.231499], - [-15.58134, 66.23198], - [-15.580045, 66.232048], - [-15.57952, 66.231701], - [-15.57942, 66.23122], - [-15.579895, 66.230899], - [-15.580774, 66.230559], - [-15.5813, 66.23019], - [-15.580242, 66.230108], - [-15.580108, 66.229893], - [-15.580611, 66.229458], - [-15.57999, 66.22866], - [-15.578695, 66.228517], - [-15.58027, 66.22687], - [-15.57993, 66.22585], - [-15.57866, 66.22586], - [-15.57867, 66.22637], - [-15.57677, 66.22637], - [-15.57581, 66.22587], - [-15.57799, 66.22381], - [-15.578455, 66.223461], - [-15.5789, 66.22228], - [-15.579129, 66.22069], - [-15.578769, 66.22018], - [-15.57853, 66.21998], - [-15.57467, 66.218005], - [-15.573729, 66.217687], - [-15.571114, 66.217216], - [-15.571688, 66.216833], - [-15.572545, 66.216564], - [-15.574215, 66.216487], - [-15.575567, 66.216282], - [-15.575082, 66.21602], - [-15.573592, 66.216227], - [-15.572192, 66.21642], - [-15.570879, 66.216742], - [-15.570097, 66.217206], - [-15.566815, 66.216559], - [-15.564803, 66.216442], - [-15.56325, 66.21671], - [-15.56264, 66.21748], - [-15.561193, 66.217124], - [-15.561978, 66.216799], - [-15.56135, 66.21646], - [-15.558847, 66.216156], - [-15.557667, 66.216632], - [-15.55697, 66.216592], - [-15.55691, 66.21648], - [-15.5569, 66.21596], - [-15.556117, 66.215543], - [-15.55562, 66.2152], - [-15.554735, 66.214729], - [-15.5537, 66.21444], - [-15.553147, 66.214208], - [-15.55242, 66.21393], - [-15.550725, 66.213598], - [-15.549631, 66.213736], - [-15.54901, 66.212888], - [-15.548053, 66.212891], - [-15.547922, 66.213386], - [-15.546606, 66.21339], - [-15.545397, 66.213565], - [-15.545145, 66.213267], - [-15.54521, 66.212941], - [-15.542664, 66.213309], - [-15.54026, 66.213934], - [-15.538388, 66.214783], - [-15.537402, 66.215113], - [-15.536417, 66.215666], - [-15.535551, 66.216091], - [-15.534903, 66.216889], - [-15.534422, 66.217142], - [-15.534166, 66.217124], - [-15.533986, 66.216902], - [-15.533884, 66.216958], - [-15.533907, 66.217168], - [-15.53393, 66.217271], - [-15.533888, 66.217368], - [-15.533461, 66.217446], - [-15.53331, 66.217265], - [-15.533284, 66.217049], - [-15.533025, 66.217081], - [-15.53274, 66.217131], - [-15.532859, 66.2175], - [-15.53271, 66.217874], - [-15.532268, 66.21797], - [-15.531775, 66.217398], - [-15.531724, 66.217032], - [-15.53254, 66.216515], - [-15.532857, 66.216179], - [-15.532797, 66.215732], - [-15.532867, 66.215282], - [-15.532838, 66.214366], - [-15.531867, 66.214045], - [-15.531642, 66.214082], - [-15.531402, 66.214104], - [-15.531111, 66.214064], - [-15.530775, 66.213962], - [-15.530485, 66.213805], - [-15.530814, 66.213374], - [-15.530934, 66.212928], - [-15.530305, 66.212874], - [-15.529181, 66.213153], - [-15.528742, 66.213039], - [-15.528434, 66.212889], - [-15.528591, 66.212669], - [-15.528696, 66.212447], - [-15.528849, 66.211578], - [-15.52825, 66.211013], - [-15.526619, 66.210965], - [-15.526047, 66.211141], - [-15.525721, 66.211218], - [-15.525461, 66.211243], - [-15.525275, 66.211103], - [-15.525297, 66.210968], - [-15.525588, 66.210661], - [-15.525826, 66.210221], - [-15.525367, 66.210172], - [-15.524921, 66.210045], - [-15.524108, 66.209786], - [-15.524545, 66.209451], - [-15.524938, 66.209114], - [-15.524987, 66.208637], - [-15.525348, 66.207516], - [-15.525049, 66.20723], - [-15.524593, 66.20696], - [-15.523342, 66.206519], - [-15.522683, 66.206045], - [-15.521567, 66.205584], - [-15.521055, 66.205123], - [-15.520698, 66.204678], - [-15.521091, 66.204297], - [-15.521275, 66.203907], - [-15.521029, 66.203177], - [-15.520665, 66.202448], - [-15.520333, 66.201715], - [-15.520183, 66.200998], - [-15.519842, 66.200573], - [-15.519722, 66.200034], - [-15.520146, 66.199452], - [-15.520348, 66.198849], - [-15.518673, 66.198356], - [-15.517569, 66.198076], - [-15.516732, 66.197946], - [-15.514186, 66.197103], - [-15.512883, 66.196978], - [-15.511762, 66.196937], - [-15.509798, 66.197033], - [-15.507833, 66.19727], - [-15.506947, 66.19702], - [-15.506357, 66.196261], - [-15.505723, 66.195905], - [-15.504428, 66.195562], - [-15.503034, 66.194789], - [-15.501275, 66.193139], - [-15.501275, 66.192628], - [-15.500959, 66.192289], - [-15.501101, 66.191234], - [-15.499184, 66.189967], - [-15.497616, 66.189641], - [-15.495557, 66.18927], - [-15.490963, 66.188337], - [-15.485908, 66.188125], - [-15.476796, 66.188193], - [-15.47181, 66.187987], - [-15.470879, 66.188775], - [-15.468236, 66.189357], - [-15.464361, 66.188714], - [-15.46292, 66.188254], - [-15.460877, 66.188254], - [-15.459736, 66.187453], - [-15.457377, 66.186787], - [-15.456462, 66.186386], - [-15.455591, 66.18584], - [-15.455123, 66.184726], - [-15.451087, 66.183628], - [-15.449508, 66.183214], - [-15.449128, 66.182128], - [-15.447578, 66.181549], - [-15.448047, 66.179879], - [-15.447164, 66.179235], - [-15.446054, 66.178924], - [-15.445854, 66.178027], - [-15.444858, 66.177015], - [-15.442836, 66.176083], - [-15.44238, 66.174887], - [-15.441184, 66.174473], - [-15.440045, 66.173185], - [-15.438479, 66.171942], - [-15.438735, 66.170136], - [-15.436799, 66.168537], - [-15.435005, 66.167133], - [-15.434407, 66.165741], - [-15.433723, 66.164763], - [-15.432186, 66.16398], - [-15.432214, 66.16276], - [-15.431132, 66.16207], - [-15.426501, 66.160775], - [-15.418997, 66.160128], - [-15.413461, 66.159929], - [-15.40854, 66.159432], - [-15.405464, 66.159681], - [-15.399559, 66.159333], - [-15.396238, 66.159681], - [-15.390333, 66.159979], - [-15.385412, 66.160476], - [-15.38279, 66.161227], - [-15.381685, 66.161905], - [-15.380491, 66.162117], - [-15.375447, 66.161968], - [-15.371633, 66.162415], - [-15.36567, 66.162354], - [-15.362014, 66.162787], - [-15.357835, 66.163532], - [-15.353619, 66.164729], - [-15.351335, 66.164887], - [-15.349809, 66.165937], - [-15.349027, 66.166711], - [-15.348578, 66.167722], - [-15.348285, 66.167937], - [-15.347698, 66.167745], - [-15.34662, 66.16774], - [-15.345834, 66.168036], - [-15.34475, 66.168328], - [-15.344552, 66.168716], - [-15.344552, 66.169624], - [-15.345275, 66.171085], - [-15.345236, 66.172111], - [-15.34478, 66.172303], - [-15.343947, 66.172174], - [-15.342598, 66.172079], - [-15.340488, 66.172356], - [-15.339491, 66.172727], - [-15.338773, 66.173808], - [-15.337921, 66.174865], - [-15.338045, 66.177005], - [-15.338003, 66.179291], - [-15.337654, 66.17987], - [-15.33656, 66.180146], - [-15.334946, 66.180276], - [-15.333402, 66.180526], - [-15.332378, 66.18099], - [-15.33146, 66.181827], - [-15.330815, 66.183374], - [-15.330835, 66.184975], - [-15.330209, 66.186395], - [-15.328262, 66.188541], - [-15.328266, 66.189217], - [-15.328288, 66.192611], - [-15.328291, 66.193041], - [-15.328776, 66.193871], - [-15.330491, 66.195102], - [-15.331637, 66.194753], - [-15.332851, 66.194388], - [-15.333753, 66.194114], - [-15.334219, 66.193999], - [-15.334712, 66.19394], - [-15.33524, 66.193914], - [-15.335665, 66.193928], - [-15.33612, 66.193973], - [-15.337266, 66.194066], - [-15.338396, 66.194178], - [-15.338563, 66.194222], - [-15.338536, 66.194258], - [-15.338509, 66.194298], - [-15.338339, 66.19431], - [-15.337392, 66.194224], - [-15.336159, 66.194113], - [-15.335402, 66.194054], - [-15.334688, 66.194071], - [-15.334289, 66.194134], - [-15.333946, 66.194234], - [-15.333236, 66.194465], - [-15.331864, 66.194865], - [-15.330623, 66.195316], - [-15.3309, 66.195868], - [-15.331251, 66.196332], - [-15.331456, 66.196485], - [-15.332051, 66.196927], - [-15.333047, 66.197251], - [-15.334067, 66.197376], - [-15.334459, 66.19739], - [-15.334819, 66.197364], - [-15.334895, 66.197323], - [-15.334952, 66.197151], - [-15.33502, 66.197126], - [-15.3351, 66.197128], - [-15.335176, 66.197141], - [-15.335269, 66.197292], - [-15.335394, 66.197315], - [-15.335737, 66.197296], - [-15.335926, 66.197258], - [-15.336001, 66.197167], - [-15.335945, 66.196916], - [-15.335888, 66.196821], - [-15.335857, 66.19677], - [-15.335946, 66.196745], - [-15.336004, 66.196695], - [-15.336004, 66.196617], - [-15.335908, 66.196544], - [-15.335899, 66.196511], - [-15.335419, 66.196463], - [-15.33537, 66.196451], - [-15.33536, 66.19643], - [-15.335513, 66.196103], - [-15.335192, 66.196075], - [-15.335151, 66.196058], - [-15.335142, 66.196034], - [-15.335433, 66.195788], - [-15.335497, 66.195768], - [-15.33558, 66.195761], - [-15.338993, 66.196012], - [-15.339053, 66.196035], - [-15.340133, 66.19543], - [-15.34035, 66.195307], - [-15.340228, 66.19522], - [-15.339996, 66.195072], - [-15.339926, 66.195034], - [-15.339499, 66.195278], - [-15.339449, 66.195297], - [-15.339373, 66.195293], - [-15.33906, 66.195203], - [-15.339009, 66.195181], - [-15.339018, 66.195156], - [-15.340286, 66.194461], - [-15.340341, 66.194448], - [-15.340405, 66.194448], - [-15.340594, 66.194503], - [-15.340804, 66.194527], - [-15.341027, 66.194528], - [-15.341128, 66.194505], - [-15.341312, 66.194376], - [-15.341532, 66.19409], - [-15.341574, 66.194048], - [-15.341489, 66.194008], - [-15.34148, 66.193939], - [-15.341538, 66.193863], - [-15.341652, 66.193809], - [-15.341866, 66.193772], - [-15.342106, 66.193781], - [-15.342275, 66.193819], - [-15.342382, 66.193872], - [-15.342419, 66.193977], - [-15.341867, 66.194728], - [-15.341276, 66.19534], - [-15.340834, 66.196017], - [-15.340614, 66.196814], - [-15.341188, 66.197326], - [-15.341835, 66.198356], - [-15.342511, 66.200168], - [-15.34073, 66.20023], - [-15.34011, 66.20099], - [-15.33954, 66.201775], - [-15.343573, 66.206154], - [-15.343258, 66.207389], - [-15.342906, 66.207905], - [-15.343066, 66.208626], - [-15.3438, 66.209206], - [-15.345301, 66.209347], - [-15.346738, 66.209515], - [-15.34783, 66.20993], - [-15.348973, 66.210725], - [-15.349876, 66.2118], - [-15.34843, 66.212722], - [-15.34725, 66.213827], - [-15.345046, 66.214834], - [-15.343394, 66.216487], - [-15.343111, 66.220598], - [-15.348058, 66.225745], - [-15.348641, 66.226428], - [-15.348804, 66.226772], - [-15.348651, 66.227435], - [-15.348456, 66.229675], - [-15.347835, 66.23156], - [-15.349015, 66.232956], - [-15.349845, 66.234655], - [-15.350212, 66.235974], - [-15.34915, 66.23703], - [-15.34852, 66.238206], - [-15.348009, 66.23966], - [-15.347147, 66.240593], - [-15.346349, 66.241616], - [-15.345471, 66.242458], - [-15.3448, 66.242889], - [-15.344417, 66.243468], - [-15.344497, 66.244028], - [-15.344784, 66.244433], - [-15.344832, 66.245224], - [-15.344113, 66.245992], - [-15.341495, 66.246857], - [-15.34041, 66.24723], - [-15.339495, 66.247866], - [-15.339499, 66.248394], - [-15.339372, 66.248999], - [-15.338062, 66.249635], - [-15.337073, 66.250445], - [-15.336626, 66.250825], - [-15.336493, 66.251255], - [-15.336737, 66.251886], - [-15.337632, 66.25237], - [-15.339041, 66.253637], - [-15.339468, 66.254856], - [-15.338971, 66.256077], - [-15.338057, 66.257128], - [-15.336794, 66.257986], - [-15.335459, 66.258445], - [-15.33309, 66.258523], - [-15.331021, 66.258397], - [-15.327389, 66.257981], - [-15.323131, 66.258077], - [-15.32099, 66.258073], - [-15.319487, 66.2583], - [-15.316336, 66.259288], - [-15.315939, 66.259743], - [-15.314736, 66.260755], - [-15.314147, 66.261046], - [-15.313365, 66.261104], - [-15.312391, 66.2609], - [-15.311152, 66.260799], - [-15.310033, 66.260334], - [-15.309733, 66.259278], - [-15.308001, 66.258547], - [-15.307147, 66.258426], - [-15.306485, 66.257918], - [-15.304068, 66.257157], - [-15.301771, 66.256973], - [-15.301386, 66.256712], - [-15.298825, 66.256035], - [-15.296881, 66.255988], - [-15.295346, 66.256309], - [-15.295124, 66.256625], - [-15.29455, 66.2567], - [-15.29366, 66.256672], - [-15.292723, 66.256441], - [-15.292723, 66.256139], - [-15.292091, 66.25595], - [-15.291318, 66.256016], - [-15.28996, 66.255281], - [-15.289796, 66.254347], - [-15.2888, 66.25402], - [-15.285299, 66.253338], - [-15.283097, 66.253185], - [-15.28257, 66.253021], - [-15.276971, 66.252454], - [-15.273229, 66.252271], - [-15.267814, 66.252252], - [-15.264957, 66.252278], - [-15.263152, 66.25249], - [-15.262145, 66.253064], - [-15.261412, 66.253519], - [-15.260534, 66.253556], - [-15.259917, 66.253104], - [-15.258906, 66.252754], - [-15.257586, 66.252694], - [-15.253818, 66.252706], - [-15.245072, 66.252981], - [-15.22984, 66.25451], - [-15.21843, 66.2567], - [-15.214736, 66.257647], - [-15.208584, 66.258863], - [-15.206971, 66.259184], - [-15.206038, 66.25931], - [-15.20487, 66.259363], - [-15.204152, 66.259433], - [-15.203166, 66.259601], - [-15.202382, 66.259695], - [-15.200847, 66.259823], - [-15.199964, 66.259911], - [-15.198763, 66.260084], - [-15.197488, 66.260137], - [-15.196873, 66.260182], - [-15.196374, 66.26016], - [-15.19537, 66.260026], - [-15.194479, 66.260074], - [-15.193928, 66.260066], - [-15.193744, 66.260089], - [-15.193576, 66.260118], - [-15.193575, 66.260385], - [-15.193312, 66.260556], - [-15.188251, 66.261894], - [-15.178981, 66.26369], - [-15.17408, 66.264419], - [-15.17029, 66.26494], - [-15.16964, 66.26417], - [-15.16583, 66.26392], - [-15.164334, 66.263833], - [-15.15394, 66.264021], - [-15.145957, 66.264558], - [-15.137862, 66.265666], - [-15.135912, 66.265963], - [-15.134112, 66.266286], - [-15.132889, 66.266498], - [-15.12778, 66.26728], - [-15.12613, 66.267664], - [-15.123417, 66.268246], - [-15.122409, 66.268766], - [-15.121795, 66.268909], - [-15.119634, 66.269413], - [-15.118638, 66.26968], - [-15.117584, 66.269949], - [-15.116514, 66.270288], - [-15.115461, 66.270494], - [-15.114323, 66.270879], - [-15.112501, 66.271402], - [-15.111125, 66.271887], - [-15.109677, 66.272485], - [-15.107999, 66.273192], - [-15.106875, 66.273604], - [-15.105638, 66.274118], - [-15.104975, 66.274529], - [-15.104231, 66.274857], - [-15.103232, 66.275268], - [-15.101499, 66.2763], - [-15.098423, 66.278404], - [-15.096457, 66.280017], - [-15.09579, 66.28162], - [-15.095758, 66.282867], - [-15.095558, 66.283622], - [-15.095569, 66.284198], - [-15.09618, 66.284868], - [-15.096668, 66.28535], - [-15.097246, 66.285806], - [-15.097934, 66.28606], - [-15.098523, 66.286092], - [-15.099067, 66.286324], - [-15.099822, 66.286386], - [-15.100755, 66.286498], - [-15.101721, 66.286775], - [-15.102154, 66.287494], - [-15.102265, 66.288168], - [-15.101888, 66.288954], - [-15.101433, 66.289758], - [-15.101044, 66.290196], - [-15.100811, 66.290593], - [-15.101122, 66.290999], - [-15.101044, 66.291352], - [-15.100777, 66.292018], - [-15.100522, 66.292183], - [-15.100255, 66.292218], - [-15.099789, 66.292187], - [-15.099223, 66.292058], - [-15.098734, 66.291857], - [-15.09779, 66.291343], - [-15.09729, 66.291151], - [-15.096524, 66.290879], - [-15.096257, 66.29066], - [-15.09588, 66.290464], - [-15.095347, 66.290124], - [-15.094736, 66.289713], - [-15.09323, 66.289424], - [-15.091673, 66.28935], - [-15.0903, 66.289145], - [-15.089437, 66.288854], - [-15.088897, 66.2886], - [-15.087957, 66.28847], - [-15.086924, 66.288451], - [-15.085166, 66.288637], - [-15.083979, 66.289362], - [-15.083409, 66.29002], - [-15.082808, 66.290441], - [-15.081759, 66.290782], - [-15.080479, 66.291309], - [-15.079261, 66.291638], - [-15.078629, 66.291594], - [-15.07809, 66.291464], - [-15.077103, 66.291359], - [-15.0757, 66.291433], - [-15.073742, 66.291786], - [-15.072216, 66.292102], - [-15.071152, 66.292536], - [-15.06947, 66.29314], - [-15.068777, 66.293398], - [-15.067683, 66.293392], - [-15.066727, 66.293398], - [-15.065262, 66.293627], - [-15.063798, 66.29403], - [-15.06058, 66.29494], - [-15.059743, 66.2954], - [-15.058941, 66.295722], - [-15.057877, 66.296218], - [-15.056906, 66.296615], - [-15.055981, 66.296906], - [-15.054948, 66.297272], - [-15.05424, 66.29775], - [-15.053021, 66.298549], - [-15.051695, 66.299094], - [-15.049212, 66.299782], - [-15.048472, 66.30003], - [-15.048164, 66.300451], - [-15.047362, 66.300935], - [-15.046699, 66.301269], - [-15.046067, 66.301641], - [-15.04407, 66.30236], - [-15.04357, 66.302775], - [-15.042583, 66.303041], - [-15.041843, 66.303302], - [-15.04154, 66.30363], - [-15.041488, 66.304578], - [-15.040794, 66.305588], - [-15.039947, 66.305904], - [-15.03963, 66.30619], - [-15.040255, 66.306901], - [-15.039176, 66.307558], - [-15.038004, 66.308085], - [-15.03731, 66.308543], - [-15.03694, 66.309101], - [-15.037094, 66.310073], - [-15.037557, 66.310587], - [-15.038204, 66.310878], - [-15.038651, 66.311294], - [-15.038913, 66.31177], - [-15.038821, 66.31247], - [-15.038173, 66.313034], - [-15.036986, 66.313604], - [-15.03583, 66.31412], - [-15.034704, 66.314595], - [-15.03307, 66.315357], - [-15.03202, 66.31591], - [-15.030218, 66.316261], - [-15.02757, 66.31693], - [-15.026965, 66.317023], - [-15.0263, 66.31719], - [-15.024483, 66.318038], - [-15.020752, 66.319165], - [-15.01867, 66.31989], - [-15.015941, 66.321599], - [-15.014199, 66.322707], - [-15.01332, 66.323221], - [-15.012889, 66.324471], - [-15.012349, 66.326341], - [-15.011424, 66.329306], - [-15.010776, 66.331596], - [-15.009527, 66.333651], - [-15.008618, 66.334474], - [-15.007539, 66.336529], - [-15.006028, 66.338181], - [-15.005581, 66.338793], - [-15.004023, 66.341169], - [-15.003653, 66.342561], - [-15.00296, 66.343861], - [-15.002805, 66.345209], - [-15.002358, 66.346131], - [-15.002775, 66.347164], - [-15.001988, 66.348345], - [-15.001341, 66.349242], - [-15.000555, 66.349626], - [-14.999583, 66.34983], - [-14.997486, 66.35001], - [-14.996403, 66.350231], - [-14.993309, 66.350237], - [-14.990733, 66.350054], - [-14.988833, 66.350262], - [-14.987655, 66.350388], - [-14.986493, 66.350653], - [-14.983336, 66.351125], - [-14.979771, 66.351188], - [-14.97864, 66.351226], - [-14.977541, 66.351107], - [-14.976221, 66.351044], - [-14.975154, 66.350999], - [-14.974117, 66.351119], - [-14.972609, 66.351459], - [-14.97095, 66.35196], - [-14.969941, 66.352333], - [-14.969514, 66.352422], - [-14.969397, 66.352549], - [-14.969297, 66.352649], - [-14.968997, 66.352582], - [-14.968803, 66.352526], - [-14.968592, 66.352645], - [-14.968326, 66.35284], - [-14.967881, 66.353048], - [-14.967348, 66.353143], - [-14.966838, 66.353204], - [-14.96636, 66.35319], - [-14.965688, 66.353072], - [-14.9648, 66.352992], - [-14.96425, 66.353079], - [-14.963739, 66.353248], - [-14.963267, 66.353495], - [-14.963123, 66.353665], - [-14.96264, 66.354028], - [-14.962445, 66.354393], - [-14.961424, 66.355076], - [-14.96058, 66.355736], - [-14.959691, 66.35609], - [-14.958997, 66.356388], - [-14.957992, 66.357009], - [-14.957598, 66.357662], - [-14.957104, 66.358221], - [-14.956665, 66.358459], - [-14.956038, 66.358891], - [-14.955921, 66.359443], - [-14.955366, 66.359902], - [-14.954294, 66.360243], - [-14.952856, 66.360799], - [-14.95224, 66.3612], - [-14.951818, 66.36165], - [-14.94927, 66.36346], - [-14.94799, 66.36346], - [-14.94608, 66.36474], - [-14.9448, 66.36474], - [-14.9448, 66.36524], - [-14.94289, 66.3655], - [-14.94161, 66.36678], - [-14.93588, 66.36806], - [-14.93588, 66.36857], - [-14.93333, 66.36882], - [-14.93333, 66.36934], - [-14.93205, 66.36933], - [-14.93141, 66.37036], - [-14.904, 66.37316], - [-14.904, 66.37367], - [-14.90017, 66.37418], - [-14.89953, 66.37494], - [-14.89379, 66.37596], - [-14.89379, 66.37647], - [-14.88423, 66.37723], - [-14.88423, 66.37672], - [-14.88359, 66.37672], - [-14.88359, 66.37723], - [-14.88232, 66.37723], - [-14.88295, 66.37774], - [-14.8821, 66.37757], - [-14.87849, 66.37825], - [-14.87657, 66.37953], - [-14.87019, 66.38144], - [-14.86827, 66.38157], - [-14.86827, 66.38233], - [-14.86699, 66.38208], - [-14.86699, 66.38259], - [-14.86508, 66.38259], - [-14.86507, 66.3831], - [-14.86252, 66.38361], - [-14.86189, 66.38437], - [-14.8606, 66.38437], - [-14.8606, 66.38488], - [-14.85933, 66.38488], - [-14.85867, 66.38565], - [-14.85677, 66.38565], - [-14.85677, 66.38616], - [-14.85486, 66.38616], - [-14.85485, 66.38667], - [-14.84784, 66.38653], - [-14.8472, 66.38679], - [-14.84018, 66.38601], - [-14.837, 66.38614], - [-14.83701, 66.38564], - [-14.8319, 66.38601], - [-14.83127, 66.38575], - [-14.82744, 66.38613], - [-14.82491, 66.38255], - [-14.82364, 66.38255], - [-14.82333, 66.38152], - [-14.82047, 66.37973], - [-14.8192, 66.37973], - [-14.81507, 66.37768], - [-14.81539, 66.37717], - [-14.81413, 66.37716], - [-14.81221, 66.37587], - [-14.8084, 66.37524], - [-14.79566, 66.37433], - [-14.79439, 66.3733], - [-14.79184, 66.37279], - [-14.79184, 66.37228], - [-14.79058, 66.37228], - [-14.79058, 66.37177], - [-14.78549, 66.37048], - [-14.78359, 66.3692], - [-14.7766, 66.36713], - [-14.77693, 66.36663], - [-14.77534, 66.36561], - [-14.773882, 66.364746], - [-14.77344, 66.36407], - [-14.773038, 66.36369], - [-14.771707, 66.363242], - [-14.77101, 66.362649], - [-14.77027, 66.362269], - [-14.764998, 66.361164], - [-14.762985, 66.360883], - [-14.758299, 66.361495], - [-14.7557, 66.361251], - [-14.732371, 66.358748], - [-14.729796, 66.358593], - [-14.726556, 66.358258], - [-14.72559, 66.358249], - [-14.724303, 66.35843], - [-14.722951, 66.358404], - [-14.721899, 66.358481], - [-14.721363, 66.358593], - [-14.717908, 66.358576], - [-14.716127, 66.358542], - [-14.71426, 66.358731], - [-14.712608, 66.358705], - [-14.71066, 66.35889], - [-14.702652, 66.358894], - [-14.699361, 66.358975], - [-14.692073, 66.359617], - [-14.689241, 66.359798], - [-14.685656, 66.359922], - [-14.683061, 66.360211], - [-14.68135, 66.360314], - [-14.66387, 66.36426], - [-14.66197, 66.36438], - [-14.66195, 66.36489], - [-14.65493, 66.36577], - [-14.64918, 66.36691], - [-14.64853, 66.36793], - [-14.64725, 66.36793], - [-14.64725, 66.36844], - [-14.63894, 66.36995], - [-14.6383, 66.37072], - [-14.63702, 66.37059], - [-14.63127, 66.37173], - [-14.63126, 66.37223], - [-14.62615, 66.37326], - [-14.62615, 66.37376], - [-14.611649, 66.375494], - [-14.60955, 66.37603], - [-14.604869, 66.376201], - [-14.59997, 66.37638], - [-14.57767, 66.37606], - [-14.57066, 66.37553], - [-14.56875, 66.37591], - [-14.56874, 66.37642], - [-14.54958, 66.37854], - [-14.535666, 66.379245], - [-14.53045, 66.37913], - [-14.529432, 66.378549], - [-14.529574, 66.37791] - ], - [ - [-17.818224, 64.774449], - [-17.81919, 64.774942], - [-17.819344, 64.775485], - [-17.819096, 64.777011], - [-17.822701, 64.778601], - [-17.838024, 64.779222], - [-17.84807, 64.78527], - [-17.864806, 64.785769], - [-17.871476, 64.78129], - [-17.873785, 64.784437], - [-17.878306, 64.784896], - [-17.884217, 64.785979], - [-17.892257, 64.784453], - [-17.901078, 64.782401], - [-17.906396, 64.775527], - [-17.90326, 64.774094], - [-17.904167, 64.772753], - [-17.908273, 64.771253], - [-17.90982, 64.767888], - [-17.91238, 64.766524], - [-17.91494, 64.766547], - [-17.91942, 64.767706], - [-17.921447, 64.768866], - [-17.922034, 64.770776], - [-17.926461, 64.771344], - [-17.927954, 64.771753], - [-17.931794, 64.770548], - [-17.934994, 64.770162], - [-17.936488, 64.771094], - [-17.936531, 64.772677], - [-17.943816, 64.775334], - [-17.955672, 64.776312], - [-17.956776, 64.774431], - [-17.957431, 64.773488], - [-17.959288, 64.772697], - [-17.962238, 64.772091], - [-17.963658, 64.770928], - [-17.96221, 64.770136], - [-17.958442, 64.769449], - [-17.955465, 64.770159], - [-17.952734, 64.771323], - [-17.952652, 64.770799], - [-17.954837, 64.769542], - [-17.955738, 64.76896], - [-17.956093, 64.768343], - [-17.955656, 64.767715], - [-17.955437, 64.767016], - [-17.956584, 64.765933], - [-17.958742, 64.764932], - [-17.959561, 64.764257], - [-17.958578, 64.763092], - [-17.959452, 64.762522], - [-17.960927, 64.761206], - [-17.961964, 64.758889], - [-17.964013, 64.758038], - [-17.969202, 64.756839], - [-17.96941, 64.756102], - [-17.968055, 64.756187], - [-17.964586, 64.75614], - [-17.963641, 64.755349], - [-17.963172, 64.754014], - [-17.96889, 64.751577], - [-17.969622, 64.751988], - [-17.971379, 64.75354], - [-17.973484, 64.753767], - [-17.978698, 64.754228], - [-17.985187, 64.751807], - [-17.984028, 64.748726], - [-17.980513, 64.74665], - [-17.97584, 64.746254], - [-17.970394, 64.747606], - [-17.966648, 64.748232], - [-17.966339, 64.74665], - [-17.970781, 64.745414], - [-17.974759, 64.742876], - [-17.976188, 64.741657], - [-17.978969, 64.740108], - [-17.983989, 64.739267], - [-17.984067, 64.73752], - [-17.982329, 64.736432], - [-17.982947, 64.735476], - [-17.980822, 64.733927], - [-17.978698, 64.731602], - [-17.979934, 64.72997], - [-17.979471, 64.728453], - [-17.979934, 64.725798], - [-17.980127, 64.724331], - [-17.976304, 64.722319], - [-17.974681, 64.720126], - [-17.974257, 64.718575], - [-17.973175, 64.716348], - [-17.971476, 64.714567], - [-17.969931, 64.713], - [-17.969468, 64.713824], - [-17.971051, 64.716365], - [-17.96939, 64.719548], - [-17.967923, 64.720752], - [-17.96352, 64.721428], - [-17.959696, 64.721363], - [-17.9568, 64.72067], - [-17.953208, 64.720241], - [-17.94753, 64.720719], - [-17.941737, 64.721511], - [-17.936098, 64.72321], - [-17.932738, 64.725353], - [-17.928722, 64.726161], - [-17.92567, 64.726541], - [-17.918912, 64.727052], - [-17.915049, 64.727233], - [-17.911496, 64.729162], - [-17.907827, 64.7303], - [-17.909488, 64.731487], - [-17.914084, 64.731273], - [-17.917405, 64.731355], - [-17.914509, 64.732212], - [-17.910492, 64.733053], - [-17.908213, 64.735526], - [-17.903695, 64.737158], - [-17.899755, 64.736548], - [-17.895005, 64.737174], - [-17.883727, 64.740487], - [-17.87805, 64.743058], - [-17.868356, 64.74782], - [-17.868124, 64.751362], - [-17.861828, 64.752795], - [-17.857696, 64.753882], - [-17.853602, 64.755496], - [-17.851478, 64.755546], - [-17.849045, 64.754591], - [-17.84441, 64.753388], - [-17.843136, 64.753454], - [-17.838733, 64.754689], - [-17.834948, 64.755431], - [-17.830352, 64.75749], - [-17.827223, 64.759812], - [-17.822859, 64.762364], - [-17.82116, 64.763451], - [-17.818765, 64.765312], - [-17.821507, 64.76658], - [-17.821739, 64.767502], - [-17.821237, 64.768736], - [-17.822743, 64.77035], - [-17.827223, 64.772012], - [-17.82985, 64.77272], - [-17.833596, 64.773494], - [-17.840818, 64.775403], - [-17.846573, 64.778168], - [-17.844024, 64.779287], - [-17.840162, 64.776983], - [-17.834832, 64.774712], - [-17.82788, 64.77328], - [-17.825254, 64.772457], - [-17.819963, 64.770465], - [-17.819615, 64.770794], - [-17.819963, 64.772111], - [-17.818224, 64.774449] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "11267", - "properties": { - "NAME_ENGLISH": "Northwestern Region", - "name": "Norðurland vestra", - "ISOCODE": "IS-5", - "density": 0, - "path": "/world/Iceland/Northwestern Region" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-20.303042, 66.106651], - [-20.303166, 66.106628], - [-20.303248, 66.106561], - [-20.303453, 66.106563], - [-20.303566, 66.106615], - [-20.303469, 66.106678], - [-20.303289, 66.106732], - [-20.303094, 66.106728], - [-20.303016, 66.106707], - [-20.303042, 66.106651] - ] - ], - [ - [ - [-20.303551, 66.106236], - [-20.303566, 66.106184], - [-20.303731, 66.106186], - [-20.30389, 66.106234], - [-20.304003, 66.106301], - [-20.304039, 66.106413], - [-20.303998, 66.106496], - [-20.304106, 66.106499], - [-20.304296, 66.106459], - [-20.304466, 66.106499], - [-20.30445, 66.106632], - [-20.304214, 66.106651], - [-20.30405, 66.106615], - [-20.30389, 66.106519], - [-20.303834, 66.106367], - [-20.303654, 66.106249], - [-20.303551, 66.106236] - ] - ], - [ - [ - [-20.35704, 66.095734], - [-20.357134, 66.095689], - [-20.357273, 66.095659], - [-20.357367, 66.095603], - [-20.357447, 66.095551], - [-20.357625, 66.095502], - [-20.357894, 66.095492], - [-20.358218, 66.095519], - [-20.35833, 66.09556], - [-20.358258, 66.095617], - [-20.358065, 66.095667], - [-20.357829, 66.095681], - [-20.357611, 66.095653], - [-20.357525, 66.095671], - [-20.357405, 66.095716], - [-20.357312, 66.095764], - [-20.357153, 66.095813], - [-20.357078, 66.095788], - [-20.35704, 66.095734] - ] - ], - [ - [ - [-20.362944, 66.090592], - [-20.363177, 66.090595], - [-20.363191, 66.09051], - [-20.363366, 66.090433], - [-20.363482, 66.090356], - [-20.363671, 66.090359], - [-20.363751, 66.090418], - [-20.363984, 66.090418], - [-20.364166, 66.090395], - [-20.364071, 66.090351], - [-20.364071, 66.090286], - [-20.364609, 66.090215], - [-20.364841, 66.090183], - [-20.36503, 66.090112], - [-20.365299, 66.090106], - [-20.365307, 66.090009], - [-20.365641, 66.089968], - [-20.365895, 66.09], - [-20.365801, 66.090062], - [-20.365736, 66.090156], - [-20.365568, 66.090239], - [-20.365372, 66.090245], - [-20.365227, 66.090292], - [-20.365328, 66.090359], - [-20.365328, 66.090495], - [-20.365328, 66.090616], - [-20.365285, 66.090695], - [-20.365205, 66.090766], - [-20.365016, 66.090801], - [-20.364994, 66.090893], - [-20.364791, 66.090922], - [-20.364609, 66.090837], - [-20.36442, 66.090881], - [-20.364122, 66.090981], - [-20.364158, 66.091072], - [-20.364035, 66.091055], - [-20.363933, 66.09099], - [-20.363955, 66.090952], - [-20.364013, 66.090878], - [-20.363773, 66.090795], - [-20.363453, 66.090731], - [-20.363133, 66.090775], - [-20.362988, 66.090754], - [-20.362857, 66.090648], - [-20.362944, 66.090592] - ] - ], - [ - [ - [-19.379938, 65.822176], - [-19.380458, 65.822094], - [-19.381399, 65.822412], - [-19.381964, 65.822778], - [-19.382307, 65.82327], - [-19.381981, 65.823518], - [-19.381228, 65.823473], - [-19.380535, 65.823139], - [-19.379906, 65.822515], - [-19.379938, 65.822176] - ] - ], - [ - [ - [-20.357585, 66.096736], - [-20.357745, 66.096654], - [-20.357614, 66.096557], - [-20.357621, 66.096324], - [-20.357621, 66.096188], - [-20.357505, 66.096009], - [-20.3576, 66.095929], - [-20.357781, 66.09595], - [-20.357832, 66.095988], - [-20.357832, 66.096082], - [-20.357956, 66.096097], - [-20.358167, 66.096094], - [-20.358363, 66.096224], - [-20.358501, 66.096288], - [-20.358661, 66.096265], - [-20.358872, 66.096241], - [-20.359141, 66.09625], - [-20.359272, 66.096377], - [-20.359519, 66.096403], - [-20.359671, 66.096453], - [-20.359555, 66.096498], - [-20.35954, 66.096536], - [-20.359729, 66.096527], - [-20.359562, 66.096612], - [-20.359293, 66.096718], - [-20.359264, 66.096789], - [-20.359221, 66.096913], - [-20.359286, 66.096957], - [-20.359402, 66.096928], - [-20.359439, 66.096851], - [-20.359548, 66.09681], - [-20.359577, 66.096857], - [-20.359664, 66.09686], - [-20.359875, 66.09686], - [-20.360093, 66.096848], - [-20.360311, 66.096848], - [-20.360304, 66.096898], - [-20.360173, 66.096904], - [-20.36002, 66.096916], - [-20.360071, 66.096972], - [-20.360216, 66.096978], - [-20.360405, 66.096998], - [-20.360398, 66.09706], - [-20.360369, 66.097143], - [-20.360224, 66.097222], - [-20.360166, 66.097343], - [-20.360049, 66.097446], - [-20.359911, 66.097561], - [-20.359628, 66.097608], - [-20.359257, 66.097605], - [-20.358777, 66.097558], - [-20.358596, 66.097505], - [-20.35853, 66.097446], - [-20.358377, 66.097316], - [-20.358399, 66.097098], - [-20.358457, 66.097037], - [-20.358276, 66.09696], - [-20.358079, 66.096833], - [-20.357825, 66.096786], - [-20.357687, 66.096836], - [-20.357556, 66.096819], - [-20.357585, 66.096736] - ] - ], - [ - [ - [-20.301416, 66.107172], - [-20.301517, 66.107086], - [-20.301967, 66.106974], - [-20.302417, 66.106903], - [-20.30273, 66.106914], - [-20.303055, 66.106974], - [-20.30318, 66.106929], - [-20.303393, 66.106858], - [-20.303693, 66.106848], - [-20.304006, 66.106853], - [-20.304418, 66.106858], - [-20.304669, 66.106979], - [-20.304969, 66.10706], - [-20.305131, 66.107106], - [-20.305269, 66.107217], - [-20.305456, 66.107268], - [-20.305557, 66.107359], - [-20.305444, 66.107486], - [-20.305607, 66.107542], - [-20.305757, 66.107582], - [-20.305769, 66.107765], - [-20.306044, 66.107906], - [-20.306345, 66.108104], - [-20.30667, 66.108256], - [-20.306482, 66.108403], - [-20.306119, 66.108484], - [-20.305494, 66.108479], - [-20.305369, 66.108403], - [-20.305194, 66.108332], - [-20.304956, 66.108251], - [-20.304781, 66.108119], - [-20.304531, 66.107998], - [-20.304306, 66.107891], - [-20.304006, 66.10782], - [-20.30383, 66.107739], - [-20.303881, 66.107628], - [-20.303705, 66.107542], - [-20.303605, 66.107592], - [-20.303318, 66.107648], - [-20.302942, 66.107613], - [-20.302567, 66.107491], - [-20.302392, 66.107354], - [-20.302129, 66.107288], - [-20.301817, 66.107334], - [-20.301592, 66.107304], - [-20.301416, 66.107172] - ] - ], - [ - [ - [-20.359032, 66.094267], - [-20.358847, 66.094167], - [-20.359176, 66.094067], - [-20.359608, 66.093867], - [-20.359598, 66.093792], - [-20.359742, 66.093717], - [-20.360112, 66.093567], - [-20.360143, 66.093446], - [-20.360369, 66.093451], - [-20.360297, 66.093284], - [-20.360338, 66.093201], - [-20.360616, 66.093071], - [-20.360944, 66.092997], - [-20.361109, 66.093042], - [-20.360986, 66.093163], - [-20.361222, 66.093205], - [-20.36152, 66.093134], - [-20.361839, 66.093101], - [-20.36188, 66.093047], - [-20.36189, 66.092951], - [-20.362065, 66.092884], - [-20.36225, 66.092922], - [-20.362456, 66.092909], - [-20.36226, 66.092851], - [-20.362044, 66.092796], - [-20.362075, 66.092701], - [-20.362363, 66.092638], - [-20.362003, 66.092655], - [-20.362044, 66.092588], - [-20.362353, 66.092492], - [-20.362476, 66.092347], - [-20.362785, 66.092097], - [-20.362856, 66.091997], - [-20.362733, 66.091863], - [-20.362425, 66.091759], - [-20.362528, 66.091651], - [-20.362774, 66.091551], - [-20.362846, 66.091405], - [-20.363011, 66.091388], - [-20.363175, 66.091438], - [-20.363442, 66.09138], - [-20.363463, 66.091301], - [-20.363627, 66.091218], - [-20.363884, 66.091147], - [-20.363977, 66.091193], - [-20.364008, 66.091351], - [-20.364069, 66.091459], - [-20.364172, 66.09153], - [-20.364337, 66.091655], - [-20.364296, 66.091772], - [-20.364265, 66.091913], - [-20.364481, 66.091901], - [-20.364717, 66.091959], - [-20.364882, 66.092059], - [-20.364635, 66.092176], - [-20.364368, 66.092238], - [-20.364224, 66.09213], - [-20.364111, 66.092142], - [-20.363936, 66.092276], - [-20.363926, 66.092397], - [-20.364039, 66.092467], - [-20.364316, 66.092442], - [-20.364676, 66.092497], - [-20.36446, 66.092563], - [-20.364224, 66.092638], - [-20.363977, 66.092597], - [-20.363936, 66.092655], - [-20.363864, 66.092801], - [-20.363699, 66.092917], - [-20.363381, 66.093022], - [-20.363412, 66.093205], - [-20.363586, 66.09328], - [-20.363926, 66.093296], - [-20.364008, 66.093367], - [-20.363782, 66.093463], - [-20.363494, 66.093471], - [-20.363412, 66.093555], - [-20.363453, 66.093713], - [-20.363525, 66.093775], - [-20.363802, 66.093875], - [-20.363833, 66.093988], - [-20.363864, 66.094146], - [-20.363823, 66.094255], - [-20.363936, 66.09435], - [-20.363833, 66.09443], - [-20.363617, 66.094463], - [-20.36334, 66.094517], - [-20.363124, 66.094559], - [-20.36299, 66.094588], - [-20.36299, 66.094679], - [-20.363237, 66.094696], - [-20.363556, 66.094742], - [-20.363648, 66.094804], - [-20.363463, 66.094863], - [-20.363175, 66.094842], - [-20.362908, 66.094771], - [-20.363062, 66.094879], - [-20.363144, 66.094942], - [-20.363093, 66.095096], - [-20.362815, 66.095138], - [-20.362425, 66.095084], - [-20.362106, 66.094963], - [-20.361808, 66.094804], - [-20.361746, 66.094609], - [-20.361561, 66.094575], - [-20.361284, 66.094584], - [-20.360831, 66.094596], - [-20.360523, 66.094617], - [-20.360173, 66.094717], - [-20.359783, 66.094734], - [-20.359701, 66.094813], - [-20.359557, 66.094946], - [-20.359372, 66.094984], - [-20.359197, 66.094929], - [-20.359135, 66.094834], - [-20.359362, 66.094838], - [-20.359444, 66.094763], - [-20.359331, 66.094667], - [-20.359474, 66.094613], - [-20.359783, 66.0946], - [-20.359721, 66.09455], - [-20.359639, 66.094463], - [-20.359341, 66.094463], - [-20.35932, 66.09435], - [-20.359032, 66.094267] - ] - ], - [ - [ - [-19.447411, 65.761187], - [-19.449542, 65.760352], - [-19.452642, 65.761784], - [-19.452642, 65.763215], - [-19.449832, 65.764408], - [-19.447411, 65.763295], - [-19.447411, 65.761187] - ] - ], - [ - [ - [-19.682306, 65.949647], - [-19.682216, 65.949383], - [-19.682501, 65.949083], - [-19.683064, 65.948725], - [-19.683502, 65.948458], - [-19.684394, 65.947976], - [-19.685252, 65.947264], - [-19.685916, 65.946722], - [-19.686261, 65.946576], - [-19.686501, 65.94642], - [-19.686438, 65.946232], - [-19.686621, 65.946028], - [-19.686786, 65.945784], - [-19.686904, 65.94546], - [-19.68726, 65.945097], - [-19.687386, 65.94473], - [-19.68744, 65.944526], - [-19.687527, 65.944295], - [-19.687382, 65.943973], - [-19.687204, 65.943722], - [-19.686959, 65.943496], - [-19.686711, 65.943217], - [-19.686471, 65.943087], - [-19.686013, 65.943105], - [-19.685863, 65.943046], - [-19.686308, 65.942856], - [-19.686884, 65.942672], - [-19.68742, 65.942539], - [-19.687758, 65.942517], - [-19.688118, 65.942607], - [-19.688363, 65.94276], - [-19.688588, 65.942866], - [-19.689045, 65.942993], - [-19.689384, 65.943103], - [-19.689741, 65.943129], - [-19.690144, 65.943211], - [-19.690488, 65.94314], - [-19.690666, 65.943121], - [-19.690739, 65.943037], - [-19.690959, 65.943016], - [-19.691286, 65.94307], - [-19.691453, 65.943151], - [-19.691667, 65.943214], - [-19.691796, 65.943262], - [-19.691959, 65.943542], - [-19.692054, 65.943621], - [-19.692216, 65.943632], - [-19.692404, 65.943619], - [-19.692643, 65.943648], - [-19.692789, 65.943693], - [-19.693083, 65.943694], - [-19.693454, 65.943722], - [-19.693755, 65.943785], - [-19.693872, 65.943836], - [-19.694147, 65.94386], - [-19.694312, 65.944061], - [-19.693981, 65.94412], - [-19.693422, 65.94414], - [-19.692886, 65.944137], - [-19.692311, 65.944124], - [-19.691969, 65.944087], - [-19.69163, 65.944052], - [-19.691421, 65.944045], - [-19.691356, 65.944089], - [-19.691369, 65.944137], - [-19.69147, 65.944196], - [-19.691641, 65.944246], - [-19.691791, 65.944343], - [-19.691872, 65.944422], - [-19.691851, 65.944537], - [-19.691717, 65.944592], - [-19.69139, 65.944644], - [-19.691212, 65.944647], - [-19.691094, 65.944689], - [-19.691051, 65.944796], - [-19.691019, 65.944929], - [-19.690928, 65.944985], - [-19.690686, 65.945034], - [-19.690315, 65.945036], - [-19.690004, 65.945044], - [-19.689737, 65.945062], - [-19.689634, 65.945108], - [-19.689591, 65.94515], - [-19.689694, 65.945178], - [-19.689822, 65.945226], - [-19.689956, 65.945292], - [-19.690113, 65.945362], - [-19.690215, 65.945421], - [-19.690375, 65.945463], - [-19.690605, 65.945482], - [-19.69074, 65.945455], - [-19.690822, 65.945401], - [-19.690868, 65.945344], - [-19.690962, 65.945302], - [-19.691071, 65.945294], - [-19.691088, 65.945357], - [-19.691067, 65.945423], - [-19.690993, 65.945517], - [-19.690956, 65.945598], - [-19.691023, 65.945609], - [-19.69113, 65.945574], - [-19.691287, 65.945556], - [-19.691385, 65.9456], - [-19.691411, 65.945663], - [-19.691347, 65.945714], - [-19.691345, 65.945762], - [-19.69168, 65.945834], - [-19.691813, 65.945851], - [-19.69198, 65.945856], - [-19.692205, 65.945891], - [-19.69236, 65.945909], - [-19.692446, 65.945957], - [-19.692627, 65.945972], - [-19.6928, 65.945957], - [-19.692923, 65.945965], - [-19.693084, 65.946022], - [-19.693209, 65.946031], - [-19.693529, 65.946022], - [-19.693809, 65.946024], - [-19.693958, 65.946024], - [-19.694088, 65.945981], - [-19.69426, 65.945998], - [-19.69448, 65.94602], - [-19.694602, 65.946053], - [-19.694854, 65.946063], - [-19.694946, 65.946053], - [-19.695102, 65.946067], - [-19.695172, 65.946109], - [-19.695252, 65.946132], - [-19.695515, 65.946114], - [-19.6956, 65.946158], - [-19.695595, 65.946204], - [-19.695617, 65.946243], - [-19.695741, 65.946296], - [-19.69576, 65.946342], - [-19.69584, 65.946374], - [-19.695955, 65.946396], - [-19.696013, 65.946483], - [-19.695997, 65.946545], - [-19.695788, 65.946571], - [-19.695579, 65.946566], - [-19.695397, 65.946507], - [-19.695167, 65.946396], - [-19.694951, 65.946363], - [-19.694666, 65.946366], - [-19.6945, 65.946366], - [-19.694349, 65.94633], - [-19.694211, 65.946363], - [-19.694066, 65.94639], - [-19.693952, 65.946418], - [-19.693974, 65.946477], - [-19.694145, 65.946564], - [-19.694194, 65.946646], - [-19.694308, 65.946709], - [-19.694511, 65.946772], - [-19.694555, 65.946848], - [-19.694516, 65.946894], - [-19.694419, 65.946855], - [-19.694365, 65.94679], - [-19.694158, 65.946722], - [-19.693992, 65.94668], - [-19.693781, 65.946661], - [-19.693712, 65.9467], - [-19.693642, 65.94675], - [-19.693652, 65.946822], - [-19.693707, 65.946951], - [-19.693788, 65.947154], - [-19.693727, 65.94714], - [-19.693604, 65.946971], - [-19.693504, 65.946879], - [-19.69334, 65.946847], - [-19.693048, 65.946711], - [-19.693089, 65.946634], - [-19.693289, 65.946601], - [-19.69338, 65.946549], - [-19.693277, 65.946503], - [-19.693175, 65.94647], - [-19.692977, 65.946448], - [-19.692816, 65.946438], - [-19.692662, 65.9464], - [-19.69251, 65.946328], - [-19.692383, 65.946258], - [-19.692263, 65.946218], - [-19.692109, 65.946182], - [-19.691968, 65.946175], - [-19.691958, 65.946212], - [-19.691919, 65.94625], - [-19.69171, 65.94626], - [-19.691463, 65.946261], - [-19.691254, 65.946278], - [-19.691035, 65.94628], - [-19.690806, 65.946273], - [-19.690735, 65.946346], - [-19.690677, 65.946393], - [-19.690482, 65.946374], - [-19.690338, 65.946431], - [-19.690209, 65.946501], - [-19.690001, 65.946495], - [-19.689929, 65.946591], - [-19.690106, 65.946767], - [-19.690128, 65.946842], - [-19.690047, 65.94692], - [-19.689733, 65.94709], - [-19.689576, 65.947198], - [-19.6894, 65.947326], - [-19.689221, 65.947648], - [-19.689302, 65.947985], - [-19.689457, 65.948475], - [-19.689548, 65.948569], - [-19.689715, 65.948613], - [-19.689918, 65.948645], - [-19.690038, 65.948771], - [-19.690226, 65.948857], - [-19.690262, 65.948932], - [-19.690182, 65.949029], - [-19.689966, 65.949345], - [-19.689501, 65.949407], - [-19.689035, 65.949415], - [-19.688321, 65.949539], - [-19.687682, 65.949636], - [-19.686979, 65.949791], - [-19.686351, 65.949923], - [-19.685693, 65.950075], - [-19.68531, 65.950192], - [-19.684898, 65.95029], - [-19.684453, 65.950379], - [-19.684218, 65.950397], - [-19.684103, 65.950237], - [-19.684066, 65.950051], - [-19.683937, 65.949866], - [-19.683658, 65.949763], - [-19.68358, 65.949805], - [-19.683697, 65.95006], - [-19.683358, 65.949923], - [-19.683011, 65.949935], - [-19.682715, 65.949916], - [-19.682499, 65.949838], - [-19.682306, 65.949647] - ] - ], - [ - [ - [-19.524183, 65.996768], - [-19.525892, 65.997559], - [-19.526939, 65.998471], - [-19.527399, 65.998644], - [-19.52795, 65.999159], - [-19.528612, 65.999518], - [-19.529751, 65.999855], - [-19.530781, 66.000871], - [-19.531792, 66.001103], - [-19.531755, 66.001282], - [-19.53204, 66.00148], - [-19.534749, 66.002987], - [-19.535451, 66.003272], - [-19.535866, 66.004118], - [-19.537348, 66.0049], - [-19.53929, 66.00691], - [-19.537397, 66.013067], - [-19.53804, 66.013777], - [-19.538316, 66.014875], - [-19.539841, 66.016646], - [-19.541385, 66.017609], - [-19.542432, 66.017759], - [-19.542708, 66.018319], - [-19.54358, 66.01857], - [-19.546108, 66.020067], - [-19.547432, 66.020791], - [-19.54752, 66.02127], - [-19.54892, 66.021807], - [-19.54994, 66.02249], - [-19.551714, 66.024085], - [-19.55201, 66.02524], - [-19.55317, 66.026779], - [-19.551501, 66.028748], - [-19.550734, 66.029086], - [-19.550019, 66.029503], - [-19.54934, 66.02967], - [-19.54943, 66.03018], - [-19.548575, 66.030736], - [-19.547528, 66.031617], - [-19.5458, 66.03106], - [-19.5449, 66.030393], - [-19.544587, 66.029273], - [-19.543503, 66.02775], - [-19.54257, 66.02705], - [-19.541555, 66.02598], - [-19.541426, 66.02474], - [-19.539717, 66.023455], - [-19.538761, 66.022962], - [-19.537548, 66.022484], - [-19.535489, 66.021962], - [-19.53463, 66.02139], - [-19.533872, 66.0212], - [-19.53328, 66.02092], - [-19.531465, 66.020752], - [-19.53007, 66.0205], - [-19.529002, 66.020109], - [-19.527954, 66.019878], - [-19.527035, 66.019138], - [-19.52603, 66.01729], - [-19.526851, 66.015313], - [-19.52969, 66.01308], - [-19.528028, 66.007752], - [-19.528873, 66.006668], - [-19.528615, 66.006026], - [-19.528979, 66.005804], - [-19.52881, 66.005486], - [-19.528823, 66.00509], - [-19.52777, 66.004192], - [-19.527029, 66.003547], - [-19.527142, 66.002149], - [-19.527472, 66.001522], - [-19.527914, 66.001215], - [-19.527822, 66.000064], - [-19.527399, 65.999271], - [-19.526351, 65.99889], - [-19.524495, 65.998277], - [-19.523852, 65.997739], - [-19.524183, 65.996768] - ] - ], - [ - [ - [-18.289001, 64.926593], - [-18.289113, 64.926139], - [-18.289454, 64.925761], - [-18.290066, 64.925358], - [-18.290351, 64.925295], - [-18.290699, 64.925244], - [-18.291019, 64.925216], - [-18.291152, 64.925206], - [-18.291728, 64.925203], - [-18.294007, 64.925259], - [-18.294845, 64.92526], - [-18.296188, 64.92527], - [-18.297492, 64.925351], - [-18.2983, 64.92565], - [-18.299057, 64.925821], - [-18.299658, 64.925846], - [-18.300385, 64.925645], - [-18.300934, 64.925527], - [-18.301986, 64.925418], - [-18.302989, 64.925464], - [-18.303465, 64.925402], - [-18.30381, 64.925322], - [-18.304592, 64.925223], - [-18.30491, 64.925], - [-18.30517, 64.924819], - [-18.305563, 64.924256], - [-18.305878, 64.923792], - [-18.3063, 64.9236], - [-18.307525, 64.923451], - [-18.308639, 64.923057], - [-18.309359, 64.922914], - [-18.309859, 64.922623], - [-18.310251, 64.922389], - [-18.310918, 64.922115], - [-18.311326, 64.92171], - [-18.311467, 64.921655], - [-18.313301, 64.921368], - [-18.314686, 64.921276], - [-18.314809, 64.921305], - [-18.31545, 64.921456], - [-18.316123, 64.921454], - [-18.317027, 64.92147], - [-18.317362, 64.921491], - [-18.318137, 64.921462], - [-18.319342, 64.92117], - [-18.320161, 64.921042], - [-18.320834, 64.921025], - [-18.321898, 64.92113], - [-18.32315, 64.921395], - [-18.323892, 64.921694], - [-18.324302, 64.921958], - [-18.324784, 64.922166], - [-18.325449, 64.922248], - [-18.326901, 64.922161], - [-18.327612, 64.922117], - [-18.328749, 64.922152], - [-18.33003, 64.922117], - [-18.330958, 64.922233], - [-18.331638, 64.922502], - [-18.332364, 64.922971], - [-18.332498, 64.923301], - [-18.332498, 64.923644], - [-18.332571, 64.923931], - [-18.332734, 64.923976], - [-18.333219, 64.924156], - [-18.333629, 64.924106], - [-18.334522, 64.923894], - [-18.335641, 64.923785], - [-18.336368, 64.923585], - [-18.337033, 64.923297], - [-18.337823, 64.922783], - [-18.338446, 64.922595], - [-18.339107, 64.922379], - [-18.339358, 64.922213], - [-18.339275, 64.922026], - [-18.338999, 64.921765], - [-18.338404, 64.920998], - [-18.33839, 64.920798], - [-18.338783, 64.920691], - [-18.339601, 64.920653], - [-18.339982, 64.920637], - [-18.340192, 64.920629], - [-18.341859, 64.920019], - [-18.342699, 64.919678], - [-18.343132, 64.919386], - [-18.343643, 64.918968], - [-18.344012, 64.918633], - [-18.34468, 64.918345], - [-18.345688, 64.917993], - [-18.346375, 64.917819], - [-18.347082, 64.917475], - [-18.347929, 64.917063], - [-18.348353, 64.916842], - [-18.348821, 64.916537], - [-18.349525, 64.916193], - [-18.349796, 64.915827], - [-18.349945, 64.915346], - [-18.350011, 64.915019], - [-18.35035, 64.914655], - [-18.350281, 64.914326], - [-18.350158, 64.913881], - [-18.35026, 64.913527], - [-18.350524, 64.913232], - [-18.350495, 64.912847], - [-18.350255, 64.912557], - [-18.349745, 64.912277], - [-18.349679, 64.91192], - [-18.349853, 64.911524], - [-18.349836, 64.911353], - [-18.349731, 64.911274], - [-18.349431, 64.911046], - [-18.348467, 64.910587], - [-18.347951, 64.910036], - [-18.347664, 64.909561], - [-18.347198, 64.909182], - [-18.346536, 64.908728], - [-18.346201, 64.908394], - [-18.34595, 64.90825], - [-18.345279, 64.907864], - [-18.345013, 64.90749], - [-18.344983, 64.907133], - [-18.345341, 64.906554], - [-18.345956, 64.906109], - [-18.346009, 64.905911], - [-18.346527, 64.905421], - [-18.34781, 64.904332], - [-18.348668, 64.903806], - [-18.349826, 64.903299], - [-18.350756, 64.903058], - [-18.350934, 64.902947], - [-18.351355, 64.902756], - [-18.351922, 64.902452], - [-18.353693, 64.901856], - [-18.354857, 64.901635], - [-18.356045, 64.901485], - [-18.358144, 64.901323], - [-18.358857, 64.901204], - [-18.359302, 64.90113], - [-18.361056, 64.900705], - [-18.362609, 64.900262], - [-18.363877, 64.900013], - [-18.364689, 64.899942], - [-18.365805, 64.899862], - [-18.367138, 64.899615], - [-18.367968, 64.899359], - [-18.368431, 64.899082], - [-18.369987, 64.898749], - [-18.371206, 64.89869], - [-18.372588, 64.89828], - [-18.372651, 64.898267], - [-18.373623, 64.898066], - [-18.37377, 64.898036], - [-18.374401, 64.89809], - [-18.375347, 64.898035], - [-18.375932, 64.897889], - [-18.376802, 64.897576], - [-18.377277, 64.897513], - [-18.377426, 64.897546], - [-18.378262, 64.89773], - [-18.378928, 64.897799], - [-18.379743, 64.897699], - [-18.380377, 64.897725], - [-18.381208, 64.898152], - [-18.382015, 64.89837], - [-18.382638, 64.898292], - [-18.383451, 64.898221], - [-18.384184, 64.898262], - [-18.385065, 64.898506], - [-18.385949, 64.898749], - [-18.386779, 64.898835], - [-18.387954, 64.898841], - [-18.38885, 64.898929], - [-18.38957, 64.899112], - [-18.390405, 64.899512], - [-18.3912, 64.899967], - [-18.391814, 64.900221], - [-18.392955, 64.900554], - [-18.394142, 64.900774], - [-18.395855, 64.901104], - [-18.396492, 64.901115], - [-18.397373, 64.90103], - [-18.398959, 64.900944], - [-18.400031, 64.900962], - [-18.401208, 64.900926], - [-18.402957, 64.900899], - [-18.404537, 64.90087], - [-18.405617, 64.900804], - [-18.40657, 64.900678], - [-18.40766, 64.900512], - [-18.408638, 64.900457], - [-18.409472, 64.900515], - [-18.409995, 64.900652], - [-18.412774, 64.900829], - [-18.412871, 64.900829], - [-18.414203, 64.900867], - [-18.415113, 64.900781], - [-18.415218, 64.900771], - [-18.416077, 64.900572], - [-18.416802, 64.900371], - [-18.417575, 64.900355], - [-18.418383, 64.900369], - [-18.419016, 64.900367], - [-18.419781, 64.900437], - [-18.42044, 64.900577], - [-18.42114, 64.900617], - [-18.4213, 64.900609], - [-18.422827, 64.900533], - [-18.423727, 64.900605], - [-18.424528, 64.900647], - [-18.425217, 64.900527], - [-18.425347, 64.900504], - [-18.426688, 64.900171], - [-18.427348, 64.900077], - [-18.427573, 64.900045], - [-18.428617, 64.900005], - [-18.429417, 64.900062], - [-18.430212, 64.900175], - [-18.43095, 64.900174], - [-18.431606, 64.900064], - [-18.432455, 64.899747], - [-18.432824, 64.899522], - [-18.433233, 64.899371], - [-18.433415, 64.899304], - [-18.434267, 64.899176], - [-18.435554, 64.899042], - [-18.436238, 64.898925], - [-18.436572, 64.898589], - [-18.437046, 64.898183], - [-18.437685, 64.897824], - [-18.438273, 64.897649], - [-18.438718, 64.897542], - [-18.439526, 64.897157], - [-18.440134, 64.896768], - [-18.440259, 64.896528], - [-18.440489, 64.895862], - [-18.440493, 64.895464], - [-18.440235, 64.894647], - [-18.440203, 64.89429], - [-18.440249, 64.894148], - [-18.440378, 64.893851], - [-18.440518, 64.893454], - [-18.440223, 64.893021], - [-18.440153, 64.892692], - [-18.439223, 64.892249], - [-18.438982, 64.891959], - [-18.438771, 64.891713], - [-18.438002, 64.89133], - [-18.437706, 64.890911], - [-18.437637, 64.890568], - [-18.437735, 64.890256], - [-18.438294, 64.889667], - [-18.439356, 64.889101], - [-18.440613, 64.888567], - [-18.441049, 64.888232], - [-18.441042, 64.887947], - [-18.440466, 64.887652], - [-18.439851, 64.887413], - [-18.439619, 64.887025], - [-18.43953, 64.886567], - [-18.43976, 64.886257], - [-18.440565, 64.885901], - [-18.441124, 64.885668], - [-18.441454, 64.885374], - [-18.441583, 64.885091], - [-18.441734, 64.884895], - [-18.441657, 64.884665], - [-18.441504, 64.884491], - [-18.441066, 64.884301], - [-18.44045, 64.884192], - [-18.440165, 64.884141], - [-18.439489, 64.884103], - [-18.43903, 64.884078], - [-18.438625, 64.884085], - [-18.438003, 64.883918], - [-18.437236, 64.883876], - [-18.436484, 64.883678], - [-18.435844, 64.883368], - [-18.434954, 64.88284], - [-18.433443, 64.882157], - [-18.433474, 64.88183], - [-18.434221, 64.881372], - [-18.434458, 64.881021], - [-18.434564, 64.880595], - [-18.435221, 64.880392], - [-18.435911, 64.880205], - [-18.43674, 64.879948], - [-18.437277, 64.879587], - [-18.437792, 64.879111], - [-18.438363, 64.87875], - [-18.439203, 64.878379], - [-18.439829, 64.878149], - [-18.440223, 64.87787], - [-18.440982, 64.877313], - [-18.441501, 64.87678], - [-18.441992, 64.876546], - [-18.443475, 64.87613], - [-18.443902, 64.875852], - [-18.444188, 64.875672], - [-18.444257, 64.875612], - [-18.445146, 64.875242], - [-18.446425, 64.874697], - [-18.446666, 64.874406], - [-18.4467, 64.874044], - [-18.44695, 64.873663], - [-18.447368, 64.873194], - [-18.447902, 64.872482], - [-18.447496, 64.872265], - [-18.447014, 64.872043], - [-18.446762, 64.871512], - [-18.446731, 64.871404], - [-18.446585, 64.87091], - [-18.446461, 64.870466], - [-18.446392, 64.870122], - [-18.446389, 64.869795], - [-18.446422, 64.869453], - [-18.446453, 64.869126], - [-18.44647, 64.86894], - [-18.44641, 64.868526], - [-18.446277, 64.868153], - [-18.446021, 64.867664], - [-18.446079, 64.867409], - [-18.446593, 64.866933], - [-18.44705, 64.866371], - [-18.447182, 64.866045], - [-18.447462, 64.865565], - [-18.447884, 64.865344], - [-18.44917, 64.864882], - [-18.449736, 64.864564], - [-18.451333, 64.863979], - [-18.451948, 64.863504], - [-18.45285, 64.862821], - [-18.453744, 64.862566], - [-18.454724, 64.862141], - [-18.45569, 64.861552], - [-18.455631, 64.861434], - [-18.455476, 64.861123], - [-18.455211, 64.860591], - [-18.455022, 64.860211], - [-18.45489, 64.859947], - [-18.454546, 64.859255], - [-18.454179, 64.858519], - [-18.453909, 64.857978], - [-18.453654, 64.857466], - [-18.453351, 64.856858], - [-18.453207, 64.856568], - [-18.452997, 64.856146], - [-18.452874, 64.855899], - [-18.452843, 64.855837], - [-18.466403, 64.844033], - [-18.479793, 64.851256], - [-18.497131, 64.852569], - [-18.480823, 64.858768], - [-18.484771, 64.860227], - [-18.516014, 64.857018], - [-18.528202, 64.858331], - [-18.52803, 64.862415], - [-18.52185, 64.862269], - [-18.494213, 64.866644], - [-18.466918, 64.876776], - [-18.475158, 64.87889], - [-18.464344, 64.897394], - [-18.472412, 64.898777], - [-18.46915, 64.903511], - [-18.476188, 64.903511], - [-18.482883, 64.913338], - [-18.52185, 64.92047], - [-18.557384, 64.933928], - [-18.563392, 64.934218], - [-18.5694, 64.936764], - [-18.574893, 64.945852], - [-18.611286, 64.960242], - [-18.6221, 64.963293], - [-18.634288, 64.964237], - [-18.645961, 64.963366], - [-18.657806, 64.9561], - [-18.660552, 64.947451], - [-18.668106, 64.948178], - [-18.670337, 64.950286], - [-18.675659, 64.952539], - [-18.676174, 64.954211], - [-18.680465, 64.955737], - [-18.709476, 64.960532], - [-18.75634, 64.965182], - [-18.758228, 64.962857], - [-18.763721, 64.961695], - [-18.768871, 64.962203], - [-18.772304, 64.963729], - [-18.779857, 64.959079], - [-18.774707, 64.955301], - [-18.777282, 64.953629], - [-18.788784, 64.955301], - [-18.791015, 64.964092], - [-18.783119, 64.966489], - [-18.831184, 64.971937], - [-18.83702, 64.96816], - [-18.850582, 64.96845], - [-18.861225, 64.973389], - [-18.901393, 64.970194], - [-18.930232, 64.966126], - [-18.962162, 64.9561], - [-18.990314, 64.94687], - [-19.013145, 64.929855], - [-19.01881, 64.909044], - [-19.002502, 64.901763], - [-19.00439, 64.895865], - [-19.019496, 64.898195], - [-19.026363, 64.902491], - [-19.032886, 64.894918], - [-19.053657, 64.889163], - [-19.064472, 64.867519], - [-19.067218, 64.86555], - [-19.0746, 64.865623], - [-19.114597, 64.876339], - [-19.125926, 64.873059], - [-19.120605, 64.870216], - [-19.127128, 64.866717], - [-19.145668, 64.871382], - [-19.157169, 64.864019], - [-19.165237, 64.858841], - [-19.164894, 64.850161], - [-19.164894, 64.843814], - [-19.16764, 64.841114], - [-19.161289, 64.838559], - [-19.168498, 64.833742], - [-19.166782, 64.828777], - [-19.165065, 64.824323], - [-19.153907, 64.823593], - [-19.1273, 64.819357], - [-19.134681, 64.81607], - [-19.140689, 64.810372], - [-19.13142, 64.807742], - [-19.13554, 64.805476], - [-19.142406, 64.804746], - [-19.145496, 64.80343], - [-19.146526, 64.801092], - [-19.154079, 64.797876], - [-19.155452, 64.792905], - [-19.160602, 64.792174], - [-19.160602, 64.785885], - [-19.147212, 64.776231], - [-19.204963, 64.78003], - [-19.288893, 64.78515], - [-19.380506, 64.787056], - [-19.431989, 64.788138], - [-19.554744, 64.810539], - [-19.655051, 64.805164], - [-19.680653, 64.817949], - [-19.718767, 64.83572], - [-19.741191, 64.847315], - [-19.752177, 64.85296], - [-19.762241, 64.858166], - [-19.768592, 64.861302], - [-19.770652, 64.862222], - [-19.765202, 64.862833], - [-19.768914, 64.866133], - [-19.77621, 64.866716], - [-19.779815, 64.868229], - [-19.779235, 64.870571], - [-19.773957, 64.870762], - [-19.776832, 64.872411], - [-19.773549, 64.873177], - [-19.774708, 64.874598], - [-19.772369, 64.876138], - [-19.760971, 64.883223], - [-19.757194, 64.885409], - [-19.765434, 64.887449], - [-19.776077, 64.891674], - [-19.77951, 64.895607], - [-19.79084, 64.897792], - [-19.799423, 64.900122], - [-19.806632, 64.900705], - [-19.815559, 64.902744], - [-19.822082, 64.900559], - [-19.838905, 64.902015], - [-19.853668, 64.904054], - [-19.862594, 64.90551], - [-19.87358, 64.905801], - [-19.880104, 64.907694], - [-19.883752, 64.912235], - [-19.997223, 64.911984], - [-20.09841, 64.910779], - [-20.118159, 64.920972], - [-20.154932, 64.911347], - [-20.280987, 64.91109], - [-20.330139, 64.926233], - [-20.357589, 64.935139], - [-20.452474, 64.943151], - [-20.50039, 64.924186], - [-20.535381, 64.924854], - [-20.559466, 64.913826], - [-20.615787, 64.887065], - [-20.664311, 64.887822], - [-20.759512, 64.91363], - [-20.788829, 64.913362], - [-20.889302, 64.922537], - [-20.901637, 64.925961], - [-20.977727, 64.945297], - [-21.000629, 64.978623], - [-21.014459, 64.992957], - [-21.036445, 65.018009], - [-21.077946, 65.083568], - [-21.087559, 65.102148], - [-21.088417, 65.116453], - [-21.081723, 65.129812], - [-21.072453, 65.142155], - [-21.072796, 65.153049], - [-21.072221, 65.158668], - [-21.071493, 65.159116], - [-21.070228, 65.159226], - [-21.068052, 65.158823], - [-21.067275, 65.158267], - [-21.06605, 65.157081], - [-21.066339, 65.156657], - [-21.065318, 65.156426], - [-21.065462, 65.157326], - [-21.06583, 65.16023], - [-21.06395, 65.16041], - [-21.062878, 65.171579], - [-21.0635, 65.17194], - [-21.064053, 65.172782], - [-21.063483, 65.173475], - [-21.063573, 65.175325], - [-21.06289, 65.17602], - [-21.062485, 65.176227], - [-21.062206, 65.176547], - [-21.062651, 65.176987], - [-21.06341, 65.177265], - [-21.063866, 65.177277], - [-21.064624, 65.177285], - [-21.06504, 65.177512], - [-21.064838, 65.177977], - [-21.06557, 65.178305], - [-21.066289, 65.178405], - [-21.066674, 65.178683], - [-21.06578, 65.17947], - [-21.065046, 65.179859], - [-21.06404, 65.18044], - [-21.06468, 65.18302], - [-21.06366, 65.1835], - [-21.06723, 65.18389], - [-21.06643, 65.18746], - [-21.06522, 65.18741], - [-21.06514, 65.19459], - [-21.07662, 65.21968], - [-21.07807, 65.21999], - [-21.08084, 65.22267], - [-21.0867, 65.2347], - [-21.08845, 65.23644], - [-21.08964, 65.23662], - [-21.091095, 65.240247], - [-21.09242, 65.24056], - [-21.092376, 65.24114], - [-21.09401, 65.24166], - [-21.093999, 65.242535], - [-21.09453, 65.242868], - [-21.095512, 65.243084], - [-21.095833, 65.243764], - [-21.094807, 65.244794], - [-21.09323, 65.24651], - [-21.09405, 65.24834], - [-21.098, 65.252502], - [-21.099915, 65.253218], - [-21.102602, 65.253724], - [-21.107531, 65.254178], - [-21.109107, 65.254542], - [-21.107507, 65.255287], - [-21.106866, 65.255762], - [-21.106496, 65.256247], - [-21.106349, 65.256761], - [-21.106003, 65.257479], - [-21.106583, 65.25816], - [-21.107531, 65.258428], - [-21.108357, 65.258434], - [-21.109134, 65.258578], - [-21.109861, 65.258449], - [-21.11045, 65.25847], - [-21.110083, 65.258949], - [-21.109959, 65.259537], - [-21.110502, 65.259904], - [-21.11012, 65.2606], - [-21.110477, 65.261038], - [-21.110834, 65.261255], - [-21.11112, 65.26235], - [-21.11017, 65.26385], - [-21.11227, 65.26546], - [-21.11184, 65.26597], - [-21.1144, 65.26684], - [-21.11442, 65.26813], - [-21.11321, 65.26808], - [-21.11304, 65.26884], - [-21.11121, 65.26877], - [-21.1096, 65.2705], - [-21.10841, 65.27033], - [-21.10518, 65.2711], - [-21.10339, 65.27359], - [-21.10461, 65.27364], - [-21.10449, 65.27415], - [-21.10572, 65.27421], - [-21.10609, 65.27524], - [-21.10487, 65.27519], - [-21.10514, 65.27674], - [-21.1013, 65.27749], - [-21.09959, 65.277665], - [-21.097805, 65.278247], - [-21.094431, 65.279277], - [-21.093181, 65.279729], - [-21.089468, 65.281614], - [-21.088556, 65.283259], - [-21.088921, 65.284163], - [-21.089989, 65.284893], - [-21.09249, 65.28522], - [-21.093233, 65.285699], - [-21.094718, 65.285841], - [-21.095304, 65.28632], - [-21.095356, 65.286865], - [-21.098509, 65.287998], - [-21.098131, 65.288515], - [-21.095812, 65.289321], - [-21.095864, 65.29029], - [-21.09478, 65.29147], - [-21.097167, 65.2931], - [-21.097714, 65.293628], - [-21.097506, 65.293955], - [-21.099512, 65.29488], - [-21.099069, 65.295637], - [-21.098978, 65.296617], - [-21.097949, 65.296759], - [-21.09688, 65.296846], - [-21.094874, 65.298], - [-21.08798, 65.29993], - [-21.086524, 65.301255], - [-21.087449, 65.301979], - [-21.087019, 65.302279], - [-21.086055, 65.302159], - [-21.084296, 65.302736], - [-21.083411, 65.303122], - [-21.083085, 65.303656], - [-21.081717, 65.304663], - [-21.081626, 65.305261], - [-21.079698, 65.30599], - [-21.07769, 65.30748], - [-21.07796, 65.30903], - [-21.077044, 65.312356], - [-21.077731, 65.312786], - [-21.07917, 65.31318], - [-21.079383, 65.314148], - [-21.078417, 65.314542], - [-21.077151, 65.314928], - [-21.07622, 65.31538], - [-21.07298, 65.31884], - [-21.07177, 65.31879], - [-21.06924, 65.32049], - [-21.06787, 65.33198], - [-21.0684, 65.33508], - [-21.07206, 65.34062], - [-21.06958, 65.34617], - [-21.06993, 65.35003], - [-21.07263, 65.35166], - [-21.07212, 65.35396], - [-21.07377, 65.3548], - [-21.07485, 65.35818], - [-21.07828, 65.37294], - [-21.07974, 65.37325], - [-21.08185, 65.38026], - [-21.08307, 65.38031], - [-21.08158, 65.38282], - [-21.08236, 65.38619], - [-21.08357, 65.38623], - [-21.08287, 65.388], - [-21.08344, 65.38828], - [-21.08236, 65.39029], - [-21.08402, 65.39112], - [-21.08326, 65.39854], - [-21.08448, 65.39859], - [-21.08446, 65.40141], - [-21.08568, 65.40146], - [-21.08459, 65.40218], - [-21.08464, 65.40334], - [-21.08717, 65.40305], - [-21.08749, 65.40435], - [-21.08633, 65.40405], - [-21.08507, 65.40555], - [-21.08734, 65.4064], - [-21.08705, 65.40767], - [-21.08907, 65.40826], - [-21.088293, 65.410236], - [-21.087561, 65.410947], - [-21.08594, 65.41123], - [-21.08561, 65.411874], - [-21.085187, 65.412293], - [-21.084845, 65.412909], - [-21.083756, 65.413464], - [-21.081544, 65.417023], - [-21.08156, 65.42105], - [-21.08266, 65.42161], - [-21.08124, 65.42515], - [-21.0834, 65.4265], - [-21.0842, 65.43116], - [-21.08339, 65.43156], - [-21.08375, 65.43179], - [-21.0833, 65.43199], - [-21.085593, 65.434599], - [-21.085431, 65.435127], - [-21.08594, 65.43572], - [-21.088212, 65.435843], - [-21.0877, 65.43746], - [-21.08961, 65.43856], - [-21.08839, 65.43851], - [-21.08816, 65.43953], - [-21.0906, 65.43963], - [-21.09091, 65.44374], - [-21.09335, 65.44383], - [-21.09354, 65.44436], - [-21.09501, 65.44468], - [-21.09538, 65.44854], - [-21.090714, 65.448827], - [-21.089666, 65.449256], - [-21.089186, 65.449854], - [-21.088337, 65.450182], - [-21.087995, 65.45072], - [-21.08746, 65.45079], - [-21.086412, 65.451142], - [-21.085932, 65.451096], - [-21.085899, 65.450935], - [-21.085392, 65.45094], - [-21.085381, 65.451055], - [-21.085011, 65.451094], - [-21.084818, 65.450848], - [-21.084394, 65.450823], - [-21.083627, 65.450988], - [-21.082778, 65.45127], - [-21.082662, 65.451621], - [-21.081239, 65.451957], - [-21.080494, 65.452008], - [-21.080445, 65.452196], - [-21.080224, 65.452759], - [-21.079447, 65.452837], - [-21.079071, 65.452379], - [-21.078421, 65.452384], - [-21.078206, 65.452583], - [-21.077604, 65.452768], - [-21.077158, 65.453055], - [-21.076827, 65.453589], - [-21.075503, 65.454416], - [-21.074775, 65.454599], - [-21.073964, 65.454677], - [-21.074174, 65.454929], - [-21.073451, 65.455293], - [-21.072878, 65.455339], - [-21.072321, 65.455373], - [-21.071841, 65.45549], - [-21.070258, 65.455376], - [-21.06969, 65.455529], - [-21.069122, 65.455566], - [-21.068521, 65.455669], - [-21.067892, 65.455942], - [-21.067589, 65.456162], - [-21.067186, 65.456331], - [-21.066739, 65.456384], - [-21.066431, 65.456329], - [-21.065769, 65.45604], - [-21.064936, 65.455921], - [-21.063734, 65.455923], - [-21.062829, 65.455784], - [-21.061936, 65.455756], - [-21.06119, 65.455793], - [-21.058841, 65.454827], - [-21.058549, 65.454695], - [-21.058378, 65.454517], - [-21.058313, 65.45424], - [-21.058961, 65.45367], - [-21.059159, 65.453335], - [-21.059175, 65.453037], - [-21.059036, 65.452826], - [-21.058846, 65.452656], - [-21.05817, 65.452421], - [-21.058277, 65.451989], - [-21.05787, 65.451665], - [-21.057318, 65.451546], - [-21.056599, 65.451516], - [-21.057102, 65.451337], - [-21.057354, 65.451142], - [-21.057366, 65.450868], - [-21.05721, 65.450609], - [-21.05546, 65.449992], - [-21.053914, 65.449534], - [-21.052451, 65.448971], - [-21.051001, 65.448179], - [-21.051349, 65.447422], - [-21.051504, 65.447242], - [-21.051528, 65.447073], - [-21.051337, 65.446899], - [-21.051061, 65.446764], - [-21.050054, 65.446042], - [-21.049515, 65.445559], - [-21.048831, 65.445091], - [-21.0481, 65.444772], - [-21.047872, 65.444433], - [-21.047441, 65.444109], - [-21.046674, 65.443785], - [-21.04605, 65.443556], - [-21.044923, 65.443073], - [-21.04366, 65.44266], - [-21.043245, 65.441992], - [-21.042814, 65.441713], - [-21.04219, 65.441558], - [-21.039757, 65.440961], - [-21.039817, 65.440846], - [-21.04071, 65.44074], - [-21.041159, 65.440592], - [-21.041291, 65.440368], - [-21.04069, 65.43946], - [-21.038858, 65.438704], - [-21.038366, 65.437941], - [-21.038498, 65.437114], - [-21.039325, 65.436611], - [-21.039517, 65.436446], - [-21.039529, 65.436252], - [-21.039301, 65.435908], - [-21.039242, 65.43525], - [-21.039337, 65.435021], - [-21.039385, 65.434787], - [-21.038942, 65.434149], - [-21.037012, 65.432973], - [-21.037256, 65.432828], - [-21.037375, 65.432677], - [-21.037309, 65.43251], - [-21.037062, 65.432374], - [-21.037358, 65.432231], - [-21.037406, 65.431696], - [-21.03711, 65.431044], - [-21.036664, 65.430595], - [-21.035907, 65.430212], - [-21.035336, 65.429624], - [-21.035354, 65.429319], - [-21.035409, 65.429058], - [-21.035867, 65.428814], - [-21.035962, 65.428669], - [-21.035893, 65.428527], - [-21.035765, 65.428331], - [-21.035449, 65.428183], - [-21.034837, 65.427893], - [-21.035085, 65.427725], - [-21.035179, 65.427523], - [-21.035168, 65.426658], - [-21.035085, 65.426472], - [-21.034877, 65.426284], - [-21.034353, 65.425971], - [-21.034102, 65.42568], - [-21.033691, 65.425411], - [-21.034255, 65.425019], - [-21.034444, 65.424759], - [-21.034288, 65.424535], - [-21.034022, 65.42414], - [-21.033615, 65.423958], - [-21.033626, 65.423789], - [-21.032858, 65.423191], - [-21.032585, 65.422872], - [-21.032308, 65.422711], - [-21.031945, 65.422582], - [-21.030413, 65.422254], - [-21.030271, 65.422171], - [-21.030365, 65.421979], - [-21.030369, 65.421774], - [-21.029907, 65.421432], - [-21.029896, 65.421045], - [-21.029703, 65.420659], - [-21.029314, 65.420247], - [-21.028713, 65.419931], - [-21.028531, 65.419565], - [-21.028553, 65.419191], - [-21.028612, 65.418843], - [-21.028164, 65.418457], - [-21.027971, 65.418263], - [-21.027553, 65.41799], - [-21.027629, 65.417813], - [-21.027556, 65.417632], - [-21.027094, 65.417324], - [-21.026527, 65.417043], - [-21.025752, 65.416693], - [-21.02558, 65.416306], - [-21.024951, 65.416023], - [-21.024554, 65.415727], - [-21.02474, 65.415587], - [-21.024976, 65.415346], - [-21.024915, 65.414916], - [-21.025093, 65.414568], - [-21.025027, 65.41446], - [-21.024278, 65.41398], - [-21.02347, 65.413084], - [-21.022793, 65.412512], - [-21.022753, 65.41222], - [-21.022528, 65.411949], - [-21.021807, 65.411048], - [-21.021574, 65.410716], - [-21.02125, 65.410383], - [-21.020803, 65.409962], - [-21.020202, 65.409568], - [-21.019122, 65.408872], - [-21.0187, 65.408325], - [-21.018012, 65.407792], - [-21.01719, 65.407121], - [-21.017204, 65.406593], - [-21.016582, 65.406125], - [-21.016222, 65.405802], - [-21.017182, 65.40487], - [-21.017179, 65.404459], - [-21.016837, 65.404065], - [-21.016051, 65.403788], - [-21.015261, 65.403532], - [-21.015305, 65.403154], - [-21.015185, 65.403005], - [-21.014592, 65.402499], - [-21.014071, 65.402209], - [-21.013434, 65.401953], - [-21.011331, 65.401306], - [-21.010378, 65.400638], - [-21.010364, 65.400136], - [-21.010885, 65.39922], - [-21.010608, 65.398609], - [-21.0035, 65.39333], - [-21.002918, 65.390574], - [-21.002611, 65.389382], - [-21.00252, 65.38816], - [-21.002246, 65.387949], - [-21.001671, 65.387656], - [-21.000953, 65.387333], - [-21.000352, 65.386673], - [-20.999541, 65.386142], - [-20.999715, 65.385764], - [-20.99944, 65.38547], - [-20.998916, 65.384997], - [-20.997726, 65.384364], - [-20.99729, 65.3841], - [-20.997238, 65.383844], - [-20.996587, 65.383456], - [-20.995737, 65.383078], - [-20.995506, 65.382812], - [-20.996121, 65.382236], - [-20.996035, 65.382121], - [-20.995506, 65.381622], - [-20.995776, 65.381059], - [-20.996008, 65.380399], - [-20.995349, 65.379035], - [-20.99427, 65.377793], - [-20.991447, 65.375927], - [-20.988154, 65.373152], - [-20.98828, 65.37245], - [-20.985496, 65.370974], - [-20.98562, 65.370423], - [-20.984759, 65.369849], - [-20.98293, 65.369259], - [-20.98233, 65.36888], - [-20.980083, 65.367906], - [-20.979922, 65.367554], - [-20.980002, 65.367153], - [-20.979868, 65.366529], - [-20.97926, 65.36619], - [-20.97804, 65.365717], - [-20.978713, 65.365378], - [-20.978265, 65.365003], - [-20.977291, 65.364524], - [-20.97674, 65.36378], - [-20.976348, 65.363474], - [-20.97479, 65.362574], - [-20.97416, 65.36162], - [-20.973195, 65.361283], - [-20.97245, 65.36104], - [-20.971182, 65.360446], - [-20.970166, 65.360168], - [-20.969055, 65.359953], - [-20.96867, 65.359566], - [-20.968991, 65.358875], - [-20.969391, 65.35843], - [-20.970166, 65.358039], - [-20.970304, 65.357455], - [-20.969926, 65.357059], - [-20.969124, 65.356691], - [-20.969178, 65.356201], - [-20.967923, 65.355625], - [-20.967114, 65.355151], - [-20.966086, 65.354707], - [-20.965232, 65.354327], - [-20.96422, 65.35404], - [-20.963385, 65.353655], - [-20.96263, 65.35295], - [-20.961523, 65.352568], - [-20.959797, 65.351464], - [-20.959048, 65.350684], - [-20.958621, 65.349502], - [-20.957819, 65.349101], - [-20.95693, 65.34835], - [-20.956752, 65.348009], - [-20.95582, 65.3478], - [-20.955171, 65.347393], - [-20.953689, 65.34706], - [-20.95183, 65.34648], - [-20.947195, 65.3463], - [-20.945888, 65.345767], - [-20.944691, 65.345638], - [-20.944556, 65.345026], - [-20.94388, 65.344647], - [-20.943451, 65.344449], - [-20.943455, 65.344156], - [-20.944073, 65.343841], - [-20.943918, 65.343608], - [-20.943532, 65.343447], - [-20.943223, 65.343721], - [-20.94079, 65.34426], - [-20.938654, 65.34469], - [-20.937913, 65.344494], - [-20.936755, 65.344526], - [-20.938396, 65.344913], - [-20.938347, 65.345234], - [-20.938903, 65.345547], - [-20.942238, 65.345702], - [-20.94355, 65.345585], - [-20.945173, 65.345984], - [-20.945675, 65.346185], - [-20.94266, 65.34624], - [-20.936233, 65.346765], - [-20.931078, 65.347377], - [-20.92629, 65.348312], - [-20.921175, 65.349655], - [-20.920128, 65.34998], - [-20.916591, 65.351323], - [-20.914691, 65.352328], - [-20.913526, 65.353272], - [-20.913169, 65.354506], - [-20.912745, 65.354527], - [-20.91236, 65.354546], - [-20.912111, 65.35455], - [-20.910784, 65.354675], - [-20.911422, 65.355953], - [-20.912735, 65.356123], - [-20.913063, 65.356292], - [-20.912716, 65.357016], - [-20.912098, 65.358071], - [-20.912503, 65.358699], - [-20.913758, 65.359544], - [-20.914612, 65.360299], - [-20.91477, 65.36051], - [-20.915148, 65.3608], - [-20.91509, 65.361396], - [-20.915879, 65.361879], - [-20.916464, 65.361987], - [-20.916751, 65.362289], - [-20.917388, 65.362571], - [-20.917697, 65.363102], - [-20.91808, 65.36347], - [-20.91975, 65.36688], - [-20.923799, 65.368442], - [-20.924591, 65.370491], - [-20.925923, 65.371703], - [-20.926263, 65.372012], - [-20.92677, 65.37242], - [-20.92765, 65.372596], - [-20.928332, 65.373199], - [-20.929179, 65.374464], - [-20.930189, 65.374826], - [-20.93103, 65.37529], - [-20.931483, 65.375425], - [-20.93213, 65.37583], - [-20.932137, 65.376215], - [-20.93226, 65.37662], - [-20.932546, 65.377313], - [-20.93318, 65.37794], - [-20.93644, 65.384167], - [-20.936697, 65.384278], - [-20.937337, 65.384415], - [-20.937517, 65.384733], - [-20.93789, 65.384906], - [-20.938379, 65.385016], - [-20.938562, 65.385198], - [-20.938903, 65.385329], - [-20.939314, 65.385561], - [-20.93955, 65.385652], - [-20.939919, 65.385831], - [-20.940215, 65.38591], - [-20.940481, 65.386023], - [-20.940595, 65.386185], - [-20.940672, 65.386402], - [-20.940377, 65.386522], - [-20.940222, 65.386721], - [-20.940271, 65.387006], - [-20.940025, 65.387258], - [-20.939898, 65.387527], - [-20.939912, 65.387844], - [-20.940158, 65.388095], - [-20.940299, 65.388295], - [-20.940151, 65.388424], - [-20.940116, 65.38862], - [-20.940381, 65.388815], - [-20.940763, 65.389042], - [-20.941108, 65.389262], - [-20.941284, 65.389461], - [-20.941157, 65.389748], - [-20.941094, 65.389938], - [-20.941453, 65.390384], - [-20.941263, 65.390545], - [-20.94115, 65.390756], - [-20.941305, 65.390981], - [-20.941122, 65.391096], - [-20.941087, 65.391277], - [-20.941537, 65.391632], - [-20.941926, 65.391973], - [-20.941675, 65.392063], - [-20.941764, 65.392345], - [-20.942115, 65.392433], - [-20.942544, 65.392587], - [-20.942775, 65.392663], - [-20.94309, 65.392697], - [-20.94338, 65.392777], - [-20.943444, 65.392868], - [-20.943517, 65.393001], - [-20.943595, 65.393143], - [-20.94378, 65.393334], - [-20.944088, 65.393508], - [-20.944503, 65.3937], - [-20.944597, 65.39375], - [-20.944674, 65.393772], - [-20.944802, 65.393749], - [-20.945526, 65.393512], - [-20.945561, 65.393473], - [-20.945512, 65.393449], - [-20.945267, 65.393397], - [-20.944579, 65.393257], - [-20.944451, 65.393252], - [-20.94431, 65.393277], - [-20.944196, 65.393267], - [-20.944138, 65.393237], - [-20.944126, 65.39318], - [-20.944213, 65.393146], - [-20.944309, 65.393112], - [-20.944512, 65.393092], - [-20.945724, 65.393345], - [-20.947019, 65.393603], - [-20.947223, 65.39366], - [-20.947258, 65.393706], - [-20.947209, 65.393749], - [-20.947053, 65.393765], - [-20.946814, 65.393716], - [-20.946065, 65.393575], - [-20.945836, 65.393538], - [-20.945729, 65.393544], - [-20.945743, 65.393566], - [-20.944614, 65.394], - [-20.94457, 65.393987], - [-20.944526, 65.394038], - [-20.944653, 65.394106], - [-20.944774, 65.39412], - [-20.944852, 65.394093], - [-20.945495, 65.394359], - [-20.945432, 65.394387], - [-20.945663, 65.394493], - [-20.946075, 65.39467], - [-20.946575, 65.394825], - [-20.946993, 65.395029], - [-20.947072, 65.39498], - [-20.947227, 65.394966], - [-20.947446, 65.394991], - [-20.948135, 65.394354], - [-20.948105, 65.39434], - [-20.948637, 65.393827], - [-20.94883, 65.393866], - [-20.948787, 65.39391], - [-20.948917, 65.393926], - [-20.949158, 65.393738], - [-20.949306, 65.393711], - [-20.949445, 65.39374], - [-20.949479, 65.393809], - [-20.94919, 65.394048], - [-20.948964, 65.394335], - [-20.948685, 65.394625], - [-20.948643, 65.394761], - [-20.948624, 65.39498], - [-20.94877, 65.395114], - [-20.948984, 65.395089], - [-20.949111, 65.395118], - [-20.94901, 65.395366], - [-20.949205, 65.395553], - [-20.949069, 65.395593], - [-20.948786, 65.395524], - [-20.948631, 65.395553], - [-20.948709, 65.395764], - [-20.948551, 65.395997], - [-20.948329, 65.396335], - [-20.948222, 65.396696], - [-20.948329, 65.397], - [-20.948894, 65.397243], - [-20.949234, 65.397276], - [-20.949341, 65.39741], - [-20.949145, 65.397465], - [-20.949517, 65.39773], - [-20.949458, 65.397945], - [-20.949663, 65.398354], - [-20.950043, 65.398508], - [-20.950072, 65.398614], - [-20.950315, 65.398674], - [-20.950452, 65.398614], - [-20.950627, 65.398557], - [-20.950909, 65.398601], - [-20.951153, 65.398853], - [-20.950822, 65.398934], - [-20.950617, 65.399076], - [-20.950422, 65.399416], - [-20.950481, 65.399659], - [-20.951231, 65.399822], - [-20.951299, 65.399886], - [-20.951026, 65.399886], - [-20.950471, 65.399842], - [-20.950315, 65.400109], - [-20.950237, 65.40062], - [-20.951114, 65.401342], - [-20.951055, 65.402193], - [-20.951347, 65.402963], - [-20.95141, 65.403991], - [-20.951425, 65.404244], - [-20.951133, 65.404997], - [-20.95162, 65.40584], - [-20.951581, 65.406319], - [-20.952185, 65.406967], - [-20.95215, 65.4077], - [-20.95235, 65.40951], - [-20.95406, 65.41009], - [-20.954299, 65.412389], - [-20.9574, 65.41831], - [-20.9592, 65.41851], - [-20.95847, 65.41899], - [-20.96202, 65.41965], - [-20.9616, 65.42015], - [-20.96236, 65.42082], - [-20.96478, 65.42104], - [-20.96466, 65.42155], - [-20.96613, 65.42187], - [-20.96762, 65.42475], - [-20.96881, 65.42493], - [-20.96923, 65.42712], - [-20.97559, 65.43431], - [-20.97639, 65.44153], - [-20.9742, 65.44298], - [-20.97624, 65.44485], - [-20.976529, 65.450336], - [-20.977817, 65.451239], - [-20.97859, 65.451817], - [-20.97877, 65.452062], - [-20.979707, 65.452905], - [-20.979608, 65.454565], - [-20.979656, 65.456118], - [-20.981789, 65.457323], - [-20.9811, 65.46122], - [-20.99009, 65.47312], - [-20.990362, 65.478385], - [-20.99021, 65.47929], - [-20.99013, 65.48365], - [-20.989994, 65.484187], - [-20.98912, 65.48669], - [-20.988967, 65.487257], - [-20.98871, 65.48847], - [-20.988443, 65.489243], - [-20.98782, 65.491], - [-20.98603, 65.49478], - [-20.98479, 65.49473], - [-20.984057, 65.496965], - [-20.983766, 65.498161], - [-20.982543, 65.498722], - [-20.981568, 65.499187], - [-20.978173, 65.502608], - [-20.979113, 65.506931], - [-20.978655, 65.50908], - [-20.978465, 65.509918], - [-20.978846, 65.510724], - [-20.97725, 65.51265], - [-20.97428, 65.51612], - [-20.973717, 65.517087], - [-20.9727, 65.5176], - [-20.972079, 65.517959], - [-20.971409, 65.518485], - [-20.970539, 65.518999], - [-20.969997, 65.519545], - [-20.969428, 65.520266], - [-20.968635, 65.521052], - [-20.968379, 65.522259], - [-20.96873, 65.522951], - [-20.969471, 65.523258], - [-20.969377, 65.523861], - [-20.968223, 65.524697], - [-20.968357, 65.525056], - [-20.968594, 65.525296], - [-20.967859, 65.525324], - [-20.967279, 65.525313], - [-20.96495, 65.52704], - [-20.963979, 65.527564], - [-20.963739, 65.527958], - [-20.963462, 65.528543], - [-20.962948, 65.528745], - [-20.96209, 65.528915], - [-20.96057, 65.529932], - [-20.958809, 65.533028], - [-20.95742, 65.53547], - [-20.95619, 65.53543], - [-20.95226, 65.54168], - [-20.95109, 65.54138], - [-20.95098, 65.54188], - [-20.95064, 65.541966], - [-20.9503, 65.54211], - [-20.9484, 65.54896], - [-20.94951, 65.54952], - [-20.94867, 65.5518], - [-20.94744, 65.55175], - [-20.94563, 65.55553], - [-20.94429, 65.55726], - [-20.943712, 65.557837], - [-20.943338, 65.559419], - [-20.940671, 65.561282], - [-20.93858, 65.56449], - [-20.93902, 65.56528], - [-20.93767, 65.56573], - [-20.9372, 65.56777], - [-20.93754, 65.57035], - [-20.94063, 65.57034], - [-20.94147, 65.57076], - [-20.941285, 65.573212], - [-20.94118, 65.5746], - [-20.93898, 65.57604], - [-20.93911, 65.57683], - [-20.93788, 65.57677], - [-20.93795, 65.57781], - [-20.93367, 65.5802], - [-20.93282, 65.58119], - [-20.93295, 65.58197], - [-20.92981, 65.5821], - [-20.92902, 65.58284], - [-20.9278, 65.58279], - [-20.9264, 65.58478], - [-20.92438, 65.58548], - [-20.9245, 65.58625], - [-20.92328, 65.5862], - [-20.9231, 65.58696], - [-20.92058, 65.58711], - [-20.9204, 65.58788], - [-20.91917, 65.58783], - [-20.91905, 65.58834], - [-20.91648, 65.58875], - [-20.91636, 65.58926], - [-20.91378, 65.58967], - [-20.91298, 65.59041], - [-20.90985, 65.59054], - [-20.91004, 65.59106], - [-20.90809, 65.59278], - [-20.90686, 65.59273], - [-20.9068, 65.593442], - [-20.906689, 65.59475], - [-20.906304, 65.594844], - [-20.906567, 65.594967], - [-20.906374, 65.595176], - [-20.90589, 65.59551], - [-20.90381, 65.59646], - [-20.90431, 65.59699], - [-20.90126, 65.60072], - [-20.89935, 65.6009], - [-20.89838, 65.60241], - [-20.89266, 65.60294], - [-20.89175, 65.60418], - [-20.890307, 65.604209], - [-20.889653, 65.604227], - [-20.889106, 65.604789], - [-20.889021, 65.605273], - [-20.888843, 65.605698], - [-20.889208, 65.605977], - [-20.889701, 65.606092], - [-20.889942, 65.605968], - [-20.890184, 65.605919], - [-20.890474, 65.606097], - [-20.89033, 65.606988], - [-20.889889, 65.606914], - [-20.889755, 65.606732], - [-20.889444, 65.606704], - [-20.889171, 65.606757], - [-20.888703, 65.606925], - [-20.888376, 65.607125], - [-20.888183, 65.607847], - [-20.887866, 65.607971], - [-20.88681, 65.607966], - [-20.887398, 65.607455], - [-20.887775, 65.607204], - [-20.887797, 65.607029], - [-20.887512, 65.606992], - [-20.887153, 65.607054], - [-20.886949, 65.6072], - [-20.886552, 65.607497], - [-20.885715, 65.607687], - [-20.884819, 65.607718], - [-20.883861, 65.608157], - [-20.883371, 65.608516], - [-20.882996, 65.608932], - [-20.882706, 65.609149], - [-20.882985, 65.60922], - [-20.883092, 65.609451], - [-20.882824, 65.609743], - [-20.882497, 65.609767], - [-20.882116, 65.609672], - [-20.88179, 65.609562], - [-20.881225, 65.609382], - [-20.879784, 65.609174], - [-20.879, 65.609135], - [-20.878389, 65.609032], - [-20.878295, 65.608917], - [-20.878062, 65.608939], - [-20.877713, 65.609304], - [-20.87716, 65.609471], - [-20.877404, 65.609241], - [-20.877512, 65.608905], - [-20.8766, 65.608643], - [-20.875774, 65.608626], - [-20.875237, 65.60871], - [-20.87512, 65.6089], - [-20.874658, 65.609064], - [-20.874636, 65.609365], - [-20.873899, 65.609732], - [-20.86984, 65.61023], - [-20.86966, 65.61099], - [-20.86787, 65.61066], - [-20.86321, 65.6133], - [-20.86113, 65.61552], - [-20.857364, 65.616215], - [-20.8542, 65.61858], - [-20.84962, 65.61955], - [-20.8478, 65.61935], - [-20.84768, 65.61986], - [-20.84258, 65.62042], - [-20.84246, 65.62093], - [-20.841794, 65.621016], - [-20.841042, 65.621067], - [-20.840301, 65.621586], - [-20.838485, 65.622198], - [-20.83612, 65.624339], - [-20.83314, 65.6262], - [-20.831278, 65.627468], - [-20.829329, 65.627824], - [-20.827746, 65.628465], - [-20.826205, 65.630455], - [-20.826456, 65.630894], - [-20.82576, 65.63103], - [-20.825073, 65.631189], - [-20.823942, 65.631645], - [-20.823709, 65.631495], - [-20.823046, 65.631038], - [-20.821965, 65.630964], - [-20.8214, 65.63111], - [-20.82035, 65.63158], - [-20.82048, 65.63235], - [-20.81931, 65.63205], - [-20.81845, 65.63304], - [-20.81722, 65.63299], - [-20.81814, 65.63175], - [-20.817502, 65.631418], - [-20.816414, 65.631316], - [-20.81432, 65.6321], - [-20.81002, 65.63321], - [-20.81014, 65.63399], - [-20.80824, 65.63417], - [-20.80805, 65.63493], - [-20.806837, 65.634584], - [-20.80633, 65.63434], - [-20.80571, 65.63432], - [-20.80418, 65.63554], - [-20.803664, 65.635119], - [-20.802819, 65.634812], - [-20.801335, 65.63468], - [-20.799777, 65.634878], - [-20.7931, 65.64116], - [-20.79342, 65.64152], - [-20.79264, 65.64132], - [-20.79096, 65.64142], - [-20.79155, 65.642273], - [-20.79065, 65.64269], - [-20.789575, 65.642167], - [-20.78831, 65.64208], - [-20.788294, 65.642491], - [-20.787581, 65.642623], - [-20.787319, 65.642545], - [-20.786009, 65.643073], - [-20.785688, 65.643236], - [-20.785237, 65.643488], - [-20.783869, 65.64398], - [-20.782283, 65.644448], - [-20.781206, 65.645072], - [-20.780915, 65.645489], - [-20.77971, 65.64814], - [-20.77534, 65.65079], - [-20.7754, 65.65182], - [-20.772635, 65.652613], - [-20.770629, 65.653377], - [-20.76925, 65.65413], - [-20.76878, 65.654602], - [-20.767307, 65.655255], - [-20.766486, 65.65572], - [-20.765732, 65.655904], - [-20.765167, 65.656278], - [-20.765126, 65.656695], - [-20.765818, 65.657668], - [-20.766246, 65.658155], - [-20.766931, 65.658338], - [-20.767462, 65.658684], - [-20.76729, 65.658832], - [-20.766435, 65.658874], - [-20.76628, 65.659143], - [-20.76537, 65.65988], - [-20.76465, 65.660633], - [-20.763627, 65.660681], - [-20.763588, 65.660289], - [-20.762959, 65.660462], - [-20.762736, 65.660836], - [-20.762189, 65.660737], - [-20.761551, 65.660871], - [-20.761213, 65.66138], - [-20.75928, 65.66194], - [-20.756652, 65.661972], - [-20.756693, 65.66212], - [-20.756727, 65.662371], - [-20.756599, 65.662537], - [-20.756976, 65.662646], - [-20.757061, 65.662808], - [-20.757215, 65.662953], - [-20.75713, 65.66313], - [-20.756763, 65.663207], - [-20.756565, 65.663327], - [-20.756388, 65.663475], - [-20.755923, 65.663517], - [-20.755255, 65.663588], - [-20.754879, 65.66356], - [-20.754442, 65.66339], - [-20.75338, 65.663397], - [-20.75292, 65.663583], - [-20.75291, 65.663669], - [-20.753115, 65.663789], - [-20.753509, 65.663937], - [-20.753594, 65.664131], - [-20.75344, 65.664233], - [-20.753072, 65.664251], - [-20.752738, 65.664177], - [-20.75255, 65.664008], - [-20.752225, 65.663898], - [-20.752097, 65.664043], - [-20.751797, 65.664064], - [-20.751814, 65.664188], - [-20.752277, 65.664212], - [-20.752413, 65.66442], - [-20.752653, 65.664618], - [-20.752679, 65.66477], - [-20.752576, 65.66483], - [-20.752174, 65.664819], - [-20.751955, 65.664706], - [-20.751651, 65.66447], - [-20.7513, 65.664505], - [-20.751086, 65.664378], - [-20.750727, 65.664441], - [-20.750376, 65.664554], - [-20.750479, 65.664643], - [-20.750299, 65.664798], - [-20.750111, 65.66484], - [-20.75002, 65.66506], - [-20.75035, 65.66526], - [-20.750427, 65.665362], - [-20.750316, 65.665553], - [-20.750117, 65.665551], - [-20.749837, 65.665426], - [-20.749546, 65.665327], - [-20.749284, 65.665133], - [-20.748974, 65.665095], - [-20.74863, 65.66515], - [-20.748278, 65.665126], - [-20.74796, 65.664788], - [-20.747767, 65.664429], - [-20.746896, 65.664273], - [-20.746243, 65.664474], - [-20.745589, 65.664577], - [-20.744768, 65.664104], - [-20.744441, 65.664056], - [-20.742856, 65.663677], - [-20.742271, 65.66349], - [-20.741182, 65.663507], - [-20.739892, 65.663679], - [-20.73888, 65.66392], - [-20.73784, 65.66439], - [-20.73808, 65.66594], - [-20.73759, 65.66669], - [-20.736472, 65.666504], - [-20.736099, 65.666499], - [-20.735708, 65.666561], - [-20.735299, 65.66681], - [-20.735172, 65.667076], - [-20.735705, 65.667547], - [-20.735905, 65.667801], - [-20.735625, 65.668144], - [-20.735001, 65.668602], - [-20.7342, 65.668861], - [-20.733961, 65.669103], - [-20.733244, 65.669153], - [-20.733155, 65.668753], - [-20.7327, 65.66868], - [-20.732164, 65.668817], - [-20.731361, 65.669325], - [-20.730737, 65.669771], - [-20.730817, 65.670044], - [-20.730422, 65.670167], - [-20.73005, 65.670284], - [-20.730295, 65.670355], - [-20.730201, 65.670495], - [-20.729917, 65.670472], - [-20.730228, 65.670655], - [-20.730372, 65.67073], - [-20.730095, 65.670906], - [-20.729739, 65.670817], - [-20.729417, 65.670652], - [-20.729293, 65.67058], - [-20.728788, 65.67073], - [-20.728568, 65.670937], - [-20.72904, 65.671247], - [-20.728867, 65.671461], - [-20.729778, 65.671707], - [-20.729763, 65.671906], - [-20.729542, 65.67202], - [-20.729067, 65.671906], - [-20.729357, 65.672102], - [-20.729739, 65.672221], - [-20.729078, 65.672933], - [-20.729218, 65.673196], - [-20.729125, 65.673358], - [-20.729113, 65.673573], - [-20.728591, 65.673387], - [-20.72851, 65.673635], - [-20.72783, 65.673841], - [-20.727026, 65.673774], - [-20.726782, 65.673372], - [-20.725773, 65.673296], - [-20.724877, 65.673162], - [-20.723025, 65.673153], - [-20.721726, 65.673544], - [-20.721506, 65.673922], - [-20.721355, 65.67395], - [-20.720868, 65.673807], - [-20.720706, 65.674175], - [-20.720242, 65.674399], - [-20.719428, 65.674612], - [-20.719511, 65.674954], - [-20.719129, 65.675001], - [-20.718931, 65.674939], - [-20.71857, 65.67512], - [-20.718166, 65.675321], - [-20.718038, 65.67557], - [-20.718085, 65.675775], - [-20.717923, 65.675952], - [-20.718015, 65.676205], - [-20.717586, 65.67643], - [-20.717725, 65.676582], - [-20.717493, 65.676888], - [-20.716983, 65.67695], - [-20.71639, 65.67711], - [-20.715892, 65.677585], - [-20.714617, 65.67771], - [-20.714617, 65.678173], - [-20.714039, 65.678352], - [-20.712739, 65.678464], - [-20.711939, 65.678794], - [-20.711023, 65.678856], - [-20.710292, 65.679037], - [-20.709376, 65.679209], - [-20.7093, 65.67939], - [-20.70917, 65.68117], - [-20.70603, 65.6813], - [-20.70584, 65.68207], - [-20.70461, 65.68202], - [-20.70448, 65.68252], - [-20.70387, 65.6825], - [-20.70436, 65.68046], - [-20.704068, 65.680368], - [-20.70418, 65.67994], - [-20.70424, 65.67842], - [-20.703725, 65.67781], - [-20.70264, 65.67731], - [-20.700938, 65.676679], - [-20.69974, 65.67642], - [-20.69851, 65.67638], - [-20.698111, 65.676577], - [-20.697255, 65.676779], - [-20.695478, 65.677219], - [-20.694415, 65.677385], - [-20.693225, 65.677594], - [-20.69201, 65.67751], - [-20.691222, 65.677844], - [-20.690335, 65.678032], - [-20.689372, 65.677823], - [-20.688535, 65.677771], - [-20.6876, 65.677971], - [-20.686573, 65.678501], - [-20.685941, 65.67892], - [-20.685316, 65.679817], - [-20.684505, 65.680444], - [-20.68382, 65.68107], - [-20.683998, 65.682938], - [-20.682334, 65.684524], - [-20.682043, 65.684749], - [-20.681124, 65.684752], - [-20.680478, 65.684723], - [-20.680509, 65.684496], - [-20.679736, 65.684246], - [-20.679172, 65.683912], - [-20.677474, 65.684124], - [-20.677144, 65.684559], - [-20.676618, 65.684953], - [-20.675921, 65.685522], - [-20.675307, 65.685678], - [-20.674977, 65.685785], - [-20.674933, 65.686054], - [-20.675604, 65.686065], - [-20.675794, 65.686085], - [-20.676061, 65.686255], - [-20.676061, 65.686461], - [-20.675617, 65.686826], - [-20.675142, 65.687103], - [-20.67451, 65.68795], - [-20.673716, 65.688115], - [-20.673424, 65.687982], - [-20.672854, 65.688157], - [-20.672911, 65.68835], - [-20.672601, 65.688428], - [-20.672544, 65.688355], - [-20.672613, 65.688149], - [-20.672499, 65.687901], - [-20.672018, 65.688186], - [-20.671511, 65.688029], - [-20.67142, 65.68782], - [-20.671099, 65.687943], - [-20.670699, 65.687964], - [-20.670547, 65.687873], - [-20.670845, 65.687609], - [-20.671208, 65.687336], - [-20.67063, 65.686923], - [-20.669362, 65.686566], - [-20.66831, 65.686417], - [-20.66781, 65.686785], - [-20.667379, 65.686842], - [-20.666447, 65.686474], - [-20.666441, 65.686218], - [-20.665345, 65.686132], - [-20.665188, 65.686387], - [-20.664983, 65.686949], - [-20.6644, 65.687043], - [-20.664433, 65.686525], - [-20.663506, 65.687023], - [-20.663025, 65.686774], - [-20.66281, 65.686626], - [-20.662867, 65.686287], - [-20.662658, 65.686229], - [-20.662489, 65.686489], - [-20.662265, 65.6865], - [-20.661942, 65.686336], - [-20.662163, 65.686125], - [-20.662689, 65.686007], - [-20.662106, 65.685999], - [-20.662373, 65.685853], - [-20.662128, 65.685719], - [-20.66274, 65.68515], - [-20.662401, 65.684922], - [-20.661843, 65.684687], - [-20.660913, 65.684601], - [-20.660218, 65.684733], - [-20.659945, 65.685004], - [-20.660354, 65.68526], - [-20.659915, 65.685555], - [-20.658898, 65.685571], - [-20.659427, 65.68505], - [-20.659436, 65.684565], - [-20.658866, 65.684233], - [-20.658047, 65.68409], - [-20.657154, 65.684366], - [-20.656645, 65.684703], - [-20.656372, 65.684907], - [-20.656174, 65.684871], - [-20.656278, 65.684359], - [-20.656808, 65.684089], - [-20.656658, 65.683845], - [-20.656956, 65.683513], - [-20.656961, 65.683259], - [-20.65631, 65.682803], - [-20.655913, 65.68245], - [-20.656025, 65.682144], - [-20.656112, 65.68195], - [-20.656621, 65.681781], - [-20.656902, 65.68131], - [-20.657042, 65.680984], - [-20.656732, 65.680627], - [-20.656022, 65.68079], - [-20.655492, 65.680948], - [-20.655082, 65.680841], - [-20.655963, 65.680494], - [-20.656745, 65.680233], - [-20.657681, 65.679764], - [-20.657489, 65.6794], - [-20.657129, 65.679242], - [-20.65535, 65.67971], - [-20.654723, 65.679692], - [-20.65471, 65.679564], - [-20.655529, 65.679176], - [-20.656372, 65.67889], - [-20.65727, 65.67825], - [-20.657749, 65.678082], - [-20.657452, 65.67751], - [-20.657196, 65.677073], - [-20.656608, 65.676417], - [-20.655662, 65.676135], - [-20.655095, 65.675962], - [-20.654988, 65.675357], - [-20.654514, 65.674893], - [-20.654078, 65.674516], - [-20.65358, 65.67424], - [-20.652701, 65.673964], - [-20.651448, 65.673995], - [-20.648545, 65.674169], - [-20.646984, 65.673895], - [-20.6457, 65.6734], - [-20.645035, 65.673203], - [-20.643831, 65.673244], - [-20.642231, 65.673678], - [-20.63919, 65.67454], - [-20.637333, 65.674176], - [-20.636028, 65.674167], - [-20.63559, 65.674], - [-20.633631, 65.674079], - [-20.631855, 65.674343], - [-20.631513, 65.674634], - [-20.631192, 65.675092], - [-20.630914, 65.674951], - [-20.628774, 65.67437], - [-20.627576, 65.674484], - [-20.627041, 65.674079], - [-20.626142, 65.673938], - [-20.625286, 65.674158], - [-20.624387, 65.674405], - [-20.624002, 65.674264], - [-20.624216, 65.673797], - [-20.623745, 65.673276], - [-20.623874, 65.672792], - [-20.624987, 65.671989], - [-20.625724, 65.671034], - [-20.626083, 65.670835], - [-20.626418, 65.670614], - [-20.627061, 65.670335], - [-20.627262, 65.669926], - [-20.628282, 65.669223], - [-20.629193, 65.668882], - [-20.629736, 65.6682], - [-20.630171, 65.667005], - [-20.630489, 65.66665], - [-20.630631, 65.666251], - [-20.630773, 65.665465], - [-20.630062, 65.665472], - [-20.629937, 65.665283], - [-20.630614, 65.665062], - [-20.631224, 65.664659], - [-20.631676, 65.664284], - [-20.632629, 65.663553], - [-20.633197, 65.662974], - [-20.633582, 65.662423], - [-20.633657, 65.661875], - [-20.63303, 65.661875], - [-20.632821, 65.661638], - [-20.633824, 65.661304], - [-20.634326, 65.660811], - [-20.634426, 65.660229], - [-20.63405, 65.659822], - [-20.633456, 65.659567], - [-20.63344, 65.659157], - [-20.633097, 65.658813], - [-20.633506, 65.658475], - [-20.634117, 65.658268], - [-20.634284, 65.658006], - [-20.634376, 65.657655], - [-20.634552, 65.657417], - [-20.635028, 65.657241], - [-20.635212, 65.656704], - [-20.635162, 65.656456], - [-20.635513, 65.656256], - [-20.635672, 65.655794], - [-20.63573, 65.655264], - [-20.634919, 65.654774], - [-20.633991, 65.654729], - [-20.633532, 65.654971], - [-20.633022, 65.654953], - [-20.633072, 65.65465], - [-20.633741, 65.654409], - [-20.634209, 65.654119], - [-20.634092, 65.653802], - [-20.63314, 65.65362], - [-20.63579, 65.65296], - [-20.63574, 65.65193], - [-20.637428, 65.6503], - [-20.63778, 65.64996], - [-20.63316, 65.64848], - [-20.63539, 65.64575], - [-20.63478, 65.64444], - [-20.63355, 65.64439], - [-20.63367, 65.64388], - [-20.631705, 65.644037], - [-20.630907, 65.64396], - [-20.630519, 65.64384], - [-20.630397, 65.643571], - [-20.63043, 65.64309], - [-20.631162, 65.642729], - [-20.631018, 65.642262], - [-20.630763, 65.641663], - [-20.630574, 65.641567], - [-20.630064, 65.641485], - [-20.630286, 65.641297], - [-20.630541, 65.641142], - [-20.63053, 65.640698], - [-20.630297, 65.640529], - [-20.629731, 65.640506], - [-20.629898, 65.639934], - [-20.629931, 65.639147], - [-20.629343, 65.639014], - [-20.628722, 65.639046], - [-20.627834, 65.639142], - [-20.628223, 65.638584], - [-20.628278, 65.637985], - [-20.628633, 65.637802], - [-20.628633, 65.637582], - [-20.628089, 65.637513], - [-20.627779, 65.637134], - [-20.627912, 65.636836], - [-20.628467, 65.63674], - [-20.628799, 65.636484], - [-20.628888, 65.636186], - [-20.628378, 65.635917], - [-20.628345, 65.635619], - [-20.628955, 65.635587], - [-20.629055, 65.635326], - [-20.629698, 65.63502], - [-20.629731, 65.634635], - [-20.62984, 65.63422], - [-20.628966, 65.633944], - [-20.628433, 65.633752], - [-20.628478, 65.633331], - [-20.628921, 65.633189], - [-20.629021, 65.632869], - [-20.629088, 65.632402], - [-20.628877, 65.631967], - [-20.628733, 65.63151], - [-20.628622, 65.631038], - [-20.62887, 65.63059], - [-20.628311, 65.630274], - [-20.627302, 65.630256], - [-20.627834, 65.629999], - [-20.628067, 65.629757], - [-20.628378, 65.629299], - [-20.627668, 65.628892], - [-20.628566, 65.628301], - [-20.629077, 65.627999], - [-20.629099, 65.627619], - [-20.62881, 65.627185], - [-20.628367, 65.626983], - [-20.628223, 65.62675], - [-20.627357, 65.625999], - [-20.626736, 65.625761], - [-20.626825, 65.625267], - [-20.627113, 65.625038], - [-20.62799, 65.624319], - [-20.628522, 65.623989], - [-20.628799, 65.623641], - [-20.629188, 65.623248], - [-20.629465, 65.622827], - [-20.62952, 65.622488], - [-20.62939, 65.62214], - [-20.628899, 65.621943], - [-20.628433, 65.621714], - [-20.628089, 65.621284], - [-20.628988, 65.621252], - [-20.629154, 65.620556], - [-20.628633, 65.620331], - [-20.628278, 65.620029], - [-20.628256, 65.619677], - [-20.628511, 65.619576], - [-20.628644, 65.619984], - [-20.629099, 65.619965], - [-20.629276, 65.619544], - [-20.629354, 65.619017], - [-20.629243, 65.618701], - [-20.628855, 65.618642], - [-20.628999, 65.618427], - [-20.629742, 65.618354], - [-20.630062, 65.617958], - [-20.630354, 65.61759], - [-20.630813, 65.617335], - [-20.630973, 65.617044], - [-20.631396, 65.616751], - [-20.631485, 65.616375], - [-20.632086, 65.615817], - [-20.632227, 65.615412], - [-20.632731, 65.615062], - [-20.632952, 65.614708], - [-20.633014, 65.614256], - [-20.633544, 65.613504], - [-20.63404, 65.612564], - [-20.634364, 65.612237], - [-20.63468, 65.611963], - [-20.634898, 65.611672], - [-20.635139, 65.611346], - [-20.635115, 65.610957], - [-20.634799, 65.610562], - [-20.634301, 65.610128], - [-20.634056, 65.610052], - [-20.633913, 65.610124], - [-20.633834, 65.609994], - [-20.633905, 65.609693], - [-20.634422, 65.60945], - [-20.634702, 65.609279], - [-20.634862, 65.609073], - [-20.634965, 65.608873], - [-20.634918, 65.608645], - [-20.635479, 65.608364], - [-20.636088, 65.608028], - [-20.63631, 65.607828], - [-20.636484, 65.607645], - [-20.636594, 65.607404], - [-20.636539, 65.606708], - [-20.63642, 65.606398], - [-20.63608, 65.606012], - [-20.636215, 65.605807], - [-20.636491, 65.60549], - [-20.636555, 65.605255], - [-20.636523, 65.605085], - [-20.636505, 65.604905], - [-20.636365, 65.604689], - [-20.636355, 65.604411], - [-20.63631, 65.604137], - [-20.636238, 65.603821], - [-20.636096, 65.603478], - [-20.635856, 65.60318], - [-20.635123, 65.602791], - [-20.634586, 65.602537], - [-20.634126, 65.602337], - [-20.63374, 65.602108], - [-20.633247, 65.60203], - [-20.620239, 65.599705], - [-20.612424, 65.597787], - [-20.594914, 65.595943], - [-20.581524, 65.595518], - [-20.576779, 65.595652], - [-20.572977, 65.595539], - [-20.570538, 65.595659], - [-20.561955, 65.594808], - [-20.545476, 65.594099], - [-20.50359, 65.595092], - [-20.484364, 65.596794], - [-20.441792, 65.600907], - [-20.418789, 65.603885], - [-20.404027, 65.606012], - [-20.384114, 65.609274], - [-20.373471, 65.611967], - [-20.350125, 65.61707], - [-20.344524, 65.618516], - [-20.340169, 65.620188], - [-20.328152, 65.623873], - [-20.323742, 65.625326], - [-20.323622, 65.625676], - [-20.323163, 65.626145], - [-20.322525, 65.626803], - [-20.322218, 65.62773], - [-20.322244, 65.628867], - [-20.32218, 65.629767], - [-20.321785, 65.630641], - [-20.321268, 65.631644], - [-20.320305, 65.632205], - [-20.319756, 65.632847], - [-20.320031, 65.63336], - [-20.32019, 65.634137], - [-20.320139, 65.6352], - [-20.31936, 65.63627], - [-20.31767, 65.63799], - [-20.316645, 65.639144], - [-20.315066, 65.640739], - [-20.314484, 65.641493], - [-20.313652, 65.642178], - [-20.312281, 65.643378], - [-20.311284, 65.644218], - [-20.310743, 65.644904], - [-20.310619, 65.646035], - [-20.309413, 65.646909], - [-20.309247, 65.647663], - [-20.309206, 65.648828], - [-20.308998, 65.649908], - [-20.308748, 65.65049], - [-20.307876, 65.651244], - [-20.307169, 65.651844], - [-20.307252, 65.652683], - [-20.307543, 65.653334], - [-20.307559, 65.654707], - [-20.307271, 65.655491], - [-20.306637, 65.656322], - [-20.305788, 65.657171], - [-20.305695, 65.657931], - [-20.305488, 65.658871], - [-20.304814, 65.659833], - [-20.302385, 65.661012], - [-20.301267, 65.662218], - [-20.299152, 65.663031], - [-20.295293, 65.664709], - [-20.294068, 65.66555], - [-20.292753, 65.666591], - [-20.292625, 65.666784], - [-20.292394, 65.667132], - [-20.292477, 65.667911], - [-20.292872, 65.668593], - [-20.29349, 65.67006], - [-20.297296, 65.66949], - [-20.299837, 65.66996], - [-20.299059, 65.670708], - [-20.296893, 65.671098], - [-20.295066, 65.671306], - [-20.295585, 65.67231], - [-20.296653, 65.674006], - [-20.298941, 65.680351], - [-20.2994, 65.68171], - [-20.300705, 65.682451], - [-20.302689, 65.682807], - [-20.301518, 65.683109], - [-20.302104, 65.683834], - [-20.30065, 65.6845], - [-20.300713, 65.687387], - [-20.29822, 65.689527], - [-20.29616, 65.69098], - [-20.295578, 65.693647], - [-20.292662, 65.695127], - [-20.292813, 65.696893], - [-20.294227, 65.697064], - [-20.295001, 65.697468], - [-20.294289, 65.697944], - [-20.292107, 65.697771], - [-20.28817, 65.70014], - [-20.28672, 65.701186], - [-20.285215, 65.703082], - [-20.28172, 65.704474], - [-20.27875, 65.70631], - [-20.279022, 65.707532], - [-20.277659, 65.708189], - [-20.276986, 65.70947], - [-20.27935, 65.711897], - [-20.280215, 65.713825], - [-20.281204, 65.714266], - [-20.279101, 65.717488], - [-20.275628, 65.71836], - [-20.274393, 65.719741], - [-20.272299, 65.72032], - [-20.270999, 65.720685], - [-20.26952, 65.7214], - [-20.265151, 65.724306], - [-20.26364, 65.726017], - [-20.26337, 65.727592], - [-20.264999, 65.728342], - [-20.266997, 65.728574], - [-20.267892, 65.72808], - [-20.268308, 65.728814], - [-20.270318, 65.72965], - [-20.270081, 65.729761], - [-20.269086, 65.729702], - [-20.268707, 65.729824], - [-20.268955, 65.730053], - [-20.268434, 65.730642], - [-20.267301, 65.731597], - [-20.266448, 65.733124], - [-20.266801, 65.734006], - [-20.265357, 65.735073], - [-20.264737, 65.73667], - [-20.264969, 65.738151], - [-20.265306, 65.738954], - [-20.265666, 65.739083], - [-20.266089, 65.740322], - [-20.264925, 65.742005], - [-20.266201, 65.743161], - [-20.268308, 65.743332], - [-20.268502, 65.744393], - [-20.26965, 65.74478], - [-20.269169, 65.745316], - [-20.268711, 65.746436], - [-20.269888, 65.74909], - [-20.271864, 65.749627], - [-20.270826, 65.75013], - [-20.27101, 65.75512], - [-20.273803, 65.758006], - [-20.274849, 65.758245], - [-20.274436, 65.759776], - [-20.273818, 65.760312], - [-20.275939, 65.763353], - [-20.277173, 65.763571], - [-20.278011, 65.763355], - [-20.279133, 65.763769], - [-20.280366, 65.763596], - [-20.280431, 65.764186], - [-20.279205, 65.764335], - [-20.280357, 65.766072], - [-20.281704, 65.76708], - [-20.279046, 65.767777], - [-20.277707, 65.769338], - [-20.278796, 65.770041], - [-20.281774, 65.770432], - [-20.278484, 65.774031], - [-20.278478, 65.775999], - [-20.276029, 65.778687], - [-20.275559, 65.781977], - [-20.275829, 65.783541], - [-20.27705, 65.784452], - [-20.277941, 65.784968], - [-20.27969, 65.787383], - [-20.280554, 65.787819], - [-20.281376, 65.788023], - [-20.283092, 65.787767], - [-20.286319, 65.789006], - [-20.289221, 65.788599], - [-20.290317, 65.789254], - [-20.290932, 65.792368], - [-20.293769, 65.792865], - [-20.294064, 65.794486], - [-20.29541, 65.79575], - [-20.295346, 65.797365], - [-20.297192, 65.797993], - [-20.29527, 65.800913], - [-20.295634, 65.801999], - [-20.297707, 65.802624], - [-20.29803, 65.80486], - [-20.299059, 65.805142], - [-20.299741, 65.805551], - [-20.30117, 65.80602], - [-20.302962, 65.806669], - [-20.302814, 65.808355], - [-20.304022, 65.809438], - [-20.305619, 65.809533], - [-20.305226, 65.810094], - [-20.30426, 65.810207], - [-20.304061, 65.811517], - [-20.305996, 65.813682], - [-20.309713, 65.815226], - [-20.30811, 65.817609], - [-20.307056, 65.81774], - [-20.30604, 65.81857], - [-20.305387, 65.820123], - [-20.305254, 65.821429], - [-20.305959, 65.822192], - [-20.306773, 65.822471], - [-20.30735, 65.822344], - [-20.307925, 65.822444], - [-20.308485, 65.822415], - [-20.308537, 65.82278], - [-20.308786, 65.823183], - [-20.309049, 65.823378], - [-20.309449, 65.823674], - [-20.308636, 65.824174], - [-20.308775, 65.824815], - [-20.307833, 65.82507], - [-20.308395, 65.82551], - [-20.31, 65.826195], - [-20.311323, 65.826575], - [-20.311845, 65.826646], - [-20.312338, 65.826655], - [-20.312973, 65.826597], - [-20.313238, 65.826527], - [-20.313377, 65.826273], - [-20.313329, 65.826195], - [-20.313405, 65.826001], - [-20.313559, 65.825697], - [-20.313512, 65.82561], - [-20.313304, 65.82554], - [-20.313269, 65.825488], - [-20.313313, 65.825447], - [-20.313469, 65.825358], - [-20.313902, 65.825363], - [-20.314411, 65.825364], - [-20.314721, 65.825336], - [-20.314775, 65.825204], - [-20.314787, 65.825179], - [-20.314908, 65.825162], - [-20.315, 65.824889], - [-20.31526, 65.824889], - [-20.315251, 65.824988], - [-20.315483, 65.824999], - [-20.315613, 65.825064], - [-20.315556, 65.825093], - [-20.31539, 65.825094], - [-20.315194, 65.825097], - [-20.314935, 65.825915], - [-20.314788, 65.826379], - [-20.315323, 65.82642], - [-20.315899, 65.826433], - [-20.316068, 65.826569], - [-20.316465, 65.82658], - [-20.316453, 65.826396], - [-20.316689, 65.826291], - [-20.316941, 65.826203], - [-20.317145, 65.826197], - [-20.317264, 65.826264], - [-20.317759, 65.826258], - [-20.317864, 65.826146], - [-20.317946, 65.825984], - [-20.317894, 65.825829], - [-20.317875, 65.825704], - [-20.317683, 65.825713], - [-20.31769, 65.825499], - [-20.317686, 65.825008], - [-20.318333, 65.824999], - [-20.318298, 65.824564], - [-20.318353, 65.824441], - [-20.318348, 65.824282], - [-20.316927, 65.823836], - [-20.316559, 65.823727], - [-20.316707, 65.823642], - [-20.31686, 65.823685], - [-20.317199, 65.823641], - [-20.317399, 65.823652], - [-20.317561, 65.823738], - [-20.318383, 65.823973], - [-20.318293, 65.823768], - [-20.318118, 65.82353], - [-20.317916, 65.823085], - [-20.317686, 65.823055], - [-20.317664, 65.822973], - [-20.317722, 65.822914], - [-20.317998, 65.822865], - [-20.31819, 65.822884], - [-20.318333, 65.822997], - [-20.318459, 65.823273], - [-20.318657, 65.823596], - [-20.318832, 65.823802], - [-20.318962, 65.823924], - [-20.319137, 65.824233], - [-20.319274, 65.824628], - [-20.319768, 65.825987], - [-20.321418, 65.825956], - [-20.322211, 65.825531], - [-20.322474, 65.82539], - [-20.323643, 65.825238], - [-20.324744, 65.826293], - [-20.324754, 65.826697], - [-20.324416, 65.827353], - [-20.325295, 65.827851], - [-20.325331, 65.828047], - [-20.325434, 65.828327], - [-20.325181, 65.828615], - [-20.325652, 65.829005], - [-20.326134, 65.829449], - [-20.325639, 65.829754], - [-20.325304, 65.830017], - [-20.32483, 65.830705], - [-20.324637, 65.831317], - [-20.323347, 65.831542], - [-20.322133, 65.831557], - [-20.322439, 65.832314], - [-20.323948, 65.83249], - [-20.325338, 65.83278], - [-20.326004, 65.833], - [-20.32642, 65.833325], - [-20.325611, 65.833488], - [-20.32419, 65.833454], - [-20.32309, 65.833737], - [-20.321742, 65.834157], - [-20.32137, 65.834803], - [-20.319905, 65.834877], - [-20.318574, 65.835148], - [-20.317141, 65.835005], - [-20.315938, 65.834588], - [-20.31416, 65.835074], - [-20.313253, 65.835334], - [-20.311099, 65.836774], - [-20.309561, 65.839681], - [-20.309364, 65.840817], - [-20.308187, 65.842276], - [-20.30881, 65.84515], - [-20.310294, 65.845825], - [-20.310186, 65.846326], - [-20.310802, 65.846759], - [-20.312865, 65.847504], - [-20.312344, 65.847843], - [-20.311756, 65.848192], - [-20.31162, 65.848935], - [-20.312246, 65.849262], - [-20.313063, 65.849332], - [-20.31381, 65.849605], - [-20.314053, 65.849485], - [-20.314628, 65.849452], - [-20.314769, 65.849547], - [-20.314547, 65.849597], - [-20.314648, 65.849778], - [-20.315042, 65.849935], - [-20.317778, 65.850158], - [-20.31906, 65.85008], - [-20.319762, 65.850076], - [-20.321156, 65.851283], - [-20.321296, 65.852258], - [-20.319176, 65.852126], - [-20.318978, 65.852646], - [-20.320126, 65.853267], - [-20.31901, 65.853896], - [-20.318191, 65.854302], - [-20.315794, 65.85462], - [-20.314236, 65.854816], - [-20.312919, 65.855185], - [-20.313073, 65.855778], - [-20.311661, 65.856284], - [-20.311434, 65.856797], - [-20.311524, 65.857177], - [-20.309441, 65.858271], - [-20.308513, 65.859424], - [-20.308435, 65.861036], - [-20.309072, 65.862138], - [-20.310646, 65.863122], - [-20.311727, 65.863705], - [-20.311985, 65.865647], - [-20.312221, 65.866465], - [-20.312943, 65.866992], - [-20.313641, 65.867403], - [-20.315783, 65.867427], - [-20.316337, 65.867605], - [-20.315549, 65.867759], - [-20.31532, 65.868254], - [-20.315144, 65.869008], - [-20.315114, 65.870098], - [-20.316295, 65.871614], - [-20.317022, 65.872139], - [-20.318178, 65.872234], - [-20.318953, 65.872388], - [-20.319498, 65.872829], - [-20.319777, 65.873605], - [-20.319697, 65.874465], - [-20.32045, 65.875915], - [-20.321131, 65.876671], - [-20.322301, 65.877142], - [-20.323109, 65.878099], - [-20.323472, 65.878299], - [-20.324858, 65.879821], - [-20.326895, 65.880572], - [-20.328007, 65.88146], - [-20.328344, 65.881726], - [-20.329093, 65.882594], - [-20.330168, 65.883038], - [-20.333569, 65.882947], - [-20.33811, 65.88675], - [-20.33791, 65.88752], - [-20.34111, 65.88971], - [-20.34655, 65.89534], - [-20.348474, 65.898756], - [-20.34885, 65.9034], - [-20.350217, 65.90401], - [-20.350743, 65.904545], - [-20.351413, 65.905239], - [-20.352131, 65.905744], - [-20.35253, 65.90613], - [-20.353374, 65.907744], - [-20.353785, 65.908278], - [-20.354467, 65.908725], - [-20.35487, 65.909135], - [-20.354931, 65.909731], - [-20.355366, 65.910607], - [-20.355798, 65.912344], - [-20.356265, 65.91308], - [-20.356913, 65.913436], - [-20.357584, 65.913841], - [-20.358758, 65.914358], - [-20.35962, 65.91518], - [-20.359576, 65.915398], - [-20.359714, 65.915625], - [-20.360086, 65.915889], - [-20.361149, 65.91623], - [-20.361484, 65.917256], - [-20.362092, 65.918002], - [-20.36335, 65.91893], - [-20.363645, 65.919038], - [-20.364069, 65.919432], - [-20.364961, 65.920155], - [-20.365507, 65.920479], - [-20.366092, 65.921295], - [-20.36563, 65.922367], - [-20.365555, 65.923244], - [-20.365716, 65.925012], - [-20.368366, 65.926681], - [-20.36801, 65.92761], - [-20.36907, 65.927677], - [-20.3698, 65.92794], - [-20.371332, 65.929331], - [-20.371634, 65.930856], - [-20.37137, 65.93161], - [-20.37124, 65.93212], - [-20.37249, 65.93217], - [-20.3706, 65.93338], - [-20.36935, 65.9382], - [-20.37111, 65.9411], - [-20.38161, 65.94669], - [-20.383923, 65.952625], - [-20.387785, 65.955143], - [-20.390189, 65.957346], - [-20.39004, 65.96272], - [-20.38779, 65.96776], - [-20.38803, 65.97291], - [-20.3902, 65.97428], - [-20.39049, 65.97558], - [-20.38935, 65.97631], - [-20.38742, 65.97648], - [-20.3873, 65.98058], - [-20.391, 65.98331], - [-20.39059, 65.98612], - [-20.38934, 65.98606], - [-20.38976, 65.98685], - [-20.38825, 65.98782], - [-20.38957, 65.98762], - [-20.38861, 65.98886], - [-20.38986, 65.98891], - [-20.38904, 65.98965], - [-20.39029, 65.9897], - [-20.39388, 65.99165], - [-20.39343, 65.99215], - [-20.39468, 65.99219], - [-20.39609, 65.99406], - [-20.3973, 65.99423], - [-20.39777, 65.9949], - [-20.40019, 65.99525], - [-20.39999, 65.99603], - [-20.40121, 65.99621], - [-20.40777, 66.00252], - [-20.411, 66.00343], - [-20.41169, 66.01297], - [-20.41471, 66.01592], - [-20.42093, 66.01747], - [-20.424092, 66.01791], - [-20.425894, 66.018015], - [-20.426409, 66.017736], - [-20.426237, 66.017003], - [-20.427697, 66.016759], - [-20.429585, 66.01655], - [-20.431731, 66.016881], - [-20.433576, 66.016864], - [-20.433447, 66.01723], - [-20.434992, 66.017701], - [-20.433791, 66.01798], - [-20.432846, 66.017562], - [-20.431473, 66.017736], - [-20.430443, 66.018155], - [-20.429585, 66.018643], - [-20.42907, 66.019097], - [-20.427697, 66.019271], - [-20.42727, 66.0198], - [-20.427954, 66.020248], - [-20.430958, 66.020248], - [-20.433705, 66.020684], - [-20.43575, 66.02119], - [-20.435421, 66.021957], - [-20.432889, 66.021678], - [-20.430186, 66.021626], - [-20.428555, 66.021591], - [-20.42826, 66.02087], - [-20.427139, 66.021974], - [-20.42474, 66.02226], - [-20.427439, 66.02541], - [-20.42168, 66.02675], - [-20.421134, 66.028033], - [-20.42007, 66.03053], - [-20.41882, 66.03048], - [-20.41869, 66.03099], - [-20.41994, 66.03104], - [-20.41848, 66.03791], - [-20.41272, 66.04306], - [-20.41125, 66.04993], - [-20.40937, 66.04985], - [-20.40942, 66.05053], - [-20.41049, 66.05041], - [-20.41, 66.05074], - [-20.41016, 66.05168], - [-20.40829, 66.0516], - [-20.40129, 66.06029], - [-20.40103, 66.0649], - [-20.40229, 66.06496], - [-20.40146, 66.06569], - [-20.4039, 66.06605], - [-20.40513, 66.06739], - [-20.40467, 66.06917], - [-20.40714, 66.07184], - [-20.40926, 66.07219], - [-20.40937, 66.07297], - [-20.41086, 66.07329], - [-20.41036, 66.07402], - [-20.41258, 66.07644], - [-20.4139, 66.07624], - [-20.41314, 66.07672], - [-20.41439, 66.07678], - [-20.41475, 66.07781], - [-20.41663, 66.0779], - [-20.41637, 66.07892], - [-20.41758, 66.0791], - [-20.41854, 66.0803], - [-20.41979, 66.08035], - [-20.41959, 66.08111], - [-20.42109, 66.08143], - [-20.42083, 66.08244], - [-20.42233, 66.08276], - [-20.42236, 66.08508], - [-20.42111, 66.08503], - [-20.4161, 66.08725], - [-20.41419, 66.0873], - [-20.41392, 66.08831], - [-20.40826, 66.0882], - [-20.40651, 66.08761], - [-20.3957, 66.08779], - [-20.39413, 66.089], - [-20.38384, 66.08959], - [-20.38363, 66.09035], - [-20.38239, 66.0903], - [-20.38288, 66.09083], - [-20.38094, 66.09101], - [-20.38107, 66.0905], - [-20.37982, 66.09044], - [-20.37995, 66.08994], - [-20.3812, 66.08999], - [-20.38127, 66.08974], - [-20.37205, 66.0887], - [-20.367557, 66.088989], - [-20.366845, 66.089226], - [-20.366546, 66.08945], - [-20.366447, 66.089577], - [-20.366717, 66.089727], - [-20.366689, 66.089796], - [-20.366205, 66.089733], - [-20.366376, 66.089277], - [-20.36625, 66.08909], - [-20.365735, 66.088966], - [-20.365661, 66.088898], - [-20.366077, 66.088747], - [-20.365607, 66.08832], - [-20.364554, 66.087807], - [-20.362245, 66.087098], - [-20.358721, 66.08633], - [-20.355007, 66.085794], - [-20.352958, 66.085575], - [-20.350854, 66.085522], - [-20.34822, 66.085546], - [-20.34563, 66.085748], - [-20.343638, 66.086088], - [-20.342142, 66.086497], - [-20.341033, 66.08679], - [-20.340186, 66.086957], - [-20.339536, 66.087209], - [-20.339359, 66.087412], - [-20.339073, 66.08748], - [-20.339112, 66.087636], - [-20.339004, 66.088155], - [-20.338768, 66.088498], - [-20.338748, 66.088718], - [-20.338984, 66.088913], - [-20.338916, 66.088989], - [-20.337637, 66.089122], - [-20.33601, 66.08954], - [-20.335942, 66.089787], - [-20.336079, 66.089939], - [-20.336109, 66.090071], - [-20.335882, 66.090154], - [-20.335311, 66.090226], - [-20.335085, 66.090318], - [-20.334396, 66.090526], - [-20.333903, 66.090765], - [-20.33349, 66.091009], - [-20.332889, 66.091108], - [-20.331845, 66.091599], - [-20.331136, 66.091671], - [-20.330307, 66.091846], - [-20.330335, 66.092066], - [-20.329904, 66.092026], - [-20.329514, 66.092359], - [-20.328929, 66.092619], - [-20.32847, 66.09311], - [-20.32811, 66.09329], - [-20.327639, 66.093592], - [-20.326811, 66.09398], - [-20.324472, 66.094849], - [-20.323609, 66.09544], - [-20.322926, 66.096129], - [-20.322258, 66.096846], - [-20.321367, 66.097256], - [-20.320177, 66.097738], - [-20.319434, 66.098022], - [-20.318707, 66.098098], - [-20.31847, 66.098222], - [-20.317969, 66.098561], - [-20.317426, 66.098646], - [-20.316543, 66.098981], - [-20.316089, 66.099334], - [-20.315949, 66.099706], - [-20.315796, 66.099825], - [-20.315754, 66.100113], - [-20.31542, 66.100197], - [-20.314994, 66.100472], - [-20.314696, 66.100773], - [-20.314278, 66.101145], - [-20.314056, 66.101619], - [-20.313874, 66.102242], - [-20.313175, 66.102579], - [-20.312896, 66.102863], - [-20.312888, 66.103315], - [-20.313054, 66.103433], - [-20.312966, 66.103577], - [-20.312843, 66.103902], - [-20.312714, 66.104094], - [-20.311927, 66.104413], - [-20.3112, 66.104936], - [-20.311018, 66.105114], - [-20.309512, 66.105346], - [-20.30862, 66.105535], - [-20.308646, 66.105675], - [-20.309009, 66.105794], - [-20.309139, 66.105928], - [-20.308914, 66.105973], - [-20.308152, 66.105872], - [-20.307858, 66.10577], - [-20.307062, 66.105819], - [-20.306811, 66.105728], - [-20.306525, 66.105816], - [-20.306136, 66.105735], - [-20.305859, 66.105721], - [-20.305175, 66.105847], - [-20.305036, 66.10568], - [-20.304915, 66.105265], - [-20.304595, 66.10503], - [-20.303963, 66.104704], - [-20.303199, 66.104411], - [-20.302387, 66.10441], - [-20.302058, 66.104459], - [-20.30179, 66.10463], - [-20.301115, 66.10462], - [-20.300829, 66.104536], - [-20.300769, 66.104402], - [-20.299808, 66.10414], - [-20.299418, 66.104013], - [-20.298873, 66.104062], - [-20.298648, 66.104315], - [-20.298336, 66.104339], - [-20.298362, 66.104424], - [-20.298215, 66.104469], - [-20.29799, 66.104431], - [-20.298042, 66.10435], - [-20.298128, 66.104234], - [-20.297843, 66.104143], - [-20.297522, 66.104129], - [-20.297064, 66.104178], - [-20.296972, 66.104337], - [-20.296709, 66.104159], - [-20.294159, 66.104018], - [-20.292973, 66.103953], - [-20.291787, 66.103973], - [-20.290838, 66.103946], - [-20.289821, 66.104039], - [-20.288826, 66.103966], - [-20.287502, 66.103627], - [-20.286814, 66.103527], - [-20.285467, 66.103236], - [-20.2835, 66.10272], - [-20.282589, 66.102428], - [-20.280519, 66.101852], - [-20.278695, 66.101423], - [-20.27749, 66.101317], - [-20.27435, 66.101527], - [-20.272305, 66.10172], - [-20.270184, 66.102134], - [-20.268537, 66.102186], - [-20.266727, 66.101922], - [-20.265058, 66.101491], - [-20.2636, 66.10132], - [-20.261481, 66.101061], - [-20.25928, 66.10088], - [-20.256174, 66.100776], - [-20.252724, 66.100775], - [-20.250805, 66.100722], - [-20.249025, 66.100675], - [-20.247191, 66.100659], - [-20.243185, 66.10102], - [-20.238906, 66.101769], - [-20.238045, 66.10192], - [-20.23698, 66.102162], - [-20.234697, 66.102736], - [-20.233161, 66.103328], - [-20.232773, 66.103426], - [-20.231883, 66.103651], - [-20.229702, 66.104118], - [-20.228645, 66.104201], - [-20.226451, 66.103969], - [-20.223491, 66.103948], - [-20.220445, 66.10422], - [-20.21766, 66.10496], - [-20.217261, 66.105252], - [-20.216971, 66.105465], - [-20.216499, 66.106006], - [-20.215617, 66.106402], - [-20.21441, 66.106895], - [-20.21378, 66.10761], - [-20.21372, 66.10786], - [-20.212525, 66.108603], - [-20.212603, 66.109402], - [-20.212111, 66.109612], - [-20.21059, 66.11004], - [-20.208651, 66.110532], - [-20.207592, 66.111014], - [-20.2073, 66.11169], - [-20.206744, 66.112258], - [-20.20546, 66.11264], - [-20.20234, 66.11356], - [-20.201122, 66.113819], - [-20.198388, 66.114217], - [-20.195517, 66.114737], - [-20.194818, 66.115086], - [-20.195326, 66.115534], - [-20.195873, 66.115911], - [-20.195599, 66.116531], - [-20.195572, 66.117405], - [-20.195229, 66.117847], - [-20.194144, 66.117783], - [-20.193932, 66.117361], - [-20.19344, 66.117162], - [-20.193377, 66.116613], - [-20.193358, 66.116132], - [-20.192592, 66.115933], - [-20.191721, 66.115861], - [-20.190411, 66.115884], - [-20.189581, 66.115988], - [-20.188921, 66.116126], - [-20.1883, 66.116326], - [-20.188, 66.116608], - [-20.18812, 66.11701], - [-20.188136, 66.117316], - [-20.187863, 66.117815], - [-20.187918, 66.118202], - [-20.187239, 66.118612], - [-20.1867, 66.11875], - [-20.186006, 66.119102], - [-20.184361, 66.119383], - [-20.18299, 66.119832], - [-20.182426, 66.12013], - [-20.180889, 66.120734], - [-20.179838, 66.121046], - [-20.178929, 66.121678], - [-20.178949, 66.122173], - [-20.178572, 66.122388], - [-20.17807, 66.122614], - [-20.177526, 66.12281], - [-20.177132, 66.123173], - [-20.176105, 66.123605], - [-20.174972, 66.123618], - [-20.173103, 66.123684], - [-20.171977, 66.123788], - [-20.17082, 66.12401], - [-20.169429, 66.124716], - [-20.167751, 66.125539], - [-20.16731, 66.126049], - [-20.166578, 66.126085], - [-20.164709, 66.125707], - [-20.161974, 66.125238], - [-20.160956, 66.124572], - [-20.159441, 66.12418], - [-20.157105, 66.123956], - [-20.155545, 66.123628], - [-20.153915, 66.123402], - [-20.152207, 66.123565], - [-20.151891, 66.12374], - [-20.150489, 66.12358], - [-20.149605, 66.123361], - [-20.147186, 66.122774], - [-20.144645, 66.122215], - [-20.144169, 66.121942], - [-20.143635, 66.121494], - [-20.142747, 66.121022], - [-20.141658, 66.12074], - [-20.140656, 66.12047], - [-20.140475, 66.119866], - [-20.14056, 66.119223], - [-20.140258, 66.118456], - [-20.140436, 66.11796], - [-20.140969, 66.117048], - [-20.140281, 66.116434], - [-20.139113, 66.116046], - [-20.137561, 66.115921], - [-20.136736, 66.115612], - [-20.135437, 66.115412], - [-20.133396, 66.115287], - [-20.1315, 66.114802], - [-20.129974, 66.114636], - [-20.125582, 66.115061], - [-20.12156, 66.114866], - [-20.12003, 66.11449], - [-20.115862, 66.113462], - [-20.113346, 66.113273], - [-20.112081, 66.113243], - [-20.110748, 66.113396], - [-20.109928, 66.113662], - [-20.109208, 66.113894], - [-20.108263, 66.114053], - [-20.10667, 66.11467], - [-20.106078, 66.115007], - [-20.105734, 66.115599], - [-20.105906, 66.116474], - [-20.106188, 66.116881], - [-20.10625, 66.117408], - [-20.106252, 66.118135], - [-20.105793, 66.11886], - [-20.104859, 66.119312], - [-20.103638, 66.119612], - [-20.101808, 66.119847], - [-20.100197, 66.119948], - [-20.098429, 66.119898], - [-20.097102, 66.119423], - [-20.096416, 66.119138], - [-20.095544, 66.118382], - [-20.093601, 66.116789], - [-20.092954, 66.116144], - [-20.092101, 66.115321], - [-20.091368, 66.114548], - [-20.09114, 66.114018], - [-20.091242, 66.113426], - [-20.091404, 66.112563], - [-20.091933, 66.11156], - [-20.092798, 66.110942], - [-20.093627, 66.110782], - [-20.094108, 66.110899], - [-20.094252, 66.111025], - [-20.093904, 66.111108], - [-20.093038, 66.111458], - [-20.092618, 66.111921], - [-20.092534, 66.112217], - [-20.092858, 66.112247], - [-20.092966, 66.112427], - [-20.092534, 66.112694], - [-20.092738, 66.112762], - [-20.093435, 66.112743], - [-20.094504, 66.11248], - [-20.096163, 66.112193], - [-20.097144, 66.112149], - [-20.098638, 66.112067], - [-20.099479, 66.112003], - [-20.100074, 66.111829], - [-20.100969, 66.111161], - [-20.101341, 66.11084], - [-20.101882, 66.110719], - [-20.102459, 66.110334], - [-20.102735, 66.109964], - [-20.102687, 66.109697], - [-20.102459, 66.109444], - [-20.102375, 66.109059], - [-20.102471, 66.10884], - [-20.102483, 66.108626], - [-20.103156, 66.108062], - [-20.10354, 66.107731], - [-20.103649, 66.107244], - [-20.104442, 66.106976], - [-20.10479, 66.106806], - [-20.104874, 66.106568], - [-20.105056, 66.106304], - [-20.10515, 66.106168], - [-20.105295, 66.105964], - [-20.105187, 66.105833], - [-20.105187, 66.105555], - [-20.105096, 66.105386], - [-20.105432, 66.104962], - [-20.105438, 66.104794], - [-20.105131, 66.104587], - [-20.104735, 66.104456], - [-20.104603, 66.104351], - [-20.104777, 66.10428], - [-20.104555, 66.104276], - [-20.104344, 66.104331], - [-20.10408, 66.104448], - [-20.103989, 66.104471], - [-20.103743, 66.104368], - [-20.103666, 66.104279], - [-20.103437, 66.104361], - [-20.103242, 66.104396], - [-20.102366, 66.104647], - [-20.102145, 66.104823], - [-20.101687, 66.10494], - [-20.101185, 66.104919], - [-20.101372, 66.104967], - [-20.101491, 66.105112], - [-20.101882, 66.105349], - [-20.10201, 66.105525], - [-20.102511, 66.105769], - [-20.102995, 66.106075], - [-20.102891, 66.106138], - [-20.102585, 66.106214], - [-20.102113, 66.106207], - [-20.101756, 66.106124], - [-20.101425, 66.105954], - [-20.101162, 66.105864], - [-20.100835, 66.105802], - [-20.100435, 66.105642], - [-20.099938, 66.105345], - [-20.09973, 66.105317], - [-20.099518, 66.105482], - [-20.099203, 66.105651], - [-20.09939, 66.105849], - [-20.099645, 66.106038], - [-20.099692, 66.106169], - [-20.09959, 66.106246], - [-20.099284, 66.106295], - [-20.099156, 66.106363], - [-20.099101, 66.106455], - [-20.099212, 66.106553], - [-20.099224, 66.10668], - [-20.099135, 66.10677], - [-20.098944, 66.106818], - [-20.098778, 66.106897], - [-20.098744, 66.107066], - [-20.099016, 66.107093], - [-20.099309, 66.107076], - [-20.099904, 66.106959], - [-20.100261, 66.106888], - [-20.10069, 66.106902], - [-20.100741, 66.106935], - [-20.100728, 66.107041], - [-20.100779, 66.106954], - [-20.100818, 66.106921], - [-20.101315, 66.106967], - [-20.101561, 66.107007], - [-20.101603, 66.107064], - [-20.101534, 66.107091], - [-20.101347, 66.107115], - [-20.10071, 66.107125], - [-20.0998, 66.107238], - [-20.099359, 66.107366], - [-20.098806, 66.10782], - [-20.098789, 66.107937], - [-20.098331, 66.10815], - [-20.097668, 66.108398], - [-20.097404, 66.108642], - [-20.097362, 66.108876], - [-20.09715, 66.109083], - [-20.096963, 66.109234], - [-20.096317, 66.109485], - [-20.095892, 66.109713], - [-20.095357, 66.109878], - [-20.094966, 66.110101], - [-20.095408, 66.110239], - [-20.095348, 66.11036], - [-20.095119, 66.11039], - [-20.094726, 66.110505], - [-20.093785, 66.110418], - [-20.093691, 66.110236], - [-20.094227, 66.10975], - [-20.094898, 66.109427], - [-20.095722, 66.108956], - [-20.096572, 66.108388], - [-20.097421, 66.107469], - [-20.097855, 66.106794], - [-20.098308, 66.106344], - [-20.098395, 66.106017], - [-20.098265, 66.105484], - [-20.097527, 66.104953], - [-20.096819, 66.104409], - [-20.096139, 66.104002], - [-20.094984, 66.103556], - [-20.094078, 66.103185], - [-20.093106, 66.10287], - [-20.091887, 66.102568], - [-20.090404, 66.102246], - [-20.089901, 66.102105], - [-20.089243, 66.101908], - [-20.088714, 66.101637], - [-20.088045, 66.101375], - [-20.087203, 66.101112], - [-20.086253, 66.100802], - [-20.085495, 66.100543], - [-20.085012, 66.100352], - [-20.084818, 66.100378], - [-20.084527, 66.100352], - [-20.084365, 66.100199], - [-20.084548, 66.099875], - [-20.084442, 66.099694], - [-20.084197, 66.099482], - [-20.083771, 66.099193], - [-20.083415, 66.099141], - [-20.08277, 66.09895], - [-20.082643, 66.098925], - [-20.082282, 66.098861], - [-20.082001, 66.098699], - [-20.081677, 66.098419], - [-20.082357, 66.097977], - [-20.082379, 66.097829], - [-20.082681, 66.097448], - [-20.08308, 66.097247], - [-20.083566, 66.09716], - [-20.083635, 66.096951], - [-20.083361, 66.096613], - [-20.083048, 66.096359], - [-20.082465, 66.09615], - [-20.082109, 66.096084], - [-20.080663, 66.096189], - [-20.079789, 66.09625], - [-20.079238, 66.096338], - [-20.079012, 66.096429], - [-20.0787, 66.09646], - [-20.078506, 66.096536], - [-20.078167, 66.096602], - [-20.077889, 66.096521], - [-20.077404, 66.096364], - [-20.07721, 66.096145], - [-20.077049, 66.095898], - [-20.076782, 66.095459], - [-20.076439, 66.095031], - [-20.076519, 66.094868], - [-20.076352, 66.094633], - [-20.075609, 66.094066], - [-20.074954, 66.093499], - [-20.074155, 66.09308], - [-20.074091, 66.092472], - [-20.073648, 66.091772], - [-20.072817, 66.091286], - [-20.071058, 66.090547], - [-20.07004, 66.08991], - [-20.070101, 66.089789], - [-20.069931, 66.089473], - [-20.069293, 66.088959], - [-20.068894, 66.088558], - [-20.06827, 66.08827], - [-20.067664, 66.087922], - [-20.067308, 66.08766], - [-20.067113, 66.087279], - [-20.06668, 66.087121], - [-20.066401, 66.086929], - [-20.06625, 66.086671], - [-20.065689, 66.086378], - [-20.064922, 66.086194], - [-20.063573, 66.085805], - [-20.062796, 66.085652], - [-20.061858, 66.085525], - [-20.060239, 66.085262], - [-20.059375, 66.085175], - [-20.058955, 66.085148], - [-20.058372, 66.08507], - [-20.057821, 66.0851], - [-20.057454, 66.085065], - [-20.057044, 66.084987], - [-20.056407, 66.084969], - [-20.05576, 66.085026], - [-20.054713, 66.085008], - [-20.054292, 66.084833], - [-20.054206, 66.084737], - [-20.053936, 66.084702], - [-20.053839, 66.084623], - [-20.053321, 66.084527], - [-20.052706, 66.084606], - [-20.052263, 66.084553], - [-20.052145, 66.084422], - [-20.050763, 66.084221], - [-20.050224, 66.084273], - [-20.049965, 66.084212], - [-20.049781, 66.084081], - [-20.049317, 66.084024], - [-20.04895, 66.083908], - [-20.047697, 66.083375], - [-20.047109, 66.083031], - [-20.046011, 66.082772], - [-20.044301, 66.082588], - [-20.04337, 66.082541], - [-20.041444, 66.082641], - [-20.040579, 66.082621], - [-20.039844, 66.082541], - [-20.038897, 66.08225], - [-20.037999, 66.081999], - [-20.036807, 66.08188], - [-20.035652, 66.081925], - [-20.034407, 66.08178], - [-20.033917, 66.081449], - [-20.033689, 66.080761], - [-20.033836, 66.080172], - [-20.034484, 66.079791], - [-20.035452, 66.079629], - [-20.036791, 66.079622], - [-20.038309, 66.079695], - [-20.039435, 66.07955], - [-20.040734, 66.079327], - [-20.041722, 66.078987], - [-20.042015, 66.078411], - [-20.041575, 66.078027], - [-20.041215, 66.077464], - [-20.041542, 66.076994], - [-20.041738, 66.076809], - [-20.042048, 66.076921], - [-20.042815, 66.076762], - [-20.043468, 66.075869], - [-20.04354, 66.0751], - [-20.042927, 66.074689], - [-20.041999, 66.074015], - [-20.04213, 66.073604], - [-20.041492, 66.073033], - [-20.040886, 66.072886], - [-20.03958, 66.072488], - [-20.038456, 66.07177], - [-20.037694, 66.071136], - [-20.037847, 66.070864], - [-20.0374, 66.07043], - [-20.037029, 66.069318], - [-20.035621, 66.067754], - [-20.035529, 66.06712], - [-20.036111, 66.066338], - [-20.035835, 66.065791], - [-20.035039, 66.065232], - [-20.036172, 66.064388], - [-20.036815, 66.063257], - [-20.036692, 66.062587], - [-20.036199, 66.061492], - [-20.035379, 66.060852], - [-20.033777, 66.060351], - [-20.031948, 66.059987], - [-20.028549, 66.05975], - [-20.026698, 66.059614], - [-20.02564, 66.05911], - [-20.024975, 66.058247], - [-20.024054, 66.057429], - [-20.023582, 66.057253], - [-20.023342, 66.056851], - [-20.022773, 66.056645], - [-20.022099, 66.056322], - [-20.021582, 66.056079], - [-20.02153, 66.055871], - [-20.021245, 66.055617], - [-20.020129, 66.055045], - [-20.019327, 66.054702], - [-20.018278, 66.054379], - [-20.017372, 66.054012], - [-20.015042, 66.053714], - [-20.013332, 66.05334], - [-20.012735, 66.05309], - [-20.012188, 66.052616], - [-20.012091, 66.052391], - [-20.011799, 66.052026], - [-20.011866, 66.051883], - [-20.011641, 66.051853], - [-20.011619, 66.051795], - [-20.01179, 66.051733], - [-20.011613, 66.051595], - [-20.011284, 66.05156], - [-20.010765, 66.051166], - [-20.010218, 66.050883], - [-20.010083, 66.050676], - [-20.009641, 66.050737], - [-20.009304, 66.050688], - [-20.009027, 66.050749], - [-20.00869, 66.050889], - [-20.008315, 66.050919], - [-20.008128, 66.050862], - [-20.008083, 66.050746], - [-20.00833, 66.050649], - [-20.008345, 66.050545], - [-20.008585, 66.050515], - [-20.008742, 66.050591], - [-20.008997, 66.050554], - [-20.009357, 66.050567], - [-20.009634, 66.050636], - [-20.009986, 66.050588], - [-20.010098, 66.050448], - [-20.010173, 66.050302], - [-20.01054, 66.05025], - [-20.011005, 66.050247], - [-20.010892, 66.050162], - [-20.010825, 66.050089], - [-20.010997, 66.050083], - [-20.011177, 66.050165], - [-20.011454, 66.050196], - [-20.011649, 66.050123], - [-20.011656, 66.049983], - [-20.011402, 66.049864], - [-20.011821, 66.04978], - [-20.012196, 66.049746], - [-20.012098, 66.049524], - [-20.01236, 66.049445], - [-20.012787, 66.04939], - [-20.012915, 66.049253], - [-20.01293, 66.04908], - [-20.012862, 66.048443], - [-20.012892, 66.048106], - [-20.013172, 66.047848], - [-20.013357, 66.047495], - [-20.013155, 66.047182], - [-20.012676, 66.046954], - [-20.012196, 66.046832], - [-20.011754, 66.046844], - [-20.011342, 66.046963], - [-20.011282, 66.046923], - [-20.011072, 66.046604], - [-20.011334, 66.046486], - [-20.011679, 66.046443], - [-20.011755, 66.046015], - [-20.011724, 66.045853], - [-20.011574, 66.045661], - [-20.011724, 66.045308], - [-20.012271, 66.045132], - [-20.0129, 66.044831], - [-20.013484, 66.04439], - [-20.013529, 66.043769], - [-20.013207, 66.043547], - [-20.013419, 66.043225], - [-20.013731, 66.043077], - [-20.013457, 66.042983], - [-20.013799, 66.042848], - [-20.013247, 66.042734], - [-20.013674, 66.042456], - [-20.014786, 66.042465], - [-20.015697, 66.042422], - [-20.016748, 66.042022], - [-20.017075, 66.041665], - [-20.017149, 66.04086], - [-20.016764, 66.040224], - [-20.015836, 66.039381], - [-20.014641, 66.038626], - [-20.011988, 66.037255], - [-20.005832, 66.035121], - [-20.004484, 66.035235], - [-20.003388, 66.035817], - [-20.00339, 66.035035], - [-20.00342, 66.0342], - [-20.003135, 66.033889], - [-20.00291, 66.033192], - [-20.003842, 66.032598], - [-20.004965, 66.03246], - [-20.00548, 66.031529], - [-20.005755, 66.030898], - [-20.005971, 66.030148], - [-20.005101, 66.029487], - [-20, 66.02817], - [-19.999382, 66.028011], - [-19.99445, 66.02765], - [-19.993723, 66.027451], - [-19.991878, 66.026307], - [-19.991476, 66.024974], - [-19.991195, 66.023456], - [-19.991476, 66.021161], - [-19.991111, 66.020727], - [-19.990521, 66.019357], - [-19.989916, 66.018695], - [-19.989065, 66.018132], - [-19.988805, 66.017493], - [-19.988261, 66.017022], - [-19.987953, 66.01682], - [-19.987894, 66.016425], - [-19.98761, 66.016098], - [-19.98687, 66.01578], - [-19.987443, 66.015695], - [-19.987322, 66.015391], - [-19.987026, 66.015076], - [-19.986628, 66.014733], - [-19.986284, 66.014486], - [-19.985798, 66.014243], - [-19.985568, 66.014053], - [-19.9853, 66.013907], - [-19.984857, 66.013666], - [-19.983666, 66.013241], - [-19.982291, 66.012737], - [-19.981504, 66.012406], - [-19.980228, 66.01205], - [-19.979081, 66.01177], - [-19.978796, 66.011844], - [-19.978565, 66.011926], - [-19.977984, 66.01189], - [-19.977592, 66.011903], - [-19.977493, 66.01205], - [-19.97725, 66.012119], - [-19.976527, 66.011051], - [-19.976445, 66.010519], - [-19.976789, 66.010346], - [-19.976953, 66.010219], - [-19.976707, 66.010066], - [-19.976282, 66.009926], - [-19.976216, 66.009693], - [-19.975648, 66.009476], - [-19.974539, 66.00907], - [-19.974137, 66.009014], - [-19.973727, 66.008841], - [-19.973711, 66.008515], - [-19.973809, 66.008182], - [-19.973547, 66.007936], - [-19.973477, 66.007677], - [-19.972663, 66.00743], - [-19.971812, 66.007157], - [-19.970142, 66.006897], - [-19.968881, 66.006857], - [-19.968275, 66.006937], - [-19.966822, 66.006894], - [-19.966307, 66.006787], - [-19.965852, 66.006564], - [-19.965148, 66.006391], - [-19.96523, 66.006058], - [-19.965033, 66.005732], - [-19.965197, 66.005419], - [-19.964821, 66.004953], - [-19.964886, 66.003968], - [-19.965181, 66.002762], - [-19.96489, 66.00215], - [-19.964623, 66.001823], - [-19.96413, 66.00146], - [-19.963584, 66.001354], - [-19.963003, 66.001171], - [-19.962381, 66.001058], - [-19.961939, 66.001038], - [-19.961366, 66.000785], - [-19.96143, 66.00052], - [-19.96018, 66.000427], - [-19.959838, 66.000671], - [-19.959827, 66.001071], - [-19.959401, 66.001264], - [-19.959074, 66.001397], - [-19.958484, 66.001414], - [-19.958007, 66.001317], - [-19.957602, 66.00115], - [-19.957017, 66.000833], - [-19.956389, 66.000713], - [-19.955619, 66.000425], - [-19.95502, 65.99996], - [-19.954163, 65.99996], - [-19.953392, 65.999573], - [-19.952966, 65.999613], - [-19.952721, 65.999666], - [-19.952475, 65.999453], - [-19.951886, 65.998894], - [-19.951444, 65.998747], - [-19.9511, 65.998287], - [-19.950658, 65.997875], - [-19.951002, 65.997621], - [-19.950691, 65.997495], - [-19.950232, 65.997089], - [-19.950265, 65.996582], - [-19.950118, 65.996056], - [-19.94997, 65.995843], - [-19.950003, 65.995437], - [-19.949905, 65.99515], - [-19.949557, 65.994861], - [-19.948996, 65.994538], - [-19.948338, 65.994271], - [-19.947361, 65.994121], - [-19.946784, 65.994167], - [-19.945742, 65.994258], - [-19.94523, 65.994427], - [-19.94518, 65.99464], - [-19.944879, 65.994824], - [-19.944396, 65.994955], - [-19.943638, 65.995061], - [-19.943467, 65.994845], - [-19.943018, 65.994349], - [-19.942233, 65.993958], - [-19.942393, 65.993176], - [-19.942858, 65.993032], - [-19.94313, 65.992739], - [-19.943307, 65.991969], - [-19.94321, 65.991572], - [-19.94321, 65.991396], - [-19.943867, 65.991422], - [-19.94437, 65.991335], - [-19.944844, 65.991186], - [-19.945031, 65.991034], - [-19.945037, 65.99076], - [-19.944957, 65.990359], - [-19.944668, 65.990347], - [-19.944396, 65.990327], - [-19.94434, 65.990156], - [-19.944606, 65.989997], - [-19.944555, 65.989942], - [-19.944402, 65.989965], - [-19.944221, 65.989972], - [-19.944141, 65.98993], - [-19.944098, 65.989829], - [-19.944445, 65.989784], - [-19.944702, 65.989921], - [-19.944846, 65.989914], - [-19.944934, 65.989794], - [-19.944824, 65.989294], - [-19.944975, 65.989171], - [-19.944911, 65.989022], - [-19.944719, 65.988843], - [-19.944354, 65.988668], - [-19.944024, 65.988631], - [-19.943668, 65.988676], - [-19.943311, 65.988657], - [-19.943129, 65.988549], - [-19.943129, 65.988419], - [-19.94311, 65.988248], - [-19.943403, 65.987951], - [-19.943357, 65.987779], - [-19.94311, 65.987608], - [-19.942736, 65.987467], - [-19.942425, 65.987404], - [-19.942242, 65.987404], - [-19.942087, 65.987396], - [-19.941821, 65.987145], - [-19.941474, 65.986957], - [-19.94109, 65.986768], - [-19.940743, 65.986809], - [-19.940524, 65.986812], - [-19.940432, 65.986608], - [-19.940112, 65.986158], - [-19.940185, 65.986035], - [-19.94014, 65.985812], - [-19.939838, 65.985443], - [-19.940076, 65.985395], - [-19.940149, 65.985283], - [-19.940505, 65.985209], - [-19.940505, 65.985064], - [-19.940405, 65.984804], - [-19.939948, 65.984365], - [-19.939555, 65.984123], - [-19.939299, 65.9841], - [-19.93896, 65.984149], - [-19.938832, 65.984], - [-19.93877, 65.983656], - [-19.938474, 65.983119], - [-19.938348, 65.982508], - [-19.93768, 65.982325], - [-19.936483, 65.982196], - [-19.935517, 65.982425], - [-19.934904, 65.982846], - [-19.934579, 65.982414], - [-19.934799, 65.981927], - [-19.933038, 65.981237], - [-19.933019, 65.980821], - [-19.933928, 65.980568], - [-19.933258, 65.980221], - [-19.93305, 65.979643], - [-19.932398, 65.979568], - [-19.932128, 65.979211], - [-19.931317, 65.979442], - [-19.930581, 65.978464], - [-19.929994, 65.977466], - [-19.929081, 65.977656], - [-19.928503, 65.977064], - [-19.929314, 65.975058], - [-19.92863, 65.97415], - [-19.926388, 65.973794], - [-19.923872, 65.973938], - [-19.921627, 65.974291], - [-19.91804, 65.973428], - [-19.918321, 65.97253], - [-19.918857, 65.972412], - [-19.919211, 65.971603], - [-19.919147, 65.970502], - [-19.919374, 65.970317], - [-19.918267, 65.968972], - [-19.91765, 65.968163], - [-19.918448, 65.967672], - [-19.920735, 65.967121], - [-19.92357, 65.967878], - [-19.923974, 65.967828], - [-19.924545, 65.967867], - [-19.925634, 65.968419], - [-19.927012, 65.968771], - [-19.929327, 65.968556], - [-19.930793, 65.968146], - [-19.932012, 65.967628], - [-19.932913, 65.967102], - [-19.934185, 65.96634], - [-19.935916, 65.964159], - [-19.936301, 65.962984], - [-19.936473, 65.962605], - [-19.936336, 65.962178], - [-19.936198, 65.961751], - [-19.935768, 65.961372], - [-19.933721, 65.961092], - [-19.932964, 65.960742], - [-19.929919, 65.960279], - [-19.926003, 65.956504], - [-19.925316, 65.954198], - [-19.922782, 65.952538], - [-19.920011, 65.952509], - [-19.920058, 65.951302], - [-19.921929, 65.950868], - [-19.922, 65.950337], - [-19.918874, 65.950385], - [-19.919442, 65.948705], - [-19.920579, 65.948763], - [-19.92094, 65.94842], - [-19.92109, 65.94645], - [-19.92041, 65.94622], - [-19.920129, 65.945346], - [-19.918352, 65.944515], - [-19.916543, 65.944363], - [-19.914823, 65.944023], - [-19.913355, 65.944178], - [-19.910796, 65.943849], - [-19.909352, 65.943521], - [-19.905964, 65.943366], - [-19.90505, 65.94312], - [-19.903169, 65.942613], - [-19.900445, 65.941677], - [-19.90009, 65.940392], - [-19.898598, 65.939707], - [-19.897082, 65.939176], - [-19.895471, 65.936858], - [-19.8938, 65.93682], - [-19.893429, 65.936707], - [-19.893001, 65.936752], - [-19.892368, 65.936877], - [-19.890769, 65.936525], - [-19.890522, 65.9364], - [-19.889781, 65.936155], - [-19.888784, 65.936109], - [-19.887925, 65.936172], - [-19.886494, 65.935457], - [-19.883178, 65.936027], - [-19.8823, 65.93257], - [-19.88169, 65.93259], - [-19.88178, 65.9331], - [-19.88116, 65.93312], - [-19.87926, 65.93139], - [-19.878322, 65.930956], - [-19.879198, 65.930473], - [-19.878583, 65.929826], - [-19.87793, 65.92938], - [-19.876901, 65.929034], - [-19.875764, 65.928782], - [-19.875622, 65.928241], - [-19.874508, 65.927575], - [-19.8745, 65.92615], - [-19.87341, 65.92542], - [-19.872092, 65.925207], - [-19.870979, 65.924067], - [-19.87169, 65.923014], - [-19.87046, 65.92141], - [-19.86905, 65.92069], - [-19.867829, 65.919032], - [-19.870079, 65.914122], - [-19.870363, 65.912711], - [-19.869297, 65.90953], - [-19.868018, 65.909037], - [-19.867592, 65.9066], - [-19.868303, 65.905653], - [-19.86773, 65.90382], - [-19.867, 65.903206], - [-19.866005, 65.902452], - [-19.865484, 65.900808], - [-19.86456, 65.900344], - [-19.8652, 65.899434], - [-19.864536, 65.898167], - [-19.862902, 65.897606], - [-19.862286, 65.896987], - [-19.861078, 65.8966], - [-19.858733, 65.896455], - [-19.850182, 65.896165], - [-19.848761, 65.896358], - [-19.846463, 65.896494], - [-19.83841, 65.897703], - [-19.83558, 65.90124], - [-19.83318, 65.90183], - [-19.831541, 65.903533], - [-19.82985, 65.90412], - [-19.82791, 65.90379], - [-19.821794, 65.901212], - [-19.818043, 65.900599], - [-19.81702, 65.89927], - [-19.816151, 65.898868], - [-19.815271, 65.898361], - [-19.813477, 65.898481], - [-19.811226, 65.897935], - [-19.81161, 65.89713], - [-19.808193, 65.896298], - [-19.806478, 65.894884], - [-19.804097, 65.894327], - [-19.798729, 65.89347], - [-19.79422, 65.891927], - [-19.78846, 65.89068], - [-19.78764, 65.88968], - [-19.785332, 65.888988], - [-19.780601, 65.888072], - [-19.778742, 65.888039], - [-19.777763, 65.888242], - [-19.77739, 65.88846], - [-19.77686, 65.887351], - [-19.776198, 65.887307], - [-19.775821, 65.887615], - [-19.775325, 65.887578], - [-19.77549, 65.887252], - [-19.775189, 65.886945], - [-19.774617, 65.886908], - [-19.774346, 65.887314], - [-19.774075, 65.887209], - [-19.773744, 65.88684], - [-19.774316, 65.886686], - [-19.772916, 65.885997], - [-19.772178, 65.88617], - [-19.772118, 65.88644], - [-19.771907, 65.886446], - [-19.771712, 65.886127], - [-19.76939, 65.88589], - [-19.768922, 65.885957], - [-19.76838, 65.886142], - [-19.767618, 65.886119], - [-19.767588, 65.88552], - [-19.766606, 65.88543], - [-19.76374, 65.88581], - [-19.762209, 65.885484], - [-19.760802, 65.884951], - [-19.758706, 65.884118], - [-19.756668, 65.883268], - [-19.755539, 65.882801], - [-19.753546, 65.882549], - [-19.751083, 65.882483], - [-19.748665, 65.882513], - [-19.744912, 65.882525], - [-19.743329, 65.882681], - [-19.742538, 65.883082], - [-19.741541, 65.884274], - [-19.740632, 65.884849], - [-19.738345, 65.885142], - [-19.736, 65.88489], - [-19.735219, 65.884458], - [-19.735297, 65.883829], - [-19.735875, 65.882616], - [-19.735379, 65.881814], - [-19.734641, 65.881387], - [-19.735108, 65.88135], - [-19.735351, 65.88128], - [-19.73549, 65.881372], - [-19.735504, 65.88155], - [-19.735986, 65.881841], - [-19.736253, 65.881764], - [-19.73605, 65.881274], - [-19.735686, 65.881177], - [-19.736106, 65.880995], - [-19.735272, 65.880444], - [-19.734369, 65.880001], - [-19.733674, 65.879018], - [-19.733688, 65.877928], - [-19.733174, 65.87765], - [-19.732632, 65.876286], - [-19.731882, 65.875378], - [-19.729783, 65.87477], - [-19.728393, 65.874031], - [-19.727263, 65.872697], - [-19.72417, 65.87179], - [-19.723069, 65.871651], - [-19.72234, 65.87197], - [-19.721702, 65.871574], - [-19.72044, 65.871237], - [-19.720111, 65.87065], - [-19.71878, 65.870009], - [-19.71813, 65.86954], - [-19.716171, 65.868921], - [-19.7143, 65.867423], - [-19.712311, 65.867003], - [-19.711257, 65.866572], - [-19.709808, 65.865748], - [-19.710045, 65.864929], - [-19.709373, 65.864143], - [-19.708846, 65.863744], - [-19.70795, 65.863469], - [-19.707159, 65.863286], - [-19.705974, 65.862952], - [-19.704999, 65.86244], - [-19.704656, 65.861783], - [-19.704951, 65.860965], - [-19.705785, 65.860084], - [-19.704682, 65.858877], - [-19.704189, 65.858669], - [-19.703463, 65.858363], - [-19.702835, 65.857948], - [-19.702719, 65.85724], - [-19.701077, 65.856857], - [-19.701594, 65.855738], - [-19.700907, 65.855151], - [-19.700519, 65.855135], - [-19.700332, 65.854956], - [-19.700582, 65.854762], - [-19.699408, 65.854211], - [-19.698771, 65.854216], - [-19.69847, 65.85451], - [-19.697547, 65.854359], - [-19.697959, 65.853694], - [-19.697122, 65.853316], - [-19.696455, 65.853265], - [-19.696649, 65.852211], - [-19.695895, 65.850315], - [-19.695871, 65.8493], - [-19.6957, 65.848713], - [-19.69474, 65.847916], - [-19.694971, 65.847553], - [-19.69401, 65.8472], - [-19.693484, 65.846915], - [-19.692987, 65.846532], - [-19.693248, 65.844725], - [-19.692738, 65.844265], - [-19.691175, 65.844003], - [-19.689944, 65.843494], - [-19.687753, 65.843412], - [-19.686936, 65.842205], - [-19.687055, 65.840295], - [-19.688162, 65.838525], - [-19.688623, 65.837298], - [-19.68807, 65.836647], - [-19.687263, 65.835514], - [-19.686444, 65.835014], - [-19.686905, 65.834707], - [-19.686006, 65.833867], - [-19.686525, 65.833579], - [-19.685744, 65.832033], - [-19.683319, 65.831417], - [-19.682735, 65.831229], - [-19.682578, 65.830953], - [-19.682567, 65.830263], - [-19.682982, 65.829436], - [-19.682612, 65.829077], - [-19.683192, 65.828064], - [-19.682634, 65.827366], - [-19.682733, 65.827133], - [-19.680415, 65.825387], - [-19.681137, 65.823735], - [-19.679661, 65.821823], - [-19.67883, 65.821317], - [-19.678568, 65.820973], - [-19.677125, 65.820476], - [-19.676371, 65.819889], - [-19.677048, 65.818537], - [-19.676707, 65.816894], - [-19.674962, 65.816113], - [-19.674962, 65.815546], - [-19.674259, 65.815163], - [-19.674706, 65.813754], - [-19.673504, 65.812734], - [-19.672972, 65.811997], - [-19.669374, 65.810871], - [-19.666468, 65.810152], - [-19.663722, 65.809729], - [-19.661157, 65.809389], - [-19.660231, 65.808713], - [-19.659869, 65.807609], - [-19.660757, 65.806583], - [-19.66057, 65.805534], - [-19.662177, 65.80378], - [-19.662166, 65.80285], - [-19.662467, 65.800866], - [-19.661969, 65.799893], - [-19.662529, 65.799061], - [-19.662125, 65.79853], - [-19.662581, 65.796571], - [-19.663047, 65.79632], - [-19.663524, 65.795143], - [-19.663078, 65.794604], - [-19.663379, 65.794293], - [-19.662104, 65.792713], - [-19.661192, 65.792211], - [-19.662975, 65.789848], - [-19.663037, 65.788361], - [-19.663835, 65.787422], - [-19.663327, 65.785564], - [-19.662954, 65.784982], - [-19.661555, 65.784263], - [-19.662177, 65.782695], - [-19.662, 65.782057], - [-19.661161, 65.7815], - [-19.66131, 65.78082], - [-19.662011, 65.780191], - [-19.663918, 65.778847], - [-19.664291, 65.77809], - [-19.664322, 65.777291], - [-19.663648, 65.776309], - [-19.66341, 65.774948], - [-19.66371, 65.774387], - [-19.663047, 65.772418], - [-19.663451, 65.770819], - [-19.664674, 65.769534], - [-19.664442, 65.767389], - [-19.662962, 65.76556], - [-19.66069, 65.764381], - [-19.658507, 65.763683], - [-19.656118, 65.76307], - [-19.652967, 65.762432], - [-19.651882, 65.762161], - [-19.651447, 65.762007], - [-19.648902, 65.761189], - [-19.647844, 65.760602], - [-19.647264, 65.759819], - [-19.646311, 65.75941], - [-19.646269, 65.759249], - [-19.642792, 65.758054], - [-19.640717, 65.757593], - [-19.63867, 65.757351], - [-19.637994, 65.757651], - [-19.637597, 65.757602], - [-19.639249, 65.756757], - [-19.641805, 65.756052], - [-19.641633, 65.755734], - [-19.64107, 65.755299], - [-19.640039, 65.755409], - [-19.639953, 65.755248], - [-19.640784, 65.755076], - [-19.639912, 65.754606], - [-19.64041, 65.754467], - [-19.641194, 65.754954], - [-19.641643, 65.754672], - [-19.641919, 65.754754], - [-19.641442, 65.755087], - [-19.641757, 65.75528], - [-19.642044, 65.755205], - [-19.644554, 65.756775], - [-19.648549, 65.757435], - [-19.649075, 65.757161], - [-19.648987, 65.757119], - [-19.649075, 65.757025], - [-19.649298, 65.757047], - [-19.649419, 65.756598], - [-19.648529, 65.756479], - [-19.648481, 65.756507], - [-19.648291, 65.756485], - [-19.646834, 65.756313], - [-19.646956, 65.756091], - [-19.648326, 65.756244], - [-19.648697, 65.756061], - [-19.648623, 65.756014], - [-19.648873, 65.75559], - [-19.648582, 65.755556], - [-19.648954, 65.755077], - [-19.647901, 65.754958], - [-19.647239, 65.755875], - [-19.646956, 65.75585], - [-19.647536, 65.754916], - [-19.647462, 65.754814], - [-19.64757, 65.754775], - [-19.647712, 65.754786], - [-19.648475, 65.753735], - [-19.648927, 65.753469], - [-19.649764, 65.753206], - [-19.649291, 65.752433], - [-19.64838, 65.752233], - [-19.648279, 65.752072], - [-19.647935, 65.751377], - [-19.647064, 65.750808], - [-19.644416, 65.749575], - [-19.642775, 65.74894], - [-19.64025, 65.748141], - [-19.636727, 65.747234], - [-19.634116, 65.746648], - [-19.631799, 65.74612], - [-19.622921, 65.744674], - [-19.60728, 65.7439], - [-19.585628, 65.744502], - [-19.579195, 65.745173], - [-19.574126, 65.74584], - [-19.564987, 65.747311], - [-19.561785, 65.74785], - [-19.559794, 65.748313], - [-19.554415, 65.7495], - [-19.554003, 65.749109], - [-19.56024, 65.746557], - [-19.561659, 65.745563], - [-19.560726, 65.745598], - [-19.553988, 65.745852], - [-19.55033, 65.74599], - [-19.55025, 65.74727], - [-19.55305, 65.75257], - [-19.553698, 65.753161], - [-19.554171, 65.753858], - [-19.554303, 65.754442], - [-19.553829, 65.75512], - [-19.55364, 65.75589], - [-19.554282, 65.757249], - [-19.554908, 65.75843], - [-19.554993, 65.759419], - [-19.554542, 65.759948], - [-19.554304, 65.76037], - [-19.554345, 65.760977], - [-19.553941, 65.761903], - [-19.553248, 65.76231], - [-19.55264, 65.76258], - [-19.55214, 65.762837], - [-19.551905, 65.763163], - [-19.551852, 65.763463], - [-19.551923, 65.763754], - [-19.552178, 65.76399], - [-19.552176, 65.764281], - [-19.550959, 65.764897], - [-19.550329, 65.765285], - [-19.549093, 65.765662], - [-19.548398, 65.765991], - [-19.548277, 65.766264], - [-19.548212, 65.766578], - [-19.547823, 65.766975], - [-19.547162, 65.767038], - [-19.546369, 65.767126], - [-19.54538, 65.76741], - [-19.544949, 65.768228], - [-19.544522, 65.768736], - [-19.544046, 65.769091], - [-19.54325, 65.769995], - [-19.543102, 65.770182], - [-19.543292, 65.770463], - [-19.543141, 65.771158], - [-19.542977, 65.771451], - [-19.542464, 65.771475], - [-19.542056, 65.771211], - [-19.541432, 65.771029], - [-19.539558, 65.770906], - [-19.538143, 65.770773], - [-19.537442, 65.770631], - [-19.536752, 65.770034], - [-19.536216, 65.769655], - [-19.535287, 65.769223], - [-19.533687, 65.768182], - [-19.533035, 65.767743], - [-19.533124, 65.767353], - [-19.533127, 65.766907], - [-19.532846, 65.766358], - [-19.532137, 65.76591], - [-19.530955, 65.765603], - [-19.53042, 65.76538], - [-19.529497, 65.764951], - [-19.528363, 65.764641], - [-19.527504, 65.764518], - [-19.526577, 65.764124], - [-19.525867, 65.763612], - [-19.525397, 65.763233], - [-19.524454, 65.762988], - [-19.523107, 65.762926], - [-19.522777, 65.762688], - [-19.522763, 65.762343], - [-19.522635, 65.762025], - [-19.522138, 65.761746], - [-19.521299, 65.761542], - [-19.520547, 65.761558], - [-19.520036, 65.761358], - [-19.519582, 65.761012], - [-19.519346, 65.760688], - [-19.518786, 65.760423], - [-19.517829, 65.760326], - [-19.517156, 65.760008], - [-19.516798, 65.75912], - [-19.516105, 65.758236], - [-19.515207, 65.757111], - [-19.51448, 65.756265], - [-19.514499, 65.755744], - [-19.514281, 65.755111], - [-19.513679, 65.754359], - [-19.510916, 65.752104], - [-19.508169, 65.750589], - [-19.506665, 65.749937], - [-19.505598, 65.749488], - [-19.504161, 65.748643], - [-19.503146, 65.748176], - [-19.500681, 65.747374], - [-19.498832, 65.747018], - [-19.498382, 65.746789], - [-19.498067, 65.746219], - [-19.497831, 65.745823], - [-19.496965, 65.745461], - [-19.495871, 65.745257], - [-19.49502, 65.745088], - [-19.494438, 65.744782], - [-19.493235, 65.744683], - [-19.492373, 65.744613], - [-19.491369, 65.744349], - [-19.490269, 65.744165], - [-19.488941, 65.743688], - [-19.487897, 65.743228], - [-19.486906, 65.742878], - [-19.48637, 65.742507], - [-19.485724, 65.74121], - [-19.485126, 65.740357], - [-19.483878, 65.739454], - [-19.48241, 65.73878], - [-19.48109, 65.73831], - [-19.47715, 65.73714], - [-19.476089, 65.736971], - [-19.474633, 65.736954], - [-19.465553, 65.737577], - [-19.460212, 65.738203], - [-19.450782, 65.739667], - [-19.438766, 65.74277], - [-19.429496, 65.745732], - [-19.41851, 65.748552], - [-19.414684, 65.749796], - [-19.41027, 65.751231], - [-19.40612, 65.752555], - [-19.402063, 65.754011], - [-19.401589, 65.754395], - [-19.399767, 65.754925], - [-19.398373, 65.755682], - [-19.39702, 65.75664], - [-19.396697, 65.757394], - [-19.396545, 65.759495], - [-19.3964, 65.759913], - [-19.396157, 65.760722], - [-19.395944, 65.761367], - [-19.395995, 65.76198], - [-19.396636, 65.763029], - [-19.396699, 65.763454], - [-19.396461, 65.763795], - [-19.395988, 65.764166], - [-19.396011, 65.764535], - [-19.396481, 65.765019], - [-19.39694, 65.76535], - [-19.397208, 65.765806], - [-19.397059, 65.766255], - [-19.396272, 65.767223], - [-19.395839, 65.767794], - [-19.395669, 65.768369], - [-19.395731, 65.768924], - [-19.395671, 65.769405], - [-19.395859, 65.769811], - [-19.39655, 65.770277], - [-19.397512, 65.771248], - [-19.398028, 65.771566], - [-19.39887, 65.771933], - [-19.400021, 65.772206], - [-19.400222, 65.772401], - [-19.39979, 65.772728], - [-19.398586, 65.773327], - [-19.397967, 65.773863], - [-19.397453, 65.774274], - [-19.39641, 65.77509], - [-19.38754, 65.77779], - [-19.385177, 65.77853], - [-19.382858, 65.779296], - [-19.380049, 65.780299], - [-19.378842, 65.78081], - [-19.37784, 65.781222], - [-19.376739, 65.781795], - [-19.375644, 65.782296], - [-19.374084, 65.783069], - [-19.37342, 65.783773], - [-19.373526, 65.784268], - [-19.374534, 65.787189], - [-19.374042, 65.789814], - [-19.373953, 65.790641], - [-19.374313, 65.791142], - [-19.373693, 65.793456], - [-19.371956, 65.795406], - [-19.371467, 65.796673], - [-19.371314, 65.79751], - [-19.371701, 65.797995], - [-19.371894, 65.798838], - [-19.372537, 65.799947], - [-19.373222, 65.800439], - [-19.3737, 65.801196], - [-19.375862, 65.803174], - [-19.376146, 65.803949], - [-19.376547, 65.804616], - [-19.377493, 65.805613], - [-19.378222, 65.806253], - [-19.378974, 65.806642], - [-19.380179, 65.806973], - [-19.380393, 65.807456], - [-19.380944, 65.807907], - [-19.381485, 65.808821], - [-19.381616, 65.809799], - [-19.381801, 65.810774], - [-19.38233, 65.81137], - [-19.383033, 65.811712], - [-19.383883, 65.81189], - [-19.384507, 65.811828], - [-19.385372, 65.812275], - [-19.385643, 65.812619], - [-19.385994, 65.813066], - [-19.386415, 65.813391], - [-19.387211, 65.813717], - [-19.386908, 65.814212], - [-19.385607, 65.814879], - [-19.38458, 65.81541], - [-19.382647, 65.816283], - [-19.380307, 65.81726], - [-19.379336, 65.817666], - [-19.378348, 65.81807], - [-19.377454, 65.818509], - [-19.376807, 65.818843], - [-19.376274, 65.819257], - [-19.375674, 65.820011], - [-19.375222, 65.820625], - [-19.37505, 65.82183], - [-19.374534, 65.82248], - [-19.372253, 65.82367], - [-19.367319, 65.825476], - [-19.364829, 65.826671], - [-19.363073, 65.827376], - [-19.361485, 65.828211], - [-19.36094, 65.82889], - [-19.361099, 65.829493], - [-19.361104, 65.830232], - [-19.360932, 65.830813], - [-19.361181, 65.831462], - [-19.361356, 65.834736], - [-19.361374, 65.83546], - [-19.361612, 65.836108], - [-19.362538, 65.837153], - [-19.363658, 65.838183], - [-19.363927, 65.838947], - [-19.364636, 65.839457], - [-19.365326, 65.839979], - [-19.365896, 65.840691], - [-19.36597, 65.84107], - [-19.366502, 65.84145], - [-19.366655, 65.842021], - [-19.36717, 65.84245], - [-19.3676, 65.84301], - [-19.368461, 65.843556], - [-19.369567, 65.844675], - [-19.369987, 65.845574], - [-19.37073, 65.846268], - [-19.371931, 65.847446], - [-19.372534, 65.848394], - [-19.373698, 65.849518], - [-19.374279, 65.850579], - [-19.374915, 65.85121], - [-19.377061, 65.852583], - [-19.379141, 65.853768], - [-19.379856, 65.854485], - [-19.380194, 65.854987], - [-19.380971, 65.855477], - [-19.381915, 65.856126], - [-19.382237, 65.856821], - [-19.383692, 65.858762], - [-19.385435, 65.860939], - [-19.385463, 65.861684], - [-19.386136, 65.862717], - [-19.387086, 65.86342], - [-19.392368, 65.866773], - [-19.3932, 65.86768], - [-19.394897, 65.873121], - [-19.395178, 65.874264], - [-19.395899, 65.875043], - [-19.396851, 65.877106], - [-19.397342, 65.878035], - [-19.397646, 65.879023], - [-19.397344, 65.879689], - [-19.397345, 65.88084], - [-19.397517, 65.881514], - [-19.39836, 65.88316], - [-19.398836, 65.883932], - [-19.398836, 65.885329], - [-19.398275, 65.887142], - [-19.398692, 65.888676], - [-19.399179, 65.889166], - [-19.399305, 65.889488], - [-19.399766, 65.890669], - [-19.400271, 65.89121], - [-19.401858, 65.892216], - [-19.403256, 65.893049], - [-19.404699, 65.893911], - [-19.406034, 65.894566], - [-19.408983, 65.895178], - [-19.40983, 65.895189], - [-19.410083, 65.895027], - [-19.410534, 65.895016], - [-19.412482, 65.895752], - [-19.413456, 65.896235], - [-19.414538, 65.89654], - [-19.41489, 65.896846], - [-19.416261, 65.897785], - [-19.418232, 65.898232], - [-19.418479, 65.898288], - [-19.418687, 65.898065], - [-19.419156, 65.897905], - [-19.419976, 65.897701], - [-19.42063, 65.898096], - [-19.420414, 65.898174], - [-19.420003, 65.897969], - [-19.419115, 65.898214], - [-19.4187, 65.898468], - [-19.418888, 65.898538], - [-19.418917, 65.898552], - [-19.418777, 65.898616], - [-19.418858, 65.898713], - [-19.419093, 65.898816], - [-19.419435, 65.89882], - [-19.419931, 65.898951], - [-19.419999, 65.898969], - [-19.420432, 65.89901], - [-19.421604, 65.89885], - [-19.421717, 65.898699], - [-19.422339, 65.898448], - [-19.421248, 65.897634], - [-19.421473, 65.897605], - [-19.421618, 65.897704], - [-19.422013, 65.897634], - [-19.423309, 65.898511], - [-19.423582, 65.898912], - [-19.424565, 65.899433], - [-19.425366, 65.899659], - [-19.426349, 65.900017], - [-19.427531, 65.900535], - [-19.427622, 65.900735], - [-19.428084, 65.901061], - [-19.42913, 65.90175], - [-19.429696, 65.902078], - [-19.430281, 65.902368], - [-19.430494, 65.902543], - [-19.430111, 65.902727], - [-19.43021, 65.902937], - [-19.430836, 65.903074], - [-19.431668, 65.903128], - [-19.43184, 65.903304], - [-19.431649, 65.903505], - [-19.430838, 65.90375], - [-19.428332, 65.904182], - [-19.427571, 65.904651], - [-19.427233, 65.905547], - [-19.426956, 65.907333], - [-19.427407, 65.908227], - [-19.427936, 65.909155], - [-19.428521, 65.909547], - [-19.429784, 65.910022], - [-19.430857, 65.910425], - [-19.433473, 65.910895], - [-19.434358, 65.911126], - [-19.435019, 65.911449], - [-19.435582, 65.911701], - [-19.436222, 65.91179], - [-19.436868, 65.911834], - [-19.437272, 65.91215], - [-19.43775, 65.912648], - [-19.437678, 65.91308], - [-19.436954, 65.913097], - [-19.436263, 65.913051], - [-19.435491, 65.913211], - [-19.434888, 65.913587], - [-19.434572, 65.914016], - [-19.434376, 65.914619], - [-19.434093, 65.915076], - [-19.433622, 65.915365], - [-19.433349, 65.916039], - [-19.43332, 65.9166], - [-19.43345, 65.917219], - [-19.433857, 65.917683], - [-19.434378, 65.917945], - [-19.435168, 65.918129], - [-19.436498, 65.918272], - [-19.4377, 65.91866], - [-19.438451, 65.918883], - [-19.439291, 65.919008], - [-19.438007, 65.919892], - [-19.437832, 65.920301], - [-19.43747, 65.92098], - [-19.437597, 65.92171], - [-19.437922, 65.922404], - [-19.438415, 65.923227], - [-19.439307, 65.923647], - [-19.439965, 65.923779], - [-19.440345, 65.924207], - [-19.440983, 65.924427], - [-19.441886, 65.924511], - [-19.442898, 65.924441], - [-19.443557, 65.924354], - [-19.444505, 65.924444], - [-19.444823, 65.92475], - [-19.445382, 65.924931], - [-19.445815, 65.925275], - [-19.446375, 65.92558], - [-19.446374, 65.925817], - [-19.446821, 65.925861], - [-19.447315, 65.926034], - [-19.446651, 65.926245], - [-19.446173, 65.926632], - [-19.44603, 65.926894], - [-19.446241, 65.927228], - [-19.446803, 65.927577], - [-19.447297, 65.927725], - [-19.447805, 65.927683], - [-19.448534, 65.927752], - [-19.449226, 65.928214], - [-19.44963, 65.928556], - [-19.449778, 65.928856], - [-19.450363, 65.928829], - [-19.450816, 65.929005], - [-19.450668, 65.929171], - [-19.450125, 65.929168], - [-19.449971, 65.929256], - [-19.449981, 65.929474], - [-19.45038, 65.929517], - [-19.450702, 65.929467], - [-19.451154, 65.929581], - [-19.451304, 65.929763], - [-19.450987, 65.930396], - [-19.451311, 65.930649], - [-19.451716, 65.930834], - [-19.451839, 65.931087], - [-19.451415, 65.931331], - [-19.451307, 65.931574], - [-19.451825, 65.932181], - [-19.452449, 65.932626], - [-19.454565, 65.933852], - [-19.46083, 65.936338], - [-19.466799, 65.940807], - [-19.473825, 65.945277], - [-19.482037, 65.94821], - [-19.48627, 65.949154], - [-19.488873, 65.949818], - [-19.49445, 65.950189], - [-19.495868, 65.950771], - [-19.496175, 65.951108], - [-19.497117, 65.951207], - [-19.497953, 65.95144], - [-19.498641, 65.951474], - [-19.49917, 65.951703], - [-19.500323, 65.952255], - [-19.500778, 65.952436], - [-19.501149, 65.952785], - [-19.501456, 65.953191], - [-19.50263, 65.953837], - [-19.502768, 65.954191], - [-19.503191, 65.954411], - [-19.50367, 65.95493], - [-19.503434, 65.955437], - [-19.503847, 65.955562], - [-19.503784, 65.95689], - [-19.504725, 65.95733], - [-19.50553, 65.957472], - [-19.506419, 65.958188], - [-19.506588, 65.959033], - [-19.50529, 65.959749], - [-19.505529, 65.960546], - [-19.505214, 65.961219], - [-19.505703, 65.961307], - [-19.506051, 65.961635], - [-19.50612, 65.96187], - [-19.505807, 65.96197], - [-19.505941, 65.962065], - [-19.506533, 65.962206], - [-19.5066, 65.96252], - [-19.507414, 65.962938], - [-19.507158, 65.963302], - [-19.507872, 65.963393], - [-19.507135, 65.963734], - [-19.506745, 65.96407], - [-19.507214, 65.964107], - [-19.507705, 65.964521], - [-19.507191, 65.964689], - [-19.507448, 65.964912], - [-19.507917, 65.964884], - [-19.509111, 65.965107], - [-19.511779, 65.966244], - [-19.5116, 65.966362], - [-19.510596, 65.966253], - [-19.509357, 65.965775], - [-19.50788, 65.96632], - [-19.504284, 65.968025], - [-19.502221, 65.969047], - [-19.50041, 65.970457], - [-19.499527, 65.97112], - [-19.498426, 65.9719], - [-19.494976, 65.973482], - [-19.494918, 65.973029], - [-19.494815, 65.972735], - [-19.49407, 65.972385], - [-19.493199, 65.972086], - [-19.489794, 65.971554], - [-19.4837, 65.97177], - [-19.480795, 65.972077], - [-19.478743, 65.972506], - [-19.475997, 65.972776], - [-19.472357, 65.972607], - [-19.472146, 65.972495], - [-19.470201, 65.972422], - [-19.467291, 65.972495], - [-19.460716, 65.973185], - [-19.444001, 65.975112], - [-19.435587, 65.976215], - [-19.426654, 65.977488], - [-19.422281, 65.978361], - [-19.419167, 65.97933], - [-19.41642, 65.980706], - [-19.415471, 65.982834], - [-19.414955, 65.983163], - [-19.41411, 65.98365], - [-19.413368, 65.984192], - [-19.41273, 65.984958], - [-19.412552, 65.985602], - [-19.412207, 65.986138], - [-19.412027, 65.986774], - [-19.409978, 65.989809], - [-19.408943, 65.99055], - [-19.407913, 65.991069], - [-19.406474, 65.992065], - [-19.405237, 65.992936], - [-19.40447, 65.99341], - [-19.403493, 65.994327], - [-19.403096, 65.994781], - [-19.402982, 65.99513], - [-19.403455, 65.995503], - [-19.40499, 65.99664], - [-19.405567, 65.997369], - [-19.406576, 65.999259], - [-19.406858, 66.000044], - [-19.406792, 66.000383], - [-19.406628, 66.000768], - [-19.40576, 66.002113], - [-19.405408, 66.002733], - [-19.405246, 66.003134], - [-19.40533, 66.003666], - [-19.405528, 66.004317], - [-19.405708, 66.004657], - [-19.405856, 66.004966], - [-19.406531, 66.006315], - [-19.407304, 66.007354], - [-19.408123, 66.008704], - [-19.408983, 66.010142], - [-19.40926, 66.012072], - [-19.409712, 66.012516], - [-19.410565, 66.012718], - [-19.411595, 66.013143], - [-19.412196, 66.013896], - [-19.412838, 66.014418], - [-19.414728, 66.015963], - [-19.415415, 66.016844], - [-19.415563, 66.017173], - [-19.415713, 66.017443], - [-19.41625, 66.018039], - [-19.417091, 66.018194], - [-19.417799, 66.018464], - [-19.418552, 66.019016], - [-19.419494, 66.019267], - [-19.42141, 66.02033], - [-19.421895, 66.020689], - [-19.42247, 66.02107], - [-19.423716, 66.021796], - [-19.42464, 66.022443], - [-19.427222, 66.024309], - [-19.4284, 66.024944], - [-19.429434, 66.025936], - [-19.43035, 66.02648], - [-19.431129, 66.026987], - [-19.431743, 66.027462], - [-19.433402, 66.02899], - [-19.434509, 66.030924], - [-19.436384, 66.035369], - [-19.43752, 66.036589], - [-19.43902, 66.039143], - [-19.439236, 66.040478], - [-19.439259, 66.041201], - [-19.439298, 66.041775], - [-19.439251, 66.042775], - [-19.438665, 66.043911], - [-19.437823, 66.0446], - [-19.436815, 66.04749], - [-19.436191, 66.047998], - [-19.435413, 66.048518], - [-19.434904, 66.048773], - [-19.434212, 66.049126], - [-19.433446, 66.049553], - [-19.432631, 66.050245], - [-19.432155, 66.050645], - [-19.431168, 66.051278], - [-19.430461, 66.051619], - [-19.429703, 66.051941], - [-19.428867, 66.052248], - [-19.427647, 66.052649], - [-19.42677, 66.05297], - [-19.42539, 66.053414], - [-19.420053, 66.055068], - [-19.41477, 66.05652], - [-19.412219, 66.056695], - [-19.410142, 66.056539], - [-19.407479, 66.056577], - [-19.405596, 66.056821], - [-19.405186, 66.05702], - [-19.40547, 66.05744], - [-19.405029, 66.057483], - [-19.40422, 66.05746], - [-19.403661, 66.057723], - [-19.403682, 66.058245], - [-19.404198, 66.058421], - [-19.404179, 66.05929], - [-19.403206, 66.059387], - [-19.402414, 66.05965], - [-19.401705, 66.05997], - [-19.400415, 66.060476], - [-19.399691, 66.060737], - [-19.398428, 66.060788], - [-19.39628, 66.061197], - [-19.395119, 66.06132], - [-19.39415, 66.06121], - [-19.39111, 66.061599], - [-19.390182, 66.061633], - [-19.38924, 66.061494], - [-19.388277, 66.061583], - [-19.387154, 66.061853], - [-19.38614, 66.06233], - [-19.385402, 66.063123], - [-19.38357, 66.06574], - [-19.383037, 66.066013], - [-19.381967, 66.066076], - [-19.380571, 66.06603], - [-19.37929, 66.0665], - [-19.378357, 66.066638], - [-19.377442, 66.066589], - [-19.375829, 66.06649], - [-19.374583, 66.066762], - [-19.37371, 66.06705], - [-19.369843, 66.071436], - [-19.368513, 66.07146], - [-19.36662, 66.071958], - [-19.365292, 66.07268], - [-19.36404, 66.07321], - [-19.362393, 66.074297], - [-19.361972, 66.074672], - [-19.359629, 66.077763], - [-19.358238, 66.078144], - [-19.354867, 66.078398], - [-19.354024, 66.07836], - [-19.352499, 66.077956], - [-19.351372, 66.07784], - [-19.350893, 66.077665], - [-19.350719, 66.077118], - [-19.350513, 66.075667], - [-19.349841, 66.075037], - [-19.349066, 66.074175], - [-19.348188, 66.07383], - [-19.346579, 66.073595], - [-19.345101, 66.073594], - [-19.344204, 66.073419], - [-19.343535, 66.073002], - [-19.342825, 66.072673], - [-19.341672, 66.072525], - [-19.33931, 66.0725], - [-19.33433, 66.07289], - [-19.33189, 66.07335], - [-19.331308, 66.073595], - [-19.33072, 66.07389], - [-19.330251, 66.074169], - [-19.329807, 66.074472], - [-19.329313, 66.074751], - [-19.328623, 66.075012], - [-19.32717, 66.07527], - [-19.326243, 66.075693], - [-19.32573, 66.076073], - [-19.325338, 66.076475], - [-19.324284, 66.076528], - [-19.322029, 66.076578], - [-19.317996, 66.076467], - [-19.316499, 66.076274], - [-19.315597, 66.076354], - [-19.3151, 66.076728], - [-19.314177, 66.076873], - [-19.313447, 66.076833], - [-19.312934, 66.076552], - [-19.312339, 66.076395], - [-19.31137, 66.076377], - [-19.31047, 66.076189], - [-19.309563, 66.075839], - [-19.307889, 66.075794], - [-19.305942, 66.075951], - [-19.303018, 66.076264], - [-19.300491, 66.07638], - [-19.298217, 66.076215], - [-19.294036, 66.075544], - [-19.292319, 66.075369], - [-19.290621, 66.075509], - [-19.289463, 66.075815], - [-19.288151, 66.076222], - [-19.286634, 66.07683], - [-19.285232, 66.077032], - [-19.283843, 66.077143], - [-19.282985, 66.077265], - [-19.281176, 66.077917], - [-19.280238, 66.077935], - [-19.279355, 66.07737], - [-19.2782, 66.077057], - [-19.276931, 66.076995], - [-19.26943, 66.07714], - [-19.26897, 66.07818], - [-19.26646, 66.07826], - [-19.26386, 66.07781], - [-19.26358, 66.07739], - [-19.25665, 66.07622], - [-19.25557, 66.07727], - [-19.24987, 66.07717], - [-19.24996, 66.07768], - [-19.24807, 66.07773], - [-19.24816, 66.07824], - [-19.24627, 66.07829], - [-19.24636, 66.0788], - [-19.24393, 66.07938], - [-19.24238, 66.07763], - [-19.23924, 66.07772], - [-19.23999, 66.07847], - [-19.23438, 66.07888], - [-19.23447, 66.07939], - [-19.23321, 66.07941], - [-19.23276, 66.08046], - [-19.22408, 66.08145], - [-19.22417, 66.08197], - [-19.22291, 66.08201], - [-19.22299, 66.08252], - [-19.2173, 66.08242], - [-19.21739, 66.08293], - [-19.2131, 66.08369], - [-19.20084, 66.0821], - [-19.20075, 66.08159], - [-19.19761, 66.08167], - [-19.19753, 66.08117], - [-19.19051, 66.08071], - [-19.18685, 66.08145], - [-19.18431, 66.07947], - [-19.18278, 66.07593], - [-19.17952, 66.07525], - [-19.17437, 66.07078], - [-19.16984, 66.07013], - [-19.16901, 66.06888], - [-19.15638, 66.06883], - [-19.15124, 66.0682], - [-19.143451, 66.069532], - [-19.13672, 66.07205], - [-19.13321, 66.07368], - [-19.13098, 66.07553], - [-19.129242, 66.07688], - [-19.129912, 66.078142], - [-19.13223, 66.07934], - [-19.140327, 66.084177], - [-19.141218, 66.085027], - [-19.139414, 66.08746], - [-19.137263, 66.08863], - [-19.135818, 66.088977], - [-19.134187, 66.089131], - [-19.133007, 66.089056], - [-19.132119, 66.088857], - [-19.130861, 66.088508], - [-19.129574, 66.088158], - [-19.126687, 66.087823], - [-19.125947, 66.087818], - [-19.123054, 66.087797], - [-19.121384, 66.087821], - [-19.120376, 66.087924], - [-19.113761, 66.088587], - [-19.110301, 66.089139], - [-19.104388, 66.090919], - [-19.095972, 66.093573], - [-19.093793, 66.094332], - [-19.091342, 66.095296], - [-19.089698, 66.096253], - [-19.088026, 66.097473], - [-19.087366, 66.098203], - [-19.087399, 66.099255], - [-19.088593, 66.100487], - [-19.088997, 66.100733], - [-19.089392, 66.100986], - [-19.090872, 66.101493], - [-19.091402, 66.10196], - [-19.09164, 66.10348], - [-19.091293, 66.104028], - [-19.090521, 66.104549], - [-19.088975, 66.105615], - [-19.08652, 66.106451], - [-19.08616, 66.1067], - [-19.085329, 66.10706], - [-19.084191, 66.107933], - [-19.082469, 66.108817], - [-19.08009, 66.11019], - [-19.080572, 66.111141], - [-19.082954, 66.112739], - [-19.083571, 66.113048], - [-19.084399, 66.113479], - [-19.084994, 66.113847], - [-19.085607, 66.114317], - [-19.086015, 66.114717], - [-19.086251, 66.115307], - [-19.086167, 66.116016], - [-19.084504, 66.117412], - [-19.083858, 66.117992], - [-19.083397, 66.118609], - [-19.08359, 66.118965], - [-19.083225, 66.119981], - [-19.08166, 66.12194], - [-19.079899, 66.12281], - [-19.077682, 66.1236], - [-19.076701, 66.12424], - [-19.075581, 66.126436], - [-19.076384, 66.127972], - [-19.07652, 66.12923], - [-19.076315, 66.129939], - [-19.07512, 66.13234], - [-19.074772, 66.132779], - [-19.072797, 66.134061], - [-19.072121, 66.134704], - [-19.071733, 66.135417], - [-19.071214, 66.1359], - [-19.070093, 66.137139], - [-19.069237, 66.138384], - [-19.069039, 66.138834], - [-19.067936, 66.140021], - [-19.067561, 66.140555], - [-19.067572, 66.141179], - [-19.066788, 66.14229], - [-19.066209, 66.143273], - [-19.065791, 66.144347], - [-19.06583, 66.14539], - [-19.065707, 66.145699], - [-19.064793, 66.147254], - [-19.064299, 66.148925], - [-19.062854, 66.150317], - [-19.062249, 66.150685], - [-19.05974, 66.153414], - [-19.056874, 66.155787], - [-19.055005, 66.15645], - [-19.052325, 66.1579], - [-19.04968, 66.158767], - [-19.044493, 66.159481], - [-19.043626, 66.159017], - [-19.04321, 66.158766], - [-19.042797, 66.158517], - [-19.041821, 66.15793], - [-19.041162, 66.157533], - [-19.040612, 66.157202], - [-19.03964, 66.156617], - [-19.039579, 66.15658], - [-19.03678, 66.154895], - [-19.033802, 66.153101], - [-19.032022, 66.152029], - [-19.03122, 66.151546], - [-19.029803, 66.150692], - [-19.026439, 66.148666], - [-19.024512, 66.147505], - [-19.023709, 66.14702], - [-19.023344, 66.146801], - [-19.022833, 66.146493], - [-19.021669, 66.145791], - [-19.021102, 66.14545], - [-19.02075, 66.145237], - [-19.020317, 66.144976], - [-19.019743, 66.144631], - [-19.019303, 66.144365], - [-19.019011, 66.144189], - [-19.018108, 66.143645], - [-19.017609, 66.143344], - [-19.016869, 66.142898], - [-19.016473, 66.142659], - [-19.016178, 66.142481], - [-19.015915, 66.142323], - [-19.015533, 66.142092], - [-19.015162, 66.141869], - [-19.01496, 66.141747], - [-19.014613, 66.141538], - [-19.014379, 66.141397], - [-19.014015, 66.141177], - [-19.013625, 66.141132], - [-19.013152, 66.141078], - [-19.012521, 66.141005], - [-19.012184, 66.140967], - [-19.011833, 66.140908], - [-19.010348, 66.140663], - [-19.008772, 66.140362], - [-19.007848, 66.140011], - [-19.007722, 66.139964], - [-19.007024, 66.139482], - [-19.006808, 66.139303], - [-19.005968, 66.13861], - [-19.005721, 66.138458], - [-19.005666, 66.138424], - [-19.004978, 66.138002], - [-19.004771, 66.13793], - [-19.003926, 66.137638], - [-19.001965, 66.13728], - [-19.00129, 66.137024], - [-19.000195, 66.136608], - [-18.999571, 66.136371], - [-18.999519, 66.136345], - [-18.998949, 66.136059], - [-18.997745, 66.135456], - [-18.997392, 66.13528], - [-18.997196, 66.135181], - [-18.996871, 66.135105], - [-18.996041, 66.13491], - [-18.995036, 66.134774], - [-18.993369, 66.13455], - [-18.992826, 66.134477], - [-18.992726, 66.134463], - [-18.993119, 66.134026], - [-18.993472, 66.133631], - [-18.993909, 66.133144], - [-18.994283, 66.132727], - [-18.994513, 66.13247], - [-18.994597, 66.132392], - [-18.995182, 66.131851], - [-18.995659, 66.13141], - [-18.995686, 66.131385], - [-18.996357, 66.130936], - [-18.997324, 66.130288], - [-18.997406, 66.130234], - [-18.998911, 66.129366], - [-18.999397, 66.129086], - [-18.999571, 66.12908], - [-18.999954, 66.128991], - [-19.000731, 66.12881], - [-19.00175, 66.128573], - [-19.002679, 66.128356], - [-19.003773, 66.128041], - [-19.004212, 66.127914], - [-19.004685, 66.127581], - [-19.004763, 66.127526], - [-19.004979, 66.127106], - [-19.005127, 66.126819], - [-19.005147, 66.126779], - [-19.005, 66.126334], - [-19.004888, 66.125996], - [-19.004501, 66.125367], - [-19.004364, 66.125146], - [-19.004158, 66.124916], - [-19.003923, 66.124655], - [-19.003556, 66.124246], - [-19.00277, 66.12354], - [-19.002097, 66.122934], - [-19.001092, 66.121729], - [-19.000907, 66.121507], - [-19.000788, 66.121386], - [-18.999641, 66.120213], - [-18.999587, 66.119988], - [-18.999571, 66.119927], - [-18.999525, 66.11973], - [-18.99947, 66.11924], - [-18.999535, 66.118886], - [-18.999571, 66.118629], - [-18.999875, 66.118403], - [-19.000568, 66.117886], - [-19.000851, 66.117675], - [-19.001501, 66.117051], - [-19.001555, 66.116998], - [-19.002264, 66.116407], - [-19.002604, 66.116124], - [-19.002739, 66.116011], - [-19.002933, 66.115674], - [-19.00311, 66.115367], - [-19.003267, 66.115095], - [-19.003289, 66.11499], - [-19.003422, 66.114344], - [-19.003477, 66.114082], - [-19.003481, 66.1134], - [-19.003482, 66.113185], - [-19.002867, 66.112729], - [-19.002198, 66.11241], - [-19.001594, 66.112126], - [-19.000069, 66.111589], - [-18.999579, 66.11142], - [-18.998177, 66.110548], - [-18.997346, 66.110028], - [-18.99686, 66.109724], - [-18.996138, 66.109439], - [-18.995236, 66.109084], - [-18.99461, 66.108837], - [-18.993446, 66.108247], - [-18.992314, 66.107673], - [-18.991952, 66.107166], - [-18.992021, 66.106844], - [-18.992167, 66.106247], - [-18.992248, 66.105915], - [-18.992364, 66.104451], - [-18.991994, 66.103948], - [-18.991783, 66.103852], - [-18.990545, 66.103293], - [-18.987577, 66.102548], - [-18.987, 66.102403], - [-18.984641, 66.10174], - [-18.984001, 66.101561], - [-18.983797, 66.101503], - [-18.982157, 66.10109], - [-18.982058, 66.101066], - [-18.981955, 66.100977], - [-18.980781, 66.09997], - [-18.979729, 66.099472], - [-18.978815, 66.09931], - [-18.977711, 66.099114], - [-18.97608, 66.099], - [-18.974583, 66.098896], - [-18.973302, 66.098807], - [-18.973838, 66.09851], - [-18.974811, 66.097972], - [-18.975158, 66.09778], - [-18.976347, 66.096551], - [-18.976058, 66.095039], - [-18.975144, 66.093672], - [-18.973428, 66.092957], - [-18.972327, 66.092848], - [-18.971797, 66.092796], - [-18.970854, 66.092702], - [-18.969274, 66.092617], - [-18.967462, 66.092519], - [-18.965452, 66.092078], - [-18.964065, 66.091478], - [-18.963541, 66.09125], - [-18.96243, 66.090864], - [-18.961352, 66.090488], - [-18.960343, 66.09046], - [-18.959959, 66.090449], - [-18.957475, 66.090379], - [-18.954909, 66.090307], - [-18.953936, 66.09028], - [-18.949565, 66.08993], - [-18.947179, 66.089738], - [-18.946484, 66.089683], - [-18.946294, 66.088898], - [-18.946177, 66.08842], - [-18.946114, 66.086676], - [-18.945912, 66.086517], - [-18.945173, 66.085933], - [-18.944512, 66.08541], - [-18.942334, 66.084523], - [-18.941549, 66.08447], - [-18.939283, 66.084317], - [-18.937316, 66.084235], - [-18.936808, 66.08373], - [-18.936478, 66.083026], - [-18.936227, 66.082491], - [-18.935045, 66.081196], - [-18.934412, 66.080503], - [-18.9321, 66.07944], - [-18.931127, 66.078992], - [-18.929966, 66.078728], - [-18.92932, 66.078581], - [-18.926191, 66.078468], - [-18.925651, 66.078449], - [-18.922686, 66.078313], - [-18.921485, 66.078258], - [-18.920083, 66.078194], - [-18.919996, 66.078193], - [-18.918015, 66.07818], - [-18.916064, 66.078167], - [-18.913818, 66.078137], - [-18.913575, 66.078054], - [-18.91259, 66.07772], - [-18.912293, 66.077618], - [-18.912037, 66.077419], - [-18.910834, 66.076478], - [-18.910111, 66.075913], - [-18.909987, 66.075816], - [-18.908731, 66.075169], - [-18.908291, 66.074943], - [-18.907886, 66.074734], - [-18.907153, 66.074357], - [-18.906355, 66.073946], - [-18.905798, 66.073659], - [-18.905323, 66.073414], - [-18.905215, 66.073359], - [-18.904649, 66.073048], - [-18.903336, 66.07233], - [-18.902027, 66.071613], - [-18.901434, 66.071288], - [-18.898155, 66.070138], - [-18.897447, 66.06989], - [-18.896968, 66.069722], - [-18.896535, 66.06957], - [-18.896113, 66.069423], - [-18.895789, 66.069309], - [-18.895276, 66.069129], - [-18.895447, 66.068702], - [-18.896058, 66.068212], - [-18.897344, 66.067179], - [-18.897708, 66.065247], - [-18.897991, 66.064297], - [-18.899616, 66.062769], - [-18.901577, 66.061609], - [-18.901764, 66.061498], - [-18.902638, 66.061183], - [-18.903659, 66.060815], - [-18.904344, 66.060568], - [-18.904572, 66.060485], - [-18.904359, 66.060153], - [-18.90433, 66.060108], - [-18.90386, 66.059912], - [-18.903318, 66.059684], - [-18.902618, 66.059391], - [-18.9018, 66.059048], - [-18.900578, 66.058536], - [-18.900356, 66.058459], - [-18.897731, 66.057556], - [-18.895579, 66.057114], - [-18.893981, 66.056786], - [-18.893346, 66.056549], - [-18.892788, 66.05634], - [-18.891977, 66.056037], - [-18.891059, 66.055694], - [-18.890362, 66.055433], - [-18.890216, 66.055379], - [-18.889022, 66.054555], - [-18.888477, 66.054179], - [-18.886921, 66.053442], - [-18.88644, 66.053214], - [-18.885529, 66.052783], - [-18.882229, 66.051668], - [-18.881688, 66.051485], - [-18.880462, 66.051122], - [-18.879966, 66.050975], - [-18.879616, 66.050871], - [-18.879138, 66.050729], - [-18.878167, 66.050441], - [-18.877505, 66.050311], - [-18.876211, 66.050058], - [-18.875673, 66.049953], - [-18.875454, 66.04991], - [-18.874756, 66.049773], - [-18.874214, 66.049667], - [-18.87351, 66.049383], - [-18.87237, 66.048923], - [-18.872206, 66.048806], - [-18.871697, 66.048442], - [-18.870922, 66.047889], - [-18.870829, 66.047822], - [-18.870436, 66.047586], - [-18.868081, 66.046172], - [-18.867718, 66.045953], - [-18.865288, 66.04528], - [-18.864598, 66.045089], - [-18.864458, 66.04505], - [-18.860325, 66.044497], - [-18.860083, 66.044464], - [-18.858436, 66.044268], - [-18.857185, 66.04412], - [-18.856941, 66.04388], - [-18.855425, 66.042394], - [-18.853455, 66.039903], - [-18.85235, 66.038505], - [-18.851088, 66.037326], - [-18.851252, 66.036996], - [-18.852997, 66.036481], - [-18.853324, 66.036384], - [-18.856284, 66.035512], - [-18.85802, 66.035001], - [-18.859275, 66.034392], - [-18.859793, 66.03414], - [-18.861039, 66.033781], - [-18.861257, 66.033718], - [-18.862079, 66.033517], - [-18.862745, 66.033355], - [-18.86325, 66.033231], - [-18.864164, 66.033007], - [-18.866397, 66.032461], - [-18.866748, 66.032353], - [-18.867779, 66.032036], - [-18.868073, 66.031945], - [-18.868663, 66.031634], - [-18.870261, 66.030792], - [-18.871347, 66.03022], - [-18.872655, 66.029901], - [-18.873499, 66.029696], - [-18.876816, 66.029078], - [-18.877206, 66.028968], - [-18.878608, 66.028573], - [-18.879811, 66.028234], - [-18.880822, 66.027767], - [-18.881629, 66.027395], - [-18.88251, 66.026989], - [-18.882782, 66.026864], - [-18.883377, 66.026437], - [-18.885513, 66.024908], - [-18.885891, 66.024638], - [-18.887586, 66.023343], - [-18.887706, 66.023251], - [-18.888169, 66.022594], - [-18.888054, 66.021513], - [-18.887627, 66.020926], - [-18.887028, 66.020317], - [-18.886498, 66.019777], - [-18.885602, 66.019194], - [-18.884498, 66.018476], - [-18.884359, 66.018246], - [-18.8839, 66.017486], - [-18.883895, 66.016902], - [-18.883894, 66.016739], - [-18.882431, 66.015529], - [-18.881852, 66.014833], - [-18.881627, 66.014564], - [-18.880968, 66.013545], - [-18.880904, 66.013447], - [-18.880579, 66.012447], - [-18.8796, 66.011963], - [-18.878069, 66.011525], - [-18.877874, 66.011469], - [-18.87708, 66.011209], - [-18.876716, 66.010678], - [-18.877129, 66.009798], - [-18.877401, 66.009588], - [-18.877637, 66.009404], - [-18.879042, 66.00804], - [-18.87922, 66.006715], - [-18.879076, 66.005974], - [-18.878982, 66.005494], - [-18.879117, 66.004694], - [-18.880268, 66.003105], - [-18.881263, 66.001763], - [-18.881649, 66.001516], - [-18.88437, 65.999775], - [-18.885254, 65.999061], - [-18.886047, 65.998418], - [-18.88644, 65.997931], - [-18.887275, 65.996896], - [-18.88873, 65.994543], - [-18.889143, 65.993903], - [-18.890104, 65.992416], - [-18.890716, 65.99147], - [-18.890902, 65.991022], - [-18.892485, 65.987208], - [-18.892924, 65.985854], - [-18.893189, 65.985036], - [-18.893679, 65.982916], - [-18.893814, 65.980641], - [-18.893723, 65.980264], - [-18.893478, 65.979242], - [-18.893345, 65.978689], - [-18.892747, 65.977938], - [-18.892161, 65.977203], - [-18.892061, 65.977078], - [-18.891812, 65.976861], - [-18.890929, 65.976095], - [-18.890887, 65.976057], - [-18.889326, 65.975266], - [-18.889281, 65.975234], - [-18.888485, 65.974656], - [-18.888768, 65.973762], - [-18.889972, 65.973159], - [-18.891933, 65.972918], - [-18.893403, 65.972931], - [-18.895441, 65.97295], - [-18.896387, 65.972958], - [-18.897893, 65.972805], - [-18.899349, 65.972656], - [-18.90011, 65.972443], - [-18.901389, 65.972085], - [-18.901711, 65.971857], - [-18.902336, 65.971414], - [-18.902475, 65.970358], - [-18.902589, 65.96897], - [-18.902354, 65.968432], - [-18.90204, 65.96771], - [-18.901875, 65.967333], - [-18.901689, 65.966905], - [-18.901309, 65.966034], - [-18.900128, 65.964457], - [-18.898371, 65.963086], - [-18.898009, 65.962803], - [-18.897886, 65.962659], - [-18.89773, 65.962476], - [-18.897347, 65.962027], - [-18.896925, 65.961533], - [-18.896549, 65.961094], - [-18.896134, 65.960607], - [-18.895857, 65.960283], - [-18.895649, 65.960001], - [-18.894989, 65.959109], - [-18.894254, 65.958113], - [-18.893699, 65.95754], - [-18.893213, 65.957038], - [-18.89266, 65.956466], - [-18.892241, 65.955819], - [-18.892151, 65.955452], - [-18.891966, 65.954703], - [-18.892322, 65.954373], - [-18.892647, 65.954071], - [-18.892924, 65.953603], - [-18.893073, 65.95335], - [-18.893097, 65.953183], - [-18.893177, 65.952598], - [-18.893203, 65.952411], - [-18.893005, 65.951639], - [-18.892569, 65.951205], - [-18.891821, 65.950746], - [-18.890803, 65.950421], - [-18.890493, 65.950322], - [-18.889516, 65.950153], - [-18.88915, 65.950089], - [-18.888675, 65.950028], - [-18.887666, 65.949898], - [-18.886534, 65.949751], - [-18.885647, 65.949616], - [-18.885162, 65.949543], - [-18.884629, 65.949462], - [-18.883995, 65.949366], - [-18.883607, 65.949308], - [-18.883268, 65.949203], - [-18.882826, 65.949067], - [-18.882252, 65.948891], - [-18.881937, 65.948794], - [-18.881299, 65.948598], - [-18.881206, 65.948569], - [-18.880805, 65.94841], - [-18.880297, 65.948209], - [-18.879714, 65.947978], - [-18.879237, 65.947789], - [-18.878827, 65.947626], - [-18.878171, 65.947366], - [-18.877299, 65.94702], - [-18.876576, 65.946734], - [-18.876022, 65.946514], - [-18.875251, 65.946208], - [-18.874487, 65.945906], - [-18.873915, 65.945679], - [-18.873309, 65.945438], - [-18.87264, 65.945173], - [-18.871744, 65.944818], - [-18.870728, 65.944415], - [-18.869826, 65.944057], - [-18.86964, 65.943983], - [-18.869145, 65.943743], - [-18.868038, 65.943205], - [-18.867258, 65.942826], - [-18.866418, 65.942417], - [-18.865385, 65.941915], - [-18.86427, 65.941374], - [-18.8617, 65.940439], - [-18.859471, 65.939628], - [-18.857517, 65.938917], - [-18.855125, 65.938047], - [-18.850614, 65.936405], - [-18.845659, 65.934602], - [-18.845447, 65.931127], - [-18.845437, 65.930954], - [-18.845431, 65.930857], - [-18.845368, 65.929824], - [-18.845272, 65.928246], - [-18.845225, 65.927475], - [-18.845184, 65.926807], - [-18.845159, 65.92639], - [-18.845126, 65.925859], - [-18.845083, 65.925145], - [-18.845028, 65.92425], - [-18.844989, 65.923605], - [-18.844955, 65.923041], - [-18.844907, 65.922258], - [-18.844853, 65.921366], - [-18.844831, 65.921008], - [-18.844807, 65.920621], - [-18.844803, 65.920547], - [-18.844734, 65.920375], - [-18.844629, 65.920119], - [-18.844536, 65.919888], - [-18.844444, 65.919662], - [-18.844332, 65.919385], - [-18.844271, 65.919235], - [-18.844281, 65.919156], - [-18.844358, 65.918553], - [-18.844484, 65.917567], - [-18.84454, 65.917125], - [-18.844574, 65.916857], - [-18.844736, 65.915602], - [-18.844951, 65.915189], - [-18.845097, 65.914908], - [-18.84517, 65.914768], - [-18.846349, 65.913798], - [-18.847072, 65.913203], - [-18.847251, 65.913055], - [-18.847557, 65.912804], - [-18.848289, 65.912201], - [-18.848656, 65.911899], - [-18.848816, 65.91178], - [-18.851223, 65.909989], - [-18.852007, 65.909344], - [-18.853196, 65.908365], - [-18.854018, 65.907689], - [-18.854314, 65.907445], - [-18.854705, 65.907058], - [-18.855161, 65.906607], - [-18.855979, 65.905797], - [-18.856253, 65.905527], - [-18.856988, 65.904819], - [-18.857391, 65.904431], - [-18.857483, 65.903715], - [-18.857524, 65.903398], - [-18.857539, 65.903278], - [-18.857181, 65.9025], - [-18.856875, 65.901837], - [-18.85594, 65.901207], - [-18.855743, 65.901146], - [-18.855691, 65.90113], - [-18.85452, 65.900775], - [-18.853384, 65.90043], - [-18.850951, 65.899947], - [-18.84969, 65.899696], - [-18.847502, 65.89884], - [-18.846079, 65.89773], - [-18.845206, 65.896847], - [-18.845115, 65.896755], - [-18.844733, 65.895917], - [-18.844585, 65.895592], - [-18.845249, 65.895459], - [-18.845916, 65.895325], - [-18.846074, 65.895293], - [-18.846812, 65.895143], - [-18.847773, 65.894948], - [-18.848658, 65.894769], - [-18.849426, 65.894613], - [-18.850902, 65.89415], - [-18.852579, 65.893625], - [-18.853448, 65.893305], - [-18.855729, 65.892462], - [-18.856577, 65.892149], - [-18.856748, 65.892085], - [-18.858544, 65.891615], - [-18.860544, 65.891091], - [-18.860596, 65.891073], - [-18.861119, 65.890897], - [-18.861234, 65.890858], - [-18.861475, 65.890777], - [-18.862278, 65.890506], - [-18.862857, 65.890311], - [-18.864183, 65.889546], - [-18.864504, 65.889361], - [-18.86573, 65.88882], - [-18.866241, 65.888594], - [-18.867716, 65.888048], - [-18.867853, 65.887998], - [-18.867913, 65.887976], - [-18.86806, 65.887954], - [-18.868526, 65.887887], - [-18.869395, 65.887761], - [-18.869565, 65.887713], - [-18.87014, 65.887552], - [-18.870411, 65.887476], - [-18.870535, 65.887334], - [-18.87087, 65.886951], - [-18.871124, 65.886661], - [-18.87138, 65.886369], - [-18.871567, 65.886156], - [-18.871746, 65.885967], - [-18.872126, 65.885567], - [-18.872669, 65.884995], - [-18.87317, 65.884467], - [-18.87327, 65.884351], - [-18.873534, 65.884037], - [-18.874056, 65.883421], - [-18.874349, 65.883075], - [-18.874503, 65.882893], - [-18.875192, 65.882316], - [-18.875457, 65.882094], - [-18.875843, 65.881996], - [-18.877059, 65.881688], - [-18.877458, 65.881601], - [-18.878451, 65.881384], - [-18.87911, 65.881241], - [-18.879454, 65.881166], - [-18.879987, 65.880988], - [-18.880576, 65.880792], - [-18.881176, 65.880592], - [-18.88155, 65.880468], - [-18.881997, 65.880326], - [-18.884877, 65.879413], - [-18.885635, 65.879308], - [-18.886991, 65.879121], - [-18.887793, 65.879111], - [-18.889001, 65.879095], - [-18.890936, 65.879071], - [-18.891019, 65.87907], - [-18.891708, 65.879126], - [-18.892917, 65.879224], - [-18.893113, 65.879239], - [-18.893875, 65.879301], - [-18.895101, 65.879558], - [-18.895839, 65.879712], - [-18.896392, 65.879827], - [-18.897309, 65.879039], - [-18.898332, 65.878475], - [-18.900488, 65.877671], - [-18.903135, 65.877036], - [-18.905176, 65.876547], - [-18.905551, 65.876457], - [-18.905652, 65.87645], - [-18.906273, 65.876404], - [-18.906961, 65.876353], - [-18.907335, 65.876325], - [-18.907918, 65.876282], - [-18.908232, 65.876259], - [-18.908538, 65.876256], - [-18.909198, 65.876251], - [-18.910342, 65.876241], - [-18.911631, 65.87623], - [-18.913017, 65.876223], - [-18.913884, 65.876219], - [-18.914618, 65.876332], - [-18.915151, 65.876415], - [-18.915745, 65.876507], - [-18.916304, 65.876593], - [-18.916373, 65.87661], - [-18.917138, 65.876797], - [-18.918315, 65.877085], - [-18.918712, 65.877182], - [-18.919362, 65.877515], - [-18.920167, 65.877928], - [-18.920578, 65.878169], - [-18.921065, 65.878453], - [-18.926133, 65.878857], - [-18.92688, 65.878917], - [-18.930596, 65.879491], - [-18.932402, 65.879921], - [-18.93516, 65.880579], - [-18.937606, 65.88136], - [-18.939415, 65.880957], - [-18.940858, 65.880667], - [-18.942761, 65.880285], - [-18.943708, 65.880095], - [-18.944127, 65.88001], - [-18.944214, 65.879993], - [-18.945948, 65.879644], - [-18.947183, 65.879393], - [-18.949023, 65.879019], - [-18.950091, 65.878801], - [-18.950396, 65.878809], - [-18.952182, 65.878853], - [-18.953442, 65.878883], - [-18.953951, 65.878896], - [-18.955752, 65.87924], - [-18.956285, 65.879119], - [-18.95681, 65.878664], - [-18.957148, 65.878371], - [-18.957463, 65.878098], - [-18.958107, 65.87741], - [-18.958474, 65.877016], - [-18.959633, 65.875775], - [-18.960738, 65.874559], - [-18.961408, 65.873821], - [-18.961457, 65.873786], - [-18.962726, 65.872872], - [-18.963071, 65.872625], - [-18.963923, 65.872257], - [-18.965799, 65.871446], - [-18.968426, 65.870312], - [-18.968765, 65.870126], - [-18.970216, 65.869334], - [-18.971483, 65.868642], - [-18.973711, 65.866886], - [-18.974289, 65.866338], - [-18.974811, 65.865842], - [-18.975555, 65.865136], - [-18.9758, 65.864904], - [-18.976215, 65.864441], - [-18.976817, 65.863771], - [-18.977517, 65.862992], - [-18.978311, 65.861528], - [-18.979307, 65.859583], - [-18.97973, 65.858756], - [-18.980847, 65.856505], - [-18.980841, 65.855254], - [-18.980879, 65.853738], - [-18.980883, 65.853595], - [-18.980891, 65.853288], - [-18.980918, 65.852443], - [-18.980928, 65.852144], - [-18.980842, 65.851642], - [-18.980689, 65.850759], - [-18.980615, 65.850328], - [-18.98057, 65.850066], - [-18.980886, 65.849372], - [-18.981011, 65.849099], - [-18.980832, 65.84871], - [-18.98067, 65.848359], - [-18.980554, 65.848106], - [-18.980476, 65.847938], - [-18.980339, 65.847653], - [-18.979758, 65.846442], - [-18.980266, 65.845957], - [-18.981094, 65.845358], - [-18.983198, 65.843836], - [-18.983577, 65.843398], - [-18.984174, 65.842705], - [-18.984611, 65.841792], - [-18.984711, 65.841386], - [-18.984866, 65.84076], - [-18.984917, 65.840556], - [-18.984731, 65.839386], - [-18.984602, 65.838574], - [-18.984488, 65.838303], - [-18.984144, 65.837487], - [-18.984041, 65.837242], - [-18.983679, 65.836381], - [-18.983207, 65.836044], - [-18.98261, 65.835618], - [-18.982246, 65.835358], - [-18.981085, 65.834859], - [-18.980782, 65.834729], - [-18.980301, 65.834608], - [-18.979129, 65.834312], - [-18.978634, 65.834188], - [-18.977972, 65.834004], - [-18.973898, 65.832874], - [-18.972967, 65.832616], - [-18.969504, 65.831599], - [-18.96843, 65.831284], - [-18.967108, 65.830845], - [-18.965279, 65.830237], - [-18.965116, 65.830167], - [-18.962449, 65.82902], - [-18.962152, 65.828892], - [-18.961991, 65.828758], - [-18.961115, 65.828029], - [-18.959608, 65.826773], - [-18.958228, 65.825862], - [-18.956983, 65.825039], - [-18.95652, 65.824734], - [-18.95604, 65.824417], - [-18.955598, 65.824108], - [-18.955186, 65.823821], - [-18.954596, 65.823409], - [-18.953778, 65.822838], - [-18.953027, 65.822313], - [-18.95174, 65.82103], - [-18.950853, 65.820146], - [-18.950417, 65.819575], - [-18.95004, 65.81908], - [-18.949106, 65.817857], - [-18.946814, 65.81813], - [-18.943746, 65.818496], - [-18.942422, 65.818654], - [-18.938665, 65.818689], - [-18.933959, 65.81822], - [-18.933571, 65.818161], - [-18.930072, 65.817632], - [-18.928911, 65.817457], - [-18.92659, 65.816979], - [-18.923013, 65.816243], - [-18.921983, 65.815992], - [-18.920642, 65.815665], - [-18.919303, 65.815337], - [-18.919026, 65.81527], - [-18.915555, 65.814357], - [-18.915485, 65.813287], - [-18.914735, 65.81225], - [-18.913715, 65.811339], - [-18.912738, 65.810524], - [-18.911333, 65.809863], - [-18.909313, 65.809066], - [-18.90676, 65.808411], - [-18.905525, 65.808172], - [-18.904503, 65.807974], - [-18.903892, 65.807864], - [-18.902293, 65.807575], - [-18.901421, 65.807418], - [-18.900378, 65.806987], - [-18.899836, 65.806764], - [-18.899707, 65.806711], - [-18.899396, 65.806508], - [-18.899007, 65.806254], - [-18.898618, 65.806001], - [-18.897652, 65.805136], - [-18.897318, 65.804838], - [-18.896627, 65.80422], - [-18.895146, 65.802575], - [-18.894938, 65.802577], - [-18.889724, 65.802618], - [-18.885214, 65.802212], - [-18.883956, 65.801994], - [-18.88281, 65.801796], - [-18.882076, 65.801616], - [-18.879548, 65.800995], - [-18.878469, 65.80073], - [-18.875476, 65.799806], - [-18.873795, 65.799287], - [-18.871854, 65.79848], - [-18.870975, 65.798114], - [-18.869856, 65.797825], - [-18.868811, 65.797554], - [-18.867048, 65.797097], - [-18.865809, 65.796332], - [-18.864903, 65.795604], - [-18.864685, 65.795429], - [-18.862648, 65.794866], - [-18.861843, 65.794731], - [-18.859155, 65.794283], - [-18.857179, 65.794165], - [-18.854905, 65.794031], - [-18.853453, 65.793854], - [-18.851971, 65.793674], - [-18.850632, 65.793511], - [-18.849307, 65.79335], - [-18.846655, 65.793027], - [-18.841306, 65.793034], - [-18.839283, 65.793037], - [-18.837028, 65.793039], - [-18.836914, 65.79304], - [-18.836593, 65.792485], - [-18.836057, 65.791559], - [-18.835822, 65.791153], - [-18.835104, 65.790476], - [-18.834326, 65.789742], - [-18.832719, 65.788755], - [-18.832296, 65.788495], - [-18.831732, 65.788306], - [-18.828325, 65.787166], - [-18.828194, 65.787122], - [-18.824049, 65.78625], - [-18.820357, 65.785578], - [-18.819807, 65.785319], - [-18.818905, 65.784894], - [-18.818794, 65.784766], - [-18.818347, 65.784245], - [-18.817957, 65.78379], - [-18.818242, 65.782886], - [-18.81835, 65.782759], - [-18.818835, 65.78219], - [-18.819271, 65.781677], - [-18.81934, 65.781597], - [-18.820791, 65.780442], - [-18.822548, 65.77943], - [-18.823363, 65.778961], - [-18.823459, 65.778438], - [-18.823247, 65.778257], - [-18.821954, 65.777155], - [-18.82109, 65.77662], - [-18.820388, 65.776186], - [-18.81948, 65.775623], - [-18.819368, 65.775569], - [-18.818329, 65.775069], - [-18.817867, 65.774846], - [-18.81733, 65.774588], - [-18.816457, 65.774447], - [-18.816306, 65.774444], - [-18.812966, 65.774373], - [-18.811781, 65.774348], - [-18.810161, 65.774325], - [-18.809598, 65.774317], - [-18.809057, 65.773945], - [-18.807882, 65.772693], - [-18.807482, 65.772266], - [-18.806169, 65.771381], - [-18.806108, 65.771343], - [-18.806024, 65.771292], - [-18.803453, 65.76973], - [-18.803234, 65.769596], - [-18.801804, 65.768972], - [-18.801012, 65.768626], - [-18.800374, 65.768347], - [-18.799974, 65.768146], - [-18.798687, 65.767497], - [-18.798279, 65.767291], - [-18.797756, 65.766915], - [-18.797622, 65.766819], - [-18.797303, 65.766589], - [-18.797101, 65.766444], - [-18.797004, 65.766374], - [-18.796783, 65.765857], - [-18.796527, 65.765256], - [-18.796569, 65.764155], - [-18.796537, 65.76378], - [-18.7965, 65.76335], - [-18.796465, 65.762935], - [-18.796262, 65.76258], - [-18.796083, 65.762268], - [-18.795786, 65.761749], - [-18.795712, 65.761648], - [-18.795462, 65.761307], - [-18.794947, 65.760604], - [-18.796593, 65.760165], - [-18.797304, 65.759975], - [-18.798141, 65.759752], - [-18.798284, 65.759708], - [-18.799098, 65.759461], - [-18.800397, 65.759066], - [-18.801658, 65.758683], - [-18.802963, 65.758286], - [-18.80376, 65.758044], - [-18.804656, 65.757772], - [-18.804811, 65.757721], - [-18.805952, 65.757352], - [-18.807245, 65.756934], - [-18.809159, 65.756314], - [-18.810015, 65.755993], - [-18.813504, 65.754686], - [-18.814881, 65.75417], - [-18.815111, 65.754084], - [-18.815876, 65.753787], - [-18.816685, 65.753475], - [-18.821132, 65.751754], - [-18.824575, 65.750391], - [-18.824927, 65.749769], - [-18.824, 65.749539], - [-18.821857, 65.749122], - [-18.820202, 65.748801], - [-18.817368, 65.748167], - [-18.816758, 65.747932], - [-18.816182, 65.747711], - [-18.815404, 65.747261], - [-18.815217, 65.746877], - [-18.815375, 65.746492], - [-18.815916, 65.746036], - [-18.816573, 65.745734], - [-18.818164, 65.745085], - [-18.818952, 65.744653], - [-18.819256, 65.744457], - [-18.820035, 65.743956], - [-18.820345, 65.743756], - [-18.821131, 65.743066], - [-18.822378, 65.741972], - [-18.822407, 65.741948], - [-18.822786, 65.741629], - [-18.823402, 65.741111], - [-18.824319, 65.740341], - [-18.824371, 65.740297], - [-18.825467, 65.739577], - [-18.827188, 65.738641], - [-18.827862, 65.738235], - [-18.829, 65.737549], - [-18.829155, 65.737456], - [-18.828893, 65.736692], - [-18.827842, 65.736275], - [-18.826818, 65.735972], - [-18.825485, 65.735579], - [-18.825297, 65.735523], - [-18.824995, 65.735427], - [-18.823804, 65.735048], - [-18.822651, 65.734681], - [-18.82032, 65.733977], - [-18.817953, 65.733346], - [-18.816624, 65.732991], - [-18.812774, 65.731992], - [-18.811628, 65.731416], - [-18.810368, 65.730635], - [-18.810079, 65.730455], - [-18.809518, 65.730008], - [-18.809163, 65.729727], - [-18.808139, 65.728997], - [-18.807983, 65.728919], - [-18.807264, 65.728559], - [-18.806561, 65.728204], - [-18.805919, 65.727726], - [-18.805656, 65.727531], - [-18.805438, 65.727342], - [-18.804706, 65.726707], - [-18.80424, 65.726303], - [-18.803982, 65.725495], - [-18.804176, 65.724967], - [-18.804406, 65.724339], - [-18.804538, 65.724178], - [-18.80481, 65.723846], - [-18.805223, 65.723342], - [-18.80552, 65.722979], - [-18.805618, 65.722858], - [-18.805749, 65.722569], - [-18.805919, 65.722193], - [-18.806115, 65.721759], - [-18.806336, 65.721269], - [-18.806421, 65.721082], - [-18.806549, 65.719564], - [-18.80651, 65.719271], - [-18.806349, 65.718085], - [-18.805573, 65.716291], - [-18.805532, 65.716196], - [-18.805134, 65.715418], - [-18.804699, 65.714567], - [-18.804508, 65.714192], - [-18.803631, 65.713168], - [-18.803144, 65.712599], - [-18.802779, 65.712171], - [-18.802532, 65.711884], - [-18.801438, 65.710467], - [-18.800087, 65.708719], - [-18.799977, 65.70857], - [-18.799373, 65.707756], - [-18.798889, 65.707104], - [-18.79841, 65.706459], - [-18.798042, 65.705962], - [-18.797925, 65.705631], - [-18.79778, 65.705221], - [-18.796597, 65.703867], - [-18.79614, 65.703345], - [-18.796, 65.703184], - [-18.795302, 65.702535], - [-18.794553, 65.701839], - [-18.79429, 65.701594], - [-18.791392, 65.699202], - [-18.791148, 65.699001], - [-18.789423, 65.69759], - [-18.788947, 65.697251], - [-18.786662, 65.695627], - [-18.784586, 65.694594], - [-18.784496, 65.694549], - [-18.784164, 65.694384], - [-18.782671, 65.69385], - [-18.781427, 65.693405], - [-18.781229, 65.693343], - [-18.780769, 65.693198], - [-18.780232, 65.69303], - [-18.77966, 65.69285], - [-18.779575, 65.692823], - [-18.779598, 65.692796], - [-18.779901, 65.692446], - [-18.780197, 65.692104], - [-18.780641, 65.691591], - [-18.780695, 65.691528], - [-18.7811, 65.690734], - [-18.781218, 65.690502], - [-18.781281, 65.689773], - [-18.781357, 65.68888], - [-18.781583, 65.688444], - [-18.782144, 65.687358], - [-18.782843, 65.686806], - [-18.783243, 65.686491], - [-18.783436, 65.686339], - [-18.783906, 65.686131], - [-18.784248, 65.685982], - [-18.784611, 65.685823], - [-18.785028, 65.68564], - [-18.785113, 65.685637], - [-18.786148, 65.685596], - [-18.786809, 65.68557], - [-18.787553, 65.685541], - [-18.788089, 65.68556], - [-18.788732, 65.685582], - [-18.791003, 65.685661], - [-18.792028, 65.685696], - [-18.796115, 65.685259], - [-18.798349, 65.684727], - [-18.799839, 65.683937], - [-18.800623, 65.683123], - [-18.801039, 65.682691], - [-18.802156, 65.681691], - [-18.802451, 65.681427], - [-18.803171, 65.680782], - [-18.803182, 65.680749], - [-18.803263, 65.680505], - [-18.803436, 65.679988], - [-18.803554, 65.679635], - [-18.803761, 65.67903], - [-18.804451, 65.678982], - [-18.805241, 65.678927], - [-18.805705, 65.678894], - [-18.806128, 65.678865], - [-18.806524, 65.678837], - [-18.807262, 65.678785], - [-18.807499, 65.678769], - [-18.807924, 65.678764], - [-18.80864, 65.678755], - [-18.809027, 65.678751], - [-18.811338, 65.678723], - [-18.8144, 65.678687], - [-18.814687, 65.678693], - [-18.816919, 65.678734], - [-18.818144, 65.678757], - [-18.81948, 65.678782], - [-18.819643, 65.678785], - [-18.820619, 65.678745], - [-18.822531, 65.678665], - [-18.822926, 65.678649], - [-18.823533, 65.678624], - [-18.824061, 65.678602], - [-18.82474, 65.678574], - [-18.825592, 65.678538], - [-18.826122, 65.678517], - [-18.826254, 65.678503], - [-18.82657, 65.678471], - [-18.827074, 65.67842], - [-18.827822, 65.678344], - [-18.829246, 65.6782], - [-18.830719, 65.678051], - [-18.831198, 65.678002], - [-18.832442, 65.677954], - [-18.834601, 65.67787], - [-18.836813, 65.677586], - [-18.837033, 65.677515], - [-18.839624, 65.676678], - [-18.842666, 65.675616], - [-18.845617, 65.674767], - [-18.846253, 65.674584], - [-18.846567, 65.674502], - [-18.846766, 65.674462], - [-18.847527, 65.674293], - [-18.847688, 65.674257], - [-18.847864, 65.674224], - [-18.84864, 65.674078], - [-18.849149, 65.673959], - [-18.849381, 65.673904], - [-18.850062, 65.673693], - [-18.850343, 65.673598], - [-18.8505, 65.673544], - [-18.85145, 65.673272], - [-18.853298, 65.672743], - [-18.85602, 65.672011], - [-18.856973, 65.671754], - [-18.857437, 65.671629], - [-18.857997, 65.671401], - [-18.858628, 65.671145], - [-18.858738, 65.6711], - [-18.859187, 65.670917], - [-18.859688, 65.670713], - [-18.860198, 65.670506], - [-18.860661, 65.670318], - [-18.861165, 65.670113], - [-18.861512, 65.669972], - [-18.863354, 65.668771], - [-18.863477, 65.668691], - [-18.863424, 65.668013], - [-18.862641, 65.666897], - [-18.860747, 65.66466], - [-18.860592, 65.664466], - [-18.85993, 65.663636], - [-18.859475, 65.663067], - [-18.85852, 65.661871], - [-18.85827, 65.661557], - [-18.856777, 65.659294], - [-18.856424, 65.658757], - [-18.855096, 65.656302], - [-18.855077, 65.656271], - [-18.854675, 65.65562], - [-18.854435, 65.655129], - [-18.854354, 65.654963], - [-18.853973, 65.654432], - [-18.853741, 65.654109], - [-18.853597, 65.653899], - [-18.853255, 65.653395], - [-18.852596, 65.652428], - [-18.852382, 65.652113], - [-18.852141, 65.651463], - [-18.851667, 65.650185], - [-18.851476, 65.649781], - [-18.850551, 65.647824], - [-18.849372, 65.646228], - [-18.849251, 65.646068], - [-18.848584, 65.645179], - [-18.846653, 65.643437], - [-18.8459, 65.642726], - [-18.845538, 65.642384], - [-18.842965, 65.640475], - [-18.840071, 65.638494], - [-18.839623, 65.637315], - [-18.839427, 65.635733], - [-18.839239, 65.634145], - [-18.839106, 65.633021], - [-18.839773, 65.63135], - [-18.839796, 65.631294], - [-18.840122, 65.630087], - [-18.840269, 65.629541], - [-18.84039, 65.629444], - [-18.840559, 65.629308], - [-18.841206, 65.628788], - [-18.841449, 65.628657], - [-18.841556, 65.6286], - [-18.842001, 65.628362], - [-18.842836, 65.627916], - [-18.843834, 65.627381], - [-18.844042, 65.62726], - [-18.844899, 65.62676], - [-18.846703, 65.625707], - [-18.847749, 65.62461], - [-18.847943, 65.624407], - [-18.848018, 65.624327], - [-18.848206, 65.623383], - [-18.847829, 65.622655], - [-18.847096, 65.622284], - [-18.844852, 65.621688], - [-18.843378, 65.621036], - [-18.841825, 65.620021], - [-18.841762, 65.619752], - [-18.841584, 65.61898], - [-18.841997, 65.617949], - [-18.842951, 65.61697], - [-18.843481, 65.61678], - [-18.844025, 65.616585], - [-18.844526, 65.616405], - [-18.844613, 65.616385], - [-18.847643, 65.615682], - [-18.848784, 65.615179], - [-18.849229, 65.614983], - [-18.851003, 65.614154], - [-18.854337, 65.612596], - [-18.854629, 65.612465], - [-18.855116, 65.612247], - [-18.855574, 65.612041], - [-18.856421, 65.61166], - [-18.857568, 65.611145], - [-18.858358, 65.61079], - [-18.859695, 65.610189], - [-18.86193, 65.609184], - [-18.865639, 65.607527], - [-18.866973, 65.606931], - [-18.867643, 65.606632], - [-18.870476, 65.605366], - [-18.872953, 65.604259], - [-18.873823, 65.60387], - [-18.874034, 65.603771], - [-18.874863, 65.603383], - [-18.875558, 65.603057], - [-18.875937, 65.60288], - [-18.876385, 65.60267], - [-18.876756, 65.602497], - [-18.877119, 65.602327], - [-18.877575, 65.602113], - [-18.878157, 65.601836], - [-18.878689, 65.601584], - [-18.879223, 65.60133], - [-18.879611, 65.601146], - [-18.880034, 65.600945], - [-18.880501, 65.600722], - [-18.881956, 65.600464], - [-18.885698, 65.600241], - [-18.886351, 65.600074], - [-18.886166, 65.599639], - [-18.885985, 65.599212], - [-18.885009, 65.5978], - [-18.884884, 65.597666], - [-18.884268, 65.597006], - [-18.883613, 65.596306], - [-18.883235, 65.5959], - [-18.883002, 65.595651], - [-18.882812, 65.59543], - [-18.88236, 65.594902], - [-18.881966, 65.594442], - [-18.881906, 65.594373], - [-18.881715, 65.593823], - [-18.881551, 65.593352], - [-18.881465, 65.593103], - [-18.881587, 65.592878], - [-18.881783, 65.59252], - [-18.881977, 65.592163], - [-18.882449, 65.591912], - [-18.883259, 65.591481], - [-18.884233, 65.590962], - [-18.884371, 65.590888], - [-18.884925, 65.59066], - [-18.885455, 65.590443], - [-18.886176, 65.590146], - [-18.886248, 65.590125], - [-18.88703, 65.58989], - [-18.8882, 65.58954], - [-18.889308, 65.58933], - [-18.890181, 65.589164], - [-18.891616, 65.588964], - [-18.893245, 65.588737], - [-18.89371, 65.588672], - [-18.894496, 65.588389], - [-18.894413, 65.588072], - [-18.893952, 65.587711], - [-18.893593, 65.587429], - [-18.893012, 65.586519], - [-18.891285, 65.584961], - [-18.890258, 65.58393], - [-18.889874, 65.583543], - [-18.889293, 65.582464], - [-18.889116, 65.582134], - [-18.889131, 65.581949], - [-18.889201, 65.581089], - [-18.889207, 65.581007], - [-18.889564, 65.580434], - [-18.889711, 65.580198], - [-18.889959, 65.5798], - [-18.890174, 65.578494], - [-18.890198, 65.578425], - [-18.89087, 65.576511], - [-18.890883, 65.576474], - [-18.891309, 65.574931], - [-18.891653, 65.573687], - [-18.892247, 65.572372], - [-18.892741, 65.57128], - [-18.890924, 65.571144], - [-18.887573, 65.570894], - [-18.887169, 65.570864], - [-18.885464, 65.570773], - [-18.883973, 65.570694], - [-18.882897, 65.570636], - [-18.879862, 65.570254], - [-18.878743, 65.570127], - [-18.87697, 65.569924], - [-18.873563, 65.570166], - [-18.871688, 65.570251], - [-18.8697, 65.57034], - [-18.869461, 65.570351], - [-18.865845, 65.5703], - [-18.863536, 65.569977], - [-18.862068, 65.569376], - [-18.861635, 65.568801], - [-18.860489, 65.567275], - [-18.859787, 65.566023], - [-18.859369, 65.565277], - [-18.858414, 65.564103], - [-18.856733, 65.563258], - [-18.854545, 65.562888], - [-18.853752, 65.562842], - [-18.85275, 65.562784], - [-18.852338, 65.56276], - [-18.850078, 65.562663], - [-18.848379, 65.56259], - [-18.84815, 65.56258], - [-18.845356, 65.562541], - [-18.843719, 65.562517], - [-18.842094, 65.562306], - [-18.84037, 65.562083], - [-18.83776, 65.561176], - [-18.834724, 65.559778], - [-18.83193, 65.558288], - [-18.831758, 65.558166], - [-18.831269, 65.557819], - [-18.832008, 65.555416], - [-18.832069, 65.55522], - [-18.832102, 65.554998], - [-18.83231, 65.553614], - [-18.83233, 65.553483], - [-18.832219, 65.552292], - [-18.832145, 65.551498], - [-18.831742, 65.550482], - [-18.831566, 65.550039], - [-18.831368, 65.549634], - [-18.830909, 65.549238], - [-18.830406, 65.548957], - [-18.830197, 65.54884], - [-18.828971, 65.548457], - [-18.828571, 65.548323], - [-18.827805, 65.548027], - [-18.827654, 65.547934], - [-18.827313, 65.547722], - [-18.826675, 65.547555], - [-18.826269, 65.547464], - [-18.824609, 65.546771], - [-18.824507, 65.546741], - [-18.824139, 65.546585], - [-18.823473, 65.546369], - [-18.822965, 65.546245], - [-18.822292, 65.546081], - [-18.822133, 65.546018], - [-18.821745, 65.545818], - [-18.821236, 65.545554], - [-18.82015, 65.545381], - [-18.81967, 65.54533], - [-18.819366, 65.545305], - [-18.818977, 65.545272], - [-18.817758, 65.545218], - [-18.816965, 65.545168], - [-18.816544, 65.545148], - [-18.816359, 65.54514], - [-18.815841, 65.54512], - [-18.814941, 65.545178], - [-18.814359, 65.545334], - [-18.813849, 65.545416], - [-18.813775, 65.545414], - [-18.812998, 65.545392], - [-18.811979, 65.545249], - [-18.811451, 65.545192], - [-18.811368, 65.545189], - [-18.810851, 65.545169], - [-18.810403, 65.545184], - [-18.808776, 65.545324], - [-18.808123, 65.545389], - [-18.807402, 65.545504], - [-18.807036, 65.545563], - [-18.806157, 65.545792], - [-18.80566, 65.545909], - [-18.80542, 65.545981], - [-18.804855, 65.546108], - [-18.804402, 65.546209], - [-18.803769, 65.54637], - [-18.803246, 65.546433], - [-18.803008, 65.546463], - [-18.802033, 65.546587], - [-18.80122, 65.546728], - [-18.800641, 65.546811], - [-18.799785, 65.546925], - [-18.799386, 65.546977], - [-18.798508, 65.547095], - [-18.797907, 65.547158], - [-18.797486, 65.547205], - [-18.797371, 65.547218], - [-18.796423, 65.547387], - [-18.795798, 65.547499], - [-18.795215, 65.54758], - [-18.794545, 65.547718], - [-18.793148, 65.548006], - [-18.792982, 65.548037], - [-18.792582, 65.548114], - [-18.792236, 65.548184], - [-18.791193, 65.548326], - [-18.791064, 65.548317], - [-18.79034, 65.548265], - [-18.789743, 65.548177], - [-18.78953, 65.548136], - [-18.788237, 65.547883], - [-18.787983, 65.547819], - [-18.787639, 65.547731], - [-18.787097, 65.547631], - [-18.786174, 65.547483], - [-18.785866, 65.547447], - [-18.785142, 65.547364], - [-18.784523, 65.547279], - [-18.782987, 65.54704], - [-18.78261, 65.546982], - [-18.782081, 65.546882], - [-18.780884, 65.546622], - [-18.780033, 65.546461], - [-18.779347, 65.546335], - [-18.777776, 65.545964], - [-18.777296, 65.545899], - [-18.776728, 65.545803], - [-18.775502, 65.545603], - [-18.775368, 65.545578], - [-18.774856, 65.545481], - [-18.774279, 65.545384], - [-18.773276, 65.545114], - [-18.772372, 65.544816], - [-18.77203, 65.544383], - [-18.771722, 65.544176], - [-18.771447, 65.54399], - [-18.771205, 65.543602], - [-18.771233, 65.543274], - [-18.771576, 65.54288], - [-18.771611, 65.542468], - [-18.771637, 65.542169], - [-18.771935, 65.541903], - [-18.772332, 65.541666], - [-18.772237, 65.541579], - [-18.771718, 65.541216], - [-18.77161, 65.540858], - [-18.771909, 65.540577], - [-18.77215, 65.540508], - [-18.772719, 65.540346], - [-18.773163, 65.539996], - [-18.773604, 65.539522], - [-18.771426, 65.539769], - [-18.771053, 65.539798], - [-18.770833, 65.539816], - [-18.770109, 65.539924], - [-18.769057, 65.540275], - [-18.768524, 65.540406], - [-18.767827, 65.540474], - [-18.767281, 65.540437], - [-18.766644, 65.540229], - [-18.766417, 65.540051], - [-18.766131, 65.539851], - [-18.765491, 65.53967], - [-18.764033, 65.539568], - [-18.763343, 65.539534], - [-18.761697, 65.539525], - [-18.761099, 65.539522], - [-18.760454, 65.539519], - [-18.759313, 65.539537], - [-18.758561, 65.539497], - [-18.758248, 65.539459], - [-18.757633, 65.539407], - [-18.75747, 65.539395], - [-18.755619, 65.539409], - [-18.754871, 65.539353], - [-18.75414, 65.539332], - [-18.753526, 65.53928], - [-18.753048, 65.539241], - [-18.752459, 65.539151], - [-18.750956, 65.5388], - [-18.750631, 65.538695], - [-18.749989, 65.538443], - [-18.74878, 65.53784], - [-18.748196, 65.537676], - [-18.747023, 65.537373], - [-18.74646, 65.537123], - [-18.746316, 65.53704], - [-18.745858, 65.53687], - [-18.745568, 65.536805], - [-18.745053, 65.536689], - [-18.743942, 65.536544], - [-18.743521, 65.536361], - [-18.742742, 65.535999], - [-18.741656, 65.535785], - [-18.741102, 65.535682], - [-18.740672, 65.535526], - [-18.740384, 65.535422], - [-18.740344, 65.535384], - [-18.739409, 65.535117], - [-18.738904, 65.534995], - [-18.737808, 65.534807], - [-18.737487, 65.534752], - [-18.736835, 65.534633], - [-18.736258, 65.534545], - [-18.73479, 65.534327], - [-18.734572, 65.534295], - [-18.734001, 65.534183], - [-18.733486, 65.534061], - [-18.732797, 65.533741], - [-18.732241, 65.533434], - [-18.732152, 65.533391], - [-18.731952, 65.533321], - [-18.731694, 65.53323], - [-18.73069, 65.533069], - [-18.729879, 65.532914], - [-18.729577, 65.532828], - [-18.729183, 65.532627], - [-18.728999, 65.532522], - [-18.728397, 65.532179], - [-18.727749, 65.53189], - [-18.727388, 65.531691], - [-18.726917, 65.531444], - [-18.72675, 65.531357], - [-18.726073, 65.530926], - [-18.725879, 65.530772], - [-18.72579, 65.530701], - [-18.725334, 65.530267], - [-18.725056, 65.529852], - [-18.724551, 65.529709], - [-18.723992, 65.52954], - [-18.723721, 65.529458], - [-18.723047, 65.529105], - [-18.722948, 65.529054], - [-18.722604, 65.528854], - [-18.721951, 65.528477], - [-18.721893, 65.528447], - [-18.721226, 65.5281], - [-18.720841, 65.527878], - [-18.720114, 65.52748], - [-18.719726, 65.52719], - [-18.719672, 65.527165], - [-18.719347, 65.527015], - [-18.718349, 65.526428], - [-18.718116, 65.526281], - [-18.717913, 65.526068], - [-18.717526, 65.525646], - [-18.717497, 65.525586], - [-18.717263, 65.525105], - [-18.71715, 65.524895], - [-18.716892, 65.524646], - [-18.716765, 65.524523], - [-18.716077, 65.524098], - [-18.715819, 65.523925], - [-18.714921, 65.523404], - [-18.714709, 65.523281], - [-18.71458, 65.523179], - [-18.714304, 65.522961], - [-18.713917, 65.522639], - [-18.713746, 65.522497], - [-18.713228, 65.522132], - [-18.712905, 65.521919], - [-18.712069, 65.521486], - [-18.711629, 65.521009], - [-18.710629, 65.519924], - [-18.710124, 65.519376], - [-18.709445, 65.518639], - [-18.709357, 65.518544], - [-18.707104, 65.515841], - [-18.706963, 65.515627], - [-18.706577, 65.515045], - [-18.706375, 65.51474], - [-18.706188, 65.514457], - [-18.706097, 65.514319], - [-18.705954, 65.514168], - [-18.705477, 65.513663], - [-18.70506, 65.513221], - [-18.704757, 65.5129], - [-18.704342, 65.51246], - [-18.704024, 65.512054], - [-18.70304, 65.510797], - [-18.702968, 65.510704], - [-18.702584, 65.509935], - [-18.702197, 65.509156], - [-18.702055, 65.50887], - [-18.70165, 65.507831], - [-18.701049, 65.506285], - [-18.700671, 65.505312], - [-18.700228, 65.504173], - [-18.69974, 65.502999], - [-18.699166, 65.501618], - [-18.698692, 65.49976], - [-18.699115, 65.498624], - [-18.69939, 65.498286], - [-18.699728, 65.497871], - [-18.700282, 65.497188], - [-18.700607, 65.496947], - [-18.701695, 65.496137], - [-18.702611, 65.495455], - [-18.7035, 65.494977], - [-18.705094, 65.494118], - [-18.706476, 65.493471], - [-18.707801, 65.492937], - [-18.708732, 65.492562], - [-18.710255, 65.492056], - [-18.713268, 65.491056], - [-18.71643, 65.490006], - [-18.719378, 65.48904], - [-18.721906, 65.488211], - [-18.726023, 65.486862], - [-18.728655, 65.485999], - [-18.729381, 65.485761], - [-18.731628, 65.48493], - [-18.736262, 65.483456], - [-18.737173, 65.483166], - [-18.738512, 65.482599], - [-18.740164, 65.481899], - [-18.741289, 65.481423], - [-18.742898, 65.480535], - [-18.743821, 65.480024], - [-18.745308, 65.479202], - [-18.745864, 65.478895], - [-18.746291, 65.478632], - [-18.747361, 65.477974], - [-18.747425, 65.477742], - [-18.747638, 65.476957], - [-18.747707, 65.476826], - [-18.748316, 65.47567], - [-18.748383, 65.475616], - [-18.749638, 65.47459], - [-18.749908, 65.473943], - [-18.749996, 65.47373], - [-18.749997, 65.473469], - [-18.750003, 65.472552], - [-18.750937, 65.471583], - [-18.751147, 65.471523], - [-18.752498, 65.471128], - [-18.753041, 65.470747], - [-18.753092, 65.470712], - [-18.753065, 65.470669], - [-18.752669, 65.47004], - [-18.752593, 65.469919], - [-18.751019, 65.469327], - [-18.750853, 65.469264], - [-18.749579, 65.468346], - [-18.749518, 65.468301], - [-18.749227, 65.46789], - [-18.74918, 65.467825], - [-18.749047, 65.467785], - [-18.748621, 65.467657], - [-18.748186, 65.467527], - [-18.747798, 65.467411], - [-18.747656, 65.467438], - [-18.747414, 65.467484], - [-18.746261, 65.467703], - [-18.745095, 65.467685], - [-18.744845, 65.467682], - [-18.74327, 65.467304], - [-18.741786, 65.466815], - [-18.741524, 65.466728], - [-18.739946, 65.46639], - [-18.737333, 65.466206], - [-18.737128, 65.466191], - [-18.735696, 65.465979], - [-18.735355, 65.465929], - [-18.734026, 65.46591], - [-18.73286, 65.466043], - [-18.732506, 65.466083], - [-18.731271, 65.466292], - [-18.730588, 65.466408], - [-18.730381, 65.466426], - [-18.72754, 65.466676], - [-18.724711, 65.466595], - [-18.723026, 65.466412], - [-18.721749, 65.465882], - [-18.721523, 65.465787], - [-18.720199, 65.46523], - [-18.718433, 65.464889], - [-18.716593, 65.464311], - [-18.714931, 65.463854], - [-18.714385, 65.463769], - [-18.712694, 65.463506], - [-18.71169, 65.463098], - [-18.711933, 65.462473], - [-18.712324, 65.461598], - [-18.712403, 65.461419], - [-18.713366, 65.460515], - [-18.713845, 65.460065], - [-18.714814, 65.458705], - [-18.714731, 65.458439], - [-18.714706, 65.45836], - [-18.714592, 65.457994], - [-18.71393, 65.456923], - [-18.713928, 65.455862], - [-18.714516, 65.454807], - [-18.7146, 65.454647], - [-18.714587, 65.454554], - [-18.714487, 65.453788], - [-18.714512, 65.45351], - [-18.714526, 65.453344], - [-18.714556, 65.453003], - [-18.714756, 65.452309], - [-18.715019, 65.451399], - [-18.715097, 65.451126], - [-18.714919, 65.450491], - [-18.714898, 65.450414], - [-18.714835, 65.450193], - [-18.714809, 65.4501], - [-18.714667, 65.449935], - [-18.714294, 65.449502], - [-18.714106, 65.449326], - [-18.713853, 65.44909], - [-18.712363, 65.447695], - [-18.711208, 65.446551], - [-18.710722, 65.446069], - [-18.709545, 65.445223], - [-18.708328, 65.444347], - [-18.707826, 65.443591], - [-18.70764, 65.44331], - [-18.707405, 65.442954], - [-18.707152, 65.442611], - [-18.707018, 65.442431], - [-18.70673, 65.44204], - [-18.706519, 65.441859], - [-18.706076, 65.441478], - [-18.705149, 65.44068], - [-18.705095, 65.44062], - [-18.70455, 65.440015], - [-18.704289, 65.439724], - [-18.704201, 65.439536], - [-18.703978, 65.43906], - [-18.703572, 65.438191], - [-18.703494, 65.438023], - [-18.702879, 65.436891], - [-18.702762, 65.436676], - [-18.702605, 65.436154], - [-18.702375, 65.435388], - [-18.702291, 65.435112], - [-18.702203, 65.43482], - [-18.702018, 65.434204], - [-18.701876, 65.433731], - [-18.701812, 65.433518], - [-18.701759, 65.43319], - [-18.701541, 65.431818], - [-18.701386, 65.430839], - [-18.701256, 65.429804], - [-18.701165, 65.429077], - [-18.701102, 65.427613], - [-18.701396, 65.427057], - [-18.701781, 65.426327], - [-18.70215, 65.425074], - [-18.702184, 65.424957], - [-18.702456, 65.424018], - [-18.702902, 65.423199], - [-18.70358, 65.421953], - [-18.704039, 65.421017], - [-18.70461, 65.419886], - [-18.705746, 65.418764], - [-18.706334, 65.417437], - [-18.706358, 65.417277], - [-18.706436, 65.416747], - [-18.706449, 65.416658], - [-18.706566, 65.415869], - [-18.706812, 65.415204], - [-18.707278, 65.41419], - [-18.707232, 65.413795], - [-18.707116, 65.412812], - [-18.707139, 65.411676], - [-18.707145, 65.411398], - [-18.707144, 65.411307], - [-18.707135, 65.410891], - [-18.707111, 65.409629], - [-18.707471, 65.40767], - [-18.70631, 65.40725], - [-18.704637, 65.406645], - [-18.703614, 65.406205], - [-18.702365, 65.405667], - [-18.702088, 65.405549], - [-18.701333, 65.405227], - [-18.698638, 65.404078], - [-18.698442, 65.403968], - [-18.697593, 65.403491], - [-18.695579, 65.402359], - [-18.694325, 65.401655], - [-18.692471, 65.400805], - [-18.691223, 65.400233], - [-18.690246, 65.399785], - [-18.690059, 65.399711], - [-18.686329, 65.398232], - [-18.683855, 65.39737], - [-18.683241, 65.397156], - [-18.68267, 65.396958], - [-18.682083, 65.396674], - [-18.680914, 65.396108], - [-18.679145, 65.395253], - [-18.67885, 65.39509], - [-18.677955, 65.394596], - [-18.67519, 65.39307], - [-18.674827, 65.392822], - [-18.671724, 65.390699], - [-18.669186, 65.388941], - [-18.666488, 65.387247], - [-18.666025, 65.386957], - [-18.662236, 65.384427], - [-18.660421, 65.383216], - [-18.657586, 65.381207], - [-18.655189, 65.379279], - [-18.654597, 65.378803], - [-18.654344, 65.378643], - [-18.650139, 65.375983], - [-18.649042, 65.375282], - [-18.647555, 65.374332], - [-18.645619, 65.372808], - [-18.642534, 65.370316], - [-18.641404, 65.369402], - [-18.638588, 65.367197], - [-18.637575, 65.366494], - [-18.634161, 65.364126], - [-18.633045, 65.363325], - [-18.631768, 65.362414], - [-18.628867, 65.360129], - [-18.628179, 65.359626], - [-18.626395, 65.358322], - [-18.623699, 65.356904], - [-18.620588, 65.355912], - [-18.614654, 65.354915], - [-18.610927, 65.354502], - [-18.610043, 65.354433], - [-18.606923, 65.354188], - [-18.604364, 65.353988], - [-18.601488, 65.353763], - [-18.596345, 65.35336], - [-18.591891, 65.353011], - [-18.589526, 65.352826], - [-18.585441, 65.352406], - [-18.5842, 65.352279], - [-18.583244, 65.352181], - [-18.58272, 65.352127], - [-18.582478, 65.352104], - [-18.581975, 65.352054], - [-18.577986, 65.351667], - [-18.574978, 65.351374], - [-18.565491, 65.350161], - [-18.559159, 65.34943], - [-18.558842, 65.349382], - [-18.552814, 65.348482], - [-18.552662, 65.34846], - [-18.550175, 65.347966], - [-18.548135, 65.347561], - [-18.545299, 65.34669], - [-18.541087, 65.345442], - [-18.5405, 65.345196], - [-18.537194, 65.343807], - [-18.535324, 65.342676], - [-18.533231, 65.340913], - [-18.532153, 65.339656], - [-18.531111, 65.338442], - [-18.529428, 65.336331], - [-18.527481, 65.33402], - [-18.52622, 65.332428], - [-18.526124, 65.332202], - [-18.525142, 65.329895], - [-18.524794, 65.328592], - [-18.5247, 65.326587], - [-18.524583, 65.323834], - [-18.524539, 65.322792], - [-18.524472, 65.32117], - [-18.524438, 65.320374], - [-18.524251, 65.316362], - [-18.524195, 65.315894], - [-18.524054, 65.314717], - [-18.523935, 65.313724], - [-18.523868, 65.313176], - [-18.523509, 65.310259], - [-18.523865, 65.307475], - [-18.523956, 65.306886], - [-18.524562, 65.303001], - [-18.524573, 65.302928], - [-18.524851, 65.300679], - [-18.524966, 65.299751], - [-18.525076, 65.299243], - [-18.525792, 65.295953], - [-18.525227, 65.295075], - [-18.524893, 65.294556], - [-18.524629, 65.294143], - [-18.523897, 65.293006], - [-18.51894, 65.285294], - [-18.516333, 65.281235], - [-18.515149, 65.279392], - [-18.512774, 65.275692], - [-18.506667, 65.266177], - [-18.503771, 65.261661], - [-18.501523, 65.258156], - [-18.499895, 65.255617], - [-18.498923, 65.2541], - [-18.497399, 65.252672], - [-18.496416, 65.251751], - [-18.494269, 65.24974], - [-18.492717, 65.248434], - [-18.489885, 65.247718], - [-18.485928, 65.246718], - [-18.483605, 65.24613], - [-18.454773, 65.238834], - [-18.45144, 65.23799], - [-18.445858, 65.236576], - [-18.439384, 65.234936], - [-18.437111, 65.23436], - [-18.436907, 65.234308], - [-18.433944, 65.233558], - [-18.433494, 65.233444], - [-18.430806, 65.232762], - [-18.428225, 65.232108], - [-18.420647, 65.230187], - [-18.41623, 65.229066], - [-18.415004, 65.228755], - [-18.413773, 65.228443], - [-18.412677, 65.228165], - [-18.40386, 65.225928], - [-18.402645, 65.225619], - [-18.399188, 65.224742], - [-18.381146, 65.22016], - [-18.375873, 65.21882], - [-18.371088, 65.217604], - [-18.367819, 65.216773], - [-18.365898, 65.216285], - [-18.36222, 65.215349], - [-18.354882, 65.213483], - [-18.350562, 65.212384], - [-18.350525, 65.212049], - [-18.350385, 65.211783], - [-18.350053, 65.211378], - [-18.349848, 65.211061], - [-18.349221, 65.210523], - [-18.348735, 65.2103], - [-18.348679, 65.209829], - [-18.348471, 65.20954], - [-18.348113, 65.209391], - [-18.348156, 65.208964], - [-18.348389, 65.208669], - [-18.34876, 65.208361], - [-18.348984, 65.208152], - [-18.349809, 65.208052], - [-18.350311, 65.207776], - [-18.350926, 65.207744], - [-18.35164, 65.207728], - [-18.352161, 65.20761], - [-18.352661, 65.207376], - [-18.35303, 65.207068], - [-18.353233, 65.206744], - [-18.353607, 65.206381], - [-18.35454, 65.205884], - [-18.354905, 65.205633], - [-18.355262, 65.205469], - [-18.355326, 65.20517], - [-18.355313, 65.204956], - [-18.355997, 65.204556], - [-18.356109, 65.204518], - [-18.36018, 65.201279], - [-18.360364, 65.201069], - [-18.360511, 65.200901], - [-18.36068, 65.200708], - [-18.360973, 65.200375], - [-18.361609, 65.199468], - [-18.361571, 65.198927], - [-18.360085, 65.198527], - [-18.358329, 65.198282], - [-18.357482, 65.19784], - [-18.357308, 65.197036], - [-18.357647, 65.196187], - [-18.358478, 65.195507], - [-18.359861, 65.194558], - [-18.359782, 65.175348], - [-18.359765, 65.174932], - [-18.359734, 65.174161], - [-18.359687, 65.173004], - [-18.359616, 65.171222], - [-18.359451, 65.167146], - [-18.359427, 65.166544], - [-18.359415, 65.166252], - [-18.359042, 65.165703], - [-18.352483, 65.156038], - [-18.351255, 65.154228], - [-18.35035, 65.152894], - [-18.346928, 65.147847], - [-18.345561, 65.145832], - [-18.339277, 65.136558], - [-18.335664, 65.131222], - [-18.334779, 65.129916], - [-18.329999, 65.122853], - [-18.329358, 65.121906], - [-18.324722, 65.115052], - [-18.323634, 65.113443], - [-18.321515, 65.110309], - [-18.320361, 65.108602], - [-18.320864, 65.107809], - [-18.321139, 65.107374], - [-18.325827, 65.099966], - [-18.327376, 65.097517], - [-18.329206, 65.094624], - [-18.331973, 65.090247], - [-18.33262, 65.089223], - [-18.333945, 65.087126], - [-18.336822, 65.082573], - [-18.337504, 65.081494], - [-18.337844, 65.080956], - [-18.339454, 65.078407], - [-18.339782, 65.077886], - [-18.340498, 65.076754], - [-18.342094, 65.074226], - [-18.3455, 65.06883], - [-18.346318, 65.067533], - [-18.34828, 65.064423], - [-18.348595, 65.063924], - [-18.350059, 65.061604], - [-18.350393, 65.061075], - [-18.351796, 65.058849], - [-18.352193, 65.05822], - [-18.352707, 65.057405], - [-18.354737, 65.054184], - [-18.355482, 65.053003], - [-18.361499, 65.043453], - [-18.363664, 65.040016], - [-18.36405, 65.039401], - [-18.365711, 65.036765], - [-18.366267, 65.03588], - [-18.367065, 65.034613], - [-18.368121, 65.032935], - [-18.368705, 65.032007], - [-18.367929, 65.028916], - [-18.366649, 65.023821], - [-18.365931, 65.020958], - [-18.365637, 65.019784], - [-18.364868, 65.01672], - [-18.364742, 65.016217], - [-18.364734, 65.016185], - [-18.363991, 65.016109], - [-18.363213, 65.016028], - [-18.362018, 65.015683], - [-18.359929, 65.015061], - [-18.3596, 65.014801], - [-18.359404, 65.014646], - [-18.358077, 65.013599], - [-18.357158, 65.012024], - [-18.356635, 65.010394], - [-18.356571, 65.010195], - [-18.354707, 65.008249], - [-18.354573, 65.008108], - [-18.354483, 65.008014], - [-18.353009, 65.004559], - [-18.352863, 65.004218], - [-18.352908, 65.004043], - [-18.353112, 65.003248], - [-18.353007, 65.002326], - [-18.352942, 65.001772], - [-18.352888, 65.001302], - [-18.35276, 65.000203], - [-18.352705, 64.999736], - [-18.35256, 64.999501], - [-18.352526, 64.999447], - [-18.351895, 64.998666], - [-18.351961, 64.99834], - [-18.351991, 64.998041], - [-18.351724, 64.997666], - [-18.351263, 64.99723], - [-18.350481, 64.996618], - [-18.350077, 64.996283], - [-18.34994, 64.995952], - [-18.350002, 64.995668], - [-18.350049, 64.995198], - [-18.350102, 64.995], - [-18.34954, 64.994235], - [-18.348903, 64.993853], - [-18.348727, 64.993593], - [-18.348592, 64.992921], - [-18.348189, 64.992557], - [-18.347481, 64.992127], - [-18.347523, 64.991804], - [-18.347578, 64.991592], - [-18.347537, 64.99132], - [-18.347142, 64.9909], - [-18.34664, 64.990534], - [-18.346172, 64.990155], - [-18.345616, 64.989646], - [-18.345486, 64.989587], - [-18.345448, 64.989315], - [-18.345362, 64.98891], - [-18.345309, 64.988657], - [-18.345259, 64.988157], - [-18.344942, 64.98761], - [-18.344645, 64.987206], - [-18.344591, 64.987091], - [-18.344038, 64.986706], - [-18.3435, 64.98644], - [-18.342407, 64.986354], - [-18.341572, 64.986282], - [-18.340469, 64.986205], - [-18.339539, 64.986089], - [-18.338585, 64.985844], - [-18.337553, 64.98544], - [-18.337264, 64.985229], - [-18.336968, 64.984979], - [-18.336867, 64.984502], - [-18.336752, 64.984406], - [-18.336587, 64.984268], - [-18.336035, 64.983746], - [-18.335703, 64.983355], - [-18.335733, 64.982714], - [-18.335574, 64.982283], - [-18.335162, 64.981815], - [-18.334529, 64.981434], - [-18.333758, 64.98097], - [-18.333069, 64.980556], - [-18.332842, 64.980444], - [-18.330884, 64.979475], - [-18.329409, 64.978722], - [-18.329342, 64.978712], - [-18.32905, 64.978489], - [-18.328548, 64.978124], - [-18.327648, 64.977708], - [-18.326469, 64.977374], - [-18.325514, 64.977172], - [-18.32468, 64.977085], - [-18.323736, 64.977111], - [-18.323165, 64.977247], - [-18.323011, 64.977283], - [-18.321801, 64.977276], - [-18.321102, 64.976865], - [-18.320154, 64.976234], - [-18.319788, 64.975871], - [-18.319563, 64.975425], - [-18.319662, 64.975238], - [-18.319728, 64.975115], - [-18.320032, 64.974764], - [-18.320017, 64.974578], - [-18.319503, 64.974327], - [-18.318644, 64.974183], - [-18.317249, 64.974001], - [-18.316885, 64.973926], - [-18.315974, 64.973699], - [-18.315224, 64.973563], - [-18.314713, 64.973519], - [-18.314554, 64.97351], - [-18.314206, 64.973461], - [-18.313501, 64.973107], - [-18.313039, 64.972685], - [-18.312633, 64.972379], - [-18.312669, 64.972023], - [-18.312958, 64.971486], - [-18.313447, 64.970968], - [-18.313741, 64.970716], - [-18.315297, 64.969975], - [-18.316006, 64.969602], - [-18.31638, 64.969239], - [-18.316549, 64.968886], - [-18.316528, 64.968444], - [-18.316259, 64.968097], - [-18.315759, 64.967717], - [-18.315018, 64.96739], - [-18.313935, 64.967114], - [-18.312748, 64.966864], - [-18.312685, 64.966834], - [-18.312385, 64.96613], - [-18.312073, 64.965882], - [-18.311592, 64.965646], - [-18.311552, 64.965375], - [-18.31186, 64.964981], - [-18.311919, 64.964739], - [-18.311534, 64.964562], - [-18.311075, 64.964425], - [-18.310822, 64.964263], - [-18.311069, 64.963826], - [-18.311165, 64.963529], - [-18.311215, 64.96303], - [-18.310981, 64.962684], - [-18.310538, 64.962406], - [-18.309955, 64.962182], - [-18.309322, 64.962127], - [-18.308894, 64.96202], - [-18.308793, 64.962032], - [-18.30828, 64.961971], - [-18.307787, 64.962014], - [-18.307281, 64.962005], - [-18.306199, 64.961743], - [-18.305425, 64.961416], - [-18.305106, 64.961238], - [-18.304429, 64.960927], - [-18.303419, 64.960609], - [-18.302114, 64.960201], - [-18.30122, 64.960071], - [-18.300678, 64.960118], - [-18.299468, 64.960096], - [-18.298929, 64.9601], - [-18.29847, 64.959992], - [-18.2973, 64.958916], - [-18.296838, 64.958167], - [-18.296822, 64.957886], - [-18.29716, 64.957645], - [-18.297707, 64.957213], - [-18.298417, 64.956841], - [-18.299242, 64.956235], - [-18.299897, 64.955396], - [-18.300263, 64.954879], - [-18.300799, 64.954561], - [-18.301641, 64.95422], - [-18.301868, 64.953981], - [-18.301966, 64.953655], - [-18.301856, 64.952755], - [-18.301691, 64.952054], - [-18.301476, 64.951523], - [-18.301481, 64.951138], - [-18.301597, 64.950655], - [-18.301521, 64.950069], - [-18.301458, 64.949698], - [-18.301483, 64.949456], - [-18.302058, 64.948608], - [-18.30256, 64.948074], - [-18.303451, 64.947493], - [-18.304308, 64.947238], - [-18.304777, 64.947029], - [-18.305254, 64.946739], - [-18.305415, 64.946417], - [-18.305416, 64.946344], - [-18.305473, 64.945879], - [-18.305183, 64.945418], - [-18.3044, 64.944862], - [-18.303633, 64.944463], - [-18.30299, 64.944166], - [-18.301874, 64.943233], - [-18.301777, 64.943084], - [-18.301612, 64.94283], - [-18.301784, 64.942448], - [-18.30217, 64.941956], - [-18.302572, 64.941649], - [-18.302625, 64.941437], - [-18.302645, 64.940924], - [-18.302192, 64.940388], - [-18.301606, 64.939879], - [-18.301556, 64.939707], - [-18.302052, 64.939446], - [-18.303187, 64.939195], - [-18.303689, 64.938876], - [-18.303754, 64.938564], - [-18.303854, 64.938252], - [-18.303796, 64.937809], - [-18.30377, 64.937424], - [-18.303274, 64.937001], - [-18.302543, 64.936589], - [-18.301842, 64.936191], - [-18.301689, 64.936156], - [-18.300461, 64.935567], - [-18.299431, 64.935121], - [-18.299015, 64.9349], - [-18.298899, 64.934855], - [-18.297787, 64.93408], - [-18.297624, 64.933706], - [-18.297639, 64.933549], - [-18.297667, 64.933279], - [-18.297701, 64.932938], - [-18.297637, 64.932566], - [-18.297227, 64.931974], - [-18.296329, 64.931217], - [-18.295737, 64.93075], - [-18.295547, 64.930304], - [-18.294562, 64.929745], - [-18.293864, 64.929661], - [-18.293135, 64.929562], - [-18.292727, 64.929283], - [-18.292666, 64.928884], - [-18.292557, 64.928639], - [-18.291824, 64.928255], - [-18.290471, 64.928002], - [-18.289803, 64.927619], - [-18.289193, 64.927352], - [-18.289061, 64.926651], - [-18.289001, 64.926593] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "11266", - "properties": { - "NAME_ENGLISH": "Southern Peninsula", - "name": "Suðurnes", - "ISOCODE": "IS-2", - "density": 0, - "path": "/world/Iceland/Southern Peninsula" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-22.72856, 63.81242], - [-22.72914, 63.81245], - [-22.72918, 63.81218], - [-22.73033, 63.81222], - [-22.73029, 63.81247], - [-22.7297, 63.81258], - [-22.72852, 63.81268], - [-22.72856, 63.81242] - ] - ], - [ - [ - [-22.68427, 63.94433], - [-22.68458, 63.94421], - [-22.68518, 63.9441], - [-22.6851, 63.94461], - [-22.68684, 63.94466], - [-22.68729, 63.94557], - [-22.68787, 63.94559], - [-22.68846, 63.94548], - [-22.68868, 63.946], - [-22.68918, 63.94653], - [-22.68945, 63.94666], - [-22.68972, 63.9468], - [-22.68999, 63.94694], - [-22.69055, 63.94708], - [-22.69052, 63.94734], - [-22.68992, 63.94732], - [-22.68981, 63.94808], - [-22.68925, 63.94794], - [-22.68871, 63.94767], - [-22.68817, 63.94739], - [-22.68705, 63.9471], - [-22.68591, 63.94694], - [-22.68599, 63.94643], - [-22.68543, 63.94629], - [-22.68429, 63.94613], - [-22.68423, 63.94459], - [-22.68427, 63.94433] - ] - ], - [ - [ - [-21.70078, 63.995225], - [-21.669485, 63.987676], - [-21.913085, 63.860995], - [-21.910034, 63.839672], - [-21.910512, 63.839566], - [-21.911447, 63.839215], - [-21.911758, 63.839097], - [-21.912071, 63.83898], - [-21.912381, 63.838863], - [-21.912694, 63.838746], - [-21.913363, 63.838257], - [-21.914032, 63.837768], - [-21.915325, 63.837044], - [-21.915635, 63.836927], - [-21.916212, 63.836947], - [-21.916789, 63.836967], - [-21.917102, 63.83685], - [-21.917412, 63.836733], - [-21.918566, 63.836773], - [-21.927222, 63.837078], - [-21.928376, 63.837119], - [-21.92953, 63.837159], - [-21.929796, 63.837297], - [-21.930061, 63.837434], - [-21.933523, 63.837556], - [-21.9341, 63.837576], - [-21.934678, 63.837597], - [-21.938809, 63.837229], - [-21.940009, 63.837015], - [-21.94234, 63.836969], - [-21.942431, 63.836459], - [-21.943008, 63.836479], - [-21.942917, 63.836989], - [-21.943517, 63.836881], - [-21.943829, 63.836764], - [-21.94414, 63.836647], - [-21.948225, 63.836534], - [-21.948802, 63.836554], - [-21.950533, 63.836614], - [-21.95111, 63.836634], - [-21.951687, 63.836655], - [-21.952287, 63.836548], - [-21.952195, 63.837057], - [-21.953372, 63.83697], - [-21.953685, 63.836853], - [-21.953995, 63.836735], - [-21.954595, 63.836629], - [-21.954504, 63.837138], - [-21.957966, 63.837259], - [-21.958057, 63.83675], - [-21.958634, 63.83677], - [-21.958543, 63.83728], - [-21.95972, 63.837192], - [-21.960032, 63.837075], - [-21.960343, 63.836958], - [-21.96092, 63.836978], - [-21.961497, 63.836998], - [-21.961809, 63.836881], - [-21.96212, 63.836763], - [-21.96332, 63.836549], - [-21.963632, 63.836432], - [-21.963942, 63.836314], - [-21.965142, 63.8361], - [-21.965454, 63.835983], - [-21.966478, 63.835121], - [-21.966791, 63.835004], - [-21.966836, 63.834749], - [-21.966592, 63.834484], - [-21.967769, 63.834397], - [-21.968082, 63.83428], - [-21.96846, 63.83378], - [-21.973699, 63.833707], - [-21.973608, 63.834216], - [-21.974208, 63.834109], - [-21.975385, 63.834022], - [-21.975475, 63.833512], - [-21.976052, 63.833532], - [-21.975962, 63.834042], - [-21.976539, 63.834062], - [-21.976629, 63.833553], - [-21.977184, 63.833699], - [-21.97745, 63.833837], - [-21.977715, 63.833974], - [-21.978292, 63.833995], - [-21.978869, 63.834015], - [-21.979447, 63.834035], - [-21.980024, 63.834055], - [-21.98029, 63.834193], - [-21.980555, 63.83433], - [-21.980822, 63.834467], - [-21.981086, 63.834604], - [-21.981663, 63.834624], - [-21.983349, 63.83494], - [-21.983616, 63.835078], - [-21.983881, 63.835214], - [-21.985612, 63.835275], - [-21.986189, 63.835295], - [-21.987343, 63.835335], - [-21.98792, 63.835355], - [-21.989029, 63.83565], - [-21.990138, 63.835945], - [-21.991869, 63.836005], - [-21.992446, 63.836025], - [-21.992955, 63.836141], - [-21.993458, 63.836041], - [-21.993973, 63.836425], - [-21.994777, 63.836387], - [-21.995515, 63.836325], - [-21.997589, 63.836417], - [-21.998794, 63.836245], - [-21.99939, 63.836413], - [-21.999756, 63.836351], - [-22, 63.83616], - [-22.00234, 63.836223], - [-22.003475, 63.835857], - [-22.005232, 63.836033], - [-22.00612, 63.83586], - [-22.00592, 63.83534], - [-22.00648, 63.83549], - [-22.00674, 63.83562], - [-22.00701, 63.83576], - [-22.00874, 63.83582], - [-22.00905, 63.8357], - [-22.00935, 63.8356], - [-22.01056, 63.83537], - [-22.01098, 63.83517], - [-22.0115, 63.83502], - [-22.01195, 63.8352], - [-22.01232, 63.83531], - [-22.01213, 63.83478], - [-22.01216, 63.83453], - [-22.01247, 63.83441], - [-22.01365, 63.83432], - [-22.01356, 63.83483], - [-22.01417, 63.83473], - [-22.015228, 63.834688], - [-22.016128, 63.834389], - [-22.01663, 63.83391], - [-22.01776, 63.83408], - [-22.018189, 63.834045], - [-22.01865, 63.83398], - [-22.019101, 63.833681], - [-22.021038, 63.833474], - [-22.021316, 63.833232], - [-22.022527, 63.833399], - [-22.02309, 63.833369], - [-22.02429, 63.83328], - [-22.026368, 63.832936], - [-22.026782, 63.832921], - [-22.02743, 63.832883], - [-22.028179, 63.832848], - [-22.029428, 63.832736], - [-22.03128, 63.832601], - [-22.032286, 63.832402], - [-22.032728, 63.832304], - [-22.033047, 63.832152], - [-22.033252, 63.832016], - [-22.033623, 63.8319], - [-22.033355, 63.831751], - [-22.034506, 63.831709], - [-22.035408, 63.83109], - [-22.03683, 63.831492], - [-22.038977, 63.831762], - [-22.040294, 63.83196], - [-22.041383, 63.832047], - [-22.044472, 63.832107], - [-22.04515, 63.83182], - [-22.0452, 63.83157], - [-22.04524, 63.83131], - [-22.04562, 63.83081], - [-22.0468, 63.83072], - [-22.04795, 63.83076], - [-22.04822, 63.8309], - [-22.048707, 63.831341], - [-22.049112, 63.831477], - [-22.049625, 63.831559], - [-22.04986, 63.83147], - [-22.05028, 63.83072], - [-22.05084, 63.83086], - [-22.05319, 63.83069], - [-22.05439, 63.83047], - [-22.054917, 63.830198], - [-22.055748, 63.830496], - [-22.056823, 63.830577], - [-22.057663, 63.829922], - [-22.058437, 63.830441], - [-22.0602, 63.83041], - [-22.060751, 63.83014], - [-22.063651, 63.830492], - [-22.064294, 63.830424], - [-22.06513, 63.83046], - [-22.06544, 63.83034], - [-22.06575, 63.83022], - [-22.06606, 63.8301], - [-22.066803, 63.829934], - [-22.067797, 63.830281], - [-22.068334, 63.830268], - [-22.068464, 63.829966], - [-22.068963, 63.82987], - [-22.069607, 63.829798], - [-22.07085, 63.829551], - [-22.071623, 63.82968], - [-22.07534, 63.83016], - [-22.07649, 63.8302], - [-22.07707, 63.83022], - [-22.07764, 63.83024], - [-22.07796, 63.83013], - [-22.07827, 63.83001], - [-22.078818, 63.829687], - [-22.07943, 63.830101], - [-22.08029, 63.830061], - [-22.080603, 63.829515], - [-22.081254, 63.830072], - [-22.08169, 63.83038], - [-22.08342, 63.83044], - [-22.08402, 63.83033], - [-22.084641, 63.830635], - [-22.086608, 63.830601], - [-22.08795, 63.83111], - [-22.08821, 63.83124], - [-22.08841, 63.83176], - [-22.08954, 63.83193], - [-22.08981, 63.83207], - [-22.09008, 63.8322], - [-22.09034, 63.83234], - [-22.09061, 63.83248], - [-22.09176, 63.83252], - [-22.09234, 63.83253], - [-22.09407, 63.8326], - [-22.09465, 63.83262], - [-22.09651, 63.83358], - [-22.09678, 63.83371], - [-22.09705, 63.83384], - [-22.09749, 63.83464], - [-22.09769, 63.83515], - [-22.09882, 63.83532], - [-22.09993, 63.83562], - [-22.10108, 63.83565], - [-22.10166, 63.83567], - [-22.10397, 63.83575], - [-22.10455, 63.83577], - [-22.10574, 63.83556], - [-22.10752, 63.83536], - [-22.10985, 63.83531], - [-22.11023, 63.83481], - [-22.11054, 63.83469], - [-22.11232, 63.8345], - [-22.11263, 63.83438], - [-22.113, 63.83388], - [-22.11356, 63.83403], - [-22.11414, 63.83405], - [-22.11589, 63.83398], - [-22.11579, 63.83449], - [-22.11693, 63.83465], - [-22.11804, 63.83495], - [-22.11972, 63.83526], - [-22.12146, 63.83532], - [-22.12438, 63.83515], - [-22.12668, 63.83537], - [-22.12688, 63.83588], - [-22.12716, 63.83602], - [-22.12826, 63.83633], - [-22.13052, 63.83665], - [-22.1311, 63.83667], - [-22.1323, 63.83645], - [-22.13407, 63.83626], - [-22.13438, 63.83614], - [-22.13469, 63.83602], - [-22.13527, 63.83604], - [-22.13585, 63.83606], - [-22.13706, 63.83585], - [-22.13736, 63.83573], - [-22.13767, 63.83561], - [-22.13798, 63.83549], - [-22.13829, 63.83538], - [-22.13947, 63.83529], - [-22.13955, 63.83478], - [-22.14073, 63.83469], - [-22.14131, 63.83471], - [-22.14188, 63.83473], - [-22.14422, 63.83468], - [-22.14397, 63.83441], - [-22.14402, 63.83416], - [-22.14434, 63.83404], - [-22.14552, 63.83382], - [-22.1473, 63.83363], - [-22.14848, 63.83354], - [-22.14868, 63.83406], - [-22.14894, 63.8342], - [-22.1495, 63.83434], - [-22.14988, 63.83384], - [-22.15025, 63.83334], - [-22.15081, 63.83349], - [-22.15107, 63.83363], - [-22.15134, 63.83376], - [-22.15192, 63.83378], - [-22.15223, 63.83367], - [-22.15254, 63.83355], - [-22.15285, 63.83343], - [-22.15316, 63.83331], - [-22.15347, 63.8332], - [-22.15385, 63.8327], - [-22.1556, 63.83263], - [-22.15618, 63.83264], - [-22.15675, 63.83266], - [-22.15706, 63.83255], - [-22.15737, 63.83243], - [-22.16084, 63.83253], - [-22.16201, 63.83246], - [-22.16177, 63.83219], - [-22.1627, 63.83184], - [-22.16301, 63.83172], - [-22.16306, 63.83147], - [-22.16281, 63.8312], - [-22.16486, 63.83101], - [-22.16518, 63.8309], - [-22.16754, 63.83072], - [-22.16785, 63.8306], - [-22.16816, 63.83048], - [-22.16873, 63.83049], - [-22.16931, 63.83052], - [-22.17051, 63.83031], - [-22.17109, 63.83033], - [-22.17166, 63.83034], - [-22.17198, 63.83023], - [-22.17228, 63.83011], - [-22.17402, 63.83017], - [-22.17517, 63.8302], - [-22.17575, 63.83022], - [-22.17748, 63.83028], - [-22.17806, 63.8303], - [-22.17863, 63.83032], - [-22.18204, 63.83069], - [-22.18262, 63.83071], - [-22.18378, 63.83075], - [-22.18547, 63.83106], - [-22.18605, 63.83109], - [-22.18663, 63.8311], - [-22.18778, 63.83114], - [-22.18836, 63.83116], - [-22.18862, 63.8313], - [-22.1889, 63.83143], - [-22.19004, 63.83147], - [-22.19062, 63.83149], - [-22.19289, 63.83182], - [-22.194, 63.83212], - [-22.19427, 63.83224], - [-22.19453, 63.8324], - [-22.19564, 63.83269], - [-22.19622, 63.8327], - [-22.19673, 63.8331], - [-22.19733, 63.833], - [-22.19906, 63.83305], - [-22.19964, 63.83307], - [-22.20137, 63.83313], - [-22.20195, 63.83315], - [-22.2031, 63.83319], - [-22.20483, 63.83325], - [-22.20661, 63.83305], - [-22.20719, 63.83307], - [-22.20745, 63.8332], - [-22.20794, 63.83373], - [-22.21052, 63.83395], - [-22.21167, 63.834], - [-22.21283, 63.83402], - [-22.21314, 63.83391], - [-22.21345, 63.83379], - [-22.2146, 63.83383], - [-22.21518, 63.83384], - [-22.21633, 63.83388], - [-22.21691, 63.8339], - [-22.21811, 63.83369], - [-22.21869, 63.83371], - [-22.22042, 63.83376], - [-22.221, 63.83378], - [-22.22499, 63.83417], - [-22.2253, 63.83405], - [-22.22561, 63.83393], - [-22.22677, 63.83397], - [-22.22703, 63.83411], - [-22.2273, 63.83425], - [-22.22846, 63.83429], - [-22.23139, 63.83413], - [-22.23258, 63.83391], - [-22.23373, 63.83395], - [-22.23401, 63.83408], - [-22.2345, 63.83461], - [-22.2347, 63.83513], - [-22.23583, 63.83531], - [-22.2361, 63.83544], - [-22.23637, 63.83557], - [-22.23748, 63.83586], - [-22.23805, 63.83588], - [-22.23979, 63.83594], - [-22.2409, 63.83623], - [-22.24117, 63.83637], - [-22.24143, 63.83651], - [-22.24223, 63.83692], - [-22.24243, 63.83744], - [-22.24359, 63.83748], - [-22.24379, 63.838], - [-22.24375, 63.83825], - [-22.24342, 63.8385], - [-22.2469, 63.83848], - [-22.24748, 63.8385], - [-22.247804, 63.838588], - [-22.248268, 63.838681], - [-22.24915, 63.83895], - [-22.249629, 63.83937], - [-22.2502, 63.83962], - [-22.25133, 63.83978], - [-22.25183, 63.840158], - [-22.25237, 63.84046], - [-22.25264, 63.84059], - [-22.25367, 63.8414], - [-22.25393, 63.84153], - [-22.2542, 63.84167], - [-22.255173, 63.842072], - [-22.2555, 63.84261], - [-22.25576, 63.84275], - [-22.256478, 63.843227], - [-22.25749, 63.843549], - [-22.25805, 63.843712], - [-22.258441, 63.843875], - [-22.259346, 63.843634], - [-22.260114, 63.843724], - [-22.26052, 63.8438], - [-22.261583, 63.843684], - [-22.261873, 63.843715], - [-22.262077, 63.843882], - [-22.26252, 63.84399], - [-22.263349, 63.844221], - [-22.263548, 63.844155], - [-22.263976, 63.843946], - [-22.26454, 63.84406], - [-22.264922, 63.844376], - [-22.2662, 63.8445], - [-22.267495, 63.844287], - [-22.26856, 63.84432], - [-22.26976, 63.8441], - [-22.270125, 63.843936], - [-22.270542, 63.843842], - [-22.270932, 63.844097], - [-22.27151, 63.84403], - [-22.27209, 63.84405], - [-22.273034, 63.843856], - [-22.273418, 63.843875], - [-22.273965, 63.843729], - [-22.274162, 63.843641], - [-22.274935, 63.843617], - [-22.275873, 63.843452], - [-22.277119, 63.8431], - [-22.278423, 63.843027], - [-22.278771, 63.842622], - [-22.279467, 63.842501], - [-22.28008, 63.842594], - [-22.28066, 63.842858], - [-22.281765, 63.842925], - [-22.28337, 63.84278], - [-22.284151, 63.842475], - [-22.285361, 63.842259], - [-22.286786, 63.842181], - [-22.287215, 63.842338], - [-22.288151, 63.842188], - [-22.289431, 63.842556], - [-22.290352, 63.843151], - [-22.291383, 63.843346], - [-22.29207, 63.843432], - [-22.293599, 63.843496], - [-22.29688, 63.843714], - [-22.298453, 63.843676], - [-22.299421, 63.844156], - [-22.300109, 63.844594], - [-22.30062, 63.844945], - [-22.301149, 63.845202], - [-22.301785, 63.84552], - [-22.302734, 63.845763], - [-22.304311, 63.846355], - [-22.304809, 63.847117], - [-22.30557, 63.847864], - [-22.306048, 63.848629], - [-22.306426, 63.849248], - [-22.30773, 63.8497], - [-22.309979, 63.849841], - [-22.310885, 63.849773], - [-22.312693, 63.849733], - [-22.314509, 63.849991], - [-22.316762, 63.850067], - [-22.319133, 63.850169], - [-22.320088, 63.850023], - [-22.320377, 63.850075], - [-22.32004, 63.85073], - [-22.320392, 63.850862], - [-22.32136, 63.85155], - [-22.32156, 63.85207], - [-22.32184, 63.85221], - [-22.3221, 63.85235], - [-22.32259, 63.85287], - [-22.32308, 63.8534], - [-22.32442, 63.85408], - [-22.32669, 63.85442], - [-22.32727, 63.85443], - [-22.329, 63.85449], - [-22.331721, 63.854641], - [-22.333293, 63.854979], - [-22.33465, 63.85544], - [-22.3358, 63.85548], - [-22.33696, 63.85552], - [-22.34101, 63.85565], - [-22.34159, 63.85567], - [-22.34216, 63.85568], - [-22.34336, 63.85547], - [-22.34572, 63.85529], - [-22.3463, 63.85531], - [-22.347001, 63.855243], - [-22.348186, 63.854978], - [-22.349829, 63.85482], - [-22.35046, 63.85466], - [-22.351223, 63.854292], - [-22.351448, 63.854032], - [-22.35148, 63.85381], - [-22.35156, 63.8533], - [-22.351591, 63.8531], - [-22.351912, 63.853003], - [-22.352663, 63.852428], - [-22.35269, 63.852189], - [-22.352819, 63.851981], - [-22.35388, 63.85158], - [-22.355265, 63.851053], - [-22.355618, 63.850927], - [-22.356311, 63.850581], - [-22.356787, 63.850523], - [-22.357552, 63.850356], - [-22.358123, 63.850227], - [-22.358684, 63.850023], - [-22.359109, 63.849862], - [-22.359273, 63.849784], - [-22.359672, 63.849796], - [-22.360619, 63.849994], - [-22.361086, 63.849978], - [-22.361359, 63.849964], - [-22.36152, 63.850046], - [-22.362231, 63.850037], - [-22.362987, 63.849924], - [-22.36405, 63.84973], - [-22.365175, 63.849477], - [-22.3668, 63.84892], - [-22.36756, 63.84792], - [-22.36825, 63.84717], - [-22.36856, 63.84705], - [-22.369706, 63.846806], - [-22.370544, 63.846652], - [-22.371782, 63.846392], - [-22.373105, 63.846126], - [-22.37494, 63.84534], - [-22.375545, 63.844934], - [-22.376133, 63.844545], - [-22.376663, 63.844275], - [-22.376991, 63.843984], - [-22.377489, 63.843729], - [-22.37759, 63.84337], - [-22.37767, 63.84286], - [-22.37776, 63.84235], - [-22.3778, 63.84209], - [-22.378492, 63.841156], - [-22.378686, 63.841073], - [-22.378802, 63.840988], - [-22.379015, 63.840801], - [-22.379666, 63.839996], - [-22.379905, 63.839214], - [-22.383268, 63.839385], - [-22.38383, 63.83896], - [-22.38496, 63.83912], - [-22.38554, 63.83914], - [-22.38612, 63.83916], - [-22.38953, 63.83952], - [-22.39123, 63.83983], - [-22.39181, 63.83985], - [-22.39416, 63.83968], - [-22.39546, 63.83882], - [-22.39662, 63.83885], - [-22.39707, 63.83784], - [-22.39778, 63.8371], - [-22.39815, 63.83659], - [-22.39759, 63.83645], - [-22.39646, 63.83628], - [-22.39621, 63.83602], - [-22.39625, 63.83577], - [-22.39691, 63.83527], - [-22.39722, 63.83515], - [-22.39753, 63.83504], - [-22.39803, 63.83377], - [-22.39687, 63.83374], - [-22.39704, 63.83272], - [-22.39648, 63.83257], - [-22.39594, 63.8323], - [-22.39481, 63.83213], - [-22.39494, 63.83138], - [-22.39378, 63.83133], - [-22.39354, 63.83107], - [-22.39358, 63.83081], - [-22.39361, 63.83056], - [-22.39313, 63.83003], - [-22.39317, 63.82976], - [-22.39321, 63.82952], - [-22.39272, 63.82899], - [-22.39276, 63.82873], - [-22.39342, 63.82824], - [-22.39408, 63.82775], - [-22.39439, 63.82763], - [-22.39681, 63.82694], - [-22.39837, 63.82635], - [-22.39903, 63.82586], - [-22.3994, 63.82536], - [-22.40058, 63.82527], - [-22.40151, 63.82491], - [-22.40182, 63.82479], - [-22.40924, 63.82554], - [-22.41177, 63.82601], - [-22.41204, 63.82615], - [-22.41315, 63.82644], - [-22.41341, 63.82656], - [-22.41396, 63.82685], - [-22.41422, 63.82698], - [-22.4153, 63.82753], - [-22.41556, 63.82767], - [-22.41577, 63.82819], - [-22.41692, 63.82822], - [-22.41684, 63.82873], - [-22.418, 63.82877], - [-22.41746, 63.83029], - [-22.4181, 63.83172], - [-22.41836, 63.83186], - [-22.41832, 63.83211], - [-22.41824, 63.83262], - [-22.41852, 63.83276], - [-22.41878, 63.83289], - [-22.41923, 63.83368], - [-22.4195, 63.83381], - [-22.41976, 63.83395], - [-22.42022, 63.83473], - [-22.42067, 63.83552], - [-22.42094, 63.83565], - [-22.42121, 63.83579], - [-22.42147, 63.83593], - [-22.42174, 63.83606], - [-22.42216, 63.8371], - [-22.42242, 63.83724], - [-22.42355, 63.8374], - [-22.41949, 63.8374], - [-22.41861, 63.8375], - [-22.41856, 63.83776], - [-22.41883, 63.83789], - [-22.41909, 63.83803], - [-22.41906, 63.83829], - [-22.41902, 63.83854], - [-22.41922, 63.83906], - [-22.41867, 63.83891], - [-22.41547, 63.83895], - [-22.415424, 63.839291], - [-22.41569, 63.83933], - [-22.41627, 63.83935], - [-22.41654, 63.83949], - [-22.416908, 63.839415], - [-22.41916, 63.83944], - [-22.42031, 63.83948], - [-22.42058, 63.83962], - [-22.42079, 63.84013], - [-22.42023, 63.83999], - [-22.415897, 63.840069], - [-22.4162, 63.840405], - [-22.416562, 63.840725], - [-22.416983, 63.840968], - [-22.417971, 63.841327], - [-22.418832, 63.841603], - [-22.41983, 63.841776], - [-22.420325, 63.841808], - [-22.421476, 63.841763], - [-22.422321, 63.841631], - [-22.42332, 63.841368], - [-22.42322, 63.84124], - [-22.42273, 63.84071], - [-22.42252, 63.84019], - [-22.423136, 63.84001], - [-22.423677, 63.839817], - [-22.425353, 63.839577], - [-22.427512, 63.839165], - [-22.428964, 63.839857], - [-22.429609, 63.839771], - [-22.43048, 63.83942], - [-22.43079, 63.8393], - [-22.4311, 63.83918], - [-22.43141, 63.83906], - [-22.43172, 63.83895], - [-22.43205, 63.8387], - [-22.4303, 63.83877], - [-22.42972, 63.83875], - [-22.427891, 63.83842], - [-22.428175, 63.837812], - [-22.4304, 63.83813], - [-22.43015, 63.83787], - [-22.42999, 63.83709], - [-22.43055, 63.83724], - [-22.43112, 63.83726], - [-22.43232, 63.83704], - [-22.43358, 63.83644], - [-22.43449, 63.83621], - [-22.43461, 63.83544], - [-22.43527, 63.83496], - [-22.43558, 63.83484], - [-22.43735, 63.83464], - [-22.43851, 63.83467], - [-22.4397, 63.83445], - [-22.44001, 63.83434], - [-22.44032, 63.83422], - [-22.4415, 63.83413], - [-22.44125, 63.83386], - [-22.441, 63.8336], - [-22.44333, 63.83354], - [-22.44564, 63.83362], - [-22.44738, 63.83367], - [-22.44795, 63.83369], - [-22.44826, 63.83357], - [-22.44933, 63.83232], - [-22.44818, 63.83229], - [-22.44835, 63.83127], - [-22.44952, 63.83118], - [-22.45072, 63.83096], - [-22.45189, 63.83087], - [-22.45197, 63.83036], - [-22.45253, 63.83049], - [-22.45364, 63.83078], - [-22.45534, 63.8311], - [-22.45589, 63.83125], - [-22.45597, 63.83074], - [-22.45715, 63.83065], - [-22.45773, 63.83067], - [-22.459, 63.83186], - [-22.45895, 63.83211], - [-22.45915, 63.83263], - [-22.46031, 63.83267], - [-22.46083, 63.832296], - [-22.461234, 63.832686], - [-22.462559, 63.833126], - [-22.462636, 63.832771], - [-22.463327, 63.832703], - [-22.465324, 63.832322], - [-22.465536, 63.832576], - [-22.466093, 63.832694], - [-22.466553, 63.832542], - [-22.466822, 63.832881], - [-22.466707, 63.83327], - [-22.467514, 63.833474], - [-22.467514, 63.832686], - [-22.46784, 63.832601], - [-22.468762, 63.832754], - [-22.469434, 63.83266], - [-22.468608, 63.832466], - [-22.468935, 63.832076], - [-22.466707, 63.830839], - [-22.468628, 63.830975], - [-22.468858, 63.830518], - [-22.468071, 63.83017], - [-22.468436, 63.829679], - [-22.468743, 63.829552], - [-22.467629, 63.829222], - [-22.465017, 63.829628], - [-22.464614, 63.829849], - [-22.463903, 63.830128], - [-22.464575, 63.830865], - [-22.464249, 63.831466], - [-22.460696, 63.831924], - [-22.45965, 63.83138], - [-22.45985, 63.83009], - [-22.45989, 63.82984], - [-22.46063, 63.82884], - [-22.46049, 63.82793], - [-22.45936, 63.82777], - [-22.45911, 63.82751], - [-22.45857, 63.82723], - [-22.45861, 63.82698], - [-22.45892, 63.82685], - [-22.45923, 63.82674], - [-22.45989, 63.82625], - [-22.4602, 63.82612], - [-22.4614, 63.82591], - [-22.46171, 63.8258], - [-22.46208, 63.82529], - [-22.46618, 63.82504], - [-22.46676, 63.82506], - [-22.46791, 63.82509], - [-22.47022, 63.82517], - [-22.47133, 63.82546], - [-22.47362, 63.82566], - [-22.474332, 63.825994], - [-22.47583, 63.82637], - [-22.47698, 63.8264], - [-22.47756, 63.82643], - [-22.47783, 63.82656], - [-22.47832, 63.82709], - [-22.478749, 63.82713], - [-22.479843, 63.827087], - [-22.48067, 63.8269], - [-22.48099, 63.82678], - [-22.48157, 63.8268], - [-22.48183, 63.82694], - [-22.48203, 63.82746], - [-22.48321, 63.82737], - [-22.48436, 63.8274], - [-22.48529, 63.82705], - [-22.48508, 63.82653], - [-22.48565, 63.82667], - [-22.4862, 63.82682], - [-22.48628, 63.82631], - [-22.48686, 63.82633], - [-22.48678, 63.82684], - [-22.48849, 63.82702], - [-22.49078, 63.82722], - [-22.49129, 63.82762], - [-22.49302, 63.82767], - [-22.49414, 63.82796], - [-22.49441, 63.8281], - [-22.49521, 63.82851], - [-22.49579, 63.82853], - [-22.49637, 63.82855], - [-22.49663, 63.82868], - [-22.49713, 63.82921], - [-22.4974, 63.82935], - [-22.49851, 63.82964], - [-22.50315, 63.82966], - [-22.503882, 63.829789], - [-22.504632, 63.829805], - [-22.505531, 63.829871], - [-22.505986, 63.82976], - [-22.506136, 63.829588], - [-22.506705, 63.829385], - [-22.506304, 63.828975], - [-22.506813, 63.828835], - [-22.507574, 63.829197], - [-22.50818, 63.829186], - [-22.508533, 63.829086], - [-22.509289, 63.828671], - [-22.509761, 63.828268], - [-22.51012, 63.82782], - [-22.510168, 63.827287], - [-22.510006, 63.82701], - [-22.509545, 63.826756], - [-22.5087, 63.82674], - [-22.508208, 63.826518], - [-22.509065, 63.826299], - [-22.509575, 63.825712], - [-22.509641, 63.825437], - [-22.50995, 63.82525], - [-22.509904, 63.825019], - [-22.509485, 63.824855], - [-22.509812, 63.824664], - [-22.510917, 63.824453], - [-22.510955, 63.824127], - [-22.51036, 63.824101], - [-22.510579, 63.823767], - [-22.51096, 63.82367], - [-22.510671, 63.823244], - [-22.511019, 63.823003], - [-22.511078, 63.82265], - [-22.512301, 63.822508], - [-22.51217, 63.82225], - [-22.51221, 63.82199], - [-22.51171, 63.82148], - [-22.51154, 63.82069], - [-22.51041, 63.82053], - [-22.50928, 63.82037], - [-22.50903, 63.8201], - [-22.50922, 63.81883], - [-22.50954, 63.81871], - [-22.51073, 63.81849], - [-22.51131, 63.81851], - [-22.51244, 63.8188], - [-22.51356, 63.81896], - [-22.51373, 63.81974], - [-22.51399, 63.81986], - [-22.514402, 63.819943], - [-22.514942, 63.819927], - [-22.515422, 63.819729], - [-22.51595, 63.819765], - [-22.516506, 63.81969], - [-22.517125, 63.819735], - [-22.5175, 63.81973], - [-22.518585, 63.819535], - [-22.51929, 63.819313], - [-22.51993, 63.81903], - [-22.520554, 63.818795], - [-22.521176, 63.818612], - [-22.52193, 63.818324], - [-22.522334, 63.818062], - [-22.522241, 63.817795], - [-22.521895, 63.817575], - [-22.52164, 63.817494], - [-22.521468, 63.817353], - [-22.521646, 63.817203], - [-22.521966, 63.817175], - [-22.522589, 63.817112], - [-22.52345, 63.81695], - [-22.523639, 63.816844], - [-22.523675, 63.816695], - [-22.523337, 63.816592], - [-22.523218, 63.816385], - [-22.52307, 63.816315], - [-22.523034, 63.816213], - [-22.522909, 63.816087], - [-22.522969, 63.816003], - [-22.523499, 63.815988], - [-22.52371, 63.815972], - [-22.523865, 63.81592], - [-22.523556, 63.815817], - [-22.523325, 63.815815], - [-22.522998, 63.815815], - [-22.522862, 63.815509], - [-22.522636, 63.81527], - [-22.522453, 63.815325], - [-22.522447, 63.815239], - [-22.522482, 63.81509], - [-22.522292, 63.815097], - [-22.522103, 63.815176], - [-22.521616, 63.815718], - [-22.521656, 63.816093], - [-22.521794, 63.816278], - [-22.521681, 63.816361], - [-22.521664, 63.816484], - [-22.521574, 63.816556], - [-22.521296, 63.816605], - [-22.521139, 63.81658], - [-22.520865, 63.816363], - [-22.520685, 63.816097], - [-22.52074, 63.81585], - [-22.52138, 63.81536], - [-22.52216, 63.8141], - [-22.52247, 63.81398], - [-22.52278, 63.81387], - [-22.523251, 63.813519], - [-22.524278, 63.813241], - [-22.524583, 63.813139], - [-22.52524, 63.81292], - [-22.52556, 63.8128], - [-22.52614, 63.81282], - [-22.526698, 63.812733], - [-22.527596, 63.8125], - [-22.528083, 63.812421], - [-22.52853, 63.81238], - [-22.5291, 63.8124], - [-22.52968, 63.81241], - [-22.53261, 63.81225], - [-22.53318, 63.81227], - [-22.53376, 63.81228], - [-22.534438, 63.812067], - [-22.535204, 63.81149], - [-22.535607, 63.811296], - [-22.535706, 63.811228], - [-22.53581, 63.811168], - [-22.536039, 63.811086], - [-22.536292, 63.811016], - [-22.536442, 63.810961], - [-22.536584, 63.810912], - [-22.536768, 63.810853], - [-22.536934, 63.810827], - [-22.537383, 63.810703], - [-22.537878, 63.810652], - [-22.538625, 63.810605], - [-22.539533, 63.810552], - [-22.540607, 63.810374], - [-22.540927, 63.810437], - [-22.541271, 63.810395], - [-22.541331, 63.81027], - [-22.541615, 63.810275], - [-22.541503, 63.810356], - [-22.541603, 63.810393], - [-22.541865, 63.810421], - [-22.542333, 63.810406], - [-22.542369, 63.810377], - [-22.542481, 63.810322], - [-22.542476, 63.810435], - [-22.542563, 63.810485], - [-22.543051, 63.810495], - [-22.543494, 63.810436], - [-22.544635, 63.810366], - [-22.545879, 63.81041], - [-22.547109, 63.810359], - [-22.547673, 63.810322], - [-22.547483, 63.810173], - [-22.547815, 63.810107], - [-22.548177, 63.81017], - [-22.549132, 63.810013], - [-22.549797, 63.809942], - [-22.550325, 63.80994], - [-22.55087, 63.809752], - [-22.551487, 63.80973], - [-22.552343, 63.809833], - [-22.553379, 63.810056], - [-22.553872, 63.81017], - [-22.554314, 63.810228], - [-22.554596, 63.810351], - [-22.554739, 63.810393], - [-22.554768, 63.810479], - [-22.554875, 63.810442], - [-22.554845, 63.810406], - [-22.554863, 63.810356], - [-22.555059, 63.810293], - [-22.555118, 63.81033], - [-22.555124, 63.810374], - [-22.555029, 63.810406], - [-22.555053, 63.810461], - [-22.554863, 63.810487], - [-22.554965, 63.810551], - [-22.55525, 63.810503], - [-22.555284, 63.810378], - [-22.55548, 63.810342], - [-22.555599, 63.810281], - [-22.555884, 63.810289], - [-22.555901, 63.810397], - [-22.556044, 63.81042], - [-22.556084, 63.810573], - [-22.556275, 63.81059], - [-22.556287, 63.810504], - [-22.556388, 63.810446], - [-22.556483, 63.810417], - [-22.556477, 63.810462], - [-22.556382, 63.810541], - [-22.556441, 63.810548], - [-22.556673, 63.810491], - [-22.556803, 63.810423], - [-22.55688, 63.810347], - [-22.557106, 63.8103], - [-22.557177, 63.810326], - [-22.557183, 63.810368], - [-22.557094, 63.810423], - [-22.557159, 63.810457], - [-22.557141, 63.810517], - [-22.557007, 63.810559], - [-22.556773, 63.810569], - [-22.556803, 63.810653], - [-22.556957, 63.81074], - [-22.557189, 63.810795], - [-22.557332, 63.810675], - [-22.55764, 63.810699], - [-22.557847, 63.810749], - [-22.558328, 63.810778], - [-22.558844, 63.810801], - [-22.55917, 63.810791], - [-22.559313, 63.810851], - [-22.559704, 63.81088], - [-22.560054, 63.810937], - [-22.56025, 63.810877], - [-22.560511, 63.810764], - [-22.560612, 63.810867], - [-22.560754, 63.810877], - [-22.560826, 63.810932], - [-22.560938, 63.811029], - [-22.561128, 63.81099], - [-22.561156, 63.810872], - [-22.561223, 63.810853], - [-22.561674, 63.81094], - [-22.562083, 63.811026], - [-22.562237, 63.810937], - [-22.562417, 63.810898], - [-22.56254, 63.810963], - [-22.562463, 63.811003], - [-22.562439, 63.81111], - [-22.562593, 63.811097], - [-22.563164, 63.811159], - [-22.56376, 63.81125], - [-22.563945, 63.811282], - [-22.563976, 63.8113], - [-22.564071, 63.811292], - [-22.56431, 63.811284], - [-22.564406, 63.811292], - [-22.564476, 63.811277], - [-22.564478, 63.81123], - [-22.564547, 63.811229], - [-22.564587, 63.811262], - [-22.564603, 63.811305], - [-22.564708, 63.8113], - [-22.564769, 63.811284], - [-22.564989, 63.811257], - [-22.565136, 63.811225], - [-22.565239, 63.811246], - [-22.565304, 63.811272], - [-22.565449, 63.811326], - [-22.565589, 63.811327], - [-22.565642, 63.8113], - [-22.56574, 63.811281], - [-22.565835, 63.811265], - [-22.565946, 63.811231], - [-22.566026, 63.811276], - [-22.565996, 63.811304], - [-22.56594, 63.811314], - [-22.566084, 63.811353], - [-22.566228, 63.811459], - [-22.56653, 63.811444], - [-22.566667, 63.81147], - [-22.566791, 63.811497], - [-22.566957, 63.811523], - [-22.567029, 63.811521], - [-22.567192, 63.811523], - [-22.56723, 63.811588], - [-22.567281, 63.811656], - [-22.567328, 63.81166], - [-22.567414, 63.811583], - [-22.56762, 63.811553], - [-22.567922, 63.811756], - [-22.568716, 63.811911], - [-22.569191, 63.812047], - [-22.569399, 63.812145], - [-22.569719, 63.812151], - [-22.57022, 63.812223], - [-22.570327, 63.812281], - [-22.570443, 63.812262], - [-22.570581, 63.812218], - [-22.570742, 63.812211], - [-22.571087, 63.812335], - [-22.571447, 63.812388], - [-22.572391, 63.812467], - [-22.572635, 63.812441], - [-22.572731, 63.812473], - [-22.572884, 63.812477], - [-22.572956, 63.812506], - [-22.573114, 63.812521], - [-22.573232, 63.812523], - [-22.573367, 63.812543], - [-22.573463, 63.812532], - [-22.573511, 63.81256], - [-22.573797, 63.812588], - [-22.573981, 63.812636], - [-22.574105, 63.812637], - [-22.574235, 63.812639], - [-22.574224, 63.812691], - [-22.574279, 63.812688], - [-22.574338, 63.812675], - [-22.574446, 63.812714], - [-22.57455, 63.812721], - [-22.574652, 63.812697], - [-22.574694, 63.812684], - [-22.574719, 63.812654], - [-22.574772, 63.812657], - [-22.574818, 63.812686], - [-22.574843, 63.812751], - [-22.574954, 63.812806], - [-22.574994, 63.812852], - [-22.575084, 63.812862], - [-22.575179, 63.812863], - [-22.575156, 63.812827], - [-22.575214, 63.812809], - [-22.575232, 63.812853], - [-22.575368, 63.812875], - [-22.575552, 63.812893], - [-22.575735, 63.812989], - [-22.575756, 63.813019], - [-22.575852, 63.813025], - [-22.575947, 63.813016], - [-22.575991, 63.812962], - [-22.576259, 63.813025], - [-22.576324, 63.813081], - [-22.576437, 63.813091], - [-22.576477, 63.813274], - [-22.576842, 63.813349], - [-22.576939, 63.813356], - [-22.577033, 63.813333], - [-22.577148, 63.813237], - [-22.577329, 63.813349], - [-22.577541, 63.813385], - [-22.578136, 63.81348], - [-22.578612, 63.813544], - [-22.578625, 63.81358], - [-22.578694, 63.813621], - [-22.57881, 63.81363], - [-22.57898, 63.813606], - [-22.579317, 63.813675], - [-22.579527, 63.813703], - [-22.579652, 63.813646], - [-22.579743, 63.813654], - [-22.579787, 63.813688], - [-22.579936, 63.81367], - [-22.580039, 63.813641], - [-22.580087, 63.813687], - [-22.580125, 63.813743], - [-22.580481, 63.813679], - [-22.580685, 63.813698], - [-22.580744, 63.813697], - [-22.580811, 63.813686], - [-22.580842, 63.813696], - [-22.580878, 63.813723], - [-22.581144, 63.813712], - [-22.581304, 63.813732], - [-22.581385, 63.813759], - [-22.581484, 63.813741], - [-22.581656, 63.813706], - [-22.581826, 63.813694], - [-22.581859, 63.813674], - [-22.581872, 63.81365], - [-22.582103, 63.813629], - [-22.582287, 63.813634], - [-22.582289, 63.813656], - [-22.582373, 63.81365], - [-22.582457, 63.813647], - [-22.582604, 63.813679], - [-22.582709, 63.81372], - [-22.582801, 63.813752], - [-22.582896, 63.813743], - [-22.582952, 63.813725], - [-22.583007, 63.813762], - [-22.583072, 63.813797], - [-22.583053, 63.813843], - [-22.58308, 63.813854], - [-22.583149, 63.813831], - [-22.583208, 63.813837], - [-22.583242, 63.813868], - [-22.583307, 63.813895], - [-22.583359, 63.81387], - [-22.583416, 63.813864], - [-22.583447, 63.813853], - [-22.583531, 63.813848], - [-22.583611, 63.813854], - [-22.58354, 63.813867], - [-22.583483, 63.81388], - [-22.583538, 63.813937], - [-22.583506, 63.81396], - [-22.583567, 63.814002], - [-22.583657, 63.814041], - [-22.583743, 63.814086], - [-22.583791, 63.814106], - [-22.583833, 63.814132], - [-22.583907, 63.814147], - [-22.583936, 63.814158], - [-22.58398, 63.81413], - [-22.584047, 63.814118], - [-22.584085, 63.814131], - [-22.584089, 63.814149], - [-22.584131, 63.81415], - [-22.584179, 63.81416], - [-22.58415, 63.814178], - [-22.584207, 63.814183], - [-22.584257, 63.81417], - [-22.584324, 63.814145], - [-22.584364, 63.814204], - [-22.584475, 63.814217], - [-22.584528, 63.814217], - [-22.584532, 63.814255], - [-22.58459, 63.814278], - [-22.584607, 63.814304], - [-22.584536, 63.814334], - [-22.584582, 63.814367], - [-22.584614, 63.814364], - [-22.584683, 63.814365], - [-22.584744, 63.814361], - [-22.58483, 63.814414], - [-22.584914, 63.814416], - [-22.584941, 63.814435], - [-22.584983, 63.814449], - [-22.585023, 63.814441], - [-22.585035, 63.814425], - [-22.58509, 63.814419], - [-22.585123, 63.814441], - [-22.585061, 63.81446], - [-22.585094, 63.814499], - [-22.585249, 63.814524], - [-22.585409, 63.81454], - [-22.585515, 63.81454], - [-22.5856, 63.81452], - [-22.585734, 63.814537], - [-22.585797, 63.814529], - [-22.585912, 63.814532], - [-22.586086, 63.814561], - [-22.586132, 63.814552], - [-22.586162, 63.814567], - [-22.586317, 63.814574], - [-22.586403, 63.8146], - [-22.586417, 63.814586], - [-22.586495, 63.814584], - [-22.58652, 63.814557], - [-22.58668, 63.814556], - [-22.586787, 63.814601], - [-22.586885, 63.814618], - [-22.586921, 63.814597], - [-22.586973, 63.814582], - [-22.587078, 63.814557], - [-22.587063, 63.814598], - [-22.587108, 63.814634], - [-22.587165, 63.814644], - [-22.587429, 63.814667], - [-22.58758, 63.814676], - [-22.587658, 63.814677], - [-22.587721, 63.81466], - [-22.587817, 63.814674], - [-22.587895, 63.814672], - [-22.588073, 63.814696], - [-22.58818, 63.814699], - [-22.58826, 63.814703], - [-22.588354, 63.814659], - [-22.588396, 63.814686], - [-22.588554, 63.814678], - [-22.5886, 63.814733], - [-22.588702, 63.814726], - [-22.588749, 63.814718], - [-22.588833, 63.814693], - [-22.588885, 63.814707], - [-22.588912, 63.814751], - [-22.588908, 63.81479], - [-22.588971, 63.814828], - [-22.58912, 63.814829], - [-22.589258, 63.814787], - [-22.589281, 63.814811], - [-22.58933, 63.814835], - [-22.589435, 63.814808], - [-22.589445, 63.814825], - [-22.589332, 63.814853], - [-22.589479, 63.814854], - [-22.589558, 63.81484], - [-22.589586, 63.814803], - [-22.589583, 63.814777], - [-22.589594, 63.814759], - [-22.589541, 63.81475], - [-22.5895, 63.814739], - [-22.589493, 63.814686], - [-22.589554, 63.814642], - [-22.589693, 63.814646], - [-22.589764, 63.814666], - [-22.589806, 63.814679], - [-22.589837, 63.814679], - [-22.589839, 63.814701], - [-22.589854, 63.81471], - [-22.589827, 63.814727], - [-22.589781, 63.814744], - [-22.58976, 63.814775], - [-22.58973, 63.814792], - [-22.589716, 63.814832], - [-22.589665, 63.814859], - [-22.58959, 63.814876], - [-22.589437, 63.814905], - [-22.589407, 63.814923], - [-22.589414, 63.814967], - [-22.589397, 63.815029], - [-22.589472, 63.815065], - [-22.589495, 63.815117], - [-22.589476, 63.815144], - [-22.589618, 63.815169], - [-22.589697, 63.815168], - [-22.589762, 63.815173], - [-22.589795, 63.815196], - [-22.589827, 63.81519], - [-22.589841, 63.815209], - [-22.589871, 63.815211], - [-22.589902, 63.81519], - [-22.590051, 63.815178], - [-22.589984, 63.81514], - [-22.589971, 63.815068], - [-22.589997, 63.814992], - [-22.590099, 63.814962], - [-22.590213, 63.815011], - [-22.590206, 63.81505], - [-22.590171, 63.815075], - [-22.590102, 63.815098], - [-22.590122, 63.815132], - [-22.590196, 63.815167], - [-22.590267, 63.815174], - [-22.590389, 63.815172], - [-22.590446, 63.815127], - [-22.590523, 63.81513], - [-22.590571, 63.815143], - [-22.590564, 63.815164], - [-22.59054, 63.815216], - [-22.590557, 63.815255], - [-22.59059, 63.815307], - [-22.590634, 63.815347], - [-22.590701, 63.815364], - [-22.590739, 63.815305], - [-22.590752, 63.815192], - [-22.590886, 63.815119], - [-22.590976, 63.815187], - [-22.590934, 63.815251], - [-22.590978, 63.815277], - [-22.591031, 63.815258], - [-22.591094, 63.815272], - [-22.591248, 63.815411], - [-22.591297, 63.815411], - [-22.591375, 63.815399], - [-22.591465, 63.815369], - [-22.591519, 63.815374], - [-22.591652, 63.815376], - [-22.591694, 63.815359], - [-22.591807, 63.815324], - [-22.591861, 63.815335], - [-22.591924, 63.815298], - [-22.592002, 63.815307], - [-22.592044, 63.815321], - [-22.592105, 63.815367], - [-22.592029, 63.815422], - [-22.592019, 63.815471], - [-22.592052, 63.815514], - [-22.592059, 63.815543], - [-22.592071, 63.815607], - [-22.5921, 63.815611], - [-22.592172, 63.815595], - [-22.59221, 63.815583], - [-22.592228, 63.815597], - [-22.592254, 63.815615], - [-22.592239, 63.81573], - [-22.592256, 63.815756], - [-22.592321, 63.815758], - [-22.592457, 63.815713], - [-22.592633, 63.815656], - [-22.592715, 63.815623], - [-22.592807, 63.815592], - [-22.592979, 63.815595], - [-22.592883, 63.815645], - [-22.592906, 63.815689], - [-22.59283, 63.815782], - [-22.592807, 63.81581], - [-22.592734, 63.815832], - [-22.592734, 63.815862], - [-22.592798, 63.815873], - [-22.592912, 63.815883], - [-22.593038, 63.815877], - [-22.593097, 63.815855], - [-22.593128, 63.815818], - [-22.593237, 63.815778], - [-22.593275, 63.815698], - [-22.593388, 63.815709], - [-22.593374, 63.815755], - [-22.593378, 63.815778], - [-22.593405, 63.815805], - [-22.59337, 63.815865], - [-22.593319, 63.815906], - [-22.593325, 63.815944], - [-22.593349, 63.815966], - [-22.593411, 63.815979], - [-22.593483, 63.81598], - [-22.5935, 63.815992], - [-22.593447, 63.816004], - [-22.593479, 63.816007], - [-22.593476, 63.816023], - [-22.593426, 63.81604], - [-22.593367, 63.816055], - [-22.593374, 63.816077], - [-22.593321, 63.816083], - [-22.593317, 63.816091], - [-22.593365, 63.816096], - [-22.593414, 63.816081], - [-22.593487, 63.816088], - [-22.593567, 63.816081], - [-22.593646, 63.816078], - [-22.593686, 63.816062], - [-22.59373, 63.816043], - [-22.593737, 63.816065], - [-22.593697, 63.81609], - [-22.593726, 63.816122], - [-22.593755, 63.816142], - [-22.593839, 63.816146], - [-22.593917, 63.816139], - [-22.59399, 63.816149], - [-22.594016, 63.816161], - [-22.593986, 63.816171], - [-22.593938, 63.816169], - [-22.59393, 63.816185], - [-22.593955, 63.816198], - [-22.593898, 63.816224], - [-22.5939, 63.816243], - [-22.593921, 63.816251], - [-22.593896, 63.81626], - [-22.593902, 63.816272], - [-22.59394, 63.816284], - [-22.593972, 63.816311], - [-22.59399, 63.816343], - [-22.594009, 63.816393], - [-22.594057, 63.816431], - [-22.594131, 63.816441], - [-22.594162, 63.816465], - [-22.594202, 63.816471], - [-22.594211, 63.816507], - [-22.594303, 63.816528], - [-22.594364, 63.816555], - [-22.594336, 63.816595], - [-22.594324, 63.816657], - [-22.594334, 63.816677], - [-22.594385, 63.816663], - [-22.594479, 63.816666], - [-22.59458, 63.816698], - [-22.594571, 63.816726], - [-22.594613, 63.816744], - [-22.594739, 63.816747], - [-22.594737, 63.816708], - [-22.594713, 63.816682], - [-22.594748, 63.816635], - [-22.594846, 63.816616], - [-22.594926, 63.816604], - [-22.594985, 63.816612], - [-22.594999, 63.816639], - [-22.595003, 63.816673], - [-22.594932, 63.816707], - [-22.594999, 63.816707], - [-22.595092, 63.816725], - [-22.595094, 63.816778], - [-22.595012, 63.816921], - [-22.595104, 63.816892], - [-22.595257, 63.816809], - [-22.595499, 63.8167], - [-22.595572, 63.816721], - [-22.595595, 63.816706], - [-22.595671, 63.816701], - [-22.595679, 63.816663], - [-22.5957, 63.816684], - [-22.595738, 63.816718], - [-22.595824, 63.816697], - [-22.595845, 63.816741], - [-22.595893, 63.816723], - [-22.595991, 63.816736], - [-22.59601, 63.816786], - [-22.596117, 63.816758], - [-22.596136, 63.816796], - [-22.59618, 63.816825], - [-22.59617, 63.816855], - [-22.596166, 63.816874], - [-22.59613, 63.816905], - [-22.596115, 63.816938], - [-22.596132, 63.816961], - [-22.596172, 63.816982], - [-22.596184, 63.817017], - [-22.596138, 63.817026], - [-22.596111, 63.817075], - [-22.596042, 63.817106], - [-22.59604, 63.817134], - [-22.596027, 63.817165], - [-22.596019, 63.817185], - [-22.596092, 63.817185], - [-22.596145, 63.817177], - [-22.596187, 63.817192], - [-22.596237, 63.817183], - [-22.59622, 63.817149], - [-22.596273, 63.817098], - [-22.596256, 63.817046], - [-22.59634, 63.817036], - [-22.596369, 63.817029], - [-22.596453, 63.817067], - [-22.596392, 63.817096], - [-22.596338, 63.817151], - [-22.596327, 63.817178], - [-22.596447, 63.817187], - [-22.59656, 63.81716], - [-22.596644, 63.817179], - [-22.596707, 63.817213], - [-22.596753, 63.817241], - [-22.596755, 63.817257], - [-22.596841, 63.817243], - [-22.59686, 63.817245], - [-22.596864, 63.817276], - [-22.59686, 63.817307], - [-22.59683, 63.817306], - [-22.596799, 63.817311], - [-22.596795, 63.817322], - [-22.596839, 63.817347], - [-22.596904, 63.817346], - [-22.596952, 63.81735], - [-22.596952, 63.817333], - [-22.597013, 63.817338], - [-22.597114, 63.817334], - [-22.597151, 63.817373], - [-22.597059, 63.817469], - [-22.597097, 63.817476], - [-22.597128, 63.817472], - [-22.59717, 63.817476], - [-22.597275, 63.817513], - [-22.597294, 63.817503], - [-22.597372, 63.817502], - [-22.597466, 63.817473], - [-22.597552, 63.81746], - [-22.597516, 63.817519], - [-22.597525, 63.817583], - [-22.597482, 63.817644], - [-22.597521, 63.817721], - [-22.597564, 63.817742], - [-22.597684, 63.817721], - [-22.597788, 63.817737], - [-22.597837, 63.817783], - [-22.597871, 63.817831], - [-22.597921, 63.817874], - [-22.597883, 63.817922], - [-22.597874, 63.817959], - [-22.597776, 63.817977], - [-22.597726, 63.818001], - [-22.597852, 63.81806], - [-22.597987, 63.817986], - [-22.598185, 63.817901], - [-22.598248, 63.817879], - [-22.598289, 63.817806], - [-22.598369, 63.817815], - [-22.598384, 63.817853], - [-22.598348, 63.81792], - [-22.59834, 63.817984], - [-22.598219, 63.818041], - [-22.598298, 63.818072], - [-22.598399, 63.81807], - [-22.598491, 63.818015], - [-22.598787, 63.817951], - [-22.598966, 63.817891], - [-22.59917, 63.817856], - [-22.599111, 63.817937], - [-22.599054, 63.818003], - [-22.599057, 63.818038], - [-22.598826, 63.818047], - [-22.598832, 63.818136], - [-22.598885, 63.818175], - [-22.598942, 63.8182], - [-22.598995, 63.818229], - [-22.598885, 63.818252], - [-22.598817, 63.818225], - [-22.59879, 63.818235], - [-22.598826, 63.81828], - [-22.599066, 63.818392], - [-22.599191, 63.818422], - [-22.59939, 63.818395], - [-22.59939, 63.818336], - [-22.599366, 63.818261], - [-22.599224, 63.818208], - [-22.599324, 63.818214], - [-22.59944, 63.818178], - [-22.599565, 63.818189], - [-22.599661, 63.818224], - [-22.599802, 63.818287], - [-22.599998, 63.818336], - [-22.600078, 63.818406], - [-22.600208, 63.818478], - [-22.600291, 63.81853], - [-22.600241, 63.818579], - [-22.600161, 63.818625], - [-22.60018, 63.818664], - [-22.600274, 63.818641], - [-22.600354, 63.818673], - [-22.600363, 63.818707], - [-22.600413, 63.818702], - [-22.600521, 63.818661], - [-22.600636, 63.818655], - [-22.600668, 63.818691], - [-22.600716, 63.818719], - [-22.600819, 63.818761], - [-22.600849, 63.818806], - [-22.600947, 63.818806], - [-22.601048, 63.818793], - [-22.601128, 63.818795], - [-22.601264, 63.81878], - [-22.601285, 63.818837], - [-22.60133, 63.818859], - [-22.601315, 63.818897], - [-22.601404, 63.818964], - [-22.601333, 63.81899], - [-22.60141, 63.819016], - [-22.601413, 63.819064], - [-22.601522, 63.819046], - [-22.601653, 63.819071], - [-22.601739, 63.819096], - [-22.601697, 63.819164], - [-22.601695, 63.819231], - [-22.601789, 63.81927], - [-22.601965, 63.819248], - [-22.602077, 63.819216], - [-22.602193, 63.819135], - [-22.602288, 63.819123], - [-22.602451, 63.819063], - [-22.602644, 63.819045], - [-22.602745, 63.819013], - [-22.602819, 63.819045], - [-22.60289, 63.81905], - [-22.602967, 63.819045], - [-22.602993, 63.819033], - [-22.602982, 63.819007], - [-22.603122, 63.818989], - [-22.603366, 63.819005], - [-22.603575, 63.819013], - [-22.603708, 63.819032], - [-22.603842, 63.819024], - [-22.604093, 63.819023], - [-22.604083, 63.818997], - [-22.604188, 63.818954], - [-22.60433, 63.818926], - [-22.604355, 63.818884], - [-22.604443, 63.818934], - [-22.604427, 63.818974], - [-22.604536, 63.81905], - [-22.604586, 63.819059], - [-22.604595, 63.819108], - [-22.604649, 63.819121], - [-22.604716, 63.819124], - [-22.604775, 63.819148], - [-22.604733, 63.819182], - [-22.604662, 63.819197], - [-22.60459, 63.819178], - [-22.604548, 63.819156], - [-22.604481, 63.819211], - [-22.604582, 63.819267], - [-22.604834, 63.819282], - [-22.604867, 63.819237], - [-22.604968, 63.819189], - [-22.604892, 63.819167], - [-22.604834, 63.819134], - [-22.604985, 63.819093], - [-22.605069, 63.819115], - [-22.605161, 63.819233], - [-22.605262, 63.819267], - [-22.60548, 63.8193], - [-22.605505, 63.819259], - [-22.605622, 63.819241], - [-22.605689, 63.81913], - [-22.605673, 63.819048], - [-22.605807, 63.819041], - [-22.605958, 63.819052], - [-22.606008, 63.819056], - [-22.606124, 63.819092], - [-22.606142, 63.819185], - [-22.606276, 63.81928], - [-22.606604, 63.819389], - [-22.606898, 63.819356], - [-22.607162, 63.819377], - [-22.607614, 63.819386], - [-22.607797, 63.819502], - [-22.608083, 63.819517], - [-22.608367, 63.819509], - [-22.608787, 63.819454], - [-22.609172, 63.819429], - [-22.609671, 63.819475], - [-22.609945, 63.819524], - [-22.610193, 63.819601], - [-22.61088, 63.819937], - [-22.61138, 63.820013], - [-22.611824, 63.820124], - [-22.611979, 63.820093], - [-22.612697, 63.820176], - [-22.612781, 63.820128], - [-22.613041, 63.820128], - [-22.613444, 63.82015], - [-22.613704, 63.820198], - [-22.613968, 63.820376], - [-22.614216, 63.820394], - [-22.614602, 63.820454], - [-22.615388, 63.820493], - [-22.615567, 63.820476], - [-22.616037, 63.820454], - [-22.616255, 63.820468], - [-22.616777, 63.820386], - [-22.616657, 63.819806], - [-22.616892, 63.819769], - [-22.617127, 63.819695], - [-22.61732, 63.819713], - [-22.617522, 63.819743], - [-22.617631, 63.819624], - [-22.617354, 63.819532], - [-22.617509, 63.819479], - [-22.618126, 63.819621], - [-22.618453, 63.819691], - [-22.618654, 63.819676], - [-22.618805, 63.819617], - [-22.619023, 63.819591], - [-22.618969, 63.819542], - [-22.619225, 63.819558], - [-22.619317, 63.819528], - [-22.61956, 63.819524], - [-22.619745, 63.819547], - [-22.619871, 63.819536], - [-22.619879, 63.819443], - [-22.620013, 63.819417], - [-22.620257, 63.819462], - [-22.620349, 63.819465], - [-22.620483, 63.819539], - [-22.620735, 63.819587], - [-22.620777, 63.819628], - [-22.620878, 63.81968], - [-22.621045, 63.819658], - [-22.621138, 63.81958], - [-22.621222, 63.819524], - [-22.621389, 63.81958], - [-22.621381, 63.819676], - [-22.621389, 63.819721], - [-22.621566, 63.819684], - [-22.621658, 63.819717], - [-22.622028, 63.819782], - [-22.622515, 63.819731], - [-22.622754, 63.819636], - [-22.622987, 63.819594], - [-22.623146, 63.819716], - [-22.623063, 63.81976], - [-22.623272, 63.819888], - [-22.623151, 63.819971], - [-22.623033, 63.820041], - [-22.62292, 63.820066], - [-22.622828, 63.820092], - [-22.622962, 63.820108], - [-22.623, 63.820149], - [-22.622974, 63.820203], - [-22.623419, 63.820328], - [-22.623965, 63.820447], - [-22.624103, 63.820458], - [-22.624262, 63.820449], - [-22.624418, 63.820419], - [-22.624556, 63.820454], - [-22.624516, 63.820506], - [-22.624655, 63.820564], - [-22.624857, 63.820579], - [-22.62499, 63.820517], - [-22.625074, 63.820451], - [-22.625204, 63.820404], - [-22.625225, 63.820323], - [-22.625317, 63.820303], - [-22.62546, 63.820315], - [-22.625573, 63.820306], - [-22.625698, 63.820351], - [-22.625867, 63.820371], - [-22.626014, 63.820375], - [-22.626059, 63.820387], - [-22.626005, 63.820414], - [-22.626081, 63.820512], - [-22.626278, 63.82056], - [-22.626165, 63.82061], - [-22.626014, 63.820632], - [-22.626106, 63.820706], - [-22.626381, 63.820763], - [-22.626756, 63.820853], - [-22.626918, 63.820884], - [-22.62709, 63.820895], - [-22.6274, 63.820911], - [-22.628009, 63.820887], - [-22.628302, 63.820863], - [-22.628483, 63.820826], - [-22.628617, 63.820741], - [-22.628575, 63.820693], - [-22.628634, 63.820632], - [-22.628655, 63.820576], - [-22.628575, 63.820521], - [-22.628726, 63.820463], - [-22.628831, 63.820467], - [-22.629032, 63.820417], - [-22.629288, 63.820368], - [-22.629221, 63.820323], - [-22.629124, 63.820299], - [-22.629187, 63.820241], - [-22.62933, 63.820169], - [-22.629418, 63.820208], - [-22.629494, 63.820227], - [-22.62951, 63.820184], - [-22.629636, 63.820153], - [-22.629712, 63.820097], - [-22.629418, 63.820058], - [-22.629326, 63.820058], - [-22.629372, 63.819986], - [-22.629464, 63.819951], - [-22.629489, 63.819886], - [-22.629435, 63.819813], - [-22.629292, 63.819757], - [-22.629333, 63.819709], - [-22.629599, 63.819743], - [-22.62988, 63.819837], - [-22.629703, 63.819883], - [-22.629737, 63.819954], - [-22.629812, 63.82002], - [-22.630039, 63.82005], - [-22.630165, 63.820083], - [-22.630316, 63.820142], - [-22.63109, 63.820046], - [-22.631789, 63.819779], - [-22.632323, 63.819532], - [-22.632571, 63.819408], - [-22.632678, 63.81922], - [-22.633692, 63.818459], - [-22.634415, 63.818176], - [-22.635292, 63.817805], - [-22.636517, 63.817583], - [-22.638195, 63.81752], - [-22.638245, 63.817494], - [-22.638564, 63.817494], - [-22.638595, 63.817369], - [-22.63895, 63.817131], - [-22.63937, 63.817065], - [-22.639734, 63.816983], - [-22.63994, 63.816798], - [-22.641326, 63.816259], - [-22.642491, 63.81598], - [-22.644353, 63.815339], - [-22.644706, 63.815125], - [-22.645867, 63.814813], - [-22.648019, 63.814595], - [-22.649559, 63.814325], - [-22.65185, 63.814203], - [-22.652916, 63.813811], - [-22.65414, 63.813488], - [-22.65566, 63.812626], - [-22.656115, 63.811998], - [-22.657299, 63.811214], - [-22.658109, 63.8107], - [-22.659629, 63.810787], - [-22.660557, 63.810473], - [-22.662591, 63.810125], - [-22.665533, 63.809096], - [-22.667073, 63.808661], - [-22.668791, 63.808565], - [-22.670331, 63.808094], - [-22.671772, 63.807737], - [-22.673885, 63.80731], - [-22.675109, 63.807005], - [-22.676274, 63.806674], - [-22.67659, 63.806072], - [-22.678545, 63.805558], - [-22.679848, 63.80534], - [-22.680658, 63.805096], - [-22.681132, 63.804669], - [-22.682139, 63.804059], - [-22.682849, 63.803501], - [-22.684469, 63.802359], - [-22.685811, 63.801758], - [-22.687648, 63.801357], - [-22.689602, 63.801043], - [-22.690807, 63.801086], - [-22.691972, 63.800947], - [-22.69209, 63.800572], - [-22.700166, 63.799779], - [-22.699949, 63.800589], - [-22.70064, 63.800938], - [-22.702121, 63.80086], - [-22.703365, 63.800136], - [-22.705359, 63.80038], - [-22.70312, 63.80244], - [-22.70309, 63.8027], - [-22.703295, 63.802881], - [-22.703539, 63.803046], - [-22.70387, 63.80323], - [-22.70408, 63.80375], - [-22.70435, 63.80389], - [-22.70462, 63.80402], - [-22.705002, 63.804317], - [-22.70549, 63.804662], - [-22.705783, 63.805042], - [-22.706448, 63.805674], - [-22.706912, 63.806106], - [-22.707653, 63.806801], - [-22.708128, 63.80718], - [-22.708875, 63.808082], - [-22.709316, 63.808517], - [-22.70968, 63.808811], - [-22.710217, 63.809156], - [-22.710803, 63.809554], - [-22.711065, 63.80982], - [-22.711297, 63.809953], - [-22.711615, 63.810167], - [-22.711945, 63.810391], - [-22.712238, 63.810573], - [-22.712335, 63.810716], - [-22.712435, 63.810904], - [-22.71214, 63.81121], - [-22.712287, 63.811292], - [-22.712698, 63.811455], - [-22.713394, 63.811081], - [-22.7137, 63.811126], - [-22.712956, 63.811663], - [-22.712131, 63.811942], - [-22.712237, 63.812001], - [-22.71257, 63.811918], - [-22.713223, 63.812131], - [-22.713679, 63.812181], - [-22.71414, 63.811874], - [-22.714392, 63.811955], - [-22.714448, 63.812084], - [-22.714678, 63.812109], - [-22.715041, 63.812116], - [-22.71541, 63.812133], - [-22.71607, 63.8122], - [-22.717129, 63.812095], - [-22.71743, 63.812256], - [-22.71754, 63.81248], - [-22.71781, 63.81262], - [-22.71807, 63.81275], - [-22.71921, 63.81291], - [-22.720008, 63.813236], - [-22.72144, 63.81349], - [-22.721913, 63.813746], - [-22.722274, 63.813917], - [-22.723705, 63.814238], - [-22.724306, 63.815029], - [-22.724279, 63.81546], - [-22.724076, 63.815539], - [-22.724049, 63.815649], - [-22.724533, 63.815958], - [-22.725275, 63.816306], - [-22.726283, 63.816604], - [-22.727259, 63.816839], - [-22.728177, 63.817185], - [-22.728538, 63.817374], - [-22.7288, 63.81747], - [-22.729271, 63.817661], - [-22.7306, 63.81813], - [-22.730847, 63.818191], - [-22.731335, 63.818217], - [-22.732568, 63.818102], - [-22.733524, 63.81787], - [-22.73414, 63.81771], - [-22.735269, 63.817495], - [-22.73595, 63.81724], - [-22.7371, 63.81729], - [-22.737728, 63.817468], - [-22.73818, 63.81782], - [-22.73777, 63.81859], - [-22.7377, 63.8191], - [-22.73697, 63.8201], - [-22.73631, 63.82059], - [-22.735979, 63.820854], - [-22.735574, 63.821046], - [-22.735239, 63.821294], - [-22.735075, 63.821972], - [-22.73519, 63.82222], - [-22.735176, 63.823114], - [-22.73498, 63.82363], - [-22.7349, 63.82414], - [-22.734244, 63.824409], - [-22.73422, 63.82482], - [-22.733798, 63.82506], - [-22.73348, 63.825166], - [-22.733452, 63.825408], - [-22.73323, 63.82563], - [-22.732889, 63.825912], - [-22.73257, 63.82612], - [-22.732357, 63.82636], - [-22.731461, 63.826785], - [-22.73092, 63.827067], - [-22.7295, 63.827475], - [-22.728787, 63.827394], - [-22.72797, 63.82778], - [-22.72734, 63.82814], - [-22.726209, 63.8285], - [-22.72551, 63.82873], - [-22.72514, 63.82923], - [-22.724372, 63.829711], - [-22.723891, 63.830031], - [-22.723843, 63.830403], - [-22.724585, 63.830537], - [-22.724457, 63.830683], - [-22.723909, 63.830785], - [-22.72252, 63.8312], - [-22.721954, 63.831464], - [-22.72121, 63.83219], - [-22.72055, 63.83269], - [-22.72019, 63.83318], - [-22.71959, 63.83329], - [-22.719063, 63.833947], - [-22.718103, 63.834235], - [-22.716652, 63.834327], - [-22.715588, 63.834448], - [-22.714414, 63.834568], - [-22.714041, 63.835024], - [-22.713654, 63.835496], - [-22.71223, 63.836252], - [-22.710947, 63.836686], - [-22.70996, 63.837023], - [-22.709245, 63.837234], - [-22.70876, 63.83771], - [-22.70872, 63.83797], - [-22.708539, 63.838394], - [-22.707868, 63.83888], - [-22.707849, 63.839587], - [-22.707333, 63.839847], - [-22.706848, 63.840342], - [-22.706344, 63.840776], - [-22.70587, 63.84147], - [-22.705368, 63.841747], - [-22.70521, 63.84196], - [-22.70514, 63.84247], - [-22.70502, 63.84324], - [-22.70498, 63.84349], - [-22.70428, 63.84424], - [-22.70359, 63.84499], - [-22.703399, 63.845381], - [-22.703606, 63.845617], - [-22.70346, 63.84575], - [-22.703677, 63.845996], - [-22.70426, 63.84629], - [-22.70533, 63.846581], - [-22.705995, 63.847014], - [-22.705704, 63.847968], - [-22.705335, 63.848549], - [-22.704467, 63.849465], - [-22.704265, 63.850016], - [-22.704115, 63.85095], - [-22.704399, 63.851446], - [-22.703289, 63.851881], - [-22.702453, 63.852017], - [-22.70163, 63.8521], - [-22.700901, 63.852111], - [-22.700042, 63.852395], - [-22.699727, 63.852575], - [-22.699447, 63.852824], - [-22.698899, 63.853777], - [-22.699053, 63.853966], - [-22.69928, 63.854096], - [-22.6998, 63.85461], - [-22.69976, 63.85486], - [-22.699408, 63.855138], - [-22.699009, 63.85569], - [-22.698149, 63.855826], - [-22.697268, 63.856061], - [-22.69662, 63.85631], - [-22.69602, 63.85655], - [-22.69598, 63.8568], - [-22.696529, 63.857977], - [-22.697272, 63.858933], - [-22.698186, 63.859914], - [-22.699342, 63.86102], - [-22.700194, 63.861651], - [-22.70098, 63.86207], - [-22.70125, 63.86221], - [-22.70152, 63.86235], - [-22.70179, 63.86248], - [-22.702634, 63.862851], - [-22.70313, 63.86316], - [-22.704087, 63.863196], - [-22.708779, 63.862869], - [-22.70982, 63.86312], - [-22.71003, 63.86363], - [-22.7103, 63.86376], - [-22.71142, 63.86405], - [-22.712, 63.86407], - [-22.71258, 63.86408], - [-22.71371, 63.86425], - [-22.71385, 63.86528], - [-22.71412, 63.86541], - [-22.71525, 63.86557], - [-22.71547, 63.86609], - [-22.71574, 63.86623], - [-22.71685, 63.86652], - [-22.71797, 63.86681], - [-22.71909, 63.8671], - [-22.72078, 63.8674], - [-22.72136, 63.86742], - [-22.72194, 63.86744], - [-22.72325, 63.86837], - [-22.72352, 63.86851], - [-22.72379, 63.86864], - [-22.7243, 63.86917], - [-22.72456, 63.86931], - [-22.72684, 63.86963], - [-22.72711, 63.86977], - [-22.72707, 63.87002], - [-22.72703, 63.87028], - [-22.7273, 63.87041], - [-22.72757, 63.87055], - [-22.72807, 63.87108], - [-22.73001, 63.87165], - [-22.731134, 63.872188], - [-22.732125, 63.87242], - [-22.73389, 63.87291], - [-22.73564, 63.87284], - [-22.73622, 63.87286], - [-22.73644, 63.87337], - [-22.7378, 63.87393], - [-22.73888, 63.87448], - [-22.73956, 63.87577], - [-22.73952, 63.87603], - [-22.73943, 63.87654], - [-22.73983, 63.87783], - [-22.73979, 63.87808], - [-22.73971, 63.87859], - [-22.73963, 63.8791], - [-22.73959, 63.87936], - [-22.73948, 63.88012], - [-22.73986, 63.88142], - [-22.73979, 63.88193], - [-22.73905, 63.88293], - [-22.73901, 63.88319], - [-22.73952, 63.88371], - [-22.73998, 63.88449], - [-22.740018, 63.884875], - [-22.740473, 63.884879], - [-22.741022, 63.885268], - [-22.740566, 63.885493], - [-22.741148, 63.885727], - [-22.74165, 63.886038], - [-22.74137, 63.88684], - [-22.741106, 63.887149], - [-22.741636, 63.887426], - [-22.74092, 63.887517], - [-22.740983, 63.88772], - [-22.741379, 63.887769], - [-22.74059, 63.8881], - [-22.740011, 63.888883], - [-22.739586, 63.889246], - [-22.73946, 63.889559], - [-22.739264, 63.889887], - [-22.738372, 63.890732], - [-22.737963, 63.891215], - [-22.737431, 63.891709], - [-22.73692, 63.89252], - [-22.736874, 63.892743], - [-22.736798, 63.892858], - [-22.736746, 63.892967], - [-22.736648, 63.893098], - [-22.736591, 63.893191], - [-22.736, 63.893399], - [-22.735688, 63.893656], - [-22.73472, 63.8942], - [-22.73402, 63.894312], - [-22.73295, 63.894344], - [-22.73235, 63.894134], - [-22.73214, 63.894], - [-22.732352, 63.893745], - [-22.732138, 63.893482], - [-22.730972, 63.893157], - [-22.729698, 63.893115], - [-22.728555, 63.893191], - [-22.727212, 63.893391], - [-22.726576, 63.893505], - [-22.7261, 63.89356], - [-22.72545, 63.89393], - [-22.72488, 63.89391], - [-22.724424, 63.893955], - [-22.723904, 63.894071], - [-22.72338, 63.89425], - [-22.72276, 63.89449], - [-22.72239, 63.89499], - [-22.72183, 63.89485], - [-22.72129, 63.89456], - [-22.720968, 63.894192], - [-22.720114, 63.89384], - [-22.718994, 63.893935], - [-22.718106, 63.894083], - [-22.717361, 63.894219], - [-22.71606, 63.89455], - [-22.71574, 63.89479], - [-22.715274, 63.895254], - [-22.714468, 63.89532], - [-22.71374, 63.89551], - [-22.712296, 63.896166], - [-22.711973, 63.896504], - [-22.711046, 63.896589], - [-22.70987, 63.89693], - [-22.709043, 63.897305], - [-22.708522, 63.897851], - [-22.707978, 63.898857], - [-22.707627, 63.899189], - [-22.707642, 63.899565], - [-22.708447, 63.899753], - [-22.708462, 63.900259], - [-22.70843, 63.90073], - [-22.70778, 63.90122], - [-22.707871, 63.901378], - [-22.708002, 63.901522], - [-22.708013, 63.901756], - [-22.708087, 63.902076], - [-22.70758, 63.9025], - [-22.706778, 63.902913], - [-22.706092, 63.903686], - [-22.705373, 63.903816], - [-22.704589, 63.90396], - [-22.703778, 63.903915], - [-22.703008, 63.904072], - [-22.702263, 63.904287], - [-22.702287, 63.90484], - [-22.70281, 63.90517], - [-22.703103, 63.905402], - [-22.703398, 63.905505], - [-22.70504, 63.90575], - [-22.70557, 63.90615], - [-22.70614, 63.90617], - [-22.70728, 63.90633], - [-22.70697, 63.90658], - [-22.70692, 63.90683], - [-22.70742, 63.90736], - [-22.70738, 63.90761], - [-22.70668, 63.90836], - [-22.70664, 63.90862], - [-22.70699, 63.91016], - [-22.70695, 63.91042], - [-22.70691, 63.91067], - [-22.70679, 63.91144], - [-22.70675, 63.91169], - [-22.70697, 63.91221], - [-22.70637, 63.91232], - [-22.70517, 63.91254], - [-22.70399, 63.91264], - [-22.70366, 63.91288], - [-22.70304, 63.91312], - [-22.70208, 63.91373], - [-22.7009, 63.91383], - [-22.70057, 63.91407], - [-22.7002, 63.91457], - [-22.6996, 63.91468], - [-22.69902, 63.91467], - [-22.69846, 63.91452], - [-22.69856, 63.91581], - [-22.69993, 63.91636], - [-22.6996, 63.91661], - [-22.69956, 63.91686], - [-22.69994, 63.91816], - [-22.70042, 63.91894], - [-22.70068, 63.91907], - [-22.70095, 63.91921], - [-22.701, 63.92075], - [-22.69982, 63.92084], - [-22.6992, 63.92108], - [-22.69859, 63.92131], - [-22.69799, 63.92143], - [-22.69806, 63.92093], - [-22.69747, 63.92103], - [-22.69627, 63.92125], - [-22.69569, 63.92123], - [-22.69513, 63.92108], - [-22.6948, 63.92133], - [-22.69406, 63.92233], - [-22.69403, 63.92259], - [-22.69395, 63.92311], - [-22.69383, 63.92386], - [-22.69379, 63.92413], - [-22.69317, 63.92436], - [-22.69207, 63.92586], - [-22.69091, 63.92583], - [-22.69112, 63.92635], - [-22.69108, 63.92659], - [-22.691, 63.92711], - [-22.69146, 63.92789], - [-22.69173, 63.92803], - [-22.692, 63.92817], - [-22.692472, 63.92901], - [-22.692747, 63.929275], - [-22.693023, 63.9295], - [-22.693306, 63.929677], - [-22.693509, 63.929852], - [-22.693771, 63.929996], - [-22.694025, 63.930174], - [-22.694411, 63.930405], - [-22.694447, 63.930712], - [-22.694463, 63.931014], - [-22.694555, 63.931301], - [-22.694985, 63.931538], - [-22.695007, 63.931972], - [-22.695543, 63.932214], - [-22.695579, 63.932507], - [-22.695566, 63.932766], - [-22.695361, 63.932983], - [-22.69482, 63.933383], - [-22.693786, 63.933842], - [-22.693627, 63.934181], - [-22.693392, 63.934475], - [-22.692992, 63.934857], - [-22.69239, 63.93509], - [-22.691906, 63.935169], - [-22.691182, 63.93528], - [-22.68824, 63.93561], - [-22.687606, 63.935762], - [-22.687135, 63.935898], - [-22.68682, 63.936139], - [-22.686689, 63.936161], - [-22.686582, 63.936241], - [-22.686286, 63.936299], - [-22.6858, 63.93631], - [-22.68503, 63.936398], - [-22.684301, 63.936503], - [-22.682334, 63.936782], - [-22.681679, 63.936791], - [-22.681144, 63.936803], - [-22.680279, 63.936765], - [-22.67904, 63.936752], - [-22.678464, 63.936884], - [-22.677902, 63.937322], - [-22.677482, 63.937649], - [-22.676873, 63.937682], - [-22.67628, 63.937734], - [-22.67567, 63.9378], - [-22.67505, 63.93804], - [-22.67329, 63.93811], - [-22.67363, 63.93786], - [-22.67393, 63.93775], - [-22.67424, 63.93763], - [-22.67461, 63.93713], - [-22.67287, 63.93707], - [-22.67295, 63.93656], - [-22.67235, 63.93667], - [-22.67115, 63.93689], - [-22.67057, 63.93688], - [-22.66887, 63.93657], - [-22.66831, 63.93643], - [-22.66807, 63.93795], - [-22.66751, 63.93782], - [-22.66637, 63.93765], - [-22.66613, 63.93738], - [-22.66616, 63.93713], - [-22.66653, 63.93663], - [-22.66597, 63.93648], - [-22.66483, 63.93632], - [-22.66508, 63.93658], - [-22.66529, 63.9371], - [-22.66296, 63.93716], - [-22.66176, 63.93738], - [-22.66056, 63.9376], - [-22.6588, 63.93768], - [-22.65859, 63.93716], - [-22.65867, 63.93664], - [-22.659, 63.9364], - [-22.65726, 63.93636], - [-22.65714, 63.93712], - [-22.65654, 63.93722], - [-22.65534, 63.93744], - [-22.6541, 63.93792], - [-22.65295, 63.93789], - [-22.6524, 63.93761], - [-22.65124, 63.93758], - [-22.65006, 63.93766], - [-22.65024, 63.93784], - [-22.6506, 63.93794], - [-22.65052, 63.93845], - [-22.64994, 63.93844], - [-22.64981, 63.93801], - [-22.64942, 63.93804], - [-22.64881, 63.93827], - [-22.64765, 63.93824], - [-22.64593, 63.93806], - [-22.64568, 63.9378], - [-22.64547, 63.93728], - [-22.64489, 63.93726], - [-22.64477, 63.93802], - [-22.64417, 63.93813], - [-22.64359, 63.93812], - [-22.64303, 63.93797], - [-22.64227, 63.9391], - [-22.64165, 63.93934], - [-22.63811, 63.93962], - [-22.63819, 63.93911], - [-22.63763, 63.93896], - [-22.63708, 63.93882], - [-22.63699, 63.93933], - [-22.63643, 63.93918], - [-22.63585, 63.93916], - [-22.63523, 63.9394], - [-22.63407, 63.93937], - [-22.63349, 63.93935], - [-22.63231, 63.93944], - [-22.63224, 63.93995], - [-22.63108, 63.93992], - [-22.631, 63.94044], - [-22.63218, 63.94033], - [-22.63335, 63.94024], - [-22.63208, 63.94097], - [-22.63171, 63.94147], - [-22.63138, 63.94172], - [-22.632503, 63.941536], - [-22.63262, 63.94125], - [-22.633576, 63.941235], - [-22.634198, 63.941235], - [-22.634477, 63.94147], - [-22.635056, 63.941433], - [-22.635679, 63.941433], - [-22.636773, 63.941546], - [-22.637245, 63.94163], - [-22.63689, 63.94188], - [-22.637331, 63.942196], - [-22.63688, 63.942413], - [-22.637031, 63.942696], - [-22.63611, 63.94314], - [-22.635872, 63.94344], - [-22.635314, 63.943629], - [-22.634541, 63.94378], - [-22.634585, 63.943893], - [-22.634906, 63.943921], - [-22.635571, 63.94378], - [-22.636001, 63.943742], - [-22.636408, 63.943808], - [-22.63624, 63.94417], - [-22.63684, 63.94406], - [-22.63715, 63.94394], - [-22.63746, 63.94382], - [-22.63777, 63.94371], - [-22.63808, 63.94359], - [-22.63928, 63.94337], - [-22.64045, 63.94327], - [-22.64009, 63.94379], - [-22.63947, 63.94401], - [-22.63885, 63.94425], - [-22.63836, 63.94552], - [-22.63894, 63.94554], - [-22.63939, 63.94452], - [-22.6397, 63.9444], - [-22.64148, 63.9442], - [-22.64179, 63.94408], - [-22.6421, 63.94396], - [-22.64329, 63.94374], - [-22.64447, 63.94365], - [-22.64439, 63.94416], - [-22.64322, 63.94425], - [-22.64204, 63.94435], - [-22.64184, 63.94562], - [-22.64068, 63.94559], - [-22.64056, 63.94635], - [-22.63996, 63.94646], - [-22.636392, 63.947086], - [-22.634226, 63.947656], - [-22.633395, 63.947982], - [-22.633158, 63.948055], - [-22.63319, 63.948153], - [-22.633363, 63.948191], - [-22.633834, 63.948103], - [-22.634858, 63.947746], - [-22.636756, 63.947329], - [-22.63841, 63.94706], - [-22.639469, 63.94693], - [-22.641514, 63.946794], - [-22.642165, 63.946971], - [-22.64185, 63.94743], - [-22.64212, 63.94755], - [-22.6427, 63.94756], - [-22.64328, 63.94759], - [-22.64355, 63.94772], - [-22.64343, 63.94849], - [-22.64281, 63.94874], - [-22.64219, 63.94896], - [-22.64153, 63.94945], - [-22.641409, 63.95002], - [-22.640836, 63.950261], - [-22.63934, 63.95042], - [-22.638961, 63.950558], - [-22.638713, 63.950736], - [-22.638687, 63.95097], - [-22.638218, 63.951308], - [-22.638179, 63.951485], - [-22.638009, 63.951697], - [-22.637345, 63.951948], - [-22.636629, 63.952109], - [-22.635782, 63.952189], - [-22.635534, 63.952246], - [-22.634896, 63.952412], - [-22.635248, 63.952395], - [-22.63672, 63.952446], - [-22.637228, 63.952429], - [-22.637853, 63.952292], - [-22.638518, 63.952114], - [-22.639247, 63.952006], - [-22.64002, 63.95172], - [-22.64032, 63.9516], - [-22.640432, 63.951416], - [-22.640654, 63.951205], - [-22.641071, 63.951096], - [-22.641696, 63.951056], - [-22.642256, 63.951084], - [-22.642712, 63.951319], - [-22.643207, 63.951336], - [-22.643637, 63.951514], - [-22.64365, 63.951228], - [-22.643741, 63.951033], - [-22.64365, 63.9508], - [-22.64402, 63.9503], - [-22.6452, 63.95021], - [-22.64551, 63.95009], - [-22.64582, 63.94997], - [-22.64613, 63.94985], - [-22.64644, 63.94973], - [-22.64702, 63.94976], - [-22.64729, 63.94989], - [-22.64755, 63.95002], - [-22.64812, 63.95017], - [-22.64824, 63.9494], - [-22.6494, 63.94944], - [-22.64981, 63.94868], - [-22.65012, 63.94856], - [-22.65043, 63.94845], - [-22.65074, 63.94832], - [-22.65106, 63.94821], - [-22.65136, 63.94809], - [-22.65167, 63.94797], - [-22.65198, 63.94785], - [-22.65318, 63.94763], - [-22.65438, 63.94741], - [-22.65496, 63.94743], - [-22.6561, 63.94759], - [-22.65618, 63.94708], - [-22.65674, 63.94722], - [-22.65904, 63.94743], - [-22.65925, 63.94794], - [-22.65946, 63.94846], - [-22.66062, 63.94849], - [-22.66107, 63.94748], - [-22.66138, 63.94736], - [-22.66256, 63.94727], - [-22.66231, 63.94701], - [-22.66205, 63.94674], - [-22.66437, 63.94681], - [-22.66429, 63.94732], - [-22.66779, 63.9473], - [-22.67011, 63.94737], - [-22.67069, 63.94738], - [-22.67127, 63.9474], - [-22.67183, 63.94755], - [-22.6722, 63.94705], - [-22.67236, 63.94603], - [-22.67211, 63.94576], - [-22.67557, 63.94599], - [-22.67584, 63.94613], - [-22.67593, 63.94741], - [-22.67707, 63.94758], - [-22.67823, 63.94761], - [-22.67854, 63.94749], - [-22.67885, 63.94737], - [-22.68005, 63.94715], - [-22.68036, 63.94703], - [-22.68056, 63.94636], - [-22.68018, 63.94639], - [-22.67957, 63.9465], - [-22.67965, 63.94599], - [-22.68081, 63.94602], - [-22.68098, 63.9462], - [-22.68191, 63.94644], - [-22.68303, 63.94673], - [-22.68415, 63.94702], - [-22.68526, 63.94731], - [-22.68554, 63.94744], - [-22.6855, 63.9477], - [-22.68542, 63.94821], - [-22.68569, 63.94835], - [-22.68596, 63.94848], - [-22.68617, 63.949], - [-22.68715, 63.94894], - [-22.68709, 63.94877], - [-22.68717, 63.94826], - [-22.68747, 63.94814], - [-22.68807, 63.94803], - [-22.68791, 63.94905], - [-22.68752, 63.94913], - [-22.6873, 63.94929], - [-22.68902, 63.94947], - [-22.68929, 63.9496], - [-22.68956, 63.94974], - [-22.69014, 63.94976], - [-22.69111, 63.94915], - [-22.69056, 63.94887], - [-22.69064, 63.94836], - [-22.69134, 63.94762], - [-22.69165, 63.9475], - [-22.69196, 63.94738], - [-22.69227, 63.94726], - [-22.69258, 63.94714], - [-22.69295, 63.94664], - [-22.69353, 63.94666], - [-22.69374, 63.94718], - [-22.6937, 63.94743], - [-22.69366, 63.94769], - [-22.69412, 63.94847], - [-22.69611, 63.94878], - [-22.69659, 63.94944], - [-22.69687, 63.94957], - [-22.69683, 63.94983], - [-22.69646, 63.95034], - [-22.6976, 63.95049], - [-22.69816, 63.95064], - [-22.69803, 63.9496], - [-22.69749, 63.94934], - [-22.69865, 63.94937], - [-22.69886, 63.94989], - [-22.70002, 63.94992], - [-22.6999, 63.95069], - [-22.70104, 63.95085], - [-22.70131, 63.95099], - [-22.70157, 63.95112], - [-22.70214, 63.95127], - [-22.70222, 63.95076], - [-22.70263, 63.95], - [-22.70246, 63.94923], - [-22.70301, 63.94937], - [-22.70329, 63.94951], - [-22.70355, 63.94964], - [-22.70567, 63.94976], - [-22.70589, 63.94959], - [-22.70629, 63.94951], - [-22.70651, 63.94935], - [-22.70535, 63.94932], - [-22.70543, 63.9488], - [-22.70311, 63.94874], - [-22.70344, 63.94849], - [-22.70375, 63.94837], - [-22.70406, 63.94825], - [-22.70437, 63.94813], - [-22.70553, 63.94817], - [-22.70579, 63.9483], - [-22.70607, 63.94845], - [-22.7076, 63.94989], - [-22.70703, 63.94976], - [-22.70666, 63.9497], - [-22.70644, 63.94986], - [-22.70604, 63.94993], - [-22.70578, 63.95035], - [-22.70694, 63.95039], - [-22.70661, 63.95063], - [-22.70599, 63.95087], - [-22.70529, 63.95162], - [-22.70496, 63.95186], - [-22.7061, 63.95203], - [-22.70637, 63.95216], - [-22.70688, 63.95269], - [-22.70715, 63.95283], - [-22.70943, 63.95315], - [-22.7097, 63.95329], - [-22.70997, 63.95342], - [-22.71169, 63.9536], - [-22.71057, 63.95331], - [-22.71032, 63.95305], - [-22.70982, 63.95251], - [-22.70976, 63.95098], - [-22.7115, 63.95103], - [-22.71171, 63.95155], - [-22.71198, 63.95169], - [-22.71225, 63.95182], - [-22.71272, 63.95261], - [-22.71299, 63.95274], - [-22.71413, 63.95291], - [-22.71388, 63.95264], - [-22.71396, 63.95213], - [-22.71426, 63.95201], - [-22.71484, 63.95203], - [-22.71548, 63.95166], - [-22.71604, 63.95181], - [-22.71718, 63.95197], - [-22.7174, 63.95249], - [-22.71736, 63.95274], - [-22.71674, 63.95298], - [-22.71662, 63.95375], - [-22.71689, 63.95388], - [-22.71747, 63.9539], - [-22.71865, 63.95381], - [-22.71857, 63.95432], - [-22.72029, 63.9545], - [-22.72203, 63.95455], - [-22.72261, 63.95455], - [-22.72489, 63.95489], - [-22.72603, 63.95505], - [-22.72625, 63.95557], - [-22.72652, 63.9557], - [-22.72696, 63.95662], - [-22.72794, 63.95656], - [-22.72816, 63.95639], - [-22.72874, 63.95641], - [-22.7287, 63.95667], - [-22.72804, 63.95716], - [-22.72744, 63.95727], - [-22.72568, 63.95735], - [-22.72594, 63.95762], - [-22.72644, 63.95814], - [-22.7264, 63.95839], - [-22.72578, 63.95864], - [-22.7257, 63.95914], - [-22.72597, 63.95928], - [-22.72655, 63.95929], - [-22.72715, 63.95918], - [-22.72733, 63.95996], - [-22.7276, 63.96008], - [-22.72874, 63.96025], - [-22.72867, 63.96076], - [-22.72926, 63.96065], - [-22.72984, 63.96068], - [-22.73011, 63.96081], - [-22.73038, 63.96094], - [-22.73065, 63.96108], - [-22.73061, 63.96133], - [-22.72999, 63.96157], - [-22.72995, 63.96183], - [-22.73042, 63.96261], - [-22.73059, 63.96338], - [-22.73117, 63.9634], - [-22.73158, 63.96264], - [-22.73162, 63.96239], - [-22.7314, 63.96187], - [-22.73313, 63.96205], - [-22.7334, 63.96219], - [-22.73367, 63.96232], - [-22.73394, 63.96246], - [-22.73421, 63.96259], - [-22.73449, 63.96273], - [-22.73444, 63.96298], - [-22.7344, 63.96324], - [-22.73417, 63.96477], - [-22.73442, 63.96503], - [-22.73326, 63.965], - [-22.73318, 63.96551], - [-22.73378, 63.9654], - [-22.73436, 63.96542], - [-22.73464, 63.96555], - [-22.734772, 63.966079], - [-22.734899, 63.966233], - [-22.735199, 63.966389], - [-22.735571, 63.966291], - [-22.73572, 63.9661], - [-22.73602, 63.96598], - [-22.736179, 63.965797], - [-22.736534, 63.965655], - [-22.73695, 63.96563], - [-22.73736, 63.965586], - [-22.73784, 63.96552], - [-22.738277, 63.965346], - [-22.738542, 63.965387], - [-22.738574, 63.965609], - [-22.737719, 63.965749], - [-22.737421, 63.965982], - [-22.73742, 63.966423], - [-22.73738, 63.96666], - [-22.7364, 63.967031], - [-22.736542, 63.967163], - [-22.73875, 63.96721], - [-22.738944, 63.966792], - [-22.73939, 63.96684], - [-22.74053, 63.96701], - [-22.740942, 63.967326], - [-22.741418, 63.967431], - [-22.741631, 63.967634], - [-22.741567, 63.967779], - [-22.74156, 63.96793], - [-22.741301, 63.968017], - [-22.741246, 63.968319], - [-22.741599, 63.968593], - [-22.741597, 63.968911], - [-22.741808, 63.969103], - [-22.742138, 63.969151], - [-22.742786, 63.969127], - [-22.743619, 63.969156], - [-22.744324, 63.969081], - [-22.745452, 63.969073], - [-22.746118, 63.969054], - [-22.746313, 63.969488], - [-22.746031, 63.970013], - [-22.745378, 63.97029], - [-22.745515, 63.970425], - [-22.745656, 63.970616], - [-22.745378, 63.970756], - [-22.745336, 63.970896], - [-22.745726, 63.970904], - [-22.746283, 63.97068], - [-22.747276, 63.970135], - [-22.748068, 63.969952], - [-22.748353, 63.969999], - [-22.748567, 63.969987], - [-22.748838, 63.970157], - [-22.749225, 63.970508], - [-22.749475, 63.970646], - [-22.750207, 63.970648], - [-22.75104, 63.97075], - [-22.751285, 63.970634], - [-22.752201, 63.970317], - [-22.752929, 63.970498], - [-22.753141, 63.970921], - [-22.753278, 63.971441], - [-22.753133, 63.97161], - [-22.752516, 63.971746], - [-22.751993, 63.971829], - [-22.751573, 63.971846], - [-22.751046, 63.971662], - [-22.750851, 63.971738], - [-22.75071, 63.971872], - [-22.751021, 63.972088], - [-22.751333, 63.972235], - [-22.752296, 63.9725], - [-22.752835, 63.972649], - [-22.753236, 63.972737], - [-22.753689, 63.973144], - [-22.753776, 63.973349], - [-22.75358, 63.973497], - [-22.752865, 63.973672], - [-22.752286, 63.973775], - [-22.751809, 63.973747], - [-22.751197, 63.973543], - [-22.750284, 63.973303], - [-22.749297, 63.973189], - [-22.748706, 63.973141], - [-22.747806, 63.97334], - [-22.746963, 63.973672], - [-22.745649, 63.974584], - [-22.745671, 63.974722], - [-22.745763, 63.974819], - [-22.746185, 63.974785], - [-22.746213, 63.974998], - [-22.745721, 63.97527], - [-22.745927, 63.975771], - [-22.745955, 63.976198], - [-22.74563, 63.97661], - [-22.745549, 63.977191], - [-22.745971, 63.977445], - [-22.746238, 63.97785], - [-22.746227, 63.978057], - [-22.746189, 63.978262], - [-22.74609, 63.978652], - [-22.746386, 63.978956], - [-22.746485, 63.979302], - [-22.746979, 63.979584], - [-22.747522, 63.979909], - [-22.747571, 63.980342], - [-22.747571, 63.980689], - [-22.748658, 63.980689], - [-22.749152, 63.981057], - [-22.748362, 63.981512], - [-22.748262, 63.981894], - [-22.747872, 63.982019], - [-22.747127, 63.982401], - [-22.746682, 63.98292], - [-22.746534, 63.983397], - [-22.746485, 63.983982], - [-22.746631, 63.984675], - [-22.746584, 63.984935], - [-22.746512, 63.985128], - [-22.746087, 63.985264], - [-22.745975, 63.98579], - [-22.745179, 63.985671], - [-22.744806, 63.985761], - [-22.744514, 63.985742], - [-22.744233, 63.985846], - [-22.744069, 63.985947], - [-22.743887, 63.986154], - [-22.743654, 63.986392], - [-22.743316, 63.986707], - [-22.743177, 63.987188], - [-22.743252, 63.987585], - [-22.742957, 63.987939], - [-22.742724, 63.988313], - [-22.74284, 63.988619], - [-22.743344, 63.988942], - [-22.743848, 63.989231], - [-22.744352, 63.989724], - [-22.744236, 63.990234], - [-22.743616, 63.990268], - [-22.743228, 63.990421], - [-22.742918, 63.990676], - [-22.743422, 63.990931], - [-22.743538, 63.991322], - [-22.743344, 63.991696], - [-22.742646, 63.991764], - [-22.74253, 63.992121], - [-22.741755, 63.992138], - [-22.7416, 63.991781], - [-22.741251, 63.991628], - [-22.740359, 63.991543], - [-22.739623, 63.991662], - [-22.739506, 63.991883], - [-22.739894, 63.9919], - [-22.740398, 63.991985], - [-22.740204, 63.992206], - [-22.739691, 63.992331], - [-22.739464, 63.992497], - [-22.739842, 63.992729], - [-22.74272, 63.992829], - [-22.742795, 63.993028], - [-22.737041, 63.993061], - [-22.736284, 63.992796], - [-22.734694, 63.993161], - [-22.734391, 63.993825], - [-22.734045, 63.994921], - [-22.733093, 63.995895], - [-22.733283, 63.996785], - [-22.732014, 63.997341], - [-22.73138, 63.998064], - [-22.72973, 63.999038], - [-22.7277, 63.998982], - [-22.726241, 63.999594], - [-22.725225, 64.000011], - [-22.72383, 64.000596], - [-22.720911, 64.000734], - [-22.720213, 64.000317], - [-22.718754, 64.000317], - [-22.718056, 64.000901], - [-22.717422, 64.001875], - [-22.715645, 64.002208], - [-22.714059, 64.002626], - [-22.713044, 64.002375], - [-22.712219, 64.003071], - [-22.710978, 64.003483], - [-22.710275, 64.004087], - [-22.709785, 64.004731], - [-22.710213, 64.005294], - [-22.708959, 64.006259], - [-22.709112, 64.00701], - [-22.709295, 64.008056], - [-22.708714, 64.008754], - [-22.708163, 64.009477], - [-22.708439, 64.009974], - [-22.708928, 64.011033], - [-22.709601, 64.01177], - [-22.71005, 64.01236], - [-22.711304, 64.012663], - [-22.712384, 64.013232], - [-22.71139, 64.013648], - [-22.710742, 64.014254], - [-22.710223, 64.014671], - [-22.709531, 64.015201], - [-22.708926, 64.015542], - [-22.707845, 64.015921], - [-22.707197, 64.016338], - [-22.70724, 64.016906], - [-22.708148, 64.016982], - [-22.708191, 64.017361], - [-22.707889, 64.017739], - [-22.70724, 64.018099], - [-22.706548, 64.018497], - [-22.706289, 64.019084], - [-22.706246, 64.019519], - [-22.705381, 64.019557], - [-22.704862, 64.019785], - [-22.705554, 64.020031], - [-22.706505, 64.020277], - [-22.706894, 64.020694], - [-22.706375, 64.021205], - [-22.707154, 64.021205], - [-22.707975, 64.02094], - [-22.707629, 64.020372], - [-22.707024, 64.019766], - [-22.707629, 64.019254], - [-22.708753, 64.018838], - [-22.709142, 64.019387], - [-22.709834, 64.020144], - [-22.709358, 64.021072], - [-22.70858, 64.021943], - [-22.708018, 64.023004], - [-22.708198, 64.023973], - [-22.70862, 64.025074], - [-22.709067, 64.02621], - [-22.709901, 64.027179], - [-22.710475, 64.027663], - [-22.711122, 64.027835], - [-22.711322, 64.027942], - [-22.710939, 64.02808], - [-22.710717, 64.028462], - [-22.710206, 64.028872], - [-22.71063, 64.029503], - [-22.711041, 64.030036], - [-22.712412, 64.030852], - [-22.713768, 64.031448], - [-22.714457, 64.031835], - [-22.714613, 64.032008], - [-22.714275, 64.032032], - [-22.713497, 64.032051], - [-22.711991, 64.032698], - [-22.709445, 64.033986], - [-22.709048, 64.034448], - [-22.708798, 64.03503], - [-22.708515, 64.035516], - [-22.708779, 64.03632], - [-22.709272, 64.037353], - [-22.709573, 64.037833], - [-22.710021, 64.038113], - [-22.713941, 64.037873], - [-22.713805, 64.037444], - [-22.713823, 64.037078], - [-22.714189, 64.036732], - [-22.71495, 64.036574], - [-22.716391, 64.036383], - [-22.71968, 64.036137], - [-22.720541, 64.036137], - [-22.72095, 64.03622], - [-22.722408, 64.037301], - [-22.722399, 64.037334], - [-22.722348, 64.037361], - [-22.722268, 64.037373], - [-22.722198, 64.037362], - [-22.720709, 64.036332], - [-22.720352, 64.036252], - [-22.719841, 64.036259], - [-22.715244, 64.036661], - [-22.714999, 64.036729], - [-22.715453, 64.038089], - [-22.715504, 64.038098], - [-22.715768, 64.038087], - [-22.715765, 64.038067], - [-22.718656, 64.03786], - [-22.718708, 64.03788], - [-22.718763, 64.038044], - [-22.718723, 64.03807], - [-22.715536, 64.03831], - [-22.714771, 64.038459], - [-22.714489, 64.039538], - [-22.71458, 64.039808], - [-22.715192, 64.040164], - [-22.716212, 64.039843], - [-22.717902, 64.039512], - [-22.719674, 64.038896], - [-22.719592, 64.038846], - [-22.720326, 64.038582], - [-22.720527, 64.038692], - [-22.721985, 64.038223], - [-22.723521, 64.037825], - [-22.723648, 64.037823], - [-22.723743, 64.037874], - [-22.723765, 64.037945], - [-22.723681, 64.038001], - [-22.722211, 64.038392], - [-22.720884, 64.038873], - [-22.720305, 64.039164], - [-22.715986, 64.040589], - [-22.714751, 64.040991], - [-22.714509, 64.041373], - [-22.714044, 64.042137], - [-22.714467, 64.043254], - [-22.714816, 64.043609], - [-22.714681, 64.043865], - [-22.714556, 64.044088], - [-22.714556, 64.044489], - [-22.71373, 64.04492], - [-22.71566, 64.045763], - [-22.715465, 64.046581], - [-22.712276, 64.047251], - [-22.712603, 64.047507], - [-22.714587, 64.047236], - [-22.715237, 64.04772], - [-22.716864, 64.048603], - [-22.716099, 64.050189], - [-22.714376, 64.051214], - [-22.7127, 64.05083], - [-22.713449, 64.051677], - [-22.713237, 64.052559], - [-22.710754, 64.052627], - [-22.709355, 64.052588], - [-22.708814, 64.05226], - [-22.708066, 64.053121], - [-22.707025, 64.053413], - [-22.70683, 64.054366], - [-22.708196, 64.055028], - [-22.707009, 64.055426], - [-22.70696, 64.056017], - [-22.708863, 64.056237], - [-22.709952, 64.05665], - [-22.713627, 64.056536], - [-22.715091, 64.058443], - [-22.712814, 64.058727], - [-22.714115, 64.061423], - [-22.713432, 64.06244], - [-22.711562, 64.062497], - [-22.709757, 64.062611], - [-22.710408, 64.063536], - [-22.710196, 64.064105], - [-22.709529, 64.064482], - [-22.70909, 64.06483], - [-22.709285, 64.065684], - [-22.708863, 64.066338], - [-22.708056, 64.066715], - [-22.708092, 64.06848], - [-22.705032, 64.068487], - [-22.703187, 64.068336], - [-22.702976, 64.068749], - [-22.706505, 64.069702], - [-22.706521, 64.071287], - [-22.705171, 64.071366], - [-22.703921, 64.07295], - [-22.702081, 64.073278], - [-22.705139, 64.073349], - [-22.70748, 64.073477], - [-22.708066, 64.072944], - [-22.712912, 64.072546], - [-22.712359, 64.07352], - [-22.714002, 64.074522], - [-22.712668, 64.075795], - [-22.707386, 64.075295], - [-22.704971, 64.07456], - [-22.700715, 64.07411], - [-22.700116, 64.074879], - [-22.697919, 64.074835], - [-22.696728, 64.075612], - [-22.695569, 64.076411], - [-22.694009, 64.077521], - [-22.692717, 64.078787], - [-22.691915, 64.080112], - [-22.692192, 64.081038], - [-22.692648, 64.082211], - [-22.693266, 64.082666], - [-22.694006, 64.082872], - [-22.694045, 64.083152], - [-22.693423, 64.083191], - [-22.692298, 64.08304], - [-22.689958, 64.083018], - [-22.687658, 64.08238], - [-22.678013, 64.081475], - [-22.676453, 64.081475], - [-22.672398, 64.08093], - [-22.668655, 64.080482], - [-22.667096, 64.08017], - [-22.66501, 64.079998], - [-22.663935, 64.079847], - [-22.66198, 64.079772], - [-22.661321, 64.079024], - [-22.660947, 64.078879], - [-22.66063, 64.078652], - [-22.659683, 64.0783], - [-22.658712, 64.078013], - [-22.657902, 64.077844], - [-22.65686, 64.077717], - [-22.655838, 64.077598], - [-22.654232, 64.077338], - [-22.652394, 64.0771], - [-22.651589, 64.07704], - [-22.650685, 64.077023], - [-22.650093, 64.076967], - [-22.648793, 64.076694], - [-22.647378, 64.076366], - [-22.646905, 64.076223], - [-22.646541, 64.076128], - [-22.646207, 64.076041], - [-22.6458, 64.075895], - [-22.645638, 64.075806], - [-22.645414, 64.075634], - [-22.645051, 64.075386], - [-22.644682, 64.075212], - [-22.644242, 64.075041], - [-22.643817, 64.07472], - [-22.644098, 64.074762], - [-22.644369, 64.07479], - [-22.644872, 64.074812], - [-22.645269, 64.074778], - [-22.645331, 64.074711], - [-22.645224, 64.074564], - [-22.645058, 64.074316], - [-22.645005, 64.074006], - [-22.644944, 64.073917], - [-22.644932, 64.073848], - [-22.64507, 64.073787], - [-22.645308, 64.073749], - [-22.645429, 64.07369], - [-22.645431, 64.073562], - [-22.645303, 64.073419], - [-22.645063, 64.073181], - [-22.644925, 64.073111], - [-22.644604, 64.072996], - [-22.644408, 64.072915], - [-22.644187, 64.072771], - [-22.644063, 64.072657], - [-22.643999, 64.072537], - [-22.643958, 64.07236], - [-22.643827, 64.072221], - [-22.643791, 64.072115], - [-22.643842, 64.072015], - [-22.643835, 64.071923], - [-22.643795, 64.071821], - [-22.643741, 64.071774], - [-22.643586, 64.07164], - [-22.643482, 64.071463], - [-22.643523, 64.071322], - [-22.643549, 64.071164], - [-22.643442, 64.070988], - [-22.643203, 64.070798], - [-22.642731, 64.070535], - [-22.642281, 64.070315], - [-22.641131, 64.06984], - [-22.640705, 64.069677], - [-22.640608, 64.069611], - [-22.640581, 64.069418], - [-22.640582, 64.069307], - [-22.640325, 64.069065], - [-22.639525, 64.068503], - [-22.639259, 64.068509], - [-22.6389, 64.068516], - [-22.638222, 64.068494], - [-22.637822, 64.068395], - [-22.637532, 64.068231], - [-22.637315, 64.068083], - [-22.636999, 64.067968], - [-22.636453, 64.067837], - [-22.635931, 64.067683], - [-22.635701, 64.067569], - [-22.635478, 64.067387], - [-22.635356, 64.06721], - [-22.635245, 64.06703], - [-22.635195, 64.066818], - [-22.635135, 64.066664], - [-22.634995, 64.066531], - [-22.634715, 64.066394], - [-22.633866, 64.066267], - [-22.633375, 64.066195], - [-22.632484, 64.066023], - [-22.631892, 64.065881], - [-22.630877, 64.065768], - [-22.630416, 64.065705], - [-22.629689, 64.065604], - [-22.629372, 64.065574], - [-22.629169, 64.06555], - [-22.628897, 64.065511], - [-22.628695, 64.065495], - [-22.628438, 64.065447], - [-22.628292, 64.065335], - [-22.628235, 64.06518], - [-22.628117, 64.064972], - [-22.62799, 64.064806], - [-22.627624, 64.06467], - [-22.627, 64.064447], - [-22.626469, 64.064275], - [-22.626028, 64.064149], - [-22.625624, 64.063998], - [-22.625314, 64.063811], - [-22.623047, 64.062815], - [-22.620634, 64.061337], - [-22.618462, 64.060317], - [-22.616782, 64.060017], - [-22.615728, 64.059437], - [-22.614119, 64.059262], - [-22.613154, 64.058663], - [-22.611706, 64.058487], - [-22.611545, 64.057432], - [-22.6105, 64.056552], - [-22.610661, 64.055743], - [-22.609776, 64.055532], - [-22.609374, 64.055074], - [-22.608509, 64.054589], - [-22.607361, 64.053886], - [-22.607016, 64.053258], - [-22.60604, 64.05268], - [-22.605294, 64.052178], - [-22.604835, 64.05155], - [-22.603745, 64.050998], - [-22.602597, 64.050194], - [-22.601219, 64.049415], - [-22.599899, 64.048988], - [-22.598579, 64.048888], - [-22.598119, 64.048235], - [-22.597316, 64.047456], - [-22.596111, 64.047331], - [-22.59502, 64.047004], - [-22.594044, 64.046527], - [-22.594676, 64.045974], - [-22.59424, 64.045828], - [-22.593929, 64.045723], - [-22.59238, 64.045974], - [-22.590313, 64.045421], - [-22.588534, 64.044718], - [-22.586927, 64.044693], - [-22.584286, 64.043387], - [-22.584286, 64.042683], - [-22.584688, 64.041854], - [-22.584057, 64.0411], - [-22.583655, 64.040372], - [-22.582937, 64.040074], - [-22.581724, 64.039791], - [-22.579874, 64.03926], - [-22.578005, 64.039067], - [-22.575501, 64.039207], - [-22.573492, 64.039357], - [-22.572989, 64.039037], - [-22.572772, 64.038541], - [-22.572921, 64.037859], - [-22.572763, 64.03752], - [-22.572512, 64.037229], - [-22.572178, 64.036911], - [-22.571478, 64.036589], - [-22.570445, 64.036278], - [-22.569525, 64.035752], - [-22.568838, 64.035051], - [-22.568393, 64.03448], - [-22.568149, 64.033674], - [-22.566796, 64.032708], - [-22.565442, 64.03209], - [-22.564577, 64.032144], - [-22.563925, 64.031976], - [-22.563671, 64.031719], - [-22.563602, 64.031312], - [-22.562856, 64.030871], - [-22.562459, 64.03046], - [-22.561708, 64.030074], - [-22.561107, 64.029947], - [-22.560399, 64.029938], - [-22.559702, 64.029999], - [-22.559027, 64.030142], - [-22.557872, 64.030674], - [-22.557142, 64.030853], - [-22.556588, 64.030832], - [-22.556357, 64.030524], - [-22.556215, 64.030244], - [-22.555893, 64.030013], - [-22.555441, 64.029604], - [-22.555303, 64.029186], - [-22.555242, 64.028698], - [-22.55538, 64.028224], - [-22.555981, 64.027658], - [-22.555585, 64.026621], - [-22.554979, 64.025962], - [-22.554455, 64.02562], - [-22.553683, 64.02547], - [-22.552897, 64.025411], - [-22.552974, 64.025036], - [-22.553194, 64.024648], - [-22.553713, 64.024341], - [-22.554129, 64.024096], - [-22.556911, 64.023165], - [-22.558162, 64.022778], - [-22.558328, 64.022885], - [-22.55925, 64.022601], - [-22.560303, 64.022194], - [-22.56098, 64.021685], - [-22.561644, 64.021212], - [-22.561461, 64.021118], - [-22.561053, 64.020972], - [-22.55938, 64.020561], - [-22.557817, 64.020074], - [-22.556903, 64.019842], - [-22.556034, 64.019495], - [-22.555336, 64.019372], - [-22.554486, 64.019266], - [-22.553458, 64.019073], - [-22.552241, 64.017758], - [-22.551552, 64.016518], - [-22.552055, 64.016323], - [-22.550765, 64.015971], - [-22.550286, 64.015572], - [-22.549517, 64.015408], - [-22.548601, 64.014648], - [-22.54932, 64.014263], - [-22.54933, 64.013839], - [-22.549047, 64.0136], - [-22.549809, 64.013139], - [-22.54908, 64.01256], - [-22.548667, 64.012116], - [-22.548566, 64.011729], - [-22.548078, 64.011241], - [-22.549049, 64.010953], - [-22.549833, 64.010933], - [-22.550795, 64.010565], - [-22.551278, 64.010142], - [-22.552324, 64.009684], - [-22.553809, 64.009095], - [-22.553701, 64.008512], - [-22.554012, 64.008495], - [-22.554177, 64.008518], - [-22.554261, 64.008602], - [-22.554486, 64.008962], - [-22.555018, 64.008996], - [-22.555396, 64.008995], - [-22.555615, 64.00896], - [-22.555769, 64.009], - [-22.556937, 64.009027], - [-22.557265, 64.009112], - [-22.557632, 64.009192], - [-22.557714, 64.009186], - [-22.557978, 64.008979], - [-22.557966, 64.008966], - [-22.558194, 64.008779], - [-22.557804, 64.008675], - [-22.557821, 64.00865], - [-22.557695, 64.008617], - [-22.557025, 64.008443], - [-22.55635, 64.008266], - [-22.556033, 64.008183], - [-22.555708, 64.008174], - [-22.555209, 64.00857], - [-22.555207, 64.008664], - [-22.555125, 64.008721], - [-22.554986, 64.008742], - [-22.554842, 64.00872], - [-22.554771, 64.00867], - [-22.55475, 64.008589], - [-22.555266, 64.008073], - [-22.555763, 64.007326], - [-22.555913, 64.006904], - [-22.555803, 64.006717], - [-22.555141, 64.005971], - [-22.554401, 64.005343], - [-22.55338, 64.004475], - [-22.551896, 64.003737], - [-22.549803, 64.003113], - [-22.54737, 64.002742], - [-22.546195, 64.00268], - [-22.5459, 64.002711], - [-22.545756, 64.002517], - [-22.545525, 64.002465], - [-22.544496, 64.002526], - [-22.54434, 64.002914], - [-22.543736, 64.002917], - [-22.543643, 64.002806], - [-22.543757, 64.002817], - [-22.543809, 64.002568], - [-22.543623, 64.002539], - [-22.543608, 64.002463], - [-22.543257, 64.002348], - [-22.543177, 64.002259], - [-22.542663, 64.002247], - [-22.542526, 64.002311], - [-22.542144, 64.002246], - [-22.542281, 64.001893], - [-22.541843, 64.001673], - [-22.54177, 64.001415], - [-22.541821, 64.001353], - [-22.541787, 64.001282], - [-22.541599, 64.001281], - [-22.541471, 64.001194], - [-22.541762, 64.000931], - [-22.542107, 64.000834], - [-22.541463, 63.999705], - [-22.542538, 63.999142], - [-22.543079, 63.998836], - [-22.543203, 63.998676], - [-22.543229, 63.998515], - [-22.543043, 63.997667], - [-22.543628, 63.997414], - [-22.543506, 63.997024], - [-22.543843, 63.99701], - [-22.544334, 63.99847], - [-22.543917, 63.998989], - [-22.544159, 63.998903], - [-22.544667, 63.998876], - [-22.54469, 63.998964], - [-22.544227, 63.998989], - [-22.544236, 63.999], - [-22.544613, 63.999005], - [-22.54497, 63.998966], - [-22.544849, 63.998757], - [-22.544992, 63.998733], - [-22.545129, 63.998924], - [-22.545528, 63.998866], - [-22.545302, 63.998571], - [-22.545458, 63.998546], - [-22.545666, 63.998807], - [-22.545949, 63.998737], - [-22.546179, 63.998669], - [-22.546499, 63.998531], - [-22.545746, 63.998224], - [-22.545664, 63.997905], - [-22.545871, 63.997895], - [-22.545961, 63.998176], - [-22.546748, 63.998494], - [-22.546979, 63.998155], - [-22.547161, 63.997816], - [-22.546506, 63.99619], - [-22.546142, 63.996188], - [-22.545815, 63.99579], - [-22.546111, 63.995621], - [-22.545772, 63.994954], - [-22.544803, 63.994649], - [-22.54469, 63.994431], - [-22.544695, 63.994344], - [-22.544238, 63.99407], - [-22.544165, 63.993955], - [-22.54418, 63.993867], - [-22.544294, 63.993808], - [-22.544407, 63.993728], - [-22.544391, 63.993627], - [-22.544332, 63.993434], - [-22.544348, 63.993307], - [-22.544463, 63.993179], - [-22.54469, 63.99311], - [-22.544869, 63.993088], - [-22.544347, 63.992933], - [-22.544175, 63.992929], - [-22.544134, 63.992882], - [-22.54419, 63.992809], - [-22.544355, 63.992682], - [-22.544359, 63.992582], - [-22.543805, 63.991143], - [-22.543451, 63.990915], - [-22.542803, 63.990437], - [-22.542792, 63.990334], - [-22.542863, 63.990217], - [-22.542936, 63.990046], - [-22.542921, 63.989924], - [-22.542836, 63.989777], - [-22.542695, 63.989709], - [-22.542613, 63.98962], - [-22.542539, 63.989493], - [-22.542571, 63.989376], - [-22.542044, 63.988961], - [-22.541362, 63.988536], - [-22.540458, 63.988154], - [-22.539914, 63.988089], - [-22.539163, 63.988201], - [-22.53858, 63.988258], - [-22.538156, 63.988283], - [-22.537976, 63.988259], - [-22.537696, 63.988173], - [-22.537154, 63.988128], - [-22.536706, 63.988091], - [-22.536574, 63.988032], - [-22.536525, 63.987957], - [-22.537162, 63.987681], - [-22.536303, 63.987341], - [-22.532563, 63.986862], - [-22.531534, 63.986506], - [-22.530753, 63.986003], - [-22.530101, 63.985148], - [-22.530559, 63.985086], - [-22.53124, 63.985977], - [-22.532132, 63.986394], - [-22.533169, 63.986633], - [-22.534045, 63.985632], - [-22.534316, 63.985692], - [-22.533925, 63.986131], - [-22.536698, 63.987001], - [-22.538847, 63.985943], - [-22.535648, 63.985086], - [-22.535153, 63.985436], - [-22.534856, 63.985357], - [-22.535509, 63.984889], - [-22.537846, 63.985517], - [-22.537804, 63.985553], - [-22.538988, 63.985871], - [-22.539598, 63.985478], - [-22.539975, 63.985115], - [-22.540212, 63.985055], - [-22.540614, 63.98514], - [-22.540649, 63.985128], - [-22.541069, 63.985206], - [-22.541107, 63.985172], - [-22.540933, 63.985123], - [-22.541754, 63.985079], - [-22.542366, 63.985104], - [-22.54203, 63.985028], - [-22.542, 63.98463], - [-22.539733, 63.984616], - [-22.539772, 63.984438], - [-22.540907, 63.98443], - [-22.541459, 63.984157], - [-22.541494, 63.983838], - [-22.540641, 63.982945], - [-22.54015, 63.982548], - [-22.539969, 63.982307], - [-22.5401, 63.981786], - [-22.540024, 63.981316], - [-22.539896, 63.981026], - [-22.539632, 63.980762], - [-22.538724, 63.980203], - [-22.538043, 63.97985], - [-22.529985, 63.979023], - [-22.529995, 63.978863], - [-22.530183, 63.978858], - [-22.534631, 63.979297], - [-22.535195, 63.979297], - [-22.535876, 63.979429], - [-22.538482, 63.979683], - [-22.538814, 63.979421], - [-22.539561, 63.979297], - [-22.540299, 63.979367], - [-22.540712, 63.979228], - [-22.541384, 63.979191], - [-22.541402, 63.978913], - [-22.540123, 63.978095], - [-22.539365, 63.977709], - [-22.540548, 63.977769], - [-22.541848, 63.977525], - [-22.542265, 63.977107], - [-22.542453, 63.976503], - [-22.541785, 63.975914], - [-22.540713, 63.975601], - [-22.539464, 63.974956], - [-22.537194, 63.974188], - [-22.535016, 63.973746], - [-22.533876, 63.973667], - [-22.533296, 63.973744], - [-22.532534, 63.974025], - [-22.532037, 63.974152], - [-22.532026, 63.974469], - [-22.531479, 63.974459], - [-22.531561, 63.974819], - [-22.531149, 63.974935], - [-22.530799, 63.975131], - [-22.530197, 63.975606], - [-22.529798, 63.97558], - [-22.530117, 63.975698], - [-22.529595, 63.976228], - [-22.529478, 63.976568], - [-22.529672, 63.976596], - [-22.52955, 63.976917], - [-22.529301, 63.976899], - [-22.529264, 63.976956], - [-22.529036, 63.976942], - [-22.529072, 63.976834], - [-22.528927, 63.976821], - [-22.528976, 63.976701], - [-22.529103, 63.976682], - [-22.529131, 63.976644], - [-22.528954, 63.976606], - [-22.529013, 63.97651], - [-22.529159, 63.976499], - [-22.529187, 63.976406], - [-22.52895, 63.976352], - [-22.528254, 63.97621], - [-22.528161, 63.976174], - [-22.527999, 63.975955], - [-22.527854, 63.976206], - [-22.527725, 63.976258], - [-22.527591, 63.976278], - [-22.527482, 63.976285], - [-22.527324, 63.976263], - [-22.527202, 63.976195], - [-22.527066, 63.976126], - [-22.526924, 63.976024], - [-22.526761, 63.97596], - [-22.52652, 63.975938], - [-22.526281, 63.975941], - [-22.526045, 63.975928], - [-22.525903, 63.975874], - [-22.525773, 63.975785], - [-22.525631, 63.975679], - [-22.52525, 63.975699], - [-22.524971, 63.97574], - [-22.524549, 63.975781], - [-22.524406, 63.975838], - [-22.52429, 63.975916], - [-22.524255, 63.975951], - [-22.524268, 63.976042], - [-22.5243, 63.97612], - [-22.52429, 63.976174], - [-22.524317, 63.976253], - [-22.524363, 63.976302], - [-22.524346, 63.976349], - [-22.524352, 63.976412], - [-22.524357, 63.976455], - [-22.524327, 63.976704], - [-22.524373, 63.976805], - [-22.524471, 63.9769], - [-22.524575, 63.976972], - [-22.524516, 63.977014], - [-22.524454, 63.977084], - [-22.524367, 63.977189], - [-22.524413, 63.97728], - [-22.524493, 63.977348], - [-22.524656, 63.977393], - [-22.524827, 63.977428], - [-22.524997, 63.977466], - [-22.525113, 63.977515], - [-22.52516, 63.977576], - [-22.525194, 63.977628], - [-22.525207, 63.97767], - [-22.525207, 63.977703], - [-22.525167, 63.977737], - [-22.525104, 63.977754], - [-22.525016, 63.977749], - [-22.5249, 63.977743], - [-22.524793, 63.977759], - [-22.524707, 63.977805], - [-22.524566, 63.977908], - [-22.524426, 63.978033], - [-22.524323, 63.978136], - [-22.525471, 63.978403], - [-22.526575, 63.978596], - [-22.526897, 63.978601], - [-22.527097, 63.978691], - [-22.526968, 63.978781], - [-22.526604, 63.978789], - [-22.525594, 63.978658], - [-22.52457, 63.978433], - [-22.523903, 63.978203], - [-22.523721, 63.978153], - [-22.523486, 63.978106], - [-22.523334, 63.978075], - [-22.523246, 63.97808], - [-22.523082, 63.978093], - [-22.522886, 63.978119], - [-22.522765, 63.978144], - [-22.522678, 63.978193], - [-22.52259, 63.978238], - [-22.522521, 63.978288], - [-22.52247, 63.978329], - [-22.522427, 63.97838], - [-22.522397, 63.978432], - [-22.522392, 63.978489], - [-22.52237, 63.97853], - [-22.522329, 63.978572], - [-22.522265, 63.978617], - [-22.522189, 63.978638], - [-22.522113, 63.978644], - [-22.522012, 63.978632], - [-22.521862, 63.9786], - [-22.521688, 63.97856], - [-22.521527, 63.978538], - [-22.521258, 63.97854], - [-22.520941, 63.978552], - [-22.520555, 63.978576], - [-22.520135, 63.978644], - [-22.519584, 63.978756], - [-22.519431, 63.978808], - [-22.519355, 63.978842], - [-22.519306, 63.978878], - [-22.519253, 63.978922], - [-22.519197, 63.978994], - [-22.51915, 63.979048], - [-22.519104, 63.979095], - [-22.519046, 63.979128], - [-22.518967, 63.979144], - [-22.51883, 63.979149], - [-22.518671, 63.979138], - [-22.518522, 63.979125], - [-22.518352, 63.979108], - [-22.518003, 63.979087], - [-22.51781, 63.979101], - [-22.517647, 63.979122], - [-22.517404, 63.979186], - [-22.517118, 63.979294], - [-22.516813, 63.979409], - [-22.516616, 63.979512], - [-22.516453, 63.979653], - [-22.516374, 63.979766], - [-22.516331, 63.979862], - [-22.516296, 63.979988], - [-22.516241, 63.980091], - [-22.516208, 63.980168], - [-22.516156, 63.98026], - [-22.516188, 63.980334], - [-22.516261, 63.980386], - [-22.516361, 63.980419], - [-22.516491, 63.98045], - [-22.516907, 63.980524], - [-22.517191, 63.980585], - [-22.517468, 63.980629], - [-22.517655, 63.980678], - [-22.517803, 63.980751], - [-22.517858, 63.980793], - [-22.517883, 63.980848], - [-22.517887, 63.980905], - [-22.517864, 63.980947], - [-22.517823, 63.980994], - [-22.517749, 63.981042], - [-22.517711, 63.981097], - [-22.517523, 63.981309], - [-22.51742, 63.9814], - [-22.517333, 63.981447], - [-22.517212, 63.981487], - [-22.516962, 63.981557], - [-22.516767, 63.981613], - [-22.516516, 63.981684], - [-22.516337, 63.981735], - [-22.516214, 63.98178], - [-22.516076, 63.981817], - [-22.515405, 63.981863], - [-22.514862, 63.981876], - [-22.514555, 63.981887], - [-22.514419, 63.981897], - [-22.514282, 63.981926], - [-22.514149, 63.981988], - [-22.513993, 63.982037], - [-22.513795, 63.98212], - [-22.513574, 63.982297], - [-22.513121, 63.982291], - [-22.512147, 63.982029], - [-22.511623, 63.981914], - [-22.5115, 63.981757], - [-22.511475, 63.981699], - [-22.511387, 63.981646], - [-22.511301, 63.98159], - [-22.51123, 63.981539], - [-22.51122, 63.981491], - [-22.511286, 63.981458], - [-22.511375, 63.981415], - [-22.51133, 63.981297], - [-22.511266, 63.981122], - [-22.511032, 63.980912], - [-22.510776, 63.980723], - [-22.510197, 63.980487], - [-22.509638, 63.980333], - [-22.509218, 63.980253], - [-22.508899, 63.980167], - [-22.508498, 63.980073], - [-22.507919, 63.979997], - [-22.507158, 63.979923], - [-22.506475, 63.9798], - [-22.506024, 63.979681], - [-22.505709, 63.979612], - [-22.505513, 63.979517], - [-22.505331, 63.979463], - [-22.505078, 63.979421], - [-22.504913, 63.979351], - [-22.504774, 63.979283], - [-22.504628, 63.979169], - [-22.504504, 63.979045], - [-22.50436, 63.978931], - [-22.504115, 63.978821], - [-22.503698, 63.978627], - [-22.503238, 63.978452], - [-22.502948, 63.978373], - [-22.50269, 63.978312], - [-22.502437, 63.97826], - [-22.502228, 63.978188], - [-22.502079, 63.97808], - [-22.501973, 63.977997], - [-22.501937, 63.977918], - [-22.50194, 63.977823], - [-22.501979, 63.977755], - [-22.502033, 63.977677], - [-22.502045, 63.977577], - [-22.501998, 63.977477], - [-22.502001, 63.977368], - [-22.50214, 63.97719], - [-22.502219, 63.977075], - [-22.502234, 63.976988], - [-22.502215, 63.976907], - [-22.502113, 63.97685], - [-22.501813, 63.97674], - [-22.501327, 63.976584], - [-22.500935, 63.976512], - [-22.500592, 63.976507], - [-22.500319, 63.97656], - [-22.499903, 63.976689], - [-22.499585, 63.976821], - [-22.499345, 63.976885], - [-22.499103, 63.976899], - [-22.4988, 63.976891], - [-22.498627, 63.976919], - [-22.498211, 63.976931], - [-22.49789, 63.976917], - [-22.497437, 63.976915], - [-22.497166, 63.976903], - [-22.496989, 63.97691], - [-22.496813, 63.976899], - [-22.496671, 63.976861], - [-22.496501, 63.976843], - [-22.496368, 63.976779], - [-22.496197, 63.976792], - [-22.496043, 63.976837], - [-22.495815, 63.976864], - [-22.495436, 63.976859], - [-22.49503, 63.976866], - [-22.494189, 63.976914], - [-22.493242, 63.976797], - [-22.493123, 63.976748], - [-22.493047, 63.976702], - [-22.492879, 63.976671], - [-22.49268, 63.9766], - [-22.492393, 63.976533], - [-22.492217, 63.976484], - [-22.492061, 63.976479], - [-22.491906, 63.97649], - [-22.491777, 63.976499], - [-22.491631, 63.976491], - [-22.491469, 63.976472], - [-22.491321, 63.97646], - [-22.491158, 63.976462], - [-22.491013, 63.976483], - [-22.49083, 63.976524], - [-22.490681, 63.976512], - [-22.490523, 63.976499], - [-22.490346, 63.976482], - [-22.490174, 63.976453], - [-22.489946, 63.976426], - [-22.489767, 63.976401], - [-22.489578, 63.976396], - [-22.489407, 63.976379], - [-22.48921, 63.976374], - [-22.489078, 63.976352], - [-22.488887, 63.97632], - [-22.488753, 63.976331], - [-22.48857, 63.976332], - [-22.488354, 63.976317], - [-22.488141, 63.976317], - [-22.487978, 63.97634], - [-22.487852, 63.976357], - [-22.487691, 63.976382], - [-22.487519, 63.976392], - [-22.487279, 63.976386], - [-22.487099, 63.976392], - [-22.486948, 63.976399], - [-22.486766, 63.976419], - [-22.486618, 63.976421], - [-22.486349, 63.976416], - [-22.486127, 63.976419], - [-22.485875, 63.976432], - [-22.485336, 63.976468], - [-22.485048, 63.976476], - [-22.484681, 63.976495], - [-22.484455, 63.976529], - [-22.48426, 63.976596], - [-22.483981, 63.976532], - [-22.48373, 63.97654], - [-22.483498, 63.976525], - [-22.483273, 63.976512], - [-22.483075, 63.976487], - [-22.482859, 63.976485], - [-22.482652, 63.976467], - [-22.482436, 63.976445], - [-22.482244, 63.976401], - [-22.482028, 63.976352], - [-22.481857, 63.976314], - [-22.481694, 63.976276], - [-22.481565, 63.976279], - [-22.481364, 63.976289], - [-22.48102, 63.976273], - [-22.480769, 63.976283], - [-22.480205, 63.976264], - [-22.479704, 63.976246], - [-22.479284, 63.976201], - [-22.479155, 63.97614], - [-22.478919, 63.976097], - [-22.478575, 63.976033], - [-22.478146, 63.975936], - [-22.477835, 63.975898], - [-22.477558, 63.975883], - [-22.477379, 63.975832], - [-22.477156, 63.975765], - [-22.476974, 63.975699], - [-22.476829, 63.975633], - [-22.476656, 63.975569], - [-22.476516, 63.97547], - [-22.476405, 63.975368], - [-22.476265, 63.975257], - [-22.476126, 63.975125], - [-22.475707, 63.974981], - [-22.474526, 63.974934], - [-22.473283, 63.975056], - [-22.47248, 63.975114], - [-22.471414, 63.975082], - [-22.470315, 63.975057], - [-22.468504, 63.975169], - [-22.467493, 63.975289], - [-22.466708, 63.975325], - [-22.465668, 63.975288], - [-22.46531, 63.9752], - [-22.464889, 63.975129], - [-22.464251, 63.974869], - [-22.463363, 63.97471], - [-22.462301, 63.974479], - [-22.460952, 63.974256], - [-22.459214, 63.974112], - [-22.458265, 63.973861], - [-22.457439, 63.973899], - [-22.45714, 63.973867], - [-22.456865, 63.973788], - [-22.456372, 63.973613], - [-22.456157, 63.973426], - [-22.455602, 63.972925], - [-22.45518, 63.972395], - [-22.454503, 63.972195], - [-22.454043, 63.972143], - [-22.453324, 63.972091], - [-22.452224, 63.972172], - [-22.451377, 63.972315], - [-22.450426, 63.972621], - [-22.449102, 63.972637], - [-22.448029, 63.972529], - [-22.44745, 63.97252], - [-22.444567, 63.9725], - [-22.442204, 63.972388], - [-22.44034, 63.972493], - [-22.439564, 63.97244], - [-22.439082, 63.972426], - [-22.438337, 63.972517], - [-22.437131, 63.972611], - [-22.435703, 63.972792], - [-22.434457, 63.972915], - [-22.43284, 63.972769], - [-22.431968, 63.972812], - [-22.431146, 63.972995], - [-22.43018, 63.973283], - [-22.429866, 63.973438], - [-22.42939, 63.973583], - [-22.427966, 63.973676], - [-22.426056, 63.973918], - [-22.424941, 63.974057], - [-22.42419, 63.973998], - [-22.423589, 63.973927], - [-22.422983, 63.973835], - [-22.422514, 63.973743], - [-22.421214, 63.973538], - [-22.420281, 63.973385], - [-22.419505, 63.973363], - [-22.418778, 63.973422], - [-22.417826, 63.973581], - [-22.416279, 63.973863], - [-22.415821, 63.973946], - [-22.415548, 63.973974], - [-22.415049, 63.973977], - [-22.414291, 63.973897], - [-22.413654, 63.973788], - [-22.413227, 63.97368], - [-22.412138, 63.973552], - [-22.411342, 63.973301], - [-22.410753, 63.973128], - [-22.409641, 63.972997], - [-22.408364, 63.972842], - [-22.407432, 63.972685], - [-22.406499, 63.972627], - [-22.405815, 63.972596], - [-22.405145, 63.972479], - [-22.404784, 63.972551], - [-22.404654, 63.972755], - [-22.404492, 63.973061], - [-22.404664, 63.973233], - [-22.404882, 63.973432], - [-22.404234, 63.973445], - [-22.403698, 63.973388], - [-22.402773, 63.973248], - [-22.402083, 63.972891], - [-22.401669, 63.972523], - [-22.40163, 63.972226], - [-22.402088, 63.971843], - [-22.4028, 63.971512], - [-22.402214, 63.971347], - [-22.401716, 63.970994], - [-22.401058, 63.970706], - [-22.400429, 63.970376], - [-22.40012, 63.970024], - [-22.399279, 63.969871], - [-22.398424, 63.969695], - [-22.397839, 63.969723], - [-22.397243, 63.969957], - [-22.395997, 63.970136], - [-22.395276, 63.970124], - [-22.394718, 63.970299], - [-22.394927, 63.970759], - [-22.395849, 63.97131], - [-22.395639, 63.971641], - [-22.395472, 63.972174], - [-22.394802, 63.972633], - [-22.395472, 63.972817], - [-22.396519, 63.972872], - [-22.396707, 63.973478], - [-22.394661, 63.973792], - [-22.39407, 63.9742], - [-22.393933, 63.974673], - [-22.393995, 63.975118], - [-22.392991, 63.975591], - [-22.391368, 63.975775], - [-22.389665, 63.976271], - [-22.389296, 63.976323], - [-22.388867, 63.976342], - [-22.38892, 63.976135], - [-22.388588, 63.976008], - [-22.387739, 63.976246], - [-22.38626, 63.976927], - [-22.385891, 63.977998], - [-22.38606, 63.978425], - [-22.386991, 63.978559], - [-22.386832, 63.978889], - [-22.386803, 63.979233], - [-22.38684, 63.979822], - [-22.386825, 63.980606], - [-22.387096, 63.981219], - [-22.388124, 63.981602], - [-22.390743, 63.982165], - [-22.391965, 63.98252], - [-22.395337, 63.983014], - [-22.395659, 63.983666], - [-22.39476, 63.984414], - [-22.393619, 63.985342], - [-22.39177, 63.985747], - [-22.390913, 63.985964], - [-22.389408, 63.987279], - [-22.389063, 63.987585], - [-22.388124, 63.988585], - [-22.389254, 63.989644], - [-22.390127, 63.99068], - [-22.388997, 63.991536], - [-22.387251, 63.991671], - [-22.385707, 63.991444], - [-22.385453, 63.992346], - [-22.384939, 63.992774], - [-22.385372, 63.994221], - [-22.384521, 63.994697], - [-22.385299, 63.995657], - [-22.385658, 63.996445], - [-22.386326, 63.997345], - [-22.384991, 63.998764], - [-22.384785, 63.99989], - [-22.383193, 64.000137], - [-22.38119, 64.000813], - [-22.378879, 63.999935], - [-22.376671, 64.00025], - [-22.375592, 64.000925], - [-22.374257, 64.002163], - [-22.374873, 64.003267], - [-22.37626, 64.004212], - [-22.373846, 64.006125], - [-22.370559, 64.006305], - [-22.369327, 64.006958], - [-22.367324, 64.008106], - [-22.36604, 64.009006], - [-22.363266, 64.009592], - [-22.360185, 64.010424], - [-22.358747, 64.010987], - [-22.356795, 64.010424], - [-22.354494, 64.010385], - [-22.353154, 64.012025], - [-22.351471, 64.012537], - [-22.348966, 64.012474], - [-22.347462, 64.012215], - [-22.346731, 64.011606], - [-22.344325, 64.011655], - [-22.341574, 64.011217], - [-22.339749, 64.010518], - [-22.339097, 64.009484], - [-22.338365, 64.008913], - [-22.337062, 64.009127], - [-22.335678, 64.009805], - [-22.334049, 64.010269], - [-22.332583, 64.010483], - [-22.330385, 64.010732], - [-22.328594, 64.010626], - [-22.328024, 64.01009], - [-22.329001, 64.009912], - [-22.329571, 64.009198], - [-22.329082, 64.008413], - [-22.327291, 64.008021], - [-22.324685, 64.007949], - [-22.32322, 64.008342], - [-22.322568, 64.009091], - [-22.322405, 64.009769], - [-22.321428, 64.010411], - [-22.320207, 64.010732], - [-22.320207, 64.011268], - [-22.319556, 64.011839], - [-22.319718, 64.012445], - [-22.320207, 64.013052], - [-22.319556, 64.01348], - [-22.318253, 64.013408], - [-22.31695, 64.012659], - [-22.315321, 64.012624], - [-22.314426, 64.013337], - [-22.31353, 64.01348], - [-22.311576, 64.013587], - [-22.309215, 64.014015], - [-22.308319, 64.014978], - [-22.3084, 64.015763], - [-22.310925, 64.01637], - [-22.309622, 64.017047], - [-22.30669, 64.016334], - [-22.304899, 64.016548], - [-22.302456, 64.017154], - [-22.300828, 64.017725], - [-22.300746, 64.018474], - [-22.300421, 64.019259], - [-22.299769, 64.019259], - [-22.298548, 64.019295], - [-22.296919, 64.019794], - [-22.296594, 64.020115], - [-22.296594, 64.020686], - [-22.295942, 64.021221], - [-22.294477, 64.021114], - [-22.2935, 64.02147], - [-22.294151, 64.021934], - [-22.293011, 64.02254], - [-22.291301, 64.02254], - [-22.29008, 64.021827], - [-22.288533, 64.022041], - [-22.287963, 64.022505], - [-22.286253, 64.022469], - [-22.284706, 64.021863], - [-22.283647, 64.022077], - [-22.284136, 64.022505], - [-22.284462, 64.02336], - [-22.28381, 64.023824], - [-22.28381, 64.024502], - [-22.281693, 64.024823], - [-22.281774, 64.025322], - [-22.281286, 64.026142], - [-22.280309, 64.027034], - [-22.278273, 64.027497], - [-22.276726, 64.026927], - [-22.273958, 64.027426], - [-22.273876, 64.028603], - [-22.272004, 64.028995], - [-22.269724, 64.02871], - [-22.267769, 64.029138], - [-22.267444, 64.029744], - [-22.265897, 64.029672], - [-22.264187, 64.030136], - [-22.26378, 64.030813], - [-22.263128, 64.030992], - [-22.261825, 64.030849], - [-22.260767, 64.03092], - [-22.258894, 64.030813], - [-22.25694, 64.0301], - [-22.254579, 64.029993], - [-22.251973, 64.029565], - [-22.249856, 64.029708], - [-22.248309, 64.029423], - [-22.247006, 64.029031], - [-22.245948, 64.028924], - [-22.245296, 64.029316], - [-22.243831, 64.02928], - [-22.241714, 64.029173], - [-22.240899, 64.029458], - [-22.239189, 64.029351], - [-22.237072, 64.029423], - [-22.236177, 64.028852], - [-22.235281, 64.028211], - [-22.234223, 64.027925], - [-22.232594, 64.027711], - [-22.232187, 64.02739], - [-22.232838, 64.026891], - [-22.232757, 64.026071], - [-22.233001, 64.025465], - [-22.23406, 64.025001], - [-22.23292, 64.024751], - [-22.231698, 64.024965], - [-22.230314, 64.025037], - [-22.228197, 64.024823], - [-22.226548, 64.024879], - [-22.224664, 64.024921], - [-22.222877, 64.024604], - [-22.221912, 64.023906], - [-22.220511, 64.023547], - [-22.219352, 64.023272], - [-22.21829, 64.022447], - [-22.217372, 64.022595], - [-22.215972, 64.022849], - [-22.215247, 64.022299], - [-22.215151, 64.02177], - [-22.21602, 64.021579], - [-22.2166, 64.021241], - [-22.21631, 64.020437], - [-22.215441, 64.019612], - [-22.214909, 64.018851], - [-22.213702, 64.018639], - [-22.212012, 64.0183], - [-22.211384, 64.017518], - [-22.210032, 64.01737], - [-22.20839, 64.016989], - [-22.206265, 64.016947], - [-22.203947, 64.016735], - [-22.202498, 64.016312], - [-22.201243, 64.01574], - [-22.200132, 64.014979], - [-22.198104, 64.014979], - [-22.196993, 64.014577], - [-22.194482, 64.014788], - [-22.19255, 64.015021], - [-22.190812, 64.015148], - [-22.189363, 64.01519], - [-22.188349, 64.015], - [-22.187287, 64.014852], - [-22.186804, 64.014429], - [-22.185934, 64.013921], - [-22.184775, 64.013413], - [-22.183472, 64.013455], - [-22.182119, 64.013752], - [-22.181443, 64.014281], - [-22.18125, 64.014662], - [-22.180622, 64.015106], - [-22.181009, 64.015592], - [-22.181733, 64.015846], - [-22.181202, 64.016312], - [-22.181588, 64.016714], - [-22.181878, 64.0172], - [-22.17956, 64.017877], - [-22.178739, 64.017856], - [-22.177242, 64.018131], - [-22.176035, 64.018829], - [-22.174345, 64.019126], - [-22.172365, 64.019422], - [-22.171544, 64.018872], - [-22.169467, 64.018639], - [-22.167004, 64.018745], - [-22.165507, 64.019083], - [-22.163817, 64.019464], - [-22.162899, 64.019866], - [-22.160968, 64.020183], - [-22.159616, 64.01976], - [-22.157829, 64.020035], - [-22.157056, 64.021241], - [-22.15696, 64.02196], - [-22.156332, 64.022362], - [-22.155173, 64.022341], - [-22.155028, 64.0227], - [-22.154352, 64.023462], - [-22.153579, 64.02306], - [-22.153289, 64.0227], - [-22.152275, 64.022658], - [-22.151551, 64.022954], - [-22.150972, 64.023441], - [-22.149426, 64.023737], - [-22.148315, 64.023526], - [-22.148026, 64.023124], - [-22.146915, 64.023039], - [-22.146915, 64.023589], - [-22.146382, 64.023854], - [-22.145811, 64.024698], - [-22.146668, 64.025917], - [-22.146454, 64.027043], - [-22.145954, 64.028074], - [-22.14474, 64.028918], - [-22.142528, 64.029575], - [-22.138887, 64.029794], - [-22.137674, 64.030325], - [-22.134105, 64.030888], - [-22.132249, 64.031607], - [-22.131035, 64.032482], - [-22.12975, 64.033732], - [-22.129179, 64.034857], - [-22.128251, 64.035638], - [-22.127323, 64.036795], - [-22.127395, 64.038357], - [-22.128894, 64.039232], - [-22.127823, 64.040107], - [-22.125454, 64.040568], - [-22.023296, 63.97776], - [-21.939115, 63.977412], - [-21.805917, 63.98946], - [-21.70078, 63.995225] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "11270", - "properties": { - "NAME_ENGLISH": "Southern Region", - "Nname": "Suðurland", - "ISOCODE": "IS-8", - "density": 0, - "path": "/world/Iceland/Southern Region" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-20.241233, 63.461214], - [-20.241187, 63.461179], - [-20.241364, 63.461182], - [-20.241494, 63.461237], - [-20.24154, 63.461304], - [-20.241475, 63.461366], - [-20.241403, 63.461398], - [-20.241272, 63.461369], - [-20.241279, 63.461316], - [-20.241298, 63.461266], - [-20.241233, 63.461214] - ] - ], - [ - [ - [-20.260317, 63.416533], - [-20.260529, 63.416444], - [-20.26109, 63.416438], - [-20.261277, 63.4165], - [-20.261127, 63.416544], - [-20.260753, 63.416544], - [-20.260691, 63.416628], - [-20.260516, 63.416639], - [-20.260317, 63.416533] - ] - ], - [ - [ - [-20.258527, 63.415592], - [-20.258738, 63.415419], - [-20.259056, 63.415284], - [-20.259391, 63.415355], - [-20.259726, 63.415166], - [-20.260255, 63.415213], - [-20.260326, 63.415419], - [-20.259885, 63.415608], - [-20.25985, 63.415908], - [-20.259567, 63.416121], - [-20.259073, 63.416097], - [-20.258985, 63.415821], - [-20.258774, 63.415774], - [-20.258527, 63.415592] - ] - ], - [ - [ - [-20.330284, 63.438721], - [-20.331043, 63.438494], - [-20.33311, 63.439267], - [-20.332836, 63.439692], - [-20.331971, 63.439871], - [-20.330663, 63.439418], - [-20.330544, 63.439198], - [-20.330284, 63.438721] - ] - ], - [ - [ - [-19.028575, 63.399129], - [-19.028815, 63.398859], - [-19.029085, 63.398729], - [-19.030225, 63.398699], - [-19.030525, 63.398819], - [-19.030835, 63.398929], - [-19.031135, 63.399049], - [-19.031495, 63.399559], - [-19.032055, 63.399539], - [-19.032035, 63.399289], - [-19.032595, 63.399269], - [-19.032665, 63.399779], - [-19.032115, 63.399919], - [-19.031545, 63.399939], - [-19.030935, 63.399699], - [-19.029785, 63.399599], - [-19.029715, 63.399089], - [-19.028575, 63.399129] - ] - ], - [ - [ - [-20.337016, 63.440724], - [-20.336734, 63.440128], - [-20.33781, 63.439384], - [-20.338707, 63.439441], - [-20.339142, 63.439991], - [-20.339552, 63.440243], - [-20.338835, 63.440781], - [-20.337016, 63.440724] - ] - ], - [ - [ - [-20.329413, 63.442533], - [-20.331585, 63.443306], - [-20.330151, 63.444315], - [-20.328843, 63.444164], - [-20.329413, 63.442533] - ] - ], - [ - [ - [-20.336286, 63.446217], - [-20.336286, 63.44506], - [-20.337388, 63.444843], - [-20.338592, 63.444877], - [-20.339181, 63.44553], - [-20.337157, 63.446194], - [-20.336286, 63.446217] - ] - ], - [ - [ - [-20.328424, 63.440705], - [-20.331545, 63.440696], - [-20.332094, 63.441148], - [-20.33182, 63.441884], - [-20.330301, 63.442167], - [-20.329099, 63.442129], - [-20.328424, 63.440705] - ] - ], - [ - [ - [-20.237728, 63.461965], - [-20.237507, 63.46182], - [-20.237825, 63.461413], - [-20.237313, 63.461156], - [-20.237873, 63.460823], - [-20.238398, 63.4601], - [-20.237846, 63.459665], - [-20.237818, 63.459269], - [-20.238198, 63.459084], - [-20.238405, 63.459171], - [-20.238523, 63.459384], - [-20.239007, 63.459606], - [-20.240175, 63.459896], - [-20.240181, 63.460326], - [-20.240513, 63.460366], - [-20.240603, 63.460641], - [-20.240755, 63.460702], - [-20.24117, 63.460956], - [-20.240714, 63.461125], - [-20.240444, 63.461125], - [-20.240389, 63.461604], - [-20.239974, 63.461619], - [-20.23967, 63.461755], - [-20.239387, 63.461616], - [-20.238799, 63.461644], - [-20.238716, 63.461962], - [-20.238322, 63.462095], - [-20.237728, 63.462172], - [-20.237728, 63.461965] - ] - ], - [ - [ - [-20.363152, 63.38998], - [-20.362905, 63.389091], - [-20.363182, 63.388423], - [-20.364323, 63.388558], - [-20.365031, 63.3884], - [-20.365397, 63.388451], - [-20.364748, 63.388736], - [-20.364096, 63.388939], - [-20.363898, 63.389155], - [-20.363927, 63.389364], - [-20.364408, 63.389713], - [-20.365186, 63.390042], - [-20.365739, 63.390112], - [-20.366446, 63.390011], - [-20.367154, 63.38963], - [-20.368612, 63.389541], - [-20.369462, 63.38977], - [-20.369689, 63.389953], - [-20.369504, 63.390731], - [-20.368366, 63.390793], - [-20.367797, 63.391048], - [-20.367982, 63.391262], - [-20.368304, 63.391379], - [-20.367874, 63.391599], - [-20.36714, 63.391761], - [-20.366736, 63.391854], - [-20.366059, 63.391889], - [-20.364797, 63.39151], - [-20.363367, 63.390704], - [-20.363152, 63.38998] - ] - ], - [ - [ - [-20.360024, 63.360128], - [-20.360447, 63.359983], - [-20.361194, 63.360117], - [-20.361892, 63.360754], - [-20.363136, 63.360698], - [-20.363983, 63.360519], - [-20.365527, 63.360006], - [-20.366423, 63.358945], - [-20.366522, 63.358342], - [-20.366, 63.357873], - [-20.36595, 63.357382], - [-20.366373, 63.356947], - [-20.367319, 63.35717], - [-20.367444, 63.357829], - [-20.366971, 63.358152], - [-20.367543, 63.359191], - [-20.366821, 63.360285], - [-20.366373, 63.360977], - [-20.365302, 63.36158], - [-20.363809, 63.361803], - [-20.362613, 63.36216], - [-20.36112, 63.36264], - [-20.360796, 63.36254], - [-20.360846, 63.361178], - [-20.360024, 63.360128] - ] - ], - [ - [ - [-20.315506, 63.39002], - [-20.315856, 63.389543], - [-20.316719, 63.389669], - [-20.317555, 63.389638], - [-20.31805, 63.389454], - [-20.317937, 63.389232], - [-20.317951, 63.388972], - [-20.317937, 63.388661], - [-20.317668, 63.387494], - [-20.319013, 63.386968], - [-20.32006, 63.386974], - [-20.320698, 63.386524], - [-20.321901, 63.386302], - [-20.322368, 63.386448], - [-20.322382, 63.386651], - [-20.322708, 63.386873], - [-20.323203, 63.387076], - [-20.323784, 63.387177], - [-20.325135, 63.387202], - [-20.325482, 63.387399], - [-20.325242, 63.387608], - [-20.32452, 63.387925], - [-20.324336, 63.38823], - [-20.323571, 63.388839], - [-20.323118, 63.389244], - [-20.323302, 63.389555], - [-20.322821, 63.390012], - [-20.322863, 63.390297], - [-20.322085, 63.390773], - [-20.321335, 63.391375], - [-20.319721, 63.391286], - [-20.318163, 63.390785], - [-20.317102, 63.390785], - [-20.315789, 63.390464], - [-20.315506, 63.39002] - ] - ], - [ - [ - [-20.361793, 63.397323], - [-20.361875, 63.396463], - [-20.362773, 63.395805], - [-20.364121, 63.395384], - [-20.365878, 63.395238], - [-20.366858, 63.395695], - [-20.370739, 63.395732], - [-20.370861, 63.396134], - [-20.371719, 63.396518], - [-20.373721, 63.3965], - [-20.375314, 63.397067], - [-20.375641, 63.397488], - [-20.369554, 63.400615], - [-20.368696, 63.400579], - [-20.368696, 63.400268], - [-20.367879, 63.400231], - [-20.36792, 63.399097], - [-20.367798, 63.39875], - [-20.366245, 63.398384], - [-20.363672, 63.398366], - [-20.362365, 63.397872], - [-20.361793, 63.397323] - ] - ], - [ - [ - [-20.18305, 63.44803], - [-20.183526, 63.447717], - [-20.183869, 63.447491], - [-20.184308, 63.447409], - [-20.184557, 63.447256], - [-20.184816, 63.447258], - [-20.184987, 63.447207], - [-20.185075, 63.447209], - [-20.18563, 63.446966], - [-20.185671, 63.446896], - [-20.186033, 63.446737], - [-20.185994, 63.446718], - [-20.186255, 63.446578], - [-20.186399, 63.446539], - [-20.1865, 63.446384], - [-20.186578, 63.44636], - [-20.18661, 63.446288], - [-20.186492, 63.446254], - [-20.186481, 63.446231], - [-20.186654, 63.446067], - [-20.187, 63.445773], - [-20.187211, 63.445663], - [-20.18721, 63.445581], - [-20.187277, 63.445516], - [-20.187302, 63.445489], - [-20.187396, 63.445474], - [-20.187447, 63.445449], - [-20.187454, 63.445417], - [-20.187631, 63.445329], - [-20.187794, 63.445269], - [-20.18784, 63.445201], - [-20.1879, 63.44513], - [-20.188343, 63.444995], - [-20.188413, 63.444996], - [-20.188484, 63.444978], - [-20.188504, 63.44495], - [-20.189026, 63.444784], - [-20.18978, 63.444878], - [-20.19033, 63.445007], - [-20.190625, 63.445109], - [-20.190651, 63.444977], - [-20.190758, 63.444932], - [-20.190997, 63.445001], - [-20.191129, 63.445209], - [-20.191418, 63.445387], - [-20.191809, 63.445557], - [-20.191976, 63.445614], - [-20.192105, 63.44567], - [-20.192291, 63.445694], - [-20.192599, 63.445747], - [-20.19282, 63.445777], - [-20.193009, 63.44575], - [-20.193151, 63.445746], - [-20.193466, 63.445678], - [-20.193999, 63.445569], - [-20.194366, 63.445323], - [-20.194674, 63.445343], - [-20.194891, 63.445405], - [-20.194849, 63.445483], - [-20.194763, 63.445525], - [-20.194696, 63.445596], - [-20.19461, 63.445698], - [-20.194503, 63.445759], - [-20.193829, 63.446055], - [-20.193971, 63.446201], - [-20.194072, 63.446306], - [-20.194055, 63.446346], - [-20.19423, 63.44647], - [-20.194544, 63.447039], - [-20.194498, 63.447149], - [-20.194807, 63.447562], - [-20.19488, 63.447707], - [-20.19488, 63.447924], - [-20.194884, 63.448022], - [-20.195014, 63.44824], - [-20.19523, 63.448425], - [-20.195343, 63.448645], - [-20.195494, 63.448778], - [-20.19553, 63.44883], - [-20.195437, 63.448932], - [-20.19526, 63.44901], - [-20.19531, 63.44925], - [-20.19535, 63.44951], - [-20.19516, 63.45003], - [-20.19461, 63.45016], - [-20.19404, 63.45019], - [-20.19348, 63.45022], - [-20.19238, 63.45051], - [-20.18955, 63.4506], - [-20.18897, 63.45064], - [-20.18845, 63.45091], - [-20.186291, 63.451696], - [-20.185603, 63.451583], - [-20.184699, 63.451102], - [-20.18387, 63.45095], - [-20.183463, 63.450762], - [-20.183332, 63.450595], - [-20.183837, 63.450332], - [-20.184584, 63.450106], - [-20.185062, 63.449848], - [-20.185023, 63.449652], - [-20.185011, 63.449514], - [-20.18514, 63.449452], - [-20.18509, 63.449391], - [-20.185077, 63.449328], - [-20.184884, 63.449298], - [-20.185042, 63.449151], - [-20.184816, 63.449011], - [-20.184714, 63.448904], - [-20.184732, 63.448855], - [-20.183476, 63.449022], - [-20.182801, 63.448858], - [-20.18305, 63.44803] - ] - ], - [ - [ - [-20.167847, 63.467581], - [-20.167961, 63.467515], - [-20.168316, 63.467494], - [-20.168617, 63.467286], - [-20.169165, 63.467378], - [-20.169102, 63.467202], - [-20.16881, 63.46693], - [-20.168926, 63.466751], - [-20.169607, 63.46661], - [-20.169997, 63.466715], - [-20.170135, 63.466933], - [-20.170646, 63.46669], - [-20.170906, 63.46655], - [-20.170621, 63.466043], - [-20.17042, 63.465916], - [-20.170156, 63.46555], - [-20.168642, 63.465314], - [-20.168465, 63.464873], - [-20.169318, 63.464661], - [-20.169925, 63.464952], - [-20.170381, 63.464821], - [-20.17037, 63.464643], - [-20.171339, 63.464241], - [-20.171536, 63.46371], - [-20.171356, 63.46269], - [-20.171616, 63.46255], - [-20.171859, 63.462713], - [-20.171945, 63.462185], - [-20.17238, 63.461985], - [-20.172976, 63.46212], - [-20.173779, 63.461454], - [-20.174896, 63.46166], - [-20.175423, 63.461955], - [-20.176403, 63.461996], - [-20.177145, 63.462185], - [-20.178046, 63.462403], - [-20.178552, 63.462019], - [-20.179184, 63.462291], - [-20.179486, 63.462612], - [-20.179771, 63.462796], - [-20.180061, 63.462652], - [-20.180534, 63.462516], - [-20.181216, 63.46336], - [-20.182121, 63.463708], - [-20.182224, 63.464383], - [-20.182039, 63.464753], - [-20.182198, 63.464934], - [-20.182324, 63.46511], - [-20.182091, 63.465162], - [-20.181663, 63.465191], - [-20.181012, 63.465187], - [-20.180606, 63.465458], - [-20.180741, 63.465869], - [-20.180695, 63.466128], - [-20.181248, 63.466524], - [-20.181573, 63.4666], - [-20.182001, 63.466532], - [-20.182409, 63.466895], - [-20.182416, 63.467133], - [-20.181592, 63.467217], - [-20.180874, 63.467911], - [-20.180086, 63.46815], - [-20.178986, 63.46844], - [-20.178262, 63.468501], - [-20.177651, 63.468624], - [-20.176079, 63.468941], - [-20.175423, 63.469065], - [-20.174674, 63.469129], - [-20.173719, 63.469012], - [-20.173006, 63.468976], - [-20.172533, 63.46894], - [-20.17206, 63.468909], - [-20.171186, 63.468936], - [-20.170311, 63.468374], - [-20.169688, 63.4681], - [-20.169336, 63.468024], - [-20.168556, 63.467636], - [-20.168306, 63.467742], - [-20.167847, 63.467581] - ] - ], - [ - [ - [-20.590576, 63.301954], - [-20.591263, 63.300488], - [-20.594009, 63.298406], - [-20.596584, 63.297249], - [-20.597099, 63.296555], - [-20.598473, 63.296169], - [-20.601562, 63.295937], - [-20.604652, 63.296092], - [-20.607571, 63.296477], - [-20.609974, 63.297789], - [-20.612377, 63.299177], - [-20.614265, 63.300411], - [-20.615467, 63.301645], - [-20.617184, 63.303034], - [-20.617699, 63.30419], - [-20.617194, 63.304608], - [-20.616325, 63.304884], - [-20.613235, 63.306118], - [-20.611004, 63.30635], - [-20.609974, 63.307198], - [-20.608601, 63.30766], - [-20.606884, 63.308277], - [-20.603279, 63.308586], - [-20.601734, 63.308894], - [-20.599674, 63.309819], - [-20.597786, 63.310745], - [-20.596241, 63.31167], - [-20.595039, 63.310591], - [-20.595039, 63.309511], - [-20.595554, 63.307352], - [-20.594868, 63.305887], - [-20.592636, 63.304576], - [-20.591263, 63.303419], - [-20.590576, 63.301954] - ] - ], - [ - [ - [-20.225805, 63.436721], - [-20.227477, 63.435711], - [-20.228043, 63.435079], - [-20.229385, 63.434289], - [-20.231364, 63.432835], - [-20.231505, 63.43214], - [-20.232141, 63.431381], - [-20.233907, 63.429991], - [-20.234119, 63.429232], - [-20.235815, 63.428063], - [-20.238147, 63.427051], - [-20.241327, 63.425818], - [-20.243659, 63.424744], - [-20.24501, 63.424191], - [-20.245883, 63.423946], - [-20.247524, 63.423427], - [-20.247733, 63.423107], - [-20.248358, 63.422839], - [-20.249218, 63.422547], - [-20.250143, 63.422448], - [-20.250807, 63.422483], - [-20.250872, 63.422384], - [-20.250677, 63.422104], - [-20.250807, 63.421929], - [-20.250716, 63.421714], - [-20.250755, 63.421638], - [-20.250937, 63.421661], - [-20.250989, 63.421754], - [-20.251706, 63.422238], - [-20.251953, 63.422506], - [-20.252709, 63.422489], - [-20.253504, 63.422308], - [-20.255132, 63.422075], - [-20.255861, 63.422197], - [-20.256519, 63.422531], - [-20.257155, 63.422657], - [-20.257932, 63.422088], - [-20.259244, 63.421834], - [-20.260809, 63.421819], - [-20.262077, 63.421566], - [-20.26302, 63.420644], - [-20.265563, 63.419717], - [-20.268319, 63.419496], - [-20.27058, 63.418263], - [-20.272276, 63.416935], - [-20.270298, 63.415828], - [-20.26952, 63.415132], - [-20.26952, 63.414531], - [-20.268037, 63.413899], - [-20.267966, 63.413298], - [-20.267394, 63.413078], - [-20.268209, 63.412771], - [-20.269368, 63.412627], - [-20.269669, 63.412416], - [-20.270076, 63.412492], - [-20.270527, 63.412512], - [-20.27057, 63.412348], - [-20.269583, 63.412012], - [-20.268617, 63.412137], - [-20.267308, 63.412022], - [-20.265441, 63.412156], - [-20.263656, 63.412254], - [-20.263017, 63.411647], - [-20.263585, 63.410958], - [-20.264927, 63.410357], - [-20.266411, 63.41004], - [-20.267189, 63.408427], - [-20.266411, 63.407763], - [-20.266888, 63.407103], - [-20.267719, 63.40702], - [-20.269404, 63.406715], - [-20.269988, 63.406672], - [-20.270085, 63.406518], - [-20.2705, 63.406289], - [-20.271012, 63.406229], - [-20.271817, 63.406435], - [-20.272773, 63.406387], - [-20.273531, 63.406134], - [-20.27392, 63.405849], - [-20.274166, 63.405464], - [-20.274587, 63.404592], - [-20.274419, 63.40409], - [-20.274749, 63.403747], - [-20.275566, 63.403795], - [-20.276686, 63.403724], - [-20.277396, 63.403541], - [-20.277822, 63.402932], - [-20.278212, 63.402679], - [-20.278393, 63.4025], - [-20.279096, 63.402102], - [-20.279527, 63.401774], - [-20.279467, 63.401596], - [-20.279796, 63.401367], - [-20.279349, 63.401207], - [-20.279292, 63.40094], - [-20.279131, 63.400919], - [-20.278887, 63.4007], - [-20.278902, 63.400608], - [-20.279266, 63.400638], - [-20.279653, 63.400588], - [-20.280157, 63.400682], - [-20.280315, 63.400576], - [-20.279991, 63.400249], - [-20.279558, 63.399927], - [-20.279783, 63.39975], - [-20.280257, 63.399687], - [-20.280464, 63.399099], - [-20.279924, 63.398851], - [-20.280059, 63.398726], - [-20.280311, 63.398734], - [-20.280766, 63.398841], - [-20.281022, 63.39885], - [-20.281462, 63.399063], - [-20.282006, 63.39873], - [-20.282397, 63.398613], - [-20.28271, 63.398532], - [-20.28297, 63.398451], - [-20.283039, 63.39836], - [-20.282832, 63.398303], - [-20.283201, 63.398082], - [-20.283006, 63.397905], - [-20.282535, 63.397947], - [-20.282319, 63.397778], - [-20.281624, 63.397545], - [-20.282543, 63.397173], - [-20.283267, 63.396987], - [-20.284077, 63.39726], - [-20.285136, 63.396849], - [-20.287327, 63.397513], - [-20.291425, 63.397323], - [-20.293616, 63.398462], - [-20.292909, 63.399032], - [-20.293757, 63.39938], - [-20.295594, 63.399348], - [-20.297361, 63.400424], - [-20.296018, 63.400677], - [-20.295312, 63.400962], - [-20.295524, 63.401658], - [-20.295241, 63.402702], - [-20.293969, 63.403366], - [-20.293898, 63.403841], - [-20.29086, 63.404663], - [-20.290153, 63.404031], - [-20.290224, 63.403524], - [-20.289729, 63.404031], - [-20.288952, 63.404062], - [-20.288316, 63.404568], - [-20.288104, 63.405264], - [-20.287115, 63.405644], - [-20.285702, 63.405549], - [-20.284712, 63.405739], - [-20.282088, 63.405186], - [-20.28094, 63.405127], - [-20.280402, 63.405273], - [-20.280024, 63.405555], - [-20.279505, 63.406014], - [-20.279202, 63.406313], - [-20.279069, 63.406625], - [-20.27915, 63.40691], - [-20.280473, 63.408048], - [-20.281674, 63.408396], - [-20.282169, 63.409598], - [-20.282805, 63.410515], - [-20.283498, 63.410544], - [-20.283935, 63.410167], - [-20.285207, 63.410009], - [-20.286974, 63.410673], - [-20.289376, 63.412349], - [-20.291779, 63.413804], - [-20.293121, 63.414025], - [-20.294676, 63.415227], - [-20.295312, 63.416081], - [-20.296513, 63.416112], - [-20.297007, 63.416681], - [-20.296795, 63.417251], - [-20.298138, 63.417915], - [-20.299339, 63.418832], - [-20.2997, 63.419823], - [-20.29931, 63.42183], - [-20.30048, 63.423749], - [-20.300276, 63.424749], - [-20.301171, 63.426264], - [-20.301618, 63.427979], - [-20.301938, 63.428551], - [-20.30266, 63.42998], - [-20.303343, 63.430894], - [-20.303535, 63.431294], - [-20.30411, 63.431523], - [-20.304302, 63.432037], - [-20.304765, 63.433197], - [-20.305113, 63.433332], - [-20.305579, 63.433809], - [-20.305132, 63.434123], - [-20.304685, 63.43418], - [-20.305068, 63.43458], - [-20.303663, 63.435523], - [-20.30296, 63.435809], - [-20.30296, 63.436638], - [-20.301938, 63.437209], - [-20.302065, 63.43798], - [-20.303024, 63.439238], - [-20.304319, 63.439973], - [-20.304638, 63.439882], - [-20.304572, 63.440687], - [-20.304859, 63.440683], - [-20.305203, 63.439802], - [-20.305788, 63.439556], - [-20.306857, 63.439352], - [-20.307944, 63.439866], - [-20.308966, 63.439895], - [-20.310308, 63.439609], - [-20.311266, 63.439666], - [-20.311522, 63.440237], - [-20.311458, 63.441009], - [-20.312672, 63.441637], - [-20.313758, 63.441637], - [-20.315163, 63.44178], - [-20.315483, 63.44218], - [-20.314525, 63.442009], - [-20.313438, 63.442237], - [-20.312799, 63.442809], - [-20.312608, 63.443151], - [-20.313247, 63.44338], - [-20.312863, 63.444294], - [-20.310372, 63.444437], - [-20.309285, 63.444265], - [-20.30871, 63.444237], - [-20.308902, 63.444637], - [-20.30986, 63.444837], - [-20.310499, 63.444894], - [-20.311905, 63.444494], - [-20.311713, 63.445151], - [-20.312544, 63.445008], - [-20.31363, 63.444922], - [-20.314205, 63.444494], - [-20.314525, 63.44398], - [-20.3151, 63.443266], - [-20.315547, 63.443009], - [-20.316697, 63.44318], - [-20.31625, 63.44418], - [-20.315036, 63.444951], - [-20.313822, 63.445608], - [-20.311458, 63.445922], - [-20.311522, 63.446379], - [-20.310563, 63.446865], - [-20.309094, 63.447093], - [-20.308007, 63.447264], - [-20.306985, 63.44775], - [-20.304941, 63.447693], - [-20.302832, 63.448207], - [-20.303215, 63.447579], - [-20.301938, 63.447522], - [-20.300788, 63.447607], - [-20.299957, 63.447836], - [-20.299446, 63.447436], - [-20.299637, 63.446979], - [-20.299637, 63.446722], - [-20.298935, 63.446693], - [-20.298743, 63.446322], - [-20.297401, 63.446293], - [-20.295804, 63.446293], - [-20.294909, 63.446579], - [-20.294143, 63.446493], - [-20.29312, 63.446179], - [-20.292545, 63.445779], - [-20.2918, 63.44596], - [-20.29067, 63.446], - [-20.29048, 63.44652], - [-20.29057, 63.44703], - [-20.2909, 63.44728], - [-20.28979, 63.44745], - [-20.28926, 63.44772], - [-20.28874, 63.448], - [-20.28822, 63.44827], - [-20.2877, 63.44855], - [-20.28661, 63.44885], - [-20.284838, 63.449497], - [-20.281667, 63.450264], - [-20.280003, 63.450075], - [-20.279374, 63.449917], - [-20.27862, 63.449674], - [-20.278036, 63.44945], - [-20.277786, 63.449249], - [-20.277449, 63.44904], - [-20.276734, 63.44875], - [-20.276245, 63.448521], - [-20.27513, 63.448305], - [-20.273907, 63.448294], - [-20.273105, 63.448455], - [-20.271752, 63.448644], - [-20.27055, 63.44893], - [-20.26934, 63.449316], - [-20.267477, 63.449616], - [-20.265713, 63.44999], - [-20.265877, 63.45049], - [-20.264245, 63.450885], - [-20.262952, 63.450983], - [-20.261634, 63.451204], - [-20.260625, 63.451329], - [-20.25909, 63.45174], - [-20.257789, 63.452158], - [-20.258102, 63.45258], - [-20.257907, 63.453434], - [-20.257268, 63.453472], - [-20.257409, 63.453878], - [-20.258191, 63.453889], - [-20.258646, 63.454007], - [-20.258838, 63.454249], - [-20.257142, 63.454287], - [-20.255889, 63.454044], - [-20.254688, 63.454138], - [-20.254104, 63.454401], - [-20.253434, 63.454619], - [-20.252384, 63.454388], - [-20.252272, 63.453924], - [-20.252039, 63.453943], - [-20.251839, 63.453959], - [-20.251491, 63.454195], - [-20.25043, 63.454211], - [-20.249714, 63.454457], - [-20.250088, 63.454765], - [-20.25014, 63.455232], - [-20.249701, 63.455722], - [-20.248902, 63.456096], - [-20.247624, 63.456156], - [-20.247086, 63.456402], - [-20.245872, 63.456323], - [-20.244843, 63.456315], - [-20.244461, 63.456219], - [-20.244533, 63.45603], - [-20.244275, 63.455968], - [-20.244133, 63.455821], - [-20.244386, 63.455543], - [-20.245212, 63.455218], - [-20.245558, 63.455207], - [-20.245802, 63.455077], - [-20.246029, 63.454863], - [-20.246372, 63.454719], - [-20.246144, 63.454677], - [-20.245802, 63.454726], - [-20.245472, 63.454704], - [-20.245069, 63.454613], - [-20.244022, 63.454265], - [-20.243305, 63.454169], - [-20.242366, 63.45383], - [-20.241746, 63.453606], - [-20.241142, 63.453126], - [-20.241421, 63.452909], - [-20.241328, 63.452721], - [-20.241451, 63.452667], - [-20.241603, 63.452633], - [-20.241882, 63.452497], - [-20.242298, 63.452632], - [-20.242623, 63.452607], - [-20.242567, 63.452301], - [-20.242343, 63.452129], - [-20.242727, 63.451342], - [-20.243284, 63.4509], - [-20.243956, 63.450654], - [-20.24464, 63.450598], - [-20.245031, 63.450418], - [-20.24544, 63.450215], - [-20.245275, 63.449968], - [-20.24474, 63.449757], - [-20.244634, 63.44957], - [-20.24489, 63.449266], - [-20.245406, 63.44906], - [-20.246137, 63.448832], - [-20.246431, 63.448398], - [-20.246569, 63.447973], - [-20.247381, 63.447863], - [-20.247809, 63.448061], - [-20.24827, 63.447996], - [-20.248645, 63.448117], - [-20.24881, 63.448779], - [-20.248164, 63.449173], - [-20.247362, 63.449617], - [-20.247728, 63.449889], - [-20.249552, 63.450097], - [-20.250174, 63.449993], - [-20.251357, 63.45], - [-20.250527, 63.45034], - [-20.250217, 63.45061], - [-20.249409, 63.450989], - [-20.24945, 63.451163], - [-20.24963, 63.451323], - [-20.249726, 63.451388], - [-20.250265, 63.451677], - [-20.251191, 63.452081], - [-20.252198, 63.452293], - [-20.253097, 63.451992], - [-20.253709, 63.451482], - [-20.25392, 63.451521], - [-20.254471, 63.451291], - [-20.255577, 63.451051], - [-20.255638, 63.450699], - [-20.255586, 63.450284], - [-20.255559, 63.449323], - [-20.255234, 63.449134], - [-20.255354, 63.448907], - [-20.258321, 63.447291], - [-20.258785, 63.447302], - [-20.25934, 63.447164], - [-20.259714, 63.447147], - [-20.259947, 63.447195], - [-20.260537, 63.447042], - [-20.26106, 63.447022], - [-20.261662, 63.446879], - [-20.262516, 63.446947], - [-20.263548, 63.446855], - [-20.264113, 63.446907], - [-20.264393, 63.447049], - [-20.265253, 63.446678], - [-20.265376, 63.445795], - [-20.265191, 63.445486], - [-20.265303, 63.445416], - [-20.265575, 63.445406], - [-20.265865, 63.445478], - [-20.266253, 63.445399], - [-20.266437, 63.445465], - [-20.266196, 63.44551], - [-20.266314, 63.445737], - [-20.265961, 63.446041], - [-20.265795, 63.446761], - [-20.268085, 63.446975], - [-20.268095, 63.446815], - [-20.268587, 63.446481], - [-20.269335, 63.4465], - [-20.270186, 63.44612], - [-20.270514, 63.4461], - [-20.270616, 63.445969], - [-20.273448, 63.446426], - [-20.275433, 63.446407], - [-20.275424, 63.44654], - [-20.275659, 63.446541], - [-20.275677, 63.446279], - [-20.277514, 63.446264], - [-20.278295, 63.445551], - [-20.280938, 63.445531], - [-20.280948, 63.446053], - [-20.282646, 63.44605], - [-20.282727, 63.444335], - [-20.280946, 63.444345], - [-20.28095, 63.444816], - [-20.276743, 63.444868], - [-20.276141, 63.444303], - [-20.276152, 63.444116], - [-20.276392, 63.443958], - [-20.275707, 63.443712], - [-20.275604, 63.443568], - [-20.274999, 63.443617], - [-20.275029, 63.443873], - [-20.274871, 63.444224], - [-20.274594, 63.44425], - [-20.274314, 63.444117], - [-20.273791, 63.444086], - [-20.273649, 63.44408], - [-20.273421, 63.44475], - [-20.272149, 63.444749], - [-20.272383, 63.443926], - [-20.271719, 63.443873], - [-20.271812, 63.443559], - [-20.271074, 63.443536], - [-20.270494, 63.443464], - [-20.269848, 63.443401], - [-20.269243, 63.443341], - [-20.268663, 63.443175], - [-20.268028, 63.443287], - [-20.268399, 63.443574], - [-20.268112, 63.443651], - [-20.267679, 63.443345], - [-20.26723, 63.443404], - [-20.268133, 63.444073], - [-20.270901, 63.444193], - [-20.270841, 63.444406], - [-20.266676, 63.444254], - [-20.266313, 63.444147], - [-20.263332, 63.444183], - [-20.263204, 63.443965], - [-20.262579, 63.444012], - [-20.261902, 63.444049], - [-20.261778, 63.444401], - [-20.262031, 63.444517], - [-20.261643, 63.445245], - [-20.26146, 63.445236], - [-20.261245, 63.445224], - [-20.260309, 63.445515], - [-20.259444, 63.445689], - [-20.258693, 63.445586], - [-20.257793, 63.445698], - [-20.257321, 63.44584], - [-20.256782, 63.446325], - [-20.255569, 63.446672], - [-20.254215, 63.446787], - [-20.253026, 63.446711], - [-20.252998, 63.446705], - [-20.251688, 63.446426], - [-20.250345, 63.446057], - [-20.248936, 63.445738], - [-20.247212, 63.445613], - [-20.245777, 63.44567], - [-20.244369, 63.44549], - [-20.242226, 63.445475], - [-20.241599, 63.445574], - [-20.241012, 63.445381], - [-20.239706, 63.445154], - [-20.239146, 63.445304], - [-20.238688, 63.444897], - [-20.237592, 63.444621], - [-20.237161, 63.444628], - [-20.236743, 63.444161], - [-20.235986, 63.444059], - [-20.23525, 63.443452], - [-20.2349, 63.442623], - [-20.234653, 63.442458], - [-20.232867, 63.441913], - [-20.230881, 63.441504], - [-20.228495, 63.441031], - [-20.227519, 63.44057], - [-20.227226, 63.440076], - [-20.226889, 63.439457], - [-20.226771, 63.43846], - [-20.226342, 63.43754], - [-20.225805, 63.436721] - ] - ], - [ - [ - [-17.312432, 64.180035], - [-17.30299, 64.170762], - [-17.321358, 64.175324], - [-17.32874, 64.175324], - [-17.332688, 64.173604], - [-17.336808, 64.16994], - [-17.343846, 64.167023], - [-17.348481, 64.163208], - [-17.350026, 64.159018], - [-17.348112, 64.155397], - [-17.34521, 64.154187], - [-17.339039, 64.149214], - [-17.335949, 64.140081], - [-17.334919, 64.124952], - [-17.339374, 64.120341], - [-17.341777, 64.112247], - [-17.345047, 64.099845], - [-17.352764, 64.082702], - [-17.357227, 64.057181], - [-17.359287, 64.050721], - [-17.36272, 64.042307], - [-17.373706, 64.032688], - [-17.399815, 64.025096], - [-17.401152, 64.023412], - [-17.401965, 64.022387], - [-17.405214, 64.021445], - [-17.407188, 64.020632], - [-17.410915, 64.019581], - [-17.415798, 64.01874], - [-17.417701, 64.017739], - [-17.420186, 64.016294], - [-17.420425, 64.015227], - [-17.415694, 64.014243], - [-17.41211, 64.0133], - [-17.407713, 64.012609], - [-17.403464, 64.01283], - [-17.399112, 64.014159], - [-17.389267, 64.013237], - [-17.383007, 64.012798], - [-17.3745, 64.011488], - [-17.366731, 64.010775], - [-17.360708, 64.008813], - [-17.35459, 64.007696], - [-17.349383, 64.007415], - [-17.345262, 64.006343], - [-17.343635, 63.959273], - [-17.347502, 63.916152], - [-17.350179, 63.87912], - [-17.354045, 63.843219], - [-17.357019, 63.802808], - [-17.359398, 63.776273], - [-17.35981, 63.77097], - [-17.3621, 63.77068], - [-17.36323, 63.7704], - [-17.36439, 63.77038], - [-17.36554, 63.77037], - [-17.36612, 63.77037], - [-17.36727, 63.77034], - [-17.36841, 63.77006], - [-17.36954, 63.76979], - [-17.37067, 63.76951], - [-17.37123, 63.76925], - [-17.37181, 63.76924], - [-17.37239, 63.76923], - [-17.37354, 63.76921], - [-17.37413, 63.76933], - [-17.37409, 63.76882], - [-17.37677, 63.76869], - [-17.37724, 63.76851], - [-17.37774, 63.76867], - [-17.37812, 63.76862], - [-17.37867, 63.76836], - [-17.38038, 63.76807], - [-17.38096, 63.76807], - [-17.38154, 63.76806], - [-17.38325, 63.76777], - [-17.38496, 63.76749], - [-17.38611, 63.76747], - [-17.38669, 63.76746], - [-17.38782, 63.76718], - [-17.3884, 63.76717], - [-17.38898, 63.76715], - [-17.39013, 63.76715], - [-17.39071, 63.76714], - [-17.39127, 63.76686], - [-17.39184, 63.76686], - [-17.39243, 63.76698], - [-17.39413, 63.76657], - [-17.39471, 63.76656], - [-17.39584, 63.76629], - [-17.39813, 63.766], - [-17.40041, 63.76571], - [-17.40386, 63.76538], - [-17.40444, 63.76537], - [-17.40498, 63.76498], - [-17.40613, 63.76482], - [-17.4067, 63.76482], - [-17.40786, 63.7648], - [-17.40844, 63.76479], - [-17.409, 63.76478], - [-17.40957, 63.76452], - [-17.41188, 63.76448], - [-17.41245, 63.76447], - [-17.41301, 63.76421], - [-17.41359, 63.7642], - [-17.41474, 63.76418], - [-17.41645, 63.76389], - [-17.41703, 63.76388], - [-17.41761, 63.76387], - [-17.41816, 63.76361], - [-17.41929, 63.76333], - [-17.42043, 63.76306], - [-17.42156, 63.76278], - [-17.42212, 63.76252], - [-17.42267, 63.76225], - [-17.42438, 63.76197], - [-17.42551, 63.76169], - [-17.424312, 63.759111], - [-17.424542, 63.758331], - [-17.424802, 63.75807], - [-17.425952, 63.75793], - [-17.427092, 63.75778], - [-17.427132, 63.75829], - [-17.425982, 63.758311], - [-17.426292, 63.75856], - [-17.426342, 63.75907], - [-17.426362, 63.759331], - [-17.426712, 63.760091], - [-17.428442, 63.76006], - [-17.428692, 63.759541], - [-17.429182, 63.75851], - [-17.429422, 63.758], - [-17.431142, 63.75784], - [-17.434612, 63.75778], - [-17.435762, 63.757761], - [-17.436342, 63.75775], - [-17.436912, 63.75773], - [-17.438072, 63.75772], - [-17.438652, 63.75771], - [-17.440932, 63.75742], - [-17.442632, 63.75713], - [-17.443812, 63.75711], - [-17.444952, 63.757091], - [-17.446672, 63.75694], - [-17.446632, 63.756421], - [-17.447212, 63.756541], - [-17.448972, 63.756771], - [-17.449552, 63.756761], - [-17.452422, 63.75658], - [-17.452402, 63.756331], - [-17.451242, 63.75635], - [-17.451222, 63.756091], - [-17.452372, 63.75594], - [-17.452942, 63.75593], - [-17.454112, 63.75604], - [-17.454062, 63.755531], - [-17.454652, 63.755651], - [-17.455252, 63.75589], - [-17.455832, 63.755881], - [-17.457542, 63.7556], - [-17.459252, 63.755311], - [-17.459812, 63.7553], - [-17.460992, 63.75529], - [-17.461532, 63.75502], - [-17.462112, 63.75501], - [-17.463282, 63.75511], - [-17.463212, 63.75435], - [-17.463802, 63.75447], - [-17.464372, 63.75446], - [-17.466672, 63.75416], - [-17.467252, 63.75415], - [-17.467812, 63.75414], - [-17.468952, 63.753871], - [-17.470662, 63.75358], - [-17.471232, 63.75357], - [-17.471812, 63.75356], - [-17.472362, 63.7533], - [-17.472942, 63.75329], - [-17.473532, 63.75341], - [-17.473772, 63.75289], - [-17.474332, 63.75263], - [-17.474592, 63.75237], - [-17.475182, 63.75248], - [-17.475762, 63.75247], - [-17.476312, 63.752201], - [-17.478012, 63.75192], - [-17.480312, 63.75163], - [-17.482032, 63.75147], - [-17.481962, 63.7507], - [-17.483682, 63.750541], - [-17.484262, 63.750531], - [-17.484852, 63.750651], - [-17.484512, 63.75015], - [-17.484182, 63.749641], - [-17.484772, 63.749761], - [-17.485342, 63.749751], - [-17.485912, 63.74961], - [-17.488592, 63.748893], - [-17.507483, 63.74417], - [-17.511432, 63.744204], - [-17.548168, 63.74108], - [-17.568269, 63.737954], - [-17.594602, 63.732792], - [-17.633346, 63.723963], - [-17.636434, 63.721815], - [-17.641585, 63.720798], - [-17.644469, 63.72196], - [-17.655464, 63.718806], - [-17.67826, 63.71409], - [-17.67941, 63.71394], - [-17.67968, 63.71381], - [-17.67995, 63.71368], - [-17.68108, 63.7134], - [-17.68136, 63.71327], - [-17.6816, 63.71275], - [-17.68274, 63.7126], - [-17.68302, 63.71247], - [-17.68329, 63.71234], - [-17.68501, 63.71218], - [-17.68496, 63.71167], - [-17.68667, 63.71151], - [-17.68695, 63.71137], - [-17.68723, 63.71125], - [-17.68835, 63.71096], - [-17.68863, 63.71083], - [-17.68915, 63.71031], - [-17.6894, 63.70978], - [-17.69111, 63.70963], - [-17.69224, 63.70936], - [-17.69252, 63.70922], - [-17.69276, 63.70871], - [-17.69334, 63.70882], - [-17.69392, 63.70881], - [-17.6942, 63.70868], - [-17.69473, 63.70816], - [-17.695, 63.70802], - [-17.69613, 63.70776], - [-17.6964, 63.70761], - [-17.69668, 63.70748], - [-17.69781, 63.7072], - [-17.704119, 63.705801], - [-17.72229, 63.69778], - [-17.72342, 63.69751], - [-17.7237, 63.69737], - [-17.72397, 63.69724], - [-17.72426, 63.69711], - [-17.72448, 63.69659], - [-17.72507, 63.69671], - [-17.72566, 63.69682], - [-17.7259, 63.69631], - [-17.72617, 63.69617], - [-17.7279, 63.69601], - [-17.72784, 63.6955], - [-17.72899, 63.69548], - [-17.72923, 63.69497], - [-17.72951, 63.69483], - [-17.72979, 63.6947], - [-17.73006, 63.69457], - [-17.73118, 63.69429], - [-17.73146, 63.69415], - [-17.73174, 63.69402], - [-17.73201, 63.69389], - [-17.73229, 63.69375], - [-17.73343, 63.69361], - [-17.73367, 63.69309], - [-17.73394, 63.69296], - [-17.73508, 63.69281], - [-17.73531, 63.69229], - [-17.73559, 63.69216], - [-17.73587, 63.69203], - [-17.73611, 63.69151], - [-17.73726, 63.69149], - [-17.7372, 63.69097], - [-17.73835, 63.69082], - [-17.73862, 63.69069], - [-17.7389, 63.69056], - [-17.73918, 63.69043], - [-17.73945, 63.69029], - [-17.73973, 63.69016], - [-17.74, 63.69002], - [-17.74028, 63.68989], - [-17.74055, 63.68976], - [-17.74083, 63.68963], - [-17.74107, 63.68912], - [-17.7422, 63.68896], - [-17.74248, 63.68883], - [-17.74301, 63.6883], - [-17.74328, 63.68817], - [-17.74356, 63.68804], - [-17.74383, 63.6879], - [-17.74497, 63.68776], - [-17.7449, 63.68699], - [-17.74662, 63.68696], - [-17.74686, 63.68644], - [-17.74714, 63.68631], - [-17.74826, 63.68603], - [-17.74854, 63.6859], - [-17.74881, 63.68577], - [-17.74909, 63.68563], - [-17.74937, 63.6855], - [-17.74964, 63.68536], - [-17.74992, 63.68523], - [-17.75019, 63.6851], - [-17.75047, 63.68496], - [-17.75074, 63.68483], - [-17.75102, 63.6847], - [-17.75216, 63.68455], - [-17.75211, 63.68404], - [-17.75325, 63.68389], - [-17.75351, 63.68375], - [-17.75405, 63.68323], - [-17.75432, 63.6831], - [-17.7546, 63.68296], - [-17.75487, 63.68283], - [-17.75515, 63.6827], - [-17.75567, 63.68218], - [-17.75595, 63.68204], - [-17.75623, 63.68191], - [-17.75646, 63.6814], - [-17.7576, 63.68124], - [-17.75788, 63.68111], - [-17.75811, 63.68059], - [-17.75927, 63.68057], - [-17.75922, 63.68006], - [-17.76035, 63.67991], - [-17.76063, 63.67978], - [-17.76116, 63.67926], - [-17.76168, 63.67873], - [-17.76197, 63.6786], - [-17.76223, 63.67847], - [-17.76247, 63.67795], - [-17.76361, 63.6778], - [-17.76388, 63.67767], - [-17.76416, 63.67753], - [-17.76443, 63.6774], - [-17.76496, 63.67689], - [-17.76523, 63.67673], - [-17.76551, 63.67661], - [-17.76578, 63.67648], - [-17.76606, 63.67635], - [-17.76634, 63.67621], - [-17.76661, 63.67608], - [-17.76711, 63.6753], - [-17.76739, 63.67517], - [-17.76766, 63.67503], - [-17.76794, 63.6749], - [-17.76821, 63.67477], - [-17.76842, 63.674], - [-17.76957, 63.67396], - [-17.76952, 63.67346], - [-17.77068, 63.67344], - [-17.77089, 63.67267], - [-17.77116, 63.67254], - [-17.77144, 63.6724], - [-17.77171, 63.67227], - [-17.77199, 63.67214], - [-17.7722, 63.67136], - [-17.77335, 63.67134], - [-17.7733, 63.67083], - [-17.77445, 63.67081], - [-17.77438, 63.67003], - [-17.77553, 63.67002], - [-17.77577, 63.6695], - [-17.77627, 63.66872], - [-17.77654, 63.66859], - [-17.77682, 63.66846], - [-17.77705, 63.66794], - [-17.77764, 63.66806], - [-17.77823, 63.66818], - [-17.77844, 63.6674], - [-17.77865, 63.66663], - [-17.78635, 63.661461], - [-17.78729, 63.66083], - [-17.78844, 63.66068], - [-17.789, 63.66055], - [-17.78895, 63.66003], - [-17.79068, 63.66], - [-17.79092, 63.65948], - [-17.79113, 63.65871], - [-17.79228, 63.65869], - [-17.79223, 63.65818], - [-17.79338, 63.65816], - [-17.79362, 63.65764], - [-17.79417, 63.65736], - [-17.79469, 63.65685], - [-17.7949, 63.65608], - [-17.79527, 63.65598], - [-17.7954, 63.6553], - [-17.79654, 63.65515], - [-17.79709, 63.65488], - [-17.79786, 63.65397], - [-17.79841, 63.65371], - [-17.79867, 63.65345], - [-17.80041, 63.65341], - [-17.80009, 63.65316], - [-17.80056, 63.65212], - [-17.80111, 63.65186], - [-17.80137, 63.6516], - [-17.80252, 63.65158], - [-17.8036, 63.65079], - [-17.80381, 63.65002], - [-17.80405, 63.6495], - [-17.80519, 63.64948], - [-17.80512, 63.64871], - [-17.80651, 63.64817], - [-17.80703, 63.64765], - [-17.80758, 63.64739], - [-17.80782, 63.64687], - [-17.80918, 63.64607], - [-17.8102, 63.64477], - [-17.81075, 63.64451], - [-17.81127, 63.64399], - [-17.8118, 63.64346], - [-17.81232, 63.64294], - [-17.81258, 63.64268], - [-17.81373, 63.64267], - [-17.81447, 63.64136], - [-17.81499, 63.64084], - [-17.81552, 63.64032], - [-17.81607, 63.64005], - [-17.81656, 63.63928], - [-17.81711, 63.63901], - [-17.81766, 63.63874], - [-17.81871, 63.6377], - [-17.81892, 63.63693], - [-17.82007, 63.6369], - [-17.82031, 63.63639], - [-17.82083, 63.63586], - [-17.82136, 63.63534], - [-17.82188, 63.63482], - [-17.82243, 63.63455], - [-17.82295, 63.63403], - [-17.823229, 63.631868], - [-17.823236, 63.631243], - [-17.823766, 63.630856], - [-17.825001, 63.629978], - [-17.826377, 63.628868], - [-17.826919, 63.628449], - [-17.827449, 63.628194], - [-17.827804, 63.627372], - [-17.829888, 63.625861], - [-17.830537, 63.625169], - [-17.831067, 63.624649], - [-17.831702, 63.623923], - [-17.832308, 63.623384], - [-17.832722, 63.622965], - [-17.833351, 63.622623], - [-17.833956, 63.622198], - [-17.834249, 63.621776], - [-17.834941, 63.621084], - [-17.835277, 63.620501], - [-17.836637, 63.618886], - [-17.838194, 63.617434], - [-17.839837, 63.615906], - [-17.84117, 63.614395], - [-17.844259, 63.611907], - [-17.846514, 63.6097], - [-17.847992, 63.608374], - [-17.849197, 63.606979], - [-17.850102, 63.605725], - [-17.850453, 63.60462], - [-17.851532, 63.603191], - [-17.854047, 63.60144], - [-17.855539, 63.600123], - [-17.857452, 63.598534], - [-17.859705, 63.597057], - [-17.860666, 63.595811], - [-17.86241, 63.59434], - [-17.863434, 63.593011], - [-17.864362, 63.592212], - [-17.86688, 63.59016], - [-17.86891, 63.58756], - [-17.869025, 63.586761], - [-17.869409, 63.585769], - [-17.869922, 63.584834], - [-17.870356, 63.584095], - [-17.871584, 63.583581], - [-17.872623, 63.582253], - [-17.87366, 63.58055], - [-17.873916, 63.580034], - [-17.875659, 63.578301], - [-17.878233, 63.575394], - [-17.878655, 63.574405], - [-17.87964, 63.573443], - [-17.880881, 63.572014], - [-17.881733, 63.570795], - [-17.881996, 63.569932], - [-17.882111, 63.569362], - [-17.881934, 63.569121], - [-17.882143, 63.56861], - [-17.88246, 63.56809], - [-17.882796, 63.567618], - [-17.884098, 63.56625], - [-17.88504, 63.56522], - [-17.88559, 63.56495], - [-17.88663, 63.56391], - [-17.88767, 63.56286], - [-17.888513, 63.562157], - [-17.888903, 63.561849], - [-17.889372, 63.561135], - [-17.88976, 63.56077], - [-17.890485, 63.560164], - [-17.8911, 63.559769], - [-17.892149, 63.55897], - [-17.892414, 63.558294], - [-17.892956, 63.557621], - [-17.893767, 63.556929], - [-17.894428, 63.556302], - [-17.89525, 63.555532], - [-17.895964, 63.554877], - [-17.897086, 63.553984], - [-17.89841, 63.552958], - [-17.899586, 63.552027], - [-17.90043, 63.551591], - [-17.9014, 63.550861], - [-17.903131, 63.549626], - [-17.904784, 63.548633], - [-17.90564, 63.54765], - [-17.906202, 63.547484], - [-17.90701, 63.54699], - [-17.90756, 63.54672], - [-17.908175, 63.54635], - [-17.90892, 63.54605], - [-17.90947, 63.54579], - [-17.909893, 63.545413], - [-17.910657, 63.545002], - [-17.91108, 63.54473], - [-17.911989, 63.544285], - [-17.91285, 63.543843], - [-17.91382, 63.54339], - [-17.91436, 63.54313], - [-17.91462, 63.54287], - [-17.915342, 63.542643], - [-17.917224, 63.54147], - [-17.92006, 63.53994], - [-17.920667, 63.539515], - [-17.921551, 63.539015], - [-17.92222, 63.53861], - [-17.92387, 63.53807], - [-17.92498, 63.53754], - [-17.92607, 63.537], - [-17.927698, 63.536178], - [-17.929242, 63.535377], - [-17.930287, 63.535008], - [-17.931335, 63.53461], - [-17.932294, 63.534167], - [-17.93374, 63.53352], - [-17.935002, 63.532951], - [-17.936286, 63.532349], - [-17.938045, 63.531534], - [-17.941085, 63.5303], - [-17.941733, 63.529958], - [-17.942798, 63.52964], - [-17.943478, 63.529328], - [-17.944137, 63.529009], - [-17.944644, 63.528777], - [-17.94638, 63.52814], - [-17.947276, 63.527697], - [-17.94802, 63.52735], - [-17.948809, 63.526954], - [-17.94966, 63.52653], - [-17.950407, 63.526177], - [-17.951418, 63.52575], - [-17.95212, 63.52546], - [-17.952638, 63.52521], - [-17.95376, 63.52466], - [-17.95569, 63.52384], - [-17.956478, 63.523483], - [-17.957353, 63.523054], - [-17.958434, 63.522623], - [-17.959435, 63.52219], - [-17.961396, 63.521549], - [-17.962151, 63.521164], - [-17.96352, 63.520754], - [-17.964899, 63.520137], - [-17.965698, 63.519843], - [-17.96722, 63.519], - [-17.969895, 63.518059], - [-17.97111, 63.51777], - [-17.972254, 63.517301], - [-17.97368, 63.516702], - [-17.97549, 63.516018], - [-17.977043, 63.515497], - [-17.978399, 63.51506], - [-17.98049, 63.51425], - [-17.98159, 63.51384], - [-17.982474, 63.513598], - [-17.983823, 63.513178], - [-17.985029, 63.512783], - [-17.987025, 63.511996], - [-17.98821, 63.5114], - [-17.989622, 63.510802], - [-17.990475, 63.510618], - [-17.991779, 63.510245], - [-17.993126, 63.509763], - [-17.994625, 63.509247], - [-17.995854, 63.50885], - [-17.998, 63.50816], - [-18.0002, 63.507407], - [-18.002217, 63.50665], - [-18.003681, 63.50616], - [-18.005156, 63.505654], - [-18.006514, 63.50522], - [-18.008497, 63.504689], - [-18.010274, 63.504144], - [-18.012041, 63.503633], - [-18.013764, 63.503165], - [-18.01539, 63.50277], - [-18.01593, 63.5025], - [-18.01759, 63.50195], - [-18.01924, 63.50127], - [-18.02037, 63.50112], - [-18.02092, 63.50086], - [-18.02147, 63.50072], - [-18.02258, 63.50031], - [-18.02312, 63.50004], - [-18.02424, 63.49976], - [-18.02647, 63.4992], - [-18.027774, 63.498824], - [-18.028626, 63.498582], - [-18.029627, 63.498312], - [-18.031038, 63.497879], - [-18.031989, 63.497464], - [-18.033636, 63.496925], - [-18.034864, 63.496577], - [-18.036556, 63.496156], - [-18.038128, 63.495757], - [-18.039174, 63.495399], - [-18.040454, 63.495086], - [-18.04245, 63.494559], - [-18.0454, 63.49407], - [-18.0471, 63.4939], - [-18.04764, 63.49363], - [-18.04934, 63.49334], - [-18.04988, 63.49307], - [-18.05211, 63.49252], - [-18.05266, 63.49224], - [-18.05432, 63.4917], - [-18.05655, 63.49114], - [-18.05712, 63.49113], - [-18.0577, 63.49112], - [-18.05823, 63.49085], - [-18.05878, 63.49058], - [-18.05989, 63.4903], - [-18.06101, 63.49002], - [-18.0627, 63.48973], - [-18.06324, 63.48946], - [-18.06489, 63.48879], - [-18.066174, 63.488389], - [-18.0671, 63.4881], - [-18.06879, 63.48781], - [-18.069758, 63.48756], - [-18.071967, 63.487095], - [-18.074487, 63.486526], - [-18.075865, 63.48616], - [-18.077593, 63.485704], - [-18.079408, 63.485234], - [-18.081576, 63.484663], - [-18.083859, 63.484099], - [-18.085776, 63.48363], - [-18.087984, 63.483176], - [-18.089577, 63.482757], - [-18.091346, 63.482364], - [-18.093426, 63.481843], - [-18.094889, 63.481467], - [-18.097497, 63.480767], - [-18.09891, 63.48037], - [-18.10004, 63.48022], - [-18.10116, 63.47994], - [-18.10338, 63.47938], - [-18.10507, 63.47909], - [-18.10787, 63.47852], - [-18.10956, 63.47822], - [-18.110704, 63.477901], - [-18.11179, 63.47766], - [-18.112848, 63.47736], - [-18.11402, 63.4771], - [-18.11567, 63.47655], - [-18.116382, 63.476289], - [-18.11733, 63.47601], - [-18.11902, 63.47571], - [-18.12013, 63.47543], - [-18.12182, 63.47514], - [-18.12292, 63.47486], - [-18.12405, 63.47458], - [-18.1246, 63.47444], - [-18.12455, 63.47393], - [-18.12513, 63.47404], - [-18.12685, 63.47413], - [-18.12709, 63.47362], - [-18.12735, 63.47336], - [-18.12905, 63.47319], - [-18.12959, 63.47292], - [-18.13127, 63.47263], - [-18.13242, 63.4726], - [-18.13296, 63.47234], - [-18.13353, 63.47232], - [-18.13467, 63.47231], - [-18.13522, 63.47203], - [-18.13748, 63.47185], - [-18.13772, 63.47134], - [-18.13797, 63.47107], - [-18.13968, 63.47091], - [-18.14021, 63.47064], - [-18.14133, 63.47036], - [-18.14187, 63.47009], - [-18.14299, 63.46981], - [-18.14353, 63.46954], - [-18.14466, 63.46938], - [-18.14486, 63.46862], - [-18.14505, 63.46785], - [-18.14677, 63.46781], - [-18.147, 63.46729], - [-18.14726, 63.46703], - [-18.14839, 63.46688], - [-18.14893, 63.46661], - [-18.14949, 63.46647], - [-18.1494, 63.4657], - [-18.1511, 63.46554], - [-18.15164, 63.46527], - [-18.15276, 63.46499], - [-18.15441, 63.46443], - [-18.15498, 63.46443], - [-18.15556, 63.46441], - [-18.1561, 63.46414], - [-18.15666, 63.46401], - [-18.159448, 63.463474], - [-18.16283, 63.46285], - [-18.16512, 63.46292], - [-18.16569, 63.46291], - [-18.16776, 63.46265], - [-18.16793, 63.46248], - [-18.16963, 63.46231], - [-18.17074, 63.46203], - [-18.17129, 63.46176], - [-18.17186, 63.46175], - [-18.17244, 63.46174], - [-18.17582, 63.46141], - [-18.17637, 63.46114], - [-18.17805, 63.46084], - [-18.17859, 63.46058], - [-18.18031, 63.46054], - [-18.18087, 63.46053], - [-18.18256, 63.46023], - [-18.18541, 63.46017], - [-18.18598, 63.46016], - [-18.18653, 63.45989], - [-18.1871, 63.45988], - [-18.18767, 63.45986], - [-18.18935, 63.45957], - [-18.18989, 63.4593], - [-18.19047, 63.45929], - [-18.19104, 63.45928], - [-18.19329, 63.45897], - [-18.1944, 63.45869], - [-18.19495, 63.45842], - [-18.19549, 63.45815], - [-18.19606, 63.45814], - [-18.1972, 63.45811], - [-18.20003, 63.45779], - [-18.2006, 63.45778], - [-18.20117, 63.45777], - [-18.20171, 63.4575], - [-18.20229, 63.45749], - [-18.20285, 63.45747], - [-18.20399, 63.45744], - [-18.20456, 63.45744], - [-18.20682, 63.45713], - [-18.21021, 63.4568], - [-18.21078, 63.45678], - [-18.21135, 63.45677], - [-18.2125, 63.45675], - [-18.21307, 63.45673], - [-18.21421, 63.45671], - [-18.21478, 63.4567], - [-18.21532, 63.45644], - [-18.21646, 63.4564], - [-18.2176, 63.45638], - [-18.21986, 63.45607], - [-18.22154, 63.45577], - [-18.22211, 63.45576], - [-18.22324, 63.45574], - [-18.22665, 63.4554], - [-18.22722, 63.45539], - [-18.22836, 63.45537], - [-18.22947, 63.45508], - [-18.23001, 63.45482], - [-18.23059, 63.4548], - [-18.23173, 63.45478], - [-18.2323, 63.45476], - [-18.23287, 63.45475], - [-18.23455, 63.45446], - [-18.23681, 63.45415], - [-18.23738, 63.45414], - [-18.23795, 63.45412], - [-18.23849, 63.45386], - [-18.23906, 63.45384], - [-18.24134, 63.45379], - [-18.24359, 63.45348], - [-18.24417, 63.45347], - [-18.24645, 63.45342], - [-18.24756, 63.45314], - [-18.24867, 63.45286], - [-18.24924, 63.45284], - [-18.24983, 63.45296], - [-18.24977, 63.45245], - [-18.25204, 63.45227], - [-18.25261, 63.45226], - [-18.25489, 63.4522], - [-18.25657, 63.45191], - [-18.25714, 63.4519], - [-18.25829, 63.45187], - [-18.25886, 63.45186], - [-18.25943, 63.45184], - [-18.25997, 63.45158], - [-18.26054, 63.45156], - [-18.2611, 63.45155], - [-18.26393, 63.45123], - [-18.2645, 63.45122], - [-18.26676, 63.45091], - [-18.26844, 63.4506], - [-18.26901, 63.4506], - [-18.26958, 63.45059], - [-18.27183, 63.45028], - [-18.2724, 63.45027], - [-18.27355, 63.45024], - [-18.27412, 63.45023], - [-18.27469, 63.45022], - [-18.27583, 63.45019], - [-18.27639, 63.45018], - [-18.27694, 63.44991], - [-18.27751, 63.44989], - [-18.27808, 63.44987], - [-18.27865, 63.44987], - [-18.27979, 63.44984], - [-18.28147, 63.44955], - [-18.28204, 63.44953], - [-18.28262, 63.44952], - [-18.286, 63.44919], - [-18.28715, 63.44916], - [-18.28772, 63.44914], - [-18.28826, 63.44888], - [-18.28883, 63.44887], - [-18.29111, 63.44881], - [-18.29226, 63.44879], - [-18.29283, 63.44877], - [-18.29337, 63.44851], - [-18.29505, 63.44821], - [-18.29561, 63.4482], - [-18.29619, 63.44818], - [-18.30072, 63.44782], - [-18.30129, 63.44781], - [-18.30184, 63.44754], - [-18.30241, 63.44753], - [-18.30298, 63.44752], - [-18.30355, 63.4475], - [-18.30412, 63.44749], - [-18.30637, 63.44718], - [-18.30694, 63.44717], - [-18.30751, 63.44715], - [-18.30805, 63.44689], - [-18.30862, 63.44687], - [-18.30922, 63.44712], - [-18.30981, 63.44723], - [-18.31033, 63.44683], - [-18.3109, 63.44683], - [-18.31145, 63.44655], - [-18.31202, 63.44654], - [-18.31259, 63.44652], - [-18.31373, 63.4465], - [-18.31598, 63.44619], - [-18.31937, 63.44586], - [-18.32277, 63.44552], - [-18.32331, 63.44525], - [-18.32499, 63.44496], - [-18.32556, 63.44494], - [-18.3267, 63.44492], - [-18.32781, 63.44463], - [-18.3346, 63.44397], - [-18.33514, 63.4437], - [-18.33628, 63.44367], - [-18.33853, 63.44336], - [-18.34021, 63.44307], - [-18.34078, 63.44305], - [-18.34135, 63.44304], - [-18.34185, 63.44239], - [-18.34243, 63.4425], - [-18.343, 63.44249], - [-18.34411, 63.44221], - [-18.34522, 63.44192], - [-18.34579, 63.44191], - [-18.34636, 63.4419], - [-18.34691, 63.44163], - [-18.35027, 63.44104], - [-18.35084, 63.44102], - [-18.35141, 63.44101], - [-18.35366, 63.44071], - [-18.35477, 63.44042], - [-18.35588, 63.44014], - [-18.35704, 63.44024], - [-18.35698, 63.43973], - [-18.35756, 63.43984], - [-18.35813, 63.43984], - [-18.35866, 63.43956], - [-18.35923, 63.43942], - [-18.35929, 63.43993], - [-18.36377, 63.43918], - [-18.36435, 63.43917], - [-18.3666, 63.43886], - [-18.36774, 63.43884], - [-18.36888, 63.43882], - [-18.37167, 63.43822], - [-18.37222, 63.43809], - [-18.37228, 63.4386], - [-18.37284, 63.43846], - [-18.37396, 63.43818], - [-18.37569, 63.43839], - [-18.3768, 63.43811], - [-18.38136, 63.438], - [-18.38586, 63.43738], - [-18.387, 63.43735], - [-18.38872, 63.43732], - [-18.39325, 63.43695], - [-18.39493, 63.43666], - [-18.39551, 63.43664], - [-18.39775, 63.43633], - [-18.40114, 63.436], - [-18.40228, 63.43597], - [-18.4051, 63.43565], - [-18.40567, 63.43563], - [-18.40624, 63.43562], - [-18.40738, 63.43559], - [-18.40795, 63.43558], - [-18.40962, 63.43528], - [-18.4102, 63.43527], - [-18.41134, 63.43524], - [-18.41302, 63.43494], - [-18.41359, 63.43493], - [-18.41473, 63.4349], - [-18.41584, 63.43462], - [-18.4198, 63.43427], - [-18.4243, 63.43365], - [-18.42769, 63.43331], - [-18.42823, 63.43304], - [-18.42937, 63.43302], - [-18.43276, 63.43268], - [-18.4339, 63.43265], - [-18.43504, 63.43262], - [-18.43672, 63.43233], - [-18.43783, 63.43204], - [-18.44008, 63.43173], - [-18.44065, 63.43172], - [-18.44122, 63.43171], - [-18.44404, 63.43138], - [-18.44797, 63.43078], - [-18.45026, 63.43072], - [-18.45082, 63.43071], - [-18.45307, 63.4304], - [-18.45364, 63.43038], - [-18.45534, 63.43034], - [-18.45703, 63.43005], - [-18.45814, 63.42976], - [-18.46322, 63.42913], - [-18.46378, 63.42911], - [-18.46435, 63.4291], - [-18.46546, 63.42882], - [-18.46657, 63.42853], - [-18.46943, 63.42859], - [-18.46937, 63.42808], - [-18.47274, 63.42762], - [-18.47499, 63.4273], - [-18.47556, 63.42729], - [-18.47613, 63.42728], - [-18.47953, 63.42694], - [-18.4812, 63.42664], - [-18.48346, 63.42633], - [-18.48681, 63.42574], - [-18.48791, 63.42545], - [-18.48905, 63.42543], - [-18.49187, 63.4251], - [-18.49355, 63.4248], - [-18.49412, 63.42479], - [-18.49526, 63.42476], - [-18.49582, 63.42475], - [-18.497, 63.42485], - [-18.49692, 63.42434], - [-18.49805, 63.42418], - [-18.4986, 63.42391], - [-18.49916, 63.4239], - [-18.49973, 63.42388], - [-18.50141, 63.42359], - [-18.50533, 63.42298], - [-18.5059, 63.42296], - [-18.50647, 63.42295], - [-18.50872, 63.42264], - [-18.50983, 63.42235], - [-18.51205, 63.42179], - [-18.5154, 63.4212], - [-18.51597, 63.42118], - [-18.51713, 63.42128], - [-18.51706, 63.42077], - [-18.51993, 63.42083], - [-18.5205, 63.42081], - [-18.52161, 63.42053], - [-18.52215, 63.42026], - [-18.52496, 63.41993], - [-18.52664, 63.41964], - [-18.52778, 63.41961], - [-18.52835, 63.4196], - [-18.52947, 63.41931], - [-18.5306, 63.41928], - [-18.53509, 63.41866], - [-18.53734, 63.41835], - [-18.53788, 63.41808], - [-18.539, 63.41792], - [-18.53894, 63.4174], - [-18.53953, 63.41753], - [-18.5401, 63.41751], - [-18.54177, 63.41721], - [-18.54288, 63.41693], - [-18.54345, 63.41692], - [-18.54513, 63.41662], - [-18.54738, 63.41631], - [-18.54791, 63.41604], - [-18.54845, 63.41577], - [-18.55067, 63.4152], - [-18.55124, 63.41519], - [-18.55238, 63.41516], - [-18.55352, 63.41513], - [-18.55405, 63.41486], - [-18.55915, 63.41448], - [-18.55972, 63.41446], - [-18.56029, 63.41445], - [-18.56197, 63.41415], - [-18.5625, 63.41388], - [-18.56532, 63.41356], - [-18.56757, 63.41324], - [-18.5704, 63.41303], - [-18.57034, 63.41253], - [-18.57427, 63.41205], - [-18.5754, 63.4119], - [-18.57646, 63.41123], - [-18.57756, 63.41094], - [-18.57927, 63.41077], - [-18.57919, 63.41026], - [-18.57978, 63.41038], - [-18.58038, 63.41062], - [-18.58095, 63.4106], - [-18.58152, 63.41059], - [-18.58209, 63.41057], - [-18.58377, 63.41028], - [-18.5843, 63.41001], - [-18.58487, 63.40999], - [-18.58544, 63.40999], - [-18.58823, 63.40939], - [-18.5888, 63.40938], - [-18.58937, 63.40937], - [-18.58994, 63.40935], - [-18.59051, 63.40934], - [-18.59104, 63.40907], - [-18.59161, 63.40906], - [-18.59218, 63.40904], - [-18.59443, 63.40873], - [-18.59554, 63.40844], - [-18.59664, 63.40816], - [-18.59776, 63.40788], - [-18.60111, 63.40728], - [-18.60278, 63.40698], - [-18.60332, 63.40671], - [-18.60389, 63.4067], - [-18.60446, 63.40668], - [-18.6067, 63.40637], - [-18.60839, 63.40607], - [-18.60953, 63.40617], - [-18.60947, 63.40566], - [-18.6123, 63.40546], - [-18.61284, 63.40519], - [-18.61509, 63.40489], - [-18.61565, 63.40486], - [-18.62071, 63.40422], - [-18.62805, 63.40352], - [-18.62916, 63.40324], - [-18.63026, 63.40296], - [-18.63137, 63.40267], - [-18.63304, 63.40237], - [-18.63754, 63.40175], - [-18.64035, 63.40142], - [-18.64487, 63.40105], - [-18.64655, 63.40075], - [-18.64822, 63.40045], - [-18.64933, 63.40016], - [-18.651, 63.39987], - [-18.65211, 63.39958], - [-18.65379, 63.39928], - [-18.65831, 63.39892], - [-18.662533, 63.398545], - [-18.679792, 63.39701], - [-18.681509, 63.396703], - [-18.694726, 63.395934], - [-18.697645, 63.394781], - [-18.703653, 63.394012], - [-18.713953, 63.393781], - [-18.723566, 63.393704], - [-18.731634, 63.393397], - [-18.739873, 63.393551], - [-18.750688, 63.39432], - [-18.756696, 63.395011], - [-18.76003, 63.39499], - [-18.76121, 63.39521], - [-18.76177, 63.3952], - [-18.7629, 63.39504], - [-18.76352, 63.39541], - [-18.76465, 63.39538], - [-18.76638, 63.39546], - [-18.76613, 63.39572], - [-18.76931, 63.39602], - [-18.77105, 63.39623], - [-18.77222, 63.39646], - [-18.77396, 63.39667], - [-18.77684, 63.39685], - [-18.77858, 63.39706], - [-18.78032, 63.39727], - [-18.78324, 63.3977], - [-18.78498, 63.39791], - [-18.78789, 63.39835], - [-18.78846, 63.39834], - [-18.7896, 63.3983], - [-18.79132, 63.39838], - [-18.79139, 63.39889], - [-18.79429, 63.3992], - [-18.80065, 63.3998], - [-18.80356, 63.40024], - [-18.80648, 63.40067], - [-18.80762, 63.40064], - [-18.80819, 63.40062], - [-18.80993, 63.40083], - [-18.8111, 63.40106], - [-18.81458, 63.40148], - [-18.81514, 63.40146], - [-18.81629, 63.40143], - [-18.8186, 63.40163], - [-18.81917, 63.40161], - [-18.81977, 63.40185], - [-18.82212, 63.4023], - [-18.82329, 63.40253], - [-18.82503, 63.40273], - [-18.8256, 63.40272], - [-18.82622, 63.40296], - [-18.83026, 63.40336], - [-18.83317, 63.4038], - [-18.83609, 63.40423], - [-18.83783, 63.40444], - [-18.8384, 63.40442], - [-18.83893, 63.40415], - [-18.83949, 63.40402], - [-18.83955, 63.40452], - [-18.84011, 63.40438], - [-18.84125, 63.40435], - [-18.84299, 63.40456], - [-18.84416, 63.40478], - [-18.84701, 63.40471], - [-18.84758, 63.40469], - [-18.84875, 63.40491], - [-18.85049, 63.40512], - [-18.85106, 63.40511], - [-18.8522, 63.40508], - [-18.852774, 63.40506], - [-18.85631, 63.405064], - [-18.865065, 63.405448], - [-18.87233, 63.405911], - [-18.877497, 63.406335], - [-18.883655, 63.407149], - [-18.889612, 63.407523], - [-18.895996, 63.408543], - [-18.899588, 63.40889], - [-18.901998, 63.409189], - [-18.905158, 63.409625], - [-18.908524, 63.409993], - [-18.916683, 63.410759], - [-18.92737, 63.41161], - [-18.936195, 63.412385], - [-18.942181, 63.412847], - [-18.949953, 63.41345], - [-18.957792, 63.414251], - [-18.963088, 63.414543], - [-18.968326, 63.414793], - [-18.971296, 63.414821], - [-18.974882, 63.415101], - [-18.984122, 63.415341], - [-18.987589, 63.415465], - [-18.991241, 63.415455], - [-18.99384, 63.415358], - [-18.996609, 63.415362], - [-18.99853, 63.415201], - [-19.000329, 63.415054], - [-19.001453, 63.414949], - [-19.00243, 63.414904], - [-19.003285, 63.414853], - [-19.004383, 63.414729], - [-19.005338, 63.414555], - [-19.005476, 63.414464], - [-19.005442, 63.414349], - [-19.005701, 63.41424], - [-19.006228, 63.414123], - [-19.007086, 63.414181], - [-19.007857, 63.414223], - [-19.008961, 63.414191], - [-19.010396, 63.414105], - [-19.011859, 63.413903], - [-19.013638, 63.41369], - [-19.01506, 63.4134], - [-19.01706, 63.413067], - [-19.018952, 63.412654], - [-19.020041, 63.412411], - [-19.021157, 63.412052], - [-19.021887, 63.411798], - [-19.022162, 63.411469], - [-19.022362, 63.411132], - [-19.02261, 63.410678], - [-19.0226, 63.410274], - [-19.022164, 63.409826], - [-19.021541, 63.409274], - [-19.021629, 63.408954], - [-19.02182, 63.40859], - [-19.02236, 63.40832], - [-19.02289, 63.40805], - [-19.02344, 63.40791], - [-19.02447, 63.40711], - [-19.02548, 63.40619], - [-19.02661, 63.40603], - [-19.02682, 63.40551], - [-19.02707, 63.40525], - [-19.02877, 63.4052], - [-19.0287, 63.40469], - [-19.02984, 63.40465], - [-19.030085, 63.404295], - [-19.030832, 63.40403], - [-19.031568, 63.403281], - [-19.03144, 63.40179], - [-19.03169, 63.40153], - [-19.03281, 63.40137], - [-19.03391, 63.40108], - [-19.034469, 63.401148], - [-19.035151, 63.40126], - [-19.035881, 63.401367], - [-19.036714, 63.401531], - [-19.038009, 63.401849], - [-19.03976, 63.40207], - [-19.040593, 63.402224], - [-19.04088, 63.402278], - [-19.04152, 63.4024], - [-19.042627, 63.402425], - [-19.044404, 63.402572], - [-19.049689, 63.403197], - [-19.067561, 63.40457], - [-19.0725, 63.404614], - [-19.07731, 63.40497], - [-19.07906, 63.40517], - [-19.0802, 63.40514], - [-19.08077, 63.40513], - [-19.08364, 63.4053], - [-19.08629, 63.405291], - [-19.089116, 63.405388], - [-19.090712, 63.405233], - [-19.092544, 63.405165], - [-19.0956, 63.40496], - [-19.09674, 63.40493], - [-19.09731, 63.40491], - [-19.099883, 63.404293], - [-19.100127, 63.403996], - [-19.100504, 63.403854], - [-19.100743, 63.403714], - [-19.101246, 63.40325], - [-19.101032, 63.402873], - [-19.101277, 63.402516], - [-19.101602, 63.401893], - [-19.104172, 63.401879], - [-19.105542, 63.402062], - [-19.106348, 63.402063], - [-19.107323, 63.402155], - [-19.108393, 63.402273], - [-19.111998, 63.40245], - [-19.113974, 63.402412], - [-19.115721, 63.402387], - [-19.116559, 63.402291], - [-19.117236, 63.402213], - [-19.117886, 63.402115], - [-19.119106, 63.401457], - [-19.119997, 63.401046], - [-19.120805, 63.400951], - [-19.121637, 63.400914], - [-19.122354, 63.400905], - [-19.123171, 63.400799], - [-19.123435, 63.400643], - [-19.123548, 63.400327], - [-19.124016, 63.400066], - [-19.124266, 63.399302], - [-19.125253, 63.399033], - [-19.125343, 63.398553], - [-19.125404, 63.398345], - [-19.125687, 63.398152], - [-19.126548, 63.398097], - [-19.127265, 63.398284], - [-19.127527, 63.398386], - [-19.127612, 63.39848], - [-19.127685, 63.398558], - [-19.127768, 63.398793], - [-19.127648, 63.399092], - [-19.127311, 63.399253], - [-19.126178, 63.399275], - [-19.125737, 63.399509], - [-19.125378, 63.400032], - [-19.125522, 63.400595], - [-19.127206, 63.400932], - [-19.128107, 63.401071], - [-19.131998, 63.401606], - [-19.159292, 63.407139], - [-19.189161, 63.414285], - [-19.226412, 63.422888], - [-19.24533, 63.42813], - [-19.246687, 63.42843], - [-19.249812, 63.42924], - [-19.253824, 63.43013], - [-19.259496, 63.431574], - [-19.262807, 63.432244], - [-19.264568, 63.432759], - [-19.266604, 63.433224], - [-19.280102, 63.436845], - [-19.289418, 63.438915], - [-19.289978, 63.439056], - [-19.296881, 63.440833], - [-19.305901, 63.442938], - [-19.310904, 63.444051], - [-19.329932, 63.44792], - [-19.334912, 63.448866], - [-19.347838, 63.451307], - [-19.366071, 63.454608], - [-19.379795, 63.456746], - [-19.384464, 63.457451], - [-19.388964, 63.457737], - [-19.39346, 63.458016], - [-19.399356, 63.458371], - [-19.408105, 63.457987], - [-19.416537, 63.45953], - [-19.425966, 63.461593], - [-19.436942, 63.464696], - [-19.441932, 63.46578], - [-19.449134, 63.467114], - [-19.450547, 63.46741], - [-19.454434, 63.468169], - [-19.468067, 63.47088], - [-19.472348, 63.471733], - [-19.477965, 63.472858], - [-19.489257, 63.475719], - [-19.493688, 63.476816], - [-19.500631, 63.478539], - [-19.550003, 63.489169], - [-19.55283, 63.489858], - [-19.555758, 63.490322], - [-19.56992, 63.493178], - [-19.591529, 63.497848], - [-19.613778, 63.502227], - [-19.616795, 63.502931], - [-19.622757, 63.504036], - [-19.625276, 63.504421], - [-19.631255, 63.505355], - [-19.632405, 63.505535], - [-19.639242, 63.506604], - [-19.644114, 63.507205], - [-19.645358, 63.507453], - [-19.646481, 63.507637], - [-19.649565, 63.508144], - [-19.656996, 63.509782], - [-19.676422, 63.512953], - [-19.687872, 63.515087], - [-19.707626, 63.518203], - [-19.714331, 63.519496], - [-19.716969, 63.519845], - [-19.7183, 63.519878], - [-19.719953, 63.519743], - [-19.725052, 63.520789], - [-19.734794, 63.522014], - [-19.739453, 63.522593], - [-19.7396, 63.522605], - [-19.743197, 63.522905], - [-19.745678, 63.522997], - [-19.747315, 63.523214], - [-19.748759, 63.523832], - [-19.750489, 63.52415], - [-19.753051, 63.524405], - [-19.757204, 63.524483], - [-19.763691, 63.524969], - [-19.767102, 63.525675], - [-19.776051, 63.526916], - [-19.786205, 63.527945], - [-19.788122, 63.527916], - [-19.791561, 63.528238], - [-19.795317, 63.52871], - [-19.800969, 63.529022], - [-19.801009, 63.529025], - [-19.807759, 63.529541], - [-19.807889, 63.529553], - [-19.812255, 63.529947], - [-19.8168, 63.529978], - [-19.821346, 63.530666], - [-19.825023, 63.53086], - [-19.828457, 63.531396], - [-19.832278, 63.531587], - [-19.835232, 63.531683], - [-19.83887, 63.532131], - [-19.841946, 63.532208], - [-19.845436, 63.532409], - [-19.848955, 63.532763], - [-19.852436, 63.532657], - [-19.855973, 63.533151], - [-19.86159, 63.533473], - [-19.874526, 63.534291], - [-19.88581, 63.535303], - [-19.890573, 63.535336], - [-19.894017, 63.534912], - [-19.8941, 63.534938], - [-19.895556, 63.535401], - [-19.89563, 63.535407], - [-19.903836, 63.535989], - [-19.916073, 63.536512], - [-19.926697, 63.536903], - [-19.939081, 63.536871], - [-19.95433, 63.536628], - [-19.968091, 63.535755], - [-19.975488, 63.535939], - [-19.984101, 63.536251], - [-19.99301, 63.53625], - [-20.001803, 63.535989], - [-20.019828, 63.535205], - [-20.027036, 63.535041], - [-20.03792, 63.533844], - [-20.043963, 63.533372], - [-20.048467, 63.532537], - [-20.052133, 63.532248], - [-20.057525, 63.531527], - [-20.061623, 63.531239], - [-20.064678, 63.529847], - [-20.06853, 63.529015], - [-20.071707, 63.528573], - [-20.074327, 63.528576], - [-20.076458, 63.52873], - [-20.079581, 63.528671], - [-20.08283, 63.528536], - [-20.086573, 63.528713], - [-20.089355, 63.529309], - [-20.093289, 63.529193], - [-20.097181, 63.528746], - [-20.10151, 63.529193], - [-20.10537, 63.529073], - [-20.108683, 63.52907], - [-20.109042, 63.528937], - [-20.109564, 63.52813], - [-20.110979, 63.527165], - [-20.112954, 63.526424], - [-20.113134, 63.526378], - [-20.113337, 63.52636], - [-20.113555, 63.526373], - [-20.113751, 63.526417], - [-20.113902, 63.526489], - [-20.11399, 63.526578], - [-20.114006, 63.526677], - [-20.113948, 63.526771], - [-20.113822, 63.526851], - [-20.113643, 63.526908], - [-20.113432, 63.526935], - [-20.113225, 63.52693], - [-20.113085, 63.526909], - [-20.112733, 63.527022], - [-20.111794, 63.527449], - [-20.110485, 63.528277], - [-20.110002, 63.528722], - [-20.110313, 63.528913], - [-20.111208, 63.529234], - [-20.112281, 63.529573], - [-20.112974, 63.529732], - [-20.113355, 63.529769], - [-20.113452, 63.529645], - [-20.113478, 63.529611], - [-20.113527, 63.529583], - [-20.1136, 63.529562], - [-20.113685, 63.529553], - [-20.113772, 63.529558], - [-20.11385, 63.529575], - [-20.113909, 63.529604], - [-20.113944, 63.529639], - [-20.113949, 63.529678], - [-20.113924, 63.529716], - [-20.113723, 63.529872], - [-20.113541, 63.530216], - [-20.113352, 63.530796], - [-20.113372, 63.531028], - [-20.113532, 63.531131], - [-20.114019, 63.531216], - [-20.115259, 63.531317], - [-20.116292, 63.531352], - [-20.116574, 63.531336], - [-20.116767, 63.53126], - [-20.116986, 63.531128], - [-20.116705, 63.530933], - [-20.116792, 63.530874], - [-20.116892, 63.530812], - [-20.115778, 63.530487], - [-20.116809, 63.529935], - [-20.116077, 63.529771], - [-20.116001, 63.529777], - [-20.115925, 63.529772], - [-20.115857, 63.529755], - [-20.115805, 63.52973], - [-20.115776, 63.529698], - [-20.115771, 63.529663], - [-20.115793, 63.52963], - [-20.115838, 63.529602], - [-20.115898, 63.529583], - [-20.11597, 63.529574], - [-20.116044, 63.529575], - [-20.116113, 63.529586], - [-20.117474, 63.52986], - [-20.118173, 63.529709], - [-20.118881, 63.52948], - [-20.119784, 63.529085], - [-20.119889, 63.528971], - [-20.119465, 63.52844], - [-20.119062, 63.528037], - [-20.118869, 63.528083], - [-20.118686, 63.527951], - [-20.118826, 63.527889], - [-20.117898, 63.527356], - [-20.116923, 63.526912], - [-20.116731, 63.526934], - [-20.116534, 63.526927], - [-20.116352, 63.526893], - [-20.116205, 63.526834], - [-20.116108, 63.526757], - [-20.116072, 63.52667], - [-20.11608, 63.526622], - [-20.116107, 63.526575], - [-20.116192, 63.526504], - [-20.116334, 63.526443], - [-20.116515, 63.526405], - [-20.116712, 63.526396], - [-20.11691, 63.526416], - [-20.11708, 63.526464], - [-20.118016, 63.526782], - [-20.119067, 63.527294], - [-20.119775, 63.527796], - [-20.120312, 63.528243], - [-20.120944, 63.529363], - [-20.121177, 63.530794], - [-20.121473, 63.531035], - [-20.122684, 63.531179], - [-20.127699, 63.530784], - [-20.130094, 63.531313], - [-20.13282, 63.531282], - [-20.135968, 63.531885], - [-20.140961, 63.532182], - [-20.151116, 63.532284], - [-20.159676, 63.533023], - [-20.164681, 63.532903], - [-20.170222, 63.533804], - [-20.174902, 63.534257], - [-20.178465, 63.534407], - [-20.183219, 63.535654], - [-20.188183, 63.536723], - [-20.194229, 63.537671], - [-20.196685, 63.538552], - [-20.200493, 63.539568], - [-20.20145, 63.540261], - [-20.205193, 63.541037], - [-20.20937, 63.542461], - [-20.211579, 63.54292], - [-20.218124, 63.544958], - [-20.22078, 63.546366], - [-20.227548, 63.548401], - [-20.233726, 63.550074], - [-20.235809, 63.551399], - [-20.238316, 63.552324], - [-20.240929, 63.553286], - [-20.246164, 63.555166], - [-20.247346, 63.556031], - [-20.249626, 63.557083], - [-20.25275, 63.557798], - [-20.257647, 63.559828], - [-20.264317, 63.562535], - [-20.269346, 63.564611], - [-20.273602, 63.565484], - [-20.275401, 63.566682], - [-20.279423, 63.568095], - [-20.280463, 63.569126], - [-20.281541, 63.569526], - [-20.283876, 63.569908], - [-20.284665, 63.570691], - [-20.286101, 63.57178], - [-20.288127, 63.572344], - [-20.291589, 63.573659], - [-20.294037, 63.574674], - [-20.294966, 63.575275], - [-20.302143, 63.578243], - [-20.303084, 63.578136], - [-20.304539, 63.578392], - [-20.306206, 63.579037], - [-20.307352, 63.58067], - [-20.311396, 63.582418], - [-20.31383, 63.583134], - [-20.316665, 63.584855], - [-20.317501, 63.58509], - [-20.319367, 63.585324], - [-20.320694, 63.585087], - [-20.321548, 63.585281], - [-20.322439, 63.586758], - [-20.32488, 63.587646], - [-20.327557, 63.589212], - [-20.329557, 63.589848], - [-20.332005, 63.590718], - [-20.332607, 63.590217], - [-20.333272, 63.589986], - [-20.334013, 63.590262], - [-20.334088, 63.590594], - [-20.333341, 63.590921], - [-20.333991, 63.591726], - [-20.335593, 63.592592], - [-20.336737, 63.592702], - [-20.337953, 63.592387], - [-20.34004, 63.593285], - [-20.339579, 63.59403], - [-20.340875, 63.595101], - [-20.342662, 63.595526], - [-20.344171, 63.595437], - [-20.346119, 63.597452], - [-20.349657, 63.598542], - [-20.352255, 63.598785], - [-20.35635, 63.600802], - [-20.356583, 63.601245], - [-20.35546, 63.601676], - [-20.356536, 63.602468], - [-20.358318, 63.602939], - [-20.359653, 63.603054], - [-20.361962, 63.604213], - [-20.364007, 63.604319], - [-20.365007, 63.604759], - [-20.365138, 63.605592], - [-20.367373, 63.607226], - [-20.371369, 63.608569], - [-20.382101, 63.61395], - [-20.39153, 63.61815], - [-20.394992, 63.620053], - [-20.39846, 63.621044], - [-20.406525, 63.624567], - [-20.408216, 63.625869], - [-20.414473, 63.627982], - [-20.415972, 63.629145], - [-20.423017, 63.632132], - [-20.424681, 63.633441], - [-20.430143, 63.635256], - [-20.432676, 63.636455], - [-20.443568, 63.640617], - [-20.450753, 63.643567], - [-20.452264, 63.644308], - [-20.459581, 63.647239], - [-20.461225, 63.64792], - [-20.465153, 63.649857], - [-20.47059, 63.652281], - [-20.475614, 63.65414], - [-20.480532, 63.656275], - [-20.492001, 63.661211], - [-20.493601, 63.662086], - [-20.49865, 63.664399], - [-20.50661, 63.667575], - [-20.515896, 63.670745], - [-20.528972, 63.677081], - [-20.53739, 63.680374], - [-20.541649, 63.682185], - [-20.544407, 63.683025], - [-20.549736, 63.684685], - [-20.552703, 63.68579], - [-20.556209, 63.687324], - [-20.559065, 63.688792], - [-20.560268, 63.689147], - [-20.565182, 63.691332], - [-20.567564, 63.692086], - [-20.568402, 63.692089], - [-20.568959, 63.692498], - [-20.56942, 63.692858], - [-20.57241, 63.694581], - [-20.576496, 63.696256], - [-20.585224, 63.699491], - [-20.587617, 63.699992], - [-20.594634, 63.702666], - [-20.600364, 63.70497], - [-20.604764, 63.707159], - [-20.622473, 63.713284], - [-20.631771, 63.716824], - [-20.651546, 63.725038], - [-20.656325, 63.726407], - [-20.660469, 63.727219], - [-20.669268, 63.7305], - [-20.674893, 63.732218], - [-20.68417, 63.735768], - [-20.690201, 63.738015], - [-20.699322, 63.741629], - [-20.703659, 63.743236], - [-20.722203, 63.749583], - [-20.735503, 63.753587], - [-20.737086, 63.754327], - [-20.738064, 63.754555], - [-20.739461, 63.755233], - [-20.740922, 63.755712], - [-20.748868, 63.758861], - [-20.765667, 63.76383], - [-20.770764, 63.765754], - [-20.774917, 63.767146], - [-20.779333, 63.768241], - [-20.781001, 63.768577], - [-20.781635, 63.768852], - [-20.782601, 63.769059], - [-20.78565, 63.769966], - [-20.789944, 63.771022], - [-20.792061, 63.771241], - [-20.794177, 63.771633], - [-20.795612, 63.771711], - [-20.799167, 63.772199], - [-20.800234, 63.772496], - [-20.801089, 63.772554], - [-20.802576, 63.77305], - [-20.803175, 63.773122], - [-20.804147, 63.773311], - [-20.804572, 63.773512], - [-20.805673, 63.773743], - [-20.80611, 63.773733], - [-20.80707, 63.773882], - [-20.807467, 63.774019], - [-20.808111, 63.774077], - [-20.808841, 63.774086], - [-20.80963, 63.774046], - [-20.810231, 63.773904], - [-20.810601, 63.77378], - [-20.810787, 63.773791], - [-20.811422, 63.773604], - [-20.812029, 63.774217], - [-20.812793, 63.774846], - [-20.813242, 63.774889], - [-20.813719, 63.774954], - [-20.814969, 63.77498], - [-20.816711, 63.775807], - [-20.819947, 63.7768], - [-20.821166, 63.777452], - [-20.822577, 63.777981], - [-20.830752, 63.781471], - [-20.842752, 63.785153], - [-20.850919, 63.788024], - [-20.865003, 63.792625], - [-20.87667, 63.796084], - [-20.886837, 63.797703], - [-20.89617, 63.801529], - [-20.903754, 63.804509], - [-20.906864, 63.805521], - [-20.911671, 63.807084], - [-20.916004, 63.808813], - [-20.922004, 63.811057], - [-20.928254, 63.812418], - [-20.933004, 63.813521], - [-20.936588, 63.815176], - [-20.940088, 63.816573], - [-20.944755, 63.817713], - [-20.945664, 63.817917], - [-20.947849, 63.818406], - [-20.950338, 63.818963], - [-20.955677, 63.820227], - [-20.95869, 63.819833], - [-20.960855, 63.820567], - [-20.962407, 63.821028], - [-20.964069, 63.821341], - [-20.965094, 63.82156], - [-20.965752, 63.822163], - [-20.968111, 63.822305], - [-20.969455, 63.822758], - [-20.970486, 63.822677], - [-20.971774, 63.82179], - [-20.973426, 63.821146], - [-20.975341, 63.82096], - [-20.977093, 63.821047], - [-20.97909, 63.821522], - [-20.982729, 63.823058], - [-20.98362, 63.822687], - [-20.984071, 63.822709], - [-20.984451, 63.822946], - [-20.985189, 63.82304], - [-20.985131, 63.823175], - [-20.984346, 63.823226], - [-20.985805, 63.823542], - [-20.988224, 63.823944], - [-20.987897, 63.824256], - [-20.986694, 63.824302], - [-20.98624, 63.824632], - [-20.986913, 63.825049], - [-20.98899, 63.825344], - [-20.989556, 63.825618], - [-20.991141, 63.825769], - [-20.993419, 63.826365], - [-20.996516, 63.826639], - [-20.996968, 63.826411], - [-20.997722, 63.826506], - [-20.999342, 63.826959], - [-21.00059, 63.82696], - [-21.001633, 63.826649], - [-21.002123, 63.826726], - [-21.001932, 63.82688], - [-21.002054, 63.827029], - [-21.003292, 63.82653], - [-21.00374, 63.826214], - [-21.00402, 63.826629], - [-21.003619, 63.826828], - [-21.003718, 63.827127], - [-21.00473, 63.8273], - [-21.005525, 63.827175], - [-21.005752, 63.827423], - [-21.006381, 63.827498], - [-21.007885, 63.827556], - [-21.008476, 63.827755], - [-21.009034, 63.827779], - [-21.009545, 63.827579], - [-21.010154, 63.827663], - [-21.010595, 63.828022], - [-21.011388, 63.828145], - [-21.012132, 63.828253], - [-21.01312, 63.82849], - [-21.015113, 63.828552], - [-21.015897, 63.828423], - [-21.015881, 63.828583], - [-21.016471, 63.828755], - [-21.017448, 63.828947], - [-21.0185, 63.82916], - [-21.01908, 63.82914], - [-21.019465, 63.829151], - [-21.02025, 63.82921], - [-21.02141, 63.82917], - [-21.02117, 63.82901], - [-21.02077, 63.82894], - [-21.021027, 63.82873], - [-21.02116, 63.828735], - [-21.021455, 63.828798], - [-21.02234, 63.828672], - [-21.023048, 63.82904], - [-21.022241, 63.829281], - [-21.022817, 63.829421], - [-21.023448, 63.82943], - [-21.024725, 63.829324], - [-21.024971, 63.829007], - [-21.026242, 63.828911], - [-21.026413, 63.829043], - [-21.026215, 63.82941], - [-21.026855, 63.829432], - [-21.027607, 63.829285], - [-21.028055, 63.829161], - [-21.029288, 63.828971], - [-21.02966, 63.829227], - [-21.03031, 63.829258], - [-21.031691, 63.828988], - [-21.033, 63.82907], - [-21.032779, 63.829414], - [-21.032879, 63.829701], - [-21.03371, 63.82968], - [-21.034626, 63.829595], - [-21.03497, 63.82969], - [-21.034814, 63.830008], - [-21.036534, 63.830379], - [-21.036702, 63.830132], - [-21.038152, 63.830312], - [-21.039128, 63.830498], - [-21.040286, 63.830646], - [-21.041819, 63.83112], - [-21.042731, 63.830979], - [-21.043771, 63.831009], - [-21.045088, 63.831274], - [-21.047741, 63.831503], - [-21.048625, 63.831606], - [-21.049374, 63.831648], - [-21.05023, 63.831819], - [-21.050704, 63.831864], - [-21.051917, 63.832007], - [-21.052742, 63.832026], - [-21.054136, 63.832113], - [-21.054802, 63.832153], - [-21.05519, 63.83224], - [-21.056259, 63.832385], - [-21.058323, 63.83265], - [-21.059178, 63.832643], - [-21.05938, 63.832801], - [-21.06001, 63.83306], - [-21.06064, 63.83329], - [-21.06127, 63.83352], - [-21.0619, 63.83375], - [-21.06254, 63.83398], - [-21.063311, 63.834337], - [-21.063831, 63.834595], - [-21.064382, 63.834912], - [-21.064885, 63.835086], - [-21.065006, 63.835128], - [-21.06504, 63.835294], - [-21.065317, 63.835596], - [-21.06574, 63.835862], - [-21.066208, 63.836157], - [-21.0667, 63.836325], - [-21.06714, 63.83649], - [-21.067696, 63.83655], - [-21.068411, 63.836654], - [-21.068674, 63.836744], - [-21.069316, 63.836963], - [-21.069871, 63.837049], - [-21.070485, 63.837245], - [-21.070701, 63.837423], - [-21.071032, 63.83758], - [-21.071457, 63.837673], - [-21.07206, 63.83769], - [-21.072706, 63.837785], - [-21.073611, 63.837957], - [-21.074201, 63.838213], - [-21.07452, 63.83837], - [-21.07488, 63.838463], - [-21.075445, 63.83861], - [-21.075696, 63.838804], - [-21.076661, 63.839166], - [-21.077767, 63.839536], - [-21.078548, 63.83977], - [-21.079073, 63.839923], - [-21.080551, 63.840261], - [-21.081093, 63.840423], - [-21.081282, 63.840553], - [-21.082063, 63.840784], - [-21.08325, 63.84107], - [-21.08388, 63.8413], - [-21.08451, 63.84153], - [-21.08514, 63.84176], - [-21.08578, 63.84199], - [-21.08641, 63.84222], - [-21.08704, 63.84245], - [-21.08825, 63.84265], - [-21.08888, 63.84288], - [-21.08951, 63.84311], - [-21.09014, 63.84334], - [-21.09077, 63.84357], - [-21.0914, 63.8438], - [-21.09203, 63.84403], - [-21.09324, 63.84424], - [-21.09387, 63.84447], - [-21.09449, 63.8447], - [-21.09571, 63.8449], - [-21.09692, 63.84511], - [-21.09813, 63.84532], - [-21.10117, 63.84596], - [-21.10474, 63.84632], - [-21.10653, 63.8465], - [-21.107674, 63.846642], - [-21.111194, 63.846746], - [-21.111805, 63.846818], - [-21.112872, 63.847035], - [-21.114035, 63.847163], - [-21.115403, 63.847717], - [-21.116835, 63.848143], - [-21.1177, 63.848588], - [-21.118312, 63.848633], - [-21.118666, 63.84907], - [-21.118926, 63.849204], - [-21.119476, 63.849356], - [-21.119583, 63.848847], - [-21.120159, 63.84887], - [-21.120342, 63.849391], - [-21.120288, 63.849645], - [-21.120182, 63.850154], - [-21.120421, 63.8506], - [-21.12093, 63.85103], - [-21.121538, 63.852006], - [-21.122062, 63.852284], - [-21.122322, 63.852422], - [-21.122585, 63.852562], - [-21.123055, 63.853094], - [-21.123316, 63.853233], - [-21.123732, 63.853407], - [-21.124566, 63.853581], - [-21.125134, 63.853901], - [-21.125548, 63.854088], - [-21.126562, 63.854391], - [-21.127036, 63.854575], - [-21.127967, 63.854935], - [-21.129534, 63.855208], - [-21.129829, 63.855642], - [-21.13108, 63.856073], - [-21.131956, 63.856407], - [-21.132219, 63.856546], - [-21.132694, 63.856677], - [-21.134843, 63.857186], - [-21.135702, 63.857358], - [-21.137117, 63.857967], - [-21.137683, 63.858137], - [-21.138127, 63.858211], - [-21.139422, 63.858704], - [-21.141124, 63.85905], - [-21.142179, 63.859345], - [-21.14304, 63.859687], - [-21.144061, 63.860033], - [-21.146843, 63.860794], - [-21.147335, 63.861048], - [-21.147828, 63.861312], - [-21.148281, 63.861459], - [-21.148855, 63.861731], - [-21.149627, 63.86205], - [-21.150227, 63.862251], - [-21.150766, 63.862427], - [-21.151288, 63.862566], - [-21.151965, 63.862727], - [-21.153305, 63.863087], - [-21.155712, 63.8637], - [-21.156846, 63.863961], - [-21.157107, 63.8641], - [-21.158784, 63.864424], - [-21.160545, 63.86477], - [-21.161305, 63.864983], - [-21.16324, 63.865374], - [-21.163956, 63.865512], - [-21.164438, 63.865549], - [-21.164922, 63.865548], - [-21.165733, 63.865301], - [-21.166072, 63.86513], - [-21.166231, 63.864982], - [-21.166546, 63.864867], - [-21.167733, 63.864701], - [-21.168331, 63.864921], - [-21.168143, 63.8651], - [-21.167969, 63.865252], - [-21.16783, 63.865516], - [-21.167767, 63.865762], - [-21.168041, 63.866121], - [-21.169899, 63.866927], - [-21.170161, 63.867066], - [-21.170685, 63.867344], - [-21.171248, 63.8675], - [-21.172624, 63.867807], - [-21.174827, 63.868409], - [-21.176241, 63.868706], - [-21.177144, 63.869049], - [-21.17813, 63.869312], - [-21.178393, 63.869451], - [-21.179498, 63.869817], - [-21.180724, 63.870249], - [-21.181381, 63.870469], - [-21.182482, 63.87077], - [-21.183375, 63.870679], - [-21.183689, 63.870563], - [-21.184843, 63.870609], - [-21.185106, 63.870748], - [-21.185367, 63.870887], - [-21.186085, 63.871179], - [-21.186858, 63.871453], - [-21.187517, 63.871743], - [-21.188618, 63.872044], - [-21.188881, 63.872183], - [-21.189142, 63.872322], - [-21.190244, 63.872623], - [-21.190507, 63.872762], - [-21.190768, 63.8729], - [-21.192447, 63.873224], - [-21.194623, 63.873954], - [-21.196328, 63.874151], - [-21.198505, 63.87488], - [-21.199633, 63.875053], - [-21.199896, 63.875192], - [-21.200157, 63.875331], - [-21.200421, 63.87547], - [-21.201084, 63.875766], - [-21.201757, 63.876037], - [-21.20278, 63.876719], - [-21.203043, 63.876858], - [-21.204035, 63.877183], - [-21.204861, 63.877457], - [-21.205482, 63.877726], - [-21.208053, 63.877598], - [-21.210834, 63.877171], - [-21.213458, 63.875737], - [-21.213353, 63.876246], - [-21.215058, 63.876442], - [-21.21734, 63.876662], - [-21.217235, 63.877171], - [-21.219518, 63.877391], - [-21.220095, 63.877414], - [-21.220672, 63.877437], - [-21.220936, 63.877576], - [-21.221197, 63.877715], - [-21.222351, 63.877761], - [-21.223506, 63.877807], - [-21.22466, 63.877853], - [-21.225815, 63.877899], - [-21.227494, 63.878223], - [-21.22975, 63.87857], - [-21.230905, 63.878616], - [-21.231981, 63.879045], - [-21.233161, 63.878963], - [-21.233739, 63.878986], - [-21.236021, 63.879206], - [-21.235917, 63.879715], - [-21.23652, 63.879611], - [-21.240509, 63.880026], - [-21.240772, 63.880166], - [-21.241034, 63.880304], - [-21.241611, 63.880327], - [-21.242188, 63.88035], - [-21.246754, 63.880788], - [-21.248434, 63.881112], - [-21.249011, 63.881135], - [-21.250743, 63.881204], - [-21.253629, 63.881319], - [-21.257671, 63.88148], - [-21.258248, 63.881503], - [-21.259403, 63.881549], - [-21.25998, 63.881572], - [-21.264021, 63.881733], - [-21.265176, 63.881778], - [-21.268114, 63.881639], - [-21.268692, 63.881662], - [-21.270372, 63.881985], - [-21.270949, 63.882008], - [-21.274465, 63.881891], - [-21.275042, 63.881914], - [-21.27562, 63.881937], - [-21.278506, 63.882051], - [-21.27911, 63.881947], - [-21.279006, 63.882456], - [-21.279609, 63.882352], - [-21.280816, 63.882143], - [-21.281393, 63.882166], - [-21.285486, 63.882071], - [-21.286064, 63.882094], - [-21.287219, 63.88214], - [-21.287534, 63.882025], - [-21.287848, 63.881908], - [-21.288425, 63.881931], - [-21.28958, 63.881977], - [-21.290734, 63.882023], - [-21.293621, 63.882137], - [-21.294776, 63.882182], - [-21.295353, 63.882205], - [-21.297137, 63.882019], - [-21.297714, 63.882042], - [-21.301808, 63.881947], - [-21.302385, 63.88197], - [-21.302701, 63.881855], - [-21.303014, 63.881738], - [-21.308314, 63.881434], - [-21.308891, 63.881457], - [-21.309469, 63.88148], - [-21.310675, 63.881271], - [-21.311252, 63.881294], - [-21.31183, 63.881316], - [-21.314191, 63.881153], - [-21.315397, 63.880944], - [-21.316603, 63.880735], - [-21.318964, 63.880571], - [-21.320171, 63.880362], - [-21.320748, 63.880385], - [-21.321325, 63.880408], - [-21.324841, 63.880289], - [-21.325418, 63.880312], - [-21.325734, 63.880197], - [-21.326047, 63.88008], - [-21.327253, 63.879871], - [-21.328434, 63.87979], - [-21.328271, 63.879614], - [-21.327908, 63.879513], - [-21.327959, 63.879258], - [-21.328537, 63.879281], - [-21.329088, 63.87943], - [-21.330294, 63.879221], - [-21.333284, 63.878826], - [-21.33449, 63.878617], - [-21.338634, 63.878266], - [-21.33895, 63.878151], - [-21.339263, 63.878034], - [-21.341021, 63.877975], - [-21.341123, 63.877466], - [-21.343458, 63.877429], - [-21.345242, 63.877242], - [-21.345557, 63.877127], - [-21.345947, 63.876629], - [-21.347705, 63.876569], - [-21.348333, 63.876338], - [-21.350116, 63.876151], - [-21.352215, 63.875849], - [-21.352605, 63.875351], - [-21.354991, 63.875059], - [-21.355619, 63.874827], - [-21.356825, 63.874618], - [-21.35714, 63.874502], - [-21.358082, 63.874154], - [-21.359288, 63.873944], - [-21.359916, 63.873713], - [-21.360231, 63.873597], - [-21.360621, 63.873099], - [-21.362117, 63.872901], - [-21.362157, 63.872646], - [-21.362338, 63.872311], - [-21.36292, 63.872042], - [-21.363165, 63.871314], - [-21.363902, 63.870963], - [-21.364636, 63.870635], - [-21.366198, 63.869945], - [-21.368265, 63.869173], - [-21.372107, 63.867517], - [-21.372759, 63.86705], - [-21.373592, 63.86619], - [-21.373616, 63.865703], - [-21.373145, 63.864845], - [-21.372746, 63.86381], - [-21.367192, 63.862548], - [-21.367179, 63.862732], - [-21.36682, 63.862807], - [-21.366376, 63.862772], - [-21.366245, 63.862597], - [-21.366402, 63.86224], - [-21.366631, 63.861133], - [-21.367133, 63.860222], - [-21.366533, 63.859848], - [-21.367009, 63.85967], - [-21.367551, 63.860067], - [-21.367792, 63.859595], - [-21.368236, 63.859581], - [-21.36789, 63.860475], - [-21.367544, 63.861007], - [-21.367466, 63.86172], - [-21.367195, 63.862332], - [-21.37276, 63.86356], - [-21.373138, 63.863565], - [-21.373326, 63.863142], - [-21.373618, 63.863172], - [-21.373477, 63.863574], - [-21.374648, 63.863657], - [-21.37523, 63.862242], - [-21.373876, 63.862153], - [-21.37368, 63.862882], - [-21.373374, 63.862868], - [-21.373511, 63.862313], - [-21.373308, 63.862313], - [-21.3734, 63.861962], - [-21.372797, 63.861835], - [-21.37117, 63.861475], - [-21.370001, 63.861227], - [-21.368982, 63.861], - [-21.369085, 63.860821], - [-21.369301, 63.8606], - [-21.370077, 63.86077], - [-21.371219, 63.861027], - [-21.372375, 63.861277], - [-21.373946, 63.861623], - [-21.374721, 63.86111], - [-21.373318, 63.860778], - [-21.373412, 63.860676], - [-21.373578, 63.860709], - [-21.373714, 63.860589], - [-21.374181, 63.860566], - [-21.37441, 63.860496], - [-21.374217, 63.860326], - [-21.373998, 63.860224], - [-21.37412, 63.860001], - [-21.37124, 63.859669], - [-21.371282, 63.859574], - [-21.371385, 63.859474], - [-21.371733, 63.859515], - [-21.371906, 63.85894], - [-21.371734, 63.85875], - [-21.371598, 63.858549], - [-21.371075, 63.858653], - [-21.370621, 63.858761], - [-21.370036, 63.858892], - [-21.369895, 63.858767], - [-21.371106, 63.858479], - [-21.372284, 63.858274], - [-21.371531, 63.857877], - [-21.370818, 63.85708], - [-21.370399, 63.85689], - [-21.369152, 63.857264], - [-21.368708, 63.857441], - [-21.368126, 63.85768], - [-21.367754, 63.857858], - [-21.367333, 63.858057], - [-21.367036, 63.858185], - [-21.366498, 63.858322], - [-21.366304, 63.85824], - [-21.365242, 63.858786], - [-21.364701, 63.858964], - [-21.364367, 63.859059], - [-21.36432, 63.859442], - [-21.364002, 63.85957], - [-21.363611, 63.858974], - [-21.364552, 63.858555], - [-21.365202, 63.858261], - [-21.365672, 63.858063], - [-21.366095, 63.85787], - [-21.366798, 63.857762], - [-21.367543, 63.857465], - [-21.367856, 63.857349], - [-21.36828, 63.857149], - [-21.368821, 63.856766], - [-21.368319, 63.855906], - [-21.367637, 63.855544], - [-21.366585, 63.85499], - [-21.365821, 63.854666], - [-21.365272, 63.854298], - [-21.364746, 63.854021], - [-21.36422, 63.853744], - [-21.363695, 63.853467], - [-21.363033, 63.852415], - [-21.361905, 63.852242], - [-21.361379, 63.851965], - [-21.359847, 63.851512], - [-21.35952, 63.850607], - [-21.360364, 63.849941], - [-21.362879, 63.849432], - [-21.362083, 63.848673], - [-21.363555, 63.84692], - [-21.364734, 63.846838], - [-21.365176, 63.846085], - [-21.365489, 63.845969], - [-21.369051, 63.845595], - [-21.370256, 63.845386], - [-21.370656, 63.845202], - [-21.371198, 63.845038], - [-21.371576, 63.844989], - [-21.372317, 63.844756], - [-21.372454, 63.844574], - [-21.372808, 63.84434], - [-21.378686, 63.843919], - [-21.379001, 63.843803], - [-21.381095, 63.8435], - [-21.381409, 63.843384], - [-21.381798, 63.842886], - [-21.383503, 63.843081], - [-21.384656, 63.843126], - [-21.388167, 63.843006], - [-21.388482, 63.84289], - [-21.388794, 63.842774], - [-21.389371, 63.842796], - [-21.391127, 63.842737], - [-21.391025, 63.843246], - [-21.391942, 63.843025], - [-21.392254, 63.842908], - [-21.393459, 63.842699], - [-21.394035, 63.842721], - [-21.395714, 63.843043], - [-21.39797, 63.843387], - [-21.398547, 63.84341], - [-21.398862, 63.843294], - [-21.399174, 63.843177], - [-21.400328, 63.843222], - [-21.403813, 63.84323], - [-21.403914, 63.842721], - [-21.404466, 63.84287], - [-21.405594, 63.843042], - [-21.405984, 63.842544], - [-21.406297, 63.842428], - [-21.407476, 63.842346], - [-21.407374, 63.842855], - [-21.408553, 63.842772], - [-21.408976, 63.842572], - [-21.409206, 63.842413], - [-21.409782, 63.842435], - [-21.409732, 63.84269], - [-21.409054, 63.843177], - [-21.411335, 63.843393], - [-21.413591, 63.843737], - [-21.414168, 63.843759], - [-21.417052, 63.843871], - [-21.417628, 63.843893], - [-21.419333, 63.844088], - [-21.419434, 63.843579], - [-21.41991, 63.84411], - [-21.420512, 63.844005], - [-21.422242, 63.844072], - [-21.423395, 63.844117], - [-21.424549, 63.844161], - [-21.425125, 63.844183], - [-21.42544, 63.844068], - [-21.425752, 63.843951], - [-21.426329, 63.843973], - [-21.427432, 63.844273], - [-21.428535, 63.844572], - [-21.429689, 63.844616], - [-21.430265, 63.844638], - [-21.430529, 63.844777], - [-21.430792, 63.844915], - [-21.431368, 63.844938], - [-21.432522, 63.844982], - [-21.433751, 63.844645], - [-21.434302, 63.844794], - [-21.434566, 63.844933], - [-21.435042, 63.845465], - [-21.435305, 63.845603], - [-21.436984, 63.845924], - [-21.437561, 63.845946], - [-21.438402, 63.846107], - [-21.438664, 63.846245], - [-21.440394, 63.846312], - [-21.440971, 63.846334], - [-21.442125, 63.846379], - [-21.443278, 63.846423], - [-21.443855, 63.846445], - [-21.446739, 63.846557], - [-21.447341, 63.846452], - [-21.44724, 63.846961], - [-21.447842, 63.846856], - [-21.448157, 63.84674], - [-21.44847, 63.846623], - [-21.4502, 63.84669], - [-21.450514, 63.846574], - [-21.450827, 63.846457], - [-21.451404, 63.84648], - [-21.451668, 63.846619], - [-21.45193, 63.846756], - [-21.453661, 63.846823], - [-21.455968, 63.846912], - [-21.456545, 63.846934], - [-21.457121, 63.846956], - [-21.458275, 63.847], - [-21.458852, 63.847023], - [-21.459479, 63.84679], - [-21.461811, 63.846752], - [-21.462201, 63.846254], - [-21.463455, 63.845789], - [-21.463266, 63.845269], - [-21.465096, 63.844826], - [-21.46625, 63.844871], - [-21.46635, 63.844361], - [-21.466902, 63.84451], - [-21.468055, 63.844555], - [-21.46837, 63.844439], - [-21.468808, 63.843686], - [-21.470538, 63.843752], - [-21.470638, 63.843243], - [-21.47119, 63.843392], - [-21.471454, 63.843531], - [-21.471717, 63.843669], - [-21.472268, 63.843819], - [-21.472658, 63.843321], - [-21.473911, 63.842856], - [-21.474538, 63.842623], - [-21.476054, 63.842296], - [-21.476368, 63.842181], - [-21.477884, 63.841853], - [-21.479038, 63.841898], - [-21.479615, 63.84192], - [-21.480316, 63.841306], - [-21.484428, 63.841078], - [-21.485055, 63.840845], - [-21.486835, 63.840657], - [-21.488038, 63.840447], - [-21.488353, 63.840331], - [-21.489292, 63.839981], - [-21.490495, 63.839771], - [-21.491072, 63.839793], - [-21.491648, 63.839815], - [-21.492902, 63.83935], - [-21.493528, 63.839117], - [-21.494731, 63.838907], - [-21.495046, 63.838791], - [-21.495358, 63.838674], - [-21.498291, 63.83853], - [-21.498868, 63.838552], - [-21.499445, 63.838574], - [-21.499759, 63.838458], - [-21.500071, 63.838341], - [-21.500672, 63.838237], - [-21.500573, 63.838746], - [-21.501174, 63.83864], - [-21.502378, 63.838429], - [-21.502954, 63.838451], - [-21.503531, 63.838473], - [-21.504734, 63.838263], - [-21.505311, 63.838285], - [-21.506464, 63.838329], - [-21.506778, 63.838213], - [-21.507091, 63.838096], - [-21.508294, 63.837885], - [-21.509497, 63.837675], - [-21.510073, 63.837697], - [-21.510625, 63.837846], - [-21.510725, 63.837337], - [-21.511276, 63.837486], - [-21.511853, 63.837508], - [-21.51243, 63.83753], - [-21.512982, 63.837679], - [-21.514209, 63.837341], - [-21.514786, 63.837363], - [-21.517192, 63.836942], - [-21.517769, 63.836964], - [-21.518345, 63.836986], - [-21.520702, 63.836819], - [-21.521016, 63.836703], - [-21.521692, 63.836216], - [-21.522004, 63.836099], - [-21.523207, 63.835888], - [-21.523784, 63.83591], - [-21.524048, 63.836049], - [-21.52431, 63.836186], - [-21.524887, 63.836208], - [-21.52609, 63.835997], - [-21.526667, 63.836019], - [-21.52782, 63.836063], - [-21.529023, 63.835852], - [-21.530802, 63.835663], - [-21.531379, 63.835685], - [-21.531931, 63.835835], - [-21.53203, 63.835326], - [-21.534361, 63.835285], - [-21.535514, 63.835329], - [-21.535779, 63.835468], - [-21.536042, 63.835606], - [-21.539502, 63.835737], - [-21.540078, 63.835759], - [-21.541882, 63.835443], - [-21.542434, 63.835591], - [-21.543011, 63.835613], - [-21.544214, 63.835402], - [-21.545993, 63.835213], - [-21.547146, 63.835257], - [-21.548037, 63.835163], - [-21.548349, 63.835046], - [-21.550705, 63.834878], - [-21.555944, 63.83482], - [-21.559453, 63.834696], - [-21.559767, 63.83458], - [-21.560079, 63.834463], - [-21.560393, 63.834347], - [-21.560705, 63.83423], - [-21.562484, 63.834041], - [-21.562798, 63.833925], - [-21.56311, 63.833808], - [-21.564889, 63.833619], - [-21.566668, 63.833429], - [-21.566982, 63.833313], - [-21.567294, 63.833196], - [-21.567608, 63.83308], - [-21.56792, 63.832963], - [-21.568497, 63.832985], - [-21.569073, 63.833007], - [-21.570276, 63.832796], - [-21.572632, 63.832628], - [-21.576766, 63.832271], - [-21.577969, 63.832059], - [-21.578282, 63.831943], - [-21.578668, 63.831445], - [-21.580373, 63.831637], - [-21.582103, 63.831702], - [-21.584409, 63.831789], - [-21.585563, 63.831832], - [-21.587918, 63.831664], - [-21.588232, 63.831548], - [-21.588544, 63.831431], - [-21.58912, 63.831453], - [-21.589697, 63.831474], - [-21.590011, 63.831358], - [-21.590323, 63.831241], - [-21.591525, 63.83103], - [-21.591838, 63.830914], - [-21.592513, 63.830426], - [-21.593188, 63.829939], - [-21.593573, 63.82944], - [-21.594726, 63.829483], - [-21.594488, 63.829218], - [-21.594247, 63.828952], - [-21.596413, 63.828264], - [-21.596173, 63.827999], - [-21.599681, 63.827874], - [-21.602686, 63.827345], - [-21.603238, 63.827494], - [-21.603625, 63.826996], - [-21.603674, 63.826741], - [-21.603434, 63.826476], - [-21.604611, 63.826391], - [-21.605188, 63.826413], - [-21.605764, 63.826434], - [-21.60872, 63.826161], - [-21.608866, 63.825397], - [-21.609419, 63.825545], - [-21.609684, 63.825684], - [-21.609946, 63.825821], - [-21.610837, 63.825727], - [-21.611148, 63.82561], - [-21.612301, 63.825653], - [-21.615184, 63.825761], - [-21.61814, 63.825487], - [-21.61939, 63.825021], - [-21.619152, 63.824755], - [-21.61896, 63.824235], - [-21.620088, 63.824405], - [-21.621241, 63.824448], - [-21.622516, 63.823855], - [-21.624846, 63.823813], - [-21.62725, 63.82339], - [-21.628451, 63.823178], - [-21.629028, 63.8232], - [-21.630591, 63.822617], - [-21.630903, 63.8225], - [-21.633834, 63.822353], - [-21.634411, 63.822375], - [-21.635612, 63.822163], - [-21.636189, 63.822184], - [-21.638494, 63.82227], - [-21.639647, 63.822313], - [-21.6408, 63.822356], - [-21.642578, 63.822165], - [-21.643755, 63.822081], - [-21.645557, 63.821763], - [-21.646134, 63.821785], - [-21.646447, 63.821669], - [-21.646759, 63.821551], - [-21.647072, 63.821435], - [-21.647384, 63.821318], - [-21.649162, 63.821128], - [-21.649475, 63.821012], - [-21.649787, 63.820894], - [-21.6501, 63.820778], - [-21.650411, 63.820661], - [-21.651588, 63.820577], - [-21.651734, 63.819813], - [-21.65231, 63.819834], - [-21.652503, 63.820355], - [-21.652454, 63.820609], - [-21.652406, 63.820864], - [-21.654326, 63.821448], - [-21.65418, 63.822212], - [-21.656462, 63.822424], - [-21.656727, 63.822563], - [-21.65699, 63.822701], - [-21.657255, 63.822839], - [-21.657518, 63.822976], - [-21.657783, 63.823115], - [-21.658047, 63.823253], - [-21.658623, 63.823274], - [-21.660353, 63.823338], - [-21.660929, 63.823359], - [-21.661554, 63.823126], - [-21.663283, 63.82319], - [-21.664485, 63.822978], - [-21.665085, 63.822873], - [-21.664989, 63.823382], - [-21.666694, 63.823573], - [-21.667799, 63.82387], - [-21.668928, 63.82404], - [-21.668831, 63.82455], - [-21.669432, 63.824443], - [-21.670585, 63.824486], - [-21.671738, 63.824529], - [-21.672315, 63.82455], - [-21.67258, 63.824688], - [-21.672843, 63.824826], - [-21.67342, 63.824847], - [-21.674934, 63.824519], - [-21.675246, 63.824402], - [-21.675559, 63.824286], - [-21.67587, 63.824169], - [-21.678777, 63.824148], - [-21.678681, 63.824657], - [-21.679834, 63.8247], - [-21.679498, 63.824944], - [-21.679402, 63.825453], - [-21.679593, 63.825973], - [-21.681516, 63.826557], - [-21.681779, 63.826695], - [-21.682884, 63.826992], - [-21.684037, 63.827035], - [-21.684351, 63.826918], - [-21.684662, 63.826801], - [-21.685695, 63.827481], - [-21.686824, 63.82765], - [-21.687089, 63.827788], - [-21.68728, 63.828308], - [-21.68841, 63.828478], - [-21.688675, 63.828616], - [-21.688579, 63.829126], - [-21.68853, 63.82938], - [-21.688794, 63.829518], - [-21.6911, 63.829603], - [-21.691701, 63.829497], - [-21.691798, 63.830526], - [-21.692061, 63.830664], - [-21.693167, 63.830961], - [-21.694272, 63.831258], - [-21.695066, 63.831672], - [-21.694729, 63.831917], - [-21.696123, 63.832224], - [-21.696387, 63.832362], - [-21.696652, 63.8325], - [-21.696915, 63.832638], - [-21.698021, 63.832935], - [-21.698286, 63.833073], - [-21.69855, 63.833211], - [-21.699655, 63.833507], - [-21.69992, 63.833646], - [-21.700184, 63.833783], - [-21.701866, 63.834102], - [-21.702395, 63.834378], - [-21.7035, 63.834675], - [-21.704606, 63.834972], - [-21.705712, 63.835269], - [-21.705977, 63.835407], - [-21.70624, 63.835545], - [-21.708669, 63.836532], - [-21.708861, 63.837052], - [-21.710567, 63.837242], - [-21.711218, 63.83842], - [-21.711481, 63.838558], - [-21.712611, 63.838728], - [-21.712757, 63.839502], - [-21.71302, 63.83964], - [-21.713286, 63.839778], - [-21.713549, 63.839916], - [-21.713815, 63.840054], - [-21.714006, 63.840574], - [-21.715979, 63.840903], - [-21.71646, 63.841433], - [-21.716412, 63.841688], - [-21.716316, 63.842197], - [-21.71658, 63.842335], - [-21.716845, 63.842473], - [-21.716989, 63.843248], - [-21.718143, 63.84329], - [-21.718047, 63.843799], - [-21.719177, 63.843968], - [-21.719443, 63.844107], - [-21.719634, 63.844627], - [-21.720788, 63.844669], - [-21.720934, 63.845444], - [-21.721198, 63.845581], - [-21.722304, 63.845878], - [-21.72257, 63.846016], - [-21.722474, 63.846526], - [-21.721754, 63.847269], - [-21.721416, 63.847513], - [-21.722594, 63.847427], - [-21.724325, 63.84749], - [-21.724591, 63.847629], - [-21.722379, 63.848574], - [-21.721996, 63.849072], - [-21.722334, 63.850367], - [-21.722815, 63.850898], - [-21.723296, 63.851428], - [-21.72356, 63.851565], - [-21.723826, 63.851704], - [-21.724307, 63.852234], - [-21.724571, 63.852372], - [-21.725701, 63.852542], - [-21.725606, 63.853051], - [-21.726736, 63.85322], - [-21.727002, 63.853359], - [-21.727266, 63.853496], - [-21.727531, 63.853634], - [-21.727795, 63.853772], - [-21.729503, 63.853963], - [-21.729696, 63.854483], - [-21.72996, 63.85462], - [-21.730226, 63.854758], - [-21.730708, 63.855289], - [-21.7309, 63.855809], - [-21.732054, 63.855851], - [-21.732105, 63.857135], - [-21.732369, 63.857272], - [-21.732634, 63.857411], - [-21.732898, 63.857548], - [-21.733164, 63.857686], - [-21.733428, 63.857824], - [-21.733693, 63.857962], - [-21.733957, 63.8581], - [-21.734223, 63.858238], - [-21.734487, 63.858375], - [-21.735594, 63.858672], - [-21.735859, 63.858811], - [-21.737807, 63.859266], - [-21.738073, 63.859404], - [-21.738337, 63.859541], - [-21.738603, 63.85968], - [-21.738867, 63.859817], - [-21.739973, 63.860114], - [-21.740239, 63.860253], - [-21.740503, 63.86039], - [-21.740769, 63.860528], - [-21.741033, 63.860666], - [-21.74214, 63.860962], - [-21.743247, 63.861259], - [-21.744354, 63.861556], - [-21.748877, 63.862233], - [-21.750586, 63.862424], - [-21.750251, 63.862669], - [-21.749913, 63.862913], - [-21.751044, 63.863081], - [-21.75131, 63.86322], - [-21.751574, 63.863357], - [-21.753282, 63.863548], - [-21.753042, 63.863283], - [-21.7528, 63.863018], - [-21.753931, 63.863187], - [-21.756193, 63.863525], - [-21.760188, 63.863927], - [-21.760765, 63.863948], - [-21.762521, 63.863884], - [-21.762426, 63.864393], - [-21.765337, 63.86437], - [-21.766492, 63.864412], - [-21.76707, 63.864433], - [-21.768272, 63.86422], - [-21.768849, 63.864241], - [-21.769115, 63.864379], - [-21.769379, 63.864517], - [-21.769645, 63.864655], - [-21.769909, 63.864792], - [-21.771041, 63.864962], - [-21.770946, 63.865471], - [-21.773857, 63.865448], - [-21.774434, 63.865469], - [-21.775012, 63.86549], - [-21.775325, 63.865374], - [-21.776214, 63.865277], - [-21.7775, 63.865343], - [-21.778561, 63.865532], - [-21.780834, 63.865444], - [-21.781147, 63.865328], - [-21.781459, 63.86521], - [-21.783191, 63.865273], - [-21.784346, 63.865315], - [-21.784924, 63.865336], - [-21.787869, 63.865517], - [-21.789496, 63.865757], - [-21.792962, 63.865883], - [-21.794117, 63.865924], - [-21.795016, 63.86581], - [-21.795518, 63.865358], - [-21.797098, 63.865519], - [-21.798206, 63.865815], - [-21.798784, 63.865836], - [-21.799361, 63.865857], - [-21.800299, 63.865506], - [-21.800611, 63.865389], - [-21.801188, 63.86541], - [-21.801454, 63.865548], - [-21.801718, 63.865685], - [-21.802296, 63.865706], - [-21.803498, 63.865493], - [-21.804076, 63.865514], - [-21.804802, 63.86547], - [-21.805855, 63.865322], - [-21.806433, 63.865342], - [-21.80701, 63.865363], - [-21.808976, 63.865469], - [-21.809509, 63.865761], - [-21.809954, 63.865976], - [-21.810301, 63.866145], - [-21.810002, 63.866702], - [-21.810533, 63.86687], - [-21.811926, 63.867078], - [-21.812503, 63.867099], - [-21.813636, 63.866857], - [-21.814438, 63.866596], - [-21.814927, 63.866369], - [-21.81542, 63.866277], - [-21.815935, 63.866242], - [-21.816514, 63.866452], - [-21.816536, 63.866627], - [-21.816123, 63.866766], - [-21.815828, 63.866795], - [-21.815243, 63.866724], - [-21.814905, 63.866832], - [-21.814648, 63.867019], - [-21.814663, 63.867281], - [-21.814782, 63.867399], - [-21.815387, 63.867424], - [-21.815657, 63.867341], - [-21.815974, 63.86733], - [-21.816712, 63.867258], - [-21.817137, 63.867218], - [-21.817592, 63.867345], - [-21.81778, 63.867288], - [-21.817866, 63.867203], - [-21.817598, 63.867031], - [-21.817654, 63.866863], - [-21.819575, 63.866584], - [-21.82006, 63.866439], - [-21.82016, 63.866156], - [-21.819927, 63.864674], - [-21.818749, 63.864759], - [-21.818124, 63.864993], - [-21.8175, 63.865227], - [-21.816922, 63.865207], - [-21.815791, 63.865038], - [-21.815412, 63.864614], - [-21.814154, 63.864219], - [-21.813959, 63.863947], - [-21.814006, 63.863692], - [-21.813857, 63.862917], - [-21.815631, 63.861186], - [-21.815678, 63.860932], - [-21.815772, 63.860422], - [-21.816083, 63.860305], - [-21.816397, 63.860188], - [-21.817303, 63.858426], - [-21.818162, 63.856918], - [-21.818256, 63.856409], - [-21.819239, 63.855803], - [-21.820353, 63.855656], - [-21.820346, 63.855033], - [-21.820446, 63.854602], - [-21.820498, 63.854542], - [-21.821037, 63.85446], - [-21.8219, 63.853976], - [-21.822722, 63.853799], - [-21.823486, 63.853263], - [-21.823797, 63.853146], - [-21.824696, 63.852933], - [-21.825358, 63.852561], - [-21.825669, 63.852444], - [-21.827231, 63.851859], - [-21.827542, 63.851742], - [-21.82932, 63.851549], - [-21.830522, 63.851336], - [-21.832924, 63.850909], - [-21.834126, 63.850696], - [-21.835327, 63.850482], - [-21.837106, 63.85029], - [-21.838712, 63.850073], - [-21.839197, 63.84998], - [-21.839508, 63.849863], - [-21.841287, 63.84967], - [-21.8416, 63.849553], - [-21.84191, 63.849436], - [-21.843689, 63.849243], - [-21.844002, 63.849127], - [-21.844313, 63.849009], - [-21.845514, 63.848795], - [-21.847916, 63.848368], - [-21.849695, 63.848176], - [-21.851473, 63.847983], - [-21.852651, 63.847897], - [-21.853033, 63.847398], - [-21.853344, 63.84728], - [-21.854545, 63.847067], - [-21.854858, 63.84695], - [-21.855169, 63.846833], - [-21.856947, 63.84664], - [-21.858726, 63.846446], - [-21.859926, 63.846233], - [-21.860504, 63.846253], - [-21.860941, 63.846194], - [-21.861705, 63.84604], - [-21.862017, 63.845923], - [-21.862328, 63.845806], - [-21.863624, 63.845721], - [-21.864106, 63.845613], - [-21.864419, 63.845496], - [-21.86473, 63.845378], - [-21.865931, 63.845165], - [-21.866244, 63.845048], - [-21.866555, 63.844931], - [-21.868333, 63.844737], - [-21.869785, 63.844638], - [-21.871143, 63.844665], - [-21.873145, 63.844763], - [-21.87332, 63.844539], - [-21.874197, 63.844433], - [-21.874774, 63.844454], - [-21.875928, 63.844495], - [-21.877363, 63.844179], - [-21.878783, 63.84415], - [-21.879918, 63.844232], - [-21.880592, 63.844404], - [-21.885256, 63.844313], - [-21.886442, 63.844278], - [-21.888811, 63.843926], - [-21.890012, 63.843712], - [-21.890876, 63.843583], - [-21.891425, 63.843585], - [-21.892102, 63.843402], - [-21.892574, 63.843356], - [-21.893365, 63.843095], - [-21.894187, 63.842519], - [-21.895284, 63.842759], - [-21.896545, 63.842918], - [-21.8989, 63.842745], - [-21.901037, 63.84218], - [-21.901347, 63.842063], - [-21.903125, 63.841869], - [-21.904325, 63.841655], - [-21.905526, 63.841441], - [-21.905838, 63.841324], - [-21.906149, 63.841207], - [-21.907009, 63.840763], - [-21.908486, 63.840342], - [-21.909464, 63.839865], - [-21.910034, 63.839672], - [-21.913085, 63.860995], - [-21.669485, 63.987676], - [-21.614495, 63.985543], - [-21.609355, 63.989848], - [-21.569026, 64.007019], - [-21.586427, 64.018086], - [-21.586359, 64.018298], - [-21.587316, 64.018738], - [-21.505442, 64.075373], - [-21.503468, 64.076792], - [-21.475176, 64.096632], - [-21.43915, 64.145047], - [-21.439084, 64.145135], - [-21.37191, 64.19464], - [-21.402122, 64.220269], - [-21.402266, 64.220392], - [-21.402403, 64.220517], - [-21.402556, 64.220638], - [-21.402713, 64.220758], - [-21.402944, 64.220854], - [-21.403164, 64.220955], - [-21.403318, 64.221075], - [-21.403436, 64.221204], - [-21.403576, 64.221329], - [-21.40371, 64.221454], - [-21.403836, 64.221582], - [-21.403986, 64.221704], - [-21.404134, 64.221826], - [-21.40432, 64.221938], - [-21.404543, 64.222039], - [-21.404699, 64.222158], - [-21.404822, 64.222287], - [-21.404916, 64.222419], - [-21.404978, 64.222555], - [-21.405085, 64.222686], - [-21.405222, 64.222811], - [-21.40537, 64.222934], - [-21.405532, 64.223052], - [-21.405786, 64.223135], - [-21.406086, 64.223183], - [-21.406397, 64.223219], - [-21.40668, 64.22328], - [-21.406844, 64.223394], - [-21.406814, 64.223534], - [-21.406692, 64.223665], - [-21.406601, 64.223798], - [-21.40674, 64.223918], - [-21.406903, 64.224039], - [-21.407024, 64.224168], - [-21.406995, 64.224303], - [-21.40689, 64.224434], - [-21.406912, 64.224573], - [-21.406962, 64.22471], - [-21.407093, 64.224836], - [-21.407248, 64.224958], - [-21.407365, 64.225085], - [-21.4074, 64.225224], - [-21.407433, 64.225362], - [-21.407469, 64.2255], - [-21.407547, 64.225634], - [-21.407743, 64.225743], - [-21.40797, 64.225841], - [-21.408231, 64.22592], - [-21.408516, 64.225981], - [-21.408812, 64.226034], - [-21.409103, 64.22609], - [-21.409363, 64.226169], - [-21.409596, 64.226264], - [-21.409792, 64.226374], - [-21.409955, 64.226492], - [-21.410119, 64.226612], - [-21.410316, 64.22672], - [-21.410533, 64.226821], - [-21.410704, 64.226938], - [-21.410853, 64.227061], - [-21.410979, 64.227189], - [-21.411037, 64.227322], - [-21.410913, 64.22745], - [-21.410712, 64.227557], - [-21.410445, 64.227632], - [-21.410186, 64.227713], - [-21.409941, 64.227801], - [-21.409676, 64.227878], - [-21.409428, 64.227965], - [-21.409181, 64.228054], - [-21.408989, 64.228162], - [-21.408842, 64.228286], - [-21.408716, 64.228414], - [-21.408597, 64.228543], - [-21.408408, 64.228652], - [-21.408124, 64.228714], - [-21.407839, 64.228776], - [-21.407568, 64.22885], - [-21.407354, 64.228953], - [-21.407213, 64.229076], - [-21.407156, 64.229214], - [-21.407011, 64.229337], - [-21.406838, 64.229454], - [-21.406626, 64.229557], - [-21.406409, 64.229658], - [-21.406177, 64.229754], - [-21.405949, 64.229849], - [-21.405779, 64.229967], - [-21.405605, 64.230084], - [-21.405396, 64.230187], - [-21.405146, 64.230273], - [-21.404925, 64.230373], - [-21.404701, 64.230474], - [-21.40456, 64.230595], - [-21.404552, 64.230734], - [-21.404738, 64.230845], - [-21.404928, 64.230956], - [-21.405045, 64.231086], - [-21.405059, 64.231224], - [-21.405007, 64.23136], - [-21.404909, 64.231493], - [-21.40488, 64.231629], - [-21.404936, 64.231765], - [-21.405096, 64.231884], - [-21.405179, 64.232018], - [-21.405274, 64.232151], - [-21.40536, 64.232284], - [-21.405432, 64.232419], - [-21.405494, 64.232555], - [-21.405572, 64.23269], - [-21.405675, 64.232821], - [-21.405831, 64.232942], - [-21.406043, 64.233045], - [-21.406283, 64.233136], - [-21.406528, 64.233226], - [-21.406766, 64.233319], - [-21.406895, 64.233444], - [-21.406905, 64.233582], - [-21.406885, 64.233723], - [-21.40698, 64.233847], - [-21.407186, 64.233957], - [-21.407322, 64.234082], - [-21.407427, 64.234213], - [-21.407982, 64.23436], - [-21.408602, 64.234513], - [-21.40925, 64.234749], - [-21.41021, 64.235332], - [-21.411243, 64.235422], - [-21.412333, 64.236206], - [-21.412543, 64.236587], - [-21.412237, 64.236846], - [-21.412122, 64.237109], - [-21.412086, 64.237193], - [-21.411755, 64.237575], - [-21.411011, 64.237867], - [-21.410935, 64.238046], - [-21.411559, 64.238574], - [-21.411512, 64.239], - [-21.411723, 64.239448], - [-21.412097, 64.239632], - [-21.412293, 64.239728], - [-21.412554, 64.240155], - [-21.412662, 64.240626], - [-21.413542, 64.241051], - [-21.413959, 64.2415], - [-21.414537, 64.242531], - [-21.414562, 64.24255], - [-21.414674, 64.242632], - [-21.416648, 64.243205], - [-21.419668, 64.244082], - [-21.420643, 64.244366], - [-21.32129, 64.295756], - [-21.182677, 64.350751], - [-20.90922, 64.492929], - [-20.824049, 64.528863], - [-20.780601, 64.536185], - [-20.779743, 64.532863], - [-20.781803, 64.531608], - [-20.779743, 64.530649], - [-20.777855, 64.531092], - [-20.775966, 64.531534], - [-20.772533, 64.531534], - [-20.773048, 64.530649], - [-20.776996, 64.530206], - [-20.772533, 64.529467], - [-20.768413, 64.528729], - [-20.768585, 64.52991], - [-20.767211, 64.529984], - [-20.765495, 64.528434], - [-20.765838, 64.527622], - [-20.764293, 64.526884], - [-20.760688, 64.526662], - [-20.75983, 64.525924], - [-20.758628, 64.525998], - [-20.754165, 64.524816], - [-20.75571, 64.523783], - [-20.754852, 64.521494], - [-20.755882, 64.519426], - [-20.754508, 64.517727], - [-20.752792, 64.517506], - [-20.750904, 64.519647], - [-20.751762, 64.520386], - [-20.748844, 64.521198], - [-20.74747, 64.521494], - [-20.747299, 64.522158], - [-20.745754, 64.522306], - [-20.743179, 64.522454], - [-20.739746, 64.52238], - [-20.736999, 64.52297], - [-20.737171, 64.521715], - [-20.733566, 64.521863], - [-20.731678, 64.52142], - [-20.731849, 64.519574], - [-20.733051, 64.519057], - [-20.734081, 64.517653], - [-20.731849, 64.51721], - [-20.729618, 64.518392], - [-20.726528, 64.519278], - [-20.722408, 64.520312], - [-20.717258, 64.520534], - [-20.714168, 64.520903], - [-20.713653, 64.519943], - [-20.712966, 64.518392], - [-20.712451, 64.517063], - [-20.712623, 64.516472], - [-20.712451, 64.515807], - [-20.710735, 64.516102], - [-20.71022, 64.51721], - [-20.710391, 64.51913], - [-20.708675, 64.5195], - [-20.708675, 64.520681], - [-20.70713, 64.521198], - [-20.705585, 64.520755], - [-20.70301, 64.521124], - [-20.701122, 64.521124], - [-20.698032, 64.519869], - [-20.698719, 64.516915], - [-20.696487, 64.519057], - [-20.696659, 64.520607], - [-20.694255, 64.520312], - [-20.691337, 64.520386], - [-20.688762, 64.520681], - [-20.688419, 64.519574], - [-20.689792, 64.518097], - [-20.689449, 64.517063], - [-20.687217, 64.518023], - [-20.684642, 64.51817], - [-20.683269, 64.518613], - [-20.679492, 64.517136], - [-20.676746, 64.515512], - [-20.672454, 64.515364], - [-20.670051, 64.515364], - [-20.667304, 64.516176], - [-20.66679, 64.51758], - [-20.667133, 64.52142], - [-20.66164, 64.522232], - [-20.659923, 64.523783], - [-20.65649, 64.524816], - [-20.65443, 64.526441], - [-20.652542, 64.527696], - [-20.650482, 64.526588], - [-20.65237, 64.526071], - [-20.655288, 64.524521], - [-20.651683, 64.524742], - [-20.649452, 64.524521], - [-20.649108, 64.525185], - [-20.647563, 64.526957], - [-20.64413, 64.526071], - [-20.644645, 64.527105], - [-20.645503, 64.529025], - [-20.6431, 64.529467], - [-20.643444, 64.531018], - [-20.644645, 64.532346], - [-20.643444, 64.532715], - [-20.64207, 64.532199], - [-20.639667, 64.53242], - [-20.639839, 64.533897], - [-20.641384, 64.534635], - [-20.64001, 64.535077], - [-20.637607, 64.534561], - [-20.634346, 64.534413], - [-20.630569, 64.533601], - [-20.628337, 64.53397], - [-20.629882, 64.535077], - [-20.629367, 64.536923], - [-20.634002, 64.537882], - [-20.638294, 64.538915], - [-20.642585, 64.54017], - [-20.643272, 64.54076], - [-20.644817, 64.541719], - [-20.647392, 64.54231], - [-20.64619, 64.544302], - [-20.641899, 64.544966], - [-20.638122, 64.545187], - [-20.635376, 64.545777], - [-20.636062, 64.54622], - [-20.638465, 64.546884], - [-20.638465, 64.547769], - [-20.635891, 64.549245], - [-20.631599, 64.549761], - [-20.628337, 64.551015], - [-20.625419, 64.552417], - [-20.625419, 64.554039], - [-20.621814, 64.554777], - [-20.620269, 64.555662], - [-20.616493, 64.557211], - [-20.617179, 64.557653], - [-20.616836, 64.559497], - [-20.565032, 64.566452], - [-20.555076, 64.564241], - [-20.54409, 64.564093], - [-20.53791, 64.564978], - [-20.533103, 64.563946], - [-20.526237, 64.563356], - [-20.515937, 64.564093], - [-20.507011, 64.563356], - [-20.500831, 64.563798], - [-20.501861, 64.566305], - [-20.500488, 64.567779], - [-20.492591, 64.569843], - [-20.485382, 64.567337], - [-20.489501, 64.565125], - [-20.494995, 64.562913], - [-20.497055, 64.557309], - [-20.499801, 64.552294], - [-20.503578, 64.545212], - [-20.502548, 64.5368], - [-20.500488, 64.529418], - [-20.495681, 64.52366], - [-20.489845, 64.518934], - [-20.479888, 64.516866], - [-20.483322, 64.513025], - [-20.476455, 64.508297], - [-20.465125, 64.502386], - [-20.456886, 64.498543], - [-20.445899, 64.495587], - [-20.43457, 64.494404], - [-20.426673, 64.494996], - [-20.41397, 64.494996], - [-20.400924, 64.495735], - [-20.390968, 64.495291], - [-20.382385, 64.495882], - [-20.375518, 64.497361], - [-20.370368, 64.502682], - [-20.365219, 64.504751], - [-20.364532, 64.509479], - [-20.364875, 64.512434], - [-20.364532, 64.515536], - [-20.365905, 64.521445], - [-20.362472, 64.52617], - [-20.364532, 64.531338], - [-20.364875, 64.537538], - [-20.361099, 64.540195], - [-20.354576, 64.54595], - [-20.350112, 64.546835], - [-20.342216, 64.546983], - [-20.333976, 64.548163], - [-20.32711, 64.549491], - [-20.321617, 64.548311], - [-20.31063, 64.549491], - [-20.304107, 64.549934], - [-20.301017, 64.548458], - [-20.291404, 64.545655], - [-20.293464, 64.542703], - [-20.294151, 64.540047], - [-20.295181, 64.539161], - [-20.295181, 64.536505], - [-20.297584, 64.532962], - [-20.300674, 64.52868], - [-20.297584, 64.525432], - [-20.296897, 64.522183], - [-20.297584, 64.518195], - [-20.300674, 64.516127], - [-20.303764, 64.513321], - [-20.303764, 64.509775], - [-20.30548, 64.506524], - [-20.304107, 64.502238], - [-20.305824, 64.498395], - [-20.302391, 64.495439], - [-20.299301, 64.491152], - [-20.294837, 64.490708], - [-20.291404, 64.489082], - [-20.286941, 64.487751], - [-20.277671, 64.48642], - [-20.27061, 64.490235], - [-20.263499, 64.489766], - [-20.254336, 64.490802], - [-20.252731, 64.487382], - [-20.243682, 64.486272], - [-20.238876, 64.487751], - [-20.236129, 64.490265], - [-20.229263, 64.49263], - [-20.225486, 64.493813], - [-20.224113, 64.495587], - [-20.218276, 64.496769], - [-20.2145, 64.497804], - [-20.20935, 64.499578], - [-20.210037, 64.502238], - [-20.21038, 64.505046], - [-20.207633, 64.507115], - [-20.204887, 64.508445], - [-20.200767, 64.51007], - [-20.197677, 64.510661], - [-20.194244, 64.507558], - [-20.189781, 64.506524], - [-20.185317, 64.507263], - [-20.183601, 64.509627], - [-20.184631, 64.511843], - [-20.184287, 64.513321], - [-20.182914, 64.512434], - [-20.173988, 64.512434], - [-20.169181, 64.51273], - [-20.161628, 64.514798], - [-20.158882, 64.517604], - [-20.161972, 64.520263], - [-20.164718, 64.522183], - [-20.158195, 64.521001], - [-20.152015, 64.52366], - [-20.152015, 64.526466], - [-20.148582, 64.528533], - [-20.145835, 64.528828], - [-20.142059, 64.531928], - [-20.143089, 64.534438], - [-20.146522, 64.536652], - [-20.143089, 64.54167], - [-20.134162, 64.545802], - [-20.135192, 64.548458], - [-20.131759, 64.551409], - [-20.128669, 64.550819], - [-20.127983, 64.546688], - [-20.127983, 64.544474], - [-20.124206, 64.542851], - [-20.119928, 64.542969], - [-20.119917, 64.543127], - [-20.1198, 64.543232], - [-20.119437, 64.543364], - [-20.119102, 64.543481], - [-20.118594, 64.54354], - [-20.118077, 64.543645], - [-20.117805, 64.543637], - [-20.116934, 64.543741], - [-20.116174, 64.543614], - [-20.115186, 64.543536], - [-20.114606, 64.543364], - [-20.113825, 64.543046], - [-20.109786, 64.544474], - [-20.107383, 64.544474], - [-20.106697, 64.542556], - [-20.101547, 64.541228], - [-20.096054, 64.542261], - [-20.093994, 64.544622], - [-20.093307, 64.548311], - [-20.08953, 64.550376], - [-20.084724, 64.551261], - [-20.081634, 64.550966], - [-20.079574, 64.552736], - [-20.078887, 64.555097], - [-20.075797, 64.555539], - [-20.070304, 64.555244], - [-20.066528, 64.554212], - [-20.063438, 64.551999], - [-20.059318, 64.552736], - [-20.054168, 64.552589], - [-20.046958, 64.553622], - [-20.042495, 64.553327], - [-20.037345, 64.554064], - [-20.027389, 64.557899], - [-20.022239, 64.561881], - [-20.016403, 64.564683], - [-20.008506, 64.568664], - [-20.000266, 64.572644], - [-19.990653, 64.575297], - [-19.9831, 64.575592], - [-19.974517, 64.576034], - [-19.964561, 64.577361], - [-19.953575, 64.578687], - [-19.941215, 64.581487], - [-19.919929, 64.587823], - [-19.914779, 64.592243], - [-19.909629, 64.595925], - [-19.908256, 64.599902], - [-19.910659, 64.602111], - [-19.916839, 64.602994], - [-19.922332, 64.602847], - [-19.930915, 64.601816], - [-19.940872, 64.6027], - [-19.950828, 64.601963], - [-19.961128, 64.603877], - [-19.971427, 64.605644], - [-19.97898, 64.607411], - [-19.985504, 64.610208], - [-19.99237, 64.613299], - [-19.995803, 64.616537], - [-19.99031, 64.617862], - [-19.98104, 64.617862], - [-19.973487, 64.618303], - [-19.965591, 64.618451], - [-19.956321, 64.621394], - [-19.949111, 64.624189], - [-19.940872, 64.624336], - [-19.938468, 64.625661], - [-19.928855, 64.627132], - [-19.924392, 64.62978], - [-19.918556, 64.629044], - [-19.917526, 64.631398], - [-19.913406, 64.631986], - [-19.911346, 64.636399], - [-19.913406, 64.641398], - [-19.915466, 64.643751], - [-19.914779, 64.645074], - [-19.922332, 64.649337], - [-19.920959, 64.650513], - [-19.919242, 64.650513], - [-19.908256, 64.644927], - [-19.8983, 64.642869], - [-19.888455, 64.641449], - [-19.888826, 64.642066], - [-19.890014, 64.642542], - [-19.890341, 64.64307], - [-19.89092, 64.643719], - [-19.890281, 64.644628], - [-19.889435, 64.64508], - [-19.889257, 64.645506], - [-19.887995, 64.645919], - [-19.887876, 64.646288], - [-19.886554, 64.646936], - [-19.881551, 64.647598], - [-19.879412, 64.649111], - [-19.88285, 64.652571], - [-19.884223, 64.657274], - [-19.888, 64.662711], - [-19.891433, 64.66844], - [-19.894867, 64.672846], - [-19.896583, 64.677546], - [-19.89521, 64.682832], - [-19.89006, 64.688117], - [-19.88491, 64.69252], - [-19.884223, 64.695895], - [-19.881133, 64.700737], - [-19.87358, 64.705725], - [-19.860191, 64.709539], - [-19.847145, 64.712912], - [-19.844055, 64.713939], - [-19.844055, 64.716725], - [-19.838218, 64.71995], - [-19.839591, 64.72215], - [-19.843711, 64.723616], - [-19.841995, 64.724642], - [-19.842681, 64.726547], - [-19.846458, 64.72728], - [-19.854011, 64.726694], - [-19.861907, 64.72728], - [-19.870147, 64.727134], - [-19.87564, 64.726547], - [-19.882538, 64.728438], - [-19.885094, 64.72873], - [-19.886773, 64.728324], - [-19.887549, 64.728354], - [-19.889976, 64.727737], - [-19.892071, 64.727777], - [-19.892424, 64.727953], - [-19.893434, 64.727887], - [-19.895924, 64.728484], - [-19.897745, 64.728685], - [-19.898332, 64.729011], - [-19.899104, 64.729657], - [-19.900271, 64.729954], - [-19.901351, 64.730621], - [-19.901513, 64.731226], - [-19.901739, 64.731804], - [-19.90134, 64.731964], - [-19.901175, 64.733183], - [-19.900749, 64.73356], - [-19.901649, 64.734867], - [-19.901923, 64.7349], - [-19.90255, 64.734782], - [-19.903102, 64.734983], - [-19.903466, 64.735765], - [-19.902902, 64.736096], - [-19.90096, 64.736385], - [-19.900393, 64.737442], - [-19.900381, 64.73857], - [-19.898619, 64.738815], - [-19.896728, 64.738941], - [-19.894731, 64.738928], - [-19.88285, 64.737099], - [-19.873237, 64.736366], - [-19.863624, 64.73622], - [-19.852294, 64.737831], - [-19.845085, 64.740762], - [-19.833412, 64.73871], - [-19.822425, 64.742227], - [-19.808692, 64.74501], - [-19.798393, 64.744277], - [-19.797363, 64.7475], - [-19.79393, 64.751308], - [-19.788093, 64.753797], - [-19.789198, 64.755211], - [-19.790496, 64.756872], - [-19.794959, 64.759361], - [-19.797019, 64.762728], - [-19.798049, 64.767119], - [-19.796676, 64.770046], - [-19.78878, 64.770777], - [-19.78363, 64.769607], - [-19.77642, 64.770631], - [-19.772644, 64.773997], - [-19.769897, 64.77663], - [-19.769897, 64.780727], - [-19.772644, 64.784822], - [-19.76921, 64.786139], - [-19.768524, 64.790672], - [-19.78054, 64.793743], - [-19.789123, 64.797252], - [-19.800796, 64.800614], - [-19.805221, 64.803439], - [-19.808933, 64.805841], - [-19.811272, 64.80701], - [-19.814941, 64.807421], - [-19.82067, 64.806544], - [-19.834442, 64.806168], - [-19.836845, 64.809529], - [-19.827232, 64.812306], - [-19.823455, 64.81625], - [-19.819679, 64.818588], - [-19.811782, 64.819026], - [-19.804916, 64.822678], - [-19.804229, 64.826329], - [-19.808006, 64.830271], - [-19.809722, 64.833192], - [-19.799079, 64.825453], - [-19.788093, 64.821947], - [-19.776077, 64.8237], - [-19.772412, 64.831186], - [-19.770524, 64.834453], - [-19.768619, 64.83708], - [-19.768163, 64.83771], - [-19.766575, 64.840374], - [-19.769537, 64.843202], - [-19.770202, 64.84644], - [-19.770395, 64.84944], - [-19.769386, 64.85265], - [-19.774901, 64.855403], - [-19.774064, 64.857537], - [-19.775416, 64.858594], - [-19.773699, 64.859971], - [-19.773184, 64.859962], - [-19.773828, 64.86101], - [-19.775201, 64.861712], - [-19.770652, 64.862222], - [-19.768592, 64.861302], - [-19.762241, 64.858166], - [-19.752177, 64.85296], - [-19.741191, 64.847315], - [-19.718767, 64.83572], - [-19.680653, 64.817949], - [-19.655051, 64.805164], - [-19.554744, 64.810539], - [-19.431989, 64.788138], - [-19.380506, 64.787056], - [-19.288893, 64.78515], - [-19.204963, 64.78003], - [-19.147212, 64.776231], - [-19.134166, 64.774767], - [-19.13348, 64.769792], - [-19.127643, 64.766865], - [-19.108074, 64.762621], - [-19.099834, 64.759839], - [-19.108074, 64.758961], - [-19.12421, 64.762474], - [-19.136913, 64.764963], - [-19.149272, 64.767304], - [-19.164379, 64.767743], - [-19.175022, 64.766134], - [-19.182231, 64.762328], - [-19.182231, 64.756472], - [-19.174335, 64.752665], - [-19.153392, 64.744317], - [-19.146183, 64.733914], - [-19.145839, 64.728932], - [-19.153564, 64.72534], - [-19.152534, 64.723288], - [-19.149444, 64.721822], - [-19.142921, 64.720283], - [-19.136055, 64.719037], - [-19.129016, 64.719183], - [-19.12318, 64.72021], - [-19.11803, 64.722189], - [-19.114769, 64.723875], - [-19.110134, 64.725487], - [-19.103439, 64.724827], - [-19.07975, 64.709065], - [-19.097087, 64.705544], - [-19.087989, 64.701583], - [-19.053485, 64.689036], - [-19.028423, 64.686981], - [-19.015033, 64.677218], - [-18.999755, 64.665101], - [-18.988769, 64.655844], - [-18.966281, 64.647613], - [-18.959243, 64.646951], - [-18.956325, 64.648348], - [-18.953235, 64.64923], - [-18.941562, 64.644819], - [-18.929718, 64.640702], - [-18.924396, 64.640261], - [-18.913925, 64.640188], - [-18.907917, 64.641144], - [-18.903625, 64.642982], - [-18.902767, 64.645113], - [-18.898818, 64.64776], - [-18.89281, 64.65092], - [-18.887489, 64.655329], - [-18.882511, 64.656064], - [-18.876159, 64.654521], - [-18.870838, 64.654962], - [-18.868263, 64.657607], - [-18.870151, 64.661501], - [-18.876674, 64.668553], - [-18.872726, 64.68199], - [-18.851097, 64.679935], - [-18.787754, 64.697328], - [-18.782432, 64.69388], - [-18.775051, 64.688376], - [-18.775737, 64.685807], - [-18.783634, 64.684779], - [-18.791702, 64.685807], - [-18.796852, 64.683238], - [-18.795135, 64.679935], - [-18.79462, 64.671784], - [-18.793933, 64.663631], - [-18.792217, 64.65577], - [-18.786895, 64.649597], - [-18.776424, 64.64776], - [-18.766811, 64.648568], - [-18.759773, 64.64945], - [-18.75325, 64.651655], - [-18.751876, 64.65386], - [-18.753936, 64.65577], - [-18.752563, 64.660473], - [-18.748615, 64.662676], - [-18.74192, 64.662456], - [-18.735397, 64.660252], - [-18.72956, 64.656285], - [-18.72956, 64.652978], - [-18.729389, 64.649965], - [-18.725269, 64.646069], - [-18.714797, 64.643055], - [-18.701751, 64.641511], - [-18.689563, 64.642173], - [-18.678405, 64.644231], - [-18.666046, 64.649597], - [-18.660209, 64.65577], - [-18.657806, 64.660693], - [-18.657119, 64.665101], - [-18.660724, 64.670462], - [-18.662612, 64.673914], - [-18.668964, 64.676631], - [-18.673599, 64.674575], - [-18.681495, 64.674648], - [-18.68716, 64.676264], - [-18.691452, 64.677145], - [-18.696601, 64.675456], - [-18.700893, 64.674428], - [-18.704669, 64.67597], - [-18.714626, 64.682137], - [-18.722007, 64.686101], - [-18.725612, 64.692339], - [-18.727157, 64.696888], - [-18.724067, 64.698722], - [-18.716514, 64.700556], - [-18.708446, 64.700556], - [-18.696601, 64.699749], - [-18.686645, 64.699896], - [-18.679092, 64.700923], - [-18.671196, 64.700556], - [-18.663471, 64.70129], - [-18.657463, 64.702757], - [-18.656261, 64.704444], - [-18.659866, 64.706278], - [-18.663986, 64.705324], - [-18.67068, 64.705104], - [-18.680809, 64.706278], - [-18.691108, 64.707525], - [-18.697631, 64.710531], - [-18.699691, 64.713098], - [-18.699005, 64.716104], - [-18.696773, 64.717864], - [-18.693511, 64.71757], - [-18.686988, 64.716837], - [-18.682182, 64.717057], - [-18.675487, 64.718743], - [-18.661754, 64.723508], - [-18.653171, 64.724168], - [-18.642871, 64.721822], - [-18.633945, 64.715811], - [-18.624504, 64.709651], - [-18.610599, 64.707231], - [-18.591201, 64.707451], - [-18.573177, 64.708551], - [-18.559787, 64.711851], - [-18.541248, 64.716251], - [-18.525798, 64.725267], - [-18.515155, 64.736186], - [-18.508632, 64.743364], - [-18.496273, 64.749663], - [-18.484771, 64.755886], - [-18.475158, 64.765255], - [-18.47327, 64.769573], - [-18.473613, 64.773304], - [-18.470867, 64.778206], - [-18.476703, 64.787055], - [-18.486488, 64.793124], - [-18.497303, 64.800799], - [-18.497303, 64.804234], - [-18.492668, 64.80723], - [-18.482025, 64.814098], - [-18.473098, 64.825346], - [-18.471553, 64.834034], - [-18.472583, 64.837902], - [-18.466918, 64.840384], - [-18.466403, 64.844033], - [-18.452843, 64.855837], - [-18.452549, 64.855619], - [-18.451996, 64.855346], - [-18.451588, 64.855145], - [-18.451245, 64.854976], - [-18.450812, 64.854762], - [-18.4504, 64.85456], - [-18.449834, 64.85428], - [-18.449354, 64.854044], - [-18.448855, 64.853798], - [-18.448196, 64.853473], - [-18.447532, 64.853145], - [-18.446486, 64.853405], - [-18.446234, 64.853469], - [-18.445934, 64.853486], - [-18.445344, 64.85352], - [-18.444546, 64.853566], - [-18.443517, 64.853625], - [-18.440268, 64.853535], - [-18.439406, 64.853416], - [-18.438704, 64.853318], - [-18.437758, 64.853188], - [-18.437517, 64.853068], - [-18.437156, 64.852889], - [-18.436186, 64.852408], - [-18.435709, 64.852172], - [-18.434829, 64.851688], - [-18.434123, 64.851299], - [-18.433463, 64.850794], - [-18.433309, 64.850676], - [-18.432462, 64.850391], - [-18.431923, 64.850299], - [-18.431497, 64.850239], - [-18.430334, 64.850133], - [-18.428935, 64.850037], - [-18.428215, 64.849869], - [-18.427965, 64.849678], - [-18.427756, 64.849419], - [-18.426752, 64.849059], - [-18.425869, 64.84883], - [-18.423798, 64.848424], - [-18.423134, 64.848369], - [-18.422926, 64.848399], - [-18.422079, 64.848522], - [-18.421351, 64.848438], - [-18.42046, 64.848308], - [-18.419352, 64.848332], - [-18.418174, 64.848383], - [-18.417749, 64.848632], - [-18.417351, 64.848939], - [-18.416764, 64.849114], - [-18.415132, 64.84937], - [-18.412529, 64.849967], - [-18.411446, 64.85009], - [-18.409926, 64.850207], - [-18.408038, 64.850331], - [-18.407224, 64.85043], - [-18.406328, 64.850685], - [-18.405345, 64.851167], - [-18.404652, 64.851397], - [-18.403743, 64.851453], - [-18.40267, 64.851463], - [-18.401814, 64.851305], - [-18.401138, 64.851023], - [-18.400993, 64.850804], - [-18.400728, 64.850402], - [-18.400349, 64.849826], - [-18.400356, 64.849398], - [-18.399978, 64.849164], - [-18.399451, 64.849068], - [-18.398717, 64.849028], - [-18.397372, 64.849075], - [-18.395745, 64.848947], - [-18.395068, 64.849006], - [-18.394342, 64.84925], - [-18.393565, 64.849322], - [-18.392706, 64.849193], - [-18.392145, 64.849097], - [-18.391505, 64.849129], - [-18.390896, 64.849204], - [-18.390056, 64.849232], - [-18.389269, 64.849061], - [-18.388614, 64.848893], - [-18.387554, 64.848774], - [-18.386808, 64.848519], - [-18.386529, 64.848286], - [-18.386428, 64.847956], - [-18.386556, 64.84766], - [-18.386508, 64.847378], - [-18.38562, 64.846108], - [-18.385596, 64.846074], - [-18.384318, 64.845525], - [-18.383679, 64.845214], - [-18.381872, 64.844513], - [-18.380953, 64.844311], - [-18.380129, 64.844196], - [-18.379799, 64.844185], - [-18.379328, 64.844168], - [-18.377947, 64.844243], - [-18.376803, 64.844295], - [-18.375566, 64.844273], - [-18.374769, 64.844202], - [-18.374104, 64.844148], - [-18.373007, 64.844056], - [-18.371716, 64.843905], - [-18.370792, 64.843775], - [-18.370691, 64.843773], - [-18.36985, 64.843459], - [-18.369408, 64.843194], - [-18.368619, 64.843039], - [-18.367534, 64.842834], - [-18.366027, 64.842494], - [-18.365378, 64.842268], - [-18.36484, 64.841945], - [-18.364492, 64.841753], - [-18.363341, 64.841534], - [-18.362451, 64.841404], - [-18.361963, 64.841238], - [-18.361254, 64.840955], - [-18.36063, 64.840844], - [-18.359966, 64.840775], - [-18.3593, 64.840749], - [-18.357628, 64.840719], - [-18.355303, 64.840849], - [-18.353742, 64.841064], - [-18.352651, 64.841258], - [-18.351879, 64.841287], - [-18.351312, 64.841262], - [-18.350351, 64.84116], - [-18.349703, 64.840935], - [-18.349634, 64.84062], - [-18.34986, 64.840367], - [-18.349658, 64.840036], - [-18.349213, 64.8398], - [-18.348435, 64.839544], - [-18.347929, 64.839235], - [-18.347827, 64.838906], - [-18.347383, 64.838656], - [-18.346226, 64.838492], - [-18.346165, 64.838488], - [-18.344996, 64.838413], - [-18.343534, 64.838287], - [-18.342608, 64.838185], - [-18.341614, 64.83774], - [-18.340605, 64.837451], - [-18.33971, 64.837349], - [-18.338821, 64.837191], - [-18.337981, 64.836891], - [-18.337473, 64.836611], - [-18.337021, 64.83609], - [-18.336376, 64.83585], - [-18.335487, 64.835691], - [-18.334952, 64.835682], - [-18.334199, 64.835853], - [-18.333236, 64.836122], - [-18.33249, 64.836194], - [-18.331798, 64.836096], - [-18.331182, 64.835884], - [-18.330483, 64.835844], - [-18.329441, 64.835896], - [-18.328685, 64.835754], - [-18.327945, 64.835456], - [-18.327406, 64.835147], - [-18.326919, 64.834996], - [-18.326338, 64.83492], - [-18.324607, 64.834751], - [-18.3226, 64.834554], - [-18.321239, 64.833691], - [-18.320994, 64.833536], - [-18.320156, 64.833004], - [-18.32011, 64.832975], - [-18.320041, 64.832938], - [-18.31995, 64.832181], - [-18.319924, 64.831942], - [-18.319237, 64.829013], - [-18.319603, 64.82761], - [-18.319861, 64.826525], - [-18.319835, 64.826337], - [-18.319642, 64.824951], - [-18.317991, 64.823235], - [-18.317869, 64.823108], - [-18.317747, 64.822908], - [-18.316966, 64.821621], - [-18.316689, 64.821255], - [-18.315634, 64.819863], - [-18.31418, 64.81785], - [-18.31458, 64.814566], - [-18.314626, 64.814219], - [-18.314524, 64.813904], - [-18.31449, 64.813575], - [-18.314715, 64.812981], - [-18.315005, 64.812416], - [-18.315328, 64.811866], - [-18.315133, 64.811135], - [-18.314984, 64.810619], - [-18.314924, 64.810233], - [-18.314892, 64.809876], - [-18.314853, 64.80959], - [-18.315054, 64.809238], - [-18.315615, 64.808664], - [-18.316435, 64.808151], - [-18.317416, 64.807698], - [-18.318387, 64.80736], - [-18.318934, 64.807241], - [-18.319256, 64.807033], - [-18.320805, 64.806918], - [-18.321966, 64.806683], - [-18.324223, 64.806168], - [-18.325642, 64.805694], - [-18.32566, 64.805509], - [-18.327157, 64.804923], - [-18.327627, 64.804561], - [-18.328138, 64.804128], - [-18.328711, 64.80374], - [-18.328782, 64.803603], - [-18.329668, 64.803201], - [-18.33, 64.802894], - [-18.330433, 64.802245], - [-18.330939, 64.801855], - [-18.33168, 64.801455], - [-18.334987, 64.799879], - [-18.336335, 64.79938], - [-18.33647, 64.799329], - [-18.336361, 64.799335], - [-18.336932, 64.799055], - [-18.33739, 64.798835], - [-18.338329, 64.798453], - [-18.339202, 64.798084], - [-18.340308, 64.797719], - [-18.341626, 64.797243], - [-18.342355, 64.796971], - [-18.342945, 64.796753], - [-18.34366, 64.79661], - [-18.344412, 64.796438], - [-18.345116, 64.796095], - [-18.345479, 64.795801], - [-18.345397, 64.795615], - [-18.345254, 64.79537], - [-18.344829, 64.795263], - [-18.344441, 64.795142], - [-18.344174, 64.794795], - [-18.344092, 64.794594], - [-18.344618, 64.794346], - [-18.345211, 64.7941], - [-18.345469, 64.793848], - [-18.345445, 64.793435], - [-18.345376, 64.793338], - [-18.34548, 64.793079], - [-18.34556, 64.79261], - [-18.345623, 64.792283], - [-18.345041, 64.79165], - [-18.345241, 64.791421], - [-18.345204, 64.791107], - [-18.34456, 64.790525], - [-18.344432, 64.790138], - [-18.34457, 64.789741], - [-18.34462, 64.789571], - [-18.345287, 64.789256], - [-18.346847, 64.788685], - [-18.348279, 64.788055], - [-18.348661, 64.787919], - [-18.348928, 64.787581], - [-18.348925, 64.787268], - [-18.348868, 64.787178], - [-18.348549, 64.786677], - [-18.348787, 64.786296], - [-18.349744, 64.785401], - [-18.349871, 64.785118], - [-18.349547, 64.784684], - [-18.349814, 64.784347], - [-18.350333, 64.784157], - [-18.35099, 64.783926], - [-18.351189, 64.783616], - [-18.351229, 64.782862], - [-18.351563, 64.782184], - [-18.351097, 64.781477], - [-18.350759, 64.780829], - [-18.350371, 64.780366], - [-18.349833, 64.780057], - [-18.34939, 64.779807], - [-18.349185, 64.779518], - [-18.349151, 64.779176], - [-18.349098, 64.778928], - [-18.349353, 64.778495], - [-18.349601, 64.778], - [-18.35, 64.777665], - [-18.351296, 64.777075], - [-18.352009, 64.776946], - [-18.353311, 64.776955], - [-18.353718, 64.776905], - [-18.35407, 64.776726], - [-18.354229, 64.776458], - [-18.35449, 64.776178], - [-18.355186, 64.775904], - [-18.356131, 64.775793], - [-18.358078, 64.775699], - [-18.358764, 64.775512], - [-18.359091, 64.775248], - [-18.359556, 64.7746], - [-18.359677, 64.774374], - [-18.359272, 64.774044], - [-18.359121, 64.773922], - [-18.358815, 64.773632], - [-18.358659, 64.773187], - [-18.358588, 64.772872], - [-18.358067, 64.772392], - [-18.357943, 64.771962], - [-18.357752, 64.771874], - [-18.357357, 64.772151], - [-18.356933, 64.772714], - [-18.356324, 64.773131], - [-18.355589, 64.773488], - [-18.354471, 64.773829], - [-18.352949, 64.774183], - [-18.351756, 64.774418], - [-18.350369, 64.774593], - [-18.34845, 64.774744], - [-18.347832, 64.774933], - [-18.347141, 64.775148], - [-18.346126, 64.775286], - [-18.345142, 64.775426], - [-18.343758, 64.775914], - [-18.343212, 64.776033], - [-18.342171, 64.776086], - [-18.34154, 64.77606], - [-18.340112, 64.775963], - [-18.339228, 64.775776], - [-18.33742, 64.774817], - [-18.336649, 64.774504], - [-18.336286, 64.774455], - [-18.335147, 64.774477], - [-18.333881, 64.774455], - [-18.333149, 64.774427], - [-18.332529, 64.774273], - [-18.331363, 64.773568], - [-18.330902, 64.773489], - [-18.330172, 64.773447], - [-18.329677, 64.77338], - [-18.328898, 64.773495], - [-18.328308, 64.773712], - [-18.327491, 64.774211], - [-18.325729, 64.775134], - [-18.324858, 64.775489], - [-18.324511, 64.77564], - [-18.323585, 64.775866], - [-18.32216, 64.776081], - [-18.321858, 64.776101], - [-18.320244, 64.776204], - [-18.318696, 64.776319], - [-18.317331, 64.776607], - [-18.316017, 64.776726], - [-18.314778, 64.776761], - [-18.313601, 64.776826], - [-18.311514, 64.776987], - [-18.310063, 64.777131], - [-18.308845, 64.777295], - [-18.307075, 64.777605], - [-18.304762, 64.778034], - [-18.303574, 64.778211], - [-18.302526, 64.778335], - [-18.301829, 64.778279], - [-18.27059, 64.76492], - [-18.134984, 64.765207], - [-18.057595, 64.694129], - [-17.989588, 64.669057], - [-17.825431, 64.666047], - [-17.763034, 64.640936], - [-17.782947, 64.640348], - [-17.794277, 64.639318], - [-17.805606, 64.636524], - [-17.822772, 64.6302], - [-17.837535, 64.625786], - [-17.851268, 64.618282], - [-17.862598, 64.612836], - [-17.862255, 64.611217], - [-17.865525, 64.60559], - [-17.868786, 64.599626], - [-17.884571, 64.5934], - [-17.900887, 64.586148], - [-17.91668, 64.57738], - [-17.923023, 64.570559], - [-17.935382, 64.564366], - [-17.946369, 64.561417], - [-17.954265, 64.557435], - [-17.958728, 64.551387], - [-17.96114, 64.549363], - [-17.961483, 64.546854], - [-17.961998, 64.544125], - [-17.962685, 64.539623], - [-17.962685, 64.536376], - [-17.96011, 64.534384], - [-17.96217, 64.533719], - [-17.963543, 64.529364], - [-17.960282, 64.526263], - [-17.959938, 64.523679], - [-17.954617, 64.51947], - [-17.948609, 64.514596], - [-17.944489, 64.511345], - [-17.941742, 64.506913], - [-17.926808, 64.504696], - [-17.913933, 64.503218], - [-17.902775, 64.50211], - [-17.885609, 64.503735], - [-17.883892, 64.505878], - [-17.880288, 64.505583], - [-17.877704, 64.505911], - [-17.873936, 64.50344], - [-17.869473, 64.500706], - [-17.862091, 64.498932], - [-17.852822, 64.497676], - [-17.844582, 64.497824], - [-17.839595, 64.500591], - [-17.835819, 64.498965], - [-17.833939, 64.497084], - [-17.828266, 64.497635], - [-17.824489, 64.497635], - [-17.826558, 64.494793], - [-17.826729, 64.492723], - [-17.82009, 64.480969], - [-17.816151, 64.47207], - [-17.812114, 64.468714], - [-17.807982, 64.462823], - [-17.806564, 64.458848], - [-17.805196, 64.457326], - [-17.798704, 64.455276], - [-17.797849, 64.454042], - [-17.799808, 64.453137], - [-17.803848, 64.453016], - [-17.807251, 64.453223], - [-17.827023, 64.460184], - [-17.835475, 64.466724], - [-17.840282, 64.468351], - [-17.843552, 64.471278], - [-17.84544, 64.47542], - [-17.853094, 64.481053], - [-17.863882, 64.481548], - [-17.881988, 64.480817], - [-17.900363, 64.487434], - [-17.91032, 64.487729], - [-17.923366, 64.486842], - [-17.932292, 64.485659], - [-17.941399, 64.482446], - [-17.950154, 64.478231], - [-17.961131, 64.469091], - [-17.9632, 64.465507], - [-17.97144, 64.461067], - [-17.981044, 64.456659], - [-17.985164, 64.453402], - [-17.992031, 64.448367], - [-17.996846, 64.444262], - [-18.004914, 64.439892], - [-18.005763, 64.436963], - [-18.00851, 64.43474], - [-18.01263, 64.433851], - [-18.017436, 64.432962], - [-18.022243, 64.430888], - [-18.025333, 64.428962], - [-18.025676, 64.426739], - [-18.026706, 64.424812], - [-18.029796, 64.422589], - [-18.028079, 64.420958], - [-18.028603, 64.418776], - [-18.025333, 64.417549], - [-18.027736, 64.415177], - [-18.025513, 64.41329], - [-18.010579, 64.410176], - [-18.008853, 64.408652], - [-18.01057, 64.407021], - [-18.020526, 64.403016], - [-18.022243, 64.401236], - [-18.020363, 64.398681], - [-18.009892, 64.39742], - [-18.005429, 64.39794], - [-18.000622, 64.398607], - [-17.995987, 64.398162], - [-17.990837, 64.397049], - [-17.993241, 64.395417], - [-17.99821, 64.395005], - [-17.996837, 64.393967], - [-17.996837, 64.393225], - [-17.99924, 64.392335], - [-17.999927, 64.391148], - [-17.998554, 64.389664], - [-18.001644, 64.388031], - [-18.018132, 64.388369], - [-18.025341, 64.385994], - [-18.038379, 64.382985], - [-18.042336, 64.382209], - [-18.051777, 64.383323], - [-18.062935, 64.380428], - [-18.079243, 64.374935], - [-18.088169, 64.371816], - [-18.107911, 64.366173], - [-18.112202, 64.363871], - [-18.120785, 64.357483], - [-18.122845, 64.355477], - [-18.128338, 64.353842], - [-18.134003, 64.349459], - [-18.135196, 64.345553], - [-18.138629, 64.343769], - [-18.144466, 64.341986], - [-18.150989, 64.340202], - [-18.150989, 64.337823], - [-18.155795, 64.335444], - [-18.154766, 64.333957], - [-18.154431, 64.333477], - [-18.152543, 64.332734], - [-18.155452, 64.332172], - [-18.161632, 64.331429], - [-18.167468, 64.328008], - [-18.166619, 64.323661], - [-18.165245, 64.320686], - [-18.165589, 64.319421], - [-18.164902, 64.31838], - [-18.164387, 64.316446], - [-18.165074, 64.313841], - [-18.163357, 64.310195], - [-18.162156, 64.306921], - [-18.149959, 64.306285], - [-18.146869, 64.304945], - [-18.146182, 64.303605], - [-18.148242, 64.301521], - [-18.150989, 64.301074], - [-18.154766, 64.301818], - [-18.159915, 64.302265], - [-18.164035, 64.301223], - [-18.169872, 64.298394], - [-18.170902, 64.297352], - [-18.166782, 64.293183], - [-18.163349, 64.290651], - [-18.155795, 64.285586], - [-18.152019, 64.279776], - [-18.151676, 64.27769], - [-18.147899, 64.267258], - [-18.147736, 64.261112], - [-18.145161, 64.257459], - [-18.137436, 64.255894], - [-18.126965, 64.255744], - [-18.11615, 64.25485], - [-18.108597, 64.258428], - [-18.106194, 64.258205], - [-18.102932, 64.25649], - [-18.099499, 64.254999], - [-18.097431, 64.254137], - [-18.097087, 64.251005], - [-18.096057, 64.247724], - [-18.094349, 64.245751], - [-18.087998, 64.24232], - [-18.075982, 64.246721], - [-18.070488, 64.248287], - [-18.067055, 64.246646], - [-18.064652, 64.245826], - [-18.063107, 64.243737], - [-18.060695, 64.242652], - [-18.061038, 64.237877], - [-18.061382, 64.235191], - [-18.068592, 64.228922], - [-18.068592, 64.225041], - [-18.069621, 64.220861], - [-18.073313, 64.216036], - [-18.073071, 64.214397], - [-18.072902, 64.213593], - [-18.073551, 64.212404], - [-18.07389, 64.210946], - [-18.071143, 64.209153], - [-18.064963, 64.205717], - [-18.052089, 64.204672], - [-18.040759, 64.20385], - [-18.029429, 64.203626], - [-18.024451, 64.206838], - [-18.019422, 64.208306], - [-18.01796, 64.209776], - [-18.015385, 64.209776], - [-18.012638, 64.209029], - [-18.015033, 64.206374], - [-18.019748, 64.198958], - [-18.012866, 64.196721], - [-18.000579, 64.19795], - [-17.987911, 64.195914], - [-17.990314, 64.190683], - [-17.995807, 64.185003], - [-18.0013, 64.179171], - [-18.010227, 64.174086], - [-18.016406, 64.171993], - [-18.02929, 64.166798], - [-18.030663, 64.156174], - [-18.026371, 64.151759], - [-18.021222, 64.147717], - [-18.01899, 64.142702], - [-18.017788, 64.136487], - [-18.011609, 64.128099], - [-18.009205, 64.124728], - [-18.007145, 64.121281], - [-18.000451, 64.11746], - [-17.995816, 64.113788], - [-17.984486, 64.109291], - [-17.972641, 64.107267], - [-17.961312, 64.104343], - [-17.944317, 64.100744], - [-17.928353, 64.097145], - [-17.917882, 64.095795], - [-17.909813, 64.09302], - [-17.901917, 64.08957], - [-17.889901, 64.084169], - [-17.876683, 64.08882], - [-17.868778, 64.088854], - [-17.864838, 64.08717], - [-17.853508, 64.083644], - [-17.837029, 64.082894], - [-17.818833, 64.084094], - [-17.810078, 64.087245], - [-17.804585, 64.08897], - [-17.799778, 64.09062], - [-17.795307, 64.092154], - [-17.793942, 64.08762], - [-17.781239, 64.086645], - [-17.755833, 64.090245], - [-17.730084, 64.103669], - [-17.720642, 64.115212], - [-17.722522, 64.122738], - [-17.720642, 64.132068], - [-17.718926, 64.13746], - [-17.705021, 64.144349], - [-17.697125, 64.15131], - [-17.696267, 64.158793], - [-17.69661, 64.165003], - [-17.709656, 64.169042], - [-17.713596, 64.171245], - [-17.726985, 64.174236], - [-17.732135, 64.175881], - [-17.730256, 64.177343], - [-17.726136, 64.178166], - [-17.723561, 64.17839], - [-17.712403, 64.181306], - [-17.70794, 64.186315], - [-17.719269, 64.188781], - [-17.726136, 64.191098], - [-17.70691, 64.189828], - [-17.70176, 64.19618], - [-17.706566, 64.199617], - [-17.725955, 64.206672], - [-17.726985, 64.209063], - [-17.725955, 64.211452], - [-17.725269, 64.212647], - [-17.723209, 64.215784], - [-17.719432, 64.218024], - [-17.711193, 64.213095], - [-17.706386, 64.215336], - [-17.70055, 64.211602], - [-17.693683, 64.214738], - [-17.69128, 64.218621], - [-17.683383, 64.220861], - [-17.683727, 64.217277], - [-17.684413, 64.213095], - [-17.676174, 64.211154], - [-17.668621, 64.210108], - [-17.668964, 64.204581], - [-17.687503, 64.203087], - [-17.69437, 64.199949], - [-17.695743, 64.195018], - [-17.696773, 64.190833], - [-17.688713, 64.182876], - [-17.669316, 64.173978], - [-17.660561, 64.175474], - [-17.656269, 64.177867], - [-17.652665, 64.176446], - [-17.651463, 64.172632], - [-17.646656, 64.168893], - [-17.63979, 64.166424], - [-17.627602, 64.169117], - [-17.619877, 64.171959], - [-17.610951, 64.174128], - [-17.602024, 64.175025], - [-17.593613, 64.175399], - [-17.586575, 64.180185], - [-17.577992, 64.184894], - [-17.577134, 64.188781], - [-17.579365, 64.192967], - [-17.576447, 64.192443], - [-17.571297, 64.190201], - [-17.559796, 64.18781], - [-17.550869, 64.1905], - [-17.545033, 64.195657], - [-17.54469, 64.199094], - [-17.555161, 64.202605], - [-17.554646, 64.208058], - [-17.551728, 64.210896], - [-17.546921, 64.212017], - [-17.542115, 64.211942], - [-17.536278, 64.20634], - [-17.528888, 64.20219], - [-17.522889, 64.200065], - [-17.512417, 64.198944], - [-17.496968, 64.197674], - [-17.4889, 64.195507], - [-17.481175, 64.192817], - [-17.462807, 64.191098], - [-17.444954, 64.196628], - [-17.457657, 64.201709], - [-17.461597, 64.207419], - [-17.463837, 64.210448], - [-17.464867, 64.215004], - [-17.461605, 64.218364], - [-17.457829, 64.221947], - [-17.453022, 64.224411], - [-17.441349, 64.227546], - [-17.419548, 64.227172], - [-17.406331, 64.224635], - [-17.416459, 64.220454], - [-17.397919, 64.219857], - [-17.386753, 64.21877], - [-17.374736, 64.213394], - [-17.36375, 64.20727], - [-17.35654, 64.205178], - [-17.343159, 64.201858], - [-17.330456, 64.19349], - [-17.318097, 64.184147], - [-17.312432, 64.180035] - ], - [ - [-19.467599, 63.639344], - [-19.473596, 63.64291], - [-19.479164, 63.645429], - [-19.488373, 63.643005], - [-19.488052, 63.646], - [-19.48923, 63.648899], - [-19.494584, 63.649897], - [-19.498118, 63.649707], - [-19.501973, 63.652274], - [-19.507327, 63.652036], - [-19.510754, 63.653367], - [-19.51643, 63.655363], - [-19.521356, 63.657739], - [-19.523604, 63.656076], - [-19.527995, 63.655268], - [-19.53367, 63.65389], - [-19.535062, 63.652654], - [-19.542987, 63.655173], - [-19.546199, 63.654032], - [-19.549412, 63.653557], - [-19.552962, 63.655359], - [-19.553394, 63.658877], - [-19.554117, 63.662302], - [-19.555644, 63.66494], - [-19.556466, 63.665005], - [-19.558815, 63.665193], - [-19.559457, 63.664557], - [-19.558477, 63.663755], - [-19.559028, 63.660066], - [-19.560128, 63.656858], - [-19.564215, 63.654138], - [-19.570658, 63.651836], - [-19.58056, 63.654138], - [-19.584646, 63.651766], - [-19.592976, 63.653928], - [-19.601463, 63.654626], - [-19.603978, 63.650441], - [-19.607121, 63.645697], - [-19.611836, 63.646953], - [-19.614193, 63.649325], - [-19.61215, 63.65344], - [-19.610421, 63.657276], - [-19.610579, 63.659717], - [-19.61325, 63.662715], - [-19.619321, 63.663719], - [-19.619479, 63.665848], - [-19.620822, 63.667416], - [-19.622362, 63.668055], - [-19.622894, 63.668079], - [-19.622943, 63.668081], - [-19.623689, 63.667864], - [-19.623992, 63.66736], - [-19.623979, 63.666184], - [-19.623132, 63.665173], - [-19.623586, 63.66343], - [-19.626766, 63.66146], - [-19.620798, 63.657152], - [-19.627552, 63.652394], - [-19.629118, 63.654351], - [-19.63168, 63.656948], - [-19.63497, 63.660022], - [-19.641835, 63.659636], - [-19.656893, 63.658885], - [-19.672615, 63.658078], - [-19.677851, 63.658436], - [-19.686265, 63.658513], - [-19.694411, 63.658773], - [-19.707793, 63.655776], - [-19.712269, 63.652659], - [-19.705125, 63.645445], - [-19.714594, 63.641241], - [-19.720798, 63.631816], - [-19.72341, 63.623186], - [-19.713288, 63.618036], - [-19.71639, 63.611868], - [-19.709043, 63.604974], - [-19.698757, 63.604974], - [-19.689614, 63.607442], - [-19.68439, 63.608676], - [-19.688961, 63.605918], - [-19.687329, 63.601998], - [-19.682921, 63.602579], - [-19.680962, 63.601998], - [-19.676227, 63.601635], - [-19.671002, 63.602434], - [-19.669533, 63.59953], - [-19.659574, 63.600474], - [-19.652227, 63.600474], - [-19.649452, 63.596045], - [-19.647003, 63.591907], - [-19.636151, 63.590184], - [-19.630796, 63.589136], - [-19.624371, 63.588565], - [-19.622337, 63.593756], - [-19.616661, 63.597995], - [-19.616875, 63.593328], - [-19.615804, 63.589946], - [-19.610986, 63.587326], - [-19.604346, 63.58766], - [-19.603061, 63.591375], - [-19.601134, 63.594899], - [-19.602419, 63.597042], - [-19.597279, 63.597137], - [-19.594602, 63.594423], - [-19.587641, 63.594995], - [-19.581751, 63.592613], - [-19.577789, 63.592471], - [-19.574898, 63.593614], - [-19.569651, 63.593423], - [-19.564404, 63.594328], - [-19.564082, 63.596709], - [-19.562262, 63.599233], - [-19.559264, 63.60028], - [-19.553267, 63.598042], - [-19.550268, 63.594899], - [-19.547484, 63.591899], - [-19.545128, 63.588184], - [-19.542772, 63.583754], - [-19.54213, 63.581467], - [-19.534634, 63.582896], - [-19.527888, 63.585611], - [-19.525318, 63.588803], - [-19.522962, 63.592899], - [-19.526817, 63.595709], - [-19.527995, 63.598995], - [-19.529173, 63.600423], - [-19.529387, 63.60247], - [-19.530351, 63.60347], - [-19.529708, 63.604517], - [-19.525211, 63.603946], - [-19.522426, 63.604517], - [-19.521141, 63.606374], - [-19.517822, 63.606136], - [-19.515787, 63.605993], - [-19.50797, 63.604232], - [-19.504865, 63.604375], - [-19.49951, 63.607992], - [-19.49437, 63.607278], - [-19.492978, 63.609087], - [-19.491479, 63.611515], - [-19.493085, 63.612752], - [-19.489658, 63.61437], - [-19.477558, 63.614465], - [-19.474024, 63.616083], - [-19.471775, 63.617987], - [-19.47563, 63.620413], - [-19.481413, 63.621746], - [-19.473489, 63.622126], - [-19.475095, 63.624029], - [-19.47049, 63.626265], - [-19.469955, 63.628643], - [-19.46867, 63.632211], - [-19.46867, 63.634398], - [-19.462887, 63.636443], - [-19.467599, 63.639344] - ], - [ - [-18.803328, 63.580444], - [-18.804776, 63.583021], - [-18.804052, 63.588819], - [-18.808035, 63.591235], - [-18.817809, 63.594455], - [-18.814551, 63.597353], - [-18.815999, 63.599767], - [-18.83048, 63.602504], - [-18.827584, 63.604596], - [-18.841703, 63.607976], - [-18.853288, 63.615216], - [-18.878992, 63.619399], - [-18.88768, 63.617308], - [-18.895283, 63.619077], - [-18.905782, 63.619882], - [-18.902523, 63.623903], - [-18.893473, 63.629531], - [-18.888404, 63.630657], - [-18.887318, 63.634837], - [-18.877906, 63.636927], - [-18.884422, 63.639982], - [-18.888042, 63.643196], - [-18.870303, 63.645125], - [-18.851116, 63.643679], - [-18.830842, 63.646571], - [-18.822878, 63.654284], - [-18.819619, 63.658622], - [-18.811655, 63.660228], - [-18.808035, 63.663762], - [-18.809483, 63.668901], - [-18.819619, 63.671952], - [-18.831204, 63.673878], - [-18.846047, 63.676929], - [-18.85365, 63.681263], - [-18.841341, 63.685115], - [-18.835911, 63.692336], - [-18.839893, 63.697469], - [-18.850754, 63.701961], - [-18.869941, 63.705329], - [-18.874285, 63.709498], - [-18.881888, 63.711262], - [-18.880802, 63.714469], - [-18.880078, 63.716232], - [-18.881526, 63.718957], - [-18.877906, 63.721201], - [-18.865959, 63.719598], - [-18.856184, 63.718476], - [-18.844599, 63.717835], - [-18.835911, 63.720079], - [-18.837721, 63.726009], - [-18.837721, 63.732739], - [-18.846409, 63.735783], - [-18.847133, 63.742351], - [-18.86864, 63.743191], - [-18.889509, 63.751517], - [-18.898102, 63.757307], - [-18.903421, 63.760745], - [-18.919789, 63.767257], - [-18.923471, 63.77214], - [-18.940657, 63.777022], - [-18.997126, 63.786784], - [-19.032316, 63.789676], - [-19.066279, 63.792206], - [-19.090012, 63.792026], - [-19.102697, 63.787869], - [-19.112518, 63.783892], - [-19.118136, 63.783287], - [-19.126221, 63.781047], - [-19.132662, 63.782621], - [-19.138418, 63.782803], - [-19.148696, 63.781471], - [-19.157466, 63.78256], - [-19.164729, 63.780926], - [-19.170125, 63.780666], - [-19.172266, 63.780563], - [-19.178022, 63.780381], - [-19.181996, 63.779775], - [-19.187751, 63.77808], - [-19.191314, 63.776264], - [-19.203373, 63.77366], - [-19.210225, 63.772146], - [-19.213788, 63.770692], - [-19.218311, 63.767421], - [-19.221873, 63.766452], - [-19.225573, 63.764635], - [-19.22667, 63.761788], - [-19.228862, 63.761788], - [-19.230096, 63.761545], - [-19.229548, 63.759485], - [-19.231877, 63.758698], - [-19.235166, 63.757122], - [-19.237633, 63.755244], - [-19.241881, 63.751486], - [-19.24284, 63.749062], - [-19.24517, 63.749062], - [-19.246129, 63.749607], - [-19.247911, 63.749244], - [-19.24887, 63.748759], - [-19.250925, 63.750395], - [-19.253803, 63.752335], - [-19.259559, 63.754819], - [-19.265588, 63.756637], - [-19.268205, 63.755222], - [-19.28121, 63.755332], - [-19.282867, 63.755992], - [-19.286678, 63.755882], - [-19.289743, 63.756724], - [-19.292062, 63.755625], - [-19.300594, 63.755662], - [-19.30689, 63.755442], - [-19.310617, 63.755149], - [-19.314759, 63.753574], - [-19.314676, 63.751632], - [-19.312605, 63.750094], - [-19.310617, 63.748884], - [-19.310369, 63.748078], - [-19.306144, 63.747492], - [-19.306641, 63.746649], - [-19.308546, 63.746649], - [-19.310369, 63.746063], - [-19.314428, 63.74533], - [-19.315008, 63.743498], - [-19.311694, 63.743022], - [-19.312191, 63.741849], - [-19.315256, 63.741629], - [-19.319895, 63.741886], - [-19.324037, 63.743095], - [-19.324285, 63.740933], - [-19.32894, 63.739855], - [-19.326944, 63.73679], - [-19.323422, 63.73466], - [-19.314616, 63.731957], - [-19.306279, 63.729151], - [-19.303813, 63.729203], - [-19.300056, 63.72806], - [-19.295242, 63.727956], - [-19.291602, 63.726553], - [-19.287844, 63.724681], - [-19.288079, 63.723642], - [-19.284674, 63.722654], - [-19.281034, 63.719223], - [-19.278099, 63.716312], - [-19.272698, 63.71366], - [-19.269293, 63.711268], - [-19.269645, 63.710332], - [-19.264948, 63.708199], - [-19.262835, 63.705651], - [-19.258738, 63.702407], - [-19.262835, 63.702426], - [-19.267179, 63.70279], - [-19.269058, 63.703882], - [-19.270584, 63.704194], - [-19.269762, 63.704923], - [-19.270467, 63.706483], - [-19.268588, 63.706431], - [-19.268118, 63.707575], - [-19.272698, 63.710072], - [-19.275163, 63.710072], - [-19.278099, 63.71158], - [-19.283735, 63.713608], - [-19.28667, 63.714596], - [-19.291132, 63.715636], - [-19.296181, 63.715792], - [-19.299938, 63.713608], - [-19.306044, 63.711996], - [-19.306631, 63.710046], - [-19.308784, 63.710479], - [-19.312111, 63.711562], - [-19.316122, 63.712516], - [-19.315927, 63.710999], - [-19.322189, 63.711172], - [-19.323461, 63.707965], - [-19.318177, 63.706318], - [-19.32121, 63.705625], - [-19.327081, 63.706622], - [-19.332365, 63.707272], - [-19.338431, 63.707315], - [-19.344204, 63.705885], - [-19.346455, 63.704021], - [-19.346553, 63.70077], - [-19.349293, 63.698299], - [-19.345085, 63.697778], - [-19.341856, 63.696304], - [-19.348118, 63.695567], - [-19.34988, 63.694223], - [-19.350467, 63.691838], - [-19.349684, 63.68993], - [-19.346161, 63.689409], - [-19.343226, 63.688585], - [-19.337453, 63.687718], - [-19.333148, 63.687111], - [-19.334126, 63.685983], - [-19.332952, 63.685115], - [-19.330506, 63.686243], - [-19.32757, 63.687154], - [-19.32258, 63.687457], - [-19.326005, 63.685679], - [-19.324048, 63.684118], - [-19.319254, 63.685159], - [-19.317981, 63.684508], - [-19.31622, 63.683424], - [-19.32121, 63.681949], - [-19.319743, 63.680864], - [-19.32532, 63.680864], - [-19.330604, 63.680083], - [-19.335398, 63.680213], - [-19.340095, 63.680734], - [-19.334126, 63.680994], - [-19.330604, 63.681038], - [-19.328158, 63.681992], - [-19.333539, 63.682209], - [-19.337453, 63.682816], - [-19.341073, 63.682556], - [-19.343617, 63.683077], - [-19.348999, 63.683337], - [-19.35575, 63.683901], - [-19.359273, 63.684421], - [-19.363089, 63.683987], - [-19.362208, 63.682773], - [-19.360438, 63.68202], - [-19.359762, 63.681732], - [-19.356631, 63.680864], - [-19.352913, 63.679823], - [-19.355457, 63.678521], - [-19.353682, 63.676781], - [-19.348307, 63.678767], - [-19.341738, 63.679032], - [-19.334272, 63.67784], - [-19.329196, 63.677311], - [-19.322015, 63.676939], - [-19.32031, 63.67574], - [-19.323564, 63.675789], - [-19.32412, 63.675722], - [-19.3283, 63.674662], - [-19.33696, 63.673206], - [-19.330801, 63.668381], - [-19.340245, 63.666186], - [-19.331509, 63.66517], - [-19.331509, 63.662787], - [-19.34114, 63.662874], - [-19.341824, 63.661623], - [-19.346158, 63.661704], - [-19.348539, 63.66276], - [-19.352689, 63.663031], - [-19.349271, 63.661704], - [-19.345243, 63.660323], - [-19.343828, 63.660622], - [-19.340909, 63.659457], - [-19.337856, 63.6589], - [-19.33696, 63.657177], - [-19.343529, 63.656382], - [-19.337796, 63.654527], - [-19.331585, 63.653864], - [-19.32621, 63.653997], - [-19.321731, 63.653467], - [-19.321134, 63.651214], - [-19.328599, 63.651214], - [-19.335766, 63.650684], - [-19.34562, 63.651744], - [-19.352487, 63.654129], - [-19.363237, 63.65837], - [-19.372892, 63.660729], - [-19.375644, 63.662118], - [-19.380556, 63.664596], - [-19.376432, 63.658807], - [-19.371897, 63.656382], - [-19.36473, 63.651081], - [-19.36473, 63.649226], - [-19.357564, 63.64737], - [-19.356071, 63.644984], - [-19.357265, 63.643128], - [-19.361147, 63.642996], - [-19.364432, 63.646575], - [-19.368015, 63.648033], - [-19.371897, 63.642863], - [-19.369666, 63.640573], - [-19.374239, 63.638833], - [-19.382357, 63.638792], - [-19.377318, 63.639952], - [-19.374052, 63.640118], - [-19.378998, 63.640987], - [-19.376376, 63.642731], - [-19.380258, 63.645117], - [-19.38954, 63.643286], - [-19.394652, 63.643477], - [-19.39384, 63.645025], - [-19.390018, 63.645746], - [-19.389121, 63.646555], - [-19.388441, 63.647167], - [-19.39041, 63.6479], - [-19.402056, 63.644321], - [-19.399621, 63.642332], - [-19.401459, 63.641803], - [-19.405784, 63.642841], - [-19.410896, 63.643032], - [-19.413715, 63.643456], - [-19.414598, 63.642863], - [-19.415202, 63.642304], - [-19.418181, 63.639549], - [-19.418971, 63.63898], - [-19.421742, 63.63881], - [-19.424252, 63.639503], - [-19.427191, 63.639194], - [-19.426882, 63.638233], - [-19.431445, 63.636859], - [-19.431367, 63.636344], - [-19.430053, 63.636172], - [-19.428815, 63.634867], - [-19.430826, 63.634421], - [-19.433378, 63.634249], - [-19.431522, 63.633219], - [-19.430285, 63.633596], - [-19.428506, 63.633768], - [-19.426573, 63.632635], - [-19.42897, 63.631536], - [-19.429821, 63.630093], - [-19.429821, 63.628788], - [-19.426805, 63.629062], - [-19.425258, 63.629269], - [-19.423479, 63.628032], - [-19.421082, 63.627517], - [-19.417215, 63.627139], - [-19.412884, 63.628066], - [-19.413271, 63.630059], - [-19.410417, 63.631195], - [-19.409636, 63.629887], - [-19.410951, 63.628925], - [-19.408399, 63.627723], - [-19.408924, 63.626818], - [-19.411647, 63.626246], - [-19.413503, 63.62549], - [-19.410874, 63.624768], - [-19.408631, 63.62573], - [-19.407316, 63.62683], - [-19.40198, 63.627791], - [-19.398423, 63.627276], - [-19.401593, 63.626692], - [-19.403372, 63.624837], - [-19.405537, 63.624116], - [-19.405847, 63.623428], - [-19.406834, 63.623501], - [-19.408167, 63.623325], - [-19.412111, 63.623806], - [-19.414354, 63.623119], - [-19.415127, 63.621779], - [-19.41389, 63.621229], - [-19.415282, 63.620061], - [-19.414122, 63.619924], - [-19.414586, 63.619305], - [-19.415978, 63.61934], - [-19.415127, 63.61879], - [-19.414122, 63.617862], - [-19.413194, 63.618103], - [-19.41273, 63.618652], - [-19.410796, 63.618721], - [-19.409559, 63.619649], - [-19.410178, 63.620783], - [-19.409559, 63.621092], - [-19.408631, 63.621676], - [-19.40778, 63.622054], - [-19.407548, 63.622673], - [-19.405692, 63.622707], - [-19.403836, 63.622776], - [-19.403449, 63.622226], - [-19.400897, 63.622466], - [-19.399505, 63.622226], - [-19.399428, 63.621642], - [-19.396335, 63.621058], - [-19.394292, 63.620317], - [-19.392081, 63.61934], - [-19.393098, 63.617929], - [-19.397804, 63.616487], - [-19.400201, 63.616006], - [-19.398964, 63.615353], - [-19.399428, 63.614288], - [-19.394479, 63.61415], - [-19.394015, 63.615044], - [-19.392158, 63.614941], - [-19.390148, 63.614666], - [-19.392777, 63.613222], - [-19.39386, 63.611951], - [-19.393164, 63.611641], - [-19.392004, 63.612019], - [-19.389142, 63.613051], - [-19.389065, 63.612329], - [-19.390225, 63.611779], - [-19.390709, 63.609701], - [-19.392545, 63.608238], - [-19.391926, 63.60786], - [-19.38922, 63.609166], - [-19.39038, 63.60731], - [-19.394556, 63.605937], - [-19.391619, 63.604054], - [-19.394788, 63.60195], - [-19.398261, 63.601207], - [-19.397132, 63.599971], - [-19.394354, 63.600348], - [-19.393377, 63.600087], - [-19.394311, 63.599807], - [-19.393985, 63.599035], - [-19.392791, 63.598987], - [-19.392205, 63.599306], - [-19.390382, 63.599286], - [-19.389557, 63.599943], - [-19.389731, 63.600541], - [-19.39125, 63.600551], - [-19.391293, 63.601496], - [-19.390252, 63.60222], - [-19.389449, 63.603378], - [-19.389535, 63.604179], - [-19.387929, 63.604575], - [-19.38769, 63.605067], - [-19.38947, 63.605028], - [-19.389515, 63.605852], - [-19.384345, 63.609332], - [-19.382111, 63.609504], - [-19.381918, 63.610546], - [-19.380258, 63.611426], - [-19.379299, 63.610874], - [-19.379032, 63.610187], - [-19.377823, 63.606745], - [-19.375645, 63.602443], - [-19.373315, 63.600483], - [-19.372061, 63.601092], - [-19.37246, 63.601954], - [-19.370407, 63.603197], - [-19.370065, 63.603907], - [-19.368639, 63.604566], - [-19.367661, 63.603841], - [-19.366243, 63.603653], - [-19.366186, 63.604338], - [-19.364647, 63.60416], - [-19.365046, 63.602867], - [-19.362936, 63.603628], - [-19.362593, 63.603197], - [-19.361909, 63.603602], - [-19.360402, 63.60298], - [-19.357014, 63.604164], - [-19.354324, 63.602842], - [-19.353925, 63.601701], - [-19.353411, 63.601244], - [-19.352841, 63.600306], - [-19.351872, 63.600382], - [-19.351415, 63.599672], - [-19.350332, 63.598911], - [-19.348788, 63.599753], - [-19.348507, 63.600407], - [-19.346225, 63.600179], - [-19.344571, 63.600027], - [-19.343465, 63.600399], - [-19.340693, 63.600864], - [-19.334997, 63.601152], - [-19.328948, 63.60255], - [-19.334029, 63.598247], - [-19.334819, 63.596426], - [-19.334271, 63.594051], - [-19.340319, 63.590177], - [-19.340803, 63.587486], - [-19.340803, 63.583719], - [-19.340921, 63.581205], - [-19.33961, 63.580824], - [-19.339352, 63.581243], - [-19.335789, 63.582956], - [-19.33548, 63.583826], - [-19.333787, 63.586302], - [-19.330641, 63.587809], - [-19.323383, 63.589854], - [-19.31443, 63.590392], - [-19.307897, 63.591145], - [-19.302816, 63.593943], - [-19.297251, 63.595557], - [-19.294106, 63.596203], - [-19.29338, 63.598462], - [-19.29338, 63.60255], - [-19.290477, 63.602873], - [-19.291202, 63.599861], - [-19.288541, 63.598247], - [-19.290477, 63.59545], - [-19.294832, 63.593513], - [-19.298703, 63.591791], - [-19.300155, 63.588885], - [-19.304026, 63.587271], - [-19.305236, 63.585764], - [-19.304026, 63.582535], - [-19.275492, 63.576673], - [-19.271583, 63.575833], - [-19.270504, 63.574094], - [-19.268752, 63.573194], - [-19.264843, 63.574634], - [-19.262282, 63.572834], - [-19.256217, 63.571934], - [-19.262013, 63.569834], - [-19.264169, 63.567374], - [-19.268213, 63.564314], - [-19.263361, 63.565214], - [-19.257565, 63.566654], - [-19.25406, 63.569294], - [-19.252308, 63.566954], - [-19.25379, 63.564974], - [-19.254464, 63.563414], - [-19.253386, 63.560593], - [-19.254464, 63.558733], - [-19.25379, 63.556812], - [-19.251364, 63.558853], - [-19.250016, 63.560113], - [-19.245703, 63.561554], - [-19.244625, 63.562994], - [-19.241524, 63.562874], - [-19.238829, 63.561073], - [-19.239907, 63.559333], - [-19.237885, 63.559813], - [-19.235863, 63.560293], - [-19.23465, 63.562394], - [-19.237885, 63.563594], - [-19.233167, 63.564794], - [-19.228989, 63.564914], - [-19.225754, 63.564854], - [-19.224136, 63.566294], - [-19.221171, 63.565634], - [-19.222923, 63.563774], - [-19.224002, 63.562514], - [-19.221171, 63.561974], - [-19.221441, 63.561253], - [-19.219688, 63.558793], - [-19.216858, 63.558913], - [-19.214971, 63.560773], - [-19.21241, 63.562994], - [-19.21214, 63.564494], - [-19.209849, 63.564614], - [-19.209714, 63.562214], - [-19.206883, 63.562034], - [-19.20567, 63.560473], - [-19.209444, 63.560713], - [-19.211331, 63.560773], - [-19.212949, 63.559933], - [-19.211871, 63.558733], - [-19.212275, 63.557412], - [-19.211196, 63.556512], - [-19.215105, 63.55249], - [-19.219149, 63.549908], - [-19.222654, 63.546186], - [-19.22198, 63.53916], - [-19.223732, 63.537538], - [-19.227237, 63.535075], - [-19.229393, 63.533033], - [-19.22818, 63.530329], - [-19.226293, 63.528947], - [-19.222249, 63.532432], - [-19.21861, 63.535075], - [-19.21524, 63.538619], - [-19.211196, 63.53994], - [-19.206748, 63.541982], - [-19.203783, 63.542102], - [-19.202031, 63.544204], - [-19.198122, 63.546486], - [-19.193404, 63.546966], - [-19.188821, 63.548167], - [-19.185182, 63.548828], - [-19.185856, 63.545826], - [-19.182756, 63.545345], - [-19.185317, 63.544144], - [-19.18626, 63.541862], - [-19.181543, 63.541562], - [-19.181543, 63.542463], - [-19.182216, 63.543484], - [-19.181947, 63.544144], - [-19.180195, 63.545706], - [-19.177768, 63.545045], - [-19.176286, 63.545946], - [-19.171433, 63.546186], - [-19.169411, 63.542523], - [-19.166985, 63.543364], - [-19.167929, 63.546726], - [-19.166985, 63.548227], - [-19.163076, 63.550149], - [-19.162402, 63.55279], - [-19.159032, 63.554111], - [-19.159302, 63.551169], - [-19.158224, 63.548588], - [-19.154315, 63.546486], - [-19.15081, 63.543183], - [-19.145014, 63.542583], - [-19.143801, 63.546486], - [-19.139083, 63.547507], - [-19.138275, 63.544384], - [-19.135579, 63.544204], - [-19.134659, 63.545927], - [-19.1336, 63.547342], - [-19.135188, 63.550408], - [-19.1381, 63.55312], - [-19.132806, 63.554063], - [-19.131482, 63.555713], - [-19.128305, 63.557717], - [-19.125658, 63.558071], - [-19.118511, 63.557953], - [-19.117981, 63.553473], - [-19.116393, 63.549229], - [-19.111696, 63.546053], - [-19.109087, 63.543589], - [-19.106164, 63.544054], - [-19.102198, 63.539775], - [-19.098649, 63.537357], - [-19.095726, 63.536101], - [-19.094265, 63.536613], - [-19.094787, 63.539682], - [-19.095413, 63.541915], - [-19.097918, 63.543542], - [-19.099693, 63.545263], - [-19.095935, 63.546239], - [-19.092699, 63.545495], - [-19.088107, 63.544333], - [-19.083096, 63.544658], - [-19.081218, 63.544333], - [-19.078921, 63.544751], - [-19.076416, 63.544565], - [-19.074642, 63.543868], - [-19.071824, 63.544379], - [-19.06984, 63.542845], - [-19.070571, 63.541822], - [-19.071093, 63.540054], - [-19.068797, 63.53745], - [-19.068379, 63.539031], - [-19.068588, 63.539868], - [-19.067335, 63.540566], - [-19.066083, 63.540985], - [-19.066291, 63.541822], - [-19.065352, 63.542891], - [-19.06577, 63.543356], - [-19.06577, 63.544565], - [-19.063891, 63.54517], - [-19.062847, 63.545821], - [-19.064935, 63.546146], - [-19.065665, 63.547262], - [-19.065143, 63.548564], - [-19.060655, 63.548425], - [-19.058672, 63.54875], - [-19.058881, 63.549727], - [-19.055227, 63.548797], - [-19.05314, 63.54889], - [-19.051678, 63.548099], - [-19.048234, 63.5461], - [-19.046668, 63.546286], - [-19.044059, 63.546146], - [-19.04051, 63.544612], - [-19.040197, 63.54238], - [-19.041658, 63.540938], - [-19.044885, 63.53941], - [-19.046188, 63.53743], - [-19.045892, 63.535449], - [-19.043047, 63.534181], - [-19.04281, 63.533468], - [-19.041151, 63.532306], - [-19.036824, 63.532279], - [-19.034928, 63.533019], - [-19.03232, 63.534313], - [-19.031846, 63.535581], - [-19.030661, 63.535951], - [-19.030246, 63.536875], - [-19.030365, 63.537694], - [-19.029713, 63.538644], - [-19.028587, 63.538776], - [-19.027875, 63.537456], - [-19.026216, 63.536056], - [-19.024557, 63.534841], - [-19.023065, 63.53472], - [-19.021483, 63.535828], - [-19.023291, 63.53744], - [-19.022613, 63.540563], - [-19.024874, 63.543484], - [-19.030978, 63.546808], - [-19.036856, 63.549527], - [-19.039569, 63.551944], - [-19.039795, 63.555971], - [-19.037308, 63.552447], - [-19.033465, 63.551642], - [-19.030074, 63.549527], - [-19.026683, 63.547916], - [-19.023291, 63.549124], - [-19.023518, 63.550937], - [-19.020126, 63.55003], - [-19.019674, 63.548218], - [-19.015153, 63.54711], - [-19.012666, 63.543081], - [-19.010631, 63.543988], - [-19.010631, 63.545901], - [-19.011563, 63.549138], - [-19.010857, 63.550534], - [-19.007628, 63.549341], - [-19.004527, 63.550232], - [-18.997744, 63.547211], - [-18.991866, 63.547614], - [-18.986214, 63.549527], - [-18.979206, 63.546506], - [-18.976041, 63.543585], - [-18.973102, 63.544189], - [-18.97378, 63.546002], - [-18.97785, 63.548721], - [-18.970841, 63.548621], - [-18.966998, 63.546405], - [-18.957632, 63.544415], - [-18.958407, 63.545995], - [-18.950042, 63.545693], - [-18.943033, 63.545089], - [-18.943033, 63.546096], - [-18.951398, 63.550628], - [-18.962024, 63.552138], - [-18.963154, 63.556575], - [-18.955871, 63.55586], - [-18.950285, 63.556364], - [-18.949183, 63.559192], - [-18.94916, 63.561755], - [-18.95392, 63.563567], - [-18.942634, 63.566127], - [-18.933264, 63.56679], - [-18.923681, 63.566411], - [-18.916867, 63.567359], - [-18.907924, 63.568212], - [-18.904729, 63.570297], - [-18.906007, 63.572762], - [-18.911757, 63.573615], - [-18.921552, 63.573141], - [-18.931347, 63.57333], - [-18.936458, 63.57333], - [-18.942846, 63.572477], - [-18.950512, 63.572667], - [-18.95179, 63.574088], - [-18.945615, 63.575226], - [-18.941356, 63.576268], - [-18.941143, 63.577595], - [-18.944124, 63.578353], - [-18.948383, 63.57949], - [-18.939652, 63.579585], - [-18.936884, 63.580343], - [-18.938375, 63.581195], - [-18.936032, 63.581858], - [-18.933903, 63.582995], - [-18.930709, 63.581574], - [-18.927727, 63.584037], - [-18.923043, 63.584606], - [-18.922191, 63.586216], - [-18.924746, 63.587827], - [-18.924746, 63.589911], - [-18.929218, 63.591142], - [-18.926663, 63.592562], - [-18.927514, 63.593604], - [-18.921765, 63.593699], - [-18.922125, 63.595225], - [-18.92346, 63.596595], - [-18.925613, 63.597922], - [-18.925925, 63.597965], - [-18.931254, 63.598619], - [-18.926553, 63.599176], - [-18.919032, 63.597504], - [-18.912764, 63.594438], - [-18.907592, 63.591557], - [-18.905782, 63.589141], - [-18.899265, 63.586726], - [-18.896369, 63.58286], - [-18.902161, 63.577384], - [-18.899989, 63.573195], - [-18.896007, 63.570294], - [-18.891301, 63.564976], - [-18.877182, 63.5574], - [-18.864511, 63.556917], - [-18.859442, 63.554982], - [-18.852926, 63.552725], - [-18.854012, 63.555466], - [-18.850754, 63.556594], - [-18.845685, 63.556917], - [-18.839775, 63.558443], - [-18.835486, 63.561092], - [-18.837359, 63.563204], - [-18.831204, 63.564654], - [-18.821791, 63.566105], - [-18.814189, 63.566105], - [-18.808035, 63.56965], - [-18.815275, 63.570456], - [-18.808397, 63.573034], - [-18.80007, 63.57835], - [-18.803328, 63.580444] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "11265", - "properties": { - "NAME_ENGLISH": "Western Region", - "name": "Vesturland", - "ISOCODE": "IS-4", - "density": 0, - "path": "/world/Iceland/Western Region" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-21.928772, 64.536555], - [-21.928893, 64.536519], - [-21.929011, 64.536505], - [-21.929151, 64.536496], - [-21.92929, 64.536496], - [-21.929397, 64.536477], - [-21.929491, 64.536445], - [-21.929655, 64.536413], - [-21.929666, 64.536454], - [-21.929666, 64.53651], - [-21.929619, 64.536542], - [-21.929598, 64.536565], - [-21.929515, 64.536593], - [-21.929354, 64.536611], - [-21.929244, 64.536615], - [-21.929105, 64.536602], - [-21.929011, 64.536597], - [-21.92885, 64.536593], - [-21.928772, 64.536555] - ] - ], - [ - [ - [-21.932874, 64.535532], - [-21.932874, 64.535467], - [-21.932913, 64.535425], - [-21.933013, 64.53537], - [-21.933192, 64.535351], - [-21.933313, 64.535347], - [-21.933421, 64.535361], - [-21.933514, 64.535356], - [-21.933675, 64.535324], - [-21.933814, 64.535301], - [-21.933968, 64.535301], - [-21.934072, 64.535301], - [-21.934164, 64.535316], - [-21.934018, 64.535421], - [-21.933839, 64.5355], - [-21.93356, 64.535606], - [-21.933324, 64.535642], - [-21.933142, 64.535642], - [-21.932981, 64.53562], - [-21.932913, 64.535582], - [-21.932874, 64.535532] - ] - ], - [ - [ - [-22.730287, 65.082441], - [-22.730387, 65.082424], - [-22.730639, 65.08215], - [-22.73058, 65.082115], - [-22.73064, 65.08207], - [-22.730794, 65.081998], - [-22.730686, 65.081977], - [-22.730652, 65.081947], - [-22.73075, 65.081903], - [-22.730961, 65.081923], - [-22.731536, 65.081632], - [-22.731739, 65.081649], - [-22.731777, 65.081692], - [-22.731761, 65.081716], - [-22.731712, 65.081729], - [-22.731653, 65.081909], - [-22.731606, 65.081929], - [-22.731612, 65.081963], - [-22.731531, 65.082001], - [-22.73152, 65.082067], - [-22.731479, 65.082071], - [-22.731479, 65.082114], - [-22.731187, 65.082177], - [-22.731006, 65.082251], - [-22.730905, 65.082369], - [-22.730964, 65.082419], - [-22.730885, 65.082472], - [-22.730843, 65.082469], - [-22.730808, 65.082432], - [-22.730713, 65.082447], - [-22.730678, 65.082488], - [-22.730696, 65.082502], - [-22.730638, 65.082552], - [-22.730483, 65.082579], - [-22.730425, 65.082522], - [-22.730309, 65.082491], - [-22.730287, 65.082441] - ] - ], - [ - [ - [-22.730878, 65.084111], - [-22.730734, 65.08402], - [-22.730926, 65.083912], - [-22.731015, 65.083925], - [-22.731087, 65.083896], - [-22.731045, 65.083839], - [-22.731169, 65.083737], - [-22.730928, 65.08367], - [-22.730982, 65.083598], - [-22.73139, 65.08358], - [-22.731417, 65.083602], - [-22.731695, 65.083619], - [-22.731796, 65.083576], - [-22.731853, 65.083582], - [-22.732108, 65.083506], - [-22.732234, 65.083512], - [-22.732432, 65.083583], - [-22.732481, 65.083571], - [-22.732474, 65.083622], - [-22.732355, 65.083889], - [-22.732417, 65.08395], - [-22.732395, 65.083995], - [-22.732285, 65.084005], - [-22.732226, 65.083976], - [-22.732076, 65.083956], - [-22.731998, 65.083914], - [-22.731836, 65.08393], - [-22.731621, 65.083805], - [-22.731482, 65.083808], - [-22.731383, 65.083972], - [-22.731305, 65.083989], - [-22.731033, 65.08423], - [-22.730899, 65.084199], - [-22.730848, 65.08415], - [-22.730878, 65.084111] - ] - ], - [ - [ - [-21.900601, 64.39021], - [-21.901275, 64.390041], - [-21.902399, 64.390066], - [-21.90155, 64.39035], - [-21.901238, 64.390389], - [-21.901396, 64.390715], - [-21.900188, 64.390591], - [-21.900601, 64.39021] - ] - ], - [ - [ - [-21.94448, 64.539045], - [-21.944674, 64.538944], - [-21.944992, 64.538917], - [-21.945098, 64.538842], - [-21.945262, 64.53879], - [-21.945281, 64.538746], - [-21.94541, 64.538733], - [-21.945502, 64.53876], - [-21.946202, 64.538631], - [-21.946213, 64.538561], - [-21.946398, 64.538501], - [-21.946633, 64.538488], - [-21.94678, 64.538438], - [-21.946777, 64.538521], - [-21.946742, 64.538592], - [-21.946686, 64.538644], - [-21.946622, 64.538719], - [-21.946613, 64.538768], - [-21.946553, 64.538783], - [-21.946514, 64.538827], - [-21.946431, 64.53885], - [-21.946428, 64.538895], - [-21.94636, 64.538922], - [-21.946248, 64.53897], - [-21.946112, 64.538984], - [-21.946024, 64.539055], - [-21.945836, 64.539085], - [-21.945629, 64.539122], - [-21.945414, 64.539156], - [-21.94505, 64.539236], - [-21.94478, 64.539294], - [-21.944342, 64.53931], - [-21.94448, 64.539045] - ] - ], - [ - [ - [-21.522274, 64.392038], - [-21.523145, 64.392164], - [-21.523726, 64.392603], - [-21.523532, 64.392895], - [-21.522565, 64.392874], - [-21.522129, 64.39254], - [-21.522274, 64.392038] - ] - ], - [ - [ - [-22.814602, 65.073131], - [-22.815465, 65.07296], - [-22.815684, 65.072761], - [-22.815616, 65.072533], - [-22.817664, 65.0721], - [-22.817746, 65.072106], - [-22.817301, 65.072484], - [-22.816465, 65.072833], - [-22.815534, 65.07322], - [-22.814602, 65.073131] - ] - ], - [ - [ - [-21.93908, 64.544127], - [-21.939491, 64.543942], - [-21.940049, 64.543836], - [-21.941335, 64.543725], - [-21.942042, 64.543702], - [-21.942163, 64.543776], - [-21.942063, 64.543881], - [-21.941765, 64.544012], - [-21.94099, 64.544228], - [-21.940463, 64.544361], - [-21.939959, 64.544361], - [-21.939584, 64.54428], - [-21.939039, 64.544213], - [-21.93908, 64.544127] - ] - ], - [ - [ - [-22.808534, 65.073964], - [-22.808476, 65.07309], - [-22.808834, 65.07282], - [-22.809057, 65.072735], - [-22.810074, 65.073016], - [-22.810549, 65.073053], - [-22.810617, 65.07318], - [-22.810181, 65.073396], - [-22.809231, 65.073911], - [-22.808534, 65.073964] - ] - ], - [ - [ - [-22.483362, 64.797754], - [-22.484017, 64.797443], - [-22.485103, 64.797013], - [-22.485549, 64.796949], - [-22.485817, 64.796994], - [-22.486487, 64.796664], - [-22.486993, 64.796664], - [-22.487469, 64.796765], - [-22.487276, 64.796835], - [-22.487053, 64.79681], - [-22.486576, 64.796968], - [-22.486428, 64.79707], - [-22.486085, 64.797082], - [-22.485371, 64.797329], - [-22.485103, 64.797501], - [-22.485073, 64.797653], - [-22.484642, 64.797779], - [-22.484642, 64.797925], - [-22.484284, 64.79809], - [-22.483898, 64.798166], - [-22.483704, 64.798286], - [-22.483659, 64.798122], - [-22.483421, 64.798071], - [-22.483362, 64.797754] - ] - ], - [ - [ - [-21.456166, 64.382371], - [-21.456902, 64.382106], - [-21.45817, 64.382088], - [-21.458783, 64.382371], - [-21.458579, 64.382848], - [-21.457516, 64.382972], - [-21.456493, 64.382866], - [-21.456166, 64.382371] - ] - ], - [ - [ - [-21.966981, 64.375481], - [-21.967653, 64.374708], - [-21.968184, 64.374495], - [-21.968344, 64.374228], - [-21.968776, 64.373941], - [-21.969024, 64.373738], - [-21.969854, 64.374018], - [-21.968744, 64.375248], - [-21.966981, 64.375481] - ] - ], - [ - [ - [-22.45992, 64.77694], - [-22.46111, 64.77698], - [-22.46367, 64.77603], - [-22.46487, 64.77607], - [-22.46483, 64.77633], - [-22.46382, 64.77638], - [-22.46355, 64.7768], - [-22.45983, 64.77745], - [-22.45992, 64.77694] - ] - ], - [ - [ - [-22.755706, 65.071209], - [-22.755842, 65.070934], - [-22.75599, 65.070808], - [-22.756024, 65.070639], - [-22.756101, 65.070502], - [-22.756209, 65.070379], - [-22.756443, 65.070239], - [-22.756571, 65.070032], - [-22.756816, 65.069834], - [-22.75678, 65.069717], - [-22.756904, 65.069658], - [-22.757188, 65.069574], - [-22.757358, 65.069444], - [-22.757493, 65.0694], - [-22.757903, 65.069373], - [-22.757962, 65.06946], - [-22.758171, 65.069452], - [-22.758079, 65.069533], - [-22.758151, 65.069611], - [-22.757942, 65.069713], - [-22.758184, 65.069777], - [-22.758066, 65.069851], - [-22.757848, 65.069885], - [-22.757792, 65.069962], - [-22.757792, 65.070045], - [-22.757887, 65.070123], - [-22.757704, 65.070236], - [-22.757665, 65.070392], - [-22.757358, 65.070536], - [-22.757335, 65.070696], - [-22.757152, 65.070738], - [-22.757028, 65.070868], - [-22.756871, 65.070916], - [-22.756891, 65.070976], - [-22.756826, 65.07103], - [-22.75676, 65.071038], - [-22.756688, 65.071075], - [-22.756588, 65.071077], - [-22.756543, 65.071128], - [-22.756565, 65.071166], - [-22.756541, 65.071189], - [-22.756636, 65.071216], - [-22.75664, 65.071246], - [-22.756578, 65.071325], - [-22.756364, 65.071393], - [-22.755778, 65.071277], - [-22.755706, 65.071209] - ] - ], - [ - [ - [-21.927933, 64.536085], - [-21.92796, 64.536004], - [-21.92813, 64.535923], - [-21.928299, 64.535833], - [-21.928568, 64.535797], - [-21.929005, 64.535768], - [-21.929338, 64.535746], - [-21.929654, 64.53574], - [-21.929755, 64.535752], - [-21.929816, 64.535779], - [-21.929955, 64.535803], - [-21.930105, 64.535798], - [-21.930321, 64.535737], - [-21.930568, 64.535668], - [-21.930831, 64.535594], - [-21.931084, 64.535566], - [-21.931362, 64.53557], - [-21.931521, 64.535603], - [-21.931605, 64.535626], - [-21.93167, 64.535649], - [-21.93175, 64.535654], - [-21.931985, 64.53554], - [-21.932081, 64.535503], - [-21.932136, 64.535542], - [-21.93217, 64.535577], - [-21.932292, 64.53562], - [-21.932391, 64.535631], - [-21.932483, 64.53567], - [-21.932569, 64.535784], - [-21.932632, 64.535865], - [-21.932689, 64.535941], - [-21.932694, 64.535995], - [-21.932666, 64.536056], - [-21.93257, 64.536102], - [-21.932389, 64.536126], - [-21.932199, 64.536137], - [-21.932016, 64.536125], - [-21.931785, 64.536105], - [-21.931514, 64.536103], - [-21.931284, 64.536106], - [-21.931051, 64.53615], - [-21.930764, 64.536147], - [-21.930456, 64.536155], - [-21.930346, 64.536182], - [-21.930067, 64.536214], - [-21.929707, 64.53625], - [-21.929482, 64.536294], - [-21.929129, 64.536367], - [-21.928942, 64.53635], - [-21.928648, 64.536325], - [-21.928407, 64.536264], - [-21.928211, 64.536218], - [-21.927996, 64.53615], - [-21.927933, 64.536085] - ] - ], - [ - [ - [-22.980226, 65.01132], - [-22.985891, 65.01045], - [-22.984964, 65.011161], - [-22.981685, 65.011574], - [-22.980226, 65.01132] - ] - ], - [ - [ - [-23.00745, 65.01246], - [-23.00865, 65.0125], - [-23.00931, 65.01213], - [-23.0123, 65.01234], - [-23.01227, 65.01259], - [-23.00793, 65.01324], - [-23.00745, 65.01246] - ] - ], - [ - [ - [-22.498176, 65.049592], - [-22.498863, 65.049488], - [-22.49912, 65.049325], - [-22.500258, 65.04938], - [-22.501944, 65.049111], - [-22.503058, 65.049045], - [-22.503551, 65.049045], - [-22.504764, 65.048941], - [-22.504667, 65.049185], - [-22.504335, 65.049271], - [-22.503466, 65.049438], - [-22.502951, 65.049611], - [-22.502275, 65.049629], - [-22.50177, 65.049701], - [-22.501524, 65.049837], - [-22.498477, 65.04995], - [-22.497833, 65.0499], - [-22.498176, 65.049592] - ] - ], - [ - [ - [-21.413565, 64.378952], - [-21.413327, 64.378497], - [-21.413666, 64.378349], - [-21.413455, 64.377868], - [-21.414381, 64.377802], - [-21.415353, 64.378044], - [-21.416186, 64.378434], - [-21.416395, 64.378536], - [-21.41645, 64.378735], - [-21.41679, 64.378826], - [-21.417838, 64.378854], - [-21.416484, 64.378997], - [-21.416358, 64.379406], - [-21.415934, 64.379529], - [-21.414865, 64.378969], - [-21.413837, 64.379144], - [-21.413565, 64.378952] - ] - ], - [ - [ - [-22.851678, 65.006768], - [-22.851764, 65.006473], - [-22.852625, 65.00622], - [-22.853379, 65.006068], - [-22.854168, 65.006111], - [-22.855713, 65.006401], - [-22.855825, 65.006854], - [-22.855304, 65.007155], - [-22.854168, 65.007198], - [-22.853188, 65.007254], - [-22.852359, 65.007164], - [-22.85188, 65.006993], - [-22.851678, 65.006768] - ] - ], - [ - [ - [-22.45638, 64.78017], - [-22.45646, 64.77966], - [-22.45705, 64.77968], - [-22.45714, 64.77917], - [-22.46088, 64.77838], - [-22.46146, 64.7784], - [-22.46196, 64.77906], - [-22.45638, 64.78017] - ] - ], - [ - [ - [-22.255931, 64.529317], - [-22.256351, 64.529298], - [-22.256905, 64.528907], - [-22.257414, 64.529259], - [-22.258189, 64.529136], - [-22.2585, 64.528964], - [-22.258544, 64.528755], - [-22.258012, 64.528545], - [-22.258101, 64.528174], - [-22.258898, 64.528631], - [-22.259363, 64.528602], - [-22.25943, 64.528897], - [-22.259873, 64.529469], - [-22.259873, 64.529859], - [-22.259186, 64.529945], - [-22.2583, 64.529831], - [-22.257835, 64.529917], - [-22.25768, 64.530307], - [-22.257879, 64.530526], - [-22.258057, 64.531279], - [-22.257392, 64.531364], - [-22.25706, 64.530888], - [-22.256927, 64.530593], - [-22.25706, 64.53044], - [-22.256728, 64.530069], - [-22.256307, 64.529907], - [-22.256595, 64.529659], - [-22.255931, 64.529317] - ] - ], - [ - [ - [-22.89832, 65.0089], - [-22.897633, 65.008465], - [-22.900208, 65.00745], - [-22.905015, 65.00687], - [-22.90553, 65.007087], - [-22.89832, 65.0089] - ] - ], - [ - [ - [-22.93763, 65.018037], - [-22.942609, 65.017747], - [-22.94793, 65.017239], - [-22.94793, 65.017747], - [-22.942952, 65.018254], - [-22.937287, 65.018472], - [-22.93763, 65.018037] - ] - ], - [ - [ - [-21.938556, 64.542093], - [-21.938751, 64.541857], - [-21.939283, 64.541826], - [-21.939831, 64.541714], - [-21.940488, 64.541525], - [-21.941133, 64.541333], - [-21.94264, 64.541098], - [-21.943256, 64.541101], - [-21.943686, 64.541254], - [-21.943665, 64.541633], - [-21.943548, 64.541893], - [-21.942878, 64.542148], - [-21.942211, 64.542378], - [-21.941795, 64.54249], - [-21.940884, 64.54265], - [-21.940024, 64.542845], - [-21.939522, 64.542862], - [-21.939563, 64.542757], - [-21.939446, 64.542642], - [-21.939211, 64.542504], - [-21.938746, 64.542444], - [-21.938587, 64.542365], - [-21.938556, 64.542093] - ] - ], - [ - [ - [-22.805655, 65.056387], - [-22.806504, 65.055729], - [-22.807217, 65.055648], - [-22.807628, 65.055186], - [-22.810231, 65.055174], - [-22.812067, 65.05537], - [-22.811217, 65.05589], - [-22.809738, 65.056237], - [-22.808258, 65.056457], - [-22.807664, 65.056324], - [-22.806751, 65.056676], - [-22.805709, 65.056538], - [-22.805655, 65.056387] - ] - ], - [ - [ - [-21.877903, 64.555114], - [-21.877603, 64.554142], - [-21.878144, 64.553368], - [-21.879084, 64.553737], - [-21.881547, 64.55409], - [-21.881707, 64.554271], - [-21.881166, 64.554985], - [-21.880246, 64.555415], - [-21.878584, 64.555415], - [-21.877903, 64.555114] - ] - ], - [ - [ - [-21.935967, 64.545855], - [-21.936021, 64.545714], - [-21.936237, 64.545606], - [-21.93644, 64.545523], - [-21.936667, 64.545592], - [-21.936859, 64.545594], - [-21.936969, 64.545431], - [-21.937138, 64.545187], - [-21.937258, 64.54503], - [-21.93759, 64.544942], - [-21.938104, 64.544903], - [-21.938586, 64.544912], - [-21.938899, 64.545021], - [-21.939135, 64.545044], - [-21.939401, 64.545137], - [-21.939596, 64.545198], - [-21.940067, 64.545155], - [-21.940303, 64.544971], - [-21.940595, 64.544776], - [-21.941003, 64.544686], - [-21.941912, 64.544652], - [-21.942536, 64.544639], - [-21.943157, 64.54456], - [-21.943749, 64.544437], - [-21.944083, 64.544464], - [-21.944314, 64.544565], - [-21.94408, 64.544661], - [-21.943715, 64.544734], - [-21.943383, 64.544939], - [-21.942922, 64.545137], - [-21.942451, 64.545247], - [-21.941945, 64.545331], - [-21.94084, 64.545639], - [-21.940388, 64.545759], - [-21.93919, 64.545883], - [-21.938532, 64.54581], - [-21.938254, 64.545792], - [-21.938167, 64.54586], - [-21.938075, 64.545986], - [-21.93748, 64.546124], - [-21.936763, 64.546221], - [-21.936337, 64.546155], - [-21.936076, 64.546036], - [-21.935967, 64.545855] - ] - ], - [ - [ - [-22.733297, 65.058227], - [-22.733229, 65.058212], - [-22.7333, 65.058191], - [-22.733317, 65.058136], - [-22.733381, 65.058078], - [-22.733583, 65.057986], - [-22.733693, 65.057945], - [-22.733803, 65.057905], - [-22.734015, 65.057863], - [-22.734089, 65.057836], - [-22.734226, 65.057801], - [-22.734362, 65.05777], - [-22.73445, 65.05773], - [-22.734529, 65.057742], - [-22.734756, 65.05771], - [-22.734961, 65.057676], - [-22.734998, 65.057637], - [-22.735064, 65.057649], - [-22.735288, 65.057601], - [-22.735517, 65.057531], - [-22.735572, 65.057501], - [-22.735581, 65.057479], - [-22.735772, 65.057421], - [-22.735801, 65.057386], - [-22.735935, 65.057348], - [-22.735926, 65.057324], - [-22.735997, 65.057316], - [-22.735997, 65.057251], - [-22.735953, 65.057231], - [-22.736001, 65.057194], - [-22.736252, 65.057164], - [-22.736335, 65.057177], - [-22.736542, 65.057146], - [-22.736718, 65.057042], - [-22.736846, 65.05701], - [-22.736943, 65.05701], - [-22.73707, 65.056995], - [-22.737158, 65.057023], - [-22.737264, 65.057025], - [-22.737559, 65.056973], - [-22.737739, 65.056947], - [-22.737902, 65.056925], - [-22.738051, 65.056938], - [-22.738197, 65.056934], - [-22.738377, 65.05691], - [-22.738549, 65.056867], - [-22.73872, 65.056788], - [-22.738958, 65.056711], - [-22.739178, 65.056687], - [-22.73942, 65.056678], - [-22.739565, 65.056715], - [-22.739785, 65.056736], - [-22.740009, 65.056723], - [-22.740155, 65.056739], - [-22.740128, 65.056767], - [-22.739895, 65.056776], - [-22.740062, 65.056839], - [-22.740383, 65.056877], - [-22.740713, 65.056875], - [-22.741316, 65.056856], - [-22.741368, 65.056883], - [-22.741387, 65.056921], - [-22.741354, 65.056952], - [-22.741295, 65.05697], - [-22.741209, 65.056978], - [-22.741104, 65.057006], - [-22.740994, 65.057031], - [-22.740917, 65.057046], - [-22.740833, 65.057072], - [-22.740833, 65.057089], - [-22.74082, 65.057118], - [-22.740791, 65.057148], - [-22.740736, 65.057164], - [-22.740679, 65.057172], - [-22.740622, 65.057175], - [-22.740573, 65.057202], - [-22.740488, 65.057243], - [-22.74043, 65.057264], - [-22.74045, 65.057285], - [-22.74045, 65.05731], - [-22.740316, 65.057328], - [-22.740287, 65.057357], - [-22.74017, 65.057363], - [-22.740177, 65.057385], - [-22.740098, 65.057443], - [-22.740016, 65.057466], - [-22.739937, 65.057496], - [-22.739904, 65.05753], - [-22.739924, 65.057567], - [-22.739893, 65.057591], - [-22.739869, 65.057619], - [-22.739792, 65.057635], - [-22.739697, 65.05765], - [-22.739638, 65.057635], - [-22.739576, 65.057596], - [-22.739521, 65.057588], - [-22.739435, 65.057572], - [-22.739332, 65.057562], - [-22.739268, 65.057563], - [-22.739196, 65.057584], - [-22.739134, 65.057574], - [-22.73905, 65.057557], - [-22.738991, 65.057576], - [-22.738995, 65.0576], - [-22.73894, 65.057631], - [-22.738885, 65.057663], - [-22.738797, 65.057699], - [-22.738804, 65.057738], - [-22.738694, 65.057757], - [-22.738456, 65.057888], - [-22.738437, 65.057919], - [-22.738478, 65.057941], - [-22.738465, 65.057971], - [-22.738426, 65.057994], - [-22.738355, 65.057984], - [-22.738291, 65.057993], - [-22.73819, 65.058005], - [-22.738122, 65.058021], - [-22.738065, 65.058045], - [-22.738005, 65.058066], - [-22.737983, 65.058097], - [-22.737975, 65.058134], - [-22.737887, 65.058145], - [-22.737801, 65.058146], - [-22.737673, 65.058201], - [-22.737631, 65.058202], - [-22.73755, 65.058265], - [-22.737495, 65.058241], - [-22.737429, 65.058238], - [-22.737372, 65.05825], - [-22.737326, 65.058238], - [-22.737213, 65.0582], - [-22.737159, 65.058198], - [-22.737059, 65.058156], - [-22.737048, 65.058136], - [-22.737011, 65.058087], - [-22.736936, 65.058073], - [-22.736804, 65.058088], - [-22.736798, 65.058034], - [-22.736725, 65.058045], - [-22.736663, 65.058041], - [-22.736615, 65.058057], - [-22.736558, 65.05807], - [-22.736518, 65.058098], - [-22.736534, 65.058125], - [-22.736474, 65.058138], - [-22.73641, 65.058114], - [-22.736305, 65.058079], - [-22.736168, 65.058055], - [-22.736105, 65.058076], - [-22.736023, 65.058105], - [-22.735948, 65.058131], - [-22.735867, 65.058166], - [-22.735742, 65.058153], - [-22.735665, 65.05816], - [-22.735579, 65.058176], - [-22.735539, 65.058198], - [-22.735473, 65.058237], - [-22.735269, 65.058259], - [-22.735165, 65.05823], - [-22.735084, 65.058224], - [-22.734969, 65.058235], - [-22.734677, 65.058292], - [-22.734661, 65.058325], - [-22.734518, 65.058345], - [-22.734424, 65.058315], - [-22.734351, 65.058293], - [-22.734202, 65.058292], - [-22.734098, 65.058329], - [-22.734111, 65.058355], - [-22.733997, 65.058365], - [-22.733894, 65.058321], - [-22.733768, 65.05837], - [-22.733656, 65.05837], - [-22.733557, 65.058368], - [-22.733445, 65.058342], - [-22.733399, 65.058323], - [-22.733317, 65.058334], - [-22.733284, 65.058315], - [-22.733297, 65.058227] - ] - ], - [ - [ - [-22.729002, 65.136009], - [-22.7278, 65.135359], - [-22.72986, 65.135287], - [-22.733294, 65.13572], - [-22.735182, 65.136442], - [-22.730719, 65.137019], - [-22.729002, 65.136009] - ] - ], - [ - [ - [-22.513161, 64.788958], - [-22.513176, 64.788692], - [-22.513563, 64.788533], - [-22.513444, 64.788349], - [-22.513577, 64.78821], - [-22.51392, 64.788172], - [-22.514188, 64.787855], - [-22.51389, 64.787709], - [-22.513697, 64.787462], - [-22.514069, 64.787234], - [-22.514679, 64.787158], - [-22.515467, 64.787107], - [-22.516122, 64.787018], - [-22.516688, 64.786803], - [-22.517611, 64.786853], - [-22.518206, 64.787151], - [-22.518563, 64.78712], - [-22.519099, 64.787266], - [-22.518995, 64.787361], - [-22.518533, 64.787411], - [-22.518295, 64.787513], - [-22.517908, 64.787456], - [-22.517685, 64.7875], - [-22.51764, 64.787646], - [-22.517908, 64.787728], - [-22.518236, 64.7879], - [-22.517968, 64.788083], - [-22.517938, 64.788356], - [-22.517105, 64.788172], - [-22.516569, 64.788178], - [-22.516167, 64.78833], - [-22.516167, 64.788438], - [-22.515735, 64.788508], - [-22.515914, 64.78859], - [-22.515557, 64.788704], - [-22.515081, 64.788667], - [-22.514813, 64.788698], - [-22.514783, 64.788863], - [-22.513935, 64.789148], - [-22.513161, 64.788958] - ] - ], - [ - [ - [-22.218482, 64.491255], - [-22.218903, 64.491054], - [-22.21902, 64.490837], - [-22.218997, 64.490464], - [-22.219166, 64.490046], - [-22.219353, 64.490182], - [-22.219693, 64.490331], - [-22.219827, 64.490412], - [-22.220032, 64.490444], - [-22.220219, 64.490414], - [-22.220412, 64.49022], - [-22.220582, 64.490014], - [-22.220851, 64.489963], - [-22.221342, 64.490278], - [-22.221295, 64.490348], - [-22.221389, 64.490568], - [-22.221395, 64.490716], - [-22.221447, 64.490797], - [-22.221313, 64.491019], - [-22.221342, 64.491225], - [-22.221326, 64.491383], - [-22.221395, 64.491495], - [-22.221383, 64.491699], - [-22.221272, 64.491762], - [-22.221231, 64.491888], - [-22.221289, 64.491976], - [-22.22126, 64.492142], - [-22.2215, 64.492328], - [-22.221599, 64.492542], - [-22.221775, 64.492686], - [-22.222062, 64.492769], - [-22.221757, 64.492799], - [-22.221611, 64.492842], - [-22.221482, 64.493074], - [-22.221436, 64.493215], - [-22.221219, 64.493336], - [-22.220915, 64.49329], - [-22.220512, 64.493149], - [-22.220359, 64.49317], - [-22.220254, 64.493265], - [-22.220079, 64.493333], - [-22.219857, 64.493278], - [-22.219611, 64.493177], - [-22.219447, 64.49261], - [-22.21947, 64.49249], - [-22.219617, 64.492394], - [-22.219587, 64.492275], - [-22.219389, 64.492197], - [-22.219277, 64.492061], - [-22.219155, 64.492011], - [-22.21895, 64.492056], - [-22.218886, 64.492147], - [-22.218693, 64.492129], - [-22.218605, 64.491951], - [-22.2185, 64.491535], - [-22.218482, 64.491255] - ] - ], - [ - [ - [-22.553924, 65.048583], - [-22.554197, 65.048411], - [-22.554586, 65.048261], - [-22.555149, 65.048132], - [-22.555613, 65.048111], - [-22.556126, 65.048031], - [-22.55678, 65.047888], - [-22.557683, 65.047793], - [-22.558585, 65.047835], - [-22.559223, 65.047905], - [-22.559943, 65.047922], - [-22.560614, 65.047901], - [-22.56126, 65.047915], - [-22.561666, 65.04808], - [-22.561583, 65.048272], - [-22.561161, 65.048384], - [-22.560672, 65.048499], - [-22.560415, 65.048625], - [-22.559894, 65.048761], - [-22.559182, 65.048939], - [-22.558337, 65.049037], - [-22.557575, 65.049096], - [-22.556797, 65.049141], - [-22.555994, 65.049152], - [-22.555066, 65.0491], - [-22.55447, 65.049037], - [-22.55399, 65.048981], - [-22.553841, 65.048764], - [-22.553924, 65.048583] - ] - ], - [ - [ - [-22.033958, 64.30169], - [-22.03409, 64.301321], - [-22.034749, 64.301111], - [-22.035987, 64.300636], - [-22.036909, 64.300505], - [-22.038438, 64.300425], - [-22.040862, 64.299819], - [-22.041389, 64.299371], - [-22.042496, 64.299345], - [-22.044235, 64.298844], - [-22.045078, 64.298765], - [-22.044156, 64.29924], - [-22.042469, 64.299688], - [-22.041573, 64.300057], - [-22.040071, 64.300452], - [-22.038675, 64.300847], - [-22.037937, 64.301295], - [-22.037226, 64.30169], - [-22.036092, 64.302033], - [-22.034301, 64.302059], - [-22.033958, 64.30169] - ] - ], - [ - [ - [-21.925085, 64.533799], - [-21.925214, 64.533747], - [-21.925334, 64.53371], - [-21.925401, 64.53364], - [-21.925393, 64.533581], - [-21.925313, 64.533527], - [-21.925217, 64.533451], - [-21.92508, 64.533371], - [-21.925095, 64.533306], - [-21.925274, 64.533274], - [-21.925512, 64.533231], - [-21.9257, 64.533164], - [-21.925883, 64.533093], - [-21.926181, 64.533043], - [-21.926497, 64.532997], - [-21.927457, 64.532942], - [-21.92825, 64.53293], - [-21.928696, 64.532949], - [-21.929073, 64.533016], - [-21.929247, 64.533015], - [-21.929504, 64.533072], - [-21.929738, 64.533192], - [-21.92988, 64.533277], - [-21.930121, 64.533419], - [-21.930209, 64.533505], - [-21.930359, 64.5336], - [-21.930395, 64.533674], - [-21.930584, 64.533696], - [-21.930787, 64.533725], - [-21.930785, 64.533811], - [-21.930678, 64.533858], - [-21.929229, 64.534491], - [-21.929466, 64.534595], - [-21.929314, 64.534597], - [-21.929175, 64.53458], - [-21.929011, 64.534517], - [-21.928842, 64.534509], - [-21.928754, 64.534539], - [-21.928621, 64.534565], - [-21.928329, 64.53457], - [-21.927977, 64.534582], - [-21.92692, 64.534747], - [-21.926575, 64.534751], - [-21.926281, 64.53474], - [-21.926052, 64.534714], - [-21.92587, 64.534717], - [-21.925661, 64.534592], - [-21.925432, 64.534505], - [-21.925323, 64.53435], - [-21.925213, 64.534194], - [-21.925217, 64.534102], - [-21.925106, 64.534011], - [-21.925051, 64.53389], - [-21.925085, 64.533799] - ] - ], - [ - [ - [-22.735362, 65.084689], - [-22.735362, 65.084519], - [-22.735494, 65.084477], - [-22.735871, 65.084477], - [-22.736077, 65.084384], - [-22.736047, 65.084262], - [-22.736212, 65.084042], - [-22.736301, 65.084008], - [-22.736427, 65.083847], - [-22.736393, 65.08382], - [-22.736561, 65.08375], - [-22.73675, 65.083704], - [-22.736838, 65.083642], - [-22.737064, 65.083576], - [-22.73718, 65.08351], - [-22.737834, 65.083329], - [-22.737968, 65.083264], - [-22.738073, 65.083247], - [-22.73811, 65.083199], - [-22.73827, 65.083137], - [-22.738433, 65.083164], - [-22.73846, 65.083231], - [-22.738623, 65.08319], - [-22.738785, 65.083258], - [-22.73908, 65.083333], - [-22.739409, 65.08333], - [-22.739542, 65.083433], - [-22.73936, 65.083473], - [-22.739464, 65.083482], - [-22.73947, 65.083536], - [-22.739558, 65.08355], - [-22.73955, 65.083599], - [-22.739443, 65.08368], - [-22.739542, 65.083691], - [-22.739592, 65.083749], - [-22.739571, 65.083778], - [-22.739413, 65.083762], - [-22.739373, 65.083807], - [-22.739501, 65.083808], - [-22.739525, 65.083844], - [-22.739375, 65.08386], - [-22.739368, 65.083934], - [-22.739502, 65.083925], - [-22.739531, 65.083993], - [-22.739445, 65.084052], - [-22.739384, 65.084136], - [-22.73923, 65.084162], - [-22.739354, 65.084328], - [-22.739316, 65.084378], - [-22.73937, 65.084395], - [-22.739342, 65.08443], - [-22.739512, 65.0845], - [-22.739727, 65.084497], - [-22.739861, 65.084458], - [-22.740128, 65.084361], - [-22.740425, 65.08431], - [-22.740617, 65.084315], - [-22.740657, 65.084464], - [-22.740587, 65.084489], - [-22.740567, 65.084795], - [-22.740404, 65.085382], - [-22.740218, 65.085408], - [-22.740043, 65.085326], - [-22.739753, 65.084986], - [-22.739724, 65.084899], - [-22.739564, 65.084912], - [-22.73952, 65.08483], - [-22.739096, 65.08468], - [-22.739059, 65.084793], - [-22.73897, 65.084812], - [-22.738783, 65.085033], - [-22.738706, 65.085005], - [-22.738576, 65.084802], - [-22.738211, 65.08479], - [-22.7381, 65.084734], - [-22.738024, 65.08477], - [-22.737767, 65.084931], - [-22.73769, 65.085161], - [-22.737492, 65.085376], - [-22.737621, 65.085401], - [-22.737443, 65.085606], - [-22.73737, 65.08561], - [-22.737388, 65.085843], - [-22.737506, 65.085877], - [-22.737456, 65.085917], - [-22.737048, 65.08583], - [-22.737053, 65.085795], - [-22.736807, 65.085794], - [-22.736882, 65.085938], - [-22.736907, 65.086133], - [-22.736845, 65.086431], - [-22.736455, 65.08643], - [-22.736307, 65.086323], - [-22.736273, 65.086173], - [-22.736282, 65.086054], - [-22.736194, 65.085875], - [-22.736268, 65.085786], - [-22.736194, 65.085745], - [-22.736237, 65.085675], - [-22.736144, 65.085661], - [-22.736088, 65.085509], - [-22.736081, 65.085484], - [-22.73614, 65.085453], - [-22.73605, 65.085418], - [-22.736057, 65.085369], - [-22.735921, 65.085382], - [-22.735786, 65.085329], - [-22.735815, 65.085267], - [-22.735924, 65.08522], - [-22.735868, 65.085214], - [-22.735759, 65.085213], - [-22.735613, 65.085082], - [-22.735552, 65.085066], - [-22.735507, 65.08499], - [-22.735418, 65.084948], - [-22.735431, 65.084833], - [-22.735356, 65.084784], - [-22.735362, 65.084689] - ] - ], - [ - [ - [-22.909462, 65.019029], - [-22.909367, 65.018526], - [-22.909718, 65.018261], - [-22.910547, 65.017893], - [-22.911185, 65.017686], - [-22.911312, 65.017466], - [-22.912067, 65.017102], - [-22.913555, 65.016604], - [-22.914215, 65.016451], - [-22.91464, 65.016303], - [-22.915129, 65.016299], - [-22.916001, 65.016442], - [-22.917287, 65.016474], - [-22.917819, 65.016546], - [-22.917889, 65.016732], - [-22.914619, 65.017516], - [-22.913811, 65.017601], - [-22.912739, 65.018037], - [-22.911674, 65.018485], - [-22.910972, 65.018876], - [-22.910207, 65.019091], - [-22.909462, 65.019029] - ] - ], - [ - [ - [-22.23288, 64.51505], - [-22.23406, 64.51509], - [-22.2342, 64.51432], - [-22.23479, 64.51434], - [-22.23438, 64.5133], - [-22.23656, 64.51329], - [-22.23747, 64.51263], - [-22.23806, 64.51265], - [-22.23775, 64.51444], - [-22.23656, 64.5144], - [-22.2357, 64.51591], - [-22.23389, 64.51611], - [-22.23288, 64.51505] - ] - ], - [ - [ - [-23.300951, 64.983843], - [-23.302511, 64.983493], - [-23.304321, 64.983533], - [-23.305401, 64.984463], - [-23.306019, 64.984899], - [-23.306431, 64.985763], - [-23.307031, 64.985783], - [-23.307, 64.986033], - [-23.303381, 64.985943], - [-23.30288, 64.985163], - [-23.302161, 64.985023], - [-23.301558, 64.984456], - [-23.301191, 64.984353], - [-23.300951, 64.983843] - ] - ], - [ - [ - [-22.903766, 64.999612], - [-22.904255, 64.99941], - [-22.904106, 64.999046], - [-22.904499, 64.998885], - [-22.90485, 64.999118], - [-22.90518, 64.999145], - [-22.906232, 64.99915], - [-22.906743, 64.999541], - [-22.907912, 64.999684], - [-22.908582, 64.999913], - [-22.908614, 65.000497], - [-22.908816, 65.001225], - [-22.908933, 65.00163], - [-22.908741, 65.001769], - [-22.908348, 65.001756], - [-22.906806, 65.001558], - [-22.904, 65.000457], - [-22.903968, 65.000147], - [-22.904149, 64.999855], - [-22.903989, 64.999752], - [-22.90366, 64.99972], - [-22.903766, 64.999612] - ] - ], - [ - [ - [-22.920293, 65.012612], - [-22.920597, 65.01271], - [-22.922303, 65.013729], - [-22.922641, 65.013818], - [-22.92295, 65.013748], - [-22.923498, 65.013888], - [-22.923867, 65.014028], - [-22.924213, 65.013799], - [-22.924596, 65.013885], - [-22.925055, 65.013599], - [-22.925724, 65.013513], - [-22.927174, 65.013621], - [-22.92761, 65.013726], - [-22.927385, 65.013901], - [-22.926536, 65.014339], - [-22.925002, 65.015311], - [-22.924348, 65.015386], - [-22.923686, 65.015533], - [-22.923348, 65.015669], - [-22.923619, 65.015739], - [-22.923709, 65.015847], - [-22.922641, 65.016225], - [-22.921781, 65.016447], - [-22.921612, 65.016263], - [-22.921815, 65.015971], - [-22.922529, 65.015828], - [-22.922762, 65.015523], - [-22.922727, 65.015311], - [-22.922641, 65.015142], - [-22.922942, 65.01491], - [-22.9221, 65.014663], - [-22.921303, 65.014885], - [-22.920943, 65.014777], - [-22.92075, 65.014611], - [-22.921063, 65.014412], - [-22.921258, 65.01358], - [-22.920304, 65.012856], - [-22.920293, 65.012612] - ] - ], - [ - [ - [-23.01179, 65.09479], - [-23.01288, 65.09354], - [-23.01596, 65.09337], - [-23.01501, 65.09565], - [-23.01561, 65.09566], - [-23.01542, 65.09694], - [-23.01421, 65.09691], - [-23.01372, 65.09613], - [-23.01191, 65.09608], - [-23.01179, 65.09479] - ] - ], - [ - [ - [-22.731664, 65.08211], - [-22.731648, 65.081992], - [-22.73182, 65.081931], - [-22.731779, 65.081874], - [-22.731938, 65.081835], - [-22.731938, 65.081767], - [-22.731957, 65.081717], - [-22.731906, 65.081654], - [-22.732113, 65.08165], - [-22.732031, 65.081526], - [-22.73229, 65.081302], - [-22.732344, 65.08119], - [-22.732112, 65.081042], - [-22.732113, 65.080993], - [-22.732219, 65.080928], - [-22.732203, 65.080877], - [-22.732338, 65.080799], - [-22.732433, 65.080804], - [-22.732795, 65.080677], - [-22.732931, 65.080622], - [-22.733514, 65.080594], - [-22.733512, 65.080565], - [-22.733557, 65.080557], - [-22.733635, 65.080578], - [-22.733838, 65.080561], - [-22.734027, 65.080522], - [-22.734228, 65.080494], - [-22.734338, 65.080515], - [-22.734399, 65.080479], - [-22.734302, 65.080435], - [-22.734361, 65.080385], - [-22.734406, 65.08031], - [-22.734498, 65.080307], - [-22.73452, 65.080206], - [-22.734658, 65.080115], - [-22.73453, 65.080074], - [-22.734605, 65.079974], - [-22.734771, 65.079924], - [-22.734934, 65.079889], - [-22.735084, 65.079898], - [-22.735165, 65.079853], - [-22.735299, 65.079837], - [-22.735365, 65.079885], - [-22.735541, 65.079772], - [-22.735609, 65.079762], - [-22.735676, 65.079783], - [-22.735777, 65.079752], - [-22.73592, 65.079754], - [-22.735971, 65.079717], - [-22.736087, 65.07973], - [-22.736171, 65.079754], - [-22.736296, 65.079734], - [-22.736456, 65.079715], - [-22.736561, 65.079723], - [-22.736699, 65.079773], - [-22.736811, 65.079857], - [-22.736924, 65.079881], - [-22.736956, 65.079907], - [-22.73708, 65.079929], - [-22.737157, 65.079966], - [-22.737094, 65.080033], - [-22.73713, 65.080184], - [-22.736546, 65.080375], - [-22.736399, 65.080376], - [-22.736337, 65.080317], - [-22.736368, 65.080266], - [-22.736459, 65.080235], - [-22.736556, 65.080234], - [-22.736559, 65.080157], - [-22.736502, 65.080154], - [-22.736392, 65.080079], - [-22.736411, 65.080044], - [-22.73635, 65.080055], - [-22.736274, 65.08002], - [-22.736181, 65.080055], - [-22.736204, 65.080071], - [-22.736148, 65.080113], - [-22.736089, 65.080135], - [-22.736162, 65.080196], - [-22.736092, 65.080237], - [-22.736202, 65.08032], - [-22.736161, 65.080328], - [-22.736079, 65.080291], - [-22.73611, 65.08042], - [-22.736079, 65.080496], - [-22.736033, 65.08051], - [-22.735985, 65.080608], - [-22.736124, 65.08062], - [-22.736141, 65.080699], - [-22.736033, 65.080714], - [-22.735942, 65.080671], - [-22.735892, 65.080685], - [-22.735779, 65.080641], - [-22.735763, 65.080672], - [-22.735697, 65.080662], - [-22.735673, 65.080721], - [-22.735582, 65.080749], - [-22.735593, 65.080847], - [-22.735534, 65.080916], - [-22.735466, 65.080936], - [-22.735524, 65.080994], - [-22.735425, 65.08106], - [-22.735552, 65.081091], - [-22.735772, 65.081017], - [-22.735948, 65.080998], - [-22.736152, 65.080877], - [-22.736366, 65.080864], - [-22.736489, 65.080887], - [-22.736555, 65.080928], - [-22.736536, 65.081], - [-22.736644, 65.081047], - [-22.736637, 65.08114], - [-22.736701, 65.081172], - [-22.736664, 65.081194], - [-22.736543, 65.08119], - [-22.73654, 65.081231], - [-22.736498, 65.081237], - [-22.736553, 65.081316], - [-22.736545, 65.08135], - [-22.736492, 65.08139], - [-22.737018, 65.081602], - [-22.737108, 65.081661], - [-22.737167, 65.08174], - [-22.737149, 65.081798], - [-22.737085, 65.08183], - [-22.737053, 65.081972], - [-22.737007, 65.082012], - [-22.736886, 65.081984], - [-22.73676, 65.081985], - [-22.736617, 65.081953], - [-22.736481, 65.081946], - [-22.736364, 65.081923], - [-22.73634, 65.081911], - [-22.736323, 65.081882], - [-22.736183, 65.081885], - [-22.73607, 65.081794], - [-22.736039, 65.081793], - [-22.736006, 65.081768], - [-22.735945, 65.081775], - [-22.736011, 65.081844], - [-22.735961, 65.081854], - [-22.736046, 65.081921], - [-22.736054, 65.082], - [-22.735964, 65.082013], - [-22.735836, 65.082131], - [-22.73577, 65.082068], - [-22.735713, 65.082087], - [-22.735662, 65.082193], - [-22.73554, 65.082195], - [-22.735523, 65.08222], - [-22.735326, 65.082274], - [-22.735258, 65.082334], - [-22.735274, 65.082372], - [-22.735206, 65.082445], - [-22.734862, 65.082649], - [-22.734855, 65.082728], - [-22.734781, 65.082806], - [-22.734499, 65.082826], - [-22.734388, 65.082871], - [-22.734366, 65.082895], - [-22.73426, 65.082924], - [-22.734064, 65.083093], - [-22.733943, 65.08313], - [-22.733494, 65.082965], - [-22.732937, 65.082825], - [-22.732354, 65.082579], - [-22.731969, 65.082317], - [-22.731664, 65.08211] - ] - ], - [ - [ - [-22.6957, 65.132472], - [-22.69406, 65.131504], - [-22.696215, 65.130595], - [-22.698275, 65.130378], - [-22.700163, 65.131605], - [-22.700678, 65.132905], - [-22.698103, 65.13276], - [-22.6957, 65.132472] - ] - ], - [ - [ - [-22.264272, 64.528974], - [-22.264632, 64.528341], - [-22.265071, 64.528408], - [-22.265509, 64.528132], - [-22.266543, 64.527869], - [-22.266605, 64.527371], - [-22.266887, 64.527303], - [-22.266966, 64.527741], - [-22.267451, 64.527916], - [-22.26789, 64.527822], - [-22.267561, 64.527425], - [-22.267843, 64.527041], - [-22.268375, 64.527007], - [-22.268375, 64.527236], - [-22.268798, 64.527667], - [-22.269283, 64.527835], - [-22.269737, 64.527324], - [-22.270129, 64.527997], - [-22.269972, 64.528408], - [-22.270286, 64.528765], - [-22.269863, 64.529081], - [-22.26955, 64.528987], - [-22.269221, 64.52894], - [-22.268845, 64.529223], - [-22.269189, 64.529519], - [-22.268704, 64.529701], - [-22.267905, 64.529728], - [-22.268109, 64.530226], - [-22.267702, 64.530388], - [-22.26778, 64.530778], - [-22.266465, 64.530792], - [-22.266324, 64.530624], - [-22.265995, 64.530556], - [-22.26576, 64.529957], - [-22.265697, 64.529499], - [-22.265384, 64.529223], - [-22.264272, 64.528974] - ] - ], - [ - [ - [-22.802282, 65.071094], - [-22.801913, 65.070489], - [-22.802921, 65.070253], - [-22.804607, 65.069787], - [-22.808734, 65.069518], - [-22.809703, 65.069599], - [-22.80856, 65.069999], - [-22.807242, 65.070767], - [-22.807281, 65.071911], - [-22.804103, 65.072441], - [-22.802243, 65.071649], - [-22.802282, 65.071094] - ] - ], - [ - [ - [-21.946117, 64.540972], - [-21.946411, 64.540705], - [-21.946655, 64.540539], - [-21.947244, 64.540479], - [-21.947685, 64.540382], - [-21.948285, 64.540152], - [-21.948493, 64.539995], - [-21.948285, 64.539931], - [-21.948167, 64.539837], - [-21.948523, 64.539685], - [-21.949146, 64.539461], - [-21.949135, 64.539368], - [-21.949071, 64.539272], - [-21.948803, 64.53922], - [-21.948353, 64.53928], - [-21.947988, 64.539318], - [-21.94749, 64.53935], - [-21.947298, 64.539286], - [-21.947268, 64.53912], - [-21.947707, 64.538791], - [-21.948394, 64.538677], - [-21.949036, 64.538501], - [-21.949952, 64.538117], - [-21.950485, 64.537919], - [-21.951246, 64.537808], - [-21.951932, 64.537804], - [-21.952374, 64.537983], - [-21.952416, 64.53821], - [-21.952128, 64.53838], - [-21.95154, 64.538648], - [-21.951356, 64.538823], - [-21.951139, 64.53899], - [-21.951239, 64.539175], - [-21.951449, 64.539336], - [-21.951966, 64.539454], - [-21.952929, 64.539516], - [-21.953115, 64.539658], - [-21.952845, 64.539945], - [-21.952162, 64.54048], - [-21.951559, 64.540775], - [-21.951131, 64.540678], - [-21.950537, 64.540825], - [-21.949046, 64.541102], - [-21.947699, 64.54146], - [-21.947223, 64.541531], - [-21.946883, 64.541559], - [-21.946711, 64.541502], - [-21.946785, 64.541361], - [-21.94675, 64.54124], - [-21.946462, 64.541272], - [-21.946194, 64.54126], - [-21.946109, 64.541111], - [-21.946117, 64.540972] - ] - ], - [ - [ - [-22.844191, 65.065212], - [-22.844369, 65.064831], - [-22.845287, 65.064756], - [-22.845739, 65.064802], - [-22.847, 65.0649], - [-22.848, 65.06475], - [-22.847644, 65.064432], - [-22.848918, 65.064051], - [-22.849617, 65.06419], - [-22.850726, 65.064999], - [-22.85137, 65.065345], - [-22.851658, 65.065969], - [-22.850192, 65.066477], - [-22.848123, 65.066316], - [-22.847438, 65.066593], - [-22.847493, 65.06687], - [-22.846356, 65.066876], - [-22.844972, 65.066431], - [-22.84452, 65.06646], - [-22.844602, 65.065547], - [-22.844191, 65.065212] - ] - ], - [ - [ - [-22.803793, 65.058311], - [-22.80549, 65.05789], - [-22.805819, 65.057705], - [-22.809107, 65.05715], - [-22.809381, 65.056665], - [-22.810669, 65.056434], - [-22.81119, 65.056653], - [-22.811848, 65.056272], - [-22.812971, 65.056168], - [-22.815876, 65.056018], - [-22.81752, 65.056099], - [-22.817767, 65.056295], - [-22.817054, 65.056769], - [-22.814725, 65.057532], - [-22.810943, 65.057832], - [-22.803793, 65.058311] - ] - ], - [ - [ - [-22.887505, 65.011221], - [-22.886132, 65.010786], - [-22.887849, 65.009626], - [-22.89111, 65.008973], - [-22.896088, 65.009263], - [-22.89729, 65.010496], - [-22.894887, 65.011439], - [-22.892827, 65.010641], - [-22.890595, 65.010568], - [-22.887505, 65.011221] - ] - ], - [ - [ - [-22.58671, 65.11359], - [-22.58623, 65.11282], - [-22.58683, 65.11283], - [-22.58718, 65.11079], - [-22.59398, 65.11011], - [-22.5964, 65.11017], - [-22.59694, 65.11057], - [-22.59452, 65.1105], - [-22.59496, 65.11154], - [-22.59379, 65.11125], - [-22.59241, 65.11223], - [-22.58865, 65.11289], - [-22.58857, 65.1134], - [-22.58671, 65.11359] - ] - ], - [ - [ - [-22.4007, 65.14823], - [-22.40113, 65.14747], - [-22.40457, 65.14695], - [-22.40518, 65.14695], - [-22.40732, 65.14868], - [-22.4061, 65.14865], - [-22.40606, 65.1489], - [-22.40667, 65.14892], - [-22.40653, 65.14969], - [-22.40532, 65.14965], - [-22.40458, 65.1504], - [-22.40089, 65.15054], - [-22.39953, 65.14793], - [-22.4007, 65.14823] - ] - ], - [ - [ - [-22.7886, 65.059646], - [-22.790244, 65.059519], - [-22.793094, 65.059277], - [-22.793615, 65.058988], - [-22.796821, 65.058167], - [-22.796986, 65.057832], - [-22.797534, 65.057231], - [-22.798164, 65.057185], - [-22.798767, 65.057497], - [-22.799561, 65.057566], - [-22.80137, 65.057266], - [-22.80137, 65.057127], - [-22.802357, 65.057127], - [-22.802274, 65.057485], - [-22.803617, 65.057578], - [-22.803617, 65.057751], - [-22.802, 65.058098], - [-22.801891, 65.058479], - [-22.798657, 65.059485], - [-22.797424, 65.059369], - [-22.79715, 65.059646], - [-22.794848, 65.059808], - [-22.793889, 65.060166], - [-22.79208, 65.060224], - [-22.791724, 65.060594], - [-22.790984, 65.060421], - [-22.789806, 65.060525], - [-22.789285, 65.060467], - [-22.788518, 65.060062], - [-22.7886, 65.059646] - ] - ], - [ - [ - [-22.55101, 65.13432], - [-22.55114, 65.13354], - [-22.5531, 65.13272], - [-22.55557, 65.13252], - [-22.55944, 65.13303], - [-22.55927, 65.13405], - [-22.55759, 65.13503], - [-22.55577, 65.13497], - [-22.55567, 65.13548], - [-22.55144, 65.13536], - [-22.5504, 65.1343], - [-22.55101, 65.13432] - ] - ], - [ - [ - [-22.41114, 65.14419], - [-22.41041, 65.14314], - [-22.41262, 65.1427], - [-22.41288, 65.14117], - [-22.41409, 65.14121], - [-22.41418, 65.1407], - [-22.41595, 65.14101], - [-22.41736, 65.1399], - [-22.41857, 65.13993], - [-22.41907, 65.14059], - [-22.41721, 65.14079], - [-22.4173, 65.14147], - [-22.41889, 65.14161], - [-22.41833, 65.14253], - [-22.41991, 65.14279], - [-22.41819, 65.14569], - [-22.41698, 65.14565], - [-22.41655, 65.14462], - [-22.41715, 65.14463], - [-22.41728, 65.14387], - [-22.41668, 65.14385], - [-22.41789, 65.14269], - [-22.41569, 65.14254], - [-22.41551, 65.14356], - [-22.41114, 65.14419] - ] - ], - [ - [ - [-22.32512, 65.30042], - [-22.32629, 65.30071], - [-22.32638, 65.3002], - [-22.32999, 65.30057], - [-22.32907, 65.30233], - [-22.33205, 65.30281], - [-22.33577, 65.30254], - [-22.33564, 65.30331], - [-22.3366, 65.30308], - [-22.33638, 65.30256], - [-22.33742, 65.3025], - [-22.33769, 65.30209], - [-22.33891, 65.30213], - [-22.33882, 65.30264], - [-22.33779, 65.30269], - [-22.33746, 65.30336], - [-22.32871, 65.30437], - [-22.32819, 65.30384], - [-22.3288, 65.30386], - [-22.32884, 65.30361], - [-22.32701, 65.30355], - [-22.32654, 65.30277], - [-22.32528, 65.30299], - [-22.32572, 65.30223], - [-22.32512, 65.30042] - ] - ], - [ - [ - [-22.877034, 65.008248], - [-22.882184, 65.006362], - [-22.885617, 65.00658], - [-22.891282, 65.005782], - [-22.890767, 65.006435], - [-22.885789, 65.007522], - [-22.882012, 65.009408], - [-22.882355, 65.010496], - [-22.877549, 65.009191], - [-22.877034, 65.008248] - ] - ], - [ - [ - [-22.210213, 64.490427], - [-22.211685, 64.490117], - [-22.211779, 64.488418], - [-22.212218, 64.488067], - [-22.212468, 64.487865], - [-22.212468, 64.487514], - [-22.213001, 64.487311], - [-22.212781, 64.486907], - [-22.213157, 64.486772], - [-22.213596, 64.486043], - [-22.214379, 64.485801], - [-22.214849, 64.485908], - [-22.215193, 64.486273], - [-22.215193, 64.487163], - [-22.215506, 64.487379], - [-22.215538, 64.488229], - [-22.216133, 64.488849], - [-22.215882, 64.491803], - [-22.215757, 64.492586], - [-22.214817, 64.492599], - [-22.215068, 64.492235], - [-22.214159, 64.492262], - [-22.214034, 64.492707], - [-22.213063, 64.492586], - [-22.213345, 64.493165], - [-22.214034, 64.493732], - [-22.214159, 64.494271], - [-22.213533, 64.493745], - [-22.212593, 64.493395], - [-22.211779, 64.492329], - [-22.211403, 64.492221], - [-22.210965, 64.492599], - [-22.210401, 64.491763], - [-22.210965, 64.491453], - [-22.211372, 64.491453], - [-22.212061, 64.4909], - [-22.211435, 64.490374], - [-22.210839, 64.490549], - [-22.210871, 64.490846], - [-22.210495, 64.491007], - [-22.210213, 64.490427] - ] - ], - [ - [ - [-22.47235, 65.11736], - [-22.47244, 65.11685], - [-22.47365, 65.11688], - [-22.47373, 65.11637], - [-22.47937, 65.11539], - [-22.48305, 65.11524], - [-22.48354, 65.11471], - [-22.48317, 65.11461], - [-22.48387, 65.11399], - [-22.48508, 65.11402], - [-22.48562, 65.11443], - [-22.4838, 65.11437], - [-22.48497, 65.11466], - [-22.48498, 65.11586], - [-22.48596, 65.11597], - [-22.48592, 65.11623], - [-22.48341, 65.11667], - [-22.48264, 65.11768], - [-22.48019, 65.11772], - [-22.47637, 65.11876], - [-22.47594, 65.11772], - [-22.47533, 65.1177], - [-22.47459, 65.11845], - [-22.47338, 65.11841], - [-22.47291, 65.11763], - [-22.47351, 65.11765], - [-22.47356, 65.11739], - [-22.47235, 65.11736] - ] - ], - [ - [ - [-22.5838, 65.13478], - [-22.58328, 65.13425], - [-22.58637, 65.13396], - [-22.58773, 65.1331], - [-22.58929, 65.13289], - [-22.58967, 65.13239], - [-22.59147, 65.13257], - [-22.5934, 65.13199], - [-22.594, 65.132], - [-22.59353, 65.13233], - [-22.59417, 65.13278], - [-22.59305, 65.13403], - [-22.59184, 65.13399], - [-22.59167, 65.13501], - [-22.59046, 65.13497], - [-22.59037, 65.13548], - [-22.59379, 65.13507], - [-22.59422, 65.13432], - [-22.59719, 65.13479], - [-22.59769, 65.13543], - [-22.59466, 65.13535], - [-22.59513, 65.13614], - [-22.59206, 65.1363], - [-22.5925, 65.13734], - [-22.59079, 65.13665], - [-22.58903, 65.13634], - [-22.588138, 65.136304], - [-22.588308, 65.135989], - [-22.58791, 65.13567], - [-22.587149, 65.135476], - [-22.58739, 65.13514], - [-22.58557, 65.13509], - [-22.58566, 65.13458], - [-22.5838, 65.13478] - ] - ], - [ - [ - [-22.47349, 65.09997], - [-22.47537, 65.09964], - [-22.47837, 65.09986], - [-22.47846, 65.09935], - [-22.48524, 65.09878], - [-22.48796, 65.09707], - [-22.48952, 65.09686], - [-22.4899, 65.09636], - [-22.49172, 65.09641], - [-22.49154, 65.09743], - [-22.49034, 65.0974], - [-22.48956, 65.0984], - [-22.48835, 65.09837], - [-22.48876, 65.09953], - [-22.4906, 65.09946], - [-22.49051, 65.09997], - [-22.48317, 65.10026], - [-22.48386, 65.09977], - [-22.48087, 65.09942], - [-22.48001, 65.10092], - [-22.48234, 65.10152], - [-22.48239, 65.10126], - [-22.48361, 65.1013], - [-22.48282, 65.1023], - [-22.47979, 65.10221], - [-22.47966, 65.10178], - [-22.47742, 65.10188], - [-22.47759, 65.10086], - [-22.4734, 65.10048], - [-22.47349, 65.09997] - ] - ], - [ - [ - [-22.814052, 65.051282], - [-22.813987, 65.050844], - [-22.81522, 65.049887], - [-22.81723, 65.04871], - [-22.819112, 65.047916], - [-22.820928, 65.047478], - [-22.823977, 65.047369], - [-22.826377, 65.047752], - [-22.826766, 65.047998], - [-22.826312, 65.048546], - [-22.825534, 65.04923], - [-22.822225, 65.05016], - [-22.817944, 65.051966], - [-22.815025, 65.051966], - [-22.814052, 65.051282] - ] - ], - [ - [ - [-22.735602, 65.138361], - [-22.737147, 65.137279], - [-22.738787, 65.136947], - [-22.742641, 65.137062], - [-22.744683, 65.1359], - [-22.746683, 65.135576], - [-22.746855, 65.134421], - [-22.749258, 65.134637], - [-22.747541, 65.13673], - [-22.744795, 65.138896], - [-22.743422, 65.139617], - [-22.741362, 65.140122], - [-22.739645, 65.14005], - [-22.736727, 65.139762], - [-22.735602, 65.138361] - ] - ], - [ - [ - [-23.00789, 65.0176], - [-23.0074, 65.01682], - [-23.008, 65.01683], - [-23.01059, 65.01574], - [-23.0118, 65.01578], - [-23.0123, 65.01499], - [-23.01008, 65.01509], - [-23.01013, 65.01484], - [-23.01257, 65.01465], - [-23.01372, 65.01506], - [-23.016195, 65.014666], - [-23.01623, 65.01449], - [-23.01446, 65.01419], - [-23.01397, 65.01341], - [-23.01644, 65.01309], - [-23.0191, 65.01354], - [-23.01928, 65.01432], - [-23.02109, 65.01436], - [-23.02211, 65.01567], - [-23.02089, 65.01564], - [-23.02083, 65.01615], - [-23.01728, 65.01554], - [-23.01762, 65.01736], - [-23.01456, 65.01752], - [-23.01448, 65.01803], - [-23.00789, 65.0176] - ] - ], - [ - [ - [-22.285098, 64.544196], - [-22.284788, 64.543568], - [-22.286471, 64.542597], - [-22.286737, 64.542007], - [-22.286294, 64.541531], - [-22.286338, 64.540903], - [-22.28873, 64.540274], - [-22.289128, 64.539874], - [-22.288375, 64.538979], - [-22.288154, 64.538161], - [-22.287534, 64.538103], - [-22.287445, 64.53757], - [-22.288641, 64.537799], - [-22.28904, 64.538256], - [-22.29059, 64.538161], - [-22.290767, 64.537742], - [-22.291267, 64.537808], - [-22.291166, 64.536942], - [-22.291742, 64.536732], - [-22.291565, 64.538123], - [-22.292273, 64.539018], - [-22.292583, 64.53957], - [-22.292893, 64.539855], - [-22.294178, 64.539874], - [-22.294754, 64.540255], - [-22.29564, 64.540408], - [-22.296171, 64.540845], - [-22.294754, 64.540884], - [-22.294621, 64.541321], - [-22.294178, 64.541398], - [-22.294975, 64.542369], - [-22.293026, 64.542407], - [-22.290103, 64.543111], - [-22.288996, 64.543435], - [-22.287977, 64.544101], - [-22.287047, 64.545662], - [-22.286382, 64.54433], - [-22.285098, 64.544196] - ] - ], - [ - [ - [-22.41922, 65.10626], - [-22.42137, 65.10607], - [-22.42124, 65.10683], - [-22.42244, 65.10687], - [-22.42254, 65.10636], - [-22.42373, 65.10652], - [-22.42514, 65.10541], - [-22.42393, 65.10538], - [-22.42401, 65.10487], - [-22.4228, 65.10483], - [-22.42238, 65.10379], - [-22.42362, 65.10369], - [-22.42538, 65.10401], - [-22.42697, 65.10534], - [-22.42816, 65.10551], - [-22.42807, 65.10602], - [-22.43047, 65.10622], - [-22.43321, 65.10797], - [-22.42707, 65.10829], - [-22.42757, 65.10895], - [-22.42876, 65.10911], - [-22.42867, 65.10962], - [-22.43048, 65.10968], - [-22.42916, 65.11028], - [-22.42266, 65.10918], - [-22.42228, 65.10789], - [-22.42107, 65.10785], - [-22.42059, 65.10707], - [-22.41999, 65.10704], - [-22.41986, 65.10781], - [-22.41925, 65.1078], - [-22.41922, 65.10626] - ] - ], - [ - [ - [-22.58648, 65.1077], - [-22.58769, 65.10773], - [-22.58916, 65.10611], - [-22.59034, 65.1064], - [-22.59883, 65.10653], - [-22.59828, 65.10745], - [-22.60166, 65.10776], - [-22.60471, 65.10772], - [-22.60463, 65.10823], - [-22.60342, 65.1082], - [-22.60333, 65.10871], - [-22.60039, 65.10811], - [-22.60026, 65.10887], - [-22.60208, 65.10893], - [-22.60076, 65.10953], - [-22.58864, 65.1093], - [-22.58691, 65.10874], - [-22.58648, 65.1077] - ] - ], - [ - [ - [-22.42493, 65.1031], - [-22.42633, 65.10199], - [-22.42875, 65.10206], - [-22.43283, 65.10309], - [-22.43236, 65.1023], - [-22.43392, 65.1021], - [-22.43353, 65.1008], - [-22.4345, 65.10045], - [-22.43629, 65.10063], - [-22.43763, 65.0999], - [-22.437, 65.10125], - [-22.43655, 65.10269], - [-22.43428, 65.10296], - [-22.434, 65.10338], - [-22.43765, 65.10336], - [-22.43879, 65.10378], - [-22.43776, 65.10272], - [-22.43957, 65.10278], - [-22.44063, 65.10371], - [-22.44324, 65.10443], - [-22.44346, 65.10495], - [-22.44099, 65.10513], - [-22.44026, 65.10589], - [-22.43723, 65.10578], - [-22.43728, 65.10553], - [-22.43789, 65.10555], - [-22.43792, 65.10529], - [-22.43309, 65.10514], - [-22.43317, 65.10463], - [-22.43074, 65.10456], - [-22.43028, 65.10378], - [-22.42493, 65.1031] - ] - ], - [ - [ - [-22.476309, 64.775476], - [-22.477555, 64.773833], - [-22.482675, 64.771823], - [-22.484785, 64.771439], - [-22.486671, 64.771806], - [-22.4868, 64.773203], - [-22.486568, 64.773561], - [-22.483119, 64.775006], - [-22.482655, 64.775315], - [-22.48309, 64.775834], - [-22.484104, 64.776278], - [-22.483409, 64.777143], - [-22.483641, 64.777723], - [-22.484046, 64.777884], - [-22.484017, 64.778267], - [-22.482453, 64.778366], - [-22.479554, 64.777501], - [-22.477729, 64.776513], - [-22.476396, 64.776834], - [-22.476309, 64.775476] - ] - ], - [ - [ - [-22.28207, 64.5092], - [-22.28217, 64.50869], - [-22.28335, 64.50873], - [-22.28353, 64.50771], - [-22.28411, 64.50773], - [-22.28416, 64.50748], - [-22.28239, 64.50742], - [-22.28454, 64.50531], - [-22.28792, 64.5052], - [-22.291, 64.50231], - [-22.2922, 64.50222], - [-22.29339, 64.50226], - [-22.29388, 64.50291], - [-22.29269, 64.50288], - [-22.29303, 64.50776], - [-22.28207, 64.5092] - ] - ], - [ - [ - [-22.802358, 65.143994], - [-22.80247, 65.143923], - [-22.802433, 65.143715], - [-22.80261, 65.143327], - [-22.804506, 65.143016], - [-22.805328, 65.142431], - [-22.805599, 65.141666], - [-22.807448, 65.141257], - [-22.807448, 65.141842], - [-22.806953, 65.142211], - [-22.807411, 65.142259], - [-22.807551, 65.142773], - [-22.807336, 65.14326], - [-22.806701, 65.143601], - [-22.807355, 65.143915], - [-22.807327, 65.144139], - [-22.808009, 65.144461], - [-22.808485, 65.144516], - [-22.808401, 65.144697], - [-22.808718, 65.144838], - [-22.811156, 65.143951], - [-22.811558, 65.143845], - [-22.811436, 65.143735], - [-22.811773, 65.14357], - [-22.812072, 65.14355], - [-22.812128, 65.143429], - [-22.811941, 65.143146], - [-22.81209, 65.142895], - [-22.812604, 65.142757], - [-22.813865, 65.142961], - [-22.81549, 65.141933], - [-22.815938, 65.142086], - [-22.817311, 65.141501], - [-22.817433, 65.141595], - [-22.817722, 65.141532], - [-22.818273, 65.141642], - [-22.817704, 65.142592], - [-22.816667, 65.143232], - [-22.815499, 65.144233], - [-22.81393, 65.145286], - [-22.812072, 65.145988], - [-22.809671, 65.146463], - [-22.808233, 65.146589], - [-22.807243, 65.146396], - [-22.806346, 65.146381], - [-22.805253, 65.146616], - [-22.801859, 65.145674], - [-22.802825, 65.145015], - [-22.802545, 65.144932], - [-22.802535, 65.144591], - [-22.802918, 65.144406], - [-22.802974, 65.144265], - [-22.802806, 65.144233], - [-22.802451, 65.144379], - [-22.802274, 65.144281], - [-22.802358, 65.143994] - ] - ], - [ - [ - [-22.6317, 65.13951], - [-22.63456, 65.13883], - [-22.63494, 65.13833], - [-22.63852, 65.13882], - [-22.63923, 65.1382], - [-22.6423, 65.13803], - [-22.64216, 65.13878], - [-22.64373, 65.13858], - [-22.64385, 65.13782], - [-22.6448, 65.13759], - [-22.64472, 65.1381], - [-22.64593, 65.13814], - [-22.64585, 65.13865], - [-22.64766, 65.1387], - [-22.64752, 65.13959], - [-22.6456, 65.14018], - [-22.64546, 65.13975], - [-22.64321, 65.13985], - [-22.64361, 65.14114], - [-22.64175, 65.14134], - [-22.64167, 65.14184], - [-22.63791, 65.14251], - [-22.63794, 65.14226], - [-22.63856, 65.14229], - [-22.63868, 65.14151], - [-22.63496, 65.14192], - [-22.63478, 65.14174], - [-22.63133, 65.14181], - [-22.63404, 65.14009], - [-22.63223, 65.14004], - [-22.6317, 65.13951] - ] - ], - [ - [ - [-22.26774, 64.513642], - [-22.267842, 64.513568], - [-22.268013, 64.513453], - [-22.268341, 64.513266], - [-22.268534, 64.513106], - [-22.268829, 64.512947], - [-22.269322, 64.512795], - [-22.269856, 64.51261], - [-22.270156, 64.512481], - [-22.270465, 64.512391], - [-22.270939, 64.512264], - [-22.271232, 64.512178], - [-22.271468, 64.512123], - [-22.271709, 64.512102], - [-22.271937, 64.512075], - [-22.272203, 64.512033], - [-22.272536, 64.511971], - [-22.272766, 64.51186], - [-22.272895, 64.511774], - [-22.273104, 64.511548], - [-22.273179, 64.511419], - [-22.273211, 64.511278], - [-22.273319, 64.51117], - [-22.273437, 64.51113], - [-22.273517, 64.511077], - [-22.27356, 64.511003], - [-22.273614, 64.510955], - [-22.273799, 64.510823], - [-22.273904, 64.51074], - [-22.274067, 64.510696], - [-22.274233, 64.510689], - [-22.274609, 64.510713], - [-22.27787, 64.511121], - [-22.278474, 64.5112], - [-22.278632, 64.511227], - [-22.278849, 64.511322], - [-22.279018, 64.511461], - [-22.279107, 64.511627], - [-22.279198, 64.511779], - [-22.279348, 64.511913], - [-22.279501, 64.511989], - [-22.279445, 64.512051], - [-22.279388, 64.512072], - [-22.279244, 64.512111], - [-22.279066, 64.512192], - [-22.278898, 64.51231], - [-22.27882, 64.512469], - [-22.27883, 64.512587], - [-22.278836, 64.512742], - [-22.278745, 64.512855], - [-22.278646, 64.512959], - [-22.278587, 64.51309], - [-22.278538, 64.513268], - [-22.278458, 64.513397], - [-22.278426, 64.51364], - [-22.278426, 64.513986], - [-22.278447, 64.51436], - [-22.278492, 64.514992], - [-22.278492, 64.515325], - [-22.278479, 64.51544], - [-22.278367, 64.515638], - [-22.278214, 64.515955], - [-22.278082, 64.516264], - [-22.277763, 64.516504], - [-22.277151, 64.516977], - [-22.276682, 64.517393], - [-22.276409, 64.517785], - [-22.276006, 64.518371], - [-22.275717, 64.518872], - [-22.275615, 64.519142], - [-22.275406, 64.519823], - [-22.275384, 64.520208], - [-22.275373, 64.520462], - [-22.275357, 64.52075], - [-22.275368, 64.520903], - [-22.275422, 64.521274], - [-22.27551, 64.521403], - [-22.275698, 64.521579], - [-22.275985, 64.521789], - [-22.276103, 64.5219], - [-22.276073, 64.521987], - [-22.276055, 64.522112], - [-22.27596, 64.522193], - [-22.275797, 64.522292], - [-22.275454, 64.522433], - [-22.275148, 64.522509], - [-22.274885, 64.522622], - [-22.274692, 64.522712], - [-22.274472, 64.522786], - [-22.274461, 64.522853], - [-22.274778, 64.522906], - [-22.274861, 64.522947], - [-22.274891, 64.523023], - [-22.274982, 64.5231], - [-22.275027, 64.523157], - [-22.275011, 64.52325], - [-22.274979, 64.52327], - [-22.274898, 64.523291], - [-22.27477, 64.523291], - [-22.274646, 64.52328], - [-22.27456, 64.52324], - [-22.274458, 64.523196], - [-22.274397, 64.523155], - [-22.274399, 64.523102], - [-22.274378, 64.523053], - [-22.274268, 64.522989], - [-22.274241, 64.522899], - [-22.274236, 64.52283], - [-22.274199, 64.522788], - [-22.274134, 64.522751], - [-22.274081, 64.522707], - [-22.274032, 64.522643], - [-22.273791, 64.522534], - [-22.273582, 64.522363], - [-22.273431, 64.52231], - [-22.273228, 64.522227], - [-22.273174, 64.522151], - [-22.27326, 64.522105], - [-22.273389, 64.522068], - [-22.273625, 64.52198], - [-22.27385, 64.521844], - [-22.274043, 64.521687], - [-22.274172, 64.521549], - [-22.274327, 64.521385], - [-22.274445, 64.5212], - [-22.274451, 64.52106], - [-22.274392, 64.520923], - [-22.274284, 64.520796], - [-22.274204, 64.520711], - [-22.274188, 64.520635], - [-22.274182, 64.520513], - [-22.274199, 64.520252], - [-22.2743, 64.519936], - [-22.274338, 64.519747], - [-22.274349, 64.519474], - [-22.274435, 64.519142], - [-22.274522, 64.518809], - [-22.275363, 64.517633], - [-22.275513, 64.517524], - [-22.275684, 64.517399], - [-22.275776, 64.517277], - [-22.275937, 64.517062], - [-22.276049, 64.516936], - [-22.276221, 64.516797], - [-22.276291, 64.516735], - [-22.276393, 64.516675], - [-22.276409, 64.516589], - [-22.276382, 64.516398], - [-22.276355, 64.516209], - [-22.276334, 64.516003], - [-22.276323, 64.515846], - [-22.276269, 64.515731], - [-22.276269, 64.515645], - [-22.276269, 64.515578], - [-22.276248, 64.515495], - [-22.276221, 64.515421], - [-22.27621, 64.515343], - [-22.276183, 64.515244], - [-22.276146, 64.515126], - [-22.276049, 64.514976], - [-22.27584, 64.514734], - [-22.275695, 64.514567], - [-22.27555, 64.514424], - [-22.275529, 64.514369], - [-22.275497, 64.514314], - [-22.275459, 64.51426], - [-22.275389, 64.514212], - [-22.275293, 64.514175], - [-22.275127, 64.51414], - [-22.27474, 64.514041], - [-22.27481, 64.513884], - [-22.274826, 64.513753], - [-22.274794, 64.513642], - [-22.274751, 64.513572], - [-22.274837, 64.513582], - [-22.274912, 64.513609], - [-22.275035, 64.513619], - [-22.275148, 64.513619], - [-22.275212, 64.513607], - [-22.275352, 64.513582], - [-22.275454, 64.513552], - [-22.275593, 64.513522], - [-22.275749, 64.513476], - [-22.275872, 64.513397], - [-22.275904, 64.513337], - [-22.275915, 64.513247], - [-22.275926, 64.513189], - [-22.27591, 64.513159], - [-22.275894, 64.513141], - [-22.275894, 64.513102], - [-22.276065, 64.512982], - [-22.276151, 64.51291], - [-22.276216, 64.512829], - [-22.27628, 64.512741], - [-22.27628, 64.512691], - [-22.27628, 64.512596], - [-22.27628, 64.512522], - [-22.276237, 64.512608], - [-22.276237, 64.512684], - [-22.276221, 64.512714], - [-22.276221, 64.51276], - [-22.276199, 64.512788], - [-22.276135, 64.512813], - [-22.276092, 64.512813], - [-22.276012, 64.512806], - [-22.275942, 64.512781], - [-22.275899, 64.512758], - [-22.275883, 64.512728], - [-22.275867, 64.512693], - [-22.275867, 64.512668], - [-22.275888, 64.512631], - [-22.275926, 64.512612], - [-22.276001, 64.512592], - [-22.276076, 64.512559], - [-22.276119, 64.512529], - [-22.276167, 64.512483], - [-22.276167, 64.51243], - [-22.276162, 64.512381], - [-22.276162, 64.512333], - [-22.276092, 64.5124], - [-22.276087, 64.512453], - [-22.276055, 64.512497], - [-22.275996, 64.512518], - [-22.275888, 64.512564], - [-22.275695, 64.512668], - [-22.275588, 64.512753], - [-22.275529, 64.512836], - [-22.275561, 64.512915], - [-22.275561, 64.512984], - [-22.275518, 64.513019], - [-22.275448, 64.513104], - [-22.2754, 64.513169], - [-22.275368, 64.513217], - [-22.275368, 64.513284], - [-22.275384, 64.51333], - [-22.275336, 64.51333], - [-22.275282, 64.513344], - [-22.2751, 64.513413], - [-22.274987, 64.513441], - [-22.274939, 64.513416], - [-22.274816, 64.513326], - [-22.274746, 64.513279], - [-22.274612, 64.513222], - [-22.274461, 64.513164], - [-22.274204, 64.513111], - [-22.274032, 64.513097], - [-22.273866, 64.513102], - [-22.273748, 64.513129], - [-22.273657, 64.513201], - [-22.273587, 64.513256], - [-22.273544, 64.513312], - [-22.273437, 64.513395], - [-22.273378, 64.513524], - [-22.27331, 64.513579], - [-22.273203, 64.513633], - [-22.273074, 64.513674], - [-22.272903, 64.51373], - [-22.272683, 64.513843], - [-22.272605, 64.513891], - [-22.272578, 64.51393], - [-22.272559, 64.514011], - [-22.27257, 64.514101], - [-22.272565, 64.514157], - [-22.272514, 64.514219], - [-22.272399, 64.514256], - [-22.27223, 64.514318], - [-22.272117, 64.514434], - [-22.272123, 64.5145], - [-22.27216, 64.514547], - [-22.272144, 64.514577], - [-22.272114, 64.5146], - [-22.272031, 64.514611], - [-22.27186, 64.514637], - [-22.271726, 64.514678], - [-22.271656, 64.514893], - [-22.271677, 64.514958], - [-22.271667, 64.515018], - [-22.271669, 64.51511], - [-22.271731, 64.515202], - [-22.271873, 64.515325], - [-22.272149, 64.515539], - [-22.272302, 64.515574], - [-22.272452, 64.515578], - [-22.272509, 64.515595], - [-22.272536, 64.515622], - [-22.272498, 64.515648], - [-22.272425, 64.515666], - [-22.272291, 64.515666], - [-22.27212, 64.515659], - [-22.271994, 64.515613], - [-22.271669, 64.515468], - [-22.271473, 64.515417], - [-22.270878, 64.515276], - [-22.270256, 64.515163], - [-22.269719, 64.515036], - [-22.269424, 64.514914], - [-22.26921, 64.514752], - [-22.269, 64.514602], - [-22.268829, 64.514505], - [-22.268684, 64.514482], - [-22.268518, 64.51447], - [-22.268389, 64.514477], - [-22.268228, 64.51448], - [-22.268094, 64.514475], - [-22.267954, 64.514424], - [-22.267858, 64.514353], - [-22.267815, 64.514293], - [-22.267804, 64.51424], - [-22.267842, 64.514159], - [-22.267858, 64.514092], - [-22.267842, 64.514004], - [-22.267804, 64.513907], - [-22.267761, 64.513815], - [-22.267734, 64.513725], - [-22.26774, 64.513642] - ] - ], - [ - [ - [-22.700163, 65.125685], - [-22.698275, 65.124963], - [-22.701021, 65.124097], - [-22.703939, 65.124313], - [-22.704454, 65.123447], - [-22.703768, 65.122869], - [-22.706343, 65.122291], - [-22.710463, 65.122291], - [-22.710978, 65.121714], - [-22.712523, 65.12258], - [-22.714926, 65.122725], - [-22.716986, 65.123302], - [-22.718187, 65.124313], - [-22.717501, 65.125324], - [-22.713381, 65.124963], - [-22.712866, 65.123808], - [-22.709776, 65.123736], - [-22.708574, 65.125324], - [-22.705999, 65.126263], - [-22.703939, 65.126263], - [-22.700163, 65.125685] - ] - ], - [ - [ - [-22.42857, 65.11372], - [-22.4287, 65.11295], - [-22.43643, 65.11284], - [-22.438, 65.11196], - [-22.43618, 65.1119], - [-22.43566, 65.11137], - [-22.4412, 65.11103], - [-22.44128, 65.11052], - [-22.44863, 65.11023], - [-22.44859, 65.11048], - [-22.44474, 65.11165], - [-22.44595, 65.11169], - [-22.44582, 65.11245], - [-22.44768, 65.11225], - [-22.44776, 65.11174], - [-22.45018, 65.11181], - [-22.4501, 65.11232], - [-22.44353, 65.11341], - [-22.44145, 65.11309], - [-22.44132, 65.11385], - [-22.43627, 65.11485], - [-22.43082, 65.11481], - [-22.43034, 65.11404], - [-22.43151, 65.11432], - [-22.43155, 65.11407], - [-22.43216, 65.11408], - [-22.43221, 65.11383], - [-22.42857, 65.11372] - ] - ], - [ - [ - [-22.57011, 65.12925], - [-22.57193, 65.1293], - [-22.5721, 65.12828], - [-22.57575, 65.12826], - [-22.57647, 65.12764], - [-22.57768, 65.12768], - [-22.57728, 65.12639], - [-22.5796, 65.1271], - [-22.58455, 65.1266], - [-22.58503, 65.12738], - [-22.58321, 65.12733], - [-22.58248, 65.12808], - [-22.58127, 65.12804], - [-22.58322, 65.13092], - [-22.58136, 65.13112], - [-22.58176, 65.13241], - [-22.58055, 65.13239], - [-22.58042, 65.13314], - [-22.57921, 65.1331], - [-22.57929, 65.1326], - [-22.57562, 65.13274], - [-22.57553, 65.13326], - [-22.57431, 65.13322], - [-22.57441, 65.13271], - [-22.57319, 65.13268], - [-22.57324, 65.13242], - [-22.57384, 65.13243], - [-22.57549, 65.13171], - [-22.57476, 65.13067], - [-22.57656, 65.13072], - [-22.57734, 65.12972], - [-22.57249, 65.12958], - [-22.57176, 65.13032], - [-22.5693, 65.13051], - [-22.57011, 65.12925] - ] - ], - [ - [ - [-22.5181, 65.14897], - [-22.51819, 65.14846], - [-22.52083, 65.14726], - [-22.51901, 65.1472], - [-22.52037, 65.14635], - [-22.52137, 65.14642], - [-22.52116, 65.14522], - [-22.52273, 65.14501], - [-22.52509, 65.14367], - [-22.52693, 65.1436], - [-22.52803, 65.14427], - [-22.5255, 65.14483], - [-22.52373, 65.14632], - [-22.52457, 65.14673], - [-22.52642, 65.14666], - [-22.52633, 65.14716], - [-22.53354, 65.14764], - [-22.53286, 65.14813], - [-22.53407, 65.14816], - [-22.53403, 65.14842], - [-22.52966, 65.14906], - [-22.52957, 65.14957], - [-22.52778, 65.14938], - [-22.52581, 65.15022], - [-22.5246, 65.15019], - [-22.52451, 65.1507], - [-22.52087, 65.15059], - [-22.52035, 65.14887], - [-22.5181, 65.14897] - ] - ], - [ - [ - [-22.504636, 64.782838], - [-22.505292, 64.781581], - [-22.508345, 64.78007], - [-22.510353, 64.779555], - [-22.512608, 64.779503], - [-22.512895, 64.779948], - [-22.513591, 64.780192], - [-22.513796, 64.780385], - [-22.514596, 64.780978], - [-22.515128, 64.781555], - [-22.515354, 64.782384], - [-22.515805, 64.782864], - [-22.515805, 64.7831], - [-22.515395, 64.783615], - [-22.51394, 64.78427], - [-22.513079, 64.784348], - [-22.511686, 64.784628], - [-22.510559, 64.784628], - [-22.509841, 64.784811], - [-22.509021, 64.784811], - [-22.508735, 64.785029], - [-22.508181, 64.78523], - [-22.507526, 64.785108], - [-22.50728, 64.785265], - [-22.506829, 64.785221], - [-22.506193, 64.785379], - [-22.505538, 64.785475], - [-22.504677, 64.785414], - [-22.504739, 64.784261], - [-22.504636, 64.782838] - ] - ], - [ - [ - [-22.44134, 65.11608], - [-22.44197, 65.11541], - [-22.44224, 65.11554], - [-22.4477, 65.11448], - [-22.44798, 65.11405], - [-22.45612, 65.11264], - [-22.45727, 65.11305], - [-22.45094, 65.11453], - [-22.44808, 65.1147], - [-22.44905, 65.11486], - [-22.44901, 65.11511], - [-22.4465, 65.11555], - [-22.44553, 65.11534], - [-22.44547, 65.11568], - [-22.44646, 65.1158], - [-22.44637, 65.11631], - [-22.44955, 65.11551], - [-22.45199, 65.11546], - [-22.45208, 65.11495], - [-22.45999, 65.11493], - [-22.45921, 65.11592], - [-22.46167, 65.11575], - [-22.46159, 65.11626], - [-22.45484, 65.11657], - [-22.45659, 65.11701], - [-22.45519, 65.11812], - [-22.45398, 65.11808], - [-22.45324, 65.11883], - [-22.44943, 65.11974], - [-22.449, 65.1187], - [-22.45021, 65.11873], - [-22.45039, 65.11771], - [-22.45347, 65.11755], - [-22.45355, 65.11704], - [-22.45043, 65.11746], - [-22.449181, 65.117407], - [-22.449986, 65.116809], - [-22.452011, 65.11674], - [-22.452978, 65.116233], - [-22.450907, 65.116049], - [-22.450009, 65.116072], - [-22.449043, 65.116717], - [-22.448163, 65.116919], - [-22.44741, 65.11737], - [-22.44494, 65.11755], - [-22.44503, 65.11704], - [-22.44378, 65.11726], - [-22.4433, 65.11647], - [-22.44451, 65.1165], - [-22.44172, 65.11626], - [-22.442, 65.11694], - [-22.43958, 65.11687], - [-22.44134, 65.11608] - ] - ], - [ - [ - [-22.6048, 65.10721], - [-22.60492, 65.10645], - [-22.60553, 65.10647], - [-22.60557, 65.10621], - [-22.60617, 65.10623], - [-22.60565, 65.1057], - [-22.60688, 65.10561], - [-22.60825, 65.10475], - [-22.60582, 65.10468], - [-22.60595, 65.10392], - [-22.60991, 65.10446], - [-22.61027, 65.10353], - [-22.60906, 65.1035], - [-22.60973, 65.10313], - [-22.61273, 65.10335], - [-22.61283, 65.10403], - [-22.61446, 65.10391], - [-22.61496, 65.10456], - [-22.61556, 65.10458], - [-22.61593, 65.10421], - [-22.61459, 65.10315], - [-22.61582, 65.10305], - [-22.61943, 65.10329], - [-22.61934, 65.1038], - [-22.62122, 65.10347], - [-22.62664, 65.10375], - [-22.62639, 65.10528], - [-22.62401, 65.10496], - [-22.62346, 65.10589], - [-22.6238, 65.10623], - [-22.62302, 65.10604], - [-22.62078, 65.10614], - [-22.62086, 65.10563], - [-22.61602, 65.10549], - [-22.6161, 65.10498], - [-22.61427, 65.10506], - [-22.61252, 65.10462], - [-22.61238, 65.10419], - [-22.6094, 65.10504], - [-22.61185, 65.10499], - [-22.6159, 65.10626], - [-22.61408, 65.1062], - [-22.61456, 65.10699], - [-22.60903, 65.10733], - [-22.6083, 65.10808], - [-22.6048, 65.10721] - ] - ], - [ - [ - [-22.44069, 65.10691], - [-22.44077, 65.1064], - [-22.44137, 65.10642], - [-22.44147, 65.10591], - [-22.44445, 65.10626], - [-22.44462, 65.10524], - [-22.46178, 65.10448], - [-22.46164, 65.10524], - [-22.46044, 65.10521], - [-22.46035, 65.10572], - [-22.45913, 65.10568], - [-22.45961, 65.10647], - [-22.4584, 65.10643], - [-22.45826, 65.1072], - [-22.4602, 65.1066], - [-22.46264, 65.10656], - [-22.46186, 65.10756], - [-22.45507, 65.10812], - [-22.45516, 65.10761], - [-22.45088, 65.10774], - [-22.45079, 65.10825], - [-22.44172, 65.10797], - [-22.44008, 65.10689], - [-22.44069, 65.10691] - ] - ], - [ - [ - [-22.46379, 65.11402], - [-22.465, 65.11406], - [-22.46864, 65.11237], - [-22.46907, 65.11162], - [-22.47274, 65.11147], - [-22.47313, 65.11097], - [-22.47469, 65.11076], - [-22.47957, 65.10886], - [-22.47997, 65.10835], - [-22.48819, 65.10643], - [-22.49128, 65.10614], - [-22.49094, 65.10818], - [-22.48852, 65.10811], - [-22.48834, 65.10913], - [-22.48713, 65.10909], - [-22.48705, 65.1096], - [-22.48288, 65.10909], - [-22.481, 65.10942], - [-22.47871, 65.11217], - [-22.47369, 65.11304], - [-22.47378, 65.11253], - [-22.47192, 65.11273], - [-22.47296, 65.11379], - [-22.47054, 65.11371], - [-22.47045, 65.11422], - [-22.47105, 65.11424], - [-22.47092, 65.11501], - [-22.46779, 65.11555], - [-22.46427, 65.1148], - [-22.46379, 65.11402] - ] - ], - [ - [ - [-22.41938, 65.13881], - [-22.42094, 65.1386], - [-22.42211, 65.1371], - [-22.42331, 65.13713], - [-22.42345, 65.13637], - [-22.42529, 65.1363], - [-22.426, 65.13568], - [-22.42968, 65.13553], - [-22.42959, 65.13604], - [-22.43085, 65.13583], - [-22.43058, 65.13735], - [-22.42751, 65.13752], - [-22.42712, 65.13802], - [-22.42796, 65.13843], - [-22.43402, 65.13861], - [-22.43718, 65.13794], - [-22.44157, 65.13897], - [-22.44178, 65.13949], - [-22.43991, 65.13969], - [-22.43984, 65.1402], - [-22.43733, 65.14064], - [-22.43746, 65.13987], - [-22.43374, 65.14027], - [-22.43365, 65.14078], - [-22.43187, 65.14047], - [-22.43196, 65.13996], - [-22.42941, 65.14065], - [-22.42893, 65.13987], - [-22.42716, 65.13956], - [-22.42637, 65.14056], - [-22.42391, 65.14074], - [-22.42433, 65.14178], - [-22.4269, 65.14109], - [-22.42644, 65.14142], - [-22.42789, 65.1424], - [-22.42668, 65.14236], - [-22.42655, 65.14312], - [-22.42404, 65.14356], - [-22.42412, 65.14305], - [-22.42166, 65.14323], - [-22.42113, 65.1427], - [-22.42174, 65.14271], - [-22.42273, 65.14224], - [-22.42145, 65.14092], - [-22.42261, 65.14121], - [-22.42223, 65.13992], - [-22.42037, 65.14012], - [-22.41938, 65.13881] - ] - ], - [ - [ - [-22.440952, 65.088768], - [-22.442343, 65.088276], - [-22.448849, 65.088551], - [-22.447149, 65.087842], - [-22.452814, 65.086107], - [-22.45417, 65.086454], - [-22.456402, 65.085803], - [-22.459337, 65.086541], - [-22.461895, 65.085803], - [-22.463955, 65.086309], - [-22.465346, 65.087264], - [-22.465672, 65.088406], - [-22.461226, 65.088999], - [-22.462599, 65.088131], - [-22.456076, 65.086974], - [-22.457432, 65.087466], - [-22.456762, 65.088204], - [-22.458822, 65.088637], - [-22.458977, 65.089346], - [-22.456745, 65.089418], - [-22.45417, 65.089418], - [-22.454188, 65.090445], - [-22.45726, 65.090214], - [-22.456745, 65.092162], - [-22.455544, 65.091078], - [-22.453673, 65.091168], - [-22.45314, 65.092379], - [-22.451939, 65.091005], - [-22.449553, 65.091457], - [-22.447647, 65.090861], - [-22.447819, 65.089491], - [-22.445416, 65.090358], - [-22.444557, 65.091439], - [-22.443871, 65.090575], - [-22.442154, 65.089563], - [-22.440952, 65.088768] - ] - ], - [ - [ - [-22.52195, 64.779786], - [-22.523077, 64.779062], - [-22.525188, 64.778258], - [-22.528037, 64.779289], - [-22.52984, 64.779673], - [-22.530926, 64.780101], - [-22.537422, 64.781716], - [-22.540332, 64.782092], - [-22.546152, 64.782528], - [-22.547566, 64.782869], - [-22.550271, 64.783166], - [-22.55023, 64.784274], - [-22.549656, 64.784379], - [-22.546828, 64.784205], - [-22.545209, 64.784327], - [-22.530844, 64.783323], - [-22.528426, 64.783331], - [-22.527545, 64.783454], - [-22.525987, 64.783183], - [-22.524389, 64.782179], - [-22.523508, 64.781891], - [-22.52275, 64.781157], - [-22.522852, 64.780756], - [-22.522319, 64.78031], - [-22.521704, 64.780371], - [-22.52195, 64.779786] - ] - ], - [ - [ - [-22.44986, 65.12077], - [-22.45175, 65.12045], - [-22.4532, 65.11908], - [-22.45832, 65.11757], - [-22.46202, 65.1173], - [-22.46305, 65.11836], - [-22.46452, 65.11686], - [-22.46988, 65.11754], - [-22.4698, 65.11805], - [-22.46798, 65.11799], - [-22.46655, 65.11923], - [-22.46967, 65.11881], - [-22.46958, 65.11932], - [-22.4714, 65.11938], - [-22.47131, 65.11989], - [-22.47252, 65.11992], - [-22.4717, 65.12118], - [-22.46677, 65.12154], - [-22.46655, 65.12282], - [-22.46344, 65.12324], - [-22.46335, 65.12375], - [-22.45902, 65.12413], - [-22.45855, 65.12334], - [-22.45976, 65.12338], - [-22.45989, 65.12262], - [-22.46321, 65.12092], - [-22.46478, 65.12071], - [-22.46521, 65.11996], - [-22.45955, 65.12107], - [-22.45877, 65.12207], - [-22.45691, 65.12227], - [-22.45682, 65.12278], - [-22.45557, 65.123], - [-22.45475, 65.12246], - [-22.45527, 65.12119], - [-22.45466, 65.12118], - [-22.45453, 65.12194], - [-22.45393, 65.12192], - [-22.4535, 65.12087], - [-22.45066, 65.12087], - [-22.45038, 65.1213], - [-22.44978, 65.12128], - [-22.44986, 65.12077] - ] - ], - [ - [ - [-22.844043, 65.015113], - [-22.844117, 65.014668], - [-22.844723, 65.014174], - [-22.845521, 65.013546], - [-22.845191, 65.013348], - [-22.845138, 65.012904], - [-22.847222, 65.012221], - [-22.848455, 65.012095], - [-22.849805, 65.011675], - [-22.850932, 65.011179], - [-22.851789, 65.011008], - [-22.85188, 65.010639], - [-22.852872, 65.010385], - [-22.853323, 65.00996], - [-22.854031, 65.009843], - [-22.855759, 65.009534], - [-22.85621, 65.009204], - [-22.855638, 65.008835], - [-22.856225, 65.007997], - [-22.857277, 65.007463], - [-22.859192, 65.006531], - [-22.859803, 65.006383], - [-22.860361, 65.006989], - [-22.860553, 65.007551], - [-22.861244, 65.007928], - [-22.861743, 65.008543], - [-22.861201, 65.009445], - [-22.859923, 65.009687], - [-22.859006, 65.0105], - [-22.859435, 65.011278], - [-22.860059, 65.011636], - [-22.860465, 65.012011], - [-22.858391, 65.013019], - [-22.857839, 65.013338], - [-22.858104, 65.013693], - [-22.859646, 65.013531], - [-22.860422, 65.0135], - [-22.860794, 65.013724], - [-22.857179, 65.015444], - [-22.855061, 65.015862], - [-22.853048, 65.015867], - [-22.851591, 65.015741], - [-22.849568, 65.015572], - [-22.847828, 65.015674], - [-22.846478, 65.015644], - [-22.845287, 65.015351], - [-22.844043, 65.015113] - ] - ], - [ - [ - [-22.43034, 65.09635], - [-22.43013, 65.09403], - [-22.43134, 65.09407], - [-22.43143, 65.09356], - [-22.43346, 65.09414], - [-22.43367, 65.09466], - [-22.43462, 65.09443], - [-22.43445, 65.09364], - [-22.43263, 65.0936], - [-22.43895, 65.09225], - [-22.43847, 65.09326], - [-22.43903, 65.09354], - [-22.43864, 65.09404], - [-22.43983, 65.0942], - [-22.44032, 65.09486], - [-22.44153, 65.0949], - [-22.44149, 65.09515], - [-22.43786, 65.09504], - [-22.43894, 65.09584], - [-22.43789, 65.09615], - [-22.43838, 65.09676], - [-22.44235, 65.09723], - [-22.44278, 65.09647], - [-22.44434, 65.09626], - [-22.44355, 65.09547], - [-22.44404, 65.09446], - [-22.44771, 65.09431], - [-22.4476, 65.09495], - [-22.45196, 65.09432], - [-22.45376, 65.0945], - [-22.45531, 65.09608], - [-22.45345, 65.09628], - [-22.45392, 65.09707], - [-22.45151, 65.09699], - [-22.45094, 65.09851], - [-22.44791, 65.10021], - [-22.44675, 65.09992], - [-22.44567, 65.10092], - [-22.44649, 65.10145], - [-22.43979, 65.1015], - [-22.43923, 65.09944], - [-22.44204, 65.09901], - [-22.44243, 65.09851], - [-22.44399, 65.0983], - [-22.44153, 65.09728], - [-22.43933, 65.09713], - [-22.43984, 65.09766], - [-22.43766, 65.09743], - [-22.43798, 65.09786], - [-22.43678, 65.09783], - [-22.43464, 65.09609], - [-22.43536, 65.09548], - [-22.43034, 65.09635] - ] - ], - [ - [ - [-22.53104, 65.14449], - [-22.53173, 65.1422], - [-22.53125, 65.14142], - [-22.53218, 65.14132], - [-22.53268, 65.14197], - [-22.53389, 65.14201], - [-22.53402, 65.14124], - [-22.53281, 65.14121], - [-22.53485, 65.13986], - [-22.53609, 65.13977], - [-22.53618, 65.13926], - [-22.53739, 65.1393], - [-22.54009, 65.13771], - [-22.54133, 65.13763], - [-22.54081, 65.13709], - [-22.542, 65.13725], - [-22.54332, 65.13845], - [-22.5428, 65.13971], - [-22.54159, 65.13968], - [-22.54085, 65.14042], - [-22.53904, 65.14037], - [-22.53921, 65.14114], - [-22.54067, 65.14144], - [-22.54081, 65.14069], - [-22.54202, 65.14071], - [-22.54792, 65.1382], - [-22.55039, 65.13802], - [-22.55158, 65.13818], - [-22.55167, 65.13767], - [-22.55471, 65.13763], - [-22.55543, 65.13701], - [-22.55841, 65.13736], - [-22.55833, 65.13787], - [-22.55954, 65.1379], - [-22.55928, 65.13943], - [-22.55266, 65.13898], - [-22.55314, 65.13976], - [-22.55193, 65.13973], - [-22.5518, 65.14049], - [-22.55301, 65.14053], - [-22.5535, 65.14131], - [-22.55101, 65.14149], - [-22.55085, 65.14251], - [-22.54653, 65.1429], - [-22.54579, 65.14364], - [-22.54073, 65.14478], - [-22.54086, 65.14401], - [-22.54147, 65.14402], - [-22.54156, 65.14352], - [-22.54354, 65.14255], - [-22.54114, 65.14235], - [-22.53679, 65.14287], - [-22.53658, 65.14414], - [-22.53537, 65.1441], - [-22.53545, 65.1436], - [-22.53251, 65.14299], - [-22.53329, 65.14378], - [-22.53225, 65.14452], - [-22.53104, 65.14449] - ] - ], - [ - [ - [-22.34055, 65.3032], - [-22.3406, 65.30295], - [-22.34121, 65.30297], - [-22.34139, 65.30195], - [-22.342, 65.30197], - [-22.34489, 65.29949], - [-22.34368, 65.29946], - [-22.34782, 65.29676], - [-22.34899, 65.29707], - [-22.34956, 65.29614], - [-22.34931, 65.29527], - [-22.35169, 65.29573], - [-22.34978, 65.29486], - [-22.34757, 65.29471], - [-22.34895, 65.29385], - [-22.35267, 65.29358], - [-22.35258, 65.29409], - [-22.35319, 65.29411], - [-22.35363, 65.29336], - [-22.35966, 65.29213], - [-22.36198, 65.29285], - [-22.36077, 65.29281], - [-22.36124, 65.29359], - [-22.36002, 65.29355], - [-22.35999, 65.29381], - [-22.36426, 65.29381], - [-22.36437, 65.29497], - [-22.36113, 65.29769], - [-22.35673, 65.29832], - [-22.35599, 65.29907], - [-22.35477, 65.29903], - [-22.35337, 65.30001], - [-22.35215, 65.29997], - [-22.35132, 65.30123], - [-22.34055, 65.3032] - ] - ], - [ - [ - [-22.5446, 65.129], - [-22.54644, 65.12893], - [-22.54918, 65.12709], - [-22.54797, 65.12706], - [-22.54775, 65.12654], - [-22.5495, 65.12518], - [-22.55123, 65.12574], - [-22.55419, 65.12622], - [-22.55407, 65.12698], - [-22.55554, 65.12729], - [-22.55472, 65.12854], - [-22.55619, 65.12884], - [-22.55902, 65.12649], - [-22.56025, 65.1264], - [-22.56068, 65.12564], - [-22.56258, 65.12518], - [-22.56539, 65.12296], - [-22.56767, 65.122], - [-22.56949, 65.12206], - [-22.5702, 65.12144], - [-22.57262, 65.12151], - [-22.57546, 65.12275], - [-22.57308, 65.12242], - [-22.57226, 65.12368], - [-22.57594, 65.12353], - [-22.5752, 65.12428], - [-22.57092, 65.12441], - [-22.57136, 65.12544], - [-22.57283, 65.12574], - [-22.57305, 65.12626], - [-22.57452, 65.12655], - [-22.57404, 65.12757], - [-22.5729, 65.12715], - [-22.57106, 65.12723], - [-22.56959, 65.12872], - [-22.56721, 65.1284], - [-22.5673, 65.12789], - [-22.56496, 65.1273], - [-22.56475, 65.12858], - [-22.56717, 65.12865], - [-22.56771, 65.12905], - [-22.56703, 65.12941], - [-22.56826, 65.12945], - [-22.56683, 65.13069], - [-22.56497, 65.13089], - [-22.56566, 65.1304], - [-22.56218, 65.1294], - [-22.56033, 65.12946], - [-22.56052, 65.13025], - [-22.55948, 65.13098], - [-22.55394, 65.13133], - [-22.55386, 65.13006], - [-22.55184, 65.12935], - [-22.55113, 65.12997], - [-22.55053, 65.12995], - [-22.5513, 65.12895], - [-22.54766, 65.12884], - [-22.54746, 65.13011], - [-22.54499, 65.1303], - [-22.54545, 65.12997], - [-22.5446, 65.129] - ] - ], - [ - [ - [-22.488331, 65.065981], - [-22.487644, 65.065185], - [-22.492966, 65.064751], - [-22.493326, 65.063752], - [-22.495712, 65.063593], - [-22.498802, 65.062001], - [-22.494511, 65.061277], - [-22.500347, 65.060915], - [-22.498991, 65.059916], - [-22.505171, 65.060206], - [-22.508776, 65.059265], - [-22.512896, 65.059482], - [-22.518372, 65.058888], - [-22.520432, 65.058237], - [-22.523865, 65.058237], - [-22.521633, 65.058888], - [-22.521118, 65.059685], - [-22.517857, 65.05983], - [-22.5182, 65.060843], - [-22.516827, 65.061639], - [-22.514252, 65.062001], - [-22.51099, 65.063087], - [-22.50996, 65.06381], - [-22.508072, 65.064968], - [-22.506184, 65.065981], - [-22.501223, 65.066285], - [-22.505497, 65.06656], - [-22.505669, 65.067356], - [-22.502751, 65.067863], - [-22.500347, 65.06808], - [-22.498116, 65.067718], - [-22.498459, 65.066633], - [-22.495197, 65.06656], - [-22.491936, 65.066995], - [-22.492108, 65.065837], - [-22.488331, 65.065981] - ] - ], - [ - [ - [-22.738315, 65.082736], - [-22.738501, 65.082347], - [-22.738801, 65.082098], - [-22.738942, 65.081857], - [-22.739073, 65.081464], - [-22.739552, 65.080834], - [-22.740333, 65.080344], - [-22.74071, 65.079774], - [-22.740542, 65.079484], - [-22.740573, 65.078993], - [-22.739739, 65.078594], - [-22.739237, 65.077974], - [-22.739124, 65.077743], - [-22.739782, 65.076953], - [-22.739609, 65.076531], - [-22.739438, 65.076303], - [-22.740137, 65.075864], - [-22.740622, 65.07578], - [-22.741021, 65.075774], - [-22.74107, 65.075422], - [-22.741359, 65.075243], - [-22.742203, 65.075085], - [-22.744552, 65.074434], - [-22.747385, 65.073652], - [-22.747824, 65.07365], - [-22.747718, 65.07394], - [-22.747228, 65.07413], - [-22.746591, 65.074365], - [-22.745901, 65.074656], - [-22.74557, 65.075075], - [-22.744893, 65.075477], - [-22.74492, 65.075634], - [-22.74557, 65.075382], - [-22.746206, 65.075025], - [-22.746936, 65.074538], - [-22.747493, 65.074292], - [-22.748302, 65.074141], - [-22.749106, 65.073971], - [-22.749907, 65.073722], - [-22.750305, 65.073594], - [-22.750928, 65.073465], - [-22.751087, 65.073599], - [-22.750782, 65.073772], - [-22.750358, 65.074046], - [-22.749894, 65.074292], - [-22.749549, 65.074488], - [-22.749005, 65.074773], - [-22.748779, 65.074997], - [-22.749098, 65.074991], - [-22.749602, 65.074628], - [-22.750291, 65.074309], - [-22.750969, 65.073981], - [-22.75368, 65.073469], - [-22.755643, 65.072935], - [-22.756415, 65.072677], - [-22.757164, 65.072639], - [-22.757794, 65.072465], - [-22.758324, 65.072359], - [-22.758099, 65.072504], - [-22.758126, 65.072711], - [-22.757834, 65.072895], - [-22.758139, 65.07299], - [-22.758603, 65.072901], - [-22.759464, 65.072797], - [-22.760712, 65.072465], - [-22.761747, 65.072466], - [-22.762038, 65.072549], - [-22.76176, 65.072884], - [-22.762012, 65.073102], - [-22.762078, 65.073259], - [-22.761299, 65.073458], - [-22.761299, 65.073585], - [-22.761829, 65.073515], - [-22.762236, 65.07345], - [-22.762602, 65.073537], - [-22.763287, 65.073533], - [-22.764358, 65.073403], - [-22.765266, 65.073304], - [-22.766429, 65.073276], - [-22.766851, 65.073292], - [-22.767024, 65.073491], - [-22.766407, 65.073972], - [-22.766553, 65.074402], - [-22.766129, 65.074721], - [-22.766474, 65.074939], - [-22.766089, 65.075106], - [-22.765359, 65.074944], - [-22.764755, 65.074944], - [-22.763967, 65.074821], - [-22.763237, 65.074989], - [-22.762388, 65.075112], - [-22.761765, 65.075218], - [-22.761295, 65.075491], - [-22.760982, 65.07543], - [-22.760797, 65.075274], - [-22.759857, 65.075251], - [-22.759013, 65.075334], - [-22.759271, 65.075537], - [-22.759993, 65.075516], - [-22.760465, 65.07566], - [-22.76024, 65.076023], - [-22.759457, 65.076453], - [-22.758381, 65.076827], - [-22.757183, 65.077389], - [-22.756367, 65.078071], - [-22.754856, 65.078874], - [-22.753922, 65.079527], - [-22.753672, 65.080278], - [-22.753702, 65.080759], - [-22.753139, 65.081067], - [-22.751197, 65.081351], - [-22.749379, 65.0818], - [-22.747332, 65.082272], - [-22.746609, 65.082668], - [-22.745325, 65.082725], - [-22.744429, 65.082583], - [-22.74345, 65.081971], - [-22.742538, 65.082016], - [-22.741906, 65.082238], - [-22.741834, 65.082618], - [-22.741595, 65.083043], - [-22.741317, 65.082992], - [-22.740707, 65.082646], - [-22.740452, 65.082497], - [-22.739977, 65.082579], - [-22.739593, 65.082758], - [-22.738824, 65.082931], - [-22.738315, 65.082736] - ] - ], - [ - [ - [-22.22545, 64.52352], - [-22.22834, 64.524], - [-22.23018, 64.52368], - [-22.22977, 64.52264], - [-22.22854, 64.52285], - [-22.22813, 64.52181], - [-22.22889, 64.52201], - [-22.23025, 64.52163], - [-22.23085, 64.51985], - [-22.23197, 64.52027], - [-22.23731, 64.52032], - [-22.2353, 64.5182], - [-22.23708, 64.51826], - [-22.23753, 64.51917], - [-22.23986, 64.51938], - [-22.23939, 64.52038], - [-22.237, 64.5221], - [-22.23582, 64.52206], - [-22.23604, 64.52079], - [-22.23363, 64.52098], - [-22.23384, 64.52149], - [-22.23527, 64.52179], - [-22.23511, 64.52614], - [-22.23274, 64.52606], - [-22.2327, 64.52632], - [-22.23561, 64.52667], - [-22.23518, 64.52743], - [-22.24021, 64.52759], - [-22.23975, 64.52679], - [-22.24269, 64.52703], - [-22.24429, 64.5281], - [-22.24645, 64.52821], - [-22.24672, 64.5278], - [-22.24494, 64.52774], - [-22.2456, 64.52737], - [-22.24858, 64.52735], - [-22.24675, 64.52421], - [-22.2491, 64.52442], - [-22.25189, 64.52207], - [-22.25387, 64.52265], - [-22.25381, 64.5247], - [-22.25203, 64.52464], - [-22.25231, 64.52644], - [-22.25409, 64.5265], - [-22.25405, 64.52675], - [-22.25286, 64.52672], - [-22.25323, 64.52801], - [-22.25444, 64.52792], - [-22.25547, 64.52885], - [-22.2536, 64.5293], - [-22.25319, 64.52826], - [-22.24725, 64.5282], - [-22.24595, 64.52999], - [-22.24696, 64.52986], - [-22.24598, 64.53034], - [-22.24391, 64.53027], - [-22.24237, 64.53227], - [-22.24119, 64.53223], - [-22.24105, 64.533], - [-22.24164, 64.53302], - [-22.24169, 64.53276], - [-22.24415, 64.53232], - [-22.24397, 64.53334], - [-22.24208, 64.53394], - [-22.2403, 64.53387], - [-22.23921, 64.53332], - [-22.23561, 64.53346], - [-22.23327, 64.53326], - [-22.23583, 64.53052], - [-22.23512, 64.52947], - [-22.23396, 64.52931], - [-22.23212, 64.52963], - [-22.23221, 64.52912], - [-22.23161, 64.5291], - [-22.2313, 64.53089], - [-22.23071, 64.53088], - [-22.2308, 64.53036], - [-22.22957, 64.53059], - [-22.22975, 64.52957], - [-22.22797, 64.5295], - [-22.22788, 64.53001], - [-22.2267, 64.52997], - [-22.229442, 64.528308], - [-22.228789, 64.52714], - [-22.22919, 64.52595], - [-22.22746, 64.52564], - [-22.22755, 64.52513], - [-22.22523, 64.5248], - [-22.22545, 64.52352] - ] - ], - [ - [ - [-22.44097, 65.072508], - [-22.438893, 65.07177], - [-22.444042, 65.068948], - [-22.445587, 65.067791], - [-22.452969, 65.067139], - [-22.456419, 65.067805], - [-22.459492, 65.068008], - [-22.46241, 65.06808], - [-22.462599, 65.067443], - [-22.465672, 65.067718], - [-22.463972, 65.068673], - [-22.466015, 65.069455], - [-22.467732, 65.070178], - [-22.465517, 65.071495], - [-22.470822, 65.070757], - [-22.47477, 65.070323], - [-22.473242, 65.071423], - [-22.475628, 65.071553], - [-22.481293, 65.07083], - [-22.481808, 65.071626], - [-22.480263, 65.072928], - [-22.483696, 65.073073], - [-22.481121, 65.073868], - [-22.476847, 65.073883], - [-22.474615, 65.074317], - [-22.471525, 65.074317], - [-22.473414, 65.07381], - [-22.46895, 65.073883], - [-22.466204, 65.073376], - [-22.463286, 65.073304], - [-22.461552, 65.073145], - [-22.463783, 65.072494], - [-22.458994, 65.073159], - [-22.457277, 65.072581], - [-22.454685, 65.072421], - [-22.451252, 65.072277], - [-22.450068, 65.072725], - [-22.446961, 65.072566], - [-22.450222, 65.071553], - [-22.444403, 65.072146], - [-22.44097, 65.072508] - ] - ], - [ - [ - [-22.50654, 65.13453], - [-22.50778, 65.13444], - [-22.50987, 65.13284], - [-22.51169, 65.13289], - [-22.51431, 65.13181], - [-22.51587, 65.13216], - [-22.51751, 65.13089], - [-22.51935, 65.13081], - [-22.5194, 65.13175], - [-22.52038, 65.13187], - [-22.5203, 65.13239], - [-22.51909, 65.13234], - [-22.51801, 65.13154], - [-22.51757, 65.1323], - [-22.52006, 65.13378], - [-22.52773, 65.1353], - [-22.53083, 65.13487], - [-22.53447, 65.13498], - [-22.53522, 65.13411], - [-22.53401, 65.13407], - [-22.53435, 65.13203], - [-22.54101, 65.13223], - [-22.54098, 65.13248], - [-22.53976, 65.13245], - [-22.53898, 65.13345], - [-22.54508, 65.13337], - [-22.54418, 65.13514], - [-22.54539, 65.13518], - [-22.5453, 65.13569], - [-22.54353, 65.13538], - [-22.54426, 65.13463], - [-22.54123, 65.13454], - [-22.54046, 65.13554], - [-22.54292, 65.13536], - [-22.54219, 65.13611], - [-22.53726, 65.13647], - [-22.53799, 65.13574], - [-22.5392, 65.13576], - [-22.53929, 65.13525], - [-22.53808, 65.13522], - [-22.53734, 65.13417], - [-22.53838, 65.13343], - [-22.53717, 65.13341], - [-22.53687, 65.13518], - [-22.53566, 65.13514], - [-22.53492, 65.13589], - [-22.53371, 65.13585], - [-22.53362, 65.13636], - [-22.53008, 65.13575], - [-22.53241, 65.13633], - [-22.53155, 65.13784], - [-22.53035, 65.1378], - [-22.52952, 65.13906], - [-22.53172, 65.13861], - [-22.53211, 65.13811], - [-22.53332, 65.13815], - [-22.53371, 65.13944], - [-22.53093, 65.13919], - [-22.53064, 65.13961], - [-22.52749, 65.14028], - [-22.5286, 65.14095], - [-22.53039, 65.14114], - [-22.5303, 65.14165], - [-22.52775, 65.14234], - [-22.52545, 65.14031], - [-22.52446, 65.14019], - [-22.52398, 65.14299], - [-22.52278, 65.14296], - [-22.52286, 65.14245], - [-22.52165, 65.14241], - [-22.52173, 65.1419], - [-22.52294, 65.14194], - [-22.52299, 65.14168], - [-22.52238, 65.14167], - [-22.52264, 65.14014], - [-22.52087, 65.13983], - [-22.52074, 65.14059], - [-22.51829, 65.14065], - [-22.51269, 65.14138], - [-22.514763, 65.139567], - [-22.52247, 65.13757], - [-22.52255, 65.13706], - [-22.51641, 65.13739], - [-22.51632, 65.1379], - [-22.51572, 65.13788], - [-22.51563, 65.13839], - [-22.514067, 65.139127], - [-22.51295, 65.13985], - [-22.51118, 65.13954], - [-22.51084, 65.13799], - [-22.50901, 65.13793], - [-22.50918, 65.13691], - [-22.5104, 65.13695], - [-22.51044, 65.1367], - [-22.50922, 65.13666], - [-22.50875, 65.13587], - [-22.50995, 65.13591], - [-22.51018, 65.13464], - [-22.50647, 65.13504], - [-22.50654, 65.13453] - ] - ], - [ - [ - [-22.32379, 64.55039], - [-22.32495, 64.55055], - [-22.32504, 64.55004], - [-22.32907, 64.54915], - [-22.32945, 64.54865], - [-22.33064, 64.54868], - [-22.33069, 64.54663], - [-22.33171, 64.5459], - [-22.33879, 64.54625], - [-22.3395, 64.54563], - [-22.3407, 64.54554], - [-22.3414, 64.54492], - [-22.34515, 64.54624], - [-22.34597, 64.54609], - [-22.34529, 64.54658], - [-22.34884, 64.5467], - [-22.34807, 64.54949], - [-22.35076, 64.55291], - [-22.3645, 64.55616], - [-22.36578, 64.55569], - [-22.36234, 64.5584], - [-22.35819, 64.55827], - [-22.3581, 64.55878], - [-22.35628, 64.55897], - [-22.35615, 64.55974], - [-22.35373, 64.55992], - [-22.354, 64.5584], - [-22.35288, 64.55797], - [-22.34934, 64.55773], - [-22.34572, 64.55454], - [-22.34335, 64.55447], - [-22.34343, 64.55396], - [-22.33696, 64.5535], - [-22.33705, 64.55299], - [-22.33226, 64.55309], - [-22.33287, 64.55132], - [-22.33262, 64.54926], - [-22.33182, 64.54872], - [-22.33165, 64.54974], - [-22.32618, 64.55034], - [-22.3261, 64.55085], - [-22.32427, 64.55104], - [-22.32441, 64.55147], - [-22.32656, 64.55163], - [-22.32647, 64.55214], - [-22.32469, 64.55208], - [-22.32245, 64.55124], - [-22.32379, 64.55039] - ] - ], - [ - [ - [-22.65117, 65.15443], - [-22.65147, 65.15264], - [-22.65266, 65.15281], - [-22.65315, 65.15227], - [-22.65155, 65.15213], - [-22.65293, 65.15115], - [-22.65414, 65.15118], - [-22.65422, 65.15067], - [-22.65643, 65.15023], - [-22.65724, 65.14897], - [-22.6588, 65.14876], - [-22.65777, 65.1495], - [-22.65863, 65.14978], - [-22.65872, 65.14928], - [-22.65991, 65.14943], - [-22.66041, 65.15008], - [-22.66296, 65.14939], - [-22.66114, 65.14934], - [-22.662448, 65.148508], - [-22.662286, 65.148314], - [-22.661928, 65.148097], - [-22.661631, 65.148082], - [-22.661699, 65.14799], - [-22.661988, 65.14777], - [-22.662472, 65.147475], - [-22.662494, 65.14726], - [-22.662709, 65.147115], - [-22.66321, 65.146911], - [-22.663859, 65.146634], - [-22.664302, 65.146488], - [-22.664495, 65.14651], - [-22.665229, 65.146394], - [-22.666255, 65.146205], - [-22.66683, 65.146088], - [-22.667276, 65.146094], - [-22.66754, 65.146051], - [-22.668017, 65.145855], - [-22.668614, 65.145601], - [-22.668768, 65.145358], - [-22.668696, 65.145182], - [-22.668225, 65.145135], - [-22.668246, 65.14498], - [-22.668525, 65.144948], - [-22.66874, 65.144864], - [-22.668864, 65.144674], - [-22.66875, 65.144473], - [-22.668543, 65.144283], - [-22.669461, 65.14377], - [-22.670023, 65.143581], - [-22.670693, 65.143534], - [-22.671121, 65.143558], - [-22.67128, 65.14347], - [-22.671285, 65.143398], - [-22.671195, 65.143308], - [-22.671485, 65.14326], - [-22.672528, 65.143315], - [-22.672984, 65.143402], - [-22.673212, 65.143434], - [-22.673418, 65.143384], - [-22.673524, 65.143269], - [-22.673603, 65.143142], - [-22.67209, 65.14197], - [-22.6733, 65.142], - [-22.67342, 65.14124], - [-22.67587, 65.14118], - [-22.68069, 65.14145], - [-22.6806, 65.14196], - [-22.68485, 65.14208], - [-22.68491, 65.14362], - [-22.68698, 65.14393], - [-22.68554, 65.14722], - [-22.68819, 65.14781], - [-22.68741, 65.14881], - [-22.68494, 65.149], - [-22.68567, 65.14826], - [-22.68442, 65.14847], - [-22.68459, 65.14745], - [-22.68034, 65.14733], - [-22.68012, 65.14681], - [-22.67865, 65.1465], - [-22.67858, 65.14702], - [-22.67679, 65.14672], - [-22.67701, 65.14724], - [-22.67598, 65.14797], - [-22.67481, 65.14768], - [-22.67399, 65.14894], - [-22.67278, 65.14891], - [-22.6727, 65.14941], - [-22.66958, 65.14984], - [-22.66967, 65.14933], - [-22.66781, 65.14953], - [-22.66669, 65.15078], - [-22.66858, 65.15224], - [-22.66977, 65.1524], - [-22.66986, 65.1519], - [-22.66864, 65.15186], - [-22.66873, 65.15135], - [-22.66994, 65.15138], - [-22.67002, 65.15088], - [-22.67249, 65.15069], - [-22.6732, 65.15007], - [-22.67443, 65.14998], - [-22.67452, 65.14947], - [-22.67633, 65.14952], - [-22.67228, 65.15197], - [-22.67107, 65.15193], - [-22.67142, 65.15348], - [-22.66956, 65.15368], - [-22.66939, 65.1547], - [-22.66819, 65.15465], - [-22.6681, 65.15517], - [-22.66624, 65.15538], - [-22.6662, 65.15563], - [-22.66681, 65.15565], - [-22.66677, 65.1559], - [-22.66426, 65.15634], - [-22.66434, 65.15583], - [-22.6607, 65.15573], - [-22.66087, 65.15471], - [-22.65968, 65.15455], - [-22.65778, 65.155], - [-22.65537, 65.15481], - [-22.65611, 65.15406], - [-22.65312, 65.15372], - [-22.65303, 65.15423], - [-22.65117, 65.15443] - ] - ], - [ - [ - [-22.47769, 65.09138], - [-22.47635, 65.09032], - [-22.48008, 65.08979], - [-22.48628, 65.08908], - [-22.48574, 65.08868], - [-22.4839, 65.08875], - [-22.48645, 65.08806], - [-22.48693, 65.08885], - [-22.48764, 65.08822], - [-22.49008, 65.08817], - [-22.49062, 65.08857], - [-22.49366, 65.08853], - [-22.49375, 65.08802], - [-22.49254, 65.08799], - [-22.49258, 65.08773], - [-22.4944, 65.08779], - [-22.49444, 65.08754], - [-22.49267, 65.08722], - [-22.49276, 65.08671], - [-22.49517, 65.08678], - [-22.4944, 65.08599], - [-22.49608, 65.08502], - [-22.49921, 65.08447], - [-22.50845, 65.08372], - [-22.50982, 65.08288], - [-22.5116, 65.08305], - [-22.5135, 65.08259], - [-22.51471, 65.08263], - [-22.51525, 65.08303], - [-22.51089, 65.08367], - [-22.51076, 65.08443], - [-22.51441, 65.08442], - [-22.5189, 65.08301], - [-22.52134, 65.08296], - [-22.52125, 65.08347], - [-22.51875, 65.08391], - [-22.51832, 65.08466], - [-22.51909, 65.08545], - [-22.5203, 65.08549], - [-22.51952, 65.08649], - [-22.51646, 65.08667], - [-22.51508, 65.08764], - [-22.51089, 65.08726], - [-22.50951, 65.08824], - [-22.51193, 65.08831], - [-22.51184, 65.08882], - [-22.51305, 65.08886], - [-22.51279, 65.09039], - [-22.51158, 65.09035], - [-22.51167, 65.08984], - [-22.50804, 65.08973], - [-22.50731, 65.09048], - [-22.50485, 65.09066], - [-22.50416, 65.09115], - [-22.50722, 65.09099], - [-22.50822, 65.0923], - [-22.50701, 65.09226], - [-22.50692, 65.09277], - [-22.50264, 65.0929], - [-22.50437, 65.09347], - [-22.50429, 65.09398], - [-22.50187, 65.0939], - [-22.50194, 65.09339], - [-22.50014, 65.09334], - [-22.499129, 65.093731], - [-22.49827, 65.093885], - [-22.496487, 65.09451], - [-22.495, 65.09498], - [-22.49491, 65.09549], - [-22.4925, 65.09542], - [-22.49254, 65.09516], - [-22.49314, 65.09518], - [-22.49319, 65.09492], - [-22.493929, 65.094686], - [-22.49427, 65.093972], - [-22.48954, 65.09494], - [-22.48602, 65.0942], - [-22.48563, 65.0929], - [-22.48681, 65.09319], - [-22.48688, 65.09268], - [-22.48934, 65.0925], - [-22.48939, 65.09225], - [-22.48459, 65.09185], - [-22.48507, 65.09264], - [-22.47777, 65.09266], - [-22.47769, 65.09138] - ] - ], - [ - [ - [-22.47658, 65.15323], - [-22.47968, 65.15294], - [-22.4798, 65.15217], - [-22.48238, 65.15135], - [-22.48357, 65.15152], - [-22.4837, 65.15075], - [-22.48781, 65.14986], - [-22.48824, 65.1491], - [-22.4898, 65.14889], - [-22.49023, 65.14813], - [-22.49145, 65.14817], - [-22.49153, 65.14766], - [-22.49274, 65.14769], - [-22.49283, 65.14718], - [-22.49404, 65.14722], - [-22.49443, 65.14672], - [-22.49599, 65.1465], - [-22.4956, 65.14522], - [-22.49681, 65.14525], - [-22.4963, 65.14593], - [-22.49861, 65.14544], - [-22.50101, 65.14564], - [-22.50097, 65.14589], - [-22.49915, 65.14584], - [-22.49898, 65.14686], - [-22.49776, 65.14682], - [-22.49794, 65.14759], - [-22.49728, 65.14783], - [-22.496302, 65.149082], - [-22.495056, 65.149848], - [-22.496925, 65.149373], - [-22.49852, 65.14953], - [-22.49785, 65.1499], - [-22.49967, 65.14995], - [-22.49975, 65.14944], - [-22.50097, 65.14948], - [-22.50105, 65.14897], - [-22.50229, 65.14888], - [-22.503, 65.14826], - [-22.50419, 65.14842], - [-22.50601, 65.14724], - [-22.50574, 65.14655], - [-22.50759, 65.14635], - [-22.50746, 65.14711], - [-22.50581, 65.14783], - [-22.5059, 65.14911], - [-22.50811, 65.14867], - [-22.50852, 65.14804], - [-22.51157, 65.148], - [-22.51192, 65.14955], - [-22.5143, 65.14988], - [-22.51412, 65.1509], - [-22.51663, 65.15046], - [-22.51655, 65.15097], - [-22.51802, 65.15127], - [-22.51759, 65.15203], - [-22.51512, 65.15221], - [-22.51503, 65.15272], - [-22.51382, 65.15268], - [-22.51105, 65.15465], - [-22.50922, 65.1546], - [-22.50915, 65.15511], - [-22.50664, 65.15554], - [-22.50582, 65.1568], - [-22.5046, 65.15676], - [-22.50443, 65.15778], - [-22.50223, 65.15755], - [-22.5014, 65.15769], - [-22.50252, 65.15704], - [-22.50179, 65.1554], - [-22.4982, 65.15503], - [-22.49811, 65.15554], - [-22.49993, 65.1556], - [-22.49915, 65.1566], - [-22.49473, 65.15749], - [-22.4946, 65.15826], - [-22.49335, 65.15847], - [-22.49404, 65.15798], - [-22.48906, 65.1586], - [-22.49027, 65.15864], - [-22.49019, 65.15915], - [-22.49079, 65.15918], - [-22.49071, 65.15968], - [-22.48837, 65.15909], - [-22.48789, 65.15831], - [-22.48891, 65.15825], - [-22.48807, 65.15729], - [-22.49142, 65.15782], - [-22.49118, 65.15687], - [-22.4875, 65.15702], - [-22.48755, 65.15676], - [-22.48937, 65.15682], - [-22.48941, 65.15656], - [-22.4859, 65.15569], - [-22.48547, 65.15465], - [-22.48486, 65.15463], - [-22.48478, 65.15514], - [-22.48357, 65.15511], - [-22.48365, 65.1546], - [-22.47997, 65.15474], - [-22.4795, 65.15396], - [-22.47521, 65.15407], - [-22.47658, 65.15323] - ] - ], - [ - [ - [-22.53235, 65.19449], - [-22.53357, 65.19453], - [-22.53365, 65.19402], - [-22.53593, 65.19374], - [-22.53621, 65.19332], - [-22.53743, 65.19336], - [-22.53734, 65.19387], - [-22.5389, 65.19366], - [-22.53929, 65.19316], - [-22.54247, 65.19236], - [-22.54367, 65.19251], - [-22.54445, 65.19152], - [-22.5475, 65.19148], - [-22.55069, 65.19068], - [-22.5506, 65.19119], - [-22.55181, 65.19122], - [-22.55169, 65.19199], - [-22.55047, 65.19195], - [-22.55056, 65.19144], - [-22.54939, 65.19115], - [-22.5493, 65.19166], - [-22.54802, 65.19201], - [-22.54622, 65.19183], - [-22.54614, 65.19234], - [-22.54427, 65.19254], - [-22.54482, 65.19294], - [-22.55273, 65.19305], - [-22.55251, 65.19073], - [-22.55474, 65.19195], - [-22.55778, 65.19204], - [-22.56135, 65.19074], - [-22.56178, 65.18998], - [-22.56299, 65.19002], - [-22.56371, 65.1894], - [-22.56494, 65.18932], - [-22.56503, 65.1888], - [-22.57077, 65.1873], - [-22.57283, 65.18775], - [-22.57305, 65.18827], - [-22.57608, 65.18836], - [-22.57686, 65.18735], - [-22.57807, 65.18739], - [-22.57785, 65.18687], - [-22.57881, 65.18664], - [-22.57872, 65.18715], - [-22.58186, 65.1866], - [-22.58335, 65.18498], - [-22.58517, 65.18504], - [-22.58588, 65.18442], - [-22.5877, 65.18447], - [-22.58907, 65.18361], - [-22.59026, 65.18379], - [-22.59156, 65.1833], - [-22.59459, 65.18339], - [-22.5957, 65.18406], - [-22.59448, 65.18403], - [-22.59398, 65.1853], - [-22.59486, 65.18545], - [-22.59741, 65.18476], - [-22.60103, 65.18499], - [-22.60055, 65.18421], - [-22.60474, 65.18471], - [-22.6052, 65.18562], - [-22.60268, 65.18606], - [-22.6026, 65.18657], - [-22.601748, 65.186695], - [-22.59822, 65.18721], - [-22.5981, 65.18798], - [-22.59631, 65.1878], - [-22.5919, 65.18856], - [-22.59182, 65.18907], - [-22.5893, 65.18951], - [-22.58922, 65.19002], - [-22.58482, 65.19079], - [-22.57934, 65.19076], - [-22.57657, 65.19273], - [-22.57538, 65.19256], - [-22.57224, 65.19311], - [-22.57215, 65.19362], - [-22.56599, 65.19395], - [-22.56608, 65.19344], - [-22.56547, 65.19342], - [-22.5653, 65.19444], - [-22.56396, 65.19517], - [-22.56032, 65.19506], - [-22.5602, 65.19583], - [-22.56145, 65.19561], - [-22.56075, 65.1961], - [-22.55826, 65.19641], - [-22.55709, 65.19612], - [-22.55456, 65.19669], - [-22.55407, 65.1959], - [-22.55468, 65.19592], - [-22.55473, 65.19567], - [-22.55169, 65.19557], - [-22.55308, 65.19459], - [-22.55065, 65.19452], - [-22.55119, 65.19492], - [-22.55052, 65.19529], - [-22.54931, 65.19525], - [-22.54935, 65.195], - [-22.55038, 65.1949], - [-22.54818, 65.19471], - [-22.54872, 65.1951], - [-22.54554, 65.19591], - [-22.54558, 65.19565], - [-22.54726, 65.19532], - [-22.54571, 65.19489], - [-22.54562, 65.1954], - [-22.54502, 65.19538], - [-22.54545, 65.19462], - [-22.54768, 65.19405], - [-22.54944, 65.19448], - [-22.54897, 65.19357], - [-22.54475, 65.19332], - [-22.54458, 65.19434], - [-22.54215, 65.19427], - [-22.54145, 65.19357], - [-22.53975, 65.19407], - [-22.53875, 65.194], - [-22.53782, 65.19465], - [-22.53227, 65.195], - [-22.53235, 65.19449] - ] - ], - [ - [ - [-22.16947, 64.46325], - [-22.16992, 64.46403], - [-22.16956, 64.46274], - [-22.17131, 64.46293], - [-22.17112, 64.46228], - [-22.1733, 64.4617], - [-22.17628, 64.46168], - [-22.17619, 64.46219], - [-22.18157, 64.46198], - [-22.18674, 64.46126], - [-22.18658, 64.46048], - [-22.1884, 64.46029], - [-22.18757, 64.46154], - [-22.18876, 64.46158], - [-22.19558, 64.46667], - [-22.19677, 64.46671], - [-22.19668, 64.46722], - [-22.199, 64.46755], - [-22.19891, 64.46806], - [-22.20293, 64.46885], - [-22.20949, 64.46867], - [-22.21103, 64.47012], - [-22.21456, 64.47024], - [-22.21974, 64.47118], - [-22.22022, 64.47183], - [-22.22377, 64.47195], - [-22.22394, 64.47093], - [-22.22622, 64.47152], - [-22.22654, 64.47306], - [-22.22064, 64.47287], - [-22.21851, 64.47485], - [-22.2173, 64.47494], - [-22.21448, 64.47408], - [-22.2121, 64.47413], - [-22.21112, 64.47461], - [-22.21072, 64.47691], - [-22.21286, 64.47826], - [-22.21196, 64.48002], - [-22.21266, 64.48107], - [-22.21148, 64.48103], - [-22.21144, 64.48129], - [-22.21203, 64.48131], - [-22.21198, 64.48156], - [-22.21139, 64.48154], - [-22.21058, 64.4828], - [-22.20935, 64.48301], - [-22.20903, 64.48147], - [-22.20723, 64.48154], - [-22.20442, 64.48067], - [-22.20257, 64.481], - [-22.19927, 64.47782], - [-22.19973, 64.47014], - [-22.19569, 64.4695], - [-22.18643, 64.46471], - [-22.17519, 64.46447], - [-22.17447, 64.46521], - [-22.16974, 64.46505], - [-22.16888, 64.46323], - [-22.16947, 64.46325] - ] - ], - [ - [ - [-22.585, 65.11842], - [-22.58638, 65.11743], - [-22.58525, 65.11689], - [-22.58788, 65.11388], - [-22.59325, 65.11277], - [-22.59362, 65.11226], - [-22.59725, 65.11237], - [-22.59734, 65.11186], - [-22.59972, 65.11219], - [-22.59954, 65.11142], - [-22.60112, 65.11108], - [-22.60412, 65.11129], - [-22.60464, 65.11182], - [-22.60347, 65.11153], - [-22.60301, 65.11194], - [-22.60516, 65.11235], - [-22.60525, 65.11184], - [-22.60831, 65.11167], - [-22.60823, 65.11218], - [-22.60944, 65.11222], - [-22.60691, 65.1165], - [-22.61123, 65.11611], - [-22.61098, 65.11764], - [-22.61225, 65.1173], - [-22.61705, 65.11769], - [-22.6201, 65.11765], - [-22.61993, 65.11867], - [-22.61815, 65.11837], - [-22.61665, 65.12012], - [-22.60584, 65.11929], - [-22.60757, 65.11985], - [-22.60688, 65.12034], - [-22.6087, 65.12039], - [-22.60861, 65.1209], - [-22.61099, 65.12123], - [-22.61026, 65.12198], - [-22.61205, 65.12216], - [-22.61255, 65.12281], - [-22.61063, 65.1234], - [-22.60944, 65.12323], - [-22.60742, 65.12446], - [-22.60439, 65.12438], - [-22.60414, 65.1259], - [-22.60474, 65.12591], - [-22.6047, 65.12617], - [-22.60409, 65.12615], - [-22.60332, 65.12715], - [-22.60085, 65.12734], - [-22.60094, 65.12683], - [-22.59973, 65.12679], - [-22.59981, 65.12628], - [-22.59501, 65.12589], - [-22.59518, 65.12487], - [-22.59332, 65.12507], - [-22.59315, 65.12429], - [-22.59414, 65.12381], - [-22.59111, 65.12372], - [-22.5912, 65.1232], - [-22.58938, 65.12316], - [-22.59128, 65.1227], - [-22.59002, 65.12113], - [-22.59041, 65.12063], - [-22.58799, 65.12055], - [-22.58807, 65.12004], - [-22.58747, 65.12003], - [-22.58674, 65.12077], - [-22.58552, 65.12074], - [-22.585, 65.11842] - ] - ], - [ - [ - [-22.599672, 65.182618], - [-22.60015, 65.181703], - [-22.60039, 65.18151], - [-22.60214, 65.18015], - [-22.605297, 65.179413], - [-22.607145, 65.179107], - [-22.609108, 65.178748], - [-22.610974, 65.179121], - [-22.613048, 65.179051], - [-22.6137, 65.17844], - [-22.614315, 65.177703], - [-22.615427, 65.177665], - [-22.616548, 65.177196], - [-22.620407, 65.176605], - [-22.622586, 65.177089], - [-22.623577, 65.177007], - [-22.62352, 65.177199], - [-22.624185, 65.177451], - [-22.626702, 65.177122], - [-22.626456, 65.177756], - [-22.627348, 65.177648], - [-22.629543, 65.176876], - [-22.629239, 65.177469], - [-22.632286, 65.176456], - [-22.634167, 65.175937], - [-22.634267, 65.176855], - [-22.635163, 65.176836], - [-22.635927, 65.176299], - [-22.637084, 65.175487], - [-22.6359, 65.17499], - [-22.63747, 65.17478], - [-22.63733, 65.17435], - [-22.63448, 65.17444], - [-22.63439, 65.17495], - [-22.63262, 65.17464], - [-22.63404, 65.1734], - [-22.63525, 65.17345], - [-22.63525, 65.17164], - [-22.6417, 65.17132], - [-22.64174, 65.17106], - [-22.63992, 65.17101], - [-22.63974, 65.17023], - [-22.64286, 65.16981], - [-22.64264, 65.1693], - [-22.64446, 65.16935], - [-22.64458, 65.16858], - [-22.64621, 65.16854], - [-22.64588, 65.16811], - [-22.64709, 65.16814], - [-22.64718, 65.16763], - [-22.6496, 65.1677], - [-22.64864, 65.16614], - [-22.64856, 65.16665], - [-22.64354, 65.16753], - [-22.64487, 65.1656], - [-22.64323, 65.16572], - [-22.6427, 65.1652], - [-22.64454, 65.16512], - [-22.64935, 65.16552], - [-22.64947, 65.16608], - [-22.65048, 65.16606], - [-22.65184, 65.16521], - [-22.65303, 65.16537], - [-22.65464, 65.16298], - [-22.65278, 65.16319], - [-22.65333, 65.16226], - [-22.65234, 65.16215], - [-22.65031, 65.16337], - [-22.64781, 65.16381], - [-22.64772, 65.16432], - [-22.64521, 65.16476], - [-22.64503, 65.16458], - [-22.63912, 65.16484], - [-22.63898, 65.1656], - [-22.63837, 65.16557], - [-22.63789, 65.1648], - [-22.6349, 65.16446], - [-22.63382, 65.16366], - [-22.63555, 65.16422], - [-22.63564, 65.16371], - [-22.63685, 65.16375], - [-22.63698, 65.16298], - [-22.63577, 65.16295], - [-22.63658, 65.16169], - [-22.63902, 65.16163], - [-22.64036, 65.1609], - [-22.64281, 65.16085], - [-22.64273, 65.16135], - [-22.64398, 65.16114], - [-22.64378, 65.16241], - [-22.64707, 65.16084], - [-22.64768, 65.16086], - [-22.64818, 65.16151], - [-22.64698, 65.16148], - [-22.64875, 65.1618], - [-22.64946, 65.16117], - [-22.6513, 65.16109], - [-22.65119, 65.15981], - [-22.65224, 65.15907], - [-22.65505, 65.15864], - [-22.6553, 65.15711], - [-22.65686, 65.1569], - [-22.65601, 65.15841], - [-22.65721, 65.15844], - [-22.65792, 65.15783], - [-22.66089, 65.15829], - [-22.66073, 65.15931], - [-22.6622, 65.15962], - [-22.66229, 65.1609], - [-22.66783, 65.16055], - [-22.66771, 65.16131], - [-22.6665, 65.16128], - [-22.66629, 65.16255], - [-22.66751, 65.16259], - [-22.66664, 65.1641], - [-22.66418, 65.16428], - [-22.66405, 65.16505], - [-22.66223, 65.16499], - [-22.66276, 65.16552], - [-22.66158, 65.16523], - [-22.66207, 65.16601], - [-22.6596, 65.1662], - [-22.65951, 65.16671], - [-22.6583, 65.16668], - [-22.65757, 65.16742], - [-22.65655, 65.16748], - [-22.65627, 65.1679], - [-22.65749, 65.16793], - [-22.65744, 65.16819], - [-22.65558, 65.16839], - [-22.65663, 65.16945], - [-22.65541, 65.16941], - [-22.65395, 65.17091], - [-22.65148, 65.17109], - [-22.65006, 65.17233], - [-22.65127, 65.17236], - [-22.65102, 65.17389], - [-22.64726, 65.17455], - [-22.64648, 65.17556], - [-22.64207, 65.17645], - [-22.64004, 65.17766], - [-22.63757, 65.17786], - [-22.63745, 65.17862], - [-22.63623, 65.17859], - [-22.63615, 65.1791], - [-22.63242, 65.1795], - [-22.63234, 65.18001], - [-22.62926, 65.18018], - [-22.62935, 65.17967], - [-22.62874, 65.17965], - [-22.62853, 65.18093], - [-22.62726, 65.18127], - [-22.62364, 65.18104], - [-22.62148, 65.18303], - [-22.62026, 65.18299], - [-22.62017, 65.18231], - [-22.61792, 65.18241], - [-22.61784, 65.18292], - [-22.61662, 65.18288], - [-22.61655, 65.18339], - [-22.6116, 65.18376], - [-22.61087, 65.1845], - [-22.60968, 65.18435], - [-22.60779, 65.18468], - [-22.60788, 65.18417], - [-22.60666, 65.18413], - [-22.60627, 65.18284], - [-22.60687, 65.18286], - [-22.60692, 65.1826], - [-22.60631, 65.18258], - [-22.60709, 65.18158], - [-22.60522, 65.18178], - [-22.6051, 65.18255], - [-22.599672, 65.182618] - ] - ], - [ - [ - [-22.32855, 64.52786], - [-22.3305, 64.5269], - [-22.33353, 64.52135], - [-22.33533, 64.52128], - [-22.33671, 64.52017], - [-22.34738, 64.52038], - [-22.35205, 64.52092], - [-22.35342, 64.51814], - [-22.35494, 64.51793], - [-22.35627, 64.51708], - [-22.35748, 64.51699], - [-22.35871, 64.51498], - [-22.36024, 64.51477], - [-22.36066, 64.51401], - [-22.36218, 64.5138], - [-22.36172, 64.51302], - [-22.3635, 64.51308], - [-22.36312, 64.51358], - [-22.36455, 64.51388], - [-22.36463, 64.51337], - [-22.36596, 64.51264], - [-22.36654, 64.51266], - [-22.36641, 64.51342], - [-22.36542, 64.51348], - [-22.366499, 64.514374], - [-22.36326, 64.51973], - [-22.36414, 64.52156], - [-22.36612, 64.52213], - [-22.3648, 64.52465], - [-22.36928, 64.52453], - [-22.3697, 64.52557], - [-22.36852, 64.52554], - [-22.36864, 64.52656], - [-22.36801, 64.52679], - [-22.36817, 64.52757], - [-22.36521, 64.52748], - [-22.3636, 64.5282], - [-22.36262, 64.53047], - [-22.36035, 64.531397], - [-22.35991, 64.531327], - [-22.35924, 64.53114], - [-22.358563, 64.531062], - [-22.35742, 64.53134], - [-22.35568, 64.53282], - [-22.35588, 64.53334], - [-22.35411, 64.53328], - [-22.35067, 64.53599], - [-22.34892, 64.53581], - [-22.34767, 64.53615], - [-22.34606, 64.53508], - [-22.34666, 64.53509], - [-22.3467, 64.53484], - [-22.34729, 64.53486], - [-22.34818, 64.53309], - [-22.34648, 64.53266], - [-22.34468, 64.53273], - [-22.3443, 64.53143], - [-22.34312, 64.5314], - [-22.34358, 64.53219], - [-22.34016, 64.5313], - [-22.33956, 64.53308], - [-22.3404, 64.53336], - [-22.34235, 64.5324], - [-22.34214, 64.53367], - [-22.34391, 64.53373], - [-22.34383, 64.53424], - [-22.34624, 64.53406], - [-22.34614, 64.53457], - [-22.34133, 64.53493], - [-22.34141, 64.53442], - [-22.33547, 64.53436], - [-22.33492, 64.53407], - [-22.3319, 64.53436], - [-22.33181, 64.53488], - [-22.33003, 64.53483], - [-22.3303, 64.5333], - [-22.32912, 64.53326], - [-22.32915, 64.533], - [-22.33093, 64.53305], - [-22.33212, 64.5319], - [-22.32823, 64.53144], - [-22.32855, 64.52786] - ] - ], - [ - [ - [-22.4287, 65.07759], - [-22.42879, 65.07708], - [-22.43602, 65.07743], - [-22.43674, 65.07681], - [-22.43195, 65.07641], - [-22.43152, 65.07537], - [-22.43273, 65.07541], - [-22.43312, 65.07491], - [-22.43769, 65.07479], - [-22.43778, 65.07429], - [-22.44129, 65.07503], - [-22.44313, 65.07496], - [-22.44304, 65.07547], - [-22.44425, 65.0755], - [-22.44496, 65.07488], - [-22.448, 65.07485], - [-22.454042, 65.07491], - [-22.453132, 65.074281], - [-22.445673, 65.074096], - [-22.445939, 65.073691], - [-22.44891, 65.07308], - [-22.45157, 65.073413], - [-22.45496, 65.073612], - [-22.457106, 65.074277], - [-22.460573, 65.074371], - [-22.465732, 65.074621], - [-22.469302, 65.075044], - [-22.473465, 65.075214], - [-22.475139, 65.075818], - [-22.477473, 65.076708], - [-22.480426, 65.076585], - [-22.480967, 65.075268], - [-22.485662, 65.074548], - [-22.494125, 65.074288], - [-22.498356, 65.075142], - [-22.497317, 65.076162], - [-22.494519, 65.07623], - [-22.494622, 65.077362], - [-22.500699, 65.07703], - [-22.507179, 65.076296], - [-22.51223, 65.07696], - [-22.51382, 65.0771], - [-22.51583, 65.076], - [-22.51831, 65.07569], - [-22.51387, 65.07803], - [-22.51796, 65.07773], - [-22.51912, 65.07802], - [-22.51922, 65.07751], - [-22.52103, 65.07757], - [-22.51985, 65.07728], - [-22.5218, 65.07657], - [-22.52129, 65.07723], - [-22.52414, 65.07715], - [-22.52275, 65.07813], - [-22.5209, 65.07833], - [-22.52107, 65.07911], - [-22.51682, 65.0809], - [-22.51503, 65.08072], - [-22.51494, 65.08123], - [-22.51188, 65.08139], - [-22.51171, 65.08241], - [-22.50994, 65.0821], - [-22.506416, 65.081652], - [-22.505334, 65.080357], - [-22.509248, 65.079836], - [-22.51045, 65.078252], - [-22.503738, 65.079475], - [-22.500871, 65.079323], - [-22.498219, 65.08001], - [-22.496236, 65.080715], - [-22.498562, 65.081341], - [-22.499867, 65.082205], - [-22.499094, 65.083373], - [-22.497069, 65.083106], - [-22.495541, 65.083471], - [-22.492983, 65.083619], - [-22.490837, 65.083876], - [-22.489309, 65.083464], - [-22.491223, 65.082436], - [-22.495292, 65.081142], - [-22.493266, 65.081435], - [-22.49003, 65.081724], - [-22.489155, 65.082577], - [-22.484958, 65.08287], - [-22.48594, 65.08394], - [-22.46957, 65.0837], - [-22.47177, 65.08505], - [-22.473, 65.08496], - [-22.47346, 65.08587], - [-22.46665, 65.085344], - [-22.460084, 65.085214], - [-22.458428, 65.084411], - [-22.455775, 65.085026], - [-22.451707, 65.085546], - [-22.448853, 65.085746], - [-22.44837, 65.085454], - [-22.4476, 65.085117], - [-22.44838, 65.08451], - [-22.449534, 65.08433], - [-22.450457, 65.084415], - [-22.45179, 65.0847], - [-22.452156, 65.084003], - [-22.451974, 65.083513], - [-22.452084, 65.083007], - [-22.450434, 65.082831], - [-22.44983, 65.08335], - [-22.44894, 65.08359], - [-22.448302, 65.083955], - [-22.447253, 65.083772], - [-22.445605, 65.083489], - [-22.444806, 65.082864], - [-22.442554, 65.082696], - [-22.442007, 65.083004], - [-22.439266, 65.08299], - [-22.437876, 65.083144], - [-22.437309, 65.083513], - [-22.436333, 65.083628], - [-22.436145, 65.083791], - [-22.435552, 65.083916], - [-22.434138, 65.084022], - [-22.433345, 65.083899], - [-22.432724, 65.08384], - [-22.43301, 65.08259], - [-22.43457, 65.08238], - [-22.4341, 65.0816], - [-22.43172, 65.08128], - [-22.43163, 65.08059], - [-22.43004, 65.08045], - [-22.43112, 65.07946], - [-22.43, 65.07891], - [-22.43052, 65.07765], - [-22.4287, 65.07759] - ] - ], - [ - [ - [-19.880104, 64.907694], - [-19.879417, 64.901433], - [-19.88903, 64.900996], - [-19.903449, 64.896627], - [-19.916496, 64.894005], - [-19.934005, 64.891383], - [-19.962501, 64.886866], - [-19.98516, 64.884826], - [-19.99237, 64.88468], - [-19.999923, 64.878268], - [-20.005416, 64.872], - [-20.00988, 64.867188], - [-20.018119, 64.860626], - [-20.015373, 64.855666], - [-20.027389, 64.854062], - [-20.037689, 64.855374], - [-20.055541, 64.851727], - [-20.063095, 64.847496], - [-20.049018, 64.847642], - [-20.065498, 64.841658], - [-20.068931, 64.840345], - [-20.073051, 64.835528], - [-20.071334, 64.830856], - [-20.078544, 64.821217], - [-20.074424, 64.816689], - [-20.082321, 64.811429], - [-20.08747, 64.804707], - [-20.089874, 64.802953], - [-20.09056, 64.795644], - [-20.09571, 64.792573], - [-20.093994, 64.784384], - [-20.09262, 64.776484], - [-20.094337, 64.77546], - [-20.092277, 64.771363], - [-20.09571, 64.77268], - [-20.10395, 64.77107], - [-20.104293, 64.7699], - [-20.111503, 64.767997], - [-20.11425, 64.763606], - [-20.10292, 64.761849], - [-20.09468, 64.761118], - [-20.09674, 64.754529], - [-20.102233, 64.750868], - [-20.099487, 64.748671], - [-20.09777, 64.744277], - [-20.10601, 64.743252], - [-20.113563, 64.745742], - [-20.121803, 64.750868], - [-20.126609, 64.754529], - [-20.129356, 64.75819], - [-20.127983, 64.761703], - [-20.132789, 64.764484], - [-20.135536, 64.765802], - [-20.143775, 64.766533], - [-20.155448, 64.764484], - [-20.167808, 64.763752], - [-20.181198, 64.762728], - [-20.196304, 64.7598], - [-20.212783, 64.756579], - [-20.229263, 64.752479], - [-20.237159, 64.750136], - [-20.247802, 64.746328], - [-20.248832, 64.74252], - [-20.244369, 64.738857], - [-20.248832, 64.73197], - [-20.246772, 64.72772], - [-20.238876, 64.725961], - [-20.233383, 64.723322], - [-20.2248, 64.722443], - [-20.225486, 64.720684], - [-20.227889, 64.718044], - [-20.219993, 64.718631], - [-20.214843, 64.719657], - [-20.206947, 64.719071], - [-20.206947, 64.721563], - [-20.199737, 64.718924], - [-20.20214, 64.717605], - [-20.215187, 64.716578], - [-20.225143, 64.715992], - [-20.231666, 64.715698], - [-20.234756, 64.719657], - [-20.239562, 64.720977], - [-20.244026, 64.722443], - [-20.248489, 64.721856], - [-20.247116, 64.715698], - [-20.248489, 64.712326], - [-20.253295, 64.710859], - [-20.258445, 64.714085], - [-20.264625, 64.717458], - [-20.271148, 64.716138], - [-20.268745, 64.714525], - [-20.265655, 64.709099], - [-20.263595, 64.705578], - [-20.270118, 64.707045], - [-20.276641, 64.709392], - [-20.283164, 64.711592], - [-20.284194, 64.714525], - [-20.295181, 64.713645], - [-20.296211, 64.711886], - [-20.30342, 64.710712], - [-20.30651, 64.707925], - [-20.312347, 64.708952], - [-20.31681, 64.706459], - [-20.32196, 64.705578], - [-20.32917, 64.707192], - [-20.32711, 64.709979], - [-20.331916, 64.713205], - [-20.337066, 64.712912], - [-20.341186, 64.710126], - [-20.341529, 64.707779], - [-20.352859, 64.706752], - [-20.361442, 64.706752], - [-20.361442, 64.710419], - [-20.363845, 64.712765], - [-20.368308, 64.713352], - [-20.372085, 64.715698], - [-20.379982, 64.715845], - [-20.388908, 64.712765], - [-20.389251, 64.710272], - [-20.394744, 64.706899], - [-20.400581, 64.703965], - [-20.409164, 64.701471], - [-20.421867, 64.700591], - [-20.434226, 64.700004], - [-20.445556, 64.69883], - [-20.454482, 64.700297], - [-20.461349, 64.701764], - [-20.469245, 64.701177], - [-20.475425, 64.698243], - [-20.483665, 64.697363], - [-20.494995, 64.694721], - [-20.504264, 64.691346], - [-20.509757, 64.684594], - [-20.52349, 64.680189], - [-20.548553, 64.675049], - [-20.544433, 64.668293], - [-20.53688, 64.661976], - [-20.539283, 64.65507], - [-20.547523, 64.650219], - [-20.556793, 64.647867], - [-20.567779, 64.644486], - [-20.574645, 64.640957], - [-20.577735, 64.635957], - [-20.588035, 64.631545], - [-20.597992, 64.627867], - [-20.597305, 64.624336], - [-20.608291, 64.625366], - [-20.605545, 64.621247], - [-20.611381, 64.618451], - [-20.615158, 64.620364], - [-20.619621, 64.622129], - [-20.626487, 64.623454], - [-20.629234, 64.622718], - [-20.620651, 64.617862], - [-20.620307, 64.616243], - [-20.620651, 64.613594], - [-20.622711, 64.611239], - [-20.627174, 64.611386], - [-20.629234, 64.612711], - [-20.637817, 64.613888], - [-20.64537, 64.615654], - [-20.647087, 64.613888], - [-20.645713, 64.610061], - [-20.65052, 64.608147], - [-20.646743, 64.607558], - [-20.64331, 64.607706], - [-20.637817, 64.604319], - [-20.639533, 64.602994], - [-20.640563, 64.602258], - [-20.651893, 64.605939], - [-20.661163, 64.607411], - [-20.664253, 64.60108], - [-20.670776, 64.596662], - [-20.663223, 64.5946], - [-20.653266, 64.593274], - [-20.650176, 64.591506], - [-20.65155, 64.588265], - [-20.64125, 64.590623], - [-20.637817, 64.587381], - [-20.63198, 64.585466], - [-20.624771, 64.585613], - [-20.625801, 64.583108], - [-20.627174, 64.581487], - [-20.619278, 64.580898], - [-20.618591, 64.582814], - [-20.612068, 64.581635], - [-20.604858, 64.581635], - [-20.604171, 64.579424], - [-20.601425, 64.580751], - [-20.597992, 64.577361], - [-20.593528, 64.577361], - [-20.595245, 64.580456], - [-20.581512, 64.583551], - [-20.572586, 64.585613], - [-20.569839, 64.583698], - [-20.564346, 64.583845], - [-20.560913, 64.585613], - [-20.558166, 64.588413], - [-20.557136, 64.591212], - [-20.551986, 64.591801], - [-20.551643, 64.587971], - [-20.551986, 64.583845], - [-20.558166, 64.580603], - [-20.566062, 64.57854], - [-20.572242, 64.576182], - [-20.573272, 64.572349], - [-20.569496, 64.57117], - [-20.565719, 64.572055], - [-20.561943, 64.570728], - [-20.566406, 64.568074], - [-20.565032, 64.566452], - [-20.616836, 64.559497], - [-20.616836, 64.561635], - [-20.622158, 64.561856], - [-20.627651, 64.560529], - [-20.634346, 64.560382], - [-20.638809, 64.561193], - [-20.642242, 64.562962], - [-20.642242, 64.565248], - [-20.642414, 64.567755], - [-20.646018, 64.567902], - [-20.64825, 64.567976], - [-20.650482, 64.566428], - [-20.652713, 64.565764], - [-20.653915, 64.564142], - [-20.655632, 64.56193], - [-20.65958, 64.560898], - [-20.665245, 64.560234], - [-20.67228, 64.557827], - [-20.674964, 64.557978], - [-20.678724, 64.559201], - [-20.682445, 64.561488], - [-20.683156, 64.563025], - [-20.682155, 64.563923], - [-20.681585, 64.564615], - [-20.68326, 64.56614], - [-20.69065, 64.568934], - [-20.69271, 64.568123], - [-20.694942, 64.567902], - [-20.696315, 64.566354], - [-20.6958, 64.563773], - [-20.695084, 64.558895], - [-20.700805, 64.559302], - [-20.701711, 64.562242], - [-20.7047, 64.560005], - [-20.708433, 64.561597], - [-20.714137, 64.564099], - [-20.726993, 64.567931], - [-20.728999, 64.567316], - [-20.724296, 64.564068], - [-20.725841, 64.563921], - [-20.728244, 64.56569], - [-20.734939, 64.56569], - [-20.736312, 64.565469], - [-20.735282, 64.563626], - [-20.733051, 64.561561], - [-20.734424, 64.558169], - [-20.737342, 64.557727], - [-20.741291, 64.558759], - [-20.74438, 64.560087], - [-20.74747, 64.558391], - [-20.750217, 64.557801], - [-20.749874, 64.556031], - [-20.751419, 64.556178], - [-20.756912, 64.558169], - [-20.758457, 64.556621], - [-20.759315, 64.556694], - [-20.75777, 64.554482], - [-20.765666, 64.556694], - [-20.76601, 64.556104], - [-20.768756, 64.555441], - [-20.762405, 64.552712], - [-20.760688, 64.551236], - [-20.75262, 64.549245], - [-20.755023, 64.54895], - [-20.761375, 64.547474], - [-20.763778, 64.547179], - [-20.768413, 64.545113], - [-20.773563, 64.543638], - [-20.776996, 64.542752], - [-20.778713, 64.540908], - [-20.781288, 64.540465], - [-20.780258, 64.539948], - [-20.782318, 64.538546], - [-20.780601, 64.536185], - [-20.824049, 64.528863], - [-20.90922, 64.492929], - [-21.182677, 64.350751], - [-21.251292, 64.373794], - [-21.307806, 64.383318], - [-21.355387, 64.384243], - [-21.356743, 64.385455], - [-21.357592, 64.386418], - [-21.359262, 64.387091], - [-21.360041, 64.387188], - [-21.360374, 64.386803], - [-21.362489, 64.387091], - [-21.364715, 64.388102], - [-21.365717, 64.387958], - [-21.36772, 64.388054], - [-21.369612, 64.388583], - [-21.371616, 64.388487], - [-21.375178, 64.387909], - [-21.378851, 64.388535], - [-21.380297, 64.388342], - [-21.381856, 64.388679], - [-21.383748, 64.388631], - [-21.388311, 64.388679], - [-21.390871, 64.388294], - [-21.392986, 64.387765], - [-21.394544, 64.388198], - [-21.399553, 64.388342], - [-21.402001, 64.387669], - [-21.40278, 64.387717], - [-21.405452, 64.386899], - [-21.407789, 64.386225], - [-21.408679, 64.3856], - [-21.409515, 64.385007], - [-21.411595, 64.384598], - [-21.41358, 64.384026], - [-21.414241, 64.384761], - [-21.415943, 64.384925], - [-21.417361, 64.38423], - [-21.418117, 64.384108], - [-21.419535, 64.383535], - [-21.420008, 64.382595], - [-21.420859, 64.382227], - [-21.420575, 64.381492], - [-21.420481, 64.381001], - [-21.420197, 64.380265], - [-21.420953, 64.38002], - [-21.421237, 64.37957], - [-21.422343, 64.379433], - [-21.423215, 64.378985], - [-21.423543, 64.378442], - [-21.423979, 64.377923], - [-21.42447, 64.377663], - [-21.424634, 64.377074], - [-21.425725, 64.376035], - [-21.426762, 64.37528], - [-21.427525, 64.374856], - [-21.428289, 64.374337], - [-21.429708, 64.374195], - [-21.430908, 64.373558], - [-21.431072, 64.372897], - [-21.431999, 64.372614], - [-21.43249, 64.372284], - [-21.433799, 64.372048], - [-21.435, 64.371458], - [-21.437237, 64.37167], - [-21.438328, 64.3716], - [-21.439146, 64.371411], - [-21.440946, 64.371481], - [-21.443074, 64.371529], - [-21.444002, 64.371198], - [-21.446238, 64.371128], - [-21.448148, 64.370962], - [-21.450003, 64.370915], - [-21.451039, 64.371434], - [-21.451967, 64.371529], - [-21.453003, 64.371387], - [-21.45464, 64.37108], - [-21.455077, 64.370703], - [-21.455349, 64.370349], - [-21.456604, 64.370396], - [-21.456986, 64.370561], - [-21.457913, 64.370585], - [-21.458677, 64.370868], - [-21.461296, 64.370892], - [-21.462005, 64.371458], - [-21.465824, 64.371529], - [-21.466752, 64.371765], - [-21.467243, 64.372567], - [-21.466533, 64.373133], - [-21.466315, 64.374195], - [-21.464624, 64.375139], - [-21.462824, 64.375917], - [-21.457968, 64.376083], - [-21.45655, 64.376248], - [-21.453658, 64.376201], - [-21.451367, 64.376059], - [-21.448966, 64.376035], - [-21.447875, 64.376602], - [-21.443892, 64.376672], - [-21.441546, 64.378041], - [-21.439091, 64.378371], - [-21.437182, 64.379291], - [-21.435109, 64.379409], - [-21.430963, 64.379669], - [-21.428998, 64.379834], - [-21.428235, 64.38073], - [-21.427253, 64.381273], - [-21.425943, 64.381462], - [-21.425016, 64.382004], - [-21.424034, 64.382594], - [-21.423979, 64.384622], - [-21.424034, 64.386698], - [-21.424798, 64.387146], - [-21.426162, 64.38724], - [-21.427034, 64.387877], - [-21.426543, 64.38849], - [-21.42578, 64.388608], - [-21.426325, 64.389315], - [-21.428235, 64.390825], - [-21.430581, 64.390896], - [-21.432436, 64.391438], - [-21.433361, 64.391966], - [-21.437014, 64.392903], - [-21.438817, 64.393902], - [-21.440129, 64.394498], - [-21.440197, 64.394636], - [-21.440007, 64.394891], - [-21.440267, 64.395006], - [-21.441468, 64.394727], - [-21.441863, 64.394689], - [-21.44385, 64.393797], - [-21.444439, 64.39361], - [-21.444346, 64.393565], - [-21.445353, 64.393148], - [-21.445652, 64.39329], - [-21.445441, 64.393375], - [-21.445429, 64.393446], - [-21.445572, 64.393493], - [-21.445664, 64.393606], - [-21.445538, 64.393734], - [-21.445105, 64.393864], - [-21.442392, 64.395017], - [-21.44049, 64.396077], - [-21.441957, 64.396847], - [-21.444051, 64.397046], - [-21.445981, 64.397157], - [-21.448703, 64.397032], - [-21.450368, 64.397011], - [-21.452915, 64.396592], - [-21.455855, 64.396933], - [-21.458357, 64.397077], - [-21.46118, 64.397069], - [-21.461845, 64.397439], - [-21.463245, 64.396867], - [-21.463861, 64.396625], - [-21.463861, 64.396979], - [-21.464208, 64.397085], - [-21.465071, 64.397109], - [-21.465017, 64.396612], - [-21.465092, 64.396508], - [-21.465282, 64.396456], - [-21.465556, 64.396459], - [-21.465888, 64.396524], - [-21.465947, 64.396618], - [-21.46591, 64.396834], - [-21.465705, 64.397053], - [-21.468028, 64.3974], - [-21.469003, 64.397463], - [-21.470548, 64.397443], - [-21.47122, 64.397206], - [-21.471848, 64.396732], - [-21.473002, 64.395836], - [-21.473326, 64.395415], - [-21.474547, 64.395643], - [-21.477513, 64.395691], - [-21.480036, 64.395871], - [-21.481334, 64.396552], - [-21.483373, 64.396712], - [-21.48532, 64.396712], - [-21.487452, 64.396271], - [-21.488935, 64.396512], - [-21.490974, 64.396191], - [-21.494126, 64.39551], - [-21.496166, 64.395029], - [-21.497741, 64.394589], - [-21.49839, 64.393988], - [-21.501542, 64.393988], - [-21.503303, 64.393868], - [-21.504327, 64.39392], - [-21.504666, 64.394986], - [-21.505634, 64.395195], - [-21.508971, 64.395091], - [-21.510519, 64.39484], - [-21.512406, 64.395028], - [-21.515357, 64.395195], - [-21.517534, 64.39484], - [-21.520581, 64.394129], - [-21.521355, 64.393773], - [-21.522806, 64.393773], - [-21.524354, 64.393355], - [-21.527257, 64.392707], - [-21.529434, 64.391976], - [-21.531175, 64.391348], - [-21.532143, 64.390888], - [-21.5334, 64.390867], - [-21.534803, 64.39139], - [-21.536158, 64.391871], - [-21.537948, 64.392289], - [-21.540947, 64.392247], - [-21.54264, 64.391913], - [-21.543704, 64.39208], - [-21.544962, 64.392645], - [-21.547768, 64.394296], - [-21.549654, 64.395132], - [-21.551734, 64.395488], - [-21.555266, 64.396638], - [-21.556959, 64.396951], - [-21.559136, 64.396638], - [-21.56078, 64.396303], - [-21.563151, 64.396575], - [-21.565086, 64.397118], - [-21.566295, 64.397097], - [-21.567843, 64.396784], - [-21.569294, 64.396888], - [-21.571374, 64.397516], - [-21.572874, 64.397829], - [-21.574374, 64.397557], - [-21.575631, 64.397495], - [-21.57655, 64.397766], - [-21.578002, 64.398602], - [-21.579598, 64.399418], - [-21.582694, 64.400797], - [-21.583267, 64.401024], - [-21.585525, 64.401038], - [-21.587707, 64.401788], - [-21.591226, 64.403523], - [-21.592813, 64.404101], - [-21.594945, 64.40423], - [-21.597275, 64.403823], - [-21.598266, 64.403716], - [-21.600001, 64.40393], - [-21.601637, 64.403887], - [-21.603422, 64.403566], - [-21.605009, 64.403073], - [-21.606595, 64.403052], - [-21.608182, 64.403352], - [-21.609421, 64.403416], - [-21.610958, 64.403287], - [-21.613784, 64.403416], - [-21.614726, 64.402945], - [-21.617304, 64.402538], - [-21.619634, 64.402345], - [-21.620476, 64.402859], - [-21.621171, 64.402902], - [-21.622707, 64.402302], - [-21.625087, 64.402388], - [-21.626723, 64.401917], - [-21.627814, 64.402002], - [-21.628111, 64.402581], - [-21.6294, 64.402559], - [-21.630441, 64.402217], - [-21.631681, 64.402281], - [-21.632176, 64.402538], - [-21.633912, 64.402559], - [-21.634556, 64.402238], - [-21.635696, 64.402409], - [-21.637332, 64.402559], - [-21.638919, 64.40288], - [-21.640406, 64.403095], - [-21.641348, 64.403159], - [-21.64348, 64.402538], - [-21.646058, 64.401917], - [-21.648537, 64.401167], - [-21.650173, 64.401124], - [-21.652304, 64.400203], - [-21.654783, 64.400246], - [-21.656518, 64.399453], - [-21.657907, 64.399346], - [-21.658601, 64.398875], - [-21.659691, 64.39881], - [-21.660286, 64.398082], - [-21.662517, 64.397632], - [-21.663657, 64.397675], - [-21.664302, 64.39729], - [-21.665442, 64.397375], - [-21.665789, 64.397697], - [-21.66688, 64.397654], - [-21.667872, 64.397418], - [-21.668863, 64.396904], - [-21.669706, 64.396475], - [-21.670945, 64.395897], - [-21.67273, 64.39519], - [-21.673783, 64.394879], - [-21.675297, 64.394603], - [-21.675937, 64.393798], - [-21.677509, 64.393471], - [-21.678091, 64.393622], - [-21.679022, 64.393596], - [-21.679313, 64.393169], - [-21.681292, 64.392942], - [-21.681758, 64.392263], - [-21.681874, 64.391408], - [-21.682515, 64.391232], - [-21.682456, 64.390527], - [-21.683504, 64.390376], - [-21.684086, 64.390703], - [-21.685483, 64.390779], - [-21.686589, 64.390527], - [-21.686706, 64.390049], - [-21.686415, 64.389822], - [-21.687229, 64.38947], - [-21.687812, 64.38937], - [-21.688685, 64.388942], - [-21.689616, 64.388816], - [-21.690489, 64.38859], - [-21.69177, 64.388439], - [-21.692643, 64.388187], - [-21.693283, 64.388388], - [-21.693167, 64.388816], - [-21.693341, 64.389269], - [-21.693109, 64.389671], - [-21.693247, 64.389782], - [-21.693516, 64.389999], - [-21.694913, 64.390024], - [-21.696427, 64.390175], - [-21.696427, 64.389495], - [-21.697067, 64.389068], - [-21.698115, 64.38869], - [-21.699337, 64.388061], - [-21.700676, 64.387508], - [-21.701665, 64.387533], - [-21.702364, 64.386677], - [-21.702771, 64.386325], - [-21.702771, 64.385671], - [-21.703062, 64.384966], - [-21.704285, 64.384438], - [-21.705333, 64.383909], - [-21.70673, 64.383733], - [-21.708534, 64.383758], - [-21.708709, 64.384337], - [-21.709582, 64.384362], - [-21.709757, 64.384563], - [-21.71063, 64.384563], - [-21.711154, 64.384136], - [-21.712376, 64.384035], - [-21.713133, 64.383708], - [-21.715286, 64.383632], - [-21.716567, 64.383456], - [-21.718022, 64.383406], - [-21.71907, 64.383053], - [-21.720292, 64.382928], - [-21.721107, 64.382626], - [-21.721806, 64.382399], - [-21.722097, 64.381946], - [-21.722039, 64.381468], - [-21.721166, 64.381367], - [-21.720467, 64.381342], - [-21.720351, 64.380763], - [-21.721515, 64.380914], - [-21.722446, 64.38104], - [-21.722912, 64.380688], - [-21.723203, 64.380386], - [-21.724425, 64.380033], - [-21.725182, 64.380033], - [-21.725124, 64.380486], - [-21.725066, 64.380864], - [-21.726754, 64.380814], - [-21.728907, 64.380713], - [-21.730479, 64.380084], - [-21.731527, 64.37963], - [-21.731643, 64.379152], - [-21.733331, 64.378926], - [-21.734728, 64.378674], - [-21.735194, 64.378095], - [-21.734379, 64.377843], - [-21.733739, 64.377592], - [-21.733564, 64.376912], - [-21.733506, 64.376157], - [-21.733681, 64.375502], - [-21.734263, 64.375225], - [-21.733913, 64.374697], - [-21.734495, 64.374319], - [-21.736242, 64.374269], - [-21.736358, 64.373866], - [-21.736416, 64.373564], - [-21.737464, 64.373388], - [-21.737872, 64.372909], - [-21.737639, 64.37238], - [-21.738279, 64.372028], - [-21.738861, 64.371827], - [-21.738919, 64.371096], - [-21.739385, 64.370744], - [-21.73921, 64.369687], - [-21.739851, 64.369007], - [-21.740025, 64.368352], - [-21.741422, 64.367597], - [-21.741713, 64.367244], - [-21.743402, 64.367269], - [-21.744682, 64.366917], - [-21.745148, 64.366514], - [-21.745963, 64.366363], - [-21.746545, 64.365834], - [-21.747534, 64.365557], - [-21.747534, 64.365003], - [-21.747767, 64.364474], - [-21.74884, 64.364149], - [-21.749733, 64.363647], - [-21.750096, 64.363164], - [-21.750464, 64.363184], - [-21.751108, 64.363441], - [-21.751631, 64.363554], - [-21.752642, 64.363639], - [-21.754213, 64.363639], - [-21.755613, 64.36353], - [-21.756677, 64.363616], - [-21.757437, 64.363712], - [-21.75807, 64.364197], - [-21.759438, 64.364615], - [-21.760074, 64.364723], - [-21.760667, 64.364789], - [-21.761578, 64.364809], - [-21.762024, 64.36466], - [-21.762175, 64.364551], - [-21.762435, 64.364436], - [-21.762464, 64.364312], - [-21.762247, 64.363991], - [-21.762425, 64.363925], - [-21.762775, 64.364179], - [-21.763099, 64.364195], - [-21.764371, 64.364132], - [-21.766338, 64.36386], - [-21.767856, 64.363459], - [-21.770294, 64.362761], - [-21.77148, 64.362445], - [-21.773181, 64.36189], - [-21.774915, 64.361107], - [-21.775512, 64.360806], - [-21.775287, 64.360648], - [-21.774144, 64.3603], - [-21.773801, 64.360261], - [-21.773393, 64.360166], - [-21.773318, 64.359998], - [-21.773452, 64.359975], - [-21.774643, 64.360328], - [-21.775126, 64.360479], - [-21.775877, 64.360614], - [-21.776931, 64.360022], - [-21.776912, 64.359926], - [-21.776772, 64.359839], - [-21.776874, 64.359748], - [-21.777045, 64.359694], - [-21.777379, 64.359697], - [-21.777524, 64.359664], - [-21.778042, 64.359352], - [-21.778407, 64.359144], - [-21.778679, 64.358926], - [-21.778698, 64.35879], - [-21.778641, 64.358647], - [-21.778332, 64.358588], - [-21.777689, 64.358517], - [-21.777543, 64.358454], - [-21.777518, 64.358298], - [-21.776843, 64.358279], - [-21.774851, 64.357684], - [-21.780523, 64.353853], - [-21.782927, 64.354515], - [-21.78418, 64.353539], - [-21.785632, 64.353471], - [-21.786481, 64.353681], - [-21.787314, 64.353659], - [-21.788642, 64.353253], - [-21.78941, 64.352872], - [-21.789662, 64.352413], - [-21.789705, 64.351997], - [-21.789554, 64.351661], - [-21.789687, 64.35134], - [-21.790819, 64.350792], - [-21.791191, 64.350244], - [-21.791191, 64.349922], - [-21.792307, 64.349374], - [-21.792084, 64.348795], - [-21.792754, 64.348376], - [-21.793572, 64.3477], - [-21.79387, 64.346991], - [-21.795135, 64.346637], - [-21.796549, 64.346057], - [-21.795953, 64.34509], - [-21.797367, 64.344929], - [-21.79826, 64.344575], - [-21.798558, 64.344059], - [-21.797293, 64.344188], - [-21.797516, 64.343705], - [-21.798558, 64.343351], - [-21.799004, 64.342867], - [-21.798702, 64.342411], - [-21.798762, 64.341991], - [-21.799066, 64.341649], - [-21.800522, 64.341518], - [-21.80125, 64.341229], - [-21.802099, 64.341097], - [-21.802463, 64.340388], - [-21.802888, 64.339364], - [-21.804223, 64.339206], - [-21.805133, 64.338917], - [-21.806831, 64.338733], - [-21.807802, 64.338549], - [-21.809743, 64.338391], - [-21.811503, 64.338155], - [-21.811746, 64.337708], - [-21.812838, 64.337524], - [-21.813687, 64.337446], - [-21.814172, 64.337524], - [-21.814354, 64.337367], - [-21.813687, 64.337104], - [-21.811988, 64.337235], - [-21.811442, 64.336815], - [-21.812716, 64.336684], - [-21.813626, 64.3365], - [-21.814112, 64.335633], - [-21.815143, 64.336053], - [-21.818237, 64.336027], - [-21.81939, 64.33558], - [-21.820118, 64.334871], - [-21.820906, 64.334214], - [-21.821695, 64.333636], - [-21.83074, 64.33069], - [-21.83338, 64.33078], - [-21.83352, 64.33002], - [-21.84075, 64.32937], - [-21.84306, 64.32805], - [-21.850219, 64.32713], - [-21.85244, 64.32684], - [-21.85263, 64.32582], - [-21.85415, 64.32562], - [-21.85454, 64.32512], - [-21.85571, 64.32516], - [-21.8559, 64.32414], - [-21.85766, 64.3242], - [-21.85805, 64.3237], - [-21.85957, 64.3235], - [-21.860985, 64.322558], - [-21.86169, 64.32165], - [-21.86772, 64.32097], - [-21.86787, 64.3202], - [-21.87334, 64.31937], - [-21.87344, 64.31886], - [-21.87461, 64.3189], - [-21.87421, 64.31786], - [-21.87539, 64.3179], - [-21.87553, 64.31714], - [-21.8791, 64.31701], - [-21.8798, 64.3164], - [-21.88157, 64.31645], - [-21.883839, 64.315417], - [-21.885094, 64.314367], - [-21.885778, 64.314043], - [-21.88969, 64.31405], - [-21.89076, 64.31306], - [-21.8923, 64.312344], - [-21.894202, 64.312382], - [-21.895006, 64.312341], - [-21.895833, 64.311987], - [-21.89638, 64.31146], - [-21.897772, 64.310939], - [-21.899074, 64.310316], - [-21.899798, 64.30964], - [-21.901305, 64.308818], - [-21.903145, 64.308744], - [-21.90383, 64.30787], - [-21.90559, 64.30793], - [-21.90752, 64.3071], - [-21.908541, 64.30698], - [-21.909924, 64.307013], - [-21.911275, 64.307079], - [-21.912394, 64.307244], - [-21.913284, 64.307573], - [-21.91391, 64.30754], - [-21.914931, 64.306816], - [-21.915622, 64.306288], - [-21.916907, 64.305992], - [-21.91829, 64.306223], - [-21.920003, 64.306288], - [-21.920563, 64.306519], - [-21.922803, 64.306288], - [-21.924911, 64.306091], - [-21.925701, 64.30586], - [-21.925965, 64.305037], - [-21.926492, 64.304246], - [-21.927513, 64.304115], - [-21.929522, 64.304148], - [-21.932124, 64.304213], - [-21.933738, 64.304444], - [-21.934726, 64.305037], - [-21.936373, 64.305564], - [-21.938053, 64.305432], - [-21.939404, 64.305169], - [-21.94082, 64.304444], - [-21.942006, 64.30395], - [-21.94273, 64.303719], - [-21.944377, 64.303654], - [-21.945267, 64.304181], - [-21.945958, 64.304543], - [-21.947243, 64.304444], - [-21.948989, 64.304049], - [-21.949281, 64.303768], - [-21.949213, 64.303134], - [-21.949537, 64.302486], - [-21.950657, 64.302081], - [-21.95241, 64.302216], - [-21.953675, 64.302536], - [-21.9558, 64.302738], - [-21.957351, 64.302671], - [-21.958481, 64.302469], - [-21.959982, 64.302131], - [-21.961247, 64.302317], - [-21.96268, 64.302199], - [-21.964383, 64.302064], - [-21.965125, 64.302519], - [-21.965868, 64.30262], - [-21.966829, 64.302232], - [-21.967858, 64.301878], - [-21.969864, 64.301878], - [-21.97236, 64.301575], - [-21.973001, 64.301811], - [-21.972832, 64.302283], - [-21.972124, 64.302519], - [-21.972023, 64.30289], - [-21.972934, 64.303076], - [-21.974097, 64.30289], - [-21.975109, 64.30289], - [-21.975446, 64.30311], - [-21.976796, 64.303244], - [-21.977824, 64.302991], - [-21.978465, 64.302772], - [-21.979359, 64.301389], - [-21.981433, 64.300664], - [-21.983794, 64.300091], - [-21.985936, 64.299416], - [-21.988112, 64.298944], - [-21.990506, 64.298472], - [-21.99136, 64.298454], - [-21.991855, 64.298886], - [-21.992129, 64.299414], - [-21.993057, 64.299898], - [-21.994322, 64.299983], - [-21.995502, 64.299667], - [-21.997526, 64.299287], - [-21.997948, 64.299983], - [-21.996556, 64.300615], - [-21.997273, 64.301184], - [-21.998685, 64.301479], - [-22.001363, 64.30207], - [-22.003576, 64.302512], - [-22.004862, 64.302555], - [-22.005726, 64.302217], - [-22.00678, 64.301732], - [-22.007687, 64.301501], - [-22.008382, 64.300995], - [-22.009457, 64.301142], - [-22.009373, 64.301585], - [-22.008488, 64.301859], - [-22.008656, 64.30247], - [-22.010343, 64.302997], - [-22.012219, 64.303524], - [-22.013062, 64.303925], - [-22.015065, 64.304262], - [-22.01633, 64.304452], - [-22.017594, 64.304388], - [-22.019829, 64.303545], - [-22.021326, 64.303545], - [-22.021958, 64.303651], - [-22.023328, 64.303313], - [-22.024825, 64.303039], - [-22.025668, 64.303124], - [-22.025795, 64.302639], - [-22.026722, 64.302555], - [-22.02883, 64.302386], - [-22.030475, 64.302302], - [-22.030812, 64.302765], - [-22.032287, 64.30285], - [-22.032688, 64.303208], - [-22.032815, 64.303714], - [-22.033679, 64.303946], - [-22.035555, 64.304831], - [-22.03682, 64.304578], - [-22.038696, 64.30441], - [-22.039645, 64.304599], - [-22.039919, 64.30481], - [-22.039855, 64.305084], - [-22.038759, 64.305274], - [-22.04077, 64.306135], - [-22.042218, 64.306798], - [-22.043385, 64.308175], - [-22.043666, 64.309658], - [-22.043385, 64.310756], - [-22.041531, 64.311614], - [-22.042304, 64.312332], - [-22.042713, 64.312537], - [-22.043252, 64.312731], - [-22.044095, 64.313008], - [-22.045042, 64.313266], - [-22.04548, 64.313335], - [-22.046121, 64.313387], - [-22.046559, 64.3128], - [-22.047824, 64.312631], - [-22.048414, 64.312884], - [-22.049396, 64.312879], - [-22.051282, 64.312409], - [-22.052528, 64.31233], - [-22.052806, 64.312926], - [-22.05279, 64.31333], - [-22.05261, 64.313834], - [-22.052857, 64.314407], - [-22.054708, 64.315309], - [-22.05991, 64.31682], - [-22.063948, 64.317706], - [-22.067124, 64.31812], - [-22.068718, 64.318209], - [-22.069097, 64.318157], - [-22.06951, 64.318064], - [-22.069982, 64.317996], - [-22.074349, 64.317572], - [-22.074919, 64.317496], - [-22.075494, 64.317393], - [-22.076116, 64.317261], - [-22.078814, 64.316429], - [-22.078461, 64.31585], - [-22.078242, 64.315346], - [-22.07828, 64.315301], - [-22.078655, 64.31504], - [-22.078795, 64.31492], - [-22.078857, 64.314818], - [-22.078724, 64.314536], - [-22.078711, 64.314489], - [-22.078722, 64.31444], - [-22.078767, 64.314385], - [-22.078845, 64.314355], - [-22.078739, 64.314187], - [-22.079144, 64.314142], - [-22.07952, 64.31482], - [-22.079476, 64.314824], - [-22.079797, 64.315419], - [-22.079875, 64.315454], - [-22.079972, 64.315477], - [-22.080098, 64.315482], - [-22.080853, 64.315445], - [-22.08087, 64.31542], - [-22.081092, 64.315402], - [-22.080822, 64.314893], - [-22.081085, 64.314867], - [-22.081422, 64.31546], - [-22.081554, 64.315512], - [-22.08167, 64.315547], - [-22.081863, 64.315586], - [-22.082084, 64.315599], - [-22.082363, 64.315552], - [-22.082838, 64.315451], - [-22.08368, 64.315189], - [-22.084251, 64.31507], - [-22.084283, 64.315037], - [-22.084232, 64.314977], - [-22.084389, 64.314889], - [-22.084535, 64.314712], - [-22.084572, 64.314569], - [-22.084771, 64.314256], - [-22.084767, 64.314186], - [-22.083073, 64.313998], - [-22.083034, 64.313994], - [-22.08232, 64.313915], - [-22.082293, 64.313912], - [-22.082004, 64.31388], - [-22.080962, 64.31416], - [-22.080809, 64.31406], - [-22.081925, 64.313757], - [-22.083992, 64.313977], - [-22.084076, 64.313844], - [-22.08419, 64.313857], - [-22.08432, 64.313724], - [-22.084389, 64.313689], - [-22.084497, 64.313606], - [-22.084525, 64.313555], - [-22.084529, 64.313498], - [-22.080955, 64.313115], - [-22.080903, 64.313072], - [-22.078404, 64.313365], - [-22.078336, 64.31325], - [-22.078234, 64.313258], - [-22.078088, 64.313024], - [-22.075798, 64.313061], - [-22.075773, 64.312829], - [-22.08069, 64.312781], - [-22.081794, 64.312897], - [-22.082318, 64.312848], - [-22.085128, 64.313143], - [-22.087046, 64.312958], - [-22.087514, 64.312974], - [-22.088002, 64.312925], - [-22.088441, 64.312787], - [-22.088696, 64.312609], - [-22.088894, 64.312394], - [-22.08888, 64.312244], - [-22.088759, 64.312102], - [-22.088476, 64.312106], - [-22.088151, 64.312011], - [-22.089149, 64.311498], - [-22.090331, 64.311111], - [-22.091081, 64.310706], - [-22.09118, 64.31044], - [-22.09173, 64.310075], - [-22.091641, 64.309937], - [-22.09156, 64.309664], - [-22.09249, 64.30907], - [-22.092685, 64.308709], - [-22.093848, 64.308331], - [-22.094383, 64.307899], - [-22.095117, 64.30765], - [-22.095586, 64.307619], - [-22.095598, 64.307753], - [-22.094826, 64.308182], - [-22.094887, 64.308414], - [-22.095209, 64.308746], - [-22.09493, 64.30929], - [-22.094286, 64.309589], - [-22.09486, 64.310753], - [-22.094893, 64.311181], - [-22.095019, 64.311498], - [-22.095402, 64.311828], - [-22.095607, 64.311936], - [-22.09619, 64.31215], - [-22.096948, 64.312371], - [-22.097139, 64.312535], - [-22.097097, 64.312695], - [-22.096705, 64.312976], - [-22.09528, 64.31391], - [-22.094804, 64.314151], - [-22.094345, 64.314309], - [-22.093858, 64.314673], - [-22.093493, 64.314982], - [-22.093075, 64.315358], - [-22.093542, 64.315658], - [-22.094183, 64.315973], - [-22.094593, 64.316162], - [-22.094767, 64.316246], - [-22.094907, 64.316264], - [-22.095502, 64.316037], - [-22.095754, 64.315908], - [-22.095875, 64.315876], - [-22.095998, 64.315907], - [-22.096017, 64.315965], - [-22.096012, 64.316042], - [-22.096176, 64.316096], - [-22.095679, 64.316399], - [-22.09547, 64.316338], - [-22.095363, 64.316406], - [-22.095349, 64.316483], - [-22.095451, 64.31655], - [-22.095688, 64.316654], - [-22.095895, 64.31684], - [-22.096623, 64.317084], - [-22.096854, 64.316926], - [-22.097975, 64.317256], - [-22.098127, 64.317162], - [-22.100344, 64.316], - [-22.099318, 64.314982], - [-22.099715, 64.314903], - [-22.10046, 64.315635], - [-22.102064, 64.314967], - [-22.103021, 64.314796], - [-22.108696, 64.312254], - [-22.109813, 64.312034], - [-22.107366, 64.313494], - [-22.104926, 64.314975], - [-22.098337, 64.318201], - [-22.094559, 64.319914], - [-22.092687, 64.320908], - [-22.092746, 64.320502], - [-22.093611, 64.319884], - [-22.094898, 64.31924], - [-22.095717, 64.318921], - [-22.096234, 64.318159], - [-22.096103, 64.318061], - [-22.094768, 64.317658], - [-22.094508, 64.317636], - [-22.093471, 64.317355], - [-22.093037, 64.3173], - [-22.091321, 64.317449], - [-22.089299, 64.317856], - [-22.086185, 64.319755], - [-22.085307, 64.320419], - [-22.085092, 64.320754], - [-22.084201, 64.321758], - [-22.084738, 64.321945], - [-22.08489, 64.322368], - [-22.084678, 64.322737], - [-22.08432, 64.323075], - [-22.083994, 64.323306], - [-22.083138, 64.323542], - [-22.082738, 64.323884], - [-22.08254, 64.324223], - [-22.08213, 64.32475], - [-22.0795, 64.3262], - [-22.07739, 64.326675], - [-22.075548, 64.326875], - [-22.074279, 64.326526], - [-22.07298, 64.32678], - [-22.07168, 64.326869], - [-22.070897, 64.326695], - [-22.07065, 64.326396], - [-22.069526, 64.32623], - [-22.06762, 64.32657], - [-22.06601, 64.32728], - [-22.0658, 64.3301], - [-22.06463, 64.33006], - [-22.06318, 64.33153], - [-22.060302, 64.332504], - [-22.059277, 64.332539], - [-22.059138, 64.333077], - [-22.058062, 64.333025], - [-22.057969, 64.333312], - [-22.057524, 64.333389], - [-22.056169, 64.33358], - [-22.055762, 64.333377], - [-22.05636, 64.33306], - [-22.056663, 64.332603], - [-22.055579, 64.332261], - [-22.054676, 64.33233], - [-22.05355, 64.332639], - [-22.052818, 64.332992], - [-22.052419, 64.333213], - [-22.05188, 64.333493], - [-22.050661, 64.333453], - [-22.049633, 64.333264], - [-22.048857, 64.333038], - [-22.048564, 64.332817], - [-22.048448, 64.332453], - [-22.047497, 64.332594], - [-22.047284, 64.332995], - [-22.047227, 64.333085], - [-22.047173, 64.333244], - [-22.047292, 64.333464], - [-22.047437, 64.33352], - [-22.047879, 64.333689], - [-22.04845, 64.334139], - [-22.04907, 64.3344], - [-22.048397, 64.335029], - [-22.047369, 64.33539], - [-22.046814, 64.335571], - [-22.046214, 64.33589], - [-22.046075, 64.335998], - [-22.045548, 64.336205], - [-22.044931, 64.336461], - [-22.044424, 64.336585], - [-22.043883, 64.336682], - [-22.04358, 64.33703], - [-22.043813, 64.337574], - [-22.043091, 64.337932], - [-22.041974, 64.337986], - [-22.04191, 64.338543], - [-22.04051, 64.33924], - [-22.038755, 64.339764], - [-22.036923, 64.340821], - [-22.03574, 64.34113], - [-22.036076, 64.341585], - [-22.035784, 64.342099], - [-22.035156, 64.342501], - [-22.033402, 64.342937], - [-22.032089, 64.343627], - [-22.03166, 64.34405], - [-22.031131, 64.344738], - [-22.031631, 64.345669], - [-22.032159, 64.34603], - [-22.032098, 64.346806], - [-22.03162, 64.347072], - [-22.031442, 64.347472], - [-22.0322, 64.34787], - [-22.031592, 64.348131], - [-22.030446, 64.34853], - [-22.029977, 64.349103], - [-22.029977, 64.34952], - [-22.028797, 64.349763], - [-22.028276, 64.349572], - [-22.027807, 64.349606], - [-22.026939, 64.350058], - [-22.026088, 64.350231], - [-22.026036, 64.350544], - [-22.026591, 64.350579], - [-22.026574, 64.350995], - [-22.025706, 64.351152], - [-22.02456, 64.351447], - [-22.023779, 64.351221], - [-22.02324, 64.351655], - [-22.024247, 64.351898], - [-22.024247, 64.352263], - [-22.023674, 64.352558], - [-22.022615, 64.353149], - [-22.022233, 64.353739], - [-22.021122, 64.353756], - [-22.019333, 64.353843], - [-22.018049, 64.353947], - [-22.018066, 64.35419], - [-22.018604, 64.354364], - [-22.018656, 64.35492], - [-22.017458, 64.355145], - [-22.016972, 64.35551], - [-22.015982, 64.355493], - [-22.01633, 64.354937], - [-22.015305, 64.35459], - [-22.01626, 64.353913], - [-22.016486, 64.353426], - [-22.016834, 64.352936], - [-22.01501, 64.35273], - [-22.01484, 64.35255], - [-22.013271, 64.352518], - [-22.012577, 64.352657], - [-22.012212, 64.353125], - [-22.011361, 64.353177], - [-22.010433, 64.353187], - [-22.009729, 64.353351], - [-22.009955, 64.353004], - [-22.010605, 64.35277], - [-22.010927, 64.352414], - [-22.011743, 64.352153], - [-22.012056, 64.351962], - [-22.01157, 64.35184], - [-22.01181, 64.35082], - [-22.012945, 64.35053], - [-22.013862, 64.349878], - [-22.014799, 64.349271], - [-22.016915, 64.348317], - [-22.01823, 64.34796], - [-22.026045, 64.34696], - [-22.026988, 64.345763], - [-22.027857, 64.345572], - [-22.028239, 64.345017], - [-22.027857, 64.344635], - [-22.028065, 64.344044], - [-22.02852, 64.34344], - [-22.029169, 64.343019], - [-22.03015, 64.342582], - [-22.030704, 64.342475], - [-22.031316, 64.342131], - [-22.031523, 64.341895], - [-22.031307, 64.341621], - [-22.030944, 64.341296], - [-22.030633, 64.341291], - [-22.030407, 64.341429], - [-22.030178, 64.341417], - [-22.030096, 64.341324], - [-22.030246, 64.34118], - [-22.030544, 64.340994], - [-22.030354, 64.340859], - [-22.030096, 64.340617], - [-22.030074, 64.340525], - [-22.030312, 64.340442], - [-22.030395, 64.340413], - [-22.030847, 64.34025], - [-22.031155, 64.340097], - [-22.03136, 64.339829], - [-22.031714, 64.339674], - [-22.031859, 64.339599], - [-22.031982, 64.339535], - [-22.032114, 64.339391], - [-22.031948, 64.339214], - [-22.031875, 64.339411], - [-22.031584, 64.339548], - [-22.031241, 64.339629], - [-22.030987, 64.339795], - [-22.030745, 64.339982], - [-22.030608, 64.340088], - [-22.030104, 64.340182], - [-22.029402, 64.34038], - [-22.029354, 64.340572], - [-22.028906, 64.340971], - [-22.028551, 64.341271], - [-22.028378, 64.341453], - [-22.028506, 64.341759], - [-22.028082, 64.342082], - [-22.027457, 64.342238], - [-22.026745, 64.342672], - [-22.025408, 64.342777], - [-22.024523, 64.342916], - [-22.023637, 64.342968], - [-22.022561, 64.342777], - [-22.021623, 64.342638], - [-22.020859, 64.342742], - [-22.020356, 64.343141], - [-22.019955, 64.343517], - [-22.019455, 64.343539], - [-22.019099, 64.344184], - [-22.018643, 64.344206], - [-22.018143, 64.343984], - [-22.018054, 64.343662], - [-22.018221, 64.343184], - [-22.01881, 64.343284], - [-22.019055, 64.34305], - [-22.018932, 64.342728], - [-22.017777, 64.342695], - [-22.017321, 64.342984], - [-22.016032, 64.342917], - [-22.015754, 64.343328], - [-22.015343, 64.343439], - [-22.014671, 64.344136], - [-22.013875, 64.344251], - [-22.013563, 64.344737], - [-22.012556, 64.345119], - [-22.011514, 64.346074], - [-22.010889, 64.346108], - [-22.010663, 64.346629], - [-22.009656, 64.347307], - [-22.007416, 64.347359], - [-22.005385, 64.34807], - [-22.003613, 64.348539], - [-22.002207, 64.348887], - [-22.001547, 64.349685], - [-22.001478, 64.351283], - [-22.000922, 64.352568], - [-21.999248, 64.353307], - [-21.998111, 64.354011], - [-21.998205, 64.354655], - [-21.998713, 64.355663], - [-21.999376, 64.356457], - [-22.000275, 64.356853], - [-22.001011, 64.357275], - [-22.002164, 64.357174], - [-22.00291, 64.356665], - [-22.003962, 64.35619], - [-22.005183, 64.355817], - [-22.006404, 64.355647], - [-22.007591, 64.355885], - [-22.007862, 64.356224], - [-22.007082, 64.356428], - [-22.006641, 64.357038], - [-22.006132, 64.357479], - [-22.004572, 64.357682], - [-22.003657, 64.358361], - [-22.002809, 64.358055], - [-22.002232, 64.358428], - [-22.002198, 64.359615], - [-22.001113, 64.359988], - [-21.999078, 64.360701], - [-21.99593, 64.36002], - [-21.99584, 64.36053], - [-21.99471, 64.36024], - [-21.99267, 64.3617], - [-21.99149, 64.36166], - [-21.98867, 64.36413], - [-21.98985, 64.36417], - [-21.98981, 64.36443], - [-21.98804, 64.36437], - [-21.98703, 64.36664], - [-21.98586, 64.3666], - [-21.98488, 64.36708], - [-21.98161, 64.37363], - [-21.97265, 64.37409], - [-21.97154, 64.37259], - [-21.96994, 64.37272], - [-21.9713, 64.37174], - [-21.96959, 64.37142], - [-21.97163, 64.36996], - [-21.9681, 64.36984], - [-21.96862, 64.36703], - [-21.96749, 64.36674], - [-21.96784, 64.36803], - [-21.96603, 64.36822], - [-21.96556, 64.37077], - [-21.9638, 64.37071], - [-21.9637, 64.37122], - [-21.96074, 64.37125], - [-21.95683, 64.36996], - [-21.95721, 64.36792], - [-21.9554, 64.36812], - [-21.95433, 64.36911], - [-21.95541, 64.36965], - [-21.95352, 64.3719], - [-21.9518, 64.37157], - [-21.95102, 64.37258], - [-21.94862, 64.37275], - [-21.94872, 64.37224], - [-21.94754, 64.3722], - [-21.94618, 64.37317], - [-21.94523, 64.37298], - [-21.94495, 64.37339], - [-21.94436, 64.37337], - [-21.94519, 64.37212], - [-21.94695, 64.37218], - [-21.94777, 64.37093], - [-21.94659, 64.37089], - [-21.94615, 64.3701], - [-21.94732, 64.37014], - [-21.94688, 64.36936], - [-21.9457, 64.36932], - [-21.94483, 64.37083], - [-21.94062, 64.37119], - [-21.94149, 64.36968], - [-21.93488, 64.37023], - [-21.93479, 64.37074], - [-21.93354, 64.37108], - [-21.93065, 64.37072], - [-21.92641, 64.37122], - [-21.9236, 64.37368], - [-21.92475, 64.37372], - [-21.92234, 64.37723], - [-21.92109, 64.37757], - [-21.91996, 64.37727], - [-21.91577, 64.37751], - [-21.91488, 64.37594], - [-21.91667, 64.37588], - [-21.91767, 64.37527], - [-21.91766, 64.37373], - [-21.91918, 64.37353], - [-21.91961, 64.37277], - [-21.91436, 64.37234], - [-21.91451, 64.37157], - [-21.91093, 64.3717], - [-21.90909, 64.37523], - [-21.90601, 64.37589], - [-21.90623, 64.37308], - [-21.90496, 64.37202], - [-21.90312, 64.37233], - [-21.90079, 64.37212], - [-21.90069, 64.37263], - [-21.89599, 64.37246], - [-21.89585, 64.37323], - [-21.8946, 64.37357], - [-21.89227, 64.37336], - [-21.89217, 64.37387], - [-21.891, 64.37383], - [-21.89055, 64.37304], - [-21.8882, 64.37296], - [-21.8862, 64.37417], - [-21.88217, 64.37352], - [-21.88232, 64.37276], - [-21.87996, 64.37267], - [-21.87982, 64.37344], - [-21.87742, 64.37361], - [-21.87728, 64.37437], - [-21.87302, 64.37499], - [-21.87293, 64.3755], - [-21.86577, 64.37577], - [-21.86567, 64.37628], - [-21.86268, 64.37643], - [-21.86278, 64.37592], - [-21.85812, 64.3755], - [-21.857257, 64.376177], - [-21.85854, 64.37641], - [-21.86146, 64.37664], - [-21.86136, 64.37715], - [-21.86361, 64.37787], - [-21.87175, 64.37854], - [-21.87363, 64.37963], - [-21.87408, 64.38042], - [-21.8755, 64.38072], - [-21.87541, 64.38123], - [-21.87894, 64.38136], - [-21.87964, 64.38074], - [-21.88207, 64.38044], - [-21.87992, 64.38242], - [-21.87875, 64.38237], - [-21.87686, 64.38615], - [-21.8733, 64.38616], - [-21.87276, 64.38588], - [-21.87097, 64.38595], - [-21.8713, 64.38416], - [-21.86902, 64.3837], - [-21.86537, 64.38421], - [-21.86611, 64.38501], - [-21.86567, 64.38576], - [-21.86259, 64.38642], - [-21.86122, 64.3874], - [-21.85531, 64.38732], - [-21.85406, 64.38766], - [-21.853738, 64.388144], - [-21.85441, 64.38896], - [-21.855, 64.38898], - [-21.8551, 64.38846], - [-21.85912, 64.38912], - [-21.85922, 64.38862], - [-21.86099, 64.38867], - [-21.861649, 64.388717], - [-21.862255, 64.388753], - [-21.86618, 64.38937], - [-21.86516, 64.3901], - [-21.86531, 64.39088], - [-21.86653, 64.39066], - [-21.86607, 64.39099], - [-21.86731, 64.39287], - [-21.86905, 64.39306], - [-21.87046, 64.39503], - [-21.87245, 64.39549], - [-21.8723, 64.39625], - [-21.87427, 64.39683], - [-21.87446, 64.39581], - [-21.87872, 64.39519], - [-21.87911, 64.39469], - [-21.88063, 64.39449], - [-21.88214, 64.39275], - [-21.88096, 64.39271], - [-21.88106, 64.3922], - [-21.87988, 64.39216], - [-21.88061, 64.39141], - [-21.88179, 64.39145], - [-21.88242, 64.38968], - [-21.88638, 64.38906], - [-21.88657, 64.38804], - [-21.88778, 64.38795], - [-21.88897, 64.38632], - [-21.89176, 64.38565], - [-21.89246, 64.38503], - [-21.89387, 64.38547], - [-21.89372, 64.38623], - [-21.89691, 64.3866], - [-21.89686, 64.38685], - [-21.89506, 64.38705], - [-21.89656, 64.38851], - [-21.89771, 64.38868], - [-21.896, 64.3899], - [-21.89621, 64.3935], - [-21.89853, 64.39383], - [-21.89843, 64.39434], - [-21.9002, 64.3944], - [-21.9001, 64.39491], - [-21.91115, 64.39607], - [-21.91091, 64.39734], - [-21.90973, 64.3973], - [-21.91002, 64.39898], - [-21.91468, 64.39938], - [-21.91548, 64.39827], - [-21.92313, 64.39853], - [-21.92323, 64.39802], - [-21.92538, 64.39759], - [-21.92582, 64.39683], - [-21.92817, 64.39692], - [-21.92827, 64.3964], - [-21.92947, 64.39632], - [-21.93146, 64.39523], - [-21.93258, 64.39553], - [-21.93354, 64.39351], - [-21.93653, 64.39336], - [-21.93644, 64.39387], - [-21.93526, 64.39383], - [-21.93514, 64.39767], - [-21.93397, 64.39763], - [-21.93407, 64.39867], - [-21.933, 64.39964], - [-21.93418, 64.39969], - [-21.93409, 64.40019], - [-21.93705, 64.40017], - [-21.94087, 64.39876], - [-21.94202, 64.39893], - [-21.94212, 64.39842], - [-21.94364, 64.39823], - [-21.94407, 64.39746], - [-21.94525, 64.39749], - [-21.94617, 64.39574], - [-21.94734, 64.39578], - [-21.95021, 64.39306], - [-21.952, 64.39299], - [-21.95332, 64.39227], - [-21.95448, 64.39244], - [-21.95612, 64.38993], - [-21.9573, 64.38997], - [-21.95826, 64.38795], - [-21.9601, 64.38763], - [-21.96096, 64.38779], - [-21.95937, 64.39158], - [-21.95878, 64.39156], - [-21.95888, 64.39105], - [-21.95829, 64.39103], - [-21.9579, 64.39152], - [-21.95844, 64.39181], - [-21.95578, 64.39505], - [-21.96701, 64.39518], - [-21.9671, 64.39467], - [-21.9768, 64.39346], - [-21.97719, 64.39296], - [-21.97871, 64.39276], - [-21.98075, 64.39129], - [-21.98193, 64.39133], - [-21.985029, 64.3875], - [-21.987604, 64.388019], - [-21.991895, 64.388019], - [-21.993612, 64.386684], - [-21.98726, 64.383567], - [-21.986059, 64.386387], - [-21.985372, 64.383122], - [-21.983827, 64.381711], - [-21.981767, 64.380746], - [-21.978825, 64.38046], - [-21.978334, 64.378742], - [-21.974901, 64.377777], - [-21.977304, 64.376515], - [-21.980051, 64.376738], - [-21.985029, 64.377926], - [-21.987432, 64.379262], - [-21.990179, 64.380301], - [-21.99653, 64.383493], - [-22.003397, 64.385645], - [-22.00973, 64.38831], - [-22.01255, 64.38904], - [-22.01242, 64.38981], - [-22.01418, 64.38987], - [-22.01409, 64.39038], - [-22.01805, 64.39141], - [-22.02196, 64.3927], - [-22.02182, 64.39346], - [-22.02576, 64.39462], - [-22.02616, 64.39566], - [-22.02734, 64.3957], - [-22.02775, 64.39674], - [-22.02892, 64.39678], - [-22.03152, 64.39879], - [-22.03566, 64.40213], - [-22.03774, 64.40374], - [-22.03998, 64.40446], - [-22.04096, 64.40566], - [-22.036826, 64.40609], - [-22.036217, 64.40591], - [-22.035297, 64.405812], - [-22.034165, 64.4058], - [-22.033145, 64.405845], - [-22.032175, 64.40598], - [-22.031319, 64.40627], - [-22.030505, 64.40664], - [-22.029875, 64.407004], - [-22.029486, 64.407194], - [-22.029047, 64.407338], - [-22.028389, 64.407775], - [-22.027813, 64.408243], - [-22.026748, 64.409074], - [-22.025898, 64.409925], - [-22.025468, 64.410377], - [-22.02516, 64.41101], - [-22.024921, 64.412356], - [-22.025078, 64.413678], - [-22.02577, 64.416347], - [-22.025598, 64.417079], - [-22.025237, 64.418247], - [-22.025071, 64.419417], - [-22.02505, 64.420005], - [-22.024985, 64.420294], - [-22.024846, 64.420566], - [-22.024655, 64.420802], - [-22.024344, 64.420951], - [-22.023763, 64.421009], - [-22.02096, 64.421031], - [-22.019877, 64.42104], - [-22.018766, 64.421092], - [-22.01769, 64.421272], - [-22.016784, 64.421627], - [-22.015871, 64.422192], - [-22.014965, 64.42299], - [-22.014364, 64.423822], - [-22.013769, 64.42475], - [-22.013549, 64.425676], - [-22.013445, 64.426536], - [-22.013694, 64.427464], - [-22.013868, 64.428572], - [-22.014741, 64.431225], - [-22.014795, 64.432598], - [-22.014869, 64.434567], - [-22.01584, 64.437901], - [-22.01362, 64.43855], - [-22.012514, 64.439349], - [-22.011749, 64.440117], - [-22.011278, 64.44133], - [-22.012043, 64.443241], - [-22.011278, 64.44486], - [-22.011823, 64.446326], - [-22.011676, 64.447329], - [-22.011087, 64.448434], - [-22.010748, 64.449119], - [-22.010542, 64.44964], - [-22.010042, 64.450237], - [-22.009909, 64.451227], - [-22.009218, 64.451963], - [-22.008482, 64.452471], - [-22.008011, 64.452915], - [-22.007702, 64.453766], - [-22.005833, 64.454889], - [-22.004155, 64.456114], - [-22.00192, 64.45713], - [-22.000122, 64.457846], - [-21.9974, 64.458246], - [-21.995163, 64.458335], - [-21.994353, 64.457922], - [-21.995001, 64.457668], - [-21.995855, 64.457732], - [-21.995987, 64.457434], - [-21.995545, 64.456564], - [-21.996605, 64.45605], - [-21.998253, 64.456742], - [-21.99946, 64.456907], - [-22.00024, 64.456735], - [-22.000947, 64.455581], - [-22.0018, 64.453994], - [-22.001521, 64.453302], - [-22.002875, 64.452344], - [-22.004449, 64.451417], - [-22.006407, 64.450287], - [-22.00623, 64.449703], - [-22.005009, 64.448751], - [-22.00517, 64.44837], - [-22.005553, 64.448034], - [-22.005836, 64.446819], - [-22.005699, 64.446418], - [-22.004714, 64.445928], - [-22.004837, 64.444731], - [-22.005631, 64.443533], - [-22.007094, 64.442973], - [-22.008174, 64.441882], - [-22.007408, 64.440584], - [-22.008174, 64.440342], - [-22.00862, 64.43993], - [-22.008707, 64.439693], - [-22.009555, 64.43938], - [-22.010171, 64.439103], - [-22.010677, 64.438867], - [-22.011552, 64.438448], - [-22.012482, 64.437852], - [-22.01188, 64.436967], - [-22.011169, 64.436088], - [-22.010253, 64.435698], - [-22.008885, 64.435332], - [-22.00775, 64.434848], - [-22.007791, 64.434022], - [-22.006711, 64.433833], - [-22.006068, 64.433875], - [-22.00656, 64.43498], - [-22.005754, 64.435492], - [-22.00481, 64.436353], - [-22.00408, 64.43721], - [-22.003702, 64.437498], - [-22.00362, 64.437787], - [-22.003197, 64.437952], - [-22.002568, 64.438831], - [-22.002098, 64.43958], - [-22.002511, 64.439631], - [-22.003085, 64.43958], - [-22.003021, 64.439807], - [-22.002629, 64.440228], - [-22.002018, 64.440661], - [-22.001744, 64.440601], - [-22.001771, 64.440337], - [-22.001245, 64.440098], - [-22.000049, 64.440041], - [-21.999791, 64.440057], - [-21.999309, 64.440017], - [-21.998896, 64.440068], - [-21.998772, 64.440258], - [-21.998016, 64.440237], - [-21.997163, 64.440031], - [-21.996659, 64.439705], - [-21.997549, 64.43967], - [-21.998305, 64.439193], - [-21.998445, 64.438703], - [-21.999201, 64.437923], - [-21.99948, 64.437226], - [-21.999384, 64.436893], - [-21.998359, 64.436888], - [-21.998166, 64.436802], - [-21.998161, 64.436589], - [-21.997592, 64.43667], - [-21.997168, 64.436798], - [-21.996889, 64.436779], - [-21.996642, 64.43667], - [-21.996304, 64.436705], - [-21.996095, 64.436772], - [-21.996508, 64.436962], - [-21.996782, 64.437279], - [-21.99741, 64.437492], - [-21.998236, 64.437469], - [-21.998515, 64.437529], - [-21.998128, 64.437846], - [-21.997662, 64.438092], - [-21.99734, 64.43839], - [-21.997388, 64.439048], - [-21.997184, 64.439152], - [-21.996648, 64.439129], - [-21.9957, 64.43923], - [-21.994985, 64.439997], - [-21.994722, 64.440693], - [-21.995945, 64.440767], - [-21.996144, 64.441142], - [-21.996514, 64.441825], - [-21.995956, 64.442126], - [-21.99528, 64.442494], - [-21.99455, 64.442931], - [-21.993756, 64.443204], - [-21.992914, 64.443304], - [-21.992051, 64.44338], - [-21.992093, 64.443045], - [-21.992528, 64.442628], - [-21.992523, 64.442475], - [-21.992447, 64.442406], - [-21.991873, 64.442644], - [-21.991342, 64.44291], - [-21.991047, 64.442755], - [-21.990919, 64.442656], - [-21.990683, 64.442586], - [-21.990447, 64.442656], - [-21.99029, 64.44289], - [-21.989771, 64.44369], - [-21.989476, 64.443695], - [-21.989234, 64.443825], - [-21.989159, 64.444012], - [-21.988708, 64.444405], - [-21.98844, 64.444685], - [-21.988601, 64.444861], - [-21.988939, 64.444815], - [-21.989417, 64.444824], - [-21.990076, 64.444591], - [-21.990548, 64.444651], - [-21.991101, 64.444734], - [-21.991514, 64.444982], - [-21.991981, 64.445817], - [-21.992206, 64.446229], - [-21.991868, 64.446752], - [-21.992099, 64.447203], - [-21.991418, 64.447839], - [-21.990774, 64.44793], - [-21.989889, 64.448203], - [-21.9894, 64.448105], - [-21.988767, 64.447726], - [-21.988655, 64.448281], - [-21.988623, 64.448568], - [-21.98891, 64.44874], - [-21.989508, 64.449343], - [-21.988977, 64.449734], - [-21.989138, 64.450167], - [-21.988778, 64.450505], - [-21.988156, 64.450794], - [-21.987083, 64.451449], - [-21.987351, 64.451574], - [-21.988065, 64.451303], - [-21.988022, 64.451467], - [-21.987598, 64.451814], - [-21.988, 64.451951], - [-21.98869, 64.45155], - [-21.989288, 64.451308], - [-21.989873, 64.451048], - [-21.989985, 64.451169], - [-21.989787, 64.451442], - [-21.98928, 64.45157], - [-21.989347, 64.451828], - [-21.988692, 64.452087], - [-21.988682, 64.452286], - [-21.988102, 64.452848], - [-21.988558, 64.452976], - [-21.98917, 64.452955], - [-21.989712, 64.452636], - [-21.989771, 64.452726], - [-21.989266, 64.453177], - [-21.989873, 64.453316], - [-21.990516, 64.453295], - [-21.99144, 64.4528], - [-21.992185, 64.452538], - [-21.992485, 64.452582], - [-21.992485, 64.452779], - [-21.992737, 64.452932], - [-21.992453, 64.453135], - [-21.99234, 64.45338], - [-21.992126, 64.453931], - [-21.991868, 64.454058], - [-21.992013, 64.454479], - [-21.991782, 64.454701], - [-21.99163, 64.45498], - [-21.992083, 64.454923], - [-21.992625, 64.454611], - [-21.992657, 64.455115], - [-21.993172, 64.455127], - [-21.993628, 64.455053], - [-21.993789, 64.45487], - [-21.993799, 64.454535], - [-21.99403, 64.454551], - [-21.994191, 64.454613], - [-21.994078, 64.454907], - [-21.994405, 64.455007], - [-21.994958, 64.454912], - [-21.994888, 64.455164], - [-21.994556, 64.45524], - [-21.99411, 64.455102], - [-21.993848, 64.455173], - [-21.993772, 64.455342], - [-21.993735, 64.455671], - [-21.993177, 64.456048], - [-21.993005, 64.456404], - [-21.993569, 64.456656], - [-21.992887, 64.457123], - [-21.992753, 64.457426], - [-21.99285, 64.45772], - [-21.992523, 64.457833], - [-21.9919, 64.457884], - [-21.991235, 64.457884], - [-21.991053, 64.458183], - [-21.990988, 64.458483], - [-21.991299, 64.459207], - [-21.99168, 64.459876], - [-21.991648, 64.460058], - [-21.990414, 64.460916], - [-21.98961, 64.461099], - [-21.987582, 64.460676], - [-21.986911, 64.46056], - [-21.986423, 64.460347], - [-21.986252, 64.460276], - [-21.985887, 64.460306], - [-21.985511, 64.460403], - [-21.985045, 64.460373], - [-21.98439, 64.460602], - [-21.98395, 64.46066], - [-21.983505, 64.460946], - [-21.982985, 64.460882], - [-21.982647, 64.460856], - [-21.982636, 64.460683], - [-21.982432, 64.460671], - [-21.982126, 64.460835], - [-21.981847, 64.460896], - [-21.981644, 64.460997], - [-21.980952, 64.461897], - [-21.980501, 64.462602], - [-21.980388, 64.462921], - [-21.980614, 64.463241], - [-21.980109, 64.464045], - [-21.980227, 64.464418], - [-21.980903, 64.4647], - [-21.981322, 64.464642], - [-21.981617, 64.464485], - [-21.981558, 64.463463], - [-21.980952, 64.463032], - [-21.980646, 64.462982], - [-21.980909, 64.462612], - [-21.981247, 64.462646], - [-21.981252, 64.462561], - [-21.981096, 64.462459], - [-21.98152, 64.462195], - [-21.981804, 64.462163], - [-21.982083, 64.462064], - [-21.982432, 64.461922], - [-21.982802, 64.462059], - [-21.983285, 64.462027], - [-21.983307, 64.46214], - [-21.982904, 64.462251], - [-21.982829, 64.462369], - [-21.982893, 64.462477], - [-21.983382, 64.462646], - [-21.98358, 64.462343], - [-21.983543, 64.461892], - [-21.983264, 64.461846], - [-21.982877, 64.461876], - [-21.982883, 64.461774], - [-21.983419, 64.461654], - [-21.984256, 64.461534], - [-21.9863, 64.461169], - [-21.98645, 64.46124], - [-21.986198, 64.461483], - [-21.98594, 64.462054], - [-21.985168, 64.462891], - [-21.984277, 64.463541], - [-21.983526, 64.464112], - [-21.982523, 64.465229], - [-21.982185, 64.466522], - [-21.981483, 64.467764], - [-21.981123, 64.4687], - [-21.982244, 64.470829], - [-21.981955, 64.471037], - [-21.980174, 64.472322], - [-21.981011, 64.475725], - [-21.981976, 64.476922], - [-21.981418, 64.478573], - [-21.981365, 64.480616], - [-21.980818, 64.480269], - [-21.980045, 64.480214], - [-21.979401, 64.483444], - [-21.975931, 64.486461], - [-21.973951, 64.486481], - [-21.972326, 64.486757], - [-21.971124, 64.488235], - [-21.972498, 64.490084], - [-21.969751, 64.490897], - [-21.969236, 64.492745], - [-21.967004, 64.494593], - [-21.966661, 64.496367], - [-21.965803, 64.498658], - [-21.965116, 64.49681], - [-21.963743, 64.496662], - [-21.96354, 64.49786], - [-21.963056, 64.498732], - [-21.961855, 64.499397], - [-21.957563, 64.500801], - [-21.955464, 64.502001], - [-21.95337, 64.503674], - [-21.951337, 64.505233], - [-21.949022, 64.506576], - [-21.949323, 64.508781], - [-21.95021, 64.510476], - [-21.950868, 64.51277], - [-21.948465, 64.514248], - [-21.944935, 64.514703], - [-21.943506, 64.514339], - [-21.943204, 64.512945], - [-21.943647, 64.511541], - [-21.944996, 64.510432], - [-21.94692, 64.509372], - [-21.94589, 64.507082], - [-21.938896, 64.506334], - [-21.937305, 64.507244], - [-21.934648, 64.507954], - [-21.93266, 64.50885], - [-21.933057, 64.510371], - [-21.932715, 64.511472], - [-21.93125, 64.51162], - [-21.931145, 64.51233], - [-21.930279, 64.512312], - [-21.929071, 64.51265], - [-21.923796, 64.512451], - [-21.919166, 64.512217], - [-21.918079, 64.512234], - [-21.916831, 64.512442], - [-21.916005, 64.512633], - [-21.915019, 64.513005], - [-21.913751, 64.513343], - [-21.9125, 64.51328], - [-21.911999, 64.51349], - [-21.90994, 64.51422], - [-21.909181, 64.514383], - [-21.908838, 64.514547], - [-21.908234, 64.514556], - [-21.90748, 64.51464], - [-21.906805, 64.514547], - [-21.905637, 64.51453], - [-21.904953, 64.514729], - [-21.90202, 64.51522], - [-21.900504, 64.516132], - [-21.899859, 64.516721], - [-21.896236, 64.520411], - [-21.894847, 64.520948], - [-21.893699, 64.521329], - [-21.891907, 64.521563], - [-21.88673, 64.525263], - [-21.885871, 64.526102], - [-21.885251, 64.52738], - [-21.8851, 64.52771], - [-21.885611, 64.528478], - [-21.884926, 64.529068], - [-21.885249, 64.529719], - [-21.888307, 64.531509], - [-21.888703, 64.531448], - [-21.888958, 64.531302], - [-21.889453, 64.531277], - [-21.889698, 64.531523], - [-21.887899, 64.532276], - [-21.886778, 64.532349], - [-21.885872, 64.53213], - [-21.885858, 64.53185], - [-21.886381, 64.531935], - [-21.886976, 64.53202], - [-21.887401, 64.531734], - [-21.88474, 64.53009], - [-21.88353, 64.5297], - [-21.8817, 64.52836], - [-21.88004, 64.52766], - [-21.87898, 64.52699], - [-21.877996, 64.526447], - [-21.87676, 64.52614], - [-21.8755, 64.52578], - [-21.874292, 64.525858], - [-21.86091, 64.52494], - [-21.85748, 64.52572], - [-21.856817, 64.526074], - [-21.856574, 64.526287], - [-21.854683, 64.526897], - [-21.854039, 64.526663], - [-21.849388, 64.526603], - [-21.847093, 64.526802], - [-21.84384, 64.52704], - [-21.84347, 64.527304], - [-21.842906, 64.527555], - [-21.842604, 64.527243], - [-21.84207, 64.52698], - [-21.839665, 64.526932], - [-21.837933, 64.527287], - [-21.83426, 64.52734], - [-21.83059, 64.52786], - [-21.83192, 64.52867], - [-21.83232, 64.5297], - [-21.832115, 64.530758], - [-21.83104, 64.53172], - [-21.825753, 64.531875], - [-21.823378, 64.532663], - [-21.817548, 64.532909], - [-21.817056, 64.532637], - [-21.81692, 64.532378], - [-21.81902, 64.53232], - [-21.81907, 64.53206], - [-21.817701, 64.53139], - [-21.81564, 64.5313], - [-21.81382, 64.53149], - [-21.81138, 64.53179], - [-21.81148, 64.53282], - [-21.80941, 64.53429], - [-21.806556, 64.534832], - [-21.804932, 64.534914], - [-21.80362, 64.53498], - [-21.80222, 64.53455], - [-21.801986, 64.533097], - [-21.800613, 64.533171], - [-21.79985, 64.53292], - [-21.796471, 64.53283], - [-21.79574, 64.53252], - [-21.79056, 64.532282], - [-21.784097, 64.533349], - [-21.783372, 64.534202], - [-21.778661, 64.534592], - [-21.777868, 64.535631], - [-21.77767, 64.53675], - [-21.777996, 64.537203], - [-21.779884, 64.537904], - [-21.778962, 64.540561], - [-21.778361, 64.541022], - [-21.777674, 64.541289], - [-21.777318, 64.541959], - [-21.776795, 64.542664], - [-21.779391, 64.544084], - [-21.781537, 64.543946], - [-21.783918, 64.543475], - [-21.782867, 64.544315], - [-21.784605, 64.545403], - [-21.786558, 64.54532], - [-21.787502, 64.545025], - [-21.789133, 64.544665], - [-21.790613, 64.543937], - [-21.791278, 64.544259], - [-21.789347, 64.545043], - [-21.78894, 64.545394], - [-21.789927, 64.546178], - [-21.791107, 64.54651], - [-21.792931, 64.546039], - [-21.79424, 64.545375], - [-21.79971, 64.54612], - [-21.80025, 64.5464], - [-21.80205, 64.54634], - [-21.80216, 64.54583], - [-21.80393, 64.54589], - [-21.80466, 64.54515], - [-21.808406, 64.544584], - [-21.811995, 64.543923], - [-21.81496, 64.54423], - [-21.8164, 64.54607], - [-21.81758, 64.54611], - [-21.81768, 64.54561], - [-21.822559, 64.544804], - [-21.82547, 64.54537], - [-21.82469, 64.54636], - [-21.82102, 64.54688], - [-21.81093, 64.54665], - [-21.81161, 64.54617], - [-21.80804, 64.54617], - [-21.80733, 64.54678], - [-21.80516, 64.54721], - [-21.80433, 64.54847], - [-21.7992, 64.55034], - [-21.79906, 64.5511], - [-21.79709, 64.55206], - [-21.796272, 64.553846], - [-21.79522, 64.55404], - [-21.79507, 64.55481], - [-21.79385, 64.55489], - [-21.79118, 64.55646], - [-21.78999, 64.55642], - [-21.7899, 64.55693], - [-21.78869, 64.55702], - [-21.78699, 64.55811], - [-21.786735, 64.559371], - [-21.785247, 64.560213], - [-21.785805, 64.561318], - [-21.7848, 64.56175], - [-21.780622, 64.56388], - [-21.779319, 64.564456], - [-21.778507, 64.565712], - [-21.77743, 64.56598], - [-21.76836, 64.57437], - [-21.76733, 64.5751], - [-21.761969, 64.578354], - [-21.76181, 64.58209], - [-21.76798, 64.5841], - [-21.77151, 64.58436], - [-21.77336, 64.58404], - [-21.77267, 64.58453], - [-21.78154, 64.58497], - [-21.78638, 64.58463], - [-21.79193, 64.58367], - [-21.79213, 64.58265], - [-21.7907, 64.58234], - [-21.79124, 64.58108], - [-21.79836, 64.5812], - [-21.80121, 64.58195], - [-21.80181, 64.58503], - [-21.80547, 64.58466], - [-21.80428, 64.58462], - [-21.803567, 64.583424], - [-21.80749, 64.58345], - [-21.80896, 64.58196], - [-21.81679, 64.5816], - [-21.82481, 64.58021], - [-21.82663, 64.57848], - [-21.82515, 64.57843], - [-21.82534, 64.57741], - [-21.82771, 64.5775], - [-21.82757, 64.57826], - [-21.8352, 64.57891], - [-21.83705, 64.57859], - [-21.83724, 64.57757], - [-21.83843, 64.57762], - [-21.83995, 64.57586], - [-21.84114, 64.57592], - [-21.84241, 64.57391], - [-21.84098, 64.5736], - [-21.84122, 64.57233], - [-21.84599, 64.57238], - [-21.84993, 64.571716], - [-21.850143, 64.570448], - [-21.85118, 64.569961], - [-21.853517, 64.569449], - [-21.854326, 64.56962], - [-21.854863, 64.571574], - [-21.85921, 64.5718], - [-21.86047, 64.57146], - [-21.86056, 64.57095], - [-21.86175, 64.571], - [-21.86189, 64.57023], - [-21.86308, 64.57027], - [-21.86401, 64.56851], - [-21.86519, 64.56855], - [-21.865922, 64.566085], - [-21.86423, 64.56416], - [-21.86021, 64.56338], - [-21.85781, 64.56342], - [-21.85904, 64.56167], - [-21.85822, 64.56126], - [-21.85583, 64.5613], - [-21.8573, 64.55982], - [-21.86519, 64.55907], - [-21.86529, 64.55856], - [-21.86823, 64.55879], - [-21.86887, 64.55855], - [-21.87003, 64.55872], - [-21.87209, 64.55726], - [-21.87565, 64.55738], - [-21.877, 64.556597], - [-21.87757, 64.55668], - [-21.877941, 64.557093], - [-21.879651, 64.55728], - [-21.87856, 64.55774], - [-21.87737, 64.5577], - [-21.87659, 64.55869], - [-21.87541, 64.55865], - [-21.87526, 64.55942], - [-21.87408, 64.55938], - [-21.86999, 64.566265], - [-21.87067, 64.56633], - [-21.871281, 64.566388], - [-21.871372, 64.565903], - [-21.872291, 64.565863], - [-21.87745, 64.5668], - [-21.88354, 64.56612], - [-21.884008, 64.565865], - [-21.88482, 64.56565], - [-21.885514, 64.563982], - [-21.884717, 64.562805], - [-21.88485, 64.56231], - [-21.88782, 64.558024], - [-21.889681, 64.557919], - [-21.89132, 64.555789], - [-21.890441, 64.555207], - [-21.889695, 64.554664], - [-21.88924, 64.55324], - [-21.89027, 64.5525], - [-21.89387, 64.55237], - [-21.894606, 64.551268], - [-21.894683, 64.551196], - [-21.894828, 64.55111], - [-21.894934, 64.551084], - [-21.894971, 64.551035], - [-21.895041, 64.550895], - [-21.895045, 64.550793], - [-21.89513, 64.55074], - [-21.89526, 64.550774], - [-21.89541, 64.55077], - [-21.895612, 64.55074], - [-21.895858, 64.550701], - [-21.896112, 64.550694], - [-21.896716, 64.550607], - [-21.896853, 64.55058], - [-21.89687, 64.550533], - [-21.896889, 64.550478], - [-21.896847, 64.550402], - [-21.896769, 64.550292], - [-21.896803, 64.550072], - [-21.896821, 64.549946], - [-21.896964, 64.549778], - [-21.897018, 64.549655], - [-21.897135, 64.549648], - [-21.897208, 64.549664], - [-21.897529, 64.54972], - [-21.897853, 64.54973], - [-21.898012, 64.549723], - [-21.898117, 64.549706], - [-21.898179, 64.549577], - [-21.89817, 64.549482], - [-21.898241, 64.549425], - [-21.898325, 64.549379], - [-21.898597, 64.549379], - [-21.898981, 64.549382], - [-21.899477, 64.54933], - [-21.900053, 64.549273], - [-21.900724, 64.549239], - [-21.901548, 64.549284], - [-21.902333, 64.549357], - [-21.902802, 64.549414], - [-21.903149, 64.549534], - [-21.903548, 64.549706], - [-21.903979, 64.549847], - [-21.904248, 64.549925], - [-21.904733, 64.549947], - [-21.905073, 64.54993], - [-21.905446, 64.549897], - [-21.905972, 64.54978], - [-21.906362, 64.549611], - [-21.90682, 64.549417], - [-21.906932, 64.549287], - [-21.906796, 64.549032], - [-21.906642, 64.54886], - [-21.906499, 64.548642], - [-21.906259, 64.548425], - [-21.906112, 64.54823], - [-21.906088, 64.548059], - [-21.906093, 64.54794], - [-21.906143, 64.547808], - [-21.906311, 64.547588], - [-21.906507, 64.547197], - [-21.906639, 64.54682], - [-21.906681, 64.546477], - [-21.906844, 64.546133], - [-21.907108, 64.54581], - [-21.907128, 64.545627], - [-21.907123, 64.545515], - [-21.907121, 64.545345], - [-21.907093, 64.545236], - [-21.907007, 64.545158], - [-21.906881, 64.545069], - [-21.906844, 64.544968], - [-21.906902, 64.544789], - [-21.907071, 64.544609], - [-21.907332, 64.544369], - [-21.907399, 64.542522], - [-21.907382, 64.541655], - [-21.907291, 64.54132], - [-21.907023, 64.540746], - [-21.906, 64.53966], - [-21.904762, 64.538778], - [-21.903113, 64.537883], - [-21.898474, 64.536212], - [-21.897167, 64.535755], - [-21.896866, 64.535805], - [-21.896595, 64.535906], - [-21.896558, 64.536011], - [-21.896586, 64.536105], - [-21.896832, 64.536261], - [-21.896898, 64.536383], - [-21.896752, 64.536432], - [-21.896589, 64.53645], - [-21.896421, 64.536433], - [-21.896249, 64.536375], - [-21.895981, 64.536248], - [-21.895712, 64.535935], - [-21.895733, 64.535705], - [-21.895786, 64.535539], - [-21.895897, 64.535385], - [-21.896085, 64.53532], - [-21.896572, 64.535089], - [-21.89708, 64.534935], - [-21.897559, 64.534822], - [-21.897835, 64.534817], - [-21.898074, 64.534818], - [-21.898176, 64.534869], - [-21.898191, 64.534955], - [-21.898128, 64.535034], - [-21.898046, 64.53507], - [-21.897879, 64.535083], - [-21.897739, 64.535158], - [-21.897701, 64.535227], - [-21.897671, 64.535317], - [-21.897707, 64.535408], - [-21.901575, 64.536848], - [-21.903578, 64.5377], - [-21.904541, 64.538178], - [-21.905697, 64.538817], - [-21.906649, 64.53936], - [-21.90712, 64.539767], - [-21.907319, 64.539781], - [-21.907555, 64.539788], - [-21.907768, 64.539811], - [-21.908122, 64.539814], - [-21.908386, 64.539871], - [-21.908596, 64.539957], - [-21.9087, 64.540057], - [-21.908752, 64.540161], - [-21.908771, 64.540239], - [-21.908738, 64.540329], - [-21.908675, 64.540424], - [-21.908742, 64.540518], - [-21.908925, 64.540577], - [-21.909159, 64.540614], - [-21.909521, 64.540665], - [-21.909895, 64.540732], - [-21.910153, 64.540795], - [-21.910331, 64.540858], - [-21.91036, 64.54092], - [-21.910538, 64.541018], - [-21.910734, 64.541092], - [-21.911013, 64.541146], - [-21.911233, 64.541168], - [-21.911431, 64.541182], - [-21.911792, 64.541181], - [-21.912007, 64.541157], - [-21.912156, 64.541111], - [-21.912311, 64.541055], - [-21.912472, 64.540956], - [-21.912601, 64.540767], - [-21.912752, 64.540554], - [-21.912914, 64.54031], - [-21.912937, 64.540209], - [-21.912937, 64.54012], - [-21.912983, 64.540064], - [-21.913143, 64.540007], - [-21.913267, 64.53994], - [-21.913405, 64.539808], - [-21.913443, 64.539732], - [-21.913324, 64.539665], - [-21.913239, 64.539572], - [-21.913333, 64.539501], - [-21.913476, 64.539429], - [-21.913653, 64.539396], - [-21.913864, 64.539357], - [-21.914039, 64.539336], - [-21.914192, 64.539276], - [-21.914197, 64.539202], - [-21.914141, 64.539111], - [-21.91412, 64.539047], - [-21.914282, 64.538988], - [-21.914449, 64.538929], - [-21.914564, 64.538854], - [-21.914603, 64.538759], - [-21.914614, 64.538658], - [-21.914656, 64.538501], - [-21.914714, 64.538362], - [-21.91477, 64.538252], - [-21.914882, 64.538172], - [-21.915036, 64.537939], - [-21.915182, 64.537602], - [-21.91528, 64.537325], - [-21.91521, 64.537188], - [-21.91512, 64.537063], - [-21.915034, 64.537007], - [-21.915042, 64.536931], - [-21.915143, 64.536907], - [-21.915328, 64.536904], - [-21.915235, 64.536809], - [-21.915254, 64.536737], - [-21.915376, 64.536672], - [-21.915524, 64.536664], - [-21.915634, 64.536714], - [-21.915784, 64.536723], - [-21.915937, 64.536815], - [-21.915991, 64.536899], - [-21.916168, 64.53692], - [-21.919001, 64.537048], - [-21.919463, 64.536779], - [-21.920986, 64.535834], - [-21.920922, 64.535682], - [-21.921056, 64.535631], - [-21.921217, 64.535659], - [-21.921303, 64.535765], - [-21.921383, 64.535777], - [-21.921409, 64.535609], - [-21.921502, 64.535507], - [-21.921544, 64.535403], - [-21.921641, 64.535301], - [-21.921848, 64.53521], - [-21.922161, 64.535081], - [-21.922307, 64.535061], - [-21.922655, 64.535083], - [-21.923126, 64.535048], - [-21.923511, 64.53499], - [-21.923652, 64.534922], - [-21.923668, 64.53486], - [-21.923851, 64.534857], - [-21.924135, 64.534851], - [-21.924448, 64.534853], - [-21.924638, 64.53491], - [-21.924834, 64.535081], - [-21.924827, 64.535126], - [-21.92469, 64.535163], - [-21.924737, 64.535238], - [-21.925175, 64.535557], - [-21.925604, 64.535877], - [-21.925838, 64.536043], - [-21.926401, 64.536345], - [-21.926615, 64.536531], - [-21.926943, 64.536571], - [-21.92677, 64.537007], - [-21.926868, 64.537168], - [-21.927045, 64.537302], - [-21.927203, 64.537393], - [-21.927411, 64.537478], - [-21.927673, 64.537542], - [-21.927928, 64.537596], - [-21.928159, 64.53762], - [-21.928596, 64.537602], - [-21.929191, 64.53752], - [-21.92945, 64.53752], - [-21.929618, 64.537521], - [-21.929807, 64.537464], - [-21.929918, 64.537413], - [-21.930176, 64.537396], - [-21.930347, 64.537427], - [-21.930364, 64.537482], - [-21.93031, 64.537544], - [-21.93017, 64.537661], - [-21.929898, 64.537865], - [-21.929495, 64.538146], - [-21.929275, 64.538221], - [-21.929221, 64.538305], - [-21.929324, 64.538351], - [-21.929433, 64.538396], - [-21.929381, 64.538471], - [-21.929233, 64.538479], - [-21.929046, 64.538499], - [-21.928836, 64.538582], - [-21.928772, 64.538636], - [-21.928807, 64.538683], - [-21.928933, 64.538756], - [-21.929023, 64.538854], - [-21.929057, 64.538988], - [-21.928933, 64.539109], - [-21.928553, 64.539246], - [-21.927547, 64.539546], - [-21.925534, 64.540049], - [-21.923866, 64.540493], - [-21.923762, 64.540581], - [-21.923684, 64.540695], - [-21.923599, 64.540789], - [-21.923479, 64.540841], - [-21.923319, 64.540908], - [-21.923004, 64.541006], - [-21.922723, 64.541084], - [-21.922225, 64.541211], - [-21.921866, 64.541297], - [-21.921516, 64.541357], - [-21.921325, 64.54139], - [-21.921129, 64.541375], - [-21.920917, 64.541331], - [-21.920706, 64.5413], - [-21.920514, 64.541303], - [-21.920316, 64.54133], - [-21.920194, 64.541373], - [-21.919973, 64.541499], - [-21.919869, 64.541548], - [-21.91953, 64.541609], - [-21.919394, 64.541673], - [-21.919337, 64.541748], - [-21.919329, 64.54182], - [-21.919336, 64.541885], - [-21.919382, 64.541929], - [-21.919515, 64.541991], - [-21.919608, 64.542026], - [-21.919667, 64.542085], - [-21.919701, 64.542163], - [-21.919777, 64.542217], - [-21.919778, 64.542274], - [-21.919703, 64.542327], - [-21.919593, 64.542374], - [-21.919396, 64.542425], - [-21.918885, 64.542579], - [-21.918256, 64.542714], - [-21.917705, 64.542873], - [-21.917197, 64.543003], - [-21.916906, 64.543073], - [-21.916872, 64.543166], - [-21.916825, 64.543228], - [-21.916722, 64.54327], - [-21.916539, 64.543318], - [-21.916075, 64.543437], - [-21.915762, 64.543536], - [-21.91562, 64.543615], - [-21.915385, 64.543639], - [-21.915069, 64.543655], - [-21.914945, 64.543689], - [-21.914839, 64.543826], - [-21.914941, 64.543997], - [-21.915082, 64.544282], - [-21.915315, 64.544956], - [-21.915369, 64.545086], - [-21.915514, 64.545155], - [-21.915581, 64.545237], - [-21.915644, 64.545322], - [-21.915671, 64.545468], - [-21.915628, 64.545565], - [-21.915526, 64.545627], - [-21.915336, 64.54569], - [-21.91516, 64.54575], - [-21.915272, 64.545938], - [-21.915485, 64.546108], - [-21.915845, 64.546282], - [-21.916221, 64.546439], - [-21.916856, 64.546641], - [-21.91726, 64.54677], - [-21.917489, 64.546825], - [-21.917747, 64.546865], - [-21.917959, 64.546881], - [-21.918032, 64.546926], - [-21.918034, 64.546983], - [-21.917986, 64.547043], - [-21.91784, 64.547066], - [-21.917507, 64.547117], - [-21.917279, 64.54716], - [-21.916955, 64.547234], - [-21.916764, 64.547275], - [-21.916548, 64.54727], - [-21.916351, 64.547235], - [-21.916047, 64.54721], - [-21.915726, 64.547229], - [-21.915528, 64.547291], - [-21.915442, 64.547365], - [-21.91524, 64.547432], - [-21.915076, 64.547492], - [-21.914838, 64.547521], - [-21.914511, 64.547547], - [-21.914178, 64.54752], - [-21.913989, 64.547527], - [-21.91397, 64.547643], - [-21.913998, 64.547743], - [-21.914258, 64.547784], - [-21.914539, 64.547808], - [-21.914728, 64.547849], - [-21.914579, 64.54797], - [-21.914591, 64.548046], - [-21.914586, 64.54815], - [-21.914627, 64.548212], - [-21.914674, 64.548262], - [-21.914502, 64.54828], - [-21.914321, 64.548268], - [-21.914201, 64.548246], - [-21.914024, 64.548276], - [-21.91381, 64.548378], - [-21.913613, 64.548478], - [-21.913346, 64.548534], - [-21.913137, 64.54857], - [-21.913041, 64.548663], - [-21.912876, 64.548814], - [-21.912796, 64.548922], - [-21.912647, 64.548973], - [-21.912451, 64.548988], - [-21.912294, 64.549005], - [-21.91223, 64.549051], - [-21.912291, 64.549257], - [-21.912399, 64.54939], - [-21.912562, 64.54943], - [-21.912729, 64.549449], - [-21.912872, 64.549496], - [-21.91293, 64.549561], - [-21.913064, 64.549624], - [-21.912918, 64.549654], - [-21.912596, 64.549688], - [-21.912345, 64.549802], - [-21.912139, 64.549839], - [-21.911853, 64.549973], - [-21.911346, 64.550094], - [-21.910767, 64.550143], - [-21.910322, 64.550167], - [-21.910017, 64.550343], - [-21.910082, 64.550461], - [-21.909903, 64.550561], - [-21.909687, 64.550619], - [-21.909571, 64.55075], - [-21.909639, 64.550871], - [-21.909737, 64.550993], - [-21.909799, 64.55112], - [-21.909742, 64.551251], - [-21.909653, 64.551311], - [-21.909363, 64.551421], - [-21.909066, 64.551594], - [-21.908857, 64.551687], - [-21.908731, 64.551772], - [-21.908771, 64.551894], - [-21.909034, 64.552062], - [-21.909257, 64.552239], - [-21.909466, 64.552342], - [-21.909788, 64.552434], - [-21.91011, 64.552431], - [-21.910096, 64.552573], - [-21.909972, 64.552703], - [-21.909826, 64.552845], - [-21.909706, 64.552962], - [-21.909564, 64.553086], - [-21.90936, 64.553174], - [-21.90936, 64.553324], - [-21.909416, 64.553518], - [-21.909736, 64.553501], - [-21.909919, 64.553638], - [-21.910146, 64.55385], - [-21.910244, 64.554099], - [-21.910596, 64.554363], - [-21.910711, 64.554514], - [-21.910726, 64.554718], - [-21.910874, 64.554883], - [-21.911099, 64.555122], - [-21.911077, 64.55532], - [-21.911067, 64.555533], - [-21.911165, 64.55562], - [-21.9113, 64.555847], - [-21.911379, 64.555981], - [-21.911381, 64.556252], - [-21.911388, 64.556423], - [-21.911327, 64.556538], - [-21.911295, 64.556663], - [-21.911474, 64.556791], - [-21.911957, 64.556943], - [-21.912086, 64.557086], - [-21.912099, 64.557221], - [-21.912472, 64.557294], - [-21.912904, 64.557359], - [-21.913517, 64.557386], - [-21.914113, 64.557377], - [-21.9144, 64.55731], - [-21.91478, 64.557203], - [-21.915233, 64.557073], - [-21.915596, 64.557013], - [-21.916184, 64.556995], - [-21.916433, 64.557063], - [-21.916507, 64.557216], - [-21.916529, 64.557441], - [-21.916448, 64.55757], - [-21.916293, 64.557699], - [-21.916225, 64.557837], - [-21.916259, 64.55797], - [-21.916227, 64.558115], - [-21.916509, 64.558111], - [-21.916853, 64.558101], - [-21.917399, 64.557989], - [-21.917893, 64.557809], - [-21.918468, 64.557539], - [-21.919128, 64.557115], - [-21.919641, 64.556773], - [-21.920035, 64.556196], - [-21.920478, 64.555575], - [-21.921012, 64.554716], - [-21.921091, 64.554426], - [-21.921302, 64.553956], - [-21.921322, 64.553265], - [-21.921142, 64.55275], - [-21.921142, 64.55232], - [-21.92134, 64.55204], - [-21.921659, 64.551707], - [-21.92197, 64.551453], - [-21.922323, 64.551356], - [-21.922502, 64.551214], - [-21.922485, 64.550933], - [-21.922663, 64.550577], - [-21.922997, 64.550319], - [-21.92343, 64.550274], - [-21.92402, 64.550315], - [-21.926088, 64.55043], - [-21.926485, 64.550544], - [-21.926849, 64.550609], - [-21.927192, 64.550521], - [-21.927462, 64.550572], - [-21.927367, 64.55066], - [-21.92715, 64.550725], - [-21.927108, 64.550825], - [-21.927228, 64.550956], - [-21.927642, 64.551074], - [-21.928287, 64.551177], - [-21.928984, 64.551176], - [-21.929264, 64.551067], - [-21.929803, 64.551112], - [-21.930529, 64.551223], - [-21.930897, 64.551272], - [-21.931198, 64.551224], - [-21.931518, 64.551172], - [-21.931648, 64.550885], - [-21.931624, 64.550661], - [-21.931423, 64.550466], - [-21.931257, 64.550259], - [-21.931429, 64.550088], - [-21.931657, 64.549913], - [-21.93174, 64.549706], - [-21.931881, 64.549488], - [-21.932083, 64.549276], - [-21.932129, 64.549075], - [-21.932117, 64.548914], - [-21.932396, 64.548753], - [-21.932738, 64.548604], - [-21.933096, 64.54859], - [-21.933395, 64.548688], - [-21.933813, 64.548679], - [-21.934008, 64.548576], - [-21.934144, 64.548437], - [-21.934427, 64.548313], - [-21.934757, 64.548143], - [-21.934919, 64.547918], - [-21.935164, 64.547683], - [-21.935541, 64.547493], - [-21.936078, 64.547437], - [-21.937118, 64.547415], - [-21.93817, 64.547451], - [-21.939018, 64.547525], - [-21.939583, 64.547667], - [-21.940316, 64.547941], - [-21.941753, 64.548391], - [-21.942193, 64.548474], - [-21.942623, 64.548504], - [-21.942888, 64.54842], - [-21.943028, 64.548278], - [-21.943417, 64.548138], - [-21.943792, 64.548005], - [-21.944261, 64.54793], - [-21.9447, 64.547977], - [-21.944862, 64.548097], - [-21.945185, 64.548194], - [-21.945228, 64.548386], - [-21.945242, 64.548557], - [-21.945022, 64.548706], - [-21.944703, 64.54883], - [-21.944845, 64.549023], - [-21.945422, 64.549194], - [-21.946278, 64.549345], - [-21.947093, 64.549475], - [-21.947974, 64.549581], - [-21.948503, 64.549535], - [-21.949014, 64.54936], - [-21.949689, 64.549023], - [-21.950047, 64.54895], - [-21.950346, 64.549014], - [-21.950411, 64.549359], - [-21.950507, 64.549969], - [-21.950667, 64.550373], - [-21.950676, 64.55101], - [-21.950773, 64.551186], - [-21.950947, 64.551329], - [-21.950969, 64.551578], - [-21.951239, 64.551721], - [-21.95143, 64.551734], - [-21.9517, 64.551752], - [-21.952082, 64.551725], - [-21.952322, 64.551606], - [-21.952522, 64.551297], - [-21.952728, 64.55089], - [-21.95292, 64.550555], - [-21.953467, 64.549756], - [-21.953766, 64.549258], - [-21.954198, 64.548886], - [-21.954864, 64.548286], - [-21.955089, 64.547916], - [-21.955086, 64.547631], - [-21.955054, 64.547322], - [-21.954972, 64.547078], - [-21.955141, 64.546916], - [-21.955755, 64.546929], - [-21.956491, 64.546972], - [-21.957246, 64.546931], - [-21.957869, 64.546866], - [-21.95835, 64.546732], - [-21.958779, 64.546543], - [-21.95896, 64.54634], - [-21.958949, 64.546183], - [-21.95877, 64.546064], - [-21.958381, 64.546097], - [-21.958092, 64.546035], - [-21.958004, 64.545857], - [-21.958028, 64.545538], - [-21.958105, 64.545289], - [-21.958371, 64.545003], - [-21.959371, 64.544504], - [-21.960026, 64.5444], - [-21.960582, 64.544469], - [-21.960669, 64.544642], - [-21.959906, 64.545003], - [-21.95967, 64.545192], - [-21.959583, 64.54539], - [-21.959895, 64.545626], - [-21.960397, 64.545797], - [-21.961138, 64.545968], - [-21.961686, 64.546008], - [-21.962277, 64.545993], - [-21.962804, 64.545851], - [-21.963351, 64.545668], - [-21.963744, 64.545662], - [-21.963744, 64.545827], - [-21.963615, 64.546021], - [-21.963533, 64.546206], - [-21.963695, 64.546392], - [-21.963766, 64.546632], - [-21.963572, 64.547138], - [-21.963576, 64.547391], - [-21.963704, 64.547549], - [-21.963992, 64.54764], - [-21.964432, 64.547687], - [-21.964863, 64.547692], - [-21.965261, 64.547632], - [-21.965296, 64.547586], - [-21.965355, 64.547512], - [-21.965409, 64.547364], - [-21.965529, 64.547165], - [-21.965745, 64.546788], - [-21.965905, 64.546479], - [-21.965787, 64.546298], - [-21.96555, 64.546212], - [-21.965326, 64.546174], - [-21.965261, 64.545981], - [-21.965097, 64.545795], - [-21.965066, 64.545561], - [-21.965324, 64.545299], - [-21.965999, 64.54528], - [-21.966334, 64.545124], - [-21.966569, 64.544948], - [-21.966645, 64.544746], - [-21.966666, 64.544565], - [-21.966439, 64.544371], - [-21.966097, 64.544238], - [-21.965777, 64.54421], - [-21.965482, 64.544302], - [-21.965279, 64.544421], - [-21.96513, 64.544297], - [-21.965074, 64.544034], - [-21.965454, 64.543904], - [-21.965841, 64.543722], - [-21.965959, 64.54355], - [-21.966022, 64.543108], - [-21.965787, 64.542761], - [-21.965334, 64.542444], - [-21.964861, 64.542263], - [-21.964336, 64.542125], - [-21.963833, 64.542222], - [-21.963649, 64.542139], - [-21.963919, 64.541766], - [-21.963821, 64.541338], - [-21.964345, 64.541158], - [-21.964916, 64.541165], - [-21.96546, 64.541181], - [-21.96658, 64.54103], - [-21.966973, 64.540843], - [-21.967031, 64.540672], - [-21.967006, 64.540438], - [-21.966931, 64.540106], - [-21.966849, 64.539659], - [-21.966794, 64.539206], - [-21.966803, 64.538579], - [-21.967103, 64.538117], - [-21.96721, 64.537619], - [-21.967178, 64.537315], - [-21.967244, 64.537047], - [-21.967598, 64.536767], - [-21.967771, 64.536521], - [-21.967704, 64.536396], - [-21.96775, 64.536295], - [-21.968048, 64.536194], - [-21.968082, 64.536078], - [-21.967918, 64.535991], - [-21.967673, 64.536001], - [-21.967372, 64.536106], - [-21.967135, 64.536132], - [-21.967042, 64.536035], - [-21.967073, 64.535885], - [-21.967491, 64.5357], - [-21.967697, 64.535443], - [-21.967853, 64.535277], - [-21.968637, 64.535], - [-21.968963, 64.534717], - [-21.969145, 64.534427], - [-21.969401, 64.534155], - [-21.969703, 64.533934], - [-21.970025, 64.533878], - [-21.970171, 64.534077], - [-21.970421, 64.53405], - [-21.970945, 64.533915], - [-21.971324, 64.533759], - [-21.971696, 64.533529], - [-21.971953, 64.533182], - [-21.972028, 64.532878], - [-21.972138, 64.532462], - [-21.972287, 64.532018], - [-21.972298, 64.531706], - [-21.972213, 64.531511], - [-21.972225, 64.531253], - [-21.972394, 64.530959], - [-21.972779, 64.530618], - [-21.973261, 64.530405], - [-21.973619, 64.530243], - [-21.973909, 64.530008], - [-21.97393, 64.529819], - [-21.974154, 64.529749], - [-21.974338, 64.529831], - [-21.974592, 64.52999], - [-21.975021, 64.530003], - [-21.97545, 64.529975], - [-21.975836, 64.529902], - [-21.976094, 64.529815], - [-21.976344, 64.529629], - [-21.976405, 64.529441], - [-21.976438, 64.529229], - [-21.976484, 64.529094], - [-21.976664, 64.529039], - [-21.976942, 64.529104], - [-21.977115, 64.528994], - [-21.977166, 64.528878], - [-21.976945, 64.528725], - [-21.976673, 64.528531], - [-21.976568, 64.528365], - [-21.976684, 64.52831], - [-21.976952, 64.528343], - [-21.977038, 64.528291], - [-21.97707, 64.528116], - [-21.977166, 64.527859], - [-21.977222, 64.527635], - [-21.976996, 64.52748], - [-21.97659, 64.527327], - [-21.976393, 64.527147], - [-21.976558, 64.526977], - [-21.976876, 64.526888], - [-21.977306, 64.52688], - [-21.977695, 64.527153], - [-21.978039, 64.527513], - [-21.978475, 64.527738], - [-21.978818, 64.527775], - [-21.979047, 64.527682], - [-21.979183, 64.527516], - [-21.979358, 64.527345], - [-21.979602, 64.527691], - [-21.979852, 64.527977], - [-21.980078, 64.528323], - [-21.980149, 64.528564], - [-21.980152, 64.528846], - [-21.980098, 64.529025], - [-21.979841, 64.529302], - [-21.980258, 64.529464], - [-21.980987, 64.52956], - [-21.981652, 64.529573], - [-21.982221, 64.529552], - [-21.982725, 64.529436], - [-21.982996, 64.529238], - [-21.983241, 64.528996], - [-21.983519, 64.52873], - [-21.983883, 64.528398], - [-21.984075, 64.528102], - [-21.984314, 64.527723], - [-21.984475, 64.527456], - [-21.984667, 64.527451], - [-21.984764, 64.527826], - [-21.984848, 64.528125], - [-21.984861, 64.52836], - [-21.984625, 64.528776], - [-21.984409, 64.529279], - [-21.984177, 64.530068], - [-21.984069, 64.530265], - [-21.983928, 64.530433], - [-21.983736, 64.530524], - [-21.983447, 64.530487], - [-21.983207, 64.53053], - [-21.983047, 64.530704], - [-21.983091, 64.530835], - [-21.983283, 64.530931], - [-21.983346, 64.531026], - [-21.983317, 64.531124], - [-21.983102, 64.531212], - [-21.983369, 64.531387], - [-21.984034, 64.531553], - [-21.984583, 64.531693], - [-21.985311, 64.531788], - [-21.985719, 64.531808], - [-21.985792, 64.531732], - [-21.98585, 64.531549], - [-21.985977, 64.531332], - [-21.985953, 64.531179], - [-21.986076, 64.531097], - [-21.986212, 64.531115], - [-21.986286, 64.53125], - [-21.986192, 64.531387], - [-21.986232, 64.531484], - [-21.986504, 64.531512], - [-21.986704, 64.531457], - [-21.986952, 64.531359], - [-21.987134, 64.531258], - [-21.987123, 64.531128], - [-21.987007, 64.530994], - [-21.98693, 64.53082], - [-21.98705, 64.530677], - [-21.987296, 64.530636], - [-21.9875, 64.53083], - [-21.987651, 64.53105], - [-21.987798, 64.531308], - [-21.987822, 64.531577], - [-21.987734, 64.531748], - [-21.987512, 64.531918], - [-21.987309, 64.53202], - [-21.987059, 64.532047], - [-21.986835, 64.532], - [-21.986609, 64.531977], - [-21.986436, 64.532051], - [-21.986501, 64.532184], - [-21.986417, 64.532279], - [-21.986105, 64.532208], - [-21.985699, 64.532251], - [-21.98543, 64.532348], - [-21.985365, 64.532499], - [-21.98531, 64.532753], - [-21.985312, 64.53303], - [-21.985288, 64.533246], - [-21.985235, 64.533366], - [-21.984924, 64.533432], - [-21.984731, 64.533511], - [-21.984783, 64.533676], - [-21.984806, 64.533734], - [-21.984853, 64.533851], - [-21.985149, 64.533995], - [-21.985354, 64.534077], - [-21.985559, 64.53416], - [-21.985978, 64.53415], - [-21.986159, 64.53423], - [-21.986501, 64.534289], - [-21.986867, 64.534262], - [-21.987158, 64.534261], - [-21.987348, 64.534188], - [-21.987467, 64.534096], - [-21.987512, 64.533961], - [-21.987597, 64.5338], - [-21.98777, 64.533718], - [-21.987941, 64.533619], - [-21.987985, 64.533504], - [-21.988067, 64.533366], - [-21.988285, 64.533206], - [-21.988583, 64.533219], - [-21.988992, 64.533219], - [-21.989614, 64.533181], - [-21.990099, 64.533114], - [-21.990555, 64.533025], - [-21.990795, 64.532878], - [-21.990942, 64.532698], - [-21.991017, 64.532462], - [-21.991201, 64.532218], - [-21.991371, 64.531969], - [-21.991483, 64.531702], - [-21.991383, 64.531553], - [-21.991172, 64.531456], - [-21.990943, 64.531534], - [-21.990645, 64.531549], - [-21.990388, 64.531465], - [-21.990238, 64.531336], - [-21.99003, 64.531346], - [-21.989667, 64.53142], - [-21.989248, 64.531342], - [-21.989389, 64.53124], - [-21.989476, 64.531082], - [-21.989239, 64.530916], - [-21.989279, 64.530769], - [-21.989548, 64.530631], - [-21.989914, 64.530599], - [-21.99003, 64.530777], - [-21.990199, 64.530923], - [-21.99033, 64.530862], - [-21.990408, 64.530696], - [-21.990408, 64.530483], - [-21.990484, 64.530243], - [-21.99048, 64.530022], - [-21.99077, 64.529892], - [-21.991105, 64.529897], - [-21.991394, 64.530025], - [-21.99148, 64.530205], - [-21.991558, 64.530391], - [-21.99144, 64.53053], - [-21.991693, 64.530617], - [-21.992101, 64.53064], - [-21.992545, 64.530663], - [-21.992993, 64.530667], - [-21.993488, 64.53064], - [-21.993765, 64.53058], - [-21.994064, 64.53046], - [-21.994323, 64.530294], - [-21.994787, 64.530105], - [-21.995537, 64.529847], - [-21.996072, 64.529708], - [-21.996414, 64.529656], - [-21.997063, 64.529645], - [-21.997387, 64.529823], - [-21.997861, 64.529875], - [-21.998591, 64.529829], - [-21.999232, 64.529739], - [-21.999767, 64.529501], - [-22.000412, 64.529184], - [-22.000775, 64.528947], - [-22.000889, 64.528762], - [-22.000605, 64.528614], - [-22.000346, 64.528215], - [-22.00028, 64.527819], - [-22.000345, 64.527295], - [-22.000608, 64.526934], - [-22.00086, 64.526415], - [-22.000947, 64.526056], - [-22.000952, 64.525631], - [-22.000905, 64.525178], - [-22.001229, 64.524892], - [-22.001595, 64.52484], - [-22.001976, 64.525141], - [-22.002341, 64.525486], - [-22.00245, 64.525762], - [-22.002708, 64.525879], - [-22.00326, 64.525927], - [-22.003754, 64.525809], - [-22.004011, 64.525586], - [-22.004406, 64.525761], - [-22.00528, 64.525864], - [-22.00636, 64.525871], - [-22.008055, 64.525817], - [-22.009549, 64.525651], - [-22.011052, 64.525384], - [-22.012386, 64.525125], - [-22.013461, 64.524747], - [-22.014247, 64.524284], - [-22.014471, 64.523833], - [-22.014384, 64.523364], - [-22.014375, 64.522918], - [-22.014894, 64.522533], - [-22.015844, 64.522169], - [-22.01685, 64.521629], - [-22.017925, 64.521286], - [-22.018905, 64.521017], - [-22.019675, 64.520776], - [-22.019875, 64.520507], - [-22.019936, 64.520212], - [-22.020196, 64.519901], - [-22.020449, 64.519642], - [-22.020522, 64.519385], - [-22.020383, 64.519052], - [-22.020604, 64.518795], - [-22.021091, 64.518582], - [-22.02159, 64.518616], - [-22.021869, 64.51879], - [-22.022187, 64.518942], - [-22.022768, 64.518912], - [-22.023387, 64.518866], - [-22.023796, 64.518739], - [-22.023888, 64.518441], - [-22.024216, 64.51833], - [-22.024768, 64.51846], - [-22.025386, 64.518573], - [-22.025497, 64.518747], - [-22.025239, 64.519023], - [-22.025301, 64.519243], - [-22.025557, 64.519446], - [-22.025584, 64.519633], - [-22.025263, 64.519787], - [-22.025, 64.519669], - [-22.024594, 64.519578], - [-22.024212, 64.519769], - [-22.024041, 64.520037], - [-22.024247, 64.520409], - [-22.02436, 64.520715], - [-22.024208, 64.52098], - [-22.023991, 64.521388], - [-22.023475, 64.521683], - [-22.023217, 64.521886], - [-22.02331, 64.522144], - [-22.023032, 64.52227], - [-22.022837, 64.52243], - [-22.022794, 64.522715], - [-22.022792, 64.523132], - [-22.022709, 64.523565], - [-22.02236, 64.523895], - [-22.022208, 64.524227], - [-22.021915, 64.524478], - [-22.021871, 64.524811], - [-22.021976, 64.525125], - [-22.02223, 64.525353], - [-22.022534, 64.52542], - [-22.022615, 64.525634], - [-22.022314, 64.525826], - [-22.022277, 64.526092], - [-22.022615, 64.526278], - [-22.023418, 64.526499], - [-22.024337, 64.526526], - [-22.024998, 64.526517], - [-22.02548, 64.526416], - [-22.025841, 64.526096], - [-22.026331, 64.525632], - [-22.026649, 64.525125], - [-22.027145, 64.524892], - [-22.02764, 64.524753], - [-22.027979, 64.52444], - [-22.028352, 64.524017], - [-22.028967, 64.523702], - [-22.029033, 64.523953], - [-22.028632, 64.524432], - [-22.028332, 64.524882], - [-22.028373, 64.525132], - [-22.027987, 64.525301], - [-22.027851, 64.525622], - [-22.027854, 64.525946], - [-22.028156, 64.526092], - [-22.028562, 64.526175], - [-22.028759, 64.526388], - [-22.028519, 64.526692], - [-22.02816, 64.527036], - [-22.027872, 64.527304], - [-22.027943, 64.527486], - [-22.028286, 64.527738], - [-22.028799, 64.527977], - [-22.029532, 64.528144], - [-22.030363, 64.52826], - [-22.030749, 64.528429], - [-22.030864, 64.528658], - [-22.030542, 64.528916], - [-22.03013, 64.528954], - [-22.029726, 64.528814], - [-22.029169, 64.52874], - [-22.028332, 64.528649], - [-22.028067, 64.528956], - [-22.027912, 64.52923], - [-22.027965, 64.529507], - [-22.028353, 64.529831], - [-22.028911, 64.530144], - [-22.029593, 64.530401], - [-22.030474, 64.53057], - [-22.031542, 64.530671], - [-22.032448, 64.530725], - [-22.03324, 64.530734], - [-22.033887, 64.530688], - [-22.034266, 64.53053], - [-22.034702, 64.530147], - [-22.035279, 64.529676], - [-22.035862, 64.528946], - [-22.03631, 64.528447], - [-22.036672, 64.527977], - [-22.037296, 64.527662], - [-22.037812, 64.527443], - [-22.037878, 64.527748], - [-22.037771, 64.528366], - [-22.03762, 64.529008], - [-22.037272, 64.529592], - [-22.03695, 64.530107], - [-22.036821, 64.530577], - [-22.036679, 64.530968], - [-22.036819, 64.53113], - [-22.037302, 64.531177], - [-22.037731, 64.53138], - [-22.037427, 64.531659], - [-22.037319, 64.531859], - [-22.037514, 64.532267], - [-22.037192, 64.532553], - [-22.036681, 64.532848], - [-22.035278, 64.533468], - [-22.034897, 64.533873], - [-22.033482, 64.53688], - [-22.033219, 64.537358], - [-22.032508, 64.537784], - [-22.03176, 64.538], - [-22.030752, 64.53826], - [-22.030495, 64.538574], - [-22.03041, 64.53885], - [-22.030258, 64.539224], - [-22.029488, 64.539924], - [-22.03017, 64.54012], - [-22.03, 64.540554], - [-22.027164, 64.543071], - [-22.025813, 64.543789], - [-22.024512, 64.544425], - [-22.02236, 64.544787], - [-22.02142, 64.54572], - [-22.020879, 64.546399], - [-22.02022, 64.546982], - [-22.019505, 64.547671], - [-22.018692, 64.549063], - [-22.018132, 64.549186], - [-22.017982, 64.549422], - [-22.018139, 64.549637], - [-22.01826, 64.549958], - [-22.018216, 64.550329], - [-22.017917, 64.550815], - [-22.017709, 64.551304], - [-22.017833, 64.551773], - [-22.017901, 64.552299], - [-22.017665, 64.552819], - [-22.017149, 64.553184], - [-22.016542, 64.553361], - [-22.016166, 64.552991], - [-22.015751, 64.552874], - [-22.015386, 64.553186], - [-22.014568, 64.554458], - [-22.01429, 64.554911], - [-22.0138, 64.555399], - [-22.013395, 64.555704], - [-22.012668, 64.555887], - [-22.011806, 64.556293], - [-22.011766, 64.556549], - [-22.011806, 64.556856], - [-22.011593, 64.55716], - [-22.01123, 64.55742], - [-22.010261, 64.557917], - [-22.009574, 64.558312], - [-22.008716, 64.559039], - [-22.008225, 64.559556], - [-22.007836, 64.560163], - [-22.007723, 64.560458], - [-22.007969, 64.5607], - [-22.00799, 64.561058], - [-22.008395, 64.561186], - [-22.008884, 64.561481], - [-22.00921, 64.561786], - [-22.009337, 64.562009], - [-22.009982, 64.562101], - [-22.010862, 64.562494], - [-22.011313, 64.562909], - [-22.011761, 64.563115], - [-22.012238, 64.563259], - [-22.012813, 64.563194], - [-22.013413, 64.563272], - [-22.013714, 64.563444], - [-22.01367, 64.563609], - [-22.013133, 64.563693], - [-22.012619, 64.56371], - [-22.012797, 64.563889], - [-22.012596, 64.564091], - [-22.01247, 64.564272], - [-22.012324, 64.564539], - [-22.012109, 64.564871], - [-22.011765, 64.565315], - [-22.011635, 64.565545], - [-22.01168, 64.565775], - [-22.011934, 64.565885], - [-22.012017, 64.566045], - [-22.011658, 64.566191], - [-22.01127, 64.566302], - [-22.011188, 64.566495], - [-22.011357, 64.566716], - [-22.01157, 64.566873], - [-22.011998, 64.567129], - [-22.012387, 64.567434], - [-22.012234, 64.567925], - [-22.011764, 64.56832], - [-22.011266, 64.569056], - [-22.011251, 64.56927], - [-22.011608, 64.569492], - [-22.014294, 64.570514], - [-22.014535, 64.570677], - [-22.014401, 64.570856], - [-22.013866, 64.570944], - [-22.012925, 64.570953], - [-22.012193, 64.571122], - [-22.011608, 64.571029], - [-22.011096, 64.571077], - [-22.010798, 64.570975], - [-22.010405, 64.571194], - [-22.009549, 64.571312], - [-22.008716, 64.571545], - [-22.008174, 64.571775], - [-22.00753, 64.571915], - [-22.007385, 64.572024], - [-22.007704, 64.572145], - [-22.008026, 64.572309], - [-22.007601, 64.572725], - [-22.006951, 64.573128], - [-22.006595, 64.57347], - [-22.006586, 64.574004], - [-22.006675, 64.574649], - [-22.006419, 64.575459], - [-22.006157, 64.575763], - [-22.005564, 64.575938], - [-22.004702, 64.576033], - [-22.00363, 64.576068], - [-22.002897, 64.576279], - [-22.001698, 64.576742], - [-22.000887, 64.577138], - [-22.00041, 64.577552], - [-22.000112, 64.577901], - [-21.999923, 64.578315], - [-22.000115, 64.578722], - [-22.000563, 64.57898], - [-22.000687, 64.579201], - [-22.000952, 64.57943], - [-22.000953, 64.57966], - [-22.000458, 64.580222], - [-21.999897, 64.58075], - [-21.999382, 64.581365], - [-21.999079, 64.581703], - [-21.998634, 64.581879], - [-21.998028, 64.581851], - [-21.997426, 64.581659], - [-21.996631, 64.581566], - [-21.99533, 64.581594], - [-21.99421, 64.58141], - [-21.993486, 64.581565], - [-21.992583, 64.5821], - [-21.990734, 64.58292], - [-21.989618, 64.583334], - [-21.988777, 64.583978], - [-21.988073, 64.584608], - [-21.987361, 64.585121], - [-21.986783, 64.585728], - [-21.985945, 64.586097], - [-21.985221, 64.586477], - [-21.984922, 64.586807], - [-21.984723, 64.587196], - [-21.984836, 64.587516], - [-21.984979, 64.587792], - [-21.984872, 64.588178], - [-21.98485, 64.588547], - [-21.985155, 64.588898], - [-21.985605, 64.589175], - [-21.986126, 64.589359], - [-21.986725, 64.589495], - [-21.987198, 64.589468], - [-21.987538, 64.589314], - [-21.987576, 64.589126], - [-21.987582, 64.588869], - [-21.987753, 64.588585], - [-21.988184, 64.588439], - [-21.988758, 64.588347], - [-21.989359, 64.588059], - [-21.989707, 64.587739], - [-21.990139, 64.586825], - [-21.990697, 64.58631], - [-21.991141, 64.585923], - [-21.991491, 64.585481], - [-21.992066, 64.585203], - [-21.992993, 64.585057], - [-21.993621, 64.58497], - [-21.993836, 64.58485], - [-21.994198, 64.584592], - [-21.994799, 64.584242], - [-21.99522, 64.583805], - [-21.995455, 64.583485], - [-21.995561, 64.583094], - [-21.995586, 64.582858], - [-21.995821, 64.582738], - [-21.996545, 64.582763], - [-21.997299, 64.582802], - [-21.997944, 64.582755], - [-21.99837, 64.582551], - [-21.999081, 64.582412], - [-21.999724, 64.582407], - [-22.000372, 64.582231], - [-22.00063, 64.581796], - [-22.000953, 64.58129], - [-22.001424, 64.580792], - [-22.001956, 64.580426], - [-22.002532, 64.580047], - [-22.00299, 64.579654], - [-22.003331, 64.579301], - [-22.003484, 64.578954], - [-22.003457, 64.578436], - [-22.003356, 64.578037], - [-22.003437, 64.577836], - [-22.004083, 64.577728], - [-22.004936, 64.577523], - [-22.005664, 64.577256], - [-22.006593, 64.576862], - [-22.007279, 64.576411], - [-22.00782, 64.57602], - [-22.008584, 64.575543], - [-22.00927, 64.574998], - [-22.009854, 64.574651], - [-22.010218, 64.574393], - [-22.010321, 64.57404], - [-22.010132, 64.573748], - [-22.010105, 64.573533], - [-22.010579, 64.573303], - [-22.011617, 64.573149], - [-22.012597, 64.573084], - [-22.013505, 64.572861], - [-22.014446, 64.572557], - [-22.015068, 64.572246], - [-22.015301, 64.571979], - [-22.01599, 64.571868], - [-22.016764, 64.571765], - [-22.017895, 64.571517], - [-22.018475, 64.571065], - [-22.019511, 64.570579], - [-22.020156, 64.570283], - [-22.020736, 64.56999], - [-22.020862, 64.569729], - [-22.020758, 64.56935], - [-22.020277, 64.569036], - [-22.019828, 64.568623], - [-22.019275, 64.568273], - [-22.018798, 64.567998], - [-22.01765, 64.5679], - [-22.018308, 64.567461], - [-22.018844, 64.567105], - [-22.019206, 64.566825], - [-22.019792, 64.56667], - [-22.020473, 64.566477], - [-22.020834, 64.566227], - [-22.020732, 64.566044], - [-22.020453, 64.565943], - [-22.02069, 64.565556], - [-22.021186, 64.565102], - [-22.021626, 64.564948], - [-22.023011, 64.564577], - [-22.024183, 64.563962], - [-22.02517, 64.563722], - [-22.025861, 64.563775], - [-22.026592, 64.563796], - [-22.027879, 64.563748], - [-22.028671, 64.563591], - [-22.029377, 64.563437], - [-22.029789, 64.563122], - [-22.029977, 64.562756], - [-22.029942, 64.56231], - [-22.030211, 64.562098], - [-22.030668, 64.561934], - [-22.030877, 64.561713], - [-22.03054, 64.56148], - [-22.029791, 64.561517], - [-22.029916, 64.561133], - [-22.030343, 64.560882], - [-22.0311, 64.560586], - [-22.031588, 64.560425], - [-22.031946, 64.560227], - [-22.032246, 64.560098], - [-22.032993, 64.560047], - [-22.033898, 64.560011], - [-22.034636, 64.559798], - [-22.035399, 64.559524], - [-22.035646, 64.559218], - [-22.036146, 64.559029], - [-22.036866, 64.558881], - [-22.037385, 64.558854], - [-22.037702, 64.558688], - [-22.038208, 64.558588], - [-22.038726, 64.558527], - [-22.039207, 64.558485], - [-22.039369, 64.558374], - [-22.039516, 64.558181], - [-22.039841, 64.558135], - [-22.040399, 64.557914], - [-22.04116, 64.557342], - [-22.041481, 64.556955], - [-22.041687, 64.55677], - [-22.041921, 64.556424], - [-22.041835, 64.556241], - [-22.04147, 64.556131], - [-22.040807, 64.556131], - [-22.04015, 64.556282], - [-22.039616, 64.556351], - [-22.039367, 64.556591], - [-22.038876, 64.556706], - [-22.038541, 64.556891], - [-22.038328, 64.557126], - [-22.037728, 64.557443], - [-22.037285, 64.557505], - [-22.037027, 64.557707], - [-22.037094, 64.557947], - [-22.036684, 64.558219], - [-22.03603, 64.55851], - [-22.035195, 64.55874], - [-22.034002, 64.558919], - [-22.033692, 64.559093], - [-22.03334, 64.559117], - [-22.033027, 64.55903], - [-22.032692, 64.558947], - [-22.032363, 64.558965], - [-22.032051, 64.559107], - [-22.031666, 64.559236], - [-22.031396, 64.559217], - [-22.031115, 64.559181], - [-22.030869, 64.559213], - [-22.03044, 64.559384], - [-22.030014, 64.559481], - [-22.029915, 64.559618], - [-22.029709, 64.559753], - [-22.029452, 64.559886], - [-22.029013, 64.560057], - [-22.028822, 64.560103], - [-22.028938, 64.559942], - [-22.02922, 64.55983], - [-22.029377, 64.55972], - [-22.029401, 64.559564], - [-22.029455, 64.559328], - [-22.029752, 64.559052], - [-22.029947, 64.558867], - [-22.029978, 64.558683], - [-22.029768, 64.558397], - [-22.029338, 64.558006], - [-22.028562, 64.557549], - [-22.02879, 64.557306], - [-22.027995, 64.556882], - [-22.027556, 64.556508], - [-22.0272, 64.556223], - [-22.025883, 64.555969], - [-22.024916, 64.555696], - [-22.024035, 64.555508], - [-22.023552, 64.55573], - [-22.022824, 64.55596], - [-22.022812, 64.555714], - [-22.023168, 64.555198], - [-22.02353, 64.554881], - [-22.024013, 64.554513], - [-22.0248, 64.554203], - [-22.025315, 64.554055], - [-22.025474, 64.553946], - [-22.025311, 64.553831], - [-22.025057, 64.553872], - [-22.024893, 64.553811], - [-22.02498, 64.553672], - [-22.025125, 64.553467], - [-22.025332, 64.553272], - [-22.025851, 64.553074], - [-22.026149, 64.553055], - [-22.02628, 64.553176], - [-22.026224, 64.553356], - [-22.025999, 64.553462], - [-22.025922, 64.5536], - [-22.026098, 64.553709], - [-22.026353, 64.553623], - [-22.02657, 64.553631], - [-22.026591, 64.553757], - [-22.026072, 64.554064], - [-22.025561, 64.554369], - [-22.025343, 64.554531], - [-22.025153, 64.55467], - [-22.025172, 64.554811], - [-22.025547, 64.555034], - [-22.026034, 64.555193], - [-22.027126, 64.555415], - [-22.028711, 64.555601], - [-22.029882, 64.55571], - [-22.030976, 64.555779], - [-22.032319, 64.555761], - [-22.033693, 64.555608], - [-22.034753, 64.55542], - [-22.035905, 64.555098], - [-22.036687, 64.554762], - [-22.037252, 64.554402], - [-22.037364, 64.553931], - [-22.037351, 64.553651], - [-22.037704, 64.55343], - [-22.037951, 64.553051], - [-22.038315, 64.552623], - [-22.039001, 64.552032], - [-22.039838, 64.551549], - [-22.04042, 64.551179], - [-22.040721, 64.550726], - [-22.040752, 64.550443], - [-22.04102, 64.550258], - [-22.041693, 64.550151], - [-22.042189, 64.550031], - [-22.04266, 64.549684], - [-22.043329, 64.549123], - [-22.043657, 64.54892], - [-22.043969, 64.548414], - [-22.04411, 64.548146], - [-22.044681, 64.547869], - [-22.045313, 64.547533], - [-22.046139, 64.546776], - [-22.04636, 64.546467], - [-22.047329, 64.545918], - [-22.047949, 64.545581], - [-22.048304, 64.545438], - [-22.048457, 64.545184], - [-22.048422, 64.545033], - [-22.050088, 64.54358], - [-22.050721, 64.543363], - [-22.051436, 64.543139], - [-22.051944, 64.542944], - [-22.052415, 64.542705], - [-22.052682, 64.542479], - [-22.052647, 64.542243], - [-22.052734, 64.542059], - [-22.05294, 64.541836], - [-22.053132, 64.541557], - [-22.053431, 64.541255], - [-22.053529, 64.540966], - [-22.053489, 64.540597], - [-22.053165, 64.540324], - [-22.052734, 64.540043], - [-22.052555, 64.539777], - [-22.052362, 64.539491], - [-22.052004, 64.5393], - [-22.051578, 64.539149], - [-22.050094, 64.538456], - [-22.049669, 64.538137], - [-22.049422, 64.537769], - [-22.049207, 64.537488], - [-22.048865, 64.537305], - [-22.048359, 64.537171], - [-22.047466, 64.537151], - [-22.047068, 64.537185], - [-22.046707, 64.537217], - [-22.046171, 64.537406], - [-22.045429, 64.537734], - [-22.044637, 64.538207], - [-22.044408, 64.538277], - [-22.044345, 64.53812], - [-22.044509, 64.537945], - [-22.044614, 64.537636], - [-22.044504, 64.537465], - [-22.044262, 64.537374], - [-22.043927, 64.537258], - [-22.043883, 64.536971], - [-22.043915, 64.536533], - [-22.044143, 64.536021], - [-22.045659, 64.534041], - [-22.0471, 64.53223], - [-22.048025, 64.531002], - [-22.048508, 64.530111], - [-22.048764, 64.52988], - [-22.049077, 64.529871], - [-22.049346, 64.530005], - [-22.049477, 64.530218], - [-22.049723, 64.530351], - [-22.049809, 64.530472], - [-22.049984, 64.530492], - [-22.050229, 64.530459], - [-22.050549, 64.530411], - [-22.050644, 64.530301], - [-22.050528, 64.530136], - [-22.050506, 64.529949], - [-22.050656, 64.529821], - [-22.050871, 64.529677], - [-22.050945, 64.529543], - [-22.050757, 64.528917], - [-22.050724, 64.52859], - [-22.050993, 64.52836], - [-22.051219, 64.528018], - [-22.0515, 64.527759], - [-22.051468, 64.527505], - [-22.052001, 64.527375], - [-22.052637, 64.527095], - [-22.053043, 64.526798], - [-22.053025, 64.526504], - [-22.052798, 64.526129], - [-22.052231, 64.525442], - [-22.051832, 64.525185], - [-22.051275, 64.525046], - [-22.050642, 64.524935], - [-22.05005, 64.524916], - [-22.049705, 64.524994], - [-22.049427, 64.525526], - [-22.049195, 64.525706], - [-22.048933, 64.525843], - [-22.048678, 64.525764], - [-22.048613, 64.525557], - [-22.048784, 64.525222], - [-22.049407, 64.524741], - [-22.050073, 64.524326], - [-22.051026, 64.523547], - [-22.051748, 64.52283], - [-22.052153, 64.522147], - [-22.052259, 64.521717], - [-22.052249, 64.52126], - [-22.051981, 64.521008], - [-22.051371, 64.52067], - [-22.050135, 64.52008], - [-22.048936, 64.519706], - [-22.048218, 64.519564], - [-22.047411, 64.519555], - [-22.047156, 64.519563], - [-22.047058, 64.51943], - [-22.047111, 64.519156], - [-22.047423, 64.519102], - [-22.047604, 64.519199], - [-22.047982, 64.519203], - [-22.049535, 64.518589], - [-22.050717, 64.518002], - [-22.051586, 64.517517], - [-22.052217, 64.517011], - [-22.052497, 64.516563], - [-22.052699, 64.516141], - [-22.053001, 64.515613], - [-22.053279, 64.515142], - [-22.053518, 64.514786], - [-22.053486, 64.514509], - [-22.052763, 64.514332], - [-22.05165, 64.514244], - [-22.050693, 64.514327], - [-22.050049, 64.514475], - [-22.049204, 64.514715], - [-22.049085, 64.51489], - [-22.048592, 64.514818], - [-22.048819, 64.513396], - [-22.048937, 64.512819], - [-22.048869, 64.512458], - [-22.049224, 64.511775], - [-22.049592, 64.510519], - [-22.050286, 64.5096], - [-22.051218, 64.508548], - [-22.051393, 64.50817], - [-22.051651, 64.507526], - [-22.052066, 64.507344], - [-22.052389, 64.50745], - [-22.052574, 64.507674], - [-22.052594, 64.508067], - [-22.052936, 64.508132], - [-22.054666, 64.508196], - [-22.056243, 64.508155], - [-22.060478, 64.507915], - [-22.065058, 64.507591], - [-22.068965, 64.507351], - [-22.069951, 64.507342], - [-22.070358, 64.507475], - [-22.070846, 64.507707], - [-22.071391, 64.507726], - [-22.072473, 64.507656], - [-22.072483, 64.507297], - [-22.072387, 64.507051], - [-22.072219, 64.506667], - [-22.072495, 64.506386], - [-22.073032, 64.506132], - [-22.073667, 64.505884], - [-22.074371, 64.505629], - [-22.0752, 64.50524], - [-22.075883, 64.504997], - [-22.076229, 64.504719], - [-22.076348, 64.504294], - [-22.076186, 64.503712], - [-22.076377, 64.502231], - [-22.076316, 64.501465], - [-22.076241, 64.500835], - [-22.076152, 64.500263], - [-22.076283, 64.499672], - [-22.076313, 64.499266], - [-22.076046, 64.498951], - [-22.075501, 64.498725], - [-22.074386, 64.498281], - [-22.073463, 64.498101], - [-22.073473, 64.497155], - [-22.073184, 64.496369], - [-22.072593, 64.495962], - [-22.071324, 64.495606], - [-22.071238, 64.494669], - [-22.072033, 64.493719], - [-22.072429, 64.493546], - [-22.072741, 64.493624], - [-22.072923, 64.493582], - [-22.0733, 64.493255], - [-22.0737, 64.49211], - [-22.073641, 64.49168], - [-22.073235, 64.491305], - [-22.072718, 64.490534], - [-22.072343, 64.49009], - [-22.072268, 64.489559], - [-22.072784, 64.488233], - [-22.073247, 64.487101], - [-22.073236, 64.486688], - [-22.07404, 64.486462], - [-22.074801, 64.486205], - [-22.075234, 64.485876], - [-22.07523, 64.485551], - [-22.075295, 64.484591], - [-22.075575, 64.483893], - [-22.075899, 64.483393], - [-22.0765, 64.483021], - [-22.076827, 64.482743], - [-22.07697, 64.48222], - [-22.078033, 64.481874], - [-22.078622, 64.48167], - [-22.078857, 64.481385], - [-22.079189, 64.480321], - [-22.079266, 64.479243], - [-22.079524, 64.477668], - [-22.07965, 64.476877], - [-22.079663, 64.476201], - [-22.080426, 64.475563], - [-22.08037, 64.4749], - [-22.080105, 64.474506], - [-22.079256, 64.473646], - [-22.079166, 64.473211], - [-22.079489, 64.47279], - [-22.079835, 64.472618], - [-22.080261, 64.472604], - [-22.080444, 64.472794], - [-22.08066, 64.473026], - [-22.081183, 64.473057], - [-22.08155, 64.472984], - [-22.081699, 64.472753], - [-22.08197, 64.472421], - [-22.082164, 64.472129], - [-22.082454, 64.472139], - [-22.082494, 64.472338], - [-22.082537, 64.472435], - [-22.08284, 64.472505], - [-22.083119, 64.472438], - [-22.083097, 64.472009], - [-22.083555, 64.471704], - [-22.08421, 64.471611], - [-22.084664, 64.471686], - [-22.084725, 64.471944], - [-22.084653, 64.472193], - [-22.084674, 64.472426], - [-22.085113, 64.472568], - [-22.086313, 64.472637], - [-22.08799, 64.472513], - [-22.090272, 64.472259], - [-22.091851, 64.471917], - [-22.09212, 64.471579], - [-22.091335, 64.470307], - [-22.091626, 64.470067], - [-22.092216, 64.470196], - [-22.093214, 64.470098], - [-22.094553, 64.469849], - [-22.09596, 64.469578], - [-22.096881, 64.469484], - [-22.097793, 64.469507], - [-22.098707, 64.469845], - [-22.099652, 64.470117], - [-22.102268, 64.470585], - [-22.104241, 64.470706], - [-22.105915, 64.470598], - [-22.106827, 64.470718], - [-22.107083, 64.471149], - [-22.107202, 64.471643], - [-22.107183, 64.472176], - [-22.106708, 64.472791], - [-22.105056, 64.474113], - [-22.104808, 64.474797], - [-22.104812, 64.475356], - [-22.104607, 64.475851], - [-22.104159, 64.476229], - [-22.103299, 64.476296], - [-22.101066, 64.475971], - [-22.099994, 64.475865], - [-22.099144, 64.476012], - [-22.098224, 64.476317], - [-22.097785, 64.476628], - [-22.097453, 64.477482], - [-22.097395, 64.477672], - [-22.097643, 64.477825], - [-22.09829, 64.477784], - [-22.098633, 64.477594], - [-22.098943, 64.477145], - [-22.099266, 64.47676], - [-22.100034, 64.476587], - [-22.101108, 64.476581], - [-22.101783, 64.476683], - [-22.10218, 64.476965], - [-22.102238, 64.47728], - [-22.102374, 64.477492], - [-22.102974, 64.477547], - [-22.105885, 64.477603], - [-22.108361, 64.477699], - [-22.110002, 64.477875], - [-22.111431, 64.477903], - [-22.112118, 64.477653], - [-22.113009, 64.477071], - [-22.114091, 64.476641], - [-22.115841, 64.475716], - [-22.116655, 64.475189], - [-22.116601, 64.474945], - [-22.115014, 64.474446], - [-22.114532, 64.473909], - [-22.114372, 64.473538], - [-22.114265, 64.473151], - [-22.113984, 64.472726], - [-22.113825, 64.472527], - [-22.113436, 64.47237], - [-22.112633, 64.472391], - [-22.111945, 64.472716], - [-22.111428, 64.472743], - [-22.111079, 64.472572], - [-22.110939, 64.472181], - [-22.111322, 64.471802], - [-22.11183, 64.471644], - [-22.114089, 64.471603], - [-22.116954, 64.471616], - [-22.119187, 64.471745], - [-22.121346, 64.471897], - [-22.124702, 64.471819], - [-22.12719, 64.471611], - [-22.1288, 64.47152], - [-22.133505, 64.470989], - [-22.137289, 64.469968], - [-22.138894, 64.46934], - [-22.140246, 64.468859], - [-22.141792, 64.468267], - [-22.143534, 64.467484], - [-22.144212, 64.466827], - [-22.144431, 64.466188], - [-22.143983, 64.465745], - [-22.142891, 64.465493], - [-22.142456, 64.465161], - [-22.14259, 64.464616], - [-22.143342, 64.464301], - [-22.144586, 64.464067], - [-22.146877, 64.463451], - [-22.147604, 64.463086], - [-22.147733, 64.462764], - [-22.147181, 64.462341], - [-22.146744, 64.461711], - [-22.146859, 64.461267], - [-22.147624, 64.461081], - [-22.147968, 64.460787], - [-22.148511, 64.460509], - [-22.149194, 64.460286], - [-22.149261, 64.460015], - [-22.149471, 64.459691], - [-22.150222, 64.459407], - [-22.151067, 64.45959], - [-22.151555, 64.459861], - [-22.152349, 64.459926], - [-22.15449, 64.45988], - [-22.1563, 64.459636], - [-22.157746, 64.459368], - [-22.159864, 64.459489], - [-22.162787, 64.460411], - [-22.165089, 64.461207], - [-22.166317, 64.462486], - [-22.166209, 64.463168], - [-22.16531, 64.463373], - [-22.16411, 64.46333], - [-22.163173, 64.462865], - [-22.161949, 64.462327], - [-22.160493, 64.462032], - [-22.159199, 64.46187], - [-22.15866, 64.462156], - [-22.157869, 64.462288], - [-22.156125, 64.462389], - [-22.154831, 64.4629], - [-22.154957, 64.463381], - [-22.154364, 64.464001], - [-22.153537, 64.464194], - [-22.152602, 64.46414], - [-22.151362, 64.464543], - [-22.151218, 64.464845], - [-22.151506, 64.464915], - [-22.151362, 64.46514], - [-22.150877, 64.465287], - [-22.150751, 64.466031], - [-22.150571, 64.466619], - [-22.150679, 64.467231], - [-22.150589, 64.467642], - [-22.151164, 64.468115], - [-22.151739, 64.46851], - [-22.150517, 64.468959], - [-22.149672, 64.469052], - [-22.149457, 64.469261], - [-22.149313, 64.469439], - [-22.14881, 64.469447], - [-22.148612, 64.469579], - [-22.147515, 64.470106], - [-22.147264, 64.470392], - [-22.147174, 64.470748], - [-22.146707, 64.470919], - [-22.146095, 64.471182], - [-22.145412, 64.471391], - [-22.143921, 64.471508], - [-22.143507, 64.471655], - [-22.142698, 64.471717], - [-22.14144, 64.471817], - [-22.140128, 64.471802], - [-22.139158, 64.471632], - [-22.138798, 64.471593], - [-22.138528, 64.471686], - [-22.138169, 64.471647], - [-22.137072, 64.471988], - [-22.136515, 64.472453], - [-22.136264, 64.472716], - [-22.136066, 64.473227], - [-22.135932, 64.473995], - [-22.13639, 64.47428], - [-22.137026, 64.473738], - [-22.137267, 64.473486], - [-22.137547, 64.473404], - [-22.137763, 64.473212], - [-22.138017, 64.473141], - [-22.138131, 64.473124], - [-22.138258, 64.473009], - [-22.13829, 64.472902], - [-22.138322, 64.472784], - [-22.138999, 64.472645], - [-22.139545, 64.472635], - [-22.140359, 64.472618], - [-22.140791, 64.472673], - [-22.141109, 64.472656], - [-22.141325, 64.472695], - [-22.141846, 64.472711], - [-22.142431, 64.472903], - [-22.142799, 64.472974], - [-22.143257, 64.473204], - [-22.143562, 64.473527], - [-22.144223, 64.47373], - [-22.144591, 64.473735], - [-22.144998, 64.473905], - [-22.145392, 64.47407], - [-22.145468, 64.474174], - [-22.145888, 64.474283], - [-22.1459, 64.474383], - [-22.145996, 64.474426], - [-22.14597, 64.474536], - [-22.145938, 64.474604], - [-22.145754, 64.474632], - [-22.145494, 64.474626], - [-22.145525, 64.474673], - [-22.145659, 64.474708], - [-22.145761, 64.474703], - [-22.145767, 64.474741], - [-22.145799, 64.474788], - [-22.145951, 64.474761], - [-22.146015, 64.474796], - [-22.146739, 64.474845], - [-22.146784, 64.474785], - [-22.147, 64.474722], - [-22.14712, 64.474717], - [-22.147298, 64.474774], - [-22.147298, 64.474848], - [-22.147279, 64.474936], - [-22.147165, 64.474969], - [-22.147006, 64.475007], - [-22.146835, 64.475103], - [-22.146739, 64.47516], - [-22.146663, 64.475185], - [-22.146555, 64.475182], - [-22.14646, 64.47521], - [-22.146441, 64.475286], - [-22.146472, 64.475355], - [-22.146504, 64.475308], - [-22.146606, 64.47524], - [-22.146733, 64.475245], - [-22.146714, 64.475355], - [-22.146816, 64.475242], - [-22.146911, 64.475207], - [-22.147089, 64.475125], - [-22.147368, 64.475059], - [-22.147553, 64.474988], - [-22.147597, 64.474878], - [-22.147642, 64.474777], - [-22.147591, 64.474689], - [-22.147711, 64.474618], - [-22.147545, 64.47438], - [-22.147431, 64.474298], - [-22.147526, 64.474183], - [-22.147659, 64.47412], - [-22.147717, 64.474027], - [-22.147761, 64.473942], - [-22.148047, 64.473841], - [-22.148467, 64.473718], - [-22.148644, 64.473614], - [-22.148841, 64.473562], - [-22.14893, 64.47349], - [-22.149464, 64.473331], - [-22.149871, 64.473225], - [-22.149966, 64.473156], - [-22.149954, 64.473063], - [-22.149776, 64.473112], - [-22.149585, 64.473145], - [-22.149445, 64.473134], - [-22.149305, 64.472995], - [-22.149445, 64.472822], - [-22.149725, 64.472639], - [-22.149903, 64.472578], - [-22.150036, 64.472534], - [-22.15022, 64.472395], - [-22.150316, 64.472291], - [-22.15085, 64.472017], - [-22.151148, 64.471921], - [-22.151352, 64.471634], - [-22.15151, 64.471494], - [-22.151453, 64.471406], - [-22.151758, 64.47125], - [-22.151714, 64.47108], - [-22.151924, 64.47059], - [-22.152095, 64.470637], - [-22.152095, 64.470508], - [-22.152152, 64.470376], - [-22.152279, 64.470168], - [-22.152521, 64.469862], - [-22.153074, 64.46964], - [-22.153372, 64.469377], - [-22.153569, 64.469369], - [-22.153773, 64.469196], - [-22.1539, 64.469215], - [-22.153932, 64.469306], - [-22.154053, 64.46936], - [-22.154618, 64.469314], - [-22.154946, 64.469277], - [-22.155242, 64.469129], - [-22.155359, 64.468847], - [-22.155575, 64.468576], - [-22.155907, 64.46827], - [-22.156006, 64.468072], - [-22.156128, 64.467901], - [-22.156419, 64.467812], - [-22.156662, 64.467851], - [-22.156896, 64.467789], - [-22.157192, 64.468029], - [-22.157552, 64.468289], - [-22.157947, 64.468587], - [-22.15801, 64.468684], - [-22.158738, 64.46882], - [-22.159484, 64.468362], - [-22.159583, 64.468637], - [-22.159592, 64.468847], - [-22.160266, 64.469056], - [-22.16069, 64.46924], - [-22.161434, 64.469122], - [-22.162054, 64.46899], - [-22.162018, 64.46875], - [-22.161965, 64.468405], - [-22.162081, 64.468041], - [-22.162324, 64.467863], - [-22.162504, 64.467359], - [-22.16271, 64.46721], - [-22.163701, 64.467342], - [-22.164718, 64.467364], - [-22.165964, 64.46721], - [-22.167794, 64.467188], - [-22.168099, 64.467013], - [-22.168201, 64.466619], - [-22.168328, 64.46663], - [-22.168607, 64.466947], - [-22.16965, 64.467134], - [-22.16965, 64.467408], - [-22.170006, 64.46789], - [-22.168709, 64.468887], - [-22.168531, 64.469391], - [-22.168607, 64.46984], - [-22.168109, 64.470013], - [-22.168198, 64.470078], - [-22.168472, 64.470068], - [-22.168497, 64.470142], - [-22.168319, 64.470202], - [-22.168252, 64.470397], - [-22.167985, 64.470402], - [-22.167781, 64.470315], - [-22.167514, 64.470347], - [-22.167629, 64.470534], - [-22.1674, 64.470532], - [-22.167362, 64.470476], - [-22.167194, 64.470516], - [-22.167108, 64.470577], - [-22.167146, 64.470632], - [-22.16726, 64.470643], - [-22.167451, 64.470649], - [-22.167642, 64.470632], - [-22.167654, 64.470709], - [-22.167553, 64.470769], - [-22.167324, 64.470906], - [-22.166904, 64.47089], - [-22.166752, 64.470791], - [-22.166498, 64.470725], - [-22.16604, 64.470764], - [-22.16585, 64.470807], - [-22.16557, 64.470785], - [-22.165316, 64.47078], - [-22.16515, 64.470829], - [-22.164884, 64.47089], - [-22.164998, 64.470977], - [-22.165138, 64.471065], - [-22.16515, 64.471158], - [-22.165303, 64.471202], - [-22.165481, 64.471213], - [-22.165494, 64.471328], - [-22.165544, 64.47141], - [-22.165799, 64.47152], - [-22.166078, 64.471498], - [-22.166396, 64.471394], - [-22.166714, 64.471284], - [-22.166955, 64.471295], - [-22.167006, 64.471388], - [-22.166917, 64.471563], - [-22.166714, 64.471629], - [-22.166853, 64.471675], - [-22.166663, 64.471843], - [-22.166434, 64.47187], - [-22.166056, 64.471801], - [-22.166104, 64.471958], - [-22.165964, 64.472073], - [-22.1659, 64.472232], - [-22.165608, 64.472374], - [-22.165328, 64.472604], - [-22.165201, 64.472642], - [-22.165214, 64.472768], - [-22.165087, 64.472861], - [-22.165303, 64.472993], - [-22.165239, 64.47308], - [-22.165265, 64.473201], - [-22.165417, 64.473245], - [-22.165646, 64.473267], - [-22.165633, 64.473332], - [-22.165799, 64.473404], - [-22.166002, 64.473486], - [-22.166231, 64.473617], - [-22.166246, 64.473767], - [-22.166192, 64.47393], - [-22.166237, 64.473988], - [-22.166093, 64.474306], - [-22.165932, 64.474383], - [-22.16586, 64.474468], - [-22.165851, 64.474557], - [-22.165572, 64.474728], - [-22.165455, 64.474856], - [-22.165837, 64.474901], - [-22.166218, 64.474561], - [-22.166498, 64.474495], - [-22.166803, 64.474145], - [-22.167209, 64.474134], - [-22.167972, 64.473269], - [-22.168658, 64.472633], - [-22.168734, 64.471943], - [-22.169243, 64.471417], - [-22.169777, 64.470946], - [-22.16998, 64.470442], - [-22.169777, 64.469938], - [-22.170234, 64.469599], - [-22.17256, 64.46925], - [-22.173084, 64.468891], - [-22.173893, 64.468627], - [-22.174666, 64.468961], - [-22.175349, 64.46965], - [-22.176, 64.47], - [-22.17952, 64.47025], - [-22.179981, 64.469975], - [-22.18079, 64.46978], - [-22.181706, 64.46937], - [-22.182219, 64.468798], - [-22.182964, 64.468357], - [-22.184252, 64.468676], - [-22.185493, 64.469404], - [-22.186173, 64.470372], - [-22.186052, 64.471529], - [-22.18447, 64.47246], - [-22.182706, 64.472737], - [-22.18243, 64.472909], - [-22.182295, 64.473072], - [-22.182106, 64.473192], - [-22.182007, 64.473444], - [-22.181792, 64.473513], - [-22.181522, 64.47351], - [-22.181333, 64.473409], - [-22.181306, 64.473606], - [-22.181396, 64.473757], - [-22.181549, 64.473839], - [-22.181405, 64.473935], - [-22.18119, 64.474048], - [-22.181594, 64.473985], - [-22.182458, 64.4737], - [-22.183119, 64.473865], - [-22.183358, 64.474361], - [-22.18346, 64.474542], - [-22.183587, 64.474914], - [-22.183704, 64.475091], - [-22.183778, 64.475916], - [-22.184184, 64.476201], - [-22.184388, 64.476453], - [-22.184413, 64.476727], - [-22.184527, 64.477066], - [-22.184705, 64.476825], - [-22.18482, 64.476677], - [-22.185201, 64.476327], - [-22.185748, 64.476168], - [-22.186307, 64.476113], - [-22.186548, 64.475911], - [-22.186803, 64.475735], - [-22.187387, 64.475659], - [-22.187692, 64.475494], - [-22.188061, 64.475259], - [-22.188239, 64.474958], - [-22.188048, 64.474755], - [-22.187858, 64.474432], - [-22.188086, 64.474092], - [-22.188073, 64.473808], - [-22.188226, 64.47372], - [-22.188658, 64.474065], - [-22.188938, 64.47412], - [-22.189078, 64.474021], - [-22.189395, 64.474032], - [-22.189497, 64.474317], - [-22.189459, 64.475111], - [-22.189116, 64.475308], - [-22.189205, 64.475429], - [-22.18895, 64.475538], - [-22.18895, 64.475746], - [-22.188773, 64.476163], - [-22.188226, 64.476201], - [-22.18793, 64.47641], - [-22.18787, 64.476568], - [-22.188124, 64.476781], - [-22.18848, 64.476842], - [-22.188836, 64.476798], - [-22.18895, 64.476978], - [-22.18895, 64.477187], - [-22.188989, 64.477548], - [-22.189128, 64.477751], - [-22.189662, 64.477827], - [-22.190183, 64.477597], - [-22.190476, 64.47757], - [-22.190844, 64.477345], - [-22.190984, 64.47746], - [-22.191531, 64.477477], - [-22.192013, 64.4774], - [-22.192242, 64.477647], - [-22.192522, 64.477729], - [-22.192713, 64.477707], - [-22.192751, 64.477608], - [-22.193018, 64.477669], - [-22.193412, 64.477614], - [-22.193704, 64.47751], - [-22.193717, 64.477406], - [-22.193742, 64.477247], - [-22.193895, 64.477252], - [-22.19406, 64.47745], - [-22.194251, 64.47745], - [-22.194352, 64.477795], - [-22.194517, 64.478112], - [-22.19439, 64.478194], - [-22.194339, 64.478632], - [-22.19453, 64.47883], - [-22.194619, 64.479065], - [-22.195234, 64.479208], - [-22.195665, 64.479138], - [-22.195683, 64.479371], - [-22.196025, 64.479595], - [-22.196025, 64.47982], - [-22.196259, 64.479905], - [-22.196906, 64.479928], - [-22.197427, 64.479789], - [-22.197463, 64.479518], - [-22.197445, 64.479309], - [-22.197607, 64.479076], - [-22.19784, 64.478906], - [-22.198002, 64.479084], - [-22.197948, 64.479402], - [-22.19793, 64.479727], - [-22.19811, 64.480184], - [-22.198649, 64.4803], - [-22.19926, 64.480285], - [-22.199764, 64.480145], - [-22.200195, 64.480161], - [-22.200644, 64.480192], - [-22.200537, 64.480432], - [-22.200276, 64.48068], - [-22.200178, 64.48082], - [-22.200546, 64.481009], - [-22.200699, 64.481265], - [-22.2006, 64.48178], - [-22.200717, 64.482055], - [-22.200474, 64.482527], - [-22.200034, 64.482825], - [-22.199701, 64.482906], - [-22.19927, 64.482705], - [-22.198937, 64.482744], - [-22.198686, 64.482817], - [-22.198677, 64.482957], - [-22.198497, 64.483042], - [-22.198578, 64.483162], - [-22.198587, 64.483371], - [-22.197931, 64.48329], - [-22.197508, 64.483293], - [-22.197239, 64.483243], - [-22.196951, 64.483189], - [-22.197077, 64.483108], - [-22.197095, 64.48284], - [-22.197095, 64.482531], - [-22.197014, 64.482283], - [-22.196825, 64.482434], - [-22.196762, 64.482535], - [-22.196736, 64.482728], - [-22.196798, 64.482883], - [-22.196709, 64.482937], - [-22.196736, 64.483084], - [-22.196556, 64.483162], - [-22.196565, 64.483348], - [-22.196753, 64.483332], - [-22.196906, 64.483421], - [-22.197176, 64.483921], - [-22.196664, 64.483785], - [-22.19652, 64.483789], - [-22.196448, 64.483913], - [-22.196556, 64.484308], - [-22.196358, 64.484478], - [-22.196403, 64.48461], - [-22.19652, 64.484637], - [-22.196664, 64.484583], - [-22.196727, 64.484652], - [-22.196744, 64.484854], - [-22.196628, 64.485039], - [-22.196421, 64.48514], - [-22.196592, 64.485349], - [-22.196915, 64.485574], - [-22.197086, 64.485639], - [-22.197338, 64.485628], - [-22.19767, 64.485554], - [-22.19776, 64.48538], - [-22.197751, 64.485179], - [-22.197886, 64.48521], - [-22.197931, 64.485326], - [-22.198057, 64.485411], - [-22.198317, 64.485454], - [-22.198488, 64.485388], - [-22.198497, 64.485306], - [-22.198524, 64.485214], - [-22.198659, 64.485121], - [-22.198677, 64.485035], - [-22.19883, 64.485012], - [-22.198982, 64.485059], - [-22.199117, 64.485024], - [-22.199243, 64.484989], - [-22.199459, 64.485063], - [-22.199557, 64.485214], - [-22.199539, 64.485446], - [-22.199665, 64.485639], - [-22.199791, 64.485875], - [-22.199719, 64.486247], - [-22.199432, 64.486538], - [-22.199333, 64.486708], - [-22.199333, 64.487114], - [-22.19945, 64.48749], - [-22.199378, 64.487695], - [-22.199036, 64.487757], - [-22.199027, 64.487892], - [-22.199288, 64.488001], - [-22.19891, 64.488086], - [-22.198731, 64.488415], - [-22.198695, 64.488984], - [-22.19874, 64.48933], - [-22.198556, 64.489344], - [-22.198389, 64.489135], - [-22.198191, 64.489135], - [-22.19803, 64.489158], - [-22.197976, 64.489294], - [-22.197832, 64.489398], - [-22.197625, 64.489421], - [-22.197482, 64.489495], - [-22.197472, 64.489595], - [-22.19758, 64.489657], - [-22.19776, 64.489592], - [-22.197895, 64.489642], - [-22.197967, 64.490052], - [-22.198164, 64.490308], - [-22.198182, 64.490668], - [-22.198102, 64.49112], - [-22.198084, 64.491407], - [-22.197553, 64.492227], - [-22.19705, 64.491987], - [-22.197121, 64.491834], - [-22.196915, 64.491761], - [-22.196892, 64.491738], - [-22.196771, 64.491711], - [-22.196483, 64.491719], - [-22.196955, 64.491541], - [-22.196841, 64.491366], - [-22.196987, 64.491254], - [-22.197044, 64.49101], - [-22.197107, 64.490854], - [-22.197247, 64.49078], - [-22.197343, 64.49069], - [-22.197279, 64.490575], - [-22.197171, 64.49046], - [-22.196949, 64.490397], - [-22.196904, 64.490307], - [-22.196828, 64.490173], - [-22.19686, 64.490096], - [-22.197012, 64.490019], - [-22.196993, 64.489905], - [-22.196828, 64.489792], - [-22.196599, 64.489732], - [-22.196447, 64.489694], - [-22.196415, 64.489576], - [-22.196567, 64.489469], - [-22.19665, 64.489379], - [-22.196732, 64.489363], - [-22.196618, 64.489248], - [-22.19665, 64.489125], - [-22.196764, 64.489018], - [-22.196841, 64.488865], - [-22.196713, 64.488706], - [-22.196669, 64.488539], - [-22.196491, 64.48849], - [-22.196345, 64.488292], - [-22.196256, 64.488459], - [-22.196383, 64.488555], - [-22.196358, 64.488618], - [-22.196408, 64.488829], - [-22.196243, 64.488999], - [-22.19611, 64.489157], - [-22.196091, 64.489423], - [-22.195932, 64.489757], - [-22.196148, 64.489861], - [-22.196358, 64.489853], - [-22.196574, 64.489896], - [-22.196631, 64.489957], - [-22.196497, 64.490014], - [-22.19625, 64.490107], - [-22.196027, 64.490167], - [-22.196116, 64.4902], - [-22.196129, 64.490367], - [-22.196288, 64.490493], - [-22.196421, 64.490561], - [-22.196574, 64.490654], - [-22.19644, 64.490739], - [-22.196224, 64.490851], - [-22.196053, 64.491013], - [-22.195887, 64.491237], - [-22.196154, 64.491423], - [-22.195817, 64.491533], - [-22.195786, 64.491776], - [-22.195703, 64.491954], - [-22.195741, 64.492042], - [-22.1959, 64.492023], - [-22.196014, 64.491965], - [-22.196237, 64.491979], - [-22.196224, 64.492067], - [-22.196326, 64.492168], - [-22.196364, 64.492409], - [-22.196504, 64.492469], - [-22.196688, 64.49268], - [-22.196879, 64.492745], - [-22.197101, 64.492751], - [-22.19754, 64.492592], - [-22.197743, 64.492636], - [-22.197902, 64.492756], - [-22.197965, 64.492948], - [-22.197845, 64.493191], - [-22.197641, 64.493492], - [-22.197419, 64.493728], - [-22.197279, 64.4939], - [-22.197222, 64.493979], - [-22.19705, 64.49402], - [-22.196872, 64.494004], - [-22.196631, 64.494059], - [-22.19651, 64.494146], - [-22.196548, 64.494239], - [-22.196822, 64.494294], - [-22.196707, 64.494439], - [-22.196656, 64.49457], - [-22.196466, 64.494672], - [-22.19623, 64.494773], - [-22.196078, 64.494789], - [-22.195951, 64.494861], - [-22.196154, 64.494899], - [-22.196084, 64.495068], - [-22.195903, 64.495048], - [-22.195674, 64.495079], - [-22.195579, 64.495158], - [-22.195463, 64.495216], - [-22.195332, 64.495232], - [-22.195148, 64.495185], - [-22.194874, 64.49509], - [-22.194744, 64.494916], - [-22.194555, 64.494808], - [-22.194393, 64.494698], - [-22.194658, 64.494587], - [-22.194753, 64.494512], - [-22.19464, 64.494504], - [-22.194528, 64.494556], - [-22.194218, 64.494655], - [-22.1942, 64.494738], - [-22.19433, 64.494825], - [-22.194591, 64.49499], - [-22.194681, 64.495129], - [-22.194807, 64.495233], - [-22.195036, 64.495313], - [-22.195328, 64.495352], - [-22.195566, 64.495342], - [-22.195795, 64.495247], - [-22.196006, 64.495135], - [-22.196192, 64.495178], - [-22.196236, 64.495321], - [-22.196096, 64.495417], - [-22.196128, 64.495504], - [-22.1962, 64.495569], - [-22.196406, 64.495603], - [-22.19647, 64.495728], - [-22.196575, 64.495877], - [-22.196492, 64.496013], - [-22.196276, 64.496091], - [-22.196244, 64.49624], - [-22.196303, 64.496323], - [-22.19651, 64.496449], - [-22.196635, 64.496543], - [-22.196865, 64.496632], - [-22.196824, 64.496747], - [-22.196501, 64.496834], - [-22.196204, 64.496981], - [-22.195925, 64.497125], - [-22.195455, 64.497571], - [-22.195156, 64.497601], - [-22.195099, 64.497691], - [-22.195188, 64.497812], - [-22.19515, 64.497905], - [-22.195167, 64.498808], - [-22.1952, 64.499049], - [-22.195266, 64.499327], - [-22.195465, 64.499548], - [-22.195779, 64.499541], - [-22.196077, 64.499598], - [-22.196457, 64.499619], - [-22.19654, 64.499854], - [-22.196705, 64.499968], - [-22.197053, 64.499811], - [-22.19697, 64.499591], - [-22.196523, 64.499413], - [-22.195878, 64.499363], - [-22.195663, 64.499149], - [-22.19563, 64.498871], - [-22.195944, 64.498715], - [-22.196421, 64.498717], - [-22.196738, 64.498799], - [-22.196891, 64.498851], - [-22.197336, 64.498873], - [-22.197838, 64.498813], - [-22.19806, 64.49872], - [-22.1982, 64.498594], - [-22.198003, 64.498383], - [-22.197342, 64.498208], - [-22.197043, 64.498115], - [-22.196573, 64.498071], - [-22.19644, 64.498044], - [-22.196147, 64.498014], - [-22.196128, 64.497915], - [-22.19793, 64.49715], - [-22.198469, 64.496784], - [-22.19857, 64.497021], - [-22.198716, 64.497152], - [-22.198833, 64.497202], - [-22.198874, 64.49727], - [-22.198781, 64.497386], - [-22.19881, 64.497442], - [-22.198974, 64.497482], - [-22.199085, 64.49754], - [-22.199155, 64.497671], - [-22.199289, 64.497673], - [-22.199646, 64.497666], - [-22.199898, 64.497633], - [-22.200091, 64.497663], - [-22.200254, 64.497698], - [-22.200266, 64.497635], - [-22.200167, 64.497605], - [-22.200091, 64.497497], - [-22.199968, 64.497442], - [-22.19974, 64.497406], - [-22.199693, 64.497361], - [-22.199699, 64.497308], - [-22.199968, 64.49722], - [-22.200161, 64.497071], - [-22.200278, 64.496893], - [-22.200395, 64.496802], - [-22.200366, 64.496711], - [-22.200564, 64.496565], - [-22.200775, 64.496283], - [-22.201237, 64.495878], - [-22.201418, 64.495674], - [-22.201565, 64.495608], - [-22.201717, 64.495601], - [-22.201804, 64.495684], - [-22.202021, 64.495717], - [-22.202448, 64.495699], - [-22.202699, 64.495636], - [-22.202799, 64.495477], - [-22.202974, 64.49514], - [-22.203138, 64.495366], - [-22.20346, 64.495465], - [-22.203711, 64.495434], - [-22.203974, 64.495381], - [-22.204045, 64.495276], - [-22.204267, 64.495188], - [-22.204366, 64.495064], - [-22.204507, 64.49515], - [-22.204629, 64.495142], - [-22.204647, 64.495263], - [-22.20491, 64.495374], - [-22.204934, 64.49547], - [-22.20515, 64.495575], - [-22.205121, 64.495706], - [-22.205267, 64.495845], - [-22.205419, 64.495873], - [-22.205653, 64.495883], - [-22.20619, 64.49598], - [-22.206279, 64.496143], - [-22.206174, 64.496223], - [-22.206255, 64.496324], - [-22.206489, 64.496359], - [-22.206829, 64.496465], - [-22.206922, 64.496631], - [-22.207121, 64.496994], - [-22.207121, 64.496591], - [-22.207145, 64.49648], - [-22.206957, 64.496394], - [-22.206653, 64.496339], - [-22.206489, 64.496223], - [-22.206548, 64.496017], - [-22.206712, 64.495699], - [-22.206934, 64.495157], - [-22.207119, 64.494994], - [-22.207276, 64.494816], - [-22.207185, 64.494563], - [-22.207284, 64.494481], - [-22.207483, 64.494645], - [-22.207905, 64.494635], - [-22.208186, 64.494328], - [-22.208219, 64.494663], - [-22.20855, 64.49472], - [-22.208823, 64.495358], - [-22.209038, 64.495578], - [-22.209303, 64.495664], - [-22.20989, 64.49566], - [-22.210701, 64.495575], - [-22.210808, 64.495436], - [-22.210899, 64.495254], - [-22.211222, 64.495251], - [-22.211544, 64.495115], - [-22.211553, 64.494877], - [-22.211768, 64.494627], - [-22.212024, 64.494659], - [-22.212553, 64.49555], - [-22.212909, 64.496095], - [-22.212727, 64.49612], - [-22.212363, 64.496027], - [-22.212098, 64.495974], - [-22.211826, 64.496081], - [-22.211743, 64.496301], - [-22.211958, 64.496625], - [-22.212272, 64.496754], - [-22.212471, 64.496764], - [-22.212669, 64.496668], - [-22.212843, 64.49669], - [-22.212909, 64.496928], - [-22.212909, 64.497103], - [-22.213174, 64.497121], - [-22.21343, 64.497035], - [-22.213662, 64.496864], - [-22.213827, 64.496864], - [-22.214042, 64.496992], - [-22.214084, 64.497206], - [-22.214191, 64.497619], - [-22.214555, 64.498221], - [-22.214687, 64.499065], - [-22.214803, 64.499759], - [-22.215101, 64.499927], - [-22.215076, 64.500461], - [-22.215151, 64.500621], - [-22.215068, 64.500781], - [-22.215209, 64.500984], - [-22.215093, 64.501041], - [-22.213372, 64.500856], - [-22.213215, 64.500906], - [-22.212793, 64.500853], - [-22.212636, 64.50091], - [-22.212611, 64.501084], - [-22.212595, 64.501501], - [-22.21228, 64.501575], - [-22.212182, 64.501965], - [-22.212326, 64.502214], - [-22.21285, 64.502191], - [-22.213253, 64.502065], - [-22.21375, 64.50202], - [-22.21403, 64.50218], - [-22.214596, 64.502245], - [-22.21501, 64.50206], - [-22.215308, 64.50191], - [-22.215529, 64.501937], - [-22.215682, 64.501992], - [-22.215984, 64.502024], - [-22.216212, 64.501972], - [-22.216317, 64.501839], - [-22.216515, 64.501825], - [-22.216449, 64.502202], - [-22.216582, 64.502466], - [-22.216747, 64.502615], - [-22.216553, 64.502764], - [-22.216267, 64.50267], - [-22.216097, 64.502645], - [-22.215933, 64.502723], - [-22.215845, 64.502809], - [-22.215793, 64.503058], - [-22.215828, 64.503169], - [-22.215693, 64.503395], - [-22.215746, 64.503521], - [-22.215676, 64.503569], - [-22.215764, 64.50374], - [-22.216039, 64.503889], - [-22.216746, 64.504], - [-22.217325, 64.504002], - [-22.217665, 64.503871], - [-22.217799, 64.503476], - [-22.217916, 64.503436], - [-22.218039, 64.503577], - [-22.218015, 64.503904], - [-22.218208, 64.504131], - [-22.218378, 64.504413], - [-22.218425, 64.504747], - [-22.218466, 64.504924], - [-22.218694, 64.505014], - [-22.219302, 64.505105], - [-22.219606, 64.505107], - [-22.219647, 64.505266], - [-22.219782, 64.505324], - [-22.219805, 64.50541], - [-22.219618, 64.505525], - [-22.219495, 64.505888], - [-22.21976, 64.506081], - [-22.220455, 64.506223], - [-22.221331, 64.506273], - [-22.223366, 64.506131], - [-22.224491, 64.505903], - [-22.224818, 64.505805], - [-22.224871, 64.505719], - [-22.224719, 64.505651], - [-22.224756, 64.505561], - [-22.224947, 64.505523], - [-22.22497, 64.505427], - [-22.224847, 64.505374], - [-22.224872, 64.505198], - [-22.224976, 64.505112], - [-22.225064, 64.505102], - [-22.225181, 64.505163], - [-22.225502, 64.505148], - [-22.225742, 64.505241], - [-22.225684, 64.505392], - [-22.225959, 64.505301], - [-22.22638, 64.505241], - [-22.226462, 64.50511], - [-22.22566, 64.505007], - [-22.225467, 64.504972], - [-22.225192, 64.504999], - [-22.224917, 64.505047], - [-22.224524, 64.504664], - [-22.224633, 64.504546], - [-22.224741, 64.504411], - [-22.224592, 64.504318], - [-22.224492, 64.504151], - [-22.22441, 64.503952], - [-22.224211, 64.503856], - [-22.223922, 64.503852], - [-22.223889, 64.503749], - [-22.224004, 64.503588], - [-22.224087, 64.50345], - [-22.22388, 64.503275], - [-22.223781, 64.503193], - [-22.223963, 64.502965], - [-22.22417, 64.502734], - [-22.224195, 64.502531], - [-22.224004, 64.502317], - [-22.22364, 64.502157], - [-22.223326, 64.502011], - [-22.223376, 64.501812], - [-22.223607, 64.501506], - [-22.223541, 64.501242], - [-22.223359, 64.501071], - [-22.223359, 64.500601], - [-22.223144, 64.500131], - [-22.222913, 64.499889], - [-22.22302, 64.49956], - [-22.222949, 64.499238], - [-22.222531, 64.498881], - [-22.222856, 64.498653], - [-22.223113, 64.498381], - [-22.223113, 64.498099], - [-22.222809, 64.497868], - [-22.222528, 64.497626], - [-22.221943, 64.497354], - [-22.221335, 64.497263], - [-22.221733, 64.497082], - [-22.221756, 64.49688], - [-22.222037, 64.495924], - [-22.222528, 64.49539], - [-22.222598, 64.495722], - [-22.222786, 64.496417], - [-22.22323, 64.49675], - [-22.22316, 64.497203], - [-22.223207, 64.497747], - [-22.224646, 64.497978], - [-22.225406, 64.497973], - [-22.225242, 64.498079], - [-22.224423, 64.498089], - [-22.2244, 64.49819], - [-22.224341, 64.498306], - [-22.224423, 64.498366], - [-22.224575, 64.498442], - [-22.224096, 64.498689], - [-22.22392, 64.498452], - [-22.223967, 64.49821], - [-22.223745, 64.498114], - [-22.22364, 64.498014], - [-22.223359, 64.497958], - [-22.223523, 64.49816], - [-22.223569, 64.498487], - [-22.223616, 64.498663], - [-22.22341, 64.49894], - [-22.223663, 64.499799], - [-22.223897, 64.499877], - [-22.224037, 64.499389], - [-22.224213, 64.499378], - [-22.224412, 64.499268], - [-22.224646, 64.499515], - [-22.224903, 64.499716], - [-22.224856, 64.499978], - [-22.224786, 64.500245], - [-22.225102, 64.500466], - [-22.225067, 64.500643], - [-22.225347, 64.500728], - [-22.225441, 64.501061], - [-22.226061, 64.501388], - [-22.226026, 64.501131], - [-22.225745, 64.500768], - [-22.225593, 64.500557], - [-22.225546, 64.500356], - [-22.225277, 64.500194], - [-22.225389, 64.4997], - [-22.225463, 64.49936], - [-22.22576, 64.499161], - [-22.225959, 64.498812], - [-22.225413, 64.498627], - [-22.225999, 64.498434], - [-22.226124, 64.498035], - [-22.226306, 64.497736], - [-22.22677, 64.49753], - [-22.226753, 64.497964], - [-22.226918, 64.497921], - [-22.227067, 64.497786], - [-22.227117, 64.497579], - [-22.226935, 64.497409], - [-22.226191, 64.49733], - [-22.226373, 64.496974], - [-22.226406, 64.49676], - [-22.226224, 64.496625], - [-22.226091, 64.496483], - [-22.226025, 64.496155], - [-22.225827, 64.495991], - [-22.22586, 64.495763], - [-22.225976, 64.495585], - [-22.226257, 64.495386], - [-22.226306, 64.494908], - [-22.225992, 64.494595], - [-22.225496, 64.494267], - [-22.224983, 64.494132], - [-22.22452, 64.494075], - [-22.224189, 64.494103], - [-22.223858, 64.49421], - [-22.223908, 64.494061], - [-22.2253, 64.49379], - [-22.225794, 64.493626], - [-22.226091, 64.493341], - [-22.226207, 64.493042], - [-22.226141, 64.492607], - [-22.226273, 64.492337], - [-22.226753, 64.492144], - [-22.226968, 64.491973], - [-22.226937, 64.491735], - [-22.226836, 64.491582], - [-22.226505, 64.491482], - [-22.226157, 64.491525], - [-22.226505, 64.491676], - [-22.226451, 64.491728], - [-22.225976, 64.491567], - [-22.225748, 64.491606], - [-22.225707, 64.491726], - [-22.225467, 64.491671], - [-22.225227, 64.491626], - [-22.224983, 64.49166], - [-22.224908, 64.491754], - [-22.224859, 64.491852], - [-22.224776, 64.491966], - [-22.22459, 64.491929], - [-22.224743, 64.49177], - [-22.224805, 64.491626], - [-22.224801, 64.491548], - [-22.224937, 64.491475], - [-22.225161, 64.491443], - [-22.225711, 64.491289], - [-22.22598, 64.491208], - [-22.226075, 64.491095], - [-22.225947, 64.490983], - [-22.225777, 64.490605], - [-22.226033, 64.490417], - [-22.226062, 64.490297], - [-22.226344, 64.490121], - [-22.22653, 64.490055], - [-22.226509, 64.489963], - [-22.226315, 64.4899], - [-22.226066, 64.489889], - [-22.225806, 64.489825], - [-22.225698, 64.489752], - [-22.225702, 64.489659], - [-22.225648, 64.489592], - [-22.225669, 64.489558], - [-22.22564, 64.489376], - [-22.22564, 64.489314], - [-22.225809, 64.489198], - [-22.225933, 64.489145], - [-22.226041, 64.48918], - [-22.22602, 64.489271], - [-22.22607, 64.489317], - [-22.226149, 64.489408], - [-22.226376, 64.489442], - [-22.226587, 64.489405], - [-22.226678, 64.48931], - [-22.226628, 64.489198], - [-22.226471, 64.488977], - [-22.226211, 64.488723], - [-22.226117, 64.488563], - [-22.225897, 64.488445], - [-22.225737, 64.488422], - [-22.22511, 64.488491], - [-22.225127, 64.48869], - [-22.225122, 64.48884], - [-22.225128, 64.489001], - [-22.225046, 64.489162], - [-22.224906, 64.489271], - [-22.224754, 64.489291], - [-22.224643, 64.489339], - [-22.224649, 64.489419], - [-22.224731, 64.489505], - [-22.224924, 64.489555], - [-22.225117, 64.489558], - [-22.224982, 64.489631], - [-22.224929, 64.489694], - [-22.224853, 64.489795], - [-22.224766, 64.489984], - [-22.224783, 64.490115], - [-22.2249, 64.490218], - [-22.224853, 64.490291], - [-22.224725, 64.490185], - [-22.224637, 64.490069], - [-22.224333, 64.489795], - [-22.224233, 64.489689], - [-22.224023, 64.489623], - [-22.223701, 64.48957], - [-22.223666, 64.489308], - [-22.223765, 64.489193], - [-22.223748, 64.489029], - [-22.22342, 64.48882], - [-22.223233, 64.488679], - [-22.222988, 64.488568], - [-22.222695, 64.488512], - [-22.222075, 64.488482], - [-22.22187, 64.48858], - [-22.221689, 64.488722], - [-22.221455, 64.488747], - [-22.22125, 64.488681], - [-22.221221, 64.48855], - [-22.221093, 64.488444], - [-22.220818, 64.488391], - [-22.220578, 64.488326], - [-22.220445, 64.488149], - [-22.220408, 64.48783], - [-22.220543, 64.487595], - [-22.220706, 64.487215], - [-22.220841, 64.487235], - [-22.221011, 64.487318], - [-22.220917, 64.487452], - [-22.220876, 64.487641], - [-22.220958, 64.487822], - [-22.22111, 64.487938], - [-22.22128, 64.487988], - [-22.221438, 64.488059], - [-22.22156, 64.488182], - [-22.2218, 64.488248], - [-22.222046, 64.488316], - [-22.222362, 64.488361], - [-22.222765, 64.488414], - [-22.223064, 64.488432], - [-22.223461, 64.488424], - [-22.223801, 64.488326], - [-22.223953, 64.488198], - [-22.224228, 64.488152], - [-22.224274, 64.488271], - [-22.22438, 64.488361], - [-22.224631, 64.488381], - [-22.224807, 64.488384], - [-22.22528, 64.488303], - [-22.225596, 64.488225], - [-22.225877, 64.488044], - [-22.226013, 64.487882], - [-22.225994, 64.487747], - [-22.225754, 64.487621], - [-22.225315, 64.48757], - [-22.225269, 64.48753], - [-22.225245, 64.487369], - [-22.22531, 64.487228], - [-22.22521, 64.487119], - [-22.225228, 64.486986], - [-22.225204, 64.486815], - [-22.225152, 64.486568], - [-22.224935, 64.486479], - [-22.224771, 64.486479], - [-22.224602, 64.486515], - [-22.224497, 64.486487], - [-22.224339, 64.486522], - [-22.224152, 64.486636], - [-22.223882, 64.486799], - [-22.223619, 64.486966], - [-22.223426, 64.487122], - [-22.223251, 64.487117], - [-22.223128, 64.486651], - [-22.222818, 64.486457], - [-22.222824, 64.486366], - [-22.222777, 64.486187], - [-22.222695, 64.486071], - [-22.222508, 64.485981], - [-22.222426, 64.485875], - [-22.222508, 64.485688], - [-22.222642, 64.48552], - [-22.222444, 64.485404], - [-22.222403, 64.485222], - [-22.222403, 64.485074], - [-22.222516, 64.484577], - [-22.222142, 64.484597], - [-22.22158, 64.484758], - [-22.221253, 64.484647], - [-22.221206, 64.484466], - [-22.220972, 64.484123], - [-22.220855, 64.483831], - [-22.221346, 64.483357], - [-22.22158, 64.482944], - [-22.221768, 64.482601], - [-22.221604, 64.48242], - [-22.221779, 64.482263], - [-22.222095, 64.48242], - [-22.222306, 64.48247], - [-22.223007, 64.4824], - [-22.223284, 64.48217], - [-22.224768, 64.481922], - [-22.224476, 64.481621], - [-22.224476, 64.481272], - [-22.224067, 64.481181], - [-22.223739, 64.481443], - [-22.223651, 64.481395], - [-22.223698, 64.481314], - [-22.22388, 64.48108], - [-22.223973, 64.480775], - [-22.224096, 64.480788], - [-22.224236, 64.480805], - [-22.224161, 64.481094], - [-22.224806, 64.481087], - [-22.225121, 64.481144], - [-22.225377, 64.480932], - [-22.225302, 64.480871], - [-22.224574, 64.480579], - [-22.224384, 64.480589], - [-22.224095, 64.480212], - [-22.22407, 64.479859], - [-22.22421, 64.479495], - [-22.224616, 64.478508], - [-22.225061, 64.478055], - [-22.224991, 64.47744], - [-22.225318, 64.476784], - [-22.226558, 64.475817], - [-22.226979, 64.476038], - [-22.226254, 64.476774], - [-22.226745, 64.476996], - [-22.227564, 64.477218], - [-22.227494, 64.478024], - [-22.227003, 64.478498], - [-22.226558, 64.478579], - [-22.226371, 64.479002], - [-22.226605, 64.479264], - [-22.228219, 64.479506], - [-22.22836, 64.479919], - [-22.228758, 64.480272], - [-22.229132, 64.480322], - [-22.228945, 64.480625], - [-22.229272, 64.480877], - [-22.229015, 64.48125], - [-22.230114, 64.481633], - [-22.231705, 64.481895], - [-22.232922, 64.481895], - [-22.233039, 64.481139], - [-22.23332, 64.481129], - [-22.233507, 64.481875], - [-22.234053, 64.484611], - [-22.234133, 64.48645], - [-22.234769, 64.487756], - [-22.234985, 64.488031], - [-22.23477, 64.488124], - [-22.234273, 64.488003], - [-22.233959, 64.488138], - [-22.233827, 64.488487], - [-22.233595, 64.48873], - [-22.232966, 64.488886], - [-22.23242, 64.489086], - [-22.231941, 64.48935], - [-22.231858, 64.489727], - [-22.231759, 64.490183], - [-22.230701, 64.49065], - [-22.230352, 64.490739], - [-22.23033, 64.492561], - [-22.229973, 64.492558], - [-22.229979, 64.49242], - [-22.229996, 64.492254], - [-22.229815, 64.492135], - [-22.229581, 64.492009], - [-22.229528, 64.491831], - [-22.229569, 64.491679], - [-22.229663, 64.491571], - [-22.229622, 64.491458], - [-22.229552, 64.491304], - [-22.229382, 64.491244], - [-22.22906, 64.491161], - [-22.229107, 64.491271], - [-22.228786, 64.49137], - [-22.228715, 64.491501], - [-22.228827, 64.491616], - [-22.228809, 64.491727], - [-22.228827, 64.491901], - [-22.22885, 64.492062], - [-22.228897, 64.492229], - [-22.22899, 64.492304], - [-22.229137, 64.492347], - [-22.229218, 64.492415], - [-22.229306, 64.492571], - [-22.229128, 64.4926], - [-22.228932, 64.492642], - [-22.228819, 64.492718], - [-22.228815, 64.492868], - [-22.228762, 64.493017], - [-22.228774, 64.493186], - [-22.228856, 64.493356], - [-22.22892, 64.493749], - [-22.229055, 64.494036], - [-22.229061, 64.494116], - [-22.229113, 64.49421], - [-22.229084, 64.494325], - [-22.229236, 64.494547], - [-22.229365, 64.494592], - [-22.22954, 64.494507], - [-22.229558, 64.494414], - [-22.229798, 64.494325], - [-22.229979, 64.49421], - [-22.230406, 64.493948], - [-22.230225, 64.493822], - [-22.229891, 64.493792], - [-22.229803, 64.493517], - [-22.230037, 64.493331], - [-22.230154, 64.49325], - [-22.230423, 64.493232], - [-22.230558, 64.493358], - [-22.231079, 64.493472], - [-22.231371, 64.493373], - [-22.231488, 64.493167], - [-22.231827, 64.493112], - [-22.231979, 64.493061], - [-22.232289, 64.493112], - [-22.232523, 64.493174], - [-22.232547, 64.493394], - [-22.23248, 64.493583], - [-22.232619, 64.493653], - [-22.232419, 64.493879], - [-22.232333, 64.494171], - [-22.231732, 64.494224], - [-22.231378, 64.494445], - [-22.231321, 64.494692], - [-22.231634, 64.49491], - [-22.231868, 64.494811], - [-22.232058, 64.494546], - [-22.232135, 64.494854], - [-22.232386, 64.4951], - [-22.232711, 64.495177], - [-22.232431, 64.494945], - [-22.232649, 64.494748], - [-22.23303, 64.494425], - [-22.233123, 64.494192], - [-22.233048, 64.493967], - [-22.233126, 64.493751], - [-22.232892, 64.493565], - [-22.232699, 64.493504], - [-22.232804, 64.493255], - [-22.23295, 64.493109], - [-22.232938, 64.492867], - [-22.232956, 64.492651], - [-22.23309, 64.492505], - [-22.233237, 64.492442], - [-22.233564, 64.492598], - [-22.233658, 64.492759], - [-22.233482, 64.492862], - [-22.233599, 64.493049], - [-22.233477, 64.493331], - [-22.2334, 64.49357], - [-22.233307, 64.493726], - [-22.233574, 64.493964], - [-22.23353, 64.49431], - [-22.233672, 64.494978], - [-22.234023, 64.495248], - [-22.234425, 64.495323], - [-22.23435, 64.495658], - [-22.233948, 64.495701], - [-22.233742, 64.496047], - [-22.233272, 64.495848], - [-22.233059, 64.495681], - [-22.232926, 64.495455], - [-22.232828, 64.495787], - [-22.23297, 64.496009], - [-22.232695, 64.496288], - [-22.232593, 64.496544], - [-22.232543, 64.497203], - [-22.232618, 64.497689], - [-22.233497, 64.497873], - [-22.234049, 64.497819], - [-22.2344, 64.49783], - [-22.234626, 64.49797], - [-22.235479, 64.49811], - [-22.235855, 64.4981], - [-22.236307, 64.497894], - [-22.236583, 64.497624], - [-22.236457, 64.497246], - [-22.236457, 64.497009], - [-22.236307, 64.49676], - [-22.236482, 64.496166], - [-22.236231, 64.495907], - [-22.236206, 64.495453], - [-22.235955, 64.495237], - [-22.236031, 64.494524], - [-22.236382, 64.494319], - [-22.236005, 64.494103], - [-22.236081, 64.493973], - [-22.235855, 64.493671], - [-22.235303, 64.4934], - [-22.235353, 64.493141], - [-22.235278, 64.492795], - [-22.235403, 64.492277], - [-22.235704, 64.491801], - [-22.235704, 64.491488], - [-22.235704, 64.491002], - [-22.236095, 64.490681], - [-22.236308, 64.490406], - [-22.236317, 64.49023], - [-22.236672, 64.489909], - [-22.236681, 64.489676], - [-22.23629, 64.489382], - [-22.23629, 64.489122], - [-22.236902, 64.489011], - [-22.23748, 64.48867], - [-22.23915, 64.488626], - [-22.239451, 64.487697], - [-22.239652, 64.486757], - [-22.24027, 64.48633], - [-22.240706, 64.485613], - [-22.241203, 64.48543], - [-22.2417, 64.484467], - [-22.242189, 64.482795], - [-22.243263, 64.482815], - [-22.242835, 64.486714], - [-22.24177, 64.488349], - [-22.242338, 64.488731], - [-22.241912, 64.492047], - [-22.241458, 64.492628], - [-22.24207, 64.49305], - [-22.242054, 64.49443], - [-22.242267, 64.495026], - [-22.24319, 64.49466], - [-22.243154, 64.495087], - [-22.242977, 64.495867], - [-22.242551, 64.496493], - [-22.24248, 64.496951], - [-22.24209, 64.496921], - [-22.242303, 64.496019], - [-22.242161, 64.495683], - [-22.241345, 64.495897], - [-22.241451, 64.49631], - [-22.241274, 64.496554], - [-22.241203, 64.49799], - [-22.240764, 64.497808], - [-22.240514, 64.497381], - [-22.240316, 64.497333], - [-22.239999, 64.497338], - [-22.239886, 64.497511], - [-22.239911, 64.497754], - [-22.239849, 64.498202], - [-22.240012, 64.498396], - [-22.240012, 64.498639], - [-22.239974, 64.498871], - [-22.239573, 64.499055], - [-22.239209, 64.499336], - [-22.239071, 64.499455], - [-22.239109, 64.499579], - [-22.238983, 64.499725], - [-22.239247, 64.5], - [-22.239159, 64.500141], - [-22.239497, 64.50033], - [-22.239435, 64.500411], - [-22.239159, 64.500362], - [-22.238908, 64.500422], - [-22.238858, 64.500584], - [-22.238544, 64.500638], - [-22.238293, 64.500573], - [-22.238105, 64.500648], - [-22.23813, 64.500902], - [-22.237992, 64.501194], - [-22.237704, 64.501356], - [-22.237929, 64.50141], - [-22.237892, 64.501507], - [-22.237704, 64.501593], - [-22.237729, 64.501685], - [-22.237779, 64.501804], - [-22.237302, 64.501804], - [-22.237189, 64.501572], - [-22.237315, 64.501421], - [-22.23729, 64.501264], - [-22.236876, 64.501048], - [-22.236687, 64.500783], - [-22.236474, 64.500638], - [-22.235947, 64.500573], - [-22.235922, 64.5004], - [-22.235872, 64.5002], - [-22.235684, 64.500065], - [-22.235433, 64.500017], - [-22.234982, 64.50006], - [-22.234618, 64.500044], - [-22.234317, 64.499892], - [-22.234028, 64.499773], - [-22.233602, 64.499822], - [-22.233326, 64.499968], - [-22.233263, 64.500162], - [-22.233275, 64.500411], - [-22.23315, 64.500524], - [-22.233326, 64.500745], - [-22.233714, 64.500816], - [-22.234116, 64.500816], - [-22.234266, 64.500681], - [-22.234429, 64.500632], - [-22.234354, 64.500762], - [-22.234505, 64.500935], - [-22.23448, 64.501086], - [-22.234361, 64.501088], - [-22.234343, 64.500958], - [-22.234263, 64.500909], - [-22.234104, 64.500888], - [-22.233891, 64.500872], - [-22.233652, 64.500886], - [-22.233489, 64.500956], - [-22.233351, 64.501075], - [-22.233225, 64.501253], - [-22.233075, 64.501342], - [-22.232928, 64.501302], - [-22.232711, 64.501195], - [-22.232511, 64.501163], - [-22.232166, 64.50118], - [-22.231815, 64.501291], - [-22.231806, 64.501461], - [-22.231642, 64.501529], - [-22.231483, 64.501554], - [-22.231363, 64.501487], - [-22.231593, 64.501396], - [-22.231571, 64.501352], - [-22.231376, 64.501335], - [-22.231206, 64.50132], - [-22.231351, 64.501033], - [-22.231341, 64.500842], - [-22.231363, 64.500726], - [-22.23154, 64.50058], - [-22.231553, 64.500452], - [-22.231589, 64.500372], - [-22.231408, 64.500263], - [-22.23116, 64.500061], - [-22.230938, 64.499966], - [-22.230698, 64.499947], - [-22.230477, 64.500038], - [-22.230193, 64.499985], - [-22.229971, 64.499836], - [-22.230308, 64.499599], - [-22.230627, 64.499405], - [-22.230077, 64.499584], - [-22.229785, 64.499557], - [-22.229501, 64.499489], - [-22.229483, 64.499596], - [-22.229323, 64.499771], - [-22.229421, 64.499893], - [-22.229261, 64.49992], - [-22.229057, 64.499886], - [-22.228889, 64.49987], - [-22.22864, 64.500012], - [-22.228516, 64.500061], - [-22.229022, 64.500279], - [-22.229054, 64.50036], - [-22.229048, 64.500411], - [-22.229359, 64.500483], - [-22.229408, 64.500577], - [-22.2297, 64.500722], - [-22.229922, 64.500712], - [-22.230117, 64.500703], - [-22.230268, 64.500638], - [-22.230361, 64.500646], - [-22.230343, 64.500779], - [-22.230477, 64.50089], - [-22.23057, 64.501026], - [-22.230419, 64.50123], - [-22.230193, 64.501383], - [-22.229935, 64.50143], - [-22.229691, 64.501493], - [-22.229545, 64.501619], - [-22.229291, 64.502007], - [-22.229789, 64.502175], - [-22.230126, 64.502267], - [-22.230339, 64.503611], - [-22.230694, 64.503939], - [-22.230357, 64.50468], - [-22.231102, 64.505787], - [-22.231776, 64.506169], - [-22.231758, 64.506864], - [-22.231918, 64.507963], - [-22.230942, 64.508223], - [-22.230659, 64.508436], - [-22.230197, 64.508253], - [-22.229292, 64.508261], - [-22.228654, 64.508177], - [-22.228281, 64.508444], - [-22.22798, 64.508337], - [-22.227731, 64.50836], - [-22.227731, 64.508727], - [-22.227749, 64.509078], - [-22.22821, 64.50951], - [-22.228796, 64.509933], - [-22.229257, 64.509971], - [-22.229967, 64.509925], - [-22.230517, 64.509857], - [-22.230641, 64.50975], - [-22.230996, 64.509902], - [-22.231368, 64.50988], - [-22.231634, 64.509734], - [-22.232237, 64.510475], - [-22.232439, 64.510652], - [-22.232056, 64.510647], - [-22.231978, 64.510684], - [-22.23196, 64.510824], - [-22.232168, 64.511085], - [-22.2325, 64.51122], - [-22.232619, 64.511415], - [-22.232086, 64.511461], - [-22.231986, 64.511569], - [-22.232262, 64.512035], - [-22.232456, 64.512265], - [-22.232851, 64.512751], - [-22.233152, 64.513034], - [-22.233497, 64.513245], - [-22.23356, 64.513407], - [-22.233686, 64.513612], - [-22.233868, 64.513736], - [-22.233259, 64.513655], - [-22.232814, 64.513666], - [-22.232425, 64.513577], - [-22.23218, 64.513601], - [-22.23203, 64.513744], - [-22.23208, 64.513814], - [-22.231716, 64.513871], - [-22.231704, 64.513973], - [-22.231854, 64.514098], - [-22.232118, 64.514197], - [-22.232394, 64.514362], - [-22.232463, 64.514419], - [-22.232525, 64.514519], - [-22.232224, 64.514513], - [-22.232074, 64.514492], - [-22.231955, 64.514386], - [-22.231873, 64.514254], - [-22.231653, 64.514141], - [-22.23154, 64.514108], - [-22.231252, 64.51406], - [-22.231001, 64.514089], - [-22.23097, 64.514205], - [-22.230788, 64.514297], - [-22.230317, 64.514241], - [-22.230336, 64.514041], - [-22.230299, 64.513838], - [-22.230035, 64.513666], - [-22.229759, 64.51355], - [-22.229464, 64.513488], - [-22.229232, 64.513396], - [-22.229107, 64.513304], - [-22.228912, 64.513272], - [-22.228593, 64.513131], - [-22.228492, 64.51304], - [-22.228003, 64.51287], - [-22.227601, 64.512681], - [-22.227144, 64.512581], - [-22.226705, 64.512362], - [-22.226873, 64.5121], - [-22.226722, 64.512001], - [-22.226411, 64.511909], - [-22.226367, 64.511722], - [-22.22603, 64.511619], - [-22.225773, 64.511497], - [-22.225666, 64.511547], - [-22.225711, 64.511657], - [-22.225782, 64.511707], - [-22.225586, 64.511867], - [-22.225613, 64.511955], - [-22.225755, 64.511944], - [-22.22603, 64.512001], - [-22.226128, 64.512119], - [-22.226305, 64.512283], - [-22.226303, 64.512427], - [-22.22634, 64.512615], - [-22.226119, 64.512707], - [-22.22611, 64.512882], - [-22.226252, 64.513012], - [-22.226243, 64.513161], - [-22.22587, 64.513215], - [-22.225728, 64.513314], - [-22.225675, 64.513421], - [-22.225196, 64.513459], - [-22.225196, 64.513528], - [-22.225453, 64.513592], - [-22.225684, 64.513608], - [-22.226057, 64.513577], - [-22.226491, 64.513566], - [-22.22666, 64.513615], - [-22.226607, 64.51373], - [-22.226633, 64.513894], - [-22.226793, 64.51402], - [-22.226997, 64.514062], - [-22.227219, 64.514142], - [-22.227219, 64.514207], - [-22.227281, 64.514299], - [-22.227502, 64.514318], - [-22.227511, 64.514398], - [-22.227387, 64.514455], - [-22.227236, 64.514447], - [-22.22705, 64.514425], - [-22.226952, 64.514474], - [-22.226864, 64.514551], - [-22.226686, 64.514589], - [-22.226332, 64.51457], - [-22.226101, 64.514524], - [-22.225986, 64.514447], - [-22.225764, 64.514398], - [-22.225489, 64.51444], - [-22.225249, 64.514505], - [-22.224966, 64.514551], - [-22.224753, 64.514467], - [-22.224451, 64.514413], - [-22.224123, 64.514394], - [-22.224132, 64.514524], - [-22.224362, 64.514562], - [-22.224362, 64.514615], - [-22.224274, 64.514711], - [-22.224123, 64.514944], - [-22.224078, 64.515043], - [-22.224256, 64.515138], - [-22.224557, 64.515196], - [-22.224664, 64.51531], - [-22.224886, 64.516024], - [-22.225276, 64.516421], - [-22.226286, 64.516965], - [-22.226908, 64.517253], - [-22.227408, 64.517357], - [-22.228403, 64.517465], - [-22.228487, 64.517726], - [-22.228221, 64.517955], - [-22.227813, 64.518123], - [-22.227281, 64.518107], - [-22.227121, 64.518291], - [-22.227192, 64.518451], - [-22.227609, 64.518562], - [-22.227919, 64.518764], - [-22.228274, 64.518863], - [-22.228221, 64.519084], - [-22.227458, 64.519107], - [-22.22705, 64.519237], - [-22.22641, 64.51971], - [-22.22628, 64.52047], - [-22.22501, 64.52094], - [-22.2252, 64.52326], - [-22.22349, 64.52448], - [-22.22104, 64.52492], - [-22.22077, 64.52645], - [-22.218826, 64.526547], - [-22.217346, 64.526466], - [-22.215828, 64.526053], - [-22.214953, 64.526014], - [-22.214315, 64.525942], - [-22.213671, 64.525979], - [-22.213559, 64.525938], - [-22.213569, 64.525804], - [-22.214143, 64.525744], - [-22.213988, 64.525165], - [-22.21314, 64.525153], - [-22.212899, 64.525158], - [-22.211114, 64.52593], - [-22.210975, 64.526235], - [-22.210803, 64.526368], - [-22.211082, 64.526451], - [-22.211125, 64.526518], - [-22.210771, 64.526735], - [-22.210781, 64.526897], - [-22.210964, 64.527007], - [-22.211334, 64.527088], - [-22.211758, 64.527102], - [-22.212037, 64.527169], - [-22.212262, 64.527321], - [-22.212595, 64.527307], - [-22.213539, 64.527522], - [-22.213399, 64.529001], - [-22.213249, 64.529642], - [-22.212578, 64.530018], - [-22.211731, 64.52981], - [-22.210677, 64.529715], - [-22.209339, 64.529932], - [-22.209198, 64.530033], - [-22.20897, 64.52999], - [-22.20885, 64.5299], - [-22.208678, 64.529871], - [-22.208008, 64.529916], - [-22.207183, 64.53025], - [-22.20636, 64.531288], - [-22.20545, 64.533026], - [-22.206013, 64.53427], - [-22.20625, 64.53456], - [-22.206966, 64.53498], - [-22.208547, 64.535522], - [-22.211415, 64.535831], - [-22.21618, 64.53565], - [-22.22362, 64.53397], - [-22.224197, 64.533314], - [-22.22473, 64.53273], - [-22.22457, 64.53195], - [-22.22634, 64.53201], - [-22.22612, 64.53328], - [-22.22794, 64.53309], - [-22.22725, 64.53477], - [-22.22758, 64.53512], - [-22.22644, 64.53483], - [-22.22686, 64.53587], - [-22.23036, 64.53624], - [-22.22832, 64.53771], - [-22.23192, 64.53758], - [-22.23174, 64.5386], - [-22.22996, 64.53853], - [-22.23005, 64.53802], - [-22.22582, 64.5384], - [-22.2269, 64.53907], - [-22.22985, 64.53918], - [-22.23008, 64.53956], - [-22.2277, 64.54128], - [-22.22674, 64.541096], - [-22.22661, 64.54073], - [-22.225111, 64.54011], - [-22.22417, 64.5427], - [-22.22859, 64.54297], - [-22.23111, 64.54216], - [-22.23064, 64.54317], - [-22.2319, 64.54449], - [-22.23071, 64.54445], - [-22.22994, 64.54545], - [-22.22831, 64.545531], - [-22.22643, 64.54508], - [-22.22352, 64.54473], - [-22.22279, 64.54548], - [-22.21669, 64.5463], - [-22.216607, 64.545376], - [-22.21605, 64.54654], - [-22.21365, 64.54672], - [-22.21684, 64.5522], - [-22.224259, 64.554327], - [-22.224543, 64.554779], - [-22.226051, 64.555144], - [-22.226698, 64.555802], - [-22.226356, 64.556096], - [-22.22569, 64.556059], - [-22.22451, 64.555597], - [-22.223359, 64.555548], - [-22.222379, 64.555745], - [-22.221989, 64.555974], - [-22.221836, 64.556288], - [-22.22254, 64.556987], - [-22.223007, 64.556972], - [-22.223416, 64.556959], - [-22.223216, 64.556415], - [-22.223435, 64.556288], - [-22.223815, 64.556742], - [-22.224748, 64.557028], - [-22.22528, 64.5572], - [-22.22608, 64.55738], - [-22.22668, 64.55727], - [-22.227526, 64.557196], - [-22.228163, 64.55711], - [-22.22912, 64.55696], - [-22.230618, 64.556059], - [-22.229631, 64.5542], - [-22.229416, 64.553807], - [-22.2299, 64.552738], - [-22.230129, 64.551737], - [-22.228756, 64.551483], - [-22.228003, 64.55098], - [-22.229241, 64.550905], - [-22.23132, 64.5478], - [-22.23318, 64.54735], - [-22.23437, 64.54739], - [-22.23433, 64.54765], - [-22.23333, 64.5477], - [-22.23399, 64.54956], - [-22.238531, 64.550283], - [-22.24224, 64.55008], - [-22.24487, 64.54863], - [-22.24608, 64.54854], - [-22.24617, 64.54803], - [-22.24788, 64.54847], - [-22.25148, 64.54833], - [-22.25222, 64.54746], - [-22.25519, 64.54755], - [-22.25545, 64.54601], - [-22.25657, 64.54644], - [-22.26131, 64.54659], - [-22.26381, 64.54591], - [-22.26495, 64.5462], - [-22.26682, 64.54575], - [-22.2698, 64.54572], - [-22.26967, 64.54648], - [-22.27454, 64.54588], - [-22.27445, 64.54638], - [-22.27286, 64.54641], - [-22.27186, 64.54758], - [-22.27542, 64.54769], - [-22.27493, 64.55049], - [-22.27137, 64.55039], - [-22.27046, 64.54881], - [-22.26869, 64.54875], - [-22.26877, 64.54824], - [-22.26695, 64.54844], - [-22.26657, 64.54715], - [-22.26429, 64.54656], - [-22.26357, 64.54731], - [-22.25705, 64.5471], - [-22.25544, 64.54782], - [-22.2556, 64.54859], - [-22.25384, 64.54853], - [-22.25424, 64.54957], - [-22.25115, 64.55023], - [-22.25038, 64.55124], - [-22.24919, 64.5512], - [-22.24906, 64.55197], - [-22.24787, 64.55193], - [-22.24325, 64.55793], - [-22.24027, 64.55795], - [-22.23858, 64.55739], - [-22.23377, 64.55762], - [-22.23409, 64.55917], - [-22.23036, 64.56008], - [-22.23014, 64.56135], - [-22.23132, 64.56139], - [-22.23051, 64.56264], - [-22.23174, 64.56243], - [-22.23165, 64.56294], - [-22.23343, 64.56299], - [-22.23351, 64.56248], - [-22.23582, 64.56294], - [-22.23685, 64.56387], - [-22.237821, 64.563807], - [-22.24469, 64.56336], - [-22.24482, 64.56259], - [-22.25099, 64.56138], - [-22.25332, 64.56171], - [-22.25466, 64.56086], - [-22.2555, 64.56114], - [-22.25537, 64.56191], - [-22.25218, 64.56309], - [-22.24978, 64.5666], - [-22.25056, 64.56726], - [-22.25478, 64.56702], - [-22.25387, 64.56878], - [-22.25086, 64.56894], - [-22.25073, 64.56971], - [-22.24831, 64.56988], - [-22.249, 64.56939], - [-22.24781, 64.56935], - [-22.24627, 64.57136], - [-22.24271, 64.57124], - [-22.2424, 64.57302], - [-22.24121, 64.57299], - [-22.24083, 64.57349], - [-22.24298, 64.57484], - [-22.24025, 64.5768], - [-22.239288, 64.581685], - [-22.237637, 64.58231], - [-22.236132, 64.582832], - [-22.233136, 64.583295], - [-22.23141, 64.584423], - [-22.231382, 64.58522], - [-22.231471, 64.586967], - [-22.232254, 64.587], - [-22.23305, 64.58641], - [-22.234128, 64.585553], - [-22.233835, 64.584373], - [-22.236321, 64.583972], - [-22.237559, 64.583595], - [-22.238224, 64.582945], - [-22.239609, 64.582839], - [-22.24014, 64.582067], - [-22.241128, 64.582032], - [-22.242001, 64.58176], - [-22.243848, 64.579991], - [-22.244546, 64.579576], - [-22.246379, 64.579565], - [-22.24739, 64.57857], - [-22.24898, 64.577441], - [-22.24894, 64.57657], - [-22.25086, 64.57407], - [-22.25239, 64.57386], - [-22.254694, 64.571302], - [-22.256, 64.57026], - [-22.2567, 64.56964], - [-22.25789, 64.56968], - [-22.25807, 64.56866], - [-22.25984, 64.56872], - [-22.26001, 64.56949], - [-22.26144, 64.56979], - [-22.26156, 64.56916], - [-22.26509, 64.5694], - [-22.26555, 64.57018], - [-22.26141, 64.57005], - [-22.26102, 64.57055], - [-22.26189, 64.57238], - [-22.26392, 64.57269], - [-22.26401, 64.57218], - [-22.26583, 64.57199], - [-22.26538, 64.57231], - [-22.26666, 64.57406], - [-22.27184, 64.57346], - [-22.27222, 64.57296], - [-22.27341, 64.573], - [-22.27354, 64.57222], - [-22.27472, 64.57227], - [-22.27459, 64.57304], - [-22.27701, 64.57286], - [-22.27787, 64.57136], - [-22.279841, 64.571627], - [-22.280375, 64.571338], - [-22.279812, 64.570886], - [-22.28037, 64.57066], - [-22.28317, 64.56998], - [-22.28275, 64.56894], - [-22.28483, 64.56901], - [-22.28975, 64.56468], - [-22.29189, 64.56437], - [-22.29216, 64.56283], - [-22.29614, 64.56219], - [-22.29858, 64.55843], - [-22.29976, 64.55846], - [-22.30292, 64.55395], - [-22.30545, 64.54968], - [-22.30744, 64.55025], - [-22.30652, 64.55381], - [-22.30371, 64.55406], - [-22.30389, 64.55526], - [-22.30507, 64.5553], - [-22.30554, 64.55609], - [-22.30435, 64.55605], - [-22.30362, 64.5568], - [-22.30481, 64.55683], - [-22.30404, 64.55783], - [-22.30227, 64.55778], - [-22.30184, 64.55853], - [-22.30327, 64.56229], - [-22.30628, 64.56213], - [-22.30716, 64.56049], - [-22.30953, 64.56057], - [-22.31348, 64.5584], - [-22.31468, 64.560088], - [-22.314948, 64.560775], - [-22.31444, 64.5615], - [-22.3153, 64.56165], - [-22.31643, 64.56028], - [-22.32148, 64.55864], - [-22.32472, 64.55541], - [-22.3273, 64.55601], - [-22.32623, 64.557], - [-22.32742, 64.55704], - [-22.3244, 64.55899], - [-22.32456, 64.55977], - [-22.32575, 64.5598], - [-22.32529, 64.55902], - [-22.32647, 64.55906], - [-22.3266, 64.55829], - [-22.32908, 64.55773], - [-22.33198, 64.55821], - [-22.33207, 64.5577], - [-22.33312, 64.5585], - [-22.33551, 64.55845], - [-22.338, 64.55789], - [-22.33726, 64.55863], - [-22.33545, 64.55884], - [-22.33578, 64.56038], - [-22.33879, 64.56022], - [-22.33896, 64.5592], - [-22.34019, 64.55897], - [-22.33937, 64.56204], - [-22.34022, 64.56231], - [-22.34064, 64.56156], - [-22.34217, 64.56135], - [-22.34179, 64.56185], - [-22.34263, 64.56213], - [-22.34348, 64.56062], - [-22.34467, 64.56066], - [-22.34339, 64.56293], - [-22.34342, 64.56447], - [-22.34402, 64.56448], - [-22.34619, 64.56225], - [-22.34796, 64.5623], - [-22.34766, 64.56409], - [-22.34647, 64.56405], - [-22.34676, 64.56585], - [-22.34795, 64.56589], - [-22.34783, 64.56486], - [-22.35167, 64.56152], - [-22.35227, 64.56154], - [-22.35271, 64.56245], - [-22.35152, 64.56241], - [-22.34696, 64.56816], - [-22.34815, 64.5682], - [-22.34802, 64.56897], - [-22.34683, 64.56893], - [-22.34517, 64.5717], - [-22.34398, 64.57166], - [-22.34385, 64.57242], - [-22.34266, 64.57239], - [-22.34291, 64.57444], - [-22.3435, 64.57446], - [-22.34368, 64.57344], - [-22.34486, 64.57348], - [-22.34499, 64.57272], - [-22.34677, 64.57277], - [-22.34592, 64.57428], - [-22.34346, 64.57472], - [-22.34197, 64.57646], - [-22.34436, 64.57641], - [-22.34899, 64.57374], - [-22.35075, 64.57392], - [-22.35049, 64.57545], - [-22.3493, 64.57541], - [-22.34627, 64.57916], - [-22.34504, 64.57938], - [-22.3459, 64.57787], - [-22.34471, 64.57783], - [-22.34463, 64.57835], - [-22.34107, 64.57823], - [-22.34148, 64.58106], - [-22.33969, 64.5828], - [-22.33672, 64.5827], - [-22.33669, 64.58296], - [-22.33962, 64.58318], - [-22.34147, 64.58285], - [-22.33922, 64.58381], - [-22.33857, 64.58584], - [-22.33739, 64.5858], - [-22.33632, 64.58678], - [-22.3369, 64.58861], - [-22.33871, 64.58854], - [-22.34366, 64.58574], - [-22.34345, 64.58522], - [-22.34463, 64.58526], - [-22.34472, 64.58474], - [-22.34532, 64.58477], - [-22.3456, 64.58657], - [-22.34811, 64.58588], - [-22.34798, 64.58665], - [-22.34916, 64.58669], - [-22.34929, 64.58592], - [-22.35048, 64.58596], - [-22.35274, 64.58321], - [-22.35456, 64.58301], - [-22.34945, 64.58849], - [-22.35102, 64.58803], - [-22.35149, 64.58702], - [-22.35268, 64.58705], - [-22.35553, 64.58432], - [-22.356191, 64.584514], - [-22.35672, 64.58436], - [-22.357575, 64.583908], - [-22.358201, 64.583385], - [-22.358583, 64.583344], - [-22.358603, 64.583522], - [-22.358445, 64.583762], - [-22.358847, 64.583715], - [-22.358652, 64.583946], - [-22.358103, 64.584349], - [-22.358713, 64.584537], - [-22.359909, 64.584658], - [-22.360384, 64.584234], - [-22.360579, 64.583708], - [-22.361311, 64.583515], - [-22.361604, 64.583289], - [-22.361897, 64.583049], - [-22.362067, 64.582912], - [-22.362555, 64.582729], - [-22.362738, 64.583075], - [-22.36014, 64.58524], - [-22.35981, 64.585392], - [-22.35931, 64.585413], - [-22.359127, 64.585319], - [-22.359127, 64.585214], - [-22.358725, 64.585157], - [-22.358029, 64.585319], - [-22.357505, 64.585795], - [-22.357676, 64.586183], - [-22.357676, 64.586513], - [-22.357493, 64.586785], - [-22.356846, 64.586769], - [-22.356431, 64.58679], - [-22.356015, 64.587291], - [-22.35604, 64.587641], - [-22.356198, 64.587699], - [-22.35665, 64.587563], - [-22.356723, 64.587704], - [-22.356345, 64.587914], - [-22.356284, 64.588097], - [-22.356455, 64.588259], - [-22.356064, 64.588495], - [-22.35582, 64.589018], - [-22.355381, 64.589437], - [-22.354718, 64.589518], - [-22.354152, 64.589263], - [-22.35352, 64.58913], - [-22.352415, 64.589797], - [-22.35161, 64.58985], - [-22.35143, 64.590008], - [-22.351195, 64.590294], - [-22.350897, 64.590578], - [-22.350022, 64.591352], - [-22.350022, 64.592152], - [-22.349017, 64.592921], - [-22.347787, 64.593469], - [-22.347358, 64.593366], - [-22.346228, 64.593699], - [-22.345521, 64.594107], - [-22.345069, 64.594557], - [-22.344911, 64.594112], - [-22.344313, 64.593693], - [-22.344167, 64.594238], - [-22.344167, 64.594468], - [-22.344374, 64.594599], - [-22.344386, 64.594724], - [-22.344057, 64.594902], - [-22.344447, 64.59497], - [-22.344899, 64.594913], - [-22.345399, 64.594703], - [-22.34585, 64.594724], - [-22.346521, 64.594719], - [-22.346887, 64.594567], - [-22.347216, 64.59428], - [-22.347753, 64.594018], - [-22.347814, 64.593903], - [-22.347997, 64.593688], - [-22.34835, 64.593803], - [-22.348667, 64.593683], - [-22.349013, 64.593454], - [-22.349131, 64.593214], - [-22.349918, 64.59304], - [-22.347993, 64.594863], - [-22.346111, 64.596182], - [-22.345421, 64.596515], - [-22.344972, 64.596497], - [-22.344101, 64.596841], - [-22.343463, 64.5972], - [-22.342445, 64.597966], - [-22.341884, 64.598561], - [-22.341022, 64.599512], - [-22.341203, 64.599627], - [-22.340832, 64.59966], - [-22.340494, 64.599924], - [-22.340158, 64.600303], - [-22.340231, 64.600403], - [-22.340463, 64.60046], - [-22.340762, 64.600434], - [-22.340219, 64.600761], - [-22.340219, 64.600876], - [-22.34006, 64.601101], - [-22.339786, 64.601298], - [-22.339603, 64.601439], - [-22.339798, 64.601572], - [-22.34014, 64.601666], - [-22.340506, 64.601745], - [-22.340805, 64.601737], - [-22.341036, 64.601651], - [-22.341231, 64.601507], - [-22.341414, 64.601389], - [-22.341542, 64.601386], - [-22.34161, 64.60141], - [-22.34164, 64.601528], - [-22.341677, 64.601627], - [-22.341463, 64.601784], - [-22.341353, 64.601907], - [-22.341372, 64.601991], - [-22.341701, 64.601988], - [-22.341854, 64.601988], - [-22.341902, 64.601941], - [-22.341909, 64.601847], - [-22.342201, 64.601737], - [-22.34247, 64.601601], - [-22.342512, 64.601478], - [-22.342226, 64.601358], - [-22.342183, 64.601295], - [-22.342134, 64.601169], - [-22.341878, 64.60112], - [-22.341939, 64.60101], - [-22.34225, 64.600957], - [-22.342567, 64.600957], - [-22.342683, 64.600879], - [-22.342872, 64.600683], - [-22.343085, 64.600505], - [-22.343171, 64.600358], - [-22.343287, 64.600309], - [-22.34339, 64.600196], - [-22.343573, 64.600157], - [-22.34372, 64.600065], - [-22.343823, 64.599942], - [-22.343878, 64.599791], - [-22.34436, 64.599513], - [-22.344567, 64.599513], - [-22.344879, 64.599435], - [-22.344988, 64.599312], - [-22.345074, 64.599166], - [-22.345177, 64.599058], - [-22.345574, 64.598982], - [-22.345818, 64.598935], - [-22.346019, 64.598857], - [-22.346153, 64.598752], - [-22.346214, 64.598509], - [-22.346251, 64.598333], - [-22.346415, 64.598164], - [-22.346794, 64.598082], - [-22.34705, 64.598059], - [-22.347196, 64.597975], - [-22.347184, 64.597871], - [-22.347373, 64.597745], - [-22.347519, 64.597706], - [-22.347562, 64.597612], - [-22.347794, 64.597572], - [-22.348013, 64.59747], - [-22.348001, 64.597334], - [-22.348038, 64.597145], - [-22.348654, 64.596675], - [-22.349239, 64.596238], - [-22.349666, 64.595911], - [-22.349928, 64.595749], - [-22.350038, 64.595866], - [-22.349898, 64.595992], - [-22.349422, 64.596353], - [-22.349026, 64.596636], - [-22.348845, 64.596862], - [-22.348604, 64.597063], - [-22.348565, 64.597121], - [-22.348651, 64.597187], - [-22.348815, 64.597237], - [-22.348673, 64.597372], - [-22.348725, 64.597491], - [-22.348944, 64.597492], - [-22.349125, 64.597552], - [-22.349307, 64.597544], - [-22.349393, 64.597491], - [-22.349544, 64.597455], - [-22.34963, 64.597355], - [-22.349772, 64.597306], - [-22.350018, 64.597098], - [-22.350281, 64.596978], - [-22.350639, 64.596664], - [-22.350885, 64.596617], - [-22.351144, 64.596458], - [-22.351661, 64.596183], - [-22.351493, 64.596388], - [-22.351036, 64.59673], - [-22.350544, 64.597108], - [-22.350686, 64.597104], - [-22.351148, 64.596937], - [-22.351459, 64.59683], - [-22.351786, 64.596656], - [-22.352088, 64.596586], - [-22.352416, 64.596394], - [-22.352597, 64.59619], - [-22.352925, 64.596024], - [-22.353066, 64.596009], - [-22.352942, 64.596231], - [-22.352433, 64.596653], - [-22.35195, 64.597048], - [-22.352097, 64.597048], - [-22.352494, 64.596993], - [-22.352908, 64.596882], - [-22.353365, 64.596501], - [-22.353606, 64.596316], - [-22.3539, 64.59609], - [-22.353969, 64.596101], - [-22.353787, 64.596408], - [-22.353434, 64.596693], - [-22.353123, 64.596926], - [-22.352847, 64.597108], - [-22.35252, 64.597319], - [-22.352313, 64.597514], - [-22.352234, 64.597671], - [-22.35238, 64.597669], - [-22.352685, 64.597559], - [-22.352892, 64.597496], - [-22.352972, 64.597381], - [-22.353136, 64.5973], - [-22.353258, 64.5972], - [-22.353478, 64.597187], - [-22.353484, 64.5973], - [-22.353167, 64.597656], - [-22.352947, 64.597878], - [-22.352606, 64.598153], - [-22.352295, 64.598462], - [-22.351892, 64.598744], - [-22.351917, 64.598969], - [-22.351746, 64.599084], - [-22.351441, 64.599163], - [-22.351106, 64.599275], - [-22.351044, 64.59944], - [-22.351136, 64.59949], - [-22.351356, 64.599545], - [-22.351569, 64.599571], - [-22.35188, 64.599485], - [-22.352179, 64.599346], - [-22.352398, 64.599189], - [-22.35274, 64.59905], - [-22.352935, 64.598907], - [-22.353124, 64.598702], - [-22.353399, 64.598564], - [-22.353783, 64.59847], - [-22.353844, 64.598548], - [-22.353209, 64.598996], - [-22.353697, 64.599071], - [-22.353307, 64.599754], - [-22.352874, 64.600254], - [-22.352502, 64.600434], - [-22.352313, 64.600665], - [-22.352051, 64.600952], - [-22.351728, 64.601285], - [-22.35174, 64.601415], - [-22.352118, 64.601536], - [-22.352587, 64.601604], - [-22.353267, 64.601407], - [-22.353681, 64.601282], - [-22.353802, 64.601052], - [-22.354112, 64.600867], - [-22.354199, 64.600653], - [-22.354336, 64.60049], - [-22.354837, 64.600408], - [-22.354889, 64.600224], - [-22.355061, 64.599891], - [-22.355354, 64.599617], - [-22.355492, 64.59935], - [-22.35656, 64.59922], - [-22.35443, 64.603], - [-22.353607, 64.603931], - [-22.352509, 64.604685], - [-22.351716, 64.605004], - [-22.350862, 64.605537], - [-22.350545, 64.605752], - [-22.349868, 64.60577], - [-22.34996, 64.605631], - [-22.350435, 64.605255], - [-22.351033, 64.604815], - [-22.351143, 64.604664], - [-22.351057, 64.604575], - [-22.350868, 64.604499], - [-22.350935, 64.604405], - [-22.350893, 64.604334], - [-22.350606, 64.60425], - [-22.349886, 64.604078], - [-22.349283, 64.604274], - [-22.348935, 64.604494], - [-22.348825, 64.604789], - [-22.348917, 64.604951], - [-22.349057, 64.605114], - [-22.348886, 64.605281], - [-22.348795, 64.605555], - [-22.34874, 64.605911], - [-22.348868, 64.606066], - [-22.348575, 64.606578], - [-22.34837, 64.607061], - [-22.348077, 64.607326], - [-22.34784, 64.607363], - [-22.347779, 64.607387], - [-22.34784, 64.607457], - [-22.347879, 64.607562], - [-22.34779, 64.607713], - [-22.348063, 64.607698], - [-22.348361, 64.607614], - [-22.348625, 64.607552], - [-22.348719, 64.607603], - [-22.348745, 64.607706], - [-22.348881, 64.607804], - [-22.348881, 64.607888], - [-22.34877, 64.608005], - [-22.34877, 64.608078], - [-22.348949, 64.608085], - [-22.349077, 64.608034], - [-22.349247, 64.608085], - [-22.349315, 64.608286], - [-22.349213, 64.608476], - [-22.349, 64.608645], - [-22.348787, 64.608765], - [-22.348557, 64.608805], - [-22.348455, 64.608758], - [-22.348472, 64.608648], - [-22.348361, 64.608553], - [-22.348165, 64.60852], - [-22.347884, 64.608586], - [-22.347392, 64.608976], - [-22.347079, 64.609366], - [-22.346862, 64.609862], - [-22.346868, 64.609991], - [-22.347097, 64.610051], - [-22.347103, 64.610242], - [-22.347248, 64.610356], - [-22.347157, 64.610642], - [-22.347133, 64.610864], - [-22.347007, 64.611167], - [-22.34682, 64.611495], - [-22.346784, 64.611681], - [-22.346669, 64.611812], - [-22.346645, 64.611988], - [-22.346465, 64.612143], - [-22.346193, 64.612904], - [-22.34565, 64.61333], - [-22.345275, 64.613644], - [-22.345049, 64.613963], - [-22.344672, 64.614043], - [-22.344585, 64.614113], - [-22.344556, 64.614233], - [-22.344285, 64.614352], - [-22.34434, 64.61444], - [-22.344412, 64.614546], - [-22.34434, 64.614662], - [-22.344135, 64.614775], - [-22.343924, 64.61491], - [-22.343912, 64.61501], - [-22.343858, 64.615062], - [-22.343683, 64.615142], - [-22.343436, 64.615163], - [-22.343135, 64.615176], - [-22.342924, 64.615189], - [-22.342821, 64.61524], - [-22.342809, 64.615328], - [-22.34287, 64.615411], - [-22.342797, 64.615491], - [-22.342815, 64.615591], - [-22.34299, 64.615648], - [-22.343213, 64.615638], - [-22.343442, 64.615558], - [-22.343677, 64.615473], - [-22.344074, 64.615413], - [-22.344376, 64.615387], - [-22.344617, 64.615356], - [-22.344731, 64.615455], - [-22.344852, 64.61553], - [-22.345089, 64.615564], - [-22.345355, 64.615546], - [-22.345491, 64.615422], - [-22.345632, 64.615305], - [-22.345785, 64.615183], - [-22.346003, 64.615078], - [-22.346203, 64.614962], - [-22.346407, 64.614874], - [-22.346441, 64.614936], - [-22.346284, 64.615082], - [-22.346054, 64.615203], - [-22.345849, 64.615374], - [-22.345692, 64.615562], - [-22.345589, 64.615705], - [-22.345623, 64.615743], - [-22.345755, 64.615774], - [-22.345917, 64.615754], - [-22.34602, 64.615781], - [-22.345883, 64.615935], - [-22.345717, 64.616088], - [-22.345602, 64.61615], - [-22.345463, 64.616339], - [-22.345089, 64.616318], - [-22.344776, 64.616323], - [-22.344595, 64.616452], - [-22.34433, 64.616442], - [-22.343921, 64.616504], - [-22.343716, 64.616649], - [-22.343403, 64.616881], - [-22.3428, 64.617258], - [-22.342198, 64.617883], - [-22.3418, 64.618275], - [-22.341562, 64.618655], - [-22.341226, 64.618841], - [-22.341026, 64.619124], - [-22.340566, 64.61923], - [-22.340382, 64.619396], - [-22.340084, 64.61954], - [-22.340003, 64.619612], - [-22.339914, 64.619696], - [-22.339722, 64.61975], - [-22.33959, 64.619821], - [-22.339509, 64.619898], - [-22.339479, 64.619975], - [-22.339552, 64.620009], - [-22.339654, 64.620026], - [-22.339756, 64.620011], - [-22.33985, 64.619968], - [-22.340033, 64.619958], - [-22.34008, 64.620002], - [-22.339944, 64.620119], - [-22.339833, 64.620234], - [-22.339599, 64.620409], - [-22.339462, 64.620524], - [-22.339147, 64.620703], - [-22.339117, 64.62076], - [-22.339156, 64.620882], - [-22.339198, 64.620966], - [-22.339237, 64.62097], - [-22.339445, 64.620917], - [-22.339552, 64.62088], - [-22.339671, 64.62082], - [-22.339803, 64.620897], - [-22.340025, 64.620939], - [-22.340314, 64.620964], - [-22.340638, 64.620935], - [-22.340791, 64.620891], - [-22.340911, 64.620862], - [-22.341068, 64.620787], - [-22.341175, 64.620749], - [-22.341175, 64.620685], - [-22.3412, 64.620643], - [-22.341298, 64.620632], - [-22.341341, 64.620601], - [-22.341383, 64.620526], - [-22.34136, 64.620498], - [-22.341439, 64.620315], - [-22.341499, 64.620188], - [-22.341656, 64.620059], - [-22.341728, 64.619933], - [-22.34183, 64.619902], - [-22.341879, 64.619809], - [-22.342071, 64.619783], - [-22.342125, 64.619716], - [-22.342083, 64.619641], - [-22.342234, 64.619504], - [-22.342366, 64.619463], - [-22.342499, 64.619504], - [-22.342511, 64.619558], - [-22.34268, 64.619618], - [-22.342993, 64.619674], - [-22.343397, 64.619742], - [-22.343565, 64.619749], - [-22.343618, 64.619723], - [-22.343742, 64.619638], - [-22.343972, 64.619433], - [-22.343972, 64.619358], - [-22.34404, 64.619262], - [-22.344244, 64.619004], - [-22.344483, 64.618887], - [-22.344674, 64.618929], - [-22.344394, 64.619351], - [-22.344256, 64.619441], - [-22.344117, 64.619576], - [-22.344108, 64.619627], - [-22.344282, 64.619661], - [-22.344398, 64.619581], - [-22.344513, 64.619569], - [-22.344562, 64.619687], - [-22.344948, 64.619596], - [-22.344971, 64.61962], - [-22.344914, 64.619707], - [-22.344806, 64.619735], - [-22.344622, 64.619766], - [-22.344547, 64.61982], - [-22.344532, 64.619931], - [-22.344643, 64.619978], - [-22.34449, 64.620072], - [-22.344405, 64.620111], - [-22.344236, 64.620268], - [-22.344043, 64.620451], - [-22.344025, 64.620532], - [-22.344182, 64.620619], - [-22.344309, 64.620676], - [-22.344315, 64.620821], - [-22.344236, 64.620875], - [-22.344019, 64.620867], - [-22.34373, 64.620878], - [-22.343453, 64.620934], - [-22.343254, 64.621045], - [-22.343146, 64.621218], - [-22.343116, 64.621399], - [-22.34317, 64.621562], - [-22.343321, 64.621688], - [-22.34379, 64.621869], - [-22.3442, 64.621993], - [-22.344556, 64.622068], - [-22.344917, 64.622122], - [-22.345483, 64.622197], - [-22.345875, 64.622192], - [-22.346049, 64.622096], - [-22.346164, 64.622091], - [-22.346459, 64.622042], - [-22.346682, 64.621954], - [-22.346688, 64.621884], - [-22.346845, 64.621828], - [-22.347056, 64.621812], - [-22.347176, 64.621748], - [-22.347248, 64.62165], - [-22.347236, 64.621557], - [-22.347375, 64.621546], - [-22.347489, 64.621644], - [-22.347664, 64.621582], - [-22.348086, 64.621466], - [-22.348387, 64.621355], - [-22.34864, 64.621224], - [-22.348833, 64.621092], - [-22.348989, 64.620973], - [-22.349248, 64.62079], - [-22.350212, 64.62073], - [-22.350893, 64.620761], - [-22.351037, 64.620681], - [-22.351302, 64.620501], - [-22.351519, 64.620431], - [-22.351562, 64.620519], - [-22.351748, 64.620573], - [-22.35201, 64.6206], - [-22.352182, 64.620601], - [-22.352381, 64.620459], - [-22.352574, 64.620322], - [-22.352694, 64.620204], - [-22.352857, 64.620136], - [-22.352977, 64.620165], - [-22.352929, 64.620333], - [-22.352881, 64.620428], - [-22.352911, 64.620467], - [-22.353019, 64.620514], - [-22.353302, 64.620514], - [-22.353098, 64.620743], - [-22.353037, 64.620862], - [-22.352953, 64.620908], - [-22.352778, 64.620945], - [-22.352772, 64.620986], - [-22.352598, 64.621045], - [-22.352616, 64.62112], - [-22.352604, 64.6212], - [-22.352706, 64.621275], - [-22.352863, 64.621368], - [-22.352736, 64.62142], - [-22.352568, 64.621513], - [-22.352357, 64.621639], - [-22.352164, 64.62165], - [-22.35226, 64.621779], - [-22.352321, 64.621913], - [-22.35229, 64.622016], - [-22.352248, 64.622101], - [-22.35226, 64.622184], - [-22.352176, 64.622238], - [-22.352176, 64.622326], - [-22.352134, 64.622442], - [-22.352206, 64.622522], - [-22.352357, 64.622576], - [-22.352381, 64.62268], - [-22.352423, 64.622718], - [-22.352483, 64.62262], - [-22.352489, 64.622481], - [-22.352537, 64.622326], - [-22.352598, 64.62215], - [-22.352675, 64.622028], - [-22.352816, 64.621938], - [-22.352907, 64.621862], - [-22.352925, 64.621775], - [-22.352925, 64.621676], - [-22.353045, 64.621594], - [-22.353292, 64.621517], - [-22.353466, 64.621431], - [-22.353517, 64.621333], - [-22.353547, 64.62126], - [-22.353552, 64.621189], - [-22.353479, 64.621141], - [-22.353368, 64.621086], - [-22.353517, 64.620991], - [-22.353645, 64.621057], - [-22.35385, 64.621136], - [-22.353948, 64.621181], - [-22.354071, 64.621176], - [-22.354097, 64.621136], - [-22.353969, 64.621088], - [-22.353803, 64.620995], - [-22.353782, 64.620884], - [-22.353875, 64.620781], - [-22.354067, 64.62065], - [-22.354046, 64.620539], - [-22.353961, 64.620323], - [-22.353871, 64.620135], - [-22.353735, 64.620024], - [-22.353466, 64.619951], - [-22.353471, 64.619854], - [-22.35359, 64.619757], - [-22.353692, 64.619613], - [-22.35382, 64.619503], - [-22.353961, 64.619348], - [-22.354012, 64.619217], - [-22.354016, 64.619136], - [-22.353922, 64.619056], - [-22.353952, 64.618978], - [-22.353978, 64.618844], - [-22.354046, 64.618758], - [-22.354186, 64.618731], - [-22.354173, 64.618833], - [-22.354161, 64.618925], - [-22.354212, 64.618981], - [-22.354344, 64.619016], - [-22.354629, 64.619014], - [-22.354825, 64.618959], - [-22.355017, 64.618799], - [-22.355102, 64.618572], - [-22.355115, 64.618311], - [-22.35517, 64.618052], - [-22.355741, 64.61734], - [-22.355822, 64.617196], - [-22.356154, 64.617155], - [-22.356504, 64.617062], - [-22.356763, 64.616978], - [-22.356844, 64.616909], - [-22.35681, 64.616775], - [-22.356772, 64.616662], - [-22.357244, 64.616377], - [-22.357496, 64.616197], - [-22.3576, 64.615984], - [-22.357804, 64.615793], - [-22.358052, 64.615767], - [-22.357773, 64.616075], - [-22.357991, 64.616085], - [-22.358232, 64.615917], - [-22.359256, 64.614993], - [-22.359407, 64.614858], - [-22.359545, 64.614747], - [-22.35978, 64.61474], - [-22.359654, 64.614951], - [-22.360262, 64.615042], - [-22.360678, 64.615026], - [-22.361431, 64.614561], - [-22.361817, 64.614174], - [-22.362033, 64.613802], - [-22.36307, 64.613425], - [-22.364033, 64.612816], - [-22.363163, 64.6139], - [-22.35745, 64.61847], - [-22.35979, 64.6188], - [-22.36, 64.61932], - [-22.36339, 64.62045], - [-22.36723, 64.62416], - [-22.3684, 64.62432], - [-22.36998, 64.62553], - [-22.37232, 64.62586], - [-22.37432, 64.6281], - [-22.37549, 64.62826], - [-22.37536, 64.62903], - [-22.37769, 64.62936], - [-22.37701, 64.62985], - [-22.38331, 64.63145], - [-22.385065, 64.631251], - [-22.384443, 64.631784], - [-22.385344, 64.632202], - [-22.385967, 64.631927], - [-22.386117, 64.631995], - [-22.385881, 64.632294], - [-22.385924, 64.632529], - [-22.385537, 64.632795], - [-22.38486, 64.63291], - [-22.384357, 64.632749], - [-22.383274, 64.632961], - [-22.382106, 64.634655], - [-22.3816, 64.634822], - [-22.381128, 64.63468], - [-22.380881, 64.634431], - [-22.379854, 64.634683], - [-22.379175, 64.63553], - [-22.379518, 64.635691], - [-22.37922, 64.636787], - [-22.382225, 64.639812], - [-22.383555, 64.64075], - [-22.38516, 64.64163], - [-22.387804, 64.642689], - [-22.39068, 64.64437], - [-22.39462, 64.64577], - [-22.39632, 64.64635], - [-22.39856, 64.64718], - [-22.40251, 64.64858], - [-22.40421, 64.64915], - [-22.40646, 64.64999], - [-22.41448, 64.65203], - [-22.439045, 64.656616], - [-22.44166, 64.65748], - [-22.442993, 64.657755], - [-22.44561, 64.65889], - [-22.448228, 64.659766], - [-22.45075, 64.66033], - [-22.44842, 64.66179], - [-22.450482, 64.664441], - [-22.44837, 64.66563], - [-22.44832, 64.66768], - [-22.44713, 64.66765], - [-22.44573, 64.66888], - [-22.44513, 64.66887], - [-22.44526, 64.6681], - [-22.44295, 64.66764], - [-22.4411, 64.66797], - [-22.43969, 64.66921], - [-22.4331, 64.66926], - [-22.43302, 64.66977], - [-22.43242, 64.66975], - [-22.43196, 64.66897], - [-22.43315, 64.66901], - [-22.43451, 64.66623], - [-22.43762, 64.66377], - [-22.43881, 64.6638], - [-22.43894, 64.66304], - [-22.44132, 64.66311], - [-22.442739, 64.661637], - [-22.442495, 64.661181], - [-22.441788, 64.660516], - [-22.440763, 64.659851], - [-22.438945, 64.658849], - [-22.437714, 64.65817], - [-22.435153, 64.657255], - [-22.433625, 64.656783], - [-22.43195, 64.656344], - [-22.430275, 64.655913], - [-22.428511, 64.65554], - [-22.421258, 64.654225], - [-22.420624, 64.654082], - [-22.419819, 64.653968], - [-22.418253, 64.653867], - [-22.417491, 64.653729], - [-22.415802, 64.653309], - [-22.407622, 64.651604], - [-22.404907, 64.65096], - [-22.402386, 64.650225], - [-22.400028, 64.64939], - [-22.397808, 64.648509], - [-22.394842, 64.647271], - [-22.386514, 64.643732], - [-22.384485, 64.643002], - [-22.3831, 64.642543], - [-22.381336, 64.642106], - [-22.379463, 64.641787], - [-22.377489, 64.64161], - [-22.376266, 64.641589], - [-22.375483, 64.641695], - [-22.37416, 64.64308], - [-22.373531, 64.643389], - [-22.3724, 64.644182], - [-22.371555, 64.645028], - [-22.371157, 64.645007], - [-22.371145, 64.644613], - [-22.371244, 64.644193], - [-22.371008, 64.643953], - [-22.370511, 64.643937], - [-22.369828, 64.644336], - [-22.370039, 64.643863], - [-22.368995, 64.643618], - [-22.368026, 64.643671], - [-22.36728, 64.643948], - [-22.366808, 64.644549], - [-22.365963, 64.645092], - [-22.365901, 64.645454], - [-22.36677, 64.645555], - [-22.367379, 64.645348], - [-22.367404, 64.645667], - [-22.36595, 64.646401], - [-22.3651, 64.64716], - [-22.364509, 64.64745], - [-22.363713, 64.647684], - [-22.363216, 64.647247], - [-22.362346, 64.647082], - [-22.36151, 64.64717], - [-22.36025, 64.64752], - [-22.36037, 64.64729], - [-22.360892, 64.647104], - [-22.360942, 64.646875], - [-22.361278, 64.646486], - [-22.361178, 64.646311], - [-22.36088, 64.646215], - [-22.360433, 64.646396], - [-22.360085, 64.646423], - [-22.360259, 64.64622], - [-22.36047, 64.645938], - [-22.360408, 64.645853], - [-22.35878, 64.645417], - [-22.35818, 64.64566], - [-22.357935, 64.645768], - [-22.357425, 64.645784], - [-22.357164, 64.645672], - [-22.35627, 64.645646], - [-22.354816, 64.644991], - [-22.354592, 64.64506], - [-22.354604, 64.645465], - [-22.353734, 64.645007], - [-22.352939, 64.644746], - [-22.351025, 64.644815], - [-22.349012, 64.644949], - [-22.348304, 64.644555], - [-22.347446, 64.644523], - [-22.347508, 64.644384], - [-22.346552, 64.644539], - [-22.345831, 64.644901], - [-22.345309, 64.64489], - [-22.345172, 64.644768], - [-22.344489, 64.644863], - [-22.344426, 64.645199], - [-22.344254, 64.645564], - [-22.344215, 64.645646], - [-22.342923, 64.646545], - [-22.341369, 64.647205], - [-22.341183, 64.647567], - [-22.3411, 64.64768], - [-22.34106, 64.64795], - [-22.340413, 64.648306], - [-22.33963, 64.648466], - [-22.338548, 64.648434], - [-22.338027, 64.648056], - [-22.33749, 64.64782], - [-22.33656, 64.647019], - [-22.336324, 64.646699], - [-22.33592, 64.64648], - [-22.334646, 64.646811], - [-22.33401, 64.6472], - [-22.331279, 64.647109], - [-22.328395, 64.647226], - [-22.327302, 64.647013], - [-22.326034, 64.647343], - [-22.325724, 64.647758], - [-22.325773, 64.647907], - [-22.32586, 64.648343], - [-22.325748, 64.648769], - [-22.325301, 64.649418], - [-22.324854, 64.650014], - [-22.324344, 64.650339], - [-22.324208, 64.650849], - [-22.322853, 64.651477], - [-22.323002, 64.651616], - [-22.324431, 64.651557], - [-22.324444, 64.651206], - [-22.325164, 64.651015], - [-22.327613, 64.650695], - [-22.329638, 64.650387], - [-22.331714, 64.650525], - [-22.331714, 64.651882], - [-22.328135, 64.654653], - [-22.327563, 64.655116], - [-22.327737, 64.655685], - [-22.32771, 64.65597], - [-22.328284, 64.655989], - [-22.328072, 64.655606], - [-22.327973, 64.655159], - [-22.328358, 64.654893], - [-22.331204, 64.653983], - [-22.333627, 64.653228], - [-22.335914, 64.653824], - [-22.337691, 64.654425], - [-22.338946, 64.654627], - [-22.339642, 64.654781], - [-22.340375, 64.65451], - [-22.341755, 64.654036], - [-22.34315, 64.65313], - [-22.343917, 64.652765], - [-22.34447, 64.6524], - [-22.345682, 64.651903], - [-22.34834, 64.65073], - [-22.348925, 64.650275], - [-22.349832, 64.649684], - [-22.351641, 64.648112], - [-22.35248, 64.647689], - [-22.353143, 64.647236], - [-22.355143, 64.646504], - [-22.35464, 64.647747], - [-22.355263, 64.648473], - [-22.355953, 64.648681], - [-22.356654, 64.648718], - [-22.357843, 64.648626], - [-22.359245, 64.647758], - [-22.359694, 64.647818], - [-22.35972, 64.648098], - [-22.360495, 64.648099], - [-22.361216, 64.648173], - [-22.362505, 64.648052], - [-22.362496, 64.648264], - [-22.361525, 64.648396], - [-22.35436, 64.65399], - [-22.35253, 64.65419], - [-22.351436, 64.65578], - [-22.349824, 64.655525], - [-22.348386, 64.655763], - [-22.347548, 64.65693], - [-22.348407, 64.658111], - [-22.349407, 64.658376], - [-22.34876, 64.65869], - [-22.348304, 64.658441], - [-22.34813, 64.658292], - [-22.347753, 64.658249], - [-22.346875, 64.65835], - [-22.346092, 64.658643], - [-22.34588, 64.659292], - [-22.346216, 64.659483], - [-22.345483, 64.660595], - [-22.345706, 64.661042], - [-22.346266, 64.66151], - [-22.346924, 64.662079], - [-22.34808, 64.66268], - [-22.348155, 64.663105], - [-22.347409, 64.663366], - [-22.346303, 64.663589], - [-22.345185, 64.66386], - [-22.345147, 64.664185], - [-22.345085, 64.664663], - [-22.345495, 64.665099], - [-22.346005, 64.665588], - [-22.345781, 64.666072], - [-22.34465, 64.666317], - [-22.34376, 64.66699], - [-22.343793, 64.66738], - [-22.343482, 64.667918], - [-22.342997, 64.668242], - [-22.34057, 64.66817], - [-22.33958, 64.668199], - [-22.33874, 64.66836], - [-22.337716, 64.669417], - [-22.338163, 64.66989], - [-22.338996, 64.670448], - [-22.339829, 64.670714], - [-22.340947, 64.670735], - [-22.342177, 64.670565], - [-22.34383, 64.67006], - [-22.344551, 64.669725], - [-22.344389, 64.670034], - [-22.344886, 64.670289], - [-22.345769, 64.670289], - [-22.346601, 64.67023], - [-22.34721, 64.669895], - [-22.347011, 64.670268], - [-22.347011, 64.670581], - [-22.346353, 64.670677], - [-22.345893, 64.67089], - [-22.344986, 64.670932], - [-22.344837, 64.671102], - [-22.345433, 64.671209], - [-22.345085, 64.671331], - [-22.344501, 64.671251], - [-22.344215, 64.671501], - [-22.344625, 64.671618], - [-22.344228, 64.671783], - [-22.34339, 64.67261], - [-22.342774, 64.672963], - [-22.34208, 64.67334], - [-22.338909, 64.673324], - [-22.337206, 64.673622], - [-22.33594, 64.67417], - [-22.335181, 64.675057], - [-22.33538, 64.676004], - [-22.33555, 64.67646], - [-22.336423, 64.676652], - [-22.337604, 64.676838], - [-22.338064, 64.676812], - [-22.338399, 64.676679], - [-22.338921, 64.676413], - [-22.339567, 64.67645], - [-22.33866, 64.677088], - [-22.337952, 64.677795], - [-22.337008, 64.677635], - [-22.33615, 64.677667], - [-22.335293, 64.677604], - [-22.33267, 64.677779], - [-22.330384, 64.678002], - [-22.329201, 64.678052], - [-22.328756, 64.678071], - [-22.32737, 64.67877], - [-22.324916, 64.679288], - [-22.32422, 64.67968], - [-22.32118, 64.67997], - [-22.31589, 64.67943], - [-22.31602, 64.67866], - [-22.31249, 64.6783], - [-22.312158, 64.678539], - [-22.31181, 64.67879], - [-22.31419, 64.67886], - [-22.31571, 64.68045], - [-22.32279, 64.68106], - [-22.33189, 64.68032], - [-22.33423, 64.68065], - [-22.33493, 64.68003], - [-22.33612, 64.68007], - [-22.33591, 64.67955], - [-22.33859, 64.67964], - [-22.33714, 64.68113], - [-22.33596, 64.68109], - [-22.33637, 64.68213], - [-22.33994, 64.68224], - [-22.33912, 64.6835], - [-22.34033, 64.68353], - [-22.3404, 64.68302], - [-22.34519, 64.68305], - [-22.34538, 64.68369], - [-22.34474, 64.68393], - [-22.34486, 64.68496], - [-22.34248, 64.68488], - [-22.34013, 64.68635], - [-22.3408, 64.68765], - [-22.342, 64.6877], - [-22.34191, 64.6882], - [-22.3464, 64.68876], - [-22.34855, 64.68789], - [-22.34782, 64.68864], - [-22.34585, 64.6896], - [-22.3399, 64.68942], - [-22.33772, 64.69165], - [-22.33525, 64.69209], - [-22.33521, 64.69234], - [-22.3364, 64.69238], - [-22.33565, 64.69671], - [-22.33254, 64.69738], - [-22.33263, 64.69686], - [-22.33203, 64.69686], - [-22.33195, 64.69737], - [-22.32661, 64.69707], - [-22.32597, 64.69731], - [-22.32305, 64.69683], - [-22.32233, 64.69757], - [-22.32114, 64.69754], - [-22.317022, 64.701752], - [-22.317572, 64.701825], - [-22.321434, 64.699551], - [-22.32156, 64.69857], - [-22.32464, 64.69804], - [-22.33181, 64.69813], - [-22.33113, 64.69862], - [-22.33667, 64.69777], - [-22.3368, 64.69702], - [-22.33893, 64.69682], - [-22.34107, 64.69482], - [-22.34085, 64.69431], - [-22.3489, 64.69277], - [-22.34904, 64.69201], - [-22.35263, 64.69199], - [-22.35734, 64.69073], - [-22.35854, 64.68898], - [-22.35975, 64.68889], - [-22.36045, 64.68827], - [-22.36105, 64.68829], - [-22.36092, 64.68905], - [-22.36274, 64.68885], - [-22.36224, 64.68832], - [-22.36343, 64.68836], - [-22.36607, 64.68691], - [-22.36667, 64.68693], - [-22.36616, 64.68759], - [-22.36688, 64.68745], - [-22.37072, 64.68423], - [-22.37251, 64.68429], - [-22.37321, 64.68367], - [-22.37443, 64.68358], - [-22.37259, 64.68557], - [-22.37269, 64.68673], - [-22.37569, 64.6867], - [-22.37586, 64.68568], - [-22.37705, 64.68571], - [-22.37744, 64.68521], - [-22.38242, 64.68409], - [-22.38511, 64.68238], - [-22.38531, 64.6811], - [-22.38743, 64.68104], - [-22.39035, 64.67972], - [-22.38989, 64.67715], - [-22.39108, 64.67718], - [-22.39121, 64.67642], - [-22.39275, 64.67621], - [-22.39317, 64.67545], - [-22.40057, 64.67416], - [-22.40142, 64.67264], - [-22.40255, 64.67306], - [-22.40436, 64.67298], - [-22.40453, 64.67196], - [-22.40278, 64.67165], - [-22.40658, 64.6669], - [-22.41372, 64.66712], - [-22.41491, 64.66896], - [-22.41294, 64.6753], - [-22.41175, 64.67526], - [-22.41197, 64.67578], - [-22.41, 64.67675], - [-22.40879, 64.68388], - [-22.41134, 64.68473], - [-22.4098, 64.68674], - [-22.40862, 64.6867], - [-22.40844, 64.68772], - [-22.40725, 64.68768], - [-22.40715, 64.68819], - [-22.39142, 64.68924], - [-22.38422, 64.69286], - [-22.38179, 64.69304], - [-22.37322, 64.69764], - [-22.37075, 64.69807], - [-22.36355, 64.7104], - [-22.36438, 64.71428], - [-22.35193, 64.7135], - [-22.35023, 64.71293], - [-22.34663, 64.71295], - [-22.34518, 64.71444], - [-22.34399, 64.7144], - [-22.34445, 64.71519], - [-22.34624, 64.71524], - [-22.34611, 64.71601], - [-22.34755, 64.71631], - [-22.34643, 64.71756], - [-22.3447, 64.71724], - [-22.34452, 64.71826], - [-22.34333, 64.71823], - [-22.3432, 64.71899], - [-22.342, 64.71895], - [-22.34183, 64.71997], - [-22.34064, 64.71994], - [-22.33806, 64.72447], - [-22.33386, 64.72446], - [-22.32706, 64.72566], - [-22.32727, 64.72618], - [-22.32663, 64.72641], - [-22.32721, 64.73002], - [-22.32652, 64.73051], - [-22.33073, 64.73564], - [-22.33365, 64.73612], - [-22.33356, 64.73663], - [-22.3378, 64.73638], - [-22.33928, 64.73476], - [-22.34046, 64.73479], - [-22.34136, 64.73661], - [-22.33893, 64.7368], - [-22.3395, 64.74041], - [-22.33771, 64.74035], - [-22.33699, 64.74109], - [-22.33579, 64.74105], - [-22.33562, 64.74207], - [-22.33442, 64.74204], - [-22.33335, 64.74303], - [-22.33352, 64.7438], - [-22.33232, 64.74376], - [-22.33089, 64.74167], - [-22.3279, 64.74156], - [-22.32782, 64.74208], - [-22.32598, 64.74228], - [-22.32371, 64.74503], - [-22.32251, 64.74499], - [-22.32111, 64.74622], - [-22.31639, 64.74569], - [-22.30954, 64.74714], - [-22.30862, 64.7507], - [-22.31177, 64.75157], - [-22.31027, 64.75332], - [-22.31381, 64.75369], - [-22.31303, 64.75469], - [-22.31184, 64.75465], - [-22.3117, 64.75541], - [-22.30927, 64.75559], - [-22.30765, 64.75631], - [-22.311, 64.75949], - [-22.31575, 64.75976], - [-22.31646, 64.75915], - [-22.31829, 64.75895], - [-22.31784, 64.75928], - [-22.31988, 64.76016], - [-22.32111, 64.76007], - [-22.32123, 64.76049], - [-22.321302, 64.760487], - [-22.32344, 64.7604], - [-22.32263, 64.76165], - [-22.32382, 64.76169], - [-22.3243, 64.76235], - [-22.32548, 64.76251], - [-22.327117, 64.762929], - [-22.32944, 64.76392], - [-22.32935, 64.76442], - [-22.3334, 64.76532], - [-22.33331, 64.76583], - [-22.33574, 64.76565], - [-22.33565, 64.76616], - [-22.34404, 64.7663], - [-22.34726, 64.76499], - [-22.34713, 64.76576], - [-22.34892, 64.76581], - [-22.34609, 64.76829], - [-22.34727, 64.76845], - [-22.34774, 64.76911], - [-22.35475, 64.77035], - [-22.35738, 64.76902], - [-22.36034, 64.76925], - [-22.36072, 64.77055], - [-22.36251, 64.7706], - [-22.36261, 64.77009], - [-22.36375, 64.77038], - [-22.3647, 64.76837], - [-22.36642, 64.76879], - [-22.36734, 64.7687], - [-22.36919, 64.76491], - [-22.37137, 64.76447], - [-22.37128, 64.76498], - [-22.37427, 64.76507], - [-22.37418, 64.76558], - [-22.37832, 64.76596], - [-22.37879, 64.76495], - [-22.37973, 64.76473], - [-22.37963, 64.76524], - [-22.384, 64.76435], - [-22.38378, 64.76562], - [-22.38523, 64.76592], - [-22.38339, 64.76793], - [-22.38626, 64.76866], - [-22.38778, 64.76857], - [-22.38825, 64.76756], - [-22.38944, 64.76759], - [-22.38953, 64.76708], - [-22.39438, 64.76685], - [-22.3954, 64.76791], - [-22.39661, 64.76782], - [-22.39652, 64.76833], - [-22.39829, 64.7685], - [-22.39874, 64.76942], - [-22.40111, 64.76962], - [-22.40615, 64.76824], - [-22.40975, 64.76822], - [-22.40924, 64.76769], - [-22.41037, 64.76811], - [-22.41193, 64.76777], - [-22.41239, 64.76677], - [-22.40993, 64.76719], - [-22.411546, 64.765314], - [-22.413431, 64.765898], - [-22.414147, 64.76565], - [-22.413317, 64.765363], - [-22.413685, 64.765059], - [-22.413853, 64.765171], - [-22.414714, 64.765189], - [-22.414451, 64.76492], - [-22.414252, 64.764831], - [-22.415119, 64.764652], - [-22.414871, 64.764406], - [-22.41454, 64.764304], - [-22.413694, 64.764469], - [-22.413263, 64.764266], - [-22.4139, 64.76323], - [-22.415058, 64.762573], - [-22.416186, 64.762674], - [-22.417196, 64.761383], - [-22.418117, 64.761117], - [-22.418265, 64.760382], - [-22.419482, 64.759952], - [-22.419351, 64.759753], - [-22.418859, 64.759598], - [-22.419509, 64.759609], - [-22.419661, 64.759028], - [-22.421442, 64.758952], - [-22.421353, 64.757989], - [-22.423719, 64.757605], - [-22.424204, 64.7588], - [-22.426564, 64.758866], - [-22.433587, 64.760091], - [-22.437803, 64.760091], - [-22.438968, 64.76057], - [-22.442317, 64.761458], - [-22.444425, 64.762598], - [-22.445049, 64.763902], - [-22.444239, 64.76529], - [-22.440624, 64.765788], - [-22.439169, 64.765624], - [-22.433754, 64.766595], - [-22.432726, 64.765826], - [-22.431024, 64.765378], - [-22.430423, 64.765675], - [-22.43164, 64.76659], - [-22.42669, 64.76747], - [-22.42647, 64.76874], - [-22.42345, 64.7689], - [-22.42331, 64.76968], - [-22.42095, 64.76947], - [-22.419538, 64.769821], - [-22.418306, 64.77009], - [-22.41723, 64.770582], - [-22.417415, 64.770743], - [-22.417659, 64.77074], - [-22.418035, 64.770833], - [-22.417674, 64.771147], - [-22.418078, 64.771252], - [-22.418917, 64.771172], - [-22.419726, 64.77132], - [-22.419981, 64.772205], - [-22.419025, 64.772353], - [-22.419076, 64.772475], - [-22.419332, 64.772449], - [-22.419455, 64.772571], - [-22.419266, 64.772597], - [-22.41925, 64.772684], - [-22.419383, 64.772765], - [-22.418909, 64.772985], - [-22.418341, 64.772898], - [-22.418056, 64.77305], - [-22.41785, 64.772858], - [-22.417987, 64.772555], - [-22.417188, 64.772668], - [-22.416914, 64.772915], - [-22.41622, 64.772982], - [-22.415844, 64.772894], - [-22.415222, 64.773013], - [-22.415179, 64.773377], - [-22.415005, 64.773599], - [-22.414138, 64.773987], - [-22.413863, 64.774578], - [-22.414745, 64.774923], - [-22.414658, 64.775188], - [-22.413386, 64.775145], - [-22.413097, 64.775059], - [-22.413075, 64.775294], - [-22.413343, 64.775718], - [-22.41356, 64.775798], - [-22.41382, 64.775311], - [-22.414724, 64.775493], - [-22.415179, 64.775391], - [-22.415507, 64.774894], - [-22.418562, 64.773488], - [-22.419429, 64.773537], - [-22.421395, 64.772732], - [-22.422436, 64.772693], - [-22.42287, 64.772828], - [-22.42245, 64.773229], - [-22.422913, 64.773352], - [-22.424358, 64.773001], - [-22.425804, 64.773451], - [-22.42506, 64.773977], - [-22.42391, 64.774147], - [-22.423867, 64.77432], - [-22.423304, 64.774482], - [-22.423115, 64.774797], - [-22.421551, 64.775399], - [-22.420959, 64.775663], - [-22.419676, 64.775758], - [-22.419574, 64.77595], - [-22.41986, 64.776133], - [-22.419308, 64.776359], - [-22.4193, 64.776691], - [-22.416905, 64.777989], - [-22.416387, 64.778398], - [-22.414836, 64.778982], - [-22.414821, 64.779134], - [-22.414232, 64.77956], - [-22.413799, 64.77966], - [-22.412378, 64.780454], - [-22.412032, 64.780534], - [-22.411429, 64.780846], - [-22.4108, 64.781024], - [-22.410234, 64.781033], - [-22.410163, 64.781278], - [-22.40943, 64.781742], - [-22.410195, 64.782101], - [-22.411128, 64.782237], - [-22.412048, 64.781858], - [-22.411924, 64.782219], - [-22.410882, 64.782927], - [-22.41111, 64.782965], - [-22.411614, 64.782897], - [-22.41191, 64.783137], - [-22.412473, 64.783191], - [-22.412557, 64.783322], - [-22.412135, 64.783604], - [-22.412163, 64.784], - [-22.412686, 64.784255], - [-22.414252, 64.784708], - [-22.413039, 64.784721], - [-22.412947, 64.784832], - [-22.412637, 64.784877], - [-22.41256, 64.785057], - [-22.41268, 64.785219], - [-22.412391, 64.785189], - [-22.412307, 64.785321], - [-22.412487, 64.785377], - [-22.411948, 64.785471], - [-22.411568, 64.785654], - [-22.410993, 64.785792], - [-22.410688, 64.785689], - [-22.411414, 64.785197], - [-22.411314, 64.784844], - [-22.410906, 64.784673], - [-22.410336, 64.784664], - [-22.410146, 64.784526], - [-22.409639, 64.784364], - [-22.409092, 64.784273], - [-22.408964, 64.78443], - [-22.408513, 64.784571], - [-22.408563, 64.784706], - [-22.408187, 64.785013], - [-22.407486, 64.785057], - [-22.406571, 64.785204], - [-22.406533, 64.78508], - [-22.406419, 64.785074], - [-22.406245, 64.785125], - [-22.406233, 64.785213], - [-22.405487, 64.785423], - [-22.405156, 64.785728], - [-22.405107, 64.78595], - [-22.404581, 64.786232], - [-22.404762, 64.786481], - [-22.404556, 64.786631], - [-22.4051, 64.786601], - [-22.405388, 64.786321], - [-22.405811, 64.786244], - [-22.406606, 64.785935], - [-22.407456, 64.785818], - [-22.407345, 64.786096], - [-22.407455, 64.786253], - [-22.407335, 64.786351], - [-22.407634, 64.786554], - [-22.407689, 64.786898], - [-22.408121, 64.787279], - [-22.40849, 64.787419], - [-22.408888, 64.787339], - [-22.408579, 64.787513], - [-22.408498, 64.787674], - [-22.406838, 64.787622], - [-22.40647, 64.78772], - [-22.406171, 64.787809], - [-22.406151, 64.787978], - [-22.405853, 64.788046], - [-22.405634, 64.787961], - [-22.405066, 64.787851], - [-22.404967, 64.787953], - [-22.404509, 64.787987], - [-22.403495, 64.788194], - [-22.403665, 64.788269], - [-22.40436, 64.788106], - [-22.404589, 64.788148], - [-22.405027, 64.788084], - [-22.405201, 64.788163], - [-22.405983, 64.788349], - [-22.405962, 64.788742], - [-22.405645, 64.789051], - [-22.405635, 64.789132], - [-22.405734, 64.789152], - [-22.405749, 64.789298], - [-22.404986, 64.789628], - [-22.405005, 64.790226], - [-22.405385, 64.790214], - [-22.405709, 64.790514], - [-22.40547, 64.790669], - [-22.405577, 64.790882], - [-22.40589, 64.79091], - [-22.406131, 64.790933], - [-22.406666, 64.790634], - [-22.406583, 64.790204], - [-22.407989, 64.790046], - [-22.408985, 64.789912], - [-22.40934, 64.78956], - [-22.409171, 64.78935], - [-22.409439, 64.789051], - [-22.410247, 64.789076], - [-22.410803, 64.788827], - [-22.411785, 64.788774], - [-22.412247, 64.788561], - [-22.412898, 64.788545], - [-22.412965, 64.7884], - [-22.413284, 64.788112], - [-22.41304, 64.787902], - [-22.414012, 64.787878], - [-22.415974, 64.788256], - [-22.41688, 64.788099], - [-22.417163, 64.788131], - [-22.41705, 64.788011], - [-22.417928, 64.787685], - [-22.418221, 64.787761], - [-22.41906, 64.787693], - [-22.419516, 64.787342], - [-22.420157, 64.787186], - [-22.421794, 64.786482], - [-22.42232, 64.78617], - [-22.42346, 64.785777], - [-22.42422, 64.785461], - [-22.425154, 64.785195], - [-22.425111, 64.784961], - [-22.422416, 64.784244], - [-22.423774, 64.783881], - [-22.425978, 64.783807], - [-22.426525, 64.783483], - [-22.430582, 64.783489], - [-22.432744, 64.783648], - [-22.43471, 64.783322], - [-22.436601, 64.783205], - [-22.438028, 64.782841], - [-22.438322, 64.782608], - [-22.43955, 64.782477], - [-22.440057, 64.782187], - [-22.441231, 64.782227], - [-22.442045, 64.782056], - [-22.44346, 64.782118], - [-22.44394, 64.782058], - [-22.445374, 64.781643], - [-22.445768, 64.781328], - [-22.446422, 64.781249], - [-22.447156, 64.781277], - [-22.447857, 64.780991], - [-22.448357, 64.781038], - [-22.447567, 64.781319], - [-22.448677, 64.781766], - [-22.450092, 64.782141], - [-22.452, 64.782431], - [-22.453635, 64.782585], - [-22.455563, 64.781931], - [-22.45615, 64.781982], - [-22.45663, 64.78222], - [-22.45658, 64.78249], - [-22.455416, 64.782812], - [-22.454204, 64.782982], - [-22.453682, 64.783347], - [-22.453562, 64.78375], - [-22.453188, 64.78387], - [-22.45226, 64.783758], - [-22.45136, 64.783972], - [-22.45031, 64.784134], - [-22.450039, 64.784649], - [-22.44983, 64.78483], - [-22.449999, 64.785342], - [-22.450332, 64.785501], - [-22.450692, 64.785911], - [-22.451054, 64.786051], - [-22.452708, 64.785825], - [-22.45124, 64.786314], - [-22.45063, 64.786534], - [-22.448773, 64.78707], - [-22.448016, 64.787298], - [-22.445962, 64.787734], - [-22.445435, 64.787485], - [-22.443146, 64.786872], - [-22.44257, 64.786657], - [-22.442046, 64.786647], - [-22.440844, 64.786206], - [-22.440804, 64.786002], - [-22.439824, 64.785644], - [-22.440497, 64.785331], - [-22.440137, 64.785092], - [-22.437619, 64.784508], - [-22.435127, 64.785086], - [-22.434385, 64.785206], - [-22.433497, 64.785612], - [-22.432104, 64.786969], - [-22.431503, 64.787264], - [-22.430553, 64.787435], - [-22.428813, 64.788523], - [-22.42762, 64.788764], - [-22.426686, 64.788838], - [-22.425271, 64.788844], - [-22.42439, 64.789066], - [-22.424217, 64.788861], - [-22.423376, 64.788793], - [-22.422535, 64.788867], - [-22.421514, 64.789314], - [-22.421228, 64.789838], - [-22.421361, 64.790481], - [-22.421922, 64.790742], - [-22.421761, 64.791203], - [-22.421001, 64.791544], - [-22.420841, 64.792686], - [-22.420731, 64.79297], - [-22.418654, 64.792892], - [-22.418101, 64.793209], - [-22.418078, 64.79293], - [-22.41625, 64.792629], - [-22.415339, 64.792591], - [-22.41365, 64.793195], - [-22.413768, 64.793374], - [-22.413274, 64.79359], - [-22.412807, 64.79413], - [-22.411686, 64.794297], - [-22.410872, 64.794169], - [-22.409844, 64.794327], - [-22.409298, 64.79467], - [-22.409271, 64.794885], - [-22.408937, 64.794976], - [-22.409218, 64.795874], - [-22.408911, 64.795994], - [-22.408724, 64.796278], - [-22.409151, 64.796863], - [-22.409785, 64.79721], - [-22.410474, 64.797441], - [-22.410884, 64.797987], - [-22.41164, 64.798464], - [-22.413415, 64.799128], - [-22.414247, 64.799435], - [-22.415535, 64.799889], - [-22.415894, 64.799853], - [-22.41509, 64.800216], - [-22.414584, 64.800472], - [-22.414062, 64.80034], - [-22.414294, 64.800031], - [-22.414048, 64.799829], - [-22.412994, 64.799494], - [-22.410952, 64.79917], - [-22.406789, 64.798767], - [-22.406697, 64.798937], - [-22.405681, 64.799073], - [-22.4044, 64.799532], - [-22.40404, 64.800238], - [-22.405054, 64.801525], - [-22.405894, 64.802216], - [-22.407414, 64.802199], - [-22.406577, 64.802644], - [-22.407567, 64.804277], - [-22.408644, 64.804778], - [-22.409311, 64.804931], - [-22.409941, 64.804937], - [-22.409511, 64.805357], - [-22.409871, 64.805874], - [-22.408354, 64.806525], - [-22.407114, 64.80686], - [-22.407136, 64.807112], - [-22.407763, 64.807476], - [-22.408815, 64.807933], - [-22.409137, 64.808243], - [-22.410074, 64.808679], - [-22.412247, 64.809061], - [-22.413328, 64.809032], - [-22.414078, 64.80932], - [-22.414262, 64.809719], - [-22.413848, 64.809833], - [-22.41344, 64.81011], - [-22.413541, 64.810327], - [-22.413921, 64.810547], - [-22.414262, 64.810583], - [-22.413661, 64.810855], - [-22.412913, 64.810818], - [-22.41198, 64.811239], - [-22.412287, 64.811986], - [-22.413159, 64.812617], - [-22.416021, 64.812653], - [-22.41721, 64.813675], - [-22.416416, 64.81517], - [-22.409823, 64.81858], - [-22.39678, 64.81959], - [-22.39669, 64.82009], - [-22.395359, 64.820312], - [-22.39192, 64.8211], - [-22.392455, 64.82127], - [-22.39627, 64.820954], - [-22.398613, 64.819975], - [-22.410631, 64.819396], - [-22.41167, 64.818971], - [-22.41263, 64.818585], - [-22.415036, 64.817325], - [-22.420008, 64.814424], - [-22.420618, 64.813773], - [-22.419453, 64.812203], - [-22.419731, 64.811832], - [-22.418029, 64.811575], - [-22.417101, 64.811912], - [-22.415584, 64.81211], - [-22.416158, 64.811524], - [-22.417281, 64.811147], - [-22.417227, 64.810834], - [-22.41818, 64.81051], - [-22.4195, 64.80978], - [-22.420871, 64.808164], - [-22.418871, 64.807432], - [-22.418138, 64.807673], - [-22.418951, 64.806534], - [-22.418031, 64.806304], - [-22.416116, 64.806924], - [-22.415306, 64.807286], - [-22.413386, 64.807583], - [-22.414872, 64.806032], - [-22.417043, 64.805229], - [-22.418941, 64.804765], - [-22.420083, 64.805017], - [-22.422085, 64.804297], - [-22.422087, 64.803944], - [-22.422989, 64.803685], - [-22.422511, 64.802911], - [-22.42395, 64.801317], - [-22.424781, 64.800844], - [-22.424169, 64.800438], - [-22.423436, 64.800075], - [-22.424281, 64.799544], - [-22.426326, 64.800068], - [-22.4277, 64.800047], - [-22.428988, 64.799441], - [-22.431258, 64.799694], - [-22.433308, 64.799086], - [-22.436567, 64.800147], - [-22.440051, 64.800731], - [-22.44625, 64.801], - [-22.449575, 64.800057], - [-22.450423, 64.800057], - [-22.45505, 64.7987], - [-22.458855, 64.798315], - [-22.458208, 64.800475], - [-22.456678, 64.800751], - [-22.455359, 64.801973], - [-22.456283, 64.803465], - [-22.454223, 64.804177], - [-22.45369, 64.805914], - [-22.456375, 64.807283], - [-22.458482, 64.807804], - [-22.459955, 64.807411], - [-22.457884, 64.809088], - [-22.459038, 64.809683], - [-22.45805, 64.81122], - [-22.462804, 64.811791], - [-22.463113, 64.811678], - [-22.463476, 64.811038], - [-22.466061, 64.810681], - [-22.468173, 64.808648], - [-22.470342, 64.807987], - [-22.470344, 64.807538], - [-22.47197, 64.806962], - [-22.47416, 64.80659], - [-22.476242, 64.805749], - [-22.478808, 64.805964], - [-22.480266, 64.805254], - [-22.481264, 64.805346], - [-22.482045, 64.804948], - [-22.483355, 64.805391], - [-22.483397, 64.80429], - [-22.481299, 64.803007], - [-22.479589, 64.802499], - [-22.477729, 64.802919], - [-22.47594, 64.802276], - [-22.474815, 64.802835], - [-22.474623, 64.802488], - [-22.475011, 64.802209], - [-22.474456, 64.802186], - [-22.474566, 64.801894], - [-22.475652, 64.801885], - [-22.476048, 64.800948], - [-22.477427, 64.800435], - [-22.476752, 64.799893], - [-22.475, 64.800184], - [-22.476233, 64.798732], - [-22.478149, 64.798231], - [-22.478872, 64.798554], - [-22.480429, 64.798978], - [-22.481842, 64.798751], - [-22.483711, 64.798639], - [-22.482869, 64.800368], - [-22.486158, 64.802056], - [-22.487275, 64.802214], - [-22.487385, 64.803301], - [-22.487977, 64.803599], - [-22.489057, 64.802966], - [-22.49032, 64.803198], - [-22.489858, 64.802894], - [-22.488921, 64.802439], - [-22.490369, 64.801308], - [-22.492181, 64.799768], - [-22.493395, 64.799257], - [-22.495142, 64.79941], - [-22.495732, 64.800277], - [-22.496435, 64.800414], - [-22.497337, 64.800039], - [-22.496814, 64.799142], - [-22.497518, 64.798832], - [-22.496865, 64.798222], - [-22.498611, 64.797498], - [-22.4989, 64.796919], - [-22.499548, 64.79702], - [-22.499214, 64.797733], - [-22.499403, 64.798527], - [-22.502595, 64.798168], - [-22.503325, 64.797617], - [-22.502112, 64.796885], - [-22.501266, 64.796962], - [-22.501363, 64.796513], - [-22.503341, 64.795823], - [-22.503153, 64.796758], - [-22.505189, 64.797865], - [-22.50649, 64.798054], - [-22.506063, 64.798292], - [-22.505072, 64.798442], - [-22.503838, 64.79973], - [-22.508046, 64.800773], - [-22.507599, 64.800952], - [-22.510626, 64.802026], - [-22.511235, 64.801995], - [-22.513925, 64.802729], - [-22.515358, 64.802441], - [-22.515642, 64.802778], - [-22.513698, 64.803149], - [-22.509496, 64.803199], - [-22.512505, 64.803416], - [-22.511984, 64.804238], - [-22.512345, 64.805429], - [-22.510875, 64.805502], - [-22.510467, 64.805949], - [-22.511394, 64.806178], - [-22.511853, 64.806032], - [-22.51323, 64.80663], - [-22.516031, 64.805699], - [-22.518135, 64.806149], - [-22.517465, 64.807445], - [-22.515643, 64.80747], - [-22.514123, 64.808499], - [-22.514691, 64.809297], - [-22.517331, 64.809448], - [-22.515883, 64.808965], - [-22.516264, 64.808544], - [-22.516903, 64.808744], - [-22.517998, 64.80953], - [-22.520136, 64.809949], - [-22.52112, 64.80981], - [-22.521906, 64.809552], - [-22.524912, 64.807792], - [-22.528678, 64.806424], - [-22.532551, 64.805356], - [-22.532297, 64.804475], - [-22.533517, 64.803968], - [-22.534346, 64.803608], - [-22.53483, 64.8033], - [-22.53553, 64.80269], - [-22.536909, 64.802254], - [-22.5397, 64.802496], - [-22.541423, 64.801932], - [-22.54129, 64.801232], - [-22.542056, 64.800285], - [-22.54333, 64.799974], - [-22.543489, 64.799271], - [-22.548613, 64.797983], - [-22.549916, 64.798114], - [-22.55161, 64.797987], - [-22.552297, 64.798314], - [-22.554298, 64.798267], - [-22.555161, 64.798003], - [-22.55449, 64.797757], - [-22.554724, 64.797101], - [-22.555202, 64.796925], - [-22.554458, 64.796589], - [-22.553979, 64.796765], - [-22.550602, 64.796748], - [-22.550726, 64.796455], - [-22.552967, 64.796306], - [-22.553486, 64.795875], - [-22.554647, 64.795647], - [-22.555825, 64.795315], - [-22.556397, 64.795776], - [-22.56018, 64.795869], - [-22.560163, 64.795388], - [-22.560922, 64.795099], - [-22.560206, 64.794276], - [-22.560185, 64.793354], - [-22.564097, 64.791124], - [-22.566047, 64.790412], - [-22.569115, 64.789835], - [-22.571139, 64.789684], - [-22.572297, 64.789209], - [-22.573613, 64.788022], - [-22.575839, 64.787152], - [-22.57743, 64.787191], - [-22.577355, 64.786614], - [-22.576809, 64.78626], - [-22.57829, 64.785737], - [-22.578389, 64.785098], - [-22.581193, 64.784482], - [-22.582855, 64.784773], - [-22.584211, 64.784447], - [-22.588072, 64.783088], - [-22.593468, 64.781746], - [-22.59345, 64.780066], - [-22.590408, 64.779538], - [-22.585136, 64.77791], - [-22.577823, 64.775818], - [-22.575637, 64.775661], - [-22.575581, 64.776605], - [-22.572779, 64.777297], - [-22.569652, 64.777433], - [-22.567419, 64.778037], - [-22.566161, 64.778819], - [-22.564631, 64.779363], - [-22.562099, 64.780277], - [-22.559576, 64.780225], - [-22.557075, 64.77951], - [-22.555019, 64.778645], - [-22.551702, 64.778468], - [-22.551053, 64.777686], - [-22.552763, 64.777027], - [-22.554324, 64.777083], - [-22.558563, 64.776532], - [-22.559912, 64.776089], - [-22.562399, 64.775968], - [-22.56403, 64.77561], - [-22.567908, 64.774865], - [-22.57139, 64.77468], - [-22.573845, 64.774083], - [-22.57453, 64.77337], - [-22.58056, 64.77367], - [-22.581288, 64.774137], - [-22.58691, 64.77527], - [-22.595843, 64.776986], - [-22.605181, 64.77813], - [-22.607664, 64.777308], - [-22.611026, 64.77714], - [-22.617539, 64.776811], - [-22.62066, 64.776417], - [-22.621612, 64.775634], - [-22.620626, 64.774769], - [-22.624083, 64.774218], - [-22.624771, 64.774737], - [-22.627559, 64.774333], - [-22.627415, 64.773383], - [-22.629691, 64.772093], - [-22.635, 64.77119], - [-22.635466, 64.771511], - [-22.637438, 64.771333], - [-22.637867, 64.770456], - [-22.640038, 64.770264], - [-22.646153, 64.770863], - [-22.648548, 64.771335], - [-22.653089, 64.77319], - [-22.657229, 64.774356], - [-22.667052, 64.775871], - [-22.692278, 64.779865], - [-22.681017, 64.7816], - [-22.679133, 64.779483], - [-22.653808, 64.776796], - [-22.64937, 64.77521], - [-22.647607, 64.775202], - [-22.647854, 64.775938], - [-22.651463, 64.779312], - [-22.648807, 64.780248], - [-22.646579, 64.779984], - [-22.64518, 64.778756], - [-22.643785, 64.776758], - [-22.641007, 64.775339], - [-22.638779, 64.774624], - [-22.63682, 64.77483], - [-22.634932, 64.77614], - [-22.639144, 64.777082], - [-22.636986, 64.778574], - [-22.634021, 64.779081], - [-22.631917, 64.78001], - [-22.630784, 64.779718], - [-22.626353, 64.78045], - [-22.626823, 64.782176], - [-22.625795, 64.78284], - [-22.623909, 64.783177], - [-22.62162, 64.78335], - [-22.620829, 64.783947], - [-22.622711, 64.783645], - [-22.622991, 64.783916], - [-22.625157, 64.784137], - [-22.625496, 64.784655], - [-22.627013, 64.78489], - [-22.625044, 64.786512], - [-22.625325, 64.787346], - [-22.62791, 64.787743], - [-22.627736, 64.788069], - [-22.626783, 64.78814], - [-22.624837, 64.787702], - [-22.624502, 64.788031], - [-22.624581, 64.788766], - [-22.625336, 64.788879], - [-22.625295, 64.789038], - [-22.623776, 64.789139], - [-22.623327, 64.789541], - [-22.622394, 64.789496], - [-22.621689, 64.789917], - [-22.621739, 64.790111], - [-22.620974, 64.790566], - [-22.620548, 64.790822], - [-22.620604, 64.791018], - [-22.621846, 64.790675], - [-22.621885, 64.79047], - [-22.622747, 64.789811], - [-22.623594, 64.789862], - [-22.624399, 64.789461], - [-22.62647, 64.789113], - [-22.627634, 64.789326], - [-22.632129, 64.788827], - [-22.63312, 64.787043], - [-22.636293, 64.786754], - [-22.63548, 64.787975], - [-22.63352, 64.789256], - [-22.63611, 64.79031], - [-22.63702, 64.789896], - [-22.639383, 64.790097], - [-22.639401, 64.790446], - [-22.641028, 64.790592], - [-22.64273, 64.79025], - [-22.644662, 64.78995], - [-22.644689, 64.787574], - [-22.645926, 64.786698], - [-22.6473, 64.78616], - [-22.648653, 64.785709], - [-22.650128, 64.785206], - [-22.65163, 64.784741], - [-22.652894, 64.784705], - [-22.650967, 64.785902], - [-22.654579, 64.785574], - [-22.65801, 64.78493], - [-22.65792, 64.78544], - [-22.65601, 64.78615], - [-22.65417, 64.78636], - [-22.65463, 64.78727], - [-22.65893, 64.78662], - [-22.66071, 64.7868], - [-22.66203, 64.78607], - [-22.66246, 64.78711], - [-22.66131, 64.78682], - [-22.66102, 64.78861], - [-22.66337, 64.78893], - [-22.66481, 64.78743], - [-22.66897, 64.78781], - [-22.66966, 64.78719], - [-22.67079, 64.78761], - [-22.66959, 64.78759], - [-22.66947, 64.78834], - [-22.67067, 64.78838], - [-22.66866, 64.7896], - [-22.66636, 64.78902], - [-22.6656, 64.79002], - [-22.66257, 64.79019], - [-22.66265, 64.78968], - [-22.65838, 64.79007], - [-22.65834, 64.79032], - [-22.66129, 64.79066], - [-22.66044, 64.79218], - [-22.65797, 64.79262], - [-22.6579, 64.79313], - [-22.65669, 64.79309], - [-22.65653, 64.79411], - [-22.65535, 64.79395], - [-22.6535, 64.79427], - [-22.65431, 64.79482], - [-22.65393, 64.79532], - [-22.65572, 64.79537], - [-22.65548, 64.79689], - [-22.65732, 64.7967], - [-22.65723, 64.79721], - [-22.65902, 64.79726], - [-22.65894, 64.79778], - [-22.66084, 64.79718], - [-22.66172, 64.79733], - [-22.66121, 64.7986], - [-22.66001, 64.79857], - [-22.65772, 64.79978], - [-22.6579, 64.80056], - [-22.65907, 64.80072], - [-22.65982, 64.80164], - [-22.65854, 64.80211], - [-22.65872, 64.80289], - [-22.67401, 64.805], - [-22.6745, 64.80565], - [-22.67331, 64.80562], - [-22.67432, 64.80681], - [-22.68084, 64.80739], - [-22.68172, 64.80561], - [-22.68578, 64.8047], - [-22.6856, 64.80393], - [-22.68741, 64.80385], - [-22.68811, 64.80323], - [-22.68957, 64.80353], - [-22.68851, 64.80452], - [-22.69056, 64.80484], - [-22.6901, 64.80585], - [-22.6889, 64.80582], - [-22.6894, 64.80647], - [-22.69117, 64.80665], - [-22.69097, 64.80793], - [-22.69644, 64.80757], - [-22.69714, 64.80694], - [-22.69917, 64.8074], - [-22.69803, 64.8089], - [-22.69922, 64.80893], - [-22.69846, 64.80994], - [-22.69727, 64.8099], - [-22.69714, 64.81067], - [-22.69595, 64.81063], - [-22.69587, 64.81114], - [-22.69343, 64.81133], - [-22.693584, 64.812643], - [-22.692488, 64.814257], - [-22.692035, 64.8169], - [-22.692316, 64.816977], - [-22.692694, 64.816957], - [-22.69302, 64.814787], - [-22.694736, 64.813026], - [-22.69568, 64.81229], - [-22.69768, 64.81107], - [-22.70189, 64.81106], - [-22.70453, 64.8096], - [-22.70277, 64.80929], - [-22.70205, 64.81004], - [-22.70146, 64.81002], - [-22.7017, 64.80849], - [-22.7029, 64.80853], - [-22.7036, 64.80791], - [-22.70844, 64.80766], - [-22.70891, 64.80665], - [-22.71262, 64.80599], - [-22.71244, 64.80522], - [-22.71322, 64.80541], - [-22.71607, 64.80507], - [-22.71691, 64.80355], - [-22.71777, 64.80384], - [-22.71866, 64.8077], - [-22.71985, 64.80774], - [-22.71998, 64.80697], - [-22.72433, 64.80608], - [-22.72443, 64.80352], - [-22.72537, 64.80329], - [-22.72577, 64.80458], - [-22.73205, 64.80284], - [-22.73502, 64.80305], - [-22.73494, 64.80356], - [-22.73977, 64.80344], - [-22.73989, 64.80268], - [-22.74109, 64.80271], - [-22.74117, 64.8022], - [-22.7448, 64.80205], - [-22.74472, 64.80256], - [-22.74895, 64.80244], - [-22.74886, 64.80294], - [-22.7513, 64.80275], - [-22.75106, 64.80428], - [-22.75224, 64.80431], - [-22.75233, 64.8038], - [-22.75596, 64.80365], - [-22.75629, 64.80161], - [-22.75509, 64.80158], - [-22.75579, 64.80096], - [-22.75758, 64.80101], - [-22.76135, 64.79995], - [-22.76127, 64.80047], - [-22.76897, 64.80121], - [-22.76913, 64.80019], - [-22.7667, 64.80037], - [-22.76452, 64.7989], - [-22.75846, 64.79924], - [-22.75428, 64.79899], - [-22.75266, 64.79791], - [-22.75386, 64.79796], - [-22.75456, 64.79733], - [-22.75577, 64.79724], - [-22.75585, 64.79673], - [-22.75706, 64.79677], - [-22.75673, 64.79496], - [-22.75268, 64.79395], - [-22.75087, 64.79403], - [-22.75095, 64.79352], - [-22.74976, 64.79348], - [-22.74928, 64.7927], - [-22.74689, 64.79263], - [-22.74697, 64.79212], - [-22.7429, 64.79124], - [-22.74298, 64.79073], - [-22.74178, 64.79069], - [-22.73934, 64.78909], - [-22.73972, 64.78858], - [-22.73738, 64.78813], - [-22.73194, 64.78836], - [-22.73262, 64.78788], - [-22.73142, 64.78783], - [-22.73098, 64.7868], - [-22.72923, 64.78649], - [-22.72932, 64.78597], - [-22.72529, 64.78484], - [-22.72537, 64.78433], - [-22.72302, 64.784], - [-22.7231, 64.78349], - [-22.71733, 64.78204], - [-22.71741, 64.78154], - [-22.7084, 64.78153], - [-22.70848, 64.78102], - [-22.7061, 64.78095], - [-22.70383, 64.77628], - [-22.70144, 64.77621], - [-22.69929, 64.77461], - [-22.69756, 64.77417], - [-22.69515, 64.77423], - [-22.69527, 64.77347], - [-22.6984, 64.77266], - [-22.70856, 64.77488], - [-22.70878, 64.77539], - [-22.71121, 64.77521], - [-22.71113, 64.77572], - [-22.7123, 64.77588], - [-22.7128, 64.77654], - [-22.71399, 64.77657], - [-22.71648, 64.77792], - [-22.7167, 64.77844], - [-22.71906, 64.77877], - [-22.71927, 64.77929], - [-22.72072, 64.77958], - [-22.72064, 64.78009], - [-22.72181, 64.78025], - [-22.72231, 64.78091], - [-22.72637, 64.7818], - [-22.72629, 64.78231], - [-22.73267, 64.78377], - [-22.7326, 64.78428], - [-22.73438, 64.78433], - [-22.7343, 64.78484], - [-22.73669, 64.78491], - [-22.73661, 64.78542], - [-22.73841, 64.78547], - [-22.73832, 64.78597], - [-22.74072, 64.78605], - [-22.74064, 64.78657], - [-22.74474, 64.78719], - [-22.74466, 64.7877], - [-22.74705, 64.78777], - [-22.74697, 64.78828], - [-22.76152, 64.79126], - [-22.76144, 64.79177], - [-22.793704, 64.794987], - [-22.82066, 64.79729], - [-22.82363, 64.7975], - [-22.82548, 64.79717], - [-22.8254, 64.79768], - [-22.8272, 64.79773], - [-22.82712, 64.79824], - [-22.83234, 64.79954], - [-22.84298, 64.80061], - [-22.84401, 64.800268], - [-22.846062, 64.800111], - [-22.84659, 64.80058], - [-22.86093, 64.80111], - [-22.86703, 64.80051], - [-22.86821, 64.80067], - [-22.86828, 64.80016], - [-22.87187, 64.80026], - [-22.87203, 64.79924], - [-22.87319, 64.79953], - [-22.87334, 64.79851], - [-22.87454, 64.79855], - [-22.87462, 64.79804], - [-22.87639, 64.79822], - [-22.88014, 64.79729], - [-22.89842, 64.79562], - [-22.89853, 64.79487], - [-22.90778, 64.79332], - [-22.9077, 64.79383], - [-22.91193, 64.79369], - [-22.91181, 64.79445], - [-22.91596, 64.79483], - [-22.91588, 64.79534], - [-22.91707, 64.79537], - [-22.91716, 64.79487], - [-22.91835, 64.79489], - [-22.91825, 64.79566], - [-22.91949, 64.79531], - [-22.92658, 64.79614], - [-22.92646, 64.79691], - [-22.92526, 64.79687], - [-22.92544, 64.79704], - [-22.93005, 64.79701], - [-22.93013, 64.7965], - [-22.93501, 64.79599], - [-22.94179, 64.797058], - [-22.941885, 64.797706], - [-22.943093, 64.79822], - [-22.945516, 64.799057], - [-22.9465, 64.79951], - [-22.947787, 64.800005], - [-22.94877, 64.80034], - [-22.95276, 64.80186], - [-22.953652, 64.802208], - [-22.95445, 64.80254], - [-22.955137, 64.802769], - [-22.95617, 64.8031], - [-22.958441, 64.803794], - [-22.96021, 64.80423], - [-22.961476, 64.804436], - [-22.963353, 64.804718], - [-22.96828, 64.805514], - [-22.973869, 64.806192], - [-22.976736, 64.806459], - [-22.979232, 64.806539], - [-22.985855, 64.80658], - [-22.990309, 64.806868], - [-22.992136, 64.806733], - [-22.99237, 64.80613], - [-22.996131, 64.805235], - [-22.997033, 64.804857], - [-22.997135, 64.804708], - [-22.997703, 64.804578], - [-22.997906, 64.804479], - [-22.998692, 64.804433], - [-22.999478, 64.804216], - [-23.00025, 64.803909], - [-23.000643, 64.803612], - [-23.000679, 64.803283], - [-23.000803, 64.80288], - [-23.001218, 64.802552], - [-23.001771, 64.802298], - [-23.002098, 64.801908], - [-23.003131, 64.801734], - [-23.005016, 64.801446], - [-23.007149, 64.800876], - [-23.008953, 64.80021], - [-23.010089, 64.799795], - [-23.011631, 64.799764], - [-23.012512, 64.799863], - [-23.013342, 64.799575], - [-23.015081, 64.799339], - [-23.016311, 64.79897], - [-23.017388, 64.798893], - [-23.018414, 64.798629], - [-23.019309, 64.798506], - [-23.020321, 64.798292], - [-23.021492, 64.797969], - [-23.02174, 64.797563], - [-23.022773, 64.797247], - [-23.023734, 64.796972], - [-23.024301, 64.796364], - [-23.024229, 64.795747], - [-23.025262, 64.795404], - [-23.02642, 64.79527], - [-23.027125, 64.795431], - [-23.0286, 64.79686], - [-23.03088, 64.797235], - [-23.033114, 64.797973], - [-23.034708, 64.798989], - [-23.034817, 64.799444], - [-23.038194, 64.800504], - [-23.040144, 64.800984], - [-23.042539, 64.801248], - [-23.049081, 64.802419], - [-23.051577, 64.802915], - [-23.055056, 64.803091], - [-23.058243, 64.803491], - [-23.063054, 64.803138], - [-23.065397, 64.803398], - [-23.067726, 64.803395], - [-23.071102, 64.803026], - [-23.074341, 64.802499], - [-23.0753, 64.802855], - [-23.076325, 64.802938], - [-23.077739, 64.802799], - [-23.078715, 64.802508], - [-23.080032, 64.802405], - [-23.08135, 64.802958], - [-23.084065, 64.803035], - [-23.086635, 64.802855], - [-23.089204, 64.802176], - [-23.089253, 64.803125], - [-23.090261, 64.80372], - [-23.091741, 64.804018], - [-23.092587, 64.803997], - [-23.093513, 64.803395], - [-23.094733, 64.80318], - [-23.095758, 64.803588], - [-23.097693, 64.80363], - [-23.099547, 64.80345], - [-23.102962, 64.802882], - [-23.105873, 64.802578], - [-23.109271, 64.802758], - [-23.11215, 64.803678], - [-23.114345, 64.804073], - [-23.117028, 64.804094], - [-23.118248, 64.803831], - [-23.119972, 64.804364], - [-23.121826, 64.804191], - [-23.123484, 64.804357], - [-23.123435, 64.804738], - [-23.12408, 64.8054], - [-23.12594, 64.805977], - [-23.127859, 64.806337], - [-23.130786, 64.806897], - [-23.13923, 64.80875], - [-23.14042, 64.80878], - [-23.14278, 64.80909], - [-23.158347, 64.811381], - [-23.159442, 64.811417], - [-23.162431, 64.811752], - [-23.164035, 64.811863], - [-23.167556, 64.812054], - [-23.17112, 64.811998], - [-23.173357, 64.81255], - [-23.174234, 64.812945], - [-23.20868, 64.81912], - [-23.22057, 64.82006], - [-23.2205, 64.82057], - [-23.22642, 64.82123], - [-23.22634, 64.82174], - [-23.22892, 64.82198], - [-23.2353, 64.82223], - [-23.23522, 64.82274], - [-23.259803, 64.826256], - [-23.270833, 64.826745], - [-23.2712, 64.826166], - [-23.271563, 64.825594], - [-23.273136, 64.825662], - [-23.274361, 64.826907], - [-23.284529, 64.827224], - [-23.296794, 64.82699], - [-23.300684, 64.825783], - [-23.301939, 64.82573], - [-23.303671, 64.826531], - [-23.306079, 64.826794], - [-23.306935, 64.826529], - [-23.309022, 64.827156], - [-23.312062, 64.826889], - [-23.318212, 64.82765], - [-23.319718, 64.827763], - [-23.320014, 64.82772], - [-23.321261, 64.827478], - [-23.321703, 64.827182], - [-23.322203, 64.827335], - [-23.325492, 64.828625], - [-23.330735, 64.828745], - [-23.333681, 64.82818], - [-23.333704, 64.827091], - [-23.335983, 64.826758], - [-23.335991, 64.825695], - [-23.337585, 64.825844], - [-23.337632, 64.827115], - [-23.342959, 64.827591], - [-23.346829, 64.82757], - [-23.350459, 64.826955], - [-23.352859, 64.826874], - [-23.357486, 64.826923], - [-23.361894, 64.826926], - [-23.367056, 64.826549], - [-23.373223, 64.825678], - [-23.376828, 64.824637], - [-23.378523, 64.823715], - [-23.379343, 64.823456], - [-23.379223, 64.823086], - [-23.378969, 64.822578], - [-23.378253, 64.821979], - [-23.378301, 64.821789], - [-23.378157, 64.821679], - [-23.378167, 64.821479], - [-23.378877, 64.821403], - [-23.379194, 64.82123], - [-23.379439, 64.820737], - [-23.379517, 64.820382], - [-23.379462, 64.820228], - [-23.379129, 64.820251], - [-23.378975, 64.820087], - [-23.378682, 64.819815], - [-23.378801, 64.81962], - [-23.378704, 64.81934], - [-23.37867, 64.818883], - [-23.379141, 64.818651], - [-23.379299, 64.818476], - [-23.379797, 64.818344], - [-23.380101, 64.818078], - [-23.38047, 64.817981], - [-23.380865, 64.817729], - [-23.38134, 64.817596], - [-23.381599, 64.817502], - [-23.38194, 64.817338], - [-23.383166, 64.816928], - [-23.383668, 64.816487], - [-23.383755, 64.816174], - [-23.384264, 64.8159], - [-23.384566, 64.815612], - [-23.385085, 64.815508], - [-23.385997, 64.815028], - [-23.386352, 64.814791], - [-23.386688, 64.814629], - [-23.387164, 64.814296], - [-23.38751, 64.81391], - [-23.387558, 64.813536], - [-23.387716, 64.813291], - [-23.387207, 64.813109], - [-23.386232, 64.812839], - [-23.385627, 64.812286], - [-23.385152, 64.811714], - [-23.384571, 64.811088], - [-23.385128, 64.810586], - [-23.38484, 64.810379], - [-23.384922, 64.809887], - [-23.38508, 64.809429], - [-23.384283, 64.808683], - [-23.383789, 64.808485], - [-23.383755, 64.808244], - [-23.383904, 64.807984], - [-23.383827, 64.807377], - [-23.38436, 64.807003], - [-23.384446, 64.806666], - [-23.384816, 64.806278], - [-23.385642, 64.806004], - [-23.38617, 64.80566], - [-23.386381, 64.805305], - [-23.387164, 64.80498], - [-23.387505, 64.804387], - [-23.387596, 64.804058], - [-23.387543, 64.80386], - [-23.388146, 64.803724], - [-23.388072, 64.802391], - [-23.389319, 64.801569], - [-23.390209, 64.801342], - [-23.39015, 64.800988], - [-23.390535, 64.799825], - [-23.391144, 64.799288], - [-23.391931, 64.799048], - [-23.392925, 64.798201], - [-23.3938, 64.798309], - [-23.394632, 64.797911], - [-23.395804, 64.797867], - [-23.396071, 64.797468], - [-23.396991, 64.797336], - [-23.399455, 64.796963], - [-23.400494, 64.796938], - [-23.400494, 64.796748], - [-23.401384, 64.796704], - [-23.402267, 64.796833], - [-23.402527, 64.796596], - [-23.402779, 64.796691], - [-23.402831, 64.796887], - [-23.403729, 64.796906], - [-23.4043, 64.796713], - [-23.405606, 64.796565], - [-23.406378, 64.796634], - [-23.407395, 64.796543], - [-23.407728, 64.796293], - [-23.409354, 64.795708], - [-23.41086, 64.795576], - [-23.41158, 64.795061], - [-23.41224, 64.795038], - [-23.412537, 64.794808], - [-23.413331, 64.794716], - [-23.414622, 64.794264], - [-23.414822, 64.794081], - [-23.415557, 64.793907], - [-23.415869, 64.79392], - [-23.41641, 64.793733], - [-23.416856, 64.793765], - [-23.417086, 64.793597], - [-23.417086, 64.793376], - [-23.417366, 64.793325], - [-23.417946, 64.793225], - [-23.419519, 64.792984], - [-23.422272, 64.792962], - [-23.422873, 64.792653], - [-23.423771, 64.792668], - [-23.423949, 64.792773], - [-23.424803, 64.792817], - [-23.424847, 64.792662], - [-23.425189, 64.792646], - [-23.425545, 64.792611], - [-23.426146, 64.792586], - [-23.427622, 64.792447], - [-23.427778, 64.792308], - [-23.427467, 64.792182], - [-23.427608, 64.792065], - [-23.428491, 64.792052], - [-23.428706, 64.791922], - [-23.429188, 64.791913], - [-23.43045, 64.792115], - [-23.430479, 64.79203], - [-23.430895, 64.7919], - [-23.431177, 64.791973], - [-23.431911, 64.791856], - [-23.432253, 64.791508], - [-23.432512, 64.791524], - [-23.432512, 64.791332], - [-23.433296, 64.791425], - [-23.435421, 64.791006], - [-23.437269, 64.790851], - [-23.439647, 64.79072], - [-23.440037, 64.790892], - [-23.43997, 64.791107], - [-23.440393, 64.791294], - [-23.440667, 64.791252], - [-23.440823, 64.791429], - [-23.442463, 64.79196], - [-23.444155, 64.792929], - [-23.447653, 64.793771], - [-23.450015, 64.79399], - [-23.452256, 64.793732], - [-23.456151, 64.794537], - [-23.457001, 64.795334], - [-23.460244, 64.795808], - [-23.460387, 64.796343], - [-23.463187, 64.796579], - [-23.466365, 64.796921], - [-23.470905, 64.798002], - [-23.475536, 64.799699], - [-23.478217, 64.800121], - [-23.48078, 64.800075], - [-23.483894, 64.80097], - [-23.486979, 64.802296], - [-23.488719, 64.803703], - [-23.492424, 64.803937], - [-23.495462, 64.804092], - [-23.508585, 64.804296], - [-23.51349, 64.804874], - [-23.520667, 64.804815], - [-23.532084, 64.805135], - [-23.536796, 64.805645], - [-23.549406, 64.804984], - [-23.557684, 64.804317], - [-23.567383, 64.804045], - [-23.576086, 64.802904], - [-23.584065, 64.802094], - [-23.59377, 64.800836], - [-23.599849, 64.797134], - [-23.60214, 64.79674], - [-23.602449, 64.795405], - [-23.60517, 64.79348], - [-23.60432, 64.792249], - [-23.606399, 64.791851], - [-23.607257, 64.792335], - [-23.608865, 64.79215], - [-23.612179, 64.790616], - [-23.614131, 64.790172], - [-23.615665, 64.790031], - [-23.617976, 64.789461], - [-23.619479, 64.788716], - [-23.621157, 64.787364], - [-23.620119, 64.785228], - [-23.624179, 64.780352], - [-23.627222, 64.77809], - [-23.628334, 64.776227], - [-23.625992, 64.774341], - [-23.625919, 64.773491], - [-23.623576, 64.772021], - [-23.622143, 64.770948], - [-23.621633, 64.770776], - [-23.621163, 64.770467], - [-23.620601, 64.770555], - [-23.619865, 64.770575], - [-23.619237, 64.770432], - [-23.618968, 64.771076], - [-23.618956, 64.771106], - [-23.620073, 64.771188], - [-23.62017, 64.771346], - [-23.618207, 64.771195], - [-23.618496, 64.770554], - [-23.617613, 64.770192], - [-23.616486, 64.770529], - [-23.616346, 64.770333], - [-23.617248, 64.770024], - [-23.617204, 64.769785], - [-23.616923, 64.769566], - [-23.616089, 64.769763], - [-23.615693, 64.769674], - [-23.616235, 64.769492], - [-23.616619, 64.769411], - [-23.616797, 64.769232], - [-23.617165, 64.769254], - [-23.617619, 64.769074], - [-23.618003, 64.768888], - [-23.617473, 64.768686], - [-23.617236, 64.768846], - [-23.616733, 64.769151], - [-23.616643, 64.769118], - [-23.616623, 64.769001], - [-23.616386, 64.768951], - [-23.615919, 64.768979], - [-23.615741, 64.768724], - [-23.616243, 64.768384], - [-23.616219, 64.768202], - [-23.61601, 64.768049], - [-23.61603, 64.767826], - [-23.616176, 64.767675], - [-23.616097, 64.767395], - [-23.616521, 64.767069], - [-23.617232, 64.767064], - [-23.618106, 64.76699], - [-23.618287, 64.76679], - [-23.618707, 64.766916], - [-23.619346, 64.766628], - [-23.619936, 64.766678], - [-23.620806, 64.766589], - [-23.620913, 64.766463], - [-23.620933, 64.766304], - [-23.620656, 64.766222], - [-23.620067, 64.766066], - [-23.620806, 64.765916], - [-23.62155, 64.765959], - [-23.622107, 64.765827], - [-23.621965, 64.765756], - [-23.621479, 64.765783], - [-23.621087, 64.765675], - [-23.620988, 64.765375], - [-23.621981, 64.764827], - [-23.623895, 64.764522], - [-23.624342, 64.764622], - [-23.624654, 64.764571], - [-23.624397, 64.764342], - [-23.624508, 64.76418], - [-23.625321, 64.764278], - [-23.62571, 64.764165], - [-23.625611, 64.763959], - [-23.625793, 64.763678], - [-23.626619, 64.763415], - [-23.627129, 64.763423], - [-23.62671, 64.763271], - [-23.626457, 64.763072], - [-23.626716, 64.76283], - [-23.62705, 64.762722], - [-23.62641, 64.762663], - [-23.626465, 64.762535], - [-23.627177, 64.762553], - [-23.626916, 64.762241], - [-23.62675, 64.762214], - [-23.626501, 64.762287], - [-23.626244, 64.762024], - [-23.62641, 64.761872], - [-23.626615, 64.761727], - [-23.626876, 64.761754], - [-23.627466, 64.762068], - [-23.627204, 64.762157], - [-23.62807, 64.762452], - [-23.628497, 64.762646], - [-23.628705, 64.762665], - [-23.628852, 64.76263], - [-23.628956, 64.762577], - [-23.62959, 64.762192], - [-23.630245, 64.761923], - [-23.63041, 64.761842], - [-23.630361, 64.761694], - [-23.63025, 64.76157], - [-23.630133, 64.761476], - [-23.630303, 64.761472], - [-23.630443, 64.761481], - [-23.630415, 64.761377], - [-23.630481, 64.761245], - [-23.630715, 64.761108], - [-23.630919, 64.761093], - [-23.631139, 64.760998], - [-23.631265, 64.76088], - [-23.63129, 64.760715], - [-23.631279, 64.760589], - [-23.631189, 64.760499], - [-23.631353, 64.760441], - [-23.631516, 64.760348], - [-23.631515, 64.760264], - [-23.6314, 64.760215], - [-23.631165, 64.760131], - [-23.631005, 64.760014], - [-23.631081, 64.75979], - [-23.631132, 64.759692], - [-23.631167, 64.759589], - [-23.631213, 64.75944], - [-23.631046, 64.759352], - [-23.630884, 64.759241], - [-23.630831, 64.759188], - [-23.631003, 64.759157], - [-23.631199, 64.759162], - [-23.631376, 64.75921], - [-23.631567, 64.759238], - [-23.631699, 64.759254], - [-23.631697, 64.759168], - [-23.631606, 64.75905], - [-23.631645, 64.758951], - [-23.631736, 64.758938], - [-23.631901, 64.758899], - [-23.631986, 64.758821], - [-23.631893, 64.758724], - [-23.631751, 64.758634], - [-23.63155, 64.758633], - [-23.631376, 64.75866], - [-23.631038, 64.758578], - [-23.631182, 64.758501], - [-23.63135, 64.758412], - [-23.63131, 64.758351], - [-23.631089, 64.75828], - [-23.63093, 64.758211], - [-23.630988, 64.758116], - [-23.631109, 64.758049], - [-23.631274, 64.758058], - [-23.631327, 64.757984], - [-23.631455, 64.757903], - [-23.631643, 64.75786], - [-23.631756, 64.7578], - [-23.631533, 64.757754], - [-23.631351, 64.757687], - [-23.631224, 64.757617], - [-23.631131, 64.757557], - [-23.631159, 64.757499], - [-23.631265, 64.757461], - [-23.631452, 64.757459], - [-23.631644, 64.757471], - [-23.631817, 64.757471], - [-23.632043, 64.757439], - [-23.632312, 64.757409], - [-23.632574, 64.757371], - [-23.632643, 64.757412], - [-23.632792, 64.757453], - [-23.63291, 64.757417], - [-23.632902, 64.757359], - [-23.632874, 64.757297], - [-23.632836, 64.757232], - [-23.632891, 64.75718], - [-23.633023, 64.757141], - [-23.633183, 64.757155], - [-23.633294, 64.757181], - [-23.633384, 64.757216], - [-23.633546, 64.757273], - [-23.633728, 64.757302], - [-23.633963, 64.757299], - [-23.634116, 64.757283], - [-23.634279, 64.757262], - [-23.634364, 64.757215], - [-23.634396, 64.757165], - [-23.634352, 64.757081], - [-23.634277, 64.757033], - [-23.63415, 64.756994], - [-23.634105, 64.756911], - [-23.634034, 64.756852], - [-23.633833, 64.756804], - [-23.633548, 64.756754], - [-23.633404, 64.756736], - [-23.633331, 64.756682], - [-23.633341, 64.756627], - [-23.633431, 64.756596], - [-23.633592, 64.756591], - [-23.633643, 64.756532], - [-23.633711, 64.75646], - [-23.633746, 64.756377], - [-23.633847, 64.756289], - [-23.633878, 64.756226], - [-23.633845, 64.756176], - [-23.633884, 64.756094], - [-23.633862, 64.756038], - [-23.633755, 64.755986], - [-23.633613, 64.75594], - [-23.633624, 64.75586], - [-23.633637, 64.755776], - [-23.633755, 64.75574], - [-23.633893, 64.755698], - [-23.633983, 64.755642], - [-23.634152, 64.755562], - [-23.63439, 64.755484], - [-23.634615, 64.755435], - [-23.634815, 64.755402], - [-23.635015, 64.755404], - [-23.635181, 64.755433], - [-23.635253, 64.755487], - [-23.635253, 64.755566], - [-23.635293, 64.755614], - [-23.635447, 64.755651], - [-23.635669, 64.755673], - [-23.635998, 64.755736], - [-23.636309, 64.755784], - [-23.636614, 64.755868], - [-23.636748, 64.75592], - [-23.636922, 64.755982], - [-23.637243, 64.755937], - [-23.637221, 64.755849], - [-23.637211, 64.755793], - [-23.637202, 64.755708], - [-23.637118, 64.755585], - [-23.636949, 64.755438], - [-23.636759, 64.755302], - [-23.636535, 64.755198], - [-23.636404, 64.755114], - [-23.636411, 64.755055], - [-23.636403, 64.755008], - [-23.636443, 64.754955], - [-23.636397, 64.754889], - [-23.636185, 64.754793], - [-23.635931, 64.75468], - [-23.635801, 64.754598], - [-23.635549, 64.754527], - [-23.635426, 64.754426], - [-23.635456, 64.754375], - [-23.635573, 64.754371], - [-23.635765, 64.754374], - [-23.635946, 64.754414], - [-23.636207, 64.754411], - [-23.636352, 64.754448], - [-23.636475, 64.754507], - [-23.636534, 64.754558], - [-23.636633, 64.754608], - [-23.636813, 64.754627], - [-23.636982, 64.754643], - [-23.63708, 64.754689], - [-23.637202, 64.754725], - [-23.637454, 64.754834], - [-23.63761, 64.75483], - [-23.637776, 64.754808], - [-23.637923, 64.754741], - [-23.638013, 64.754691], - [-23.638014, 64.754626], - [-23.637961, 64.754563], - [-23.637815, 64.75447], - [-23.637657, 64.754355], - [-23.637632, 64.754276], - [-23.63768, 64.754205], - [-23.637811, 64.754177], - [-23.637959, 64.7542], - [-23.638093, 64.754203], - [-23.638242, 64.754242], - [-23.638455, 64.754293], - [-23.638567, 64.754357], - [-23.638736, 64.75435], - [-23.638848, 64.754324], - [-23.638929, 64.754264], - [-23.638998, 64.754178], - [-23.63899, 64.754093], - [-23.639052, 64.754032], - [-23.639149, 64.754022], - [-23.639308, 64.754053], - [-23.639406, 64.754094], - [-23.63946, 64.754137], - [-23.639547, 64.754163], - [-23.639718, 64.754115], - [-23.63982, 64.754047], - [-23.639814, 64.753994], - [-23.639819, 64.75391], - [-23.639799, 64.75383], - [-23.639831, 64.753778], - [-23.639929, 64.753771], - [-23.640113, 64.753871], - [-23.640178, 64.753961], - [-23.640331, 64.753925], - [-23.640512, 64.753851], - [-23.640634, 64.753775], - [-23.640661, 64.753716], - [-23.640455, 64.753715], - [-23.640334, 64.75373], - [-23.640214, 64.753675], - [-23.640175, 64.753595], - [-23.640147, 64.753512], - [-23.640163, 64.753436], - [-23.64031, 64.753361], - [-23.640502, 64.753287], - [-23.64065, 64.753254], - [-23.640624, 64.753184], - [-23.640586, 64.753102], - [-23.640594, 64.753046], - [-23.640641, 64.752954], - [-23.640762, 64.752886], - [-23.640906, 64.752873], - [-23.640973, 64.752913], - [-23.641142, 64.752955], - [-23.641279, 64.752985], - [-23.641449, 64.752989], - [-23.641614, 64.753042], - [-23.641719, 64.753092], - [-23.641895, 64.753078], - [-23.641909, 64.753027], - [-23.641852, 64.752981], - [-23.641841, 64.752924], - [-23.64184, 64.752866], - [-23.641867, 64.752791], - [-23.64185, 64.752712], - [-23.641889, 64.752616], - [-23.642007, 64.75254], - [-23.64214, 64.752564], - [-23.6423, 64.75257], - [-23.642497, 64.75259], - [-23.64264, 64.752641], - [-23.642779, 64.75266], - [-23.642906, 64.75264], - [-23.64288, 64.75258], - [-23.642764, 64.752526], - [-23.642702, 64.752447], - [-23.642662, 64.752381], - [-23.642669, 64.752329], - [-23.642594, 64.752251], - [-23.642556, 64.752171], - [-23.642523, 64.752103], - [-23.642595, 64.752056], - [-23.642735, 64.752051], - [-23.64286, 64.752106], - [-23.642972, 64.752138], - [-23.643128, 64.752123], - [-23.643299, 64.752132], - [-23.643346, 64.752183], - [-23.64324, 64.752265], - [-23.643171, 64.752329], - [-23.643061, 64.752414], - [-23.643013, 64.752504], - [-23.643202, 64.752541], - [-23.643361, 64.752543], - [-23.64355, 64.752495], - [-23.643706, 64.75243], - [-23.643821, 64.752377], - [-23.643868, 64.752321], - [-23.643966, 64.752275], - [-23.644119, 64.752217], - [-23.644175, 64.752183], - [-23.644226, 64.752128], - [-23.644215, 64.752079], - [-23.644262, 64.752021], - [-23.644275, 64.751912], - [-23.644263, 64.751839], - [-23.644193, 64.75179], - [-23.644101, 64.75173], - [-23.644009, 64.751669], - [-23.644162, 64.751596], - [-23.644235, 64.751506], - [-23.644244, 64.751418], - [-23.644419, 64.75128], - [-23.644636, 64.751138], - [-23.644781, 64.751018], - [-23.644978, 64.750878], - [-23.645096, 64.750736], - [-23.64514, 64.750623], - [-23.645139, 64.750493], - [-23.645093, 64.750352], - [-23.644942, 64.75026], - [-23.644728, 64.75017], - [-23.644577, 64.750101], - [-23.644315, 64.750046], - [-23.644085, 64.749983], - [-23.643664, 64.749825], - [-23.643477, 64.749747], - [-23.643256, 64.74968], - [-23.643126, 64.749584], - [-23.643069, 64.749538], - [-23.642904, 64.74948], - [-23.642761, 64.749427], - [-23.642656, 64.74934], - [-23.642618, 64.749247], - [-23.642526, 64.74911], - [-23.642398, 64.748933], - [-23.642237, 64.748758], - [-23.642089, 64.748609], - [-23.641695, 64.748414], - [-23.641413, 64.748232], - [-23.641119, 64.748108], - [-23.640656, 64.748017], - [-23.640401, 64.747969], - [-23.640197, 64.747926], - [-23.640062, 64.747878], - [-23.640018, 64.747808], - [-23.640063, 64.747652], - [-23.640057, 64.747507], - [-23.639937, 64.747422], - [-23.639849, 64.747327], - [-23.639832, 64.747226], - [-23.639812, 64.74708], - [-23.639795, 64.746979], - [-23.639703, 64.746887], - [-23.639763, 64.74676], - [-23.639796, 64.746639], - [-23.639768, 64.746503], - [-23.639726, 64.746391], - [-23.639752, 64.746305], - [-23.639672, 64.746227], - [-23.63958, 64.746144], - [-23.639517, 64.746039], - [-23.639489, 64.74598], - [-23.639349, 64.74594], - [-23.639196, 64.745892], - [-23.639168, 64.745844], - [-23.639168, 64.74578], - [-23.639112, 64.745711], - [-23.638977, 64.745635], - [-23.638702, 64.745595], - [-23.638419, 64.745604], - [-23.638029, 64.745618], - [-23.637803, 64.745599], - [-23.637729, 64.745483], - [-23.637592, 64.745363], - [-23.637618, 64.745284], - [-23.637426, 64.745217], - [-23.637259, 64.745152], - [-23.637238, 64.745048], - [-23.637246, 64.744896], - [-23.637287, 64.744805], - [-23.637398, 64.744695], - [-23.637418, 64.744612], - [-23.637302, 64.744502], - [-23.637016, 64.744451], - [-23.636896, 64.74443], - [-23.636935, 64.744379], - [-23.636994, 64.744303], - [-23.637133, 64.744221], - [-23.637339, 64.74419], - [-23.637487, 64.744203], - [-23.637708, 64.744229], - [-23.637774, 64.744177], - [-23.637719, 64.744104], - [-23.637506, 64.744017], - [-23.637482, 64.743966], - [-23.637581, 64.743951], - [-23.637832, 64.743949], - [-23.637977, 64.743959], - [-23.638139, 64.743976], - [-23.638238, 64.743995], - [-23.638388, 64.743926], - [-23.638382, 64.743866], - [-23.638469, 64.743796], - [-23.638486, 64.743733], - [-23.638476, 64.743665], - [-23.638366, 64.743606], - [-23.638266, 64.743589], - [-23.638214, 64.743537], - [-23.638222, 64.743495], - [-23.63838, 64.743435], - [-23.638591, 64.743439], - [-23.638807, 64.743388], - [-23.638607, 64.743341], - [-23.63839, 64.743263], - [-23.638246, 64.74319], - [-23.637781, 64.742942], - [-23.637586, 64.742808], - [-23.637524, 64.742685], - [-23.63758, 64.742524], - [-23.637592, 64.7423], - [-23.637763, 64.742168], - [-23.63801, 64.742018], - [-23.6381, 64.741938], - [-23.638383, 64.741796], - [-23.638507, 64.741659], - [-23.638533, 64.74155], - [-23.639046, 64.741149], - [-23.639252, 64.740982], - [-23.639475, 64.740844], - [-23.639564, 64.740715], - [-23.639778, 64.740673], - [-23.639917, 64.74058], - [-23.639955, 64.740465], - [-23.640148, 64.740371], - [-23.640297, 64.740311], - [-23.640524, 64.740252], - [-23.640751, 64.740234], - [-23.640874, 64.740196], - [-23.640913, 64.740148], - [-23.640928, 64.740109], - [-23.64076, 64.740035], - [-23.640696, 64.740008], - [-23.640671, 64.73997], - [-23.640774, 64.739926], - [-23.640933, 64.739926], - [-23.641051, 64.739973], - [-23.641149, 64.740026], - [-23.641244, 64.740041], - [-23.641357, 64.740007], - [-23.641349, 64.739948], - [-23.641367, 64.739879], - [-23.641485, 64.739816], - [-23.641654, 64.739778], - [-23.64176, 64.739719], - [-23.641802, 64.73961], - [-23.641818, 64.739586], - [-23.641807, 64.739538], - [-23.641778, 64.739498], - [-23.641907, 64.739493], - [-23.64204, 64.739501], - [-23.64212, 64.73954], - [-23.642127, 64.739599], - [-23.642077, 64.739728], - [-23.642221, 64.739748], - [-23.644376, 64.739564], - [-23.645225, 64.738949], - [-23.646834, 64.738636], - [-23.64747, 64.73858], - [-23.648189, 64.738411], - [-23.648213, 64.738255], - [-23.64889, 64.738184], - [-23.649154, 64.73834], - [-23.649208, 64.738624], - [-23.64949, 64.738562], - [-23.649424, 64.738475], - [-23.64952, 64.738409], - [-23.649886, 64.738306], - [-23.650491, 64.738526], - [-23.650581, 64.738652], - [-23.650887, 64.738665], - [-23.650791, 64.738475], - [-23.651195, 64.73832], - [-23.651563, 64.738375], - [-23.65182, 64.7383], - [-23.652211, 64.738307], - [-23.652333, 64.738467], - [-23.65402, 64.7384], - [-23.653711, 64.738066], - [-23.653857, 64.737994], - [-23.653658, 64.737814], - [-23.653909, 64.737702], - [-23.654814, 64.738118], - [-23.655199, 64.738469], - [-23.656349, 64.738601], - [-23.656717, 64.738547], - [-23.657015, 64.738616], - [-23.657791, 64.738522], - [-23.658917, 64.738442], - [-23.658806, 64.738215], - [-23.659063, 64.73815], - [-23.659378, 64.738233], - [-23.659548, 64.738377], - [-23.659635, 64.738519], - [-23.659834, 64.738561], - [-23.660131, 64.738467], - [-23.660534, 64.738529], - [-23.660417, 64.738664], - [-23.661001, 64.738898], - [-23.660983, 64.738992], - [-23.66162, 64.739062], - [-23.66176, 64.738962], - [-23.661923, 64.73908], - [-23.662303, 64.739124], - [-23.662314, 64.73901], - [-23.662834, 64.738903], - [-23.663826, 64.73897], - [-23.664474, 64.739139], - [-23.664375, 64.739329], - [-23.664736, 64.739386], - [-23.665373, 64.739306], - [-23.665373, 64.739169], - [-23.665513, 64.739012], - [-23.6657, 64.738972], - [-23.666056, 64.739144], - [-23.667538, 64.739162], - [-23.667614, 64.738955], - [-23.667731, 64.73887], - [-23.668081, 64.738908], - [-23.668268, 64.738977], - [-23.668466, 64.738878], - [-23.668711, 64.738972], - [-23.668402, 64.739306], - [-23.668845, 64.739518], - [-23.668717, 64.73964], - [-23.669307, 64.739702], - [-23.670509, 64.739274], - [-23.671484, 64.739565], - [-23.671733, 64.739549], - [-23.671893, 64.739488], - [-23.672584, 64.739594], - [-23.673083, 64.739423], - [-23.673243, 64.739474], - [-23.673203, 64.739649], - [-23.673669, 64.740019], - [-23.674545, 64.740033], - [-23.674931, 64.740253], - [-23.675148, 64.74063], - [-23.675622, 64.740746], - [-23.676257, 64.740681], - [-23.676442, 64.74087], - [-23.67776, 64.74111], - [-23.679167, 64.741017], - [-23.680107, 64.741299], - [-23.68157, 64.741305], - [-23.682165, 64.741089], - [-23.6828, 64.741281], - [-23.684303, 64.741398], - [-23.685629, 64.741789], - [-23.687421, 64.741991], - [-23.687614, 64.741851], - [-23.688329, 64.741806], - [-23.689272, 64.742637], - [-23.691896, 64.743109], - [-23.695133, 64.742626], - [-23.696025, 64.742431], - [-23.696446, 64.742266], - [-23.697074, 64.742036], - [-23.697816, 64.741946], - [-23.698485, 64.741996], - [-23.699325, 64.742151], - [-23.699794, 64.742149], - [-23.700142, 64.742089], - [-23.700108, 64.741986], - [-23.700403, 64.74193], - [-23.700611, 64.742042], - [-23.700702, 64.742176], - [-23.701678, 64.74239], - [-23.7019, 64.742536], - [-23.702232, 64.742587], - [-23.702372, 64.742523], - [-23.702485, 64.742361], - [-23.702673, 64.74215], - [-23.702996, 64.742063], - [-23.703001, 64.741825], - [-23.702994, 64.741712], - [-23.703246, 64.741524], - [-23.703363, 64.741491], - [-23.703578, 64.741521], - [-23.703738, 64.741488], - [-23.703646, 64.741416], - [-23.703448, 64.741336], - [-23.703707, 64.741223], - [-23.703896, 64.741198], - [-23.704261, 64.741297], - [-23.704511, 64.741344], - [-23.704566, 64.74141], - [-23.704213, 64.741501], - [-23.704068, 64.741583], - [-23.703697, 64.741897], - [-23.703773, 64.741983], - [-23.704654, 64.742018], - [-23.705327, 64.742015], - [-23.706291, 64.741977], - [-23.706795, 64.741836], - [-23.707081, 64.741644], - [-23.708308, 64.741471], - [-23.709013, 64.741438], - [-23.709245, 64.741287], - [-23.709419, 64.741168], - [-23.70967, 64.741188], - [-23.709754, 64.741175], - [-23.709542, 64.740968], - [-23.709707, 64.740778], - [-23.710209, 64.741005], - [-23.710545, 64.741], - [-23.711466, 64.740759], - [-23.711786, 64.740632], - [-23.712401, 64.740717], - [-23.712865, 64.740706], - [-23.712872, 64.740702], - [-23.713597, 64.740553], - [-23.714546, 64.7403], - [-23.715367, 64.740265], - [-23.716159, 64.740296], - [-23.716527, 64.740318], - [-23.716686, 64.740287], - [-23.716531, 64.74018], - [-23.716638, 64.740116], - [-23.717174, 64.74006], - [-23.717525, 64.739967], - [-23.717493, 64.739883], - [-23.71744, 64.739778], - [-23.717614, 64.739735], - [-23.717889, 64.739737], - [-23.71786, 64.739543], - [-23.717606, 64.739311], - [-23.717416, 64.739112], - [-23.717609, 64.73903], - [-23.718024, 64.73891], - [-23.718247, 64.738997], - [-23.718165, 64.739106], - [-23.718044, 64.739178], - [-23.718126, 64.739281], - [-23.718367, 64.739298], - [-23.718459, 64.739256], - [-23.718483, 64.739141], - [-23.718628, 64.739042], - [-23.719078, 64.738902], - [-23.719537, 64.738898], - [-23.719679, 64.738966], - [-23.719687, 64.739234], - [-23.720305, 64.739837], - [-23.720464, 64.739921], - [-23.720696, 64.73988], - [-23.720997, 64.739827], - [-23.721304, 64.73988], - [-23.721475, 64.73986], - [-23.721516, 64.739757], - [-23.72179, 64.739725], - [-23.722063, 64.739775], - [-23.722165, 64.739851], - [-23.722633, 64.739786], - [-23.723396, 64.73977], - [-23.723585, 64.739739], - [-23.723797, 64.739464], - [-23.724, 64.73933], - [-23.724121, 64.739161], - [-23.724184, 64.739007], - [-23.724135, 64.738827], - [-23.724271, 64.738745], - [-23.724493, 64.738875], - [-23.724556, 64.739135], - [-23.724382, 64.739349], - [-23.724222, 64.739487], - [-23.724242, 64.739631], - [-23.724817, 64.739914], - [-23.724942, 64.739984], - [-23.725164, 64.740009], - [-23.725367, 64.739984], - [-23.725285, 64.739817], - [-23.725421, 64.739671], - [-23.725619, 64.739541], - [-23.725952, 64.739524], - [-23.726085, 64.739628], - [-23.726984, 64.739492], - [-23.727351, 64.73936], - [-23.727684, 64.739196], - [-23.727985, 64.739181], - [-23.728306, 64.739266], - [-23.728552, 64.739277], - [-23.728818, 64.739175], - [-23.728969, 64.739064], - [-23.729338, 64.739088], - [-23.729864, 64.739044], - [-23.730082, 64.738922], - [-23.730793, 64.738869], - [-23.731135, 64.738819], - [-23.731319, 64.738703], - [-23.731468, 64.738682], - [-23.731599, 64.738752], - [-23.731743, 64.738741], - [-23.731774, 64.738666], - [-23.731674, 64.73855], - [-23.731739, 64.738451], - [-23.731989, 64.738435], - [-23.73218, 64.738515], - [-23.73244, 64.738485], - [-23.732704, 64.738342], - [-23.733039, 64.738456], - [-23.733182, 64.738453], - [-23.73321, 64.738339], - [-23.733155, 64.738147], - [-23.733414, 64.737984], - [-23.733688, 64.737998], - [-23.734139, 64.738182], - [-23.734528, 64.73817], - [-23.734692, 64.738086], - [-23.734706, 64.737934], - [-23.734853, 64.737857], - [-23.734938, 64.73787], - [-23.735075, 64.737972], - [-23.735166, 64.737897], - [-23.735272, 64.737864], - [-23.735371, 64.737895], - [-23.735487, 64.737821], - [-23.735379, 64.737698], - [-23.735498, 64.737304], - [-23.735376, 64.73705], - [-23.735157, 64.736899], - [-23.735142, 64.736741], - [-23.735444, 64.7367], - [-23.735881, 64.736794], - [-23.736312, 64.736913], - [-23.736633, 64.736922], - [-23.736906, 64.736858], - [-23.737383, 64.736847], - [-23.738983, 64.73736], - [-23.739205, 64.737333], - [-23.739475, 64.737056], - [-23.740291, 64.736747], - [-23.742259, 64.736275], - [-23.74386, 64.736077], - [-23.745255, 64.736151], - [-23.747081, 64.736366], - [-23.74957, 64.736497], - [-23.750811, 64.736662], - [-23.752135, 64.736848], - [-23.753246, 64.736922], - [-23.753691, 64.736852], - [-23.75472, 64.73683], - [-23.756957, 64.736761], - [-23.758609, 64.736753], - [-23.760622, 64.736563], - [-23.762697, 64.736184], - [-23.764659, 64.735732], - [-23.765441, 64.735591], - [-23.766557, 64.735556], - [-23.767542, 64.735568], - [-23.768612, 64.735586], - [-23.769098, 64.735634], - [-23.769403, 64.735603], - [-23.769475, 64.735473], - [-23.769833, 64.73539], - [-23.770287, 64.735452], - [-23.770598, 64.73553], - [-23.770997, 64.735487], - [-23.771364, 64.73549], - [-23.771697, 64.735502], - [-23.771882, 64.73546], - [-23.771983, 64.735296], - [-23.772127, 64.735118], - [-23.77249, 64.734998], - [-23.773065, 64.734879], - [-23.773524, 64.734817], - [-23.773722, 64.734846], - [-23.773944, 64.734815], - [-23.77407, 64.734722], - [-23.774308, 64.734687], - [-23.77464, 64.734751], - [-23.77493, 64.734881], - [-23.775234, 64.734986], - [-23.775708, 64.735028], - [-23.775998, 64.735077], - [-23.776268, 64.735038], - [-23.776389, 64.734963], - [-23.776302, 64.734848], - [-23.775969, 64.734828], - [-23.775582, 64.734844], - [-23.775311, 64.734805], - [-23.775423, 64.734642], - [-23.775582, 64.734555], - [-23.775915, 64.734564], - [-23.776167, 64.734597], - [-23.776342, 64.734489], - [-23.776597, 64.734448], - [-23.776877, 64.734263], - [-23.777051, 64.73411], - [-23.77702, 64.734029], - [-23.777094, 64.733966], - [-23.777351, 64.734], - [-23.777529, 64.734057], - [-23.777604, 64.734174], - [-23.777699, 64.734264], - [-23.777822, 64.734309], - [-23.777928, 64.734253], - [-23.777853, 64.734162], - [-23.777658, 64.734003], - [-23.777641, 64.733936], - [-23.777809, 64.73392], - [-23.777877, 64.73386], - [-23.77773, 64.733784], - [-23.777395, 64.733728], - [-23.777136, 64.733614], - [-23.777123, 64.733432], - [-23.777235, 64.733377], - [-23.777457, 64.733435], - [-23.777525, 64.733388], - [-23.777457, 64.733225], - [-23.777718, 64.733198], - [-23.777848, 64.733314], - [-23.778056, 64.733396], - [-23.77824, 64.733367], - [-23.778269, 64.733254], - [-23.778443, 64.733153], - [-23.778737, 64.733128], - [-23.779206, 64.733035], - [-23.779076, 64.732874], - [-23.779225, 64.732703], - [-23.779723, 64.732699], - [-23.780549, 64.733095], - [-23.780854, 64.733283], - [-23.78082, 64.733375], - [-23.78082, 64.733507], - [-23.781027, 64.733503], - [-23.781433, 64.733439], - [-23.781288, 64.733281], - [-23.781583, 64.733243], - [-23.781457, 64.733161], - [-23.781148, 64.733142], - [-23.78081, 64.733105], - [-23.78067, 64.732969], - [-23.780781, 64.732901], - [-23.781047, 64.73292], - [-23.78153, 64.732986], - [-23.781438, 64.732895], - [-23.78111, 64.732847], - [-23.780738, 64.732767], - [-23.780438, 64.732639], - [-23.780404, 64.732513], - [-23.780559, 64.732486], - [-23.780747, 64.732486], - [-23.780945, 64.732412], - [-23.780887, 64.732301], - [-23.780781, 64.732192], - [-23.780989, 64.732132], - [-23.781259, 64.732146], - [-23.781564, 64.732119], - [-23.78184, 64.731971], - [-23.782177, 64.73195], - [-23.782627, 64.731992], - [-23.783066, 64.732117], - [-23.783401, 64.732083], - [-23.783637, 64.731948], - [-23.783958, 64.731847], - [-23.784208, 64.731857], - [-23.784283, 64.731793], - [-23.784273, 64.731706], - [-23.784471, 64.731697], - [-23.784601, 64.731774], - [-23.78472, 64.731837], - [-23.784857, 64.731818], - [-23.785065, 64.731719], - [-23.785093, 64.731569], - [-23.785004, 64.731433], - [-23.784744, 64.731351], - [-23.784836, 64.731207], - [-23.785038, 64.731138], - [-23.785236, 64.731198], - [-23.785509, 64.731223], - [-23.785489, 64.73115], - [-23.785229, 64.731028], - [-23.785103, 64.73088], - [-23.785134, 64.730721], - [-23.785235, 64.730511], - [-23.785533, 64.73053], - [-23.785679, 64.730622], - [-23.785765, 64.730696], - [-23.785876, 64.73081], - [-23.785804, 64.730894], - [-23.785673, 64.730968], - [-23.78592, 64.731051], - [-23.786263, 64.731045], - [-23.786466, 64.731004], - [-23.786577, 64.730909], - [-23.786359, 64.730781], - [-23.786181, 64.73061], - [-23.786099, 64.730455], - [-23.786273, 64.730397], - [-23.786152, 64.730162], - [-23.785978, 64.729886], - [-23.786224, 64.729751], - [-23.786543, 64.729811], - [-23.786794, 64.729991], - [-23.786794, 64.730098], - [-23.787108, 64.730251], - [-23.787335, 64.730282], - [-23.78748, 64.730356], - [-23.787292, 64.730442], - [-23.787495, 64.730515], - [-23.788311, 64.730509], - [-23.788456, 64.730434], - [-23.788485, 64.730346], - [-23.788925, 64.730325], - [-23.788983, 64.730416], - [-23.789084, 64.730533], - [-23.789896, 64.730504], - [-23.790288, 64.730344], - [-23.791295, 64.730133], - [-23.791636, 64.729904], - [-23.791935, 64.729669], - [-23.7918, 64.729547], - [-23.791896, 64.729403], - [-23.791805, 64.729178], - [-23.791611, 64.729094], - [-23.791495, 64.729001], - [-23.791645, 64.728838], - [-23.791814, 64.728819], - [-23.791868, 64.728867], - [-23.791964, 64.728848], - [-23.791955, 64.728774], - [-23.792099, 64.72872], - [-23.792409, 64.7287], - [-23.792655, 64.728683], - [-23.792544, 64.728605], - [-23.792413, 64.728549], - [-23.792104, 64.728535], - [-23.79195, 64.728417], - [-23.791727, 64.72843], - [-23.791558, 64.72846], - [-23.791336, 64.728415], - [-23.791466, 64.728256], - [-23.792423, 64.728246], - [-23.792703, 64.728128], - [-23.792776, 64.727969], - [-23.793119, 64.72785], - [-23.79324, 64.72771], - [-23.793191, 64.727561], - [-23.793597, 64.72739], - [-23.794047, 64.727176], - [-23.794375, 64.727248], - [-23.794534, 64.727196], - [-23.794733, 64.727149], - [-23.79496, 64.727227], - [-23.794805, 64.72738], - [-23.794433, 64.727377], - [-23.794158, 64.727417], - [-23.794201, 64.727483], - [-23.794549, 64.727497], - [-23.79496, 64.727508], - [-23.795704, 64.727588], - [-23.79625, 64.727644], - [-23.796641, 64.727584], - [-23.7968, 64.727404], - [-23.797023, 64.727375], - [-23.797052, 64.727444], - [-23.796877, 64.727653], - [-23.796596, 64.727765], - [-23.7965, 64.727842], - [-23.796945, 64.727828], - [-23.797685, 64.727745], - [-23.798714, 64.727327], - [-23.798513, 64.72725], - [-23.798328, 64.727048], - [-23.797761, 64.726843], - [-23.79736, 64.726583], - [-23.797358, 64.726499], - [-23.797737, 64.726315], - [-23.797775, 64.72619], - [-23.798044, 64.726179], - [-23.798522, 64.72636], - [-23.798775, 64.726363], - [-23.79872, 64.726232], - [-23.798085, 64.725967], - [-23.798136, 64.725797], - [-23.799048, 64.725876], - [-23.79941, 64.725812], - [-23.799684, 64.725867], - [-23.79995, 64.72585], - [-23.800333, 64.725969], - [-23.80056, 64.725928], - [-23.800647, 64.725762], - [-23.800873, 64.725669], - [-23.801295, 64.72566], - [-23.801214, 64.725894], - [-23.800797, 64.726235], - [-23.800401, 64.72669], - [-23.799914, 64.727701], - [-23.800151, 64.72778], - [-23.800761, 64.727881], - [-23.801535, 64.727634], - [-23.801507, 64.727478], - [-23.80189, 64.727352], - [-23.802723, 64.727355], - [-23.803351, 64.727614], - [-23.803468, 64.727748], - [-23.803656, 64.727844], - [-23.80379, 64.727983], - [-23.807754, 64.728601], - [-23.80931, 64.728985], - [-23.810383, 64.729097], - [-23.811214, 64.729058], - [-23.811752, 64.728867], - [-23.812436, 64.728351], - [-23.812565, 64.72836], - [-23.812696, 64.728466], - [-23.812921, 64.728497], - [-23.813092, 64.728438], - [-23.813338, 64.728278], - [-23.813563, 64.728281], - [-23.813522, 64.728395], - [-23.813317, 64.728538], - [-23.813358, 64.728628], - [-23.813659, 64.728678], - [-23.813884, 64.728605], - [-23.813966, 64.728468], - [-23.814171, 64.728389], - [-23.814274, 64.728465], - [-23.814233, 64.728573], - [-23.813925, 64.728716], - [-23.813905, 64.728864], - [-23.814568, 64.729083], - [-23.814875, 64.729049], - [-23.815285, 64.729125], - [-23.815531, 64.729329], - [-23.815804, 64.729329], - [-23.816221, 64.72921], - [-23.816535, 64.729127], - [-23.816692, 64.729248], - [-23.815695, 64.729557], - [-23.815646, 64.729907], - [-23.814785, 64.73018], - [-23.814574, 64.73052], - [-23.814766, 64.730913], - [-23.815463, 64.731222], - [-23.815924, 64.73128], - [-23.816952, 64.731093], - [-23.817348, 64.730894], - [-23.817974, 64.730866], - [-23.818373, 64.730868], - [-23.818592, 64.730979], - [-23.81836, 64.731081], - [-23.818086, 64.731174], - [-23.817717, 64.731218], - [-23.817533, 64.731335], - [-23.817437, 64.731431], - [-23.81756, 64.731483], - [-23.81795, 64.731431], - [-23.818237, 64.731355], - [-23.818496, 64.73123], - [-23.818858, 64.731145], - [-23.819166, 64.731166], - [-23.819307, 64.731271], - [-23.819241, 64.731358], - [-23.818995, 64.731463], - [-23.818401, 64.731518], - [-23.818209, 64.7316], - [-23.818168, 64.731763], - [-23.818127, 64.73188], - [-23.81771, 64.731828], - [-23.817663, 64.732178], - [-23.817881, 64.732802], - [-23.818373, 64.733248], - [-23.819132, 64.733505], - [-23.819603, 64.733986], - [-23.819801, 64.734301], - [-23.819364, 64.734537], - [-23.818893, 64.734683], - [-23.819275, 64.735178], - [-23.820143, 64.735543], - [-23.821017, 64.735562], - [-23.821612, 64.735307], - [-23.822213, 64.735103], - [-23.823108, 64.73503], - [-23.824345, 64.73503], - [-23.824789, 64.735103], - [-23.825242, 64.735036], - [-23.825138, 64.734837], - [-23.825213, 64.73477], - [-23.825397, 64.734872], - [-23.825582, 64.734905], - [-23.825841, 64.734887], - [-23.826299, 64.734957], - [-23.826443, 64.735059], - [-23.826696, 64.735161], - [-23.826537, 64.735283], - [-23.826745, 64.735312], - [-23.826942, 64.735249], - [-23.827167, 64.735214], - [-23.827311, 64.735284], - [-23.827502, 64.735217], - [-23.827711, 64.735116], - [-23.82817, 64.73518], - [-23.828504, 64.735235], - [-23.828417, 64.73532], - [-23.828194, 64.735341], - [-23.828281, 64.73547], - [-23.828518, 64.73557], - [-23.828537, 64.735716], - [-23.828406, 64.735917], - [-23.827929, 64.735986], - [-23.827663, 64.736048], - [-23.827607, 64.736152], - [-23.828218, 64.736609], - [-23.831373, 64.737019], - [-23.835684, 64.737574], - [-23.837468, 64.738157], - [-23.838416, 64.73864], - [-23.83931, 64.738812], - [-23.841239, 64.739192], - [-23.8442, 64.73955], - [-23.853311, 64.740633], - [-23.855524, 64.741209], - [-23.85693, 64.742015], - [-23.862207, 64.744155], - [-23.866436, 64.744325], - [-23.866887, 64.743908], - [-23.8678, 64.743711], - [-23.867621, 64.743402], - [-23.869174, 64.742911], - [-23.871608, 64.743313], - [-23.872049, 64.743143], - [-23.872836, 64.74325], - [-23.873896, 64.743796], - [-23.873077, 64.744387], - [-23.874106, 64.744683], - [-23.873917, 64.745144], - [-23.872816, 64.745546], - [-23.87229, 64.746218], - [-23.871063, 64.746397], - [-23.87249, 64.746455], - [-23.872689, 64.746514], - [-23.871871, 64.74672], - [-23.87186, 64.746899], - [-23.872657, 64.747055], - [-23.872983, 64.746952], - [-23.873318, 64.746948], - [-23.873423, 64.74719], - [-23.873717, 64.74719], - [-23.873843, 64.747078], - [-23.874368, 64.747002], - [-23.875281, 64.746993], - [-23.875837, 64.747069], - [-23.876214, 64.747512], - [-23.876739, 64.7474], - [-23.876928, 64.74719], - [-23.876854, 64.746908], - [-23.877264, 64.746473], - [-23.877683, 64.746478], - [-23.877316, 64.746831], - [-23.877222, 64.747145], - [-23.877767, 64.747351], - [-23.87846, 64.747252], - [-23.878512, 64.747467], - [-23.878984, 64.747677], - [-23.878953, 64.747888], - [-23.879278, 64.748076], - [-23.879719, 64.748174], - [-23.880128, 64.747991], - [-23.881744, 64.747991], - [-23.882887, 64.747763], - [-23.883517, 64.7477], - [-23.883653, 64.747906], - [-23.884692, 64.747964], - [-23.884556, 64.747534], - [-23.887403, 64.747103], - [-23.889477, 64.748277], - [-23.889351, 64.748506], - [-23.888816, 64.748694], - [-23.888889, 64.74898], - [-23.890557, 64.748895], - [-23.889812, 64.748855], - [-23.89062, 64.74842], - [-23.890589, 64.748112], - [-23.89189, 64.747771], - [-23.891986, 64.748706], - [-23.895048, 64.74915], - [-23.896199, 64.749067], - [-23.896884, 64.748467], - [-23.899041, 64.749311], - [-23.899806, 64.750271], - [-23.899636, 64.750986], - [-23.900768, 64.751448], - [-23.901642, 64.751596], - [-23.903231, 64.751735], - [-23.904965, 64.751725], - [-23.90742, 64.751257], - [-23.907788, 64.750525], - [-23.908554, 64.750477], - [-23.909156, 64.750935], - [-23.910505, 64.751078], - [-23.911659, 64.750952], - [-23.912168, 64.750681], - [-23.913063, 64.750184], - [-23.914107, 64.750214], - [-23.914963, 64.750193], - [-23.915351, 64.74959], - [-23.915659, 64.749666], - [-23.915868, 64.749569], - [-23.915928, 64.749514], - [-23.915808, 64.749442], - [-23.915898, 64.749382], - [-23.916047, 64.749446], - [-23.916206, 64.749412], - [-23.916027, 64.749272], - [-23.917002, 64.74858], - [-23.916922, 64.748801], - [-23.917111, 64.74889], - [-23.91731, 64.74889], - [-23.917519, 64.748881], - [-23.91737, 64.749043], - [-23.917022, 64.749043], - [-23.916942, 64.749123], - [-23.917668, 64.749425], - [-23.917479, 64.749713], - [-23.917211, 64.749734], - [-23.917251, 64.749963], - [-23.917937, 64.750222], - [-23.917947, 64.750587], - [-23.917509, 64.750717], - [-23.918235, 64.751502], - [-23.918897, 64.752211], - [-23.916447, 64.752255], - [-23.915242, 64.75311], - [-23.915856, 64.75409], - [-23.916724, 64.754187], - [-23.917538, 64.754233], - [-23.91777, 64.754117], - [-23.917644, 64.754026], - [-23.917383, 64.753968], - [-23.917063, 64.753927], - [-23.916966, 64.753844], - [-23.917441, 64.753819], - [-23.918032, 64.754047], - [-23.918167, 64.754266], - [-23.918022, 64.754646], - [-23.917518, 64.754893], - [-23.917034, 64.754931], - [-23.917635, 64.755042], - [-23.917809, 64.755381], - [-23.917664, 64.755459], - [-23.917605, 64.755604], - [-23.917693, 64.755616], - [-23.91807, 64.755467], - [-23.918971, 64.755488], - [-23.919565, 64.755358], - [-23.917906, 64.756277], - [-23.917283, 64.756933], - [-23.918051, 64.75681], - [-23.918787, 64.756546], - [-23.919107, 64.75636], - [-23.919368, 64.756393], - [-23.919, 64.756748], - [-23.918927, 64.757319], - [-23.920551, 64.757301], - [-23.919144, 64.75784], - [-23.920382, 64.75793], - [-23.919495, 64.758735], - [-23.918294, 64.758965], - [-23.920797, 64.759413], - [-23.919656, 64.759955], - [-23.922495, 64.76014], - [-23.92104, 64.762034], - [-23.925538, 64.764816], - [-23.928255, 64.765259], - [-23.92938, 64.765005], - [-23.929604, 64.765934], - [-23.931236, 64.766197], - [-23.931398, 64.767048], - [-23.933617, 64.767637], - [-23.937166, 64.768323], - [-23.935667, 64.769067], - [-23.935492, 64.76977], - [-23.935452, 64.771142], - [-23.933486, 64.774293], - [-23.933842, 64.775387], - [-23.942877, 64.781713], - [-23.943555, 64.782222], - [-23.944748, 64.782584], - [-23.949742, 64.784132], - [-23.956008, 64.788103], - [-23.956137, 64.791878], - [-23.958653, 64.796568], - [-23.959699, 64.799565], - [-23.960463, 64.800458], - [-23.963336, 64.801176], - [-23.96577, 64.802231], - [-23.967069, 64.803655], - [-23.968299, 64.805663], - [-23.9691, 64.806703], - [-23.970427, 64.808808], - [-23.97163, 64.810651], - [-23.971695, 64.811516], - [-23.972637, 64.812229], - [-23.973428, 64.812439], - [-23.974477, 64.813142], - [-23.973708, 64.81384], - [-23.975182, 64.814459], - [-23.979016, 64.814934], - [-23.981481, 64.816027], - [-23.98243, 64.81669], - [-23.983517, 64.817736], - [-23.986845, 64.817708], - [-23.990623, 64.817418], - [-23.993098, 64.818247], - [-23.993895, 64.820786], - [-23.995615, 64.82116], - [-23.995863, 64.821623], - [-23.996936, 64.821602], - [-23.996457, 64.821799], - [-23.996342, 64.822023], - [-23.997414, 64.822037], - [-23.997926, 64.822571], - [-23.997464, 64.822859], - [-23.997918, 64.823505], - [-23.999469, 64.824534], - [-24.00287, 64.825289], - [-24.005725, 64.825734], - [-24.00536, 64.8267], - [-24.008267, 64.827054], - [-24.011676, 64.827233], - [-24.013929, 64.828013], - [-24.012658, 64.829062], - [-24.012937, 64.830117], - [-24.013687, 64.831354], - [-24.014528, 64.831798], - [-24.014012, 64.832151], - [-24.015972, 64.835773], - [-24.018672, 64.836948], - [-24.01864, 64.838206], - [-24.023562, 64.84205], - [-24.02716, 64.845209], - [-24.028948, 64.848185], - [-24.031037, 64.849183], - [-24.033624, 64.85016], - [-24.03638, 64.853011], - [-24.038935, 64.85506], - [-24.038569, 64.855283], - [-24.039072, 64.855591], - [-24.039179, 64.855944], - [-24.038684, 64.856222], - [-24.038877, 64.85679], - [-24.039152, 64.857244], - [-24.03904, 64.857692], - [-24.039574, 64.858206], - [-24.040331, 64.858407], - [-24.039152, 64.858645], - [-24.039641, 64.860241], - [-24.039307, 64.86073], - [-24.039359, 64.860972], - [-24.040042, 64.861294], - [-24.039845, 64.86182], - [-24.040181, 64.862007], - [-24.040321, 64.862089], - [-24.040566, 64.862114], - [-24.040667, 64.862076], - [-24.040873, 64.862149], - [-24.040777, 64.862203], - [-24.040614, 64.862313], - [-24.040812, 64.86241], - [-24.040825, 64.862545], - [-24.040654, 64.862663], - [-24.040338, 64.862879], - [-24.039983, 64.862912], - [-24.039598, 64.863], - [-24.039506, 64.863113], - [-24.039631, 64.86327], - [-24.039899, 64.863381], - [-24.040491, 64.863439], - [-24.040303, 64.863553], - [-24.039978, 64.8635], - [-24.039674, 64.863499], - [-24.039516, 64.863681], - [-24.039964, 64.863881], - [-24.040281, 64.863872], - [-24.040281, 64.863982], - [-24.039877, 64.864034], - [-24.039725, 64.864212], - [-24.039964, 64.864243], - [-24.039935, 64.864467], - [-24.03953, 64.864651], - [-24.039517, 64.864744], - [-24.040249, 64.864741], - [-24.040537, 64.864893], - [-24.039974, 64.865153], - [-24.039953, 64.865365], - [-24.040973, 64.865858], - [-24.040741, 64.866023], - [-24.040755, 64.86613], - [-24.041138, 64.86614], - [-24.040981, 64.866259], - [-24.041186, 64.866326], - [-24.040474, 64.866558], - [-24.040522, 64.866614], - [-24.041097, 64.866651], - [-24.041255, 64.866727], - [-24.040947, 64.866948], - [-24.0417, 64.867053], - [-24.040892, 64.867422], - [-24.040303, 64.867466], - [-24.04033, 64.867646], - [-24.041015, 64.868007], - [-24.041392, 64.867879], - [-24.042008, 64.867864], - [-24.042227, 64.867908], - [-24.041427, 64.868259], - [-24.041229, 64.868282], - [-24.040909, 64.868224], - [-24.040924, 64.868321], - [-24.041166, 64.868376], - [-24.041413, 64.868388], - [-24.041519, 64.868434], - [-24.041911, 64.86844], - [-24.041524, 64.868497], - [-24.041601, 64.868646], - [-24.043073, 64.868942], - [-24.042531, 64.869559], - [-24.043635, 64.869781], - [-24.042802, 64.870118], - [-24.043325, 64.871187], - [-24.04319, 64.871738], - [-24.043175, 64.87188], - [-24.043447, 64.871995], - [-24.043521, 64.872082], - [-24.043666, 64.872168], - [-24.043811, 64.872109], - [-24.04399, 64.872143], - [-24.044212, 64.872159], - [-24.044187, 64.872206], - [-24.044336, 64.872256], - [-24.044332, 64.872315], - [-24.044431, 64.872371], - [-24.044224, 64.872426], - [-24.044262, 64.87245], - [-24.044403, 64.872455], - [-24.044567, 64.872502], - [-24.044385, 64.872543], - [-24.044194, 64.872616], - [-24.044311, 64.872654], - [-24.044394, 64.872653], - [-24.044456, 64.872656], - [-24.044484, 64.872585], - [-24.044539, 64.872679], - [-24.044465, 64.872757], - [-24.044252, 64.872833], - [-24.044119, 64.873013], - [-24.044049, 64.873125], - [-24.044043, 64.873244], - [-24.044157, 64.873119], - [-24.04423, 64.873105], - [-24.044328, 64.873271], - [-24.04435, 64.8734], - [-24.044287, 64.873521], - [-24.04428, 64.873584], - [-24.044375, 64.873599], - [-24.044283, 64.873647], - [-24.044328, 64.873771], - [-24.044318, 64.873882], - [-24.044419, 64.874022], - [-24.044334, 64.874093], - [-24.044334, 64.874277], - [-24.0444, 64.874531], - [-24.044343, 64.875035], - [-24.044166, 64.875188], - [-24.044296, 64.875225], - [-24.044438, 64.875119], - [-24.044631, 64.875125], - [-24.04484, 64.875298], - [-24.044736, 64.875354], - [-24.044739, 64.875525], - [-24.044991, 64.875735], - [-24.045134, 64.875827], - [-24.045156, 64.875916], - [-24.045334, 64.875953], - [-24.04564, 64.875953], - [-24.045653, 64.875916], - [-24.045773, 64.875893], - [-24.045988, 64.875898], - [-24.046171, 64.875942], - [-24.046226, 64.876002], - [-24.046181, 64.876058], - [-24.04595, 64.876161], - [-24.045719, 64.876208], - [-24.045479, 64.876235], - [-24.045277, 64.876337], - [-24.045254, 64.8765], - [-24.045239, 64.876722], - [-24.045397, 64.876505], - [-24.045539, 64.876603], - [-24.045605, 64.87679], - [-24.045849, 64.876926], - [-24.046162, 64.87691], - [-24.046286, 64.876858], - [-24.046479, 64.876885], - [-24.046605, 64.876868], - [-24.046808, 64.876863], - [-24.04694, 64.876867], - [-24.04702, 64.876838], - [-24.047194, 64.876848], - [-24.047336, 64.876872], - [-24.047251, 64.876961], - [-24.047339, 64.877001], - [-24.047383, 64.877083], - [-24.047247, 64.87711], - [-24.047219, 64.877091], - [-24.047263, 64.877048], - [-24.046915, 64.877123], - [-24.046703, 64.877181], - [-24.046482, 64.877227], - [-24.04652, 64.877291], - [-24.046697, 64.877308], - [-24.046912, 64.877251], - [-24.04701, 64.87726], - [-24.047064, 64.87728], - [-24.047251, 64.877284], - [-24.04733, 64.87728], - [-24.047396, 64.877322], - [-24.047361, 64.877378], - [-24.04714, 64.877413], - [-24.046956, 64.877392], - [-24.046662, 64.877464], - [-24.046453, 64.877603], - [-24.046574, 64.877601], - [-24.04677, 64.877529], - [-24.046858, 64.877557], - [-24.046887, 64.877604], - [-24.047051, 64.877617], - [-24.047251, 64.877607], - [-24.047336, 64.877592], - [-24.047434, 64.877611], - [-24.047757, 64.877607], - [-24.047617, 64.877731], - [-24.047434, 64.877775], - [-24.047469, 64.87782], - [-24.047339, 64.877879], - [-24.047095, 64.877914], - [-24.046716, 64.877901], - [-24.047035, 64.877968], - [-24.047285, 64.877996], - [-24.047418, 64.877992], - [-24.047426, 64.878033], - [-24.047134, 64.878176], - [-24.047309, 64.878208], - [-24.047459, 64.878215], - [-24.047565, 64.878242], - [-24.04747, 64.878311], - [-24.047558, 64.878388], - [-24.04739, 64.878445], - [-24.047149, 64.878433], - [-24.046941, 64.878525], - [-24.047065, 64.878535], - [-24.047196, 64.878498], - [-24.047309, 64.878557], - [-24.047638, 64.878623], - [-24.047543, 64.878678], - [-24.047689, 64.878732], - [-24.04778, 64.878792], - [-24.0477, 64.878823], - [-24.047616, 64.878854], - [-24.047674, 64.878888], - [-24.04789, 64.878878], - [-24.047835, 64.878913], - [-24.047645, 64.87895], - [-24.047492, 64.879025], - [-24.047696, 64.879124], - [-24.047521, 64.879248], - [-24.04759, 64.879279], - [-24.04743, 64.879305], - [-24.047477, 64.879362], - [-24.047623, 64.879373], - [-24.047685, 64.879417], - [-24.047795, 64.879441], - [-24.047922, 64.879437], - [-24.048065, 64.879425], - [-24.04813, 64.8794], - [-24.048295, 64.879429], - [-24.048233, 64.879472], - [-24.048116, 64.879477], - [-24.047933, 64.879474], - [-24.047601, 64.879497], - [-24.047094, 64.879644], - [-24.046755, 64.879717], - [-24.046704, 64.879762], - [-24.046696, 64.879833], - [-24.047029, 64.879793], - [-24.047364, 64.879874], - [-24.047517, 64.87995], - [-24.047762, 64.879985], - [-24.047652, 64.880038], - [-24.047474, 64.88006], - [-24.047419, 64.88016], - [-24.0472, 64.880227], - [-24.046996, 64.880262], - [-24.046872, 64.880292], - [-24.046934, 64.880332], - [-24.047058, 64.880351], - [-24.047229, 64.88032], - [-24.047361, 64.880354], - [-24.047331, 64.880401], - [-24.047193, 64.880498], - [-24.046963, 64.88055], - [-24.046638, 64.880693], - [-24.046842, 64.880712], - [-24.047065, 64.880721], - [-24.047152, 64.880822], - [-24.047029, 64.88087], - [-24.04701, 64.880946], - [-24.047054, 64.880989], - [-24.047036, 64.881042], - [-24.047251, 64.881018], - [-24.047437, 64.881088], - [-24.047368, 64.88117], - [-24.0472, 64.881269], - [-24.046959, 64.881325], - [-24.04651, 64.88139], - [-24.046335, 64.88152], - [-24.046313, 64.881641], - [-24.046001, 64.881846], - [-24.046062, 64.881924], - [-24.046211, 64.881894], - [-24.046425, 64.881934], - [-24.046459, 64.881982], - [-24.046324, 64.88201], - [-24.046199, 64.882054], - [-24.046047, 64.882132], - [-24.046204, 64.882135], - [-24.046324, 64.882079], - [-24.046401, 64.882102], - [-24.046478, 64.882195], - [-24.046426, 64.882282], - [-24.046209, 64.882487], - [-24.045897, 64.882631], - [-24.045945, 64.882775], - [-24.046047, 64.882906], - [-24.046098, 64.883046], - [-24.04616, 64.883188], - [-24.046299, 64.883427], - [-24.04627, 64.883575], - [-24.046229, 64.883704], - [-24.046167, 64.883741], - [-24.046288, 64.883809], - [-24.046423, 64.883812], - [-24.046532, 64.883877], - [-24.046737, 64.883997], - [-24.046886, 64.884048], - [-24.047034, 64.884074], - [-24.047007, 64.884178], - [-24.046806, 64.884221], - [-24.046529, 64.884243], - [-24.046426, 64.88432], - [-24.046499, 64.884443], - [-24.046558, 64.884441], - [-24.046645, 64.884526], - [-24.04707, 64.884465], - [-24.047304, 64.884483], - [-24.047026, 64.88453], - [-24.047019, 64.884632], - [-24.047406, 64.884663], - [-24.047414, 64.88471], - [-24.046802, 64.884785], - [-24.046627, 64.884941], - [-24.046488, 64.884991], - [-24.046605, 64.885116], - [-24.046902, 64.885187], - [-24.046861, 64.885336], - [-24.047061, 64.885342], - [-24.04724, 64.885391], - [-24.047506, 64.885369], - [-24.047561, 64.885429], - [-24.047492, 64.885583], - [-24.047255, 64.885561], - [-24.047026, 64.885503], - [-24.04697, 64.885555], - [-24.046842, 64.885584], - [-24.046737, 64.885545], - [-24.046551, 64.885517], - [-24.046452, 64.88546], - [-24.04626, 64.885485], - [-24.046131, 64.885629], - [-24.046237, 64.885672], - [-24.046361, 64.885671], - [-24.046587, 64.885641], - [-24.047007, 64.885703], - [-24.047536, 64.885764], - [-24.047561, 64.88582], - [-24.047603, 64.885866], - [-24.047284, 64.885926], - [-24.047087, 64.885892], - [-24.046853, 64.885892], - [-24.046596, 64.885785], - [-24.046362, 64.885804], - [-24.046311, 64.885931], - [-24.046121, 64.885971], - [-24.046135, 64.886061], - [-24.045975, 64.886108], - [-24.046157, 64.886139], - [-24.046238, 64.886207], - [-24.045946, 64.886269], - [-24.045997, 64.886334], - [-24.046369, 64.886334], - [-24.046559, 64.886272], - [-24.046953, 64.886362], - [-24.047202, 64.88639], - [-24.047143, 64.886449], - [-24.046851, 64.886412], - [-24.046362, 64.88643], - [-24.045975, 64.886601], - [-24.046523, 64.886672], - [-24.0468, 64.886678], - [-24.046566, 64.88678], - [-24.04615, 64.886811], - [-24.04577, 64.886777], - [-24.04561, 64.886808], - [-24.044806, 64.886734], - [-24.044543, 64.886619], - [-24.044141, 64.886743], - [-24.043915, 64.886728], - [-24.043886, 64.886849], - [-24.043104, 64.886895], - [-24.04298, 64.887013], - [-24.04306, 64.88706], - [-24.043331, 64.887091], - [-24.043272, 64.887165], - [-24.042819, 64.887128], - [-24.042571, 64.887196], - [-24.042615, 64.887292], - [-24.042878, 64.887419], - [-24.042644, 64.887447], - [-24.042403, 64.887314], - [-24.042337, 64.88718], - [-24.042064, 64.887116], - [-24.041977, 64.887022], - [-24.04176, 64.886993], - [-24.041651, 64.887077], - [-24.041403, 64.887037], - [-24.041254, 64.88691], - [-24.041181, 64.88691], - [-24.041295, 64.887015], - [-24.041073, 64.887046], - [-24.04084, 64.887033], - [-24.040789, 64.887105], - [-24.040902, 64.887177], - [-24.040763, 64.887263], - [-24.040386, 64.887246], - [-24.039627, 64.887145], - [-24.039539, 64.887086], - [-24.03941, 64.887068], - [-24.039632, 64.886917], - [-24.039916, 64.886969], - [-24.039947, 64.886919], - [-24.039911, 64.88686], - [-24.039756, 64.886838], - [-24.039704, 64.886719], - [-24.039405, 64.886627], - [-24.039203, 64.88663], - [-24.039162, 64.886599], - [-24.039048, 64.886627], - [-24.038857, 64.886584], - [-24.038919, 64.886537], - [-24.03943, 64.886437], - [-24.039591, 64.886426], - [-24.039492, 64.886399], - [-24.039022, 64.886476], - [-24.038836, 64.886441], - [-24.038785, 64.886342], - [-24.03847, 64.886439], - [-24.03801, 64.886461], - [-24.037866, 64.886353], - [-24.038103, 64.886244], - [-24.038428, 64.886187], - [-24.038713, 64.886171], - [-24.038532, 64.886009], - [-24.038165, 64.886077], - [-24.038109, 64.886037], - [-24.038181, 64.885998], - [-24.038173, 64.885972], - [-24.038122, 64.885973], - [-24.037982, 64.886031], - [-24.037908, 64.886008], - [-24.037972, 64.885939], - [-24.0382, 64.885861], - [-24.038003, 64.885696], - [-24.038039, 64.885638], - [-24.037981, 64.88558], - [-24.037864, 64.885614], - [-24.037762, 64.885473], - [-24.037488, 64.885524], - [-24.037396, 64.885326], - [-24.03766, 64.885237], - [-24.037589, 64.885182], - [-24.037228, 64.885225], - [-24.037166, 64.885114], - [-24.036889, 64.885095], - [-24.036807, 64.88502], - [-24.036938, 64.884977], - [-24.037124, 64.884872], - [-24.036912, 64.88481], - [-24.036744, 64.884913], - [-24.036678, 64.88483], - [-24.036711, 64.884738], - [-24.036641, 64.884681], - [-24.036535, 64.884706], - [-24.036403, 64.884632], - [-24.036524, 64.88459], - [-24.036506, 64.884437], - [-24.036276, 64.88446], - [-24.036236, 64.884426], - [-24.036517, 64.884359], - [-24.036334, 64.884261], - [-24.036221, 64.884303], - [-24.036115, 64.884277], - [-24.03617, 64.884167], - [-24.036503, 64.884087], - [-24.036408, 64.883914], - [-24.03617, 64.883737], - [-24.035918, 64.883377], - [-24.035665, 64.88326], - [-24.035563, 64.883144], - [-24.035362, 64.883102], - [-24.035211, 64.883051], - [-24.035138, 64.883062], - [-24.035168, 64.883113], - [-24.034912, 64.883169], - [-24.034872, 64.883107], - [-24.034791, 64.883074], - [-24.034912, 64.882981], - [-24.034514, 64.882943], - [-24.034474, 64.882912], - [-24.034638, 64.88289], - [-24.034766, 64.882901], - [-24.034733, 64.882808], - [-24.03459, 64.882724], - [-24.034374, 64.882715], - [-24.034312, 64.882686], - [-24.033998, 64.882827], - [-24.033911, 64.882785], - [-24.033962, 64.882714], - [-24.034206, 64.882656], - [-24.033323, 64.88238], - [-24.033244, 64.882294], - [-24.033288, 64.88225], - [-24.033414, 64.882214], - [-24.033419, 64.882184], - [-24.033208, 64.882027], - [-24.032463, 64.881823], - [-24.032424, 64.881865], - [-24.032171, 64.881759], - [-24.031841, 64.881568], - [-24.031706, 64.881549], - [-24.031629, 64.881584], - [-24.031505, 64.881579], - [-24.031494, 64.881551], - [-24.03164, 64.881511], - [-24.031362, 64.881442], - [-24.031147, 64.881424], - [-24.030899, 64.881289], - [-24.030584, 64.88123], - [-24.02981, 64.88099], - [-24.02764, 64.88078], - [-24.02285, 64.88041], - [-24.01308, 64.88163], - [-24.01239, 64.88238], - [-24.00932, 64.88296], - [-23.99907, 64.88301], - [-23.989774, 64.881354], - [-23.987828, 64.881312], - [-23.98699, 64.881431], - [-23.985936, 64.881656], - [-23.985836, 64.881898], - [-23.985161, 64.881917], - [-23.984561, 64.88224], - [-23.984457, 64.882285], - [-23.981944, 64.883379], - [-23.97887, 64.88862], - [-23.97656, 64.89036], - [-23.9741, 64.89081], - [-23.97404, 64.89133], - [-23.96702, 64.89281], - [-23.96294, 64.89367], - [-23.95517, 64.89837], - [-23.95397, 64.89835], - [-23.95418, 64.89911], - [-23.95253, 64.90036], - [-23.94576, 64.90163], - [-23.945259, 64.901843], - [-23.943726, 64.901869], - [-23.941573, 64.903071], - [-23.938891, 64.903205], - [-23.937848, 64.904367], - [-23.938756, 64.906008], - [-23.937031, 64.90735], - [-23.931488, 64.910394], - [-23.925853, 64.913561], - [-23.92054, 64.9166], - [-23.919916, 64.916937], - [-23.91865, 64.91733], - [-23.917778, 64.917742], - [-23.91675, 64.91806], - [-23.911179, 64.919057], - [-23.906433, 64.916622], - [-23.905596, 64.915577], - [-23.904423, 64.914999], - [-23.901623, 64.91439], - [-23.899796, 64.914248], - [-23.898292, 64.914399], - [-23.896716, 64.914285], - [-23.893814, 64.91451], - [-23.892727, 64.915659], - [-23.892057, 64.916111], - [-23.891242, 64.91636], - [-23.890325, 64.916264], - [-23.889454, 64.916755], - [-23.889103, 64.917408], - [-23.888758, 64.917743], - [-23.888069, 64.917914], - [-23.887046, 64.91805], - [-23.88696, 64.918428], - [-23.885788, 64.91926], - [-23.885515, 64.919502], - [-23.884227, 64.919999], - [-23.88196, 64.919996], - [-23.87956, 64.920111], - [-23.87662, 64.919709], - [-23.875298, 64.920185], - [-23.873782, 64.92059], - [-23.872891, 64.921118], - [-23.872071, 64.921454], - [-23.872088, 64.921947], - [-23.872397, 64.922326], - [-23.871779, 64.922209], - [-23.871029, 64.921848], - [-23.869873, 64.921649], - [-23.868546, 64.921783], - [-23.866691, 64.921803], - [-23.864305, 64.922182], - [-23.86436, 64.922416], - [-23.864081, 64.922486], - [-23.863422, 64.922178], - [-23.863043, 64.92222], - [-23.862818, 64.922389], - [-23.86315, 64.92262], - [-23.86294, 64.922728], - [-23.862211, 64.922715], - [-23.861512, 64.922739], - [-23.860578, 64.92316], - [-23.859718, 64.923271], - [-23.858743, 64.923454], - [-23.85662, 64.923825], - [-23.853737, 64.924599], - [-23.852691, 64.924698], - [-23.851921, 64.924955], - [-23.847607, 64.925873], - [-23.842573, 64.926454], - [-23.838565, 64.926571], - [-23.835285, 64.926223], - [-23.828778, 64.925808], - [-23.826292, 64.925908], - [-23.824039, 64.926007], - [-23.81849, 64.92576], - [-23.81697, 64.92543], - [-23.816096, 64.925212], - [-23.81554, 64.925073], - [-23.813394, 64.924511], - [-23.813581, 64.924335], - [-23.814148, 64.923833], - [-23.814348, 64.92377], - [-23.814532, 64.923606], - [-23.814638, 64.923497], - [-23.814682, 64.923364], - [-23.814622, 64.923274], - [-23.814484, 64.923185], - [-23.8143, 64.92308], - [-23.813967, 64.922994], - [-23.810418, 64.922378], - [-23.809596, 64.922183], - [-23.810582, 64.921246], - [-23.811277, 64.920514], - [-23.811517, 64.920529], - [-23.811446, 64.920315], - [-23.811686, 64.920084], - [-23.811924, 64.919906], - [-23.812007, 64.91979], - [-23.811917, 64.919688], - [-23.811665, 64.919484], - [-23.811142, 64.919253], - [-23.809646, 64.918886], - [-23.807415, 64.91841], - [-23.806624, 64.917372], - [-23.805749, 64.916634], - [-23.805255, 64.916355], - [-23.804722, 64.916086], - [-23.803175, 64.915643], - [-23.802979, 64.915216], - [-23.801721, 64.914533], - [-23.800509, 64.91407], - [-23.7983, 64.913112], - [-23.796576, 64.91247], - [-23.795746, 64.912412], - [-23.795373, 64.912386], - [-23.795143, 64.912275], - [-23.794067, 64.911754], - [-23.793452, 64.911432], - [-23.791959, 64.910764], - [-23.790859, 64.910307], - [-23.789639, 64.909913], - [-23.788706, 64.909612], - [-23.78812, 64.90946], - [-23.78724, 64.909139], - [-23.78637, 64.9089], - [-23.785406, 64.908583], - [-23.78463, 64.90835], - [-23.781609, 64.907514], - [-23.774591, 64.905608], - [-23.773097, 64.905253], - [-23.769251, 64.904341], - [-23.767391, 64.903948], - [-23.76637, 64.903733], - [-23.76334, 64.903177], - [-23.758833, 64.902849], - [-23.755311, 64.90264], - [-23.751803, 64.902601], - [-23.738469, 64.901368], - [-23.73202, 64.900896], - [-23.73061, 64.901044], - [-23.728517, 64.901169], - [-23.726492, 64.900933], - [-23.72075, 64.899093], - [-23.720073, 64.898649], - [-23.718325, 64.898168], - [-23.717411, 64.898018], - [-23.71577, 64.897907], - [-23.71417, 64.897932], - [-23.712574, 64.898046], - [-23.711611, 64.898197], - [-23.710955, 64.8984], - [-23.709936, 64.898822], - [-23.708956, 64.898768], - [-23.705865, 64.898847], - [-23.705121, 64.898682], - [-23.704508, 64.898722], - [-23.703574, 64.898741], - [-23.69977, 64.898248], - [-23.699574, 64.898269], - [-23.698039, 64.898111], - [-23.698006, 64.897982], - [-23.698301, 64.897852], - [-23.698459, 64.897921], - [-23.699428, 64.897984], - [-23.699685, 64.897923], - [-23.699964, 64.897992], - [-23.70202, 64.898256], - [-23.702271, 64.897891], - [-23.701614, 64.897815], - [-23.701542, 64.897834], - [-23.701304, 64.897806], - [-23.701414, 64.897643], - [-23.70387, 64.897931], - [-23.70383, 64.898003], - [-23.704155, 64.898044], - [-23.705012, 64.897829], - [-23.704918, 64.897791], - [-23.705096, 64.897711], - [-23.704233, 64.897436], - [-23.704195, 64.897409], - [-23.705669, 64.896453], - [-23.705889, 64.896516], - [-23.707042, 64.895819], - [-23.707139, 64.895802], - [-23.707115, 64.895761], - [-23.707074, 64.8957], - [-23.705266, 64.895851], - [-23.705072, 64.895849], - [-23.704359, 64.895609], - [-23.704072, 64.895517], - [-23.702522, 64.895076], - [-23.70135, 64.895827], - [-23.701392, 64.895871], - [-23.701627, 64.895963], - [-23.701582, 64.896009], - [-23.701483, 64.896042], - [-23.701206, 64.895999], - [-23.70112, 64.896], - [-23.701059, 64.896067], - [-23.70104, 64.896178], - [-23.701635, 64.896931], - [-23.701627, 64.897002], - [-23.701334, 64.897043], - [-23.701187, 64.897003], - [-23.700483, 64.896147], - [-23.700534, 64.895892], - [-23.699941, 64.895443], - [-23.699989, 64.895363], - [-23.700088, 64.895327], - [-23.700189, 64.895324], - [-23.700302, 64.895348], - [-23.700848, 64.895682], - [-23.701932, 64.894951], - [-23.702116, 64.894831], - [-23.70254, 64.894742], - [-23.703455, 64.894188], - [-23.701523, 64.893621], - [-23.702279, 64.893301], - [-23.701052, 64.892982], - [-23.699793, 64.892713], - [-23.697916, 64.892387], - [-23.697265, 64.892315], - [-23.696774, 64.892324], - [-23.69652, 64.892413], - [-23.696377, 64.892775], - [-23.695682, 64.892739], - [-23.69524, 64.89283], - [-23.694669, 64.892805], - [-23.694296, 64.892845], - [-23.694029, 64.893029], - [-23.693602, 64.893063], - [-23.692834, 64.893208], - [-23.692503, 64.89331], - [-23.691935, 64.89331], - [-23.691879, 64.893117], - [-23.691644, 64.893074], - [-23.691298, 64.893092], - [-23.691378, 64.892954], - [-23.6915, 64.892943], - [-23.691708, 64.893013], - [-23.691778, 64.892812], - [-23.69214, 64.892483], - [-23.69261, 64.892393], - [-23.692535, 64.892198], - [-23.692329, 64.892024], - [-23.691655, 64.891746], - [-23.690727, 64.891524], - [-23.688399, 64.891293], - [-23.686395, 64.891272], - [-23.684351, 64.891323], - [-23.680188, 64.891985], - [-23.670049, 64.89194], - [-23.667428, 64.892315], - [-23.665864, 64.892068], - [-23.660516, 64.892236], - [-23.660143, 64.892414], - [-23.658555, 64.892533], - [-23.658648, 64.892256], - [-23.658251, 64.892028], - [-23.657154, 64.891929], - [-23.655379, 64.891988], - [-23.652927, 64.891602], - [-23.65204, 64.891067], - [-23.650747, 64.890366], - [-23.648386, 64.889798], - [-23.643059, 64.889542], - [-23.64018, 64.889665], - [-23.638584, 64.889641], - [-23.637702, 64.889676], - [-23.636322, 64.889782], - [-23.634194, 64.889892], - [-23.632463, 64.890049], - [-23.631171, 64.89039], - [-23.629358, 64.890677], - [-23.62703, 64.89104], - [-23.621107, 64.893002], - [-23.611651, 64.898158], - [-23.611618, 64.898564], - [-23.609571, 64.89869], - [-23.608448, 64.89848], - [-23.607737, 64.898628], - [-23.609934, 64.899055], - [-23.611024, 64.900133], - [-23.60888, 64.90112], - [-23.607226, 64.90166], - [-23.60474, 64.902745], - [-23.605191, 64.903309], - [-23.603643, 64.903923], - [-23.601202, 64.905367], - [-23.601407, 64.906345], - [-23.600847, 64.907936], - [-23.601504, 64.908173], - [-23.601978, 64.908137], - [-23.602819, 64.908256], - [-23.60311, 64.908388], - [-23.603035, 64.908617], - [-23.603595, 64.909106], - [-23.602916, 64.909353], - [-23.603207, 64.909924], - [-23.602894, 64.909997], - [-23.6025, 64.90991], - [-23.602531, 64.910106], - [-23.602909, 64.910266], - [-23.602962, 64.910484], - [-23.603665, 64.910755], - [-23.603528, 64.910884], - [-23.602258, 64.910831], - [-23.601398, 64.910969], - [-23.601809, 64.911264], - [-23.601891, 64.91155], - [-23.602545, 64.911753], - [-23.601962, 64.911896], - [-23.601441, 64.911823], - [-23.601881, 64.912282], - [-23.601053, 64.912334], - [-23.6009, 64.912446], - [-23.601063, 64.912598], - [-23.600879, 64.912702], - [-23.600777, 64.912958], - [-23.60044, 64.912988], - [-23.600041, 64.91288], - [-23.600358, 64.912429], - [-23.599847, 64.912212], - [-23.599203, 64.912152], - [-23.598866, 64.912147], - [-23.598416, 64.912594], - [-23.598457, 64.913027], - [-23.597638, 64.913209], - [-23.597476, 64.913027], - [-23.597109, 64.913044], - [-23.596587, 64.912763], - [-23.596158, 64.912975], - [-23.595897, 64.913302], - [-23.595887, 64.913977], - [-23.596763, 64.91418], - [-23.59723, 64.914348], - [-23.597001, 64.914496], - [-23.596693, 64.914627], - [-23.596504, 64.914829], - [-23.596743, 64.914985], - [-23.596166, 64.914956], - [-23.595549, 64.915272], - [-23.595051, 64.915432], - [-23.594196, 64.915437], - [-23.593758, 64.915327], - [-23.593231, 64.915487], - [-23.592872, 64.915428], - [-23.592703, 64.915517], - [-23.592047, 64.915458], - [-23.591997, 64.915399], - [-23.591718, 64.915437], - [-23.59129, 64.915361], - [-23.591121, 64.915276], - [-23.590972, 64.91534], - [-23.590037, 64.915268], - [-23.589352, 64.915354], - [-23.588331, 64.915279], - [-23.586372, 64.915526], - [-23.58357, 64.915116], - [-23.580754, 64.914922], - [-23.57832, 64.915291], - [-23.575552, 64.915257], - [-23.574832, 64.914748], - [-23.573844, 64.914442], - [-23.573191, 64.913888], - [-23.571927, 64.913472], - [-23.568305, 64.91297], - [-23.562976, 64.913058], - [-23.556393, 64.913738], - [-23.552579, 64.913634], - [-23.551412, 64.913479], - [-23.55069, 64.91297], - [-23.549249, 64.912692], - [-23.547049, 64.912714], - [-23.545508, 64.912806], - [-23.544098, 64.913276], - [-23.543186, 64.91386], - [-23.542202, 64.914497], - [-23.542631, 64.915642], - [-23.541576, 64.915672], - [-23.540807, 64.916218], - [-23.541186, 64.916478], - [-23.541004, 64.916858], - [-23.540186, 64.916985], - [-23.539238, 64.917596], - [-23.538277, 64.917767], - [-23.53777, 64.918406], - [-23.535471, 64.918301], - [-23.534315, 64.917403], - [-23.533055, 64.917095], - [-23.532263, 64.916688], - [-23.532211, 64.916346], - [-23.531782, 64.916159], - [-23.531327, 64.916291], - [-23.531626, 64.916644], - [-23.53186, 64.917012], - [-23.531496, 64.917442], - [-23.531613, 64.917761], - [-23.528561, 64.91854], - [-23.522389, 64.920927], - [-23.516553, 64.925365], - [-23.511746, 64.929002], - [-23.50653, 64.93485], - [-23.50352, 64.9417], - [-23.500678, 64.94369], - [-23.496962, 64.945673], - [-23.495023, 64.946545], - [-23.491397, 64.949053], - [-23.488475, 64.949694], - [-23.487501, 64.949857], - [-23.485438, 64.950361], - [-23.484676, 64.951358], - [-23.482619, 64.952323], - [-23.479884, 64.952639], - [-23.477549, 64.952293], - [-23.477132, 64.9522], - [-23.476385, 64.951833], - [-23.47552, 64.951631], - [-23.473662, 64.951725], - [-23.472292, 64.951713], - [-23.469067, 64.951287], - [-23.468116, 64.951005], - [-23.465384, 64.950215], - [-23.464581, 64.949804], - [-23.463392, 64.949358], - [-23.46208, 64.94917], - [-23.45429, 64.94873], - [-23.449764, 64.948653], - [-23.446699, 64.947864], - [-23.44341, 64.947304], - [-23.42063, 64.947688], - [-23.416355, 64.948382], - [-23.412422, 64.94947], - [-23.409443, 64.950307], - [-23.406793, 64.951171], - [-23.403359, 64.952261], - [-23.399926, 64.953642], - [-23.395978, 64.955822], - [-23.392888, 64.957711], - [-23.390828, 64.958946], - [-23.390219, 64.960024], - [-23.39365, 64.961146], - [-23.393867, 64.962106], - [-23.393365, 64.962768], - [-23.39256, 64.96312], - [-23.391606, 64.963224], - [-23.39068, 64.96359], - [-23.38867, 64.96507], - [-23.37121, 64.96452], - [-23.368431, 64.964937], - [-23.36624, 64.96555], - [-23.360866, 64.966913], - [-23.35994, 64.96745], - [-23.35918, 64.967901], - [-23.35859, 64.96844], - [-23.356327, 64.969273], - [-23.355376, 64.969803], - [-23.35814, 64.97176], - [-23.35382, 64.97242], - [-23.35275, 64.97137], - [-23.35038, 64.97104], - [-23.35023, 64.97063], - [-23.34751, 64.96996], - [-23.34758, 64.96944], - [-23.34637, 64.96942], - [-23.34587, 64.96864], - [-23.33942, 64.9672], - [-23.33839, 64.9659], - [-23.33425, 64.96528], - [-23.33431, 64.96477], - [-23.33311, 64.96474], - [-23.33121, 64.96316], - [-23.3317, 64.95959], - [-23.32992, 64.957323], - [-23.329315, 64.956553], - [-23.328017, 64.955027], - [-23.32588, 64.95355], - [-23.323972, 64.95227], - [-23.32482, 64.952097], - [-23.32541, 64.952556], - [-23.326116, 64.952469], - [-23.326443, 64.950971], - [-23.32626, 64.950535], - [-23.32567, 64.949934], - [-23.325102, 64.948868], - [-23.325359, 64.948787], - [-23.325509, 64.948864], - [-23.326003, 64.948764], - [-23.325971, 64.948191], - [-23.327991, 64.947764], - [-23.327308, 64.947229], - [-23.326644, 64.946693], - [-23.326202, 64.946512], - [-23.325648, 64.946392], - [-23.325728, 64.946377], - [-23.326269, 64.946489], - [-23.326759, 64.946659], - [-23.328255, 64.947696], - [-23.329781, 64.947547], - [-23.330605, 64.947224], - [-23.33111, 64.946565], - [-23.33199, 64.946061], - [-23.335154, 64.945406], - [-23.335841, 64.944997], - [-23.336926, 64.944726], - [-23.336113, 64.944605], - [-23.336451, 64.944228], - [-23.337588, 64.943664], - [-23.339382, 64.942017], - [-23.339231, 64.941108], - [-23.34168, 64.93959], - [-23.3417, 64.9373], - [-23.33816, 64.9367], - [-23.33656, 64.93512], - [-23.334599, 64.934541], - [-23.332977, 64.934525], - [-23.332097, 64.934677], - [-23.33116, 64.93486], - [-23.330536, 64.934683], - [-23.330442, 64.934283], - [-23.330994, 64.93402], - [-23.331903, 64.933476], - [-23.330317, 64.933164], - [-23.329592, 64.932897], - [-23.329753, 64.932698], - [-23.329048, 64.932509], - [-23.327842, 64.932804], - [-23.326764, 64.93253], - [-23.325904, 64.932354], - [-23.32369, 64.93212], - [-23.31921, 64.931645], - [-23.318805, 64.932624], - [-23.319317, 64.932878], - [-23.320924, 64.933524], - [-23.320881, 64.934245], - [-23.322147, 64.934845], - [-23.322264, 64.9355], - [-23.323241, 64.935942], - [-23.324227, 64.936664], - [-23.324305, 64.937182], - [-23.324468, 64.937523], - [-23.324948, 64.938332], - [-23.324772, 64.938951], - [-23.324759, 64.939675], - [-23.325416, 64.940428], - [-23.32482, 64.941478], - [-23.323638, 64.942747], - [-23.322771, 64.944119], - [-23.321374, 64.94499], - [-23.321072, 64.945233], - [-23.320005, 64.945678], - [-23.320558, 64.946114], - [-23.322016, 64.946253], - [-23.322904, 64.945999], - [-23.323519, 64.946461], - [-23.320938, 64.947239], - [-23.31887, 64.947999], - [-23.316302, 64.948882], - [-23.311712, 64.950115], - [-23.310229, 64.95034], - [-23.309373, 64.950721], - [-23.308588, 64.950987], - [-23.307596, 64.951004], - [-23.306822, 64.951165], - [-23.306912, 64.9517], - [-23.306684, 64.952237], - [-23.305721, 64.95212], - [-23.304496, 64.951886], - [-23.304469, 64.951712], - [-23.304697, 64.951437], - [-23.304376, 64.951205], - [-23.303322, 64.95108], - [-23.302777, 64.950697], - [-23.302477, 64.950134], - [-23.301731, 64.949767], - [-23.301046, 64.949492], - [-23.302144, 64.949052], - [-23.301828, 64.948674], - [-23.300853, 64.94839], - [-23.299408, 64.947931], - [-23.298295, 64.947352], - [-23.297188, 64.947106], - [-23.296135, 64.946768], - [-23.295323, 64.946565], - [-23.294674, 64.946072], - [-23.294776, 64.945309], - [-23.29465, 64.944461], - [-23.292771, 64.944632], - [-23.291941, 64.94455], - [-23.291122, 64.944435], - [-23.290319, 64.944415], - [-23.290007, 64.944174], - [-23.290407, 64.943865], - [-23.2918, 64.943766], - [-23.292895, 64.94366], - [-23.293965, 64.943088], - [-23.293844, 64.942446], - [-23.29317, 64.941847], - [-23.292498, 64.941184], - [-23.291714, 64.940504], - [-23.291222, 64.938902], - [-23.292007, 64.93734], - [-23.292021, 64.936346], - [-23.291413, 64.935573], - [-23.292369, 64.935231], - [-23.29391, 64.934963], - [-23.294998, 64.93455], - [-23.296243, 64.933676], - [-23.297737, 64.932539], - [-23.298476, 64.931666], - [-23.299168, 64.930874], - [-23.300944, 64.930202], - [-23.302136, 64.930058], - [-23.302775, 64.929841], - [-23.303748, 64.929416], - [-23.304898, 64.928949], - [-23.30547, 64.928666], - [-23.305848, 64.928332], - [-23.305665, 64.928], - [-23.305398, 64.927437], - [-23.304434, 64.926783], - [-23.303444, 64.926217], - [-23.303763, 64.926146], - [-23.306448, 64.92723], - [-23.309076, 64.927025], - [-23.308932, 64.926704], - [-23.308882, 64.926595], - [-23.30727, 64.92667], - [-23.306754, 64.926465], - [-23.30756, 64.925987], - [-23.308028, 64.925488], - [-23.309027, 64.925303], - [-23.30885, 64.924784], - [-23.307705, 64.92475], - [-23.306932, 64.924388], - [-23.304746, 64.924575], - [-23.30403, 64.92516], - [-23.303079, 64.925263], - [-23.30245, 64.92516], - [-23.303079, 64.925747], - [-23.30336, 64.925811], - [-23.303692, 64.925806], - [-23.303707, 64.925884], - [-23.303483, 64.92601], - [-23.303171, 64.926121], - [-23.302852, 64.926041], - [-23.302461, 64.926021], - [-23.301795, 64.926162], - [-23.300378, 64.926824], - [-23.29962, 64.927831], - [-23.298491, 64.928064], - [-23.297683, 64.927641], - [-23.29684, 64.927258], - [-23.295798, 64.926829], - [-23.295486, 64.926532], - [-23.295049, 64.926219], - [-23.295218, 64.925944], - [-23.297119, 64.925617], - [-23.298377, 64.925312], - [-23.297662, 64.924865], - [-23.296978, 64.924472], - [-23.297295, 64.92385], - [-23.29532, 64.92321], - [-23.292835, 64.922694], - [-23.289273, 64.922352], - [-23.28586, 64.92213], - [-23.283975, 64.922679], - [-23.281927, 64.923018], - [-23.280962, 64.923187], - [-23.280345, 64.923501], - [-23.279364, 64.923745], - [-23.279264, 64.923766], - [-23.279214, 64.923769], - [-23.279144, 64.923773], - [-23.278991, 64.923782], - [-23.277571, 64.923792], - [-23.276522, 64.923837], - [-23.275689, 64.924043], - [-23.274695, 64.924251], - [-23.273698, 64.924571], - [-23.272657, 64.924739], - [-23.271582, 64.924939], - [-23.270559, 64.925005], - [-23.269636, 64.92529], - [-23.268961, 64.925865], - [-23.26851, 64.926155], - [-23.26786, 64.926378], - [-23.267041, 64.926398], - [-23.266132, 64.92641], - [-23.265221, 64.926421], - [-23.264237, 64.926524], - [-23.263208, 64.926781], - [-23.262659, 64.926985], - [-23.262428, 64.927224], - [-23.262377, 64.927714], - [-23.262285, 64.928099], - [-23.262283, 64.928108], - [-23.261771, 64.928342], - [-23.261146, 64.928519], - [-23.260075, 64.928696], - [-23.259068, 64.928712], - [-23.258373, 64.928474], - [-23.257725, 64.928083], - [-23.257036, 64.927666], - [-23.256843, 64.927313], - [-23.256432, 64.927207], - [-23.255715, 64.927136], - [-23.254671, 64.927115], - [-23.253705, 64.926959], - [-23.252737, 64.926838], - [-23.251531, 64.926685], - [-23.249363, 64.926791], - [-23.249172, 64.9267], - [-23.249167, 64.926545], - [-23.249275, 64.926448], - [-23.249438, 64.926422], - [-23.249429, 64.926297], - [-23.254683, 64.925999], - [-23.254691, 64.925824], - [-23.25436, 64.925725], - [-23.254221, 64.92566], - [-23.254173, 64.925604], - [-23.253625, 64.925651], - [-23.253605, 64.925619], - [-23.254172, 64.925562], - [-23.254081, 64.92545], - [-23.253838, 64.925394], - [-23.253615, 64.925368], - [-23.253348, 64.925398], - [-23.251991, 64.925535], - [-23.251949, 64.925531], - [-23.251908, 64.925513], - [-23.251844, 64.925397], - [-23.251835, 64.925377], - [-23.251849, 64.925363], - [-23.251893, 64.925347], - [-23.252629, 64.925275], - [-23.253304, 64.925203], - [-23.253363, 64.925148], - [-23.254644, 64.925008], - [-23.2545, 64.924704], - [-23.254303, 64.924448], - [-23.25414, 64.924054], - [-23.253904, 64.923763], - [-23.253912, 64.923599], - [-23.25411, 64.923486], - [-23.253917, 64.923365], - [-23.253509, 64.923184], - [-23.253084, 64.922972], - [-23.252899, 64.922729], - [-23.253203, 64.922666], - [-23.253211, 64.922553], - [-23.253251, 64.922365], - [-23.253294, 64.922156], - [-23.253175, 64.92197], - [-23.252552, 64.921765], - [-23.252377, 64.921758], - [-23.250367, 64.921684], - [-23.248332, 64.921641], - [-23.24752, 64.921723], - [-23.247502, 64.921888], - [-23.24697, 64.921905], - [-23.246405, 64.921924], - [-23.246652, 64.922933], - [-23.246815, 64.922929], - [-23.247008, 64.923346], - [-23.2468, 64.923362], - [-23.246973, 64.92349], - [-23.247191, 64.923566], - [-23.247471, 64.923621], - [-23.248546, 64.92383], - [-23.24964, 64.924041], - [-23.249688, 64.924165], - [-23.249498, 64.924227], - [-23.248551, 64.924065], - [-23.247398, 64.923859], - [-23.246457, 64.923689], - [-23.24637, 64.923637], - [-23.246108, 64.923098], - [-23.245651, 64.92187], - [-23.245064, 64.921836], - [-23.243694, 64.921761], - [-23.241884, 64.921752], - [-23.240829, 64.921969], - [-23.239855, 64.922261], - [-23.238723, 64.922556], - [-23.237407, 64.922766], - [-23.237165, 64.922786], - [-23.236506, 64.922799], - [-23.235813, 64.922735], - [-23.234407, 64.922568], - [-23.232379, 64.922695], - [-23.230099, 64.922929], - [-23.227762, 64.923219], - [-23.224559, 64.923697], - [-23.221524, 64.924266], - [-23.21867, 64.924939], - [-23.215838, 64.9258], - [-23.213829, 64.926549], - [-23.211962, 64.927349], - [-23.210479, 64.92817], - [-23.209363, 64.928916], - [-23.208351, 64.929943], - [-23.209325, 64.93052], - [-23.209892, 64.930909], - [-23.210057, 64.931314], - [-23.209392, 64.931591], - [-23.20971, 64.931893], - [-23.209844, 64.932214], - [-23.209783, 64.932912], - [-23.209792, 64.933917], - [-23.210131, 64.934951], - [-23.207482, 64.939389], - [-23.207329, 64.941785], - [-23.207318, 64.942022], - [-23.205515, 64.943698], - [-23.204295, 64.945154], - [-23.202197, 64.948335], - [-23.206602, 64.952556], - [-23.209268, 64.957194], - [-23.210698, 64.958508], - [-23.21367, 64.961241], - [-23.217564, 64.963843], - [-23.220596, 64.964415], - [-23.22049, 64.965047], - [-23.219859, 64.968785], - [-23.21867, 64.970745], - [-23.219203, 64.97267], - [-23.220432, 64.974334], - [-23.222806, 64.975619], - [-23.222956, 64.977652], - [-23.22307, 64.9792], - [-23.224306, 64.98183], - [-23.226228, 64.984168], - [-23.226434, 64.984868], - [-23.227287, 64.987767], - [-23.228601, 64.989359], - [-23.229091, 64.990686], - [-23.229366, 64.992162], - [-23.229483, 64.994085], - [-23.22842, 64.99568], - [-23.227248, 64.996249], - [-23.22579, 64.99715], - [-23.224463, 64.997691], - [-23.22316, 64.99862], - [-23.221246, 64.999573], - [-23.21922, 65.00082], - [-23.218703, 65.001435], - [-23.21652, 65.0028], - [-23.215186, 65.00317], - [-23.2146, 65.00351], - [-23.213735, 65.003866], - [-23.21268, 65.00424], - [-23.21016, 65.00494], - [-23.20824, 65.00566], - [-23.20444, 65.00685], - [-23.199938, 65.00797], - [-23.19816, 65.00848], - [-23.193829, 65.009866], - [-23.191729, 65.010545], - [-23.189533, 65.011203], - [-23.189169, 65.011203], - [-23.181035, 65.01126], - [-23.178095, 65.011294], - [-23.17297, 65.01104], - [-23.1677, 65.00975], - [-23.16778, 65.00924], - [-23.15895, 65.00748], - [-23.15902, 65.00697], - [-23.150259, 65.005818], - [-23.146343, 65.005288], - [-23.141885, 65.004532], - [-23.137098, 65.004037], - [-23.133555, 65.004152], - [-23.129958, 65.004532], - [-23.126023, 65.004509], - [-23.119532, 65.004399], - [-23.113148, 65.004621], - [-23.108503, 65.004472], - [-23.103711, 65.004453], - [-23.101593, 65.004386], - [-23.099566, 65.004218], - [-23.095447, 65.00385], - [-23.092133, 65.003914], - [-23.090635, 65.004319], - [-23.090566, 65.004829], - [-23.091453, 65.005321], - [-23.09019, 65.00569], - [-23.08893, 65.005649], - [-23.08782, 65.00537], - [-23.08739, 65.00511], - [-23.087418, 65.004893], - [-23.08764, 65.00477], - [-23.087293, 65.004717], - [-23.086974, 65.004952], - [-23.085879, 65.00484], - [-23.08439, 65.004], - [-23.083535, 65.003387], - [-23.083043, 65.002921], - [-23.083493, 65.002709], - [-23.08642, 65.002795], - [-23.086877, 65.003258], - [-23.089207, 65.002971], - [-23.09158, 65.0024], - [-23.092438, 65.002191], - [-23.09316, 65.00193], - [-23.093464, 65.001283], - [-23.093229, 65.000838], - [-23.092109, 65.000654], - [-23.09218, 65.00036], - [-23.093298, 65.000316], - [-23.095645, 64.999732], - [-23.09793, 64.99834], - [-23.10022, 64.997843], - [-23.102664, 64.997372], - [-23.10416, 64.99709], - [-23.10502, 64.996929], - [-23.10599, 64.996495], - [-23.106476, 64.995598], - [-23.107558, 64.99517], - [-23.109374, 64.993916], - [-23.109291, 64.992989], - [-23.111926, 64.991536], - [-23.113479, 64.98987], - [-23.11382, 64.98889], - [-23.115254, 64.987637], - [-23.115739, 64.986423], - [-23.115448, 64.985854], - [-23.11559, 64.9851], - [-23.11675, 64.98538], - [-23.117556, 64.984904], - [-23.11811, 64.98439], - [-23.119345, 64.983784], - [-23.12018, 64.98266], - [-23.122174, 64.98162], - [-23.123048, 64.979913], - [-23.124351, 64.978975], - [-23.124309, 64.976324], - [-23.1255, 64.97511], - [-23.127898, 64.972945], - [-23.12828, 64.97262], - [-23.128702, 64.972385], - [-23.128084, 64.97217], - [-23.127391, 64.972303], - [-23.127447, 64.972667], - [-23.127197, 64.972696], - [-23.126796, 64.972242], - [-23.126708, 64.971798], - [-23.126865, 64.971363], - [-23.127459, 64.970512], - [-23.128174, 64.969689], - [-23.128692, 64.968748], - [-23.128556, 64.968178], - [-23.127871, 64.96776], - [-23.126583, 64.967236], - [-23.124802, 64.966734], - [-23.124372, 64.966742], - [-23.123966, 64.966527], - [-23.123961, 64.966251], - [-23.124006, 64.966051], - [-23.124238, 64.965775], - [-23.124676, 64.965446], - [-23.125115, 64.965382], - [-23.125535, 64.965473], - [-23.125535, 64.965601], - [-23.125787, 64.965671], - [-23.12758, 64.965558], - [-23.129689, 64.965345], - [-23.13177, 64.965055], - [-23.135271, 64.964548], - [-23.137001, 64.964025], - [-23.138696, 64.963351], - [-23.13954, 64.962993], - [-23.139464, 64.962058], - [-23.1406, 64.960887], - [-23.141798, 64.959736], - [-23.142947, 64.95913], - [-23.144541, 64.958022], - [-23.146783, 64.956781], - [-23.148931, 64.955452], - [-23.151599, 64.953833], - [-23.151903, 64.953184], - [-23.152572, 64.952505], - [-23.155388, 64.950789], - [-23.157826, 64.948864], - [-23.160301, 64.947843], - [-23.16188, 64.946768], - [-23.162397, 64.946319], - [-23.162549, 64.945928], - [-23.162183, 64.94542], - [-23.161874, 64.945124], - [-23.161472, 64.944858], - [-23.16066, 64.94436], - [-23.159402, 64.943709], - [-23.158268, 64.943137], - [-23.158024, 64.943008], - [-23.157331, 64.942639], - [-23.15508, 64.94182], - [-23.154233, 64.941381], - [-23.15279, 64.94099], - [-23.15043, 64.94054], - [-23.14806, 64.94023], - [-23.147364, 64.94], - [-23.14631, 64.939725], - [-23.144355, 64.940096], - [-23.144083, 64.940148], - [-23.145294, 64.941177], - [-23.146504, 64.941743], - [-23.146132, 64.941987], - [-23.14617, 64.94243], - [-23.145159, 64.942174], - [-23.144451, 64.941886], - [-23.143317, 64.941134], - [-23.143328, 64.940676], - [-23.141942, 64.940254], - [-23.139885, 64.939733], - [-23.137402, 64.9392], - [-23.134198, 64.938627], - [-23.130906, 64.938165], - [-23.127989, 64.937847], - [-23.124859, 64.937512], - [-23.124901, 64.937246], - [-23.125762, 64.936386], - [-23.126195, 64.935822], - [-23.125926, 64.9353], - [-23.12513, 64.935091], - [-23.12353, 64.935209], - [-23.123805, 64.934428], - [-23.123092, 64.932284], - [-23.121749, 64.931849], - [-23.122226, 64.931073], - [-23.122605, 64.929441], - [-23.122028, 64.927915], - [-23.121839, 64.926831], - [-23.121279, 64.92569], - [-23.121658, 64.92479], - [-23.122799, 64.923922], - [-23.123443, 64.923406], - [-23.125155, 64.922472], - [-23.124576, 64.921817], - [-23.123515, 64.921259], - [-23.121049, 64.920399], - [-23.120147, 64.920063], - [-23.119087, 64.919404], - [-23.118908, 64.919058], - [-23.118994, 64.918991], - [-23.118695, 64.918691], - [-23.11863, 64.91833], - [-23.11742, 64.9183], - [-23.117146, 64.918004], - [-23.116283, 64.91801], - [-23.115773, 64.918298], - [-23.116202, 64.918747], - [-23.116089, 64.9189], - [-23.115002, 64.918967], - [-23.11434, 64.91873], - [-23.113828, 64.918367], - [-23.112292, 64.918277], - [-23.112283, 64.917917], - [-23.111643, 64.917741], - [-23.111273, 64.917641], - [-23.111201, 64.917334], - [-23.11108, 64.916962], - [-23.109665, 64.9166], - [-23.10841, 64.91501], - [-23.107162, 64.913562], - [-23.10691, 64.913041], - [-23.105241, 64.912625], - [-23.10381, 64.91231], - [-23.103724, 64.912288], - [-23.103005, 64.912103], - [-23.102578, 64.911586], - [-23.101026, 64.911411], - [-23.100258, 64.91149], - [-23.096853, 64.911841], - [-23.093665, 64.913085], - [-23.090767, 64.913614], - [-23.08973, 64.913586], - [-23.08916, 64.91346], - [-23.087896, 64.913246], - [-23.087707, 64.912536], - [-23.086642, 64.912478], - [-23.086078, 64.912832], - [-23.086974, 64.913347], - [-23.087737, 64.914248], - [-23.08834, 64.91498], - [-23.088291, 64.915725], - [-23.089005, 64.916301], - [-23.088862, 64.917414], - [-23.08741, 64.91931], - [-23.088168, 64.919477], - [-23.08863, 64.919579], - [-23.089441, 64.919927], - [-23.090612, 64.921971], - [-23.08944, 64.92397], - [-23.088061, 64.925469], - [-23.088469, 64.927156], - [-23.089198, 64.928572], - [-23.090398, 64.932544], - [-23.091408, 64.934575], - [-23.096237, 64.940895], - [-23.097274, 64.942062], - [-23.098395, 64.942546], - [-23.09906, 64.94292], - [-23.09823, 64.94444], - [-23.098631, 64.945692], - [-23.100578, 64.949065], - [-23.103059, 64.952363], - [-23.103405, 64.9536], - [-23.100178, 64.955127], - [-23.100617, 64.955645], - [-23.101533, 64.956211], - [-23.102775, 64.957076], - [-23.103519, 64.957504], - [-23.103584, 64.95838], - [-23.104768, 64.959124], - [-23.103546, 64.960239], - [-23.10198, 64.961783], - [-23.101618, 64.960926], - [-23.098543, 64.959827], - [-23.098538, 64.959585], - [-23.098519, 64.958654], - [-23.098429, 64.957604], - [-23.097035, 64.957354], - [-23.095602, 64.956279], - [-23.094972, 64.956125], - [-23.094303, 64.956231], - [-23.092926, 64.959361], - [-23.090872, 64.961002], - [-23.092892, 64.961227], - [-23.096302, 64.961665], - [-23.100805, 64.962403], - [-23.103598, 64.962849], - [-23.1059, 64.963204], - [-23.107307, 64.963113], - [-23.107637, 64.963589], - [-23.110977, 64.964187], - [-23.115321, 64.964882], - [-23.119356, 64.965352], - [-23.119273, 64.965125], - [-23.118978, 64.965], - [-23.119139, 64.964849], - [-23.119505, 64.964838], - [-23.119898, 64.965049], - [-23.119916, 64.965302], - [-23.119871, 64.965495], - [-23.119657, 64.965801], - [-23.119309, 64.966062], - [-23.118782, 64.966187], - [-23.118452, 64.966183], - [-23.118255, 64.966047], - [-23.118443, 64.965903], - [-23.118764, 64.965873], - [-23.118961, 64.96582], - [-23.119014, 64.965687], - [-23.11229, 64.964797], - [-23.10494, 64.963482], - [-23.101652, 64.963879], - [-23.100358, 64.963722], - [-23.100684, 64.963507], - [-23.102068, 64.962965], - [-23.097176, 64.962068], - [-23.091297, 64.961327], - [-23.09017, 64.962886], - [-23.089712, 64.963872], - [-23.09017, 64.964519], - [-23.091889, 64.964939], - [-23.093989, 64.965262], - [-23.097809, 64.96544], - [-23.104339, 64.968494], - [-23.102201, 64.968317], - [-23.099756, 64.967735], - [-23.093493, 64.965828], - [-23.089407, 64.965246], - [-23.088109, 64.965546], - [-23.087692, 64.96592], - [-23.087061, 64.965594], - [-23.086783, 64.96507], - [-23.086006, 64.964759], - [-23.08501, 64.964438], - [-23.08345, 64.964471], - [-23.08171, 64.9645], - [-23.08122, 64.96371], - [-23.07772, 64.96285], - [-23.07779, 64.96234], - [-23.06133, 64.95921], - [-23.05585, 64.95945], - [-23.055796, 64.959844], - [-23.05578, 64.95996], - [-23.055294, 64.959948], - [-23.05457, 64.95993], - [-23.05446, 64.9607], - [-23.05324, 64.96079], - [-23.047394, 64.959481], - [-23.04686, 64.95897], - [-23.04506, 64.95854], - [-23.04178, 64.95652], - [-23.038147, 64.956552], - [-23.03443, 64.95709], - [-23.03373, 64.95784], - [-23.03052, 64.958871], - [-23.029973, 64.959249], - [-23.029605, 64.959503], - [-23.024916, 64.962745], - [-23.024773, 64.963252], - [-23.02409, 64.96373], - [-23.02582, 64.96429], - [-23.026611, 64.964987], - [-23.03019, 64.96543], - [-23.0327, 64.966193], - [-23.04695, 64.96652], - [-23.04802, 64.966153], - [-23.049486, 64.965544], - [-23.05001, 64.96417], - [-23.0516, 64.9637], - [-23.052373, 64.964532], - [-23.05559, 64.96534], - [-23.05683, 64.96716], - [-23.05653, 64.9692], - [-23.04896, 64.97746], - [-23.04761, 64.97844], - [-23.04629, 64.97918], - [-23.04524, 64.98017], - [-23.04477, 64.98119], - [-23.04358, 64.98115], - [-23.04226, 64.98189], - [-23.04049, 64.98568], - [-23.03887, 64.98846], - [-23.03766, 64.98842], - [-23.03781, 64.98945], - [-23.03672, 64.99071], - [-23.036, 64.99145], - [-23.03381, 64.99396], - [-23.03201, 64.9939], - [-23.03005, 64.99488], - [-23.02997, 64.99539], - [-23.02865, 64.99613], - [-23.027401, 64.99653], - [-23.02677, 64.996717], - [-23.02673, 64.99684], - [-23.02665, 64.99735], - [-23.02529, 64.99834], - [-23.024047, 64.999017], - [-23.0213, 65.0008], - [-23.02009, 65.001232], - [-23.01937, 65.00151], - [-23.01847, 65.002105], - [-23.01594, 65.00424], - [-23.004535, 65.006725], - [-22.997283, 65.007232], - [-22.986342, 65.008131], - [-22.98461, 65.00724], - [-22.982433, 65.006852], - [-22.979641, 65.007379], - [-22.97604, 65.00791], - [-22.965061, 65.007271], - [-22.96335, 65.00769], - [-22.96208, 65.00817], - [-22.96079, 65.00865], - [-22.957287, 65.00828], - [-22.956635, 65.007518], - [-22.96249, 65.00536], - [-22.96017, 65.00466], - [-22.95711, 65.00496], - [-22.95718, 65.00445], - [-22.953767, 65.004113], - [-22.952393, 65.005999], - [-22.951449, 65.006326], - [-22.95102, 65.00716], - [-22.950333, 65.007287], - [-22.948359, 65.0058], - [-22.947197, 65.004696], - [-22.945012, 65.004041], - [-22.94887, 65.0032], - [-22.951192, 65.003098], - [-22.952825, 65.002782], - [-22.95276, 65.00178], - [-22.951883, 65.001631], - [-22.95226, 65.00099], - [-22.951053, 65.000956], - [-22.95117, 65.00019], - [-22.947165, 65.000016], - [-22.94854, 64.999429], - [-22.94903, 64.99834], - [-22.94812, 64.998362], - [-22.9466, 64.9984], - [-22.94381, 64.999543], - [-22.940291, 64.999072], - [-22.94066, 64.9976], - [-22.931493, 64.996714], - [-22.931346, 64.995127], - [-22.933282, 64.993848], - [-22.933773, 64.993535], - [-22.935104, 64.992763], - [-22.936793, 64.991922], - [-22.93569, 64.991327], - [-22.936207, 64.990954], - [-22.937021, 64.99066], - [-22.938276, 64.99033], - [-22.939568, 64.990073], - [-22.939797, 64.989607], - [-22.936603, 64.989663], - [-22.936109, 64.989993], - [-22.934322, 64.989784], - [-22.933751, 64.989374], - [-22.93301, 64.989398], - [-22.932896, 64.989085], - [-22.933694, 64.988787], - [-22.932725, 64.988474], - [-22.931603, 64.988667], - [-22.931242, 64.98841], - [-22.930557, 64.988474], - [-22.931318, 64.989173], - [-22.928656, 64.989446], - [-22.92725, 64.989977], - [-22.924189, 64.989937], - [-22.923334, 64.989342], - [-22.923752, 64.988884], - [-22.922402, 64.98857], - [-22.921946, 64.988699], - [-22.921566, 64.988586], - [-22.921699, 64.988369], - [-22.921356, 64.987903], - [-22.92071, 64.987831], - [-22.920159, 64.987421], - [-22.920843, 64.986858], - [-22.920805, 64.986263], - [-22.920064, 64.985138], - [-22.917098, 64.984921], - [-22.915672, 64.984607], - [-22.914571, 64.984253], - [-22.914323, 64.984173], - [-22.913239, 64.9848], - [-22.911737, 64.985315], - [-22.91284, 64.986464], - [-22.911414, 64.986963], - [-22.910711, 64.986778], - [-22.910387, 64.98644], - [-22.910121, 64.986488], - [-22.91014, 64.986818], - [-22.909817, 64.98734], - [-22.909798, 64.987967], - [-22.910463, 64.98902], - [-22.909361, 64.98988], - [-22.909627, 64.990604], - [-22.910274, 64.99112], - [-22.91178, 64.991223], - [-22.91463, 64.990211], - [-22.916688, 64.990618], - [-22.916977, 64.991374], - [-22.91492, 64.99177], - [-22.913048, 64.992179], - [-22.912296, 64.992605], - [-22.912732, 64.992961], - [-22.912762, 64.993647], - [-22.911124, 64.994594], - [-22.910417, 64.994982], - [-22.910191, 64.995459], - [-22.911184, 64.995459], - [-22.91183, 64.995204], - [-22.913695, 64.994645], - [-22.914491, 64.994591], - [-22.91447, 64.994861], - [-22.912173, 64.995913], - [-22.91181, 64.9963], - [-22.910345, 64.996802], - [-22.909516, 64.99718], - [-22.908495, 64.997404], - [-22.90796, 64.99773], - [-22.907012, 64.997863], - [-22.906538, 64.997691], - [-22.906252, 64.997551], - [-22.905651, 64.997685], - [-22.905508, 64.997904], - [-22.905365, 64.998193], - [-22.904538, 64.998298], - [-22.904224, 64.998635], - [-22.90294, 64.99808], - [-22.900678, 64.997574], - [-22.900449, 64.997367], - [-22.900707, 64.997032], - [-22.900503, 64.996291], - [-22.899857, 64.996342], - [-22.900032, 64.9967], - [-22.89936, 64.997148], - [-22.898903, 64.997404], - [-22.898728, 64.997808], - [-22.897949, 64.997864], - [-22.897303, 64.997825], - [-22.896255, 64.998001], - [-22.895421, 64.998751], - [-22.892558, 64.998734], - [-22.889036, 64.998217], - [-22.888082, 64.997665], - [-22.888929, 64.996416], - [-22.888472, 64.996319], - [-22.88755, 64.99666], - [-22.886953, 64.996961], - [-22.88624, 64.997535], - [-22.885608, 64.997671], - [-22.885716, 64.99812], - [-22.88486, 64.99837], - [-22.88301, 64.99858], - [-22.88297, 64.99883], - [-22.8848, 64.99876], - [-22.88607, 64.99841], - [-22.88562, 64.99874], - [-22.88595, 64.99917], - [-22.878988, 65.000995], - [-22.878765, 65.001184], - [-22.87772, 65.00151], - [-22.877456, 65.001534], - [-22.877325, 65.00172], - [-22.877911, 65.002243], - [-22.876606, 65.002696], - [-22.875932, 65.00277], - [-22.87523, 65.003153], - [-22.874001, 65.003225], - [-22.872993, 65.00322], - [-22.871744, 65.003037], - [-22.870636, 65.003144], - [-22.869977, 65.003142], - [-22.866244, 65.00357], - [-22.866073, 65.004236], - [-22.86427, 65.004281], - [-22.862232, 65.004245], - [-22.860831, 65.004538], - [-22.858481, 65.004905], - [-22.857322, 65.004862], - [-22.856339, 65.004748], - [-22.855945, 65.004833], - [-22.855563, 65.004941], - [-22.855478, 65.004681], - [-22.8549, 65.004481], - [-22.854893, 65.004164], - [-22.854468, 65.003728], - [-22.853033, 65.003113], - [-22.851534, 65.002681], - [-22.85107, 65.0029], - [-22.850579, 65.002887], - [-22.850388, 65.00284], - [-22.850226, 65.002784], - [-22.849993, 65.002803], - [-22.849846, 65.00294], - [-22.848523, 65.003261], - [-22.845741, 65.003383], - [-22.843773, 65.003142], - [-22.84234, 65.00321], - [-22.837403, 65.004023], - [-22.836862, 65.004481], - [-22.83605, 65.0047], - [-22.835156, 65.005079], - [-22.8328, 65.00615], - [-22.830988, 65.006498], - [-22.82962, 65.00709], - [-22.827363, 65.007456], - [-22.8259, 65.008358], - [-22.825855, 65.008888], - [-22.825787, 65.009657], - [-22.825366, 65.009994], - [-22.823434, 65.010537], - [-22.822584, 65.010591], - [-22.821768, 65.011775], - [-22.82026, 65.01272], - [-22.817528, 65.013033], - [-22.81471, 65.013971], - [-22.813105, 65.014151], - [-22.811861, 65.014717], - [-22.81027, 65.01461], - [-22.808247, 65.014349], - [-22.805791, 65.014627], - [-22.79881, 65.014479], - [-22.795098, 65.014552], - [-22.79068, 65.01445], - [-22.789459, 65.015071], - [-22.788098, 65.015516], - [-22.78723, 65.015569], - [-22.786515, 65.015399], - [-22.786131, 65.015463], - [-22.786322, 65.015624], - [-22.786653, 65.015792], - [-22.786053, 65.016011], - [-22.785414, 65.016125], - [-22.783743, 65.016435], - [-22.781775, 65.016714], - [-22.781704, 65.016993], - [-22.781488, 65.017151], - [-22.781155, 65.01725], - [-22.78078, 65.01724], - [-22.780592, 65.017182], - [-22.780523, 65.017112], - [-22.780728, 65.017033], - [-22.780714, 65.016969], - [-22.780595, 65.016831], - [-22.780313, 65.016766], - [-22.779914, 65.01687], - [-22.779705, 65.017011], - [-22.779686, 65.017149], - [-22.780047, 65.017253], - [-22.78001, 65.017341], - [-22.779673, 65.017443], - [-22.779343, 65.017454], - [-22.778806, 65.017408], - [-22.777948, 65.017215], - [-22.777815, 65.016942], - [-22.77853, 65.01615], - [-22.779434, 65.015676], - [-22.77996, 65.015523], - [-22.780299, 65.015272], - [-22.780216, 65.015082], - [-22.779818, 65.014983], - [-22.779336, 65.014971], - [-22.779066, 65.015085], - [-22.77745, 65.015412], - [-22.776764, 65.016517], - [-22.774819, 65.017025], - [-22.77415, 65.01705], - [-22.77316, 65.017222], - [-22.772878, 65.017249], - [-22.772641, 65.017168], - [-22.772333, 65.017055], - [-22.772182, 65.016868], - [-22.771983, 65.016894], - [-22.771953, 65.017016], - [-22.771792, 65.017033], - [-22.771645, 65.017222], - [-22.771566, 65.01743], - [-22.771675, 65.017544], - [-22.771931, 65.017575], - [-22.77228, 65.017589], - [-22.7726, 65.017549], - [-22.772844, 65.017413], - [-22.773408, 65.0173], - [-22.773866, 65.017182], - [-22.774144, 65.01714], - [-22.774302, 65.017086], - [-22.774654, 65.017091], - [-22.775049, 65.01717], - [-22.776059, 65.017323], - [-22.775793, 65.017493], - [-22.775746, 65.017585], - [-22.776006, 65.017704], - [-22.776814, 65.017785], - [-22.777728, 65.017915], - [-22.778377, 65.018185], - [-22.779302, 65.018176], - [-22.77999, 65.018204], - [-22.779905, 65.018702], - [-22.779746, 65.018925], - [-22.779905, 65.019138], - [-22.779809, 65.019264], - [-22.778421, 65.01949], - [-22.777943, 65.019261], - [-22.776922, 65.019009], - [-22.775359, 65.018852], - [-22.774198, 65.018592], - [-22.773506, 65.018374], - [-22.772925, 65.018322], - [-22.772616, 65.018493], - [-22.772064, 65.018659], - [-22.771617, 65.019112], - [-22.770969, 65.019283], - [-22.771128, 65.019606], - [-22.77031, 65.019871], - [-22.770443, 65.020014], - [-22.769884, 65.020185], - [-22.769895, 65.020334], - [-22.77065, 65.020302], - [-22.771441, 65.020409], - [-22.771883, 65.020262], - [-22.772728, 65.020234], - [-22.77362, 65.020183], - [-22.773435, 65.02045], - [-22.772181, 65.020648], - [-22.77217, 65.020823], - [-22.772234, 65.020976], - [-22.773018, 65.020979], - [-22.773669, 65.021047], - [-22.773913, 65.021254], - [-22.774772, 65.021192], - [-22.775232, 65.021232], - [-22.775249, 65.021399], - [-22.774646, 65.021558], - [-22.775099, 65.021751], - [-22.774598, 65.021982], - [-22.774558, 65.02211], - [-22.774505, 65.022437], - [-22.774062, 65.022516], - [-22.77386, 65.02268], - [-22.774182, 65.02277], - [-22.774761, 65.022675], - [-22.775724, 65.022393], - [-22.776617, 65.022103], - [-22.776961, 65.022003], - [-22.777429, 65.022034], - [-22.777835, 65.022187], - [-22.778146, 65.022517], - [-22.779251, 65.022872], - [-22.779375, 65.02355], - [-22.779315, 65.024084], - [-22.779616, 65.024212], - [-22.77989, 65.024246], - [-22.780037, 65.024313], - [-22.779187, 65.024506], - [-22.778826, 65.02491], - [-22.777293, 65.025272], - [-22.776607, 65.025197], - [-22.776124, 65.025211], - [-22.775115, 65.025455], - [-22.773077, 65.025618], - [-22.772326, 65.025743], - [-22.772034, 65.025948], - [-22.771836, 65.026305], - [-22.772106, 65.026413], - [-22.772562, 65.026461], - [-22.773485, 65.026252], - [-22.77415, 65.026257], - [-22.774123, 65.026354], - [-22.774257, 65.026452], - [-22.774552, 65.026452], - [-22.775083, 65.026357], - [-22.77636, 65.026157], - [-22.777625, 65.025988], - [-22.779686, 65.026089], - [-22.780029, 65.026452], - [-22.77891, 65.026873], - [-22.776962, 65.027317], - [-22.77611, 65.02761], - [-22.772905, 65.028318], - [-22.770717, 65.028454], - [-22.768764, 65.028789], - [-22.766511, 65.028861], - [-22.764061, 65.029276], - [-22.763005, 65.029636], - [-22.759763, 65.03055], - [-22.759945, 65.030673], - [-22.760653, 65.030619], - [-22.760438, 65.030859], - [-22.760374, 65.031035], - [-22.759651, 65.031169], - [-22.75866, 65.031767], - [-22.758003, 65.031864], - [-22.757992, 65.032005], - [-22.75826, 65.03215], - [-22.758311, 65.032416], - [-22.758936, 65.032584], - [-22.759666, 65.032566], - [-22.760589, 65.032457], - [-22.761533, 65.032076], - [-22.763271, 65.03157], - [-22.766575, 65.031217], - [-22.768313, 65.031434], - [-22.769386, 65.031452], - [-22.770315, 65.031255], - [-22.771296, 65.030827], - [-22.773549, 65.030202], - [-22.776145, 65.029034], - [-22.77903, 65.02833], - [-22.781617, 65.027974], - [-22.784106, 65.0281], - [-22.786041, 65.02796], - [-22.786939, 65.027611], - [-22.787411, 65.027149], - [-22.786788, 65.027004], - [-22.785394, 65.027013], - [-22.785437, 65.026551], - [-22.78786, 65.02615], - [-22.78998, 65.025847], - [-22.79039, 65.02545], - [-22.79106, 65.025396], - [-22.79164, 65.02523], - [-22.792732, 65.025093], - [-22.792866, 65.024547], - [-22.793676, 65.024151], - [-22.793733, 65.023655], - [-22.796371, 65.022919], - [-22.796924, 65.02282], - [-22.797619, 65.022887], - [-22.79789, 65.023237], - [-22.797861, 65.023472], - [-22.798265, 65.023897], - [-22.798709, 65.024459], - [-22.80152, 65.025305], - [-22.80539, 65.02605], - [-22.808366, 65.027262], - [-22.816669, 65.026642], - [-22.817828, 65.026833], - [-22.817872, 65.027162], - [-22.818579, 65.02739], - [-22.819375, 65.027245], - [-22.820593, 65.027067], - [-22.82151, 65.026699], - [-22.823089, 65.026515], - [-22.824196, 65.026794], - [-22.825366, 65.026662], - [-22.825595, 65.02624], - [-22.825664, 65.025867], - [-22.826529, 65.0254], - [-22.827502, 65.025161], - [-22.828408, 65.025092], - [-22.828788, 65.025277], - [-22.828675, 65.025502], - [-22.82831, 65.02574], - [-22.827916, 65.025945], - [-22.827728, 65.026065], - [-22.82757, 65.026057], - [-22.827461, 65.026105], - [-22.827596, 65.026365], - [-22.82799, 65.026429], - [-22.828479, 65.026395], - [-22.82892, 65.026307], - [-22.829351, 65.026361], - [-22.829489, 65.026269], - [-22.82969, 65.02604], - [-22.831167, 65.025718], - [-22.831879, 65.025592], - [-22.831911, 65.025368], - [-22.831464, 65.025076], - [-22.831628, 65.024719], - [-22.832957, 65.024551], - [-22.834749, 65.024614], - [-22.834716, 65.025143], - [-22.833634, 65.025384], - [-22.833047, 65.025492], - [-22.832656, 65.025714], - [-22.832536, 65.026051], - [-22.832987, 65.026158], - [-22.833498, 65.026006], - [-22.8341, 65.025904], - [-22.835326, 65.025506], - [-22.837886, 65.025274], - [-22.838661, 65.025395], - [-22.839591, 65.026167], - [-22.839814, 65.02641], - [-22.838676, 65.026657], - [-22.838464, 65.027119], - [-22.839329, 65.027576], - [-22.839995, 65.028132], - [-22.840547, 65.028012], - [-22.843067, 65.026657], - [-22.84369, 65.026699], - [-22.843616, 65.027139], - [-22.844742, 65.027341], - [-22.845742, 65.02753], - [-22.846699, 65.027328], - [-22.848528, 65.026257], - [-22.851259, 65.025537], - [-22.851791, 65.025609], - [-22.851281, 65.026336], - [-22.850154, 65.026628], - [-22.850079, 65.026892], - [-22.85065, 65.02765], - [-22.851887, 65.027812], - [-22.85433, 65.02737], - [-22.855527, 65.027329], - [-22.85793, 65.0276], - [-22.858412, 65.028054], - [-22.858016, 65.028317], - [-22.857841, 65.0286], - [-22.858509, 65.028906], - [-22.859406, 65.029082], - [-22.860151, 65.029166], - [-22.861256, 65.029082], - [-22.86351, 65.028714], - [-22.865232, 65.028607], - [-22.866038, 65.028429], - [-22.866304, 65.028548], - [-22.866508, 65.02875], - [-22.866874, 65.028887], - [-22.867289, 65.029123], - [-22.867634, 65.029213], - [-22.867789, 65.029239], - [-22.867933, 65.029216], - [-22.868009, 65.029159], - [-22.868091, 65.029109], - [-22.868254, 65.029074], - [-22.868317, 65.029119], - [-22.868314, 65.029151], - [-22.868301, 65.029196], - [-22.868381, 65.02928], - [-22.86849, 65.029294], - [-22.868806, 65.02933], - [-22.869072, 65.0294], - [-22.869185, 65.029447], - [-22.869427, 65.029448], - [-22.869685, 65.02945], - [-22.869894, 65.029415], - [-22.87004, 65.029396], - [-22.870067, 65.029435], - [-22.870052, 65.02946], - [-22.869723, 65.029526], - [-22.869506, 65.029611], - [-22.869244, 65.029586], - [-22.869168, 65.029579], - [-22.868825, 65.029552], - [-22.86868, 65.029591], - [-22.868551, 65.029742], - [-22.868546, 65.030131], - [-22.868306, 65.030441], - [-22.868265, 65.030494], - [-22.868007, 65.030953], - [-22.868023, 65.031116], - [-22.867747, 65.031242], - [-22.86763, 65.03145], - [-22.867875, 65.031478], - [-22.868172, 65.031347], - [-22.868539, 65.031312], - [-22.869014, 65.031093], - [-22.869464, 65.031173], - [-22.869948, 65.031139], - [-22.870378, 65.031244], - [-22.870671, 65.031478], - [-22.871261, 65.031581], - [-22.871454, 65.031741], - [-22.871351, 65.031859], - [-22.86925, 65.03278], - [-22.867283, 65.034048], - [-22.86531, 65.03472], - [-22.864712, 65.035016], - [-22.864403, 65.03533], - [-22.863755, 65.035448], - [-22.861941, 65.035196], - [-22.86048, 65.034607], - [-22.860179, 65.034189], - [-22.858405, 65.034953], - [-22.857306, 65.035911], - [-22.855238, 65.035373], - [-22.854714, 65.034677], - [-22.855228, 65.034336], - [-22.85573, 65.03394], - [-22.85581, 65.03343], - [-22.85396, 65.03364], - [-22.854199, 65.03177], - [-22.855, 65.03085], - [-22.853659, 65.030477], - [-22.852642, 65.029916], - [-22.848861, 65.029633], - [-22.84201, 65.03254], - [-22.839045, 65.03375], - [-22.839007, 65.035075], - [-22.836767, 65.035928], - [-22.836009, 65.03653], - [-22.834049, 65.037565], - [-22.833492, 65.037584], - [-22.833514, 65.037131], - [-22.83047, 65.037646], - [-22.830059, 65.038453], - [-22.82855, 65.039151], - [-22.827393, 65.039682], - [-22.822613, 65.041043], - [-22.817033, 65.043519], - [-22.81065, 65.043744], - [-22.808223, 65.044484], - [-22.807676, 65.044167], - [-22.81198, 65.04233], - [-22.814009, 65.041874], - [-22.814932, 65.041391], - [-22.816209, 65.040142], - [-22.8179, 65.03942], - [-22.826033, 65.035748], - [-22.826908, 65.035652], - [-22.82859, 65.03498], - [-22.832177, 65.032582], - [-22.833986, 65.032349], - [-22.834657, 65.032128], - [-22.834397, 65.031014], - [-22.833385, 65.031063], - [-22.831893, 65.03084], - [-22.830199, 65.031963], - [-22.830145, 65.032168], - [-22.831028, 65.03235], - [-22.828566, 65.03383], - [-22.826233, 65.033916], - [-22.824572, 65.034555], - [-22.823153, 65.034925], - [-22.82215, 65.03557], - [-22.82181, 65.035684], - [-22.820234, 65.03645], - [-22.816908, 65.036835], - [-22.816016, 65.037651], - [-22.814056, 65.038079], - [-22.813434, 65.038327], - [-22.812845, 65.038886], - [-22.81439, 65.03855], - [-22.81587, 65.03812], - [-22.817971, 65.037923], - [-22.812123, 65.040785], - [-22.809851, 65.041365], - [-22.807899, 65.042027], - [-22.805081, 65.043217], - [-22.804108, 65.043516], - [-22.800527, 65.04472], - [-22.798901, 65.045088], - [-22.798131, 65.045383], - [-22.797931, 65.045923], - [-22.796652, 65.047104], - [-22.795307, 65.047526], - [-22.794204, 65.047808], - [-22.79349, 65.04808], - [-22.7897, 65.049], - [-22.78765, 65.05048], - [-22.78644, 65.05045], - [-22.78491, 65.05245], - [-22.78371, 65.05242], - [-22.7808, 65.05541], - [-22.78201, 65.05544], - [-22.78121, 65.0567], - [-22.77935, 65.05691], - [-22.77859, 65.05791], - [-22.77738, 65.05788], - [-22.7773, 65.05839], - [-22.76929, 65.05918], - [-22.76855, 65.05993], - [-22.76614, 65.05986], - [-22.76606, 65.06037], - [-22.76107, 65.06126], - [-22.76098, 65.06177], - [-22.7603, 65.06226], - [-22.75901, 65.06273], - [-22.75401, 65.06362], - [-22.75325, 65.06462], - [-22.75204, 65.06459], - [-22.75065, 65.065847], - [-22.750457, 65.065891], - [-22.750272, 65.066005], - [-22.749798, 65.066142], - [-22.749426, 65.066185], - [-22.749544, 65.066416], - [-22.750031, 65.066411], - [-22.750038, 65.066645], - [-22.749599, 65.066954], - [-22.749475, 65.067331], - [-22.748913, 65.067656], - [-22.748365, 65.067893], - [-22.7486, 65.068033], - [-22.748103, 65.068473], - [-22.74708, 65.06906], - [-22.750562, 65.068423], - [-22.750978, 65.068361], - [-22.751338, 65.068314], - [-22.751564, 65.068228], - [-22.751726, 65.068232], - [-22.75197, 65.068205], - [-22.752067, 65.06824], - [-22.752437, 65.068197], - [-22.752727, 65.068127], - [-22.752986, 65.068121], - [-22.752746, 65.068221], - [-22.752635, 65.06823], - [-22.752649, 65.068271], - [-22.754108, 65.06808], - [-22.754343, 65.068178], - [-22.754929, 65.068124], - [-22.754025, 65.068414], - [-22.753558, 65.068448], - [-22.75287, 65.068665], - [-22.752578, 65.068894], - [-22.752076, 65.06906], - [-22.750931, 65.069122], - [-22.750502, 65.069204], - [-22.750363, 65.069171], - [-22.749832, 65.069237], - [-22.74973, 65.069344], - [-22.749426, 65.069435], - [-22.749328, 65.069518], - [-22.749159, 65.069491], - [-22.749091, 65.069648], - [-22.748678, 65.06963], - [-22.748443, 65.069801], - [-22.748279, 65.070056], - [-22.748481, 65.070285], - [-22.748559, 65.070347], - [-22.74851, 65.070389], - [-22.748427, 65.070409], - [-22.7485, 65.07047], - [-22.748632, 65.070463], - [-22.748639, 65.070399], - [-22.748717, 65.07037], - [-22.749045, 65.070381], - [-22.749102, 65.07032], - [-22.74865, 65.070259], - [-22.748936, 65.070057], - [-22.749194, 65.070126], - [-22.749301, 65.070142], - [-22.749848, 65.070019], - [-22.750233, 65.07006], - [-22.750558, 65.070002], - [-22.750627, 65.069997], - [-22.750682, 65.070027], - [-22.750734, 65.070038], - [-22.75072, 65.070001], - [-22.750886, 65.069955], - [-22.751093, 65.069942], - [-22.751409, 65.069975], - [-22.750674, 65.070265], - [-22.751597, 65.070354], - [-22.75232, 65.070334], - [-22.752796, 65.070414], - [-22.752818, 65.070533], - [-22.752666, 65.070613], - [-22.752231, 65.07072], - [-22.751979, 65.070823], - [-22.751354, 65.070999], - [-22.751161, 65.071008], - [-22.751057, 65.071075], - [-22.749988, 65.071275], - [-22.749587, 65.071293], - [-22.749449, 65.071291], - [-22.749207, 65.071229], - [-22.749174, 65.071162], - [-22.749054, 65.071183], - [-22.748861, 65.071198], - [-22.748809, 65.071245], - [-22.748599, 65.071256], - [-22.748367, 65.071224], - [-22.747279, 65.071481], - [-22.746934, 65.071392], - [-22.746269, 65.071535], - [-22.745706, 65.072032], - [-22.746749, 65.072392], - [-22.745595, 65.072765], - [-22.745157, 65.072588], - [-22.744387, 65.072672], - [-22.743897, 65.072739], - [-22.743021, 65.072733], - [-22.742703, 65.072627], - [-22.742597, 65.072487], - [-22.741974, 65.072377], - [-22.741288, 65.07236], - [-22.741218, 65.072471], - [-22.742196, 65.07262], - [-22.74259, 65.072858], - [-22.742427, 65.073177], - [-22.742211, 65.073611], - [-22.741419, 65.074125], - [-22.741379, 65.074316], - [-22.741208, 65.074504], - [-22.740774, 65.074665], - [-22.740229, 65.074907], - [-22.739775, 65.075197], - [-22.739564, 65.075515], - [-22.739674, 65.075852], - [-22.739028, 65.076196], - [-22.738322, 65.076417], - [-22.737551, 65.076554], - [-22.736809, 65.076727], - [-22.735753, 65.077198], - [-22.735204, 65.077625], - [-22.73459, 65.077943], - [-22.734219, 65.078036], - [-22.733941, 65.078172], - [-22.733534, 65.078277], - [-22.73285, 65.07826], - [-22.732278, 65.078126], - [-22.73188, 65.078052], - [-22.731244, 65.077992], - [-22.730996, 65.077947], - [-22.730835, 65.078026], - [-22.730583, 65.078345], - [-22.730502, 65.078449], - [-22.730184, 65.078536], - [-22.729836, 65.078564], - [-22.72923, 65.078594], - [-22.728806, 65.078574], - [-22.728521, 65.078476], - [-22.728361, 65.078364], - [-22.728275, 65.078265], - [-22.728275, 65.078201], - [-22.728229, 65.078173], - [-22.728108, 65.078215], - [-22.728051, 65.078197], - [-22.728033, 65.078149], - [-22.727958, 65.078123], - [-22.727894, 65.078139], - [-22.727808, 65.078123], - [-22.727762, 65.078081], - [-22.727665, 65.078086], - [-22.727601, 65.07818], - [-22.727544, 65.07828], - [-22.72745, 65.078304], - [-22.72738, 65.078283], - [-22.727392, 65.078186], - [-22.727312, 65.078167], - [-22.727271, 65.078109], - [-22.726651, 65.078195], - [-22.725535, 65.078103], - [-22.725366, 65.078403], - [-22.725034, 65.078372], - [-22.72532, 65.077818], - [-22.724326, 65.077766], - [-22.7242, 65.077786], - [-22.724145, 65.07784], - [-22.724099, 65.077948], - [-22.724089, 65.077971], - [-22.723929, 65.078225], - [-22.723853, 65.078345], - [-22.723824, 65.078393], - [-22.723884, 65.078436], - [-22.724, 65.078476], - [-22.724136, 65.078557], - [-22.724106, 65.078617], - [-22.723965, 65.07864], - [-22.723808, 65.07861], - [-22.723632, 65.078546], - [-22.723512, 65.078529], - [-22.723298, 65.078574], - [-22.722627, 65.078716], - [-22.722422, 65.078759], - [-22.722294, 65.078813], - [-22.72222, 65.078913], - [-22.72223, 65.079024], - [-22.722308, 65.079191], - [-22.722375, 65.079254], - [-22.722516, 65.079351], - [-22.722692, 65.079435], - [-22.723143, 65.079462], - [-22.723318, 65.079466], - [-22.724221, 65.079486], - [-22.724575, 65.079494], - [-22.724578, 65.079434], - [-22.725676, 65.079455], - [-22.725668, 65.079498], - [-22.725657, 65.079566], - [-22.725889, 65.079567], - [-22.725879, 65.079593], - [-22.726657, 65.079614], - [-22.726628, 65.079658], - [-22.726834, 65.079652], - [-22.726918, 65.079686], - [-22.726946, 65.079708], - [-22.726961, 65.079737], - [-22.727139, 65.079737], - [-22.72717, 65.07978], - [-22.727256, 65.079804], - [-22.727357, 65.079799], - [-22.727371, 65.079817], - [-22.727403, 65.079832], - [-22.727447, 65.079831], - [-22.727497, 65.079862], - [-22.727587, 65.079883], - [-22.727711, 65.079909], - [-22.727798, 65.079945], - [-22.727825, 65.079981], - [-22.727815, 65.079994], - [-22.727749, 65.080008], - [-22.727767, 65.080029], - [-22.727814, 65.080048], - [-22.727783, 65.080059], - [-22.727822, 65.080089], - [-22.727826, 65.08012], - [-22.727857, 65.080139], - [-22.727798, 65.080172], - [-22.727702, 65.080149], - [-22.727725, 65.080186], - [-22.727702, 65.080225], - [-22.727571, 65.080296], - [-22.727467, 65.080336], - [-22.727275, 65.080398], - [-22.727216, 65.080428], - [-22.727035, 65.080484], - [-22.726876, 65.080513], - [-22.726776, 65.080501], - [-22.726614, 65.08057], - [-22.726215, 65.080666], - [-22.726134, 65.080681], - [-22.72599, 65.080679], - [-22.725933, 65.080744], - [-22.725847, 65.080785], - [-22.725763, 65.080807], - [-22.725654, 65.080884], - [-22.725579, 65.080911], - [-22.725397, 65.081013], - [-22.725358, 65.081041], - [-22.725168, 65.080993], - [-22.725024, 65.081023], - [-22.724906, 65.081059], - [-22.724814, 65.081145], - [-22.724767, 65.081161], - [-22.72469, 65.081124], - [-22.724531, 65.081126], - [-22.724504, 65.081147], - [-22.724422, 65.081153], - [-22.724286, 65.081114], - [-22.724202, 65.081086], - [-22.724145, 65.081028], - [-22.723873, 65.081014], - [-22.723891, 65.08107], - [-22.723847, 65.081094], - [-22.723697, 65.081101], - [-22.723607, 65.081163], - [-22.723489, 65.081208], - [-22.723012, 65.081275], - [-22.722782, 65.081276], - [-22.722507, 65.081104], - [-22.722034, 65.080972], - [-22.721557, 65.080833], - [-22.721557, 65.080728], - [-22.721689, 65.080623], - [-22.721789, 65.08053], - [-22.721917, 65.080467], - [-22.721862, 65.080414], - [-22.721862, 65.080325], - [-22.722031, 65.080271], - [-22.722092, 65.080167], - [-22.722119, 65.08003], - [-22.722269, 65.079874], - [-22.722433, 65.079769], - [-22.722033, 65.079477], - [-22.721793, 65.079257], - [-22.721712, 65.079105], - [-22.7217, 65.078959], - [-22.721703, 65.078827], - [-22.721751, 65.07868], - [-22.721815, 65.078574], - [-22.721778, 65.07838], - [-22.721712, 65.078284], - [-22.721678, 65.078145], - [-22.721228, 65.078106], - [-22.720605, 65.077888], - [-22.720163, 65.077873], - [-22.719839, 65.077862], - [-22.719656, 65.077898], - [-22.719648, 65.07793], - [-22.719321, 65.077941], - [-22.719033, 65.07783], - [-22.718738, 65.077795], - [-22.718646, 65.077863], - [-22.718583, 65.077852], - [-22.71858, 65.077803], - [-22.718449, 65.077787], - [-22.718443, 65.077734], - [-22.718413, 65.077577], - [-22.717833, 65.077471], - [-22.717118, 65.077554], - [-22.71701, 65.077417], - [-22.716467, 65.07746], - [-22.716653, 65.077096], - [-22.717754, 65.077013], - [-22.718136, 65.076844], - [-22.718334, 65.076744], - [-22.718333, 65.076645], - [-22.718416, 65.076598], - [-22.71823, 65.076454], - [-22.718164, 65.076314], - [-22.718548, 65.07606], - [-22.718891, 65.075959], - [-22.718858, 65.07593], - [-22.718971, 65.075855], - [-22.719139, 65.075851], - [-22.719206, 65.075808], - [-22.719295, 65.07581], - [-22.719312, 65.075785], - [-22.719437, 65.07576], - [-22.719537, 65.075663], - [-22.720023, 65.075466], - [-22.720556, 65.075305], - [-22.720718, 65.075304], - [-22.720805, 65.075278], - [-22.721093, 65.075261], - [-22.721322, 65.075371], - [-22.721384, 65.075464], - [-22.721511, 65.075593], - [-22.72153, 65.075715], - [-22.721503, 65.075799], - [-22.721497, 65.075877], - [-22.721749, 65.075896], - [-22.72179, 65.07585], - [-22.721899, 65.075813], - [-22.721913, 65.075776], - [-22.722027, 65.075689], - [-22.721978, 65.075649], - [-22.722178, 65.075499], - [-22.722207, 65.07541], - [-22.722539, 65.075344], - [-22.722633, 65.075327], - [-22.722748, 65.075359], - [-22.723593, 65.074843], - [-22.723359, 65.074747], - [-22.722877, 65.074879], - [-22.722528, 65.074884], - [-22.722399, 65.074779], - [-22.722467, 65.07466], - [-22.722458, 65.074598], - [-22.7224, 65.074563], - [-22.722324, 65.074548], - [-22.721946, 65.074451], - [-22.7201, 65.074334], - [-22.719571, 65.07428], - [-22.719127, 65.074507], - [-22.719108, 65.074551], - [-22.71886, 65.07462], - [-22.718497, 65.07484], - [-22.718326, 65.074914], - [-22.718028, 65.07499], - [-22.717929, 65.075034], - [-22.717676, 65.075143], - [-22.717364, 65.074959], - [-22.71686, 65.074827], - [-22.716789, 65.074597], - [-22.716015, 65.074721], - [-22.715905, 65.074664], - [-22.716114, 65.074492], - [-22.715434, 65.074493], - [-22.71515, 65.074417], - [-22.71496, 65.074051], - [-22.714805, 65.073914], - [-22.714061, 65.073976], - [-22.714225, 65.074388], - [-22.713888, 65.074412], - [-22.713466, 65.074471], - [-22.71318, 65.074661], - [-22.71295, 65.074683], - [-22.712658, 65.074572], - [-22.712458, 65.074598], - [-22.712242, 65.074565], - [-22.712178, 65.074515], - [-22.711638, 65.074415], - [-22.711446, 65.074347], - [-22.711483, 65.074138], - [-22.711194, 65.074168], - [-22.71093, 65.074129], - [-22.710535, 65.073987], - [-22.710571, 65.073937], - [-22.710021, 65.073888], - [-22.709651, 65.073783], - [-22.708538, 65.07392], - [-22.708107, 65.073891], - [-22.70789, 65.073843], - [-22.707696, 65.073645], - [-22.707783, 65.073494], - [-22.708154, 65.073341], - [-22.708695, 65.073199], - [-22.708794, 65.07315], - [-22.709305, 65.073159], - [-22.709518, 65.073097], - [-22.709603, 65.072972], - [-22.709539, 65.072871], - [-22.709794, 65.072662], - [-22.710421, 65.072718], - [-22.710796, 65.072509], - [-22.711163, 65.072428], - [-22.71189, 65.072365], - [-22.712199, 65.072161], - [-22.712479, 65.071984], - [-22.712915, 65.071871], - [-22.713384, 65.071608], - [-22.7137, 65.071462], - [-22.714076, 65.071428], - [-22.714477, 65.07148], - [-22.715164, 65.071398], - [-22.715358, 65.071157], - [-22.715498, 65.071008], - [-22.715638, 65.070934], - [-22.715905, 65.070868], - [-22.716365, 65.070817], - [-22.716946, 65.07063], - [-22.716646, 65.070356], - [-22.716221, 65.070511], - [-22.71585, 65.070545], - [-22.715638, 65.070517], - [-22.715522, 65.070407], - [-22.715679, 65.070117], - [-22.714665, 65.069411], - [-22.714253, 65.069314], - [-22.714034, 65.069191], - [-22.71395, 65.068998], - [-22.714555, 65.068705], - [-22.715454, 65.068547], - [-22.715306, 65.068], - [-22.714984, 65.067727], - [-22.71534, 65.067497], - [-22.715872, 65.06669], - [-22.716839, 65.066036], - [-22.717328, 65.065764], - [-22.718127, 65.065509], - [-22.718372, 65.065404], - [-22.71866, 65.065337], - [-22.719111, 65.065134], - [-22.720627, 65.064689], - [-22.720765, 65.064417], - [-22.720447, 65.064222], - [-22.719772, 65.063999], - [-22.719953, 65.063928], - [-22.720245, 65.063973], - [-22.721095, 65.064223], - [-22.721622, 65.064153], - [-22.723557, 65.063305], - [-22.724086, 65.06325], - [-22.724123, 65.063164], - [-22.724677, 65.063111], - [-22.724721, 65.062998], - [-22.725113, 65.06287], - [-22.725287, 65.062534], - [-22.725903, 65.062382], - [-22.727365, 65.062392], - [-22.730393, 65.061398], - [-22.731292, 65.060942], - [-22.731986, 65.0608], - [-22.732083, 65.060681], - [-22.732226, 65.060767], - [-22.732804, 65.060686], - [-22.733722, 65.06049], - [-22.734387, 65.060496], - [-22.734546, 65.060407], - [-22.734325, 65.060385], - [-22.734141, 65.060273], - [-22.734154, 65.060169], - [-22.734246, 65.060119], - [-22.734782, 65.060044], - [-22.734904, 65.059872], - [-22.735225, 65.059797], - [-22.735408, 65.059735], - [-22.736171, 65.059592], - [-22.73631, 65.059534], - [-22.736818, 65.059364], - [-22.737106, 65.059308], - [-22.737259, 65.05924], - [-22.738392, 65.058985], - [-22.738551, 65.059005], - [-22.738903, 65.058934], - [-22.73946, 65.058917], - [-22.740055, 65.058945], - [-22.740393, 65.058886], - [-22.740889, 65.058848], - [-22.740955, 65.058986], - [-22.740572, 65.059051], - [-22.740575, 65.059151], - [-22.740701, 65.059253], - [-22.740934, 65.059384], - [-22.741495, 65.059432], - [-22.74164, 65.059468], - [-22.741917, 65.059469], - [-22.742513, 65.059404], - [-22.743051, 65.059202], - [-22.743229, 65.059212], - [-22.74371, 65.059138], - [-22.743752, 65.0591], - [-22.744146, 65.05906], - [-22.744348, 65.059014], - [-22.744493, 65.059021], - [-22.74465, 65.059001], - [-22.744969, 65.058901], - [-22.745318, 65.058847], - [-22.749111, 65.057501], - [-22.749927, 65.057498], - [-22.750356, 65.057365], - [-22.751016, 65.057299], - [-22.751781, 65.056968], - [-22.752559, 65.056727], - [-22.753144, 65.05663], - [-22.75358, 65.056512], - [-22.753921, 65.056367], - [-22.754085, 65.056104], - [-22.754556, 65.055982], - [-22.754942, 65.055598], - [-22.755726, 65.055598], - [-22.756261, 65.055409], - [-22.756522, 65.055116], - [-22.756983, 65.055032], - [-22.757356, 65.055026], - [-22.757717, 65.054911], - [-22.758501, 65.054748], - [-22.758601, 65.054549], - [-22.758912, 65.05446], - [-22.760057, 65.054502], - [-22.760609, 65.054361], - [-22.761102, 65.054283], - [-22.761665, 65.054109], - [-22.761815, 65.053979], - [-22.762501, 65.053946], - [-22.764413, 65.053462], - [-22.765202, 65.053188], - [-22.765722, 65.052936], - [-22.766106, 65.052532], - [-22.766487, 65.052383], - [-22.767243, 65.051096], - [-22.768231, 65.05019], - [-22.767508, 65.049711], - [-22.766954, 65.049514], - [-22.766394, 65.049407], - [-22.766082, 65.04948], - [-22.7661, 65.049647], - [-22.765396, 65.049659], - [-22.765079, 65.049729], - [-22.76476, 65.049867], - [-22.762749, 65.050056], - [-22.761505, 65.050288], - [-22.761014, 65.050601], - [-22.761368, 65.051638], - [-22.760882, 65.051804], - [-22.760671, 65.05216], - [-22.760187, 65.052272], - [-22.759967, 65.052472], - [-22.75921, 65.052398], - [-22.758805, 65.052543], - [-22.758814, 65.052702], - [-22.758435, 65.052814], - [-22.758022, 65.052884], - [-22.757682, 65.053054], - [-22.757371, 65.053051], - [-22.75642, 65.052888], - [-22.755707, 65.052966], - [-22.755479, 65.053252], - [-22.755853, 65.053383], - [-22.755197, 65.053393], - [-22.75474, 65.053519], - [-22.754176, 65.053515], - [-22.753472, 65.053671], - [-22.752663, 65.053571], - [-22.751712, 65.053367], - [-22.751324, 65.053172], - [-22.750586, 65.053723], - [-22.749741, 65.054035], - [-22.749257, 65.054328], - [-22.748889, 65.054718], - [-22.748646, 65.054797], - [-22.748461, 65.055096], - [-22.748549, 65.05528], - [-22.748166, 65.055363], - [-22.74795, 65.055476], - [-22.747871, 65.055764], - [-22.748062, 65.055862], - [-22.747978, 65.055896], - [-22.74426, 65.05629], - [-22.742362, 65.055903], - [-22.740395, 65.055903], - [-22.738867, 65.055379], - [-22.737737, 65.055775], - [-22.736879, 65.055822], - [-22.736356, 65.056168], - [-22.733836, 65.056462], - [-22.733927, 65.056868], - [-22.733456, 65.056803], - [-22.732672, 65.057192], - [-22.732693, 65.057499], - [-22.73226, 65.05796], - [-22.72925, 65.05907], - [-22.726512, 65.05999], - [-22.726295, 65.059602], - [-22.725899, 65.059624], - [-22.72553, 65.05985], - [-22.724887, 65.059965], - [-22.724953, 65.059796], - [-22.725336, 65.059579], - [-22.725296, 65.059444], - [-22.724874, 65.059323], - [-22.724474, 65.059275], - [-22.723717, 65.059611], - [-22.722912, 65.059574], - [-22.723096, 65.059783], - [-22.723444, 65.059902], - [-22.722995, 65.060119], - [-22.723061, 65.060255], - [-22.722454, 65.060318], - [-22.72234, 65.060503], - [-22.722982, 65.060596], - [-22.722744, 65.060877], - [-22.721326, 65.061404], - [-22.721077, 65.061547], - [-22.721303, 65.061633], - [-22.721231, 65.061677], - [-22.72113, 65.061645], - [-22.720608, 65.061799], - [-22.720045, 65.061886], - [-22.71602, 65.06337], - [-22.716216, 65.063679], - [-22.717256, 65.063673], - [-22.718585, 65.063297], - [-22.719133, 65.062987], - [-22.720279, 65.062739], - [-22.720663, 65.062746], - [-22.720676, 65.063008], - [-22.720999, 65.063035], - [-22.721504, 65.063255], - [-22.720601, 65.063339], - [-22.720232, 65.063273], - [-22.720126, 65.063084], - [-22.719842, 65.063014], - [-22.718571, 65.063688], - [-22.717027, 65.064316], - [-22.715856, 65.064702], - [-22.71346, 65.065535], - [-22.71299, 65.065522], - [-22.712735, 65.065726], - [-22.712471, 65.065755], - [-22.712277, 65.06593], - [-22.712164, 65.066154], - [-22.71146, 65.066412], - [-22.709996, 65.067054], - [-22.70909, 65.06746], - [-22.708063, 65.067706], - [-22.707525, 65.068089], - [-22.706508, 65.068316], - [-22.707824, 65.067117], - [-22.706876, 65.066877], - [-22.707346, 65.066407], - [-22.706926, 65.066189], - [-22.704349, 65.06731], - [-22.7041, 65.067418], - [-22.70293, 65.06805], - [-22.701941, 65.068149], - [-22.701532, 65.068443], - [-22.700637, 65.068599], - [-22.700121, 65.068626], - [-22.699434, 65.068527], - [-22.698689, 65.068661], - [-22.698195, 65.068683], - [-22.697735, 65.068515], - [-22.697135, 65.067763], - [-22.697101, 65.067541], - [-22.697095, 65.067276], - [-22.696685, 65.067187], - [-22.695577, 65.06695], - [-22.694944, 65.067177], - [-22.694617, 65.067285], - [-22.694376, 65.067259], - [-22.694209, 65.066903], - [-22.693721, 65.066905], - [-22.693088, 65.067027], - [-22.693179, 65.066865], - [-22.69343, 65.06675], - [-22.694681, 65.0661], - [-22.695035, 65.065741], - [-22.694816, 65.065601], - [-22.695288, 65.06532], - [-22.696586, 65.064694], - [-22.69794, 65.064271], - [-22.698943, 65.06393], - [-22.700078, 65.063609], - [-22.700641, 65.063161], - [-22.700209, 65.062991], - [-22.69694, 65.06378], - [-22.696049, 65.063722], - [-22.696693, 65.062957], - [-22.697238, 65.062736], - [-22.69775, 65.06252], - [-22.695856, 65.062437], - [-22.69414, 65.062799], - [-22.69348, 65.06265], - [-22.69335, 65.061874], - [-22.69165, 65.062075], - [-22.69017, 65.061957], - [-22.687946, 65.061484], - [-22.68827, 65.06109], - [-22.689285, 65.060855], - [-22.69229, 65.05878], - [-22.694332, 65.058337], - [-22.694962, 65.058078], - [-22.693946, 65.057388], - [-22.691729, 65.057162], - [-22.68934, 65.05818], - [-22.685964, 65.058673], - [-22.68334, 65.058788], - [-22.682767, 65.059062], - [-22.68073, 65.05896], - [-22.679978, 65.058112], - [-22.68021, 65.057201], - [-22.681734, 65.056597], - [-22.68309, 65.05569], - [-22.687994, 65.054657], - [-22.689966, 65.053648], - [-22.692222, 65.052841], - [-22.693271, 65.053272], - [-22.694805, 65.053541], - [-22.69612, 65.052906], - [-22.69605, 65.05248], - [-22.697638, 65.05162], - [-22.69902, 65.0509], - [-22.702107, 65.049158], - [-22.702733, 65.048796], - [-22.70247, 65.04831], - [-22.701596, 65.048077], - [-22.700704, 65.04815], - [-22.699273, 65.048759], - [-22.69873, 65.04897], - [-22.69679, 65.04967], - [-22.6955, 65.05016], - [-22.69242, 65.05045], - [-22.69067, 65.05002], - [-22.69346, 65.04779], - [-22.70037, 65.04632], - [-22.70873, 65.04708], - [-22.71102, 65.04667], - [-22.71134, 65.046], - [-22.70532, 65.0457], - [-22.70467, 65.04594], - [-22.699247, 65.045452], - [-22.698856, 65.045803], - [-22.696627, 65.045414], - [-22.69516, 65.04477], - [-22.693936, 65.044397], - [-22.692337, 65.044306], - [-22.690306, 65.044609], - [-22.689043, 65.044854], - [-22.687638, 65.045018], - [-22.688245, 65.045384], - [-22.690067, 65.045712], - [-22.69076, 65.046153], - [-22.69165, 65.046719], - [-22.69112, 65.04721], - [-22.68863, 65.04765], - [-22.68677, 65.04786], - [-22.68609, 65.04835], - [-22.68322, 65.05109], - [-22.68002, 65.05202], - [-22.67861, 65.05146], - [-22.67881, 65.05019], - [-22.679495, 65.04972], - [-22.681257, 65.049722], - [-22.68104, 65.04949], - [-22.68087, 65.04871], - [-22.68168, 65.04745], - [-22.68086, 65.04692], - [-22.68098, 65.04615], - [-22.67674, 65.04616], - [-22.67489, 65.04636], - [-22.67172, 65.04717], - [-22.66987, 65.04737], - [-22.66979, 65.04788], - [-22.66608, 65.04828], - [-22.66732, 65.04627], - [-22.66956, 65.04557], - [-22.67086, 65.04509], - [-22.67523, 65.04432], - [-22.68222, 65.04415], - [-22.68331, 65.04302], - [-22.691504, 65.042006], - [-22.691997, 65.041879], - [-22.692147, 65.04211], - [-22.691921, 65.042418], - [-22.691995, 65.042686], - [-22.693423, 65.043074], - [-22.694845, 65.042859], - [-22.694861, 65.042472], - [-22.694196, 65.042178], - [-22.69445, 65.04166], - [-22.694804, 65.040848], - [-22.694893, 65.04058], - [-22.694993, 65.039972], - [-22.69528, 65.03837], - [-22.695569, 65.038022], - [-22.696492, 65.0378], - [-22.696717, 65.037587], - [-22.696696, 65.037419], - [-22.69635, 65.03737], - [-22.693829, 65.037877], - [-22.693627, 65.037818], - [-22.693617, 65.037605], - [-22.693928, 65.037229], - [-22.694582, 65.036654], - [-22.694968, 65.035884], - [-22.695076, 65.035676], - [-22.694936, 65.035468], - [-22.69439, 65.035213], - [-22.69435, 65.03475], - [-22.694679, 65.034318], - [-22.695638, 65.034069], - [-22.696835, 65.033706], - [-22.69768, 65.03294], - [-22.698788, 65.032651], - [-22.69926, 65.032628], - [-22.699818, 65.03271], - [-22.700193, 65.032909], - [-22.699528, 65.03305], - [-22.69911, 65.033226], - [-22.698931, 65.033422], - [-22.700869, 65.033765], - [-22.702976, 65.03422], - [-22.703809, 65.034032], - [-22.704109, 65.033765], - [-22.704152, 65.033258], - [-22.703981, 65.032864], - [-22.70351, 65.03246], - [-22.70617, 65.031], - [-22.708792, 65.030292], - [-22.713156, 65.029403], - [-22.717893, 65.028671], - [-22.720205, 65.028363], - [-22.722303, 65.027731], - [-22.725072, 65.02741], - [-22.725301, 65.027183], - [-22.725103, 65.026982], - [-22.724384, 65.026848], - [-22.723574, 65.026686], - [-22.722973, 65.025822], - [-22.72345, 65.02534], - [-22.72421, 65.02433], - [-22.725391, 65.023867], - [-22.727005, 65.023861], - [-22.727367, 65.023876], - [-22.72726, 65.024078], - [-22.726358, 65.024536], - [-22.72649, 65.024895], - [-22.727322, 65.025071], - [-22.728436, 65.025465], - [-22.732825, 65.025557], - [-22.733896, 65.025157], - [-22.737797, 65.024391], - [-22.739072, 65.023667], - [-22.740145, 65.023304], - [-22.740875, 65.022913], - [-22.740638, 65.022491], - [-22.740306, 65.022398], - [-22.739542, 65.022386], - [-22.739433, 65.021804], - [-22.740719, 65.021988], - [-22.741818, 65.02195], - [-22.742854, 65.021834], - [-22.74398, 65.021998], - [-22.745175, 65.022019], - [-22.74582, 65.021968], - [-22.746271, 65.021751], - [-22.746762, 65.021225], - [-22.747204, 65.020464], - [-22.747531, 65.020146], - [-22.74744, 65.019755], - [-22.747102, 65.019463], - [-22.746866, 65.019175], - [-22.746502, 65.019166], - [-22.746303, 65.019056], - [-22.745992, 65.018822], - [-22.745472, 65.018853], - [-22.74417, 65.01889], - [-22.743374, 65.018969], - [-22.743005, 65.019251], - [-22.743143, 65.019556], - [-22.742566, 65.019745], - [-22.739599, 65.020124], - [-22.739451, 65.019878], - [-22.740158, 65.019616], - [-22.741966, 65.019411], - [-22.742012, 65.019107], - [-22.741537, 65.018798], - [-22.741039, 65.01885], - [-22.740041, 65.018787], - [-22.73836, 65.01732], - [-22.73957, 65.01736], - [-22.739238, 65.016914], - [-22.7415, 65.01664], - [-22.74154, 65.01638], - [-22.74034, 65.01635], - [-22.739539, 65.016324], - [-22.73907, 65.0167], - [-22.73653, 65.01739], - [-22.733911, 65.017871], - [-22.73144, 65.01891], - [-22.729719, 65.019326], - [-22.72826, 65.01985], - [-22.72634, 65.02056], - [-22.725967, 65.020891], - [-22.72496, 65.02154], - [-22.724172, 65.021473], - [-22.724065, 65.021224], - [-22.724355, 65.020997], - [-22.724226, 65.02073], - [-22.723493, 65.021078], - [-22.723073, 65.021567], - [-22.72247, 65.02198], - [-22.719435, 65.022562], - [-22.71804, 65.02314], - [-22.71239, 65.02439], - [-22.705866, 65.025251], - [-22.70445, 65.025649], - [-22.702261, 65.025649], - [-22.69955, 65.025857], - [-22.69904, 65.0255], - [-22.699624, 65.025346], - [-22.700868, 65.025084], - [-22.70082, 65.02469], - [-22.7039, 65.0244], - [-22.70585, 65.02356], - [-22.705866, 65.023321], - [-22.70407, 65.02338], - [-22.701811, 65.023701], - [-22.700812, 65.023548], - [-22.703335, 65.021652], - [-22.701457, 65.02164], - [-22.700218, 65.021743], - [-22.69942, 65.02209], - [-22.697442, 65.022552], - [-22.69689, 65.02279], - [-22.69516, 65.022905], - [-22.69426, 65.0222], - [-22.696688, 65.021262], - [-22.699346, 65.020367], - [-22.699461, 65.020238], - [-22.699343, 65.020143], - [-22.698726, 65.020204], - [-22.697208, 65.02048], - [-22.694847, 65.021055], - [-22.693355, 65.021603], - [-22.691731, 65.022094], - [-22.6909, 65.02236], - [-22.690556, 65.022422], - [-22.690514, 65.022709], - [-22.691672, 65.023199], - [-22.693166, 65.023838], - [-22.692841, 65.02401], - [-22.691715, 65.024053], - [-22.690857, 65.023692], - [-22.689698, 65.023543], - [-22.688679, 65.023715], - [-22.687863, 65.023507], - [-22.687647, 65.023645], - [-22.686983, 65.024032], - [-22.687824, 65.024184], - [-22.688421, 65.024549], - [-22.689591, 65.024644], - [-22.690184, 65.024822], - [-22.689719, 65.025119], - [-22.689462, 65.02531], - [-22.689605, 65.02552], - [-22.691393, 65.025554], - [-22.694407, 65.026285], - [-22.692766, 65.026904], - [-22.69008, 65.02746], - [-22.688085, 65.027648], - [-22.681959, 65.028876], - [-22.68065, 65.02949], - [-22.676652, 65.030265], - [-22.671653, 65.030829], - [-22.670973, 65.030739], - [-22.670568, 65.03041], - [-22.67083, 65.03023], - [-22.67195, 65.029965], - [-22.672939, 65.029246], - [-22.674289, 65.028914], - [-22.674394, 65.02874], - [-22.673686, 65.028353], - [-22.673196, 65.028139], - [-22.672929, 65.027792], - [-22.673036, 65.027493], - [-22.674711, 65.026812], - [-22.676209, 65.0264], - [-22.675973, 65.026325], - [-22.675715, 65.026309], - [-22.675129, 65.026469], - [-22.674128, 65.026579], - [-22.67365, 65.026737], - [-22.673301, 65.026956], - [-22.672792, 65.027124], - [-22.672052, 65.027199], - [-22.671375, 65.02732], - [-22.669977, 65.027764], - [-22.668871, 65.028391], - [-22.667041, 65.028764], - [-22.665068, 65.028821], - [-22.664777, 65.028506], - [-22.664882, 65.028322], - [-22.665952, 65.027906], - [-22.665845, 65.027761], - [-22.665614, 65.027699], - [-22.664944, 65.027881], - [-22.663973, 65.027874], - [-22.662964, 65.027922], - [-22.662465, 65.028141], - [-22.662084, 65.028119], - [-22.661804, 65.027985], - [-22.661516, 65.027783], - [-22.661481, 65.027615], - [-22.66194, 65.02715], - [-22.66359, 65.02631], - [-22.664289, 65.026058], - [-22.66511, 65.02589], - [-22.667028, 65.0256], - [-22.670547, 65.02516], - [-22.672414, 65.024922], - [-22.674624, 65.024775], - [-22.678953, 65.024602], - [-22.682976, 65.023976], - [-22.683419, 65.02389], - [-22.683529, 65.023735], - [-22.683397, 65.023591], - [-22.683163, 65.023512], - [-22.680435, 65.023732], - [-22.679741, 65.023792], - [-22.679269, 65.02367], - [-22.679323, 65.023452], - [-22.679841, 65.023306], - [-22.681069, 65.023152], - [-22.681554, 65.022883], - [-22.682277, 65.022551], - [-22.684178, 65.022315], - [-22.685288, 65.021912], - [-22.685194, 65.021693], - [-22.684861, 65.021438], - [-22.683945, 65.021262], - [-22.683883, 65.020603], - [-22.68335, 65.02035], - [-22.681029, 65.019737], - [-22.6788, 65.01979], - [-22.677814, 65.019903], - [-22.678046, 65.019488], - [-22.678784, 65.019269], - [-22.679924, 65.019021], - [-22.682855, 65.018259], - [-22.683687, 65.018064], - [-22.684159, 65.017674], - [-22.685125, 65.017375], - [-22.685919, 65.01704], - [-22.685833, 65.016926], - [-22.685433, 65.016916], - [-22.68473, 65.01701], - [-22.684205, 65.01705], - [-22.682713, 65.017218], - [-22.680959, 65.016837], - [-22.682574, 65.016402], - [-22.683529, 65.01614], - [-22.68349, 65.01574], - [-22.68228, 65.0157], - [-22.6818, 65.01492], - [-22.684655, 65.014182], - [-22.686932, 65.014141], - [-22.687391, 65.013928], - [-22.68708, 65.013814], - [-22.682386, 65.01329], - [-22.68018, 65.01372], - [-22.678765, 65.01401], - [-22.678164, 65.01396], - [-22.678443, 65.013547], - [-22.676345, 65.01332], - [-22.67634, 65.012691], - [-22.67683, 65.01197], - [-22.676351, 65.01168], - [-22.67525, 65.01174], - [-22.674656, 65.011836], - [-22.674675, 65.011503], - [-22.676941, 65.010765], - [-22.677982, 65.010447], - [-22.67781, 65.010207], - [-22.676951, 65.010167], - [-22.674484, 65.010715], - [-22.672982, 65.010882], - [-22.670998, 65.011159], - [-22.6697, 65.011577], - [-22.667661, 65.011717], - [-22.666738, 65.012215], - [-22.664893, 65.012419], - [-22.664205, 65.012269], - [-22.664785, 65.012029], - [-22.665783, 65.011717], - [-22.668186, 65.011327], - [-22.672381, 65.010338], - [-22.671888, 65.009808], - [-22.671867, 65.009437], - [-22.67258, 65.009071], - [-22.674463, 65.007714], - [-22.675833, 65.007158], - [-22.67515, 65.007039], - [-22.674796, 65.007157], - [-22.674323, 65.007116], - [-22.674291, 65.006676], - [-22.673272, 65.006821], - [-22.67219, 65.00696], - [-22.671598, 65.006586], - [-22.67296, 65.00595], - [-22.673913, 65.005873], - [-22.67433, 65.00498], - [-22.673603, 65.004907], - [-22.672972, 65.004487], - [-22.673519, 65.00421], - [-22.672542, 65.004106], - [-22.672671, 65.003752], - [-22.672328, 65.003426], - [-22.670627, 65.002941], - [-22.671952, 65.002519], - [-22.673072, 65.001757], - [-22.673175, 65.001236], - [-22.672253, 65.001281], - [-22.671484, 65.001434], - [-22.670381, 65.002044], - [-22.66111, 65.0006], - [-22.65807, 65.00065], - [-22.65815, 65.00014], - [-22.65635, 65.00009], - [-22.65591, 64.99905], - [-22.65712, 64.99909], - [-22.6572, 64.99858], - [-22.65461, 64.99773], - [-22.655, 64.99723], - [-22.65256, 64.99729], - [-22.65084, 64.99673], - [-22.64849, 64.99628], - [-22.64612, 64.99594], - [-22.644185, 64.996044], - [-22.64375, 64.99562], - [-22.642209, 64.995741], - [-22.641676, 64.996493], - [-22.642587, 64.996892], - [-22.64105, 64.99734], - [-22.638279, 64.996733], - [-22.637931, 64.997019], - [-22.638038, 64.997681], - [-22.63731, 64.998], - [-22.63428, 64.99804], - [-22.63197, 64.99733], - [-22.631376, 64.996221], - [-22.631537, 64.995246], - [-22.63058, 64.99473], - [-22.62956, 64.994438], - [-22.629434, 64.993804], - [-22.629885, 64.993246], - [-22.62915, 64.99238], - [-22.626183, 64.992625], - [-22.623783, 64.992283], - [-22.62317, 64.99195], - [-22.620373, 64.991593], - [-22.61811, 64.991492], - [-22.617007, 64.991562], - [-22.61524, 64.990919], - [-22.614918, 64.990588], - [-22.614333, 64.990454], - [-22.612861, 64.990232], - [-22.612767, 64.98957], - [-22.613868, 64.988921], - [-22.613394, 64.987964], - [-22.612702, 64.987009], - [-22.611098, 64.985251], - [-22.609569, 64.983502], - [-22.608121, 64.98174], - [-22.607269, 64.981401], - [-22.606962, 64.980253], - [-22.606753, 64.980108], - [-22.606168, 64.980064], - [-22.605538, 64.980011], - [-22.604168, 64.978852], - [-22.603374, 64.979138], - [-22.602725, 64.979383], - [-22.600766, 64.979398], - [-22.59862, 64.97931], - [-22.595179, 64.979012], - [-22.593523, 64.977615], - [-22.592312, 64.977535], - [-22.591303, 64.977334], - [-22.590035, 64.976854], - [-22.589464, 64.976401], - [-22.589646, 64.976029], - [-22.590816, 64.975092], - [-22.590697, 64.974751], - [-22.589993, 64.974469], - [-22.58998, 64.974189], - [-22.588439, 64.973658], - [-22.588383, 64.973382], - [-22.588254, 64.972653], - [-22.587994, 64.972366], - [-22.587578, 64.972205], - [-22.586958, 64.971777], - [-22.585999, 64.971389], - [-22.585093, 64.971344], - [-22.584663, 64.970633], - [-22.583688, 64.970675], - [-22.5824, 64.97127], - [-22.580047, 64.971258], - [-22.57943, 64.97093], - [-22.574781, 64.971575], - [-22.574246, 64.971822], - [-22.57251, 64.97252], - [-22.5703, 64.97254], - [-22.572153, 64.974348], - [-22.573408, 64.974916], - [-22.574201, 64.975669], - [-22.576849, 64.976068], - [-22.578397, 64.97679], - [-22.579571, 64.977721], - [-22.57844, 64.978392], - [-22.578784, 64.97933], - [-22.580779, 64.979728], - [-22.581573, 64.980225], - [-22.58256, 64.981517], - [-22.58304, 64.98205], - [-22.583647, 64.982165], - [-22.585334, 64.982659], - [-22.586134, 64.983201], - [-22.58641, 64.98369], - [-22.58768, 64.984481], - [-22.589212, 64.985025], - [-22.590306, 64.985234], - [-22.591114, 64.985641], - [-22.590531, 64.986355], - [-22.590445, 64.987026], - [-22.589823, 64.987525], - [-22.590156, 64.987897], - [-22.591261, 64.988128], - [-22.593417, 64.988237], - [-22.594102, 64.98838], - [-22.595584, 64.98885], - [-22.596754, 64.990102], - [-22.597762, 64.990936], - [-22.598127, 64.991783], - [-22.59934, 64.992238], - [-22.600822, 64.992527], - [-22.602161, 64.993195], - [-22.602419, 64.993998], - [-22.601633, 64.994963], - [-22.603123, 64.995602], - [-22.6037, 64.99623], - [-22.606612, 64.997376], - [-22.60641, 64.997861], - [-22.607005, 64.998187], - [-22.609832, 64.999757], - [-22.612419, 65.001469], - [-22.615755, 65.002622], - [-22.616795, 65.003007], - [-22.61848, 65.003307], - [-22.619541, 65.003913], - [-22.619778, 65.004177], - [-22.619574, 65.004436], - [-22.619252, 65.004662], - [-22.618645, 65.00476], - [-22.618909, 65.004458], - [-22.61893, 65.004313], - [-22.618673, 65.004173], - [-22.617729, 65.004204], - [-22.616785, 65.004363], - [-22.614923, 65.004616], - [-22.614587, 65.005712], - [-22.61536, 65.00632], - [-22.616267, 65.00663], - [-22.619016, 65.007346], - [-22.621486, 65.00828], - [-22.621334, 65.008869], - [-22.620578, 65.009352], - [-22.62016, 65.01031], - [-22.61297, 65.00984], - [-22.613566, 65.010863], - [-22.61207, 65.01161], - [-22.610946, 65.011713], - [-22.610819, 65.012295], - [-22.61215, 65.013184], - [-22.61143, 65.01364], - [-22.610731, 65.014019], - [-22.610648, 65.014942], - [-22.60963, 65.01538], - [-22.608602, 65.015666], - [-22.607785, 65.016749], - [-22.60988, 65.01756], - [-22.61171, 65.01749], - [-22.61098, 65.01823], - [-22.60913, 65.01844], - [-22.608869, 65.01969], - [-22.61071, 65.01989], - [-22.61383, 65.01934], - [-22.61318, 65.021104], - [-22.612193, 65.021902], - [-22.61091, 65.02233], - [-22.610376, 65.022582], - [-22.60893, 65.0233], - [-22.60765, 65.02365], - [-22.60648, 65.02348], - [-22.60639, 65.02399], - [-22.60308, 65.02473], - [-22.602935, 65.024156], - [-22.599074, 65.024494], - [-22.598858, 65.025226], - [-22.60123, 65.02589], - [-22.60115, 65.0264], - [-22.60296, 65.02645], - [-22.60292, 65.02671], - [-22.59241, 65.02794], - [-22.59254, 65.02896], - [-22.591207, 65.02981], - [-22.592292, 65.030532], - [-22.595561, 65.031596], - [-22.594192, 65.033102], - [-22.592428, 65.033457], - [-22.59144, 65.03381], - [-22.583553, 65.034106], - [-22.58278, 65.03483], - [-22.58217, 65.03481], - [-22.582667, 65.033678], - [-22.583761, 65.03253], - [-22.58077, 65.03233], - [-22.57693, 65.0335], - [-22.571877, 65.034325], - [-22.570442, 65.034167], - [-22.56829, 65.034038], - [-22.567608, 65.032931], - [-22.564949, 65.032491], - [-22.565758, 65.031337], - [-22.564426, 65.030956], - [-22.5637, 65.029472], - [-22.565794, 65.026697], - [-22.562677, 65.026493], - [-22.564153, 65.027321], - [-22.561147, 65.030181], - [-22.562017, 65.031121], - [-22.563553, 65.031928], - [-22.562917, 65.032687], - [-22.564791, 65.034237], - [-22.569158, 65.034731], - [-22.569693, 65.035219], - [-22.568068, 65.035391], - [-22.567199, 65.036549], - [-22.569346, 65.038007], - [-22.567098, 65.038844], - [-22.56521, 65.0384], - [-22.564613, 65.037741], - [-22.563725, 65.038054], - [-22.56258, 65.039204], - [-22.564606, 65.039603], - [-22.56432, 65.040746], - [-22.55989, 65.04119], - [-22.55864, 65.04141], - [-22.5569, 65.04097], - [-22.55681, 65.04148], - [-22.55561, 65.04145], - [-22.55544, 65.04247], - [-22.55298, 65.04265], - [-22.55264, 65.04469], - [-22.54966, 65.04435], - [-22.54838, 65.04661], - [-22.54907, 65.04792], - [-22.54788, 65.04775], - [-22.54659, 65.04823], - [-22.54542, 65.04792], - [-22.53932, 65.04814], - [-22.5392, 65.0489], - [-22.52885, 65.04911], - [-22.5293, 65.05002], - [-22.53226, 65.05049], - [-22.53221, 65.05074], - [-22.53135, 65.051145], - [-22.530352, 65.051462], - [-22.527831, 65.051525], - [-22.526672, 65.051357], - [-22.526243, 65.051226], - [-22.525932, 65.051317], - [-22.525191, 65.051258], - [-22.524561, 65.051387], - [-22.522155, 65.051579], - [-22.521458, 65.051525], - [-22.520836, 65.051561], - [-22.520074, 65.051493], - [-22.517059, 65.051484], - [-22.516158, 65.051344], - [-22.515621, 65.051371], - [-22.515321, 65.051036], - [-22.517199, 65.050674], - [-22.517306, 65.050552], - [-22.516576, 65.050421], - [-22.515847, 65.050461], - [-22.514613, 65.050362], - [-22.513765, 65.050072], - [-22.513068, 65.050063], - [-22.512875, 65.04995], - [-22.512864, 65.049719], - [-22.512338, 65.049525], - [-22.511845, 65.049574], - [-22.511319, 65.049479], - [-22.510396, 65.049511], - [-22.509828, 65.049398], - [-22.509731, 65.049298], - [-22.509143, 65.049459], - [-22.508896, 65.049568], - [-22.508197, 65.049656], - [-22.508143, 65.049819], - [-22.508371, 65.050043], - [-22.507392, 65.050181], - [-22.506899, 65.050167], - [-22.506684, 65.050113], - [-22.506298, 65.050163], - [-22.505794, 65.050145], - [-22.505225, 65.049995], - [-22.505751, 65.049932], - [-22.505912, 65.049828], - [-22.506212, 65.049787], - [-22.506352, 65.049701], - [-22.506738, 65.049656], - [-22.506985, 65.049461], - [-22.507156, 65.049457], - [-22.507585, 65.049502], - [-22.507693, 65.049448], - [-22.508047, 65.049457], - [-22.5081, 65.049357], - [-22.508251, 65.049258], - [-22.508175, 65.049149], - [-22.507725, 65.049122], - [-22.507384, 65.04917], - [-22.507178, 65.049076], - [-22.507264, 65.048909], - [-22.507779, 65.048741], - [-22.507822, 65.048601], - [-22.508154, 65.048488], - [-22.508873, 65.048443], - [-22.509581, 65.04842], - [-22.509431, 65.048343], - [-22.509785, 65.048266], - [-22.509731, 65.048185], - [-22.509281, 65.048167], - [-22.509281, 65.048008], - [-22.50942, 65.047832], - [-22.509216, 65.047669], - [-22.508658, 65.047669], - [-22.508015, 65.047841], - [-22.507457, 65.047832], - [-22.506663, 65.047827], - [-22.505892, 65.047907], - [-22.505343, 65.047868], - [-22.504721, 65.0478], - [-22.504399, 65.047723], - [-22.504163, 65.047619], - [-22.50427, 65.047542], - [-22.504152, 65.04747], - [-22.503712, 65.047542], - [-22.5036, 65.04771], - [-22.49811, 65.04792], - [-22.49733, 65.04893], - [-22.49371, 65.04882], - [-22.49362, 65.04933], - [-22.4853, 65.04831], - [-22.48369, 65.0471], - [-22.48444, 65.04623], - [-22.48685, 65.0463], - [-22.4869, 65.04605], - [-22.48453, 65.04572], - [-22.48526, 65.04498], - [-22.48285, 65.0449], - [-22.48237, 65.04412], - [-22.48177, 65.0441], - [-22.48061, 65.045], - [-22.48095, 65.04536], - [-22.47981, 65.04494], - [-22.47444, 65.04439], - [-22.47431, 65.04517], - [-22.4731, 65.04512], - [-22.47319, 65.04461], - [-22.47259, 65.04459], - [-22.4725, 65.0451], - [-22.46532, 65.0445], - [-22.46059, 65.0437], - [-22.45986, 65.04446], - [-22.46112, 65.04424], - [-22.46159, 65.04503], - [-22.45973, 65.04535], - [-22.45793, 65.04517], - [-22.4575, 65.04413], - [-22.45629, 65.0441], - [-22.45621, 65.04461], - [-22.45519, 65.04466], - [-22.45491, 65.04508], - [-22.45431, 65.04506], - [-22.45509, 65.04406], - [-22.45392, 65.04377], - [-22.45384, 65.04428], - [-22.45203, 65.04422], - [-22.45194, 65.04472], - [-22.44894, 65.04451], - [-22.44707, 65.04484], - [-22.44694, 65.04559], - [-22.44386, 65.04588], - [-22.43864, 65.04445], - [-22.43379, 65.04444], - [-22.43388, 65.04392], - [-22.43077, 65.04434], - [-22.43004, 65.04509], - [-22.42758, 65.04527], - [-22.42572, 65.04906], - [-22.42451, 65.04902], - [-22.42425, 65.05054], - [-22.41994, 65.05093], - [-22.42071, 65.04993], - [-22.41765, 65.05009], - [-22.41627, 65.05107], - [-22.4133, 65.05073], - [-22.41338, 65.05022], - [-22.41278, 65.0502], - [-22.4114, 65.05118], - [-22.40961, 65.051], - [-22.40896, 65.05123], - [-22.40717, 65.05105], - [-22.40644, 65.0518], - [-22.40527, 65.0515], - [-22.40519, 65.052], - [-22.40273, 65.05219], - [-22.40351, 65.05119], - [-22.4029, 65.05117], - [-22.40092, 65.05214], - [-22.40105, 65.05137], - [-22.39924, 65.05132], - [-22.39962, 65.05261], - [-22.39841, 65.05257], - [-22.39824, 65.05359], - [-22.39521, 65.0535], - [-22.39474, 65.05451], - [-22.39607, 65.05558], - [-22.38753, 65.05583], - [-22.38771, 65.05481], - [-22.38589, 65.05475], - [-22.38612, 65.05348], - [-22.38552, 65.05347], - [-22.38465, 65.05497], - [-22.38223, 65.05489], - [-22.38154, 65.05538], - [-22.38275, 65.05542], - [-22.38266, 65.05593], - [-22.38563, 65.05628], - [-22.38555, 65.05679], - [-22.37895, 65.05633], - [-22.37877, 65.05735], - [-22.3757, 65.05751], - [-22.37775, 65.05629], - [-22.37654, 65.05625], - [-22.3762, 65.05471], - [-22.37503, 65.05441], - [-22.37495, 65.05491], - [-22.37258, 65.05459], - [-22.37313, 65.05667], - [-22.37459, 65.05695], - [-22.37455, 65.05722], - [-22.37224, 65.05775], - [-22.37256, 65.05818], - [-22.36478, 65.05755], - [-22.36355, 65.05765], - [-22.36261, 65.05609], - [-22.3614, 65.05604], - [-22.36122, 65.05706], - [-22.35946, 65.05675], - [-22.36019, 65.056], - [-22.357134, 65.055727], - [-22.356265, 65.056125], - [-22.353135, 65.055347], - [-22.35252, 65.05474], - [-22.351189, 65.054668], - [-22.34984, 65.05619], - [-22.349288, 65.056321], - [-22.349637, 65.056754], - [-22.353839, 65.056952], - [-22.35436, 65.05813], - [-22.34512, 65.05887], - [-22.34439, 65.05961], - [-22.34012, 65.05973], - [-22.34045, 65.06128], - [-22.33925, 65.06125], - [-22.33967, 65.06228], - [-22.33477, 65.06251], - [-22.33361, 65.06222], - [-22.33174, 65.06255], - [-22.33216, 65.06359], - [-22.33101, 65.06329], - [-22.33091, 65.06379], - [-22.32482, 65.06387], - [-22.32473, 65.06439], - [-22.32297, 65.06407], - [-22.32254, 65.06303], - [-22.32017, 65.0627], - [-22.32091, 65.06195], - [-22.31914, 65.06164], - [-22.31923, 65.06113], - [-22.32044, 65.06117], - [-22.31955, 65.05935], - [-22.31774, 65.05928], - [-22.31736, 65.058], - [-22.3149, 65.05818], - [-22.31541, 65.05871], - [-22.31304, 65.05838], - [-22.31313, 65.05787], - [-22.3077, 65.05769], - [-22.30761, 65.0582], - [-22.30454, 65.05836], - [-22.30663, 65.05689], - [-22.30542, 65.05685], - [-22.30499, 65.05582], - [-22.30323, 65.05551], - [-22.30332, 65.05499], - [-22.30155, 65.05468], - [-22.30187, 65.0529], - [-22.30006, 65.05284], - [-22.29924, 65.05229], - [-22.300387, 65.051223], - [-22.303262, 65.05108], - [-22.304204, 65.050555], - [-22.302852, 65.049444], - [-22.295611, 65.049009], - [-22.29253, 65.05081], - [-22.290522, 65.050166], - [-22.294667, 65.04808], - [-22.293749, 65.047368], - [-22.291234, 65.047785], - [-22.287629, 65.046534], - [-22.287945, 65.045635], - [-22.28558, 65.04547], - [-22.28484, 65.04621], - [-22.28183, 65.04612], - [-22.28192, 65.04561], - [-22.27749, 65.04661], - [-22.27199, 65.04683], - [-22.2719, 65.04734], - [-22.2707, 65.0473], - [-22.27056, 65.04808], - [-22.2669, 65.04821], - [-22.26699, 65.0477], - [-22.26513, 65.04789], - [-22.266334, 65.046719], - [-22.26312, 65.046257], - [-22.256247, 65.046014], - [-22.25501, 65.0468], - [-22.25199, 65.04671], - [-22.25243, 65.04595], - [-22.25025, 65.0446], - [-22.249822, 65.043982], - [-22.24948, 65.04381], - [-22.245877, 65.044474], - [-22.245988, 65.043426], - [-22.2435, 65.04336], - [-22.23977, 65.043669], - [-22.239187, 65.041937], - [-22.23832, 65.041922], - [-22.23565, 65.04311], - [-22.23263, 65.04301], - [-22.23146, 65.04391], - [-22.23064, 65.04398], - [-22.22916, 65.04547], - [-22.22424, 65.04582], - [-22.22377, 65.04504], - [-22.22266, 65.04449], - [-22.221005, 65.043386], - [-22.21792, 65.04329], - [-22.216545, 65.04238], - [-22.21657, 65.04122], - [-22.22003, 65.04056], - [-22.221122, 65.039749], - [-22.22364, 65.03901], - [-22.226598, 65.038459], - [-22.226048, 65.03756], - [-22.223797, 65.037843], - [-22.223499, 65.037083], - [-22.2237, 65.0353], - [-22.22203, 65.03447], - [-22.22015, 65.0348], - [-22.21488, 65.03373], - [-22.21479, 65.03425], - [-22.20992, 65.03434], - [-22.21001, 65.03383], - [-22.21122, 65.03387], - [-22.2114, 65.03285], - [-22.21261, 65.03289], - [-22.214, 65.03192], - [-22.21159, 65.03183], - [-22.21052, 65.03103], - [-22.21413, 65.03115], - [-22.21441, 65.02962], - [-22.21367, 65.03036], - [-22.20815, 65.0307], - [-22.20702, 65.03194], - [-22.20809, 65.03275], - [-22.20735, 65.03349], - [-22.20746, 65.03452], - [-22.20565, 65.03446], - [-22.20575, 65.03396], - [-22.20338, 65.03362], - [-22.20317, 65.0331], - [-22.20472, 65.03289], - [-22.20435, 65.0316], - [-22.20314, 65.03156], - [-22.20293, 65.03103], - [-22.20398, 65.0303], - [-22.1998, 65.02992], - [-22.20063, 65.02866], - [-22.19721, 65.02894], - [-22.196551, 65.029919], - [-22.19549, 65.03029], - [-22.19475, 65.030411], - [-22.19419, 65.03076], - [-22.193204, 65.030769], - [-22.19095, 65.03194], - [-22.18974, 65.0319], - [-22.18835, 65.03288], - [-22.187614, 65.033243], - [-22.18626, 65.03435], - [-22.184539, 65.034484], - [-22.18316, 65.03476], - [-22.176465, 65.034323], - [-22.175811, 65.03329], - [-22.17379, 65.03292], - [-22.175589, 65.03182], - [-22.175276, 65.031473], - [-22.176885, 65.031074], - [-22.179595, 65.030677], - [-22.178382, 65.030494], - [-22.174839, 65.031348], - [-22.1744, 65.03175], - [-22.17335, 65.03201], - [-22.1698, 65.03151], - [-22.16971, 65.03202], - [-22.16735, 65.03169], - [-22.16743, 65.03119], - [-22.166947, 65.030839], - [-22.167946, 65.030392], - [-22.16845, 65.029998], - [-22.165116, 65.030542], - [-22.16193, 65.032073], - [-22.16361, 65.03221], - [-22.165607, 65.032355], - [-22.165352, 65.03273], - [-22.16222, 65.03319], - [-22.15987, 65.03273], - [-22.159874, 65.03245], - [-22.15862, 65.03294], - [-22.156986, 65.033057], - [-22.15612, 65.03336], - [-22.153768, 65.034017], - [-22.151112, 65.033979], - [-22.14772, 65.03285], - [-22.145475, 65.032586], - [-22.14468, 65.03121], - [-22.14642, 65.02998], - [-22.15078, 65.02936], - [-22.15282, 65.02814], - [-22.15169, 65.02772], - [-22.14985, 65.02779], - [-22.14777, 65.02926], - [-22.1442, 65.02889], - [-22.14401, 65.0299], - [-22.14039, 65.02979], - [-22.1403, 65.0303], - [-22.13675, 65.0298], - [-22.13432, 65.02985], - [-22.13525, 65.02808], - [-22.13886, 65.0282], - [-22.13891, 65.02794], - [-22.13305, 65.02686], - [-22.13177, 65.0272], - [-22.13019, 65.02587], - [-22.12588, 65.02624], - [-22.12635, 65.02702], - [-22.11786, 65.027], - [-22.11781, 65.02726], - [-22.12199, 65.02765], - [-22.12245, 65.02843], - [-22.12124, 65.02839], - [-22.12134, 65.02788], - [-22.12032, 65.02794], - [-22.12064, 65.02837], - [-22.11758, 65.02853], - [-22.11744, 65.0293], - [-22.11624, 65.02925], - [-22.11626, 65.03079], - [-22.11832, 65.03112], - [-22.11813, 65.03214], - [-22.1265, 65.03278], - [-22.13325, 65.03237], - [-22.13316, 65.03288], - [-22.13195, 65.03284], - [-22.13297, 65.0339], - [-22.13608, 65.03349], - [-22.13265, 65.03569], - [-22.12648, 65.03625], - [-22.12696, 65.03691], - [-22.12815, 65.03708], - [-22.1281, 65.03733], - [-22.12571, 65.03713], - [-22.12228, 65.03598], - [-22.11744, 65.03707], - [-22.1171, 65.03773], - [-22.11831, 65.03778], - [-22.11873, 65.03882], - [-22.12316, 65.03949], - [-22.12276, 65.03998], - [-22.12397, 65.04002], - [-22.12383, 65.04078], - [-22.12014, 65.04104], - [-22.11782, 65.04046], - [-22.11353, 65.0407], - [-22.11362, 65.04019], - [-22.11242, 65.04015], - [-22.11158, 65.04141], - [-22.10562, 65.04083], - [-22.10188, 65.04134], - [-22.10112, 65.04055], - [-22.102, 65.03904], - [-22.1069, 65.03716], - [-22.10477, 65.03666], - [-22.10393, 65.0368], - [-22.10472, 65.0358], - [-22.097, 65.0349], - [-22.09255, 65.03604], - [-22.0889, 65.03605], - [-22.08821, 65.03654], - [-22.08999, 65.03671], - [-22.09127, 65.03638], - [-22.09053, 65.03713], - [-22.09588, 65.03769], - [-22.09641, 65.03809], - [-22.09338, 65.03812], - [-22.0893, 65.03721], - [-22.07948, 65.03779], - [-22.0794, 65.0383], - [-22.06914, 65.03796], - [-22.06895, 65.03898], - [-22.06712, 65.03904], - [-22.06313, 65.03763], - [-22.05833, 65.03734], - [-22.05903, 65.03685], - [-22.05411, 65.0372], - [-22.05421, 65.0367], - [-22.0463, 65.03682], - [-22.04284, 65.03581], - [-22.04294, 65.0353], - [-22.03886, 65.03438], - [-22.03896, 65.03388], - [-22.03543, 65.03325], - [-22.03497, 65.03247], - [-22.02892, 65.03239], - [-22.02781, 65.03184], - [-22.022039, 65.030905], - [-22.02118, 65.030796], - [-22.020618, 65.03084], - [-22.020284, 65.030786], - [-22.018677, 65.03048], - [-22.017159, 65.030205], - [-22.016063, 65.030202], - [-22.014716, 65.030371], - [-22.014093, 65.03088], - [-22.014138, 65.031468], - [-22.013967, 65.031781], - [-22.012945, 65.031724], - [-22.012738, 65.031631], - [-22.012931, 65.031484], - [-22.012516, 65.030965], - [-22.012745, 65.03084], - [-22.013116, 65.030746], - [-22.013034, 65.030223], - [-22.011679, 65.029789], - [-22.008413, 65.028951], - [-22.006917, 65.028529], - [-22.00588, 65.028242], - [-22.004763, 65.028067], - [-22.00407, 65.028064], - [-22.003051, 65.028073], - [-22.001541, 65.027798], - [-22.000127, 65.027375], - [-21.998956, 65.027263], - [-21.998053, 65.027551], - [-21.997468, 65.027573], - [-21.99608, 65.027315], - [-21.994942, 65.026972], - [-21.993925, 65.026646], - [-21.99344, 65.026517], - [-21.992104, 65.026222], - [-21.991241, 65.026066], - [-21.989721, 65.025875], - [-21.987805, 65.025654], - [-21.987122, 65.025612], - [-21.986907, 65.025587], - [-21.986491, 65.02559], - [-21.98619, 65.025809], - [-21.98579, 65.025974], - [-21.985449, 65.026259], - [-21.985259, 65.026587], - [-21.984279, 65.026375], - [-21.98325, 65.026265], - [-21.98228, 65.026221], - [-21.980088, 65.026128], - [-21.979443, 65.026174], - [-21.978688, 65.026246], - [-21.978025, 65.026161], - [-21.976925, 65.025966], - [-21.974437, 65.025853], - [-21.973588, 65.025911], - [-21.973307, 65.026046], - [-21.973011, 65.026319], - [-21.972307, 65.026315], - [-21.970704, 65.026344], - [-21.969048, 65.026352], - [-21.968123, 65.026518], - [-21.967367, 65.026571], - [-21.965746, 65.026737], - [-21.964272, 65.027137], - [-21.963102, 65.027318], - [-21.96192, 65.02745], - [-21.96074, 65.02835], - [-21.96233, 65.02849], - [-21.962827, 65.028483], - [-21.962864, 65.028593], - [-21.962567, 65.028786], - [-21.962538, 65.028924], - [-21.962622, 65.029156], - [-21.962575, 65.029374], - [-21.962797, 65.029559], - [-21.963453, 65.029701], - [-21.963789, 65.0301], - [-21.96319, 65.03032], - [-21.962164, 65.030551], - [-21.943558, 65.026792], - [-21.927078, 65.024393], - [-21.92146, 65.024053], - [-21.916526, 65.02436], - [-21.914114, 65.025153], - [-21.91195, 65.025385], - [-21.910154, 65.025453], - [-21.909325, 65.025725], - [-21.90884, 65.02591], - [-21.90445, 65.02666], - [-21.901189, 65.026582], - [-21.898909, 65.02651], - [-21.895214, 65.026404], - [-21.89107, 65.02684], - [-21.890142, 65.027492], - [-21.889586, 65.027995], - [-21.88832, 65.02854], - [-21.88511, 65.02945], - [-21.8849, 65.02739], - [-21.884388, 65.027227], - [-21.881008, 65.027946], - [-21.881805, 65.028261], - [-21.883683, 65.028615], - [-21.883369, 65.02912], - [-21.882346, 65.029023], - [-21.880898, 65.028831], - [-21.880217, 65.02874], - [-21.879689, 65.028551], - [-21.878993, 65.028403], - [-21.877956, 65.02826], - [-21.87747, 65.02817], - [-21.876067, 65.027791], - [-21.875322, 65.027662], - [-21.871094, 65.027286], - [-21.866648, 65.027022], - [-21.862139, 65.026775], - [-21.85716, 65.026623], - [-21.854519, 65.026608], - [-21.851012, 65.026608], - [-21.847464, 65.026696], - [-21.843497, 65.026916], - [-21.840408, 65.027128], - [-21.833999, 65.027674], - [-21.832058, 65.027824], - [-21.829782, 65.02808], - [-21.827236, 65.02808], - [-21.825357, 65.028088], - [-21.823459, 65.028017], - [-21.819199, 65.027568], - [-21.816965, 65.027101], - [-21.816506, 65.026872], - [-21.815086, 65.02689], - [-21.810598, 65.026653], - [-21.807196, 65.026414], - [-21.805466, 65.026322], - [-21.804645, 65.026155], - [-21.804555, 65.025793], - [-21.804794, 65.025807], - [-21.805105, 65.025872], - [-21.805319, 65.025791], - [-21.805543, 65.025674], - [-21.806246, 65.025579], - [-21.807287, 65.025444], - [-21.807899, 65.025287], - [-21.808081, 65.025237], - [-21.807494, 65.025179], - [-21.807238, 65.02512], - [-21.807077, 65.025041], - [-21.807334, 65.025044], - [-21.807686, 65.025107], - [-21.808095, 65.025024], - [-21.808305, 65.024913], - [-21.808262, 65.024679], - [-21.808251, 65.024571], - [-21.808582, 65.024607], - [-21.808987, 65.024557], - [-21.809169, 65.024472], - [-21.809254, 65.024296], - [-21.809179, 65.024148], - [-21.80903, 65.024008], - [-21.809021, 65.023931], - [-21.810075, 65.023855], - [-21.810523, 65.023598], - [-21.810832, 65.023508], - [-21.811557, 65.023576], - [-21.811888, 65.023679], - [-21.81201, 65.02375], - [-21.812186, 65.023846], - [-21.81256, 65.023841], - [-21.812933, 65.023841], - [-21.81305, 65.024053], - [-21.813434, 65.024031], - [-21.813519, 65.023891], - [-21.81337, 65.023756], - [-21.812805, 65.023652], - [-21.811899, 65.023553], - [-21.811909, 65.02349], - [-21.812261, 65.02327], - [-21.812564, 65.023073], - [-21.812165, 65.02277], - [-21.810953, 65.022321], - [-21.811472, 65.022238], - [-21.811696, 65.02218], - [-21.811728, 65.022081], - [-21.811291, 65.021743], - [-21.811198, 65.0216], - [-21.811587, 65.021653], - [-21.812138, 65.021714], - [-21.81257, 65.021644], - [-21.812752, 65.021468], - [-21.812474, 65.021288], - [-21.812122, 65.021218], - [-21.811899, 65.021068], - [-21.811685, 65.020869], - [-21.811924, 65.020848], - [-21.812816, 65.020905], - [-21.812356, 65.02047], - [-21.811323, 65.020225], - [-21.810708, 65.019993], - [-21.809744, 65.020275], - [-21.808913, 65.020158], - [-21.808475, 65.020032], - [-21.807782, 65.019771], - [-21.807324, 65.019915], - [-21.808244, 65.020324], - [-21.80737, 65.02061], - [-21.806536, 65.020837], - [-21.806146, 65.021106], - [-21.807198, 65.02081], - [-21.808166, 65.020797], - [-21.80823, 65.021131], - [-21.808443, 65.021495], - [-21.80766, 65.021648], - [-21.806664, 65.021973], - [-21.80582, 65.02236], - [-21.80405, 65.022563], - [-21.80343, 65.022701], - [-21.80331, 65.02278], - [-21.8021, 65.02273], - [-21.802, 65.02325], - [-21.80323, 65.02316], - [-21.80306, 65.02404], - [-21.80188, 65.02388], - [-21.8, 65.0242], - [-21.79995, 65.02446], - [-21.8014, 65.02477], - [-21.80161, 65.02529], - [-21.80045, 65.02499], - [-21.80035, 65.02551], - [-21.79915, 65.02546], - [-21.79929, 65.02469], - [-21.79768, 65.02472], - [-21.79739, 65.02514], - [-21.79498, 65.02505], - [-21.79548, 65.02558], - [-21.79471, 65.02539], - [-21.79006, 65.0254], - [-21.78989, 65.02522], - [-21.78825, 65.02533], - [-21.7887, 65.02612], - [-21.78504, 65.02625], - [-21.78459, 65.02546], - [-21.78297, 65.02549], - [-21.78268, 65.02591], - [-21.78516, 65.02666], - [-21.79172, 65.02622], - [-21.79162, 65.02673], - [-21.79393, 65.02732], - [-21.78489, 65.02701], - [-21.78434, 65.02673], - [-21.78416, 65.02762], - [-21.78658, 65.02771], - [-21.78802, 65.02857], - [-21.78838, 65.02777], - [-21.79107, 65.02799], - [-21.79052, 65.02926], - [-21.78926, 65.02947], - [-21.78936, 65.02896], - [-21.7884, 65.02876], - [-21.78801, 65.02968], - [-21.7874, 65.02966], - [-21.7875, 65.02915], - [-21.7863, 65.02911], - [-21.78675, 65.02989], - [-21.78555, 65.02985], - [-21.78504, 65.03043], - [-21.78532, 65.031], - [-21.78715, 65.03093], - [-21.78937, 65.03512], - [-21.78571, 65.03524], - [-21.78561, 65.03575], - [-21.7844, 65.03571], - [-21.78355, 65.03696], - [-21.78234, 65.03692], - [-21.78285, 65.03745], - [-21.77787, 65.03805], - [-21.77772, 65.03881], - [-21.77139, 65.03816], - [-21.77079, 65.03857], - [-21.77317, 65.03933], - [-21.77461, 65.03921], - [-21.77456, 65.03947], - [-21.77355, 65.03952], - [-21.77356, 65.03995], - [-21.77757, 65.03957], - [-21.77768, 65.0406], - [-21.77974, 65.04093], - [-21.78014, 65.04197], - [-21.77592, 65.04182], - [-21.77482, 65.04281], - [-21.77579, 65.04554], - [-21.78175, 65.04613], - [-21.7819, 65.0469], - [-21.78452, 65.04751], - [-21.78467, 65.04674], - [-21.78603, 65.04756], - [-21.78598, 65.04935], - [-21.7836, 65.049982], - [-21.783495, 65.050133], - [-21.783575, 65.050452], - [-21.783763, 65.050855], - [-21.783972, 65.05111], - [-21.784031, 65.051276], - [-21.783854, 65.051513], - [-21.783854, 65.051699], - [-21.784042, 65.052099], - [-21.784492, 65.052377], - [-21.785351, 65.052454], - [-21.785603, 65.052654], - [-21.785608, 65.052884], - [-21.786016, 65.053054], - [-21.786236, 65.053307], - [-21.786011, 65.053602], - [-21.786112, 65.053848], - [-21.786606, 65.054], - [-21.786526, 65.054269], - [-21.786284, 65.054597], - [-21.786005, 65.054932], - [-21.785227, 65.055099], - [-21.784793, 65.055047], - [-21.784669, 65.054807], - [-21.784385, 65.054617], - [-21.783892, 65.054579], - [-21.782583, 65.054701], - [-21.78151, 65.054597], - [-21.781172, 65.054543], - [-21.780013, 65.054751], - [-21.779536, 65.054758], - [-21.779219, 65.054649], - [-21.778742, 65.054409], - [-21.778329, 65.054172], - [-21.778339, 65.053866], - [-21.77835, 65.053547], - [-21.778001, 65.05316], - [-21.777991, 65.052925], - [-21.777986, 65.052678], - [-21.777728, 65.052364], - [-21.77746, 65.05221], - [-21.777385, 65.051923], - [-21.777304, 65.051694], - [-21.777025, 65.051545], - [-21.776499, 65.051488], - [-21.77548, 65.051382], - [-21.775185, 65.051468], - [-21.775518, 65.051644], - [-21.776231, 65.05181], - [-21.776596, 65.051891], - [-21.776639, 65.052043], - [-21.776516, 65.052287], - [-21.776312, 65.052436], - [-21.776521, 65.052545], - [-21.776752, 65.052826], - [-21.776929, 65.053065], - [-21.77702, 65.053328], - [-21.777191, 65.053545], - [-21.777052, 65.053651], - [-21.776762, 65.053905], - [-21.776875, 65.054041], - [-21.776956, 65.054208], - [-21.777036, 65.054314], - [-21.777411, 65.054459], - [-21.777857, 65.054522], - [-21.778001, 65.054629], - [-21.778077, 65.054839], - [-21.778345, 65.055183], - [-21.778506, 65.055497], - [-21.77871, 65.055753], - [-21.779133, 65.056028], - [-21.779782, 65.056391], - [-21.780395, 65.05649], - [-21.781081, 65.05664], - [-21.781177, 65.056893], - [-21.781038, 65.057192], - [-21.780534, 65.057396], - [-21.78034, 65.057608], - [-21.780458, 65.057884], - [-21.780802, 65.058368], - [-21.780715, 65.05872], - [-21.780963, 65.059196], - [-21.781778, 65.059495], - [-21.78299, 65.059631], - [-21.783956, 65.059594], - [-21.784471, 65.059771], - [-21.784911, 65.059852], - [-21.78555, 65.059816], - [-21.786517, 65.060461], - [-21.786857, 65.060604], - [-21.787549, 65.06085], - [-21.78889, 65.061253], - [-21.789716, 65.061461], - [-21.792463, 65.062029], - [-21.793686, 65.062352], - [-21.794576, 65.062422], - [-21.796636, 65.06247], - [-21.798331, 65.062576], - [-21.799055, 65.062651], - [-21.800171, 65.06289], - [-21.8014, 65.063234], - [-21.802435, 65.063307], - [-21.803481, 65.063246], - [-21.804876, 65.063198], - [-21.806153, 65.063293], - [-21.807118, 65.063243], - [-21.808728, 65.063578], - [-21.809897, 65.064049], - [-21.810927, 65.064356], - [-21.811753, 65.064415], - [-21.812665, 65.064519], - [-21.813588, 65.064741], - [-21.81451, 65.064808], - [-21.817085, 65.065098], - [-21.817954, 65.065017], - [-21.81877, 65.064623], - [-21.819478, 65.06422], - [-21.820143, 65.063985], - [-21.82069, 65.06408], - [-21.822364, 65.064822], - [-21.823909, 65.065469], - [-21.825583, 65.06579], - [-21.827954, 65.066559], - [-21.82966, 65.067111], - [-21.830421, 65.067246], - [-21.832009, 65.067744], - [-21.833254, 65.068101], - [-21.833479, 65.06835], - [-21.833232, 65.068748], - [-21.832996, 65.069001], - [-21.833511, 65.069901], - [-21.833565, 65.070371], - [-21.831923, 65.071773], - [-21.830443, 65.073089], - [-21.828844, 65.073831], - [-21.827203, 65.074848], - [-21.823533, 65.07695], - [-21.822321, 65.078022], - [-21.821699, 65.078528], - [-21.820443, 65.079161], - [-21.819607, 65.079866], - [-21.816624, 65.080526], - [-21.813405, 65.081268], - [-21.811442, 65.082095], - [-21.809639, 65.0829], - [-21.808438, 65.083672], - [-21.80803, 65.084048], - [-21.805895, 65.085182], - [-21.804769, 65.085408], - [-21.803739, 65.085621], - [-21.802591, 65.085991], - [-21.801217, 65.086299], - [-21.799233, 65.087062], - [-21.798653, 65.087239], - [-21.796314, 65.087361], - [-21.793729, 65.087849], - [-21.792141, 65.088219], - [-21.790317, 65.088576], - [-21.788783, 65.089245], - [-21.786433, 65.089769], - [-21.784126, 65.090271], - [-21.782217, 65.091202], - [-21.778515, 65.092946], - [-21.777324, 65.093393], - [-21.776176, 65.094202], - [-21.77461, 65.095842], - [-21.77343, 65.097441], - [-21.772932, 65.097869], - [-21.772374, 65.098315], - [-21.772336, 65.098623], - [-21.772302, 65.098903], - [-21.77264, 65.099324], - [-21.773275, 65.100332], - [-21.774187, 65.100789], - [-21.773767, 65.102671], - [-21.77276, 65.10427], - [-21.77155, 65.10423], - [-21.771791, 65.106095], - [-21.770866, 65.107258], - [-21.772093, 65.108842], - [-21.773451, 65.109204], - [-21.773061, 65.110155], - [-21.773041, 65.11049], - [-21.772991, 65.110681], - [-21.77312, 65.110747], - [-21.773337, 65.11077], - [-21.773726, 65.110755], - [-21.774284, 65.110712], - [-21.774323, 65.110691], - [-21.774664, 65.110754], - [-21.774683, 65.110814], - [-21.774614, 65.110899], - [-21.774389, 65.110925], - [-21.774338, 65.111117], - [-21.774254, 65.111177], - [-21.774086, 65.111187], - [-21.773958, 65.11114], - [-21.773929, 65.111048], - [-21.773909, 65.110967], - [-21.773502, 65.110994], - [-21.773115, 65.110973], - [-21.773046, 65.111025], - [-21.772935, 65.111038], - [-21.772745, 65.111021], - [-21.772652, 65.110982], - [-21.772415, 65.110996], - [-21.772203, 65.111009], - [-21.772119, 65.111078], - [-21.77229, 65.111119], - [-21.772331, 65.111092], - [-21.772477, 65.111131], - [-21.772447, 65.111154], - [-21.772516, 65.111174], - [-21.772464, 65.111204], - [-21.772092, 65.111108], - [-21.771951, 65.111239], - [-21.772176, 65.111288], - [-21.772393, 65.111332], - [-21.772536, 65.111345], - [-21.772721, 65.111328], - [-21.772928, 65.111276], - [-21.773076, 65.111198], - [-21.773194, 65.111178], - [-21.773298, 65.111192], - [-21.773357, 65.111244], - [-21.773281, 65.111303], - [-21.772935, 65.111445], - [-21.772795, 65.111478], - [-21.77258, 65.111495], - [-21.772043, 65.111406], - [-21.771539, 65.111784], - [-21.771106, 65.112202], - [-21.769142, 65.112713], - [-21.768811, 65.112961], - [-21.768155, 65.1131], - [-21.767372, 65.113087], - [-21.766628, 65.113287], - [-21.766063, 65.113897], - [-21.765079, 65.114669], - [-21.764563, 65.114942], - [-21.764381, 65.115519], - [-21.764082, 65.116101], - [-21.7637, 65.11627], - [-21.763419, 65.116451], - [-21.762945, 65.116486], - [-21.75942, 65.11637], - [-21.75816, 65.11813], - [-21.75861, 65.11891], - [-21.75796, 65.11914], - [-21.75811, 65.11992], - [-21.7569, 65.11988], - [-21.75514, 65.12262], - [-21.75393, 65.12259], - [-21.75227, 65.12484], - [-21.7504, 65.12503], - [-21.74924, 65.12781], - [-21.74803, 65.12777], - [-21.74436, 65.12944], - [-21.74234, 65.13193], - [-21.74047, 65.13212], - [-21.74037, 65.13263], - [-21.7362, 65.13376], - [-21.736782, 65.136799], - [-21.737162, 65.137976], - [-21.736548, 65.137936], - [-21.736159, 65.138077], - [-21.73582, 65.1382], - [-21.73689, 65.13943], - [-21.73755, 65.14073], - [-21.73568, 65.14093], - [-21.73336, 65.14495], - [-21.73295, 65.14545], - [-21.73114, 65.14538], - [-21.72957, 65.14712], - [-21.72776, 65.14706], - [-21.72761, 65.14781], - [-21.7264, 65.14778], - [-21.7268, 65.14882], - [-21.72559, 65.14878], - [-21.72412, 65.15001], - [-21.72044, 65.15013], - [-21.72029, 65.1509], - [-21.71782, 65.15107], - [-21.71772, 65.15158], - [-21.71585, 65.15177], - [-21.70999, 65.15823], - [-21.709452, 65.16295], - [-21.70988, 65.16335], - [-21.70999, 65.16438], - [-21.71276, 65.16576], - [-21.71158, 65.167], - [-21.70972, 65.16719], - [-21.706927, 65.170357], - [-21.707099, 65.171799], - [-21.708127, 65.172241], - [-21.709214, 65.17271], - [-21.711284, 65.172999], - [-21.71171, 65.17252], - [-21.71431, 65.17325], - [-21.714748, 65.17404], - [-21.712965, 65.17398], - [-21.71584, 65.17625], - [-21.71763, 65.17645], - [-21.71753, 65.17695], - [-21.72104, 65.17772], - [-21.72293, 65.17894], - [-21.72343, 65.18102], - [-21.72465, 65.18105], - [-21.72424, 65.18309], - [-21.72176, 65.18326], - [-21.72171, 65.18351], - [-21.72293, 65.18356], - [-21.72262, 65.18508], - [-21.72141, 65.18504], - [-21.720398, 65.186136], - [-21.72106, 65.18989], - [-21.720441, 65.190679], - [-21.721441, 65.193341], - [-21.720209, 65.194824], - [-21.723846, 65.197418], - [-21.72728, 65.199111], - [-21.72892, 65.19941], - [-21.729399, 65.199795], - [-21.73233, 65.20068], - [-21.73465, 65.20128], - [-21.74104, 65.20291], - [-21.74337, 65.20351], - [-21.74448, 65.20406], - [-21.74395, 65.20472], - [-21.76831, 65.20707], - [-21.7739, 65.20662], - [-21.774, 65.20612], - [-21.778343, 65.206913], - [-21.7811, 65.20726], - [-21.785945, 65.2075], - [-21.786929, 65.206567], - [-21.788675, 65.205828], - [-21.793025, 65.205142], - [-21.795803, 65.205403], - [-21.798025, 65.206357], - [-21.800503, 65.206225], - [-21.801309, 65.205821], - [-21.802993, 65.205191], - [-21.80364, 65.20445], - [-21.812413, 65.203864], - [-21.817607, 65.204139], - [-21.81969, 65.201705], - [-21.818578, 65.200282], - [-21.816674, 65.199813], - [-21.815677, 65.196769], - [-21.816639, 65.195913], - [-21.81807, 65.193243], - [-21.81824, 65.19227], - [-21.81981, 65.19206], - [-21.821364, 65.191299], - [-21.821466, 65.190393], - [-21.823298, 65.189724], - [-21.824623, 65.188949], - [-21.827053, 65.186818], - [-21.83008, 65.183975], - [-21.831271, 65.181081], - [-21.829627, 65.179539], - [-21.827556, 65.178987], - [-21.826943, 65.176785], - [-21.824529, 65.173353], - [-21.828387, 65.1708], - [-21.827995, 65.168979], - [-21.832128, 65.167813], - [-21.831942, 65.167142], - [-21.83362, 65.16665], - [-21.835082, 65.166969], - [-21.835647, 65.167863], - [-21.83402, 65.169024], - [-21.832923, 65.169424], - [-21.833623, 65.169938], - [-21.836737, 65.169513], - [-21.837772, 65.169857], - [-21.83838, 65.1704], - [-21.838702, 65.17112], - [-21.84123, 65.17139], - [-21.84262, 65.17055], - [-21.84701, 65.16993], - [-21.84872, 65.168893], - [-21.84786, 65.167109], - [-21.845242, 65.16655], - [-21.843762, 65.166965], - [-21.842869, 65.166825], - [-21.842773, 65.166315], - [-21.844226, 65.165527], - [-21.84625, 65.165744], - [-21.852758, 65.163824], - [-21.852936, 65.161504], - [-21.851721, 65.161377], - [-21.851299, 65.160221], - [-21.85177, 65.15958], - [-21.853795, 65.158877], - [-21.853498, 65.1584], - [-21.855737, 65.158538], - [-21.862194, 65.157362], - [-21.862741, 65.156629], - [-21.864, 65.156825], - [-21.880852, 65.154593], - [-21.882082, 65.153674], - [-21.885599, 65.152602], - [-21.885474, 65.151577], - [-21.887026, 65.15117], - [-21.88853, 65.15071], - [-21.892647, 65.147628], - [-21.894798, 65.146763], - [-21.89836, 65.14554], - [-21.899786, 65.144823], - [-21.899276, 65.144012], - [-21.89972, 65.14327], - [-21.90258, 65.1426], - [-21.903232, 65.142099], - [-21.906393, 65.140747], - [-21.908044, 65.139833], - [-21.910545, 65.138945], - [-21.913072, 65.138328], - [-21.913792, 65.137795], - [-21.916774, 65.137196], - [-21.917411, 65.136466], - [-21.919308, 65.136072], - [-21.921377, 65.135599], - [-21.932976, 65.133397], - [-21.935662, 65.13233], - [-21.937495, 65.131045], - [-21.937956, 65.129776], - [-21.940505, 65.129322], - [-21.948932, 65.129174], - [-21.95063, 65.12859], - [-21.951723, 65.127627], - [-21.956398, 65.126477], - [-21.956966, 65.125307], - [-21.958335, 65.125041], - [-21.960683, 65.125352], - [-21.966625, 65.124648], - [-21.968515, 65.12343], - [-21.968822, 65.122327], - [-21.971876, 65.12195], - [-21.973012, 65.120914], - [-21.97576, 65.120618], - [-21.977977, 65.119508], - [-21.978262, 65.118913], - [-21.980136, 65.118198], - [-21.989984, 65.116292], - [-21.994703, 65.116096], - [-21.995756, 65.115508], - [-21.997413, 65.115557], - [-21.99799, 65.115038], - [-22.00152, 65.11377], - [-22.00971, 65.11225], - [-22.021407, 65.111831], - [-22.023122, 65.111055], - [-22.02555, 65.11213], - [-22.02565, 65.11162], - [-22.04717, 65.11042], - [-22.06231, 65.11079], - [-22.06203, 65.10899], - [-22.06877, 65.10882], - [-22.07075, 65.10953], - [-22.07031, 65.11028], - [-22.07391, 65.11053], - [-22.07654, 65.10946], - [-22.09099, 65.11032], - [-22.09154, 65.1106], - [-22.096128, 65.110026], - [-22.09831, 65.11018], - [-22.09569, 65.110679], - [-22.095251, 65.111005], - [-22.09714, 65.11108], - [-22.09812, 65.1112], - [-22.09973, 65.1124], - [-22.11524, 65.11406], - [-22.115957, 65.114474], - [-22.118822, 65.114462], - [-22.120269, 65.115085], - [-22.122153, 65.115758], - [-22.122317, 65.116517], - [-22.12693, 65.11829], - [-22.127486, 65.11898], - [-22.13542, 65.12011], - [-22.13552, 65.1196], - [-22.14105, 65.11926], - [-22.14147, 65.12029], - [-22.15108, 65.121], - [-22.1548, 65.12061], - [-22.15646, 65.12156], - [-22.16539, 65.12261], - [-22.16602, 65.122761], - [-22.1696, 65.12288], - [-22.17684, 65.12324], - [-22.17693, 65.12273], - [-22.1794, 65.12255], - [-22.17931, 65.12307], - [-22.18343, 65.12384], - [-22.20228, 65.12393], - [-22.20521, 65.12454], - [-22.20958, 65.12391], - [-22.21314, 65.12441], - [-22.21324, 65.1239], - [-22.21503, 65.12409], - [-22.21691, 65.12376], - [-22.21668, 65.12503], - [-22.21978, 65.12475], - [-22.22332, 65.12537], - [-22.2249, 65.12504], - [-22.22469, 65.12451], - [-22.22713, 65.12447], - [-22.22732, 65.12512], - [-22.23609, 65.1254], - [-22.23623, 65.12463], - [-22.23744, 65.12467], - [-22.23753, 65.12416], - [-22.2393, 65.12447], - [-22.23939, 65.12396], - [-22.24237, 65.12431], - [-22.24228, 65.12482], - [-22.25145, 65.1246], - [-22.25071, 65.12535], - [-22.24521, 65.12543], - [-22.24517, 65.12569], - [-22.25304, 65.12593], - [-22.2513, 65.12716], - [-22.25271, 65.12891], - [-22.25549, 65.12922], - [-22.25482, 65.12958], - [-22.26674, 65.13098], - [-22.26664, 65.13149], - [-22.27319, 65.13234], - [-22.27508, 65.13201], - [-22.27584, 65.13114], - [-22.27703, 65.13131], - [-22.2791, 65.12996], - [-22.28152, 65.13004], - [-22.28201, 65.13069], - [-22.28018, 65.13064], - [-22.27866, 65.13239], - [-22.27745, 65.13235], - [-22.27799, 65.13275], - [-22.2792, 65.13278], - [-22.28425, 65.13179], - [-22.28434, 65.13128], - [-22.28581, 65.13158], - [-22.28602, 65.1321], - [-22.28484, 65.13181], - [-22.28472, 65.13257], - [-22.28104, 65.13271], - [-22.28095, 65.13322], - [-22.28242, 65.13353], - [-22.28233, 65.13404], - [-22.28442, 65.13423], - [-22.286198, 65.134947], - [-22.28855, 65.13501], - [-22.28846, 65.13551], - [-22.29605, 65.13616], - [-22.29877, 65.13571], - [-22.29931, 65.13611], - [-22.29643, 65.13636], - [-22.301052, 65.136723], - [-22.302778, 65.137538], - [-22.303518, 65.138759], - [-22.30553, 65.13887], - [-22.30573, 65.13939], - [-22.3072, 65.13969], - [-22.30702, 65.14071], - [-22.30953, 65.14027], - [-22.30944, 65.14078], - [-22.31065, 65.14082], - [-22.31026, 65.14132], - [-22.31103, 65.14211], - [-22.31711, 65.14218], - [-22.31747, 65.1436], - [-22.3205, 65.14369], - [-22.32041, 65.1442], - [-22.32409, 65.14406], - [-22.324, 65.14457], - [-22.32889, 65.14446], - [-22.3288, 65.14498], - [-22.33005, 65.14475], - [-22.33055, 65.14541], - [-22.33476, 65.14567], - [-22.335653, 65.145829], - [-22.33837, 65.14591], - [-22.34077, 65.14612], - [-22.341421, 65.146436], - [-22.342518, 65.146523], - [-22.34374, 65.14659], - [-22.34959, 65.14793], - [-22.351504, 65.150285], - [-22.35211, 65.15095], - [-22.35307, 65.15239], - [-22.35664, 65.15289], - [-22.35709, 65.1538], - [-22.36263, 65.15346], - [-22.36259, 65.15371], - [-22.36072, 65.15391], - [-22.36094, 65.15443], - [-22.36593, 65.15548], - [-22.37634, 65.15516], - [-22.37725, 65.15698], - [-22.37543, 65.15693], - [-22.37504, 65.15742], - [-22.37688, 65.15791], - [-22.37772, 65.15777], - [-22.376517, 65.15904], - [-22.376057, 65.159426], - [-22.37573, 65.159707], - [-22.375532, 65.159897], - [-22.37929, 65.16448], - [-22.37768, 65.16675], - [-22.38503, 65.16825], - [-22.38494, 65.16876], - [-22.38736, 65.16896], - [-22.38903, 65.16978], - [-22.39325, 65.17004], - [-22.39312, 65.1708], - [-22.39487, 65.17124], - [-22.39732, 65.17119], - [-22.39719, 65.17195], - [-22.40309, 65.17136], - [-22.40248, 65.16955], - [-22.40428, 65.16973], - [-22.40533, 65.17066], - [-22.40834, 65.17088], - [-22.41062, 65.17006], - [-22.40976, 65.16798], - [-22.4102, 65.16722], - [-22.40959, 65.16721], - [-22.40885, 65.16795], - [-22.40764, 65.16792], - [-22.40773, 65.16741], - [-22.40535, 65.16708], - [-22.40482, 65.16655], - [-22.40604, 65.16658], - [-22.40609, 65.16633], - [-22.40487, 65.16629], - [-22.40466, 65.16577], - [-22.40839, 65.16538], - [-22.40821, 65.1646], - [-22.40635, 65.1648], - [-22.40644, 65.16429], - [-22.40345, 65.16394], - [-22.40354, 65.16343], - [-22.40172, 65.16338], - [-22.40257, 65.16199], - [-22.40441, 65.16192], - [-22.40432, 65.16243], - [-22.40679, 65.16225], - [-22.40658, 65.15994], - [-22.41195, 65.16062], - [-22.41186, 65.16113], - [-22.41307, 65.16116], - [-22.41299, 65.16167], - [-22.41117, 65.16162], - [-22.4109, 65.16315], - [-22.41638, 65.16319], - [-22.41814, 65.16183], - [-22.42035, 65.16139], - [-22.42196, 65.15913], - [-22.42375, 65.15931], - [-22.42447, 65.15869], - [-22.42559, 65.15924], - [-22.42457, 65.1593], - [-22.42784, 65.16033], - [-22.42919, 65.1596], - [-22.42968, 65.16026], - [-22.43087, 65.16043], - [-22.43005, 65.15989], - [-22.43119, 65.15864], - [-22.42997, 65.1586], - [-22.4298, 65.15783], - [-22.43209, 65.15688], - [-22.4333, 65.15691], - [-22.43408, 65.1577], - [-22.43369, 65.15821], - [-22.43549, 65.15839], - [-22.43742, 65.15781], - [-22.43733, 65.15832], - [-22.43631, 65.15837], - [-22.43741, 65.1596], - [-22.43888, 65.15991], - [-22.43879, 65.16041], - [-22.44122, 65.16049], - [-22.44139, 65.15947], - [-22.43953, 65.15966], - [-22.43958, 65.15941], - [-22.4406, 65.15935], - [-22.44096, 65.15843], - [-22.43975, 65.15839], - [-22.43984, 65.15788], - [-22.43802, 65.15782], - [-22.43755, 65.15704], - [-22.43633, 65.157], - [-22.43677, 65.15625], - [-22.43962, 65.15557], - [-22.4398, 65.15455], - [-22.44102, 65.15458], - [-22.44115, 65.15382], - [-22.44299, 65.15375], - [-22.44435, 65.15289], - [-22.44812, 65.15224], - [-22.44816, 65.15198], - [-22.44392, 65.15185], - [-22.44349, 65.15082], - [-22.44587, 65.15114], - [-22.4496, 65.14895], - [-22.45016, 65.14743], - [-22.45319, 65.14753], - [-22.45516, 65.14669], - [-22.45698, 65.14674], - [-22.45757, 65.14808], - [-22.46098, 65.14827], - [-22.46088, 65.14878], - [-22.45786, 65.14868], - [-22.45613, 65.14813], - [-22.45605, 65.14864], - [-22.45418, 65.14884], - [-22.45436, 65.14961], - [-22.45371, 65.14986], - [-22.45383, 65.15088], - [-22.45206, 65.15056], - [-22.45137, 65.15106], - [-22.45258, 65.15109], - [-22.45236, 65.15237], - [-22.45355, 65.15253], - [-22.45405, 65.15319], - [-22.45524, 65.15334], - [-22.45733, 65.15534], - [-22.45984, 65.1549], - [-22.46123, 65.1575], - [-22.46218, 65.15729], - [-22.46231, 65.15651], - [-22.46387, 65.1563], - [-22.46378, 65.15681], - [-22.46982, 65.15712], - [-22.4717, 65.1568], - [-22.47196, 65.15527], - [-22.47344, 65.15557], - [-22.47278, 65.1576], - [-22.47711, 65.15722], - [-22.47573, 65.1582], - [-22.47328, 65.15825], - [-22.47213, 65.15783], - [-22.47187, 65.15936], - [-22.47313, 65.15915], - [-22.47235, 65.16015], - [-22.47057, 65.15984], - [-22.46988, 65.16033], - [-22.47354, 65.16031], - [-22.4759, 65.16078], - [-22.47581, 65.16128], - [-22.47867, 65.16059], - [-22.4785, 65.15982], - [-22.47971, 65.15986], - [-22.48075, 65.15912], - [-22.48079, 65.15707], - [-22.48201, 65.15711], - [-22.48272, 65.15649], - [-22.48333, 65.15651], - [-22.483249, 65.157107], - [-22.484832, 65.157278], - [-22.48664, 65.15853], - [-22.48542, 65.15849], - [-22.48469, 65.15924], - [-22.48711, 65.15931], - [-22.48577, 65.16004], - [-22.48698, 65.16008], - [-22.48551, 65.16157], - [-22.48733, 65.16162], - [-22.48746, 65.16086], - [-22.48867, 65.1609], - [-22.48876, 65.16039], - [-22.49242, 65.16037], - [-22.49532, 65.16122], - [-22.49603, 65.16061], - [-22.49903, 65.16082], - [-22.49954, 65.16148], - [-22.5005, 65.16125], - [-22.49945, 65.1602], - [-22.49997, 65.15893], - [-22.51097, 65.16233], - [-22.51106, 65.16182], - [-22.51227, 65.16186], - [-22.51235, 65.16135], - [-22.51056, 65.16117], - [-22.50867, 65.16151], - [-22.5088, 65.16073], - [-22.51002, 65.16078], - [-22.51084, 65.15951], - [-22.50963, 65.15948], - [-22.51038, 65.1586], - [-22.51339, 65.15882], - [-22.51326, 65.15958], - [-22.51623, 65.16006], - [-22.52129, 65.15893], - [-22.52562, 65.15854], - [-22.53099, 65.15922], - [-22.53301, 65.15992], - [-22.53318, 65.16069], - [-22.53682, 65.1608], - [-22.53695, 65.16004], - [-22.53998, 65.16013], - [-22.54041, 65.16295], - [-22.54185, 65.16351], - [-22.54202, 65.16249], - [-22.54323, 65.16253], - [-22.54331, 65.16202], - [-22.54826, 65.16164], - [-22.54786, 65.16215], - [-22.54864, 65.16295], - [-22.54743, 65.16291], - [-22.54953, 65.16365], - [-22.551413, 65.163727], - [-22.55187, 65.163968], - [-22.552219, 65.164354], - [-22.55133, 65.16508], - [-22.55627, 65.1647], - [-22.55428, 65.16568], - [-22.55547, 65.16584], - [-22.55596, 65.16649], - [-22.55232, 65.16639], - [-22.55337, 65.16744], - [-22.55407, 65.16682], - [-22.5561, 65.16752], - [-22.55627, 65.1683], - [-22.5538, 65.16848], - [-22.55487, 65.16941], - [-22.55669, 65.16946], - [-22.55868, 65.1685], - [-22.56164, 65.16897], - [-22.56152, 65.16973], - [-22.5603, 65.1697], - [-22.55922, 65.17069], - [-22.56, 65.17148], - [-22.55879, 65.17145], - [-22.55931, 65.17197], - [-22.55685, 65.17216], - [-22.55737, 65.17269], - [-22.55485, 65.17312], - [-22.55593, 65.17034], - [-22.55415, 65.17003], - [-22.55407, 65.17054], - [-22.55181, 65.16945], - [-22.55424, 65.16952], - [-22.55251, 65.16895], - [-22.55133, 65.16748], - [-22.54661, 65.16775], - [-22.54649, 65.16852], - [-22.54402, 65.1687], - [-22.54544, 65.16746], - [-22.54298, 65.16765], - [-22.5428, 65.16867], - [-22.54159, 65.16863], - [-22.54181, 65.17094], - [-22.54302, 65.17098], - [-22.54348, 65.17189], - [-22.54589, 65.17209], - [-22.54545, 65.17284], - [-22.54745, 65.17367], - [-22.54736, 65.17418], - [-22.54884, 65.17448], - [-22.54905, 65.175], - [-22.54784, 65.17496], - [-22.54745, 65.17547], - [-22.54819, 65.17651], - [-22.55064, 65.17646], - [-22.55101, 65.17788], - [-22.54613, 65.17786], - [-22.54304, 65.17815], - [-22.54312, 65.17764], - [-22.53827, 65.1775], - [-22.53814, 65.17826], - [-22.53446, 65.17841], - [-22.53368, 65.17942], - [-22.52878, 65.17952], - [-22.52835, 65.17848], - [-22.52709, 65.1787], - [-22.52779, 65.17821], - [-22.529, 65.17824], - [-22.52856, 65.17721], - [-22.53354, 65.17659], - [-22.53363, 65.17608], - [-22.53179, 65.17615], - [-22.52891, 65.17517], - [-22.52847, 65.17413], - [-22.53029, 65.17419], - [-22.53021, 65.1747], - [-22.53826, 65.17391], - [-22.53904, 65.17291], - [-22.5354, 65.1728], - [-22.53494, 65.17321], - [-22.53528, 65.17357], - [-22.53057, 65.17253], - [-22.52865, 65.17311], - [-22.52678, 65.17152], - [-22.52722, 65.17076], - [-22.52234, 65.17075], - [-22.51725, 65.172], - [-22.51734, 65.17149], - [-22.51552, 65.17144], - [-22.51561, 65.17093], - [-22.51398, 65.17096], - [-22.51362, 65.17189], - [-22.51543, 65.17195], - [-22.51535, 65.17246], - [-22.51717, 65.17251], - [-22.51726, 65.1738], - [-22.51621, 65.17453], - [-22.52215, 65.17549], - [-22.52181, 65.17751], - [-22.52302, 65.17756], - [-22.52311, 65.17705], - [-22.52655, 65.17706], - [-22.52662, 65.17613], - [-22.52755, 65.17603], - [-22.52861, 65.17695], - [-22.52694, 65.17725], - [-22.52462, 65.17889], - [-22.52163, 65.17853], - [-22.52086, 65.17954], - [-22.51964, 65.17951], - [-22.51891, 65.18025], - [-22.51769, 65.18022], - [-22.51943, 65.18078], - [-22.51934, 65.18129], - [-22.51713, 65.18175], - [-22.51461, 65.18397], - [-22.5128, 65.18391], - [-22.51271, 65.18442], - [-22.51085, 65.18462], - [-22.51011, 65.18537], - [-22.50344, 65.18517], - [-22.5014, 65.18639], - [-22.49824, 65.18706], - [-22.49772, 65.18654], - [-22.49954, 65.18659], - [-22.4985, 65.18552], - [-22.49971, 65.18557], - [-22.4998, 65.18506], - [-22.50103, 65.18497], - [-22.50275, 65.18387], - [-22.50266, 65.18258], - [-22.50147, 65.18242], - [-22.49412, 65.18258], - [-22.49421, 65.18207], - [-22.48866, 65.18242], - [-22.48875, 65.18191], - [-22.48758, 65.18162], - [-22.48749, 65.18213], - [-22.48502, 65.18231], - [-22.48541, 65.18181], - [-22.48697, 65.18159], - [-22.48979, 65.17938], - [-22.48732, 65.17955], - [-22.48658, 65.18031], - [-22.48476, 65.18025], - [-22.48398, 65.18125], - [-22.48277, 65.18122], - [-22.48329, 65.18175], - [-22.48026, 65.18165], - [-22.47987, 65.18036], - [-22.47866, 65.18032], - [-22.47874, 65.17981], - [-22.48366, 65.17958], - [-22.48437, 65.17896], - [-22.48871, 65.17858], - [-22.48955, 65.17719], - [-22.49252, 65.17766], - [-22.49425, 65.17823], - [-22.49395, 65.17643], - [-22.49274, 65.17639], - [-22.49341, 65.17603], - [-22.49523, 65.17608], - [-22.49594, 65.17546], - [-22.49716, 65.1755], - [-22.49872, 65.1735], - [-22.49993, 65.17353], - [-22.50001, 65.17302], - [-22.50259, 65.1722], - [-22.50383, 65.17211], - [-22.50519, 65.17125], - [-22.51184, 65.17158], - [-22.51359, 65.17078], - [-22.51461, 65.16962], - [-22.5121, 65.17006], - [-22.51435, 65.16935], - [-22.51422, 65.16833], - [-22.51305, 65.16803], - [-22.51296, 65.16854], - [-22.51179, 65.16825], - [-22.51133, 65.16866], - [-22.51184, 65.16919], - [-22.51219, 65.16955], - [-22.51158, 65.16953], - [-22.5105, 65.16873], - [-22.51041, 65.16924], - [-22.50794, 65.16942], - [-22.50837, 65.17046], - [-22.50536, 65.17023], - [-22.50157, 65.17102], - [-22.50149, 65.17153], - [-22.49707, 65.17243], - [-22.49694, 65.17319], - [-22.49516, 65.17288], - [-22.49508, 65.17339], - [-22.49135, 65.17379], - [-22.49118, 65.17481], - [-22.48996, 65.17477], - [-22.48979, 65.17579], - [-22.48858, 65.17575], - [-22.4884, 65.17677], - [-22.48719, 65.17674], - [-22.48767, 65.17751], - [-22.48645, 65.17748], - [-22.48658, 65.17672], - [-22.48087, 65.17808], - [-22.48073, 65.17885], - [-22.47311, 65.18067], - [-22.47253, 65.1804], - [-22.47302, 65.18118], - [-22.4718, 65.18114], - [-22.46976, 65.18236], - [-22.4746, 65.18264], - [-22.47657, 65.1818], - [-22.47953, 65.1824], - [-22.47948, 65.18266], - [-22.47766, 65.1826], - [-22.47752, 65.18336], - [-22.47566, 65.18356], - [-22.47607, 65.18473], - [-22.47856, 65.18442], - [-22.47839, 65.18544], - [-22.47653, 65.18564], - [-22.47427, 65.18455], - [-22.47376, 65.18521], - [-22.47635, 65.18666], - [-22.47507, 65.18701], - [-22.47327, 65.18682], - [-22.47375, 65.18581], - [-22.47293, 65.18528], - [-22.4728, 65.18604], - [-22.47098, 65.18599], - [-22.47089, 65.1865], - [-22.47028, 65.18648], - [-22.47037, 65.18596], - [-22.46599, 65.1866], - [-22.46612, 65.18584], - [-22.46734, 65.18588], - [-22.46751, 65.18486], - [-22.46934, 65.18491], - [-22.46938, 65.18466], - [-22.46704, 65.18408], - [-22.46656, 65.18448], - [-22.46691, 65.18484], - [-22.46612, 65.18466], - [-22.45478, 65.18447], - [-22.45486, 65.18396], - [-22.45046, 65.18472], - [-22.44684, 65.18449], - [-22.44779, 65.18605], - [-22.44597, 65.186], - [-22.44376, 65.18824], - [-22.45061, 65.18743], - [-22.45052, 65.18793], - [-22.45299, 65.18775], - [-22.45268, 65.18953], - [-22.45151, 65.18924], - [-22.4519, 65.19053], - [-22.45372, 65.19059], - [-22.45381, 65.19008], - [-22.45882, 65.18933], - [-22.46187, 65.1893], - [-22.46235, 65.19008], - [-22.46048, 65.19028], - [-22.4615, 65.19146], - [-22.46742, 65.19254], - [-22.46905, 65.19374], - [-22.47522, 65.19329], - [-22.47561, 65.19279], - [-22.48528, 65.19154], - [-22.4869, 65.19274], - [-22.49052, 65.19298], - [-22.48848, 65.1942], - [-22.48358, 65.19431], - [-22.48311, 65.19532], - [-22.48456, 65.19575], - [-22.49065, 65.1958], - [-22.49052, 65.19657], - [-22.49475, 65.19682], - [-22.49498, 65.19901], - [-22.50001, 65.19813], - [-22.49993, 65.19864], - [-22.49871, 65.19861], - [-22.49858, 65.19937], - [-22.5004, 65.19943], - [-22.50053, 65.19866], - [-22.50156, 65.19861], - [-22.50192, 65.19768], - [-22.505, 65.19752], - [-22.50487, 65.19828], - [-22.5014, 65.19894], - [-22.50097, 65.1997], - [-22.49975, 65.19966], - [-22.50077, 65.20085], - [-22.50262, 65.20077], - [-22.50341, 65.19977], - [-22.50496, 65.19956], - [-22.50535, 65.19906], - [-22.50973, 65.19843], - [-22.50895, 65.19763], - [-22.50982, 65.19612], - [-22.50903, 65.19533], - [-22.51027, 65.19524], - [-22.51163, 65.19438], - [-22.51042, 65.19435], - [-22.51051, 65.19384], - [-22.50496, 65.19418], - [-22.50539, 65.19343], - [-22.51454, 65.19165], - [-22.51445, 65.19216], - [-22.51796, 65.19303], - [-22.51835, 65.19253], - [-22.52056, 65.19209], - [-22.52069, 65.19132], - [-22.52251, 65.19138], - [-22.52457, 65.19003], - [-22.52719, 65.18895], - [-22.52904, 65.18887], - [-22.53161, 65.18806], - [-22.5317, 65.18755], - [-22.53607, 65.18691], - [-22.53599, 65.18743], - [-22.53412, 65.18762], - [-22.53523, 65.1883], - [-22.53703, 65.18848], - [-22.537882, 65.187473], - [-22.538944, 65.186949], - [-22.539223, 65.186836], - [-22.539577, 65.186838], - [-22.540022, 65.187082], - [-22.54036, 65.187575], - [-22.540714, 65.187714], - [-22.540934, 65.187725], - [-22.541068, 65.187568], - [-22.541305, 65.187478], - [-22.541653, 65.18689], - [-22.542367, 65.186379], - [-22.543155, 65.186138], - [-22.543858, 65.186066], - [-22.544255, 65.185868], - [-22.544802, 65.185575], - [-22.544266, 65.185305], - [-22.546132, 65.184756], - [-22.546615, 65.185071], - [-22.54742, 65.185409], - [-22.547774, 65.185508], - [-22.548514, 65.185265], - [-22.549512, 65.185157], - [-22.550038, 65.185733], - [-22.551186, 65.185377], - [-22.551701, 65.185774], - [-22.552709, 65.185616], - [-22.554233, 65.185674], - [-22.555992, 65.185305], - [-22.556797, 65.185666], - [-22.556175, 65.185859], - [-22.5561, 65.186152], - [-22.55669, 65.18617], - [-22.556346, 65.186399], - [-22.556733, 65.186512], - [-22.557172, 65.186634], - [-22.557773, 65.186593], - [-22.558127, 65.186701], - [-22.557162, 65.186967], - [-22.556958, 65.187268], - [-22.556829, 65.187467], - [-22.557044, 65.187552], - [-22.55762, 65.18755], - [-22.558406, 65.187165], - [-22.558621, 65.186755], - [-22.55831, 65.186521], - [-22.558213, 65.186282], - [-22.559018, 65.18603], - [-22.558181, 65.185706], - [-22.557709, 65.185314], - [-22.557162, 65.184864], - [-22.55816, 65.184526], - [-22.559093, 65.184441], - [-22.55964, 65.184652], - [-22.560906, 65.185368], - [-22.5596, 65.18599], - [-22.56056, 65.18636], - [-22.56064, 65.18585], - [-22.56246, 65.1859], - [-22.56164, 65.18716], - [-22.56043, 65.18712], - [-22.5597, 65.18787], - [-22.55848, 65.18784], - [-22.55519, 65.18927], - [-22.55509, 65.18858], - [-22.5535, 65.18846], - [-22.55337, 65.18922], - [-22.54969, 65.18937], - [-22.5496, 65.18988], - [-22.54839, 65.18984], - [-22.54826, 65.19061], - [-22.53898, 65.19136], - [-22.53907, 65.19085], - [-22.53673, 65.19026], - [-22.5369, 65.19104], - [-22.53838, 65.19134], - [-22.53829, 65.19185], - [-22.53953, 65.19176], - [-22.54007, 65.19216], - [-22.53521, 65.19201], - [-22.53508, 65.19278], - [-22.53292, 65.19297], - [-22.5304, 65.1952], - [-22.52858, 65.19515], - [-22.5285, 65.19566], - [-22.52668, 65.1956], - [-22.5275, 65.19434], - [-22.5257, 65.19416], - [-22.52559, 65.1948], - [-22.52438, 65.19476], - [-22.52511, 65.19402], - [-22.52143, 65.19416], - [-22.52195, 65.19469], - [-22.52074, 65.19466], - [-22.5203, 65.19362], - [-22.5197, 65.1936], - [-22.51822, 65.19509], - [-22.51701, 65.19506], - [-22.51692, 65.19557], - [-22.51814, 65.1956], - [-22.51545, 65.19706], - [-22.51484, 65.19704], - [-22.51558, 65.19629], - [-22.51441, 65.196], - [-22.51428, 65.19677], - [-22.51181, 65.19695], - [-22.51231, 65.19762], - [-22.5135, 65.19777], - [-22.51341, 65.19828], - [-22.51155, 65.19848], - [-22.51142, 65.19924], - [-22.50968, 65.19868], - [-22.50955, 65.19945], - [-22.50643, 65.19986], - [-22.5063, 65.20063], - [-22.50383, 65.20081], - [-22.5024, 65.20205], - [-22.50487, 65.20187], - [-22.50478, 65.20238], - [-22.50548, 65.20189], - [-22.5086, 65.20147], - [-22.50851, 65.20199], - [-22.50558, 65.20249], - [-22.50645, 65.20332], - [-22.50888, 65.2034], - [-22.50995, 65.20433], - [-22.50873, 65.20429], - [-22.50791, 65.20555], - [-22.51042, 65.20511], - [-22.51024, 65.20613], - [-22.50841, 65.20621], - [-22.50784, 65.20593], - [-22.50478, 65.20596], - [-22.50461, 65.20698], - [-22.50341, 65.20695], - [-22.502477, 65.207495], - [-22.50349, 65.20763], - [-22.505639, 65.207408], - [-22.50808, 65.20811], - [-22.50733, 65.20886], - [-22.51121, 65.20949], - [-22.51134, 65.21052], - [-22.50945, 65.21084], - [-22.50283, 65.21026], - [-22.5005, 65.21147], - [-22.50036, 65.21403], - [-22.49915, 65.21399], - [-22.49897, 65.21501], - [-22.49528, 65.21516], - [-22.49437, 65.21693], - [-22.49191, 65.21711], - [-22.49116, 65.21965], - [-22.49372, 65.22075], - [-22.49359, 65.22151], - [-22.49177, 65.22146], - [-22.48938, 65.22472], - [-22.48821, 65.22443], - [-22.48811, 65.22494], - [-22.48625, 65.22514], - [-22.48773, 65.22723], - [-22.48465, 65.2274], - [-22.4813, 65.23268], - [-22.47744, 65.23384], - [-22.48173, 65.23371], - [-22.48078, 65.23573], - [-22.47835, 65.23566], - [-22.47613, 65.2379], - [-22.47431, 65.23785], - [-22.47357, 65.23859], - [-22.46866, 65.2387], - [-22.46857, 65.23921], - [-22.46362, 65.23957], - [-22.46254, 65.24056], - [-22.46266, 65.24158], - [-22.45957, 65.24176], - [-22.45945, 65.24252], - [-22.45632, 65.24294], - [-22.45667, 65.2409], - [-22.45289, 65.24156], - [-22.45347, 65.24004], - [-22.45576, 65.23908], - [-22.45098, 65.23842], - [-22.45107, 65.23791], - [-22.44864, 65.23784], - [-22.44856, 65.23835], - [-22.44608, 65.23852], - [-22.4496, 65.23941], - [-22.45037, 65.24199], - [-22.44798, 65.24166], - [-22.44894, 65.24323], - [-22.44711, 65.24317], - [-22.44702, 65.24368], - [-22.44576, 65.2439], - [-22.44499, 65.24311], - [-22.44594, 65.24169], - [-22.44568, 65.24082], - [-22.44447, 65.24079], - [-22.44438, 65.24129], - [-22.44316, 65.24126], - [-22.44308, 65.24177], - [-22.43858, 65.24305], - [-22.43552, 65.24308], - [-22.43543, 65.24359], - [-22.43043, 65.2442], - [-22.43034, 65.24471], - [-22.42848, 65.24491], - [-22.42768, 65.24591], - [-22.42647, 65.24588], - [-22.42695, 65.24666], - [-22.42616, 65.24647], - [-22.4245, 65.24671], - [-22.42269, 65.24653], - [-22.42065, 65.24775], - [-22.42247, 65.24781], - [-22.41755, 65.2515], - [-22.41694, 65.25148], - [-22.41739, 65.24893], - [-22.4186, 65.24897], - [-22.41874, 65.2482], - [-22.41565, 65.24837], - [-22.41574, 65.24786], - [-22.41272, 65.24764], - [-22.40896, 65.24816], - [-22.40822, 65.24891], - [-22.41317, 65.25034], - [-22.4127, 65.25135], - [-22.40899, 65.25148], - [-22.40891, 65.252], - [-22.40578, 65.25242], - [-22.40438, 65.2534], - [-22.40621, 65.25346], - [-22.40477, 65.2547], - [-22.40355, 65.25466], - [-22.40172, 65.2564], - [-22.40921, 65.25727], - [-22.41234, 65.25685], - [-22.41323, 65.25701], - [-22.41205, 65.25851], - [-22.41084, 65.25847], - [-22.41075, 65.25898], - [-22.40953, 65.25894], - [-22.40875, 65.25994], - [-22.41355, 65.26047], - [-22.41605, 65.26017], - [-22.41596, 65.26068], - [-22.41474, 65.26064], - [-22.41465, 65.26115], - [-22.41587, 65.26119], - [-22.41448, 65.26217], - [-22.412, 65.26235], - [-22.41126, 65.26309], - [-22.41004, 65.26306], - [-22.41049, 65.26397], - [-22.4123, 65.26415], - [-22.41226, 65.26441], - [-22.40155, 65.26613], - [-22.3995, 65.26735], - [-22.39829, 65.26731], - [-22.3982, 65.26782], - [-22.39633, 65.26802], - [-22.39685, 65.26855], - [-22.39333, 65.26767], - [-22.39063, 65.26913], - [-22.39374, 65.26884], - [-22.39424, 65.26949], - [-22.39302, 65.26946], - [-22.39258, 65.27021], - [-22.39406, 65.27051], - [-22.39275, 65.27099], - [-22.39262, 65.27057], - [-22.38975, 65.27064], - [-22.38875, 65.27112], - [-22.38888, 65.27215], - [-22.3864, 65.27233], - [-22.38577, 65.2759], - [-22.38395, 65.27584], - [-22.38438, 65.27688], - [-22.38316, 65.27684], - [-22.38303, 65.27761], - [-22.37928, 65.278], - [-22.37921, 65.27672], - [-22.38034, 65.27547], - [-22.38158, 65.27538], - [-22.3823, 65.27476], - [-22.38352, 65.2748], - [-22.38426, 65.27405], - [-22.38117, 65.27422], - [-22.38154, 65.27218], - [-22.37918, 65.27159], - [-22.37844, 65.27234], - [-22.37722, 65.2723], - [-22.37691, 65.27409], - [-22.37569, 65.27405], - [-22.37491, 65.27505], - [-22.3699, 65.27565], - [-22.37034, 65.27491], - [-22.37256, 65.27446], - [-22.37335, 65.27346], - [-22.37213, 65.27343], - [-22.37297, 65.27098], - [-22.37141, 65.27059], - [-22.37071, 65.26988], - [-22.36972, 65.26976], - [-22.37062, 65.27159], - [-22.3694, 65.27155], - [-22.36989, 65.27233], - [-22.364326, 65.272829], - [-22.36242, 65.273], - [-22.36048, 65.27358], - [-22.36, 65.2728], - [-22.35766, 65.27221], - [-22.35757, 65.27272], - [-22.35514, 65.27265], - [-22.35552, 65.27394], - [-22.35793, 65.27414], - [-22.35843, 65.2748], - [-22.3566, 65.27474], - [-22.35651, 65.27525], - [-22.35464, 65.27545], - [-22.35455, 65.27596], - [-22.35268, 65.27616], - [-22.35259, 65.27667], - [-22.35629, 65.27654], - [-22.3562, 65.27704], - [-22.35311, 65.2772], - [-22.35237, 65.27794], - [-22.35054, 65.27789], - [-22.35132, 65.27868], - [-22.35013, 65.28018], - [-22.35501, 65.28033], - [-22.35483, 65.28135], - [-22.34883, 65.28065], - [-22.34808, 65.2814], - [-22.34621, 65.2816], - [-22.34699, 65.28239], - [-22.34655, 65.28314], - [-22.34594, 65.28312], - [-22.34603, 65.28262], - [-22.34121, 65.28222], - [-22.34112, 65.28272], - [-22.340162, 65.282949], - [-22.34016, 65.28295], - [-22.3405, 65.28449], - [-22.340248, 65.284667], - [-22.33875, 65.28572], - [-22.34114, 65.28605], - [-22.34127, 65.28529], - [-22.3443, 65.28551], - [-22.34558, 65.28636], - [-22.34718, 65.28649], - [-22.34727, 65.28598], - [-22.35111, 65.28508], - [-22.35027, 65.28633], - [-22.35149, 65.28637], - [-22.35048, 65.28865], - [-22.35294, 65.28859], - [-22.3537, 65.28892], - [-22.35862, 65.28762], - [-22.36074, 65.28602], - [-22.36319, 65.28596], - [-22.36311, 65.28647], - [-22.36123, 65.28667], - [-22.36049, 65.28742], - [-22.36212, 65.28738], - [-22.36241, 65.28697], - [-22.36971, 65.28719], - [-22.36751, 65.287781], - [-22.364751, 65.288153], - [-22.36307, 65.288087], - [-22.36293, 65.28749], - [-22.36018, 65.28921], - [-22.35897, 65.28916], - [-22.35891, 65.28942], - [-22.35769, 65.28938], - [-22.3576, 65.28989], - [-22.36069, 65.28973], - [-22.36148, 65.28873], - [-22.36331, 65.28879], - [-22.363156, 65.288375], - [-22.367007, 65.288255], - [-22.36701, 65.28864], - [-22.36884, 65.2887], - [-22.3687, 65.28947], - [-22.36692, 65.28915], - [-22.36744, 65.28968], - [-22.36491, 65.29012], - [-22.365, 65.28961], - [-22.36322, 65.2893], - [-22.36369, 65.29008], - [-22.3613, 65.28975], - [-22.36117, 65.29052], - [-22.35808, 65.29068], - [-22.35799, 65.29119], - [-22.35364, 65.29156], - [-22.35395, 65.28979], - [-22.3489, 65.29065], - [-22.34933, 65.29169], - [-22.3475, 65.29163], - [-22.34529, 65.29028], - [-22.34516, 65.29104], - [-22.34637, 65.29108], - [-22.34637, 65.29228], - [-22.34676, 65.29238], - [-22.34685, 65.29187], - [-22.34867, 65.29192], - [-22.34763, 65.29266], - [-22.34784, 65.29318], - [-22.34662, 65.29314], - [-22.34554, 65.29234], - [-22.34536, 65.29336], - [-22.34221, 65.29377], - [-22.34082, 65.29475], - [-22.33839, 65.29468], - [-22.33825, 65.29544], - [-22.33394, 65.29557], - [-22.33324, 65.29606], - [-22.33555, 65.2969], - [-22.32666, 65.29866], - [-22.32741, 65.29613], - [-22.32846, 65.2954], - [-22.32488, 65.2949], - [-22.32106, 65.29568], - [-22.32097, 65.2962], - [-22.31666, 65.29631], - [-22.31461, 65.29753], - [-22.31082, 65.29818], - [-22.30806, 65.29989], - [-22.3049, 65.30043], - [-22.30251, 65.3001], - [-22.29743, 65.30109], - [-22.29753, 65.30058], - [-22.29443, 65.30074], - [-22.29303, 65.30173], - [-22.28942, 65.30135], - [-22.28877, 65.30159], - [-22.28816, 65.30157], - [-22.28811, 65.30183], - [-22.28746, 65.30206], - [-22.28624, 65.30202], - [-22.2862, 65.30228], - [-22.28306, 65.30269], - [-22.28166, 65.30367], - [-22.27529, 65.30501], - [-22.27389, 65.30599], - [-22.26691, 65.30731], - [-22.26682, 65.30782], - [-22.26434, 65.308], - [-22.26424, 65.30851], - [-22.25458, 65.31115], - [-22.2509, 65.31116], - [-22.2508, 65.31167], - [-22.25327, 65.31163], - [-22.25371, 65.31253], - [-22.25253, 65.31237], - [-22.24696, 65.31258], - [-22.24687, 65.31309], - [-22.24069, 65.3134], - [-22.24078, 65.31289], - [-22.23421, 65.31191], - [-22.2343, 65.31141], - [-22.23182, 65.31158], - [-22.23191, 65.31108], - [-22.22901, 65.31021], - [-22.22891, 65.31072], - [-22.22769, 65.31069], - [-22.22779, 65.31018], - [-22.22591, 65.31037], - [-22.22713, 65.31041], - [-22.22681, 65.31219], - [-22.22371, 65.31236], - [-22.22362, 65.31286], - [-22.20739, 65.31452], - [-22.20609, 65.31487], - [-22.204852, 65.315115], - [-22.20413, 65.31557], - [-22.202349, 65.315862], - [-22.201455, 65.316294], - [-22.200008, 65.31673], - [-22.19592, 65.31685], - [-22.192541, 65.316994], - [-22.184954, 65.317891], - [-22.176696, 65.319013], - [-22.172458, 65.320091], - [-22.167498, 65.321286], - [-22.162722, 65.321797], - [-22.161409, 65.322177], - [-22.160695, 65.32297], - [-22.1613, 65.32343], - [-22.16081, 65.32443], - [-22.156531, 65.324378], - [-22.154987, 65.324949], - [-22.152846, 65.325771], - [-22.151715, 65.326726], - [-22.154618, 65.327413], - [-22.15105, 65.33079], - [-22.14923, 65.33073], - [-22.14829, 65.33249], - [-22.14646, 65.33244], - [-22.14571, 65.33318], - [-22.1451, 65.33316], - [-22.14604, 65.3314], - [-22.14303, 65.33104], - [-22.14209, 65.33281], - [-22.13224, 65.333], - [-22.13044, 65.33448], - [-22.13374, 65.33484], - [-22.13285, 65.33635], - [-22.1291, 65.33675], - [-22.1292, 65.33624], - [-22.12741, 65.33592], - [-22.12789, 65.33671], - [-22.12539, 65.33688], - [-22.12534, 65.33714], - [-22.12708, 65.3377], - [-22.12393, 65.33812], - [-22.12335, 65.33963], - [-22.12001, 65.34106], - [-22.12015, 65.34197], - [-22.12139, 65.34188], - [-22.121559, 65.344083], - [-22.11914, 65.344889], - [-22.117222, 65.345555], - [-22.113292, 65.346265], - [-22.11181, 65.34721], - [-22.10289, 65.34897], - [-22.10209, 65.34997], - [-22.0996, 65.35014], - [-22.09951, 65.35064], - [-22.09667, 65.350786], - [-22.09443, 65.35151], - [-22.09077, 65.35139], - [-22.09124, 65.35218], - [-22.090245, 65.352614], - [-22.08983, 65.35316], - [-22.088674, 65.353613], - [-22.08767, 65.35488], - [-22.08445, 65.35567], - [-22.083259, 65.355735], - [-22.082066, 65.356158], - [-22.07986, 65.35719], - [-22.077497, 65.35806], - [-22.07572, 65.358832], - [-22.07165, 65.359426], - [-22.07004, 65.36046], - [-22.06688, 65.36098], - [-22.05608, 65.36282], - [-22.05261, 65.36501], - [-22.03969, 65.3683], - [-22.03662, 65.36833], - [-22.03721, 65.37168], - [-22.03604, 65.37139], - [-22.03255, 65.37358], - [-22.03438, 65.37364], - [-22.03419, 65.37466], - [-22.03304, 65.37423], - [-22.020515, 65.375024], - [-22.01048, 65.37976], - [-22.00223, 65.38116], - [-21.96653, 65.38139], - [-21.96315, 65.38461], - [-21.96287, 65.38767], - [-21.9619, 65.3879], - [-21.96131, 65.38942], - [-21.96008, 65.38937], - [-21.95993, 65.39014], - [-21.95871, 65.3901], - [-21.95771, 65.39212], - [-21.95649, 65.39207], - [-21.95751, 65.39313], - [-21.95629, 65.39309], - [-21.95543, 65.39435], - [-21.95414, 65.39469], - [-21.95045, 65.39469], - [-21.94938, 65.39543], - [-21.95002, 65.39852], - [-21.95311, 65.4011], - [-21.95411, 65.40122], - [-21.95406, 65.40148], - [-21.95049, 65.40085], - [-21.95003, 65.40006], - [-21.94881, 65.40002], - [-21.9489, 65.39951], - [-21.94304, 65.39803], - [-21.94266, 65.39674], - [-21.94389, 65.39678], - [-21.94358, 65.39523], - [-21.9418, 65.39492], - [-21.94189, 65.39441], - [-21.93945, 65.39432], - [-21.93756, 65.39298], - [-21.93873, 65.39161], - [-21.9406, 65.39154], - [-21.9407, 65.39103], - [-21.93892, 65.39072], - [-21.93691, 65.38834], - [-21.936691, 65.388333], - [-21.9363, 65.38832], - [-21.93525, 65.39059], - [-21.92965, 65.39092], - [-21.92919, 65.39013], - [-21.92653, 65.38911], - [-21.92679, 65.3898], - [-21.92135, 65.38936], - [-21.92016, 65.38598], - [-21.919901, 65.385971], - [-21.91771, 65.3859], - [-21.91885, 65.38952], - [-21.92005, 65.3897], - [-21.92054, 65.39035], - [-21.92481, 65.3905], - [-21.92467, 65.39126], - [-21.92651, 65.39132], - [-21.9264, 65.39183], - [-21.92765, 65.39175], - [-21.92941, 65.39219], - [-21.92916, 65.39347], - [-21.93043, 65.39325], - [-21.93028, 65.39402], - [-21.93388, 65.39452], - [-21.93441, 65.39492], - [-21.93319, 65.39488], - [-21.93309, 65.39539], - [-21.92938, 65.39552], - [-21.92947, 65.39501], - [-21.92576, 65.39515], - [-21.92566, 65.39565], - [-21.92714, 65.39596], - [-21.92669, 65.39671], - [-21.92765, 65.39649], - [-21.9302, 65.3976], - [-21.93006, 65.39837], - [-21.93675, 65.39872], - [-21.93674, 65.40039], - [-21.93787, 65.40094], - [-21.93813, 65.40274], - [-21.93544, 65.40393], - [-21.93565, 65.40445], - [-21.93442, 65.40441], - [-21.93494, 65.40494], - [-21.93305, 65.40513], - [-21.93295, 65.40564], - [-21.92977, 65.40618], - [-21.92608, 65.40618], - [-21.92618, 65.40567], - [-21.92065, 65.40561], - [-21.91752, 65.40589], - [-21.91743, 65.4064], - [-21.91503, 65.40606], - [-21.91488, 65.40683], - [-21.91371, 65.40653], - [-21.91361, 65.40704], - [-21.911711, 65.407488], - [-21.910446, 65.407741], - [-21.91061, 65.40822], - [-21.90783, 65.41146], - [-21.9066, 65.41142], - [-21.90661, 65.41296], - [-21.90561, 65.41498], - [-21.90494, 65.41521], - [-21.90485, 65.41726], - [-21.90363, 65.41722], - [-21.90171, 65.42074], - [-21.90049, 65.4207], - [-21.90039, 65.42121], - [-21.89666, 65.42147], - [-21.89489, 65.42102], - [-21.893866, 65.421669], - [-21.893157, 65.424771], - [-21.892504, 65.426117], - [-21.891374, 65.428577], - [-21.89065, 65.430252], - [-21.890184, 65.431935], - [-21.889982, 65.432937], - [-21.889814, 65.434149], - [-21.890033, 65.435721], - [-21.890325, 65.437754], - [-21.890544, 65.438723], - [-21.891226, 65.43995], - [-21.891598, 65.440592], - [-21.891992, 65.4412], - [-21.892679, 65.442115], - [-21.893754, 65.442963], - [-21.894774, 65.443762], - [-21.896333, 65.444801], - [-21.898659, 65.446118], - [-21.900397, 65.446887], - [-21.900397, 65.446979], - [-21.900055, 65.447123], - [-21.899756, 65.447109], - [-21.898268, 65.446465], - [-21.896514, 65.445586], - [-21.894075, 65.444147], - [-21.893099, 65.443415], - [-21.891579, 65.442087], - [-21.890847, 65.441094], - [-21.890622, 65.440622], - [-21.890243, 65.439826], - [-21.88971, 65.438705], - [-21.889371, 65.437526], - [-21.889095, 65.435063], - [-21.88897, 65.433577], - [-21.889108, 65.432769], - [-21.889477, 65.431035], - [-21.890205, 65.429162], - [-21.890722, 65.428194], - [-21.892053, 65.425856], - [-21.892359, 65.424762], - [-21.892371, 65.423948], - [-21.891798, 65.420677], - [-21.889586, 65.418763], - [-21.88711, 65.4176], - [-21.886815, 65.41769], - [-21.884008, 65.41663], - [-21.880759, 65.415502], - [-21.874876, 65.414454], - [-21.871615, 65.414097], - [-21.866805, 65.413919], - [-21.862303, 65.413011], - [-21.860628, 65.41324], - [-21.853075, 65.414239], - [-21.847926, 65.415382], - [-21.841133, 65.416402], - [-21.830604, 65.417191], - [-21.827864, 65.416977], - [-21.824895, 65.417399], - [-21.814502, 65.418255], - [-21.804816, 65.418723], - [-21.800053, 65.418835], - [-21.796305, 65.418952], - [-21.792528, 65.418809], - [-21.789953, 65.419095], - [-21.785147, 65.419952], - [-21.780043, 65.420563], - [-21.775065, 65.421206], - [-21.771288, 65.421277], - [-21.768309, 65.42134], - [-21.764716, 65.421316], - [-21.763761, 65.422813], - [-21.763296, 65.423737], - [-21.762781, 65.424665], - [-21.761752, 65.426092], - [-21.760692, 65.426813], - [-21.759863, 65.427377], - [-21.75849, 65.428234], - [-21.756945, 65.427877], - [-21.753855, 65.427877], - [-21.75231, 65.42802], - [-21.749049, 65.427806], - [-21.747675, 65.427377], - [-21.745959, 65.427592], - [-21.744757, 65.427949], - [-21.74407, 65.428876], - [-21.741839, 65.429805], - [-21.740294, 65.43059], - [-21.738406, 65.432017], - [-21.736517, 65.432731], - [-21.732741, 65.434301], - [-21.726904, 65.436085], - [-21.723986, 65.437298], - [-21.723128, 65.438154], - [-21.720553, 65.439225], - [-21.717635, 65.440652], - [-21.713515, 65.442221], - [-21.704073, 65.445717], - [-21.700297, 65.446787], - [-21.69755, 65.447572], - [-21.693945, 65.448428], - [-21.691542, 65.449426], - [-21.690512, 65.449426], - [-21.687937, 65.450068], - [-21.683989, 65.450995], - [-21.67939, 65.45127], - [-21.68041, 65.45233], - [-21.67918, 65.45229], - [-21.678995, 65.452402], - [-21.67913, 65.45255], - [-21.68202, 65.45342], - [-21.68198, 65.45367], - [-21.68137, 65.45365], - [-21.68132, 65.4539], - [-21.68644, 65.45601], - [-21.658534, 65.469528], - [-21.62633, 65.483927], - [-21.616712, 65.478522], - [-21.590374, 65.461393], - [-21.619661, 65.437734], - [-21.618865, 65.419074], - [-21.599508, 65.410891], - [-21.625261, 65.404788], - [-21.647919, 65.399486], - [-21.654313, 65.370952], - [-21.633811, 65.361517], - [-21.58398, 65.339339], - [-21.517962, 65.359378], - [-21.488381, 65.367334], - [-21.470006, 65.356728], - [-21.432521, 65.335838], - [-21.362004, 65.29603], - [-21.36294, 65.263145], - [-21.350178, 65.259053], - [-21.285033, 65.238687], - [-21.29039, 65.215494], - [-21.263841, 65.191457], - [-21.243966, 65.172795], - [-21.245752, 65.138286], - [-21.278589, 65.113993], - [-21.293961, 65.101476], - [-21.256467, 65.082168], - [-21.231468, 65.069885], - [-21.235039, 65.039763], - [-21.213145, 65.022165], - [-21.182699, 64.997362], - [-21.174331, 64.990743], - [-21.073805, 64.967374], - [-21.016562, 64.954222], - [-20.977727, 64.945297], - [-20.901637, 64.925961], - [-20.889302, 64.922537], - [-20.788829, 64.913362], - [-20.759512, 64.91363], - [-20.664311, 64.887822], - [-20.615787, 64.887065], - [-20.559466, 64.913826], - [-20.535381, 64.924854], - [-20.50039, 64.924186], - [-20.452474, 64.943151], - [-20.357589, 64.935139], - [-20.330139, 64.926233], - [-20.280987, 64.91109], - [-20.154932, 64.911347], - [-20.118159, 64.920972], - [-20.09841, 64.910779], - [-19.997223, 64.911984], - [-19.883752, 64.912235], - [-19.880104, 64.907694] - ], - [ - [-23.734938, 64.812861], - [-23.736032, 64.813099], - [-23.739938, 64.813592], - [-23.748171, 64.812042], - [-23.747727, 64.812733], - [-23.743236, 64.816508], - [-23.743579, 64.816946], - [-23.742807, 64.817411], - [-23.739222, 64.817881], - [-23.736132, 64.819488], - [-23.736656, 64.819504], - [-23.738535, 64.819561], - [-23.742716, 64.819047], - [-23.745526, 64.819483], - [-23.747222, 64.820175], - [-23.747293, 64.821047], - [-23.746357, 64.821401], - [-23.746463, 64.821701], - [-23.748835, 64.822556], - [-23.745402, 64.823286], - [-23.75038, 64.823359], - [-23.754328, 64.822921], - [-23.754672, 64.821387], - [-23.75965, 64.820803], - [-23.7619, 64.821144], - [-23.764993, 64.821077], - [-23.766972, 64.822468], - [-23.766442, 64.822678], - [-23.762053, 64.822702], - [-23.760508, 64.823578], - [-23.758356, 64.824994], - [-23.756218, 64.825671], - [-23.756889, 64.826648], - [-23.758515, 64.826475], - [-23.760547, 64.826798], - [-23.762156, 64.828617], - [-23.765637, 64.827911], - [-23.766485, 64.825423], - [-23.767281, 64.825115], - [-23.768783, 64.8264], - [-23.771151, 64.826937], - [-23.772494, 64.826377], - [-23.775074, 64.826069], - [-23.775092, 64.825167], - [-23.776735, 64.824656], - [-23.778785, 64.825265], - [-23.780535, 64.8254], - [-23.77981, 64.823882], - [-23.778485, 64.822152], - [-23.779687, 64.8211], - [-23.782161, 64.822025], - [-23.783451, 64.821731], - [-23.78437, 64.824032], - [-23.78543, 64.824348], - [-23.789247, 64.8244], - [-23.793577, 64.824423], - [-23.796864, 64.824603], - [-23.799515, 64.824957], - [-23.80183, 64.825107], - [-23.80388, 64.825333], - [-23.805188, 64.824551], - [-23.804764, 64.823145], - [-23.804446, 64.82107], - [-23.80494, 64.819168], - [-23.804817, 64.817423], - [-23.80669, 64.816303], - [-23.80699, 64.812964], - [-23.804453, 64.810869], - [-23.805205, 64.809835], - [-23.805718, 64.80894], - [-23.809288, 64.808714], - [-23.810136, 64.807992], - [-23.815349, 64.807804], - [-23.811886, 64.807255], - [-23.814589, 64.806412], - [-23.816286, 64.806299], - [-23.818358, 64.805169], - [-23.821764, 64.804561], - [-23.823991, 64.803967], - [-23.824194, 64.803269], - [-23.821105, 64.802392], - [-23.818089, 64.802598], - [-23.81717, 64.803794], - [-23.815268, 64.804], - [-23.815268, 64.804804], - [-23.813552, 64.805827], - [-23.80617, 64.805462], - [-23.802565, 64.804219], - [-23.802866, 64.802508], - [-23.801629, 64.801907], - [-23.799155, 64.801335], - [-23.799632, 64.800936], - [-23.801452, 64.800989], - [-23.804245, 64.800319], - [-23.808274, 64.800063], - [-23.812693, 64.798592], - [-23.809603, 64.798007], - [-23.804282, 64.798007], - [-23.802107, 64.797526], - [-23.806561, 64.7963], - [-23.808858, 64.795457], - [-23.8137, 64.79484], - [-23.813036, 64.793694], - [-23.805655, 64.795375], - [-23.802196, 64.796887], - [-23.800849, 64.796691], - [-23.802584, 64.795118], - [-23.798555, 64.795803], - [-23.799174, 64.79484], - [-23.79859, 64.793207], - [-23.794402, 64.790911], - [-23.78857, 64.78985], - [-23.784241, 64.791332], - [-23.776907, 64.788224], - [-23.77392, 64.788208], - [-23.772771, 64.789022], - [-23.772216, 64.789557], - [-23.771686, 64.790408], - [-23.769459, 64.790099], - [-23.767682, 64.790068], - [-23.766791, 64.790889], - [-23.767232, 64.792131], - [-23.765794, 64.792608], - [-23.761996, 64.791667], - [-23.759528, 64.791987], - [-23.758498, 64.793056], - [-23.755451, 64.793842], - [-23.754722, 64.794537], - [-23.752962, 64.795697], - [-23.753606, 64.796638], - [-23.759958, 64.799059], - [-23.757855, 64.799279], - [-23.751847, 64.798685], - [-23.746461, 64.798584], - [-23.74159, 64.799123], - [-23.740088, 64.799781], - [-23.740131, 64.800503], - [-23.748006, 64.802266], - [-23.758456, 64.803993], - [-23.758971, 64.804385], - [-23.758992, 64.804751], - [-23.755301, 64.805189], - [-23.748521, 64.805235], - [-23.746353, 64.804842], - [-23.74365, 64.805052], - [-23.74189, 64.805747], - [-23.745323, 64.807674], - [-23.745173, 64.80887], - [-23.740925, 64.810843], - [-23.736633, 64.810907], - [-23.735474, 64.811482], - [-23.734745, 64.812213], - [-23.734938, 64.812861] - ], - [ - [-20.330677, 64.778654], - [-20.331706, 64.781434], - [-20.33617, 64.78275], - [-20.344753, 64.78392], - [-20.352649, 64.786114], - [-20.361232, 64.786699], - [-20.355739, 64.789331], - [-20.356769, 64.79211], - [-20.364322, 64.789478], - [-20.370845, 64.787138], - [-20.373935, 64.787723], - [-20.365695, 64.791964], - [-20.362949, 64.795327], - [-20.361232, 64.800005], - [-20.355052, 64.804682], - [-20.356426, 64.805851], - [-20.366725, 64.801613], - [-20.370159, 64.798251], - [-20.375308, 64.794888], - [-20.379428, 64.792402], - [-20.383892, 64.795327], - [-20.388698, 64.796204], - [-20.385608, 64.797373], - [-20.385951, 64.800297], - [-20.392131, 64.802636], - [-20.397624, 64.803221], - [-20.400371, 64.800882], - [-20.396938, 64.797666], - [-20.395221, 64.795327], - [-20.404148, 64.796642], - [-20.411357, 64.795034], - [-20.411014, 64.792256], - [-20.420627, 64.79094], - [-20.425777, 64.793426], - [-20.429897, 64.792987], - [-20.441913, 64.795911], - [-20.44672, 64.795619], - [-20.451869, 64.79328], - [-20.448093, 64.79211], - [-20.447063, 64.790209], - [-20.454616, 64.789916], - [-20.459079, 64.788015], - [-20.467319, 64.789039], - [-20.474185, 64.785237], - [-20.470066, 64.78275], - [-20.465259, 64.782457], - [-20.456333, 64.783481], - [-20.450153, 64.784213], - [-20.439853, 64.78626], - [-20.433673, 64.789185], - [-20.430927, 64.787284], - [-20.432643, 64.786699], - [-20.436077, 64.783774], - [-20.438823, 64.781872], - [-20.44054, 64.780117], - [-20.441913, 64.777191], - [-20.448436, 64.775143], - [-20.454959, 64.77368], - [-20.458736, 64.771631], - [-20.458736, 64.768704], - [-20.454959, 64.768119], - [-20.451526, 64.76607], - [-20.454273, 64.76446], - [-20.44878, 64.76446], - [-20.446033, 64.763435], - [-20.446033, 64.761093], - [-20.448093, 64.758458], - [-20.43745, 64.757579], - [-20.437793, 64.754944], - [-20.432987, 64.75553], - [-20.430583, 64.754065], - [-20.42818, 64.754944], - [-20.42303, 64.754651], - [-20.426464, 64.753626], - [-20.422344, 64.752454], - [-20.418567, 64.752747], - [-20.414104, 64.753187], - [-20.410671, 64.751283], - [-20.404148, 64.751283], - [-20.398998, 64.751137], - [-20.393848, 64.750844], - [-20.386981, 64.752308], - [-20.379085, 64.752747], - [-20.370502, 64.752747], - [-20.361576, 64.754651], - [-20.365009, 64.757433], - [-20.357112, 64.758165], - [-20.354022, 64.75919], - [-20.349903, 64.760507], - [-20.351276, 64.763581], - [-20.347843, 64.766655], - [-20.346126, 64.768265], - [-20.341663, 64.768265], - [-20.337886, 64.769582], - [-20.338573, 64.771631], - [-20.341663, 64.772363], - [-20.344753, 64.773241], - [-20.33926, 64.774119], - [-20.337543, 64.776021], - [-20.330677, 64.778654] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "11271", - "properties": { - "NAME_ENGLISH": "Westfjords", - "name": "Vestfirðir", - "ISOCODE": "IS-4", - "density": 0, - "path": "/world/Iceland/Westfjords" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-22.804516, 66.448176], - [-22.804553, 66.448067], - [-22.804837, 66.448072], - [-22.804898, 66.448102], - [-22.804516, 66.448176] - ] - ], - [ - [ - [-22.345808, 66.388842], - [-22.346153, 66.388737], - [-22.346153, 66.388786], - [-22.346079, 66.388868], - [-22.345845, 66.388943], - [-22.345808, 66.388842] - ] - ], - [ - [ - [-23.031383, 66.29709], - [-23.031277, 66.297086], - [-23.031399, 66.296978], - [-23.031594, 66.296992], - [-23.031603, 66.297083], - [-23.031529, 66.297171], - [-23.031351, 66.297178], - [-23.031383, 66.29709] - ] - ], - [ - [ - [-22.415318, 66.459514], - [-22.415448, 66.459501], - [-22.415464, 66.459472], - [-22.415586, 66.459481], - [-22.415789, 66.459481], - [-22.415895, 66.459514], - [-22.415854, 66.459556], - [-22.415732, 66.459546], - [-22.415561, 66.459582], - [-22.415431, 66.459624], - [-22.415318, 66.459514] - ] - ], - [ - [ - [-23.031546, 66.296789], - [-23.031603, 66.29672], - [-23.03179, 66.296609], - [-23.031887, 66.296635], - [-23.031944, 66.296724], - [-23.031904, 66.296884], - [-23.031806, 66.296985], - [-23.031716, 66.296913], - [-23.031603, 66.2969], - [-23.031546, 66.296789] - ] - ], - [ - [ - [-22.346228, 66.388932], - [-22.3462, 66.388857], - [-22.346237, 66.388808], - [-22.346415, 66.388696], - [-22.346723, 66.388741], - [-22.346901, 66.388782], - [-22.346667, 66.388883], - [-22.346368, 66.388943], - [-22.346228, 66.388932] - ] - ], - [ - [ - [-23.033375, 66.297524], - [-23.033408, 66.297374], - [-23.033554, 66.29738], - [-23.033692, 66.297299], - [-23.033814, 66.297374], - [-23.033863, 66.297564], - [-23.033627, 66.297753], - [-23.033465, 66.297737], - [-23.033391, 66.297704], - [-23.033416, 66.29758], - [-23.033375, 66.297524] - ] - ], - [ - [ - [-21.694192, 66.058276], - [-21.694192, 66.058188], - [-21.694351, 66.058152], - [-21.694684, 66.058223], - [-21.694815, 66.058346], - [-21.69509, 66.058423], - [-21.695104, 66.058546], - [-21.694786, 66.05874], - [-21.694597, 66.058635], - [-21.694612, 66.05854], - [-21.694307, 66.058376], - [-21.694192, 66.058276] - ] - ], - [ - [ - [-22.40722, 66.454484], - [-22.407183, 66.454395], - [-22.407426, 66.454439], - [-22.407557, 66.454451], - [-22.407631, 66.454492], - [-22.407771, 66.454477], - [-22.407846, 66.454484], - [-22.407865, 66.454529], - [-22.408014, 66.454507], - [-22.408238, 66.454529], - [-22.408453, 66.454581], - [-22.408715, 66.454581], - [-22.408883, 66.454618], - [-22.409032, 66.454786], - [-22.409126, 66.454809], - [-22.409247, 66.454824], - [-22.409425, 66.455003], - [-22.409219, 66.454939], - [-22.409098, 66.454936], - [-22.408911, 66.454876], - [-22.408761, 66.454876], - [-22.408537, 66.454801], - [-22.408406, 66.454805], - [-22.407921, 66.454701], - [-22.407809, 66.454637], - [-22.407669, 66.454663], - [-22.407585, 66.454626], - [-22.40751, 66.454533], - [-22.40722, 66.454484] - ] - ], - [ - [ - [-21.72376, 66.097916], - [-21.723817, 66.097801], - [-21.723817, 66.097675], - [-21.72359, 66.097641], - [-21.723831, 66.09752], - [-21.723689, 66.097491], - [-21.723831, 66.09744], - [-21.724015, 66.097434], - [-21.723916, 66.097371], - [-21.724256, 66.097371], - [-21.724638, 66.097417], - [-21.724723, 66.097623], - [-21.724553, 66.097859], - [-21.724199, 66.097784], - [-21.724227, 66.097859], - [-21.724142, 66.097922], - [-21.723888, 66.098065], - [-21.72376, 66.097916] - ] - ], - [ - [ - [-22.396022, 66.444456], - [-22.395957, 66.444257], - [-22.396063, 66.444118], - [-22.396307, 66.444186], - [-22.396477, 66.444176], - [-22.396567, 66.444196], - [-22.396567, 66.444287], - [-22.396786, 66.444436], - [-22.39699, 66.444472], - [-22.397136, 66.444475], - [-22.397266, 66.444368], - [-22.397429, 66.4444], - [-22.397461, 66.444449], - [-22.397307, 66.444592], - [-22.397233, 66.444667], - [-22.397046, 66.444706], - [-22.396721, 66.444725], - [-22.396542, 66.444673], - [-22.39616, 66.444547], - [-22.396022, 66.444456] - ] - ], - [ - [ - [-21.694039, 66.059421], - [-21.693916, 66.059171], - [-21.694634, 66.058911], - [-21.6949, 66.059063], - [-21.694839, 66.059213], - [-21.694708, 66.059486], - [-21.694339, 66.059646], - [-21.693896, 66.059637], - [-21.694039, 66.059421] - ] - ], - [ - [ - [-23.024998, 66.295857], - [-23.025063, 66.295795], - [-23.025209, 66.295766], - [-23.025331, 66.295818], - [-23.025437, 66.295828], - [-23.025339, 66.295779], - [-23.025616, 66.295674], - [-23.025721, 66.295753], - [-23.025835, 66.29571], - [-23.026079, 66.295717], - [-23.026364, 66.29573], - [-23.02638, 66.295684], - [-23.02651, 66.295769], - [-23.0266, 66.295714], - [-23.026689, 66.295671], - [-23.026852, 66.295638], - [-23.027047, 66.295632], - [-23.027161, 66.295753], - [-23.027039, 66.295985], - [-23.026933, 66.296145], - [-23.026681, 66.296361], - [-23.026421, 66.29641], - [-23.026144, 66.296403], - [-23.026185, 66.296426], - [-23.026014, 66.296429], - [-23.025665, 66.296328], - [-23.025543, 66.296194], - [-23.025429, 66.296171], - [-23.025291, 66.296093], - [-23.025291, 66.295991], - [-23.025177, 66.295978], - [-23.025169, 66.295897], - [-23.024998, 66.295857] - ] - ], - [ - [ - [-21.72176, 66.070506], - [-21.722251, 66.070497], - [-21.722457, 66.070427], - [-21.722754, 66.070427], - [-21.723677, 66.070934], - [-21.723341, 66.071307], - [-21.722148, 66.071503], - [-21.721832, 66.071063], - [-21.722017, 66.070934], - [-21.721801, 66.07088], - [-21.72176, 66.070506] - ] - ], - [ - [ - [-22.805391, 66.448028], - [-22.80512, 66.447924], - [-22.805724, 66.447732], - [-22.805995, 66.447659], - [-22.80639, 66.447442], - [-22.80687, 66.447407], - [-22.807228, 66.446821], - [-22.807437, 66.446871], - [-22.807191, 66.447265], - [-22.807178, 66.447476], - [-22.807006, 66.447742], - [-22.806846, 66.447811], - [-22.807129, 66.44788], - [-22.807178, 66.448087], - [-22.807006, 66.448584], - [-22.806463, 66.448589], - [-22.805934, 66.44855], - [-22.805687, 66.448461], - [-22.805625, 66.448328], - [-22.80581, 66.4482], - [-22.806266, 66.447944], - [-22.806377, 66.447841], - [-22.806069, 66.447875], - [-22.805921, 66.447806], - [-22.805391, 66.448028] - ] - ], - [ - [ - [-21.161548, 65.296913], - [-21.161646, 65.296463], - [-21.162871, 65.296381], - [-21.163606, 65.296524], - [-21.163655, 65.296934], - [-21.163948, 65.297261], - [-21.162675, 65.297875], - [-21.161842, 65.297589], - [-21.161548, 65.296913] - ] - ], - [ - [ - [-21.160181, 65.284355], - [-21.160289, 65.284159], - [-21.160707, 65.284095], - [-21.161466, 65.284131], - [-21.162015, 65.284273], - [-21.162543, 65.284323], - [-21.162992, 65.284444], - [-21.163313, 65.284633], - [-21.163292, 65.284722], - [-21.162786, 65.284584], - [-21.162345, 65.284695], - [-21.162004, 65.284803], - [-21.161876, 65.284888], - [-21.161993, 65.284995], - [-21.162463, 65.285217], - [-21.162594, 65.285417], - [-21.162496, 65.285624], - [-21.162315, 65.285862], - [-21.161842, 65.285867], - [-21.161618, 65.285711], - [-21.16153, 65.285557], - [-21.161019, 65.285256], - [-21.160639, 65.284997], - [-21.160532, 65.284798], - [-21.160222, 65.284562], - [-21.160181, 65.284355] - ] - ], - [ - [ - [-22.904784, 65.374174], - [-22.904836, 65.374031], - [-22.904872, 65.373924], - [-22.904982, 65.3738], - [-22.905248, 65.37375], - [-22.905576, 65.373704], - [-22.905877, 65.373687], - [-22.906085, 65.373696], - [-22.906294, 65.373655], - [-22.906476, 65.373617], - [-22.906727, 65.373565], - [-22.906986, 65.373537], - [-22.907309, 65.373531], - [-22.907536, 65.373507], - [-22.907887, 65.37346], - [-22.908181, 65.373436], - [-22.908355, 65.373418], - [-22.908612, 65.373354], - [-22.908884, 65.373361], - [-22.909013, 65.373369], - [-22.909157, 65.373388], - [-22.90914, 65.373458], - [-22.909015, 65.373518], - [-22.909, 65.373594], - [-22.908942, 65.373671], - [-22.908976, 65.373728], - [-22.909134, 65.373809], - [-22.909217, 65.37386], - [-22.909208, 65.37392], - [-22.909145, 65.373966], - [-22.909046, 65.374018], - [-22.908849, 65.374093], - [-22.90859, 65.374191], - [-22.908384, 65.37428], - [-22.908266, 65.374367], - [-22.908085, 65.374374], - [-22.907987, 65.374413], - [-22.907899, 65.374448], - [-22.907744, 65.374437], - [-22.907591, 65.374424], - [-22.907377, 65.374419], - [-22.907117, 65.374429], - [-22.906685, 65.374499], - [-22.906224, 65.374564], - [-22.905719, 65.374601], - [-22.905561, 65.374593], - [-22.905362, 65.37458], - [-22.905163, 65.37453], - [-22.904961, 65.374483], - [-22.904801, 65.374381], - [-22.904751, 65.374277], - [-22.904784, 65.374174] - ] - ], - [ - [ - [-21.170903, 65.298018], - [-21.170462, 65.297363], - [-21.171344, 65.297282], - [-21.17105, 65.296708], - [-21.172128, 65.296012], - [-21.17296, 65.296012], - [-21.173107, 65.296463], - [-21.17345, 65.296729], - [-21.174087, 65.296975], - [-21.173205, 65.297363], - [-21.171736, 65.297855], - [-21.170903, 65.298018] - ] - ], - [ - [ - [-22.391794, 66.445184], - [-22.391656, 66.445057], - [-22.392176, 66.444787], - [-22.392168, 66.444732], - [-22.39203, 66.444719], - [-22.391859, 66.444631], - [-22.391973, 66.444517], - [-22.392095, 66.444543], - [-22.392184, 66.44443], - [-22.392054, 66.444404], - [-22.392282, 66.444293], - [-22.392119, 66.444267], - [-22.392184, 66.444173], - [-22.392322, 66.444134], - [-22.392713, 66.443858], - [-22.39264, 66.443621], - [-22.393014, 66.443439], - [-22.393436, 66.443429], - [-22.39364, 66.443484], - [-22.39368, 66.443526], - [-22.393753, 66.443585], - [-22.394404, 66.4439], - [-22.394396, 66.443942], - [-22.394607, 66.444076], - [-22.394998, 66.444244], - [-22.395063, 66.444296], - [-22.395241, 66.444407], - [-22.395306, 66.444521], - [-22.395201, 66.444631], - [-22.39503, 66.444683], - [-22.394851, 66.444849], - [-22.394485, 66.444937], - [-22.394144, 66.444956], - [-22.393924, 66.444937], - [-22.393721, 66.444985], - [-22.393534, 66.44495], - [-22.392835, 66.445057], - [-22.392599, 66.445148], - [-22.392493, 66.445115], - [-22.392339, 66.445174], - [-22.392404, 66.445239], - [-22.392078, 66.445291], - [-22.392078, 66.445236], - [-22.392152, 66.445154], - [-22.391794, 66.445184] - ] - ], - [ - [ - [-21.725466, 66.099214], - [-21.725487, 66.098907], - [-21.725528, 66.098608], - [-21.725446, 66.098442], - [-21.725753, 66.098243], - [-21.725425, 66.097919], - [-21.725569, 66.097197], - [-21.725753, 66.097039], - [-21.725958, 66.096815], - [-21.725753, 66.096582], - [-21.726122, 66.096151], - [-21.726102, 66.095943], - [-21.726348, 66.095627], - [-21.72686, 66.095935], - [-21.727085, 66.096358], - [-21.727044, 66.096831], - [-21.727557, 66.097006], - [-21.727782, 66.097247], - [-21.727844, 66.097487], - [-21.728008, 66.097753], - [-21.727782, 66.098011], - [-21.727905, 66.098467], - [-21.726184, 66.099007], - [-21.725835, 66.099281], - [-21.725466, 66.099214] - ] - ], - [ - [ - [-22.9102, 65.56283], - [-22.91081, 65.56285], - [-22.91086, 65.5626], - [-22.92103, 65.56082], - [-22.92095, 65.56133], - [-22.91648, 65.56224], - [-22.9164, 65.56275], - [-22.91016, 65.5631], - [-22.9102, 65.56283] - ] - ], - [ - [ - [-21.161842, 65.300392], - [-21.16243, 65.299738], - [-21.161989, 65.298939], - [-21.162479, 65.298305], - [-21.163067, 65.298182], - [-21.163948, 65.297977], - [-21.164193, 65.298387], - [-21.16434, 65.298919], - [-21.164438, 65.299942], - [-21.164144, 65.300167], - [-21.164536, 65.300495], - [-21.164928, 65.300904], - [-21.164977, 65.301354], - [-21.163948, 65.301764], - [-21.162528, 65.301354], - [-21.162724, 65.300966], - [-21.161842, 65.300392] - ] - ], - [ - [ - [-22.649571, 66.109235], - [-22.649603, 66.109169], - [-22.649837, 66.109046], - [-22.650026, 66.108924], - [-22.65009, 66.108898], - [-22.650234, 66.10891], - [-22.650377, 66.108911], - [-22.650522, 66.108859], - [-22.650736, 66.108826], - [-22.650843, 66.108846], - [-22.650889, 66.108806], - [-22.65109, 66.108808], - [-22.651292, 66.108803], - [-22.651469, 66.10877], - [-22.651671, 66.10879], - [-22.651772, 66.108763], - [-22.651915, 66.108678], - [-22.651986, 66.108584], - [-22.652046, 66.10846], - [-22.652145, 66.108395], - [-22.652324, 66.108358], - [-22.652565, 66.108362], - [-22.652783, 66.108385], - [-22.652983, 66.108552], - [-22.653083, 66.108639], - [-22.653516, 66.108685], - [-22.653933, 66.108767], - [-22.654395, 66.108978], - [-22.654751, 66.109083], - [-22.654858, 66.109166], - [-22.654946, 66.109245], - [-22.655007, 66.109327], - [-22.654596, 66.109454], - [-22.654292, 66.109546], - [-22.653987, 66.109623], - [-22.65395, 66.109687], - [-22.654187, 66.109816], - [-22.654393, 66.109907], - [-22.65445, 66.110014], - [-22.654521, 66.110122], - [-22.654509, 66.110165], - [-22.654452, 66.110236], - [-22.654327, 66.110277], - [-22.654001, 66.11032], - [-22.653784, 66.110355], - [-22.653165, 66.110369], - [-22.652507, 66.110431], - [-22.652233, 66.110512], - [-22.651914, 66.110555], - [-22.651509, 66.110542], - [-22.651085, 66.110499], - [-22.650567, 66.110485], - [-22.650194, 66.110398], - [-22.649948, 66.110351], - [-22.649823, 66.110296], - [-22.6498, 66.110224], - [-22.649926, 66.110166], - [-22.649779, 66.110089], - [-22.649806, 66.110037], - [-22.650055, 66.109945], - [-22.650266, 66.109896], - [-22.650324, 66.109823], - [-22.650564, 66.109808], - [-22.650667, 66.109766], - [-22.650651, 66.109715], - [-22.650611, 66.109652], - [-22.650408, 66.109629], - [-22.650063, 66.109572], - [-22.649877, 66.109457], - [-22.649773, 66.109447], - [-22.649673, 66.109406], - [-22.649537, 66.109324], - [-22.649571, 66.109235] - ] - ], - [ - [ - [-22.899768, 65.372351], - [-22.8998, 65.372239], - [-22.89986, 65.372184], - [-22.899941, 65.372135], - [-22.900084, 65.372129], - [-22.900188, 65.372062], - [-22.900294, 65.371981], - [-22.900479, 65.371884], - [-22.900875, 65.37183], - [-22.901145, 65.371763], - [-22.90146, 65.371727], - [-22.901734, 65.371706], - [-22.901885, 65.371715], - [-22.901988, 65.371687], - [-22.902109, 65.371615], - [-22.902262, 65.371554], - [-22.902485, 65.37146], - [-22.902626, 65.371442], - [-22.902794, 65.371426], - [-22.902938, 65.371427], - [-22.903061, 65.371456], - [-22.903199, 65.371505], - [-22.903252, 65.371549], - [-22.90323, 65.371622], - [-22.903107, 65.37173], - [-22.902976, 65.371864], - [-22.902949, 65.371976], - [-22.903013, 65.372054], - [-22.903291, 65.372103], - [-22.903546, 65.37213], - [-22.903746, 65.37214], - [-22.904078, 65.372103], - [-22.904299, 65.372082], - [-22.904525, 65.372034], - [-22.904728, 65.371944], - [-22.905183, 65.371857], - [-22.905576, 65.371804], - [-22.906043, 65.371718], - [-22.906391, 65.37167], - [-22.9067, 65.371614], - [-22.906877, 65.371525], - [-22.907063, 65.371428], - [-22.907227, 65.371361], - [-22.907441, 65.371351], - [-22.907665, 65.37133], - [-22.907921, 65.371272], - [-22.908178, 65.371227], - [-22.908449, 65.371207], - [-22.908616, 65.371145], - [-22.908807, 65.37108], - [-22.909129, 65.371059], - [-22.909435, 65.371042], - [-22.909676, 65.370993], - [-22.909887, 65.370949], - [-22.910206, 65.370867], - [-22.910349, 65.370907], - [-22.910458, 65.370991], - [-22.910586, 65.371078], - [-22.910557, 65.371201], - [-22.910421, 65.371321], - [-22.909983, 65.371484], - [-22.909583, 65.371663], - [-22.909375, 65.371783], - [-22.90916, 65.371873], - [-22.908933, 65.37192], - [-22.908639, 65.371957], - [-22.90842, 65.372029], - [-22.908204, 65.372099], - [-22.908043, 65.372139], - [-22.907725, 65.372147], - [-22.907504, 65.372137], - [-22.907179, 65.372153], - [-22.906937, 65.372173], - [-22.906564, 65.372229], - [-22.90615, 65.37229], - [-22.905819, 65.372374], - [-22.90543, 65.372412], - [-22.90503, 65.372401], - [-22.904687, 65.372372], - [-22.904331, 65.372394], - [-22.903919, 65.372468], - [-22.903654, 65.37251], - [-22.903432, 65.372573], - [-22.903307, 65.372632], - [-22.903198, 65.37274], - [-22.903098, 65.37287], - [-22.902871, 65.372988], - [-22.902723, 65.3731], - [-22.902704, 65.373173], - [-22.902703, 65.373248], - [-22.902679, 65.373412], - [-22.90243, 65.373271], - [-22.902247, 65.373193], - [-22.902163, 65.37313], - [-22.902042, 65.372997], - [-22.901908, 65.372931], - [-22.901622, 65.372874], - [-22.901287, 65.372813], - [-22.901082, 65.372757], - [-22.900785, 65.372626], - [-22.900461, 65.372542], - [-22.900174, 65.372529], - [-22.89998, 65.372521], - [-22.899809, 65.372485], - [-22.89978, 65.372351], - [-22.899768, 65.372351] - ] - ], - [ - [ - [-21.35285, 65.609859], - [-21.35491, 65.60837], - [-21.355253, 65.60759], - [-21.357657, 65.607236], - [-21.358515, 65.607803], - [-21.358172, 65.608583], - [-21.35697, 65.60915], - [-21.355597, 65.610284], - [-21.353709, 65.610709], - [-21.35285, 65.61078], - [-21.35285, 65.609859] - ] - ], - [ - [ - [-22.54836, 65.53394], - [-22.55036, 65.53309], - [-22.55471, 65.53297], - [-22.55668, 65.53226], - [-22.55974, 65.53248], - [-22.55969, 65.53274], - [-22.55846, 65.5327], - [-22.55636, 65.53418], - [-22.55697, 65.53419], - [-22.55693, 65.53445], - [-22.55504, 65.53465], - [-22.55513, 65.53414], - [-22.5508, 65.53414], - [-22.55023, 65.53387], - [-22.54836, 65.53394] - ] - ], - [ - [ - [-22.93655, 65.40192], - [-22.93716, 65.40194], - [-22.93728, 65.40118], - [-22.93951, 65.40072], - [-22.93993, 65.39997], - [-22.94433, 65.39932], - [-22.94472, 65.39881], - [-22.94881, 65.39816], - [-22.94889, 65.39765], - [-22.95014, 65.39755], - [-22.95084, 65.39693], - [-22.95663, 65.39529], - [-22.96164, 65.39466], - [-22.9616, 65.39492], - [-22.95679, 65.39565], - [-22.95452, 65.39703], - [-22.95329, 65.397], - [-22.95317, 65.39776], - [-22.95195, 65.39773], - [-22.95122, 65.39848], - [-22.94299, 65.40005], - [-22.94291, 65.40056], - [-22.94103, 65.40076], - [-22.94095, 65.40127], - [-22.93708, 65.40245], - [-22.93655, 65.40192] - ] - ], - [ - [ - [-21.48117, 66.02049], - [-21.48124, 66.02023], - [-21.48645, 66.01939], - [-21.48765, 66.01969], - [-21.4889, 66.01974], - [-21.49022, 66.02235], - [-21.48636, 66.02272], - [-21.48551, 66.02372], - [-21.48296, 66.02388], - [-21.4837, 66.02186], - [-21.48242, 66.02053], - [-21.48117, 66.02049] - ] - ], - [ - [ - [-22.811094, 65.373695], - [-22.811126, 65.373637], - [-22.811233, 65.373552], - [-22.811298, 65.373409], - [-22.811426, 65.373253], - [-22.811662, 65.373048], - [-22.811834, 65.372905], - [-22.811877, 65.3728], - [-22.811985, 65.372626], - [-22.812145, 65.372456], - [-22.812349, 65.372358], - [-22.812542, 65.372309], - [-22.812757, 65.3723], - [-22.812971, 65.37227], - [-22.813089, 65.372323], - [-22.813325, 65.372399], - [-22.813518, 65.37244], - [-22.813647, 65.372435], - [-22.813701, 65.372371], - [-22.81383, 65.372233], - [-22.813894, 65.37218], - [-22.814119, 65.372131], - [-22.814291, 65.372212], - [-22.814495, 65.372319], - [-22.814656, 65.372403], - [-22.814817, 65.372447], - [-22.814902, 65.372475], - [-22.815106, 65.372511], - [-22.815321, 65.372578], - [-22.815428, 65.372636], - [-22.815578, 65.372695], - [-22.815707, 65.372695], - [-22.815986, 65.372653], - [-22.816276, 65.37259], - [-22.816458, 65.372538], - [-22.816641, 65.372358], - [-22.81679, 65.372238], - [-22.816952, 65.372183], - [-22.81707, 65.372125], - [-22.817327, 65.372015], - [-22.817413, 65.371915], - [-22.817509, 65.37185], - [-22.817509, 65.371782], - [-22.817509, 65.371715], - [-22.817359, 65.371604], - [-22.81723, 65.371514], - [-22.817134, 65.37142], - [-22.816694, 65.371192], - [-22.816501, 65.371121], - [-22.816329, 65.371116], - [-22.816169, 65.371039], - [-22.816125, 65.370924], - [-22.816094, 65.370806], - [-22.816029, 65.370713], - [-22.815997, 65.370565], - [-22.815943, 65.370471], - [-22.815846, 65.370383], - [-22.815728, 65.370316], - [-22.815707, 65.370243], - [-22.815718, 65.370168], - [-22.81576, 65.370061], - [-22.815729, 65.369961], - [-22.815664, 65.369796], - [-22.815632, 65.369574], - [-22.815675, 65.36947], - [-22.815696, 65.369341], - [-22.815707, 65.369291], - [-22.815718, 65.369104], - [-22.815696, 65.369033], - [-22.815707, 65.36896], - [-22.815782, 65.368942], - [-22.815868, 65.368966], - [-22.816072, 65.369001], - [-22.816447, 65.369109], - [-22.816533, 65.369185], - [-22.816619, 65.369265], - [-22.816619, 65.369386], - [-22.81664, 65.369462], - [-22.816758, 65.369551], - [-22.816898, 65.369618], - [-22.816994, 65.369659], - [-22.817134, 65.369744], - [-22.817198, 65.369788], - [-22.817435, 65.369858], - [-22.817628, 65.369858], - [-22.8178, 65.36985], - [-22.818036, 65.369791], - [-22.818271, 65.369699], - [-22.818464, 65.369583], - [-22.818583, 65.369416], - [-22.818647, 65.369327], - [-22.818657, 65.36927], - [-22.818614, 65.369203], - [-22.818464, 65.369095], - [-22.818304, 65.369063], - [-22.818185, 65.369033], - [-22.818035, 65.368992], - [-22.817981, 65.368939], - [-22.817918, 65.368817], - [-22.817907, 65.368741], - [-22.817918, 65.368642], - [-22.817992, 65.368595], - [-22.818078, 65.368563], - [-22.818378, 65.368559], - [-22.818453, 65.368568], - [-22.818937, 65.368598], - [-22.819387, 65.368598], - [-22.819656, 65.368589], - [-22.819752, 65.368571], - [-22.81987, 65.368541], - [-22.819956, 65.368499], - [-22.82002, 65.368447], - [-22.820063, 65.368378], - [-22.820127, 65.368348], - [-22.820277, 65.368317], - [-22.820331, 65.368402], - [-22.820363, 65.368469], - [-22.820363, 65.368545], - [-22.820374, 65.368639], - [-22.820385, 65.368724], - [-22.820449, 65.368845], - [-22.820546, 65.3691], - [-22.820578, 65.36927], - [-22.820567, 65.369364], - [-22.820503, 65.369493], - [-22.820417, 65.369587], - [-22.82032, 65.369699], - [-22.820267, 65.369851], - [-22.820267, 65.369963], - [-22.82031, 65.370069], - [-22.82047, 65.370115], - [-22.820557, 65.370113], - [-22.820739, 65.370137], - [-22.820824, 65.370173], - [-22.820889, 65.370231], - [-22.820889, 65.370307], - [-22.820846, 65.370343], - [-22.820792, 65.370396], - [-22.820889, 65.370468], - [-22.821028, 65.370539], - [-22.821103, 65.370553], - [-22.821168, 65.370531], - [-22.821222, 65.370502], - [-22.821351, 65.370476], - [-22.821469, 65.370444], - [-22.821651, 65.370413], - [-22.821812, 65.370379], - [-22.821896, 65.370371], - [-22.821962, 65.370365], - [-22.82208, 65.370359], - [-22.822209, 65.370346], - [-22.822402, 65.370297], - [-22.822627, 65.370185], - [-22.822788, 65.370051], - [-22.82296, 65.369926], - [-22.823013, 65.369833], - [-22.823057, 65.369733], - [-22.823045, 65.369623], - [-22.823089, 65.369572], - [-22.823142, 65.369501], - [-22.823228, 65.369411], - [-22.823281, 65.369337], - [-22.823281, 65.36927], - [-22.82325, 65.369197], - [-22.823228, 65.369153], - [-22.823196, 65.3691], - [-22.823067, 65.369055], - [-22.822917, 65.368997], - [-22.822766, 65.368966], - [-22.822541, 65.36893], - [-22.822424, 65.368879], - [-22.822348, 65.368773], - [-22.822284, 65.368693], - [-22.822306, 65.368584], - [-22.822273, 65.368492], - [-22.822252, 65.368387], - [-22.822251, 65.368331], - [-22.822294, 65.368268], - [-22.822359, 65.368188], - [-22.822424, 65.368106], - [-22.822467, 65.368048], - [-22.822585, 65.367949], - [-22.822627, 65.367891], - [-22.822638, 65.367816], - [-22.822595, 65.367752], - [-22.822606, 65.367708], - [-22.822778, 65.3676], - [-22.822884, 65.367512], - [-22.82296, 65.367448], - [-22.823013, 65.36736], - [-22.823164, 65.367211], - [-22.823421, 65.367034], - [-22.823593, 65.366894], - [-22.823839, 65.366734], - [-22.824087, 65.366635], - [-22.824205, 65.366559], - [-22.824365, 65.366493], - [-22.824602, 65.366442], - [-22.824826, 65.366381], - [-22.825063, 65.366348], - [-22.825406, 65.366317], - [-22.825674, 65.366314], - [-22.825803, 65.366323], - [-22.825921, 65.366345], - [-22.825974, 65.366367], - [-22.825985, 65.366457], - [-22.825985, 65.366524], - [-22.826049, 65.366667], - [-22.826135, 65.366842], - [-22.826125, 65.3669], - [-22.826146, 65.36707], - [-22.826167, 65.367137], - [-22.826264, 65.367249], - [-22.826382, 65.367316], - [-22.826564, 65.367365], - [-22.826769, 65.367372], - [-22.826961, 65.367369], - [-22.827155, 65.367305], - [-22.827316, 65.367261], - [-22.827423, 65.367226], - [-22.827509, 65.36722], - [-22.827562, 65.367231], - [-22.827627, 65.36728], - [-22.82753, 65.367374], - [-22.827433, 65.367459], - [-22.827391, 65.367539], - [-22.827315, 65.367651], - [-22.827262, 65.367718], - [-22.827155, 65.367875], - [-22.827058, 65.367937], - [-22.82694, 65.367942], - [-22.826758, 65.367964], - [-22.826661, 65.368031], - [-22.826607, 65.368076], - [-22.826564, 65.368183], - [-22.826554, 65.368281], - [-22.8265, 65.368398], - [-22.826361, 65.368545], - [-22.826157, 65.368822], - [-22.826017, 65.368984], - [-22.826082, 65.369109], - [-22.826092, 65.369212], - [-22.826071, 65.369313], - [-22.825921, 65.369385], - [-22.825674, 65.369435], - [-22.825502, 65.36948], - [-22.825374, 65.369551], - [-22.825363, 65.369672], - [-22.825427, 65.369721], - [-22.825438, 65.369811], - [-22.825245, 65.36985], - [-22.825159, 65.369878], - [-22.825213, 65.369945], - [-22.825309, 65.370021], - [-22.825363, 65.370101], - [-22.825202, 65.370101], - [-22.825062, 65.37016], - [-22.824923, 65.370276], - [-22.824741, 65.370387], - [-22.824429, 65.370499], - [-22.824193, 65.370548], - [-22.824054, 65.370647], - [-22.824043, 65.37075], - [-22.82399, 65.370897], - [-22.823979, 65.370973], - [-22.824022, 65.371036], - [-22.823904, 65.371273], - [-22.823721, 65.371474], - [-22.823507, 65.371782], - [-22.823421, 65.371818], - [-22.823163, 65.371975], - [-22.822809, 65.372274], - [-22.822626, 65.372488], - [-22.822595, 65.372525], - [-22.822305, 65.372806], - [-22.822155, 65.37307], - [-22.821919, 65.373164], - [-22.821779, 65.373271], - [-22.821747, 65.373347], - [-22.821608, 65.373414], - [-22.821372, 65.373464], - [-22.821103, 65.373499], - [-22.820878, 65.373517], - [-22.820685, 65.373562], - [-22.820546, 65.373674], - [-22.820503, 65.373794], - [-22.820546, 65.373941], - [-22.82061, 65.374034], - [-22.820771, 65.374107], - [-22.820975, 65.374174], - [-22.820943, 65.37425], - [-22.821104, 65.374343], - [-22.821179, 65.374398], - [-22.821372, 65.374487], - [-22.821425, 65.374581], - [-22.821511, 65.374706], - [-22.821651, 65.374791], - [-22.821855, 65.374849], - [-22.822005, 65.374899], - [-22.822058, 65.374925], - [-22.82209, 65.37501], - [-22.822037, 65.375089], - [-22.821812, 65.375149], - [-22.821543, 65.375171], - [-22.821286, 65.37518], - [-22.821136, 65.375211], - [-22.820964, 65.375301], - [-22.82091, 65.375462], - [-22.820631, 65.375578], - [-22.820395, 65.37573], - [-22.82017, 65.375869], - [-22.820095, 65.375927], - [-22.819966, 65.375989], - [-22.819773, 65.37607], - [-22.819591, 65.376092], - [-22.819483, 65.376034], - [-22.819473, 65.375979], - [-22.819559, 65.37589], - [-22.819644, 65.375846], - [-22.819687, 65.375757], - [-22.819644, 65.375694], - [-22.819473, 65.375618], - [-22.819237, 65.375586], - [-22.818893, 65.375547], - [-22.818582, 65.375556], - [-22.818196, 65.375595], - [-22.818125, 65.375611], - [-22.817692, 65.375708], - [-22.817413, 65.375784], - [-22.817026, 65.375895], - [-22.816769, 65.37598], - [-22.816555, 65.376101], - [-22.816436, 65.376226], - [-22.816383, 65.376356], - [-22.816372, 65.376459], - [-22.81634, 65.376557], - [-22.816383, 65.376678], - [-22.816512, 65.376843], - [-22.816576, 65.376906], - [-22.816705, 65.376962], - [-22.81693, 65.377031], - [-22.817016, 65.37708], - [-22.817112, 65.377125], - [-22.817134, 65.377183], - [-22.817123, 65.377219], - [-22.817123, 65.377277], - [-22.817145, 65.37733], - [-22.817166, 65.377384], - [-22.817091, 65.377436], - [-22.817016, 65.377463], - [-22.816844, 65.377433], - [-22.816694, 65.37741], - [-22.816533, 65.377375], - [-22.816082, 65.377375], - [-22.815825, 65.37742], - [-22.815707, 65.377429], - [-22.815557, 65.377469], - [-22.81546, 65.3775], - [-22.815299, 65.377478], - [-22.815235, 65.37741], - [-22.815235, 65.377335], - [-22.815182, 65.377231], - [-22.815074, 65.377147], - [-22.814881, 65.377102], - [-22.814655, 65.377062], - [-22.814495, 65.377034], - [-22.81414, 65.376964], - [-22.81384, 65.376968], - [-22.813615, 65.376995], - [-22.813497, 65.377022], - [-22.813401, 65.377079], - [-22.813186, 65.37715], - [-22.813089, 65.377138], - [-22.812864, 65.377111], - [-22.812767, 65.377116], - [-22.812681, 65.377152], - [-22.812524, 65.377137], - [-22.812498, 65.377104], - [-22.812481, 65.377035], - [-22.812542, 65.376933], - [-22.812703, 65.376807], - [-22.812682, 65.376663], - [-22.812596, 65.376556], - [-22.812639, 65.376426], - [-22.812703, 65.376262], - [-22.812735, 65.376137], - [-22.812789, 65.376019], - [-22.812864, 65.375909], - [-22.813025, 65.375787], - [-22.813036, 65.375729], - [-22.812982, 65.375653], - [-22.812961, 65.375501], - [-22.813057, 65.375335], - [-22.813046, 65.375203], - [-22.812993, 65.375103], - [-22.813046, 65.374939], - [-22.812928, 65.374809], - [-22.812778, 65.374747], - [-22.812628, 65.374711], - [-22.812306, 65.374666], - [-22.811866, 65.374608], - [-22.811651, 65.374599], - [-22.811415, 65.374621], - [-22.81133, 65.37462], - [-22.811265, 65.374545], - [-22.811147, 65.374411], - [-22.811276, 65.374222], - [-22.811416, 65.374101], - [-22.811587, 65.373969], - [-22.811566, 65.373866], - [-22.811512, 65.373803], - [-22.811415, 65.373763], - [-22.811297, 65.373741], - [-22.81118, 65.373739], - [-22.81103, 65.373789], - [-22.811094, 65.373695] - ] - ], - [ - [ - [-21.38711, 65.68925], - [-21.38621, 65.68768], - [-21.38744, 65.68772], - [-21.3875, 65.68747], - [-21.38626, 65.68742], - [-21.38789, 65.6857], - [-21.38912, 65.68573], - [-21.39338, 65.68333], - [-21.39461, 65.68337], - [-21.39685, 65.68166], - [-21.40195, 65.68108], - [-21.40279, 65.68008], - [-21.40526, 65.68017], - [-21.40666, 65.67945], - [-21.40782, 65.68129], - [-21.40647, 65.68177], - [-21.40662, 65.68253], - [-21.40538, 65.68248], - [-21.40438, 65.68423], - [-21.40051, 65.68487], - [-21.40169, 65.68517], - [-21.40158, 65.68568], - [-21.39967, 65.68587], - [-21.39889, 65.68661], - [-21.39765, 65.68656], - [-21.39681, 65.68756], - [-21.39558, 65.68751], - [-21.39548, 65.68803], - [-21.39429, 65.68772], - [-21.39418, 65.68823], - [-21.39294, 65.68818], - [-21.39216, 65.68892], - [-21.38711, 65.68925] - ] - ], - [ - [ - [-22.825815, 66.057496], - [-22.826081, 66.057404], - [-22.826112, 66.057086], - [-22.826358, 66.056884], - [-22.826202, 66.056624], - [-22.826217, 66.05634], - [-22.826469, 66.056089], - [-22.826494, 66.055787], - [-22.826927, 66.055677], - [-22.827048, 66.055446], - [-22.826796, 66.05505], - [-22.826378, 66.054613], - [-22.826514, 66.054362], - [-22.826464, 66.05382], - [-22.82668, 66.052879], - [-22.826913, 66.05205], - [-22.82701, 66.051863], - [-22.827078, 66.05173], - [-22.827125, 66.051557], - [-22.827108, 66.051392], - [-22.827057, 66.051172], - [-22.827034, 66.050957], - [-22.827028, 66.05063], - [-22.827159, 66.050139], - [-22.827259, 66.049878], - [-22.827389, 66.049541], - [-22.827443, 66.049448], - [-22.827591, 66.049151], - [-22.827653, 66.04892], - [-22.82765, 66.048726], - [-22.827571, 66.048564], - [-22.827395, 66.048401], - [-22.82714, 66.048244], - [-22.827133, 66.048161], - [-22.826955, 66.048006], - [-22.826661, 66.047851], - [-22.826401, 66.047763], - [-22.826211, 66.047711], - [-22.826075, 66.047676], - [-22.82604, 66.047643], - [-22.826068, 66.047611], - [-22.826146, 66.047587], - [-22.826315, 66.047554], - [-22.826439, 66.047476], - [-22.826556, 66.047397], - [-22.826623, 66.047343], - [-22.82669, 66.047307], - [-22.826697, 66.047262], - [-22.826645, 66.047222], - [-22.826628, 66.04707], - [-22.826607, 66.047018], - [-22.826561, 66.046956], - [-22.826419, 66.046885], - [-22.82631, 66.04682], - [-22.826269, 66.046761], - [-22.826252, 66.046649], - [-22.826304, 66.046552], - [-22.826454, 66.046483], - [-22.826611, 66.046442], - [-22.826829, 66.04643], - [-22.826996, 66.046448], - [-22.82712, 66.046494], - [-22.827192, 66.046704], - [-22.827434, 66.046894], - [-22.827759, 66.047036], - [-22.828342, 66.047182], - [-22.828875, 66.047273], - [-22.829337, 66.047345], - [-22.8297, 66.047366], - [-22.830174, 66.047402], - [-22.830513, 66.047407], - [-22.830695, 66.047472], - [-22.830832, 66.047537], - [-22.830917, 66.047631], - [-22.831034, 66.047737], - [-22.831145, 66.047877], - [-22.831295, 66.048063], - [-22.831557, 66.048221], - [-22.831982, 66.048435], - [-22.832351, 66.048608], - [-22.832503, 66.048697], - [-22.832613, 66.048844], - [-22.832667, 66.048943], - [-22.832797, 66.049016], - [-22.832927, 66.049121], - [-22.832942, 66.049259], - [-22.832938, 66.049381], - [-22.83285, 66.049511], - [-22.832838, 66.049596], - [-22.832881, 66.049704], - [-22.832871, 66.049873], - [-22.832879, 66.049955], - [-22.832775, 66.050173], - [-22.832722, 66.05038], - [-22.832861, 66.051033], - [-22.832567, 66.052188], - [-22.83204, 66.052495], - [-22.831795, 66.052583], - [-22.831592, 66.052856], - [-22.831236, 66.052863], - [-22.830889, 66.052904], - [-22.830895, 66.053242], - [-22.830955, 66.053382], - [-22.831046, 66.053775], - [-22.830468, 66.053877], - [-22.830674, 66.05434], - [-22.830901, 66.054965], - [-22.831142, 66.055125], - [-22.831352, 66.055571], - [-22.833444, 66.056732], - [-22.834768, 66.058799], - [-22.834284, 66.060728], - [-22.834355, 66.062011], - [-22.833129, 66.06234], - [-22.832399, 66.062817], - [-22.832108, 66.063117], - [-22.831924, 66.063118], - [-22.831979, 66.062575], - [-22.827928, 66.06233], - [-22.827571, 66.061715], - [-22.82742, 66.06128], - [-22.827108, 66.060541], - [-22.827259, 66.05992], - [-22.826308, 66.059397], - [-22.825991, 66.059036], - [-22.825788, 66.058707], - [-22.826112, 66.058162], - [-22.82591, 66.057854], - [-22.825815, 66.057496] - ] - ], - [ - [ - [-22.892743, 65.376395], - [-22.892767, 65.376309], - [-22.892966, 65.376197], - [-22.893107, 65.376134], - [-22.893169, 65.376065], - [-22.893252, 65.376037], - [-22.893308, 65.375978], - [-22.893514, 65.37592], - [-22.893649, 65.375919], - [-22.893837, 65.375882], - [-22.893962, 65.375852], - [-22.894042, 65.375821], - [-22.89433, 65.375788], - [-22.894501, 65.37575], - [-22.894809, 65.375703], - [-22.894959, 65.375702], - [-22.895078, 65.375676], - [-22.89527, 65.375644], - [-22.895504, 65.375578], - [-22.89569, 65.375524], - [-22.895962, 65.375436], - [-22.896214, 65.37536], - [-22.896415, 65.375333], - [-22.896576, 65.375294], - [-22.896613, 65.375257], - [-22.896682, 65.375224], - [-22.89682, 65.375172], - [-22.89696, 65.375157], - [-22.897099, 65.375114], - [-22.897216, 65.375101], - [-22.897318, 65.375067], - [-22.897455, 65.375032], - [-22.897637, 65.375003], - [-22.897778, 65.374982], - [-22.897835, 65.374961], - [-22.897862, 65.374915], - [-22.897913, 65.374867], - [-22.897999, 65.374841], - [-22.898043, 65.374861], - [-22.898092, 65.374882], - [-22.898084, 65.374931], - [-22.897997, 65.375048], - [-22.897957, 65.375116], - [-22.897941, 65.375204], - [-22.897884, 65.375297], - [-22.897817, 65.375485], - [-22.897834, 65.375541], - [-22.897804, 65.375582], - [-22.897748, 65.375608], - [-22.897666, 65.375627], - [-22.897552, 65.375652], - [-22.897394, 65.375685], - [-22.897276, 65.375719], - [-22.897234, 65.375756], - [-22.897228, 65.375825], - [-22.897254, 65.375868], - [-22.89738, 65.375928], - [-22.897631, 65.376011], - [-22.897853, 65.376085], - [-22.89837, 65.376176], - [-22.899001, 65.376252], - [-22.89984, 65.376185], - [-22.900312, 65.376142], - [-22.900448, 65.3761], - [-22.90048, 65.376029], - [-22.900534, 65.375946], - [-22.900724, 65.375793], - [-22.90094, 65.375702], - [-22.901544, 65.375473], - [-22.901769, 65.375413], - [-22.901808, 65.375357], - [-22.901745, 65.375301], - [-22.901729, 65.375262], - [-22.901655, 65.375199], - [-22.901528, 65.375131], - [-22.901487, 65.375072], - [-22.901368, 65.375017], - [-22.901293, 65.374975], - [-22.901396, 65.374927], - [-22.901535, 65.374877], - [-22.901675, 65.374831], - [-22.901718, 65.374786], - [-22.901758, 65.374758], - [-22.90183, 65.374731], - [-22.901879, 65.374722], - [-22.901852, 65.374799], - [-22.901886, 65.374842], - [-22.901949, 65.374887], - [-22.90203, 65.374922], - [-22.902135, 65.374969], - [-22.902296, 65.375017], - [-22.9025, 65.375069], - [-22.90258, 65.375118], - [-22.902608, 65.375164], - [-22.902651, 65.375208], - [-22.902689, 65.375274], - [-22.902667, 65.375335], - [-22.902658, 65.375394], - [-22.902613, 65.375425], - [-22.902555, 65.375473], - [-22.902459, 65.375477], - [-22.902378, 65.375476], - [-22.902304, 65.3755], - [-22.902211, 65.375515], - [-22.902089, 65.375514], - [-22.901987, 65.375505], - [-22.901901, 65.375546], - [-22.901803, 65.375595], - [-22.901673, 65.375638], - [-22.901591, 65.375666], - [-22.901553, 65.3757], - [-22.901491, 65.375708], - [-22.901399, 65.37571], - [-22.901324, 65.375747], - [-22.90131, 65.375776], - [-22.901296, 65.375819], - [-22.901181, 65.375888], - [-22.901054, 65.375973], - [-22.900901, 65.376102], - [-22.901038, 65.376259], - [-22.901184, 65.376386], - [-22.901294, 65.37644], - [-22.901428, 65.376471], - [-22.901571, 65.376489], - [-22.90176, 65.376485], - [-22.902003, 65.376449], - [-22.902357, 65.376389], - [-22.902859, 65.37633], - [-22.902985, 65.376306], - [-22.903061, 65.376271], - [-22.903133, 65.376232], - [-22.903233, 65.376215], - [-22.903313, 65.376214], - [-22.903386, 65.376212], - [-22.903465, 65.376222], - [-22.903536, 65.376221], - [-22.903606, 65.376203], - [-22.903706, 65.376186], - [-22.903808, 65.376167], - [-22.903867, 65.376172], - [-22.903797, 65.376246], - [-22.90366, 65.376348], - [-22.903493, 65.376458], - [-22.903308, 65.376567], - [-22.903087, 65.376665], - [-22.902858, 65.376756], - [-22.902535, 65.376845], - [-22.902459, 65.376893], - [-22.902454, 65.376932], - [-22.902486, 65.376951], - [-22.902617, 65.376995], - [-22.90271, 65.377008], - [-22.902797, 65.377004], - [-22.902922, 65.376967], - [-22.90311, 65.376914], - [-22.903265, 65.376884], - [-22.903378, 65.376872], - [-22.903543, 65.376876], - [-22.903683, 65.376867], - [-22.903779, 65.376845], - [-22.903936, 65.376814], - [-22.904112, 65.376762], - [-22.904271, 65.376734], - [-22.904357, 65.376732], - [-22.904407, 65.376745], - [-22.904455, 65.376768], - [-22.904501, 65.376809], - [-22.904616, 65.376823], - [-22.904927, 65.376825], - [-22.90523, 65.376807], - [-22.905347, 65.376775], - [-22.905565, 65.376675], - [-22.905704, 65.376559], - [-22.906057, 65.376338], - [-22.906416, 65.376178], - [-22.906633, 65.376084], - [-22.906903, 65.376003], - [-22.907092, 65.375899], - [-22.907361, 65.375776], - [-22.907752, 65.375519], - [-22.907854, 65.37547], - [-22.907957, 65.375434], - [-22.908049, 65.375409], - [-22.908135, 65.375394], - [-22.90824, 65.375388], - [-22.908349, 65.375378], - [-22.908432, 65.375373], - [-22.908516, 65.375366], - [-22.908552, 65.375341], - [-22.908579, 65.375304], - [-22.908592, 65.37526], - [-22.9086, 65.375224], - [-22.908634, 65.375188], - [-22.908696, 65.375179], - [-22.908752, 65.375173], - [-22.908828, 65.375173], - [-22.908876, 65.375184], - [-22.908923, 65.375209], - [-22.909002, 65.375242], - [-22.909114, 65.375256], - [-22.909251, 65.375265], - [-22.909435, 65.375268], - [-22.909573, 65.375271], - [-22.909767, 65.375217], - [-22.909932, 65.375157], - [-22.910029, 65.375074], - [-22.910087, 65.375016], - [-22.910155, 65.374958], - [-22.910243, 65.374903], - [-22.91032, 65.374868], - [-22.91039, 65.374858], - [-22.910456, 65.374826], - [-22.910499, 65.374798], - [-22.910518, 65.374765], - [-22.910535, 65.374721], - [-22.910531, 65.374684], - [-22.910524, 65.374618], - [-22.910513, 65.37458], - [-22.910556, 65.374521], - [-22.910609, 65.37447], - [-22.910663, 65.374429], - [-22.910672, 65.374392], - [-22.910681, 65.374356], - [-22.910686, 65.374321], - [-22.910696, 65.374266], - [-22.910748, 65.374216], - [-22.91088, 65.374115], - [-22.910972, 65.37407], - [-22.911058, 65.374055], - [-22.911199, 65.374046], - [-22.911391, 65.374004], - [-22.911578, 65.373907], - [-22.911745, 65.373796], - [-22.91193, 65.37372], - [-22.912153, 65.373659], - [-22.912469, 65.373603], - [-22.912692, 65.373552], - [-22.913227, 65.373343], - [-22.913727, 65.373178], - [-22.914059, 65.373074], - [-22.914584, 65.372944], - [-22.915028, 65.372829], - [-22.915317, 65.372756], - [-22.915683, 65.372691], - [-22.916092, 65.372602], - [-22.916355, 65.372514], - [-22.916522, 65.372437], - [-22.916748, 65.372372], - [-22.916884, 65.372342], - [-22.917102, 65.372286], - [-22.91736, 65.372226], - [-22.917616, 65.372184], - [-22.917846, 65.372164], - [-22.917948, 65.372156], - [-22.918497, 65.372043], - [-22.919013, 65.371937], - [-22.9192, 65.37192], - [-22.919297, 65.371918], - [-22.919385, 65.371941], - [-22.919456, 65.371954], - [-22.919795, 65.371972], - [-22.919946, 65.371962], - [-22.920143, 65.371955], - [-22.920392, 65.371931], - [-22.920806, 65.371914], - [-22.921442, 65.371746], - [-22.92201, 65.371697], - [-22.922162, 65.371692], - [-22.922317, 65.371703], - [-22.92244, 65.371708], - [-22.922549, 65.371731], - [-22.922656, 65.371783], - [-22.922715, 65.371817], - [-22.922866, 65.371815], - [-22.923062, 65.371813], - [-22.923107, 65.371758], - [-22.923254, 65.371703], - [-22.923835, 65.371596], - [-22.924383, 65.371574], - [-22.924974, 65.371553], - [-22.925432, 65.371558], - [-22.925817, 65.371578], - [-22.926218, 65.371629], - [-22.926535, 65.371674], - [-22.926816, 65.371688], - [-22.927035, 65.371662], - [-22.927171, 65.371648], - [-22.927274, 65.371629], - [-22.927318, 65.371607], - [-22.927461, 65.371599], - [-22.927692, 65.371566], - [-22.92787, 65.371488], - [-22.92809, 65.371451], - [-22.928212, 65.37143], - [-22.928245, 65.371404], - [-22.928304, 65.371397], - [-22.928391, 65.371401], - [-22.928473, 65.371391], - [-22.92855, 65.371374], - [-22.928703, 65.371394], - [-22.928755, 65.3714], - [-22.929201, 65.371522], - [-22.929435, 65.371557], - [-22.929668, 65.371571], - [-22.929913, 65.371563], - [-22.93015, 65.37156], - [-22.930438, 65.371595], - [-22.930633, 65.371578], - [-22.930674, 65.371528], - [-22.930702, 65.371462], - [-22.930651, 65.371432], - [-22.930553, 65.371366], - [-22.93059, 65.37133], - [-22.93065, 65.371296], - [-22.930759, 65.371279], - [-22.930912, 65.3713], - [-22.930975, 65.371348], - [-22.931012, 65.371415], - [-22.930944, 65.371464], - [-22.930912, 65.371512], - [-22.930926, 65.371563], - [-22.93103, 65.371605], - [-22.931371, 65.371577], - [-22.931797, 65.371537], - [-22.932151, 65.371509], - [-22.932353, 65.371506], - [-22.932476, 65.371541], - [-22.932463, 65.371606], - [-22.932355, 65.371654], - [-22.9322, 65.371719], - [-22.93207, 65.371744], - [-22.931937, 65.37176], - [-22.931802, 65.371733], - [-22.931651, 65.371729], - [-22.931466, 65.371733], - [-22.931348, 65.371768], - [-22.931238, 65.371844], - [-22.931121, 65.371984], - [-22.930949, 65.372144], - [-22.930917, 65.372242], - [-22.930988, 65.372308], - [-22.931176, 65.372361], - [-22.931344, 65.372402], - [-22.931241, 65.372453], - [-22.931052, 65.372509], - [-22.930833, 65.372538], - [-22.930599, 65.372569], - [-22.930436, 65.372627], - [-22.930164, 65.372662], - [-22.92999, 65.372736], - [-22.929866, 65.372724], - [-22.929772, 65.372712], - [-22.929701, 65.372704], - [-22.929552, 65.372724], - [-22.929509, 65.372781], - [-22.92942, 65.37283], - [-22.929311, 65.37286], - [-22.929169, 65.372885], - [-22.929053, 65.372872], - [-22.928891, 65.372891], - [-22.92864, 65.37292], - [-22.928334, 65.373011], - [-22.928263, 65.37309], - [-22.928147, 65.373107], - [-22.927988, 65.373114], - [-22.927808, 65.373163], - [-22.927674, 65.373201], - [-22.927625, 65.373262], - [-22.927615, 65.373325], - [-22.927626, 65.373374], - [-22.927457, 65.373487], - [-22.927259, 65.373597], - [-22.927158, 65.37368], - [-22.927081, 65.373732], - [-22.926974, 65.373773], - [-22.92686, 65.3738], - [-22.926699, 65.373829], - [-22.9265, 65.373848], - [-22.926266, 65.373904], - [-22.926064, 65.37392], - [-22.925695, 65.373945], - [-22.925286, 65.373941], - [-22.924761, 65.373965], - [-22.924512, 65.373968], - [-22.924281, 65.37398], - [-22.92404, 65.374008], - [-22.923758, 65.374049], - [-22.923404, 65.374066], - [-22.922854, 65.374108], - [-22.922249, 65.374135], - [-22.92192, 65.374214], - [-22.921778, 65.374299], - [-22.921721, 65.374405], - [-22.921794, 65.374522], - [-22.921844, 65.374605], - [-22.922074, 65.374648], - [-22.922237, 65.374682], - [-22.922518, 65.37469], - [-22.922686, 65.374716], - [-22.922806, 65.374743], - [-22.922766, 65.374793], - [-22.922681, 65.374827], - [-22.922563, 65.374853], - [-22.922361, 65.37485], - [-22.922176, 65.374854], - [-22.92196, 65.374858], - [-22.921769, 65.374841], - [-22.921629, 65.374822], - [-22.921494, 65.374852], - [-22.921375, 65.374883], - [-22.921254, 65.374912], - [-22.92116, 65.374945], - [-22.921123, 65.374982], - [-22.921105, 65.375037], - [-22.921094, 65.375109], - [-22.921041, 65.375166], - [-22.921005, 65.375206], - [-22.920878, 65.375215], - [-22.92078, 65.375188], - [-22.920651, 65.375144], - [-22.920584, 65.375146], - [-22.920524, 65.375148], - [-22.920399, 65.375183], - [-22.920285, 65.375229], - [-22.920115, 65.375247], - [-22.919924, 65.375245], - [-22.919732, 65.375243], - [-22.919395, 65.37522], - [-22.918981, 65.37523], - [-22.918808, 65.375248], - [-22.918711, 65.375244], - [-22.918586, 65.375239], - [-22.918314, 65.375257], - [-22.918047, 65.375288], - [-22.917836, 65.375292], - [-22.917629, 65.37531], - [-22.917506, 65.37532], - [-22.917416, 65.375368], - [-22.917362, 65.375429], - [-22.917356, 65.375479], - [-22.917377, 65.375545], - [-22.917432, 65.3756], - [-22.917572, 65.375641], - [-22.917729, 65.375666], - [-22.917971, 65.375674], - [-22.918611, 65.375673], - [-22.918658, 65.375675], - [-22.918815, 65.375684], - [-22.918996, 65.375643], - [-22.9191, 65.37566], - [-22.919234, 65.375686], - [-22.919327, 65.375736], - [-22.919413, 65.375767], - [-22.919438, 65.375809], - [-22.919308, 65.375868], - [-22.919141, 65.375952], - [-22.918952, 65.375992], - [-22.918598, 65.376056], - [-22.91825, 65.376133], - [-22.917926, 65.37619], - [-22.917724, 65.37619], - [-22.917577, 65.376178], - [-22.917484, 65.376153], - [-22.917366, 65.376217], - [-22.917268, 65.376298], - [-22.917112, 65.376387], - [-22.917032, 65.376404], - [-22.91336, 65.37722], - [-22.913089, 65.377306], - [-22.912885, 65.377308], - [-22.912798, 65.377248], - [-22.912647, 65.377209], - [-22.912463, 65.377186], - [-22.912291, 65.377204], - [-22.912137, 65.377281], - [-22.91211, 65.377294], - [-22.911917, 65.377397], - [-22.91168, 65.377495], - [-22.911445, 65.377598], - [-22.911092, 65.377754], - [-22.910762, 65.377912], - [-22.910526, 65.378043], - [-22.910249, 65.378163], - [-22.910198, 65.378199], - [-22.910108, 65.378226], - [-22.910028, 65.37823], - [-22.909935, 65.378223], - [-22.909844, 65.378264], - [-22.909762, 65.378298], - [-22.909734, 65.378325], - [-22.909705, 65.378351], - [-22.909665, 65.378374], - [-22.909545, 65.378387], - [-22.909387, 65.378415], - [-22.909275, 65.378413], - [-22.909199, 65.378399], - [-22.909098, 65.378385], - [-22.908973, 65.378359], - [-22.908874, 65.378345], - [-22.908777, 65.378353], - [-22.908722, 65.37837], - [-22.90866, 65.378395], - [-22.908549, 65.37841], - [-22.908422, 65.378415], - [-22.908345, 65.378429], - [-22.908192, 65.37845], - [-22.908087, 65.378456], - [-22.907969, 65.378458], - [-22.907827, 65.378466], - [-22.907633, 65.378456], - [-22.907453, 65.378461], - [-22.907317, 65.37847], - [-22.907204, 65.378482], - [-22.907018, 65.37849], - [-22.906914, 65.378498], - [-22.906845, 65.378517], - [-22.906798, 65.378542], - [-22.906711, 65.378556], - [-22.906644, 65.378544], - [-22.906573, 65.378535], - [-22.906497, 65.378543], - [-22.90637, 65.378545], - [-22.906304, 65.378535], - [-22.906209, 65.378487], - [-22.906135, 65.378454], - [-22.906036, 65.378422], - [-22.905972, 65.378378], - [-22.905977, 65.378318], - [-22.905991, 65.37824], - [-22.90599, 65.378123], - [-22.905975, 65.378026], - [-22.905908, 65.377935], - [-22.905644, 65.377705], - [-22.905479, 65.377578], - [-22.905328, 65.377533], - [-22.905105, 65.377509], - [-22.904735, 65.377499], - [-22.903845, 65.377511], - [-22.903111, 65.377529], - [-22.902497, 65.377567], - [-22.902172, 65.37758], - [-22.90211, 65.377611], - [-22.902116, 65.377701], - [-22.902094, 65.377799], - [-22.902132, 65.377852], - [-22.902137, 65.377904], - [-22.902008, 65.377982], - [-22.901871, 65.378139], - [-22.901828, 65.378167], - [-22.901711, 65.378186], - [-22.901581, 65.37821], - [-22.901436, 65.378231], - [-22.901307, 65.378252], - [-22.901192, 65.378275], - [-22.900947, 65.378354], - [-22.900822, 65.378395], - [-22.900751, 65.378458], - [-22.900743, 65.378502], - [-22.900752, 65.378549], - [-22.900753, 65.378588], - [-22.900702, 65.378601], - [-22.900647, 65.378618], - [-22.900585, 65.378615], - [-22.900526, 65.378597], - [-22.900442, 65.378602], - [-22.900318, 65.378612], - [-22.900242, 65.378609], - [-22.900081, 65.378587], - [-22.899942, 65.378585], - [-22.899753, 65.37857], - [-22.899625, 65.378536], - [-22.899551, 65.378505], - [-22.899574, 65.378465], - [-22.89953, 65.378415], - [-22.899223, 65.378328], - [-22.898849, 65.378138], - [-22.898553, 65.378038], - [-22.898347, 65.377918], - [-22.898158, 65.377817], - [-22.898051, 65.377765], - [-22.897907, 65.377706], - [-22.897646, 65.377642], - [-22.89738, 65.377584], - [-22.89715, 65.377547], - [-22.897058, 65.377566], - [-22.896904, 65.377594], - [-22.896769, 65.377638], - [-22.896601, 65.377685], - [-22.896442, 65.377717], - [-22.896322, 65.377703], - [-22.896134, 65.377696], - [-22.89601, 65.377687], - [-22.895989, 65.377651], - [-22.896009, 65.377612], - [-22.896001, 65.377581], - [-22.895925, 65.377565], - [-22.895822, 65.37756], - [-22.895696, 65.377547], - [-22.895547, 65.377546], - [-22.895381, 65.377551], - [-22.895213, 65.377549], - [-22.895064, 65.377523], - [-22.894783, 65.377466], - [-22.894687, 65.377482], - [-22.894679, 65.377515], - [-22.89464, 65.377548], - [-22.894566, 65.377571], - [-22.894456, 65.377598], - [-22.894371, 65.377612], - [-22.894277, 65.37761], - [-22.8942, 65.377598], - [-22.894195, 65.377575], - [-22.894256, 65.377551], - [-22.894242, 65.377512], - [-22.894246, 65.377477], - [-22.894214, 65.377435], - [-22.894051, 65.37741], - [-22.893974, 65.377401], - [-22.893903, 65.377376], - [-22.89389, 65.377346], - [-22.893836, 65.377303], - [-22.893766, 65.377274], - [-22.893694, 65.377253], - [-22.893608, 65.377213], - [-22.893524, 65.377223], - [-22.893447, 65.377278], - [-22.893328, 65.377343], - [-22.893248, 65.377354], - [-22.893172, 65.377336], - [-22.893088, 65.377334], - [-22.893037, 65.377298], - [-22.893, 65.377252], - [-22.893022, 65.377224], - [-22.89309, 65.377209], - [-22.89315, 65.377215], - [-22.89317, 65.37718], - [-22.89321, 65.377133], - [-22.893352, 65.377107], - [-22.89347, 65.377087], - [-22.893507, 65.377067], - [-22.893488, 65.37703], - [-22.893479, 65.376983], - [-22.893468, 65.376935], - [-22.893418, 65.37687], - [-22.893367, 65.376807], - [-22.893221, 65.376734], - [-22.893051, 65.37666], - [-22.892886, 65.376601], - [-22.892772, 65.376534], - [-22.892739, 65.376488], - [-22.892743, 65.376395] - ] - ], - [ - [ - [-22.65143, 66.10157], - [-22.65305, 66.10136], - [-22.65378, 66.10074], - [-22.65755, 66.10085], - [-22.65905, 66.09948], - [-22.65557, 66.09896], - [-22.65485, 66.09948], - [-22.65587, 66.09965], - [-22.65578, 66.10016], - [-22.65452, 66.10012], - [-22.65438, 66.09969], - [-22.65268, 66.09981], - [-22.6547, 66.0991], - [-22.65218, 66.09903], - [-22.65237, 66.09801], - [-22.654, 66.09822], - [-22.6547, 66.09731], - [-22.6541, 66.09703], - [-22.65539, 66.09502], - [-22.65414, 66.09499], - [-22.65552, 66.09426], - [-22.65364, 66.0942], - [-22.65453, 66.09269], - [-22.65577, 66.09285], - [-22.65726, 66.09149], - [-22.65596, 66.09171], - [-22.65609, 66.09094], - [-22.658, 66.09087], - [-22.66049, 66.09106], - [-22.66189, 66.09213], - [-22.66144, 66.09289], - [-22.66268, 66.09305], - [-22.66378, 66.09397], - [-22.66504, 66.09401], - [-22.66545, 66.0953], - [-22.66671, 66.09534], - [-22.6673, 66.09741], - [-22.66472, 66.10143], - [-22.66466, 66.10361], - [-22.66594, 66.10352], - [-22.66581, 66.10428], - [-22.66706, 66.10431], - [-22.66763, 66.10843], - [-22.66591, 66.10873], - [-22.66557, 66.1094], - [-22.66494, 66.10938], - [-22.66331, 66.1078], - [-22.66206, 66.10776], - [-22.66119, 66.10543], - [-22.65998, 66.10514], - [-22.66016, 66.10591], - [-22.65603, 66.10607], - [-22.65616, 66.10529], - [-22.6523, 66.10569], - [-22.65221, 66.10441], - [-22.65368, 66.10377], - [-22.65227, 66.10347], - [-22.65139, 66.10362], - [-22.65211, 66.10313], - [-22.65085, 66.10309], - [-22.65143, 66.10157] - ] - ], - [ - [ - [-20.977727, 64.945297], - [-21.016562, 64.954222], - [-21.073805, 64.967374], - [-21.174331, 64.990743], - [-21.182699, 64.997362], - [-21.213145, 65.022165], - [-21.235039, 65.039763], - [-21.231468, 65.069885], - [-21.256467, 65.082168], - [-21.293961, 65.101476], - [-21.278589, 65.113993], - [-21.245752, 65.138286], - [-21.243966, 65.172795], - [-21.263841, 65.191457], - [-21.29039, 65.215494], - [-21.285033, 65.238687], - [-21.350178, 65.259053], - [-21.36294, 65.263145], - [-21.362004, 65.29603], - [-21.432521, 65.335838], - [-21.470006, 65.356728], - [-21.488381, 65.367334], - [-21.517962, 65.359378], - [-21.58398, 65.339339], - [-21.633811, 65.361517], - [-21.654313, 65.370952], - [-21.647919, 65.399486], - [-21.625261, 65.404788], - [-21.599508, 65.410891], - [-21.618865, 65.419074], - [-21.619661, 65.437734], - [-21.590374, 65.461393], - [-21.616712, 65.478522], - [-21.62633, 65.483927], - [-21.658534, 65.469528], - [-21.68644, 65.45601], - [-21.687561, 65.456381], - [-21.68991, 65.45716], - [-21.6935, 65.45768], - [-21.694353, 65.457512], - [-21.695882, 65.45773], - [-21.69866, 65.457886], - [-21.704177, 65.456803], - [-21.708, 65.45612], - [-21.709111, 65.455907], - [-21.710318, 65.455371], - [-21.71165, 65.45532], - [-21.713388, 65.454637], - [-21.716682, 65.453848], - [-21.722213, 65.453693], - [-21.727559, 65.452701], - [-21.730907, 65.452274], - [-21.73374, 65.451314], - [-21.737424, 65.45106], - [-21.74005, 65.45006], - [-21.741836, 65.449034], - [-21.74138, 65.44805], - [-21.741941, 65.447816], - [-21.74306, 65.44735], - [-21.74862, 65.44729], - [-21.74871, 65.44678], - [-21.75321, 65.44591], - [-21.75464, 65.44493], - [-21.75841, 65.44455], - [-21.75821, 65.44403], - [-21.75903, 65.44303], - [-21.76081, 65.44181], - [-21.76269, 65.44162], - [-21.7628, 65.44111], - [-21.76402, 65.44115], - [-21.76413, 65.44064], - [-21.77521, 65.44064], - [-21.78401, 65.43979], - [-21.784677, 65.440024], - [-21.78636, 65.44039], - [-21.786955, 65.440645], - [-21.78793, 65.441055], - [-21.79049, 65.4413], - [-21.791034, 65.441581], - [-21.79768, 65.44232], - [-21.79778, 65.44181], - [-21.80375, 65.44278], - [-21.80385, 65.44227], - [-21.80635, 65.4421], - [-21.80579, 65.44337], - [-21.80717, 65.44418], - [-21.81146, 65.44433], - [-21.81156, 65.44382], - [-21.81393, 65.44429], - [-21.81523, 65.44395], - [-21.81585, 65.44285], - [-21.81553, 65.44242], - [-21.81676, 65.44246], - [-21.81624, 65.44304], - [-21.813992, 65.445582], - [-21.815066, 65.445898], - [-21.815805, 65.44618], - [-21.816218, 65.446337], - [-21.816391, 65.446846], - [-21.816185, 65.44747], - [-21.81529, 65.44831], - [-21.81611, 65.44885], - [-21.81924, 65.44857], - [-21.82891, 65.44954], - [-21.82881, 65.45005], - [-21.84142, 65.45177], - [-21.84289, 65.45053], - [-21.84412, 65.45058], - [-21.84488, 65.44983], - [-21.85708, 65.45051], - [-21.85739, 65.45205], - [-21.85922, 65.45212], - [-21.85912, 65.45263], - [-21.86099, 65.45256], - [-21.86272, 65.45313], - [-21.8677, 65.45292], - [-21.8676, 65.45343], - [-21.86882, 65.45347], - [-21.86985, 65.45453], - [-21.87181, 65.45395], - [-21.87418, 65.45442], - [-21.87408, 65.45493], - [-21.87957, 65.45524], - [-21.8821, 65.45494], - [-21.88219, 65.45443], - [-21.893741, 65.453066], - [-21.893726, 65.45297], - [-21.89479, 65.45307], - [-21.898893, 65.451784], - [-21.902721, 65.450696], - [-21.90455, 65.44915], - [-21.904877, 65.449073], - [-21.905328, 65.449069], - [-21.905637, 65.449124], - [-21.906353, 65.448908], - [-21.905238, 65.448687], - [-21.901234, 65.447624], - [-21.901159, 65.44749], - [-21.901515, 65.447321], - [-21.901797, 65.447321], - [-21.903443, 65.447819], - [-21.90705, 65.448669], - [-21.906864, 65.448047], - [-21.90622, 65.447896], - [-21.907942, 65.447501], - [-21.908752, 65.447361], - [-21.909311, 65.447584], - [-21.908696, 65.448326], - [-21.90987, 65.44845], - [-21.91027, 65.44795], - [-21.91313, 65.44753], - [-21.91166, 65.44876], - [-21.91048, 65.44847], - [-21.91097, 65.44913], - [-21.91385, 65.44858], - [-21.91425, 65.44808], - [-21.91538, 65.44863], - [-21.91368, 65.44892], - [-21.91339, 65.44934], - [-21.91217, 65.44929], - [-21.91212, 65.44955], - [-21.91452, 65.44989], - [-21.91462, 65.44938], - [-21.91788, 65.44846], - [-21.91773, 65.44923], - [-21.92032, 65.44854], - [-21.9188, 65.45003], - [-21.92201, 65.44938], - [-21.92154, 65.4497], - [-21.92181, 65.45038], - [-21.92304, 65.45043], - [-21.92314, 65.44992], - [-21.92498, 65.44998], - [-21.92507, 65.44947], - [-21.92385, 65.44943], - [-21.9264, 65.449], - [-21.92792, 65.44752], - [-21.92853, 65.44754], - [-21.92861, 65.44822], - [-21.93027, 65.44811], - [-21.92915, 65.4491], - [-21.92964, 65.44928], - [-21.93196, 65.44894], - [-21.93186, 65.44944], - [-21.93308, 65.44948], - [-21.93485, 65.44672], - [-21.93608, 65.44677], - [-21.93826, 65.44504], - [-21.93384, 65.44874], - [-21.93507, 65.44878], - [-21.93492, 65.44955], - [-21.93629, 65.44882], - [-21.93747, 65.44912], - [-21.93767, 65.4481], - [-21.93889, 65.44814], - [-21.94046, 65.4464], - [-21.94227, 65.44659], - [-21.94428, 65.44576], - [-21.94551, 65.4458], - [-21.9456, 65.4453], - [-21.94683, 65.44533], - [-21.94723, 65.44483], - [-21.95014, 65.44416], - [-21.95023, 65.44365], - [-21.95146, 65.4437], - [-21.95095, 65.44316], - [-21.952398, 65.443247], - [-21.951948, 65.443573], - [-21.952248, 65.443808], - [-21.95334, 65.4435], - [-21.95386, 65.44403], - [-21.95208, 65.44525], - [-21.94778, 65.44998], - [-21.94655, 65.44994], - [-21.94641, 65.4507], - [-21.94523, 65.4504], - [-21.94376, 65.45164], - [-21.94014, 65.45127], - [-21.94026, 65.45169], - [-21.94126, 65.45181], - [-21.94116, 65.45232], - [-21.94013, 65.45237], - [-21.93979, 65.45304], - [-21.93749, 65.45331], - [-21.93719, 65.45372], - [-21.936789, 65.453763], - [-21.93531, 65.45392], - [-21.93455, 65.45466], - [-21.9321, 65.45458], - [-21.93174, 65.45635], - [-21.93072, 65.45641], - [-21.92905, 65.45755], - [-21.92467, 65.45792], - [-21.92508, 65.45896], - [-21.92263, 65.45888], - [-21.92253, 65.45939], - [-21.92136, 65.45909], - [-21.92127, 65.4596], - [-21.92003, 65.45957], - [-21.91993, 65.46007], - [-21.91621, 65.4602], - [-21.91531, 65.46324], - [-21.91643, 65.46378], - [-21.91559, 65.46812], - [-21.91682, 65.4697], - [-21.91805, 65.46975], - [-21.91849, 65.47066], - [-21.92342, 65.4707], - [-21.92443, 65.46868], - [-21.93117, 65.4689], - [-21.93107, 65.46941], - [-21.93357, 65.46924], - [-21.9331, 65.46957], - [-21.93327, 65.47078], - [-21.9368, 65.47166], - [-21.93701, 65.47218], - [-21.93905, 65.47276], - [-21.93895, 65.47327], - [-21.94274, 65.47442], - [-21.94295, 65.47494], - [-21.94479, 65.47499], - [-21.94499, 65.47552], - [-21.94648, 65.47583], - [-21.94843, 65.47692], - [-21.94863, 65.47744], - [-21.95047, 65.4775], - [-21.95214, 65.47845], - [-21.9531, 65.47989], - [-21.95121, 65.4801], - [-21.95203, 65.48063], - [-21.95152, 65.48163], - [-21.9503, 65.48159], - [-21.95081, 65.48212], - [-21.94831, 65.4823], - [-21.94826, 65.48255], - [-21.9501, 65.48261], - [-21.94994, 65.48338], - [-21.95236, 65.48371], - [-21.95226, 65.48422], - [-21.95403, 65.48467], - [-21.95649, 65.48462], - [-21.9564, 65.48513], - [-21.96295, 65.48637], - [-21.96337, 65.48741], - [-21.96459, 65.48745], - [-21.96445, 65.48822], - [-21.96568, 65.48826], - [-21.96527, 65.48876], - [-21.96658, 65.48996], - [-21.96778, 65.49012], - [-21.96876, 65.49144], - [-21.96687, 65.49163], - [-21.965, 65.49336], - [-21.96687, 65.49484], - [-21.97047, 65.49534], - [-21.97274, 65.49324], - [-21.98012, 65.49335], - [-21.97937, 65.4941], - [-21.97755, 65.49391], - [-21.97436, 65.49444], - [-21.97345, 65.49595], - [-21.97222, 65.49591], - [-21.97141, 65.49691], - [-21.97018, 65.49687], - [-21.97124, 65.4978], - [-21.97308, 65.49785], - [-21.97513, 65.49678], - [-21.97755, 65.49711], - [-21.97745, 65.49762], - [-21.97929, 65.49768], - [-21.98078, 65.49632], - [-21.98347, 65.4968], - [-21.97941, 65.50025], - [-21.97629, 65.5004], - [-21.97574, 65.50167], - [-21.97974, 65.50334], - [-21.9799, 65.50411], - [-21.98898, 65.50506], - [-21.99119, 65.50641], - [-21.99547, 65.50668], - [-21.99475, 65.50717], - [-21.99954, 65.50797], - [-22.00391, 65.50773], - [-22.004406, 65.508196], - [-22.00632, 65.50806], - [-22.00607, 65.50934], - [-22.02029, 65.50929], - [-22.02039, 65.50877], - [-22.02218, 65.5091], - [-22.02228, 65.50859], - [-22.02657, 65.50873], - [-22.03106, 65.50631], - [-22.03, 65.50372], - [-22.02821, 65.5034], - [-22.02675, 65.5013], - [-22.02496, 65.50099], - [-22.02299, 65.49836], - [-22.02177, 65.49832], - [-22.02027, 65.49648], - [-22.02149, 65.49652], - [-22.02158, 65.49601], - [-22.02455, 65.49508], - [-22.02489, 65.4933], - [-22.02251, 65.49117], - [-22.02072, 65.49085], - [-22.01903, 65.48516], - [-22.02085, 65.48368], - [-22.02443, 65.48277], - [-22.02467, 65.4815], - [-22.02209, 65.47885], - [-22.02212, 65.47705], - [-22.02273, 65.47707], - [-22.027835, 65.477289], - [-22.03181, 65.47801], - [-22.03539, 65.47863], - [-22.04077, 65.47792], - [-22.04147, 65.4759], - [-22.04269, 65.47594], - [-22.04188, 65.47693], - [-22.04351, 65.47648], - [-22.04399, 65.47559], - [-22.04648, 65.47542], - [-22.05252, 65.47613], - [-22.05397, 65.47502], - [-22.05632, 65.47561], - [-22.0551, 65.47557], - [-22.05455, 65.47684], - [-22.05574, 65.47867], - [-22.05457, 65.47838], - [-22.05376, 65.47936], - [-22.05192, 65.47931], - [-22.05234, 65.48035], - [-22.05111, 65.48031], - [-22.05153, 65.48135], - [-22.05342, 65.48116], - [-22.05295, 65.48149], - [-22.05379, 65.48245], - [-22.05257, 65.48241], - [-22.05126, 65.48442], - [-22.05204, 65.48521], - [-22.05486, 65.48659], - [-22.05297, 65.48678], - [-22.0515, 65.48802], - [-22.049, 65.48819], - [-22.04891, 65.4887], - [-22.0464, 65.48887], - [-22.04631, 65.48938], - [-22.04758, 65.48917], - [-22.04677, 65.49017], - [-22.05099, 65.49236], - [-22.0508, 65.49338], - [-22.05228, 65.49368], - [-22.05461, 65.49606], - [-22.05758, 65.50154], - [-22.05881, 65.50158], - [-22.05871, 65.50209], - [-22.05994, 65.50213], - [-22.05984, 65.50264], - [-22.06168, 65.5027], - [-22.0619, 65.50322], - [-22.06831, 65.50523], - [-22.06781, 65.50624], - [-22.06965, 65.50631], - [-22.06986, 65.50682], - [-22.07135, 65.50712], - [-22.07146, 65.50815], - [-22.07316, 65.50897], - [-22.07293, 65.51179], - [-22.07171, 65.51175], - [-22.07166, 65.512], - [-22.07289, 65.51204], - [-22.07503, 65.51544], - [-22.07364, 65.5195], - [-22.07421, 65.51977], - [-22.07368, 65.52258], - [-22.07487, 65.52441], - [-22.07672, 65.52447], - [-22.07662, 65.52498], - [-22.07908, 65.52506], - [-22.07929, 65.52558], - [-22.08077, 65.52588], - [-22.08068, 65.52639], - [-22.0825, 65.52658], - [-22.08299, 65.52724], - [-22.08533, 65.52795], - [-22.09548, 65.52982], - [-22.09917, 65.52994], - [-22.10023, 65.53087], - [-22.10207, 65.53093], - [-22.10229, 65.53145], - [-22.10928, 65.53206], - [-22.11433, 65.53145], - [-22.11706, 65.53013], - [-22.1146, 65.53005], - [-22.11626, 65.5278], - [-22.11749, 65.52784], - [-22.11763, 65.52708], - [-22.11947, 65.52712], - [-22.11981, 65.52535], - [-22.11858, 65.52531], - [-22.11928, 65.52482], - [-22.11806, 65.52478], - [-22.11759, 65.524], - [-22.11882, 65.52404], - [-22.11891, 65.52353], - [-22.11603, 65.52241], - [-22.12009, 65.52271], - [-22.12099, 65.52231], - [-22.1192, 65.522], - [-22.11907, 65.52157], - [-22.11745, 65.52143], - [-22.11736, 65.52194], - [-22.11183, 65.52176], - [-22.11197, 65.521], - [-22.10896, 65.52064], - [-22.10974, 65.51811], - [-22.10867, 65.51397], - [-22.10809, 65.5137], - [-22.10864, 65.51243], - [-22.1051, 65.51154], - [-22.10595, 65.51029], - [-22.10472, 65.51025], - [-22.10477, 65.51], - [-22.106, 65.51004], - [-22.10765, 65.50625], - [-22.10984, 65.50273], - [-22.10861, 65.50269], - [-22.10951, 65.50118], - [-22.10829, 65.50114], - [-22.10838, 65.50063], - [-22.10715, 65.50059], - [-22.10638, 65.4998], - [-22.10839, 65.4973], - [-22.10962, 65.49734], - [-22.11002, 65.49683], - [-22.11302, 65.49566], - [-22.11488, 65.49559], - [-22.11562, 65.49497], - [-22.11746, 65.49503], - [-22.11826, 65.49403], - [-22.11946, 65.4942], - [-22.12025, 65.49333], - [-22.12148, 65.49337], - [-22.12504, 65.48913], - [-22.12431, 65.48807], - [-22.12129, 65.48772], - [-22.12189, 65.4862], - [-22.12048, 65.48385], - [-22.12378, 65.48267], - [-22.12407, 65.48115], - [-22.12565, 65.48094], - [-22.12522, 65.4799], - [-22.12784, 65.47909], - [-22.13098, 65.47881], - [-22.13107, 65.4783], - [-22.13357, 65.47812], - [-22.13399, 65.47916], - [-22.14088, 65.47861], - [-22.14341, 65.47664], - [-22.14605, 65.4757], - [-22.14631, 65.47263], - [-22.14753, 65.47266], - [-22.1515, 65.46793], - [-22.15028, 65.46789], - [-22.14981, 65.46711], - [-22.15104, 65.46715], - [-22.15092, 65.46611], - [-22.15386, 65.46519], - [-22.15685, 65.46067], - [-22.16179, 65.45903], - [-22.16042, 65.45643], - [-22.16164, 65.45647], - [-22.16202, 65.45776], - [-22.16573, 65.45762], - [-22.16584, 65.45711], - [-22.16706, 65.45715], - [-22.16928, 65.45517], - [-22.16989, 65.4552], - [-22.1698, 65.4557], - [-22.17102, 65.45574], - [-22.1706, 65.4547], - [-22.17241, 65.45489], - [-22.17476, 65.45381], - [-22.17701, 65.45004], - [-22.1746, 65.4497], - [-22.17507, 65.45049], - [-22.17385, 65.45045], - [-22.17279, 65.45118], - [-22.17291, 65.45221], - [-22.17168, 65.45217], - [-22.17178, 65.45166], - [-22.16989, 65.45186], - [-22.16999, 65.45135], - [-22.16937, 65.45133], - [-22.16918, 65.45235], - [-22.16796, 65.45231], - [-22.16758, 65.45102], - [-22.16636, 65.45098], - [-22.1673, 65.44921], - [-22.16852, 65.44925], - [-22.16829, 65.45053], - [-22.1701, 65.44905], - [-22.16937, 65.448], - [-22.17013, 65.44725], - [-22.16892, 65.44709], - [-22.16702, 65.44741], - [-22.16747, 65.44666], - [-22.17031, 65.44623], - [-22.17022, 65.44674], - [-22.17145, 65.44678], - [-22.17018, 65.4458], - [-22.16914, 65.44594], - [-22.16881, 65.44439], - [-22.17003, 65.44443], - [-22.16926, 65.44364], - [-22.171, 65.44254], - [-22.17225, 65.44245], - [-22.17314, 65.44428], - [-22.17192, 65.44424], - [-22.17177, 65.44501], - [-22.17545, 65.44512], - [-22.1779, 65.44186], - [-22.17912, 65.4419], - [-22.18089, 65.44068], - [-22.18246, 65.43713], - [-22.1843, 65.4372], - [-22.18604, 65.43443], - [-22.1879, 65.43436], - [-22.18814, 65.43476], - [-22.187531, 65.434746], - [-22.187322, 65.434914], - [-22.187284, 65.435025], - [-22.187005, 65.435059], - [-22.18686, 65.435177], - [-22.186576, 65.435202], - [-22.186372, 65.435627], - [-22.186377, 65.435753], - [-22.185997, 65.435739], - [-22.185884, 65.435761], - [-22.185742, 65.435928], - [-22.186099, 65.435928], - [-22.186513, 65.43603], - [-22.186828, 65.435726], - [-22.187059, 65.435685], - [-22.187156, 65.435609], - [-22.187332, 65.435585], - [-22.18745, 65.435493], - [-22.187783, 65.43544], - [-22.187976, 65.435678], - [-22.188298, 65.43571], - [-22.188191, 65.435788], - [-22.188191, 65.435895], - [-22.18796, 65.435899], - [-22.187629, 65.43596], - [-22.187611, 65.436263], - [-22.187858, 65.436363], - [-22.187885, 65.436481], - [-22.188191, 65.436602], - [-22.187788, 65.436945], - [-22.18759, 65.437112], - [-22.187686, 65.437208], - [-22.187467, 65.437327], - [-22.187391, 65.437391], - [-22.187279, 65.437418], - [-22.187091, 65.437561], - [-22.186834, 65.437652], - [-22.186839, 65.437717], - [-22.186619, 65.437772], - [-22.186635, 65.437833], - [-22.186544, 65.437917], - [-22.187011, 65.438225], - [-22.187253, 65.438272], - [-22.187343, 65.438323], - [-22.187367, 65.438451], - [-22.18745, 65.438434], - [-22.18748, 65.438535], - [-22.187587, 65.438525], - [-22.187641, 65.438495], - [-22.187681, 65.438516], - [-22.187673, 65.438556], - [-22.18781, 65.43864], - [-22.187898, 65.438639], - [-22.188118, 65.438748], - [-22.18821, 65.438737], - [-22.188397, 65.43875], - [-22.188547, 65.438732], - [-22.188966, 65.438861], - [-22.18966, 65.438736], - [-22.189763, 65.438945], - [-22.19046, 65.439115], - [-22.190943, 65.439316], - [-22.190932, 65.439539], - [-22.191372, 65.43961], - [-22.191619, 65.439672], - [-22.192572, 65.439752], - [-22.192949, 65.439449], - [-22.193566, 65.438724], - [-22.194741, 65.438596], - [-22.195052, 65.438473], - [-22.194762, 65.43829], - [-22.194966, 65.438156], - [-22.194623, 65.438027], - [-22.195052, 65.437906], - [-22.195309, 65.43779], - [-22.195182, 65.437659], - [-22.194653, 65.437408], - [-22.194666, 65.436907], - [-22.194934, 65.436885], - [-22.195138, 65.436671], - [-22.19553, 65.4364], - [-22.195835, 65.436247], - [-22.196168, 65.436194], - [-22.196398, 65.436205], - [-22.196511, 65.43614], - [-22.196506, 65.436013], - [-22.196361, 65.435928], - [-22.196044, 65.435817], - [-22.195223, 65.435681], - [-22.194612, 65.435288], - [-22.194408, 65.435311], - [-22.194279, 65.435228], - [-22.193936, 65.435371], - [-22.193518, 65.435507], - [-22.19311, 65.435391], - [-22.192842, 65.435364], - [-22.192541, 65.435195], - [-22.192509, 65.435083], - [-22.191554, 65.435181], - [-22.192144, 65.435025], - [-22.192123, 65.434878], - [-22.19252, 65.434633], - [-22.192863, 65.434405], - [-22.193362, 65.434443], - [-22.193459, 65.434532], - [-22.193174, 65.434729], - [-22.193362, 65.434916], - [-22.193244, 65.43494], - [-22.193043, 65.434899], - [-22.192946, 65.434994], - [-22.193206, 65.435109], - [-22.193341, 65.43505], - [-22.193641, 65.435081], - [-22.193705, 65.434994], - [-22.193609, 65.43486], - [-22.193764, 65.43476], - [-22.193603, 65.434608], - [-22.1937, 65.434472], - [-22.19399, 65.434289], - [-22.194483, 65.434133], - [-22.195342, 65.434307], - [-22.194945, 65.434686], - [-22.195116, 65.434766], - [-22.195427, 65.434744], - [-22.195824, 65.434775], - [-22.196447, 65.43478], - [-22.195792, 65.434905], - [-22.194912, 65.434851], - [-22.194531, 65.434931], - [-22.194628, 65.435114], - [-22.194891, 65.435199], - [-22.195497, 65.435623], - [-22.196532, 65.435734], - [-22.19664, 65.435824], - [-22.196693, 65.435955], - [-22.196886, 65.436055], - [-22.197273, 65.436122], - [-22.197659, 65.435997], - [-22.198174, 65.436078], - [-22.198757, 65.435963], - [-22.198884, 65.435757], - [-22.199236, 65.435676], - [-22.199397, 65.435467], - [-22.200019, 65.435132], - [-22.199461, 65.435025], - [-22.199032, 65.435132], - [-22.198796, 65.434994], - [-22.19827, 65.434963], - [-22.197539, 65.435005], - [-22.196801, 65.434887], - [-22.197283, 65.43482], - [-22.197895, 65.434829], - [-22.198378, 65.434829], - [-22.198399, 65.434744], - [-22.198086, 65.434601], - [-22.198678, 65.434572], - [-22.199011, 65.43447], - [-22.198957, 65.434356], - [-22.198045, 65.434347], - [-22.197959, 65.434204], - [-22.19963, 65.43422], - [-22.20084, 65.43439], - [-22.20092, 65.43388], - [-22.19933, 65.43366], - [-22.19781, 65.43404], - [-22.19791, 65.43353], - [-22.20052, 65.43272], - [-22.20238, 65.43265], - [-22.20311, 65.43203], - [-22.21052, 65.43188], - [-22.21043, 65.43239], - [-22.2117, 65.43217], - [-22.2116, 65.43268], - [-22.20911, 65.43286], - [-22.20883, 65.43439], - [-22.20761, 65.43435], - [-22.20989, 65.43532], - [-22.21336, 65.43547], - [-22.21365, 65.43505], - [-22.21425, 65.43507], - [-22.21438, 65.4355], - [-22.2154, 65.43549], - [-22.21486, 65.43509], - [-22.21609, 65.43513], - [-22.21627, 65.43411], - [-22.21886, 65.43343], - [-22.21698, 65.43362], - [-22.21707, 65.43311], - [-22.21865, 65.43291], - [-22.21905, 65.43241], - [-22.22027, 65.43245], - [-22.21983, 65.4332], - [-22.22242, 65.43418], - [-22.22524, 65.43388], - [-22.22512, 65.43286], - [-22.22701, 65.43266], - [-22.22651, 65.43367], - [-22.22861, 65.43399], - [-22.2295, 65.43247], - [-22.23075, 65.43239], - [-22.23148, 65.43177], - [-22.23209, 65.43179], - [-22.23259, 65.43245], - [-22.23508, 65.43227], - [-22.23717, 65.431689], - [-22.23654, 65.4327], - [-22.235242, 65.432928], - [-22.232159, 65.432984], - [-22.231318, 65.433708], - [-22.232122, 65.433435], - [-22.233146, 65.433257], - [-22.234853, 65.433323], - [-22.23444, 65.43357], - [-22.233058, 65.433896], - [-22.23496, 65.4341], - [-22.23596, 65.43422], - [-22.23586, 65.43473], - [-22.2377, 65.43479], - [-22.2361, 65.43679], - [-22.23733, 65.43683], - [-22.23602, 65.44064], - [-22.23414, 65.44083], - [-22.23339, 65.44157], - [-22.23581, 65.44178], - [-22.23631, 65.44244], - [-22.23753, 65.44247], - [-22.23763, 65.44196], - [-22.23885, 65.442], - [-22.23864, 65.44148], - [-22.24358, 65.43972], - [-22.24544, 65.43965], - [-22.24558, 65.43888], - [-22.24744, 65.43881], - [-22.2488, 65.43809], - [-22.25066, 65.43802], - [-22.2496, 65.43875], - [-22.25111, 65.43893], - [-22.25264, 65.43731], - [-22.25379, 65.43773], - [-22.25937, 65.43752], - [-22.25862, 65.43827], - [-22.25985, 65.43831], - [-22.25975, 65.43882], - [-22.26168, 65.43836], - [-22.26032, 65.43909], - [-22.2591, 65.43905], - [-22.25891, 65.44007], - [-22.26014, 65.44011], - [-22.2596, 65.44137], - [-22.25793, 65.44208], - [-22.25977, 65.44215], - [-22.25967, 65.44266], - [-22.25784, 65.4426], - [-22.2577, 65.44336], - [-22.25459, 65.44352], - [-22.25502, 65.44456], - [-22.25318, 65.4445], - [-22.25424, 65.44543], - [-22.25785, 65.44593], - [-22.25737, 65.44514], - [-22.26107, 65.44514], - [-22.2624, 65.44633], - [-22.26195, 65.44709], - [-22.26767, 65.44278], - [-22.26891, 65.44269], - [-22.26934, 65.44373], - [-22.26995, 65.44375], - [-22.27009, 65.44298], - [-22.27166, 65.44278], - [-22.2722, 65.4415], - [-22.27397, 65.44195], - [-22.27719, 65.44116], - [-22.27675, 65.44191], - [-22.27762, 65.44219], - [-22.27835, 65.44158], - [-22.28181, 65.44284], - [-22.28059, 65.4428], - [-22.28163, 65.44386], - [-22.28041, 65.44382], - [-22.28088, 65.4446], - [-22.27966, 65.44456], - [-22.27918, 65.44378], - [-22.27857, 65.44376], - [-22.27751, 65.4445], - [-22.27759, 65.44578], - [-22.27886, 65.44557], - [-22.2784, 65.44589], - [-22.27849, 65.4476], - [-22.27599, 65.44778], - [-22.27546, 65.44905], - [-22.27685, 65.44986], - [-22.27523, 65.45032], - [-22.2754, 65.45109], - [-22.2729, 65.45127], - [-22.27304, 65.45051], - [-22.27242, 65.45049], - [-22.2721, 65.45227], - [-22.27399, 65.45208], - [-22.27412, 65.45131], - [-22.27533, 65.45148], - [-22.27723, 65.45115], - [-22.27823, 65.45246], - [-22.27867, 65.45171], - [-22.28092, 65.45127], - [-22.28039, 65.45074], - [-22.28586, 65.45117], - [-22.2842, 65.45009], - [-22.28524, 65.45003], - [-22.28558, 65.44936], - [-22.28434, 65.44932], - [-22.28448, 65.44856], - [-22.28653, 65.44914], - [-22.28665, 65.45017], - [-22.28562, 65.45022], - [-22.28637, 65.45058], - [-22.28764, 65.45036], - [-22.28802, 65.44944], - [-22.28972, 65.45026], - [-22.28676, 65.45077], - [-22.28655, 65.45247], - [-22.28723, 65.45266], - [-22.28874, 65.45229], - [-22.28864, 65.45279], - [-22.28762, 65.45285], - [-22.28792, 65.45341], - [-22.29119, 65.45236], - [-22.29105, 65.45312], - [-22.29289, 65.45318], - [-22.29171, 65.45289], - [-22.29175, 65.45263], - [-22.29364, 65.45242], - [-22.29317, 65.4528], - [-22.29416, 65.45296], - [-22.29393, 65.45424], - [-22.29516, 65.45427], - [-22.29436, 65.45527], - [-22.29641, 65.45585], - [-22.29661, 65.45816], - [-22.29617, 65.45892], - [-22.29911, 65.45965], - [-22.3016, 65.4596], - [-22.30107, 65.45907], - [-22.3035, 65.45928], - [-22.30423, 65.45866], - [-22.30234, 65.45885], - [-22.30239, 65.4586], - [-22.30493, 65.45817], - [-22.30484, 65.45868], - [-22.3061, 65.45846], - [-22.30602, 65.45897], - [-22.30433, 65.45926], - [-22.30427, 65.4596], - [-22.30588, 65.45973], - [-22.30584, 65.45999], - [-22.30395, 65.46019], - [-22.30382, 65.45976], - [-22.30216, 65.45987], - [-22.30228, 65.4609], - [-22.30598, 65.46144], - [-22.30684, 65.4613], - [-22.30637, 65.46167], - [-22.30692, 65.46198], - [-22.30828, 65.46186], - [-22.30806, 65.46134], - [-22.31051, 65.46141], - [-22.31034, 65.46064], - [-22.31505, 65.46014], - [-22.31555, 65.4608], - [-22.31112, 65.46143], - [-22.31165, 65.46196], - [-22.31, 65.462], - [-22.31032, 65.46243], - [-22.30849, 65.46238], - [-22.30967, 65.46267], - [-22.30962, 65.46412], - [-22.31244, 65.46442], - [-22.31396, 65.46627], - [-22.317, 65.46649], - [-22.31686, 65.46725], - [-22.32, 65.46696], - [-22.32054, 65.46736], - [-22.31866, 65.46756], - [-22.31911, 65.46847], - [-22.32397, 65.46889], - [-22.32463, 65.46864], - [-22.32706, 65.46885], - [-22.32601, 65.46779], - [-22.32724, 65.46783], - [-22.32733, 65.46732], - [-22.32856, 65.46736], - [-22.32837, 65.46837], - [-22.33146, 65.46834], - [-22.33653, 65.46982], - [-22.33743, 65.46942], - [-22.334259, 65.468923], - [-22.33457, 65.46818], - [-22.33762, 65.4684], - [-22.33753, 65.46891], - [-22.33936, 65.46897], - [-22.33975, 65.47026], - [-22.33693, 65.47001], - [-22.33655, 65.47093], - [-22.34017, 65.4713], - [-22.34036, 65.47028], - [-22.34275, 65.47074], - [-22.34402, 65.47052], - [-22.34579, 65.47096], - [-22.34566, 65.47173], - [-22.35354, 65.47248], - [-22.35254, 65.47117], - [-22.35494, 65.47151], - [-22.35485, 65.47201], - [-22.36221, 65.47224], - [-22.36212, 65.47274], - [-22.36396, 65.4728], - [-22.36387, 65.47331], - [-22.36637, 65.47313], - [-22.36628, 65.47364], - [-22.36689, 65.47366], - [-22.36837, 65.4723], - [-22.37141, 65.47253], - [-22.37158, 65.47329], - [-22.38195, 65.47566], - [-22.3809, 65.47639], - [-22.38164, 65.47744], - [-22.38041, 65.4774], - [-22.38032, 65.4779], - [-22.37853, 65.4776], - [-22.3787, 65.47838], - [-22.38262, 65.47888], - [-22.38457, 65.4783], - [-22.38273, 65.47824], - [-22.38341, 65.47788], - [-22.38764, 65.47839], - [-22.38755, 65.4789], - [-22.38571, 65.47885], - [-22.38618, 65.47963], - [-22.38185, 65.47976], - [-22.38228, 65.48079], - [-22.38105, 65.48076], - [-22.3821, 65.48181], - [-22.38314, 65.48176], - [-22.3848, 65.48049], - [-22.38964, 65.48102], - [-22.3896, 65.48127], - [-22.38587, 65.48142], - [-22.38582, 65.48167], - [-22.38828, 65.48175], - [-22.38819, 65.48225], - [-22.38352, 65.48194], - [-22.3838, 65.48263], - [-22.37969, 65.48148], - [-22.38039, 65.48099], - [-22.37733, 65.4809], - [-22.37662, 65.48139], - [-22.37785, 65.48143], - [-22.37635, 65.48292], - [-22.37451, 65.48287], - [-22.37447, 65.48312], - [-22.37596, 65.48342], - [-22.37631, 65.48437], - [-22.37981, 65.48431], - [-22.37972, 65.48482], - [-22.38094, 65.48485], - [-22.38085, 65.48536], - [-22.37916, 65.48565], - [-22.37914, 65.48634], - [-22.381926, 65.486101], - [-22.3823, 65.48591], - [-22.38755, 65.484154], - [-22.389539, 65.483889], - [-22.38995, 65.483621], - [-22.39066, 65.48364], - [-22.391782, 65.483418], - [-22.392229, 65.484436], - [-22.38892, 65.4851], - [-22.38888, 65.48535], - [-22.39072, 65.48541], - [-22.39019, 65.48607], - [-22.39242, 65.48623], - [-22.39238, 65.48648], - [-22.39069, 65.48677], - [-22.39154, 65.48774], - [-22.39031, 65.4877], - [-22.39022, 65.48821], - [-22.38842, 65.4879], - [-22.38863, 65.48675], - [-22.38615, 65.48681], - [-22.3854, 65.48755], - [-22.3806, 65.488], - [-22.38093, 65.48844], - [-22.3779, 65.48809], - [-22.3784, 65.48875], - [-22.38272, 65.48875], - [-22.38224, 65.48797], - [-22.38286, 65.48799], - [-22.38298, 65.48841], - [-22.38943, 65.48921], - [-22.38991, 65.48999], - [-22.38745, 65.48992], - [-22.3867, 65.49067], - [-22.38609, 65.49065], - [-22.3856, 65.48986], - [-22.38372, 65.49006], - [-22.38381, 65.48955], - [-22.3832, 65.48953], - [-22.38422, 65.49073], - [-22.38666, 65.49092], - [-22.38649, 65.49194], - [-22.38464, 65.49188], - [-22.3845, 65.49265], - [-22.382, 65.49283], - [-22.38205, 65.49257], - [-22.38332, 65.49236], - [-22.38025, 65.49226], - [-22.38043, 65.49124], - [-22.37881, 65.49171], - [-22.37893, 65.49274], - [-22.37768, 65.49282], - [-22.37711, 65.49255], - [-22.37402, 65.49259], - [-22.37416, 65.49182], - [-22.37232, 65.49176], - [-22.3728, 65.49255], - [-22.37157, 65.49251], - [-22.37152, 65.49277], - [-22.37459, 65.49286], - [-22.37345, 65.4935], - [-22.37445, 65.49362], - [-22.37467, 65.49414], - [-22.37859, 65.49466], - [-22.37914, 65.49505], - [-22.37791, 65.49501], - [-22.37778, 65.49577], - [-22.37615, 65.49624], - [-22.37343, 65.4959], - [-22.37334, 65.49641], - [-22.37115, 65.4966], - [-22.36794, 65.49906], - [-22.36675, 65.49877], - [-22.36775, 65.50008], - [-22.36394, 65.50073], - [-22.35897, 65.50442], - [-22.34097, 65.50836], - [-22.31711, 65.51057], - [-22.31596, 65.51181], - [-22.31745, 65.51211], - [-22.3184, 65.51368], - [-22.31779, 65.51366], - [-22.31495, 65.51229], - [-22.31538, 65.51333], - [-22.31458, 65.51314], - [-22.31231, 65.51324], - [-22.3124, 65.51273], - [-22.31061, 65.51229], - [-22.30498, 65.51275], - [-22.30489, 65.51326], - [-22.29754, 65.51291], - [-22.29374, 65.51343], - [-22.29454, 65.51243], - [-22.28717, 65.5122], - [-22.28893, 65.51277], - [-22.28888, 65.51302], - [-22.28387, 65.51338], - [-22.28369, 65.5144], - [-22.27552, 65.51517], - [-22.27561, 65.51466], - [-22.27188, 65.5148], - [-22.27113, 65.51554], - [-22.26298, 65.51619], - [-22.26121, 65.51575], - [-22.2605, 65.51624], - [-22.26173, 65.51628], - [-22.26164, 65.51678], - [-22.25677, 65.51638], - [-22.25668, 65.51689], - [-22.24806, 65.51674], - [-22.22586, 65.51989], - [-22.21731, 65.51936], - [-22.21349, 65.51988], - [-22.21332, 65.5209], - [-22.21516, 65.52096], - [-22.21497, 65.52198], - [-22.2162, 65.52202], - [-22.21606, 65.52278], - [-22.21476, 65.52313], - [-22.20671, 65.52326], - [-22.20661, 65.52377], - [-22.20538, 65.52373], - [-22.20066, 65.52589], - [-22.2025, 65.52594], - [-22.20246, 65.5262], - [-22.19556, 65.52675], - [-22.19602, 65.52753], - [-22.19287, 65.52794], - [-22.19315, 65.52974], - [-22.19065, 65.52992], - [-22.19055, 65.53043], - [-22.18932, 65.5304], - [-22.18878, 65.53166], - [-22.1893, 65.53219], - [-22.18798, 65.53265], - [-22.18862, 65.53422], - [-22.18484, 65.53461], - [-22.1846, 65.53588], - [-22.18276, 65.53583], - [-22.18108, 65.53654], - [-22.18167, 65.53835], - [-22.17231, 65.53882], - [-22.17155, 65.53957], - [-22.17032, 65.53953], - [-22.16983, 65.54054], - [-22.16673, 65.54223], - [-22.1655, 65.5422], - [-22.1664, 65.54401], - [-22.16455, 65.54396], - [-22.16207, 65.54567], - [-22.16356, 65.54598], - [-22.16342, 65.54674], - [-22.16465, 65.54679], - [-22.16451, 65.54755], - [-22.16266, 65.54749], - [-22.16243, 65.54876], - [-22.16053, 65.54896], - [-22.1585, 65.55325], - [-22.15476, 65.55339], - [-22.15197, 65.55509], - [-22.1532, 65.55513], - [-22.15306, 65.55589], - [-22.15109, 65.55647], - [-22.14615, 65.55644], - [-22.14447, 65.55716], - [-22.14439, 65.55921], - [-22.14316, 65.55917], - [-22.14181, 65.56143], - [-22.14475, 65.56229], - [-22.1443, 65.56305], - [-22.14612, 65.56323], - [-22.1469, 65.56237], - [-22.14818, 65.56215], - [-22.14747, 65.56264], - [-22.14931, 65.5627], - [-22.14851, 65.56369], - [-22.14974, 65.56373], - [-22.14888, 65.56499], - [-22.15206, 65.56458], - [-22.15099, 65.56531], - [-22.1512, 65.56583], - [-22.14803, 65.56624], - [-22.14784, 65.56726], - [-22.14912, 65.56705], - [-22.14765, 65.56828], - [-22.14642, 65.56824], - [-22.14724, 65.56878], - [-22.14647, 65.57132], - [-22.14462, 65.57126], - [-22.1441, 65.57406], - [-22.141071, 65.574023], - [-22.13864, 65.5779], - [-22.13879, 65.57927], - [-22.13623, 65.57971], - [-22.13656, 65.58125], - [-22.13533, 65.58121], - [-22.13514, 65.58223], - [-22.13383, 65.58258], - [-22.13263, 65.58241], - [-22.13253, 65.58292], - [-22.1313, 65.58288], - [-22.1312, 65.58339], - [-22.13059, 65.58337], - [-22.13012, 65.58259], - [-22.12704, 65.58249], - [-22.12627, 65.58323], - [-22.12382, 65.58315], - [-22.12343, 65.58519], - [-22.12221, 65.58515], - [-22.12211, 65.58565], - [-22.1196, 65.58584], - [-22.11945, 65.5866], - [-22.11756, 65.5868], - [-22.11722, 65.58858], - [-22.11599, 65.58854], - [-22.11589, 65.58905], - [-22.11277, 65.5892], - [-22.11272, 65.58946], - [-22.11457, 65.58952], - [-22.11452, 65.58977], - [-22.11134, 65.59018], - [-22.11059, 65.59093], - [-22.10803, 65.59136], - [-22.10794, 65.59187], - [-22.1067, 65.59183], - [-22.10513, 65.59357], - [-22.1039, 65.59353], - [-22.1038, 65.59404], - [-22.10068, 65.5942], - [-22.10087, 65.59318], - [-22.10025, 65.59316], - [-22.09885, 65.59568], - [-22.09778, 65.59641], - [-22.09655, 65.59637], - [-22.09507, 65.59759], - [-22.09261, 65.59752], - [-22.09185, 65.59827], - [-22.09062, 65.59823], - [-22.09043, 65.59925], - [-22.08919, 65.59921], - [-22.0891, 65.59972], - [-22.088766, 65.600358], - [-22.088681, 65.601723], - [-22.092886, 65.603956], - [-22.09453, 65.60374], - [-22.09885, 65.60388], - [-22.10022, 65.60315], - [-22.10394, 65.60314], - [-22.10468, 65.60253], - [-22.10794, 65.60174], - [-22.10916, 65.60178], - [-22.114, 65.59911], - [-22.11526, 65.59902], - [-22.11535, 65.59851], - [-22.11659, 65.59855], - [-22.11739, 65.59756], - [-22.11863, 65.59759], - [-22.12019, 65.59586], - [-22.12311, 65.59518], - [-22.12356, 65.59442], - [-22.12481, 65.59433], - [-22.12697, 65.59274], - [-22.13072, 65.5926], - [-22.13553, 65.59006], - [-22.13678, 65.58998], - [-22.13688, 65.58947], - [-22.14178, 65.58975], - [-22.14245, 65.58952], - [-22.14668, 65.59004], - [-22.14709, 65.58954], - [-22.14944, 65.58859], - [-22.15066, 65.58863], - [-22.15014, 65.5881], - [-22.15138, 65.58813], - [-22.15142, 65.58788], - [-22.15019, 65.58785], - [-22.15242, 65.58586], - [-22.15366, 65.5859], - [-22.15723, 65.58332], - [-22.15848, 65.58324], - [-22.15965, 65.57866], - [-22.16123, 65.57845], - [-22.16374, 65.57495], - [-22.16883, 65.57421], - [-22.17103, 65.57236], - [-22.17338, 65.57141], - [-22.17513, 65.56865], - [-22.17461, 65.56812], - [-22.17655, 65.56767], - [-22.1779, 65.5654], - [-22.17667, 65.56536], - [-22.17678, 65.56306], - [-22.17851, 65.56209], - [-22.1801, 65.56188], - [-22.1805, 65.56138], - [-22.18173, 65.56142], - [-22.1818, 65.55937], - [-22.1838, 65.55867], - [-22.18367, 65.55764], - [-22.18492, 65.55755], - [-22.18726, 65.55493], - [-22.18974, 65.55488], - [-22.19048, 65.55427], - [-22.19171, 65.55431], - [-22.19128, 65.55327], - [-22.1944, 65.55311], - [-22.1945, 65.5526], - [-22.19574, 65.55264], - [-22.19497, 65.55005], - [-22.19747, 65.54988], - [-22.19615, 65.54701], - [-22.19799, 65.54708], - [-22.19797, 65.54553], - [-22.19974, 65.5443], - [-22.2048, 65.5437], - [-22.20714, 65.54275], - [-22.20799, 65.54149], - [-22.20742, 65.54122], - [-22.20796, 65.53996], - [-22.20921, 65.53987], - [-22.20994, 65.53925], - [-22.21116, 65.53929], - [-22.21084, 65.53774], - [-22.21209, 65.53765], - [-22.21528, 65.53711], - [-22.21538, 65.5366], - [-22.22046, 65.53587], - [-22.22459, 65.53356], - [-22.22584, 65.53347], - [-22.22792, 65.53226], - [-22.22912, 65.53242], - [-22.23061, 65.53105], - [-22.23671, 65.53151], - [-22.24276, 65.53055], - [-22.24316, 65.53005], - [-22.24628, 65.5299], - [-22.24623, 65.53014], - [-22.2452, 65.5302], - [-22.24486, 65.53087], - [-22.24741, 65.53044], - [-22.24787, 65.52968], - [-22.2514, 65.52889], - [-22.25443, 65.52925], - [-22.25556, 65.52813], - [-22.25714, 65.52792], - [-22.25705, 65.52843], - [-22.26262, 65.52835], - [-22.26272, 65.52784], - [-22.26395, 65.52788], - [-22.26347, 65.52709], - [-22.2659, 65.5273], - [-22.268182, 65.526635], - [-22.26957, 65.52754], - [-22.27141, 65.5276], - [-22.27146, 65.52734], - [-22.26926, 65.526332], - [-22.27401, 65.52691], - [-22.27392, 65.52741], - [-22.28029, 65.52634], - [-22.28034, 65.52608], - [-22.27802, 65.52524], - [-22.2817, 65.52536], - [-22.28116, 65.52495], - [-22.28215, 65.5246], - [-22.2868, 65.52449], - [-22.28671, 65.525], - [-22.28425, 65.52492], - [-22.285, 65.52597], - [-22.28398, 65.52645], - [-22.28618, 65.52626], - [-22.28664, 65.52537], - [-22.28754, 65.52554], - [-22.2871, 65.52629], - [-22.29149, 65.52592], - [-22.29097, 65.52539], - [-22.29333, 65.52597], - [-22.29233, 65.52466], - [-22.29666, 65.52467], - [-22.29734, 65.52431], - [-22.29857, 65.52434], - [-22.29852, 65.5246], - [-22.29749, 65.52464], - [-22.29716, 65.52532], - [-22.299, 65.52537], - [-22.29895, 65.52564], - [-22.29773, 65.5256], - [-22.2995, 65.52604], - [-22.30259, 65.52601], - [-22.3012, 65.52519], - [-22.30183, 65.52342], - [-22.30802, 65.52336], - [-22.30881, 65.52235], - [-22.31122, 65.52269], - [-22.30986, 65.52341], - [-22.31227, 65.52374], - [-22.3127, 65.52478], - [-22.31147, 65.52474], - [-22.31156, 65.52423], - [-22.30977, 65.52393], - [-22.3114, 65.52513], - [-22.31682, 65.52593], - [-22.31536, 65.52717], - [-22.3129, 65.52709], - [-22.3122, 65.52758], - [-22.31404, 65.52764], - [-22.3136, 65.5284], - [-22.31511, 65.52857], - [-22.31733, 65.52826], - [-22.31852, 65.52676], - [-22.31975, 65.52679], - [-22.31963, 65.52576], - [-22.32196, 65.52481], - [-22.32046, 65.5263], - [-22.32235, 65.5261], - [-22.32244, 65.5256], - [-22.32306, 65.52561], - [-22.32296, 65.52612], - [-22.32615, 65.52558], - [-22.32797, 65.52577], - [-22.32793, 65.52602], - [-22.32608, 65.52597], - [-22.32604, 65.52622], - [-22.32825, 65.52646], - [-22.32912, 65.52631], - [-22.3284, 65.5268], - [-22.32961, 65.52697], - [-22.33011, 65.52763], - [-22.32881, 65.52797], - [-22.32699, 65.52779], - [-22.32655, 65.52854], - [-22.32861, 65.52912], - [-22.32933, 65.5285], - [-22.33182, 65.52845], - [-22.33191, 65.52794], - [-22.33314, 65.52798], - [-22.33234, 65.52898], - [-22.33457, 65.528666], - [-22.335142, 65.528121], - [-22.338894, 65.52825], - [-22.337801, 65.529109], - [-22.337465, 65.529557], - [-22.336397, 65.53001], - [-22.336322, 65.530431], - [-22.337676, 65.530704], - [-22.338136, 65.531548], - [-22.339192, 65.531893], - [-22.338757, 65.532639], - [-22.340497, 65.532732], - [-22.339105, 65.533884], - [-22.339726, 65.534404], - [-22.340782, 65.534708], - [-22.337739, 65.534939], - [-22.337925, 65.535258], - [-22.337478, 65.535485], - [-22.336235, 65.53585], - [-22.336521, 65.53622], - [-22.336161, 65.536519], - [-22.333266, 65.536478], - [-22.332831, 65.536673], - [-22.332657, 65.537296], - [-22.33098, 65.537645], - [-22.330408, 65.537985], - [-22.328768, 65.538438], - [-22.327178, 65.538829], - [-22.324892, 65.539796], - [-22.322233, 65.540434], - [-22.322109, 65.540722], - [-22.32026, 65.54116], - [-22.31081, 65.54215], - [-22.30983, 65.54417], - [-22.30477, 65.54478], - [-22.30331, 65.54602], - [-22.29632, 65.54708], - [-22.29054, 65.54998], - [-22.29123, 65.55128], - [-22.28877, 65.5512], - [-22.28868, 65.55171], - [-22.28745, 65.55168], - [-22.28826, 65.55401], - [-22.2858, 65.55393], - [-22.28434, 65.55517], - [-22.28558, 65.55521], - [-22.28548, 65.55571], - [-22.28425, 65.55568], - [-22.28411, 65.55644], - [-22.28288, 65.5564], - [-22.28243, 65.55716], - [-22.28379, 65.55822], - [-22.28128, 65.5584], - [-22.27956, 65.55937], - [-22.27831, 65.56113], - [-22.28013, 65.56131], - [-22.28151, 65.56225], - [-22.28107, 65.56301], - [-22.28255, 65.56331], - [-22.28211, 65.56407], - [-22.28022, 65.56425], - [-22.28222, 65.5651], - [-22.28174, 65.56611], - [-22.28425, 65.56593], - [-22.28415, 65.56643], - [-22.28292, 65.5664], - [-22.28207, 65.56765], - [-22.28475, 65.56825], - [-22.28435, 65.56875], - [-22.28558, 65.56879], - [-22.28575, 65.56956], - [-22.28464, 65.57055], - [-22.28341, 65.57051], - [-22.28414, 65.57336], - [-22.2829, 65.57332], - [-22.28251, 65.57382], - [-22.28384, 65.57501], - [-22.2857, 65.57494], - [-22.28691, 65.57511], - [-22.28864, 65.5758], - [-22.28944, 65.5748], - [-22.29165, 65.57461], - [-22.29143, 65.5741], - [-22.29328, 65.57415], - [-22.29416, 65.57264], - [-22.29611, 65.57219], - [-22.29488, 65.57215], - [-22.29466, 65.57163], - [-22.29783, 65.57122], - [-22.29811, 65.56969], - [-22.30013, 65.56873], - [-22.30017, 65.56514], - [-22.30324, 65.56011], - [-22.30939, 65.5603], - [-22.30949, 65.55979], - [-22.31072, 65.55983], - [-22.31116, 65.55907], - [-22.31733, 65.55747], - [-22.31806, 65.55685], - [-22.31931, 65.55676], - [-22.32009, 65.55589], - [-22.32567, 65.55582], - [-22.3264, 65.55519], - [-22.32823, 65.55525], - [-22.33178, 65.55279], - [-22.33301, 65.55283], - [-22.33258, 65.55179], - [-22.33381, 65.55183], - [-22.33524, 65.55072], - [-22.33706, 65.5509], - [-22.33746, 65.5504], - [-22.33905, 65.5502], - [-22.33918, 65.54943], - [-22.34041, 65.54947], - [-22.34069, 65.54794], - [-22.34478, 65.54755], - [-22.34633, 65.54581], - [-22.34585, 65.54502], - [-22.34927, 65.54487], - [-22.34946, 65.54385], - [-22.35104, 65.54365], - [-22.35148, 65.54289], - [-22.35271, 65.54293], - [-22.35492, 65.54095], - [-22.35677, 65.541], - [-22.35727, 65.5382], - [-22.3585, 65.53824], - [-22.35868, 65.53722], - [-22.35991, 65.53725], - [-22.35908, 65.53672], - [-22.36029, 65.53509], - [-22.3615, 65.53525], - [-22.36472, 65.53279], - [-22.36463, 65.53151], - [-22.36589, 65.53142], - [-22.36737, 65.53005], - [-22.3686, 65.53009], - [-22.36892, 65.5283], - [-22.370732, 65.527898], - [-22.371923, 65.528563], - [-22.373724, 65.528502], - [-22.37461, 65.529651], - [-22.374285, 65.53012], - [-22.375013, 65.530369], - [-22.375574, 65.530059], - [-22.379925, 65.53032], - [-22.380623, 65.530882], - [-22.383586, 65.530984], - [-22.383616, 65.531343], - [-22.381277, 65.531355], - [-22.380804, 65.531294], - [-22.380693, 65.53117], - [-22.378995, 65.530888], - [-22.378229, 65.53096], - [-22.377972, 65.531199], - [-22.379635, 65.531533], - [-22.379718, 65.531741], - [-22.38008, 65.53166], - [-22.380456, 65.53151], - [-22.380818, 65.531597], - [-22.380574, 65.531749], - [-22.38079, 65.53185], - [-22.382342, 65.531772], - [-22.382377, 65.531917], - [-22.38185, 65.53203], - [-22.38205, 65.532248], - [-22.382753, 65.532286], - [-22.382857, 65.532484], - [-22.382565, 65.532657], - [-22.383024, 65.532911], - [-22.383052, 65.533467], - [-22.382641, 65.533686], - [-22.382774, 65.534038], - [-22.383059, 65.534061], - [-22.383456, 65.533975], - [-22.383302, 65.534174], - [-22.383595, 65.534421], - [-22.384555, 65.534782], - [-22.38372, 65.53543], - [-22.38249, 65.53538], - [-22.38217, 65.53718], - [-22.38404, 65.53709], - [-22.38582, 65.53753], - [-22.38436, 65.53878], - [-22.38669, 65.53961], - [-22.38547, 65.53957], - [-22.38462, 65.54083], - [-22.38585, 65.54087], - [-22.38576, 65.54138], - [-22.38453, 65.54134], - [-22.38614, 65.54446], - [-22.3853, 65.54572], - [-22.38665, 65.54679], - [-22.38854, 65.54658], - [-22.38709, 65.54782], - [-22.38858, 65.54812], - [-22.3888, 65.54864], - [-22.39369, 65.54892], - [-22.39424, 65.54932], - [-22.39301, 65.54928], - [-22.39288, 65.55005], - [-22.39415, 65.54983], - [-22.39369, 65.55016], - [-22.39414, 65.55162], - [-22.40233, 65.55251], - [-22.40473, 65.55297], - [-22.40459, 65.55374], - [-22.40644, 65.55379], - [-22.40617, 65.55532], - [-22.41093, 65.55636], - [-22.41528, 65.55624], - [-22.41667, 65.55538], - [-22.41849, 65.55556], - [-22.419864, 65.55504], - [-22.41993, 65.55446], - [-22.42177, 65.55451], - [-22.42086, 65.55269], - [-22.41906, 65.55238], - [-22.41827, 65.55158], - [-22.41867, 65.55109], - [-22.41743, 65.55105], - [-22.41752, 65.55054], - [-22.41326, 65.55015], - [-22.41279, 65.54758], - [-22.411, 65.54548], - [-22.40919, 65.54516], - [-22.40724, 65.54049], - [-22.40926, 65.53953], - [-22.4087, 65.53747], - [-22.40629, 65.53713], - [-22.4084, 65.53566], - [-22.40964, 65.53569], - [-22.41016, 65.53443], - [-22.40937, 65.53364], - [-22.40815, 65.5336], - [-22.40686, 65.53262], - [-22.407191, 65.532208], - [-22.40658, 65.53201], - [-22.40359, 65.53141], - [-22.40368, 65.5309], - [-22.40245, 65.53086], - [-22.40122, 65.52963], - [-22.401679, 65.529301], - [-22.401575, 65.529109], - [-22.40021, 65.52951], - [-22.4003, 65.52901], - [-22.39908, 65.52897], - [-22.40085, 65.52415], - [-22.40275, 65.52216], - [-22.404, 65.52207], - [-22.40473, 65.52144], - [-22.40596, 65.52149], - [-22.40658, 65.51971], - [-22.41127, 65.51934], - [-22.41057, 65.51985], - [-22.41905, 65.51907], - [-22.42516, 65.51592], - [-22.4256, 65.51517], - [-22.42964, 65.51503], - [-22.43003, 65.51453], - [-22.43128, 65.51444], - [-22.43601, 65.51215], - [-22.43994, 65.51086], - [-22.44246, 65.51055], - [-22.44255, 65.51004], - [-22.44479, 65.50959], - [-22.44611, 65.50733], - [-22.44983, 65.50731], - [-22.45114, 65.50684], - [-22.45234, 65.507], - [-22.45307, 65.50638], - [-22.45684, 65.50598], - [-22.45741, 65.50626], - [-22.468394, 65.505352], - [-22.468654, 65.505308], - [-22.469094, 65.505194], - [-22.469613, 65.505031], - [-22.471738, 65.504796], - [-22.472006, 65.504726], - [-22.472143, 65.504611], - [-22.472594, 65.504583], - [-22.472699, 65.504654], - [-22.472545, 65.504793], - [-22.473379, 65.504661], - [-22.474056, 65.50455], - [-22.475567, 65.50433], - [-22.476406, 65.504319], - [-22.476607, 65.504384], - [-22.473704, 65.504941], - [-22.472086, 65.505206], - [-22.471358, 65.505179], - [-22.469852, 65.505501], - [-22.469749, 65.505791], - [-22.470197, 65.505986], - [-22.470628, 65.506029], - [-22.471127, 65.505934], - [-22.472116, 65.50575], - [-22.472752, 65.505576], - [-22.474557, 65.505626], - [-22.474537, 65.505733], - [-22.473952, 65.506035], - [-22.473513, 65.506348], - [-22.473721, 65.506461], - [-22.473962, 65.506479], - [-22.474246, 65.506458], - [-22.474606, 65.506391], - [-22.475299, 65.506311], - [-22.475534, 65.506336], - [-22.475851, 65.506391], - [-22.475542, 65.506488], - [-22.475393, 65.506601], - [-22.475026, 65.50664], - [-22.474587, 65.506839], - [-22.474403, 65.507028], - [-22.474446, 65.5072], - [-22.47468, 65.507283], - [-22.474904, 65.507193], - [-22.474979, 65.507232], - [-22.474817, 65.507334], - [-22.474852, 65.507438], - [-22.475027, 65.507481], - [-22.4752, 65.50747], - [-22.475337, 65.507405], - [-22.475776, 65.507313], - [-22.475965, 65.507306], - [-22.476104, 65.507357], - [-22.475805, 65.50745], - [-22.475355, 65.507592], - [-22.475179, 65.507668], - [-22.475488, 65.507755], - [-22.475882, 65.507774], - [-22.475673, 65.507862], - [-22.475601, 65.507962], - [-22.475665, 65.508097], - [-22.475799, 65.508188], - [-22.476114, 65.508254], - [-22.476436, 65.508366], - [-22.476653, 65.508474], - [-22.476892, 65.50862], - [-22.477024, 65.50877], - [-22.47728, 65.508845], - [-22.477462, 65.508858], - [-22.477876, 65.508933], - [-22.47814, 65.509017], - [-22.47846, 65.509065], - [-22.478573, 65.509092], - [-22.478597, 65.509144], - [-22.478595, 65.509211], - [-22.478612, 65.509335], - [-22.478744, 65.509449], - [-22.478853, 65.509502], - [-22.479023, 65.509558], - [-22.479072, 65.509665], - [-22.479089, 65.509748], - [-22.47908, 65.50986], - [-22.479303, 65.509983], - [-22.47966, 65.510123], - [-22.47996, 65.510189], - [-22.480223, 65.510221], - [-22.480486, 65.510192], - [-22.480683, 65.510252], - [-22.480799, 65.51033], - [-22.480761, 65.510487], - [-22.480578, 65.510622], - [-22.480543, 65.510932], - [-22.480528, 65.511187], - [-22.480653, 65.511328], - [-22.480853, 65.511459], - [-22.48128, 65.511524], - [-22.482079, 65.511662], - [-22.48265, 65.51201], - [-22.48045, 65.51399], - [-22.48309, 65.51603], - [-22.48409, 65.51615], - [-22.48353, 65.51707], - [-22.48453, 65.51719], - [-22.48463, 65.51668], - [-22.48582, 65.51684], - [-22.49208, 65.51639], - [-22.49191, 65.51741], - [-22.48953, 65.51683], - [-22.48942, 65.51746], - [-22.48869, 65.51808], - [-22.48554, 65.5185], - [-22.4854, 65.51927], - [-22.48356, 65.51921], - [-22.48343, 65.52177], - [-22.48492, 65.52207], - [-22.48488, 65.52233], - [-22.48167, 65.523], - [-22.4817, 65.52454], - [-22.48371, 65.52549], - [-22.48681, 65.52546], - [-22.48672, 65.52597], - [-22.48487, 65.52591], - [-22.48606, 65.52799], - [-22.48534, 65.52849], - [-22.48649, 65.52904], - [-22.48601, 65.53005], - [-22.48725, 65.53008], - [-22.48715, 65.53059], - [-22.48337, 65.53099], - [-22.48328, 65.5315], - [-22.48206, 65.53147], - [-22.48197, 65.53198], - [-22.48008, 65.53218], - [-22.48043, 65.53372], - [-22.4792, 65.53369], - [-22.48003, 65.53422], - [-22.47955, 65.53523], - [-22.48473, 65.53564], - [-22.4842, 65.53691], - [-22.48231, 65.53711], - [-22.48222, 65.53762], - [-22.4835, 65.5374], - [-22.48205, 65.53864], - [-22.48459, 65.5382], - [-22.4839, 65.53869], - [-22.48571, 65.53888], - [-22.48683, 65.53955], - [-22.4813, 65.53939], - [-22.48178, 65.54017], - [-22.47853, 65.54111], - [-22.47976, 65.54113], - [-22.47968, 65.54164], - [-22.48152, 65.5417], - [-22.48143, 65.54221], - [-22.4802, 65.54217], - [-22.47795, 65.54619], - [-22.47641, 65.54794], - [-22.47799, 65.54954], - [-22.47733, 65.54977], - [-22.478106, 65.550596], - [-22.47866, 65.55109], - [-22.47856, 65.5516], - [-22.478089, 65.551884], - [-22.4775, 65.55234], - [-22.476913, 65.552795], - [-22.4764, 65.55334], - [-22.476396, 65.553395], - [-22.476357, 65.553493], - [-22.47636, 65.55359], - [-22.47635, 65.555545], - [-22.47746, 65.55618], - [-22.47723, 65.55746], - [-22.476929, 65.558667], - [-22.477471, 65.559624], - [-22.479566, 65.560924], - [-22.479602, 65.561432], - [-22.48047, 65.562165], - [-22.48177, 65.562763], - [-22.481951, 65.56351], - [-22.482891, 65.564228], - [-22.485323, 65.565545], - [-22.486771, 65.56646], - [-22.48615, 65.56669], - [-22.486172, 65.566836], - [-22.486022, 65.567095], - [-22.486222, 65.567394], - [-22.486958, 65.567741], - [-22.488332, 65.568164], - [-22.489431, 65.568463], - [-22.489256, 65.568603], - [-22.489194, 65.568851], - [-22.489718, 65.569124], - [-22.490105, 65.569434], - [-22.490679, 65.569878], - [-22.490704, 65.570043], - [-22.491229, 65.570054], - [-22.491703, 65.570074], - [-22.491666, 65.570209], - [-22.491503, 65.570549], - [-22.490904, 65.570906], - [-22.489368, 65.571732], - [-22.489443, 65.57214], - [-22.489618, 65.572533], - [-22.490392, 65.573854], - [-22.491066, 65.574701], - [-22.491766, 65.575108], - [-22.491416, 65.57546], - [-22.491541, 65.575945], - [-22.491853, 65.576817], - [-22.492064, 65.57713], - [-22.492408, 65.577609], - [-22.493039, 65.577716], - [-22.493089, 65.57786], - [-22.492989, 65.578356], - [-22.493395, 65.57862], - [-22.494138, 65.578867], - [-22.493788, 65.579182], - [-22.493588, 65.579481], - [-22.493414, 65.579956], - [-22.493613, 65.580591], - [-22.493951, 65.581128], - [-22.494825, 65.58218], - [-22.496248, 65.582573], - [-22.497446, 65.582903], - [-22.497072, 65.583094], - [-22.496485, 65.583171], - [-22.496111, 65.583347], - [-22.496656, 65.584102], - [-22.498108, 65.58474], - [-22.497796, 65.584885], - [-22.497515, 65.585184], - [-22.498116, 65.585982], - [-22.499781, 65.586624], - [-22.49968, 65.58683], - [-22.499569, 65.586996], - [-22.499744, 65.58714], - [-22.500218, 65.587285], - [-22.500006, 65.58746], - [-22.499569, 65.587465], - [-22.499095, 65.58777], - [-22.499017, 65.588057], - [-22.498945, 65.588662], - [-22.498945, 65.589312], - [-22.499221, 65.589729], - [-22.49961, 65.590868], - [-22.499992, 65.591657], - [-22.502049, 65.592338], - [-22.503316, 65.592552], - [-22.503793, 65.59268], - [-22.504387, 65.592641], - [-22.504956, 65.593012], - [-22.505656, 65.593238], - [-22.505715, 65.593376], - [-22.506164, 65.593476], - [-22.506664, 65.593604], - [-22.506992, 65.593861], - [-22.50751, 65.594018], - [-22.507752, 65.59436], - [-22.507786, 65.595023], - [-22.508079, 65.595572], - [-22.508804, 65.595836], - [-22.510323, 65.596199], - [-22.513256, 65.596456], - [-22.515845, 65.596456], - [-22.51336, 65.59722], - [-22.512894, 65.59749], - [-22.512911, 65.598046], - [-22.513343, 65.59878], - [-22.513636, 65.599821], - [-22.514257, 65.600741], - [-22.51481, 65.60119], - [-22.514344, 65.601746], - [-22.513912, 65.602216], - [-22.514223, 65.602623], - [-22.514913, 65.603036], - [-22.515137, 65.603428], - [-22.514827, 65.603806], - [-22.513791, 65.604262], - [-22.512497, 65.605039], - [-22.511807, 65.605267], - [-22.511583, 65.605659], - [-22.511755, 65.606037], - [-22.511928, 65.606065], - [-22.510702, 65.6067], - [-22.50996, 65.606963], - [-22.509391, 65.607298], - [-22.508235, 65.607754], - [-22.507217, 65.608994], - [-22.507165, 65.609728], - [-22.50839, 65.610128], - [-22.509546, 65.610185], - [-22.509736, 65.610377], - [-22.509046, 65.610576], - [-22.509098, 65.610961], - [-22.510202, 65.610904], - [-22.510961, 65.610947], - [-22.509926, 65.61136], - [-22.510547, 65.611481], - [-22.510392, 65.611645], - [-22.509978, 65.612001], - [-22.510841, 65.612258], - [-22.511617, 65.612009], - [-22.512031, 65.612194], - [-22.511634, 65.612443], - [-22.510858, 65.612472], - [-22.510202, 65.6125], - [-22.509719, 65.612458], - [-22.509374, 65.612543], - [-22.50946, 65.612814], - [-22.510599, 65.612992], - [-22.510444, 65.613135], - [-22.51072, 65.613263], - [-22.511341, 65.613462], - [-22.511358, 65.613733], - [-22.511876, 65.614082], - [-22.512687, 65.614346], - [-22.512946, 65.614068], - [-22.513843, 65.614225], - [-22.514603, 65.614752], - [-22.515759, 65.614916], - [-22.5155, 65.615037], - [-22.515017, 65.614973], - [-22.514723, 65.615044], - [-22.514326, 65.615023], - [-22.514223, 65.615144], - [-22.514396, 65.615308], - [-22.51569, 65.616248], - [-22.516673, 65.616554], - [-22.517191, 65.617046], - [-22.518261, 65.617473], - [-22.519348, 65.61783], - [-22.520815, 65.618115], - [-22.52242, 65.618464], - [-22.523386, 65.619026], - [-22.524215, 65.620038], - [-22.525008, 65.621085], - [-22.525664, 65.621698], - [-22.528115, 65.624689], - [-22.52953, 65.624714], - [-22.529461, 65.625027], - [-22.529737, 65.625309], - [-22.529771, 65.625743], - [-22.530272, 65.626028], - [-22.530151, 65.626377], - [-22.530125, 65.626687], - [-22.530323, 65.626861], - [-22.530047, 65.627046], - [-22.529883, 65.627349], - [-22.530108, 65.627598], - [-22.530591, 65.627855], - [-22.531316, 65.627919], - [-22.531074, 65.628189], - [-22.531505, 65.62841], - [-22.531454, 65.62883], - [-22.531862, 65.629001], - [-22.532012, 65.629753], - [-22.532311, 65.630371], - [-22.532461, 65.630886], - [-22.532012, 65.631474], - [-22.532099, 65.631724], - [-22.53311, 65.632061], - [-22.534009, 65.63238], - [-22.534883, 65.633411], - [-22.534858, 65.63372], - [-22.535066, 65.633909], - [-22.536257, 65.634348], - [-22.536232, 65.634678], - [-22.535632, 65.635059], - [-22.534634, 65.635234], - [-22.534009, 65.63542], - [-22.534059, 65.635718], - [-22.534783, 65.636211], - [-22.535083, 65.636511], - [-22.535033, 65.636821], - [-22.535348, 65.637085], - [-22.536282, 65.637305], - [-22.536556, 65.637583], - [-22.537467, 65.637522], - [-22.53808, 65.637758], - [-22.538404, 65.638077], - [-22.538404, 65.638396], - [-22.53752, 65.63867], - [-22.537805, 65.63887], - [-22.538229, 65.638922], - [-22.53803, 65.639334], - [-22.53881, 65.639486], - [-22.53906, 65.63956], - [-22.538735, 65.639645], - [-22.538592, 65.639885], - [-22.538891, 65.640222], - [-22.538367, 65.639918], - [-22.538111, 65.639867], - [-22.538173, 65.640039], - [-22.538123, 65.640235], - [-22.539286, 65.642074], - [-22.54054, 65.643407], - [-22.541751, 65.644448], - [-22.54295, 65.64498], - [-22.54392, 65.64475], - [-22.54473, 65.644377], - [-22.545673, 65.644122], - [-22.546463, 65.64359], - [-22.546871, 65.643603], - [-22.547082, 65.643571], - [-22.547684, 65.643074], - [-22.54802, 65.64257], - [-22.548719, 65.641808], - [-22.548843, 65.640956], - [-22.548666, 65.640475], - [-22.548719, 65.639958], - [-22.54826, 65.639725], - [-22.548225, 65.639557], - [-22.548896, 65.639237], - [-22.548949, 65.63896], - [-22.548119, 65.638662], - [-22.547077, 65.638465], - [-22.546918, 65.638188], - [-22.546794, 65.637693], - [-22.547766, 65.637416], - [-22.54886, 65.637372], - [-22.549478, 65.637241], - [-22.55022, 65.636979], - [-22.550079, 65.63687], - [-22.549531, 65.63687], - [-22.549002, 65.636943], - [-22.54879, 65.636797], - [-22.548843, 65.636542], - [-22.549072, 65.636302], - [-22.549037, 65.635996], - [-22.549602, 65.635814], - [-22.549973, 65.635653], - [-22.549814, 65.635413], - [-22.54962, 65.635114], - [-22.549637, 65.634845], - [-22.550441, 65.634767], - [-22.550079, 65.634432], - [-22.550004, 65.634262], - [-22.550474, 65.634083], - [-22.551075, 65.633413], - [-22.55111, 65.633194], - [-22.550333, 65.632801], - [-22.549591, 65.63264], - [-22.549627, 65.632305], - [-22.55034, 65.63085], - [-22.551374, 65.630183], - [-22.552772, 65.630091], - [-22.553946, 65.629998], - [-22.553421, 65.629421], - [-22.552572, 65.629194], - [-22.552372, 65.628751], - [-22.551174, 65.62839], - [-22.549775, 65.62805], - [-22.549576, 65.627587], - [-22.548552, 65.627154], - [-22.547578, 65.62635], - [-22.549151, 65.626072], - [-22.551723, 65.625186], - [-22.552472, 65.624361], - [-22.552472, 65.623908], - [-22.551473, 65.62297], - [-22.549725, 65.622042], - [-22.549051, 65.621424], - [-22.549101, 65.620754], - [-22.549226, 65.619816], - [-22.548627, 65.619115], - [-22.547703, 65.618795], - [-22.547172, 65.617983], - [-22.546347, 65.617488], - [-22.545548, 65.616921], - [-22.545324, 65.616395], - [-22.544624, 65.615807], - [-22.542951, 65.614467], - [-22.542802, 65.613467], - [-22.542252, 65.612611], - [-22.540954, 65.612137], - [-22.539705, 65.611879], - [-22.542302, 65.610941], - [-22.539927, 65.606903], - [-22.540634, 65.606232], - [-22.54102, 65.60572], - [-22.541163, 65.603753], - [-22.540775, 65.603067], - [-22.54134, 65.602702], - [-22.541128, 65.602017], - [-22.54264, 65.60167], - [-22.543098, 65.60122], - [-22.543451, 65.600141], - [-22.543345, 65.599032], - [-22.542604, 65.597821], - [-22.541756, 65.597121], - [-22.541792, 65.596493], - [-22.542463, 65.595749], - [-22.542533, 65.59502], - [-22.542215, 65.594042], - [-22.540979, 65.592962], - [-22.540591, 65.592408], - [-22.540202, 65.591809], - [-22.540308, 65.591401], - [-22.539355, 65.590248], - [-22.538401, 65.589722], - [-22.538013, 65.588788], - [-22.535294, 65.586366], - [-22.534587, 65.584979], - [-22.533634, 65.584351], - [-22.533859, 65.583839], - [-22.53331, 65.583302], - [-22.532311, 65.582817], - [-22.531562, 65.582466], - [-22.53153, 65.58161], - [-22.531112, 65.581248], - [-22.531087, 65.58098], - [-22.531737, 65.580567], - [-22.532011, 65.580308], - [-22.53296, 65.580216], - [-22.533235, 65.579751], - [-22.533035, 65.579132], - [-22.532261, 65.578512], - [-22.531137, 65.577986], - [-22.529839, 65.577366], - [-22.52904, 65.576881], - [-22.529564, 65.576354], - [-22.528865, 65.575828], - [-22.527467, 65.575332], - [-22.525609, 65.575439], - [-22.525369, 65.575033], - [-22.526093, 65.574661], - [-22.525954, 65.573674], - [-22.528491, 65.574124], - [-22.530488, 65.57432], - [-22.532411, 65.574547], - [-22.533704, 65.574257], - [-22.53258, 65.57191], - [-22.53074, 65.57185], - [-22.53219, 65.57062], - [-22.52911, 65.57053], - [-22.52933, 65.56925], - [-22.53117, 65.56931], - [-22.5313, 65.56854], - [-22.52941, 65.56874], - [-22.52831, 65.56794], - [-22.53144, 65.56778], - [-22.53148, 65.56752], - [-22.53025, 65.56748], - [-22.53011, 65.56706], - [-22.52849, 65.56692], - [-22.52858, 65.56641], - [-22.53095, 65.56699], - [-22.53179, 65.56574], - [-22.53051, 65.56595], - [-22.52998, 65.56543], - [-22.53121, 65.56546], - [-22.53126, 65.56521], - [-22.53003, 65.56517], - [-22.53007, 65.56492], - [-22.53166, 65.56471], - [-22.53205, 65.56421], - [-22.53077, 65.56443], - [-22.53025, 65.5639], - [-22.53148, 65.56393], - [-22.53157, 65.56342], - [-22.53033, 65.56339], - [-22.53104, 65.5629], - [-22.52682, 65.56226], - [-22.52629, 65.56173], - [-22.53121, 65.56188], - [-22.53126, 65.56162], - [-22.53003, 65.56158], - [-22.53257, 65.56115], - [-22.53402, 65.55991], - [-22.5322, 65.55973], - [-22.5309, 65.56007], - [-22.53099, 65.55956], - [-22.52919, 65.55925], - [-22.53117, 65.55854], - [-22.53108, 65.55905], - [-22.53205, 65.55883], - [-22.53187, 65.55805], - [-22.53437, 65.55787], - [-22.53441, 65.55761], - [-22.53262, 65.55731], - [-22.53301, 65.5568], - [-22.53248, 65.55628], - [-22.53512, 65.55533], - [-22.53565, 65.55407], - [-22.53125, 65.55445], - [-22.53318, 65.55399], - [-22.53327, 65.55349], - [-22.53578, 65.5533], - [-22.53661, 65.55085], - [-22.5384, 65.550025], - [-22.539039, 65.549077], - [-22.537528, 65.550126], - [-22.535797, 65.550607], - [-22.53498, 65.55072], - [-22.53643, 65.54948], - [-22.53397, 65.54941], - [-22.5354, 65.54829], - [-22.53826, 65.54842], - [-22.54113, 65.54731], - [-22.53858, 65.54774], - [-22.53876, 65.54673], - [-22.54285, 65.54633], - [-22.54271, 65.5453], - [-22.54082, 65.5455], - [-22.54091, 65.545], - [-22.54339, 65.54494], - [-22.54486, 65.54357], - [-22.5436, 65.54379], - [-22.54644, 65.54157], - [-22.54766, 65.54161], - [-22.5512, 65.53902], - [-22.55246, 65.53893], - [-22.55263, 65.53791], - [-22.55382, 65.5382], - [-22.55403, 65.53693], - [-22.55276, 65.53714], - [-22.55557, 65.53518], - [-22.55785, 65.53448], - [-22.56417, 65.53364], - [-22.56457, 65.53313], - [-22.56676, 65.53294], - [-22.56601, 65.5319], - [-22.56845, 65.5321], - [-22.56949, 65.53328], - [-22.56826, 65.53325], - [-22.56817, 65.53375], - [-22.57059, 65.53408], - [-22.57067, 65.53357], - [-22.57559, 65.53371], - [-22.5755, 65.53422], - [-22.57673, 65.53425], - [-22.57669, 65.53451], - [-22.57423, 65.53444], - [-22.57406, 65.53546], - [-22.57529, 65.5355], - [-22.57459, 65.53599], - [-22.58025, 65.53539], - [-22.58038, 65.53462], - [-22.581, 65.53464], - [-22.58091, 65.53515], - [-22.58306, 65.53521], - [-22.58192, 65.53646], - [-22.58319, 65.53624], - [-22.58311, 65.53675], - [-22.58188, 65.53672], - [-22.58044, 65.53795], - [-22.58166, 65.53799], - [-22.58123, 65.53875], - [-22.58208, 65.53915], - [-22.58395, 65.53908], - [-22.58386, 65.53959], - [-22.5851, 65.53963], - [-22.58518, 65.53912], - [-22.5858, 65.53914], - [-22.58492, 65.54065], - [-22.58389, 65.5407], - [-22.58379, 65.54129], - [-22.58479, 65.54141], - [-22.58475, 65.54167], - [-22.58616, 65.54427], - [-22.58726, 65.54507], - [-22.58779, 65.5456], - [-22.58944, 65.5468], - [-22.59127, 65.54698], - [-22.59083, 65.54953], - [-22.59206, 65.54957], - [-22.59176, 65.55135], - [-22.59053, 65.55131], - [-22.590424, 65.554631], - [-22.592173, 65.555286], - [-22.589944, 65.556275], - [-22.58941, 65.55794], - [-22.58837, 65.558], - [-22.58696, 65.56146], - [-22.58819, 65.56148], - [-22.5874, 65.5625], - [-22.58863, 65.56253], - [-22.58854, 65.56304], - [-22.58731, 65.56301], - [-22.58723, 65.56352], - [-22.58599, 65.56348], - [-22.58631, 65.56528], - [-22.58508, 65.56525], - [-22.5846, 65.56805], - [-22.58636, 65.56863], - [-22.58513, 65.56858], - [-22.58531, 65.56936], - [-22.58466, 65.56959], - [-22.58533, 65.57102], - [-22.58654, 65.57118], - [-22.58532, 65.57294], - [-22.5861, 65.57373], - [-22.58426, 65.57368], - [-22.58664, 65.57426], - [-22.586019, 65.575088], - [-22.585786, 65.575672], - [-22.5857, 65.57615], - [-22.58814, 65.57635], - [-22.58806, 65.57686], - [-22.58616, 65.57706], - [-22.586614, 65.57828], - [-22.58709, 65.57888], - [-22.587602, 65.580292], - [-22.588481, 65.580881], - [-22.588341, 65.583469], - [-22.589612, 65.584034], - [-22.588931, 65.585362], - [-22.590606, 65.589232], - [-22.591172, 65.589451], - [-22.594262, 65.589977], - [-22.593387, 65.590444], - [-22.594187, 65.592716], - [-22.59396, 65.59318], - [-22.60059, 65.603378], - [-22.60143, 65.6039], - [-22.602659, 65.603997], - [-22.60255, 65.60457], - [-22.605133, 65.607316], - [-22.60633, 65.60788], - [-22.606107, 65.608557], - [-22.607133, 65.609426], - [-22.609444, 65.609608], - [-22.608516, 65.611523], - [-22.610295, 65.614919], - [-22.61143, 65.61623], - [-22.60954, 65.61822], - [-22.609218, 65.618352], - [-22.61003, 65.6208], - [-22.610455, 65.621206], - [-22.61268, 65.62164], - [-22.613825, 65.623212], - [-22.61485, 65.6235], - [-22.61536, 65.62415], - [-22.619167, 65.624047], - [-22.62123, 65.6206], - [-22.621, 65.6183], - [-22.62438, 65.6166], - [-22.62419, 65.61224], - [-22.62294, 65.6122], - [-22.62061, 65.60957], - [-22.62006, 65.60367], - [-22.61882, 65.60363], - [-22.61891, 65.60312], - [-22.6171, 65.60281], - [-22.61175, 65.59599], - [-22.61161, 65.59317], - [-22.61032, 65.5916], - [-22.61262, 65.59091], - [-22.61177, 65.58858], - [-22.60911, 65.58593], - [-22.60998, 65.58442], - [-22.60985, 65.58339], - [-22.60862, 65.58335], - [-22.60923, 65.58159], - [-22.60861, 65.57977], - [-22.60738, 65.57973], - [-22.60742, 65.57947], - [-22.609, 65.57926], - [-22.60741, 65.57768], - [-22.6086, 65.57618], - [-22.60736, 65.57614], - [-22.60741, 65.57589], - [-22.60864, 65.57592], - [-22.60894, 65.57414], - [-22.61017, 65.57417], - [-22.60938, 65.57338], - [-22.61047, 65.57239], - [-22.60863, 65.57234], - [-22.60867, 65.57208], - [-22.61179, 65.57192], - [-22.61258, 65.57091], - [-22.61135, 65.57088], - [-22.61152, 65.56986], - [-22.60967, 65.5698], - [-22.60976, 65.56929], - [-22.61362, 65.56838], - [-22.61239, 65.56835], - [-22.61248, 65.56784], - [-22.61468, 65.56764], - [-22.61542, 65.5669], - [-22.61546, 65.56485], - [-22.61668, 65.56488], - [-22.61686, 65.56386], - [-22.61563, 65.56383], - [-22.61635, 65.56321], - [-22.6176, 65.56312], - [-22.61809, 65.56211], - [-22.62221, 65.55966], - [-22.62175, 65.55504], - [-22.62333, 65.55483], - [-22.62342, 65.55432], - [-22.62153, 65.55452], - [-22.62165, 65.55375], - [-22.62385, 65.55356], - [-22.62437, 65.5523], - [-22.62657, 65.5521], - [-22.62515, 65.5495], - [-22.62664, 65.54801], - [-22.62616, 65.54721], - [-22.62754, 65.54325], - [-22.62609, 65.5421], - [-22.62675, 65.54186], - [-22.62433, 65.54153], - [-22.62327, 65.54048], - [-22.62507, 65.54079], - [-22.6259, 65.53953], - [-22.6243, 65.53931], - [-22.62344, 65.53946], - [-22.62454, 65.53847], - [-22.62541, 65.53875], - [-22.62651, 65.53776], - [-22.62694, 65.537], - [-22.62334, 65.53638], - [-22.62175, 65.5348], - [-22.62052, 65.53476], - [-22.62003, 65.53398], - [-22.61883, 65.53383], - [-22.61692, 65.53415], - [-22.617, 65.53364], - [-22.61891, 65.53331], - [-22.62192, 65.53378], - [-22.62086, 65.53272], - [-22.62271, 65.53278], - [-22.62262, 65.53329], - [-22.62323, 65.5333], - [-22.62208, 65.52917], - [-22.62085, 65.52914], - [-22.62036, 65.52835], - [-22.62256, 65.52816], - [-22.62252, 65.52662], - [-22.62128, 65.52659], - [-22.62136, 65.52608], - [-22.62319, 65.52626], - [-22.62544, 65.52389], - [-22.63042, 65.52365], - [-22.63118, 65.52277], - [-22.63242, 65.52281], - [-22.63135, 65.52175], - [-22.63502, 65.52199], - [-22.63553, 65.52264], - [-22.6375, 65.52193], - [-22.63627, 65.52189], - [-22.63695, 65.52153], - [-22.64436, 65.52161], - [-22.64352, 65.52287], - [-22.64892, 65.522], - [-22.64931, 65.5215], - [-22.65427, 65.52139], - [-22.65418, 65.5219], - [-22.65034, 65.52268], - [-22.64914, 65.52252], - [-22.6507, 65.52423], - [-22.65437, 65.52446], - [-22.65446, 65.52395], - [-22.65757, 65.52379], - [-22.65829, 65.52317], - [-22.66012, 65.52335], - [-22.65994, 65.52257], - [-22.66351, 65.52152], - [-22.6656, 65.52197], - [-22.66582, 65.52249], - [-22.66766, 65.52254], - [-22.66753, 65.5233], - [-22.66502, 65.52349], - [-22.66429, 65.52424], - [-22.66249, 65.52393], - [-22.6624, 65.52444], - [-22.66051, 65.52464], - [-22.6606, 65.52413], - [-22.65937, 65.5241], - [-22.65955, 65.52487], - [-22.6585, 65.52561], - [-22.65973, 65.52564], - [-22.65965, 65.52615], - [-22.66151, 65.52608], - [-22.66565, 65.52722], - [-22.6669, 65.52712], - [-22.66757, 65.52869], - [-22.6699, 65.52952], - [-22.67065, 65.53057], - [-22.67188, 65.5306], - [-22.67398, 65.53284], - [-22.67519, 65.533], - [-22.6751, 65.53351], - [-22.67949, 65.53312], - [-22.67941, 65.53363], - [-22.67818, 65.5336], - [-22.67824, 65.53693], - [-22.67947, 65.53697], - [-22.67896, 65.53823], - [-22.67977, 65.54261], - [-22.68104, 65.54239], - [-22.68096, 65.5429], - [-22.68219, 65.54294], - [-22.68211, 65.54345], - [-22.68332, 65.54361], - [-22.68401, 65.54504], - [-22.6831, 65.54681], - [-22.68578, 65.54739], - [-22.68452, 65.54941], - [-22.68558, 65.55046], - [-22.68744, 65.55231], - [-22.691, 65.55318], - [-22.68977, 65.55314], - [-22.68965, 65.55391], - [-22.68842, 65.55387], - [-22.68954, 65.55455], - [-22.69081, 65.55433], - [-22.69445, 65.55481], - [-22.69405, 65.55531], - [-22.69739, 65.55567], - [-22.69691, 65.55669], - [-22.69732, 65.55797], - [-22.69847, 65.55851], - [-22.69888, 65.55981], - [-22.69771, 65.5631], - [-22.69964, 65.56828], - [-22.70087, 65.56832], - [-22.70083, 65.56857], - [-22.6996, 65.56854], - [-22.69947, 65.5693], - [-22.70071, 65.56934], - [-22.70115, 65.57038], - [-22.69992, 65.57034], - [-22.69887, 65.57108], - [-22.70043, 65.57471], - [-22.70351, 65.5748], - [-22.70346, 65.57505], - [-22.70057, 65.57574], - [-22.70128, 65.57704], - [-22.70063, 65.57728], - [-22.70184, 65.57744], - [-22.70375, 65.58214], - [-22.70475, 65.58226], - [-22.70584, 65.58319], - [-22.70705, 65.58335], - [-22.706, 65.58409], - [-22.7068, 65.58488], - [-22.70803, 65.58492], - [-22.7079, 65.58568], - [-22.70979, 65.58548], - [-22.70928, 65.58674], - [-22.71087, 65.58833], - [-22.71027, 65.5901], - [-22.70838, 65.59031], - [-22.70856, 65.59108], - [-22.70699, 65.59248], - [-22.70804, 65.59234], - [-22.70779, 65.59387], - [-22.70656, 65.59384], - [-22.70741, 65.59438], - [-22.70626, 65.59562], - [-22.70437, 65.59583], - [-22.685665, 65.60877], - [-22.683491, 65.609997], - [-22.679887, 65.612447], - [-22.676605, 65.616671], - [-22.674787, 65.617887], - [-22.673989, 65.619138], - [-22.672403, 65.61937], - [-22.669239, 65.621301], - [-22.666902, 65.623813], - [-22.667729, 65.624329], - [-22.666359, 65.625702], - [-22.666056, 65.626013], - [-22.66647, 65.62626], - [-22.66642, 65.62652], - [-22.665155, 65.627032], - [-22.664315, 65.627687], - [-22.663855, 65.628364], - [-22.66415, 65.62901], - [-22.664522, 65.629299], - [-22.664047, 65.629745], - [-22.663739, 65.630228], - [-22.663575, 65.630769], - [-22.667339, 65.630007], - [-22.667162, 65.630459], - [-22.665268, 65.631353], - [-22.66429, 65.63184], - [-22.663983, 65.632234], - [-22.66376, 65.632681], - [-22.663802, 65.633026], - [-22.665062, 65.632955], - [-22.666988, 65.63229], - [-22.667481, 65.632393], - [-22.667279, 65.632999], - [-22.667708, 65.633547], - [-22.665483, 65.634382], - [-22.66361, 65.63592], - [-22.664028, 65.636175], - [-22.66353, 65.63643], - [-22.663857, 65.636768], - [-22.66493, 65.637344], - [-22.665306, 65.637516], - [-22.66553, 65.637618], - [-22.66598, 65.63786], - [-22.66633, 65.63817], - [-22.669091, 65.637982], - [-22.670215, 65.63747], - [-22.671028, 65.63699], - [-22.671054, 65.636824], - [-22.671792, 65.636228], - [-22.672663, 65.636003], - [-22.67357, 65.63389], - [-22.67686, 65.63271], - [-22.67852, 65.63019], - [-22.679528, 65.629734], - [-22.68238, 65.62748], - [-22.683065, 65.627087], - [-22.68695, 65.62428], - [-22.68987, 65.62347], - [-22.69363, 65.6214], - [-22.69283, 65.6206], - [-22.693459, 65.620348], - [-22.69353, 65.62011], - [-22.694502, 65.619804], - [-22.6961, 65.61955], - [-22.70026, 65.61877], - [-22.70065, 65.61827], - [-22.70508, 65.61775], - [-22.70579, 65.61713], - [-22.713832, 65.615516], - [-22.7164, 65.61487], - [-22.71986, 65.61458], - [-22.72134, 65.61501], - [-22.722136, 65.615489], - [-22.72275, 65.61582], - [-22.72514, 65.617385], - [-22.730054, 65.621565], - [-22.73228, 65.62198], - [-22.73211, 65.623], - [-22.73111, 65.6228], - [-22.732371, 65.623762], - [-22.73313, 65.62431], - [-22.733508, 65.624346], - [-22.73437, 65.62434], - [-22.73583, 65.62489], - [-22.7372, 65.62596], - [-22.73897, 65.62652], - [-22.74008, 65.62732], - [-22.741984, 65.627667], - [-22.74559, 65.62773], - [-22.745675, 65.628517], - [-22.75062, 65.628993], - [-22.75429, 65.627829], - [-22.754945, 65.629367], - [-22.756447, 65.630146], - [-22.757208, 65.630549], - [-22.758217, 65.631222], - [-22.758968, 65.631753], - [-22.759933, 65.632178], - [-22.761629, 65.632568], - [-22.7628, 65.63244], - [-22.76405, 65.63247], - [-22.765341, 65.63247], - [-22.7665, 65.632152], - [-22.767658, 65.631771], - [-22.768021, 65.631555], - [-22.768388, 65.631337], - [-22.76863, 65.63093], - [-22.769096, 65.630487], - [-22.769439, 65.630169], - [-22.76974, 65.629575], - [-22.769997, 65.628982], - [-22.770405, 65.628114], - [-22.77019, 65.627725], - [-22.768848, 65.627607], - [-22.768616, 65.627138], - [-22.77008, 65.62584], - [-22.768745, 65.625499], - [-22.768522, 65.625065], - [-22.769182, 65.624822], - [-22.769884, 65.624347], - [-22.768719, 65.624006], - [-22.768934, 65.623427], - [-22.769948, 65.622567], - [-22.769664, 65.621917], - [-22.768114, 65.620914], - [-22.768602, 65.620354], - [-22.766898, 65.618885], - [-22.76709, 65.61757], - [-22.76586, 65.61754], - [-22.76522, 65.61572], - [-22.76722, 65.61296], - [-22.76599, 65.61293], - [-22.76651, 65.61346], - [-22.76533, 65.61317], - [-22.76558, 65.61164], - [-22.76435, 65.6116], - [-22.76422, 65.61237], - [-22.7636, 65.61235], - [-22.76377, 65.61133], - [-22.76254, 65.6113], - [-22.76573, 65.60882], - [-22.76563, 65.60754], - [-22.7644, 65.606693], - [-22.762938, 65.606043], - [-22.761695, 65.605694], - [-22.75975, 65.60558], - [-22.760128, 65.604858], - [-22.759669, 65.604484], - [-22.760772, 65.604144], - [-22.761467, 65.603751], - [-22.760458, 65.602624], - [-22.759185, 65.602378], - [-22.758805, 65.60193], - [-22.759127, 65.601615], - [-22.759246, 65.601349], - [-22.757769, 65.600437], - [-22.756037, 65.599468], - [-22.75558, 65.59701], - [-22.7543, 65.59723], - [-22.75377, 65.5967], - [-22.755, 65.59674], - [-22.74823, 65.58707], - [-22.74448, 65.58159], - [-22.74148, 65.58099], - [-22.74152, 65.58074], - [-22.74276, 65.58077], - [-22.74182, 65.57895], - [-22.74001, 65.57864], - [-22.7396, 65.57735], - [-22.74083, 65.57739], - [-22.74096, 65.57662], - [-22.73796, 65.57602], - [-22.73805, 65.57551], - [-22.73682, 65.57548], - [-22.73694, 65.57471], - [-22.73513, 65.57441], - [-22.73526, 65.57364], - [-22.73869, 65.57348], - [-22.73824, 65.57245], - [-22.73736, 65.57216], - [-22.73748, 65.5714], - [-22.73375, 65.57155], - [-22.73585, 65.57007], - [-22.73461, 65.57004], - [-22.73351, 65.56924], - [-22.73764, 65.56859], - [-22.73776, 65.56782], - [-22.73908, 65.56735], - [-22.7373, 65.56499], - [-22.73607, 65.56496], - [-22.73619, 65.56419], - [-22.73496, 65.56416], - [-22.73583, 65.56264], - [-22.73763, 65.56295], - [-22.73971, 65.55968], - [-22.73892, 65.55889], - [-22.73707, 65.55884], - [-22.73662, 65.5578], - [-22.73742, 65.558], - [-22.73978, 65.55738], - [-22.73797, 65.55707], - [-22.73849, 65.5558], - [-22.73774, 65.55476], - [-22.73897, 65.5548], - [-22.73766, 65.55142], - [-22.73643, 65.55139], - [-22.73541, 65.55008], - [-22.73418, 65.55004], - [-22.73554, 65.54931], - [-22.73431, 65.54928], - [-22.73439, 65.54877], - [-22.73312, 65.54899], - [-22.73171, 65.54818], - [-22.73207, 65.54781], - [-22.73328, 65.54797], - [-22.73337, 65.54746], - [-22.73091, 65.54739], - [-22.73323, 65.54643], - [-22.73221, 65.54512], - [-22.7326, 65.54462], - [-22.73137, 65.54459], - [-22.73095, 65.5415], - [-22.72927, 65.54043], - [-22.72915, 65.53735], - [-22.72879, 65.53017], - [-22.72756, 65.53013], - [-22.72719, 65.52859], - [-22.72596, 65.52855], - [-22.72626, 65.52677], - [-22.72503, 65.52673], - [-22.72489, 65.5257], - [-22.72624, 65.52497], - [-22.72251, 65.51949], - [-22.72071, 65.51918], - [-22.72079, 65.51867], - [-22.71772, 65.51858], - [-22.71863, 65.51682], - [-22.72022, 65.5166], - [-22.71983, 65.51326], - [-22.7186, 65.51323], - [-22.71868, 65.51272], - [-22.7169, 65.51228], - [-22.714, 65.51241], - [-22.71315, 65.51257], - [-22.71385, 65.51207], - [-22.71508, 65.5121], - [-22.71525, 65.51108], - [-22.71647, 65.51112], - [-22.71726, 65.51012], - [-22.71545, 65.50981], - [-22.71491, 65.50749], - [-22.71301, 65.5059], - [-22.71064, 65.50532], - [-22.71216, 65.50357], - [-22.70979, 65.50299], - [-22.71029, 65.49993], - [-22.71152, 65.49996], - [-22.71195, 65.49921], - [-22.71879, 65.49763], - [-22.717049, 65.49929], - [-22.716726, 65.499618], - [-22.717709, 65.499638], - [-22.71675, 65.500045], - [-22.716861, 65.501001], - [-22.717505, 65.500866], - [-22.718332, 65.50096], - [-22.718009, 65.501189], - [-22.717941, 65.501673], - [-22.718488, 65.502193], - [-22.719399, 65.502506], - [-22.719619, 65.502771], - [-22.720538, 65.502894], - [-22.721737, 65.502745], - [-22.721701, 65.503351], - [-22.724243, 65.504386], - [-22.725137, 65.50429], - [-22.73341, 65.50571], - [-22.73413, 65.50508], - [-22.73915, 65.50459], - [-22.73892, 65.50407], - [-22.73989, 65.50384], - [-22.74033, 65.50488], - [-22.73911, 65.50484], - [-22.73877, 65.50688], - [-22.74062, 65.50693], - [-22.7417, 65.50786], - [-22.74772, 65.5088], - [-22.75155, 65.50801], - [-22.75237, 65.50675], - [-22.75677, 65.50636], - [-22.75616, 65.50754], - [-22.75782, 65.50742], - [-22.75712, 65.50791], - [-22.75532, 65.5076], - [-22.75519, 65.50837], - [-22.75646, 65.50815], - [-22.7563, 65.50917], - [-22.75753, 65.5092], - [-22.75761, 65.50869], - [-22.76366, 65.50758], - [-22.76405, 65.50708], - [-22.76282, 65.50704], - [-22.76249, 65.50524], - [-22.76753, 65.50461], - [-22.7689, 65.50375], - [-22.77335, 65.50298], - [-22.77384, 65.50376], - [-22.76749, 65.50487], - [-22.76698, 65.50553], - [-22.76798, 65.50565], - [-22.76786, 65.50642], - [-22.77504, 65.50777], - [-22.78063, 65.50754], - [-22.78076, 65.50678], - [-22.78199, 65.50681], - [-22.7827, 65.50619], - [-22.78395, 65.5061], - [-22.78051, 65.50831], - [-22.77666, 65.50921], - [-22.77658, 65.50973], - [-22.77399, 65.51043], - [-22.77367, 65.50864], - [-22.76937, 65.50851], - [-22.76924, 65.50927], - [-22.76289, 65.51039], - [-22.76305, 65.5132], - [-22.76147, 65.51341], - [-22.76098, 65.51323], - [-22.7574, 65.51381], - [-22.75417, 65.51654], - [-22.75643, 65.51788], - [-22.75692, 65.51866], - [-22.7589, 65.51974], - [-22.76258, 65.51985], - [-22.76234, 65.52138], - [-22.76732, 65.52113], - [-22.76832, 65.52257], - [-22.76643, 65.52277], - [-22.76651, 65.52226], - [-22.76529, 65.52223], - [-22.76447, 65.52349], - [-22.76753, 65.52357], - [-22.76793, 65.52307], - [-22.77517, 65.52225], - [-22.77508, 65.52275], - [-22.76688, 65.52381], - [-22.76711, 65.52433], - [-22.76602, 65.52532], - [-22.76809, 65.52589], - [-22.767, 65.52689], - [-22.76823, 65.52692], - [-22.76895, 65.5263], - [-22.77959, 65.52544], - [-22.77967, 65.52493], - [-22.77713, 65.52537], - [-22.77976, 65.5243], - [-22.78467, 65.52456], - [-22.78463, 65.52481], - [-22.78094, 65.52471], - [-22.78024, 65.52521], - [-22.78209, 65.52526], - [-22.78201, 65.52577], - [-22.77944, 65.52634], - [-22.77701, 65.52614], - [-22.77692, 65.52665], - [-22.77815, 65.52668], - [-22.77807, 65.52719], - [-22.77439, 65.52709], - [-22.77426, 65.52786], - [-22.7811, 65.52753], - [-22.78069, 65.52624], - [-22.78131, 65.52626], - [-22.78145, 65.52668], - [-22.78373, 65.52658], - [-22.78223, 65.53013], - [-22.78303, 65.53092], - [-22.78663, 65.53153], - [-22.78612, 65.53088], - [-22.78741, 65.53053], - [-22.78695, 65.53089], - [-22.78856, 65.53107], - [-22.78868, 65.53031], - [-22.79733, 65.53029], - [-22.79725, 65.5308], - [-22.79602, 65.53076], - [-22.79617, 65.53121], - [-22.79906, 65.53111], - [-22.79852, 65.53058], - [-22.79932, 65.53076], - [-22.80592, 65.53066], - [-22.80648, 65.53105], - [-22.8009, 65.53116], - [-22.80141, 65.53181], - [-22.80485, 65.5322], - [-22.81046, 65.53185], - [-22.81263, 65.53123], - [-22.81246, 65.53225], - [-22.81408, 65.53179], - [-22.81417, 65.53127], - [-22.81769, 65.53048], - [-22.82386, 65.53051], - [-22.8265, 65.52943], - [-22.82835, 65.52948], - [-22.82907, 65.52886], - [-22.8322, 65.52856], - [-22.83403, 65.52874], - [-22.83399, 65.529], - [-22.83077, 65.52981], - [-22.82956, 65.52964], - [-22.82948, 65.53015], - [-22.82698, 65.53034], - [-22.82765, 65.5319], - [-22.82666, 65.53238], - [-22.83036, 65.53236], - [-22.83151, 65.5329], - [-22.85354, 65.5303], - [-22.85281, 65.53105], - [-22.86656, 65.53002], - [-22.86804, 65.53044], - [-22.86818, 65.53147], - [-22.86698, 65.53118], - [-22.86691, 65.53169], - [-22.85959, 65.53111], - [-22.85577, 65.53177], - [-22.85396, 65.53159], - [-22.85387, 65.5321], - [-22.8551, 65.53214], - [-22.85529, 65.53291], - [-22.85181, 65.53538], - [-22.85259, 65.53629], - [-22.85957, 65.53521], - [-22.86512, 65.53523], - [-22.86503, 65.53574], - [-22.86881, 65.53533], - [-22.86834, 65.53634], - [-22.8691, 65.53739], - [-22.87033, 65.53742], - [-22.8692, 65.53867], - [-22.8707, 65.53897], - [-22.870154, 65.539284], - [-22.864617, 65.539948], - [-22.864577, 65.540208], - [-22.865197, 65.540218], - [-22.865157, 65.540478], - [-22.864537, 65.540458], - [-22.864467, 65.540968], - [-22.869497, 65.540338], - [-22.870099, 65.539642], - [-22.87015, 65.53989], - [-22.87042, 65.54075], - [-22.86656, 65.54167], - [-22.86648, 65.54218], - [-22.86337, 65.54235], - [-22.86263, 65.5431], - [-22.86767, 65.54247], - [-22.86755, 65.54324], - [-22.8663, 65.54333], - [-22.86513, 65.54291], - [-22.86505, 65.54342], - [-22.86001, 65.54406], - [-22.85992, 65.54457], - [-22.85812, 65.54426], - [-22.858, 65.54502], - [-22.85677, 65.54499], - [-22.856017, 65.54552], - [-22.85687, 65.54567], - [-22.86237, 65.54476], - [-22.86675, 65.54437], - [-22.86747, 65.54375], - [-22.87057, 65.5437], - [-22.87082, 65.54409], - [-22.86915, 65.54482], - [-22.871, 65.54487], - [-22.87091, 65.54538], - [-22.86203, 65.5468], - [-22.85533, 65.54623], - [-22.85587, 65.54676], - [-22.85464, 65.54673], - [-22.85378, 65.54823], - [-22.851879, 65.548462], - [-22.851284, 65.548284], - [-22.850087, 65.548696], - [-22.85015, 65.54908], - [-22.85179, 65.54908], - [-22.85234, 65.54948], - [-22.849768, 65.549923], - [-22.84562, 65.55288], - [-22.84685, 65.55292], - [-22.84642, 65.55367], - [-22.84891, 65.55553], - [-22.84811, 65.55534], - [-22.84583, 65.55545], - [-22.84591, 65.55493], - [-22.84468, 65.55491], - [-22.84447, 65.55618], - [-22.841111, 65.55666], - [-22.83822, 65.55857], - [-22.83955, 65.55988], - [-22.83705, 65.56008], - [-22.83697, 65.56059], - [-22.837002, 65.560914], - [-22.836436, 65.561363], - [-22.835926, 65.561757], - [-22.836466, 65.562437], - [-22.835661, 65.563006], - [-22.835653, 65.563177], - [-22.835501, 65.56334], - [-22.835831, 65.563775], - [-22.83648, 65.563866], - [-22.837612, 65.56425], - [-22.835489, 65.56477], - [-22.835418, 65.565141], - [-22.835993, 65.565468], - [-22.83724, 65.565394], - [-22.838728, 65.565271], - [-22.840058, 65.565344], - [-22.839829, 65.565547], - [-22.837984, 65.566014], - [-22.836077, 65.566182], - [-22.834483, 65.566182], - [-22.832504, 65.566511], - [-22.829275, 65.567404], - [-22.828287, 65.568161], - [-22.82707, 65.569014], - [-22.825081, 65.57051], - [-22.823598, 65.571374], - [-22.822264, 65.572097], - [-22.819787, 65.57349], - [-22.820157, 65.574167], - [-22.816852, 65.575195], - [-22.808201, 65.580216], - [-22.804442, 65.582089], - [-22.802722, 65.582976], - [-22.796798, 65.586035], - [-22.794524, 65.58707], - [-22.789606, 65.589893], - [-22.787273, 65.590844], - [-22.787181, 65.591393], - [-22.785365, 65.591997], - [-22.783223, 65.592992], - [-22.779886, 65.594032], - [-22.77828, 65.595104], - [-22.777359, 65.595993], - [-22.776368, 65.596319], - [-22.775944, 65.596421], - [-22.77552, 65.596802], - [-22.775884, 65.597156], - [-22.776647, 65.597808], - [-22.776181, 65.598648], - [-22.772744, 65.60078], - [-22.772152, 65.60084], - [-22.771246, 65.601283], - [-22.771428, 65.602474], - [-22.776431, 65.603686], - [-22.777182, 65.603646], - [-22.777194, 65.603825], - [-22.777494, 65.603978], - [-22.777878, 65.603953], - [-22.77801, 65.6038], - [-22.778327, 65.603839], - [-22.778681, 65.603785], - [-22.778777, 65.603641], - [-22.778993, 65.603612], - [-22.779928, 65.603389], - [-22.780192, 65.603379], - [-22.780587, 65.603412], - [-22.780072, 65.603743], - [-22.779329, 65.604295], - [-22.778981, 65.604567], - [-22.778411, 65.60459], - [-22.778123, 65.604758], - [-22.778423, 65.60511], - [-22.778783, 65.60529], - [-22.779622, 65.605475], - [-22.781691, 65.605231], - [-22.782578, 65.605053], - [-22.783771, 65.604998], - [-22.78567, 65.604618], - [-22.786151, 65.604718], - [-22.786918, 65.604421], - [-22.78741, 65.604421], - [-22.786972, 65.604681], - [-22.786774, 65.604855], - [-22.786187, 65.604924], - [-22.786049, 65.605129], - [-22.78654, 65.605449], - [-22.78907, 65.606237], - [-22.79166, 65.60749], - [-22.79203, 65.60904], - [-22.79326, 65.60908], - [-22.79318, 65.60959], - [-22.79569, 65.6094], - [-22.7956, 65.60991], - [-22.79865, 65.61025], - [-22.79842, 65.60973], - [-22.8, 65.60952], - [-22.80004, 65.60926], - [-22.79881, 65.60923], - [-22.79893, 65.60846], - [-22.80081, 65.60839], - [-22.80138, 65.60866], - [-22.80387, 65.6086], - [-22.80364, 65.60809], - [-22.80509, 65.60744], - [-22.80473, 65.60709], - [-22.80593, 65.60738], - [-22.80584, 65.60789], - [-22.80482, 65.60793], - [-22.8049, 65.60991], - [-22.80366, 65.60988], - [-22.80296, 65.61037], - [-22.80613, 65.60994], - [-22.80504, 65.61094], - [-22.806307, 65.61134], - [-22.81275, 65.61115], - [-22.81139, 65.61188], - [-22.81514, 65.61173], - [-22.814912, 65.612571], - [-22.81621, 65.61278], - [-22.81664, 65.61203], - [-22.82336, 65.61067], - [-22.82285, 65.61134], - [-22.82362, 65.61162], - [-22.82448, 65.61147], - [-22.82396, 65.61214], - [-22.8269, 65.6118], - [-22.82698, 65.61128], - [-22.83011, 65.61112], - [-22.8299, 65.61239], - [-22.83179, 65.61219], - [-22.83171, 65.6127], - [-22.82982, 65.6129], - [-22.82943, 65.6134], - [-22.83155, 65.61372], - [-22.82941, 65.61545], - [-22.83192, 65.61526], - [-22.83114, 65.61627], - [-22.830426, 65.616204], - [-22.831477, 65.617488], - [-22.832529, 65.61786], - [-22.83394, 65.61814], - [-22.835533, 65.621111], - [-22.836069, 65.624087], - [-22.836906, 65.625114], - [-22.837442, 65.625769], - [-22.838816, 65.626699], - [-22.839567, 65.627027], - [-22.83991, 65.62727], - [-22.84199, 65.62784], - [-22.843944, 65.629745], - [-22.848174, 65.630174], - [-22.85096, 65.62987], - [-22.8508, 65.62705], - [-22.850424, 65.626575], - [-22.85003, 65.62601], - [-22.849673, 65.625619], - [-22.849695, 65.624999], - [-22.84834, 65.62493], - [-22.84754, 65.62414], - [-22.84951, 65.61958], - [-22.84803, 65.61724], - [-22.84854, 65.61598], - [-22.8473, 65.61594], - [-22.84782, 65.61467], - [-22.84666, 65.61413], - [-22.84444, 65.60869], - [-22.84353, 65.60277], - [-22.84211, 65.60196], - [-22.84239, 65.60018], - [-22.84054, 65.60013], - [-22.84066, 65.59937], - [-22.84186, 65.59966], - [-22.84198, 65.59889], - [-22.84017, 65.59858], - [-22.84188, 65.59761], - [-22.8422, 65.59557], - [-22.84068, 65.59348], - [-22.84549, 65.59245], - [-22.84867, 65.5919], - [-22.84883, 65.59088], - [-22.85067, 65.59093], - [-22.856013, 65.588367], - [-22.85774, 65.58549], - [-22.85932, 65.58528], - [-22.8597, 65.58477], - [-22.86094, 65.58481], - [-22.86103, 65.5843], - [-22.85983, 65.58401], - [-22.85909, 65.58476], - [-22.85786, 65.58472], - [-22.85802, 65.5837], - [-22.86236, 65.58369], - [-22.86308, 65.58307], - [-22.86433, 65.58298], - [-22.86675, 65.58138], - [-22.8666, 65.58035], - [-22.86784, 65.58039], - [-22.86935, 65.57863], - [-22.8712, 65.57868], - [-22.87128, 65.57817], - [-22.87684, 65.57628], - [-22.8791, 65.57378], - [-22.88387, 65.57288], - [-22.88354, 65.57108], - [-22.88989, 65.5701], - [-22.89157, 65.56925], - [-22.89177, 65.56797], - [-22.8941, 65.56687], - [-22.89587, 65.56744], - [-22.8984, 65.56713], - [-22.8979, 65.56634], - [-22.9016, 65.56643], - [-22.9013, 65.56439], - [-22.903907, 65.563323], - [-22.908273, 65.562874], - [-22.908574, 65.563101], - [-22.908777, 65.563775], - [-22.909754, 65.564352], - [-22.909539, 65.565537], - [-22.911479, 65.566857], - [-22.913024, 65.568371], - [-22.912918, 65.569692], - [-22.913252, 65.570284], - [-22.913391, 65.570836], - [-22.913477, 65.571239], - [-22.913015, 65.571807], - [-22.914249, 65.572828], - [-22.913906, 65.573657], - [-22.912747, 65.574434], - [-22.910258, 65.577828], - [-22.910408, 65.578409], - [-22.912608, 65.579695], - [-22.914281, 65.580764], - [-22.913605, 65.58138], - [-22.913444, 65.581882], - [-22.913949, 65.582755], - [-22.914013, 65.584232], - [-22.914217, 65.585678], - [-22.914056, 65.586387], - [-22.914238, 65.586871], - [-22.916073, 65.589048], - [-22.918197, 65.591615], - [-22.92004, 65.59281], - [-22.920719, 65.593765], - [-22.92195, 65.59439], - [-22.924892, 65.596625], - [-22.925461, 65.596762], - [-22.927531, 65.596598], - [-22.927617, 65.597121], - [-22.927446, 65.597387], - [-22.927435, 65.597737], - [-22.927961, 65.597852], - [-22.930375, 65.597431], - [-22.930396, 65.597817], - [-22.92937, 65.59844], - [-22.92847, 65.60021], - [-22.928508, 65.60072], - [-22.929248, 65.602639], - [-22.930117, 65.602759], - [-22.932381, 65.602284], - [-22.932831, 65.602378], - [-22.931587, 65.603104], - [-22.932016, 65.604132], - [-22.935203, 65.605737], - [-22.93527, 65.60628], - [-22.934645, 65.608479], - [-22.93483, 65.60909], - [-22.934655, 65.609467], - [-22.934702, 65.609955], - [-22.934737, 65.610655], - [-22.934559, 65.611129], - [-22.934424, 65.61149], - [-22.934688, 65.613202], - [-22.93575, 65.614562], - [-22.936715, 65.615426], - [-22.937756, 65.6157], - [-22.93885, 65.615771], - [-22.939998, 65.615784], - [-22.941275, 65.615652], - [-22.942552, 65.615186], - [-22.942859, 65.614918], - [-22.943281, 65.614549], - [-22.94481, 65.61063], - [-22.94701, 65.61044], - [-22.94896, 65.60588], - [-22.95097, 65.60491], - [-22.95423, 65.59987], - [-22.9558, 65.59966], - [-22.9574, 65.5974], - [-22.95617, 65.59736], - [-22.95706, 65.59559], - [-22.95155, 65.59519], - [-22.95101, 65.59466], - [-22.95416, 65.59436], - [-22.95526, 65.59324], - [-22.95472, 65.59271], - [-22.9564, 65.59186], - [-22.95857, 65.59179], - [-22.95839, 65.59102], - [-22.95962, 65.59104], - [-22.9597, 65.59054], - [-22.9609, 65.59083], - [-22.9618, 65.58701], - [-22.96046, 65.5857], - [-22.95803, 65.58536], - [-22.95873, 65.58488], - [-22.95318, 65.58473], - [-22.95357, 65.58423], - [-22.96148, 65.58111], - [-22.96362, 65.57528], - [-22.96347, 65.57425], - [-22.96224, 65.57422], - [-22.96261, 65.56987], - [-22.96299, 65.56937], - [-22.96118, 65.56907], - [-22.96161, 65.56831], - [-22.96419, 65.56761], - [-22.96528, 65.56661], - [-22.96653, 65.56652], - [-22.96724, 65.5659], - [-22.96847, 65.56593], - [-22.96859, 65.56517], - [-22.96982, 65.5652], - [-22.97014, 65.56316], - [-22.96834, 65.56285], - [-22.96841, 65.56234], - [-22.96999, 65.56213], - [-22.96922, 65.56108], - [-22.97048, 65.56099], - [-22.97628, 65.55743], - [-22.97502, 65.5556], - [-22.97321, 65.5553], - [-22.97333, 65.55453], - [-22.97955, 65.55431], - [-22.98095, 65.5532], - [-22.98253, 65.55299], - [-22.98338, 65.55147], - [-22.987755, 65.548235], - [-22.988132, 65.547845], - [-22.988875, 65.547242], - [-22.989518, 65.54704], - [-22.990755, 65.546858], - [-22.992221, 65.546684], - [-22.992997, 65.546477], - [-22.993377, 65.546269], - [-22.99355, 65.546009], - [-22.993445, 65.545891], - [-22.993163, 65.545802], - [-22.992831, 65.545769], - [-22.992647, 65.545574], - [-22.992728, 65.545261], - [-22.993163, 65.545046], - [-22.994085, 65.544716], - [-22.995189, 65.544393], - [-22.995895, 65.544252], - [-22.996607, 65.544028], - [-22.996868, 65.543946], - [-22.997532, 65.543737], - [-22.998235, 65.543522], - [-22.99895, 65.543138], - [-22.999554, 65.542642], - [-22.99973, 65.542558], - [-22.999746, 65.54233], - [-22.99969, 65.542105], - [-22.999739, 65.541925], - [-23.000126, 65.541818], - [-23.000478, 65.54165], - [-23.000984, 65.541484], - [-23.001277, 65.541591], - [-23.001613, 65.541791], - [-23.001604, 65.542037], - [-23.001382, 65.542267], - [-23.000828, 65.542389], - [-23.000351, 65.54251], - [-23.00059, 65.542721], - [-23.00094, 65.542842], - [-23.001448, 65.542852], - [-23.00355, 65.542455], - [-23.004307, 65.542252], - [-23.004842, 65.542017], - [-23.005204, 65.542033], - [-23.005695, 65.542239], - [-23.005996, 65.542578], - [-23.006337, 65.542682], - [-23.006588, 65.542691], - [-23.007133, 65.542709], - [-23.008092, 65.542694], - [-23.008799, 65.542582], - [-23.009525, 65.542373], - [-23.009876, 65.542267], - [-23.010301, 65.542139], - [-23.011172, 65.54191], - [-23.012094, 65.541798], - [-23.013119, 65.541823], - [-23.013958, 65.541775], - [-23.014958, 65.541561], - [-23.016507, 65.541189], - [-23.01748, 65.54072], - [-23.03006, 65.53925], - [-23.03937, 65.53899], - [-23.043766, 65.537844], - [-23.054036, 65.539394], - [-23.055126, 65.540314], - [-23.057626, 65.540124], - [-23.056856, 65.541124], - [-23.056246, 65.541114], - [-23.056316, 65.540604], - [-23.055706, 65.540584], - [-23.054476, 65.542604], - [-23.059166, 65.544264], - [-23.065436, 65.545704], - [-23.065516, 65.547244], - [-23.069996, 65.548254], - [-23.081096, 65.548414], - [-23.082155, 65.548532], - [-23.082926, 65.548594], - [-23.085366, 65.548784], - [-23.086176, 65.547524], - [-23.087406, 65.547554], - [-23.088116, 65.546934], - [-23.106456, 65.548304], - [-23.106376, 65.548814], - [-23.111246, 65.549324], - [-23.124084, 65.549811], - [-23.1308, 65.549003], - [-23.138096, 65.549411], - [-23.139834, 65.550246], - [-23.140971, 65.552297], - [-23.140992, 65.553372], - [-23.141293, 65.553887], - [-23.141271, 65.554935], - [-23.140434, 65.555832], - [-23.139877, 65.556542], - [-23.140563, 65.558486], - [-23.140949, 65.560404], - [-23.14191, 65.56404], - [-23.14213, 65.564212], - [-23.142816, 65.564754], - [-23.143245, 65.565073], - [-23.143417, 65.565553], - [-23.143803, 65.566103], - [-23.144018, 65.567204], - [-23.14385, 65.56767], - [-23.143803, 65.568295], - [-23.14376, 65.568535], - [-23.143567, 65.568881], - [-23.14365, 65.56908], - [-23.143782, 65.569431], - [-23.143331, 65.569928], - [-23.14285, 65.57021], - [-23.14317, 65.57227], - [-23.14541, 65.57386], - [-23.14537, 65.57411], - [-23.14348, 65.57432], - [-23.14302, 65.57533], - [-23.14383, 65.57612], - [-23.138031, 65.577337], - [-23.1371, 65.57774], - [-23.132752, 65.580621], - [-23.13116, 65.581102], - [-23.13318, 65.58123], - [-23.13302, 65.58225], - [-23.13114, 65.58245], - [-23.13006, 65.58346], - [-23.13093, 65.58386], - [-23.13535, 65.58332], - [-23.1353, 65.58359], - [-23.1328, 65.58378], - [-23.132751, 65.58448], - [-23.134499, 65.58508], - [-23.134906, 65.585688], - [-23.135233, 65.585724], - [-23.136627, 65.584818], - [-23.139151, 65.584003], - [-23.13881, 65.58496], - [-23.135389, 65.58655], - [-23.136029, 65.58714], - [-23.137679, 65.587706], - [-23.138638, 65.587905], - [-23.13961, 65.58793], - [-23.140246, 65.587718], - [-23.141263, 65.587739], - [-23.14221, 65.58709], - [-23.14344, 65.58711], - [-23.15178, 65.58093], - [-23.153481, 65.580105], - [-23.15616, 65.57848], - [-23.16042, 65.57693], - [-23.164219, 65.576014], - [-23.164734, 65.57542], - [-23.166837, 65.575127], - [-23.168026, 65.57563], - [-23.170652, 65.575633], - [-23.170894, 65.575515], - [-23.170817, 65.575474], - [-23.170747, 65.57534], - [-23.170835, 65.575225], - [-23.171073, 65.575103], - [-23.171603, 65.575007], - [-23.172003, 65.574922], - [-23.1722, 65.574839], - [-23.172342, 65.574733], - [-23.172371, 65.574459], - [-23.1723, 65.574196], - [-23.172347, 65.574055], - [-23.172467, 65.573868], - [-23.172707, 65.57375], - [-23.172845, 65.573663], - [-23.172796, 65.573464], - [-23.172557, 65.573018], - [-23.172344, 65.572687], - [-23.172169, 65.572554], - [-23.171668, 65.572473], - [-23.171478, 65.572445], - [-23.171757, 65.572371], - [-23.17251, 65.572233], - [-23.173548, 65.572036], - [-23.174642, 65.571693], - [-23.1754, 65.571416], - [-23.175614, 65.57116], - [-23.175669, 65.570957], - [-23.175511, 65.570841], - [-23.175628, 65.570708], - [-23.17615, 65.570566], - [-23.17613, 65.5626], - [-23.17809, 65.56188], - [-23.18978, 65.55808], - [-23.1904, 65.55809], - [-23.19289, 65.55585], - [-23.19176, 65.55301], - [-23.19399, 65.55255], - [-23.19613, 65.55055], - [-23.19836, 65.5501], - [-23.19817, 65.54933], - [-23.20093, 65.54735], - [-23.2009, 65.546831], - [-23.20084, 65.54581], - [-23.19844, 65.54536], - [-23.19719, 65.54546], - [-23.19707, 65.54418], - [-23.19571, 65.54286], - [-23.19448, 65.54283], - [-23.19582, 65.5421], - [-23.19401, 65.54179], - [-23.19378, 65.54128], - [-23.19536, 65.54106], - [-23.19677, 65.53982], - [-23.19802, 65.53972], - [-23.19916, 65.53894], - [-23.198695, 65.53848], - [-23.19827, 65.53806], - [-23.19526, 65.53747], - [-23.19503, 65.53695], - [-23.19568, 65.536411], - [-23.195963, 65.536316], - [-23.196216, 65.536282], - [-23.19651, 65.536155], - [-23.19675, 65.536028], - [-23.196853, 65.535973], - [-23.196911, 65.535909], - [-23.196707, 65.53584], - [-23.196513, 65.53582], - [-23.196296, 65.535809], - [-23.196341, 65.535743], - [-23.19658, 65.53574], - [-23.19676, 65.535683], - [-23.196903, 65.535633], - [-23.197067, 65.535561], - [-23.197128, 65.535488], - [-23.197122, 65.535406], - [-23.197163, 65.535309], - [-23.197098, 65.535246], - [-23.197007, 65.535205], - [-23.196855, 65.535165], - [-23.196809, 65.535118], - [-23.197062, 65.535078], - [-23.197235, 65.535026], - [-23.197437, 65.534954], - [-23.197595, 65.534888], - [-23.1977, 65.534805], - [-23.197732, 65.534735], - [-23.197773, 65.53465], - [-23.197751, 65.53457], - [-23.197646, 65.534507], - [-23.197582, 65.534462], - [-23.197477, 65.534412], - [-23.197438, 65.534355], - [-23.197457, 65.534306], - [-23.197501, 65.534259], - [-23.197584, 65.534228], - [-23.197613, 65.534177], - [-23.197581, 65.534129], - [-23.197517, 65.53406], - [-23.197425, 65.534012], - [-23.197273, 65.533911], - [-23.197169, 65.5338], - [-23.19699, 65.53374], - [-23.196652, 65.533733], - [-23.19635, 65.533715], - [-23.196198, 65.533608], - [-23.196122, 65.533528], - [-23.19593, 65.533429], - [-23.195902, 65.53335], - [-23.196028, 65.533246], - [-23.195965, 65.53314], - [-23.19582, 65.533066], - [-23.195745, 65.533003], - [-23.195783, 65.532948], - [-23.195973, 65.532896], - [-23.196119, 65.532849], - [-23.196184, 65.532773], - [-23.196225, 65.532706], - [-23.196213, 65.532629], - [-23.196078, 65.532558], - [-23.19593, 65.532508], - [-23.195784, 65.532442], - [-23.195498, 65.532428], - [-23.195094, 65.532431], - [-23.194691, 65.532435], - [-23.194423, 65.532395], - [-23.194126, 65.532336], - [-23.193929, 65.532279], - [-23.193769, 65.532282], - [-23.193576, 65.532297], - [-23.193308, 65.532336], - [-23.192979, 65.532334], - [-23.192748, 65.532323], - [-23.192324, 65.532324], - [-23.192136, 65.532316], - [-23.192053, 65.532275], - [-23.192122, 65.532242], - [-23.192291, 65.532209], - [-23.192483, 65.532185], - [-23.192721, 65.532167], - [-23.192942, 65.532137], - [-23.193257, 65.532079], - [-23.193537, 65.532056], - [-23.193802, 65.532033], - [-23.194085, 65.531989], - [-23.19442, 65.531955], - [-23.194732, 65.531879], - [-23.195014, 65.531852], - [-23.195221, 65.531833], - [-23.195387, 65.531837], - [-23.195558, 65.531777], - [-23.195851, 65.531714], - [-23.196193, 65.531674], - [-23.19655, 65.5316], - [-23.196827, 65.53156], - [-23.19735, 65.531487], - [-23.197675, 65.531427], - [-23.197764, 65.531362], - [-23.197643, 65.531266], - [-23.197501, 65.531191], - [-23.197328, 65.531122], - [-23.197035, 65.531073], - [-23.196663, 65.531061], - [-23.196214, 65.531098], - [-23.195656, 65.531209], - [-23.195376, 65.531209], - [-23.195147, 65.531189], - [-23.195019, 65.53114], - [-23.19503, 65.531057], - [-23.195078, 65.530898], - [-23.194964, 65.530682], - [-23.194806, 65.530477], - [-23.194574, 65.530307], - [-23.194359, 65.530276], - [-23.194061, 65.530299], - [-23.193663, 65.530356], - [-23.193368, 65.530263], - [-23.19324, 65.530144], - [-23.193042, 65.530094], - [-23.192821, 65.530085], - [-23.192628, 65.530078], - [-23.19257, 65.529916], - [-23.193227, 65.529866], - [-23.194049, 65.529769], - [-23.194328, 65.529556], - [-23.19461, 65.529299], - [-23.1947, 65.529085], - [-23.194691, 65.528844], - [-23.194584, 65.528645], - [-23.194382, 65.52848], - [-23.194252, 65.52842], - [-23.194076, 65.528429], - [-23.193826, 65.528467], - [-23.19359, 65.52845], - [-23.193581, 65.528376], - [-23.193781, 65.528323], - [-23.194012, 65.528274], - [-23.19452, 65.528188], - [-23.194781, 65.528084], - [-23.195061, 65.527995], - [-23.195183, 65.527943], - [-23.19531, 65.527818], - [-23.195295, 65.527695], - [-23.195286, 65.527507], - [-23.19514, 65.527213], - [-23.194986, 65.527182], - [-23.194119, 65.527035], - [-23.193276, 65.526919], - [-23.192653, 65.526844], - [-23.192445, 65.526779], - [-23.191901, 65.526725], - [-23.191625, 65.526751], - [-23.191448, 65.526749], - [-23.191278, 65.526703], - [-23.191061, 65.526662], - [-23.190877, 65.526638], - [-23.190714, 65.526608], - [-23.190731, 65.526571], - [-23.190778, 65.526517], - [-23.190876, 65.526456], - [-23.190973, 65.526393], - [-23.190922, 65.526311], - [-23.190602, 65.526151], - [-23.190503, 65.526066], - [-23.190548, 65.526011], - [-23.190575, 65.525917], - [-23.190511, 65.525782], - [-23.1905, 65.525648], - [-23.190423, 65.525541], - [-23.190244, 65.525291], - [-23.190175, 65.525184], - [-23.190032, 65.525127], - [-23.189996, 65.525065], - [-23.189991, 65.525014], - [-23.189857, 65.524878], - [-23.189753, 65.524778], - [-23.189538, 65.524691], - [-23.189197, 65.524521], - [-23.188597, 65.524182], - [-23.187665, 65.523655], - [-23.186486, 65.5231], - [-23.17973, 65.51916], - [-23.18433, 65.50877], - [-23.18927, 65.50454], - [-23.19405, 65.500761], - [-23.199389, 65.496767], - [-23.205448, 65.493033], - [-23.210079, 65.4917], - [-23.211137, 65.490503], - [-23.210926, 65.489549], - [-23.211314, 65.489381], - [-23.212078, 65.489247], - [-23.21315, 65.489221], - [-23.213903, 65.488987], - [-23.214463, 65.488613], - [-23.215056, 65.488544], - [-23.21658, 65.488252], - [-23.21792, 65.48772], - [-23.218511, 65.487096], - [-23.219557, 65.486829], - [-23.220786, 65.486778], - [-23.222113, 65.486933], - [-23.223764, 65.486783], - [-23.23, 65.48521], - [-23.233815, 65.483942], - [-23.238155, 65.483828], - [-23.240293, 65.483614], - [-23.241021, 65.483901], - [-23.243296, 65.484025], - [-23.244452, 65.484317], - [-23.245921, 65.484387], - [-23.248085, 65.484236], - [-23.257539, 65.485042], - [-23.263089, 65.48605], - [-23.27007, 65.487318], - [-23.272325, 65.487491], - [-23.312291, 65.490202], - [-23.313143, 65.490123], - [-23.314865, 65.489645], - [-23.317063, 65.488878], - [-23.317187, 65.489105], - [-23.317868, 65.489328], - [-23.31877, 65.48957], - [-23.324573, 65.49085], - [-23.33879, 65.49184], - [-23.33875, 65.4921], - [-23.33753, 65.49207], - [-23.34049, 65.4929], - [-23.34056, 65.4924], - [-23.34179, 65.49243], - [-23.34125, 65.4919], - [-23.35771, 65.49319], - [-23.35858, 65.4936], - [-23.3582, 65.49411], - [-23.36068, 65.49404], - [-23.36738, 65.49689], - [-23.36634, 65.49993], - [-23.36793, 65.50176], - [-23.36826, 65.50382], - [-23.36973, 65.50437], - [-23.3715, 65.50492], - [-23.37257, 65.5061], - [-23.3731, 65.50675], - [-23.37486, 65.50731], - [-23.37364, 65.50728], - [-23.3748, 65.50782], - [-23.37554, 65.50912], - [-23.37754, 65.51032], - [-23.37841, 65.51072], - [-23.379783, 65.510934], - [-23.380463, 65.5108], - [-23.381316, 65.510769], - [-23.382221, 65.510584], - [-23.382992, 65.51044], - [-23.383689, 65.510285], - [-23.384059, 65.510375], - [-23.384275, 65.510485], - [-23.384781, 65.510497], - [-23.385195, 65.510485], - [-23.385502, 65.510558], - [-23.385339, 65.51074], - [-23.385115, 65.510854], - [-23.38441, 65.510774], - [-23.383268, 65.510856], - [-23.383134, 65.510986], - [-23.383042, 65.511127], - [-23.382972, 65.5113], - [-23.382911, 65.511468], - [-23.382763, 65.511599], - [-23.383, 65.511716], - [-23.383417, 65.511728], - [-23.383622, 65.512008], - [-23.384032, 65.512146], - [-23.384744, 65.512239], - [-23.385675, 65.512247], - [-23.386453, 65.512073], - [-23.386886, 65.512081], - [-23.387547, 65.512083], - [-23.387663, 65.512291], - [-23.387729, 65.512549], - [-23.387966, 65.512742], - [-23.387747, 65.513101], - [-23.387399, 65.513202], - [-23.387867, 65.513444], - [-23.388424, 65.513534], - [-23.388433, 65.513741], - [-23.388209, 65.513997], - [-23.38809, 65.51428], - [-23.388735, 65.514634], - [-23.389239, 65.514738], - [-23.389506, 65.514817], - [-23.390147, 65.514797], - [-23.390463, 65.514904], - [-23.390501, 65.515093], - [-23.389918, 65.515314], - [-23.389339, 65.515534], - [-23.389088, 65.515803], - [-23.38903, 65.515978], - [-23.389249, 65.51616], - [-23.389495, 65.51639], - [-23.389693, 65.516646], - [-23.390015, 65.516811], - [-23.390435, 65.51684], - [-23.390765, 65.5169], - [-23.39102, 65.517064], - [-23.390996, 65.517227], - [-23.390418, 65.517295], - [-23.389978, 65.517352], - [-23.390071, 65.517678], - [-23.39036, 65.517949], - [-23.390315, 65.518188], - [-23.390882, 65.518325], - [-23.391432, 65.518339], - [-23.391989, 65.518397], - [-23.392112, 65.51855], - [-23.392102, 65.518766], - [-23.392432, 65.519067], - [-23.392767, 65.519326], - [-23.393508, 65.519449], - [-23.394539, 65.519536], - [-23.395108, 65.519544], - [-23.395561, 65.519512], - [-23.396161, 65.519504], - [-23.396802, 65.51956], - [-23.397479, 65.519683], - [-23.398163, 65.519618], - [-23.399041, 65.51959], - [-23.400823, 65.519591], - [-23.40182, 65.519624], - [-23.402359, 65.519712], - [-23.402497, 65.519761], - [-23.402821, 65.519753], - [-23.403173, 65.51978], - [-23.40347, 65.519809], - [-23.403795, 65.519802], - [-23.404228, 65.51973], - [-23.404644, 65.519633], - [-23.404907, 65.519549], - [-23.404994, 65.519481], - [-23.405134, 65.519413], - [-23.405312, 65.519417], - [-23.405516, 65.519426], - [-23.405728, 65.519494], - [-23.405881, 65.519569], - [-23.40599, 65.519649], - [-23.406097, 65.519726], - [-23.406385, 65.519783], - [-23.406838, 65.519868], - [-23.407294, 65.519886], - [-23.407767, 65.519845], - [-23.40803, 65.519805], - [-23.408258, 65.519725], - [-23.40915, 65.519621], - [-23.41002, 65.519534], - [-23.410576, 65.519436], - [-23.411526, 65.519241], - [-23.411751, 65.519194], - [-23.412372, 65.519065], - [-23.411984, 65.518966], - [-23.411709, 65.518872], - [-23.411609, 65.518705], - [-23.41161, 65.518587], - [-23.411812, 65.51848], - [-23.412316, 65.518383], - [-23.412444, 65.518307], - [-23.412176, 65.518299], - [-23.411782, 65.518325], - [-23.41135, 65.518245], - [-23.410951, 65.518297], - [-23.410556, 65.518232], - [-23.410006, 65.518157], - [-23.409824, 65.518085], - [-23.409726, 65.517987], - [-23.409975, 65.517897], - [-23.410443, 65.517778], - [-23.41077, 65.51764], - [-23.411026, 65.517576], - [-23.41119, 65.51756], - [-23.411458, 65.517585], - [-23.411754, 65.517463], - [-23.412099, 65.517383], - [-23.412369, 65.517292], - [-23.412411, 65.517178], - [-23.412327, 65.517061], - [-23.412178, 65.516981], - [-23.411937, 65.516877], - [-23.411642, 65.516826], - [-23.411387, 65.516696], - [-23.411117, 65.516608], - [-23.410608, 65.516571], - [-23.410042, 65.516702], - [-23.409233, 65.516832], - [-23.408653, 65.516866], - [-23.407653, 65.51695], - [-23.408669, 65.516725], - [-23.409607, 65.516613], - [-23.41031, 65.516449], - [-23.411914, 65.516188], - [-23.412358, 65.515898], - [-23.41478, 65.51312], - [-23.42026, 65.51146], - [-23.42817, 65.50998], - [-23.4301, 65.50939], - [-23.42977, 65.50733], - [-23.42566, 65.50583], - [-23.4073, 65.50475], - [-23.40205, 65.50258], - [-23.39911, 65.50148], - [-23.3815, 65.49953], - [-23.38168, 65.49825], - [-23.38086, 65.49746], - [-23.38449, 65.49576], - [-23.41531, 65.49585], - [-23.42651, 65.4951], - [-23.43398, 65.4945], - [-23.44132, 65.49275], - [-23.44521, 65.4913], - [-23.44685, 65.49057], - [-23.44822, 65.48959], - [-23.45103, 65.48709], - [-23.45516, 65.48616], - [-23.45557, 65.48541], - [-23.45741, 65.48545], - [-23.45779, 65.48495], - [-23.46385, 65.48342], - [-23.47663, 65.48231], - [-23.47713, 65.48249], - [-23.47848, 65.48236], - [-23.47897, 65.48254], - [-23.490692, 65.482033], - [-23.50121, 65.48058], - [-23.50128, 65.48007], - [-23.50602, 65.47915], - [-23.50639, 65.47865], - [-23.50955, 65.47808], - [-23.52153, 65.47605], - [-23.53088, 65.47525], - [-23.53403, 65.47468], - [-23.535099, 65.474348], - [-23.543709, 65.473856], - [-23.551885, 65.474231], - [-23.55379, 65.47436], - [-23.557113, 65.474169], - [-23.561773, 65.473668], - [-23.5726, 65.47172], - [-23.57276, 65.4707], - [-23.57398, 65.47072], - [-23.57677, 65.46823], - [-23.58609, 65.46754], - [-23.61486, 65.46895], - [-23.61613, 65.4686], - [-23.61607, 65.46911], - [-23.61668, 65.46912], - [-23.61675, 65.46861], - [-23.61861, 65.4684], - [-23.61856, 65.46891], - [-23.62915, 65.46799], - [-23.63299, 65.4668], - [-23.63734, 65.46651], - [-23.63731, 65.46677], - [-23.63608, 65.46674], - [-23.63602, 65.46725], - [-23.63417, 65.46721], - [-23.63471, 65.46787], - [-23.63592, 65.46802], - [-23.63524, 65.46851], - [-23.63674, 65.4688], - [-23.6363, 65.46982], - [-23.63751, 65.46997], - [-23.63805, 65.47062], - [-23.63901, 65.47039], - [-23.63943, 65.46937], - [-23.64193, 65.46918], - [-23.64249, 65.46714], - [-23.64391, 65.46649], - [-23.64229, 65.46637], - [-23.64222, 65.46688], - [-23.64161, 65.46686], - [-23.64118, 65.46532], - [-23.64675, 65.46519], - [-23.64551, 65.46285], - [-23.64748, 65.46187], - [-23.64807, 65.45728], - [-23.6472, 65.45687], - [-23.6476, 65.45624], - [-23.64916, 65.45602], - [-23.64956, 65.45526], - [-23.65567, 65.45322], - [-23.6569, 65.45325], - [-23.66008, 65.45242], - [-23.65954, 65.4519], - [-23.66268, 65.45133], - [-23.669135, 65.450028], - [-23.670508, 65.449406], - [-23.674537, 65.448438], - [-23.67856, 65.44746], - [-23.67979, 65.44747], - [-23.67988, 65.44672], - [-23.67862, 65.44694], - [-23.67838, 65.44643], - [-23.67943, 65.44543], - [-23.68127, 65.44547], - [-23.6813, 65.44521], - [-23.68008, 65.44518], - [-23.68074, 65.44481], - [-23.68258, 65.44485], - [-23.68476, 65.44222], - [-23.68353, 65.44219], - [-23.68357, 65.44193], - [-23.68513, 65.44171], - [-23.68495, 65.44068], - [-23.68373, 65.44066], - [-23.6826, 65.43986], - [-23.68444, 65.4399], - [-23.68439, 65.43786], - [-23.68596, 65.43763], - [-23.68697, 65.43689], - [-23.68677, 65.43613], - [-23.68799, 65.43614], - [-23.68876, 65.43488], - [-23.68518, 65.43403], - [-23.68559, 65.43327], - [-23.68715, 65.43305], - [-23.68768, 65.43127], - [-23.69057, 65.43031], - [-23.69169, 65.4288], - [-23.69451, 65.42835], - [-23.6958, 65.42787], - [-23.69724, 65.42611], - [-23.69975, 65.42579], - [-23.70333, 65.42419], - [-23.70497, 65.42346], - [-23.70625, 65.42297], - [-23.70687, 65.42299], - [-23.70757, 65.42224], - [-23.70635, 65.42221], - [-23.70782, 65.42032], - [-23.71025, 65.4205], - [-23.71001, 65.41998], - [-23.71157, 65.41976], - [-23.71173, 65.42019], - [-23.71274, 65.4203], - [-23.71344, 65.41955], - [-23.71407, 65.41943], - [-23.71838, 65.4194], - [-23.72093, 65.41869], - [-23.72348, 65.41797], - [-23.72541, 65.41725], - [-23.72673, 65.41651], - [-23.72747, 65.4155], - [-23.72868, 65.41565], - [-23.72996, 65.41529], - [-23.72973, 65.41708], - [-23.73278, 65.41741], - [-23.7327, 65.41791], - [-23.73332, 65.41793], - [-23.73338, 65.41742], - [-23.73704, 65.41762], - [-23.73877, 65.41856], - [-23.7389, 65.41754], - [-23.74133, 65.41772], - [-23.7444, 65.41778], - [-23.74814, 65.41735], - [-23.74995, 65.41752], - [-23.75012, 65.41624], - [-23.75448, 65.41583], - [-23.75883, 65.41541], - [-23.76747, 65.41508], - [-23.76741, 65.41558], - [-23.7742, 65.41535], - [-23.77549, 65.41487], - [-23.77857, 65.41481], - [-23.77847, 65.41557], - [-23.78152, 65.41576], - [-23.79129, 65.4138], - [-23.79166, 65.41329], - [-23.79353, 65.41308], - [-23.79285, 65.41357], - [-23.79654, 65.41352], - [-23.79724, 65.4129], - [-23.79846, 65.41292], - [-23.7984, 65.41344], - [-23.80329, 65.41367], - [-23.80887, 65.41327], - [-23.80956, 65.41265], - [-23.81017, 65.41266], - [-23.81008, 65.41343], - [-23.81634, 65.41241], - [-23.82246, 65.41254], - [-23.83191, 65.41069], - [-23.83807, 65.41056], - [-23.84187, 65.40961], - [-23.86105, 65.40848], - [-23.87206, 65.40896], - [-23.87704, 65.40843], - [-23.884637, 65.408635], - [-23.892022, 65.40949], - [-23.900977, 65.410232], - [-23.905296, 65.409971], - [-23.910756, 65.411486], - [-23.915391, 65.412593], - [-23.916941, 65.412507], - [-23.921335, 65.4127], - [-23.924425, 65.414428], - [-23.93302, 65.414541], - [-23.936033, 65.414361], - [-23.939381, 65.414587], - [-23.94348, 65.415788], - [-23.945439, 65.415702], - [-23.947942, 65.414169], - [-23.951483, 65.414245], - [-23.954244, 65.414895], - [-23.954339, 65.415917], - [-23.958161, 65.417738], - [-23.961286, 65.418633], - [-23.963042, 65.419603], - [-23.964916, 65.421424], - [-23.965306, 65.42404], - [-23.965117, 65.424889], - [-23.963692, 65.426482], - [-23.961455, 65.428501], - [-23.96001, 65.42931], - [-23.959, 65.43006], - [-23.958267, 65.430876], - [-23.95889, 65.432432], - [-23.957866, 65.433138], - [-23.95813, 65.43491], - [-23.957705, 65.435662], - [-23.958602, 65.436765], - [-23.960019, 65.437754], - [-23.962846, 65.439815], - [-23.964682, 65.440997], - [-23.96539, 65.4412], - [-23.965772, 65.441496], - [-23.972167, 65.444148], - [-23.981564, 65.447821], - [-23.987585, 65.450274], - [-23.994403, 65.452624], - [-23.999801, 65.454234], - [-24.004194, 65.455545], - [-24.02131, 65.461503], - [-24.040237, 65.46687], - [-24.062565, 65.474781], - [-24.08135, 65.479582], - [-24.104336, 65.485256], - [-24.122687, 65.489462], - [-24.138232, 65.492954], - [-24.151345, 65.495521], - [-24.158813, 65.496931], - [-24.163158, 65.497585], - [-24.174941, 65.499462], - [-24.178716, 65.500105], - [-24.182767, 65.501147], - [-24.187842, 65.501368], - [-24.192538, 65.500946], - [-24.198879, 65.501144], - [-24.201201, 65.501172], - [-24.201862, 65.502191], - [-24.206555, 65.502679], - [-24.212483, 65.502926], - [-24.215944, 65.503265], - [-24.225524, 65.50373], - [-24.238789, 65.504748], - [-24.241428, 65.505054], - [-24.248714, 65.505052], - [-24.252473, 65.504612], - [-24.254179, 65.504426], - [-24.255758, 65.504115], - [-24.256396, 65.503536], - [-24.256416, 65.502557], - [-24.25703, 65.50178], - [-24.25901, 65.50054], - [-24.261739, 65.499305], - [-24.265355, 65.498437], - [-24.268792, 65.498535], - [-24.272671, 65.498003], - [-24.275723, 65.497814], - [-24.278798, 65.497698], - [-24.284319, 65.497602], - [-24.288277, 65.497871], - [-24.295621, 65.498357], - [-24.302574, 65.498404], - [-24.308639, 65.498505], - [-24.309963, 65.498403], - [-24.311532, 65.498268], - [-24.31322, 65.49795], - [-24.3143, 65.497882], - [-24.315538, 65.497752], - [-24.316532, 65.497771], - [-24.318176, 65.498403], - [-24.323648, 65.498646], - [-24.325994, 65.498501], - [-24.328859, 65.498193], - [-24.332703, 65.497835], - [-24.33421, 65.49753], - [-24.3361, 65.49705], - [-24.339619, 65.496305], - [-24.340491, 65.496616], - [-24.344221, 65.497387], - [-24.354062, 65.497725], - [-24.357524, 65.497807], - [-24.360106, 65.497875], - [-24.363968, 65.497917], - [-24.374079, 65.497891], - [-24.37825, 65.49779], - [-24.382377, 65.497531], - [-24.38677, 65.497661], - [-24.390852, 65.498193], - [-24.396471, 65.497597], - [-24.40443, 65.49785], - [-24.42066, 65.4957], - [-24.431542, 65.494527], - [-24.438103, 65.493382], - [-24.44191, 65.49273], - [-24.444879, 65.491474], - [-24.452432, 65.489622], - [-24.481958, 65.489337], - [-24.49195, 65.49127], - [-24.49555, 65.49235], - [-24.503778, 65.492918], - [-24.516319, 65.49649], - [-24.523949, 65.499169], - [-24.526293, 65.499735], - [-24.526794, 65.500118], - [-24.526947, 65.500372], - [-24.52711, 65.500425], - [-24.527259, 65.50051], - [-24.527396, 65.500532], - [-24.527517, 65.500662], - [-24.527577, 65.500729], - [-24.527972, 65.500868], - [-24.528306, 65.500978], - [-24.52877, 65.501124], - [-24.528993, 65.50121], - [-24.529439, 65.501388], - [-24.52968, 65.501512], - [-24.529783, 65.501729], - [-24.529937, 65.501922], - [-24.530126, 65.502075], - [-24.530366, 65.502188], - [-24.530775, 65.502127], - [-24.531027, 65.502135], - [-24.531221, 65.502242], - [-24.531355, 65.502312], - [-24.531534, 65.502448], - [-24.53174, 65.502527], - [-24.531748, 65.50263], - [-24.531697, 65.502705], - [-24.531508, 65.502829], - [-24.531319, 65.502954], - [-24.531225, 65.503071], - [-24.531053, 65.503292], - [-24.52869, 65.50671], - [-24.52112, 65.50851], - [-24.51616, 65.50881], - [-24.51365, 65.50928], - [-24.51358, 65.51005], - [-24.51235, 65.51003], - [-24.51028, 65.5123], - [-24.50026, 65.51392], - [-24.50021, 65.51443], - [-24.49088, 65.5153], - [-24.48361, 65.5203], - [-24.47984, 65.521], - [-24.47787, 65.52225], - [-24.476, 65.52248], - [-24.47216, 65.52395], - [-24.47336, 65.52422], - [-24.4695, 65.52595], - [-24.46514, 65.52639], - [-24.46444, 65.52714], - [-24.46257, 65.52737], - [-24.46008, 65.53065], - [-24.46138, 65.53323], - [-24.46262, 65.53325], - [-24.46339, 65.5348], - [-24.46241, 65.5353], - [-24.46365, 65.53532], - [-24.46222, 65.53734], - [-24.46099, 65.53731], - [-24.46091, 65.53809], - [-24.4597, 65.53781], - [-24.46022, 65.53884], - [-24.4565, 65.53904], - [-24.45642, 65.5398], - [-24.45456, 65.54003], - [-24.45322, 65.54103], - [-24.45199, 65.54101], - [-24.45194, 65.54152], - [-24.45006, 65.54174], - [-24.45063, 65.54226], - [-24.44982, 65.54208], - [-24.44126, 65.54339], - [-24.44123, 65.54364], - [-24.44365, 65.54419], - [-24.412, 65.54583], - [-24.40834, 65.54539], - [-24.40829, 65.5459], - [-24.4058, 65.54611], - [-24.40588, 65.54534], - [-24.40281, 65.54516], - [-24.40092, 65.54552], - [-24.399736, 65.545897], - [-24.396364, 65.546828], - [-24.39404, 65.547223], - [-24.389753, 65.547903], - [-24.384279, 65.54899], - [-24.378859, 65.55028], - [-24.374525, 65.551674], - [-24.371549, 65.55282], - [-24.369589, 65.553716], - [-24.367666, 65.554728], - [-24.36386, 65.558271], - [-24.36159, 65.56198], - [-24.359333, 65.565001], - [-24.35929, 65.56851], - [-24.35911, 65.57029], - [-24.360687, 65.571408], - [-24.361666, 65.572066], - [-24.3641, 65.5738], - [-24.36598, 65.57664], - [-24.36676, 65.57819], - [-24.36767, 65.58128], - [-24.367868, 65.581913], - [-24.36813, 65.58282], - [-24.368114, 65.583308], - [-24.368201, 65.584024], - [-24.367268, 65.586139], - [-24.365085, 65.588056], - [-24.364733, 65.588634], - [-24.364768, 65.58971], - [-24.3643, 65.59018], - [-24.36391, 65.59094], - [-24.364543, 65.592462], - [-24.365692, 65.593829], - [-24.367776, 65.59539], - [-24.369664, 65.596856], - [-24.368379, 65.597905], - [-24.365526, 65.599442], - [-24.36456, 65.600298], - [-24.363636, 65.601136], - [-24.358208, 65.607099], - [-24.356039, 65.608326], - [-24.353935, 65.609352], - [-24.35195, 65.61026], - [-24.34727, 65.61163], - [-24.34657, 65.61239], - [-24.34466, 65.61286], - [-24.3434, 65.6131], - [-24.33887, 65.61508], - [-24.33758, 65.61555], - [-24.33503, 65.61628], - [-24.32993, 65.61772], - [-24.328, 65.61846], - [-24.324852, 65.620802], - [-24.323265, 65.62279], - [-24.32314, 65.62349], - [-24.32164, 65.62602], - [-24.320653, 65.627135], - [-24.32009, 65.62907], - [-24.321279, 65.631699], - [-24.322303, 65.632929], - [-24.3234, 65.63603], - [-24.32218, 65.63883], - [-24.323622, 65.639313], - [-24.322507, 65.640095], - [-24.31955, 65.64031], - [-24.31386, 65.64137], - [-24.30702, 65.64163], - [-24.30522, 65.64109], - [-24.304133, 65.640844], - [-24.29489, 65.63911], - [-24.29077, 65.63699], - [-24.28286, 65.63557], - [-24.2805, 65.6345], - [-24.27507, 65.63312], - [-24.27083, 65.63216], - [-24.27023, 65.63202], - [-24.26351, 65.63113], - [-24.25864, 65.63027], - [-24.25738, 65.6305], - [-24.25427, 65.63058], - [-24.25184, 65.63015], - [-24.24883, 65.62933], - [-24.24582, 65.62851], - [-24.24714, 65.62776], - [-24.2435, 65.62706], - [-24.23981, 65.62673], - [-24.23803, 65.62593], - [-24.22021, 65.62471], - [-24.21656, 65.62414], - [-24.21596, 65.62387], - [-24.21, 65.62171], - [-24.20818, 65.62142], - [-24.2064, 65.62062], - [-24.20283, 65.61928], - [-24.20172, 65.61811], - [-24.19929, 65.61768], - [-24.19867, 65.61767], - [-24.19746, 65.61739], - [-24.19009, 65.61687], - [-24.1865, 65.61578], - [-24.180375, 65.615149], - [-24.17859, 65.61448], - [-24.17498, 65.61352], - [-24.167926, 65.61271], - [-24.165396, 65.612206], - [-24.16404, 65.61165], - [-24.157997, 65.610634], - [-24.151975, 65.608751], - [-24.14848, 65.60675], - [-24.14792, 65.60623], - [-24.145481, 65.605447], - [-24.14028, 65.6025], - [-24.135724, 65.601695], - [-24.13164, 65.599654], - [-24.12953, 65.59897], - [-24.12782, 65.59766], - [-24.127279, 65.597292], - [-24.124919, 65.596222], - [-24.12428, 65.59606], - [-24.120472, 65.590907], - [-24.121542, 65.589274], - [-24.1221, 65.58783], - [-24.121795, 65.587001], - [-24.116207, 65.585723], - [-24.11433, 65.58538], - [-24.109294, 65.584788], - [-24.107242, 65.584562], - [-24.102721, 65.583884], - [-24.099675, 65.58343], - [-24.09569, 65.582693], - [-24.093315, 65.583272], - [-24.090981, 65.583323], - [-24.087042, 65.582912], - [-24.085175, 65.582215], - [-24.084708, 65.582022], - [-24.084484, 65.581804], - [-24.083774, 65.581242], - [-24.082008, 65.580302], - [-24.079389, 65.579446], - [-24.07671, 65.578841], - [-24.074152, 65.57843], - [-24.073583, 65.578187], - [-24.068407, 65.577003], - [-24.066945, 65.576609], - [-24.064976, 65.576013], - [-24.063941, 65.575316], - [-24.062317, 65.574326], - [-24.060875, 65.573528], - [-24.061403, 65.572244], - [-24.05984, 65.571379], - [-24.059773, 65.57136], - [-24.056978, 65.570573], - [-24.05308, 65.57001], - [-24.051781, 65.569557], - [-24.050551, 65.568857], - [-24.040711, 65.566608], - [-24.039076, 65.566052], - [-24.036633, 65.565265], - [-24.03212, 65.56332], - [-24.012862, 65.560568], - [-23.986684, 65.560961], - [-23.98047, 65.56115], - [-23.96952, 65.55965], - [-23.94418, 65.55966], - [-23.94055, 65.55894], - [-23.9394, 65.55841], - [-23.9363, 65.55579], - [-23.93739, 65.5544], - [-23.94415, 65.55466], - [-23.94787, 65.55192], - [-23.94724, 65.54935], - [-23.94484, 65.54879], - [-23.9382, 65.54226], - [-23.936654, 65.541264], - [-23.935154, 65.54052], - [-23.932965, 65.539859], - [-23.930806, 65.539302], - [-23.930281, 65.53904], - [-23.930022, 65.539058], - [-23.929836, 65.539016], - [-23.92954, 65.538904], - [-23.929037, 65.538595], - [-23.928457, 65.538239], - [-23.927819, 65.537921], - [-23.927161, 65.537718], - [-23.926337, 65.537569], - [-23.925937, 65.537549], - [-23.925591, 65.537509], - [-23.925257, 65.537375], - [-23.925039, 65.537258], - [-23.925001, 65.536992], - [-23.924988, 65.536893], - [-23.924851, 65.536626], - [-23.924403, 65.536272], - [-23.924069, 65.535962], - [-23.923349, 65.535507], - [-23.922752, 65.535158], - [-23.92232, 65.534926], - [-23.921907, 65.53472], - [-23.921646, 65.534558], - [-23.921689, 65.534416], - [-23.921678, 65.534344], - [-23.921645, 65.534128], - [-23.921502, 65.533866], - [-23.92122, 65.533637], - [-23.92088, 65.533418], - [-23.920511, 65.533308], - [-23.920242, 65.533256], - [-23.919954, 65.532973], - [-23.918651, 65.532097], - [-23.916085, 65.530572], - [-23.91536, 65.530394], - [-23.914855, 65.53036], - [-23.914586, 65.530296], - [-23.914216, 65.53011], - [-23.913768, 65.529796], - [-23.913408, 65.529606], - [-23.9129, 65.529351], - [-23.912494, 65.529237], - [-23.912191, 65.529351], - [-23.911785, 65.529416], - [-23.911337, 65.529431], - [-23.910675, 65.529414], - [-23.910107, 65.529217], - [-23.909666, 65.529028], - [-23.909313, 65.52882], - [-23.909349, 65.528539], - [-23.909256, 65.528246], - [-23.908748, 65.527812], - [-23.908411, 65.527452], - [-23.907826, 65.527075], - [-23.907387, 65.526785], - [-23.907037, 65.526524], - [-23.906442, 65.526193], - [-23.90575, 65.52594], - [-23.905154, 65.525881], - [-23.904659, 65.525761], - [-23.904248, 65.525564], - [-23.903659, 65.525312], - [-23.902901, 65.525135], - [-23.902159, 65.525024], - [-23.901403, 65.524797], - [-23.900691, 65.524485], - [-23.900197, 65.524169], - [-23.899659, 65.523822], - [-23.899207, 65.523546], - [-23.898699, 65.523464], - [-23.897924, 65.523429], - [-23.897206, 65.523369], - [-23.89674, 65.523258], - [-23.896014, 65.522845], - [-23.895176, 65.522436], - [-23.894741, 65.52218], - [-23.894333, 65.522041], - [-23.893848, 65.521985], - [-23.893397, 65.521965], - [-23.892942, 65.521799], - [-23.892371, 65.521545], - [-23.890468, 65.521078], - [-23.87192, 65.51825], - [-23.8603, 65.51736], - [-23.859133, 65.517278], - [-23.857522, 65.51703], - [-23.85612, 65.51626], - [-23.846426, 65.51588], - [-23.840619, 65.516143], - [-23.83708, 65.517603], - [-23.83347, 65.52245], - [-23.83245, 65.5232], - [-23.8274, 65.52411], - [-23.82531, 65.52612], - [-23.81647, 65.52772], - [-23.81265, 65.52867], - [-23.808416, 65.529606], - [-23.803385, 65.530142], - [-23.80074, 65.53021], - [-23.798343, 65.530586], - [-23.793957, 65.530797], - [-23.788794, 65.531042], - [-23.786569, 65.533066], - [-23.786569, 65.534844], - [-23.788943, 65.536621], - [-23.791193, 65.537742], - [-23.795359, 65.538622], - [-23.7989, 65.538432], - [-23.802857, 65.537656], - [-23.809148, 65.536931], - [-23.815022, 65.535706], - [-23.817897, 65.533567], - [-23.822021, 65.53405], - [-23.825187, 65.533084], - [-23.829061, 65.533153], - [-23.830603, 65.533653], - [-23.832477, 65.533394], - [-23.834477, 65.533843], - [-23.836143, 65.534757], - [-23.83856, 65.534688], - [-23.840726, 65.535482], - [-23.841892, 65.536414], - [-23.844392, 65.537414], - [-23.847982, 65.537571], - [-23.855388, 65.537046], - [-23.866618, 65.538929], - [-23.875575, 65.541732], - [-23.883111, 65.543548], - [-23.884923, 65.544703], - [-23.887396, 65.546087], - [-23.888125, 65.547381], - [-23.889024, 65.549091], - [-23.891904, 65.551929], - [-23.89763, 65.554415], - [-23.901154, 65.556017], - [-23.90395, 65.556949], - [-23.906966, 65.558991], - [-23.909698, 65.560056], - [-23.910766, 65.56029], - [-23.913719, 65.562037], - [-23.918599, 65.563405], - [-23.918981, 65.5641], - [-23.919871, 65.564758], - [-23.923256, 65.565785], - [-23.927217, 65.567607], - [-23.936556, 65.571118], - [-23.939721, 65.572368], - [-23.941431, 65.573737], - [-23.944875, 65.575687], - [-23.950275, 65.578667], - [-23.953147, 65.579595], - [-23.955596, 65.580168], - [-23.958289, 65.580044], - [-23.960826, 65.579537], - [-23.96132, 65.580059], - [-23.961038, 65.580917], - [-23.962975, 65.581666], - [-23.963211, 65.581799], - [-23.963688, 65.581946], - [-23.964413, 65.582155], - [-23.964938, 65.582393], - [-23.965547, 65.582722], - [-23.965771, 65.582851], - [-23.965841, 65.582936], - [-23.966022, 65.58304], - [-23.966448, 65.583178], - [-23.967104, 65.5834], - [-23.967597, 65.583594], - [-23.967989, 65.583815], - [-23.968428, 65.584066], - [-23.968583, 65.584138], - [-23.970133, 65.585946], - [-23.970323, 65.586122], - [-23.97048, 65.5863], - [-23.970634, 65.586437], - [-23.970796, 65.58655], - [-23.971147, 65.586709], - [-23.971606, 65.586851], - [-23.972137, 65.587062], - [-23.972977, 65.587394], - [-23.973435, 65.58761], - [-23.973475, 65.587751], - [-23.973629, 65.587971], - [-23.974026, 65.588198], - [-23.974533, 65.588485], - [-23.974751, 65.588712], - [-23.975072, 65.588984], - [-23.975141, 65.589139], - [-23.975148, 65.589274], - [-23.975251, 65.589462], - [-23.975419, 65.589664], - [-23.975449, 65.589712], - [-23.975533, 65.589847], - [-23.976353, 65.590363], - [-23.977118, 65.591126], - [-23.97712, 65.591342], - [-23.978285, 65.591902], - [-23.979295, 65.592615], - [-23.98021, 65.593264], - [-23.980656, 65.5935], - [-23.980933, 65.593848], - [-23.981743, 65.594188], - [-23.982774, 65.594413], - [-23.983682, 65.594662], - [-23.984774, 65.59493], - [-23.986472, 65.595334], - [-23.988475, 65.595873], - [-23.989671, 65.596195], - [-23.990816, 65.59648], - [-23.9912, 65.596554], - [-23.991482, 65.596624], - [-23.99221, 65.596799], - [-23.992694, 65.596904], - [-23.99323, 65.596961], - [-23.993771, 65.596985], - [-23.994437, 65.597018], - [-23.995074, 65.59701], - [-23.995684, 65.596954], - [-23.997998, 65.596512], - [-23.998428, 65.596441], - [-23.999055, 65.596301], - [-23.999447, 65.596139], - [-23.99944, 65.596045], - [-23.999367, 65.595967], - [-23.999352, 65.595943], - [-23.999415, 65.59588], - [-23.999662, 65.595789], - [-23.999717, 65.595746], - [-24.000007, 65.59559], - [-24.00074, 65.59509], - [-24.001104, 65.594974], - [-24.001408, 65.5949], - [-24.001732, 65.594839], - [-24.001932, 65.594833], - [-24.002237, 65.594827], - [-24.002548, 65.594847], - [-24.002891, 65.594891], - [-24.003188, 65.594956], - [-24.003416, 65.595002], - [-24.003647, 65.595061], - [-24.003829, 65.595114], - [-24.003923, 65.595166], - [-24.004038, 65.595208], - [-24.004192, 65.595242], - [-24.004344, 65.595255], - [-24.004504, 65.595268], - [-24.004611, 65.59528], - [-24.004705, 65.595299], - [-24.004798, 65.59533], - [-24.004978, 65.595326], - [-24.005044, 65.595341], - [-24.005079, 65.595403], - [-24.005519, 65.596568], - [-24.005842, 65.597285], - [-24.004008, 65.59792], - [-24.002497, 65.598459], - [-24.00249, 65.59849], - [-24.002552, 65.598536], - [-24.002734, 65.598592], - [-24.002929, 65.59866], - [-24.003224, 65.598761], - [-24.003471, 65.598826], - [-24.003557, 65.598848], - [-24.003805, 65.598912], - [-24.004803, 65.599171], - [-24.004873, 65.599191], - [-24.005239, 65.599296], - [-24.005283, 65.599308], - [-24.006743, 65.59963], - [-24.006822, 65.599626], - [-24.006962, 65.599619], - [-24.007087, 65.59963], - [-24.007186, 65.599623], - [-24.007278, 65.599594], - [-24.007404, 65.599572], - [-24.007505, 65.59953], - [-24.007367, 65.599209], - [-24.007333, 65.599129], - [-24.007365, 65.599041], - [-24.007306, 65.598994], - [-24.00725, 65.598846], - [-24.007214, 65.598793], - [-24.007211, 65.598751], - [-24.007171, 65.598704], - [-24.007124, 65.598669], - [-24.007109, 65.598596], - [-24.007104, 65.598556], - [-24.007104, 65.598521], - [-24.007111, 65.598454], - [-24.007133, 65.598434], - [-24.007135, 65.598403], - [-24.007137, 65.598341], - [-24.007153, 65.598292], - [-24.00718, 65.598262], - [-24.007212, 65.598237], - [-24.00725, 65.598218], - [-24.007234, 65.598166], - [-24.006899, 65.597433], - [-24.006269, 65.595836], - [-24.006257, 65.59574], - [-24.006312, 65.595697], - [-24.006398, 65.595665], - [-24.00651, 65.595646], - [-24.007464, 65.596116], - [-24.007515, 65.59617], - [-24.007526, 65.596236], - [-24.007488, 65.596311], - [-24.007668, 65.596584], - [-24.007785, 65.596824], - [-24.007867, 65.597085], - [-24.007925, 65.597464], - [-24.007908, 65.597641], - [-24.00796, 65.597915], - [-24.00801, 65.598021], - [-24.008047, 65.598174], - [-24.008242, 65.598684], - [-24.008451, 65.599113], - [-24.008763, 65.599604], - [-24.008911, 65.599812], - [-24.009028, 65.600005], - [-24.009176, 65.600171], - [-24.009358, 65.600353], - [-24.00957, 65.600529], - [-24.009894, 65.600753], - [-24.010142, 65.600914], - [-24.010817, 65.601302], - [-24.011765, 65.601708], - [-24.013436, 65.602328], - [-24.013871, 65.602565], - [-24.014181, 65.602751], - [-24.014522, 65.60286], - [-24.01554, 65.603125], - [-24.01635, 65.603325], - [-24.016763, 65.603449], - [-24.018008, 65.603834], - [-24.018685, 65.604034], - [-24.019568, 65.60438], - [-24.020236, 65.604663], - [-24.020473, 65.604758], - [-24.020582, 65.60486], - [-24.020739, 65.604958], - [-24.02099, 65.605075], - [-24.021217, 65.605152], - [-24.021558, 65.60528], - [-24.0219, 65.605389], - [-24.02207, 65.605444], - [-24.022166, 65.605568], - [-24.022261, 65.605655], - [-24.022352, 65.605778], - [-24.022458, 65.605891], - [-24.022634, 65.605999], - [-24.022812, 65.606108], - [-24.023004, 65.606168], - [-24.02333, 65.606253], - [-24.0236, 65.606308], - [-24.024019, 65.60642], - [-24.02435, 65.606561], - [-24.024617, 65.606744], - [-24.024713, 65.606917], - [-24.024774, 65.607043], - [-24.024914, 65.607177], - [-24.025121, 65.607358], - [-24.025265, 65.607499], - [-24.025548, 65.607672], - [-24.025755, 65.607784], - [-24.025935, 65.607914], - [-24.026097, 65.608029], - [-24.02626, 65.608154], - [-24.026476, 65.608268], - [-24.026689, 65.60838], - [-24.026922, 65.6085], - [-24.027427, 65.608717], - [-24.028224, 65.608951], - [-24.028651, 65.609109], - [-24.029141, 65.609326], - [-24.029441, 65.609519], - [-24.03002, 65.609891], - [-24.030793, 65.610449], - [-24.031446, 65.610978], - [-24.031704, 65.611347], - [-24.031842, 65.61156], - [-24.032144, 65.611794], - [-24.032667, 65.612271], - [-24.03324, 65.612649], - [-24.034275, 65.613368], - [-24.034832, 65.613686], - [-24.035207, 65.613972], - [-24.035412, 65.61418], - [-24.035697, 65.614466], - [-24.03614, 65.614781], - [-24.036777, 65.615141], - [-24.037332, 65.615452], - [-24.037748, 65.61571], - [-24.03804, 65.615988], - [-24.038411, 65.61631], - [-24.038714, 65.616586], - [-24.03903, 65.61691], - [-24.039341, 65.617171], - [-24.039649, 65.617374], - [-24.040581, 65.618], - [-24.041322, 65.61835], - [-24.042107, 65.618712], - [-24.04246, 65.618959], - [-24.042752, 65.619235], - [-24.042943, 65.619371], - [-24.043387, 65.619583], - [-24.043895, 65.619846], - [-24.044246, 65.62007], - [-24.044624, 65.6204], - [-24.04491, 65.620636], - [-24.045172, 65.620875], - [-24.045283, 65.62105], - [-24.045803, 65.621562], - [-24.046092, 65.621812], - [-24.046257, 65.621991], - [-24.046457, 65.622257], - [-24.046876, 65.622525], - [-24.048437, 65.623307], - [-24.049968, 65.624061], - [-24.050639, 65.624332], - [-24.051301, 65.624551], - [-24.053088, 65.625174], - [-24.053926, 65.625613], - [-24.054934, 65.626373], - [-24.056029, 65.626959], - [-24.056755, 65.627328], - [-24.057782, 65.627754], - [-24.058902, 65.6281], - [-24.059269, 65.628409], - [-24.059881, 65.628916], - [-24.0617, 65.629844], - [-24.062864, 65.630341], - [-24.066241, 65.633268], - [-24.067478, 65.635014], - [-24.067781, 65.636469], - [-24.071372, 65.637912], - [-24.073633, 65.638868], - [-24.075355, 65.63984], - [-24.077952, 65.642787], - [-24.081147, 65.645109], - [-24.082424, 65.647009], - [-24.083553, 65.648255], - [-24.083576, 65.649343], - [-24.08136, 65.64982], - [-24.07855, 65.65072], - [-24.07349, 65.65152], - [-24.0648, 65.65161], - [-24.04832, 65.64937], - [-24.04649, 65.64908], - [-24.04466, 65.64879], - [-24.03487, 65.6477], - [-24.02494, 65.64776], - [-24.0182, 65.64712], - [-24.00651, 65.645583], - [-24.003643, 65.645653], - [-24.000167, 65.64507], - [-23.99676, 65.644802], - [-23.993898, 65.644767], - [-23.992293, 65.644883], - [-23.989802, 65.644544], - [-23.987486, 65.644556], - [-23.985473, 65.64466], - [-23.983155, 65.644654], - [-23.981365, 65.644473], - [-23.97895, 65.644388], - [-23.977771, 65.643944], - [-23.975982, 65.643684], - [-23.97414, 65.643563], - [-23.972836, 65.643447], - [-23.971515, 65.643382], - [-23.969232, 65.6433], - [-23.966186, 65.643001], - [-23.963174, 65.642897], - [-23.960613, 65.642943], - [-23.959144, 65.643056], - [-23.957943, 65.642956], - [-23.956627, 65.642636], - [-23.954987, 65.642484], - [-23.953284, 65.642438], - [-23.952234, 65.64224], - [-23.951396, 65.642223], - [-23.94998, 65.642021], - [-23.948419, 65.641967], - [-23.946875, 65.641759], - [-23.946057, 65.641718], - [-23.94338, 65.641583], - [-23.941202, 65.641803], - [-23.940281, 65.641799], - [-23.939295, 65.641585], - [-23.937846, 65.641441], - [-23.935935, 65.641334], - [-23.932549, 65.64102], - [-23.930113, 65.640601], - [-23.929505, 65.640138], - [-23.929993, 65.639693], - [-23.930486, 65.639458], - [-23.931032, 65.639072], - [-23.931281, 65.638641], - [-23.931316, 65.638271], - [-23.931261, 65.637684], - [-23.930992, 65.637286], - [-23.9298, 65.636658], - [-23.926419, 65.635905], - [-23.925342, 65.635488], - [-23.923653, 65.634974], - [-23.920287, 65.633834], - [-23.917618, 65.633332], - [-23.916106, 65.632858], - [-23.913585, 65.631777], - [-23.912091, 65.631163], - [-23.910241, 65.630935], - [-23.909656, 65.630806], - [-23.908923, 65.630316], - [-23.905418, 65.629031], - [-23.900699, 65.627826], - [-23.898713, 65.626946], - [-23.89688, 65.626138], - [-23.894515, 65.625766], - [-23.893633, 65.625705], - [-23.892452, 65.625752], - [-23.888406, 65.625208], - [-23.883193, 65.624173], - [-23.879647, 65.62363], - [-23.86795, 65.62324], - [-23.86514, 65.62088], - [-23.86396, 65.62035], - [-23.86344, 65.61957], - [-23.84937, 65.61812], - [-23.83894, 65.61727], - [-23.83842, 65.61649], - [-23.81942, 65.61481], - [-23.81748, 65.61042], - [-23.81625, 65.61039], - [-23.81569, 65.60987], - [-23.81458, 65.60882], - [-23.81162, 65.60774], - [-23.81113, 65.6067], - [-23.80937, 65.60589], - [-23.80819, 65.60536], - [-23.80644, 65.60456], - [-23.80468, 65.60375], - [-23.80293, 65.60295], - [-23.80061, 65.60162], - [-23.79821, 65.60106], - [-23.79465, 65.5997], - [-23.7935, 65.59917], - [-23.79355, 65.59866], - [-23.7882, 65.59688], - [-23.78095, 65.59544], - [-23.7748, 65.59519], - [-23.77588, 65.59649], - [-23.77581, 65.597], - [-23.77509, 65.60031], - [-23.78047, 65.603048], - [-23.78255, 65.60508], - [-23.785449, 65.606522], - [-23.789054, 65.607514], - [-23.796435, 65.610137], - [-23.79901, 65.611768], - [-23.79988, 65.61261], - [-23.80256, 65.61599], - [-23.803988, 65.617083], - [-23.804503, 65.617792], - [-23.807078, 65.619847], - [-23.8076, 65.62032], - [-23.811198, 65.622539], - [-23.814288, 65.623602], - [-23.816863, 65.624523], - [-23.818667, 65.625316], - [-23.819496, 65.625561], - [-23.820034, 65.625338], - [-23.820566, 65.625276], - [-23.821927, 65.625472], - [-23.823409, 65.625719], - [-23.823541, 65.625615], - [-23.823809, 65.625422], - [-23.823784, 65.625177], - [-23.825814, 65.624867], - [-23.826048, 65.625042], - [-23.824427, 65.625242], - [-23.824895, 65.62587], - [-23.825329, 65.625839], - [-23.825831, 65.625856], - [-23.826299, 65.625956], - [-23.827176, 65.625887], - [-23.827964, 65.625793], - [-23.827766, 65.625493], - [-23.82761, 65.625274], - [-23.827272, 65.624946], - [-23.827068, 65.624864], - [-23.826998, 65.624822], - [-23.827047, 65.624775], - [-23.827261, 65.624786], - [-23.827396, 65.624828], - [-23.827524, 65.624899], - [-23.827798, 65.625143], - [-23.828013, 65.625404], - [-23.828296, 65.625759], - [-23.830706, 65.625607], - [-23.831684, 65.625546], - [-23.841469, 65.627033], - [-23.843014, 65.627246], - [-23.844215, 65.627104], - [-23.84576, 65.627281], - [-23.847433, 65.625374], - [-23.847331, 65.624334], - [-23.84632, 65.6228], - [-23.846095, 65.621812], - [-23.847062, 65.620335], - [-23.84838, 65.62105], - [-23.85259, 65.62472], - [-23.854171, 65.627968], - [-23.856808, 65.631433], - [-23.85915, 65.633337], - [-23.866531, 65.637693], - [-23.867991, 65.638401], - [-23.871252, 65.639569], - [-23.872797, 65.640702], - [-23.876917, 65.641764], - [-23.878977, 65.642472], - [-23.882861, 65.642803], - [-23.885841, 65.643565], - [-23.88847, 65.64457], - [-23.890587, 65.645414], - [-23.893513, 65.646597], - [-23.896129, 65.647345], - [-23.897858, 65.648351], - [-23.899213, 65.648593], - [-23.899994, 65.649132], - [-23.90168, 65.649797], - [-23.903585, 65.650585], - [-23.904071, 65.651041], - [-23.904912, 65.651319], - [-23.906401, 65.6519], - [-23.906762, 65.65256], - [-23.907435, 65.653252], - [-23.908386, 65.654082], - [-23.910028, 65.655313], - [-23.910988, 65.655568], - [-23.911962, 65.656001], - [-23.912148, 65.656083], - [-23.913649, 65.656816], - [-23.915178, 65.657246], - [-23.916949, 65.657468], - [-23.918723, 65.658098], - [-23.935503, 65.660494], - [-23.940073, 65.66181], - [-23.94311, 65.66355], - [-23.946492, 65.664177], - [-23.947845, 65.664634], - [-23.950338, 65.665619], - [-23.95096, 65.665922], - [-23.95179, 65.665981], - [-23.952749, 65.666464], - [-23.958286, 65.668209], - [-23.962297, 65.668601], - [-23.974233, 65.670775], - [-23.985061, 65.670478], - [-23.988204, 65.671889], - [-23.991413, 65.672213], - [-23.993152, 65.672311], - [-23.99514, 65.672035], - [-23.997222, 65.672692], - [-23.998081, 65.672991], - [-23.999207, 65.673255], - [-24.00039, 65.673538], - [-24.00284, 65.67367], - [-24.00429, 65.673678], - [-24.00716, 65.674197], - [-24.00804, 65.674576], - [-24.00988, 65.674839], - [-24.01088, 65.675449], - [-24.0114, 65.676586], - [-24.0126, 65.677327], - [-24.013569, 65.677739], - [-24.016879, 65.677871], - [-24.018079, 65.678151], - [-24.018199, 65.678595], - [-24.01744, 65.679151], - [-24.017621, 65.679536], - [-24.019333, 65.680119], - [-24.019909, 65.680316], - [-24.021349, 65.68083], - [-24.022021, 65.681015], - [-24.023077, 65.681384], - [-24.02426, 65.681661], - [-24.025668, 65.681753], - [-24.02714, 65.681595], - [-24.028717, 65.68164], - [-24.029828, 65.682135], - [-24.03193, 65.683432], - [-24.033522, 65.683763], - [-24.035395, 65.683966], - [-24.036957, 65.68422], - [-24.037083, 65.684967], - [-24.037352, 65.685442], - [-24.037803, 65.685894], - [-24.039186, 65.687206], - [-24.041386, 65.68702], - [-24.042486, 65.687164], - [-24.04308, 65.687644], - [-24.042317, 65.688428], - [-24.042456, 65.688817], - [-24.0425, 65.689142], - [-24.042754, 65.689413], - [-24.042993, 65.689554], - [-24.04359, 65.689683], - [-24.044277, 65.68969], - [-24.044875, 65.689597], - [-24.045338, 65.689511], - [-24.045851, 65.689551], - [-24.052767, 65.693414], - [-24.05517, 65.694685], - [-24.059247, 65.697176], - [-24.060921, 65.698553], - [-24.062422, 65.7008], - [-24.06289, 65.70135], - [-24.067044, 65.70647], - [-24.068599, 65.707897], - [-24.071045, 65.70938], - [-24.074189, 65.711805], - [-24.076881, 65.715911], - [-24.084355, 65.724571], - [-24.08849, 65.726816], - [-24.091846, 65.729219], - [-24.094884, 65.732311], - [-24.09658, 65.73603], - [-24.100455, 65.741339], - [-24.102325, 65.743577], - [-24.107394, 65.749555], - [-24.111278, 65.755397], - [-24.110291, 65.758614], - [-24.108698, 65.761018], - [-24.108816, 65.761292], - [-24.11248, 65.765423], - [-24.115612, 65.769756], - [-24.119904, 65.774432], - [-24.12235, 65.776325], - [-24.122136, 65.777311], - [-24.122529, 65.778419], - [-24.12273, 65.779492], - [-24.122758, 65.77999], - [-24.122792, 65.780628], - [-24.123134, 65.781381], - [-24.123726, 65.782003], - [-24.123294, 65.782367], - [-24.123351, 65.783218], - [-24.122997, 65.783971], - [-24.122085, 65.784686], - [-24.121299, 65.785364], - [-24.120048, 65.786522], - [-24.119578, 65.787276], - [-24.119361, 65.787898], - [-24.118456, 65.788673], - [-24.117479, 65.789565], - [-24.116362, 65.790416], - [-24.11447, 65.791449], - [-24.113512, 65.791542], - [-24.112851, 65.79193], - [-24.112657, 65.792486], - [-24.112863, 65.79315], - [-24.113216, 65.793603], - [-24.113763, 65.793617], - [-24.114356, 65.793206], - [-24.114857, 65.793225], - [-24.115473, 65.792944], - [-24.115826, 65.793155], - [-24.116031, 65.793486], - [-24.114971, 65.793669], - [-24.114959, 65.794058], - [-24.114523, 65.794342], - [-24.114588, 65.79464], - [-24.11462, 65.794924], - [-24.113653, 65.795016], - [-24.113411, 65.795208], - [-24.112057, 65.795413], - [-24.11167, 65.795684], - [-24.111058, 65.795823], - [-24.110235, 65.795472], - [-24.110219, 65.795975], - [-24.110832, 65.796365], - [-24.110703, 65.796603], - [-24.109415, 65.796589], - [-24.108845, 65.797327], - [-24.107431, 65.798804], - [-24.10604, 65.799542], - [-24.104325, 65.801045], - [-24.102262, 65.802525], - [-24.101186, 65.804186], - [-24.100782, 65.804898], - [-24.099596, 65.805749], - [-24.098399, 65.806216], - [-24.098034, 65.806478], - [-24.097624, 65.806454], - [-24.096917, 65.80608], - [-24.09596, 65.805889], - [-24.092289, 65.805767], - [-24.091435, 65.805935], - [-24.089748, 65.806431], - [-24.088015, 65.806524], - [-24.08724, 65.806795], - [-24.08626, 65.806851], - [-24.083775, 65.806832], - [-24.081062, 65.806907], - [-24.077369, 65.807066], - [-24.074357, 65.80693], - [-24.072615, 65.806744], - [-24.071245, 65.806433], - [-24.069583, 65.805996], - [-24.068134, 65.805482], - [-24.066568, 65.804813], - [-24.064786, 65.804017], - [-24.06053, 65.802656], - [-24.057419, 65.802114], - [-24.054541, 65.801636], - [-24.051971, 65.801486], - [-24.049972, 65.801777], - [-24.048541, 65.802043], - [-24.047204, 65.802247], - [-24.04657, 65.802246], - [-24.046522, 65.801948], - [-24.044878, 65.801512], - [-24.04354, 65.801473], - [-24.042975, 65.801301], - [-24.042589, 65.800812], - [-24.041847, 65.800343], - [-24.040848, 65.800032], - [-24.039112, 65.799846], - [-24.036785, 65.80025], - [-24.035222, 65.800343], - [-24.034013, 65.800475], - [-24.032642, 65.800601], - [-24.031998, 65.800604], - [-24.031413, 65.800318], - [-24.030047, 65.799814], - [-24.02921, 65.799245], - [-24.027319, 65.799129], - [-24.026259, 65.799286], - [-24.024582, 65.799101], - [-24.023841, 65.799246], - [-24.023293, 65.79918], - [-24.022696, 65.798889], - [-24.021793, 65.797977], - [-24.019827, 65.79807], - [-24.014897, 65.797603], - [-24.012316, 65.796735], - [-24.00612, 65.79468], - [-24.00071, 65.79291], - [-23.99513, 65.79268], - [-23.99459, 65.7919], - [-23.98309, 65.78898], - [-23.97817, 65.78838], - [-23.9764, 65.78757], - [-23.95783, 65.78644], - [-23.95184, 65.7844], - [-23.95066, 65.78386], - [-23.9495, 65.78307], - [-23.94912, 65.78102], - [-23.9499, 65.77975], - [-23.9438, 65.77861], - [-23.94161, 65.77788], - [-23.94019, 65.77751], - [-23.93839, 65.77696], - [-23.9372, 65.77643], - [-23.93602, 65.77589], - [-23.93366, 65.77482], - [-23.912672, 65.769233], - [-23.907008, 65.763208], - [-23.89281, 65.76222], - [-23.879, 65.76309], - [-23.87712, 65.76318], - [-23.87583, 65.76354], - [-23.87156, 65.76281], - [-23.86555, 65.76102], - [-23.86236, 65.7616], - [-23.86256, 65.76007], - [-23.86131, 65.76004], - [-23.86125, 65.76055], - [-23.86063, 65.76053], - [-23.859789, 65.760004], - [-23.85693, 65.76021], - [-23.85355, 65.75732], - [-23.85051, 65.75674], - [-23.85058, 65.75624], - [-23.84933, 65.75621], - [-23.8488, 65.75543], - [-23.84756, 65.75541], - [-23.84287, 65.75301], - [-23.84153, 65.75375], - [-23.84141, 65.75221], - [-23.83908, 65.75088], - [-23.83641, 65.7498], - [-23.83589, 65.74902], - [-23.83411, 65.74822], - [-23.82928, 65.74709], - [-23.824, 65.74442], - [-23.82282, 65.74389], - [-23.82081, 65.74257], - [-23.82121, 65.74181], - [-23.81932, 65.74202], - [-23.81814, 65.74149], - [-23.81765, 65.74045], - [-23.79919, 65.73879], - [-23.78612, 65.73877], - [-23.78622, 65.738], - [-23.78504, 65.73747], - [-23.7814, 65.73662], - [-23.7784, 65.73579], - [-23.77788, 65.73501], - [-23.76459, 65.73179], - [-23.75974, 65.73079], - [-23.75321, 65.72834], - [-23.74968, 65.72673], - [-23.74791, 65.72593], - [-23.74303, 65.72518], - [-23.74057, 65.725], - [-23.74001, 65.72448], - [-23.73316, 65.72459], - [-23.728154, 65.724137], - [-23.72516, 65.72391], - [-23.72088, 65.7233], - [-23.71605, 65.72217], - [-23.71365, 65.72148], - [-23.70949, 65.71998], - [-23.694784, 65.71561], - [-23.686029, 65.712856], - [-23.680365, 65.71215], - [-23.67123, 65.71288], - [-23.66447, 65.71222], - [-23.64939, 65.70869], - [-23.6392, 65.70578], - [-23.62576, 65.70408], - [-23.620455, 65.703181], - [-23.614618, 65.70198], - [-23.609125, 65.699579], - [-23.605005, 65.698519], - [-23.60115, 65.69738], - [-23.59573, 65.69138], - [-23.596136, 65.688047], - [-23.59606, 65.68652], - [-23.59691, 65.685432], - [-23.598392, 65.684914], - [-23.598541, 65.684285], - [-23.599634, 65.684285], - [-23.599921, 65.685004], - [-23.60166, 65.684513], - [-23.602092, 65.684017], - [-23.602054, 65.683901], - [-23.600254, 65.683314], - [-23.600343, 65.683266], - [-23.602001, 65.683739], - [-23.60197, 65.683644], - [-23.60402, 65.682731], - [-23.605569, 65.682571], - [-23.607109, 65.681273], - [-23.606052, 65.680527], - [-23.607109, 65.67863], - [-23.6081, 65.677238], - [-23.6095, 65.67632], - [-23.60473, 65.67481], - [-23.59973, 65.67508], - [-23.595435, 65.677616], - [-23.594017, 65.678179], - [-23.59304, 65.67877], - [-23.58203, 65.68224], - [-23.57706, 65.68225], - [-23.57634, 65.68301], - [-23.57386, 65.68295], - [-23.57334, 65.68217], - [-23.57152, 65.68187], - [-23.570679, 65.68136], - [-23.56973, 65.68133], - [-23.56993, 65.67749], - [-23.56599, 65.67202], - [-23.56476, 65.67199], - [-23.563742, 65.670771], - [-23.56307, 65.67067], - [-23.564275, 65.669377], - [-23.56337, 65.66607], - [-23.56031, 65.66344], - [-23.55785, 65.66326], - [-23.55343, 65.6638], - [-23.55395, 65.66228], - [-23.5526, 65.66071], - [-23.55032, 65.65912], - [-23.55019, 65.65784], - [-23.54544, 65.65159], - [-23.54434, 65.65054], - [-23.54293, 65.64948], - [-23.54197, 65.648484], - [-23.541587, 65.647713], - [-23.5421, 65.64639], - [-23.538571, 65.645573], - [-23.550137, 65.63664], - [-23.551325, 65.636902], - [-23.552691, 65.63701], - [-23.56133, 65.63236], - [-23.562247, 65.632132], - [-23.56645, 65.62877], - [-23.56579, 65.6244], - [-23.56438, 65.62334], - [-23.56091, 65.62147], - [-23.56152, 65.61457], - [-23.56528, 65.60953], - [-23.56328, 65.60821], - [-23.54457, 65.60458], - [-23.54095, 65.60387], - [-23.53788, 65.60367], - [-23.53532, 65.60425], - [-23.53444, 65.60628], - [-23.52998, 65.6072], - [-23.52803, 65.60792], - [-23.52666, 65.60892], - [-23.52697, 65.61353], - [-23.52454, 65.61552], - [-23.522, 65.61827], - [-23.51051, 65.62775], - [-23.508159, 65.629179], - [-23.505958, 65.630067], - [-23.50206, 65.63293], - [-23.50048, 65.63545], - [-23.49914, 65.6385], - [-23.49574, 65.63842], - [-23.49725, 65.6364], - [-23.49715, 65.63487], - [-23.49289, 65.63426], - [-23.49241, 65.63322], - [-23.49001, 65.63265], - [-23.4884, 65.63082], - [-23.4836, 65.62969], - [-23.4813, 65.62836], - [-23.47896, 65.62728], - [-23.4778, 65.62674], - [-23.47732, 65.62571], - [-23.47557, 65.62489], - [-23.47386, 65.62383], - [-23.4708, 65.6235], - [-23.4707, 65.62427], - [-23.46819, 65.62447], - [-23.466137, 65.625431], - [-23.466158, 65.627623], - [-23.46654, 65.62981], - [-23.466266, 65.630245], - [-23.46746, 65.63443], - [-23.46828, 65.63522], - [-23.469351, 65.638399], - [-23.470582, 65.639352], - [-23.471918, 65.640473], - [-23.472529, 65.641363], - [-23.472499, 65.64221], - [-23.47163, 65.64477], - [-23.47038, 65.64474], - [-23.469136, 65.644016], - [-23.466994, 65.643475], - [-23.46195, 65.64301], - [-23.45841, 65.64165], - [-23.45663, 65.6411], - [-23.45611, 65.64032], - [-23.45138, 65.63867], - [-23.45021, 65.63813], - [-23.44912, 65.63708], - [-23.446014, 65.636288], - [-23.43838, 65.63401], - [-23.43728, 65.63296], - [-23.43019, 65.63049], - [-23.42796, 65.62865], - [-23.42621, 65.62784], - [-23.42381, 65.62727], - [-23.421577, 65.625577], - [-23.42039, 65.62514], - [-23.420074, 65.624559], - [-23.41628, 65.62351], - [-23.41384, 65.62319], - [-23.413114, 65.622594], - [-23.40784, 65.62178], - [-23.40791, 65.62126], - [-23.40551, 65.62069], - [-23.39994, 65.62069], - [-23.38979, 65.62237], - [-23.38779, 65.62335], - [-23.38787, 65.62284], - [-23.38964, 65.62194], - [-23.38801, 65.62182], - [-23.38667, 65.62255], - [-23.3813, 65.6255], - [-23.37996, 65.62623], - [-23.37869, 65.62646], - [-23.37544, 65.62971], - [-23.37539, 65.63227], - [-23.375288, 65.632577], - [-23.37837, 65.63323], - [-23.37889, 65.63389], - [-23.38191, 65.63447], - [-23.38214, 65.63499], - [-23.38365, 65.63528], - [-23.38355, 65.63605], - [-23.38965, 65.6367], - [-23.38879, 65.63848], - [-23.39002, 65.63851], - [-23.39206, 65.63958], - [-23.39564, 65.64273], - [-23.39986, 65.6436], - [-23.39975, 65.64437], - [-23.40159, 65.64454], - [-23.40602, 65.64836], - [-23.40725, 65.64839], - [-23.40773, 65.64942], - [-23.40897, 65.64945], - [-23.4116, 65.65284], - [-23.41284, 65.65287], - [-23.41328, 65.65416], - [-23.41204, 65.65413], - [-23.41132, 65.65488], - [-23.4049, 65.6564], - [-23.36872, 65.65784], - [-23.34848, 65.66056], - [-23.3483, 65.66183], - [-23.34674, 65.6641], - [-23.34277, 65.6658], - [-23.33959, 65.66636], - [-23.30601, 65.66683], - [-23.30033, 65.66746], - [-23.29776, 65.66804], - [-23.29307, 65.67048], - [-23.28601, 65.67211], - [-23.28451, 65.67386], - [-23.27709, 65.67368], - [-23.275778, 65.674273], - [-23.26943, 65.67516], - [-23.26491, 65.67633], - [-23.26122, 65.67611], - [-23.260539, 65.676426], - [-23.25739, 65.67678], - [-23.25563, 65.67826], - [-23.25763, 65.67948], - [-23.26429, 65.68066], - [-23.29239, 65.67956], - [-23.30264, 65.67737], - [-23.3039, 65.67728], - [-23.30961, 65.67639], - [-23.3162, 65.67809], - [-23.33233, 65.67822], - [-23.36126, 65.67559], - [-23.3715, 65.6734], - [-23.37157, 65.67289], - [-23.38103, 65.67183], - [-23.3811, 65.67132], - [-23.38234, 65.67135], - [-23.38282, 65.67239], - [-23.39816, 65.67365], - [-23.45128, 65.68014], - [-23.45281, 65.68261], - [-23.45396, 65.68328], - [-23.45575, 65.68383], - [-23.45754, 65.68439], - [-23.46849, 65.68592], - [-23.46844, 65.68643], - [-23.47708, 65.68676], - [-23.48089, 65.68621], - [-23.4834, 65.68832], - [-23.48339, 65.69292], - [-23.48542, 65.694], - [-23.48659, 65.69453], - [-23.48838, 65.69508], - [-23.49024, 65.69513], - [-23.49196, 65.69619], - [-23.4956, 65.69679], - [-23.49667, 65.69809], - [-23.50025, 65.6992], - [-23.50391, 65.69968], - [-23.50562, 65.70086], - [-23.50738, 65.70166], - [-23.5098, 65.7021], - [-23.51123, 65.70303], - [-23.51505, 65.70466], - [-23.51681, 65.70777], - [-23.52035, 65.71143], - [-23.52159, 65.71146], - [-23.52142, 65.71274], - [-23.52267, 65.71277], - [-23.5228, 65.71405], - [-23.52478, 65.7155], - [-23.526, 65.71566], - [-23.52939, 65.71817], - [-23.53062, 65.71832], - [-23.532, 65.71964], - [-23.53151, 65.72091], - [-23.52137, 65.72234], - [-23.51074, 65.72274], - [-23.51068, 65.72325], - [-23.50065, 65.72378], - [-23.50072, 65.72327], - [-23.49745, 65.72448], - [-23.49607, 65.72547], - [-23.49083, 65.7274], - [-23.48575, 65.72818], - [-23.476603, 65.727919], - [-23.46831, 65.72829], - [-23.4639, 65.7287], - [-23.451304, 65.728757], - [-23.438884, 65.728387], - [-23.435874, 65.727602], - [-23.433044, 65.727231], - [-23.427783, 65.727037], - [-23.417421, 65.728585], - [-23.415516, 65.728158], - [-23.414204, 65.727884], - [-23.411908, 65.728025], - [-23.409355, 65.728025], - [-23.408595, 65.728283], - [-23.407439, 65.728821], - [-23.40611, 65.729383], - [-23.40465, 65.72974], - [-23.401287, 65.729489], - [-23.398133, 65.729614], - [-23.39606, 65.730902], - [-23.392488, 65.730806], - [-23.39218, 65.72995], - [-23.390193, 65.729269], - [-23.38855, 65.72924], - [-23.385408, 65.728898], - [-23.381809, 65.729622], - [-23.37722, 65.73012], - [-23.3747, 65.730274], - [-23.372662, 65.730803], - [-23.368233, 65.73072], - [-23.365847, 65.730927], - [-23.365546, 65.731518], - [-23.366522, 65.732404], - [-23.364575, 65.732799], - [-23.363417, 65.732978], - [-23.361187, 65.732369], - [-23.352861, 65.734232], - [-23.35173, 65.73438], - [-23.34663, 65.73528], - [-23.344319, 65.735872], - [-23.343291, 65.736099], - [-23.34026, 65.736532], - [-23.339756, 65.736626], - [-23.338691, 65.737077], - [-23.337431, 65.737348], - [-23.336353, 65.737726], - [-23.33561, 65.73834], - [-23.334908, 65.740355], - [-23.334978, 65.740839], - [-23.335117, 65.74104], - [-23.336084, 65.741011], - [-23.336024, 65.741241], - [-23.335611, 65.741388], - [-23.335745, 65.741498], - [-23.334549, 65.74167], - [-23.333185, 65.741859], - [-23.332796, 65.741863], - [-23.334251, 65.741421], - [-23.333533, 65.740903], - [-23.332348, 65.740356], - [-23.331715, 65.740126], - [-23.330943, 65.740098], - [-23.32632, 65.740303], - [-23.319695, 65.740279], - [-23.314833, 65.740434], - [-23.31234, 65.740503], - [-23.308865, 65.740283], - [-23.308598, 65.740163], - [-23.303864, 65.739808], - [-23.297418, 65.739574], - [-23.295376, 65.739547], - [-23.291819, 65.739723], - [-23.288531, 65.739944], - [-23.286708, 65.73996], - [-23.283959, 65.7402], - [-23.282188, 65.740507], - [-23.274245, 65.740574], - [-23.268137, 65.740515], - [-23.266444, 65.740429], - [-23.264093, 65.740449], - [-23.260973, 65.740236], - [-23.256312, 65.739528], - [-23.252655, 65.739127], - [-23.251211, 65.738798], - [-23.247763, 65.738249], - [-23.244177, 65.737905], - [-23.237141, 65.737313], - [-23.234911, 65.736882], - [-23.232219, 65.736165], - [-23.228244, 65.735745], - [-23.223771, 65.735749], - [-23.22126, 65.73559], - [-23.219517, 65.73527], - [-23.218328, 65.73499], - [-23.217244, 65.734808], - [-23.21597, 65.734759], - [-23.215716, 65.734783], - [-23.214276, 65.734924], - [-23.213283, 65.735139], - [-23.212742, 65.735377], - [-23.211824, 65.736225], - [-23.211762, 65.736435], - [-23.213047, 65.736722], - [-23.212987, 65.736823], - [-23.212758, 65.737197], - [-23.212131, 65.737512], - [-23.212455, 65.737749], - [-23.212277, 65.737996], - [-23.210669, 65.738321], - [-23.209922, 65.740659], - [-23.208992, 65.740908], - [-23.208965, 65.740989], - [-23.20904, 65.741062], - [-23.210173, 65.741187], - [-23.211108, 65.745483], - [-23.210829, 65.74603], - [-23.210277, 65.746141], - [-23.21057, 65.746891], - [-23.211697, 65.748376], - [-23.215296, 65.748901], - [-23.21913, 65.74958], - [-23.22669, 65.75105], - [-23.22694, 65.75157], - [-23.22844, 65.75186], - [-23.23005, 65.7537], - [-23.23612, 65.75474], - [-23.23713, 65.75643], - [-23.23588, 65.7564], - [-23.23221, 65.7581], - [-23.23178, 65.75886], - [-23.22791, 65.75979], - [-23.22288, 65.76222], - [-23.2205, 65.76357], - [-23.21802, 65.76351], - [-23.21089, 65.76538], - [-23.2021, 65.76581], - [-23.20204, 65.76632], - [-23.20082, 65.76603], - [-23.20075, 65.76654], - [-23.19512, 65.76666], - [-23.19567, 65.76718], - [-23.19486, 65.76699], - [-23.19256, 65.76711], - [-23.19117, 65.76809], - [-23.18993, 65.76806], - [-23.18985, 65.76857], - [-23.17965, 65.77011], - [-23.17892, 65.77086], - [-23.17706, 65.77081], - [-23.17632, 65.77156], - [-23.17508, 65.77153], - [-23.17497, 65.7723], - [-23.17323, 65.77285], - [-23.173211, 65.774026], - [-23.172039, 65.773987], - [-23.171011, 65.774304], - [-23.171287, 65.77499], - [-23.174675, 65.777378], - [-23.175255, 65.777576], - [-23.177971, 65.77757], - [-23.178758, 65.777527], - [-23.179625, 65.777857], - [-23.180939, 65.778813], - [-23.181617, 65.779158], - [-23.182729, 65.779718], - [-23.183237, 65.780626], - [-23.185661, 65.782013], - [-23.19608, 65.784912], - [-23.19923, 65.78532], - [-23.202504, 65.784954], - [-23.208834, 65.784066], - [-23.210199, 65.783714], - [-23.212218, 65.783299], - [-23.213804, 65.782535], - [-23.215949, 65.782183], - [-23.217591, 65.781526], - [-23.219108, 65.781347], - [-23.221628, 65.781129], - [-23.224909, 65.78137], - [-23.226346, 65.781108], - [-23.228009, 65.781005], - [-23.232291, 65.779654], - [-23.234488, 65.779193], - [-23.237372, 65.77802], - [-23.239263, 65.777575], - [-23.24042, 65.777102], - [-23.242731, 65.776592], - [-23.243642, 65.776058], - [-23.245056, 65.775558], - [-23.246411, 65.775087], - [-23.24742, 65.774864], - [-23.248297, 65.774571], - [-23.248676, 65.774429], - [-23.249296, 65.774073], - [-23.250138, 65.773606], - [-23.252713, 65.772886], - [-23.253492, 65.772325], - [-23.255249, 65.771617], - [-23.261122, 65.769399], - [-23.263148, 65.768519], - [-23.264347, 65.768077], - [-23.265639, 65.767762], - [-23.266053, 65.76723], - [-23.269066, 65.766755], - [-23.271516, 65.766105], - [-23.276917, 65.764976], - [-23.278469, 65.764238], - [-23.28532, 65.762281], - [-23.303823, 65.762827], - [-23.311891, 65.763603], - [-23.325892, 65.764645], - [-23.32826, 65.76377], - [-23.33385, 65.76391], - [-23.335539, 65.763604], - [-23.336782, 65.763902], - [-23.338722, 65.763657], - [-23.34456, 65.763958], - [-23.34758, 65.76372], - [-23.34769, 65.76296], - [-23.35582, 65.76277], - [-23.36224, 65.76138], - [-23.36618, 65.75994], - [-23.37874, 65.75923], - [-23.38513, 65.75809], - [-23.39331, 65.75751], - [-23.4051, 65.75779], - [-23.41018, 65.75714], - [-23.41321, 65.75772], - [-23.41447, 65.75763], - [-23.4144, 65.75814], - [-23.428366, 65.75885], - [-23.434546, 65.758568], - [-23.43542, 65.75927], - [-23.43712, 65.759203], - [-23.446562, 65.758568], - [-23.450338, 65.757863], - [-23.453943, 65.756877], - [-23.462011, 65.756947], - [-23.464504, 65.757032], - [-23.466364, 65.757037], - [-23.467892, 65.757122], - [-23.469024, 65.757293], - [-23.470106, 65.757945], - [-23.471846, 65.758136], - [-23.473505, 65.758655], - [-23.474635, 65.759091], - [-23.480259, 65.759341], - [-23.48402, 65.75912], - [-23.485, 65.758484], - [-23.486985, 65.758129], - [-23.488863, 65.758081], - [-23.49288, 65.758499], - [-23.495381, 65.759046], - [-23.501107, 65.760347], - [-23.503169, 65.760326], - [-23.505052, 65.760462], - [-23.508775, 65.760515], - [-23.510679, 65.760493], - [-23.511911, 65.760163], - [-23.513741, 65.759957], - [-23.515269, 65.759667], - [-23.518008, 65.758752], - [-23.519618, 65.757121], - [-23.520585, 65.75619], - [-23.520854, 65.756031], - [-23.521548, 65.755623], - [-23.522854, 65.755101], - [-23.524717, 65.754556], - [-23.532989, 65.75499], - [-23.538001, 65.756286], - [-23.539575, 65.756748], - [-23.543087, 65.757428], - [-23.553597, 65.758649], - [-23.582766, 65.761873], - [-23.585753, 65.762292], - [-23.605001, 65.763846], - [-23.605833, 65.764922], - [-23.61499, 65.76732], - [-23.616808, 65.767883], - [-23.61861, 65.76817], - [-23.620095, 65.768715], - [-23.62587, 65.76987], - [-23.627774, 65.77045], - [-23.63133, 65.77101], - [-23.632719, 65.77152], - [-23.649536, 65.773543], - [-23.65583, 65.77424], - [-23.667378, 65.775356], - [-23.670399, 65.775974], - [-23.672305, 65.776494], - [-23.674837, 65.777135], - [-23.676553, 65.77762], - [-23.680201, 65.777814], - [-23.682433, 65.777532], - [-23.685694, 65.777754], - [-23.688784, 65.777832], - [-23.692561, 65.777969], - [-23.692561, 65.778036], - [-23.694106, 65.778106], - [-23.696346, 65.778061], - [-23.700638, 65.778561], - [-23.70805, 65.78011], - [-23.708967, 65.780426], - [-23.71165, 65.78122], - [-23.712567, 65.781632], - [-23.7222, 65.784], - [-23.722206, 65.784368], - [-23.72307, 65.78453], - [-23.723873, 65.785758], - [-23.72476, 65.78584], - [-23.724573, 65.786261], - [-23.72531, 65.78649], - [-23.72585, 65.78715], - [-23.73017, 65.7875], - [-23.73041, 65.787948], - [-23.73135, 65.78803], - [-23.7316, 65.78855], - [-23.73371, 65.78911], - [-23.734048, 65.789576], - [-23.73517, 65.78991], - [-23.73538, 65.79067], - [-23.73661, 65.79083], - [-23.740275, 65.794159], - [-23.74108, 65.79489], - [-23.74232, 65.79492], - [-23.744385, 65.796142], - [-23.74583, 65.7968], - [-23.747492, 65.797194], - [-23.7494, 65.79814], - [-23.750647, 65.798176], - [-23.751183, 65.798668], - [-23.752127, 65.79888], - [-23.753243, 65.799166], - [-23.753844, 65.799759], - [-23.759298, 65.800804], - [-23.76374, 65.802572], - [-23.766122, 65.803965], - [-23.775392, 65.809204], - [-23.778881, 65.810639], - [-23.782383, 65.812428], - [-23.78863, 65.81612], - [-23.792253, 65.817593], - [-23.796502, 65.819312], - [-23.797626, 65.819736], - [-23.798905, 65.820291], - [-23.800707, 65.821123], - [-23.805548, 65.824011], - [-23.807578, 65.824448], - [-23.812638, 65.826253], - [-23.815556, 65.827823], - [-23.820191, 65.829935], - [-23.82141, 65.83114], - [-23.822039, 65.8316], - [-23.82316, 65.8322], - [-23.823852, 65.832707], - [-23.82518, 65.833109], - [-23.82677, 65.8333], - [-23.82617, 65.83559], - [-23.8276, 65.83664], - [-23.82885, 65.83667], - [-23.828517, 65.840968], - [-23.834716, 65.841042], - [-23.83491, 65.841556], - [-23.833107, 65.842012], - [-23.833964, 65.843252], - [-23.83427, 65.84344], - [-23.83432, 65.84549], - [-23.83644, 65.84604], - [-23.83697, 65.84682], - [-23.8351, 65.84678], - [-23.83348, 65.84982], - [-23.833862, 65.850236], - [-23.835174, 65.851029], - [-23.83849, 65.851024], - [-23.838636, 65.850654], - [-23.840017, 65.850248], - [-23.841552, 65.849752], - [-23.842849, 65.851495], - [-23.840489, 65.853373], - [-23.84002, 65.85507], - [-23.83967, 65.85532], - [-23.84042, 65.85687], - [-23.840697, 65.857297], - [-23.84126, 65.85765], - [-23.84083, 65.85867], - [-23.84135, 65.85945], - [-23.842097, 65.860097], - [-23.842809, 65.860538], - [-23.843599, 65.860834], - [-23.84463, 65.8608], - [-23.84544, 65.86184], - [-23.84815, 65.86266], - [-23.84821, 65.86471], - [-23.849179, 65.865395], - [-23.8503, 65.86551], - [-23.850052, 65.866192], - [-23.85083, 65.8663], - [-23.85105, 65.86708], - [-23.85257, 65.86736], - [-23.85282, 65.86788], - [-23.85495, 65.86844], - [-23.8551, 65.86972], - [-23.85672, 65.8718], - [-23.85825, 65.87209], - [-23.85862, 65.87414], - [-23.85738, 65.87412], - [-23.85943, 65.87774], - [-23.86218, 65.87831], - [-23.86243, 65.88395], - [-23.86396, 65.88423], - [-23.86418, 65.885], - [-23.86541, 65.88516], - [-23.86799, 65.88713], - [-23.86527, 65.89143], - [-23.85959, 65.89182], - [-23.85806, 65.89665], - [-23.85415, 65.90041], - [-23.8554, 65.90044], - [-23.85343, 65.90373], - [-23.85071, 65.90546], - [-23.84831, 65.90976], - [-23.83979, 65.91522], - [-23.83471, 65.91588], - [-23.83265, 65.91737], - [-23.82949, 65.91757], - [-23.82802, 65.91933], - [-23.81645, 65.92165], - [-23.81505, 65.9229], - [-23.80355, 65.92471], - [-23.8036, 65.92419], - [-23.78555, 65.92317], - [-23.78193, 65.92208], - [-23.77409, 65.92136], - [-23.77323, 65.92151], - [-23.77392, 65.92101], - [-23.77145, 65.92071], - [-23.7715, 65.9202], - [-23.76108, 65.91844], - [-23.76115, 65.91793], - [-23.7548, 65.91856], - [-23.75486, 65.91805], - [-23.74557, 65.91722], - [-23.72852, 65.9134], - [-23.72858, 65.91289], - [-23.72294, 65.9129], - [-23.7076, 65.91039], - [-23.70707, 65.90961], - [-23.70583, 65.90946], - [-23.70392, 65.9098], - [-23.70398, 65.90929], - [-23.68114, 65.90675], - [-23.68183, 65.90625], - [-23.67931, 65.90633], - [-23.67685, 65.90602], - [-23.67326, 65.90466], - [-23.66953, 65.90445], - [-23.66901, 65.90366], - [-23.65859, 65.90191], - [-23.65807, 65.90113], - [-23.65623, 65.90083], - [-23.65452, 65.89952], - [-23.63724, 65.8976], - [-23.63519, 65.89654], - [-23.63556, 65.89373], - [-23.62965, 65.88386], - [-23.624686, 65.882206], - [-23.61871, 65.88145], - [-23.60803, 65.88173], - [-23.605, 65.88102], - [-23.60447, 65.88024], - [-23.60258, 65.88033], - [-23.59237, 65.87716], - [-23.59077, 65.87507], - [-23.58959, 65.87453], - [-23.58774, 65.87424], - [-23.58785, 65.87347], - [-23.58602, 65.87317], - [-23.58576, 65.87351], - [-23.57032, 65.87359], - [-23.57025, 65.8741], - [-23.55909, 65.87334], - [-23.55964, 65.87386], - [-23.55719, 65.87355], - [-23.556288, 65.874117], - [-23.549857, 65.875629], - [-23.546068, 65.876387], - [-23.543794, 65.877086], - [-23.542353, 65.877782], - [-23.54091, 65.878135], - [-23.53904, 65.87826], - [-23.536303, 65.87899], - [-23.531241, 65.880559], - [-23.531026, 65.881059], - [-23.52907, 65.88148], - [-23.521831, 65.881532], - [-23.51962, 65.881826], - [-23.518044, 65.88194], - [-23.514251, 65.881782], - [-23.511671, 65.881662], - [-23.50863, 65.881384], - [-23.506239, 65.881077], - [-23.50497, 65.880727], - [-23.503553, 65.880433], - [-23.502662, 65.880357], - [-23.502054, 65.880373], - [-23.499205, 65.880822], - [-23.497491, 65.881292], - [-23.496052, 65.881516], - [-23.494504, 65.88165], - [-23.492999, 65.881718], - [-23.490963, 65.881683], - [-23.490309, 65.881632], - [-23.489884, 65.881526], - [-23.489584, 65.881395], - [-23.489411, 65.881258], - [-23.48935, 65.881112], - [-23.489401, 65.880832], - [-23.489418, 65.880352], - [-23.489496, 65.879967], - [-23.489482, 65.879258], - [-23.489541, 65.878902], - [-23.489605, 65.878472], - [-23.489088, 65.878417], - [-23.489092, 65.878383], - [-23.489108, 65.878244], - [-23.489217, 65.877894], - [-23.489151, 65.87767], - [-23.488905, 65.87738], - [-23.488496, 65.877075], - [-23.488266, 65.87688], - [-23.48807, 65.876794], - [-23.487897, 65.876769], - [-23.486964, 65.877034], - [-23.486771, 65.876891], - [-23.487564, 65.876684], - [-23.487642, 65.876632], - [-23.487525, 65.876575], - [-23.487149, 65.876394], - [-23.486757, 65.87612], - [-23.486627, 65.876029], - [-23.486334, 65.875866], - [-23.485175, 65.875218], - [-23.485105, 65.875179], - [-23.484099, 65.874616], - [-23.483805, 65.874417], - [-23.483635, 65.874232], - [-23.483681, 65.873999], - [-23.483639, 65.873708], - [-23.483335, 65.873523], - [-23.483065, 65.873266], - [-23.482696, 65.87314], - [-23.482155, 65.873077], - [-23.481685, 65.872953], - [-23.481154, 65.872781], - [-23.480267, 65.872649], - [-23.479732, 65.872617], - [-23.479424, 65.872512], - [-23.479197, 65.872377], - [-23.479156, 65.872077], - [-23.478956, 65.871676], - [-23.478803, 65.8713], - [-23.478595, 65.870966], - [-23.47834, 65.870601], - [-23.477956, 65.870194], - [-23.477589, 65.8699], - [-23.477308, 65.869701], - [-23.476928, 65.869628], - [-23.47643, 65.86956], - [-23.476268, 65.869487], - [-23.476261, 65.86923], - [-23.476114, 65.868727], - [-23.475792, 65.868318], - [-23.47172, 65.86726], - [-23.47065, 65.86595], - [-23.46947, 65.86541], - [-23.4659, 65.86405], - [-23.46284, 65.8636], - [-23.45922, 65.86262], - [-23.45836, 65.86208], - [-23.45254, 65.86118], - [-23.45202, 65.8604], - [-23.45026, 65.85959], - [-23.44477, 65.85857], - [-23.44355, 65.85841], - [-23.432055, 65.857672], - [-23.42184, 65.85714], - [-23.42114, 65.85763], - [-23.41902, 65.85938], - [-23.41652, 65.85945], - [-23.41407, 65.85901], - [-23.412519, 65.858974], - [-23.407969, 65.858544], - [-23.40567, 65.8565], - [-23.39881, 65.85634], - [-23.39844, 65.85454], - [-23.397186, 65.853823], - [-23.394169, 65.853538], - [-23.390264, 65.853371], - [-23.382547, 65.853175], - [-23.37989, 65.85308], - [-23.36052, 65.85299], - [-23.35986, 65.85325], - [-23.35295, 65.85347], - [-23.3501, 65.85596], - [-23.34757, 65.85615], - [-23.34749, 65.85666], - [-23.34557, 65.857], - [-23.34124, 65.85677], - [-23.34152, 65.85473], - [-23.337453, 65.853461], - [-23.335784, 65.853204], - [-23.330049, 65.852764], - [-23.328432, 65.852547], - [-23.326906, 65.852585], - [-23.325963, 65.8527], - [-23.323256, 65.853082], - [-23.3222, 65.853314], - [-23.321267, 65.853593], - [-23.32023, 65.853982], - [-23.31918, 65.854459], - [-23.318032, 65.855194], - [-23.317008, 65.856127], - [-23.317544, 65.856209], - [-23.317631, 65.856123], - [-23.317822, 65.856078], - [-23.318112, 65.856098], - [-23.318193, 65.856189], - [-23.318112, 65.856322], - [-23.31789, 65.856418], - [-23.316962, 65.856445], - [-23.315551, 65.856137], - [-23.315359, 65.856037], - [-23.315149, 65.85587], - [-23.315143, 65.855774], - [-23.315242, 65.855696], - [-23.315421, 65.855646], - [-23.315612, 65.855621], - [-23.315803, 65.855671], - [-23.315816, 65.85578], - [-23.315736, 65.855865], - [-23.315921, 65.855974], - [-23.31618, 65.855974], - [-23.316347, 65.855951], - [-23.316662, 65.855686], - [-23.316878, 65.855406], - [-23.316476, 65.855287], - [-23.31668, 65.855122], - [-23.317038, 65.855176], - [-23.317298, 65.85511], - [-23.318174, 65.854535], - [-23.319191, 65.854013], - [-23.320742, 65.853406], - [-23.321798, 65.8531], - [-23.323003, 65.852789], - [-23.326335, 65.852307], - [-23.326425, 65.852149], - [-23.325607, 65.851684], - [-23.324286, 65.851165], - [-23.319691, 65.850614], - [-23.31901, 65.85035], - [-23.318081, 65.849901], - [-23.31726, 65.84954], - [-23.312396, 65.848399], - [-23.311625, 65.848436], - [-23.310891, 65.848414], - [-23.309256, 65.848031], - [-23.307971, 65.847888], - [-23.306685, 65.847858], - [-23.304684, 65.847662], - [-23.302591, 65.847677], - [-23.30066, 65.848412], - [-23.29967, 65.848724], - [-23.299175, 65.848662], - [-23.298, 65.848925], - [-23.297265, 65.849007], - [-23.29668, 65.849029], - [-23.296108, 65.848872], - [-23.295282, 65.848639], - [-23.294431, 65.848701], - [-23.293574, 65.848001], - [-23.29322, 65.84718], - [-23.27395, 65.842796], - [-23.272088, 65.842244], - [-23.270382, 65.841956], - [-23.269217, 65.841737], - [-23.266193, 65.841251], - [-23.265015, 65.840948], - [-23.26134, 65.840443], - [-23.258073, 65.840091], - [-23.25677, 65.83988], - [-23.253617, 65.839862], - [-23.25179, 65.83976], - [-23.24934, 65.83944], - [-23.241331, 65.838258], - [-23.240038, 65.838082], - [-23.235676, 65.83766], - [-23.232341, 65.837994], - [-23.229479, 65.838003], - [-23.228079, 65.837774], - [-23.225816, 65.838109], - [-23.223049, 65.838701], - [-23.221647, 65.83898], - [-23.220086, 65.838945], - [-23.217814, 65.838621], - [-23.21143, 65.83799], - [-23.210308, 65.837752], - [-23.20836, 65.83766], - [-23.207443, 65.837431], - [-23.2059, 65.83734], - [-23.20466, 65.83731], - [-23.197708, 65.83686], - [-23.19643, 65.836542], - [-23.194079, 65.836469], - [-23.193705, 65.836666], - [-23.192726, 65.836525], - [-23.19151, 65.836687], - [-23.19077, 65.837011], - [-23.18993, 65.836681], - [-23.186511, 65.836856], - [-23.18526, 65.837368], - [-23.183624, 65.837693], - [-23.182134, 65.837316], - [-23.1802, 65.83798], - [-23.18008, 65.83875], - [-23.181875, 65.838858], - [-23.182399, 65.838698], - [-23.183021, 65.838652], - [-23.183601, 65.838767], - [-23.183844, 65.838894], - [-23.185365, 65.840222], - [-23.185395, 65.840394], - [-23.186022, 65.840567], - [-23.187267, 65.840354], - [-23.188311, 65.840042], - [-23.188561, 65.839707], - [-23.188963, 65.839435], - [-23.194322, 65.839988], - [-23.194752, 65.840692], - [-23.195174, 65.841784], - [-23.198401, 65.842797], - [-23.20284, 65.843415], - [-23.207127, 65.844325], - [-23.220479, 65.844832], - [-23.226199, 65.84542], - [-23.226456, 65.845665], - [-23.229383, 65.846132], - [-23.230286, 65.846045], - [-23.23315, 65.846169], - [-23.23621, 65.846081], - [-23.240206, 65.846534], - [-23.240758, 65.846877], - [-23.245415, 65.847691], - [-23.246895, 65.848059], - [-23.248025, 65.848218], - [-23.24807, 65.84811], - [-23.251091, 65.8476], - [-23.253059, 65.84729], - [-23.253973, 65.847373], - [-23.254382, 65.847213], - [-23.255906, 65.847223], - [-23.257071, 65.847429], - [-23.258154, 65.847664], - [-23.259224, 65.847984], - [-23.259852, 65.848202], - [-23.260035, 65.848258], - [-23.260475, 65.848291], - [-23.260627, 65.848413], - [-23.260943, 65.848554], - [-23.261851, 65.848773], - [-23.262777, 65.849109], - [-23.263022, 65.84934], - [-23.263095, 65.84977], - [-23.262799, 65.851381], - [-23.262309, 65.851927], - [-23.262986, 65.852296], - [-23.26418, 65.85223], - [-23.267736, 65.853428], - [-23.269063, 65.853439], - [-23.269881, 65.853629], - [-23.27126, 65.85421], - [-23.273013, 65.854207], - [-23.273729, 65.854432], - [-23.274978, 65.854993], - [-23.275441, 65.855018], - [-23.275904, 65.855156], - [-23.276698, 65.855213], - [-23.278357, 65.854968], - [-23.280016, 65.854718], - [-23.28081, 65.854818], - [-23.283752, 65.854536], - [-23.284992, 65.854732], - [-23.287166, 65.854704], - [-23.289192, 65.8546], - [-23.290781, 65.854889], - [-23.291808, 65.855474], - [-23.293714, 65.855739], - [-23.295068, 65.855781], - [-23.296116, 65.856112], - [-23.298455, 65.857028], - [-23.300219, 65.857021], - [-23.301509, 65.857165], - [-23.30597, 65.85848], - [-23.30589, 65.85899], - [-23.306003, 65.859407], - [-23.306831, 65.859287], - [-23.308399, 65.858726], - [-23.309754, 65.859643], - [-23.310146, 65.860152], - [-23.313194, 65.859992], - [-23.313399, 65.859927], - [-23.313363, 65.859398], - [-23.313542, 65.858958], - [-23.313727, 65.858537], - [-23.313385, 65.858514], - [-23.313171, 65.858433], - [-23.31331, 65.858332], - [-23.313505, 65.858343], - [-23.313812, 65.858368], - [-23.314151, 65.858006], - [-23.31453, 65.857698], - [-23.314792, 65.857348], - [-23.314727, 65.85732], - [-23.314603, 65.857334], - [-23.314434, 65.857337], - [-23.314279, 65.857291], - [-23.314239, 65.857233], - [-23.314239, 65.857152], - [-23.314319, 65.85714], - [-23.314446, 65.857069], - [-23.314653, 65.857045], - [-23.314949, 65.857062], - [-23.315023, 65.857044], - [-23.315866, 65.857218], - [-23.316036, 65.857296], - [-23.316175, 65.857392], - [-23.316215, 65.857462], - [-23.316135, 65.857524], - [-23.315977, 65.857575], - [-23.315823, 65.857584], - [-23.315678, 65.857567], - [-23.315573, 65.857491], - [-23.315511, 65.857453], - [-23.315429, 65.857451], - [-23.314838, 65.857898], - [-23.314382, 65.858363], - [-23.314173, 65.858602], - [-23.313898, 65.858976], - [-23.313815, 65.859398], - [-23.313799, 65.859625], - [-23.31381, 65.85987], - [-23.315153, 65.859457], - [-23.315237, 65.860421], - [-23.315474, 65.861384], - [-23.316049, 65.862083], - [-23.316984, 65.862406], - [-23.317874, 65.862649], - [-23.318773, 65.862685], - [-23.319629, 65.862613], - [-23.32283, 65.86299], - [-23.327389, 65.866556], - [-23.330952, 65.867535], - [-23.34454, 65.86863], - [-23.347717, 65.868886], - [-23.351906, 65.86893], - [-23.352952, 65.86891], - [-23.358679, 65.868891], - [-23.35833, 65.86844], - [-23.35915, 65.86863], - [-23.37751, 65.868722], - [-23.37887, 65.868784], - [-23.397397, 65.868771], - [-23.406579, 65.869623], - [-23.413982, 65.870887], - [-23.422493, 65.87221], - [-23.426662, 65.873461], - [-23.430009, 65.874196], - [-23.432961, 65.874637], - [-23.43733, 65.87389], - [-23.43772, 65.87339], - [-23.44026, 65.87306], - [-23.44118, 65.87321], - [-23.44202, 65.881706], - [-23.443313, 65.882902], - [-23.443864, 65.88347], - [-23.444101, 65.884719], - [-23.44423, 65.88505], - [-23.44601, 65.887953], - [-23.446654, 65.888479], - [-23.447637, 65.889004], - [-23.448353, 65.889376], - [-23.448792, 65.889554], - [-23.449251, 65.889762], - [-23.450244, 65.89008], - [-23.45088, 65.890345], - [-23.452372, 65.891], - [-23.453209, 65.891193], - [-23.456027, 65.891962], - [-23.45758, 65.892241], - [-23.460161, 65.89273], - [-23.467745, 65.894166], - [-23.481558, 65.897688], - [-23.510695, 65.901571], - [-23.52941, 65.89853], - [-23.53458, 65.89967], - [-23.53482, 65.90019], - [-23.53605, 65.90034], - [-23.53659, 65.90099], - [-23.53784, 65.90102], - [-23.53808, 65.90154], - [-23.542, 65.90264], - [-23.54194, 65.90316], - [-23.54744, 65.90418], - [-23.55562, 65.90385], - [-23.57744, 65.90933], - [-23.57737, 65.90985], - [-23.58107, 65.91031], - [-23.5822, 65.91123], - [-23.5841, 65.91102], - [-23.58397, 65.91204], - [-23.58584, 65.91208], - [-23.58577, 65.91259], - [-23.58704, 65.91249], - [-23.58758, 65.91314], - [-23.58911, 65.91343], - [-23.58936, 65.91395], - [-23.59185, 65.914], - [-23.60066, 65.92316], - [-23.60049, 65.92444], - [-23.60217, 65.92601], - [-23.60341, 65.92604], - [-23.60335, 65.92655], - [-23.61194, 65.92789], - [-23.61431, 65.92897], - [-23.62409, 65.93085], - [-23.62406, 65.9311], - [-23.62712, 65.93168], - [-23.6267, 65.9318], - [-23.63052, 65.93444], - [-23.63175, 65.9346], - [-23.63168, 65.93511], - [-23.64289, 65.93574], - [-23.65011, 65.93807], - [-23.65032, 65.93885], - [-23.65185, 65.93914], - [-23.65147, 65.93964], - [-23.65321, 65.9407], - [-23.65474, 65.94099], - [-23.660745, 65.942874], - [-23.67037, 65.94618], - [-23.6703, 65.9467], - [-23.6824, 65.95029], - [-23.68285, 65.95158], - [-23.69216, 65.95486], - [-23.6924, 65.95537], - [-23.69365, 65.9554], - [-23.69358, 65.95591], - [-23.69615, 65.95545], - [-23.6957, 65.95579], - [-23.69533, 65.95697], - [-23.69656, 65.95713], - [-23.70229, 65.96134], - [-23.70353, 65.9615], - [-23.70378, 65.96202], - [-23.70653, 65.96259], - [-23.70615, 65.96309], - [-23.71068, 65.96447], - [-23.713, 65.96593], - [-23.71424, 65.96608], - [-23.71417, 65.96659], - [-23.72701, 65.9693], - [-23.72772, 65.96867], - [-23.7296, 65.96871], - [-23.7279, 65.9697], - [-23.72777, 65.97072], - [-23.7292, 65.97177], - [-23.73115, 65.9713], - [-23.73108, 65.97182], - [-23.73398, 65.97204], - [-23.73484, 65.97189], - [-23.73415, 65.97239], - [-23.73604, 65.9723], - [-23.73718, 65.97322], - [-23.73931, 65.97378], - [-23.73956, 65.9743], - [-23.74144, 65.97434], - [-23.7424, 65.97666], - [-23.7449, 65.97672], - [-23.74408, 65.97823], - [-23.74599, 65.97802], - [-23.74554, 65.97835], - [-23.74586, 65.97904], - [-23.74778, 65.97882], - [-23.74796, 65.97985], - [-23.75003, 65.98079], - [-23.75619, 65.98182], - [-23.75673, 65.98247], - [-23.75856, 65.98289], - [-23.75853, 65.98315], - [-23.75668, 65.98285], - [-23.75774, 65.98441], - [-23.75899, 65.98444], - [-23.75893, 65.98495], - [-23.76081, 65.98499], - [-23.76324, 65.98811], - [-23.76283, 65.98887], - [-23.76436, 65.98916], - [-23.76458, 65.98993], - [-23.76971, 65.99157], - [-23.76996, 65.99209], - [-23.77121, 65.99212], - [-23.77109, 65.99314], - [-23.773, 65.99292], - [-23.77297, 65.99318], - [-23.77105, 65.99339], - [-23.77287, 65.99394], - [-23.77215, 65.9947], - [-23.77403, 65.99473], - [-23.77396, 65.99525], - [-23.77271, 65.99522], - [-23.77268, 65.99547], - [-23.77584, 65.99528], - [-23.77753, 65.99685], - [-23.78025, 65.99768], - [-23.7805, 65.9982], - [-23.78176, 65.99822], - [-23.78197, 65.999], - [-23.78602, 65.99934], - [-23.78526, 66.00034], - [-23.78401, 66.00032], - [-23.793557, 66.004787], - [-23.793763, 66.005212], - [-23.794203, 66.005368], - [-23.795519, 66.005475], - [-23.797467, 66.005555], - [-23.799701, 66.006014], - [-23.801576, 66.006495], - [-23.803428, 66.007009], - [-23.804838, 66.007267], - [-23.80623, 66.007481], - [-23.808075, 66.007646], - [-23.809961, 66.007791], - [-23.811125, 66.007778], - [-23.811921, 66.007746], - [-23.812305, 66.007773], - [-23.812516, 66.007852], - [-23.812669, 66.008082], - [-23.812557, 66.008471], - [-23.812298, 66.008918], - [-23.812109, 66.009473], - [-23.81205, 66.00986], - [-23.811517, 66.010425], - [-23.81044, 66.011056], - [-23.809101, 66.011761], - [-23.807569, 66.012629], - [-23.805914, 66.013437], - [-23.80525, 66.013659], - [-23.804898, 66.013887], - [-23.80455, 66.014279], - [-23.80322, 66.01505], - [-23.8029, 66.01761], - [-23.80406, 66.0184], - [-23.80822, 66.02284], - [-23.80947, 66.02286], - [-23.8106, 66.02391], - [-23.81006, 66.02568], - [-23.81149, 66.02687], - [-23.81273, 66.02702], - [-23.81342, 66.02909], - [-23.81944, 66.03126], - [-23.82159, 66.03412], - [-23.82086, 66.03743], - [-23.81044, 66.04029], - [-23.80253, 66.05318], - [-23.80127, 66.05315], - [-23.80074, 66.05237], - [-23.80011, 66.05236], - [-23.7996, 66.05303], - [-23.79998, 66.05338], - [-23.79875, 66.0531], - [-23.79869, 66.05361], - [-23.79618, 66.05356], - [-23.79523, 66.0561], - [-23.79397, 66.05607], - [-23.7895, 66.05905], - [-23.78978, 66.06187], - [-23.78776, 66.06285], - [-23.78725, 66.06438], - [-23.78471, 66.06458], - [-23.77929, 66.06754], - [-23.77542, 66.06822], - [-23.77268, 66.06996], - [-23.76813, 66.07102], - [-23.76438, 66.07081], - [-23.76431, 66.07132], - [-23.75364, 66.07098], - [-23.7446, 66.06946], - [-23.74373, 66.06961], - [-23.74443, 66.06911], - [-23.7425, 66.06932], - [-23.734514, 66.066283], - [-23.733107, 66.06596], - [-23.731424, 66.065359], - [-23.729009, 66.064363], - [-23.726757, 66.063637], - [-23.723171, 66.062746], - [-23.720423, 66.061955], - [-23.716976, 66.061212], - [-23.713544, 66.06076], - [-23.708259, 66.058913], - [-23.70125, 66.058537], - [-23.696534, 66.058998], - [-23.693811, 66.059325], - [-23.68365, 66.06141], - [-23.68359, 66.06193], - [-23.68104, 66.06213], - [-23.68097, 66.06264], - [-23.67776, 66.06308], - [-23.67724, 66.0623], - [-23.66631, 66.05912], - [-23.6588, 66.0587], - [-23.64907, 66.05606], - [-23.64854, 66.05528], - [-23.63914, 66.05482], - [-23.63863, 66.05404], - [-23.63734, 66.05427], - [-23.63741, 66.05376], - [-23.63492, 66.05345], - [-23.63026, 66.05053], - [-23.62898, 66.05076], - [-23.62811, 66.05023], - [-23.62849, 66.04972], - [-23.61673, 66.04818], - [-23.61679, 66.04768], - [-23.61489, 66.04776], - [-23.61306, 66.04734], - [-23.61313, 66.04683], - [-23.60629, 66.04616], - [-23.60576, 66.04538], - [-23.60447, 66.04561], - [-23.6036, 66.04508], - [-23.60398, 66.04458], - [-23.59833, 66.04445], - [-23.59839, 66.04394], - [-23.59777, 66.04393], - [-23.59522, 66.04413], - [-23.5947, 66.04335], - [-23.59414, 66.04282], - [-23.59169, 66.04226], - [-23.59044, 66.04223], - [-23.59051, 66.04172], - [-23.58981, 66.04222], - [-23.58628, 66.04035], - [-23.58621, 66.04086], - [-23.58189, 66.04024], - [-23.58136, 66.03947], - [-23.57641, 66.03885], - [-23.5771, 66.03835], - [-23.57522, 66.03831], - [-23.57529, 66.0378], - [-23.57276, 66.03787], - [-23.55433, 66.03451], - [-23.55441, 66.034], - [-23.55252, 66.03396], - [-23.55258, 66.03345], - [-23.54144, 66.03354], - [-23.53619, 66.0336], - [-23.53626, 66.03308], - [-23.518244, 66.029909], - [-23.512251, 66.028766], - [-23.507955, 66.028391], - [-23.501253, 66.026602], - [-23.499535, 66.026305], - [-23.497344, 66.026261], - [-23.495432, 66.026235], - [-23.493244, 66.026095], - [-23.482201, 66.023885], - [-23.477935, 66.023069], - [-23.46975, 66.020948], - [-23.467753, 66.020257], - [-23.462646, 66.019058], - [-23.459906, 66.018828], - [-23.454511, 66.018599], - [-23.45083, 66.018148], - [-23.448058, 66.017058], - [-23.447959, 66.017024], - [-23.447003, 66.016735], - [-23.445788, 66.016635], - [-23.443028, 66.016809], - [-23.441468, 66.017208], - [-23.439272, 66.018145], - [-23.438247, 66.018856], - [-23.436839, 66.019758], - [-23.435538, 66.020563], - [-23.435083, 66.021007], - [-23.434741, 66.021605], - [-23.434701, 66.022286], - [-23.435041, 66.023115], - [-23.435702, 66.024003], - [-23.436625, 66.024908], - [-23.436611, 66.025307], - [-23.436407, 66.025726], - [-23.435915, 66.025979], - [-23.433611, 66.026651], - [-23.432723, 66.026808], - [-23.431313, 66.026868], - [-23.430448, 66.026846], - [-23.429576, 66.026658], - [-23.429142, 66.026374], - [-23.428927, 66.02621], - [-23.428876, 66.025928], - [-23.429219, 66.025645], - [-23.431094, 66.025191], - [-23.433193, 66.024634], - [-23.432754, 66.024132], - [-23.432197, 66.023889], - [-23.431891, 66.023623], - [-23.431858, 66.02333], - [-23.432034, 66.022656], - [-23.432596, 66.022029], - [-23.433576, 66.019801], - [-23.434394, 66.018862], - [-23.432754, 66.019685], - [-23.432473, 66.019606], - [-23.432442, 66.018599], - [-23.432744, 66.018308], - [-23.432677, 66.018285], - [-23.432407, 66.018329], - [-23.43208, 66.018198], - [-23.43153, 66.017773], - [-23.431111, 66.017227], - [-23.431013, 66.01721], - [-23.430959, 66.016933], - [-23.431024, 66.01514], - [-23.430941, 66.014937], - [-23.43097, 66.014898], - [-23.430822, 66.014761], - [-23.43071, 66.014736], - [-23.430753, 66.014695], - [-23.430651, 66.014561], - [-23.430764, 66.014419], - [-23.430963, 66.014385], - [-23.430941, 66.014306], - [-23.43101, 66.014291], - [-23.430956, 66.014177], - [-23.431143, 66.01414], - [-23.431111, 66.014052], - [-23.430797, 66.014122], - [-23.430504, 66.014097], - [-23.430309, 66.014122], - [-23.430323, 66.014177], - [-23.430273, 66.014188], - [-23.43015, 66.014121], - [-23.429482, 66.014049], - [-23.429409, 66.013987], - [-23.429272, 66.013937], - [-23.429207, 66.013905], - [-23.429012, 66.013868], - [-23.42894, 66.013889], - [-23.428709, 66.013871], - [-23.428155, 66.013786], - [-23.428513, 66.013475], - [-23.428316, 66.013325], - [-23.425015, 66.011038], - [-23.423425, 66.008801], - [-23.422933, 66.008475], - [-23.422579, 66.008323], - [-23.421922, 66.008273], - [-23.421596, 66.008302], - [-23.421279, 66.009034], - [-23.420852, 66.009648], - [-23.420505, 66.010071], - [-23.419985, 66.010602], - [-23.419371, 66.011102], - [-23.418526, 66.011657], - [-23.418446, 66.011736], - [-23.418576, 66.011827], - [-23.418858, 66.011818], - [-23.41906, 66.011968], - [-23.418851, 66.012077], - [-23.418591, 66.012097], - [-23.41836, 66.011995], - [-23.418352, 66.011901], - [-23.418114, 66.01183], - [-23.41729, 66.012256], - [-23.41656, 66.012573], - [-23.415534, 66.012958], - [-23.415621, 66.013011], - [-23.415715, 66.012985], - [-23.41586, 66.013086], - [-23.415834, 66.013134], - [-23.415553, 66.013205], - [-23.415401, 66.013189], - [-23.415332, 66.013139], - [-23.415314, 66.013078], - [-23.415264, 66.013054], - [-23.413822, 66.013519], - [-23.412348, 66.014011], - [-23.412171, 66.014073], - [-23.412106, 66.014137], - [-23.412207, 66.014179], - [-23.412417, 66.01419], - [-23.41259, 66.014261], - [-23.41263, 66.014322], - [-23.412558, 66.014352], - [-23.412373, 66.014368], - [-23.411853, 66.014321], - [-23.411373, 66.014206], - [-23.41121, 66.014049], - [-23.411066, 66.013873], - [-23.411084, 66.013695], - [-23.411293, 66.013628], - [-23.411514, 66.013654], - [-23.41147, 66.013716], - [-23.411535, 66.013766], - [-23.411702, 66.013784], - [-23.411875, 66.013766], - [-23.411944, 66.013719], - [-23.412937, 66.013466], - [-23.414527, 66.012942], - [-23.415618, 66.012572], - [-23.416799, 66.01208], - [-23.418071, 66.011431], - [-23.418894, 66.010864], - [-23.419653, 66.010259], - [-23.42005, 66.009915], - [-23.420426, 66.009468], - [-23.421068, 66.008209], - [-23.421192, 66.007979], - [-23.421213, 66.007459], - [-23.420846, 66.007039], - [-23.420368, 66.005893], - [-23.419329, 66.005022], - [-23.419787, 66.003978], - [-23.418993, 66.003295], - [-23.41832, 66.000634], - [-23.41615, 66.000671], - [-23.414642, 65.999944], - [-23.413674, 65.999478], - [-23.41242, 65.997289], - [-23.409027, 65.996518], - [-23.407163, 65.995387], - [-23.400743, 65.994417], - [-23.394962, 65.991277], - [-23.394259, 65.991549], - [-23.390857, 65.992866], - [-23.388892, 65.995506], - [-23.395976, 66.000397], - [-23.39925, 66.000373], - [-23.402048, 65.999695], - [-23.404072, 66.000058], - [-23.404132, 66.001656], - [-23.402542, 66.002913], - [-23.404268, 66.00317], - [-23.403426, 66.004299], - [-23.404099, 66.004847], - [-23.402837, 66.005566], - [-23.404394, 66.006439], - [-23.403931, 66.00661], - [-23.403342, 66.007175], - [-23.403664, 66.008077], - [-23.40372, 66.008236], - [-23.402837, 66.00863], - [-23.402079, 66.009349], - [-23.403257, 66.010136], - [-23.40372, 66.010957], - [-23.40553, 66.011591], - [-23.40692, 66.012327], - [-23.40713, 66.014483], - [-23.407677, 66.014808], - [-23.409613, 66.01426], - [-23.409892, 66.014349], - [-23.410126, 66.014471], - [-23.410314, 66.014591], - [-23.410455, 66.014756], - [-23.410437, 66.014869], - [-23.410275, 66.014926], - [-23.410126, 66.014892], - [-23.410116, 66.014775], - [-23.409982, 66.014731], - [-23.408034, 66.015318], - [-23.408351, 66.01592], - [-23.40915, 66.017545], - [-23.410329, 66.017853], - [-23.410427, 66.017986], - [-23.410167, 66.018114], - [-23.410276, 66.018467], - [-23.410846, 66.018476], - [-23.409816, 66.018676], - [-23.409824, 66.018743], - [-23.411381, 66.020146], - [-23.40873, 66.020248], - [-23.409319, 66.022677], - [-23.412981, 66.024251], - [-23.416643, 66.023755], - [-23.416433, 66.024285], - [-23.417637, 66.024913], - [-23.419924, 66.026326], - [-23.421442, 66.027518], - [-23.423462, 66.029211], - [-23.42603, 66.03034], - [-23.430395, 66.031015], - [-23.432962, 66.03166], - [-23.435013, 66.031736], - [-23.436875, 66.032008], - [-23.43926, 66.032629], - [-23.442716, 66.03437], - [-23.446164, 66.037155], - [-23.449273, 66.039693], - [-23.449525, 66.039847], - [-23.450198, 66.039926], - [-23.450946, 66.040283], - [-23.451616, 66.040406], - [-23.452716, 66.040505], - [-23.453572, 66.040532], - [-23.455028, 66.040546], - [-23.457676, 66.040622], - [-23.458982, 66.040897], - [-23.460209, 66.041412], - [-23.460688, 66.041734], - [-23.46138, 66.041933], - [-23.463048, 66.042281], - [-23.464863, 66.042797], - [-23.464877, 66.042812], - [-23.465349, 66.043299], - [-23.466105, 66.043738], - [-23.467369, 66.044332], - [-23.468275, 66.044968], - [-23.468731, 66.045237], - [-23.469322, 66.045497], - [-23.470388, 66.045866], - [-23.472143, 66.046399], - [-23.4761, 66.047748], - [-23.478524, 66.048344], - [-23.480217, 66.048669], - [-23.482177, 66.048861], - [-23.48476, 66.04938], - [-23.486328, 66.049656], - [-23.488457, 66.050018], - [-23.490001, 66.050355], - [-23.49025, 66.050415], - [-23.491786, 66.050785], - [-23.49309, 66.051141], - [-23.496148, 66.051395], - [-23.497698, 66.051431], - [-23.498746, 66.051492], - [-23.499675, 66.051484], - [-23.501099, 66.051289], - [-23.502456, 66.051242], - [-23.504616, 66.051175], - [-23.506745, 66.051181], - [-23.50783, 66.051204], - [-23.507971, 66.05106], - [-23.508174, 66.049363], - [-23.508148, 66.048086], - [-23.508229, 66.048012], - [-23.508379, 66.047999], - [-23.508476, 66.048027], - [-23.508519, 66.048081], - [-23.508536, 66.04924], - [-23.50865, 66.049304], - [-23.508778, 66.049373], - [-23.509135, 66.049396], - [-23.510237, 66.049493], - [-23.510732, 66.049535], - [-23.511113, 66.049544], - [-23.511305, 66.049465], - [-23.511537, 66.048751], - [-23.511472, 66.048472], - [-23.511264, 66.048196], - [-23.510942, 66.047994], - [-23.510602, 66.047783], - [-23.510272, 66.047394], - [-23.509815, 66.046842], - [-23.509594, 66.046869], - [-23.508748, 66.046982], - [-23.507709, 66.047145], - [-23.507529, 66.046988], - [-23.507481, 66.046946], - [-23.50744, 66.046844], - [-23.507401, 66.046708], - [-23.507447, 66.046632], - [-23.507631, 66.04659], - [-23.507977, 66.046521], - [-23.507748, 66.046122], - [-23.507819, 66.045762], - [-23.508049, 66.045489], - [-23.508471, 66.045321], - [-23.509274, 66.045179], - [-23.510249, 66.045154], - [-23.511257, 66.045271], - [-23.512092, 66.045666], - [-23.518165, 66.051204], - [-23.518322, 66.051328], - [-23.518399, 66.05138], - [-23.518433, 66.051435], - [-23.518482, 66.051476], - [-23.51852, 66.05151], - [-23.518611, 66.051572], - [-23.518682, 66.051609], - [-23.51869, 66.05164], - [-23.518686, 66.051671], - [-23.518678, 66.051702], - [-23.518715, 66.051749], - [-23.518763, 66.051798], - [-23.518782, 66.051846], - [-23.51886, 66.051936], - [-23.51892, 66.052006], - [-23.518955, 66.052078], - [-23.518975, 66.052168], - [-23.518964, 66.052261], - [-23.518939, 66.052336], - [-23.518928, 66.052373], - [-23.518948, 66.052404], - [-23.518924, 66.052466], - [-23.518885, 66.052551], - [-23.518793, 66.052671], - [-23.518743, 66.052767], - [-23.51872, 66.052847], - [-23.518654, 66.05295], - [-23.518603, 66.053076], - [-23.518476, 66.053307], - [-23.518359, 66.053516], - [-23.51828, 66.053729], - [-23.518219, 66.053891], - [-23.518187, 66.054014], - [-23.518192, 66.05411], - [-23.518162, 66.054191], - [-23.518231, 66.054319], - [-23.518262, 66.05441], - [-23.518328, 66.054541], - [-23.518471, 66.054796], - [-23.518584, 66.054947], - [-23.518713, 66.055053], - [-23.518906, 66.055175], - [-23.51916, 66.0553], - [-23.519356, 66.055365], - [-23.519448, 66.055379], - [-23.519527, 66.055387], - [-23.519712, 66.055464], - [-23.520306, 66.055629], - [-23.520542, 66.055694], - [-23.520847, 66.055778], - [-23.520951, 66.05579], - [-23.521016, 66.055785], - [-23.521122, 66.055794], - [-23.5212, 66.055782], - [-23.521271, 66.055771], - [-23.521327, 66.055762], - [-23.521424, 66.05576], - [-23.521513, 66.055767], - [-23.521577, 66.055785], - [-23.521588, 66.055804], - [-23.521662, 66.055837], - [-23.521756, 66.055898], - [-23.521885, 66.05596], - [-23.522054, 66.056044], - [-23.522213, 66.056099], - [-23.522362, 66.056119], - [-23.52252, 66.056118], - [-23.522734, 66.056129], - [-23.522941, 66.056171], - [-23.523081, 66.056208], - [-23.523183, 66.056269], - [-23.523381, 66.056336], - [-23.523811, 66.056456], - [-23.524158, 66.056554], - [-23.525047, 66.056979], - [-23.533564, 66.060927], - [-23.538603, 66.062812], - [-23.540505, 66.063479], - [-23.542646, 66.06367], - [-23.549903, 66.066863], - [-23.55116, 66.06721], - [-23.554319, 66.068512], - [-23.556278, 66.069409], - [-23.55713, 66.06965], - [-23.55839, 66.06968], - [-23.55801, 66.07018], - [-23.5615, 66.07231], - [-23.56488, 66.07289], - [-23.56482, 66.0734], - [-23.5667, 66.07344], - [-23.57642, 66.07622], - [-23.57551, 66.07826], - [-23.57765, 66.07881], - [-23.58275, 66.08071], - [-23.58632, 66.08232], - [-23.58622, 66.08309], - [-23.60824, 66.08819], - [-23.61378, 66.08921], - [-23.61684, 66.08991], - [-23.62108, 66.09129], - [-23.62098, 66.09205], - [-23.6228, 66.0926], - [-23.62587, 66.09318], - [-23.62943, 66.09492], - [-23.63057, 66.09585], - [-23.6352, 66.09902], - [-23.64076, 66.09991], - [-23.64197, 66.10032], - [-23.64695, 66.10081], - [-23.64625, 66.10131], - [-23.6475, 66.10146], - [-23.64951, 66.10291], - [-23.65092, 66.10422], - [-23.65264, 66.10554], - [-23.65488, 66.10776], - [-23.65605, 66.10843], - [-23.6573, 66.10846], - [-23.6605, 66.11057], - [-23.66043, 66.11109], - [-23.66127, 66.11187], - [-23.66426, 66.11322], - [-23.66567, 66.11683], - [-23.66436, 66.11719], - [-23.66181, 66.11739], - [-23.6605, 66.11774], - [-23.65858, 66.11796], - [-23.65771, 66.11973], - [-23.65256, 66.12051], - [-23.65197, 66.12024], - [-23.64563, 66.12036], - [-23.64172, 66.1213], - [-23.62547, 66.11992], - [-23.62352, 66.12039], - [-23.618066, 66.120523], - [-23.60134, 66.12093], - [-23.59742, 66.12187], - [-23.583, 66.12104], - [-23.57267, 66.12273], - [-23.57061, 66.12396], - [-23.569552, 66.124556], - [-23.56369, 66.12786], - [-23.559812, 66.129832], - [-23.556543, 66.130689], - [-23.551417, 66.132263], - [-23.550149, 66.132641], - [-23.548103, 66.132928], - [-23.547241, 66.132959], - [-23.547122, 66.132964], - [-23.546658, 66.132981], - [-23.544678, 66.132772], - [-23.543033, 66.132553], - [-23.540983, 66.132349], - [-23.539778, 66.132331], - [-23.538352, 66.132326], - [-23.537539, 66.132286], - [-23.536459, 66.132129], - [-23.534996, 66.131804], - [-23.533999, 66.131561], - [-23.532341, 66.131217], - [-23.531429, 66.131124], - [-23.530481, 66.131098], - [-23.529816, 66.131194], - [-23.528778, 66.13122], - [-23.527741, 66.131261], - [-23.52676, 66.13123], - [-23.526084, 66.131151], - [-23.525593, 66.131068], - [-23.525328, 66.131048], - [-23.525161, 66.130897], - [-23.524987, 66.13074], - [-23.524807, 66.130232], - [-23.52463, 66.129698], - [-23.52325, 66.129783], - [-23.523102, 66.129781], - [-23.523045, 66.129705], - [-23.523047, 66.129635], - [-23.523334, 66.129606], - [-23.523497, 66.129467], - [-23.523519, 66.129284], - [-23.523708, 66.129184], - [-23.523549, 66.129109], - [-23.523216, 66.129075], - [-23.523043, 66.1291], - [-23.521545, 66.129348], - [-23.521508, 66.12954], - [-23.521649, 66.129721], - [-23.522589, 66.12969], - [-23.522617, 66.129773], - [-23.522306, 66.129896], - [-23.522398, 66.13092], - [-23.521875, 66.130943], - [-23.521847, 66.129962], - [-23.5214, 66.129834], - [-23.521024, 66.129724], - [-23.520768, 66.129624], - [-23.520603, 66.129444], - [-23.519535, 66.129358], - [-23.517236, 66.128665], - [-23.514842, 66.127715], - [-23.5123, 66.127013], - [-23.510584, 66.126567], - [-23.50636, 66.125538], - [-23.500657, 66.124221], - [-23.497785, 66.123636], - [-23.49452, 66.123143], - [-23.487874, 66.122018], - [-23.484768, 66.121571], - [-23.478613, 66.120398], - [-23.476666, 66.119784], - [-23.470845, 66.118094], - [-23.469487, 66.117601], - [-23.468282, 66.116988], - [-23.466958, 66.116241], - [-23.46559, 66.115657], - [-23.46415, 66.11491], - [-23.46268, 66.11411], - [-23.461913, 66.113642], - [-23.45908, 66.11274], - [-23.457474, 66.112086], - [-23.455643, 66.111388], - [-23.453777, 66.110465], - [-23.452498, 66.109639], - [-23.44449, 66.10421], - [-23.441906, 66.102696], - [-23.438604, 66.101093], - [-23.434572, 66.099545], - [-23.428068, 66.097716], - [-23.422492, 66.096833], - [-23.399111, 66.092105], - [-23.39463, 66.09078], - [-23.391933, 66.090061], - [-23.387013, 66.088511], - [-23.384188, 66.087173], - [-23.382504, 66.08631], - [-23.379274, 66.08495], - [-23.3748, 66.08377], - [-23.370978, 66.083325], - [-23.367764, 66.082879], - [-23.363911, 66.082344], - [-23.363183, 66.082699], - [-23.363079, 66.083513], - [-23.363898, 66.084072], - [-23.365813, 66.08538], - [-23.366061, 66.085731], - [-23.367264, 66.086269], - [-23.368197, 66.086732], - [-23.368722, 66.086948], - [-23.368438, 66.087081], - [-23.368365, 66.087202], - [-23.368588, 66.087242], - [-23.368856, 66.087157], - [-23.369167, 66.087125], - [-23.36971, 66.0873], - [-23.370662, 66.088246], - [-23.371988, 66.088678], - [-23.373482, 66.089261], - [-23.375032, 66.089775], - [-23.376121, 66.090763], - [-23.377247, 66.091099], - [-23.37841, 66.091606], - [-23.379573, 66.092127], - [-23.38222, 66.092629], - [-23.383594, 66.092784], - [-23.384237, 66.093576], - [-23.385301, 66.093632], - [-23.385944, 66.094278], - [-23.386526, 66.094725], - [-23.388605, 66.095286], - [-23.390498, 66.095953], - [-23.391698, 66.096434], - [-23.395607, 66.09673], - [-23.395581, 66.097305], - [-23.396834, 66.0979], - [-23.399003, 66.098525], - [-23.399533, 66.098764], - [-23.400545, 66.098847], - [-23.401364, 66.099204], - [-23.403147, 66.099404], - [-23.403665, 66.09976], - [-23.404592, 66.099853], - [-23.404893, 66.100053], - [-23.405677, 66.100048], - [-23.406797, 66.100107], - [-23.407014, 66.100438], - [-23.409833, 66.100546], - [-23.409977, 66.100941], - [-23.41129, 66.101156], - [-23.413375, 66.101556], - [-23.414953, 66.101546], - [-23.421048, 66.10284], - [-23.423265, 66.103508], - [-23.42494, 66.104357], - [-23.427313, 66.105489], - [-23.428409, 66.105719], - [-23.429337, 66.106109], - [-23.429698, 66.106622], - [-23.430903, 66.107173], - [-23.432107, 66.1073], - [-23.434481, 66.108344], - [-23.434505, 66.108671], - [-23.435938, 66.109056], - [-23.43677, 66.109417], - [-23.438095, 66.109778], - [-23.439119, 66.110237], - [-23.440673, 66.11133], - [-23.442865, 66.11252], - [-23.448407, 66.117486], - [-23.450045, 66.11772], - [-23.450599, 66.118168], - [-23.451575, 66.118359], - [-23.45184, 66.119071], - [-23.45125, 66.120139], - [-23.452202, 66.120973], - [-23.4549, 66.122796], - [-23.456129, 66.123489], - [-23.456237, 66.124157], - [-23.456177, 66.12461], - [-23.456912, 66.124981], - [-23.457225, 66.124796], - [-23.457635, 66.124859], - [-23.459056, 66.125654], - [-23.460249, 66.126624], - [-23.46296, 66.127838], - [-23.464176, 66.128628], - [-23.465212, 66.128662], - [-23.465911, 66.129145], - [-23.46714, 66.129554], - [-23.468513, 66.12993], - [-23.469742, 66.130315], - [-23.471561, 66.131163], - [-23.473525, 66.13184], - [-23.475079, 66.13245], - [-23.476669, 66.133025], - [-23.479633, 66.133693], - [-23.480813, 66.133644], - [-23.484837, 66.134526], - [-23.486078, 66.135135], - [-23.487198, 66.135248], - [-23.488933, 66.13514], - [-23.490113, 66.135481], - [-23.500052, 66.135964], - [-23.50163, 66.135243], - [-23.502377, 66.13514], - [-23.50304, 66.135243], - [-23.503812, 66.136008], - [-23.508719, 66.136649], - [-23.51015, 66.137014], - [-23.515448, 66.1376], - [-23.516453, 66.137565], - [-23.518736, 66.137738], - [-23.519247, 66.137131], - [-23.52211, 66.13629], - [-23.523834, 66.136565], - [-23.522575, 66.138072], - [-23.523455, 66.139909], - [-23.524427, 66.140584], - [-23.5451, 66.14426], - [-23.57469, 66.14517], - [-23.57857, 66.14449], - [-23.59626, 66.14463], - [-23.60017, 66.14612], - [-23.60038, 66.14689], - [-23.60164, 66.14692], - [-23.60354, 66.14927], - [-23.60369, 66.15055], - [-23.60271, 66.15309], - [-23.59683, 66.15449], - [-23.5961, 66.15525], - [-23.58628, 66.15772], - [-23.58377, 66.15753], - [-23.58097, 66.15952], - [-23.57971, 66.15949], - [-23.57964, 66.16], - [-23.57775, 66.15996], - [-23.57264, 66.16266], - [-23.57135, 66.1652], - [-23.56813, 66.16564], - [-23.55862, 66.17029], - [-23.55478, 66.17072], - [-23.5518, 66.17398], - [-23.544095, 66.176211], - [-23.54248, 66.17735], - [-23.539951, 66.178697], - [-23.5389, 66.179163], - [-23.537795, 66.179679], - [-23.53697, 66.18056], - [-23.53371, 66.18125], - [-23.532679, 66.181373], - [-23.53178, 66.18147], - [-23.530412, 66.181332], - [-23.528418, 66.181465], - [-23.526144, 66.181566], - [-23.523881, 66.181625], - [-23.522587, 66.181601], - [-23.520213, 66.181509], - [-23.518801, 66.181838], - [-23.51658, 66.181936], - [-23.514293, 66.181539], - [-23.511287, 66.180472], - [-23.507228, 66.180028], - [-23.503464, 66.180205], - [-23.500676, 66.17975], - [-23.494661, 66.179315], - [-23.492583, 66.178789], - [-23.490777, 66.178694], - [-23.48723, 66.1792], - [-23.484481, 66.179862], - [-23.481955, 66.180632], - [-23.481419, 66.180809], - [-23.479836, 66.181334], - [-23.478754, 66.181865], - [-23.478197, 66.181992], - [-23.47794, 66.182104], - [-23.47702, 66.182868], - [-23.476571, 66.183515], - [-23.476811, 66.184056], - [-23.47817, 66.185205], - [-23.479363, 66.186087], - [-23.479928, 66.18685], - [-23.480593, 66.188911], - [-23.482037, 66.190597], - [-23.481474, 66.192566], - [-23.479344, 66.194275], - [-23.477965, 66.195008], - [-23.476107, 66.195248], - [-23.474583, 66.195701], - [-23.473132, 66.196583], - [-23.470337, 66.197232], - [-23.467123, 66.197226], - [-23.463652, 66.197052], - [-23.45842, 66.197492], - [-23.452016, 66.197425], - [-23.447664, 66.196986], - [-23.445027, 66.197121], - [-23.439419, 66.196614], - [-23.437076, 66.196665], - [-23.435641, 66.196487], - [-23.433183, 66.196395], - [-23.428479, 66.196818], - [-23.422721, 66.196589], - [-23.421234, 66.195894], - [-23.42, 66.194993], - [-23.41682, 66.193827], - [-23.413807, 66.193354], - [-23.409028, 66.193042], - [-23.403957, 66.192342], - [-23.398952, 66.192327], - [-23.396232, 66.192001], - [-23.393456, 66.191339], - [-23.391919, 66.191293], - [-23.389388, 66.191562], - [-23.385181, 66.191344], - [-23.383339, 66.191091], - [-23.38154, 66.190584], - [-23.380242, 66.190719], - [-23.373083, 66.190211], - [-23.370225, 66.190041], - [-23.368953, 66.190297], - [-23.366318, 66.190432], - [-23.364768, 66.190297], - [-23.35983, 66.190551], - [-23.355831, 66.190867], - [-23.354285, 66.190879], - [-23.352524, 66.190562], - [-23.348616, 66.18985], - [-23.344689, 66.188974], - [-23.342604, 66.188734], - [-23.339473, 66.188201], - [-23.336476, 66.187476], - [-23.333398, 66.186737], - [-23.330543, 66.186465], - [-23.326611, 66.18604], - [-23.323931, 66.18563], - [-23.321738, 66.185326], - [-23.319069, 66.184644], - [-23.315539, 66.184445], - [-23.313661, 66.184684], - [-23.309977, 66.184514], - [-23.30818, 66.18431], - [-23.305012, 66.183276], - [-23.302792, 66.182694], - [-23.300304, 66.181698], - [-23.298147, 66.181117], - [-23.288981, 66.179097], - [-23.281802, 66.178826], - [-23.279026, 66.178475], - [-23.27735, 66.17837], - [-23.275398, 66.178339], - [-23.270894, 66.178], - [-23.268847, 66.177232], - [-23.268546, 66.176574], - [-23.268001, 66.175752], - [-23.265826, 66.175054], - [-23.262783, 66.174319], - [-23.260026, 66.173768], - [-23.255002, 66.171677], - [-23.251869, 66.170781], - [-23.250096, 66.169522], - [-23.24951, 66.16541], - [-23.248482, 66.163441], - [-23.246954, 66.161749], - [-23.246053, 66.160784], - [-23.245061, 66.159744], - [-23.244751, 66.159598], - [-23.24371, 66.159279], - [-23.243137, 66.1591], - [-23.242386, 66.158927], - [-23.241187, 66.158769], - [-23.240354, 66.158668], - [-23.239836, 66.158481], - [-23.238959, 66.158161], - [-23.238728, 66.157998], - [-23.238779, 66.157889], - [-23.238931, 66.157771], - [-23.23924, 66.157689], - [-23.239495, 66.15767], - [-23.23987, 66.157784], - [-23.240131, 66.157875], - [-23.240162, 66.157969], - [-23.240474, 66.158121], - [-23.240856, 66.158207], - [-23.241186, 66.157776], - [-23.245538, 66.158488], - [-23.24583, 66.15815], - [-23.246757, 66.157083], - [-23.244233, 66.156996], - [-23.24425, 66.15684], - [-23.246868, 66.156926], - [-23.247261, 66.156532], - [-23.247587, 66.156206], - [-23.248113, 66.155677], - [-23.248341, 66.155415], - [-23.248391, 66.155285], - [-23.248253, 66.155057], - [-23.247631, 66.154771], - [-23.246703, 66.154549], - [-23.246, 66.154432], - [-23.245773, 66.154395], - [-23.245195, 66.154897], - [-23.244763, 66.155326], - [-23.244324, 66.155761], - [-23.244165, 66.15592], - [-23.243735, 66.155858], - [-23.243366, 66.156017], - [-23.242748, 66.15634], - [-23.242534, 66.156631], - [-23.242465, 66.156878], - [-23.242448, 66.157048], - [-23.242542, 66.157201], - [-23.242448, 66.157256], - [-23.242251, 66.157246], - [-23.242105, 66.157041], - [-23.242233, 66.156614], - [-23.242474, 66.156295], - [-23.243152, 66.155899], - [-23.243667, 66.155625], - [-23.244216, 66.15533], - [-23.244808, 66.154779], - [-23.245482, 66.154217], - [-23.245902, 66.153846], - [-23.245081, 66.153485], - [-23.243605, 66.152874], - [-23.24175, 66.15228], - [-23.239749, 66.151659], - [-23.237399, 66.151041], - [-23.232269, 66.150258], - [-23.22306, 66.14965], - [-23.222402, 66.148905], - [-23.222032, 66.148933], - [-23.22124, 66.1491], - [-23.219208, 66.149942], - [-23.21857, 66.15006], - [-23.217287, 66.150701], - [-23.213097, 66.152537], - [-23.209051, 66.152792], - [-23.201062, 66.152287], - [-23.195568, 66.150935], - [-23.19109, 66.150371], - [-23.18706, 66.14928], - [-23.17515, 66.146306], - [-23.17107, 66.1462], - [-23.16625, 66.14467], - [-23.16632, 66.14416], - [-23.164178, 66.143095], - [-23.1614, 66.142427], - [-23.158179, 66.141903], - [-23.156189, 66.142141], - [-23.15546, 66.141644], - [-23.154188, 66.141639], - [-23.15289, 66.141], - [-23.151724, 66.140319], - [-23.14745, 66.138921], - [-23.142705, 66.135299], - [-23.140106, 66.134484], - [-23.139035, 66.134472], - [-23.138945, 66.133921], - [-23.137924, 66.133727], - [-23.137545, 66.133098], - [-23.135841, 66.132727], - [-23.13267, 66.12847], - [-23.13142, 66.12844], - [-23.13153, 66.12767], - [-23.12796, 66.12617], - [-23.12393, 66.12364], - [-23.11971, 66.1202], - [-23.12045, 66.11536], - [-23.120685, 66.112731], - [-23.120093, 66.11141], - [-23.119889, 66.111306], - [-23.117544, 66.1101], - [-23.114823, 66.10937], - [-23.10853, 66.10866], - [-23.107871, 66.10816], - [-23.107699, 66.107482], - [-23.108214, 66.105188], - [-23.107098, 66.104858], - [-23.105854, 66.104545], - [-23.107098, 66.102911], - [-23.108643, 66.102285], - [-23.108214, 66.100633], - [-23.108618, 66.098598], - [-23.11186, 66.09517], - [-23.11229, 66.09442], - [-23.111319, 66.093701], - [-23.118064, 66.086232], - [-23.12398, 66.079602], - [-23.124624, 66.078833], - [-23.125044, 66.07823], - [-23.124744, 66.077809], - [-23.124015, 66.077423], - [-23.123156, 66.07719], - [-23.122555, 66.076922], - [-23.121843, 66.076455], - [-23.121191, 66.0761], - [-23.118479, 66.075135], - [-23.112436, 66.07375], - [-23.112639, 66.073574], - [-23.1153, 66.07127], - [-23.11494, 66.07092], - [-23.115638, 66.07053], - [-23.117208, 66.070063], - [-23.11845, 66.06915], - [-23.11971, 66.068204], - [-23.117767, 66.067793], - [-23.118787, 66.066963], - [-23.120092, 66.06595], - [-23.123222, 66.065424], - [-23.125454, 66.063474], - [-23.127513, 66.063613], - [-23.128735, 66.064249], - [-23.12903, 66.06538], - [-23.127301, 66.068227], - [-23.128641, 66.068525], - [-23.126324, 66.070512], - [-23.125533, 66.070367], - [-23.124676, 66.07021], - [-23.124289, 66.070088], - [-23.123079, 66.070471], - [-23.122221, 66.071014], - [-23.121972, 66.072197], - [-23.122195, 66.073075], - [-23.122659, 66.07366], - [-23.1238, 66.074074], - [-23.125151, 66.074487], - [-23.12568, 66.074534], - [-23.126744, 66.074297], - [-23.129405, 66.073619], - [-23.133516, 66.072606], - [-23.134001, 66.072524], - [-23.134772, 66.072315], - [-23.135787, 66.072033], - [-23.137065, 66.07167], - [-23.13848, 66.071262], - [-23.13964, 66.070914], - [-23.140496, 66.070698], - [-23.141336, 66.070495], - [-23.142372, 66.070292], - [-23.143851, 66.070047], - [-23.146455, 66.069736], - [-23.147622, 66.0696], - [-23.14858, 66.069447], - [-23.149291, 66.069293], - [-23.149977, 66.069148], - [-23.150498, 66.068978], - [-23.150807, 66.068863], - [-23.151168, 66.06874], - [-23.151055, 66.068689], - [-23.151023, 66.0686], - [-23.151064, 66.068515], - [-23.151226, 66.068451], - [-23.151434, 66.06844], - [-23.151869, 66.068455], - [-23.152174, 66.068484], - [-23.152376, 66.068446], - [-23.153648, 66.068052], - [-23.154203, 66.067897], - [-23.155063, 66.067692], - [-23.156052, 66.067487], - [-23.156886, 66.067353], - [-23.157591, 66.067238], - [-23.158336, 66.067135], - [-23.15916, 66.067022], - [-23.16004, 66.066909], - [-23.160765, 66.066814], - [-23.161172, 66.066757], - [-23.161433, 66.066709], - [-23.161623, 66.066675], - [-23.161682, 66.066638], - [-23.161835, 66.066611], - [-23.16211, 66.066581], - [-23.162354, 66.066561], - [-23.162582, 66.0665], - [-23.162824, 66.066439], - [-23.163063, 66.066399], - [-23.16319, 66.066365], - [-23.163353, 66.066337], - [-23.163427, 66.066314], - [-23.163634, 66.066268], - [-23.163774, 66.066226], - [-23.163898, 66.066202], - [-23.164128, 66.066129], - [-23.164428, 66.066065], - [-23.164734, 66.065976], - [-23.165082, 66.06587], - [-23.165235, 66.065814], - [-23.16533, 66.065753], - [-23.165416, 66.065711], - [-23.16548, 66.065695], - [-23.165624, 66.065691], - [-23.165761, 66.065658], - [-23.165901, 66.065624], - [-23.166131, 66.065579], - [-23.166367, 66.065535], - [-23.166549, 66.06548], - [-23.166746, 66.065446], - [-23.166884, 66.06543], - [-23.167043, 66.065401], - [-23.167171, 66.065375], - [-23.167327, 66.06533], - [-23.167525, 66.065294], - [-23.167783, 66.06526], - [-23.168076, 66.065228], - [-23.168265, 66.065193], - [-23.168529, 66.065126], - [-23.168843, 66.065076], - [-23.169225, 66.065068], - [-23.169556, 66.065047], - [-23.169805, 66.065005], - [-23.170098, 66.064894], - [-23.170443, 66.06478], - [-23.170883, 66.064698], - [-23.171242, 66.064631], - [-23.171527, 66.064516], - [-23.172006, 66.064354], - [-23.172376, 66.064162], - [-23.172688, 66.063955], - [-23.172943, 66.063688], - [-23.173109, 66.06352], - [-23.173256, 66.063489], - [-23.17332, 66.063412], - [-23.173562, 66.063196], - [-23.173725, 66.06316], - [-23.173737, 66.063144], - [-23.173773, 66.063095], - [-23.173811, 66.063043], - [-23.173784, 66.062966], - [-23.173853, 66.062808], - [-23.173824, 66.062685], - [-23.173757, 66.062575], - [-23.173563, 66.062198], - [-23.173175, 66.06177], - [-23.172868, 66.061478], - [-23.172521, 66.061199], - [-23.171957, 66.060811], - [-23.171471, 66.060508], - [-23.170847, 66.060247], - [-23.170505, 66.060095], - [-23.170234, 66.060018], - [-23.169986, 66.059901], - [-23.169747, 66.059826], - [-23.169521, 66.059808], - [-23.16912, 66.059837], - [-23.16866, 66.059888], - [-23.168227, 66.059905], - [-23.167807, 66.059884], - [-23.167492, 66.059797], - [-23.167101, 66.059697], - [-23.166774, 66.059601], - [-23.166657, 66.059504], - [-23.166531, 66.059429], - [-23.166345, 66.059405], - [-23.166188, 66.059357], - [-23.166084, 66.059286], - [-23.166057, 66.059187], - [-23.166138, 66.059068], - [-23.166305, 66.058984], - [-23.166522, 66.058924], - [-23.166711, 66.058891], - [-23.166977, 66.058874], - [-23.167004, 66.058819], - [-23.166892, 66.058795], - [-23.166869, 66.058724], - [-23.166756, 66.058581], - [-23.166639, 66.05847], - [-23.166544, 66.0584], - [-23.166423, 66.058391], - [-23.166337, 66.058373], - [-23.16631, 66.058321], - [-23.166286, 66.058249], - [-23.166075, 66.058107], - [-23.165803, 66.057926], - [-23.165484, 66.057684], - [-23.165212, 66.057516], - [-23.164641, 66.057216], - [-23.163599, 66.056734], - [-23.163013, 66.056481], - [-23.162165, 66.05624], - [-23.161553, 66.056043], - [-23.16103, 66.055857], - [-23.160915, 66.055645], - [-23.160928, 66.055437], - [-23.160928, 66.055246], - [-23.161234, 66.055096], - [-23.161554, 66.055055], - [-23.161757, 66.054977], - [-23.161859, 66.054837], - [-23.16177, 66.054625], - [-23.161326, 66.054337], - [-23.160921, 66.054208], - [-23.160609, 66.054086], - [-23.159972, 66.053876], - [-23.158923, 66.053657], - [-23.157726, 66.053441], - [-23.156865, 66.05332], - [-23.155934, 66.053218], - [-23.155857, 66.053157], - [-23.155969, 66.053059], - [-23.156003, 66.052986], - [-23.156239, 66.052962], - [-23.156669, 66.053004], - [-23.15784, 66.053162], - [-23.159083, 66.05337], - [-23.160009, 66.053548], - [-23.160577, 66.053656], - [-23.161186, 66.053787], - [-23.16177, 66.053933], - [-23.162306, 66.05405], - [-23.162582, 66.054112], - [-23.162822, 66.054081], - [-23.16302, 66.053954], - [-23.163192, 66.053837], - [-23.163275, 66.053646], - [-23.163362, 66.053205], - [-23.163425, 66.052729], - [-23.16335, 66.052238], - [-23.163299, 66.051744], - [-23.1631, 66.051356], - [-23.163091, 66.051176], - [-23.163271, 66.05085], - [-23.16347, 66.050645], - [-23.163686, 66.050458], - [-23.163804, 66.05033], - [-23.16393, 66.050228], - [-23.164056, 66.050144], - [-23.164156, 66.050067], - [-23.16429, 66.049893], - [-23.164525, 66.049521], - [-23.164706, 66.048994], - [-23.16494, 66.048496], - [-23.165121, 66.047932], - [-23.165329, 66.047364], - [-23.165446, 66.046859], - [-23.165572, 66.0465], - [-23.1655, 66.046324], - [-23.165355, 66.046123], - [-23.165238, 66.04598], - [-23.16494, 66.04583], - [-23.164446, 66.045648], - [-23.164128, 66.045551], - [-23.163992, 66.045563], - [-23.163842, 66.045549], - [-23.163761, 66.045487], - [-23.163752, 66.045437], - [-23.163567, 66.045383], - [-23.163206, 66.045324], - [-23.162985, 66.045273], - [-23.162741, 66.045201], - [-23.162543, 66.045123], - [-23.162236, 66.045013], - [-23.161912, 66.044864], - [-23.16151, 66.044754], - [-23.161285, 66.044674], - [-23.16119, 66.044604], - [-23.161068, 66.044557], - [-23.160838, 66.044529], - [-23.160536, 66.044542], - [-23.160337, 66.04456], - [-23.160166, 66.044533], - [-23.159864, 66.04445], - [-23.159697, 66.044386], - [-23.159564, 66.044379], - [-23.159427, 66.044381], - [-23.159296, 66.044447], - [-23.158948, 66.044524], - [-23.158687, 66.04456], - [-23.158186, 66.044628], - [-23.157712, 66.044723], - [-23.157361, 66.044817], - [-23.157103, 66.044868], - [-23.156833, 66.044974], - [-23.156672, 66.045065], - [-23.156373, 66.045123], - [-23.156093, 66.045203], - [-23.155637, 66.04547], - [-23.155385, 66.045657], - [-23.155322, 66.045725], - [-23.155326, 66.045751], - [-23.155444, 66.04574], - [-23.155547, 66.045721], - [-23.15561, 66.045747], - [-23.155692, 66.045811], - [-23.15575, 66.045895], - [-23.155642, 66.046055], - [-23.155471, 66.046229], - [-23.155251, 66.046476], - [-23.1552, 66.04658], - [-23.155164, 66.046655], - [-23.154916, 66.046904], - [-23.154902, 66.047022], - [-23.154916, 66.047135], - [-23.154929, 66.047199], - [-23.154889, 66.047267], - [-23.154803, 66.047375], - [-23.154681, 66.04747], - [-23.15451, 66.047575], - [-23.154366, 66.047646], - [-23.154163, 66.047727], - [-23.15396, 66.047825], - [-23.153815, 66.047921], - [-23.15371, 66.04807], - [-23.153666, 66.048186], - [-23.153608, 66.048285], - [-23.15359, 66.048402], - [-23.153629, 66.048474], - [-23.153712, 66.048525], - [-23.153725, 66.048567], - [-23.153662, 66.048624], - [-23.153698, 66.048765], - [-23.153829, 66.048988], - [-23.153829, 66.049153], - [-23.153833, 66.049232], - [-23.153743, 66.049318], - [-23.153653, 66.049567], - [-23.15357, 66.0499], - [-23.153263, 66.05012], - [-23.152541, 66.050252], - [-23.151928, 66.050266], - [-23.151213, 66.050376], - [-23.150394, 66.050669], - [-23.149781, 66.050991], - [-23.149435, 66.051125], - [-23.149078, 66.051268], - [-23.1489, 66.051431], - [-23.148689, 66.051488], - [-23.148415, 66.051509], - [-23.148064, 66.051599], - [-23.147841, 66.051752], - [-23.147681, 66.051905], - [-23.147656, 66.052019], - [-23.147496, 66.052135], - [-23.147279, 66.052158], - [-23.147114, 66.052226], - [-23.14705, 66.052347], - [-23.146922, 66.052446], - [-23.146909, 66.052549], - [-23.147037, 66.052637], - [-23.14765, 66.052636], - [-23.148699, 66.052621], - [-23.149722, 66.052624], - [-23.150634, 66.052626], - [-23.151706, 66.052671], - [-23.152703, 66.052708], - [-23.155381, 66.052874], - [-23.155433, 66.052943], - [-23.155348, 66.053003], - [-23.155312, 66.053093], - [-23.155276, 66.053133], - [-23.155149, 66.053152], - [-23.154959, 66.053139], - [-23.153435, 66.053025], - [-23.151876, 66.052935], - [-23.150828, 66.052903], - [-23.14971, 66.05291], - [-23.148582, 66.052908], - [-23.147842, 66.052936], - [-23.147337, 66.052941], - [-23.147108, 66.052941], - [-23.146999, 66.052969], - [-23.146926, 66.05309], - [-23.146976, 66.053154], - [-23.147346, 66.053212], - [-23.147414, 66.053236], - [-23.147346, 66.053249], - [-23.147184, 66.05323], - [-23.146963, 66.05321], - [-23.146855, 66.053252], - [-23.14679, 66.053303], - [-23.146742, 66.053368], - [-23.146626, 66.053397], - [-23.146516, 66.053399], - [-23.146421, 66.053366], - [-23.146395, 66.053324], - [-23.146183, 66.053256], - [-23.145991, 66.053249], - [-23.145883, 66.053313], - [-23.145848, 66.053387], - [-23.145924, 66.053468], - [-23.146096, 66.053479], - [-23.146225, 66.053525], - [-23.146288, 66.053605], - [-23.146191, 66.053661], - [-23.146058, 66.053712], - [-23.146141, 66.053795], - [-23.146477, 66.053928], - [-23.14664, 66.054047], - [-23.146916, 66.054165], - [-23.147089, 66.054226], - [-23.147234, 66.054245], - [-23.147445, 66.054203], - [-23.147655, 66.054171], - [-23.147947, 66.054193], - [-23.148147, 66.054228], - [-23.148319, 66.054302], - [-23.148331, 66.054405], - [-23.148428, 66.054483], - [-23.149249, 66.05431], - [-23.150434, 66.055235], - [-23.149295, 66.055517], - [-23.149367, 66.055647], - [-23.147771, 66.055935], - [-23.147397, 66.05607], - [-23.147069, 66.056217], - [-23.146531, 66.056368], - [-23.145834, 66.056533], - [-23.144981, 66.056785], - [-23.144318, 66.056832], - [-23.143413, 66.056975], - [-23.143056, 66.057119], - [-23.142332, 66.057113], - [-23.141044, 66.057341], - [-23.138606, 66.057955], - [-23.134229, 66.059034], - [-23.132622, 66.059416], - [-23.127295, 66.060972], - [-23.125063, 66.06139], - [-23.123346, 66.061808], - [-23.1206, 66.062505], - [-23.115278, 66.06341], - [-23.112703, 66.064733], - [-23.109098, 66.066544], - [-23.099485, 66.070443], - [-23.085135, 66.077548], - [-23.07182, 66.08468], - [-23.0653, 66.0881], - [-23.06211, 66.09032], - [-23.05716, 66.09378], - [-23.05637, 66.09478], - [-23.054483, 66.095787], - [-23.053493, 66.096021], - [-23.04956, 66.09794], - [-23.0476, 66.0984], - [-23.04493, 66.09936], - [-23.04036, 66.10026], - [-23.0318, 66.09851], - [-23.02889, 66.0969], - [-23.0265, 66.09606], - [-23.01947, 66.09392], - [-23.01497, 66.09308], - [-23.01193, 66.09236], - [-23.01071, 66.09207], - [-23.00953, 66.09153], - [-23.00659, 66.09017], - [-23.00482, 66.08936], - [-23.002871, 66.088747], - [-23.000873, 66.087741], - [-22.99953, 66.08692], - [-22.996843, 66.084793], - [-22.994268, 66.083541], - [-22.99025, 66.07976], - [-22.987745, 66.076093], - [-22.986028, 66.071638], - [-22.984655, 66.059311], - [-22.9862, 66.055967], - [-22.985604, 66.049068], - [-22.98414, 66.046421], - [-22.98517, 66.04404], - [-22.98411, 66.04273], - [-22.983896, 66.041609], - [-22.984583, 66.039936], - [-22.984568, 66.039762], - [-22.984454, 66.038472], - [-22.983252, 66.037374], - [-22.98381, 66.0372], - [-22.984877, 66.038021], - [-22.986042, 66.0372], - [-22.987372, 66.037095], - [-22.988374, 66.035552], - [-22.988402, 66.035509], - [-22.985312, 66.035666], - [-22.985269, 66.036345], - [-22.984755, 66.036345], - [-22.984883, 66.035439], - [-22.988617, 66.03516], - [-22.98866, 66.03333], - [-22.988332, 66.030754], - [-22.988181, 66.029574], - [-22.987827, 66.029142], - [-22.988145, 66.028832], - [-22.988402, 66.02735], - [-22.989157, 66.025518], - [-22.989716, 66.024597], - [-22.987866, 66.02252], - [-22.987134, 66.021522], - [-22.987217, 66.02047], - [-22.987767, 66.01987], - [-22.987853, 66.019547], - [-22.987415, 66.019224], - [-22.986243, 66.018867], - [-22.98601, 66.018662], - [-22.986992, 66.01897], - [-22.989035, 66.019411], - [-22.991231, 66.019734], - [-22.991409, 66.019503], - [-22.992123, 66.019557], - [-22.992189, 66.019792], - [-22.992859, 66.019808], - [-22.994014, 66.019686], - [-22.995998, 66.018735], - [-22.997071, 66.017758], - [-22.997694, 66.017096], - [-22.999579, 66.015969], - [-23.001027, 66.01494], - [-23.004199, 66.013493], - [-23.007073, 66.012064], - [-23.00825, 66.011478], - [-23.009636, 66.011429], - [-23.011837, 66.010406], - [-23.013781, 66.009923], - [-23.015446, 66.009508], - [-23.015839, 66.008855], - [-23.018421, 66.008348], - [-23.020492, 66.008132], - [-23.024166, 66.006395], - [-23.026042, 66.005922], - [-23.026871, 66.005576], - [-23.029898, 66.004366], - [-23.030569, 66.004098], - [-23.032718, 66.003025], - [-23.034067, 66.002571], - [-23.034677, 66.002112], - [-23.035421, 66.001832], - [-23.035947, 66.001376], - [-23.036284, 66.00073], - [-23.036846, 66.000009], - [-23.036878, 65.999678], - [-23.036638, 65.999317], - [-23.036585, 65.999068], - [-23.036714, 65.998815], - [-23.037298, 65.998558], - [-23.037415, 65.998507], - [-23.037926, 65.998243], - [-23.038947, 65.997311], - [-23.04189, 65.9953], - [-23.05059, 65.98989], - [-23.05364, 65.98638], - [-23.05598, 65.98337], - [-23.0574, 65.98238], - [-23.06116, 65.98043], - [-23.06296, 65.97894], - [-23.06512, 65.97721], - [-23.06996, 65.97425], - [-23.0729, 65.97357], - [-23.07529, 65.97234], - [-23.0774, 65.97086], - [-23.07938, 65.97027], - [-23.082082, 65.96846], - [-23.082757, 65.96781], - [-23.08241, 65.967154], - [-23.082624, 65.966915], - [-23.08295, 65.966461], - [-23.083597, 65.966186], - [-23.08364, 65.966005], - [-23.083968, 65.966015], - [-23.084501, 65.966107], - [-23.085143, 65.965806], - [-23.08573, 65.966065], - [-23.086689, 65.966271], - [-23.08765, 65.966307], - [-23.088374, 65.966149], - [-23.08924, 65.966171], - [-23.089781, 65.965804], - [-23.090167, 65.965484], - [-23.090469, 65.965222], - [-23.089927, 65.965257], - [-23.089615, 65.965277], - [-23.089169, 65.965306], - [-23.088786, 65.965246], - [-23.088279, 65.965138], - [-23.08777, 65.965202], - [-23.087288, 65.965247], - [-23.08649, 65.965585], - [-23.085445, 65.9656], - [-23.084798, 65.96542], - [-23.084618, 65.965222], - [-23.084422, 65.96514], - [-23.084217, 65.965132], - [-23.084259, 65.965799], - [-23.083605, 65.965838], - [-23.083386, 65.96513], - [-23.083161, 65.964897], - [-23.082547, 65.963985], - [-23.081222, 65.963254], - [-23.078838, 65.962675], - [-23.076352, 65.962296], - [-23.073894, 65.962565], - [-23.072717, 65.962963], - [-23.06509, 65.96517], - [-23.0643, 65.96617], - [-23.05965, 65.96784], - [-23.05769, 65.9683], - [-23.05569, 65.96902], - [-23.05026, 65.9717], - [-23.0476, 65.97266], - [-23.04552, 65.97388], - [-23.04427, 65.97386], - [-23.041213, 65.972384], - [-23.0415, 65.96943], - [-23.04389, 65.96821], - [-23.042865, 65.968097], - [-23.0408, 65.96787], - [-23.038055, 65.969049], - [-23.03465, 65.97309], - [-23.03194, 65.97635], - [-23.030519, 65.977776], - [-23.02921, 65.97983], - [-23.028735, 65.980163], - [-23.029009, 65.980476], - [-23.029498, 65.981036], - [-23.031299, 65.981967], - [-23.033348, 65.982918], - [-23.031369, 65.982805], - [-23.02939, 65.982861], - [-23.028593, 65.983056], - [-23.028447, 65.983194], - [-23.028107, 65.983513], - [-23.027714, 65.983881], - [-23.025999, 65.984325], - [-23.025252, 65.984606], - [-23.02483, 65.985024], - [-23.024749, 65.98508], - [-23.024296, 65.985389], - [-23.023098, 65.985814], - [-23.023016, 65.985862], - [-23.022044, 65.986441], - [-23.02196, 65.986566], - [-23.02143, 65.98735], - [-23.01877, 65.9883], - [-23.0087, 65.99239], - [-23.00188, 65.9958], - [-23.001261, 65.996377], - [-23.000339, 65.996694], - [-22.99913, 65.99727], - [-22.998212, 65.997683], - [-22.99196, 66.00092], - [-22.98689, 66.0031], - [-22.98526, 66.003566], - [-22.98352, 66.00454], - [-22.979115, 66.00626], - [-22.973476, 66.009178], - [-22.971463, 66.010663], - [-22.967637, 66.013399], - [-22.9642, 66.017083], - [-22.963927, 66.019086], - [-22.961348, 66.020539], - [-22.957985, 66.029216], - [-22.958854, 66.031116], - [-22.958548, 66.031503], - [-22.957116, 66.031767], - [-22.954357, 66.035008], - [-22.95249, 66.03754], - [-22.952344, 66.038546], - [-22.95043, 66.04056], - [-22.945235, 66.04716], - [-22.943626, 66.047957], - [-22.941585, 66.047837], - [-22.939234, 66.046238], - [-22.937474, 66.042924], - [-22.936234, 66.039856], - [-22.93154, 66.03263], - [-22.923403, 66.022665], - [-22.922605, 66.0211], - [-22.920937, 66.019796], - [-22.919979, 66.018865], - [-22.920943, 66.0174], - [-22.919133, 66.015338], - [-22.918885, 66.013968], - [-22.91931, 66.013477], - [-22.919878, 66.013001], - [-22.920339, 66.0128], - [-22.921155, 66.011718], - [-22.922042, 66.011054], - [-22.92167, 66.009087], - [-22.918849, 66.007563], - [-22.919433, 66.007446], - [-22.920324, 66.007419], - [-22.922341, 66.007594], - [-22.925651, 66.007894], - [-22.927503, 66.007766], - [-22.928131, 66.007448], - [-22.932179, 66.003711], - [-22.936929, 66.000175], - [-22.938044, 65.999529], - [-22.940183, 65.997174], - [-22.94136, 65.99473], - [-22.941363, 65.994272], - [-22.940633, 65.993687], - [-22.940448, 65.993117], - [-22.942035, 65.992436], - [-22.942178, 65.990976], - [-22.941534, 65.988885], - [-22.941288, 65.987078], - [-22.940662, 65.985277], - [-22.939185, 65.982541], - [-22.937777, 65.980712], - [-22.934973, 65.979036], - [-22.933017, 65.977918], - [-22.929343, 65.975354], - [-22.927581, 65.97231], - [-22.924268, 65.968732], - [-22.92057, 65.968467], - [-22.918467, 65.968253], - [-22.916524, 65.968161], - [-22.913028, 65.968528], - [-22.911367, 65.969648], - [-22.910331, 65.972306], - [-22.914702, 65.975885], - [-22.918674, 65.979038], - [-22.919872, 65.980194], - [-22.920911, 65.981286], - [-22.922193, 65.983899], - [-22.923392, 65.986436], - [-22.923725, 65.989005], - [-22.924739, 65.989311], - [-22.925618, 65.989816], - [-22.922992, 65.991103], - [-22.921555, 65.992316], - [-22.918194, 65.993004], - [-22.915227, 65.993661], - [-22.912493, 65.994578], - [-22.89498, 66.00937], - [-22.891187, 66.015711], - [-22.891966, 66.017016], - [-22.89018, 66.0177], - [-22.888826, 66.019002], - [-22.886874, 66.018916], - [-22.8855, 66.01937], - [-22.883346, 66.020182], - [-22.88149, 66.0208], - [-22.880229, 66.021316], - [-22.87945, 66.02177], - [-22.878619, 66.022821], - [-22.879661, 66.024094], - [-22.880144, 66.026089], - [-22.881507, 66.027488], - [-22.883329, 66.028309], - [-22.884097, 66.029454], - [-22.884325, 66.030599], - [-22.885236, 66.031281], - [-22.887029, 66.034195], - [-22.887286, 66.03623], - [-22.887143, 66.037224], - [-22.882589, 66.037005], - [-22.880909, 66.036438], - [-22.87831, 66.03659], - [-22.87718, 66.036993], - [-22.8763, 66.03731], - [-22.875273, 66.037814], - [-22.871722, 66.03804], - [-22.870064, 66.038488], - [-22.869132, 66.038537], - [-22.867847, 66.03849], - [-22.866217, 66.037961], - [-22.8651, 66.037756], - [-22.864602, 66.037366], - [-22.864751, 66.03686], - [-22.863712, 66.036377], - [-22.862839, 66.036221], - [-22.862482, 66.036097], - [-22.862487, 66.035798], - [-22.862084, 66.035228], - [-22.861672, 66.034844], - [-22.861148, 66.034396], - [-22.86064, 66.034188], - [-22.860187, 66.033834], - [-22.860469, 66.033495], - [-22.861279, 66.033407], - [-22.862623, 66.033076], - [-22.864037, 66.032928], - [-22.86453, 66.032446], - [-22.864902, 66.031522], - [-22.86529, 66.030674], - [-22.865516, 66.029803], - [-22.865013, 66.028844], - [-22.86447, 66.02837], - [-22.863946, 66.028108], - [-22.863856, 66.027863], - [-22.864379, 66.027634], - [-22.864399, 66.027131], - [-22.863961, 66.026695], - [-22.863523, 66.026299], - [-22.863342, 66.025924], - [-22.862945, 66.025475], - [-22.862442, 66.024961], - [-22.861777, 66.02426], - [-22.860756, 66.023397], - [-22.860333, 66.022978], - [-22.860353, 66.022749], - [-22.85986, 66.022031], - [-22.8599, 66.021502], - [-22.859468, 66.021127], - [-22.858527, 66.020585], - [-22.85822, 66.020217], - [-22.858235, 66.01988], - [-22.858557, 66.01955], - [-22.858934, 66.019103], - [-22.858788, 66.018659], - [-22.858522, 66.018334], - [-22.858834, 66.017747], - [-22.859377, 66.01656], - [-22.85977, 66.016266], - [-22.859805, 66.015662], - [-22.859926, 66.01536], - [-22.860258, 66.015073], - [-22.86066, 66.014224], - [-22.860726, 66.013504], - [-22.860937, 66.012876], - [-22.860806, 66.012486], - [-22.860358, 66.012123], - [-22.860424, 66.011614], - [-22.860756, 66.010837], - [-22.861133, 66.009173], - [-22.861516, 66.008154], - [-22.862067, 66.007192], - [-22.862167, 66.00655], - [-22.862379, 66.005751], - [-22.862961, 66.004661], - [-22.863972, 66.00206], - [-22.867921, 65.995636], - [-22.868451, 65.995065], - [-22.870878, 65.994533], - [-22.871822, 65.993396], - [-22.872203, 65.992828], - [-22.873474, 65.99191], - [-22.8735, 65.990414], - [-22.874805, 65.989557], - [-22.87475, 65.9886], - [-22.875071, 65.987866], - [-22.877487, 65.987417], - [-22.880345, 65.986076], - [-22.881339, 65.985802], - [-22.882568, 65.984607], - [-22.882137, 65.98363], - [-22.882197, 65.983213], - [-22.882751, 65.982796], - [-22.883892, 65.982527], - [-22.885055, 65.982428], - [-22.885998, 65.981979], - [-22.891267, 65.969924], - [-22.8977, 65.96514], - [-22.897824, 65.964541], - [-22.898548, 65.964342], - [-22.899878, 65.964219], - [-22.90147, 65.96319], - [-22.901969, 65.962889], - [-22.90284, 65.96246], - [-22.905, 65.960416], - [-22.908089, 65.957339], - [-22.910493, 65.9558], - [-22.912553, 65.954681], - [-22.914956, 65.953492], - [-22.920449, 65.951603], - [-22.92886, 65.949504], - [-22.932036, 65.948472], - [-22.934354, 65.947685], - [-22.936671, 65.946793], - [-22.939804, 65.945534], - [-22.943623, 65.9434], - [-22.947915, 65.940951], - [-22.954095, 65.932709], - [-22.957056, 65.931484], - [-22.962206, 65.929488], - [-22.965982, 65.928193], - [-22.968772, 65.927178], - [-22.971905, 65.925497], - [-22.974265, 65.924202], - [-22.976411, 65.922924], - [-22.978685, 65.921085], - [-22.981646, 65.918459], - [-22.98423, 65.91416], - [-22.9874, 65.90988], - [-22.98582, 65.90865], - [-22.985384, 65.908374], - [-22.983496, 65.907636], - [-22.98245, 65.90746], - [-22.980763, 65.907618], - [-22.97926, 65.90788], - [-22.977947, 65.908474], - [-22.97656, 65.90909], - [-22.973828, 65.910343], - [-22.964223, 65.918441], - [-22.960575, 65.920893], - [-22.95617, 65.92315], - [-22.953408, 65.924044], - [-22.95151, 65.92482], - [-22.946404, 65.926942], - [-22.942354, 65.928124], - [-22.940718, 65.929529], - [-22.938929, 65.929956], - [-22.937207, 65.93102], - [-22.9366, 65.93185], - [-22.934354, 65.933829], - [-22.932379, 65.935754], - [-22.93146, 65.93657], - [-22.927573, 65.939008], - [-22.924569, 65.940233], - [-22.913926, 65.943931], - [-22.90885, 65.945538], - [-22.906518, 65.9463], - [-22.901391, 65.94788], - [-22.900045, 65.948355], - [-22.89743, 65.94925], - [-22.89543, 65.94998], - [-22.89405, 65.95069], - [-22.891267, 65.951953], - [-22.88864, 65.95312], - [-22.883563, 65.955494], - [-22.881088, 65.956904], - [-22.878315, 65.958229], - [-22.87703, 65.95895], - [-22.87565, 65.95968], - [-22.874877, 65.959965], - [-22.873414, 65.960835], - [-22.868758, 65.964436], - [-22.86849, 65.96513], - [-22.867341, 65.966429], - [-22.867148, 65.968596], - [-22.863887, 65.974083], - [-22.859137, 65.980625], - [-22.860543, 65.9813], - [-22.860996, 65.981646], - [-22.860586, 65.981896], - [-22.858726, 65.9819], - [-22.858397, 65.982787], - [-22.856858, 65.983733], - [-22.855146, 65.986707], - [-22.853496, 65.988518], - [-22.851133, 65.990811], - [-22.848755, 65.992381], - [-22.847164, 65.992793], - [-22.845879, 65.993275], - [-22.845237, 65.993701], - [-22.844636, 65.994172], - [-22.843872, 65.994487], - [-22.84291, 65.99492], - [-22.841325, 65.995305], - [-22.839526, 65.995763], - [-22.838699, 65.996493], - [-22.837981, 65.997634], - [-22.836989, 65.99826], - [-22.836305, 65.99922], - [-22.834219, 66.000777], - [-22.834185, 66.001445], - [-22.83348, 66.0026], - [-22.83285, 66.00258], - [-22.832591, 66.001639], - [-22.83177, 66.00153], - [-22.831487, 66.000351], - [-22.831107, 65.999887], - [-22.830355, 65.999345], - [-22.828885, 65.999387], - [-22.826422, 65.999136], - [-22.824027, 65.998385], - [-22.823926, 65.997787], - [-22.82308, 65.99694], - [-22.822126, 65.9963], - [-22.82008, 65.995837], - [-22.81828, 65.99553], - [-22.81724, 65.99479], - [-22.81538, 65.99391], - [-22.814225, 65.993691], - [-22.813957, 65.993098], - [-22.813082, 65.99292], - [-22.812699, 65.992608], - [-22.812989, 65.992116], - [-22.813315, 65.991713], - [-22.812999, 65.991023], - [-22.813546, 65.990522], - [-22.812897, 65.989924], - [-22.813481, 65.989538], - [-22.813033, 65.988379], - [-22.811852, 65.987377], - [-22.814059, 65.986222], - [-22.814398, 65.98541], - [-22.815628, 65.984884], - [-22.816381, 65.983937], - [-22.816757, 65.982573], - [-22.816775, 65.981519], - [-22.817654, 65.980106], - [-22.818296, 65.977043], - [-22.81821, 65.975877], - [-22.819236, 65.975094], - [-22.819963, 65.971544], - [-22.820126, 65.969674], - [-22.819266, 65.963795], - [-22.819621, 65.962909], - [-22.819065, 65.961986], - [-22.819877, 65.961168], - [-22.819663, 65.96068], - [-22.820219, 65.959548], - [-22.820305, 65.95805], - [-22.821416, 65.95657], - [-22.821245, 65.955769], - [-22.822228, 65.953121], - [-22.821502, 65.95239], - [-22.821502, 65.950526], - [-22.821439, 65.948966], - [-22.82034, 65.947766], - [-22.820441, 65.947287], - [-22.82101, 65.946787], - [-22.821032, 65.945815], - [-22.821382, 65.945351], - [-22.821316, 65.944798], - [-22.821842, 65.944423], - [-22.821769, 65.944082], - [-22.820782, 65.943704], - [-22.81983, 65.943425], - [-22.821796, 65.943019], - [-22.822671, 65.942644], - [-22.82359, 65.941734], - [-22.824138, 65.941279], - [-22.825341, 65.940815], - [-22.826446, 65.939875], - [-22.827186, 65.938419], - [-22.827869, 65.937276], - [-22.828519, 65.936481], - [-22.828682, 65.93508], - [-22.828741, 65.93342], - [-22.830314, 65.93077], - [-22.831375, 65.929194], - [-22.833339, 65.927909], - [-22.834042, 65.927353], - [-22.835623, 65.926231], - [-22.836781, 65.925452], - [-22.840073, 65.923559], - [-22.840639, 65.923114], - [-22.841272, 65.922661], - [-22.842482, 65.921894], - [-22.843646, 65.920996], - [-22.844417, 65.92031], - [-22.845437, 65.919224], - [-22.846037, 65.918525], - [-22.847234, 65.917988], - [-22.848142, 65.917558], - [-22.848819, 65.91723], - [-22.851256, 65.914986], - [-22.851551, 65.914192], - [-22.852303, 65.913453], - [-22.852782, 65.911415], - [-22.853381, 65.910096], - [-22.853176, 65.909286], - [-22.853757, 65.90877], - [-22.853552, 65.907974], - [-22.855441, 65.905626], - [-22.855613, 65.903954], - [-22.854759, 65.903064], - [-22.856097, 65.901831], - [-22.85645, 65.900927], - [-22.856347, 65.899855], - [-22.855528, 65.898176], - [-22.8544, 65.89728], - [-22.854972, 65.89657], - [-22.855058, 65.895732], - [-22.855366, 65.894957], - [-22.855567, 65.894375], - [-22.85551, 65.894138], - [-22.855427, 65.89382], - [-22.854294, 65.893139], - [-22.853107, 65.892851], - [-22.853352, 65.892699], - [-22.85458, 65.893007], - [-22.855291, 65.893387], - [-22.855409, 65.892531], - [-22.855265, 65.892018], - [-22.855638, 65.891366], - [-22.856364, 65.890966], - [-22.85699, 65.890771], - [-22.857185, 65.890351], - [-22.856297, 65.889606], - [-22.856125, 65.888968], - [-22.856809, 65.888703], - [-22.856262, 65.888354], - [-22.856296, 65.887962], - [-22.856809, 65.886957], - [-22.85657, 65.886761], - [-22.856019, 65.886855], - [-22.855517, 65.887492], - [-22.854828, 65.887524], - [-22.852596, 65.886893], - [-22.851884, 65.886886], - [-22.851519, 65.886938], - [-22.851355, 65.887174], - [-22.85291, 65.887739], - [-22.854228, 65.887784], - [-22.853989, 65.888731], - [-22.852312, 65.892468], - [-22.852675, 65.892542], - [-22.852508, 65.892684], - [-22.85222, 65.892605], - [-22.851472, 65.893416], - [-22.850018, 65.894399], - [-22.848689, 65.894668], - [-22.847945, 65.895154], - [-22.84638, 65.895226], - [-22.845901, 65.894652], - [-22.846448, 65.893987], - [-22.848708, 65.89352], - [-22.847695, 65.892844], - [-22.846445, 65.892804], - [-22.847288, 65.892101], - [-22.845985, 65.891764], - [-22.845654, 65.891136], - [-22.843356, 65.890632], - [-22.841792, 65.890552], - [-22.840353, 65.891106], - [-22.839347, 65.891838], - [-22.83814, 65.8931], - [-22.837201, 65.893404], - [-22.83544, 65.893751], - [-22.834328, 65.896148], - [-22.83371, 65.896847], - [-22.833039, 65.897377], - [-22.832597, 65.897783], - [-22.832402, 65.897907], - [-22.832492, 65.898052], - [-22.832867, 65.898327], - [-22.83344, 65.898556], - [-22.833478, 65.898651], - [-22.833619, 65.898998], - [-22.833373, 65.899413], - [-22.832962, 65.899961], - [-22.830094, 65.902645], - [-22.829709, 65.904181], - [-22.828213, 65.905175], - [-22.825856, 65.908677], - [-22.826489, 65.909688], - [-22.825742, 65.911047], - [-22.82473, 65.91194], - [-22.823894, 65.912371], - [-22.822836, 65.912792], - [-22.821809, 65.913256], - [-22.82101, 65.91364], - [-22.819256, 65.914588], - [-22.81822, 65.91535], - [-22.817358, 65.917215], - [-22.815004, 65.918644], - [-22.811456, 65.919394], - [-22.80998, 65.920159], - [-22.808846, 65.921109], - [-22.808282, 65.921689], - [-22.807244, 65.922527], - [-22.806421, 65.923317], - [-22.805132, 65.924609], - [-22.804171, 65.925173], - [-22.80115, 65.9277], - [-22.799065, 65.929397], - [-22.796962, 65.931445], - [-22.79585, 65.93318], - [-22.794183, 65.935567], - [-22.791764, 65.939026], - [-22.79018, 65.94097], - [-22.78993, 65.9425], - [-22.786927, 65.944818], - [-22.783151, 65.949654], - [-22.78296, 65.95051], - [-22.782757, 65.951278], - [-22.78275, 65.95178], - [-22.78228, 65.95211], - [-22.785086, 65.959416], - [-22.787816, 65.960844], - [-22.78871, 65.96321], - [-22.787231, 65.965759], - [-22.783921, 65.972826], - [-22.780562, 65.978195], - [-22.77736, 65.98058], - [-22.77675, 65.98235], - [-22.77636, 65.985849], - [-22.78077, 65.99538], - [-22.784928, 65.999733], - [-22.786827, 66.001589], - [-22.790919, 66.002621], - [-22.790089, 66.003266], - [-22.7889, 66.00395], - [-22.790106, 66.00503], - [-22.789074, 66.007099], - [-22.78822, 66.007394], - [-22.787822, 66.007788], - [-22.787164, 66.007965], - [-22.785245, 66.008187], - [-22.783936, 66.008465], - [-22.783588, 66.009113], - [-22.782489, 66.012967], - [-22.782763, 66.016105], - [-22.781482, 66.018547], - [-22.781482, 66.019978], - [-22.7812, 66.020486], - [-22.781362, 66.021467], - [-22.781804, 66.022817], - [-22.781261, 66.024257], - [-22.779993, 66.02581], - [-22.777618, 66.028002], - [-22.775987, 66.030022], - [-22.775502, 66.032168], - [-22.772928, 66.040152], - [-22.772203, 66.0415], - [-22.772438, 66.04257], - [-22.772465, 66.046674], - [-22.772606, 66.047777], - [-22.771736, 66.049058], - [-22.770794, 66.049575], - [-22.768691, 66.050123], - [-22.768197, 66.05125], - [-22.76856, 66.051936], - [-22.768077, 66.05241], - [-22.766688, 66.052892], - [-22.766507, 66.053684], - [-22.765325, 66.054578], - [-22.764554, 66.055025], - [-22.762771, 66.055454], - [-22.761569, 66.055577], - [-22.760795, 66.055261], - [-22.759726, 66.055124], - [-22.758757, 66.05522], - [-22.757356, 66.056452], - [-22.756623, 66.056293], - [-22.75559, 66.055263], - [-22.754325, 66.054515], - [-22.752843, 66.053914], - [-22.749604, 66.052837], - [-22.74902, 66.05255], - [-22.748933, 66.052101], - [-22.747975, 66.051665], - [-22.746137, 66.050689], - [-22.744597, 66.050117], - [-22.742592, 66.048982], - [-22.740063, 66.046588], - [-22.739419, 66.046161], - [-22.738606, 66.045942], - [-22.738319, 66.044995], - [-22.737002, 66.044201], - [-22.736224, 66.04384], - [-22.735681, 66.04351], - [-22.735634, 66.043203], - [-22.735543, 66.043179], - [-22.734214, 66.042827], - [-22.733149, 66.04269], - [-22.732963, 66.042647], - [-22.731178, 66.042233], - [-22.730641, 66.041563], - [-22.730503, 66.040932], - [-22.729448, 66.040449], - [-22.725901, 66.040247], - [-22.724591, 66.040287], - [-22.724115, 66.040498], - [-22.724036, 66.040612], - [-22.723737, 66.040683], - [-22.723582, 66.040535], - [-22.723358, 66.040338], - [-22.722964, 66.039988], - [-22.72146, 66.040056], - [-22.720132, 66.04037], - [-22.719252, 66.040745], - [-22.718207, 66.04114], - [-22.718146, 66.041296], - [-22.71811, 66.04144], - [-22.718471, 66.041965], - [-22.719757, 66.042874], - [-22.72034, 66.043577], - [-22.721152, 66.044251], - [-22.721591, 66.044746], - [-22.720912, 66.044968], - [-22.720503, 66.045334], - [-22.720293, 66.045594], - [-22.720673, 66.04579], - [-22.721394, 66.04594], - [-22.721727, 66.046145], - [-22.721647, 66.046284], - [-22.721236, 66.046309], - [-22.720387, 66.046348], - [-22.719894, 66.046409], - [-22.719631, 66.046557], - [-22.717846, 66.046709], - [-22.717213, 66.04678], - [-22.71665, 66.047211], - [-22.716364, 66.047264], - [-22.716077, 66.047171], - [-22.715135, 66.047093], - [-22.713939, 66.047152], - [-22.713125, 66.047275], - [-22.712242, 66.046866], - [-22.711175, 66.04669], - [-22.71037, 66.04677], - [-22.708947, 66.046936], - [-22.706812, 66.047016], - [-22.704946, 66.047002], - [-22.703801, 66.046605], - [-22.703442, 66.045921], - [-22.702692, 66.045489], - [-22.701442, 66.04509], - [-22.700381, 66.044974], - [-22.699384, 66.044914], - [-22.694956, 66.044889], - [-22.693547, 66.044492], - [-22.692779, 66.044141], - [-22.692179, 66.044191], - [-22.6917, 66.04481], - [-22.691256, 66.045104], - [-22.690347, 66.045287], - [-22.689055, 66.045268], - [-22.688117, 66.045075], - [-22.687194, 66.044553], - [-22.685982, 66.044154], - [-22.685202, 66.044058], - [-22.684468, 66.044038], - [-22.683534, 66.044253], - [-22.683269, 66.044506], - [-22.683655, 66.044993], - [-22.684216, 66.045498], - [-22.684336, 66.045762], - [-22.683716, 66.04593], - [-22.683486, 66.046086], - [-22.683605, 66.046737], - [-22.684058, 66.047071], - [-22.685837, 66.048087], - [-22.686942, 66.049123], - [-22.68802, 66.050157], - [-22.688384, 66.050661], - [-22.687572, 66.051001], - [-22.686959, 66.051918], - [-22.685586, 66.051937], - [-22.682397, 66.052666], - [-22.680592, 66.053102], - [-22.68035, 66.053358], - [-22.679983, 66.053618], - [-22.680063, 66.05384], - [-22.680229, 66.053887], - [-22.680597, 66.054406], - [-22.680501, 66.054601], - [-22.680134, 66.054722], - [-22.679436, 66.054382], - [-22.678825, 66.053818], - [-22.678191, 66.053373], - [-22.677227, 66.052824], - [-22.676879, 66.052318], - [-22.676796, 66.051858], - [-22.677533, 66.051732], - [-22.677501, 66.051378], - [-22.677513, 66.05109], - [-22.677067, 66.05069], - [-22.67753, 66.050474], - [-22.677615, 66.050264], - [-22.67691, 66.0497], - [-22.676418, 66.049307], - [-22.676109, 66.048747], - [-22.676144, 66.048364], - [-22.676278, 66.047886], - [-22.676327, 66.047615], - [-22.677047, 66.047579], - [-22.677079, 66.047211], - [-22.677441, 66.047041], - [-22.67742, 66.046561], - [-22.677904, 66.046183], - [-22.678395, 66.045861], - [-22.678844, 66.045548], - [-22.679483, 66.045433], - [-22.679838, 66.045082], - [-22.679854, 66.044709], - [-22.679679, 66.044414], - [-22.679067, 66.04409], - [-22.678655, 66.043813], - [-22.678191, 66.043486], - [-22.678771, 66.042706], - [-22.679016, 66.04238], - [-22.678745, 66.042183], - [-22.67894, 66.042061], - [-22.679376, 66.041971], - [-22.679565, 66.042112], - [-22.680047, 66.042087], - [-22.680469, 66.04203], - [-22.680816, 66.041706], - [-22.680871, 66.041397], - [-22.680604, 66.041269], - [-22.680381, 66.041144], - [-22.680634, 66.040979], - [-22.681126, 66.041042], - [-22.681644, 66.041104], - [-22.682097, 66.041076], - [-22.682485, 66.040834], - [-22.682417, 66.040121], - [-22.681587, 66.039401], - [-22.681136, 66.039047], - [-22.681453, 66.038779], - [-22.681602, 66.038608], - [-22.681124, 66.038365], - [-22.680754, 66.038359], - [-22.680366, 66.038775], - [-22.679158, 66.038954], - [-22.678508, 66.038545], - [-22.6784, 66.038215], - [-22.677856, 66.037646], - [-22.678375, 66.037333], - [-22.678714, 66.036338], - [-22.6777, 66.035302], - [-22.677646, 66.034722], - [-22.677475, 66.032704], - [-22.676448, 66.031882], - [-22.672979, 66.030888], - [-22.671622, 66.030745], - [-22.671091, 66.029362], - [-22.670383, 66.027967], - [-22.67004, 66.025852], - [-22.668089, 66.02083], - [-22.664145, 66.01897], - [-22.663299, 66.01764], - [-22.66069, 66.016607], - [-22.658933, 66.016618], - [-22.655258, 66.015326], - [-22.652326, 66.015345], - [-22.650136, 66.014546], - [-22.650187, 66.013836], - [-22.646515, 66.012899], - [-22.643435, 66.012413], - [-22.642664, 66.012579], - [-22.64175, 66.01266], - [-22.64, 66.011281], - [-22.634746, 66.010975], - [-22.633307, 66.011504], - [-22.631111, 66.012828], - [-22.63034, 66.0131], - [-22.629584, 66.013423], - [-22.629, 66.01358], - [-22.627429, 66.013806], - [-22.62641, 66.01401], - [-22.624342, 66.014843], - [-22.623307, 66.014926], - [-22.62319, 66.01444], - [-22.621877, 66.013624], - [-22.620494, 66.009796], - [-22.61842, 66.0056], - [-22.616471, 66.004609], - [-22.614264, 66.003873], - [-22.61313, 66.00339], - [-22.611815, 66.002237], - [-22.611463, 65.998317], - [-22.611267, 65.995742], - [-22.61202, 65.99337], - [-22.611417, 65.991896], - [-22.610731, 65.99132], - [-22.6096, 65.99099], - [-22.607083, 65.990238], - [-22.605656, 65.990037], - [-22.603757, 65.989709], - [-22.602555, 65.989557], - [-22.60145, 65.989557], - [-22.599764, 65.989878], - [-22.59709, 65.99063], - [-22.596324, 65.990896], - [-22.595818, 65.990831], - [-22.595646, 65.990674], - [-22.595689, 65.990264], - [-22.59363, 65.989949], - [-22.59284, 65.98974], - [-22.591923, 65.989304], - [-22.591633, 65.988422], - [-22.59265, 65.98718], - [-22.592835, 65.986749], - [-22.593591, 65.986645], - [-22.595489, 65.986838], - [-22.5969, 65.98627], - [-22.597009, 65.98537], - [-22.60006, 65.98431], - [-22.59781, 65.984116], - [-22.59689, 65.98371], - [-22.5968, 65.98319], - [-22.59759, 65.98041], - [-22.596354, 65.979933], - [-22.594718, 65.980243], - [-22.59294, 65.979914], - [-22.59256, 65.97938], - [-22.5928, 65.97898], - [-22.593082, 65.97823], - [-22.595657, 65.978326], - [-22.596451, 65.978631], - [-22.59699, 65.9786], - [-22.597362, 65.978431], - [-22.597405, 65.978256], - [-22.597159, 65.977918], - [-22.596386, 65.977684], - [-22.595232, 65.977772], - [-22.59526, 65.97751], - [-22.594827, 65.976282], - [-22.593704, 65.975871], - [-22.591933, 65.975625], - [-22.59052, 65.97405], - [-22.59026, 65.973591], - [-22.588865, 65.973285], - [-22.587338, 65.973172], - [-22.586591, 65.973495], - [-22.585475, 65.973796], - [-22.584619, 65.974498], - [-22.580711, 65.974923], - [-22.579853, 65.975338], - [-22.578858, 65.97567], - [-22.577729, 65.975845], - [-22.576772, 65.975767], - [-22.57583, 65.975509], - [-22.575095, 65.975133], - [-22.574281, 65.974982], - [-22.57259, 65.977234], - [-22.572246, 65.978601], - [-22.571595, 65.979945], - [-22.570334, 65.979932], - [-22.56863, 65.97881], - [-22.568942, 65.976793], - [-22.570079, 65.974993], - [-22.57186, 65.973311], - [-22.57336, 65.9715], - [-22.573328, 65.970872], - [-22.574392, 65.970581], - [-22.574959, 65.969639], - [-22.574875, 65.969104], - [-22.575089, 65.968768], - [-22.574607, 65.968689], - [-22.574532, 65.968405], - [-22.575004, 65.968283], - [-22.575354, 65.96722], - [-22.576334, 65.965679], - [-22.57746, 65.96419], - [-22.577503, 65.963328], - [-22.578619, 65.962362], - [-22.580749, 65.960429], - [-22.581548, 65.959695], - [-22.583587, 65.958205], - [-22.584713, 65.956444], - [-22.585732, 65.95466], - [-22.58597, 65.95316], - [-22.585663, 65.952652], - [-22.584917, 65.952188], - [-22.583056, 65.951683], - [-22.581913, 65.952046], - [-22.581232, 65.952079], - [-22.580942, 65.952018], - [-22.580803, 65.951919], - [-22.581157, 65.951786], - [-22.581495, 65.951681], - [-22.581647, 65.951528], - [-22.580529, 65.951054], - [-22.579708, 65.950483], - [-22.579177, 65.949504], - [-22.578285, 65.947432], - [-22.577831, 65.94711], - [-22.578829, 65.946396], - [-22.579805, 65.945404], - [-22.580277, 65.944285], - [-22.580963, 65.942684], - [-22.583345, 65.940532], - [-22.58508, 65.93828], - [-22.58529, 65.93521], - [-22.583376, 65.934225], - [-22.582092, 65.933673], - [-22.58037, 65.932985], - [-22.580674, 65.931019], - [-22.577702, 65.929383], - [-22.5768, 65.928866], - [-22.575953, 65.928267], - [-22.574161, 65.926404], - [-22.573346, 65.925883], - [-22.571994, 65.927502], - [-22.570878, 65.927148], - [-22.569762, 65.927067], - [-22.570945, 65.92566], - [-22.570919, 65.925016], - [-22.5712, 65.924799], - [-22.571822, 65.924047], - [-22.573968, 65.924519], - [-22.573711, 65.924918], - [-22.574054, 65.92531], - [-22.573692, 65.925616], - [-22.574773, 65.926299], - [-22.57679, 65.92811], - [-22.577562, 65.928618], - [-22.581028, 65.93048], - [-22.586092, 65.92579], - [-22.589611, 65.922347], - [-22.591691, 65.919165], - [-22.592658, 65.917952], - [-22.59163, 65.91669], - [-22.590466, 65.916107], - [-22.589053, 65.913224], - [-22.586544, 65.910707], - [-22.589427, 65.910289], - [-22.59178, 65.9085], - [-22.592707, 65.90794], - [-22.59432, 65.90652], - [-22.594289, 65.905496], - [-22.59321, 65.90501], - [-22.593248, 65.904427], - [-22.593205, 65.904121], - [-22.593892, 65.903841], - [-22.595442, 65.903411], - [-22.59816, 65.90288], - [-22.603258, 65.89717], - [-22.60911, 65.89157], - [-22.609045, 65.891271], - [-22.609071, 65.89095], - [-22.609321, 65.890682], - [-22.609489, 65.890379], - [-22.60937, 65.89004], - [-22.60815, 65.889642], - [-22.608334, 65.888895], - [-22.607916, 65.888413], - [-22.607574, 65.88825], - [-22.607288, 65.888259], - [-22.606855, 65.888322], - [-22.606677, 65.888229], - [-22.606937, 65.888124], - [-22.607134, 65.887951], - [-22.607188, 65.887645], - [-22.60775, 65.88487], - [-22.60902, 65.88478], - [-22.60975, 65.88415], - [-22.61135, 65.88395], - [-22.61179, 65.8832], - [-22.61304, 65.88323], - [-22.61657, 65.8809], - [-22.61784, 65.8808], - [-22.61793, 65.8803], - [-22.61953, 65.88009], - [-22.62143, 65.87809], - [-22.621951, 65.877595], - [-22.626064, 65.87356], - [-22.627005, 65.872924], - [-22.627499, 65.872681], - [-22.628556, 65.87243], - [-22.631122, 65.87076], - [-22.63239, 65.86892], - [-22.633051, 65.868372], - [-22.634191, 65.867365], - [-22.634663, 65.865865], - [-22.637216, 65.862759], - [-22.639341, 65.860662], - [-22.64449, 65.85287], - [-22.64274, 65.852446], - [-22.641587, 65.851833], - [-22.641001, 65.85113], - [-22.637396, 65.850158], - [-22.63565, 65.849576], - [-22.635049, 65.849172], - [-22.634126, 65.848786], - [-22.634044, 65.848527], - [-22.635264, 65.845862], - [-22.634519, 65.844597], - [-22.636774, 65.844109], - [-22.63814, 65.84065], - [-22.64719, 65.832623], - [-22.64783, 65.832276], - [-22.648583, 65.831912], - [-22.648963, 65.831458], - [-22.652191, 65.829912], - [-22.652691, 65.829595], - [-22.65354, 65.82905], - [-22.654125, 65.828641], - [-22.65496, 65.82807], - [-22.655524, 65.827866], - [-22.65633, 65.82734], - [-22.657458, 65.826957], - [-22.66028, 65.82617], - [-22.661316, 65.825876], - [-22.663234, 65.825093], - [-22.663963, 65.824271], - [-22.664829, 65.823883], - [-22.666638, 65.82307], - [-22.66536, 65.82196], - [-22.66374, 65.82174], - [-22.66125, 65.82414], - [-22.66062, 65.82413], - [-22.66017, 65.82309], - [-22.65955, 65.82307], - [-22.658749, 65.824174], - [-22.659725, 65.825088], - [-22.659555, 65.825352], - [-22.655139, 65.824465], - [-22.652949, 65.824005], - [-22.648385, 65.823348], - [-22.647099, 65.824146], - [-22.64441, 65.82392], - [-22.642163, 65.823692], - [-22.640338, 65.823873], - [-22.638226, 65.824357], - [-22.636736, 65.824585], - [-22.634446, 65.825841], - [-22.633635, 65.826227], - [-22.63261, 65.82717], - [-22.631842, 65.827623], - [-22.6285, 65.831871], - [-22.623643, 65.836001], - [-22.621946, 65.837171], - [-22.621055, 65.837644], - [-22.620089, 65.838775], - [-22.619724, 65.839241], - [-22.619093, 65.83956], - [-22.618089, 65.839864], - [-22.61601, 65.84207], - [-22.613069, 65.843419], - [-22.611927, 65.84431], - [-22.611344, 65.844942], - [-22.610511, 65.846887], - [-22.610322, 65.847916], - [-22.610313, 65.848463], - [-22.610547, 65.848806], - [-22.610588, 65.849123], - [-22.610658, 65.849637], - [-22.610841, 65.851068], - [-22.611205, 65.852165], - [-22.612156, 65.855055], - [-22.61085, 65.86677], - [-22.610544, 65.86738], - [-22.607465, 65.869515], - [-22.606783, 65.869959], - [-22.604763, 65.871087], - [-22.602458, 65.87253], - [-22.60123, 65.87299], - [-22.59908, 65.87335], - [-22.596582, 65.874801], - [-22.596491, 65.87502], - [-22.595592, 65.87521], - [-22.59428, 65.87578], - [-22.592597, 65.876442], - [-22.591949, 65.876835], - [-22.587739, 65.880951], - [-22.585435, 65.885838], - [-22.584465, 65.894123], - [-22.584337, 65.894556], - [-22.584395, 65.894865], - [-22.584222, 65.895067], - [-22.583587, 65.895129], - [-22.583032, 65.895643], - [-22.58253, 65.8967], - [-22.57995, 65.89714], - [-22.58013, 65.89612], - [-22.57652, 65.89704], - [-22.57479, 65.89802], - [-22.57341, 65.89874], - [-22.56927, 65.90452], - [-22.567915, 65.905143], - [-22.56145, 65.91351], - [-22.560321, 65.917445], - [-22.561694, 65.919085], - [-22.56654, 65.92032], - [-22.565256, 65.922703], - [-22.566801, 65.923255], - [-22.56803, 65.92254], - [-22.568904, 65.923071], - [-22.568948, 65.924151], - [-22.568754, 65.924378], - [-22.568346, 65.925057], - [-22.567982, 65.925963], - [-22.56744, 65.92599], - [-22.567252, 65.925566], - [-22.566716, 65.925108], - [-22.566512, 65.924377], - [-22.566544, 65.924124], - [-22.56588, 65.92415], - [-22.565563, 65.923991], - [-22.564527, 65.923885], - [-22.56227, 65.92686], - [-22.56102, 65.92681], - [-22.56089, 65.92759], - [-22.55589, 65.92744], - [-22.55576, 65.92821], - [-22.55452, 65.92817], - [-22.55344, 65.9307], - [-22.55215, 65.93092], - [-22.55228, 65.93016], - [-22.54974, 65.93034], - [-22.54929, 65.92929], - [-22.54747, 65.92899], - [-22.54881, 65.93032], - [-22.54809, 65.93081], - [-22.54934, 65.93265], - [-22.54691, 65.93218], - [-22.54377, 65.93222], - [-22.543, 65.93296], - [-22.54114, 65.93291], - [-22.54007, 65.93365], - [-22.53984, 65.93671], - [-22.539035, 65.938034], - [-22.5361, 65.94019], - [-22.533467, 65.940997], - [-22.53342, 65.94114], - [-22.53337, 65.94231], - [-22.5341, 65.952246], - [-22.53249, 65.95905], - [-22.52919, 65.96536], - [-22.52401, 65.96623], - [-22.52226, 65.9708], - [-22.52351, 65.97262], - [-22.52476, 65.97266], - [-22.5249, 65.97907], - [-22.523998, 65.980104], - [-22.523209, 65.980755], - [-22.522834, 65.980919], - [-22.522388, 65.980938], - [-22.522088, 65.980785], - [-22.521847, 65.980521], - [-22.521782, 65.980226], - [-22.521938, 65.979929], - [-22.52298, 65.97927], - [-22.522544, 65.976869], - [-22.521758, 65.976834], - [-22.520936, 65.978892], - [-22.51927, 65.9789], - [-22.51775, 65.98041], - [-22.5188, 65.98034], - [-22.51909, 65.97992], - [-22.51972, 65.97994], - [-22.51891, 65.98094], - [-22.51708, 65.98063], - [-22.51756, 65.979196], - [-22.517307, 65.97855], - [-22.516745, 65.978453], - [-22.515574, 65.978895], - [-22.515569, 65.979834], - [-22.515907, 65.980842], - [-22.515329, 65.981353], - [-22.514664, 65.981606], - [-22.513843, 65.981606], - [-22.513269, 65.980829], - [-22.512517, 65.979976], - [-22.51005, 65.979763], - [-22.50993, 65.97836], - [-22.509549, 65.978108], - [-22.509302, 65.977753], - [-22.50939, 65.97665], - [-22.50913, 65.97579], - [-22.508937, 65.975333], - [-22.510029, 65.974985], - [-22.509002, 65.973505], - [-22.506758, 65.973384], - [-22.50631, 65.97033], - [-22.50449, 65.97002], - [-22.50404, 65.96898], - [-22.50279, 65.96894], - [-22.4983, 65.96586], - [-22.49645, 65.96568], - [-22.49628, 65.96491], - [-22.49766, 65.96418], - [-22.4978, 65.96163], - [-22.49597, 65.96131], - [-22.49267, 65.95686], - [-22.49557, 65.95464], - [-22.49745, 65.95111], - [-22.496725, 65.946964], - [-22.496731, 65.946575], - [-22.496646, 65.946215], - [-22.496669, 65.945829], - [-22.496344, 65.945403], - [-22.49566, 65.944623], - [-22.495288, 65.944456], - [-22.494998, 65.944206], - [-22.494999, 65.943989], - [-22.494911, 65.943814], - [-22.494613, 65.943639], - [-22.493816, 65.943367], - [-22.493032, 65.943135], - [-22.492646, 65.942904], - [-22.492631, 65.942804], - [-22.492755, 65.942634], - [-22.492896, 65.942459], - [-22.49293, 65.942146], - [-22.49305, 65.942048], - [-22.493242, 65.941937], - [-22.493303, 65.941841], - [-22.493115, 65.941629], - [-22.492755, 65.941386], - [-22.491874, 65.941141], - [-22.491142, 65.940983], - [-22.489994, 65.940795], - [-22.488946, 65.94071], - [-22.488674, 65.94088], - [-22.488614, 65.941079], - [-22.488453, 65.941169], - [-22.488326, 65.941209], - [-22.488154, 65.941214], - [-22.487841, 65.941027], - [-22.487172, 65.940545], - [-22.486633, 65.940065], - [-22.486386, 65.93985], - [-22.486182, 65.939722], - [-22.486079, 65.93962], - [-22.485985, 65.939502], - [-22.485904, 65.939359], - [-22.485735, 65.93926], - [-22.485621, 65.939075], - [-22.485218, 65.939003], - [-22.48456, 65.938976], - [-22.483711, 65.938968], - [-22.483522, 65.939091], - [-22.483287, 65.939219], - [-22.482966, 65.939408], - [-22.482836, 65.939618], - [-22.482817, 65.939731], - [-22.482731, 65.939815], - [-22.482578, 65.939769], - [-22.482461, 65.939726], - [-22.482188, 65.939622], - [-22.48173, 65.939543], - [-22.481616, 65.939435], - [-22.481685, 65.939347], - [-22.48172, 65.939258], - [-22.481282, 65.939209], - [-22.48052, 65.939232], - [-22.479956, 65.939417], - [-22.479926, 65.93949], - [-22.479772, 65.939576], - [-22.479635, 65.939634], - [-22.479552, 65.939758], - [-22.479657, 65.939855], - [-22.479748, 65.939941], - [-22.479773, 65.940165], - [-22.48002, 65.940648], - [-22.479893, 65.940895], - [-22.479764, 65.941157], - [-22.479551, 65.941487], - [-22.479355, 65.941789], - [-22.479128, 65.941979], - [-22.478993, 65.942146], - [-22.478853, 65.942236], - [-22.4786, 65.942201], - [-22.478045, 65.941932], - [-22.478029, 65.941499], - [-22.47742, 65.941153], - [-22.47689, 65.940872], - [-22.476676, 65.940294], - [-22.476362, 65.939812], - [-22.476095, 65.939515], - [-22.475634, 65.93937], - [-22.475487, 65.939163], - [-22.475464, 65.938882], - [-22.475542, 65.938638], - [-22.475802, 65.938346], - [-22.476012, 65.937975], - [-22.475956, 65.937649], - [-22.475772, 65.937493], - [-22.474957, 65.937326], - [-22.474293, 65.937116], - [-22.47356, 65.936705], - [-22.47333, 65.936337], - [-22.473207, 65.935835], - [-22.47245, 65.93448], - [-22.47062, 65.93417], - [-22.4708, 65.93315], - [-22.46822, 65.93359], - [-22.46718, 65.93587], - [-22.46594, 65.93583], - [-22.46522, 65.93811], - [-22.46347, 65.94088], - [-22.46423, 65.94193], - [-22.46967, 65.94132], - [-22.469966, 65.940081], - [-22.47003, 65.939927], - [-22.469977, 65.939796], - [-22.469818, 65.939706], - [-22.469642, 65.93962], - [-22.470151, 65.939531], - [-22.470726, 65.939303], - [-22.471575, 65.939015], - [-22.472147, 65.938875], - [-22.472196, 65.938984], - [-22.472373, 65.939072], - [-22.472398, 65.939212], - [-22.472513, 65.939269], - [-22.473046, 65.939216], - [-22.473413, 65.93912], - [-22.473729, 65.939045], - [-22.474096, 65.939006], - [-22.474361, 65.938922], - [-22.474546, 65.938835], - [-22.475095, 65.93881], - [-22.475222, 65.938872], - [-22.475315, 65.939007], - [-22.475266, 65.93915], - [-22.475367, 65.939267], - [-22.475383, 65.939379], - [-22.474795, 65.93944], - [-22.474654, 65.939503], - [-22.474522, 65.939546], - [-22.474054, 65.93953], - [-22.473969, 65.939457], - [-22.473984, 65.939394], - [-22.4736, 65.939416], - [-22.473282, 65.9395], - [-22.472949, 65.939614], - [-22.472767, 65.939855], - [-22.47298, 65.94039], - [-22.473674, 65.943223], - [-22.470794, 65.943603], - [-22.47131, 65.94443], - [-22.473497, 65.94598], - [-22.47479, 65.94788], - [-22.4742, 65.95298], - [-22.4729, 65.9532], - [-22.471881, 65.950352], - [-22.470824, 65.950427], - [-22.471072, 65.9511], - [-22.470029, 65.951579], - [-22.46938, 65.95182], - [-22.46862, 65.95256], - [-22.46451, 65.952282], - [-22.46424, 65.951443], - [-22.462744, 65.951158], - [-22.46166, 65.94928], - [-22.45986, 65.94884], - [-22.459468, 65.94856], - [-22.45766, 65.948299], - [-22.456914, 65.947773], - [-22.456135, 65.947645], - [-22.455916, 65.947375], - [-22.456217, 65.947077], - [-22.454165, 65.946182], - [-22.452397, 65.94465], - [-22.450767, 65.943885], - [-22.449608, 65.943155], - [-22.449285, 65.942144], - [-22.447237, 65.94001], - [-22.44608, 65.93806], - [-22.444476, 65.937692], - [-22.443221, 65.936543], - [-22.44445, 65.93135], - [-22.44543, 65.93112], - [-22.4453, 65.93189], - [-22.44592, 65.93191], - [-22.44892, 65.92918], - [-22.44999, 65.92844], - [-22.450327, 65.927981], - [-22.452279, 65.921107], - [-22.45253, 65.91417], - [-22.45164, 65.91209], - [-22.450884, 65.910306], - [-22.450466, 65.909364], - [-22.45085, 65.908813], - [-22.44841, 65.90559], - [-22.448548, 65.904663], - [-22.448172, 65.904054], - [-22.447818, 65.903031], - [-22.448264, 65.902772], - [-22.44891, 65.90099], - [-22.447606, 65.9001], - [-22.44711, 65.8953], - [-22.45019, 65.89028], - [-22.44834, 65.89008], - [-22.44641, 65.89041], - [-22.445902, 65.890738], - [-22.442649, 65.891544], - [-22.440231, 65.892153], - [-22.438836, 65.892394], - [-22.437716, 65.892639], - [-22.436857, 65.892776], - [-22.436151, 65.892949], - [-22.435404, 65.893192], - [-22.432253, 65.895167], - [-22.43067, 65.89609], - [-22.425608, 65.89952], - [-22.425161, 65.900207], - [-22.42455, 65.90052], - [-22.423751, 65.900822], - [-22.423918, 65.903287], - [-22.424626, 65.903559], - [-22.42484, 65.903944], - [-22.42409, 65.90486], - [-22.424364, 65.905669], - [-22.423532, 65.907983], - [-22.424004, 65.90885], - [-22.424813, 65.909514], - [-22.425609, 65.910192], - [-22.42642, 65.91108], - [-22.42785, 65.9101], - [-22.42886, 65.91154], - [-22.43128, 65.912], - [-22.43141, 65.91302], - [-22.43314, 65.91385], - [-22.43456, 65.91645], - [-22.4345, 65.92029], - [-22.43539, 65.92057], - [-22.43548, 65.92006], - [-22.43637, 65.92035], - [-22.43729, 65.92217], - [-22.43587, 65.92494], - [-22.434328, 65.924905], - [-22.433908, 65.925305], - [-22.433908, 65.925969], - [-22.433185, 65.926941], - [-22.431813, 65.928384], - [-22.431786, 65.928415], - [-22.430447, 65.929971], - [-22.429142, 65.929145], - [-22.428042, 65.92918], - [-22.426846, 65.929571], - [-22.426404, 65.929721], - [-22.425875, 65.93009], - [-22.425379, 65.929936], - [-22.425563, 65.929272], - [-22.42498, 65.92892], - [-22.423924, 65.928876], - [-22.423201, 65.929571], - [-22.4218, 65.92991], - [-22.421798, 65.929216], - [-22.422179, 65.928731], - [-22.42128, 65.927879], - [-22.421051, 65.926934], - [-22.42226, 65.924776], - [-22.422267, 65.924359], - [-22.420472, 65.92271], - [-22.420136, 65.920695], - [-22.420807, 65.920477], - [-22.421127, 65.919594], - [-22.420395, 65.918592], - [-22.420365, 65.915686], - [-22.420655, 65.91484], - [-22.419587, 65.913577], - [-22.418428, 65.913197], - [-22.41707, 65.91081], - [-22.416302, 65.910185], - [-22.41525, 65.9087], - [-22.41486, 65.90561], - [-22.415466, 65.905159], - [-22.41603, 65.90437], - [-22.416032, 65.903782], - [-22.41617, 65.903504], - [-22.4166, 65.902497], - [-22.417569, 65.901096], - [-22.418317, 65.900516], - [-22.418789, 65.900464], - [-22.419926, 65.899185], - [-22.420828, 65.898212], - [-22.420682, 65.89681], - [-22.421747, 65.89595], - [-22.422694, 65.894891], - [-22.422952, 65.893156], - [-22.424003, 65.892007], - [-22.42459, 65.891164], - [-22.427115, 65.889957], - [-22.431813, 65.885462], - [-22.429887, 65.884032], - [-22.428638, 65.883899], - [-22.427587, 65.884171], - [-22.426883, 65.884023], - [-22.426149, 65.882391], - [-22.425957, 65.880923], - [-22.425051, 65.878029], - [-22.427138, 65.877015], - [-22.42838, 65.876698], - [-22.43004, 65.87506], - [-22.43126, 65.873999], - [-22.433003, 65.873224], - [-22.439417, 65.868458], - [-22.44118, 65.86694], - [-22.441582, 65.866638], - [-22.44257, 65.86621], - [-22.443338, 65.865779], - [-22.444254, 65.865388], - [-22.446695, 65.863835], - [-22.4513, 65.86109], - [-22.452139, 65.860104], - [-22.453799, 65.859623], - [-22.455872, 65.858371], - [-22.457997, 65.856613], - [-22.459724, 65.854773], - [-22.46057, 65.85291], - [-22.46097, 65.85242], - [-22.46178, 65.85141], - [-22.462146, 65.850673], - [-22.46223, 65.84886], - [-22.46285, 65.84708], - [-22.463252, 65.846795], - [-22.466019, 65.844459], - [-22.466432, 65.844249], - [-22.46675, 65.844443], - [-22.466952, 65.844126], - [-22.467014, 65.843223], - [-22.46699, 65.842259], - [-22.467173, 65.841495], - [-22.467481, 65.840996], - [-22.468091, 65.840444], - [-22.468594, 65.840129], - [-22.46858, 65.839828], - [-22.469401, 65.839614], - [-22.469957, 65.839216], - [-22.470588, 65.839115], - [-22.471739, 65.838219], - [-22.472511, 65.836612], - [-22.472785, 65.836131], - [-22.473015, 65.836015], - [-22.473434, 65.835953], - [-22.474202, 65.835538], - [-22.475584, 65.834777], - [-22.47677, 65.833944], - [-22.47815, 65.832313], - [-22.47879, 65.831689], - [-22.479566, 65.831142], - [-22.481376, 65.829774], - [-22.483066, 65.828341], - [-22.484605, 65.827258], - [-22.486105, 65.826154], - [-22.487518, 65.825332], - [-22.490663, 65.82351], - [-22.491252, 65.823223], - [-22.491533, 65.823103], - [-22.492439, 65.822778], - [-22.493192, 65.822286], - [-22.493873, 65.821943], - [-22.49702, 65.81991], - [-22.497372, 65.819646], - [-22.49968, 65.81896], - [-22.501046, 65.818279], - [-22.502611, 65.817587], - [-22.50467, 65.816548], - [-22.505416, 65.816204], - [-22.506999, 65.815512], - [-22.509582, 65.814222], - [-22.51198, 65.81292], - [-22.513152, 65.812544], - [-22.515413, 65.811619], - [-22.517091, 65.810581], - [-22.51704, 65.80897], - [-22.517091, 65.808554], - [-22.517509, 65.808295], - [-22.52006, 65.808444], - [-22.52148, 65.80858], - [-22.52209, 65.808417], - [-22.524515, 65.807327], - [-22.525953, 65.806101], - [-22.529977, 65.803815], - [-22.530466, 65.803234], - [-22.531489, 65.80243], - [-22.535301, 65.801509], - [-22.535824, 65.801483], - [-22.53653, 65.80108], - [-22.537108, 65.800849], - [-22.5379, 65.80035], - [-22.539896, 65.799446], - [-22.541778, 65.798739], - [-22.54331, 65.79795], - [-22.544462, 65.797229], - [-22.545412, 65.79671], - [-22.54646, 65.79599], - [-22.547963, 65.795081], - [-22.549921, 65.794446], - [-22.550597, 65.794129], - [-22.55089, 65.79381], - [-22.551699, 65.793364], - [-22.557108, 65.791311], - [-22.55941, 65.790578], - [-22.561192, 65.79018], - [-22.562182, 65.789955], - [-22.563379, 65.789715], - [-22.566086, 65.789077], - [-22.56734, 65.78891], - [-22.58023, 65.786307], - [-22.58157, 65.78599], - [-22.583363, 65.785292], - [-22.5825, 65.78423], - [-22.57893, 65.78323], - [-22.571571, 65.783421], - [-22.570563, 65.783863], - [-22.56942, 65.7841], - [-22.56749, 65.78443], - [-22.561334, 65.784847], - [-22.560482, 65.785558], - [-22.56029, 65.7864], - [-22.5608, 65.786804], - [-22.560499, 65.787429], - [-22.559684, 65.787464], - [-22.558852, 65.787556], - [-22.558204, 65.787649], - [-22.557698, 65.787618], - [-22.556688, 65.787608], - [-22.556434, 65.787235], - [-22.555532, 65.787151], - [-22.554566, 65.787224], - [-22.554096, 65.787118], - [-22.553434, 65.787289], - [-22.55297, 65.787432], - [-22.547155, 65.786765], - [-22.545265, 65.787006], - [-22.543975, 65.787454], - [-22.542982, 65.78754], - [-22.540864, 65.78819], - [-22.540098, 65.788484], - [-22.538448, 65.789192], - [-22.537423, 65.789852], - [-22.536795, 65.790745], - [-22.53607, 65.791226], - [-22.536167, 65.791754], - [-22.536621, 65.792355], - [-22.537003, 65.792887], - [-22.535586, 65.793335], - [-22.533552, 65.794088], - [-22.53299, 65.794391], - [-22.531573, 65.794793], - [-22.530668, 65.794995], - [-22.527348, 65.795598], - [-22.524344, 65.795706], - [-22.520905, 65.796003], - [-22.517496, 65.796414], - [-22.516118, 65.796746], - [-22.513668, 65.797629], - [-22.511122, 65.79851], - [-22.510494, 65.798948], - [-22.507731, 65.800207], - [-22.507098, 65.80058], - [-22.50591, 65.80121], - [-22.503318, 65.802466], - [-22.50214, 65.80315], - [-22.500141, 65.804412], - [-22.499986, 65.804603], - [-22.498548, 65.805131], - [-22.497535, 65.805808], - [-22.497011, 65.805988], - [-22.496159, 65.807257], - [-22.494061, 65.808375], - [-22.491016, 65.809712], - [-22.4897, 65.80996], - [-22.48864, 65.81069], - [-22.484007, 65.810743], - [-22.482537, 65.811376], - [-22.481829, 65.811589], - [-22.481023, 65.811921], - [-22.48026, 65.81224], - [-22.47791, 65.813881], - [-22.47733, 65.8142], - [-22.476366, 65.81477], - [-22.475829, 65.815042], - [-22.468479, 65.822116], - [-22.469129, 65.823021], - [-22.467685, 65.824254], - [-22.467527, 65.825539], - [-22.4653, 65.82614], - [-22.464709, 65.826655], - [-22.46392, 65.82687], - [-22.461597, 65.827911], - [-22.46054, 65.82831], - [-22.459195, 65.8286], - [-22.45276, 65.82987], - [-22.45263, 65.83064], - [-22.45139, 65.8306], - [-22.45214, 65.82985], - [-22.44823, 65.83076], - [-22.443289, 65.831316], - [-22.43739, 65.83198], - [-22.43637, 65.83246], - [-22.43649, 65.83349], - [-22.435143, 65.834803], - [-22.434388, 65.836342], - [-22.43271, 65.83722], - [-22.425704, 65.837992], - [-22.424892, 65.837706], - [-22.424412, 65.837841], - [-22.425354, 65.83889], - [-22.424297, 65.84006], - [-22.421629, 65.842139], - [-22.41943, 65.84681], - [-22.414196, 65.855361], - [-22.414293, 65.856554], - [-22.411943, 65.859398], - [-22.40842, 65.86288], - [-22.40373, 65.86633], - [-22.40174, 65.867177], - [-22.4003, 65.86802], - [-22.399919, 65.868506], - [-22.39623, 65.87148], - [-22.39088, 65.87517], - [-22.38963, 65.875848], - [-22.38345, 65.88161], - [-22.38087, 65.88204], - [-22.380412, 65.884992], - [-22.379805, 65.888907], - [-22.380362, 65.89303], - [-22.380422, 65.893211], - [-22.380738, 65.893452], - [-22.381822, 65.893798], - [-22.381806, 65.893977], - [-22.382154, 65.894089], - [-22.382814, 65.893813], - [-22.38311, 65.893894], - [-22.381435, 65.895553], - [-22.381403, 65.897312], - [-22.381934, 65.898338], - [-22.38209, 65.898903], - [-22.381668, 65.899378], - [-22.380493, 65.899934], - [-22.379665, 65.901596], - [-22.377604, 65.902973], - [-22.36782, 65.90573], - [-22.366898, 65.906099], - [-22.367649, 65.90701], - [-22.36634, 65.907413], - [-22.36593, 65.907781], - [-22.365809, 65.908688], - [-22.364522, 65.90952], - [-22.364001, 65.912187], - [-22.363556, 65.91206], - [-22.363856, 65.910439], - [-22.363749, 65.909625], - [-22.363449, 65.909126], - [-22.364135, 65.908924], - [-22.364253, 65.90871], - [-22.363846, 65.908578], - [-22.361774, 65.909053], - [-22.360611, 65.909274], - [-22.35911, 65.909745], - [-22.359694, 65.910019], - [-22.359025, 65.910319], - [-22.357332, 65.910432], - [-22.356208, 65.910643], - [-22.355295, 65.91068], - [-22.354316, 65.91036], - [-22.352839, 65.906302], - [-22.35098, 65.90522], - [-22.34973, 65.90519], - [-22.347578, 65.904996], - [-22.34541, 65.9048], - [-22.342206, 65.905576], - [-22.343116, 65.906936], - [-22.341187, 65.907736], - [-22.3392, 65.90794], - [-22.33789, 65.90995], - [-22.33891, 65.91126], - [-22.34335, 65.91268], - [-22.34409, 65.913187], - [-22.34444, 65.91361], - [-22.345422, 65.914086], - [-22.35162, 65.91549], - [-22.35336, 65.91632], - [-22.35504, 65.91739], - [-22.35591, 65.92126], - [-22.35786, 65.92259], - [-22.35777, 65.92311], - [-22.35897, 65.9252], - [-22.36047, 65.9255], - [-22.36082, 65.92705], - [-22.3618, 65.92681], - [-22.36127, 65.92629], - [-22.36237, 65.92543], - [-22.36587, 65.92515], - [-22.36574, 65.92412], - [-22.36984, 65.92399], - [-22.37043, 65.92247], - [-22.37186, 65.92328], - [-22.37256, 65.92458], - [-22.377064, 65.932725], - [-22.378048, 65.932984], - [-22.37906, 65.933301], - [-22.379427, 65.933425], - [-22.379699, 65.933586], - [-22.379982, 65.933855], - [-22.380158, 65.934198], - [-22.380223, 65.934478], - [-22.380047, 65.934721], - [-22.379972, 65.935042], - [-22.379256, 65.935443], - [-22.379056, 65.935803], - [-22.378593, 65.936229], - [-22.378235, 65.936553], - [-22.377592, 65.936886], - [-22.377098, 65.93696], - [-22.376374, 65.936866], - [-22.375616, 65.937133], - [-22.37489, 65.93772], - [-22.377204, 65.942477], - [-22.38034, 65.94404], - [-22.38329, 65.95028], - [-22.383415, 65.951373], - [-22.382829, 65.952419], - [-22.38283, 65.95283], - [-22.3826, 65.954171], - [-22.382879, 65.955527], - [-22.381913, 65.956086], - [-22.381913, 65.957389], - [-22.382437, 65.958827], - [-22.383823, 65.961104], - [-22.385024, 65.963473], - [-22.385647, 65.965876], - [-22.386805, 65.968436], - [-22.389209, 65.97284], - [-22.390711, 65.974675], - [-22.391046, 65.976895], - [-22.39176, 65.97821], - [-22.394723, 65.98072], - [-22.396504, 65.983462], - [-22.397428, 65.984342], - [-22.397951, 65.984939], - [-22.399073, 65.985571], - [-22.400737, 65.986355], - [-22.401336, 65.987913], - [-22.402704, 65.988824], - [-22.404388, 65.99087], - [-22.405295, 65.9914], - [-22.405991, 65.992631], - [-22.41352, 65.998252], - [-22.415044, 65.99902], - [-22.417769, 66.000931], - [-22.42116, 66.003463], - [-22.421964, 66.003995], - [-22.423545, 66.004414], - [-22.424378, 66.004605], - [-22.425332, 66.004969], - [-22.427607, 66.006071], - [-22.430243, 66.007004], - [-22.432276, 66.007598], - [-22.433688, 66.007868], - [-22.435793, 66.008889], - [-22.438701, 66.009448], - [-22.442705, 66.011492], - [-22.443565, 66.012394], - [-22.44555, 66.013346], - [-22.446219, 66.013615], - [-22.447188, 66.014032], - [-22.447484, 66.014394], - [-22.447815, 66.014591], - [-22.450331, 66.015688], - [-22.453388, 66.016717], - [-22.455416, 66.017354], - [-22.45793, 66.018137], - [-22.464162, 66.020151], - [-22.469075, 66.020918], - [-22.471731, 66.021124], - [-22.474204, 66.021284], - [-22.47562, 66.021424], - [-22.477107, 66.021831], - [-22.478925, 66.023726], - [-22.479954, 66.025705], - [-22.48077, 66.027693], - [-22.481967, 66.029266], - [-22.484031, 66.030456], - [-22.484375, 66.03159], - [-22.48365, 66.03269], - [-22.48096, 66.03543], - [-22.47702, 66.03634], - [-22.47715, 66.03558], - [-22.47471, 66.03512], - [-22.46963, 66.03535], - [-22.46878, 66.0366], - [-22.46752, 66.03657], - [-22.46739, 66.03733], - [-22.46412, 66.03801], - [-22.46033, 66.039905], - [-22.457207, 66.039993], - [-22.454909, 66.040371], - [-22.451726, 66.040567], - [-22.451809, 66.041029], - [-22.45336, 66.04179], - [-22.45394, 66.04207], - [-22.45403, 66.04155], - [-22.45528, 66.04159], - [-22.45519, 66.0421], - [-22.45904, 66.04171], - [-22.45891, 66.04247], - [-22.45954, 66.04249], - [-22.46028, 66.04187], - [-22.46155, 66.04178], - [-22.46229, 66.04116], - [-22.46357, 66.04107], - [-22.45868, 66.04554], - [-22.458518, 66.048138], - [-22.460832, 66.04935], - [-22.462096, 66.050176], - [-22.462906, 66.051639], - [-22.463939, 66.053104], - [-22.464291, 66.05455], - [-22.464773, 66.054809], - [-22.465316, 66.055109], - [-22.466396, 66.057142], - [-22.464934, 66.05942], - [-22.462368, 66.061481], - [-22.46105, 66.06226], - [-22.45711, 66.06317], - [-22.453845, 66.064205], - [-22.452247, 66.06457], - [-22.449883, 66.065145], - [-22.448958, 66.065426], - [-22.448501, 66.065611], - [-22.446982, 66.065928], - [-22.444203, 66.066713], - [-22.4431, 66.06737], - [-22.441554, 66.06908], - [-22.438617, 66.06896], - [-22.435998, 66.069192], - [-22.434008, 66.069654], - [-22.432715, 66.069828], - [-22.43188, 66.07011], - [-22.42793, 66.07102], - [-22.42779, 66.07178], - [-22.42591, 66.07173], - [-22.42371, 66.07346], - [-22.41715, 66.0748], - [-22.41705, 66.07531], - [-22.40997, 66.07612], - [-22.40988, 66.07663], - [-22.40602, 66.07703], - [-22.40116, 66.07945], - [-22.39991, 66.07941], - [-22.39914, 66.08016], - [-22.39793, 66.07986], - [-22.39772, 66.08101], - [-22.3963, 66.08366], - [-22.39521, 66.08439], - [-22.39333, 66.08434], - [-22.39512, 66.0849], - [-22.39207, 66.08609], - [-22.39013, 66.08809], - [-22.38882, 66.08829], - [-22.39131, 66.08505], - [-22.39068, 66.08503], - [-22.38833, 66.08752], - [-22.38578, 66.0877], - [-22.38654, 66.08816], - [-22.38761, 66.088], - [-22.38658, 66.08849], - [-22.38568, 66.08821], - [-22.38528, 66.08871], - [-22.38586, 66.08898], - [-22.38431, 66.09227], - [-22.38306, 66.09224], - [-22.38292, 66.093], - [-22.38499, 66.09203], - [-22.38562, 66.09205], - [-22.38584, 66.09257], - [-22.38736, 66.09287], - [-22.38678, 66.09379], - [-22.387077, 66.093825], - [-22.3878, 66.09391], - [-22.38835, 66.09265], - [-22.3897, 66.09217], - [-22.3906, 66.09246], - [-22.39069, 66.09195], - [-22.39132, 66.09197], - [-22.39122, 66.09248], - [-22.39185, 66.09249], - [-22.39199, 66.09173], - [-22.39288, 66.09201], - [-22.393514, 66.091979], - [-22.394645, 66.091521], - [-22.398056, 66.090547], - [-22.40076, 66.09006], - [-22.404719, 66.089444], - [-22.412706, 66.088061], - [-22.418473, 66.087392], - [-22.420171, 66.086704], - [-22.421739, 66.086948], - [-22.426313, 66.086018], - [-22.428882, 66.084782], - [-22.441255, 66.081918], - [-22.44319, 66.08095], - [-22.44447, 66.08086], - [-22.44521, 66.08024], - [-22.450215, 66.079309], - [-22.457443, 66.077754], - [-22.45836, 66.0773], - [-22.460442, 66.076314], - [-22.459175, 66.075189], - [-22.457796, 66.074444], - [-22.456948, 66.074343], - [-22.457292, 66.074156], - [-22.458238, 66.074236], - [-22.460695, 66.074802], - [-22.464017, 66.075767], - [-22.476222, 66.07523], - [-22.488692, 66.076218], - [-22.508258, 66.077861], - [-22.511832, 66.078601], - [-22.515698, 66.079868], - [-22.519007, 66.081017], - [-22.525044, 66.082584], - [-22.53582, 66.084956], - [-22.544186, 66.086051], - [-22.553132, 66.087979], - [-22.553276, 66.08801], - [-22.555529, 66.088495], - [-22.556711, 66.088904], - [-22.559755, 66.089273], - [-22.56117, 66.089878], - [-22.56336, 66.089949], - [-22.564834, 66.090373], - [-22.56716, 66.090813], - [-22.570417, 66.092589], - [-22.571774, 66.095401], - [-22.577589, 66.098716], - [-22.576388, 66.099925], - [-22.576698, 66.101056], - [-22.578559, 66.102611], - [-22.580449, 66.103487], - [-22.583599, 66.104296], - [-22.586332, 66.104873], - [-22.586799, 66.105032], - [-22.587069, 66.105124], - [-22.588523, 66.105728], - [-22.59176, 66.106365], - [-22.596917, 66.106974], - [-22.601389, 66.107209], - [-22.602724, 66.107808], - [-22.609447, 66.107834], - [-22.611152, 66.1079], - [-22.612182, 66.108101], - [-22.616637, 66.110108], - [-22.622814, 66.110877], - [-22.627801, 66.111066], - [-22.629232, 66.111469], - [-22.63224, 66.111736], - [-22.634637, 66.112752], - [-22.637371, 66.113176], - [-22.641392, 66.113892], - [-22.645414, 66.114114], - [-22.649129, 66.113306], - [-22.65385, 66.1151], - [-22.65619, 66.11618], - [-22.65808, 66.11623], - [-22.66319, 66.11778], - [-22.66341, 66.1183], - [-22.66467, 66.11834], - [-22.6649, 66.11886], - [-22.67074, 66.11979], - [-22.67066, 66.1203], - [-22.67254, 66.12035], - [-22.67306, 66.12101], - [-22.68244, 66.12165], - [-22.68235, 66.12216], - [-22.69417, 66.12326], - [-22.69409, 66.12377], - [-22.69859, 66.12518], - [-22.69819, 66.12568], - [-22.69945, 66.12573], - [-22.69932, 66.12648], - [-22.70062, 66.12626], - [-22.70015, 66.1266], - [-22.7011, 66.12717], - [-22.70296, 66.12735], - [-22.70288, 66.12786], - [-22.70479, 66.12779], - [-22.70971, 66.12856], - [-22.70963, 66.12906], - [-22.7122, 66.13008], - [-22.71322, 66.1302], - [-22.71314, 66.13071], - [-22.71071, 66.13013], - [-22.71299, 66.1316], - [-22.71864, 66.13189], - [-22.71855, 66.1324], - [-22.72044, 66.13245], - [-22.72, 66.1332], - [-22.7222, 66.13327], - [-22.7221, 66.13378], - [-22.724729, 66.131646], - [-22.732217, 66.132623], - [-22.735859, 66.133046], - [-22.740762, 66.133896], - [-22.744957, 66.134894], - [-22.74884, 66.135435], - [-22.75156, 66.13558], - [-22.75336, 66.135545], - [-22.755951, 66.134949], - [-22.758579, 66.134766], - [-22.760562, 66.134747], - [-22.762955, 66.134991], - [-22.765545, 66.135295], - [-22.767885, 66.135366], - [-22.77008, 66.135629], - [-22.770686, 66.136015], - [-22.770487, 66.136417], - [-22.770227, 66.136638], - [-22.769693, 66.137099], - [-22.769772, 66.137703], - [-22.770284, 66.138034], - [-22.771602, 66.138471], - [-22.773093, 66.138654], - [-22.773463, 66.138553], - [-22.773752, 66.138496], - [-22.774501, 66.138202], - [-22.77538, 66.138128], - [-22.775961, 66.138248], - [-22.777026, 66.13863], - [-22.777394, 66.139339], - [-22.777187, 66.140025], - [-22.77677, 66.140574], - [-22.777797, 66.141007], - [-22.779646, 66.14157], - [-22.783118, 66.142363], - [-22.786946, 66.143114], - [-22.792528, 66.144494], - [-22.795908, 66.145184], - [-22.801467, 66.146121], - [-22.806344, 66.146683], - [-22.810346, 66.146838], - [-22.814307, 66.147055], - [-22.817961, 66.147012], - [-22.822503, 66.147254], - [-22.829739, 66.147712], - [-22.833699, 66.148099], - [-22.83597, 66.1485], - [-22.839111, 66.14914], - [-22.842803, 66.150273], - [-22.845313, 66.151158], - [-22.847392, 66.151926], - [-22.848092, 66.152184], - [-22.849224, 66.152733], - [-22.850902, 66.153547], - [-22.852507, 66.15433], - [-22.853367, 66.154583], - [-22.8544, 66.154813], - [-22.855296, 66.155136], - [-22.85636, 66.155458], - [-22.856943, 66.155537], - [-22.857816, 66.155594], - [-22.86363, 66.15787], - [-22.86355, 66.15838], - [-22.86909, 66.15929], - [-22.86901, 66.1598], - [-22.88015, 66.16138], - [-22.88039, 66.1619], - [-22.88191, 66.1622], - [-22.88183, 66.1627], - [-22.88309, 66.16274], - [-22.88505, 66.16433], - [-22.8884, 66.16519], - [-22.88831, 66.1657], - [-22.8902, 66.16575], - [-22.89073, 66.1664], - [-22.89197, 66.16656], - [-22.89184, 66.16733], - [-22.8931, 66.16737], - [-22.89531, 66.16934], - [-22.89805, 66.17005], - [-22.90003, 66.17151], - [-22.90127, 66.17167], - [-22.90119, 66.17218], - [-22.90457, 66.17279], - [-22.9048, 66.17331], - [-22.90996, 66.17472], - [-22.91019, 66.17524], - [-22.91345, 66.17661], - [-22.91684, 66.17721], - [-22.91676, 66.17772], - [-22.91865, 66.17777], - [-22.91857, 66.17828], - [-22.92046, 66.17833], - [-22.92038, 66.17884], - [-22.92162, 66.179], - [-22.92215, 66.17965], - [-22.92526, 66.17999], - [-22.92752, 66.18172], - [-22.92876, 66.18188], - [-22.92899, 66.1824], - [-22.93238, 66.183], - [-22.9323, 66.18351], - [-22.93356, 66.18354], - [-22.93928, 66.18933], - [-22.94141, 66.18989], - [-22.94476, 66.19267], - [-22.94601, 66.19283], - [-22.94561, 66.19333], - [-22.94714, 66.19363], - [-22.94734, 66.1944], - [-22.9517, 66.19682], - [-22.9536, 66.19687], - [-22.95347, 66.19764], - [-22.95535, 66.19781], - [-22.963888, 66.201214], - [-22.965067, 66.202], - [-22.965376, 66.202273], - [-22.966003, 66.202557], - [-22.966159, 66.202982], - [-22.966466, 66.203445], - [-22.966834, 66.203702], - [-22.967695, 66.204583], - [-22.968422, 66.205338], - [-22.968867, 66.206168], - [-22.969291, 66.206577], - [-22.969745, 66.207052], - [-22.970402, 66.207691], - [-22.971078, 66.208065], - [-22.971512, 66.208704], - [-22.971734, 66.20907], - [-22.972101, 66.209471], - [-22.972876, 66.210135], - [-22.972911, 66.210353], - [-22.973293, 66.210752], - [-22.973532, 66.21089], - [-22.973546, 66.211072], - [-22.973651, 66.211172], - [-22.973927, 66.211266], - [-22.973972, 66.211261], - [-22.973962, 66.211124], - [-22.97402, 66.211112], - [-22.974099, 66.211121], - [-22.974181, 66.211152], - [-22.974256, 66.211203], - [-22.974341, 66.211245], - [-22.974563, 66.211287], - [-22.974508, 66.211336], - [-22.974215, 66.211331], - [-22.974, 66.21131], - [-22.974058, 66.211408], - [-22.974356, 66.211703], - [-22.974776, 66.212038], - [-22.975157, 66.212443], - [-22.975471, 66.212855], - [-22.975582, 66.213118], - [-22.975611, 66.213445], - [-22.975462, 66.21373], - [-22.97566, 66.214337], - [-22.975992, 66.21508], - [-22.976631, 66.216321], - [-22.977211, 66.217473], - [-22.977481, 66.217987], - [-22.977164, 66.218491], - [-22.977245, 66.219069], - [-22.977457, 66.219178], - [-22.977428, 66.219594], - [-22.977476, 66.220357], - [-22.977419, 66.220895], - [-22.977206, 66.221257], - [-22.977071, 66.222596], - [-22.97706, 66.223851], - [-22.977002, 66.224493], - [-22.976693, 66.224941], - [-22.976606, 66.225455], - [-22.976799, 66.226171], - [-22.976674, 66.226903], - [-22.976857, 66.227627], - [-22.976799, 66.228409], - [-22.976482, 66.229024], - [-22.976045, 66.22962], - [-22.975451, 66.23016], - [-22.974331, 66.230749], - [-22.972734, 66.231569], - [-22.971114, 66.2322], - [-22.969369, 66.232716], - [-22.967293, 66.233107], - [-22.965966, 66.233406], - [-22.962616, 66.23434], - [-22.960476, 66.234621], - [-22.957628, 66.234734], - [-22.953457, 66.234905], - [-22.950705, 66.235232], - [-22.947895, 66.235512], - [-22.943295, 66.23599], - [-22.941262, 66.23645], - [-22.939456, 66.237088], - [-22.938258, 66.237577], - [-22.93739, 66.237815], - [-22.936547, 66.238118], - [-22.935256, 66.238558], - [-22.934226, 66.23904], - [-22.933208, 66.239344], - [-22.932601, 66.239406], - [-22.931184, 66.239707], - [-22.929424, 66.239854], - [-22.928468, 66.239858], - [-22.92731, 66.23978], - [-22.926267, 66.239784], - [-22.924712, 66.23964], - [-22.924172, 66.239679], - [-22.923418, 66.239791], - [-22.921879, 66.24005], - [-22.921036, 66.240277], - [-22.920164, 66.240492], - [-22.919399, 66.240759], - [-22.918813, 66.240943], - [-22.918083, 66.241035], - [-22.917345, 66.241091], - [-22.916331, 66.241278], - [-22.915317, 66.241534], - [-22.914603, 66.241639], - [-22.914062, 66.241709], - [-22.91328, 66.241787], - [-22.912208, 66.241908], - [-22.911475, 66.242087], - [-22.910886, 66.242258], - [-22.906821, 66.242419], - [-22.905633, 66.242623], - [-22.903687, 66.242514], - [-22.901291, 66.242201], - [-22.900272, 66.242195], - [-22.899109, 66.242421], - [-22.898229, 66.242461], - [-22.89787, 66.242352], - [-22.897007, 66.242045], - [-22.895873, 66.241927], - [-22.893618, 66.24183], - [-22.892816, 66.2414], - [-22.890899, 66.241018], - [-22.888985, 66.240643], - [-22.887721, 66.240213], - [-22.886031, 66.240076], - [-22.883314, 66.239984], - [-22.879578, 66.239998], - [-22.877304, 66.240531], - [-22.876206, 66.240978], - [-22.875557, 66.24129], - [-22.873628, 66.242345], - [-22.872525, 66.243332], - [-22.872203, 66.243867], - [-22.872146, 66.244166], - [-22.872075, 66.244946], - [-22.872296, 66.245191], - [-22.87289, 66.245363], - [-22.874127, 66.245454], - [-22.875093, 66.245525], - [-22.875857, 66.24585], - [-22.876707, 66.246311], - [-22.881565, 66.247793], - [-22.88141, 66.25079], - [-22.876628, 66.250524], - [-22.858821, 66.25333], - [-22.834342, 66.257774], - [-22.820388, 66.259283], - [-22.800372, 66.25984], - [-22.787242, 66.259655], - [-22.768243, 66.261453], - [-22.752698, 66.261716], - [-22.71531, 66.25245], - [-22.71481, 66.25168], - [-22.7093, 66.25049], - [-22.7082, 66.24943], - [-22.70382, 66.24906], - [-22.7039, 66.24855], - [-22.68849, 66.24581], - [-22.68857, 66.2453], - [-22.68419, 66.24492], - [-22.68428, 66.24441], - [-22.6818, 66.24409], - [-22.68188, 66.24358], - [-22.6775, 66.2432], - [-22.67759, 66.24269], - [-22.67504, 66.24275], - [-22.67079, 66.2416], - [-22.65998, 66.24169], - [-22.659721, 66.241935], - [-22.6592, 66.24243], - [-22.64221, 66.24157], - [-22.64153, 66.24181], - [-22.63587, 66.24152], - [-22.6351, 66.24227], - [-22.63318, 66.24234], - [-22.629968, 66.241639], - [-22.62645, 66.24087], - [-22.62329, 66.24078], - [-22.62065, 66.24135], - [-22.62053, 66.24391], - [-22.61985, 66.24414], - [-22.62003, 66.24492], - [-22.617202, 66.244765], - [-22.61565, 66.24453], - [-22.614357, 66.244489], - [-22.611733, 66.244314], - [-22.609692, 66.243537], - [-22.607654, 66.242833], - [-22.60622, 66.242395], - [-22.604541, 66.241985], - [-22.603566, 66.241357], - [-22.602592, 66.241088], - [-22.600848, 66.240781], - [-22.600048, 66.240516], - [-22.599717, 66.239986], - [-22.599395, 66.239377], - [-22.599245, 66.238735], - [-22.599254, 66.238094], - [-22.599003, 66.237468], - [-22.59526, 66.23397], - [-22.594, 66.23393], - [-22.59359, 66.23264], - [-22.592509, 66.2314], - [-22.590777, 66.229843], - [-22.589442, 66.228851], - [-22.588144, 66.228246], - [-22.587958, 66.22789], - [-22.587042, 66.22758], - [-22.586838, 66.227363], - [-22.57903, 66.225753], - [-22.577159, 66.224877], - [-22.575796, 66.224505], - [-22.573406, 66.223399], - [-22.572729, 66.22259], - [-22.572605, 66.221987], - [-22.571538, 66.221284], - [-22.569886, 66.220631], - [-22.566862, 66.220133], - [-22.566137, 66.219909], - [-22.566344, 66.219814], - [-22.566325, 66.219618], - [-22.565065, 66.219099], - [-22.56176, 66.21866], - [-22.56014, 66.21708], - [-22.555389, 66.21555], - [-22.543657, 66.213183], - [-22.543939, 66.214771], - [-22.54239, 66.21695], - [-22.54052, 66.21677], - [-22.54101, 66.21755], - [-22.53797, 66.21807], - [-22.53768, 66.21848], - [-22.53511, 66.21867], - [-22.53434, 66.21941], - [-22.5356, 66.21945], - [-22.53556, 66.2197], - [-22.53294, 66.22014], - [-22.53181, 66.22113], - [-22.53484, 66.22199], - [-22.534803, 66.22217], - [-22.534678, 66.222548], - [-22.535768, 66.2228], - [-22.536401, 66.22288], - [-22.536753, 66.222843], - [-22.53706, 66.222617], - [-22.537618, 66.222363], - [-22.53799, 66.222238], - [-22.538104, 66.222449], - [-22.538646, 66.222668], - [-22.539193, 66.222888], - [-22.539485, 66.223272], - [-22.539511, 66.223449], - [-22.54007, 66.2247], - [-22.53939, 66.22494], - [-22.53962, 66.22547], - [-22.53768, 66.22566], - [-22.53623, 66.22843], - [-22.53711, 66.22884], - [-22.54341, 66.22915], - [-22.54332, 66.22966], - [-22.55081, 66.23039], - [-22.55072, 66.2309], - [-22.55261, 66.23095], - [-22.55248, 66.23173], - [-22.55436, 66.23177], - [-22.55669, 66.23299], - [-22.55943, 66.23371], - [-22.5596, 66.2345], - [-22.56336, 66.23485], - [-22.56115, 66.23837], - [-22.56157, 66.24684], - [-22.56039, 66.24809], - [-22.5578, 66.2484], - [-22.54976, 66.24714], - [-22.54721, 66.2472], - [-22.54558, 66.24561], - [-22.5431, 66.24528], - [-22.54258, 66.24463], - [-22.53953, 66.2439], - [-22.5403, 66.24315], - [-22.53899, 66.24338], - [-22.53912, 66.24261], - [-22.53723, 66.24255], - [-22.53795, 66.24207], - [-22.53668, 66.24203], - [-22.53741, 66.24153], - [-22.53616, 66.24137], - [-22.53542, 66.24199], - [-22.53289, 66.24191], - [-22.53275, 66.24149], - [-22.53172, 66.24137], - [-22.530595, 66.241259], - [-22.529154, 66.241051], - [-22.528275, 66.240458], - [-22.526668, 66.239987], - [-22.524647, 66.239132], - [-22.523119, 66.237981], - [-22.521677, 66.237136], - [-22.521111, 66.236632], - [-22.520428, 66.236992], - [-22.519737, 66.237348], - [-22.519756, 66.23772], - [-22.519789, 66.237964], - [-22.519439, 66.238344], - [-22.519386, 66.238574], - [-22.519421, 66.239157], - [-22.519389, 66.23946], - [-22.519227, 66.239566], - [-22.518738, 66.239575], - [-22.518196, 66.240293], - [-22.518352, 66.241189], - [-22.518922, 66.241881], - [-22.519789, 66.242998], - [-22.520276, 66.243581], - [-22.520411, 66.244352], - [-22.520265, 66.245156], - [-22.5202, 66.24567], - [-22.520063, 66.246037], - [-22.519253, 66.246948], - [-22.518687, 66.247677], - [-22.517843, 66.248033], - [-22.517254, 66.24837], - [-22.516958, 66.248534], - [-22.516675, 66.24862], - [-22.51602, 66.248627], - [-22.514814, 66.248709], - [-22.514243, 66.248914], - [-22.513598, 66.249076], - [-22.513019, 66.249074], - [-22.512468, 66.249025], - [-22.511678, 66.248891], - [-22.510648, 66.248769], - [-22.510066, 66.248711], - [-22.509465, 66.248668], - [-22.50851, 66.248746], - [-22.507664, 66.248728], - [-22.50374, 66.24863], - [-22.49846, 66.24976], - [-22.48764, 66.24983], - [-22.48687, 66.25057], - [-22.47926, 66.25048], - [-22.47723, 66.25119], - [-22.45855, 66.25257], - [-22.45711, 66.25355], - [-22.45242, 66.25482], - [-22.448921, 66.25452], - [-22.446248, 66.255365], - [-22.4449, 66.25601], - [-22.444432, 66.256402], - [-22.443734, 66.256483], - [-22.441803, 66.255934], - [-22.439309, 66.255655], - [-22.43703, 66.255216], - [-22.429743, 66.256167], - [-22.426145, 66.256755], - [-22.42361, 66.257758], - [-22.42185, 66.25867], - [-22.420494, 66.259082], - [-22.41914, 66.2596], - [-22.41864, 66.259647], - [-22.4171, 66.26031], - [-22.414368, 66.260849], - [-22.413413, 66.261651], - [-22.412549, 66.262164], - [-22.410868, 66.262249], - [-22.410424, 66.262745], - [-22.41017, 66.26344], - [-22.409724, 66.263874], - [-22.409216, 66.26315], - [-22.408693, 66.262472], - [-22.407563, 66.261897], - [-22.403935, 66.261975], - [-22.393129, 66.262744], - [-22.386914, 66.263816], - [-22.384682, 66.264448], - [-22.379649, 66.265746], - [-22.375331, 66.266416], - [-22.37177, 66.266499], - [-22.366485, 66.267167], - [-22.364226, 66.267649], - [-22.3641, 66.26847], - [-22.363368, 66.269337], - [-22.36368, 66.269558], - [-22.364475, 66.269819], - [-22.364979, 66.270203], - [-22.366092, 66.270539], - [-22.366747, 66.270547], - [-22.367465, 66.270526], - [-22.368078, 66.270513], - [-22.36959, 66.270539], - [-22.370378, 66.270743], - [-22.370675, 66.271065], - [-22.371958, 66.271376], - [-22.373251, 66.271563], - [-22.375631, 66.271593], - [-22.378707, 66.271623], - [-22.379889, 66.271582], - [-22.381363, 66.271416], - [-22.381869, 66.271308], - [-22.383328, 66.271034], - [-22.3847, 66.271005], - [-22.387212, 66.270321], - [-22.388135, 66.270129], - [-22.389076, 66.270082], - [-22.389996, 66.26997], - [-22.390939, 66.269735], - [-22.392084, 66.269506], - [-22.393167, 66.26952], - [-22.39459, 66.26978], - [-22.396457, 66.271756], - [-22.398348, 66.272221], - [-22.402355, 66.27317], - [-22.403562, 66.27327], - [-22.405235, 66.273293], - [-22.405976, 66.2732], - [-22.408053, 66.272797], - [-22.409323, 66.272496], - [-22.410794, 66.272067], - [-22.411398, 66.271799], - [-22.411861, 66.271736], - [-22.416656, 66.272104], - [-22.417975, 66.272076], - [-22.421307, 66.271602], - [-22.425294, 66.270851], - [-22.42777, 66.270211], - [-22.428727, 66.27004], - [-22.430222, 66.26987], - [-22.431591, 66.269665], - [-22.433071, 66.269451], - [-22.435195, 66.26898], - [-22.439116, 66.26824], - [-22.442063, 66.267831], - [-22.444669, 66.267452], - [-22.447463, 66.266994], - [-22.448155, 66.266722], - [-22.450619, 66.266018], - [-22.451734, 66.265841], - [-22.452583, 66.265966], - [-22.45343, 66.265969], - [-22.456542, 66.265539], - [-22.459672, 66.264952], - [-22.460569, 66.26461], - [-22.461524, 66.264312], - [-22.462008, 66.264297], - [-22.462689, 66.264489], - [-22.464138, 66.264811], - [-22.464835, 66.264921], - [-22.465718, 66.264893], - [-22.468068, 66.264631], - [-22.468686, 66.26448], - [-22.470778, 66.264299], - [-22.472875, 66.264269], - [-22.475423, 66.26401], - [-22.48147, 66.263606], - [-22.484757, 66.263533], - [-22.486629, 66.263588], - [-22.487514, 66.2637], - [-22.4876, 66.263908], - [-22.487488, 66.264068], - [-22.487735, 66.264266], - [-22.488061, 66.264353], - [-22.488555, 66.264339], - [-22.488845, 66.264188], - [-22.489323, 66.264021], - [-22.489829, 66.263964], - [-22.490108, 66.264055], - [-22.49062, 66.264373], - [-22.490868, 66.264371], - [-22.491165, 66.264293], - [-22.491361, 66.264199], - [-22.491509, 66.264204], - [-22.491567, 66.264278], - [-22.491857, 66.264275], - [-22.492206, 66.264172], - [-22.492204, 66.264019], - [-22.492565, 66.264021], - [-22.49274, 66.264091], - [-22.492767, 66.264187], - [-22.492616, 66.264323], - [-22.492338, 66.264363], - [-22.492169, 66.264484], - [-22.492031, 66.264625], - [-22.49226, 66.264717], - [-22.492911, 66.264789], - [-22.493324, 66.264856], - [-22.493754, 66.264877], - [-22.494083, 66.264827], - [-22.494333, 66.264729], - [-22.495116, 66.264505], - [-22.495886, 66.264266], - [-22.496512, 66.264107], - [-22.497264, 66.264122], - [-22.498234, 66.264086], - [-22.499104, 66.264005], - [-22.499687, 66.264055], - [-22.5, 66.264141], - [-22.500078, 66.264211], - [-22.500273, 66.264244], - [-22.501066, 66.264195], - [-22.501519, 66.264147], - [-22.502404, 66.264296], - [-22.502366, 66.264343], - [-22.502216, 66.264398], - [-22.502599, 66.264509], - [-22.503512, 66.26451], - [-22.504332, 66.264557], - [-22.504989, 66.264629], - [-22.505378, 66.264584], - [-22.505668, 66.264481], - [-22.506022, 66.264422], - [-22.506414, 66.264421], - [-22.506853, 66.264476], - [-22.507492, 66.264482], - [-22.508138, 66.264444], - [-22.508342, 66.264476], - [-22.508428, 66.264566], - [-22.508395, 66.264603], - [-22.508795, 66.264699], - [-22.509149, 66.264905], - [-22.509369, 66.264924], - [-22.509807, 66.264871], - [-22.510048, 66.264879], - [-22.510442, 66.264795], - [-22.510587, 66.264718], - [-22.51111, 66.264655], - [-22.511496, 66.264386], - [-22.51172, 66.264293], - [-22.512009, 66.264244], - [-22.512182, 66.264272], - [-22.512918, 66.264339], - [-22.515045, 66.264277], - [-22.515487, 66.264324], - [-22.516386, 66.264518], - [-22.516469, 66.26458], - [-22.516842, 66.264637], - [-22.517188, 66.264742], - [-22.517274, 66.264739], - [-22.517792, 66.264676], - [-22.518223, 66.264633], - [-22.518787, 66.264644], - [-22.519122, 66.26457], - [-22.519527, 66.264584], - [-22.520387, 66.264541], - [-22.522703, 66.264468], - [-22.523418, 66.264376], - [-22.523539, 66.264343], - [-22.523733, 66.264338], - [-22.524244, 66.264455], - [-22.52491, 66.264554], - [-22.524969, 66.264567], - [-22.525736, 66.26455], - [-22.526197, 66.264594], - [-22.526335, 66.264622], - [-22.526681, 66.264615], - [-22.526876, 66.264643], - [-22.526801, 66.264751], - [-22.52678, 66.264921], - [-22.527034, 66.265013], - [-22.527648, 66.265113], - [-22.528038, 66.265148], - [-22.528463, 66.265159], - [-22.529041, 66.265147], - [-22.529382, 66.265131], - [-22.529889, 66.265076], - [-22.530167, 66.264964], - [-22.530471, 66.264912], - [-22.531309, 66.264886], - [-22.531621, 66.264853], - [-22.532396, 66.264814], - [-22.532865, 66.264752], - [-22.533096, 66.264676], - [-22.533747, 66.264648], - [-22.534894, 66.264627], - [-22.535478, 66.264616], - [-22.536082, 66.264644], - [-22.53691, 66.264718], - [-22.537506, 66.264808], - [-22.538366, 66.265049], - [-22.538788, 66.265175], - [-22.53934, 66.265191], - [-22.540003, 66.265184], - [-22.540537, 66.265276], - [-22.541111, 66.265408], - [-22.541473, 66.2656], - [-22.541779, 66.265639], - [-22.542108, 66.265664], - [-22.542455, 66.265649], - [-22.542674, 66.265632], - [-22.542734, 66.265579], - [-22.542802, 66.265359], - [-22.54291, 66.265275], - [-22.543182, 66.265162], - [-22.5432, 66.265011], - [-22.543468, 66.265005], - [-22.543594, 66.265043], - [-22.543595, 66.265094], - [-22.543793, 66.265123], - [-22.54407, 66.265124], - [-22.544447, 66.264983], - [-22.545268, 66.264872], - [-22.546097, 66.264927], - [-22.546972, 66.265095], - [-22.547963, 66.265358], - [-22.548499, 66.265462], - [-22.549037, 66.265416], - [-22.549532, 66.265362], - [-22.549942, 66.265292], - [-22.55057, 66.26522], - [-22.551137, 66.265269], - [-22.552536, 66.265313], - [-22.554124, 66.265345], - [-22.555036, 66.265307], - [-22.55672, 66.264727], - [-22.557772, 66.264562], - [-22.558723, 66.264452], - [-22.559349, 66.264446], - [-22.560759, 66.264643], - [-22.561178, 66.26512], - [-22.56129, 66.265355], - [-22.560971, 66.265554], - [-22.560799, 66.26578], - [-22.560413, 66.265936], - [-22.560321, 66.266106], - [-22.560284, 66.266299], - [-22.560138, 66.266383], - [-22.560207, 66.266478], - [-22.560546, 66.266537], - [-22.560777, 66.266465], - [-22.560969, 66.266346], - [-22.561941, 66.26621], - [-22.562161, 66.266089], - [-22.562562, 66.266085], - [-22.562971, 66.266136], - [-22.563481, 66.266135], - [-22.563722, 66.266221], - [-22.564156, 66.266346], - [-22.564484, 66.266393], - [-22.564692, 66.266361], - [-22.564869, 66.26627], - [-22.565132, 66.266193], - [-22.566183, 66.266523], - [-22.568361, 66.266599], - [-22.569274, 66.266897], - [-22.570523, 66.267117], - [-22.571232, 66.267516], - [-22.570904, 66.267802], - [-22.570491, 66.267923], - [-22.570631, 66.268309], - [-22.570625, 66.268507], - [-22.570223, 66.268762], - [-22.569799, 66.268936], - [-22.569264, 66.269198], - [-22.56857, 66.269584], - [-22.567685, 66.269908], - [-22.567444, 66.270346], - [-22.56606, 66.271433], - [-22.565067, 66.272101], - [-22.563839, 66.272754], - [-22.562837, 66.273383], - [-22.562358, 66.273886], - [-22.561786, 66.274301], - [-22.561056, 66.274951], - [-22.560594, 66.27545], - [-22.560105, 66.275751], - [-22.559607, 66.275922], - [-22.558791, 66.276075], - [-22.557559, 66.276259], - [-22.55692, 66.276427], - [-22.556469, 66.276651], - [-22.556184, 66.277018], - [-22.555541, 66.277532], - [-22.554773, 66.277899], - [-22.553051, 66.279226], - [-22.552402, 66.280127], - [-22.55221, 66.28121], - [-22.552183, 66.281718], - [-22.552431, 66.282235], - [-22.552794, 66.282577], - [-22.552784, 66.282674], - [-22.55275, 66.282696], - [-22.552568, 66.2827], - [-22.552456, 66.282618], - [-22.55134, 66.282327], - [-22.549848, 66.28205], - [-22.548783, 66.281798], - [-22.547989, 66.281701], - [-22.547573, 66.281732], - [-22.547102, 66.281815], - [-22.546378, 66.281995], - [-22.544393, 66.282446], - [-22.543654, 66.28245], - [-22.540611, 66.282771], - [-22.538724, 66.283002], - [-22.534845, 66.283589], - [-22.532824, 66.284042], - [-22.530366, 66.284491], - [-22.528108, 66.284869], - [-22.526959, 66.285257], - [-22.526327, 66.285324], - [-22.525118, 66.285296], - [-22.523809, 66.285468], - [-22.522458, 66.285738], - [-22.52086, 66.286086], - [-22.51947, 66.286254], - [-22.518253, 66.286623], - [-22.517395, 66.286785], - [-22.515838, 66.287214], - [-22.51504, 66.287572], - [-22.51481, 66.288004], - [-22.514986, 66.288461], - [-22.514966, 66.288942], - [-22.514524, 66.289184], - [-22.513152, 66.28939], - [-22.511407, 66.290475], - [-22.510399, 66.290694], - [-22.509611, 66.291113], - [-22.509003, 66.29158], - [-22.50789, 66.29199], - [-22.50606, 66.292402], - [-22.504879, 66.292969], - [-22.504261, 66.293137], - [-22.503072, 66.293324], - [-22.501607, 66.293763], - [-22.500878, 66.294172], - [-22.499462, 66.294798], - [-22.497713, 66.295566], - [-22.497144, 66.295876], - [-22.495042, 66.297002], - [-22.493861, 66.297491], - [-22.492505, 66.298106], - [-22.491212, 66.298763], - [-22.489687, 66.299943], - [-22.487975, 66.300791], - [-22.487058, 66.30134], - [-22.486376, 66.301729], - [-22.485143, 66.302243], - [-22.484735, 66.302526], - [-22.48422, 66.302875], - [-22.48302, 66.303255], - [-22.481548, 66.303408], - [-22.47885, 66.303965], - [-22.47605, 66.304702], - [-22.473948, 66.305221], - [-22.472399, 66.305598], - [-22.47176, 66.305966], - [-22.470922, 66.306204], - [-22.469779, 66.306532], - [-22.468349, 66.306937], - [-22.467317, 66.306935], - [-22.465989, 66.30717], - [-22.464851, 66.307273], - [-22.463481, 66.30739], - [-22.46196, 66.307702], - [-22.459889, 66.308037], - [-22.457726, 66.308601], - [-22.45755, 66.309079], - [-22.458618, 66.309562], - [-22.459591, 66.309814], - [-22.460561, 66.309686], - [-22.461452, 66.309615], - [-22.461823, 66.309814], - [-22.461439, 66.310038], - [-22.46113, 66.310164], - [-22.461331, 66.310444], - [-22.461908, 66.310551], - [-22.462565, 66.310648], - [-22.462946, 66.31089], - [-22.463446, 66.311039], - [-22.464046, 66.310936], - [-22.464773, 66.310923], - [-22.465537, 66.310973], - [-22.466289, 66.310409], - [-22.467416, 66.310042], - [-22.468821, 66.309902], - [-22.470267, 66.309991], - [-22.472395, 66.310227], - [-22.475071, 66.310905], - [-22.477565, 66.310986], - [-22.479255, 66.310969], - [-22.48074, 66.311045], - [-22.483112, 66.31103], - [-22.484723, 66.311525], - [-22.485747, 66.312025], - [-22.485782, 66.313192], - [-22.484862, 66.314215], - [-22.484093, 66.3147], - [-22.483665, 66.31513], - [-22.483765, 66.315525], - [-22.483183, 66.31609], - [-22.482469, 66.31631], - [-22.481756, 66.316431], - [-22.481316, 66.316648], - [-22.480694, 66.316816], - [-22.480541, 66.317204], - [-22.48183, 66.317825], - [-22.483059, 66.318365], - [-22.484533, 66.318893], - [-22.485296, 66.319164], - [-22.486115, 66.319361], - [-22.486525, 66.319686], - [-22.487007, 66.320067], - [-22.486674, 66.320599], - [-22.486256, 66.32072], - [-22.485741, 66.320792], - [-22.484878, 66.320961], - [-22.483701, 66.321039], - [-22.483284, 66.321117], - [-22.482764, 66.321298], - [-22.482416, 66.321339], - [-22.481536, 66.321334], - [-22.481375, 66.321519], - [-22.48138, 66.321658], - [-22.481295, 66.322007], - [-22.481877, 66.32257], - [-22.482609, 66.323044], - [-22.482855, 66.323779], - [-22.482269, 66.324167], - [-22.482114, 66.324182], - [-22.481042, 66.324298], - [-22.480275, 66.324339], - [-22.479437, 66.324708], - [-22.479549, 66.325216], - [-22.479691, 66.325791], - [-22.480028, 66.326717], - [-22.479707, 66.32706], - [-22.479084, 66.327516], - [-22.479094, 66.327841], - [-22.479996, 66.328137], - [-22.481781, 66.328312], - [-22.482341, 66.328596], - [-22.483235, 66.328703], - [-22.484077, 66.328692], - [-22.485053, 66.328658], - [-22.486497, 66.328408], - [-22.48733, 66.328384], - [-22.487829, 66.328307], - [-22.488376, 66.328165], - [-22.488465, 66.328005], - [-22.488782, 66.327861], - [-22.490236, 66.327615], - [-22.4908, 66.327626], - [-22.491062, 66.327736], - [-22.491224, 66.327839], - [-22.492037, 66.327866], - [-22.49214, 66.327984], - [-22.49235, 66.328081], - [-22.492866, 66.328173], - [-22.493428, 66.328164], - [-22.493813, 66.328178], - [-22.49413, 66.328245], - [-22.495477, 66.328283], - [-22.496067, 66.328376], - [-22.496277, 66.328505], - [-22.496326, 66.32865], - [-22.496211, 66.328746], - [-22.496224, 66.328836], - [-22.496476, 66.328948], - [-22.497951, 66.329085], - [-22.498245, 66.329121], - [-22.498379, 66.32918], - [-22.498362, 66.329323], - [-22.498541, 66.329468], - [-22.498888, 66.32969], - [-22.499129, 66.329918], - [-22.499383, 66.33005], - [-22.501319, 66.3307], - [-22.501345, 66.330907], - [-22.501513, 66.331008], - [-22.501726, 66.33127], - [-22.501991, 66.331434], - [-22.502386, 66.331554], - [-22.502735, 66.331606], - [-22.50287, 66.331529], - [-22.503051, 66.331459], - [-22.503277, 66.331498], - [-22.503187, 66.331604], - [-22.504463, 66.332059], - [-22.504925, 66.332039], - [-22.505016, 66.331906], - [-22.504855, 66.331615], - [-22.504522, 66.331348], - [-22.504141, 66.330943], - [-22.504216, 66.330769], - [-22.504365, 66.330734], - [-22.504849, 66.330704], - [-22.506012, 66.330594], - [-22.506484, 66.330618], - [-22.506926, 66.330902], - [-22.507022, 66.331092], - [-22.506952, 66.33152], - [-22.506774, 66.331782], - [-22.506426, 66.332019], - [-22.505906, 66.332119], - [-22.505567, 66.332407], - [-22.505756, 66.33247], - [-22.506394, 66.332539], - [-22.506732, 66.332606], - [-22.50714, 66.332825], - [-22.507462, 66.332888], - [-22.507735, 66.332857], - [-22.50802, 66.332756], - [-22.508203, 66.33272], - [-22.508685, 66.332612], - [-22.509477, 66.332372], - [-22.510231, 66.33222], - [-22.51067, 66.332089], - [-22.510793, 66.332024], - [-22.510488, 66.331839], - [-22.510207, 66.331546], - [-22.509967, 66.331298], - [-22.508405, 66.330814], - [-22.508492, 66.330575], - [-22.50883, 66.330409], - [-22.509386, 66.330402], - [-22.509826, 66.330314], - [-22.510337, 66.330312], - [-22.510191, 66.330388], - [-22.510122, 66.330796], - [-22.510385, 66.33091], - [-22.510862, 66.330897], - [-22.511371, 66.330862], - [-22.511969, 66.330825], - [-22.512251, 66.330844], - [-22.512569, 66.331031], - [-22.512788, 66.330956], - [-22.512991, 66.330855], - [-22.512794, 66.330605], - [-22.510874, 66.329438], - [-22.508539, 66.328316], - [-22.508219, 66.328027], - [-22.508207, 66.327781], - [-22.507783, 66.327528], - [-22.506534, 66.327178], - [-22.506489, 66.326982], - [-22.506309, 66.326831], - [-22.506073, 66.326411], - [-22.506108, 66.326048], - [-22.506056, 66.325597], - [-22.505612, 66.325229], - [-22.504974, 66.324565], - [-22.505005, 66.32441], - [-22.505235, 66.324238], - [-22.505391, 66.324032], - [-22.505311, 66.323691], - [-22.5053, 66.323413], - [-22.50522, 66.322793], - [-22.504617, 66.322588], - [-22.50436, 66.322245], - [-22.504232, 66.321982], - [-22.503593, 66.321515], - [-22.503438, 66.32114], - [-22.50347, 66.320851], - [-22.503627, 66.320752], - [-22.503615, 66.320266], - [-22.503453, 66.320035], - [-22.503426, 66.319682], - [-22.503646, 66.319361], - [-22.504034, 66.31916], - [-22.504366, 66.318873], - [-22.504333, 66.31857], - [-22.50436, 66.318419], - [-22.504178, 66.318214], - [-22.503893, 66.317993], - [-22.504254, 66.318057], - [-22.505172, 66.318145], - [-22.506066, 66.31809], - [-22.507375, 66.317781], - [-22.507736, 66.317601], - [-22.508388, 66.317372], - [-22.509349, 66.316948], - [-22.509698, 66.316672], - [-22.510384, 66.316381], - [-22.5123, 66.31576], - [-22.512986, 66.31565], - [-22.513782, 66.315454], - [-22.514672, 66.315038], - [-22.514907, 66.314784], - [-22.515429, 66.314482], - [-22.516029, 66.314299], - [-22.516414, 66.314052], - [-22.516436, 66.313805], - [-22.516816, 66.313679], - [-22.517197, 66.31315], - [-22.517225, 66.312787], - [-22.517396, 66.312545], - [-22.517514, 66.312448], - [-22.517422, 66.312176], - [-22.517397, 66.311928], - [-22.517309, 66.311827], - [-22.517317, 66.311709], - [-22.517471, 66.311573], - [-22.517708, 66.311536], - [-22.518261, 66.311521], - [-22.518538, 66.311452], - [-22.518813, 66.311233], - [-22.519053, 66.311024], - [-22.519242, 66.310707], - [-22.519639, 66.310159], - [-22.520292, 66.309331], - [-22.520812, 66.308734], - [-22.521195, 66.30823], - [-22.52253, 66.306962], - [-22.522685, 66.306885], - [-22.522937, 66.306861], - [-22.523103, 66.306596], - [-22.52333, 66.306404], - [-22.523881, 66.306229], - [-22.524337, 66.305906], - [-22.524509, 66.305652], - [-22.524725, 66.305505], - [-22.525165, 66.305345], - [-22.525401, 66.305122], - [-22.526065, 66.304766], - [-22.526206, 66.304503], - [-22.526504, 66.304356], - [-22.526762, 66.304152], - [-22.527115, 66.304045], - [-22.527418, 66.303746], - [-22.527802, 66.303521], - [-22.528157, 66.303373], - [-22.528426, 66.303216], - [-22.529047, 66.302973], - [-22.530292, 66.302464], - [-22.531527, 66.302136], - [-22.531821, 66.301944], - [-22.532093, 66.301795], - [-22.532718, 66.301638], - [-22.533447, 66.301374], - [-22.534059, 66.301213], - [-22.535689, 66.300654], - [-22.535968, 66.300437], - [-22.536257, 66.300208], - [-22.536639, 66.300081], - [-22.537218, 66.300018], - [-22.537786, 66.299973], - [-22.538537, 66.299945], - [-22.53909, 66.299844], - [-22.539778, 66.299753], - [-22.540069, 66.299598], - [-22.540262, 66.29946], - [-22.540524, 66.299404], - [-22.54119, 66.299368], - [-22.541919, 66.299122], - [-22.542519, 66.298958], - [-22.543104, 66.298654], - [-22.54391, 66.298417], - [-22.544912, 66.297936], - [-22.545781, 66.29758], - [-22.547612, 66.296983], - [-22.548127, 66.296755], - [-22.54855, 66.296668], - [-22.549333, 66.296382], - [-22.550862, 66.296026], - [-22.552026, 66.295797], - [-22.552434, 66.295573], - [-22.553098, 66.295454], - [-22.553661, 66.295167], - [-22.554616, 66.295055], - [-22.554977, 66.295042], - [-22.555353, 66.294932], - [-22.555835, 66.294842], - [-22.556168, 66.294704], - [-22.556142, 66.29451], - [-22.556081, 66.294334], - [-22.556451, 66.294281], - [-22.557048, 66.294145], - [-22.557722, 66.293897], - [-22.558228, 66.293757], - [-22.561665, 66.293026], - [-22.563902, 66.292579], - [-22.564658, 66.29248], - [-22.565143, 66.292262], - [-22.56555, 66.29227], - [-22.565888, 66.292239], - [-22.566112, 66.292145], - [-22.566247, 66.291899], - [-22.566439, 66.291801], - [-22.567137, 66.291627], - [-22.568989, 66.29124], - [-22.570174, 66.290886], - [-22.571012, 66.290482], - [-22.571575, 66.290342], - [-22.572165, 66.29022], - [-22.573306, 66.289866], - [-22.574793, 66.289367], - [-22.57557, 66.289025], - [-22.57653, 66.288709], - [-22.577158, 66.288444], - [-22.577802, 66.28828], - [-22.578633, 66.287909], - [-22.580334, 66.287338], - [-22.581398, 66.287089], - [-22.582047, 66.286899], - [-22.583252, 66.286313], - [-22.583473, 66.286129], - [-22.583521, 66.285885], - [-22.583269, 66.285139], - [-22.583423, 66.284942], - [-22.583752, 66.284932], - [-22.585109, 66.285249], - [-22.585661, 66.285283], - [-22.586359, 66.28528], - [-22.5869, 66.285236], - [-22.587645, 66.285057], - [-22.588959, 66.284837], - [-22.590886, 66.284591], - [-22.591477, 66.284478], - [-22.591846, 66.28447], - [-22.59265, 66.284488], - [-22.593514, 66.284405], - [-22.594674, 66.284336], - [-22.595709, 66.284155], - [-22.598707, 66.284094], - [-22.599699, 66.284278], - [-22.601068, 66.284446], - [-22.601921, 66.284437], - [-22.603507, 66.284554], - [-22.606621, 66.28484], - [-22.607102, 66.284789], - [-22.60816, 66.284807], - [-22.608691, 66.284954], - [-22.60927, 66.285195], - [-22.610102, 66.285411], - [-22.61119, 66.285584], - [-22.612541, 66.285825], - [-22.613439, 66.2859], - [-22.613856, 66.285878], - [-22.614676, 66.286101], - [-22.615493, 66.286185], - [-22.616426, 66.286177], - [-22.617439, 66.286252], - [-22.618497, 66.286377], - [-22.619713, 66.286541], - [-22.624607, 66.286983], - [-22.627701, 66.28697], - [-22.628435, 66.287038], - [-22.630437, 66.287124], - [-22.63208, 66.287115], - [-22.633421, 66.287221], - [-22.636087, 66.287558], - [-22.63696, 66.287551], - [-22.638295, 66.287681], - [-22.639176, 66.287742], - [-22.641122, 66.287823], - [-22.641954, 66.287812], - [-22.643456, 66.28797], - [-22.644798, 66.288084], - [-22.646354, 66.288067], - [-22.647288, 66.288032], - [-22.648654, 66.287904], - [-22.650666, 66.287747], - [-22.65219, 66.287885], - [-22.65331, 66.287873], - [-22.654858, 66.287947], - [-22.655624, 66.288021], - [-22.656713, 66.287953], - [-22.657577, 66.287835], - [-22.658504, 66.287849], - [-22.659256, 66.288026], - [-22.660403, 66.288379], - [-22.661545, 66.288593], - [-22.662995, 66.288828], - [-22.664131, 66.288931], - [-22.665558, 66.289024], - [-22.667145, 66.289078], - [-22.668036, 66.289074], - [-22.66866, 66.289197], - [-22.669253, 66.289368], - [-22.670209, 66.289404], - [-22.67111, 66.289458], - [-22.671442, 66.289422], - [-22.671941, 66.289404], - [-22.672146, 66.289536], - [-22.673959, 66.289821], - [-22.676288, 66.290226], - [-22.677515, 66.290601], - [-22.67869, 66.29076], - [-22.67927, 66.29087], - [-22.680151, 66.291102], - [-22.680616, 66.29118], - [-22.681003, 66.291274], - [-22.68141, 66.291319], - [-22.682054, 66.291442], - [-22.682683, 66.291474], - [-22.683669, 66.291576], - [-22.684532, 66.291882], - [-22.684978, 66.291919], - [-22.685407, 66.291891], - [-22.686212, 66.292049], - [-22.687444, 66.292354], - [-22.688868, 66.292678], - [-22.689763, 66.292982], - [-22.6907, 66.293157], - [-22.691882, 66.293567], - [-22.692772, 66.293744], - [-22.693484, 66.293839], - [-22.694021, 66.294011], - [-22.694832, 66.294178], - [-22.696843, 66.294716], - [-22.697331, 66.295036], - [-22.697949, 66.295164], - [-22.698925, 66.295254], - [-22.699913, 66.295622], - [-22.70032, 66.295712], - [-22.700411, 66.295653], - [-22.700685, 66.295594], - [-22.700781, 66.295643], - [-22.700589, 66.295812], - [-22.700648, 66.295929], - [-22.702052, 66.29652], - [-22.703243, 66.29683], - [-22.703796, 66.29703], - [-22.704811, 66.297537], - [-22.706104, 66.298134], - [-22.706479, 66.298417], - [-22.707025, 66.298557], - [-22.707397, 66.298603], - [-22.707765, 66.298576], - [-22.7079, 66.298531], - [-22.708318, 66.298517], - [-22.708604, 66.298576], - [-22.708582, 66.298665], - [-22.708357, 66.298892], - [-22.708121, 66.299053], - [-22.708008, 66.29967], - [-22.708057, 66.300036], - [-22.707953, 66.300359], - [-22.707449, 66.300782], - [-22.707518, 66.301201], - [-22.707665, 66.301423], - [-22.707595, 66.302059], - [-22.707417, 66.302643], - [-22.706993, 66.3032], - [-22.706177, 66.303852], - [-22.705159, 66.304436], - [-22.70439, 66.304775], - [-22.703609, 66.305637], - [-22.702663, 66.306168], - [-22.701849, 66.306797], - [-22.701092, 66.307339], - [-22.699215, 66.308671], - [-22.698673, 66.309345], - [-22.69743, 66.310219], - [-22.697037, 66.310617], - [-22.695987, 66.311035], - [-22.695572, 66.311295], - [-22.694569, 66.312854], - [-22.693909, 66.313444], - [-22.693432, 66.313649], - [-22.693083, 66.31414], - [-22.692145, 66.314513], - [-22.6914, 66.315065], - [-22.690477, 66.315369], - [-22.689736, 66.315695], - [-22.689011, 66.316276], - [-22.687863, 66.316931], - [-22.686641, 66.317469], - [-22.685412, 66.318041], - [-22.684483, 66.318678], - [-22.683578, 66.319318], - [-22.683201, 66.319532], - [-22.682456, 66.319959], - [-22.680692, 66.320767], - [-22.680358, 66.321203], - [-22.679757, 66.321837], - [-22.67978, 66.322328], - [-22.679979, 66.323059], - [-22.679881, 66.323504], - [-22.679457, 66.324039], - [-22.679065, 66.324976], - [-22.678169, 66.325742], - [-22.678041, 66.326343], - [-22.677463, 66.326964], - [-22.676957, 66.327637], - [-22.676404, 66.328004], - [-22.675526, 66.328293], - [-22.675, 66.328432], - [-22.674334, 66.328544], - [-22.673536, 66.328831], - [-22.672903, 66.32912], - [-22.672536, 66.329537], - [-22.672188, 66.330012], - [-22.671615, 66.33044], - [-22.671234, 66.331407], - [-22.670943, 66.332356], - [-22.670902, 66.332669], - [-22.6708, 66.333685], - [-22.670773, 66.334753], - [-22.670632, 66.335011], - [-22.670836, 66.335446], - [-22.670756, 66.336045], - [-22.670366, 66.336596], - [-22.670017, 66.337012], - [-22.669362, 66.337696], - [-22.668762, 66.338108], - [-22.66771, 66.338532], - [-22.666922, 66.338779], - [-22.666434, 66.339217], - [-22.666378, 66.339783], - [-22.666632, 66.340147], - [-22.666861, 66.340484], - [-22.667849, 66.341334], - [-22.668403, 66.341746], - [-22.6695, 66.342566], - [-22.669994, 66.343065], - [-22.670123, 66.343679], - [-22.670096, 66.344245], - [-22.67006, 66.344898], - [-22.669892, 66.345683], - [-22.669442, 66.346424], - [-22.668894, 66.34697], - [-22.668235, 66.347327], - [-22.66757, 66.347764], - [-22.667426, 66.348237], - [-22.667688, 66.348842], - [-22.668282, 66.34909], - [-22.668987, 66.349358], - [-22.668885, 66.349367], - [-22.6666, 66.348834], - [-22.665827, 66.348653], - [-22.665112, 66.34842], - [-22.663906, 66.348132], - [-22.663471, 66.347984], - [-22.663256, 66.347828], - [-22.66325, 66.347671], - [-22.663038, 66.347633], - [-22.662891, 66.347713], - [-22.662683, 66.347883], - [-22.662255, 66.34802], - [-22.661513, 66.348563], - [-22.661637, 66.349118], - [-22.661519, 66.349208], - [-22.661086, 66.349412], - [-22.660747, 66.349806], - [-22.660043, 66.350092], - [-22.657146, 66.350925], - [-22.655152, 66.351478], - [-22.652768, 66.351917], - [-22.652068, 66.351993], - [-22.651509, 66.352174], - [-22.65042, 66.352184], - [-22.650056, 66.352298], - [-22.648811, 66.35244], - [-22.64637, 66.352659], - [-22.643848, 66.352914], - [-22.641096, 66.353284], - [-22.638914, 66.353438], - [-22.636102, 66.3538], - [-22.633022, 66.354095], - [-22.630969, 66.354285], - [-22.628346, 66.35454], - [-22.628003, 66.354533], - [-22.627617, 66.354781], - [-22.627073, 66.354871], - [-22.626496, 66.354879], - [-22.624831, 66.354889], - [-22.623651, 66.355042], - [-22.62208, 66.355311], - [-22.619182, 66.355508], - [-22.61663, 66.355661], - [-22.613669, 66.355706], - [-22.612736, 66.355693], - [-22.611405, 66.355855], - [-22.610182, 66.356227], - [-22.609398, 66.356388], - [-22.609081, 66.356353], - [-22.608707, 66.356377], - [-22.608767, 66.3567], - [-22.608204, 66.357004], - [-22.607644, 66.357423], - [-22.605492, 66.35835], - [-22.605105, 66.358738], - [-22.60379, 66.359057], - [-22.603499, 66.359326], - [-22.603518, 66.359545], - [-22.603617, 66.359766], - [-22.604118, 66.359987], - [-22.604595, 66.360311], - [-22.604654, 66.360636], - [-22.604486, 66.361124], - [-22.605072, 66.361365], - [-22.607127, 66.361591], - [-22.607861, 66.361967], - [-22.608383, 66.362357], - [-22.608188, 66.362868], - [-22.607626, 66.36325], - [-22.606611, 66.36372], - [-22.605357, 66.364435], - [-22.60488, 66.365098], - [-22.604927, 66.365505], - [-22.604664, 66.365962], - [-22.605063, 66.366546], - [-22.60489, 66.366633], - [-22.60505, 66.366863], - [-22.605532, 66.366937], - [-22.605903, 66.366833], - [-22.606289, 66.36677], - [-22.606916, 66.366603], - [-22.608662, 66.366006], - [-22.609225, 66.365837], - [-22.610358, 66.365561], - [-22.611221, 66.365417], - [-22.612315, 66.365164], - [-22.61263, 66.365163], - [-22.61306, 66.365181], - [-22.613521, 66.365172], - [-22.613795, 66.365086], - [-22.613833, 66.364965], - [-22.613666, 66.364888], - [-22.61394, 66.364768], - [-22.614476, 66.364794], - [-22.614893, 66.364843], - [-22.615312, 66.364774], - [-22.615935, 66.364751], - [-22.61746, 66.364564], - [-22.618199, 66.364647], - [-22.618944, 66.364695], - [-22.619965, 66.364559], - [-22.620628, 66.364635], - [-22.620935, 66.364593], - [-22.621481, 66.364482], - [-22.622807, 66.364393], - [-22.623076, 66.364392], - [-22.623998, 66.364378], - [-22.624764, 66.36446], - [-22.626106, 66.364548], - [-22.627114, 66.364557], - [-22.627747, 66.364682], - [-22.628785, 66.364771], - [-22.629856, 66.364832], - [-22.630695, 66.364816], - [-22.631255, 66.364803], - [-22.632667, 66.364758], - [-22.634263, 66.36464], - [-22.634743, 66.364717], - [-22.635217, 66.364721], - [-22.635617, 66.364712], - [-22.635784, 66.364658], - [-22.635706, 66.364454], - [-22.636102, 66.364406], - [-22.636985, 66.364259], - [-22.637983, 66.364131], - [-22.638496, 66.364248], - [-22.638946, 66.364327], - [-22.639389, 66.364318], - [-22.639721, 66.36415], - [-22.640751, 66.364134], - [-22.641119, 66.364193], - [-22.641398, 66.364179], - [-22.641874, 66.364185], - [-22.643176, 66.364229], - [-22.64438, 66.364158], - [-22.645839, 66.36394], - [-22.646501, 66.363687], - [-22.647092, 66.363543], - [-22.647832, 66.363371], - [-22.648379, 66.363186], - [-22.649045, 66.362812], - [-22.64952, 66.362409], - [-22.649985, 66.361928], - [-22.650144, 66.361596], - [-22.651506, 66.361457], - [-22.651649, 66.361298], - [-22.652018, 66.361145], - [-22.652655, 66.36116], - [-22.653719, 66.361333], - [-22.655385, 66.361253], - [-22.656121, 66.361267], - [-22.657432, 66.361386], - [-22.658713, 66.361434], - [-22.658846, 66.361426], - [-22.659674, 66.361396], - [-22.660541, 66.361293], - [-22.661006, 66.36123], - [-22.661859, 66.361009], - [-22.662155, 66.360987], - [-22.66304, 66.360781], - [-22.663896, 66.360762], - [-22.664478, 66.36059], - [-22.665004, 66.360473], - [-22.665412, 66.360463], - [-22.665897, 66.36025], - [-22.666387, 66.360173], - [-22.667353, 66.360034], - [-22.668362, 66.360024], - [-22.669394, 66.360007], - [-22.6698, 66.359966], - [-22.670036, 66.359886], - [-22.670384, 66.359783], - [-22.670604, 66.359779], - [-22.671216, 66.359786], - [-22.673387, 66.360103], - [-22.674933, 66.360296], - [-22.675695, 66.360324], - [-22.677219, 66.360404], - [-22.679126, 66.360434], - [-22.679742, 66.360421], - [-22.680174, 66.360332], - [-22.6804, 66.360259], - [-22.680823, 66.360068], - [-22.681051, 66.36002], - [-22.681419, 66.360018], - [-22.682521, 66.359987], - [-22.683261, 66.359938], - [-22.683977, 66.359827], - [-22.684442, 66.359703], - [-22.684933, 66.359543], - [-22.685316, 66.359381], - [-22.685571, 66.359257], - [-22.685713, 66.359136], - [-22.685692, 66.359014], - [-22.685903, 66.358871], - [-22.68622, 66.358709], - [-22.686727, 66.358618], - [-22.687207, 66.358548], - [-22.687931, 66.358375], - [-22.688467, 66.358119], - [-22.689025, 66.357798], - [-22.689501, 66.35758], - [-22.689908, 66.357436], - [-22.690311, 66.357219], - [-22.690975, 66.356919], - [-22.69218, 66.356434], - [-22.692911, 66.356194], - [-22.693638, 66.355942], - [-22.69451, 66.355587], - [-22.694851, 66.355472], - [-22.695487, 66.355132], - [-22.696101, 66.354752], - [-22.696536, 66.354332], - [-22.696785, 66.353996], - [-22.697013, 66.353521], - [-22.697189, 66.352933], - [-22.697638, 66.352477], - [-22.697721, 66.352208], - [-22.697727, 66.351685], - [-22.697576, 66.351242], - [-22.697847, 66.351053], - [-22.69796, 66.350814], - [-22.698017, 66.350227], - [-22.69811, 66.349843], - [-22.698352, 66.349165], - [-22.698513, 66.348841], - [-22.698606, 66.348345], - [-22.698872, 66.34825], - [-22.69907, 66.348128], - [-22.699188, 66.347943], - [-22.699427, 66.347367], - [-22.699558, 66.347021], - [-22.69974, 66.346689], - [-22.699982, 66.346499], - [-22.700227, 66.346161], - [-22.700329, 66.345768], - [-22.700379, 66.345375], - [-22.700862, 66.344865], - [-22.701166, 66.344486], - [-22.701297, 66.343973], - [-22.70145, 66.343638], - [-22.701616, 66.343406], - [-22.701907, 66.343213], - [-22.703273, 66.342586], - [-22.704027, 66.342246], - [-22.704558, 66.341893], - [-22.704614, 66.341705], - [-22.704611, 66.341481], - [-22.704767, 66.341016], - [-22.705038, 66.34057], - [-22.705344, 66.34032], - [-22.705786, 66.340099], - [-22.706355, 66.339927], - [-22.707073, 66.339861], - [-22.70833, 66.339674], - [-22.709072, 66.3395], - [-22.709609, 66.339248], - [-22.709968, 66.339119], - [-22.710955, 66.338909], - [-22.711754, 66.338452], - [-22.71218, 66.338216], - [-22.713532, 66.337476], - [-22.714203, 66.337134], - [-22.714702, 66.336779], - [-22.715807, 66.336351], - [-22.716312, 66.336237], - [-22.71673, 66.336012], - [-22.717425, 66.335496], - [-22.718081, 66.335118], - [-22.71882, 66.33461], - [-22.719514, 66.334218], - [-22.719914, 66.333707], - [-22.720299, 66.333394], - [-22.720833, 66.333052], - [-22.721271, 66.3326], - [-22.722518, 66.331952], - [-22.723811, 66.331277], - [-22.724422, 66.330953], - [-22.724586, 66.330762], - [-22.724967, 66.330538], - [-22.725184, 66.330322], - [-22.725208, 66.330018], - [-22.725066, 66.329831], - [-22.72439, 66.329264], - [-22.724273, 66.329094], - [-22.724331, 66.329003], - [-22.724548, 66.328911], - [-22.72505, 66.328822], - [-22.726292, 66.328676], - [-22.727812, 66.32839], - [-22.728972, 66.328194], - [-22.72987, 66.328007], - [-22.730583, 66.327784], - [-22.731501, 66.327428], - [-22.731944, 66.327235], - [-22.732662, 66.327001], - [-22.733115, 66.326768], - [-22.733819, 66.32633], - [-22.734052, 66.326209], - [-22.734767, 66.325993], - [-22.735994, 66.325531], - [-22.737096, 66.325207], - [-22.737583, 66.325016], - [-22.738496, 66.324594], - [-22.739373, 66.324292], - [-22.739693, 66.324206], - [-22.741688, 66.323644], - [-22.742481, 66.323375], - [-22.743097, 66.323123], - [-22.743927, 66.322574], - [-22.744399, 66.322446], - [-22.745234, 66.322184], - [-22.745934, 66.321936], - [-22.746996, 66.321703], - [-22.748047, 66.321391], - [-22.748717, 66.321169], - [-22.749322, 66.320969], - [-22.750346, 66.320561], - [-22.751188, 66.320154], - [-22.751767, 66.319892], - [-22.752218, 66.319685], - [-22.753015, 66.319321], - [-22.755124, 66.318581], - [-22.755735, 66.31845], - [-22.7564, 66.31833], - [-22.757266, 66.318253], - [-22.758534, 66.318109], - [-22.759715, 66.317954], - [-22.760576, 66.317908], - [-22.761277, 66.317842], - [-22.761928, 66.317719], - [-22.762947, 66.317433], - [-22.763806, 66.317239], - [-22.763926, 66.317212], - [-22.764591, 66.317041], - [-22.765412, 66.316844], - [-22.766587, 66.316616], - [-22.766812, 66.316511], - [-22.767415, 66.316467], - [-22.769086, 66.316376], - [-22.770811, 66.316356], - [-22.77223, 66.316268], - [-22.773155, 66.316079], - [-22.773933, 66.315906], - [-22.775374, 66.315841], - [-22.776793, 66.315659], - [-22.777328, 66.315546], - [-22.778557, 66.315398], - [-22.779797, 66.31516], - [-22.780585, 66.315019], - [-22.781958, 66.314842], - [-22.784139, 66.314416], - [-22.784944, 66.314186], - [-22.786025, 66.314023], - [-22.786808, 66.313917], - [-22.787511, 66.313762], - [-22.788624, 66.313402], - [-22.789166, 66.313148], - [-22.78927, 66.312964], - [-22.789675, 66.312824], - [-22.789888, 66.31282], - [-22.789911, 66.312976], - [-22.789703, 66.313135], - [-22.789801, 66.313213], - [-22.790279, 66.313302], - [-22.790493, 66.313407], - [-22.790678, 66.313486], - [-22.791048, 66.313491], - [-22.791236, 66.313453], - [-22.791405, 66.313366], - [-22.791384, 66.313245], - [-22.791261, 66.31314], - [-22.791046, 66.313116], - [-22.791006, 66.313067], - [-22.791026, 66.312996], - [-22.791213, 66.312907], - [-22.791596, 66.312864], - [-22.792169, 66.312891], - [-22.792733, 66.312965], - [-22.793505, 66.312982], - [-22.794165, 66.312891], - [-22.794919, 66.312752], - [-22.796429, 66.312558], - [-22.798368, 66.312343], - [-22.800024, 66.312061], - [-22.800713, 66.312015], - [-22.800885, 66.312026], - [-22.80145, 66.311982], - [-22.801979, 66.3119], - [-22.803435, 66.311877], - [-22.804516, 66.311837], - [-22.805811, 66.311727], - [-22.807175, 66.311572], - [-22.807703, 66.311582], - [-22.808246, 66.311548], - [-22.809272, 66.31156], - [-22.81029, 66.311464], - [-22.811892, 66.311338], - [-22.812992, 66.311276], - [-22.813345, 66.311185], - [-22.814566, 66.310998], - [-22.815047, 66.310903], - [-22.816058, 66.310875], - [-22.816843, 66.310833], - [-22.817243, 66.310852], - [-22.817771, 66.310821], - [-22.818353, 66.310748], - [-22.818994, 66.310635], - [-22.819192, 66.310632], - [-22.819585, 66.310728], - [-22.820028, 66.310741], - [-22.820786, 66.310702], - [-22.821192, 66.310591], - [-22.82162, 66.310453], - [-22.821948, 66.310458], - [-22.822434, 66.310506], - [-22.822969, 66.310424], - [-22.823715, 66.310342], - [-22.82401, 66.31024], - [-22.824195, 66.310169], - [-22.824482, 66.310184], - [-22.824686, 66.310276], - [-22.824692, 66.310418], - [-22.824948, 66.310508], - [-22.825391, 66.310564], - [-22.825622, 66.310377], - [-22.825935, 66.310032], - [-22.826155, 66.309786], - [-22.826356, 66.309803], - [-22.826283, 66.309984], - [-22.82772, 66.310139], - [-22.82873, 66.310103], - [-22.829731, 66.310273], - [-22.830687, 66.310252], - [-22.831989, 66.31047], - [-22.833853, 66.310415], - [-22.834286, 66.310444], - [-22.834543, 66.310545], - [-22.83485, 66.310468], - [-22.835209, 66.31045], - [-22.836148, 66.310504], - [-22.837222, 66.310808], - [-22.837968, 66.311088], - [-22.838653, 66.31175], - [-22.838327, 66.312002], - [-22.838013, 66.312177], - [-22.838294, 66.312469], - [-22.838053, 66.313091], - [-22.838373, 66.313616], - [-22.839228, 66.314433], - [-22.839389, 66.314743], - [-22.839163, 66.315202], - [-22.838466, 66.315497], - [-22.838481, 66.316161], - [-22.838327, 66.316273], - [-22.837977, 66.316398], - [-22.837933, 66.316709], - [-22.837783, 66.316825], - [-22.837858, 66.317234], - [-22.837951, 66.317422], - [-22.837597, 66.317672], - [-22.837564, 66.318043], - [-22.837504, 66.318272], - [-22.837462, 66.318471], - [-22.837388, 66.318786], - [-22.837467, 66.319477], - [-22.837311, 66.319932], - [-22.836653, 66.320328], - [-22.836292, 66.320998], - [-22.835494, 66.322562], - [-22.834743, 66.323239], - [-22.833937, 66.323819], - [-22.833498, 66.324598], - [-22.832714, 66.325387], - [-22.832773, 66.325763], - [-22.832345, 66.326154], - [-22.832119, 66.32679], - [-22.831694, 66.327069], - [-22.831572, 66.327584], - [-22.830768, 66.328662], - [-22.83061, 66.329313], - [-22.830113, 66.330099], - [-22.829614, 66.330605], - [-22.828569, 66.331536], - [-22.828218, 66.33193], - [-22.827404, 66.332541], - [-22.826906, 66.332884], - [-22.826611, 66.333346], - [-22.826566, 66.334036], - [-22.82661, 66.334595], - [-22.826244, 66.335373], - [-22.825644, 66.336221], - [-22.825574, 66.336675], - [-22.82604, 66.337188], - [-22.826073, 66.338047], - [-22.825756, 66.339089], - [-22.825016, 66.339892], - [-22.82435, 66.340232], - [-22.823826, 66.34037], - [-22.823445, 66.340588], - [-22.82338, 66.340992], - [-22.823714, 66.341259], - [-22.822539, 66.341014], - [-22.821997, 66.34097], - [-22.821364, 66.341022], - [-22.820597, 66.341156], - [-22.81939, 66.341214], - [-22.817795, 66.341312], - [-22.816841, 66.34142], - [-22.816294, 66.341435], - [-22.814009, 66.341873], - [-22.81284, 66.342055], - [-22.810532, 66.342303], - [-22.807674, 66.342801], - [-22.805078, 66.343362], - [-22.802932, 66.34385], - [-22.802458, 66.344071], - [-22.801794, 66.344202], - [-22.801645, 66.344341], - [-22.801509, 66.344533], - [-22.80101, 66.344735], - [-22.799783, 66.344946], - [-22.799373, 66.345205], - [-22.79902, 66.345329], - [-22.798522, 66.345441], - [-22.797878, 66.345719], - [-22.797294, 66.346033], - [-22.796762, 66.346319], - [-22.795894, 66.346604], - [-22.795281, 66.346939], - [-22.794869, 66.347335], - [-22.794401, 66.347578], - [-22.794419, 66.347858], - [-22.794601, 66.347993], - [-22.794331, 66.348135], - [-22.793473, 66.348312], - [-22.792241, 66.34881], - [-22.791746, 66.349244], - [-22.791773, 66.349575], - [-22.791552, 66.34975], - [-22.790898, 66.349842], - [-22.790588, 66.350017], - [-22.789902, 66.350159], - [-22.789578, 66.350512], - [-22.7888, 66.351247], - [-22.788384, 66.351867], - [-22.787971, 66.352203], - [-22.78768, 66.352926], - [-22.787273, 66.353574], - [-22.786644, 66.354307], - [-22.785664, 66.355447], - [-22.78472, 66.356609], - [-22.784532, 66.356888], - [-22.784334, 66.357129], - [-22.784176, 66.357635], - [-22.784506, 66.358126], - [-22.784741, 66.358216], - [-22.784917, 66.35824], - [-22.784838, 66.358281], - [-22.784564, 66.358319], - [-22.784194, 66.358334], - [-22.783432, 66.358264], - [-22.783132, 66.358287], - [-22.782637, 66.358575], - [-22.782445, 66.358825], - [-22.782695, 66.35906], - [-22.782594, 66.359337], - [-22.782396, 66.359606], - [-22.782842, 66.3601], - [-22.782154, 66.360776], - [-22.782213, 66.361004], - [-22.781763, 66.361082], - [-22.781512, 66.361301], - [-22.781196, 66.361447], - [-22.781087, 66.361869], - [-22.780111, 66.362991], - [-22.779506, 66.363917], - [-22.779747, 66.364112], - [-22.77958, 66.3642], - [-22.779468, 66.364202], - [-22.77942, 66.364357], - [-22.779447, 66.364568], - [-22.779187, 66.364723], - [-22.77929, 66.364884], - [-22.77921, 66.364988], - [-22.778948, 66.365054], - [-22.77869, 66.365091], - [-22.778758, 66.365346], - [-22.778683, 66.365484], - [-22.778899, 66.365594], - [-22.779038, 66.365993], - [-22.779118, 66.366075], - [-22.77951, 66.366086], - [-22.779917, 66.366066], - [-22.780228, 66.366166], - [-22.780357, 66.366297], - [-22.780555, 66.366281], - [-22.78082, 66.36626], - [-22.781129, 66.366187], - [-22.781226, 66.366213], - [-22.781199, 66.366332], - [-22.781419, 66.366329], - [-22.781598, 66.366433], - [-22.781646, 66.366589], - [-22.78185, 66.366579], - [-22.782015, 66.366525], - [-22.782192, 66.366525], - [-22.782418, 66.366699], - [-22.782682, 66.366727], - [-22.782884, 66.366783], - [-22.783351, 66.366751], - [-22.78355, 66.366671], - [-22.783969, 66.366402], - [-22.784216, 66.366103], - [-22.78445, 66.366032], - [-22.784863, 66.365783], - [-22.78538, 66.36554], - [-22.785611, 66.365361], - [-22.785808, 66.365316], - [-22.786045, 66.365144], - [-22.786045, 66.364922], - [-22.786102, 66.36474], - [-22.786226, 66.36466], - [-22.78658, 66.364639], - [-22.787294, 66.364619], - [-22.7877, 66.364436], - [-22.787744, 66.364377], - [-22.788335, 66.364243], - [-22.788421, 66.364198], - [-22.788491, 66.364091], - [-22.78884, 66.363868], - [-22.788845, 66.363768], - [-22.78893, 66.363664], - [-22.789053, 66.363514], - [-22.789031, 66.363368], - [-22.789091, 66.363195], - [-22.789225, 66.36308], - [-22.789548, 66.362997], - [-22.789816, 66.362951], - [-22.789938, 66.362948], - [-22.790331, 66.362845], - [-22.790437, 66.362555], - [-22.791151, 66.362445], - [-22.791356, 66.362142], - [-22.791758, 66.361907], - [-22.791425, 66.361828], - [-22.791527, 66.361764], - [-22.791966, 66.361619], - [-22.792228, 66.361369], - [-22.792347, 66.361318], - [-22.79262, 66.361238], - [-22.792761, 66.361148], - [-22.792674, 66.361034], - [-22.792755, 66.360961], - [-22.793082, 66.360897], - [-22.793195, 66.360797], - [-22.79319, 66.360681], - [-22.793307, 66.360608], - [-22.793817, 66.360451], - [-22.794064, 66.360206], - [-22.79395, 66.360004], - [-22.794143, 66.359931], - [-22.794477, 66.359857], - [-22.794922, 66.359608], - [-22.794998, 66.359457], - [-22.794878, 66.359302], - [-22.795072, 66.359206], - [-22.795476, 66.359092], - [-22.795571, 66.35901], - [-22.795516, 66.358922], - [-22.795593, 66.358849], - [-22.795775, 66.358746], - [-22.796055, 66.358636], - [-22.796236, 66.358422], - [-22.796221, 66.358153], - [-22.796767, 66.358118], - [-22.796989, 66.357863], - [-22.797042, 66.357644], - [-22.797411, 66.35733], - [-22.797587, 66.35723], - [-22.797872, 66.356925], - [-22.798067, 66.35687], - [-22.798082, 66.356723], - [-22.798253, 66.356538], - [-22.798296, 66.356334], - [-22.798564, 66.356289], - [-22.798731, 66.356201], - [-22.799096, 66.355681], - [-22.799724, 66.354964], - [-22.79999, 66.354765], - [-22.801194, 66.353944], - [-22.801445, 66.353851], - [-22.801536, 66.353601], - [-22.801843, 66.353476], - [-22.802287, 66.353383], - [-22.802524, 66.353208], - [-22.803194, 66.352797], - [-22.803667, 66.35265], - [-22.804459, 66.352269], - [-22.80609, 66.351695], - [-22.807547, 66.351296], - [-22.809137, 66.350797], - [-22.810825, 66.350397], - [-22.811525, 66.350294], - [-22.811909, 66.350406], - [-22.811622, 66.350623], - [-22.811581, 66.350755], - [-22.812059, 66.350876], - [-22.812708, 66.35085], - [-22.813253, 66.35071], - [-22.813545, 66.350373], - [-22.813799, 66.350257], - [-22.813949, 66.3503], - [-22.813966, 66.350401], - [-22.814532, 66.350454], - [-22.814979, 66.35025], - [-22.815538, 66.350111], - [-22.816208, 66.35001], - [-22.816914, 66.34983], - [-22.817244, 66.349792], - [-22.817768, 66.349797], - [-22.818637, 66.349682], - [-22.819764, 66.349498], - [-22.821153, 66.349341], - [-22.822317, 66.348973], - [-22.822892, 66.348855], - [-22.823031, 66.348797], - [-22.823116, 66.348698], - [-22.823642, 66.348592], - [-22.824244, 66.348508], - [-22.824732, 66.348358], - [-22.825371, 66.348261], - [-22.825562, 66.348112], - [-22.826432, 66.348058], - [-22.827452, 66.348121], - [-22.827951, 66.348065], - [-22.828686, 66.347913], - [-22.829539, 66.347831], - [-22.832032, 66.347456], - [-22.834157, 66.346992], - [-22.835235, 66.346836], - [-22.835993, 66.346877], - [-22.836432, 66.346862], - [-22.837103, 66.34675], - [-22.837826, 66.34671], - [-22.838449, 66.346597], - [-22.838974, 66.346382], - [-22.84083, 66.346027], - [-22.841408, 66.345717], - [-22.841806, 66.345398], - [-22.841834, 66.34517], - [-22.842193, 66.344887], - [-22.842096, 66.344632], - [-22.842344, 66.344484], - [-22.842648, 66.343974], - [-22.842906, 66.343844], - [-22.843449, 66.343691], - [-22.844494, 66.34362], - [-22.84487, 66.343546], - [-22.845389, 66.343321], - [-22.845954, 66.343173], - [-22.846817, 66.343053], - [-22.84847, 66.342994], - [-22.849258, 66.342943], - [-22.850223, 66.342927], - [-22.851339, 66.342825], - [-22.852848, 66.342739], - [-22.853986, 66.342572], - [-22.854258, 66.342528], - [-22.855485, 66.342002], - [-22.856114, 66.341965], - [-22.856423, 66.341987], - [-22.857964, 66.341983], - [-22.859542, 66.341877], - [-22.860609, 66.341718], - [-22.861321, 66.34155], - [-22.861949, 66.341479], - [-22.862433, 66.341267], - [-22.862512, 66.340999], - [-22.863684, 66.34067], - [-22.864294, 66.340301], - [-22.865453, 66.339951], - [-22.865791, 66.339931], - [-22.867272, 66.339384], - [-22.867581, 66.339257], - [-22.868398, 66.338921], - [-22.869389, 66.338531], - [-22.869495, 66.338437], - [-22.869652, 66.338148], - [-22.86991, 66.337393], - [-22.870092, 66.337001], - [-22.870382, 66.336691], - [-22.870515, 66.33653], - [-22.870548, 66.33649], - [-22.870797, 66.336235], - [-22.871322, 66.33595], - [-22.872197, 66.335648], - [-22.872846, 66.335324], - [-22.873558, 66.334656], - [-22.873778, 66.334025], - [-22.874021, 66.333407], - [-22.874019, 66.333157], - [-22.874036, 66.332944], - [-22.873775, 66.332384], - [-22.873871, 66.331454], - [-22.874138, 66.331219], - [-22.874529, 66.331107], - [-22.875098, 66.330973], - [-22.876386, 66.330503], - [-22.877539, 66.330106], - [-22.878359, 66.329748], - [-22.87926, 66.329328], - [-22.8795, 66.329147], - [-22.879762, 66.328874], - [-22.880138, 66.328509], - [-22.880238, 66.328252], - [-22.880505, 66.327332], - [-22.880696, 66.326688], - [-22.881044, 66.326152], - [-22.88101, 66.32602], - [-22.881417, 66.325501], - [-22.881594, 66.325195], - [-22.881596, 66.324724], - [-22.881414, 66.324395], - [-22.879417, 66.323348], - [-22.878572, 66.322764], - [-22.878488, 66.322662], - [-22.877915, 66.321956], - [-22.877904, 66.321292], - [-22.878441, 66.320447], - [-22.878431, 66.320069], - [-22.878698, 66.319817], - [-22.880414, 66.319189], - [-22.880736, 66.319123], - [-22.881542, 66.318957], - [-22.882443, 66.31868], - [-22.883579, 66.318154], - [-22.884374, 66.317604], - [-22.885584, 66.317171], - [-22.887376, 66.316409], - [-22.88964, 66.315247], - [-22.890648, 66.314758], - [-22.892464, 66.314019], - [-22.895791, 66.312724], - [-22.897109, 66.312381], - [-22.899306, 66.311803], - [-22.901531, 66.310867], - [-22.902914, 66.310479], - [-22.905855, 66.309931], - [-22.909498, 66.309078], - [-22.912492, 66.308294], - [-22.91638, 66.307699], - [-22.920045, 66.307163], - [-22.923771, 66.306926], - [-22.925392, 66.30672], - [-22.925659, 66.306574], - [-22.925852, 66.306323], - [-22.926442, 66.306185], - [-22.930079, 66.306198], - [-22.932708, 66.306142], - [-22.93525, 66.305961], - [-22.936902, 66.305806], - [-22.937526, 66.305762], - [-22.937997, 66.305517], - [-22.939378, 66.30521], - [-22.941003, 66.304707], - [-22.942675, 66.304516], - [-22.942942, 66.30433], - [-22.942983, 66.304028], - [-22.943618, 66.303487], - [-22.945056, 66.303466], - [-22.947078, 66.303223], - [-22.948312, 66.303094], - [-22.950029, 66.302522], - [-22.95034, 66.302354], - [-22.950313, 66.30221], - [-22.950597, 66.301867], - [-22.951124, 66.30161], - [-22.951771, 66.301549], - [-22.952149, 66.301388], - [-22.952475, 66.301158], - [-22.953294, 66.300817], - [-22.955442, 66.299995], - [-22.955871, 66.299822], - [-22.957055, 66.299286], - [-22.957817, 66.299207], - [-22.958167, 66.299029], - [-22.960048, 66.299008], - [-22.960729, 66.298963], - [-22.961486, 66.298837], - [-22.96214, 66.298562], - [-22.962608, 66.298182], - [-22.962668, 66.297844], - [-22.962559, 66.297565], - [-22.962865, 66.297228], - [-22.962957, 66.296901], - [-22.962934, 66.296545], - [-22.963165, 66.296379], - [-22.963229, 66.295924], - [-22.963851, 66.295432], - [-22.964962, 66.29496], - [-22.966042, 66.294772], - [-22.966605, 66.294961], - [-22.966289, 66.295228], - [-22.965467, 66.295324], - [-22.965499, 66.295949], - [-22.965843, 66.295978], - [-22.966142, 66.29616], - [-22.966009, 66.296955], - [-22.966825, 66.297408], - [-22.968435, 66.297893], - [-22.970307, 66.298326], - [-22.972371, 66.298596], - [-22.973933, 66.298654], - [-22.977055, 66.298484], - [-22.977473, 66.298368], - [-22.977962, 66.29815], - [-22.978127, 66.298016], - [-22.978233, 66.297867], - [-22.978974, 66.297539], - [-22.979748, 66.297143], - [-22.980607, 66.296892], - [-22.981983, 66.296594], - [-22.982386, 66.296523], - [-22.982795, 66.296464], - [-22.983197, 66.29645], - [-22.984087, 66.296429], - [-22.9843, 66.296569], - [-22.984253, 66.296763], - [-22.984998, 66.296856], - [-22.985521, 66.296642], - [-22.986003, 66.296652], - [-22.985944, 66.296893], - [-22.9873, 66.29706], - [-22.989077, 66.297082], - [-22.989855, 66.297313], - [-22.990535, 66.297593], - [-22.991727, 66.297945], - [-22.992675, 66.298124], - [-22.993925, 66.298139], - [-22.994693, 66.29811], - [-22.995481, 66.298188], - [-22.998141, 66.298417], - [-22.998835, 66.298424], - [-22.999986, 66.298294], - [-23.001092, 66.298118], - [-23.001876, 66.298064], - [-23.002563, 66.297904], - [-23.003581, 66.297744], - [-23.00436, 66.297688], - [-23.00504, 66.297671], - [-23.007078, 66.29773], - [-23.009204, 66.297664], - [-23.010272, 66.297567], - [-23.015522, 66.297083], - [-23.020383, 66.29659], - [-23.02072, 66.29656], - [-23.020881, 66.296343], - [-23.021547, 66.296062], - [-23.022142, 66.296165], - [-23.022352, 66.296282], - [-23.022147, 66.296511], - [-23.022347, 66.296573], - [-23.02262, 66.296483], - [-23.022786, 66.296364], - [-23.022994, 66.296384], - [-23.023038, 66.296474], - [-23.023451, 66.296491], - [-23.024153, 66.296466], - [-23.024342, 66.296379], - [-23.024126, 66.296224], - [-23.023997, 66.296034], - [-23.024407, 66.295853], - [-23.024925, 66.295988], - [-23.025023, 66.296159], - [-23.025274, 66.296349], - [-23.025549, 66.296473], - [-23.025414, 66.296628], - [-23.025732, 66.296572], - [-23.026083, 66.296496], - [-23.026256, 66.296461], - [-23.026332, 66.296541], - [-23.026654, 66.296625], - [-23.027748, 66.296737], - [-23.028837, 66.296888], - [-23.029889, 66.297111], - [-23.030528, 66.297369], - [-23.031198, 66.297517], - [-23.031908, 66.297597], - [-23.031788, 66.297546], - [-23.031776, 66.297405], - [-23.031981, 66.297332], - [-23.032288, 66.297281], - [-23.032647, 66.297506], - [-23.032654, 66.297764], - [-23.032352, 66.297918], - [-23.032579, 66.297971], - [-23.032975, 66.298253], - [-23.033563, 66.298501], - [-23.03521, 66.29893], - [-23.037807, 66.299508], - [-23.039143, 66.299902], - [-23.042313, 66.300579], - [-23.042978, 66.300655], - [-23.044388, 66.301379], - [-23.045578, 66.302203], - [-23.046836, 66.302626], - [-23.048004, 66.303157], - [-23.050145, 66.303501], - [-23.051926, 66.304172], - [-23.053958, 66.304458], - [-23.054432, 66.304717], - [-23.057285, 66.30525], - [-23.057742, 66.305494], - [-23.057999, 66.305732], - [-23.058975, 66.306092], - [-23.06047, 66.306377], - [-23.062059, 66.306644], - [-23.063303, 66.306813], - [-23.063614, 66.306805], - [-23.064274, 66.306705], - [-23.064682, 66.306621], - [-23.065358, 66.306696], - [-23.065948, 66.306812], - [-23.06574, 66.30695], - [-23.065342, 66.307084], - [-23.065021, 66.307134], - [-23.06472, 66.307265], - [-23.064903, 66.30739], - [-23.065304, 66.307485], - [-23.065477, 66.30749], - [-23.065598, 66.307321], - [-23.065841, 66.30717], - [-23.066292, 66.307082], - [-23.066571, 66.306997], - [-23.067011, 66.307047], - [-23.06699, 66.307184], - [-23.066773, 66.307299], - [-23.066383, 66.307377], - [-23.066464, 66.307465], - [-23.06695, 66.307441], - [-23.067472, 66.307519], - [-23.067487, 66.307705], - [-23.067867, 66.307742], - [-23.068227, 66.307686], - [-23.068582, 66.307739], - [-23.069579, 66.30786], - [-23.06974, 66.308004], - [-23.069596, 66.308303], - [-23.06929, 66.308416], - [-23.068968, 66.308481], - [-23.070074, 66.308897], - [-23.070771, 66.309056], - [-23.072278, 66.309149], - [-23.07401, 66.309875], - [-23.075663, 66.310325], - [-23.077021, 66.310822], - [-23.077374, 66.311129], - [-23.077745, 66.311597], - [-23.078528, 66.312044], - [-23.079633, 66.312531], - [-23.081447, 66.313037], - [-23.082636, 66.313433], - [-23.08549, 66.314134], - [-23.087045, 66.314375], - [-23.087813, 66.314418], - [-23.088752, 66.314425], - [-23.091235, 66.314588], - [-23.092007, 66.314724], - [-23.093005, 66.315041], - [-23.094723, 66.315482], - [-23.096376, 66.315865], - [-23.098107, 66.316409], - [-23.099213, 66.316649], - [-23.101424, 66.316752], - [-23.101863, 66.31684], - [-23.103049, 66.316925], - [-23.103344, 66.316858], - [-23.104089, 66.317079], - [-23.105017, 66.317203], - [-23.107345, 66.317706], - [-23.109522, 66.31801], - [-23.110307, 66.318038], - [-23.110294, 66.31767], - [-23.110927, 66.317665], - [-23.111031, 66.317845], - [-23.111013, 66.317961], - [-23.111262, 66.318022], - [-23.111418, 66.317808], - [-23.111755, 66.317756], - [-23.112152, 66.317799], - [-23.111883, 66.317915], - [-23.111948, 66.317998], - [-23.112421, 66.318011], - [-23.113038, 66.31809], - [-23.113584, 66.318122], - [-23.113578, 66.318245], - [-23.113669, 66.318338], - [-23.113686, 66.31847], - [-23.113631, 66.318562], - [-23.113965, 66.318612], - [-23.114147, 66.318424], - [-23.114356, 66.318265], - [-23.114731, 66.318222], - [-23.115595, 66.318248], - [-23.116282, 66.318237], - [-23.116696, 66.318264], - [-23.117275, 66.318247], - [-23.117398, 66.318319], - [-23.117306, 66.318447], - [-23.117522, 66.318473], - [-23.118315, 66.318494], - [-23.118668, 66.318622], - [-23.118654, 66.31876], - [-23.118567, 66.31892], - [-23.118412, 66.31923], - [-23.118493, 66.319409], - [-23.118712, 66.31959], - [-23.118996, 66.319602], - [-23.119238, 66.319284], - [-23.119421, 66.319168], - [-23.120015, 66.319352], - [-23.120001, 66.319552], - [-23.119931, 66.319724], - [-23.12007, 66.319854], - [-23.120139, 66.320302], - [-23.120074, 66.32048], - [-23.120252, 66.320566], - [-23.12039, 66.320379], - [-23.120475, 66.320179], - [-23.120866, 66.32014], - [-23.121183, 66.320205], - [-23.12104, 66.320537], - [-23.121259, 66.320702], - [-23.121478, 66.320747], - [-23.121689, 66.320688], - [-23.121909, 66.320492], - [-23.122073, 66.320407], - [-23.122369, 66.320347], - [-23.12252, 66.320379], - [-23.122444, 66.320472], - [-23.122558, 66.320615], - [-23.122633, 66.320759], - [-23.122471, 66.320853], - [-23.122696, 66.320929], - [-23.122751, 66.321004], - [-23.122959, 66.321013], - [-23.123094, 66.320978], - [-23.123613, 66.320629], - [-23.123859, 66.320656], - [-23.123855, 66.320739], - [-23.123656, 66.320978], - [-23.123679, 66.321058], - [-23.123995, 66.321075], - [-23.124413, 66.321125], - [-23.124999, 66.321112], - [-23.125346, 66.320999], - [-23.126006, 66.320989], - [-23.12642, 66.321168], - [-23.127529, 66.321364], - [-23.127718, 66.321304], - [-23.128163, 66.321224], - [-23.128861, 66.321327], - [-23.129095, 66.321385], - [-23.129172, 66.321687], - [-23.12995, 66.321943], - [-23.130684, 66.322058], - [-23.131769, 66.322286], - [-23.132165, 66.322583], - [-23.133131, 66.322967], - [-23.134804, 66.323264], - [-23.135481, 66.323538], - [-23.137313, 66.324304], - [-23.138429, 66.324523], - [-23.139347, 66.32491], - [-23.140217, 66.325276], - [-23.141579, 66.32566], - [-23.142407, 66.325851], - [-23.143608, 66.326134], - [-23.145044, 66.326295], - [-23.145786, 66.326417], - [-23.146312, 66.32637], - [-23.147683, 66.326332], - [-23.149059, 66.326426], - [-23.149616, 66.32645], - [-23.150496, 66.326368], - [-23.151226, 66.326391], - [-23.151617, 66.326672], - [-23.151654, 66.326853], - [-23.152297, 66.327059], - [-23.15389, 66.32736], - [-23.154287, 66.327583], - [-23.15441, 66.327923], - [-23.154904, 66.328241], - [-23.155107, 66.32831], - [-23.155233, 66.328287], - [-23.155424, 66.328173], - [-23.155767, 66.328199], - [-23.156008, 66.328323], - [-23.156014, 66.328402], - [-23.15574, 66.328472], - [-23.155822, 66.328586], - [-23.15632, 66.328571], - [-23.156717, 66.328677], - [-23.156722, 66.328838], - [-23.156664, 66.3292], - [-23.156923, 66.329349], - [-23.157441, 66.329407], - [-23.158638, 66.32997], - [-23.159459, 66.330268], - [-23.159554, 66.330557], - [-23.160076, 66.330753], - [-23.16138, 66.330996], - [-23.161674, 66.331135], - [-23.162854, 66.331188], - [-23.163993, 66.331472], - [-23.1655, 66.331901], - [-23.167721, 66.332362], - [-23.168036, 66.332687], - [-23.168113, 66.333072], - [-23.167844, 66.333335], - [-23.167221, 66.333531], - [-23.16715, 66.333666], - [-23.167655, 66.333656], - [-23.167907, 66.333785], - [-23.167907, 66.333846], - [-23.168379, 66.333858], - [-23.168545, 66.333714], - [-23.169137, 66.333626], - [-23.169239, 66.333722], - [-23.168851, 66.334143], - [-23.16913, 66.334392], - [-23.169479, 66.334416], - [-23.169743, 66.334599], - [-23.169582, 66.334879], - [-23.170595, 66.334841], - [-23.170718, 66.335013], - [-23.171116, 66.335103], - [-23.171646, 66.3352], - [-23.172332, 66.335275], - [-23.172983, 66.335473], - [-23.173041, 66.335652], - [-23.173079, 66.335837], - [-23.172772, 66.336113], - [-23.172934, 66.336162], - [-23.173353, 66.336156], - [-23.174168, 66.336241], - [-23.17472, 66.336483], - [-23.17539, 66.33661], - [-23.176127, 66.336584], - [-23.176631, 66.336746], - [-23.176952, 66.337052], - [-23.176818, 66.337209], - [-23.177393, 66.337529], - [-23.178452, 66.337908], - [-23.179222, 66.338284], - [-23.179557, 66.338623], - [-23.17997, 66.338696], - [-23.180415, 66.338585], - [-23.180526, 66.33844], - [-23.180907, 66.33838], - [-23.181274, 66.338428], - [-23.181263, 66.338587], - [-23.181291, 66.338677], - [-23.181681, 66.338702], - [-23.182052, 66.338643], - [-23.18242, 66.338622], - [-23.182779, 66.338738], - [-23.182781, 66.338871], - [-23.182998, 66.339187], - [-23.182966, 66.3393], - [-23.182787, 66.339356], - [-23.182591, 66.33937], - [-23.182427, 66.339396], - [-23.182452, 66.339572], - [-23.182408, 66.339667], - [-23.182436, 66.339883], - [-23.182816, 66.339939], - [-23.183012, 66.339811], - [-23.183133, 66.339596], - [-23.183299, 66.339543], - [-23.183715, 66.339512], - [-23.184037, 66.339559], - [-23.184058, 66.339715], - [-23.183814, 66.339826], - [-23.183654, 66.339881], - [-23.183565, 66.340008], - [-23.183291, 66.340144], - [-23.183018, 66.340216], - [-23.183189, 66.34032], - [-23.183597, 66.340271], - [-23.184, 66.340165], - [-23.18426, 66.340081], - [-23.184576, 66.340139], - [-23.184595, 66.340266], - [-23.184131, 66.340467], - [-23.183962, 66.340653], - [-23.184104, 66.340696], - [-23.184361, 66.340693], - [-23.184615, 66.34066], - [-23.185361, 66.34085], - [-23.185971, 66.341024], - [-23.186006, 66.34117], - [-23.185807, 66.341296], - [-23.185445, 66.341458], - [-23.18577, 66.341629], - [-23.186042, 66.34153], - [-23.1864, 66.341479], - [-23.186671, 66.341673], - [-23.18673, 66.341947], - [-23.187472, 66.342108], - [-23.188433, 66.342374], - [-23.18905, 66.342312], - [-23.189586, 66.342439], - [-23.18993, 66.342496], - [-23.189766, 66.342337], - [-23.18986, 66.342239], - [-23.190602, 66.342196], - [-23.190568, 66.342331], - [-23.19074, 66.342431], - [-23.190616, 66.342528], - [-23.190264, 66.342559], - [-23.190898, 66.342772], - [-23.190887, 66.342996], - [-23.191077, 66.343102], - [-23.191359, 66.34307], - [-23.191512, 66.342968], - [-23.191836, 66.342965], - [-23.191746, 66.343092], - [-23.19148, 66.343208], - [-23.191208, 66.34336], - [-23.191452, 66.34347], - [-23.192147, 66.343459], - [-23.192478, 66.343577], - [-23.192354, 66.343712], - [-23.19192, 66.343824], - [-23.191042, 66.343842], - [-23.190947, 66.343905], - [-23.190968, 66.344055], - [-23.191421, 66.344218], - [-23.191984, 66.344055], - [-23.192662, 66.343999], - [-23.193106, 66.344081], - [-23.19313, 66.344174], - [-23.192714, 66.344157], - [-23.192228, 66.344173], - [-23.191785, 66.344337], - [-23.191915, 66.344493], - [-23.192493, 66.344554], - [-23.192473, 66.344653], - [-23.19229, 66.344685], - [-23.192354, 66.344725], - [-23.193033, 66.344721], - [-23.193476, 66.344798], - [-23.193529, 66.34485], - [-23.192969, 66.344898], - [-23.192896, 66.34504], - [-23.193419, 66.345081], - [-23.194042, 66.344989], - [-23.194157, 66.345081], - [-23.194283, 66.345448], - [-23.194098, 66.345564], - [-23.194167, 66.345701], - [-23.19406, 66.345789], - [-23.193682, 66.345822], - [-23.194305, 66.34613], - [-23.194975, 66.346248], - [-23.195315, 66.346398], - [-23.195495, 66.346391], - [-23.195784, 66.346306], - [-23.196002, 66.346367], - [-23.196062, 66.346461], - [-23.195897, 66.346497], - [-23.19557, 66.346513], - [-23.19538, 66.346559], - [-23.195533, 66.346613], - [-23.195584, 66.346677], - [-23.195342, 66.346702], - [-23.195336, 66.346827], - [-23.195117, 66.346843], - [-23.194934, 66.346914], - [-23.194895, 66.347012], - [-23.194366, 66.347102], - [-23.192867, 66.347312], - [-23.192563, 66.34747], - [-23.1924, 66.347878], - [-23.192465, 66.348312], - [-23.192837, 66.348333], - [-23.193143, 66.348391], - [-23.193073, 66.348603], - [-23.192963, 66.348696], - [-23.193189, 66.348772], - [-23.19363, 66.348796], - [-23.19414, 66.34887], - [-23.194538, 66.348857], - [-23.194711, 66.348781], - [-23.194828, 66.348665], - [-23.194685, 66.348494], - [-23.194468, 66.348381], - [-23.19468, 66.348263], - [-23.195205, 66.348282], - [-23.19545, 66.348414], - [-23.195334, 66.348533], - [-23.195406, 66.348671], - [-23.195677, 66.348781], - [-23.196206, 66.348779], - [-23.196729, 66.348864], - [-23.196753, 66.349028], - [-23.196469, 66.349199], - [-23.195952, 66.349107], - [-23.195659, 66.349041], - [-23.195232, 66.349082], - [-23.194831, 66.349002], - [-23.194573, 66.348943], - [-23.194272, 66.349037], - [-23.194049, 66.349293], - [-23.193824, 66.3495], - [-23.193546, 66.349583], - [-23.193205, 66.349604], - [-23.193145, 66.349685], - [-23.193253, 66.349761], - [-23.193554, 66.349817], - [-23.193695, 66.350101], - [-23.193757, 66.351019], - [-23.19337, 66.351228], - [-23.193067, 66.351485], - [-23.193182, 66.351607], - [-23.19305, 66.351707], - [-23.192969, 66.351857], - [-23.193591, 66.352183], - [-23.193681, 66.352568], - [-23.19398, 66.352824], - [-23.193849, 66.352877], - [-23.19384, 66.35322], - [-23.193893, 66.353388], - [-23.194229, 66.353438], - [-23.194863, 66.353392], - [-23.195275, 66.353441], - [-23.1952, 66.353624], - [-23.195312, 66.353944], - [-23.195294, 66.354155], - [-23.194974, 66.354415], - [-23.194937, 66.355044], - [-23.194951, 66.355623], - [-23.195348, 66.355986], - [-23.19583, 66.356778], - [-23.19549, 66.357396], - [-23.194954, 66.35825], - [-23.194572, 66.358312], - [-23.194484, 66.358648], - [-23.19392, 66.358748], - [-23.193778, 66.358983], - [-23.193623, 66.359184], - [-23.193402, 66.359258], - [-23.192832, 66.359209], - [-23.192065, 66.359285], - [-23.192078, 66.35952], - [-23.19178, 66.359806], - [-23.191335, 66.359954], - [-23.190576, 66.359938], - [-23.189825, 66.359989], - [-23.189248, 66.360007], - [-23.188545, 66.359872], - [-23.187489, 66.359849], - [-23.186566, 66.359855], - [-23.185301, 66.359818], - [-23.184139, 66.359812], - [-23.183501, 66.359821], - [-23.181958, 66.359805], - [-23.180589, 66.359694], - [-23.178479, 66.359265], - [-23.177224, 66.359036], - [-23.176055, 66.358736], - [-23.174657, 66.35845], - [-23.17415, 66.358377], - [-23.173469, 66.358429], - [-23.172248, 66.359157], - [-23.171723, 66.358758], - [-23.171637, 66.358511], - [-23.171897, 66.358398], - [-23.172232, 66.358338], - [-23.172361, 66.358258], - [-23.172315, 66.358076], - [-23.172114, 66.357865], - [-23.171782, 66.357769], - [-23.171439, 66.35788], - [-23.171213, 66.35781], - [-23.171194, 66.357672], - [-23.170681, 66.357445], - [-23.169894, 66.357294], - [-23.169429, 66.357318], - [-23.167869, 66.357235], - [-23.167134, 66.357458], - [-23.166485, 66.357546], - [-23.166162, 66.357583], - [-23.165905, 66.357425], - [-23.165682, 66.357316], - [-23.16524, 66.357102], - [-23.164534, 66.356889], - [-23.164633, 66.356671], - [-23.164378, 66.35651], - [-23.163295, 66.356262], - [-23.162812, 66.35614], - [-23.162799, 66.356023], - [-23.162048, 66.355871], - [-23.161208, 66.355699], - [-23.160012, 66.35553], - [-23.159589, 66.35552], - [-23.159336, 66.35542], - [-23.159159, 66.355481], - [-23.158959, 66.355651], - [-23.158617, 66.355811], - [-23.158055, 66.355774], - [-23.157365, 66.356044], - [-23.157021, 66.356081], - [-23.156754, 66.355999], - [-23.156496, 66.355824], - [-23.156587, 66.355667], - [-23.156585, 66.355536], - [-23.156351, 66.355526], - [-23.156053, 66.355666], - [-23.155547, 66.355763], - [-23.154844, 66.35584], - [-23.15433, 66.355741], - [-23.154002, 66.355579], - [-23.152853, 66.355347], - [-23.152017, 66.355008], - [-23.152203, 66.354818], - [-23.152058, 66.354701], - [-23.152074, 66.354514], - [-23.15171, 66.354253], - [-23.151212, 66.354097], - [-23.150921, 66.354039], - [-23.150627, 66.354049], - [-23.150401, 66.353845], - [-23.148744, 66.35336], - [-23.146849, 66.352793], - [-23.146159, 66.35254], - [-23.14583, 66.352378], - [-23.145059, 66.352218], - [-23.144624, 66.352181], - [-23.14381, 66.352111], - [-23.143223, 66.352016], - [-23.141604, 66.351982], - [-23.141079, 66.352058], - [-23.140387, 66.352103], - [-23.139604, 66.352008], - [-23.139135, 66.351905], - [-23.137151, 66.351617], - [-23.136325, 66.351451], - [-23.134915, 66.351368], - [-23.133827, 66.351208], - [-23.133322, 66.351115], - [-23.132572, 66.351049], - [-23.13116, 66.350842], - [-23.128391, 66.350157], - [-23.126959, 66.349878], - [-23.126594, 66.34965], - [-23.125822, 66.349471], - [-23.124996, 66.349367], - [-23.123814, 66.349282], - [-23.122486, 66.349299], - [-23.121842, 66.349368], - [-23.121183, 66.349357], - [-23.120855, 66.349365], - [-23.120904, 66.349628], - [-23.120539, 66.349632], - [-23.120429, 66.349723], - [-23.120576, 66.349968], - [-23.1208, 66.350123], - [-23.120805, 66.35029], - [-23.120505, 66.350445], - [-23.12042, 66.350542], - [-23.120152, 66.350663], - [-23.119809, 66.350618], - [-23.119514, 66.350452], - [-23.119196, 66.350311], - [-23.118928, 66.35033], - [-23.118768, 66.350431], - [-23.11813, 66.35051], - [-23.117449, 66.350355], - [-23.117111, 66.350101], - [-23.116006, 66.349745], - [-23.115604, 66.349525], - [-23.115217, 66.349161], - [-23.11489, 66.34883], - [-23.114295, 66.348081], - [-23.113662, 66.34768], - [-23.112862, 66.347506], - [-23.11255, 66.347525], - [-23.112309, 66.347472], - [-23.112567, 66.347364], - [-23.112176, 66.347078], - [-23.111435, 66.346824], - [-23.111021, 66.34677], - [-23.11025, 66.346809], - [-23.109482, 66.346864], - [-23.10908, 66.346774], - [-23.109094, 66.346536], - [-23.10907, 66.346404], - [-23.107051, 66.345849], - [-23.106564, 66.345797], - [-23.105996, 66.345817], - [-23.105201, 66.345976], - [-23.104236, 66.346062], - [-23.103296, 66.345873], - [-23.102154, 66.345505], - [-23.101463, 66.345134], - [-23.101065, 66.344592], - [-23.100882, 66.34394], - [-23.101093, 66.343664], - [-23.101388, 66.343399], - [-23.101403, 66.343154], - [-23.101059, 66.342902], - [-23.100503, 66.342598], - [-23.099653, 66.342424], - [-23.098893, 66.34234], - [-23.098104, 66.342289], - [-23.097535, 66.342205], - [-23.096843, 66.34214], - [-23.095932, 66.342104], - [-23.094789, 66.342093], - [-23.093742, 66.34225], - [-23.093044, 66.342375], - [-23.092171, 66.342385], - [-23.091324, 66.342407], - [-23.090379, 66.342508], - [-23.089075, 66.342618], - [-23.088031, 66.342323], - [-23.087428, 66.342237], - [-23.086415, 66.34237], - [-23.085594, 66.342453], - [-23.084896, 66.342665], - [-23.083104, 66.342932], - [-23.082144, 66.343113], - [-23.081233, 66.343202], - [-23.080407, 66.34318], - [-23.079392, 66.343299], - [-23.078297, 66.343543], - [-23.076958, 66.343836], - [-23.076023, 66.343998], - [-23.075048, 66.344224], - [-23.074403, 66.344233], - [-23.07347, 66.34451], - [-23.072431, 66.344742], - [-23.071335, 66.344999], - [-23.070106, 66.345251], - [-23.069608, 66.345451], - [-23.068181, 66.345775], - [-23.066084, 66.346445], - [-23.065618, 66.346648], - [-23.064787, 66.347213], - [-23.064143, 66.347756], - [-23.063374, 66.348316], - [-23.062989, 66.348802], - [-23.063202, 66.349301], - [-23.063177, 66.349604], - [-23.063379, 66.34997], - [-23.063515, 66.350371], - [-23.063696, 66.350928], - [-23.063536, 66.351296], - [-23.062527, 66.35178], - [-23.062078, 66.351972], - [-23.06192, 66.352348], - [-23.061711, 66.352617], - [-23.061465, 66.352862], - [-23.061123, 66.352944], - [-23.06074, 66.353021], - [-23.060323, 66.353062], - [-23.059583, 66.353168], - [-23.059116, 66.353327], - [-23.05844, 66.353416], - [-23.057947, 66.353411], - [-23.057232, 66.353443], - [-23.056541, 66.35343], - [-23.054984, 66.353667], - [-23.052663, 66.35405], - [-23.05131, 66.354246], - [-23.050538, 66.35438], - [-23.049555, 66.354443], - [-23.048579, 66.354481], - [-23.046923, 66.354646], - [-23.045211, 66.354756], - [-23.043104, 66.354951], - [-23.041558, 66.355026], - [-23.04006, 66.355134], - [-23.038993, 66.355298], - [-23.037224, 66.355383], - [-23.034945, 66.356079], - [-23.031665, 66.357525], - [-23.029809, 66.35854], - [-23.027814, 66.359635], - [-23.027176, 66.360063], - [-23.025594, 66.361313], - [-23.024661, 66.362064], - [-23.023888, 66.362816], - [-23.022288, 66.36436], - [-23.021741, 66.365201], - [-23.021252, 66.366184], - [-23.02045, 66.367799], - [-23.019766, 66.368442], - [-23.019494, 66.368732], - [-23.019064, 66.370001], - [-23.018328, 66.371056], - [-23.018056, 66.371761], - [-23.017573, 66.372257], - [-23.01747, 66.372662], - [-23.017542, 66.373322], - [-23.017281, 66.373719], - [-23.01652, 66.374714], - [-23.017054, 66.375275], - [-23.017191, 66.375641], - [-23.017041, 66.376083], - [-23.017002, 66.376425], - [-23.017078, 66.377014], - [-23.01707, 66.377684], - [-23.017077, 66.378121], - [-23.017315, 66.379628], - [-23.017461, 66.380422], - [-23.017468, 66.381373], - [-23.017633, 66.382109], - [-23.017852, 66.382853], - [-23.018158, 66.383544], - [-23.018535, 66.384134], - [-23.018952, 66.384712], - [-23.019263, 66.384915], - [-23.020092, 66.385798], - [-23.020716, 66.386454], - [-23.021583, 66.387009], - [-23.023002, 66.387908], - [-23.023939, 66.388334], - [-23.02518, 66.388899], - [-23.026168, 66.389348], - [-23.027787, 66.389896], - [-23.029252, 66.390389], - [-23.029742, 66.390527], - [-23.031049, 66.390896], - [-23.031838, 66.391058], - [-23.033431, 66.391043], - [-23.034777, 66.3908], - [-23.03623, 66.390464], - [-23.038919, 66.389685], - [-23.039956, 66.38934], - [-23.040721, 66.3889], - [-23.040807, 66.388763], - [-23.040742, 66.388577], - [-23.040736, 66.388433], - [-23.041039, 66.388475], - [-23.041273, 66.388676], - [-23.041531, 66.388762], - [-23.041868, 66.388729], - [-23.042454, 66.388554], - [-23.043805, 66.388238], - [-23.044697, 66.38802], - [-23.046933, 66.387683], - [-23.047507, 66.387669], - [-23.049234, 66.3877], - [-23.049521, 66.387668], - [-23.049522, 66.387551], - [-23.049966, 66.387486], - [-23.050474, 66.387472], - [-23.051255, 66.387434], - [-23.051354, 66.387556], - [-23.05161, 66.387586], - [-23.051911, 66.387541], - [-23.05208, 66.387579], - [-23.051946, 66.387702], - [-23.051767, 66.38778], - [-23.052263, 66.387937], - [-23.052593, 66.388067], - [-23.052922, 66.388057], - [-23.053105, 66.388077], - [-23.053016, 66.388146], - [-23.052958, 66.388174], - [-23.055028, 66.388486], - [-23.056724, 66.388694], - [-23.059074, 66.388999], - [-23.060666, 66.38925], - [-23.061357, 66.389468], - [-23.062022, 66.389627], - [-23.062323, 66.389612], - [-23.062903, 66.389661], - [-23.063111, 66.389745], - [-23.063138, 66.38984], - [-23.063932, 66.390032], - [-23.065188, 66.390808], - [-23.065961, 66.390954], - [-23.066748, 66.391279], - [-23.067351, 66.391591], - [-23.067719, 66.391685], - [-23.06814, 66.392003], - [-23.068659, 66.392086], - [-23.069818, 66.392538], - [-23.070215, 66.393105], - [-23.070675, 66.393373], - [-23.073111, 66.394041], - [-23.073418, 66.394233], - [-23.074029, 66.394562], - [-23.074656, 66.395077], - [-23.075548, 66.396149], - [-23.076046, 66.396435], - [-23.076688, 66.396728], - [-23.077386, 66.396997], - [-23.077575, 66.397309], - [-23.07824, 66.397727], - [-23.079644, 66.398502], - [-23.081186, 66.399431], - [-23.083023, 66.400468], - [-23.083583, 66.400768], - [-23.084215, 66.401273], - [-23.084104, 66.401385], - [-23.084344, 66.401508], - [-23.084892, 66.401615], - [-23.085322, 66.40178], - [-23.085192, 66.401922], - [-23.085378, 66.402045], - [-23.085766, 66.402062], - [-23.086731, 66.402421], - [-23.088079, 66.403007], - [-23.088602, 66.403159], - [-23.089017, 66.403273], - [-23.089034, 66.403373], - [-23.089302, 66.403458], - [-23.089753, 66.403509], - [-23.089499, 66.403617], - [-23.089456, 66.40378], - [-23.09038, 66.404318], - [-23.090487, 66.404267], - [-23.090702, 66.404198], - [-23.090836, 66.404235], - [-23.090729, 66.404291], - [-23.090722, 66.404372], - [-23.090948, 66.404499], - [-23.09133, 66.404632], - [-23.091812, 66.404714], - [-23.092552, 66.40486], - [-23.093164, 66.40498], - [-23.093221, 66.405117], - [-23.092841, 66.405308], - [-23.092905, 66.405321], - [-23.093298, 66.405317], - [-23.093351, 66.405406], - [-23.093099, 66.405506], - [-23.092916, 66.405611], - [-23.092261, 66.40572], - [-23.091822, 66.406118], - [-23.091978, 66.406408], - [-23.09258, 66.406837], - [-23.092891, 66.40699], - [-23.093619, 66.406983], - [-23.094082, 66.407037], - [-23.094451, 66.407144], - [-23.094425, 66.40718], - [-23.094085, 66.40717], - [-23.093873, 66.4072], - [-23.094093, 66.407526], - [-23.094795, 66.408059], - [-23.095518, 66.408413], - [-23.096163, 66.40887], - [-23.096425, 66.408885], - [-23.097541, 66.409463], - [-23.09842, 66.409727], - [-23.099933, 66.410034], - [-23.100482, 66.410076], - [-23.100845, 66.410078], - [-23.100879, 66.41019], - [-23.100373, 66.410415], - [-23.100426, 66.410446], - [-23.100953, 66.410395], - [-23.101059, 66.410467], - [-23.100793, 66.410563], - [-23.100329, 66.410643], - [-23.100822, 66.411048], - [-23.101223, 66.411082], - [-23.101167, 66.411194], - [-23.101361, 66.411382], - [-23.101661, 66.41182], - [-23.10164, 66.411975], - [-23.102099, 66.412096], - [-23.102358, 66.412125], - [-23.102442, 66.412263], - [-23.102348, 66.412438], - [-23.10239, 66.412636], - [-23.102659, 66.412696], - [-23.103601, 66.413162], - [-23.104699, 66.413963], - [-23.105943, 66.414734], - [-23.108903, 66.416659], - [-23.11238, 66.418717], - [-23.118647, 66.421346], - [-23.124627, 66.424145], - [-23.126626, 66.424829], - [-23.127978, 66.42545], - [-23.129157, 66.425621], - [-23.131428, 66.426591], - [-23.132688, 66.426877], - [-23.133285, 66.427335], - [-23.137045, 66.428461], - [-23.138198, 66.428708], - [-23.138992, 66.429008], - [-23.139307, 66.429266], - [-23.138941, 66.429575], - [-23.139018, 66.42982], - [-23.138535, 66.430085], - [-23.137968, 66.430195], - [-23.13808, 66.430459], - [-23.137742, 66.430649], - [-23.137344, 66.430866], - [-23.137012, 66.431254], - [-23.136292, 66.431439], - [-23.135195, 66.431531], - [-23.134834, 66.431417], - [-23.13456, 66.43121], - [-23.133895, 66.431251], - [-23.133401, 66.431465], - [-23.132582, 66.431707], - [-23.131959, 66.432029], - [-23.131352, 66.43243], - [-23.130387, 66.432773], - [-23.129609, 66.432959], - [-23.128945, 66.432964], - [-23.12809, 66.432906], - [-23.127012, 66.433088], - [-23.126223, 66.433048], - [-23.12519, 66.433275], - [-23.123617, 66.433502], - [-23.122841, 66.433502], - [-23.122179, 66.43334], - [-23.120913, 66.43341], - [-23.119722, 66.433719], - [-23.118451, 66.434114], - [-23.117662, 66.434399], - [-23.115495, 66.435146], - [-23.1138, 66.4356], - [-23.111606, 66.435939], - [-23.11072, 66.435992], - [-23.108318, 66.436258], - [-23.106655, 66.436344], - [-23.104643, 66.436329], - [-23.10108, 66.436292], - [-23.098673, 66.436129], - [-23.096601, 66.435775], - [-23.093303, 66.435093], - [-23.090772, 66.434542], - [-23.087004, 66.433674], - [-23.084758, 66.432421], - [-23.082521, 66.431692], - [-23.081357, 66.431392], - [-23.080451, 66.430969], - [-23.078668, 66.430306], - [-23.075912, 66.429063], - [-23.074897, 66.428624], - [-23.072337, 66.427857], - [-23.070032, 66.427228], - [-23.067233, 66.426626], - [-23.06553, 66.426104], - [-23.064489, 66.42542], - [-23.063411, 66.424433], - [-23.062022, 66.422931], - [-23.060425, 66.421851], - [-23.05939, 66.421433], - [-23.056679, 66.420872], - [-23.054862, 66.42033], - [-23.052523, 66.420102], - [-23.050431, 66.420156], - [-23.047962, 66.420452], - [-23.046338, 66.420826], - [-23.045049, 66.421257], - [-23.043828, 66.421845], - [-23.04352, 66.422317], - [-23.043322, 66.422969], - [-23.042394, 66.42419], - [-23.042137, 66.425754], - [-23.041653, 66.426509], - [-23.040838, 66.427597], - [-23.039904, 66.428558], - [-23.038977, 66.430072], - [-23.036864, 66.431428], - [-23.036134, 66.431739], - [-23.03498, 66.432067], - [-23.031831, 66.433086], - [-23.029064, 66.434349], - [-23.02847, 66.434576], - [-23.028163, 66.434733], - [-23.028114, 66.4348], - [-23.028463, 66.434904], - [-23.028914, 66.435081], - [-23.028926, 66.435154], - [-23.028662, 66.43537], - [-23.028813, 66.435501], - [-23.028856, 66.435681], - [-23.02855, 66.435835], - [-23.028205, 66.435955], - [-23.028092, 66.436178], - [-23.027901, 66.436196], - [-23.027653, 66.436123], - [-23.027572, 66.436048], - [-23.027626, 66.435885], - [-23.027605, 66.43549], - [-23.027357, 66.435471], - [-23.0265, 66.435546], - [-23.025378, 66.435741], - [-23.023598, 66.435949], - [-23.023507, 66.436427], - [-23.023543, 66.43662], - [-23.023415, 66.436779], - [-23.023008, 66.436841], - [-23.022632, 66.436883], - [-23.02225, 66.436985], - [-23.021951, 66.437026], - [-23.021602, 66.436892], - [-23.021587, 66.436766], - [-23.021442, 66.436672], - [-23.020652, 66.436662], - [-23.01951, 66.436505], - [-23.018834, 66.436356], - [-23.017277, 66.436321], - [-23.016151, 66.436423], - [-23.014805, 66.436485], - [-23.011963, 66.436323], - [-23.010992, 66.436254], - [-23.010299, 66.436163], - [-23.009162, 66.436149], - [-23.008582, 66.436222], - [-23.008599, 66.436356], - [-23.008433, 66.436522], - [-23.007978, 66.436535], - [-23.008159, 66.436754], - [-23.008099, 66.436869], - [-23.007322, 66.437329], - [-23.006566, 66.437676], - [-23.006272, 66.437671], - [-23.006046, 66.437815], - [-23.005804, 66.437778], - [-23.005545, 66.437598], - [-23.00551, 66.437487], - [-23.005525, 66.437239], - [-23.005085, 66.437195], - [-23.004628, 66.437296], - [-23.004345, 66.437416], - [-23.0042, 66.437566], - [-23.003964, 66.437504], - [-23.003883, 66.437399], - [-23.004002, 66.437272], - [-23.004002, 66.43709], - [-23.003712, 66.437215], - [-23.003609, 66.437251], - [-23.003343, 66.437729], - [-23.003089, 66.437584], - [-23.002831, 66.437465], - [-23.002887, 66.437236], - [-23.003132, 66.436905], - [-23.003233, 66.436597], - [-23.002795, 66.436442], - [-23.001056, 66.436087], - [-23.000149, 66.4358], - [-22.999006, 66.435686], - [-22.997928, 66.435725], - [-22.996696, 66.436115], - [-22.996405, 66.436093], - [-22.996111, 66.435825], - [-22.995739, 66.435692], - [-22.99318, 66.43537], - [-22.989706, 66.435078], - [-22.988762, 66.434948], - [-22.988042, 66.434836], - [-22.98675, 66.434781], - [-22.983494, 66.434137], - [-22.982779, 66.434109], - [-22.982253, 66.434163], - [-22.981954, 66.434288], - [-22.98176, 66.434553], - [-22.981417, 66.434526], - [-22.980955, 66.434144], - [-22.980477, 66.43395], - [-22.975747, 66.433656], - [-22.974337, 66.433736], - [-22.972964, 66.433752], - [-22.97262, 66.433801], - [-22.972449, 66.433922], - [-22.972099, 66.43398], - [-22.971896, 66.433903], - [-22.971655, 66.433755], - [-22.971493, 66.433701], - [-22.971064, 66.433638], - [-22.970688, 66.433629], - [-22.970323, 66.433569], - [-22.970178, 66.433362], - [-22.969229, 66.433363], - [-22.969086, 66.433859], - [-22.968944, 66.434009], - [-22.968644, 66.434137], - [-22.96814, 66.4343], - [-22.96783, 66.43427], - [-22.967732, 66.434074], - [-22.967712, 66.433981], - [-22.967453, 66.433989], - [-22.967212, 66.434116], - [-22.967104, 66.434285], - [-22.966928, 66.434266], - [-22.966595, 66.434319], - [-22.966269, 66.434512], - [-22.9658, 66.434545], - [-22.965737, 66.434463], - [-22.965873, 66.434324], - [-22.965759, 66.434255], - [-22.965227, 66.434238], - [-22.965417, 66.434062], - [-22.965302, 66.433927], - [-22.965035, 66.43376], - [-22.960652, 66.433732], - [-22.959107, 66.433957], - [-22.957342, 66.434004], - [-22.955314, 66.434137], - [-22.952068, 66.435134], - [-22.950362, 66.435727], - [-22.946716, 66.437003], - [-22.943905, 66.438064], - [-22.942397, 66.438744], - [-22.940134, 66.439784], - [-22.937977, 66.44098], - [-22.935712, 66.442189], - [-22.933727, 66.443604], - [-22.932956, 66.444199], - [-22.932078, 66.444891], - [-22.931797, 66.445181], - [-22.931611, 66.445362], - [-22.931309, 66.445681], - [-22.930943, 66.446049], - [-22.930664, 66.446334], - [-22.930396, 66.447069], - [-22.930839, 66.447102], - [-22.931096, 66.447213], - [-22.930746, 66.447365], - [-22.930294, 66.447526], - [-22.930077, 66.447696], - [-22.930694, 66.448453], - [-22.930746, 66.448821], - [-22.93009, 66.449421], - [-22.929147, 66.449893], - [-22.928392, 66.451073], - [-22.928214, 66.451632], - [-22.928004, 66.452278], - [-22.928007, 66.45274], - [-22.928011, 66.45313], - [-22.928057, 66.453355], - [-22.928111, 66.453661], - [-22.928255, 66.453975], - [-22.928312, 66.454252], - [-22.929261, 66.454678], - [-22.930597, 66.455007], - [-22.931788, 66.455299], - [-22.932542, 66.45565], - [-22.933781, 66.455941], - [-22.934731, 66.456108], - [-22.936933, 66.45664], - [-22.939452, 66.457107], - [-22.941311, 66.45745], - [-22.943802, 66.458329], - [-22.945785, 66.459013], - [-22.948249, 66.459653], - [-22.949781, 66.459986], - [-22.950529, 66.45999], - [-22.950843, 66.45991], - [-22.951052, 66.459973], - [-22.951302, 66.460031], - [-22.95145, 66.459941], - [-22.951621, 66.459888], - [-22.951857, 66.460006], - [-22.951868, 66.460088], - [-22.952047, 66.460193], - [-22.952109, 66.460064], - [-22.952563, 66.460056], - [-22.953096, 66.460185], - [-22.953401, 66.460405], - [-22.953466, 66.460601], - [-22.953909, 66.460706], - [-22.954203, 66.460967], - [-22.954131, 66.461097], - [-22.954367, 66.461245], - [-22.95492, 66.461826], - [-22.95474, 66.461905], - [-22.954735, 66.462075], - [-22.954966, 66.46243], - [-22.954981, 66.462652], - [-22.955606, 66.463091], - [-22.955658, 66.463434], - [-22.955215, 66.463373], - [-22.954841, 66.463138], - [-22.954722, 66.463323], - [-22.955078, 66.463935], - [-22.955004, 66.463987], - [-22.954577, 66.463852], - [-22.954187, 66.463615], - [-22.953829, 66.463151], - [-22.953713, 66.463346], - [-22.95321, 66.463429], - [-22.953867, 66.463834], - [-22.954331, 66.464464], - [-22.954524, 66.465007], - [-22.954617, 66.465332], - [-22.954815, 66.465497], - [-22.954982, 66.46624], - [-22.954396, 66.46643], - [-22.954288, 66.466666], - [-22.954068, 66.466733], - [-22.953496, 66.466662], - [-22.952745, 66.466464], - [-22.951956, 66.466173], - [-22.951671, 66.465983], - [-22.951764, 66.465841], - [-22.951611, 66.465636], - [-22.951281, 66.46556], - [-22.950523, 66.465609], - [-22.949182, 66.466055], - [-22.947032, 66.466638], - [-22.944858, 66.467561], - [-22.942578, 66.468604], - [-22.941934, 66.468818], - [-22.939329, 66.469259], - [-22.93707, 66.469489], - [-22.93414, 66.469497], - [-22.93111, 66.46929], - [-22.92803, 66.468949], - [-22.926363, 66.468651], - [-22.92576, 66.468508], - [-22.924628, 66.468193], - [-22.923551, 66.467921], - [-22.922843, 66.467698], - [-22.921857, 66.467362], - [-22.921056, 66.467172], - [-22.919452, 66.467064], - [-22.917861, 66.467015], - [-22.916391, 66.466796], - [-22.914223, 66.46658], - [-22.911921, 66.466464], - [-22.911394, 66.466593], - [-22.909175, 66.466653], - [-22.90725, 66.4668], - [-22.905493, 66.466798], - [-22.904099, 66.466751], - [-22.903396, 66.466871], - [-22.903004, 66.466856], - [-22.902908, 66.466775], - [-22.902062, 66.466912], - [-22.900281, 66.467074], - [-22.897924, 66.467111], - [-22.892304, 66.467058], - [-22.890399, 66.467184], - [-22.888367, 66.4671], - [-22.886224, 66.466694], - [-22.883726, 66.466395], - [-22.881773, 66.466291], - [-22.880448, 66.466426], - [-22.877739, 66.466389], - [-22.872246, 66.466105], - [-22.869354, 66.465807], - [-22.865777, 66.465171], - [-22.862311, 66.464297], - [-22.860767, 66.463842], - [-22.859316, 66.463264], - [-22.858399, 66.462788], - [-22.857944, 66.462405], - [-22.856742, 66.462073], - [-22.855133, 66.461814], - [-22.853679, 66.461868], - [-22.852585, 66.461761], - [-22.851785, 66.46146], - [-22.850027, 66.461244], - [-22.84728, 66.461053], - [-22.846154, 66.461105], - [-22.843888, 66.461081], - [-22.841706, 66.460835], - [-22.839356, 66.460306], - [-22.836631, 66.459785], - [-22.835735, 66.459489], - [-22.835177, 66.459112], - [-22.834186, 66.458373], - [-22.832437, 66.457051], - [-22.832109, 66.456597], - [-22.83263, 66.456524], - [-22.83271, 66.456369], - [-22.832205, 66.455975], - [-22.831503, 66.45563], - [-22.831112, 66.455536], - [-22.83064, 66.455643], - [-22.829635, 66.455365], - [-22.827714, 66.45424], - [-22.825397, 66.452958], - [-22.822673, 66.451795], - [-22.821414, 66.45101], - [-22.821358, 66.450712], - [-22.820086, 66.44985], - [-22.819616, 66.449402], - [-22.818076, 66.448768], - [-22.816959, 66.448465], - [-22.815104, 66.448097], - [-22.814008, 66.448136], - [-22.813442, 66.448177], - [-22.812399, 66.448071], - [-22.810196, 66.447699], - [-22.808548, 66.447225], - [-22.807711, 66.446836], - [-22.807425, 66.446268], - [-22.807331, 66.445702], - [-22.80743, 66.445364], - [-22.8074, 66.444883], - [-22.807044, 66.444628], - [-22.806178, 66.44436], - [-22.805687, 66.444053], - [-22.804705, 66.443693], - [-22.80338, 66.443423], - [-22.802213, 66.443318], - [-22.801363, 66.443625], - [-22.800813, 66.443635], - [-22.799703, 66.443605], - [-22.798423, 66.44387], - [-22.797388, 66.444289], - [-22.79679, 66.444602], - [-22.796841, 66.444908], - [-22.796741, 66.4455], - [-22.796468, 66.445538], - [-22.79547, 66.445566], - [-22.794885, 66.445443], - [-22.794116, 66.445313], - [-22.793168, 66.445244], - [-22.792708, 66.445117], - [-22.79227, 66.4451], - [-22.791431, 66.444962], - [-22.790168, 66.444723], - [-22.789693, 66.444642], - [-22.788207, 66.444405], - [-22.7873, 66.444269], - [-22.786823, 66.44423], - [-22.786836, 66.444344], - [-22.787252, 66.444608], - [-22.787766, 66.44473], - [-22.78804, 66.444932], - [-22.787992, 66.445342], - [-22.78729, 66.445509], - [-22.787118, 66.445312], - [-22.78672, 66.445087], - [-22.78641, 66.445013], - [-22.786107, 66.444701], - [-22.785434, 66.444527], - [-22.784554, 66.444502], - [-22.783942, 66.444336], - [-22.783239, 66.444097], - [-22.782598, 66.443874], - [-22.782206, 66.443841], - [-22.781946, 66.443904], - [-22.781603, 66.444135], - [-22.781316, 66.444079], - [-22.780938, 66.443923], - [-22.780593, 66.443864], - [-22.780493, 66.443987], - [-22.77971, 66.443855], - [-22.779074, 66.44334], - [-22.77843, 66.443057], - [-22.777725, 66.442812], - [-22.777642, 66.442645], - [-22.777993, 66.44255], - [-22.778114, 66.442472], - [-22.777872, 66.442353], - [-22.777352, 66.442318], - [-22.776634, 66.442436], - [-22.776335, 66.442425], - [-22.776292, 66.442286], - [-22.776641, 66.442234], - [-22.776654, 66.442057], - [-22.77665, 66.441869], - [-22.775985, 66.441666], - [-22.775845, 66.441765], - [-22.775563, 66.441815], - [-22.775123, 66.441778], - [-22.774735, 66.441864], - [-22.774075, 66.441821], - [-22.773449, 66.441643], - [-22.772632, 66.441751], - [-22.771853, 66.441734], - [-22.7711, 66.441731], - [-22.770516, 66.441553], - [-22.770244, 66.441322], - [-22.770575, 66.441145], - [-22.770475, 66.440934], - [-22.770484, 66.440786], - [-22.770725, 66.440678], - [-22.770464, 66.440413], - [-22.769642, 66.440154], - [-22.768273, 66.439895], - [-22.767052, 66.439732], - [-22.765629, 66.439737], - [-22.764662, 66.439857], - [-22.763879, 66.439826], - [-22.762058, 66.43988], - [-22.759521, 66.439913], - [-22.758577, 66.43997], - [-22.757059, 66.439992], - [-22.753835, 66.439933], - [-22.750581, 66.439788], - [-22.747808, 66.439553], - [-22.746258, 66.439405], - [-22.745566, 66.439265], - [-22.745322, 66.439161], - [-22.744498, 66.439129], - [-22.74346, 66.439156], - [-22.743457, 66.439502], - [-22.743182, 66.439615], - [-22.743296, 66.439777], - [-22.74321, 66.439837], - [-22.742814, 66.439804], - [-22.742518, 66.43965], - [-22.742125, 66.439536], - [-22.74203, 66.43964], - [-22.741775, 66.439645], - [-22.741301, 66.439521], - [-22.741331, 66.439644], - [-22.741639, 66.43984], - [-22.741754, 66.439995], - [-22.741735, 66.44012], - [-22.740794, 66.43996], - [-22.74036, 66.43968], - [-22.740019, 66.439362], - [-22.739831, 66.439253], - [-22.735366, 66.437627], - [-22.731972, 66.436113], - [-22.730393, 66.43524], - [-22.729547, 66.43452], - [-22.728385, 66.433425], - [-22.728318, 66.432835], - [-22.728207, 66.43196], - [-22.727824, 66.430821], - [-22.727869, 66.430019], - [-22.727478, 66.429516], - [-22.726848, 66.428678], - [-22.726319, 66.427886], - [-22.725169, 66.427158], - [-22.724873, 66.42675], - [-22.725217, 66.426155], - [-22.725048, 66.425703], - [-22.724648, 66.424776], - [-22.72448, 66.42383], - [-22.723951, 66.42306], - [-22.723726, 66.422631], - [-22.723415, 66.422556], - [-22.723286, 66.422378], - [-22.72345, 66.422193], - [-22.722849, 66.421827], - [-22.722197, 66.421659], - [-22.721488, 66.42141], - [-22.720893, 66.421341], - [-22.720198, 66.421209], - [-22.719903, 66.421058], - [-22.719944, 66.420733], - [-22.720148, 66.420317], - [-22.720553, 66.419637], - [-22.720134, 66.419039], - [-22.719391, 66.418507], - [-22.719361, 66.418306], - [-22.719212, 66.418153], - [-22.718715, 66.418012], - [-22.718091, 66.417654], - [-22.717458, 66.417316], - [-22.716476, 66.417055], - [-22.715974, 66.416889], - [-22.715944, 66.417121], - [-22.714977, 66.417048], - [-22.714658, 66.416918], - [-22.714505, 66.417061], - [-22.714257, 66.417069], - [-22.714348, 66.416807], - [-22.714298, 66.416582], - [-22.714027, 66.41647], - [-22.713796, 66.416543], - [-22.713653, 66.416783], - [-22.713512, 66.416933], - [-22.713268, 66.41694], - [-22.713121, 66.416775], - [-22.713005, 66.4166], - [-22.712736, 66.416642], - [-22.71271, 66.416766], - [-22.712419, 66.416834], - [-22.711814, 66.416647], - [-22.711753, 66.416103], - [-22.711476, 66.416], - [-22.71062, 66.415879], - [-22.709957, 66.415915], - [-22.709499, 66.415934], - [-22.70815, 66.41582], - [-22.70658, 66.415636], - [-22.703906, 66.415385], - [-22.702584, 66.415164], - [-22.700597, 66.415012], - [-22.698666, 66.414804], - [-22.696325, 66.414708], - [-22.695109, 66.414661], - [-22.693649, 66.414637], - [-22.693157, 66.414865], - [-22.69287, 66.4149], - [-22.692352, 66.414904], - [-22.69222, 66.414851], - [-22.691981, 66.414714], - [-22.691758, 66.414744], - [-22.69176, 66.414889], - [-22.691513, 66.41499], - [-22.691398, 66.414952], - [-22.691266, 66.414799], - [-22.690943, 66.41467], - [-22.690723, 66.415038], - [-22.690739, 66.415253], - [-22.690302, 66.415315], - [-22.690002, 66.415227], - [-22.689704, 66.415021], - [-22.689334, 66.414961], - [-22.688943, 66.415031], - [-22.68857, 66.415007], - [-22.688492, 66.414852], - [-22.687896, 66.414685], - [-22.686765, 66.414572], - [-22.684922, 66.41445], - [-22.68266, 66.414482], - [-22.680744, 66.414599], - [-22.678246, 66.414719], - [-22.675353, 66.414859], - [-22.673305, 66.415074], - [-22.672906, 66.415277], - [-22.67123, 66.415589], - [-22.670248, 66.415647], - [-22.669304, 66.415669], - [-22.667665, 66.415874], - [-22.666945, 66.416022], - [-22.665822, 66.416056], - [-22.66369, 66.416416], - [-22.661954, 66.416762], - [-22.660289, 66.417205], - [-22.658977, 66.41784], - [-22.658419, 66.418561], - [-22.65837, 66.41961], - [-22.658167, 66.41997], - [-22.657603, 66.420207], - [-22.656215, 66.420578], - [-22.655219, 66.421143], - [-22.654236, 66.421592], - [-22.652851, 66.421858], - [-22.650844, 66.422161], - [-22.650244, 66.422251], - [-22.648697, 66.422644], - [-22.647398, 66.423159], - [-22.646733, 66.423917], - [-22.646207, 66.424601], - [-22.645572, 66.425107], - [-22.645352, 66.425516], - [-22.645303, 66.426469], - [-22.645102, 66.426798], - [-22.64484, 66.427433], - [-22.643949, 66.428139], - [-22.643546, 66.428646], - [-22.643304, 66.429221], - [-22.64295, 66.429903], - [-22.642521, 66.430287], - [-22.641959, 66.431376], - [-22.640611, 66.432177], - [-22.638485, 66.433122], - [-22.636599, 66.433748], - [-22.63624, 66.43451], - [-22.635739, 66.434856], - [-22.634875, 66.435079], - [-22.632874, 66.436035], - [-22.632933, 66.436697], - [-22.632589, 66.437507], - [-22.632082, 66.438753], - [-22.631292, 66.439018], - [-22.630816, 66.439055], - [-22.630031, 66.439004], - [-22.629269, 66.439143], - [-22.628507, 66.439008], - [-22.627703, 66.438813], - [-22.626697, 66.438858], - [-22.626212, 66.439001], - [-22.62616, 66.439272], - [-22.625873, 66.439299], - [-22.625637, 66.439198], - [-22.624824, 66.439294], - [-22.623652, 66.439613], - [-22.62204, 66.439894], - [-22.619618, 66.440094], - [-22.616912, 66.440297], - [-22.615056, 66.440558], - [-22.613431, 66.44099], - [-22.612165, 66.441652], - [-22.610833, 66.442395], - [-22.609503, 66.44316], - [-22.609168, 66.44348], - [-22.608978, 66.443658], - [-22.60852, 66.444344], - [-22.608163, 66.445037], - [-22.60746, 66.446133], - [-22.607121, 66.447041], - [-22.607092, 66.447342], - [-22.607062, 66.447634], - [-22.60715, 66.448008], - [-22.607213, 66.448292], - [-22.607508, 66.449125], - [-22.608106, 66.450226], - [-22.608614, 66.451171], - [-22.609115, 66.451745], - [-22.610223, 66.452991], - [-22.610883, 66.453376], - [-22.611116, 66.45368], - [-22.611848, 66.454309], - [-22.612757, 66.455113], - [-22.6141, 66.456316], - [-22.615359, 66.457345], - [-22.616089, 66.458465], - [-22.616636, 66.458843], - [-22.61765, 66.459586], - [-22.618714, 66.460603], - [-22.61938, 66.461552], - [-22.619433, 66.462188], - [-22.619109, 66.462675], - [-22.61842, 66.463069], - [-22.618245, 66.463322], - [-22.617652, 66.463527], - [-22.616506, 66.463787], - [-22.6153, 66.464159], - [-22.613697, 66.464908], - [-22.611371, 66.465468], - [-22.609324, 66.465775], - [-22.608235, 66.465839], - [-22.607172, 66.465992], - [-22.605617, 66.466315], - [-22.604877, 66.466396], - [-22.602646, 66.466347], - [-22.601769, 66.466438], - [-22.601036, 66.466591], - [-22.599253, 66.466456], - [-22.598383, 66.466472], - [-22.597206, 66.466526], - [-22.595444, 66.466345], - [-22.593692, 66.466487], - [-22.592813, 66.466543], - [-22.591117, 66.466479], - [-22.58784, 66.466296], - [-22.586766, 66.466483], - [-22.586534, 66.466705], - [-22.586294, 66.466889], - [-22.585631, 66.466807], - [-22.584096, 66.466715], - [-22.583258, 66.466585], - [-22.581689, 66.466196], - [-22.579447, 66.465639], - [-22.576955, 66.46502], - [-22.574367, 66.46421], - [-22.572439, 66.463604], - [-22.571792, 66.463731], - [-22.571516, 66.463669], - [-22.570553, 66.46302], - [-22.570016, 66.462636], - [-22.569354, 66.46236], - [-22.568318, 66.461728], - [-22.566191, 66.460921], - [-22.565231, 66.460714], - [-22.564754, 66.460745], - [-22.564027, 66.460623], - [-22.563683, 66.460246], - [-22.56329, 66.459914], - [-22.561938, 66.459472], - [-22.559662, 66.459074], - [-22.557834, 66.45852], - [-22.555371, 66.4578], - [-22.553483, 66.45702], - [-22.552724, 66.45644], - [-22.552166, 66.455699], - [-22.551874, 66.455198], - [-22.551054, 66.454319], - [-22.54973, 66.453306], - [-22.548923, 66.452521], - [-22.547695, 66.452031], - [-22.545689, 66.451237], - [-22.544036, 66.450878], - [-22.542859, 66.450507], - [-22.542156, 66.450136], - [-22.539107, 66.449622], - [-22.537492, 66.449301], - [-22.53688, 66.449336], - [-22.535597, 66.449087], - [-22.535008, 66.448928], - [-22.534335, 66.448886], - [-22.533556, 66.449016], - [-22.532457, 66.449514], - [-22.531428, 66.449927], - [-22.531069, 66.449867], - [-22.531239, 66.449631], - [-22.531731, 66.449273], - [-22.531984, 66.449093], - [-22.532862, 66.448682], - [-22.53284, 66.448463], - [-22.531945, 66.448279], - [-22.531178, 66.448394], - [-22.530035, 66.448878], - [-22.529531, 66.449267], - [-22.5293, 66.449236], - [-22.529375, 66.449031], - [-22.529812, 66.44868], - [-22.529866, 66.448439], - [-22.529367, 66.448469], - [-22.529074, 66.448613], - [-22.528771, 66.448676], - [-22.52868, 66.448381], - [-22.528227, 66.448065], - [-22.527227, 66.447843], - [-22.525952, 66.447458], - [-22.525799, 66.44729], - [-22.525116, 66.447288], - [-22.52418, 66.447275], - [-22.524088, 66.447041], - [-22.524051, 66.446585], - [-22.524292, 66.445575], - [-22.523255, 66.444858], - [-22.521808, 66.444007], - [-22.520995, 66.443728], - [-22.520264, 66.443361], - [-22.520427, 66.442975], - [-22.521159, 66.442411], - [-22.521655, 66.441818], - [-22.521396, 66.441469], - [-22.521057, 66.441119], - [-22.520674, 66.440144], - [-22.520492, 66.439888], - [-22.519816, 66.438972], - [-22.519681, 66.438144], - [-22.520014, 66.437077], - [-22.520553, 66.436405], - [-22.52084, 66.435916], - [-22.520843, 66.434698], - [-22.521019, 66.434344], - [-22.521358, 66.434056], - [-22.521036, 66.433412], - [-22.520239, 66.432845], - [-22.519397, 66.432195], - [-22.518244, 66.43166], - [-22.517348, 66.431504], - [-22.51608, 66.431342], - [-22.51583, 66.43131], - [-22.515028, 66.431263], - [-22.513738, 66.431495], - [-22.512754, 66.431684], - [-22.511876, 66.431769], - [-22.511374, 66.432029], - [-22.510843, 66.432218], - [-22.510162, 66.432598], - [-22.509854, 66.432692], - [-22.509397, 66.432621], - [-22.509234, 66.432675], - [-22.509248, 66.432802], - [-22.508883, 66.432748], - [-22.508611, 66.432595], - [-22.508373, 66.432483], - [-22.50819, 66.43253], - [-22.50822, 66.432621], - [-22.50663, 66.433367], - [-22.506329, 66.433374], - [-22.506096, 66.433285], - [-22.505879, 66.433215], - [-22.50567, 66.433182], - [-22.505551, 66.433589], - [-22.505069, 66.43383], - [-22.504879, 66.433788], - [-22.504669, 66.433946], - [-22.504353, 66.434082], - [-22.504202, 66.434021], - [-22.504361, 66.433866], - [-22.504288, 66.433379], - [-22.50409, 66.433185], - [-22.503738, 66.433146], - [-22.503095, 66.433264], - [-22.502604, 66.433412], - [-22.502397, 66.433631], - [-22.502496, 66.433672], - [-22.502567, 66.433797], - [-22.502232, 66.433933], - [-22.501788, 66.433897], - [-22.501762, 66.433759], - [-22.501812, 66.433645], - [-22.501819, 66.43353], - [-22.501635, 66.433491], - [-22.501659, 66.433406], - [-22.501648, 66.433331], - [-22.501356, 66.433345], - [-22.501314, 66.433482], - [-22.500997, 66.433519], - [-22.501, 66.43369], - [-22.50078, 66.433682], - [-22.500549, 66.433716], - [-22.50055, 66.433761], - [-22.500761, 66.433828], - [-22.500595, 66.433867], - [-22.500332, 66.433843], - [-22.500113, 66.433609], - [-22.499855, 66.433401], - [-22.499415, 66.43355], - [-22.499114, 66.433556], - [-22.499158, 66.433412], - [-22.499237, 66.433283], - [-22.498674, 66.433047], - [-22.497996, 66.432945], - [-22.497275, 66.433155], - [-22.497009, 66.43317], - [-22.496839, 66.433092], - [-22.496628, 66.433021], - [-22.496392, 66.433126], - [-22.496092, 66.433169], - [-22.496147, 66.433026], - [-22.496089, 66.43294], - [-22.496163, 66.432682], - [-22.496047, 66.4324], - [-22.495109, 66.432177], - [-22.493751, 66.431899], - [-22.492626, 66.43162], - [-22.490534, 66.430941], - [-22.489696, 66.430329], - [-22.489276, 66.429786], - [-22.489436, 66.42929], - [-22.48982, 66.428497], - [-22.490075, 66.427572], - [-22.490222, 66.427332], - [-22.490135, 66.426935], - [-22.489127, 66.426594], - [-22.486747, 66.426248], - [-22.48498, 66.426087], - [-22.483107, 66.425929], - [-22.481251, 66.425763], - [-22.480611, 66.425752], - [-22.479306, 66.425728], - [-22.478621, 66.4258], - [-22.477809, 66.425718], - [-22.475768, 66.425635], - [-22.473517, 66.425834], - [-22.470069, 66.426131], - [-22.46878, 66.426209], - [-22.467639, 66.426455], - [-22.466055, 66.42659], - [-22.464566, 66.4269], - [-22.46337, 66.427005], - [-22.461451, 66.42727], - [-22.457632, 66.427951], - [-22.456713, 66.428421], - [-22.456129, 66.428592], - [-22.455446, 66.428791], - [-22.454039, 66.428914], - [-22.450218, 66.429483], - [-22.446842, 66.430319], - [-22.445015, 66.430894], - [-22.444308, 66.431227], - [-22.443175, 66.43176], - [-22.442153, 66.432232], - [-22.44157, 66.432658], - [-22.441588, 66.433317], - [-22.442052, 66.433931], - [-22.442318, 66.434509], - [-22.442787, 66.434579], - [-22.443224, 66.434701], - [-22.443031, 66.435184], - [-22.44234, 66.435257], - [-22.442313, 66.435514], - [-22.442345, 66.43571], - [-22.442527, 66.435996], - [-22.440972, 66.436844], - [-22.439877, 66.437989], - [-22.439644, 66.438803], - [-22.439812, 66.43945], - [-22.439561, 66.440108], - [-22.439348, 66.440944], - [-22.439525, 66.441316], - [-22.439701, 66.441695], - [-22.440236, 66.442358], - [-22.441489, 66.443299], - [-22.442104, 66.443978], - [-22.442409, 66.445198], - [-22.442672, 66.445588], - [-22.444061, 66.446309], - [-22.444686, 66.446787], - [-22.444885, 66.447061], - [-22.445306, 66.447434], - [-22.446636, 66.448027], - [-22.446904, 66.448324], - [-22.447605, 66.448566], - [-22.447924, 66.448754], - [-22.448222, 66.448915], - [-22.449359, 66.449389], - [-22.450823, 66.449985], - [-22.453045, 66.450932], - [-22.454023, 66.45184], - [-22.456478, 66.45303], - [-22.457967, 66.45401], - [-22.458666, 66.454223], - [-22.459501, 66.454673], - [-22.460764, 66.455577], - [-22.462281, 66.456485], - [-22.464626, 66.457537], - [-22.466412, 66.458418], - [-22.467641, 66.459027], - [-22.469102, 66.459757], - [-22.470004, 66.460384], - [-22.470513, 66.460899], - [-22.471009, 66.46174], - [-22.471849, 66.463162], - [-22.47224, 66.463798], - [-22.47231, 66.464265], - [-22.472063, 66.464641], - [-22.471254, 66.465079], - [-22.469916, 66.465505], - [-22.468352, 66.465594], - [-22.465063, 66.465528], - [-22.463727, 66.465467], - [-22.461922, 66.465594], - [-22.461114, 66.465577], - [-22.459747, 66.465279], - [-22.458614, 66.465009], - [-22.457212, 66.464731], - [-22.455131, 66.464395], - [-22.452937, 66.464072], - [-22.450908, 66.463696], - [-22.4492, 66.463305], - [-22.44779, 66.463037], - [-22.445627, 66.462628], - [-22.444317, 66.46233], - [-22.442541, 66.462096], - [-22.439204, 66.461568], - [-22.436214, 66.4612], - [-22.435334, 66.460917], - [-22.434652, 66.460292], - [-22.433459, 66.4599], - [-22.433086, 66.459683], - [-22.431629, 66.459234], - [-22.43036, 66.458882], - [-22.429679, 66.458733], - [-22.428379, 66.45858], - [-22.42744, 66.458592], - [-22.426645, 66.458495], - [-22.426004, 66.458515], - [-22.424108, 66.458623], - [-22.422824, 66.458886], - [-22.422139, 66.459], - [-22.421547, 66.45902], - [-22.420711, 66.458885], - [-22.420211, 66.458731], - [-22.418827, 66.458394], - [-22.418108, 66.458308], - [-22.417663, 66.458145], - [-22.417287, 66.457932], - [-22.416466, 66.457283], - [-22.415923, 66.456814], - [-22.415016, 66.45646], - [-22.41463, 66.456461], - [-22.41368, 66.456149], - [-22.411104, 66.455022], - [-22.409378, 66.454443], - [-22.40864, 66.454366], - [-22.407801, 66.454167], - [-22.40727, 66.454178], - [-22.406897, 66.454278], - [-22.406628, 66.454396], - [-22.405394, 66.454354], - [-22.404691, 66.454699], - [-22.403155, 66.454889], - [-22.401927, 66.45462], - [-22.401507, 66.454085], - [-22.401723, 66.453501], - [-22.402224, 66.453066], - [-22.40285, 66.452668], - [-22.403576, 66.452664], - [-22.404116, 66.452154], - [-22.404464, 66.451637], - [-22.405131, 66.451191], - [-22.405282, 66.450929], - [-22.405166, 66.450714], - [-22.405185, 66.450523], - [-22.405966, 66.449568], - [-22.406065, 66.449299], - [-22.405693, 66.448501], - [-22.405481, 66.448091], - [-22.404776, 66.447799], - [-22.404478, 66.447513], - [-22.403571, 66.446649], - [-22.403126, 66.446306], - [-22.401993, 66.445409], - [-22.401315, 66.44509], - [-22.400025, 66.444828], - [-22.398917, 66.444523], - [-22.397903, 66.444393], - [-22.397762, 66.444269], - [-22.397527, 66.444176], - [-22.397344, 66.444087], - [-22.39731, 66.444007], - [-22.397162, 66.444054], - [-22.397056, 66.444104], - [-22.397125, 66.444135], - [-22.396956, 66.444154], - [-22.396714, 66.444125], - [-22.396496, 66.444027], - [-22.396434, 66.443903], - [-22.395943, 66.443862], - [-22.39564, 66.44379], - [-22.395496, 66.443826], - [-22.395351, 66.443812], - [-22.395385, 66.443917], - [-22.395615, 66.444002], - [-22.395745, 66.444128], - [-22.395551, 66.444366], - [-22.395087, 66.444238], - [-22.394547, 66.443895], - [-22.394097, 66.443564], - [-22.393819, 66.443441], - [-22.39374, 66.443379], - [-22.394323, 66.443034], - [-22.39545, 66.442384], - [-22.396009, 66.441644], - [-22.39619, 66.441018], - [-22.39623, 66.440442], - [-22.395468, 66.439837], - [-22.394583, 66.439738], - [-22.392798, 66.439873], - [-22.392294, 66.439557], - [-22.392338, 66.439307], - [-22.393346, 66.43892], - [-22.393335, 66.438276], - [-22.392978, 66.437524], - [-22.393126, 66.436662], - [-22.393386, 66.43547], - [-22.393762, 66.434883], - [-22.393344, 66.434078], - [-22.392287, 66.432871], - [-22.391801, 66.432623], - [-22.390524, 66.432664], - [-22.389999, 66.432651], - [-22.38957, 66.43252], - [-22.388921, 66.432605], - [-22.388217, 66.432774], - [-22.38694, 66.43288], - [-22.386318, 66.432825], - [-22.38601, 66.432605], - [-22.386769, 66.431786], - [-22.387867, 66.43155], - [-22.389124, 66.431545], - [-22.389497, 66.430832], - [-22.389495, 66.430097], - [-22.389986, 66.4294], - [-22.390272, 66.4288], - [-22.39006, 66.428204], - [-22.389609, 66.426897], - [-22.389776, 66.42577], - [-22.389502, 66.424639], - [-22.38858, 66.423107], - [-22.387732, 66.422797], - [-22.387263, 66.422098], - [-22.386581, 66.421394], - [-22.387689, 66.42097], - [-22.387381, 66.420481], - [-22.388073, 66.42007], - [-22.387935, 66.419656], - [-22.387416, 66.419093], - [-22.386589, 66.418908], - [-22.385779, 66.419334], - [-22.385265, 66.419802], - [-22.384863, 66.419987], - [-22.384713, 66.419945], - [-22.385155, 66.419412], - [-22.385814, 66.418814], - [-22.385921, 66.418566], - [-22.386169, 66.418491], - [-22.38651, 66.418565], - [-22.386968, 66.418638], - [-22.387311, 66.418578], - [-22.387403, 66.418441], - [-22.387148, 66.418054], - [-22.386753, 66.417915], - [-22.386273, 66.417896], - [-22.385986, 66.417818], - [-22.386217, 66.41716], - [-22.386443, 66.416671], - [-22.386483, 66.416058], - [-22.386399, 66.415841], - [-22.386849, 66.415774], - [-22.38729, 66.415817], - [-22.387896, 66.415773], - [-22.387993, 66.415598], - [-22.387735, 66.415393], - [-22.387217, 66.415363], - [-22.387002, 66.415447], - [-22.38674, 66.415512], - [-22.386176, 66.415521], - [-22.386308, 66.414713], - [-22.386677, 66.414253], - [-22.387199, 66.413602], - [-22.387761, 66.412583], - [-22.386101, 66.412909], - [-22.3857, 66.413353], - [-22.38502, 66.413628], - [-22.384393, 66.413916], - [-22.38344, 66.413725], - [-22.383231, 66.413868], - [-22.382832, 66.414018], - [-22.38196, 66.41404], - [-22.381646, 66.412914], - [-22.381239, 66.412309], - [-22.380111, 66.411792], - [-22.378871, 66.412065], - [-22.378226, 66.411996], - [-22.377875, 66.411579], - [-22.37718, 66.410768], - [-22.377752, 66.41042], - [-22.379039, 66.409915], - [-22.378868, 66.409749], - [-22.375217, 66.409848], - [-22.374056, 66.409749], - [-22.373495, 66.409106], - [-22.373826, 66.408295], - [-22.372849, 66.407735], - [-22.373615, 66.406298], - [-22.373371, 66.405444], - [-22.372385, 66.405365], - [-22.37141, 66.405759], - [-22.370432, 66.405915], - [-22.369962, 66.405764], - [-22.370875, 66.404836], - [-22.370091, 66.404654], - [-22.370863, 66.403867], - [-22.371218, 66.403214], - [-22.370349, 66.402851], - [-22.368383, 66.403077], - [-22.367854, 66.402704], - [-22.367699, 66.402037], - [-22.367822, 66.401344], - [-22.367696, 66.40097], - [-22.367039, 66.400654], - [-22.366069, 66.400387], - [-22.363904, 66.400033], - [-22.363596, 66.399856], - [-22.364069, 66.399625], - [-22.36441, 66.399134], - [-22.364158, 66.398838], - [-22.365268, 66.398251], - [-22.36547, 66.397988], - [-22.364638, 66.397309], - [-22.365212, 66.396242], - [-22.365111, 66.395814], - [-22.364796, 66.395585], - [-22.36377, 66.395558], - [-22.363282, 66.395512], - [-22.362297, 66.39554], - [-22.362031, 66.395427], - [-22.363029, 66.394568], - [-22.364432, 66.394014], - [-22.364177, 66.393542], - [-22.364025, 66.393275], - [-22.363241, 66.392947], - [-22.361015, 66.392823], - [-22.359917, 66.393234], - [-22.358014, 66.39337], - [-22.357748, 66.392909], - [-22.358368, 66.392716], - [-22.358603, 66.392335], - [-22.358035, 66.392163], - [-22.357388, 66.392137], - [-22.355932, 66.392415], - [-22.355603, 66.392416], - [-22.355376, 66.392134], - [-22.354857, 66.391957], - [-22.354055, 66.392004], - [-22.353395, 66.391959], - [-22.352604, 66.392396], - [-22.351227, 66.392733], - [-22.349044, 66.392624], - [-22.348027, 66.392388], - [-22.347864, 66.391663], - [-22.350753, 66.390451], - [-22.350814, 66.390155], - [-22.350549, 66.38994], - [-22.34991, 66.389841], - [-22.349194, 66.389804], - [-22.347786, 66.389017], - [-22.346289, 66.388179], - [-22.345739, 66.388117], - [-22.344413, 66.388047], - [-22.343625, 66.387872], - [-22.343081, 66.387845], - [-22.342779, 66.387652], - [-22.343081, 66.387329], - [-22.342719, 66.386978], - [-22.341722, 66.386501], - [-22.340471, 66.386429], - [-22.339377, 66.3865], - [-22.337001, 66.386742], - [-22.334493, 66.386976], - [-22.333204, 66.387152], - [-22.331231, 66.386889], - [-22.329759, 66.386842], - [-22.327928, 66.386828], - [-22.325304, 66.386413], - [-22.324537, 66.386545], - [-22.32391, 66.38658], - [-22.322903, 66.386197], - [-22.320792, 66.385575], - [-22.317928, 66.384685], - [-22.316581, 66.384564], - [-22.315871, 66.384266], - [-22.315307, 66.384124], - [-22.314302, 66.382861], - [-22.314151, 66.382331], - [-22.313979, 66.381718], - [-22.313167, 66.380791], - [-22.312478, 66.380441], - [-22.311333, 66.380122], - [-22.309557, 66.37968], - [-22.308478, 66.379297], - [-22.306006, 66.378435], - [-22.305455, 66.378244], - [-22.303369, 66.377924], - [-22.301247, 66.377883], - [-22.299702, 66.378068], - [-22.297903, 66.378397], - [-22.296492, 66.378491], - [-22.295639, 66.378441], - [-22.293909, 66.378109], - [-22.292857, 66.378039], - [-22.292108, 66.378092], - [-22.291103, 66.378266], - [-22.289595, 66.378265], - [-22.288402, 66.378091], - [-22.287753, 66.378059], - [-22.286994, 66.377851], - [-22.286157, 66.377399], - [-22.285836, 66.377091], - [-22.285533, 66.376536], - [-22.28513, 66.376274], - [-22.284059, 66.376037], - [-22.283308, 66.375586], - [-22.28253, 66.375495], - [-22.281351, 66.375517], - [-22.281138, 66.375223], - [-22.280117, 66.374809], - [-22.279557, 66.374376], - [-22.278808, 66.374249], - [-22.277894, 66.374625], - [-22.277223, 66.374636], - [-22.277016, 66.37378], - [-22.276521, 66.373786], - [-22.276292, 66.373486], - [-22.275378, 66.373296], - [-22.273835, 66.373154], - [-22.272073, 66.373348], - [-22.271257, 66.373286], - [-22.271446, 66.373022], - [-22.272859, 66.372322], - [-22.273218, 66.371923], - [-22.273275, 66.369909], - [-22.274033, 66.369347], - [-22.275782, 66.368433], - [-22.277037, 66.367378], - [-22.278689, 66.365387], - [-22.277904, 66.364435], - [-22.276378, 66.363707], - [-22.275446, 66.363501], - [-22.272642, 66.36423], - [-22.271038, 66.364339], - [-22.272403, 66.363305], - [-22.272655, 66.362746], - [-22.272135, 66.36241], - [-22.2713, 66.362236], - [-22.270341, 66.362291], - [-22.270555, 66.362024], - [-22.270351, 66.361263], - [-22.268457, 66.360618], - [-22.267184, 66.360497], - [-22.265381, 66.360911], - [-22.265089, 66.360818], - [-22.26497, 66.361021], - [-22.264483, 66.361232], - [-22.263793, 66.361379], - [-22.263825, 66.361017], - [-22.264021, 66.360754], - [-22.264549, 66.360522], - [-22.263873, 66.360411], - [-22.26257, 66.36017], - [-22.261602, 66.360451], - [-22.26125, 66.360774], - [-22.2605, 66.360889], - [-22.259836, 66.36083], - [-22.260119, 66.360558], - [-22.260541, 66.360528], - [-22.260674, 66.360398], - [-22.260528, 66.359923], - [-22.260196, 66.359713], - [-22.259767, 66.359585], - [-22.257568, 66.359253], - [-22.254687, 66.358842], - [-22.252529, 66.358412], - [-22.249864, 66.357981], - [-22.248211, 66.357985], - [-22.247469, 66.357831], - [-22.246609, 66.357386], - [-22.244644, 66.356898], - [-22.242717, 66.356744], - [-22.241992, 66.356819], - [-22.240125, 66.356849], - [-22.237343, 66.356713], - [-22.2366, 66.356469], - [-22.236101, 66.356022], - [-22.23557, 66.355456], - [-22.235415, 66.355024], - [-22.236553, 66.354932], - [-22.239575, 66.354345], - [-22.240471, 66.353882], - [-22.2416, 66.35336], - [-22.241762, 66.353118], - [-22.241289, 66.352984], - [-22.240967, 66.352573], - [-22.24227, 66.352443], - [-22.242248, 66.352041], - [-22.243715, 66.3513], - [-22.246141, 66.350456], - [-22.248374, 66.349704], - [-22.250499, 66.349057], - [-22.251858, 66.34848], - [-22.252271, 66.348069], - [-22.251403, 66.344901], - [-22.251293, 66.344327], - [-22.250253, 66.343479], - [-22.249021, 66.341956], - [-22.246961, 66.340701], - [-22.246163, 66.339741], - [-22.244537, 66.338651], - [-22.242295, 66.337741], - [-22.24042, 66.336534], - [-22.236872, 66.335078], - [-22.235284, 66.334971], - [-22.230911, 66.335294], - [-22.225736, 66.335509], - [-22.224135, 66.335651], - [-22.223948, 66.335404], - [-22.223644, 66.335517], - [-22.223518, 66.335694], - [-22.222753, 66.335965], - [-22.222403, 66.336174], - [-22.221658, 66.336213], - [-22.22133, 66.336337], - [-22.220923, 66.336299], - [-22.221283, 66.335746], - [-22.220922, 66.335614], - [-22.220247, 66.335593], - [-22.219162, 66.335847], - [-22.216965, 66.335992], - [-22.213724, 66.336288], - [-22.20462, 66.337927], - [-22.197971, 66.338869], - [-22.195582, 66.338928], - [-22.195739, 66.339469], - [-22.195351, 66.339981], - [-22.194586, 66.340262], - [-22.193553, 66.340492], - [-22.193185, 66.340601], - [-22.192572, 66.340645], - [-22.191847, 66.340885], - [-22.191279, 66.340894], - [-22.19101, 66.341057], - [-22.19066, 66.341122], - [-22.190498, 66.341076], - [-22.190807, 66.34058], - [-22.19075, 66.339851], - [-22.191022, 66.339755], - [-22.191008, 66.33909], - [-22.191313, 66.338977], - [-22.190772, 66.338615], - [-22.190815, 66.3385], - [-22.191851, 66.338255], - [-22.192848, 66.337698], - [-22.193807, 66.336945], - [-22.194669, 66.336919], - [-22.195248, 66.334893], - [-22.195619, 66.334131], - [-22.195957, 66.333782], - [-22.195475, 66.333627], - [-22.195474, 66.333345], - [-22.196972, 66.332385], - [-22.198001, 66.332102], - [-22.200399, 66.331114], - [-22.203397, 66.329049], - [-22.205881, 66.327319], - [-22.207164, 66.326415], - [-22.207913, 66.325787], - [-22.209213, 66.325252], - [-22.210029, 66.324679], - [-22.211214, 66.324274], - [-22.212071, 66.32361], - [-22.214645, 66.32205], - [-22.214658, 66.3214], - [-22.214898, 66.321184], - [-22.217007, 66.32034], - [-22.218868, 66.320158], - [-22.221534, 66.319463], - [-22.221298, 66.319379], - [-22.221191, 66.319284], - [-22.221603, 66.319228], - [-22.222233, 66.319297], - [-22.223734, 66.318851], - [-22.224609, 66.318424], - [-22.226824, 66.31731], - [-22.228954, 66.316425], - [-22.231956, 66.315661], - [-22.233531, 66.315037], - [-22.23515, 66.314264], - [-22.236307, 66.313155], - [-22.235438, 66.31057], - [-22.233615, 66.308627], - [-22.232943, 66.307941], - [-22.232773, 66.307733], - [-22.231883, 66.307185], - [-22.230782, 66.306513], - [-22.225993, 66.304833], - [-22.222388, 66.304288], - [-22.219475, 66.303795], - [-22.218145, 66.303068], - [-22.217141, 66.302251], - [-22.216278, 66.302072], - [-22.216147, 66.30222], - [-22.215664, 66.302304], - [-22.214962, 66.302171], - [-22.215006, 66.301987], - [-22.214066, 66.30196], - [-22.212966, 66.302106], - [-22.211009, 66.30169], - [-22.211181, 66.301431], - [-22.210869, 66.301153], - [-22.210222, 66.301069], - [-22.20872, 66.301028], - [-22.208659, 66.300627], - [-22.208809, 66.300473], - [-22.209063, 66.30042], - [-22.208918, 66.300178], - [-22.206836, 66.299605], - [-22.206149, 66.299648], - [-22.206032, 66.300042], - [-22.205032, 66.300314], - [-22.204594, 66.300744], - [-22.203697, 66.300422], - [-22.201497, 66.298906], - [-22.201572, 66.298044], - [-22.202822, 66.297168], - [-22.20357, 66.296362], - [-22.204378, 66.296065], - [-22.204976, 66.295644], - [-22.20529, 66.295227], - [-22.20512, 66.29493], - [-22.205429, 66.294531], - [-22.20593, 66.294242], - [-22.206622, 66.293846], - [-22.208031, 66.292915], - [-22.209179, 66.292333], - [-22.210656, 66.291694], - [-22.211755, 66.291147], - [-22.211936, 66.290769], - [-22.211497, 66.290431], - [-22.211009, 66.289684], - [-22.211075, 66.289178], - [-22.211605, 66.28855], - [-22.212212, 66.28819], - [-22.213133, 66.288293], - [-22.213687, 66.288489], - [-22.214325, 66.28844], - [-22.214822, 66.288204], - [-22.215618, 66.287238], - [-22.215612, 66.286869], - [-22.215152, 66.286887], - [-22.214996, 66.286794], - [-22.215289, 66.286593], - [-22.215718, 66.286552], - [-22.215908, 66.286645], - [-22.216346, 66.286601], - [-22.21736, 66.286401], - [-22.217786, 66.286176], - [-22.218525, 66.285907], - [-22.218825, 66.285653], - [-22.219008, 66.285077], - [-22.219378, 66.284557], - [-22.220643, 66.28403], - [-22.220645, 66.283732], - [-22.220693, 66.283491], - [-22.222098, 66.282763], - [-22.222574, 66.282672], - [-22.223107, 66.281985], - [-22.223315, 66.28104], - [-22.223616, 66.280608], - [-22.224035, 66.280204], - [-22.224051, 66.279365], - [-22.223825, 66.278525], - [-22.22396, 66.278031], - [-22.224216, 66.277522], - [-22.224931, 66.277261], - [-22.225331, 66.276831], - [-22.2264, 66.276615], - [-22.22683, 66.276452], - [-22.226903, 66.276291], - [-22.227521, 66.275936], - [-22.228144, 66.275681], - [-22.228207, 66.274421], - [-22.228917, 66.274205], - [-22.229366, 66.273738], - [-22.231464, 66.273339], - [-22.231919, 66.273112], - [-22.23258, 66.2727], - [-22.232552, 66.272355], - [-22.232817, 66.272104], - [-22.233745, 66.271782], - [-22.235283, 66.271142], - [-22.235406, 66.27094], - [-22.235507, 66.270776], - [-22.235487, 66.270181], - [-22.236153, 66.269831], - [-22.236335, 66.269531], - [-22.235535, 66.268717], - [-22.233985, 66.267659], - [-22.23288, 66.267182], - [-22.232553, 66.267031], - [-22.231266, 66.266525], - [-22.229908, 66.265539], - [-22.228874, 66.264665], - [-22.227891, 66.264289], - [-22.227114, 66.26393], - [-22.225387, 66.263151], - [-22.223584, 66.262606], - [-22.221203, 66.262104], - [-22.21872, 66.261683], - [-22.215425, 66.261053], - [-22.213477, 66.260795], - [-22.208705, 66.260249], - [-22.20703, 66.260279], - [-22.206104, 66.260498], - [-22.203785, 66.261178], - [-22.202349, 66.261898], - [-22.201579, 66.262145], - [-22.201278, 66.2624], - [-22.201257, 66.262688], - [-22.199996, 66.263515], - [-22.199159, 66.263619], - [-22.198645, 66.26388], - [-22.197187, 66.264836], - [-22.196651, 66.264921], - [-22.195984, 66.265298], - [-22.194794, 66.26581], - [-22.19376, 66.266089], - [-22.192921, 66.266136], - [-22.190383, 66.266072], - [-22.188782, 66.266428], - [-22.187121, 66.26696], - [-22.186285, 66.267365], - [-22.185626, 66.267688], - [-22.184073, 66.26823], - [-22.182376, 66.268844], - [-22.181029, 66.268869], - [-22.175934, 66.27061], - [-22.174494, 66.271372], - [-22.17426, 66.271889], - [-22.174085, 66.272237], - [-22.173374, 66.272484], - [-22.17249, 66.272733], - [-22.171332, 66.27291], - [-22.170516, 66.272973], - [-22.169817, 66.273349], - [-22.169225, 66.273678], - [-22.16885, 66.273906], - [-22.16855, 66.274263], - [-22.168619, 66.274515], - [-22.168565, 66.274644], - [-22.168201, 66.274607], - [-22.16367, 66.27542], - [-22.15714, 66.27957], - [-22.15186, 66.28056], - [-22.14316, 66.27939], - [-22.1421, 66.27833], - [-22.13904, 66.27773], - [-22.13986, 66.27186], - [-22.13797, 66.26847], - [-22.14336, 66.25864], - [-22.14462, 66.25868], - [-22.14478, 66.25791], - [-22.14604, 66.25795], - [-22.14769, 66.25595], - [-22.14898, 66.25587], - [-22.14974, 66.25525], - [-22.15104, 66.25516], - [-22.15366, 66.25307], - [-22.15281, 66.25253], - [-22.15407, 66.25257], - [-22.15558, 66.25133], - [-22.15497, 66.25118], - [-22.156776, 66.248598], - [-22.15343, 66.245865], - [-22.14993, 66.24603], - [-22.15019, 66.24629], - [-22.14893, 66.24625], - [-22.14936, 66.24729], - [-22.1481, 66.24725], - [-22.1482, 66.24674], - [-22.14757, 66.24673], - [-22.14734, 66.24954], - [-22.15149, 66.25274], - [-22.14041, 66.25086], - [-22.13949, 66.25237], - [-22.13821, 66.25233], - [-22.13648, 66.25483], - [-22.13348, 66.25551], - [-22.13281, 66.25728], - [-22.12644, 66.25734], - [-22.12688, 66.25838], - [-22.12625, 66.25836], - [-22.12635, 66.25785], - [-22.12314, 66.258], - [-22.1224, 66.25849], - [-22.1243, 66.25855], - [-22.12386, 66.26084], - [-22.12026, 66.25971], - [-22.12017, 66.26022], - [-22.11627, 66.26061], - [-22.11343, 66.26539], - [-22.11533, 66.26545], - [-22.11582, 66.26624], - [-22.1146, 66.26595], - [-22.10892, 66.2755], - [-22.10698, 66.27569], - [-22.10545, 66.27693], - [-22.10349, 66.27725], - [-22.10226, 66.27708], - [-22.10142, 66.27808], - [-22.09884, 66.27825], - [-22.09906, 66.27877], - [-22.0977, 66.27924], - [-22.09593, 66.28175], - [-22.09673, 66.28255], - [-22.09299, 66.28328], - [-22.09389, 66.28733], - [-22.09516, 66.28737], - [-22.09476, 66.2894], - [-22.09094, 66.28941], - [-22.08848, 66.28894], - [-22.08833, 66.28971], - [-22.08579, 66.28963], - [-22.08597, 66.29041], - [-22.08528, 66.29064], - [-22.0854, 66.29167], - [-22.08287, 66.29159], - [-22.08209, 66.29233], - [-22.08145, 66.29231], - [-22.08155, 66.2918], - [-22.07712, 66.29166], - [-22.07691, 66.28781], - [-22.07776, 66.28681], - [-22.07722, 66.28628], - [-22.07922, 66.28583], - [-22.07929, 66.28224], - [-22.08043, 66.28126], - [-22.0817, 66.2813], - [-22.08476, 66.27704], - [-22.08612, 66.27658], - [-22.08872, 66.27306], - [-22.09035, 66.27286], - [-22.08893, 66.2687], - [-22.08777, 66.26816], - [-22.08851, 66.26433], - [-22.08771, 66.26355], - [-22.08427, 66.26276], - [-22.08339, 66.2629], - [-22.08444, 66.26242], - [-22.08448, 66.2605], - [-22.08495, 66.2603], - [-22.08239, 66.25825], - [-22.07874, 66.25737], - [-22.07826, 66.25658], - [-22.07447, 66.25646], - [-22.07452, 66.25621], - [-22.07578, 66.25625], - [-22.07583, 66.25599], - [-22.07222, 66.25498], - [-22.05912, 66.25367], - [-22.06085, 66.25295], - [-22.06104, 66.25193], - [-22.06368, 66.25151], - [-22.06513, 66.24899], - [-22.06449, 66.24897], - [-22.062818, 66.249889], - [-22.05523, 66.25406], - [-22.05397, 66.25402], - [-22.05104, 66.25597], - [-22.04788, 66.25587], - [-22.04505, 66.25732], - [-22.03782, 66.2585], - [-22.02763, 66.25856], - [-22.02715, 66.25777], - [-22.0151, 66.25765], - [-22.015, 66.25815], - [-22.00443, 66.26011], - [-21.9833, 66.26726], - [-21.96745, 66.27007], - [-21.96037, 66.27048], - [-21.96075, 66.26383], - [-21.96022, 66.2633], - [-21.96091, 66.26306], - [-21.9603, 66.25971], - [-21.95944, 66.2561], - [-21.9607, 66.25614], - [-21.96125, 66.2518], - [-21.96025, 66.25048], - [-21.96071, 66.24973], - [-21.95945, 66.24969], - [-21.9596, 66.24892], - [-21.95718, 66.24833], - [-21.95791, 66.24784], - [-21.94943, 66.24577], - [-21.94953, 66.24526], - [-21.94769, 66.24495], - [-21.94721, 66.24416], - [-21.94531, 66.24411], - [-21.94541, 66.24359], - [-21.94415, 66.24355], - [-21.94425, 66.24304], - [-21.94302, 66.24287], - [-21.94233, 66.2431], - [-21.94046, 66.24291], - [-21.94004, 66.24188], - [-21.93746, 66.24205], - [-21.93652, 66.24356], - [-21.93526, 66.24351], - [-21.93541, 66.24275], - [-21.93299, 66.24216], - [-21.93142, 66.24364], - [-21.93079, 66.24362], - [-21.93094, 66.24286], - [-21.92968, 66.24282], - [-21.92918, 66.24322], - [-21.92952, 66.24358], - [-21.92831, 66.24329], - [-21.92842, 66.24278], - [-21.92258, 66.24335], - [-21.92136, 66.24152], - [-21.92416, 66.23866], - [-21.92545, 66.23858], - [-21.92685, 66.23479], - [-21.9281, 66.23482], - [-21.93156, 66.23032], - [-21.93282, 66.23036], - [-21.93216, 66.22419], - [-21.93031, 66.22387], - [-21.93042, 66.22336], - [-21.93425, 66.22323], - [-21.93441, 66.22246], - [-21.93696, 66.22242], - [-21.94087, 66.22191], - [-21.94134, 66.22115], - [-21.94297, 66.22094], - [-21.94373, 66.22033], - [-21.95005, 66.21887], - [-21.95047, 66.21837], - [-21.95961, 66.21713], - [-21.95971, 66.21663], - [-21.96097, 66.21667], - [-21.96112, 66.2159], - [-21.96239, 66.21594], - [-21.96322, 66.21495], - [-21.96574, 66.21503], - [-21.96632, 66.21376], - [-21.9692, 66.2136], - [-21.97145, 66.21188], - [-21.97271, 66.21193], - [-21.97386, 66.21093], - [-21.97685, 66.21026], - [-21.97762, 66.20964], - [-21.98053, 66.20936], - [-21.98131, 66.20861], - [-21.9916, 66.20638], - [-21.99173, 66.20562], - [-21.99362, 66.20568], - [-21.99377, 66.20491], - [-21.99505, 66.20496], - [-21.99697, 66.20322], - [-22.00236, 66.2016], - [-22.00589, 66.19826], - [-22.00754, 66.19793], - [-22.00764, 66.19742], - [-22.00675, 66.19713], - [-22.00665, 66.19764], - [-22.00481, 66.19732], - [-22.00322, 66.19574], - [-22.00259, 66.19571], - [-22.00176, 66.19671], - [-21.99462, 66.1975], - [-21.99211, 66.19897], - [-21.99385, 66.19979], - [-21.99333, 66.2008], - [-21.9872, 66.1997], - [-21.98403, 66.19973], - [-21.98183, 66.20119], - [-21.97726, 66.20182], - [-21.97497, 66.20379], - [-21.96462, 66.20474], - [-21.96243, 66.2062], - [-21.9512, 66.2084], - [-21.94559, 66.21104], - [-21.94365, 66.21123], - [-21.94082, 66.21268], - [-21.93688, 66.21332], - [-21.93698, 66.21281], - [-21.93334, 66.21193], - [-21.93325, 66.21243], - [-21.9313, 66.21262], - [-21.93052, 66.21336], - [-21.92674, 66.21324], - [-21.92684, 66.21273], - [-21.92174, 66.21282], - [-21.92195, 66.2118], - [-21.91857, 66.21075], - [-21.917656, 66.210532], - [-21.917178, 66.210817], - [-21.91453, 66.21079], - [-21.91218, 66.21302], - [-21.91093, 66.21298], - [-21.90854, 66.21059], - [-21.90974, 66.20781], - [-21.90916, 66.20754], - [-21.90958, 66.20704], - [-21.90832, 66.20699], - [-21.90842, 66.20649], - [-21.90723, 66.20606], - [-21.90527, 66.20638], - [-21.90557, 66.20485], - [-21.90139, 66.20356], - [-21.89816, 66.20384], - [-21.89827, 66.20332], - [-21.89643, 66.20301], - [-21.89605, 66.20172], - [-21.89096, 66.20181], - [-21.88886, 66.20276], - [-21.88896, 66.20225], - [-21.88586, 66.2019], - [-21.88575, 66.19933], - [-21.88333, 66.19874], - [-21.88349, 66.19797], - [-21.88096, 66.19789], - [-21.88038, 66.19454], - [-21.87796, 66.19394], - [-21.87643, 66.1921], - [-21.872567, 66.190253], - [-21.870434, 66.190058], - [-21.868269, 66.18978], - [-21.866469, 66.18959], - [-21.864919, 66.189454], - [-21.863733, 66.189505], - [-21.862797, 66.189791], - [-21.862239, 66.190167], - [-21.861974, 66.190222], - [-21.861693, 66.190231], - [-21.86155, 66.19015], - [-21.861377, 66.189969], - [-21.861149, 66.189849], - [-21.86063, 66.18971], - [-21.859986, 66.1896], - [-21.859117, 66.189772], - [-21.858711, 66.189964], - [-21.858187, 66.190132], - [-21.857853, 66.190223], - [-21.85748, 66.190179], - [-21.857641, 66.190036], - [-21.857755, 66.189888], - [-21.857546, 66.189661], - [-21.857232, 66.189237], - [-21.85664, 66.188697], - [-21.855675, 66.188294], - [-21.854801, 66.188201], - [-21.853835, 66.18829], - [-21.853248, 66.188348], - [-21.853004, 66.188296], - [-21.852081, 66.188213], - [-21.851318, 66.188249], - [-21.850692, 66.188289], - [-21.849895, 66.188269], - [-21.849286, 66.188502], - [-21.848728, 66.188828], - [-21.848604, 66.189091], - [-21.848439, 66.189124], - [-21.848164, 66.189062], - [-21.847901, 66.188883], - [-21.847395, 66.188654], - [-21.846428, 66.18847], - [-21.83536, 66.18817], - [-21.8352, 66.18893], - [-21.83394, 66.18889], - [-21.83415, 66.18787], - [-21.83226, 66.18781], - [-21.83237, 66.1873], - [-21.82659, 66.18762], - [-21.82738, 66.18687], - [-21.82068, 66.1855], - [-21.81756, 66.18526], - [-21.81835, 66.18452], - [-21.80097, 66.18266], - [-21.80092, 66.18291], - [-21.80218, 66.18295], - [-21.80213, 66.18321], - [-21.77386, 66.18187], - [-21.76997, 66.18225], - [-21.75555, 66.1815], - [-21.74654, 66.1821], - [-21.74707, 66.18263], - [-21.74626, 66.18243], - [-21.74009, 66.18264], - [-21.74035, 66.18137], - [-21.74292, 66.18119], - [-21.74376, 66.18021], - [-21.74565, 66.18027], - [-21.74576, 66.17976], - [-21.74702, 66.1798], - [-21.74718, 66.17904], - [-21.74844, 66.17908], - [-21.74928, 66.17809], - [-21.75807, 66.17544], - [-21.75968, 66.17382], - [-21.76094, 66.17387], - [-21.7611, 66.1731], - [-21.76238, 66.17302], - [-21.7656, 66.1712], - [-21.76493, 66.16528], - [-21.76578, 66.16429], - [-21.76452, 66.1627], - [-21.762, 66.16262], - [-21.76212, 66.16211], - [-21.76021, 66.16205], - [-21.76032, 66.16155], - [-21.75844, 66.16147], - [-21.75796, 66.16069], - [-21.75254, 66.15935], - [-21.73801, 66.15911], - [-21.73313, 66.15818], - [-21.73191, 66.15801], - [-21.73034, 66.15641], - [-21.72735, 66.15554], - [-21.72687, 66.15476], - [-21.72442, 66.15442], - [-21.72431, 66.15493], - [-21.72303, 66.15501], - [-21.72002, 66.15427], - [-21.71876, 66.15269], - [-21.72013, 66.15068], - [-21.72202, 66.15075], - [-21.72407, 66.14697], - [-21.72533, 66.14701], - [-21.72549, 66.14626], - [-21.72801, 66.14633], - [-21.73, 66.14435], - [-21.73184, 66.1416], - [-21.73169, 66.14082], - [-21.73358, 66.14088], - [-21.73463, 66.13887], - [-21.73588, 66.13891], - [-21.73961, 66.13468], - [-21.74188, 66.1345], - [-21.74292, 66.13248], - [-21.73988, 66.13187], - [-21.74026, 66.12855], - [-21.74125, 66.12832], - [-21.74175, 66.12898], - [-21.74934, 66.12898], - [-21.749689, 66.128472], - [-21.75115, 66.12635], - [-21.75809, 66.12646], - [-21.76535, 66.1235], - [-21.76498, 66.12067], - [-21.764848, 66.120158], - [-21.764986, 66.119761], - [-21.764742, 66.11971], - [-21.764183, 66.11966], - [-21.76404, 66.1191], - [-21.763168, 66.118664], - [-21.763, 66.11804], - [-21.76059, 66.11744], - [-21.76046, 66.11701], - [-21.75944, 66.11689], - [-21.75797, 66.11787], - [-21.75441, 66.11672], - [-21.75426, 66.11749], - [-21.75295, 66.1177], - [-21.7523, 66.11674], - [-21.75059, 66.11685], - [-21.75091, 66.11532], - [-21.73895, 66.11504], - [-21.73714, 66.11459], - [-21.73704, 66.1151], - [-21.73641, 66.11508], - [-21.73688, 66.11279], - [-21.73563, 66.11275], - [-21.73579, 66.11198], - [-21.72961, 66.11126], - [-21.73023, 66.11034], - [-21.72611, 66.10986], - [-21.72172, 66.10663], - [-21.71988, 66.10631], - [-21.71969, 66.10579], - [-21.72254, 66.10576], - [-21.72518, 66.10521], - [-21.72508, 66.10418], - [-21.72623, 66.1032], - [-21.72812, 66.10326], - [-21.72801, 66.10377], - [-21.72901, 66.10355], - [-21.72974, 66.10152], - [-21.73492, 66.10093], - [-21.73502, 66.09888], - [-21.73258, 66.097], - [-21.73387, 66.09692], - [-21.73499, 66.09606], - [-21.73897, 66.09517], - [-21.73918, 66.09261], - [-21.73729, 66.09255], - [-21.73693, 66.09125], - [-21.73994, 66.092], - [-21.74243, 66.09067], - [-21.74232, 66.08964], - [-21.74352, 66.08994], - [-21.74374, 66.08738], - [-21.74238, 66.08631], - [-21.73982, 66.08648], - [-21.73909, 66.08389], - [-21.73784, 66.08385], - [-21.73685, 66.08253], - [-21.7336, 66.08293], - [-21.73371, 66.08243], - [-21.73245, 66.08238], - [-21.73267, 66.08136], - [-21.73078, 66.0813], - [-21.73105, 66.08003], - [-21.72978, 66.07998], - [-21.72959, 66.07793], - [-21.727059, 66.077555], - [-21.722597, 66.072053], - [-21.724592, 66.07102], - [-21.726207, 66.070665], - [-21.72654, 66.069661], - [-21.727734, 66.069917], - [-21.729778, 66.069343], - [-21.72839, 66.069101], - [-21.728952, 66.068372], - [-21.730606, 66.067911], - [-21.733013, 66.068503], - [-21.733493, 66.069098], - [-21.732774, 66.070099], - [-21.73431, 66.070223], - [-21.734505, 66.069648], - [-21.735559, 66.069555], - [-21.736155, 66.07123], - [-21.736692, 66.071146], - [-21.737349, 66.071036], - [-21.736917, 66.069635], - [-21.736546, 66.068392], - [-21.73585, 66.067952], - [-21.734445, 66.067762], - [-21.732968, 66.06789], - [-21.731805, 66.067427], - [-21.729256, 66.067462], - [-21.728945, 66.066813], - [-21.727763, 66.066944], - [-21.728489, 66.066092], - [-21.72878, 66.06468], - [-21.727508, 66.063306], - [-21.72532, 66.062966], - [-21.725538, 66.062195], - [-21.72354, 66.062396], - [-21.724813, 66.061991], - [-21.724453, 66.060325], - [-21.724527, 66.059884], - [-21.72389, 66.05978], - [-21.723313, 66.059916], - [-21.721803, 66.058156], - [-21.721169, 66.058226], - [-21.720644, 66.057159], - [-21.718075, 66.056925], - [-21.715616, 66.057309], - [-21.713972, 66.054932], - [-21.711771, 66.054252], - [-21.710399, 66.052241], - [-21.71033, 66.05214], - [-21.710182, 66.052152], - [-21.709867, 66.052155], - [-21.70749, 66.052181], - [-21.704739, 66.052212], - [-21.704898, 66.05097], - [-21.702611, 66.050366], - [-21.702094, 66.05023], - [-21.701213, 66.050145], - [-21.693466, 66.049404], - [-21.690656, 66.050588], - [-21.689981, 66.050952], - [-21.688994, 66.051486], - [-21.688489, 66.051759], - [-21.686318, 66.05251], - [-21.686546, 66.052957], - [-21.6849, 66.05305], - [-21.683772, 66.053214], - [-21.682298, 66.054131], - [-21.680266, 66.055394], - [-21.678157, 66.05598], - [-21.677328, 66.057271], - [-21.676869, 66.057496], - [-21.674582, 66.058612], - [-21.673601, 66.059732], - [-21.672876, 66.060868], - [-21.670758, 66.061386], - [-21.669936, 66.062345], - [-21.669318, 66.063532], - [-21.668561, 66.06349], - [-21.667097, 66.064751], - [-21.666316, 66.065319], - [-21.66429, 66.065782], - [-21.663302, 66.065028], - [-21.661622, 66.065258], - [-21.66029, 66.06656], - [-21.66044, 66.06734], - [-21.65913, 66.06755], - [-21.65895, 66.066305], - [-21.658133, 66.065974], - [-21.658501, 66.064786], - [-21.6551, 66.064683], - [-21.65351, 66.06428], - [-21.65179, 66.06345], - [-21.650058, 66.0629], - [-21.649301, 66.06266], - [-21.649198, 66.06262], - [-21.648281, 66.06226], - [-21.64767, 66.06202], - [-21.646657, 66.061435], - [-21.646, 66.06094], - [-21.64418, 66.06062], - [-21.64376, 66.05958], - [-21.64183, 66.05977], - [-21.63944, 66.05763], - [-21.6383, 66.05553], - [-21.63705, 66.0555], - [-21.63716, 66.05499], - [-21.63476, 66.05439], - [-21.631781, 66.052299], - [-21.629362, 66.050602], - [-21.629735, 66.049823], - [-21.628622, 66.048812], - [-21.627645, 66.047199], - [-21.627942, 66.046562], - [-21.62986, 66.04473], - [-21.63047, 66.043835], - [-21.63254, 66.04097], - [-21.633293, 66.04014], - [-21.634179, 66.039129], - [-21.6367, 66.03625], - [-21.637084, 66.036038], - [-21.639846, 66.034545], - [-21.641128, 66.034023], - [-21.64167, 66.0336], - [-21.641895, 66.033341], - [-21.644298, 66.032097], - [-21.644792, 66.031718], - [-21.646005, 66.031017], - [-21.647819, 66.029055], - [-21.648867, 66.028694], - [-21.651466, 66.027654], - [-21.651465, 66.027426], - [-21.652451, 66.027042], - [-21.653548, 66.026841], - [-21.655809, 66.025648], - [-21.657657, 66.02519], - [-21.658282, 66.024912], - [-21.659207, 66.024594], - [-21.659799, 66.023927], - [-21.660583, 66.023624], - [-21.66121, 66.023381], - [-21.663154, 66.022826], - [-21.664698, 66.021494], - [-21.666816, 66.020628], - [-21.666918, 66.020618], - [-21.667179, 66.020591], - [-21.66739, 66.020502], - [-21.667814, 66.020325], - [-21.667952, 66.020281], - [-21.667987, 66.020256], - [-21.668034, 66.020222], - [-21.668076, 66.020191], - [-21.668101, 66.020173], - [-21.668218, 66.020107], - [-21.669447, 66.019413], - [-21.669699, 66.019261], - [-21.669972, 66.019125], - [-21.670189, 66.018951], - [-21.670188, 66.018849], - [-21.670134, 66.018688], - [-21.670003, 66.018505], - [-21.669793, 66.018241], - [-21.669754, 66.018134], - [-21.669879, 66.017964], - [-21.669989, 66.017856], - [-21.670233, 66.017727], - [-21.670642, 66.017594], - [-21.671052, 66.017539], - [-21.671381, 66.017527], - [-21.671653, 66.017456], - [-21.671725, 66.017341], - [-21.671833, 66.017308], - [-21.672041, 66.017301], - [-21.672349, 66.017376], - [-21.673384, 66.017343], - [-21.673977, 66.017248], - [-21.674832, 66.017006], - [-21.674398, 66.016919], - [-21.673832, 66.016667], - [-21.673228, 66.016735], - [-21.673118, 66.016736], - [-21.672608, 66.016742], - [-21.672495, 66.016852], - [-21.672307, 66.016941], - [-21.672103, 66.016973], - [-21.672084, 66.017146], - [-21.672058, 66.017204], - [-21.672041, 66.017227], - [-21.67179, 66.017236], - [-21.671691, 66.017206], - [-21.671409, 66.01708], - [-21.671082, 66.017034], - [-21.670611, 66.017047], - [-21.670214, 66.017038], - [-21.669879, 66.016942], - [-21.668645, 66.016138], - [-21.667565, 66.015625], - [-21.666063, 66.015101], - [-21.664277, 66.014653], - [-21.662953, 66.014892], - [-21.661367, 66.014851], - [-21.660345, 66.015176], - [-21.659439, 66.015294], - [-21.658057, 66.015208], - [-21.655798, 66.016009], - [-21.651549, 66.01724], - [-21.650585, 66.017415], - [-21.64726, 66.018769], - [-21.64258, 66.02031], - [-21.64136, 66.02013], - [-21.63475, 66.02157], - [-21.63098, 66.02451], - [-21.61792, 66.02662], - [-21.61901, 66.02743], - [-21.61583, 66.02757], - [-21.61572, 66.02808], - [-21.61697, 66.02812], - [-21.61692, 66.02838], - [-21.61564, 66.02846], - [-21.61404, 66.03007], - [-21.61279, 66.03003], - [-21.61178, 66.03179], - [-21.60991, 66.03172], - [-21.61094, 66.03279], - [-21.60969, 66.03274], - [-21.61009, 66.03378], - [-21.60885, 66.03374], - [-21.60805, 66.03448], - [-21.60957, 66.03479], - [-21.60465, 66.03718], - [-21.60358, 66.04073], - [-21.60233, 66.04068], - [-21.60326, 66.04226], - [-21.602, 66.04222], - [-21.60161, 66.04554], - [-21.60219, 66.04581], - [-21.60045, 66.04806], - [-21.6006, 66.057475], - [-21.60393, 66.05985], - [-21.60516, 66.06002], - [-21.60443, 66.06051], - [-21.60688, 66.06085], - [-21.60677, 66.06137], - [-21.60865, 66.06143], - [-21.60849, 66.06219], - [-21.61094, 66.06252], - [-21.61115, 66.06305], - [-21.6138, 66.06392], - [-21.6137, 66.06443], - [-21.61495, 66.06447], - [-21.61484, 66.06498], - [-21.61606, 66.06514], - [-21.61839, 66.06613], - [-21.619715, 66.06633], - [-21.621723, 66.067059], - [-21.623821, 66.068914], - [-21.623522, 66.069714], - [-21.622655, 66.070053], - [-21.622625, 66.073048], - [-21.620752, 66.076607], - [-21.621273, 66.078146], - [-21.62054, 66.0798], - [-21.61929, 66.07975], - [-21.61891, 66.08153], - [-21.61766, 66.08149], - [-21.6154, 66.08321], - [-21.61414, 66.08316], - [-21.61502, 66.08499], - [-21.61057, 66.08509], - [-21.61067, 66.08458], - [-21.6088, 66.08452], - [-21.60891, 66.084], - [-21.60577, 66.08389], - [-21.60566, 66.0844], - [-21.60441, 66.08436], - [-21.60425, 66.08512], - [-21.60116, 66.08476], - [-21.60127, 66.08425], - [-21.59751, 66.08412], - [-21.59704, 66.08333], - [-21.59448, 66.0835], - [-21.59459, 66.08299], - [-21.58311, 66.08348], - [-21.57174, 66.08642], - [-21.56798, 66.08628], - [-21.5575, 66.08797], - [-21.551973, 66.08791], - [-21.550444, 66.088095], - [-21.54899, 66.088323], - [-21.548405, 66.088403], - [-21.547743, 66.088332], - [-21.547269, 66.088222], - [-21.546628, 66.088134], - [-21.545816, 66.0881], - [-21.545112, 66.088089], - [-21.54464, 66.088071], - [-21.543953, 66.087989], - [-21.54312, 66.087856], - [-21.542503, 66.087696], - [-21.54207, 66.087516], - [-21.541585, 66.087284], - [-21.540607, 66.08694], - [-21.540388, 66.08685], - [-21.540493, 66.08678], - [-21.540945, 66.086603], - [-21.541118, 66.086413], - [-21.541029, 66.085982], - [-21.540696, 66.085681], - [-21.540418, 66.085046], - [-21.540427, 66.084736], - [-21.54066, 66.084435], - [-21.54063, 66.08416], - [-21.540597, 66.083947], - [-21.540291, 66.083684], - [-21.539741, 66.083521], - [-21.539224, 66.083398], - [-21.538796, 66.083241], - [-21.538769, 66.083068], - [-21.538748, 66.082929], - [-21.53845, 66.08255], - [-21.537694, 66.081852], - [-21.537266, 66.081654], - [-21.537143, 66.081429], - [-21.537159, 66.081315], - [-21.537446, 66.081221], - [-21.537832, 66.081082], - [-21.538153, 66.08092], - [-21.53841, 66.080701], - [-21.538563, 66.080472], - [-21.538665, 66.080184], - [-21.53868, 66.07999], - [-21.5387, 66.07845], - [-21.53624, 66.0781], - [-21.53641, 66.07735], - [-21.5339, 66.07726], - [-21.53406, 66.07649], - [-21.53098, 66.07613], - [-21.53017, 66.07405], - [-21.52829, 66.07398], - [-21.52851, 66.07296], - [-21.52668, 66.07264], - [-21.52369, 66.06894], - [-21.52104, 66.06808], - [-21.52122, 66.06578], - [-21.517508, 66.065471], - [-21.51604, 66.062741], - [-21.51384, 66.06192], - [-21.51338, 66.06114], - [-21.51212, 66.06109], - [-21.51141, 66.06004], - [-21.51183, 66.05954], - [-21.51, 66.05922], - [-21.503929, 66.055514], - [-21.50336, 66.05488], - [-21.502144, 66.054371], - [-21.50233, 66.05382], - [-21.502204, 66.052974], - [-21.50136, 66.0525], - [-21.500799, 66.050574], - [-21.500219, 66.049998], - [-21.499428, 66.049562], - [-21.49857, 66.04932], - [-21.498123, 66.048377], - [-21.498177, 66.048001], - [-21.498358, 66.04754], - [-21.499269, 66.047065], - [-21.500811, 66.046304], - [-21.502304, 66.046121], - [-21.503019, 66.046289], - [-21.503702, 66.046443], - [-21.504569, 66.046395], - [-21.50562, 66.046278], - [-21.50627, 66.045976], - [-21.506832, 66.04557], - [-21.508076, 66.045275], - [-21.509955, 66.045129], - [-21.511065, 66.04511], - [-21.51155, 66.044996], - [-21.512141, 66.045398], - [-21.512857, 66.045452], - [-21.513664, 66.045555], - [-21.52334, 66.04713], - [-21.52323, 66.04764], - [-21.52819, 66.04807], - [-21.52808, 66.04858], - [-21.53246, 66.04874], - [-21.53235, 66.04925], - [-21.53739, 66.0493], - [-21.53911, 66.05013], - [-21.541014, 66.050245], - [-21.543111, 66.049072], - [-21.543008, 66.050448], - [-21.545377, 66.051107], - [-21.54766, 66.050508], - [-21.557425, 66.05248], - [-21.559445, 66.052305], - [-21.562809, 66.051229], - [-21.566577, 66.047832], - [-21.56558, 66.04735], - [-21.564749, 66.046765], - [-21.56386, 66.04652], - [-21.56168, 66.0449], - [-21.55515, 66.043], - [-21.54897, 66.0424], - [-21.54862, 66.0411], - [-21.54736, 66.04106], - [-21.54747, 66.04055], - [-21.54622, 66.04051], - [-21.544536, 66.039889], - [-21.54331, 66.03937], - [-21.54296, 66.03808], - [-21.5417, 66.03804], - [-21.54104, 66.03673], - [-21.541206, 66.035326], - [-21.542931, 66.035326], - [-21.547677, 66.032823], - [-21.54767, 66.03081], - [-21.54528, 66.03021], - [-21.545357, 66.028716], - [-21.544957, 66.028293], - [-21.54384, 66.02811], - [-21.542664, 66.027837], - [-21.54207, 66.02753], - [-21.540113, 66.026924], - [-21.533643, 66.026052], - [-21.5292, 66.02579], - [-21.52896, 66.02399], - [-21.515113, 66.020833], - [-21.516418, 66.017746], - [-21.517565, 66.015911], - [-21.51734, 66.014921], - [-21.514696, 66.013417], - [-21.513411, 66.013305], - [-21.512109, 66.013327], - [-21.511222, 66.013444], - [-21.510557, 66.013551], - [-21.510187, 66.013481], - [-21.509564, 66.01329], - [-21.507735, 66.012983], - [-21.505555, 66.013177], - [-21.504125, 66.01398], - [-21.503021, 66.013691], - [-21.503738, 66.01323], - [-21.503043, 66.012906], - [-21.502054, 66.012657], - [-21.500869, 66.012483], - [-21.500279, 66.012745], - [-21.499892, 66.01278], - [-21.499278, 66.012565], - [-21.49735, 66.012455], - [-21.495142, 66.012536], - [-21.494292, 66.012682], - [-21.490841, 66.013454], - [-21.487912, 66.01481], - [-21.483824, 66.015475], - [-21.482053, 66.017303], - [-21.480554, 66.017026], - [-21.480554, 66.015697], - [-21.478783, 66.015724], - [-21.477809, 66.016574], - [-21.475362, 66.016325], - [-21.475158, 66.015165], - [-21.469042, 66.015745], - [-21.46527, 66.017527], - [-21.463843, 66.019681], - [-21.46178, 66.01979], - [-21.461, 66.02053], - [-21.458542, 66.021173], - [-21.454147, 66.018696], - [-21.450877, 66.018668], - [-21.450795, 66.019516], - [-21.44877, 66.02163], - [-21.44866, 66.02214], - [-21.44741, 66.02209], - [-21.4473, 66.0226], - [-21.4457, 66.021631], - [-21.443452, 66.021077], - [-21.442157, 66.023153], - [-21.441067, 66.022655], - [-21.442498, 66.020357], - [-21.44134, 66.019637], - [-21.438547, 66.019914], - [-21.43773, 66.019194], - [-21.435141, 66.019277], - [-21.434051, 66.022267], - [-21.432144, 66.023042], - [-21.431462, 66.021963], - [-21.429827, 66.020717], - [-21.427034, 66.020717], - [-21.426398, 66.020964], - [-21.425536, 66.021298], - [-21.424173, 66.022184], - [-21.422879, 66.022683], - [-21.423271, 66.023576], - [-21.42107, 66.02575], - [-21.42127, 66.02628], - [-21.41741, 66.02665], - [-21.41661, 66.02739], - [-21.41533, 66.02747], - [-21.41477, 66.02719], - [-21.41482, 66.026011], - [-21.411618, 66.02579], - [-21.410664, 66.028364], - [-21.409234, 66.028142], - [-21.408485, 66.026316], - [-21.405487, 66.026648], - [-21.404261, 66.027395], - [-21.40123, 66.0285], - [-21.395541, 66.02734], - [-21.394383, 66.02817], - [-21.390909, 66.02817], - [-21.390024, 66.026758], - [-21.389887, 66.024572], - [-21.386345, 66.022938], - [-21.382871, 66.023132], - [-21.379669, 66.022385], - [-21.381236, 66.02125], - [-21.380623, 66.020198], - [-21.381124, 66.018394], - [-21.378852, 66.018537], - [-21.374219, 66.017069], - [-21.37155, 66.01728], - [-21.371835, 66.015546], - [-21.370514, 66.015294], - [-21.369655, 66.015131], - [-21.362979, 66.014134], - [-21.362775, 66.013248], - [-21.359709, 66.011697], - [-21.357546, 66.011238], - [-21.354464, 66.011226], - [-21.348061, 66.010007], - [-21.346834, 66.009149], - [-21.34411, 66.008789], - [-21.34039, 66.00716], - [-21.335322, 66.00624], - [-21.330962, 66.006185], - [-21.326943, 66.006794], - [-21.328169, 66.005382], - [-21.32633, 66.004717], - [-21.32448, 66.00503], - [-21.3247, 66.00401], - [-21.324014, 66.003609], - [-21.323537, 66.001586], - [-21.321561, 66.001143], - [-21.31914, 66.00073], - [-21.318339, 65.999336], - [-21.314854, 65.998962], - [-21.31707, 65.99732], - [-21.31383, 65.99489], - [-21.313206, 65.989716], - [-21.318948, 65.986852], - [-21.323885, 65.986816], - [-21.325519, 65.985873], - [-21.329743, 65.988229], - [-21.335193, 65.988784], - [-21.337577, 65.988257], - [-21.339212, 65.987037], - [-21.340643, 65.988202], - [-21.343231, 65.988507], - [-21.346228, 65.987925], - [-21.347717, 65.987498], - [-21.347909, 65.987693], - [-21.349016, 65.987534], - [-21.349141, 65.987161], - [-21.349498, 65.987093], - [-21.350158, 65.986942], - [-21.350306, 65.986468], - [-21.350262, 65.986953], - [-21.350404, 65.987095], - [-21.350564, 65.98723], - [-21.350651, 65.987233], - [-21.350741, 65.987009], - [-21.351121, 65.986758], - [-21.351498, 65.986128], - [-21.351816, 65.986453], - [-21.352085, 65.986463], - [-21.352141, 65.986717], - [-21.352515, 65.98674], - [-21.352579, 65.986397], - [-21.35273, 65.986375], - [-21.352948, 65.986737], - [-21.352928, 65.986898], - [-21.353574, 65.98699], - [-21.35424, 65.987569], - [-21.354249, 65.987783], - [-21.35492, 65.988006], - [-21.355176, 65.987778], - [-21.355225, 65.987659], - [-21.355428, 65.987592], - [-21.35566, 65.987587], - [-21.355489, 65.987771], - [-21.355428, 65.987776], - [-21.355111, 65.988056], - [-21.356095, 65.988152], - [-21.357128, 65.988178], - [-21.358239, 65.988069], - [-21.35914, 65.988182], - [-21.360763, 65.988325], - [-21.361119, 65.988224], - [-21.361659, 65.988175], - [-21.362352, 65.988254], - [-21.363107, 65.988345], - [-21.363604, 65.988322], - [-21.364454, 65.988298], - [-21.365273, 65.988324], - [-21.366067, 65.988253], - [-21.36655, 65.988092], - [-21.366518, 65.988267], - [-21.366647, 65.988458], - [-21.366983, 65.988636], - [-21.36753, 65.98872], - [-21.368317, 65.988731], - [-21.369318, 65.988686], - [-21.370551, 65.988569], - [-21.37395, 65.988264], - [-21.37484, 65.98816], - [-21.379476, 65.987902], - [-21.380005, 65.98783], - [-21.380794, 65.987726], - [-21.381067, 65.987648], - [-21.381251, 65.987529], - [-21.381685, 65.987355], - [-21.382319, 65.987199], - [-21.382653, 65.987051], - [-21.382887, 65.986897], - [-21.382957, 65.986765], - [-21.38306, 65.986616], - [-21.383316, 65.986636], - [-21.383675, 65.986664], - [-21.383951, 65.986752], - [-21.384207, 65.986818], - [-21.384682, 65.986827], - [-21.385142, 65.986892], - [-21.385451, 65.986997], - [-21.385696, 65.987153], - [-21.385935, 65.987224], - [-21.386377, 65.987282], - [-21.386779, 65.98728], - [-21.38779, 65.98722], - [-21.388736, 65.987144], - [-21.389607, 65.986966], - [-21.390038, 65.986964], - [-21.390285, 65.98707], - [-21.390547, 65.987211], - [-21.391139, 65.987335], - [-21.392299, 65.987385], - [-21.393605, 65.987304], - [-21.395062, 65.987144], - [-21.39585, 65.98713], - [-21.400702, 65.987016], - [-21.403114, 65.986806], - [-21.407997, 65.985957], - [-21.410435, 65.986254], - [-21.41313, 65.98584], - [-21.41693, 65.98572], - [-21.4177, 65.9851], - [-21.41932, 65.98491], - [-21.41974, 65.98441], - [-21.42099, 65.98445], - [-21.42186, 65.98333], - [-21.42428, 65.9838], - [-21.42417, 65.98431], - [-21.427018, 65.983509], - [-21.430863, 65.9828], - [-21.434356, 65.98289], - [-21.43665, 65.98194], - [-21.438227, 65.981525], - [-21.439515, 65.980801], - [-21.445102, 65.980354], - [-21.44725, 65.97951], - [-21.449857, 65.978964], - [-21.458005, 65.978145], - [-21.459333, 65.977731], - [-21.467377, 65.976653], - [-21.47038, 65.97444], - [-21.471634, 65.974494], - [-21.474327, 65.973044], - [-21.479349, 65.972688], - [-21.481417, 65.971772], - [-21.485168, 65.971922], - [-21.487897, 65.973023], - [-21.48876, 65.97382], - [-21.494094, 65.973736], - [-21.496909, 65.974641], - [-21.50005, 65.97397], - [-21.500815, 65.973222], - [-21.50274, 65.97317], - [-21.50585, 65.97342], - [-21.50567, 65.97417], - [-21.50985, 65.97522], - [-21.513314, 65.974844], - [-21.513492, 65.974093], - [-21.516256, 65.973464], - [-21.518931, 65.973665], - [-21.522487, 65.973284], - [-21.52604, 65.9731], - [-21.526718, 65.972618], - [-21.528944, 65.972556], - [-21.52995, 65.97247], - [-21.531087, 65.972085], - [-21.53345, 65.9708], - [-21.537181, 65.969196], - [-21.544108, 65.968396], - [-21.54722, 65.96822], - [-21.550193, 65.967242], - [-21.554356, 65.966749], - [-21.556115, 65.965855], - [-21.56095, 65.96575], - [-21.566722, 65.965011], - [-21.571666, 65.964921], - [-21.573453, 65.96448], - [-21.576539, 65.964066], - [-21.577642, 65.963463], - [-21.579491, 65.963544], - [-21.581852, 65.962655], - [-21.586259, 65.962317], - [-21.589079, 65.96233], - [-21.592918, 65.961887], - [-21.598688, 65.961963], - [-21.601305, 65.962316], - [-21.602613, 65.962175], - [-21.602247, 65.961689], - [-21.602377, 65.961358], - [-21.603587, 65.961191], - [-21.604233, 65.9611], - [-21.606149, 65.96105], - [-21.607085, 65.960603], - [-21.607539, 65.960243], - [-21.607835, 65.959863], - [-21.60806, 65.959188], - [-21.607305, 65.957051], - [-21.606661, 65.955425], - [-21.605056, 65.954631], - [-21.59983, 65.95443], - [-21.59994, 65.95392], - [-21.59739, 65.95409], - [-21.5975, 65.95358], - [-21.59324, 65.95292], - [-21.591006, 65.951221], - [-21.592077, 65.950651], - [-21.592585, 65.9471], - [-21.595254, 65.946824], - [-21.59722, 65.944599], - [-21.59637, 65.94405], - [-21.594962, 65.943164], - [-21.591864, 65.942132], - [-21.588971, 65.941418], - [-21.58752, 65.9413], - [-21.58221, 65.94266], - [-21.57851, 65.94239], - [-21.57693, 65.94388], - [-21.57568, 65.94384], - [-21.573861, 65.945499], - [-21.573773, 65.945828], - [-21.573367, 65.94631], - [-21.571724, 65.946146], - [-21.570598, 65.946169], - [-21.569828, 65.946321], - [-21.569093, 65.946667], - [-21.567671, 65.947071], - [-21.56607, 65.9472], - [-21.564096, 65.947128], - [-21.560962, 65.94664], - [-21.56017, 65.94585], - [-21.559491, 65.945495], - [-21.559618, 65.94542], - [-21.558758, 65.944972], - [-21.557131, 65.944676], - [-21.556651, 65.944682], - [-21.55612, 65.945006], - [-21.555627, 65.945045], - [-21.555603, 65.94495], - [-21.555969, 65.944874], - [-21.556195, 65.944742], - [-21.555897, 65.944719], - [-21.554982, 65.944543], - [-21.554399, 65.944598], - [-21.553854, 65.944501], - [-21.553305, 65.944771], - [-21.552292, 65.945201], - [-21.552677, 65.945419], - [-21.552756, 65.945545], - [-21.552718, 65.945588], - [-21.552497, 65.945584], - [-21.552078, 65.945352], - [-21.551723, 65.945347], - [-21.551056, 65.945423], - [-21.550476, 65.945655], - [-21.549785, 65.946049], - [-21.54511, 65.94865], - [-21.52292, 65.95248], - [-21.517251, 65.954246], - [-21.51367, 65.95458], - [-21.50902, 65.9557], - [-21.5078, 65.95553], - [-21.50769, 65.95603], - [-21.5059, 65.95559], - [-21.50398, 65.95577], - [-21.49847, 65.95506], - [-21.49402, 65.95529], - [-21.49413, 65.95477], - [-21.49175, 65.95418], - [-21.49164, 65.95469], - [-21.48499, 65.95342], - [-21.482464, 65.953917], - [-21.47561, 65.95321], - [-21.46991, 65.95339], - [-21.46844, 65.95437], - [-21.46255, 65.95544], - [-21.46035, 65.9569], - [-21.45853, 65.95657], - [-21.457705, 65.957748], - [-21.456201, 65.957472], - [-21.45599, 65.956612], - [-21.455076, 65.957214], - [-21.45326, 65.95767], - [-21.45315, 65.95817], - [-21.45049, 65.95886], - [-21.45065, 65.95808], - [-21.44878, 65.95802], - [-21.44861, 65.95878], - [-21.44607, 65.95894], - [-21.4459, 65.95971], - [-21.44102, 65.95902], - [-21.43814, 65.96071], - [-21.43558, 65.96087], - [-21.43474, 65.96187], - [-21.42974, 65.96169], - [-21.42963, 65.96221], - [-21.42444, 65.9629], - [-21.41923, 65.96374], - [-21.38642, 65.96421], - [-21.38545, 65.96289], - [-21.37501, 65.96174], - [-21.37455, 65.96095], - [-21.37092, 65.9603], - [-21.37171, 65.95957], - [-21.3699, 65.95924], - [-21.3695, 65.9582], - [-21.3703, 65.9584], - [-21.37106, 65.95826], - [-21.37672, 65.95257], - [-21.38589, 65.94944], - [-21.38847, 65.94915], - [-21.39068, 65.94769], - [-21.39823, 65.94617], - [-21.39872, 65.94542], - [-21.408264, 65.943811], - [-21.41279, 65.94427], - [-21.4277, 65.94226], - [-21.430339, 65.94223], - [-21.433798, 65.941229], - [-21.43554, 65.94086], - [-21.4374, 65.94093], - [-21.43818, 65.94032], - [-21.445188, 65.938783], - [-21.448552, 65.937338], - [-21.449986, 65.937027], - [-21.45162, 65.93632], - [-21.45286, 65.93636], - [-21.45329, 65.93586], - [-21.4549, 65.93567], - [-21.45512, 65.93465], - [-21.45637, 65.93469], - [-21.45556, 65.93261], - [-21.45318, 65.93201], - [-21.45334, 65.93125], - [-21.4485, 65.93043], - [-21.4323, 65.93267], - [-21.41086, 65.93304], - [-21.41097, 65.93253], - [-21.40772, 65.93305], - [-21.40026, 65.93265], - [-21.40072, 65.93344], - [-21.39942, 65.93365], - [-21.39959, 65.93289], - [-21.39896, 65.93286], - [-21.39846, 65.93327], - [-21.39879, 65.93363], - [-21.39327, 65.93304], - [-21.38562, 65.93353], - [-21.37313, 65.93602], - [-21.37364, 65.93565], - [-21.3671, 65.9349], - [-21.36452, 65.93519], - [-21.36372, 65.93593], - [-21.35803, 65.93611], - [-21.34764, 65.93765], - [-21.34775, 65.93714], - [-21.32353, 65.9415], - [-21.31681, 65.94061], - [-21.31471, 65.93874], - [-21.30446, 65.93682], - [-21.30134, 65.93388], - [-21.29953, 65.93356], - [-21.29996, 65.93306], - [-21.29919, 65.93226], - [-21.29562, 65.93136], - [-21.29528, 65.93006], - [-21.29341, 65.92999], - [-21.29297, 65.92921], - [-21.29058, 65.9286], - [-21.29064, 65.92835], - [-21.29183, 65.92865], - [-21.28888, 65.92495], - [-21.28702, 65.92488], - [-21.28813, 65.91569], - [-21.28734, 65.9136], - [-21.28593, 65.91291], - [-21.28672, 65.91076], - [-21.2854, 65.90968], - [-21.27931, 65.90881], - [-21.27736, 65.90913], - [-21.27892, 65.90636], - [-21.27844, 65.90429], - [-21.27968, 65.90434], - [-21.27979, 65.90289], - [-21.27946, 65.90254], - [-21.28065, 65.90284], - [-21.28031, 65.90154], - [-21.27788, 65.9012], - [-21.27861, 65.90071], - [-21.27737, 65.90066], - [-21.27785, 65.89991], - [-21.27672, 65.89935], - [-21.27692, 65.89705], - [-21.27927, 65.89637], - [-21.27964, 65.89331], - [-21.28087, 65.89335], - [-21.28471, 65.88606], - [-21.28632, 65.88586], - [-21.28796, 65.88412], - [-21.29051, 65.88396], - [-21.29467, 65.88219], - [-21.2978, 65.88218], - [-21.29792, 65.88167], - [-21.29916, 65.88172], - [-21.29928, 65.88121], - [-21.30089, 65.88102], - [-21.30131, 65.88051], - [-21.30292, 65.88032], - [-21.3034, 65.87957], - [-21.30465, 65.87962], - [-21.30507, 65.87912], - [-21.31157, 65.87808], - [-21.312, 65.87758], - [-21.31386, 65.87765], - [-21.3153, 65.87681], - [-21.31966, 65.87697], - [-21.321357, 65.876215], - [-21.322386, 65.874069], - [-21.32076, 65.87201], - [-21.3172, 65.8711], - [-21.31799, 65.87036], - [-21.31615, 65.87017], - [-21.3142, 65.87048], - [-21.31126, 65.87242], - [-21.30872, 65.87258], - [-21.31022, 65.87148], - [-21.31149, 65.87141], - [-21.30951, 65.86902], - [-21.3077, 65.8687], - [-21.30612, 65.86736], - [-21.28846, 65.86503], - [-21.28617, 65.86405], - [-21.28606, 65.86456], - [-21.28482, 65.86451], - [-21.28509, 65.86324], - [-21.28318, 65.86342], - [-21.28336, 65.86266], - [-21.28211, 65.8626], - [-21.28228, 65.86185], - [-21.28036, 65.86203], - [-21.27974, 65.85919], - [-21.27725, 65.8591], - [-21.27717, 65.85807], - [-21.28451, 65.85321], - [-21.28815, 65.85232], - [-21.28983, 65.84905], - [-21.28927, 65.84878], - [-21.289534, 65.848365], - [-21.29071, 65.84652], - [-21.29195, 65.84656], - [-21.29125, 65.84551], - [-21.29201, 65.84349], - [-21.29326, 65.84354], - [-21.29353, 65.84226], - [-21.29116, 65.84166], - [-21.29121, 65.8414], - [-21.29202, 65.8416], - [-21.29277, 65.84146], - [-21.2928, 65.83992], - [-21.29032, 65.83983], - [-21.29043, 65.83932], - [-21.29167, 65.83937], - [-21.29173, 65.83911], - [-21.28992, 65.83879], - [-21.2915, 65.83731], - [-21.289816, 65.836576], - [-21.2906, 65.83574], - [-21.29017, 65.835451], - [-21.289547, 65.835539], - [-21.289494, 65.835403], - [-21.289719, 65.835161], - [-21.287713, 65.834143], - [-21.28925, 65.83338], - [-21.288646, 65.833137], - [-21.287605, 65.833049], - [-21.287423, 65.831854], - [-21.290213, 65.831301], - [-21.291361, 65.83145], - [-21.29227, 65.83105], - [-21.29763, 65.83087], - [-21.3, 65.82865], - [-21.30229, 65.82822], - [-21.30472, 65.82575], - [-21.30596, 65.82579], - [-21.30923, 65.82232], - [-21.31047, 65.82237], - [-21.311357, 65.82095], - [-21.31532, 65.8146], - [-21.31407, 65.81455], - [-21.31388, 65.81403], - [-21.31478, 65.81278], - [-21.31636, 65.81271], - [-21.32059, 65.80915], - [-21.32315, 65.80745], - [-21.3244, 65.80749], - [-21.32555, 65.80651], - [-21.32541, 65.80574], - [-21.32668, 65.80566], - [-21.32952, 65.80127], - [-21.33138, 65.80134], - [-21.33183, 65.79931], - [-21.33345, 65.79911], - [-21.33355, 65.7986], - [-21.33935, 65.79779], - [-21.33952, 65.79703], - [-21.34377, 65.79616], - [-21.34437, 65.79489], - [-21.34743, 65.79374], - [-21.34867, 65.79377], - [-21.34884, 65.793], - [-21.35008, 65.79306], - [-21.35018, 65.79255], - [-21.35273, 65.79238], - [-21.35473, 65.79041], - [-21.35768, 65.78975], - [-21.35852, 65.78875], - [-21.36365, 65.78817], - [-21.36621, 65.78647], - [-21.36629, 65.78468], - [-21.367945, 65.784349], - [-21.36848, 65.78322], - [-21.37138, 65.78282], - [-21.37251, 65.78196], - [-21.37437, 65.78203], - [-21.37513, 65.78141], - [-21.37636, 65.78146], - [-21.37626, 65.78197], - [-21.38084, 65.78098], - [-21.38202, 65.78128], - [-21.38645, 65.78106], - [-21.38628, 65.78182], - [-21.38788, 65.78163], - [-21.38836, 65.78087], - [-21.39188, 65.7819], - [-21.39517, 65.78112], - [-21.39593, 65.78051], - [-21.40661, 65.78026], - [-21.413685, 65.779696], - [-21.413956, 65.778474], - [-21.420052, 65.777882], - [-21.421896, 65.778381], - [-21.423072, 65.777614], - [-21.424457, 65.777039], - [-21.426051, 65.77612], - [-21.427532, 65.775377], - [-21.426997, 65.774668], - [-21.428355, 65.774043], - [-21.431523, 65.774162], - [-21.430371, 65.775377], - [-21.43163, 65.7772], - [-21.43211, 65.77787], - [-21.43645, 65.77802], - [-21.43656, 65.77751], - [-21.43717, 65.77753], - [-21.43706, 65.77804], - [-21.44281, 65.77748], - [-21.44297, 65.77672], - [-21.44669, 65.77685], - [-21.44826, 65.77537], - [-21.4495, 65.77542], - [-21.450564, 65.773599], - [-21.452774, 65.771855], - [-21.454185, 65.771522], - [-21.456938, 65.77182], - [-21.4577, 65.771457], - [-21.458405, 65.771436], - [-21.459687, 65.771727], - [-21.460932, 65.771297], - [-21.461527, 65.77046], - [-21.463015, 65.770454], - [-21.463559, 65.77085], - [-21.46657, 65.770841], - [-21.46793, 65.770778], - [-21.469025, 65.770588], - [-21.46714, 65.76888], - [-21.465521, 65.767216], - [-21.467645, 65.766344], - [-21.46722, 65.765995], - [-21.46396, 65.7671], - [-21.462245, 65.766875], - [-21.463416, 65.766301], - [-21.4632, 65.765623], - [-21.46304, 65.76475], - [-21.46322, 65.76386], - [-21.462716, 65.762298], - [-21.45815, 65.763002], - [-21.457108, 65.762856], - [-21.45758, 65.761837], - [-21.45518, 65.76062], - [-21.45082, 65.76059], - [-21.45071, 65.7611], - [-21.45009, 65.76107], - [-21.4498, 65.75951], - [-21.44794, 65.75946], - [-21.44873, 65.75872], - [-21.44693, 65.75839], - [-21.44682, 65.7589], - [-21.445585, 65.759819], - [-21.441641, 65.760065], - [-21.440536, 65.759786], - [-21.436627, 65.759786], - [-21.436627, 65.759088], - [-21.42996, 65.75894], - [-21.42861, 65.75939], - [-21.4274, 65.75923], - [-21.42594, 65.76019], - [-21.42347, 65.76009], - [-21.42176, 65.76081], - [-21.42193, 65.76146], - [-21.42381, 65.7614], - [-21.4237, 65.76191], - [-21.42176, 65.76222], - [-21.41436, 65.76182], - [-21.4125, 65.76457], - [-21.41381, 65.76437], - [-21.41078, 65.76682], - [-21.40954, 65.76677], - [-21.40943, 65.76728], - [-21.40762, 65.76696], - [-21.40903, 65.76624], - [-21.40717, 65.76617], - [-21.4064, 65.76691], - [-21.40447, 65.7671], - [-21.40341, 65.76911], - [-21.40031, 65.769], - [-21.4016, 65.76597], - [-21.40517, 65.76533], - [-21.40509, 65.7643], - [-21.40322, 65.76423], - [-21.40339, 65.76347], - [-21.40158, 65.76315], - [-21.40027, 65.76053], - [-21.39775, 65.7607], - [-21.39865, 65.75945], - [-21.39741, 65.7594], - [-21.3973, 65.75991], - [-21.396, 65.76012], - [-21.39635, 65.75859], - [-21.39572, 65.75857], - [-21.39561, 65.75907], - [-21.39437, 65.75903], - [-21.39532, 65.75753], - [-21.39433, 65.75732], - [-21.39279, 65.75769], - [-21.3929, 65.75718], - [-21.39395, 65.75714], - [-21.39514, 65.75547], - [-21.39638, 65.75552], - [-21.39644, 65.75526], - [-21.39458, 65.75519], - [-21.39626, 65.7532], - [-21.39511, 65.75278], - [-21.3926, 65.75281], - [-21.39215, 65.75203], - [-21.39153, 65.752], - [-21.39075, 65.75274], - [-21.38883, 65.75293], - [-21.38894, 65.75242], - [-21.38773, 65.75225], - [-21.38641, 65.75259], - [-21.38596, 65.75179], - [-21.38399, 65.75223], - [-21.38433, 65.75071], - [-21.3807, 65.75019], - [-21.37746, 65.75072], - [-21.37757, 65.75021], - [-21.37572, 65.75014], - [-21.3749, 65.7496], - [-21.37532, 65.7491], - [-21.36975, 65.74888], - [-21.36964, 65.7494], - [-21.36582, 65.74977], - [-21.36796, 65.74857], - [-21.36443, 65.74754], - [-21.35754, 65.74767], - [-21.35664, 65.7461], - [-21.3554, 65.74605], - [-21.35551, 65.74553], - [-21.34874, 65.74516], - [-21.34114, 65.74565], - [-21.33819, 65.7449], - [-21.33802, 65.74566], - [-21.33678, 65.74562], - [-21.33773, 65.74129], - [-21.33649, 65.74125], - [-21.336624, 65.74074], - [-21.338202, 65.740516], - [-21.338696, 65.74005], - [-21.338513, 65.739698], - [-21.339408, 65.739735], - [-21.34003, 65.739472], - [-21.340578, 65.738759], - [-21.340377, 65.737776], - [-21.341546, 65.736387], - [-21.340687, 65.735936], - [-21.341546, 65.735508], - [-21.341528, 65.735163], - [-21.340706, 65.734675], - [-21.341199, 65.734397], - [-21.342971, 65.734457], - [-21.34383, 65.734029], - [-21.346059, 65.734442], - [-21.347301, 65.73475], - [-21.348087, 65.734525], - [-21.348361, 65.734262], - [-21.349256, 65.734314], - [-21.349439, 65.733849], - [-21.350152, 65.733871], - [-21.350681, 65.733714], - [-21.350589, 65.733507], - [-21.350572, 65.733113], - [-21.351851, 65.73306], - [-21.352417, 65.732632], - [-21.352125, 65.732257], - [-21.352892, 65.732152], - [-21.353331, 65.731806], - [-21.352783, 65.731514], - [-21.353568, 65.731138], - [-21.35397, 65.731266], - [-21.354756, 65.731161], - [-21.354975, 65.730958], - [-21.354719, 65.730777], - [-21.355533, 65.730775], - [-21.355925, 65.73094], - [-21.356912, 65.73086], - [-21.357332, 65.730515], - [-21.357222, 65.730034], - [-21.356181, 65.729884], - [-21.356912, 65.729629], - [-21.356711, 65.729321], - [-21.356309, 65.729231], - [-21.357076, 65.728915], - [-21.359104, 65.728742], - [-21.36042, 65.727901], - [-21.361461, 65.727826], - [-21.362612, 65.727323], - [-21.362137, 65.727037], - [-21.362375, 65.726797], - [-21.36369, 65.726639], - [-21.364421, 65.726106], - [-21.368741, 65.725437], - [-21.370615, 65.724852], - [-21.370779, 65.725167], - [-21.37109, 65.725355], - [-21.37204, 65.725355], - [-21.372369, 65.725528], - [-21.374178, 65.725565], - [-21.374872, 65.725322], - [-21.376059, 65.725295], - [-21.376447, 65.725369], - [-21.376918, 65.72546], - [-21.377978, 65.725167], - [-21.380463, 65.725145], - [-21.381614, 65.724671], - [-21.381778, 65.72389], - [-21.383002, 65.723522], - [-21.383642, 65.723582], - [-21.38419, 65.723447], - [-21.384537, 65.722808], - [-21.384153, 65.722591], - [-21.384208, 65.722102], - [-21.38673, 65.721299], - [-21.386693, 65.720983], - [-21.387552, 65.72084], - [-21.388191, 65.719368], - [-21.387954, 65.718902], - [-21.388921, 65.718255], - [-21.388368, 65.717243], - [-21.389152, 65.716239], - [-21.390115, 65.715748], - [-21.389855, 65.715337], - [-21.391237, 65.714906], - [-21.391398, 65.714503], - [-21.392734, 65.714488], - [-21.39432, 65.71399], - [-21.394285, 65.71363], - [-21.396191, 65.713352], - [-21.396868, 65.713073], - [-21.396779, 65.712707], - [-21.397385, 65.712538], - [-21.399095, 65.711908], - [-21.400913, 65.711131], - [-21.404138, 65.708294], - [-21.404619, 65.707217], - [-21.407162, 65.706354], - [-21.409188, 65.704761], - [-21.40911, 65.704233], - [-21.410286, 65.703962], - [-21.411195, 65.702972], - [-21.413615, 65.70276], - [-21.413969, 65.70264], - [-21.414092, 65.702614], - [-21.414455, 65.702537], - [-21.415031, 65.702528], - [-21.415382, 65.702473], - [-21.416166, 65.702444], - [-21.419213, 65.702011], - [-21.419231, 65.702231], - [-21.420568, 65.702451], - [-21.422759, 65.702055], - [-21.424523, 65.701528], - [-21.425379, 65.701132], - [-21.429548, 65.695903], - [-21.428925, 65.6955], - [-21.428016, 65.69561], - [-21.428764, 65.695089], - [-21.430849, 65.694634], - [-21.432809, 65.694245], - [-21.433718, 65.693761], - [-21.43436, 65.692852], - [-21.433885, 65.69174], - [-21.432489, 65.691495], - [-21.432293, 65.690475], - [-21.433035, 65.68991], - [-21.434805, 65.689411], - [-21.435779, 65.689156], - [-21.437236, 65.688618], - [-21.4375, 65.688547], - [-21.437846, 65.688612], - [-21.438323, 65.688592], - [-21.439951, 65.688273], - [-21.441007, 65.688229], - [-21.441825, 65.68826], - [-21.442197, 65.688185], - [-21.443592, 65.687911], - [-21.443843, 65.687911], - [-21.44425, 65.687919], - [-21.44448, 65.688166], - [-21.446608, 65.688351], - [-21.452079, 65.687514], - [-21.455558, 65.688026], - [-21.45977, 65.687805], - [-21.461676, 65.687387], - [-21.465632, 65.68749], - [-21.467147, 65.68713], - [-21.467521, 65.687548], - [-21.46982, 65.68804], - [-21.470123, 65.688531], - [-21.474649, 65.689654], - [-21.477268, 65.689712], - [-21.478711, 65.689998], - [-21.480725, 65.690175], - [-21.484324, 65.689228], - [-21.484716, 65.688839], - [-21.487247, 65.6887], - [-21.48782, 65.689121], - [-21.488939, 65.689382], - [-21.490044, 65.68928], - [-21.490597, 65.690013], - [-21.492682, 65.69038], - [-21.495604, 65.690468], - [-21.498758, 65.690204], - [-21.499194, 65.689987], - [-21.499456, 65.690094], - [-21.499516, 65.690119], - [-21.499733, 65.690166], - [-21.499897, 65.690263], - [-21.499867, 65.690381], - [-21.499771, 65.690566], - [-21.499857, 65.690662], - [-21.500066, 65.690838], - [-21.501342, 65.691209], - [-21.502054, 65.691091], - [-21.503943, 65.691267], - [-21.504674, 65.690937], - [-21.508184, 65.690306], - [-21.510394, 65.690395], - [-21.509093, 65.690945], - [-21.509414, 65.691209], - [-21.510412, 65.691524], - [-21.511712, 65.691693], - [-21.513245, 65.691099], - [-21.519286, 65.690145], - [-21.520479, 65.690285], - [-21.521673, 65.690248], - [-21.522867, 65.690527], - [-21.523325, 65.69114], - [-21.524161, 65.691445], - [-21.525524, 65.691396], - [-21.525832, 65.69171], - [-21.52636, 65.691861], - [-21.527269, 65.691916], - [-21.528252, 65.691535], - [-21.530108, 65.691747], - [-21.530832, 65.691553], - [-21.532195, 65.691874], - [-21.533384, 65.691771], - [-21.533574, 65.692103], - [-21.535334, 65.692954], - [-21.537211, 65.693485], - [-21.539176, 65.693141], - [-21.539542, 65.693581], - [-21.542753, 65.693286], - [-21.546623, 65.692612], - [-21.547387, 65.692151], - [-21.547475, 65.691891], - [-21.548501, 65.691415], - [-21.54966, 65.691728], - [-21.549308, 65.692483], - [-21.551097, 65.69296], - [-21.553032, 65.693014], - [-21.555334, 65.692342], - [-21.557065, 65.692374], - [-21.558062, 65.692712], - [-21.558663, 65.692712], - [-21.558472, 65.692972], - [-21.559352, 65.693841], - [-21.560071, 65.694958], - [-21.560423, 65.69853], - [-21.561112, 65.69923], - [-21.562534, 65.69987], - [-21.563854, 65.700135], - [-21.564499, 65.700093], - [-21.565131, 65.699425], - [-21.565892, 65.699369], - [-21.566435, 65.698639], - [-21.568458, 65.697969], - [-21.567233, 65.69883], - [-21.567285, 65.699767], - [-21.568326, 65.699689], - [-21.568913, 65.699001], - [-21.569646, 65.698826], - [-21.570247, 65.698458], - [-21.570951, 65.69818], - [-21.571479, 65.698108], - [-21.573326, 65.696605], - [-21.572183, 65.696611], - [-21.572725, 65.696219], - [-21.573664, 65.696466], - [-21.57539, 65.69542], - [-21.575159, 65.695114], - [-21.576831, 65.694209], - [-21.577857, 65.694402], - [-21.578517, 65.694263], - [-21.578796, 65.693799], - [-21.58057, 65.693032], - [-21.581435, 65.69293], - [-21.583019, 65.692091], - [-21.583488, 65.692362], - [-21.582821, 65.693338], - [-21.582872, 65.695193], - [-21.584235, 65.695704], - [-21.585072, 65.695676], - [-21.585599, 65.696726], - [-21.5873, 65.6971], - [-21.587374, 65.697565], - [-21.587822, 65.697681], - [-21.588239, 65.698144], - [-21.589573, 65.698228], - [-21.590292, 65.69818], - [-21.590409, 65.698343], - [-21.591142, 65.698355], - [-21.592154, 65.698066], - [-21.592535, 65.698246], - [-21.593268, 65.698464], - [-21.594075, 65.698434], - [-21.594925, 65.698892], - [-21.595556, 65.698946], - [-21.595952, 65.698832], - [-21.596465, 65.698904], - [-21.597183, 65.70069], - [-21.596919, 65.702434], - [-21.596157, 65.703418], - [-21.595644, 65.703581], - [-21.595996, 65.704021], - [-21.595688, 65.704449], - [-21.596142, 65.70466], - [-21.596567, 65.704624], - [-21.597535, 65.704238], - [-21.598136, 65.703828], - [-21.598972, 65.703562], - [-21.59821, 65.704715], - [-21.596919, 65.70527], - [-21.597301, 65.706494], - [-21.598547, 65.70708], - [-21.59865, 65.708002], - [-21.599837, 65.708533], - [-21.600688, 65.708533], - [-21.601318, 65.70901], - [-21.60299, 65.709505], - [-21.603914, 65.709426], - [-21.60497, 65.708714], - [-21.605336, 65.708732], - [-21.605263, 65.709119], - [-21.604559, 65.709306], - [-21.604104, 65.709565], - [-21.603708, 65.709728], - [-21.603928, 65.710114], - [-21.604984, 65.710488], - [-21.605408, 65.710376], - [-21.606113, 65.710464], - [-21.606171, 65.710831], - [-21.607756, 65.711157], - [-21.608632, 65.711152], - [-21.609486, 65.711736], - [-21.610219, 65.711664], - [-21.611275, 65.711127], - [-21.612257, 65.711049], - [-21.612917, 65.711935], - [-21.612574, 65.71228], - [-21.610929, 65.712627], - [-21.611031, 65.712897], - [-21.611965, 65.713449], - [-21.613176, 65.713209], - [-21.613935, 65.713257], - [-21.613381, 65.713845], - [-21.611936, 65.714913], - [-21.611309, 65.715033], - [-21.611309, 65.715471], - [-21.612158, 65.715818], - [-21.613371, 65.715812], - [-21.613921, 65.716148], - [-21.615409, 65.716078], - [-21.615118, 65.71657], - [-21.616218, 65.716956], - [-21.618187, 65.717607], - [-21.620182, 65.719177], - [-21.621103, 65.719077], - [-21.622268, 65.719676], - [-21.623853, 65.720041], - [-21.624451, 65.719849], - [-21.624839, 65.720367], - [-21.624742, 65.721006], - [-21.62526, 65.721904], - [-21.626004, 65.722568], - [-21.626893, 65.722568], - [-21.626806, 65.722956], - [-21.627168, 65.72312], - [-21.62868, 65.72312], - [-21.629319, 65.722755], - [-21.629416, 65.721943], - [-21.630548, 65.721697], - [-21.630953, 65.722309], - [-21.630435, 65.723154], - [-21.629675, 65.72344], - [-21.62982, 65.723745], - [-21.630322, 65.723998], - [-21.63092, 65.723991], - [-21.631163, 65.724171], - [-21.633427, 65.72453], - [-21.63582, 65.725221], - [-21.637454, 65.725846], - [-21.638845, 65.726126], - [-21.641723, 65.726378], - [-21.643308, 65.726824], - [-21.644279, 65.727422], - [-21.6452, 65.727522], - [-21.64479, 65.72803], - [-21.645346, 65.729004], - [-21.645459, 65.730055], - [-21.644926, 65.731577], - [-21.644845, 65.732122], - [-21.645228, 65.732827], - [-21.64575, 65.733584], - [-21.645944, 65.734568], - [-21.646349, 65.735352], - [-21.648047, 65.736721], - [-21.649201, 65.737747], - [-21.649745, 65.738223], - [-21.650651, 65.738748], - [-21.65306, 65.739946], - [-21.65439, 65.74118], - [-21.655876, 65.742046], - [-21.657452, 65.742489], - [-21.657385, 65.743089], - [-21.658473, 65.743968], - [-21.657855, 65.74628], - [-21.65837, 65.747337], - [-21.659024, 65.747865], - [-21.660674, 65.748443], - [-21.661893, 65.749044], - [-21.663282, 65.749868], - [-21.664424, 65.752776], - [-21.665211, 65.752974], - [-21.66549, 65.754641], - [-21.667267, 65.755517], - [-21.667876, 65.757747], - [-21.668891, 65.758862], - [-21.671709, 65.760269], - [-21.673764, 65.761082], - [-21.676353, 65.762217], - [-21.682165, 65.763082], - [-21.683713, 65.762748], - [-21.685389, 65.76281], - [-21.687077, 65.764075], - [-21.688869, 65.764435], - [-21.691155, 65.764656], - [-21.693389, 65.765041], - [-21.695527, 65.765871], - [-21.696629, 65.766174], - [-21.697419, 65.766154], - [-21.698673, 65.766692], - [-21.699579, 65.767253], - [-21.700494, 65.767723], - [-21.701093, 65.768491], - [-21.702831, 65.769316], - [-21.705977, 65.770141], - [-21.707311, 65.770615], - [-21.710446, 65.770505], - [-21.714397, 65.76886], - [-21.713824, 65.769758], - [-21.714849, 65.770415], - [-21.716152, 65.770621], - [-21.715922, 65.771283], - [-21.714916, 65.771273], - [-21.714663, 65.771783], - [-21.715675, 65.772163], - [-21.717011, 65.773481], - [-21.717941, 65.774384], - [-21.718825, 65.774734], - [-21.718941, 65.774914], - [-21.719855, 65.775137], - [-21.719553, 65.774868], - [-21.719925, 65.774967], - [-21.720368, 65.775152], - [-21.720754, 65.775227], - [-21.72076, 65.775331], - [-21.721491, 65.7746], - [-21.723553, 65.77359], - [-21.726728, 65.774053], - [-21.725784, 65.775465], - [-21.728013, 65.775169], - [-21.729899, 65.774063], - [-21.729463, 65.772432], - [-21.725421, 65.771694], - [-21.722878, 65.770751], - [-21.717198, 65.770075], - [-21.717823, 65.769834], - [-21.720544, 65.770208], - [-21.72591, 65.770389], - [-21.728097, 65.770005], - [-21.729448, 65.76958], - [-21.7311, 65.770222], - [-21.740234, 65.772683], - [-21.742186, 65.772925], - [-21.74694, 65.772133], - [-21.747486, 65.771802], - [-21.751999, 65.771347], - [-21.753581, 65.771191], - [-21.754578, 65.771134], - [-21.755856, 65.770924], - [-21.756941, 65.770903], - [-21.757702, 65.770996], - [-21.758644, 65.771208], - [-21.759674, 65.771367], - [-21.761068, 65.771495], - [-21.762188, 65.771539], - [-21.763069, 65.77158], - [-21.763758, 65.771544], - [-21.764848, 65.771441], - [-21.765519, 65.77138], - [-21.766201, 65.77139], - [-21.768359, 65.771274], - [-21.769834, 65.771072], - [-21.772209, 65.77106], - [-21.774223, 65.770679], - [-21.775788, 65.770227], - [-21.777493, 65.769568], - [-21.778781, 65.768906], - [-21.77812, 65.768487], - [-21.777129, 65.767858], - [-21.778699, 65.766695], - [-21.780747, 65.766274], - [-21.780849, 65.76589], - [-21.780764, 65.765309], - [-21.780605, 65.764663], - [-21.780488, 65.764205], - [-21.779137, 65.764635], - [-21.778023, 65.764541], - [-21.773212, 65.76484], - [-21.772088, 65.765456], - [-21.76972, 65.765262], - [-21.76878, 65.76491], - [-21.767159, 65.763932], - [-21.764974, 65.763429], - [-21.758803, 65.763227], - [-21.755952, 65.762601], - [-21.752797, 65.761822], - [-21.750969, 65.761306], - [-21.748728, 65.760972], - [-21.747843, 65.761089], - [-21.745138, 65.760198], - [-21.742656, 65.759492], - [-21.740825, 65.759183], - [-21.7404, 65.759496], - [-21.739084, 65.759729], - [-21.738705, 65.759581], - [-21.739235, 65.759232], - [-21.736649, 65.758302], - [-21.735927, 65.758517], - [-21.735307, 65.758479], - [-21.735619, 65.757719], - [-21.734217, 65.756676], - [-21.733848, 65.756221], - [-21.733081, 65.755836], - [-21.733365, 65.755574], - [-21.733042, 65.755001], - [-21.732516, 65.754677], - [-21.729507, 65.754157], - [-21.728351, 65.754122], - [-21.727001, 65.753643], - [-21.724757, 65.752961], - [-21.722257, 65.752576], - [-21.718478, 65.752727], - [-21.715481, 65.752459], - [-21.715154, 65.752121], - [-21.713421, 65.751736], - [-21.712483, 65.751736], - [-21.707838, 65.751018], - [-21.703781, 65.750021], - [-21.701901, 65.748789], - [-21.69813, 65.747453], - [-21.697014, 65.74652], - [-21.697284, 65.74607], - [-21.696844, 65.745656], - [-21.696929, 65.744909], - [-21.696186, 65.744244], - [-21.696588, 65.743853], - [-21.696233, 65.743538], - [-21.694869, 65.743135], - [-21.692909, 65.742785], - [-21.690437, 65.742621], - [-21.689287, 65.742394], - [-21.688392, 65.741904], - [-21.687269, 65.74153], - [-21.685678, 65.740631], - [-21.684031, 65.740462], - [-21.682127, 65.7401], - [-21.680955, 65.739142], - [-21.68146, 65.73804], - [-21.680408, 65.73644], - [-21.681232, 65.735635], - [-21.681545, 65.734905], - [-21.683733, 65.733167], - [-21.684072, 65.73254], - [-21.684825, 65.732287], - [-21.68597, 65.731481], - [-21.684772, 65.731673], - [-21.68366, 65.73187], - [-21.68396, 65.73146], - [-21.683097, 65.731629], - [-21.68173, 65.732039], - [-21.680882, 65.732048], - [-21.680299, 65.732222], - [-21.678633, 65.733191], - [-21.677129, 65.732405], - [-21.677362, 65.731586], - [-21.6782, 65.730475], - [-21.678698, 65.730279], - [-21.678952, 65.729895], - [-21.678454, 65.729285], - [-21.677744, 65.728723], - [-21.677892, 65.728218], - [-21.677483, 65.727714], - [-21.676938, 65.727464], - [-21.676991, 65.726688], - [-21.676588, 65.726544], - [-21.676906, 65.726034], - [-21.674437, 65.72508], - [-21.673801, 65.724566], - [-21.673267, 65.724481], - [-21.672825, 65.723925], - [-21.671602, 65.723544], - [-21.669299, 65.721835], - [-21.668524, 65.721598], - [-21.668405, 65.720473], - [-21.667546, 65.719784], - [-21.666091, 65.719281], - [-21.665992, 65.71878], - [-21.665293, 65.718289], - [-21.664278, 65.717803], - [-21.663689, 65.71693], - [-21.665168, 65.716206], - [-21.663843, 65.715074], - [-21.66278, 65.714548], - [-21.661949, 65.713196], - [-21.662932, 65.710085], - [-21.662557, 65.709833], - [-21.662929, 65.709572], - [-21.663525, 65.709454], - [-21.664011, 65.708341], - [-21.66452, 65.70795], - [-21.664354, 65.707652], - [-21.664065, 65.707427], - [-21.662846, 65.706971], - [-21.662436, 65.706917], - [-21.662085, 65.70687], - [-21.661949, 65.706747], - [-21.662082, 65.706472], - [-21.662366, 65.706147], - [-21.663194, 65.705593], - [-21.663323, 65.705565], - [-21.663471, 65.70558], - [-21.663645, 65.705615], - [-21.664351, 65.705759], - [-21.664617, 65.705821], - [-21.667356, 65.70627], - [-21.668674, 65.705863], - [-21.669244, 65.705667], - [-21.669953, 65.70565], - [-21.670702, 65.705365], - [-21.670231, 65.705144], - [-21.670616, 65.705002], - [-21.670813, 65.70507], - [-21.671092, 65.704987], - [-21.67194, 65.705169], - [-21.672359, 65.705367], - [-21.67319, 65.70518], - [-21.673769, 65.704943], - [-21.673929, 65.704793], - [-21.674336, 65.704531], - [-21.674621, 65.704509], - [-21.674866, 65.704562], - [-21.675047, 65.704642], - [-21.675733, 65.704473], - [-21.676573, 65.704113], - [-21.67913, 65.70248], - [-21.680373, 65.701414], - [-21.679696, 65.700989], - [-21.680165, 65.699753], - [-21.681605, 65.698815], - [-21.679985, 65.698288], - [-21.679046, 65.698914], - [-21.678035, 65.699051], - [-21.678628, 65.697959], - [-21.681021, 65.696713], - [-21.680305, 65.698019], - [-21.683402, 65.698764], - [-21.684541, 65.698612], - [-21.684875, 65.698278], - [-21.685581, 65.698483], - [-21.687307, 65.698492], - [-21.687787, 65.698985], - [-21.688184, 65.699332], - [-21.688456, 65.699566], - [-21.688808, 65.699619], - [-21.689338, 65.699588], - [-21.689858, 65.699555], - [-21.69058, 65.699272], - [-21.69067, 65.69887], - [-21.691242, 65.698634], - [-21.692121, 65.698164], - [-21.693428, 65.697732], - [-21.694349, 65.697256], - [-21.695037, 65.696809], - [-21.695412, 65.696384], - [-21.695721, 65.696016], - [-21.69627, 65.694949], - [-21.696427, 65.694146], - [-21.696235, 65.693916], - [-21.695886, 65.693722], - [-21.695712, 65.692908], - [-21.695283, 65.692426], - [-21.695609, 65.692113], - [-21.696025, 65.691841], - [-21.695953, 65.691653], - [-21.695404, 65.691188], - [-21.69472, 65.690851], - [-21.693884, 65.690665], - [-21.691693, 65.691579], - [-21.69236, 65.69059], - [-21.690853, 65.691238], - [-21.689211, 65.690912], - [-21.688999, 65.690542], - [-21.689948, 65.690275], - [-21.688971, 65.690074], - [-21.687449, 65.690293], - [-21.686582, 65.691071], - [-21.685413, 65.69126], - [-21.686131, 65.690363], - [-21.685224, 65.689993], - [-21.683486, 65.690262], - [-21.683098, 65.690002], - [-21.684187, 65.689377], - [-21.681665, 65.688331], - [-21.679408, 65.687777], - [-21.676961, 65.688552], - [-21.677709, 65.687863], - [-21.676756, 65.687146], - [-21.674788, 65.686511], - [-21.672799, 65.686541], - [-21.670938, 65.686272], - [-21.67167, 65.68538], - [-21.670892, 65.685457], - [-21.669101, 65.685936], - [-21.66885, 65.684712], - [-21.670017, 65.684509], - [-21.670258, 65.683513], - [-21.669189, 65.68238], - [-21.668064, 65.682308], - [-21.66813, 65.68141], - [-21.667659, 65.681016], - [-21.666024, 65.681065], - [-21.66769, 65.679144], - [-21.666151, 65.679438], - [-21.663588, 65.679227], - [-21.662049, 65.678801], - [-21.663, 65.67764], - [-21.664525, 65.676535], - [-21.665739, 65.676215], - [-21.66612, 65.67422], - [-21.664304, 65.67378], - [-21.662856, 65.673282], - [-21.661783, 65.67408], - [-21.660589, 65.674304], - [-21.661211, 65.673368], - [-21.66218, 65.673278], - [-21.662601, 65.672302], - [-21.66066, 65.67243], - [-21.660844, 65.671399], - [-21.661963, 65.671332], - [-21.661484, 65.67008], - [-21.659802, 65.67004], - [-21.661678, 65.668564], - [-21.663218, 65.667947], - [-21.662522, 65.667352], - [-21.66415, 65.667357], - [-21.665238, 65.666386], - [-21.666931, 65.665046], - [-21.667279, 65.664441], - [-21.667052, 65.664249], - [-21.665815, 65.664755], - [-21.66384, 65.66481], - [-21.66399, 65.66383], - [-21.66322, 65.66303], - [-21.662464, 65.662433], - [-21.66209, 65.66248], - [-21.662195, 65.662273], - [-21.661448, 65.661939], - [-21.660798, 65.662207], - [-21.661208, 65.661859], - [-21.660942, 65.66166], - [-21.661168, 65.661537], - [-21.661848, 65.66173], - [-21.662759, 65.661706], - [-21.663363, 65.661293], - [-21.663208, 65.661031], - [-21.662928, 65.660929], - [-21.661447, 65.661203], - [-21.660488, 65.661789], - [-21.659337, 65.662223], - [-21.656638, 65.662071], - [-21.656465, 65.661452], - [-21.655545, 65.659845], - [-21.657689, 65.659121], - [-21.659181, 65.658498], - [-21.660027, 65.657981], - [-21.659497, 65.657763], - [-21.6582, 65.658434], - [-21.657076, 65.658519], - [-21.657885, 65.657868], - [-21.658522, 65.657617], - [-21.658656, 65.657401], - [-21.657348, 65.656885], - [-21.655759, 65.657508], - [-21.655027, 65.657824], - [-21.654954, 65.656928], - [-21.654057, 65.656917], - [-21.653548, 65.657689], - [-21.654084, 65.658113], - [-21.654244, 65.659255], - [-21.652987, 65.660134], - [-21.650302, 65.661005], - [-21.648278, 65.661674], - [-21.647185, 65.661851], - [-21.649508, 65.659678], - [-21.653102, 65.657289], - [-21.653777, 65.656519], - [-21.653318, 65.656388], - [-21.652021, 65.657361], - [-21.649805, 65.658344], - [-21.647221, 65.659668], - [-21.649121, 65.658236], - [-21.651142, 65.657177], - [-21.652727, 65.655344], - [-21.653094, 65.655345], - [-21.650545, 65.654383], - [-21.649451, 65.655476], - [-21.645177, 65.657589], - [-21.644662, 65.657184], - [-21.646102, 65.65635], - [-21.647683, 65.655675], - [-21.646925, 65.65538], - [-21.645579, 65.655418], - [-21.646713, 65.654809], - [-21.647957, 65.653953], - [-21.6485, 65.654153], - [-21.649026, 65.653839], - [-21.646168, 65.652797], - [-21.64454, 65.65417], - [-21.64331, 65.65413], - [-21.64248, 65.65512], - [-21.63996, 65.65529], - [-21.63986, 65.6558], - [-21.6387, 65.65537], - [-21.63677, 65.65569], - [-21.63853, 65.65319], - [-21.63977, 65.65323], - [-21.63987, 65.65272], - [-21.63746, 65.65238], - [-21.63962, 65.65092], - [-21.63839, 65.65087], - [-21.6402, 65.64812], - [-21.64205, 65.64818], - [-21.64114, 65.64661], - [-21.6399, 65.64657], - [-21.63786, 65.64445], - [-21.63421, 65.64406], - [-21.63401, 65.64354], - [-21.6356, 65.64334], - [-21.63804, 65.642259], - [-21.63571, 65.64283], - [-21.63507, 65.64294], - [-21.63257, 65.64298], - [-21.6318, 65.64372], - [-21.6292, 65.64427], - [-21.62148, 65.64553], - [-21.61843, 65.6453], - [-21.61765, 65.64604], - [-21.61159, 65.64531], - [-21.61169, 65.6448], - [-21.60759, 65.64363], - [-21.6077, 65.64312], - [-21.6059, 65.6428], - [-21.60545, 65.64202], - [-21.60365, 65.64169], - [-21.60375, 65.64119], - [-21.60011, 65.6408], - [-21.60088, 65.64006], - [-21.59991, 65.64028], - [-21.59942, 65.64009], - [-21.59158, 65.63998], - [-21.59081, 65.64072], - [-21.58896, 65.64066], - [-21.58885, 65.64117], - [-21.58694, 65.64136], - [-21.58674, 65.64238], - [-21.57922, 65.64262], - [-21.58155, 65.6404], - [-21.57733, 65.63986], - [-21.5754, 65.64018], - [-21.5758, 65.64122], - [-21.5729, 65.64021], - [-21.56599, 65.64061], - [-21.5662, 65.63959], - [-21.56374, 65.6395], - [-21.56384, 65.63899], - [-21.56076, 65.63888], - [-21.56127, 65.63941], - [-21.55752, 65.63954], - [-21.55741, 65.64004], - [-21.55681, 65.64002], - [-21.55696, 65.63926], - [-21.55099, 65.63815], - [-21.54838, 65.63869], - [-21.5476, 65.63944], - [-21.54514, 65.63935], - [-21.54369, 65.64032], - [-21.54123, 65.64023], - [-21.54045, 65.64097], - [-21.53854, 65.64116], - [-21.53927, 65.64068], - [-21.53694, 65.63995], - [-21.52678, 65.641], - [-21.52689, 65.64049], - [-21.52509, 65.64017], - [-21.5252, 65.63966], - [-21.523433, 65.639459], - [-21.51853, 65.6389], - [-21.51863, 65.63839], - [-21.51488, 65.63851], - [-21.51477, 65.63902], - [-21.51097, 65.6394], - [-21.51081, 65.64016], - [-21.50839, 65.63982], - [-21.50829, 65.64033], - [-21.50705, 65.64028], - [-21.50695, 65.64079], - [-21.50571, 65.64075], - [-21.50556, 65.64151], - [-21.50435, 65.64134], - [-21.49922, 65.64205], - [-21.497, 65.64377], - [-21.49576, 65.64372], - [-21.49493, 65.64472], - [-21.49308, 65.64465], - [-21.49292, 65.64541], - [-21.48326, 65.64699], - [-21.479275, 65.645941], - [-21.47782, 65.64628], - [-21.47528, 65.64657], - [-21.47611, 65.64557], - [-21.475981, 65.645309], - [-21.474436, 65.644848], - [-21.473868, 65.645078], - [-21.473117, 65.645114], - [-21.473546, 65.644424], - [-21.47317, 65.643862], - [-21.472129, 65.643477], - [-21.471325, 65.643322], - [-21.470788, 65.642667], - [-21.469211, 65.642406], - [-21.467602, 65.642826], - [-21.4655, 65.64289], - [-21.46561, 65.64237], - [-21.45698, 65.64205], - [-21.45994, 65.63985], - [-21.45549, 65.64033], - [-21.44994, 65.64013], - [-21.44826, 65.6393], - [-21.43811, 65.63739], - [-21.4276, 65.63713], - [-21.42777, 65.63637], - [-21.41866, 65.63539], - [-21.40868, 65.63272], - [-21.40076, 65.63204], - [-21.39842, 65.6299], - [-21.39962, 65.62866], - [-21.39839, 65.62862], - [-21.39361, 65.62203], - [-21.391815, 65.621382], - [-21.389159, 65.620941], - [-21.38762, 65.621392], - [-21.38739, 65.62205], - [-21.386585, 65.622621], - [-21.385504, 65.622612], - [-21.386027, 65.619371], - [-21.38889, 65.61801], - [-21.3925, 65.61852], - [-21.39459, 65.61745], - [-21.39583, 65.61749], - [-21.39708, 65.61317], - [-21.39571, 65.608], - [-21.40058, 65.60702], - [-21.40239, 65.60722], - [-21.40417, 65.60472], - [-21.40655, 65.60519], - [-21.40969, 65.60505], - [-21.41256, 65.60323], - [-21.41381, 65.60315], - [-21.41457, 65.60254], - [-21.41709, 65.60237], - [-21.41725, 65.60161], - [-21.41974, 65.60157], - [-21.42049, 65.60096], - [-21.42172, 65.601], - [-21.42334, 65.59927], - [-21.42457, 65.59931], - [-21.42479, 65.5983], - [-21.42602, 65.59834], - [-21.42623, 65.59732], - [-21.42747, 65.59737], - [-21.42763, 65.5966], - [-21.42886, 65.59665], - [-21.43045, 65.59504], - [-21.4317, 65.59496], - [-21.43218, 65.59421], - [-21.43376, 65.59401], - [-21.43498, 65.59123], - [-21.43683, 65.5913], - [-21.43922, 65.58882], - [-21.44042, 65.58899], - [-21.44204, 65.58867], - [-21.44329, 65.58718], - [-21.44452, 65.58722], - [-21.44505, 65.58621], - [-21.44664, 65.58602], - [-21.44758, 65.58451], - [-21.44881, 65.58456], - [-21.45042, 65.58282], - [-21.45165, 65.58287], - [-21.45446, 65.5813], - [-21.45938, 65.58007], - [-21.45979, 65.57957], - [-21.46102, 65.57962], - [-21.46446, 65.57513], - [-21.46605, 65.57493], - [-21.46652, 65.57417], - [-21.47012, 65.57329], - [-21.47136, 65.57179], - [-21.47259, 65.57182], - [-21.47503, 65.5691], - [-21.47626, 65.56914], - [-21.47709, 65.56815], - [-21.47833, 65.56818], - [-21.48031, 65.56467], - [-21.4819, 65.56448], - [-21.48253, 65.56296], - [-21.48315, 65.56298], - [-21.48304, 65.56349], - [-21.48365, 65.56351], - [-21.48398, 65.56199], - [-21.48152, 65.5619], - [-21.48179, 65.56061], - [-21.48056, 65.56058], - [-21.48083, 65.55931], - [-21.479592, 65.559512], - [-21.47826, 65.55973], - [-21.47781, 65.55894], - [-21.47602, 65.55862], - [-21.47613, 65.55811], - [-21.47132, 65.55742], - [-21.47143, 65.55691], - [-21.46238, 65.55582], - [-21.46072, 65.5578], - [-21.45427, 65.55898], - [-21.45062, 65.55873], - [-21.44917, 65.55969], - [-21.44733, 65.55962], - [-21.44633, 65.56138], - [-21.44387, 65.56129], - [-21.44149, 65.56377], - [-21.44026, 65.56372], - [-21.44065, 65.56476], - [-21.43557, 65.56535], - [-21.43313, 65.56808], - [-21.43067, 65.56799], - [-21.42967, 65.56975], - [-21.4242, 65.56929], - [-21.42465, 65.57007], - [-21.42275, 65.57026], - [-21.42078, 65.57224], - [-21.42092, 65.57302], - [-21.41908, 65.57295], - [-21.4183, 65.57369], - [-21.41461, 65.57355], - [-21.41305, 65.57504], - [-21.41182, 65.57499], - [-21.4084, 65.57795], - [-21.40896, 65.57822], - [-21.40404, 65.58523], - [-21.40281, 65.58517], - [-21.3996, 65.58711], - [-21.39598, 65.58954], - [-21.39498, 65.5913], - [-21.39291, 65.59225], - [-21.39299, 65.59328], - [-21.39177, 65.59324], - [-21.39155, 65.59426], - [-21.39012, 65.59368], - [-21.3936, 65.58954], - [-21.39142, 65.58911], - [-21.39153, 65.5886], - [-21.39092, 65.58858], - [-21.39082, 65.58909], - [-21.38958, 65.58904], - [-21.38745, 65.59025], - [-21.3862, 65.59033], - [-21.3832, 65.58984], - [-21.3817, 65.59106], - [-21.37985, 65.59099], - [-21.37657, 65.59472], - [-21.37534, 65.59467], - [-21.37517, 65.59544], - [-21.37394, 65.59539], - [-21.36719, 65.60078], - [-21.35956, 65.60165], - [-21.357133, 65.601611], - [-21.360298, 65.598284], - [-21.361049, 65.597983], - [-21.360802, 65.597611], - [-21.359365, 65.597376], - [-21.359011, 65.597176], - [-21.357798, 65.596755], - [-21.355743, 65.59673], - [-21.351382, 65.597469], - [-21.35046, 65.598253], - [-21.350009, 65.598306], - [-21.349344, 65.598231], - [-21.347542, 65.598488], - [-21.346608, 65.598865], - [-21.346233, 65.599259], - [-21.345557, 65.599051], - [-21.343647, 65.599827], - [-21.342789, 65.59976], - [-21.341398, 65.600027], - [-21.340396, 65.599915], - [-21.334297, 65.59874], - [-21.329035, 65.598166], - [-21.326553, 65.599232], - [-21.31627, 65.59824], - [-21.31369, 65.59866], - [-21.30765, 65.59792], - [-21.29974, 65.59724], - [-21.29985, 65.59672], - [-21.29736, 65.59676], - [-21.29479, 65.59577], - [-21.29658, 65.5848], - [-21.29468, 65.58216], - [-21.29663, 65.57891], - [-21.29549, 65.57706], - [-21.29672, 65.57711], - [-21.29526, 65.57526], - [-21.29649, 65.57531], - [-21.29638, 65.573], - [-21.29514, 65.57295], - [-21.2944, 65.57215], - [-21.29613, 65.56991], - [-21.29306, 65.56415], - [-21.29206, 65.56308], - [-21.29208, 65.56155], - [-21.28974, 65.56094], - [-21.28954, 65.56042], - [-21.29121, 65.55844], - [-21.29046, 65.55764], - [-21.29169, 65.55768], - [-21.29278, 65.55413], - [-21.290172, 65.548587], - [-21.28983, 65.54786], - [-21.29119, 65.54586], - [-21.29278, 65.54567], - [-21.29546, 65.54192], - [-21.29435, 65.54136], - [-21.29518, 65.54037], - [-21.29677, 65.54017], - [-21.29577, 65.53911], - [-21.29703, 65.53903], - [-21.29853, 65.53639], - [-21.3006, 65.53544], - [-21.3016, 65.53369], - [-21.30168, 65.53189], - [-21.30291, 65.53194], - [-21.31071, 65.52171], - [-21.31194, 65.52176], - [-21.318, 65.5166], - [-21.3196, 65.5164], - [-21.31952, 65.51538], - [-21.32074, 65.51542], - [-21.3252, 65.512], - [-21.32768, 65.51196], - [-21.32843, 65.51135], - [-21.32969, 65.51127], - [-21.33289, 65.50792], - [-21.33514, 65.5075], - [-21.33656, 65.50524], - [-21.33779, 65.50529], - [-21.33926, 65.50419], - [-21.34216, 65.50365], - [-21.34352, 65.50165], - [-21.34475, 65.5017], - [-21.34625, 65.50047], - [-21.34875, 65.50031], - [-21.35037, 65.49857], - [-21.35159, 65.49862], - [-21.35212, 65.49761], - [-21.35371, 65.49743], - [-21.35382, 65.49691], - [-21.35504, 65.49695], - [-21.35585, 65.49608], - [-21.36069, 65.49511], - [-21.36189, 65.49387], - [-21.36439, 65.49371], - [-21.36662, 65.492], - [-21.36784, 65.49204], - [-21.36801, 65.49128], - [-21.36987, 65.49122], - [-21.37062, 65.49061], - [-21.37189, 65.49053], - [-21.37613, 65.48799], - [-21.37919, 65.48811], - [-21.37994, 65.48749], - [-21.38119, 65.48741], - [-21.38141, 65.48639], - [-21.38434, 65.48573], - [-21.38332, 65.48185], - [-21.38373, 65.48135], - [-21.38195, 65.48103], - [-21.38206, 65.48052], - [-21.38084, 65.48047], - [-21.38125, 65.47997], - [-21.38351, 65.47954], - [-21.383778, 65.478291], - [-21.38389, 65.47777], - [-21.38823, 65.47767], - [-21.38833, 65.47716], - [-21.38957, 65.4772], - [-21.39098, 65.47636], - [-21.39223, 65.47628], - [-21.3924, 65.47551], - [-21.39621, 65.47501], - [-21.39746, 65.47493], - [-21.39851, 65.47292], - [-21.40035, 65.47299], - [-21.40068, 65.47146], - [-21.40321, 65.47117], - [-21.40396, 65.47056], - [-21.40518, 65.4706], - [-21.40529, 65.47009], - [-21.40821, 65.46943], - [-21.40934, 65.46844], - [-21.4131, 65.4682], - [-21.41468, 65.46659], - [-21.41893, 65.46547], - [-21.41934, 65.46497], - [-21.42057, 65.46501], - [-21.42293, 65.46407], - [-21.4234, 65.46332], - [-21.42846, 65.46274], - [-21.42887, 65.46224], - [-21.43245, 65.46135], - [-21.43257, 65.46084], - [-21.43548, 65.46018], - [-21.437321, 65.458432], - [-21.43834, 65.457362], - [-21.437986, 65.456569], - [-21.437697, 65.456462], - [-21.437546, 65.456293], - [-21.438426, 65.456288], - [-21.441094, 65.456948], - [-21.443297, 65.45726], - [-21.4451, 65.457064], - [-21.446162, 65.45673], - [-21.446248, 65.456235], - [-21.447245, 65.456137], - [-21.449123, 65.455455], - [-21.451601, 65.455098], - [-21.45305, 65.45441], - [-21.457097, 65.453517], - [-21.45827, 65.45306], - [-21.46091, 65.45226], - [-21.46499, 65.45049], - [-21.46765, 65.44956], - [-21.469061, 65.44922], - [-21.471196, 65.448512], - [-21.473399, 65.447684], - [-21.474534, 65.447153], - [-21.472, 65.44356], - [-21.47384, 65.44363], - [-21.47641, 65.44603], - [-21.47688, 65.44528], - [-21.47612, 65.44448], - [-21.47732, 65.44466], - [-21.47801, 65.4443], - [-21.47679, 65.44425], - [-21.47695, 65.44349], - [-21.47573, 65.44344], - [-21.47566, 65.44276], - [-21.47466, 65.44264], - [-21.47482, 65.44187], - [-21.47163, 65.4424], - [-21.46488, 65.44228], - [-21.46498, 65.44177], - [-21.462036, 65.441361], - [-21.459136, 65.441802], - [-21.456858, 65.442657], - [-21.455374, 65.442857], - [-21.4536, 65.44315], - [-21.45005, 65.44532], - [-21.445318, 65.446176], - [-21.440032, 65.447501], - [-21.439041, 65.447787], - [-21.438126, 65.448056], - [-21.43543, 65.448748], - [-21.431571, 65.449734], - [-21.429246, 65.450571], - [-21.42656, 65.45138], - [-21.424736, 65.452068], - [-21.4228, 65.452548], - [-21.420957, 65.452944], - [-21.4136, 65.454239], - [-21.412317, 65.45474], - [-21.411495, 65.455169], - [-21.410673, 65.455327], - [-21.410048, 65.45549], - [-21.409492, 65.455525], - [-21.408551, 65.455483], - [-21.40779, 65.45556], - [-21.404075, 65.456514], - [-21.400611, 65.456637], - [-21.397778, 65.457163], - [-21.39186, 65.45792], - [-21.387028, 65.457484], - [-21.38385, 65.45788], - [-21.37865, 65.4591], - [-21.37721, 65.459776], - [-21.375355, 65.460122], - [-21.374082, 65.460721], - [-21.372373, 65.461192], - [-21.37004, 65.46186], - [-21.369415, 65.462119], - [-21.3687, 65.46232], - [-21.367801, 65.462934], - [-21.366485, 65.46317], - [-21.365539, 65.463476], - [-21.36424, 65.46394], - [-21.362094, 65.465278], - [-21.361324, 65.465505], - [-21.359519, 65.466227], - [-21.3566, 65.467], - [-21.355493, 65.467394], - [-21.35392, 65.46792], - [-21.352952, 65.468341], - [-21.35192, 65.46862], - [-21.350802, 65.469023], - [-21.349536, 65.469513], - [-21.348346, 65.469924], - [-21.346909, 65.470532], - [-21.346062, 65.47082], - [-21.345294, 65.470992], - [-21.343945, 65.471634], - [-21.340593, 65.472418], - [-21.337052, 65.473305], - [-21.335111, 65.473824], - [-21.328188, 65.475232], - [-21.324812, 65.475754], - [-21.322697, 65.476457], - [-21.32115, 65.4767], - [-21.31831, 65.47839], - [-21.29418, 65.48428], - [-21.28352, 65.48503], - [-21.28213, 65.48292], - [-21.2803, 65.48285], - [-21.27473, 65.47161], - [-21.26939, 65.47064], - [-21.269192, 65.466484], - [-21.268654, 65.465923], - [-21.270086, 65.463952], - [-21.269908, 65.463722], - [-21.270333, 65.463483], - [-21.271173, 65.46254], - [-21.271409, 65.461551], - [-21.271022, 65.46066], - [-21.27046, 65.46016], - [-21.269821, 65.459862], - [-21.2688, 65.45933], - [-21.267453, 65.459004], - [-21.26542, 65.45779], - [-21.26508, 65.457728], - [-21.26323, 65.45655], - [-21.261039, 65.45595], - [-21.258625, 65.45549], - [-21.253551, 65.454539], - [-21.25261, 65.45435], - [-21.245386, 65.452984], - [-21.24388, 65.45197], - [-21.24266, 65.45192], - [-21.24252, 65.45115], - [-21.24361, 65.45042], - [-21.24483, 65.45046], - [-21.24517, 65.44612], - [-21.24339, 65.44579], - [-21.243, 65.44475], - [-21.24056, 65.44466], - [-21.239945, 65.445486], - [-21.238551, 65.445834], - [-21.23781, 65.445968], - [-21.23711, 65.44632], - [-21.234645, 65.447198], - [-21.234162, 65.446926], - [-21.234624, 65.446481], - [-21.234645, 65.445981], - [-21.235611, 65.444314], - [-21.236759, 65.443596], - [-21.236759, 65.442749], - [-21.236083, 65.442102], - [-21.2356, 65.442459], - [-21.234881, 65.442624], - [-21.23413, 65.442281], - [-21.23356, 65.44285], - [-21.233133, 65.442878], - [-21.232274, 65.443311], - [-21.231362, 65.44377], - [-21.23089, 65.44377], - [-21.231577, 65.443279], - [-21.23133, 65.442713], - [-21.231362, 65.441955], - [-21.230375, 65.44208], - [-21.229935, 65.442022], - [-21.230665, 65.441478], - [-21.231523, 65.441308], - [-21.2315, 65.44098], - [-21.231931, 65.440698], - [-21.231523, 65.440296], - [-21.23045, 65.439908], - [-21.229571, 65.439717], - [-21.22867, 65.43984], - [-21.228015, 65.440185], - [-21.226674, 65.440399], - [-21.22545, 65.44048], - [-21.224775, 65.440831], - [-21.223509, 65.440787], - [-21.225311, 65.439734], - [-21.224743, 65.439226], - [-21.223541, 65.438771], - [-21.222897, 65.438802], - [-21.22212, 65.43882], - [-21.221266, 65.439204], - [-21.216632, 65.439039], - [-21.216578, 65.438593], - [-21.216732, 65.436442], - [-21.218044, 65.434262], - [-21.218706, 65.433753], - [-21.21974, 65.43283], - [-21.21424, 65.43262], - [-21.21435, 65.43211], - [-21.21258, 65.43178], - [-21.21275, 65.43103], - [-21.21158, 65.43072], - [-21.21147, 65.43123], - [-21.20908, 65.43087], - [-21.20805, 65.43135], - [-21.20849, 65.43214], - [-21.20762, 65.43467], - [-21.20701, 65.43465], - [-21.20557, 65.4328], - [-21.20295, 65.43629], - [-21.20232, 65.436414], - [-21.201513, 65.436554], - [-21.20069, 65.436442], - [-21.20051, 65.4362], - [-21.198, 65.43636], - [-21.19828, 65.43508], - [-21.19712, 65.43478], - [-21.197, 65.43529], - [-21.19639, 65.43527], - [-21.19595, 65.43448], - [-21.19352, 65.43439], - [-21.19233, 65.42998], - [-21.19286, 65.42897], - [-21.19372, 65.42926], - [-21.19325, 65.43001], - [-21.19502, 65.43034], - [-21.1945, 65.42852], - [-21.19918, 65.42691], - [-21.20303, 65.42064], - [-21.20381, 65.4199], - [-21.2022, 65.41881], - [-21.20279, 65.41755], - [-21.204318, 65.41727], - [-21.206228, 65.417641], - [-21.207752, 65.417792], - [-21.209123, 65.418303], - [-21.211998, 65.4176], - [-21.21125, 65.41275], - [-21.20886, 65.4124], - [-21.20903, 65.41164], - [-21.20725, 65.41131], - [-21.20737, 65.4108], - [-21.20498, 65.41045], - [-21.20471, 65.4089], - [-21.20171, 65.40853], - [-21.20182, 65.40801], - [-21.20005, 65.4077], - [-21.20016, 65.40719], - [-21.20137, 65.40724], - [-21.20155, 65.40647], - [-21.20277, 65.40652], - [-21.20128, 65.40492], - [-21.1995, 65.4046], - [-21.19912, 65.40356], - [-21.1979, 65.40351], - [-21.19746, 65.40272], - [-21.19304, 65.40319], - [-21.19063, 65.40297], - [-21.19024, 65.40193], - [-21.18847, 65.40162], - [-21.18947, 65.39985], - [-21.18759, 65.40003], - [-21.1881, 65.39774], - [-21.18626, 65.39767], - [-21.1866, 65.39615], - [-21.18538, 65.3961], - [-21.18579, 65.3956], - [-21.18559, 65.3938], - [-21.18625, 65.39357], - [-21.18552, 65.38995], - [-21.18777, 65.38952], - [-21.18757, 65.389], - [-21.19049, 65.38834], - [-21.18943, 65.38753], - [-21.18991, 65.38678], - [-21.18869, 65.38673], - [-21.188765, 65.384415], - [-21.18988, 65.38421], - [-21.190632, 65.383847], - [-21.190997, 65.383114], - [-21.190675, 65.382765], - [-21.190525, 65.382448], - [-21.190106, 65.382113], - [-21.191415, 65.3818], - [-21.192359, 65.381898], - [-21.192756, 65.381541], - [-21.192638, 65.38045], - [-21.191533, 65.380285], - [-21.191791, 65.379923], - [-21.191598, 65.379601], - [-21.191018, 65.379311], - [-21.190482, 65.378814], - [-21.190589, 65.378403], - [-21.191448, 65.377755], - [-21.191456, 65.376912], - [-21.191659, 65.376814], - [-21.192089, 65.376868], - [-21.192142, 65.376823], - [-21.191509, 65.3766], - [-21.190029, 65.376412], - [-21.188902, 65.37617], - [-21.188527, 65.376036], - [-21.187851, 65.376081], - [-21.187851, 65.376282], - [-21.188248, 65.376237], - [-21.188548, 65.376304], - [-21.188494, 65.376506], - [-21.188258, 65.376693], - [-21.188312, 65.377037], - [-21.188494, 65.377623], - [-21.188087, 65.377632], - [-21.187958, 65.377172], - [-21.187497, 65.376537], - [-21.187314, 65.37541], - [-21.186778, 65.37512], - [-21.186736, 65.374679], - [-21.188258, 65.374045], - [-21.189278, 65.372969], - [-21.188645, 65.371664], - [-21.188666, 65.371418], - [-21.189149, 65.371016], - [-21.188612, 65.370135], - [-21.18754, 65.369683], - [-21.185973, 65.368538], - [-21.185383, 65.368427], - [-21.185812, 65.368158], - [-21.186746, 65.368136], - [-21.186853, 65.367532], - [-21.18584, 65.36353], - [-21.18632, 65.36278], - [-21.187075, 65.36155], - [-21.18877, 65.360628], - [-21.18791, 65.35976], - [-21.186966, 65.35927], - [-21.18625, 65.35893], - [-21.184854, 65.358745], - [-21.18377, 65.359103], - [-21.183191, 65.359103], - [-21.18198, 65.35877], - [-21.180669, 65.357877], - [-21.181367, 65.357233], - [-21.18136, 65.35464], - [-21.180827, 65.354066], - [-21.17839, 65.35144], - [-21.18019, 65.3433], - [-21.18086, 65.34307], - [-21.18027, 65.34023], - [-21.182, 65.33927], - [-21.18087, 65.33884], - [-21.17902, 65.33889], - [-21.18046, 65.33792], - [-21.17817, 65.33719], - [-21.17692, 65.33727], - [-21.17745, 65.33627], - [-21.17903, 65.33607], - [-21.17912, 65.33428], - [-21.18056, 65.33331], - [-21.18007, 65.33278], - [-21.18102, 65.33127], - [-21.17947, 65.32993], - [-21.183709, 65.323414], - [-21.183421, 65.322635], - [-21.182748, 65.322108], - [-21.182661, 65.321313], - [-21.184079, 65.321242], - [-21.184865, 65.321048], - [-21.183953, 65.320653], - [-21.182781, 65.320014], - [-21.182716, 65.319552], - [-21.181999, 65.319511], - [-21.179329, 65.318655], - [-21.179362, 65.317812], - [-21.178157, 65.317064], - [-21.176496, 65.316833], - [-21.176041, 65.316017], - [-21.177148, 65.315514], - [-21.178483, 65.316262], - [-21.179981, 65.31671], - [-21.181446, 65.317213], - [-21.182846, 65.317608], - [-21.183302, 65.318179], - [-21.184181, 65.318628], - [-21.18506, 65.318872], - [-21.185809, 65.319335], - [-21.185842, 65.319906], - [-21.186754, 65.320422], - [-21.18822, 65.320497], - [-21.189975, 65.320417], - [-21.19141, 65.320014], - [-21.19176, 65.319506], - [-21.19119, 65.318485], - [-21.191117, 65.317948], - [-21.19128, 65.317553], - [-21.192094, 65.3172], - [-21.192284, 65.316344], - [-21.190645, 65.316259], - [-21.189029, 65.316605], - [-21.187395, 65.316021], - [-21.190214, 65.3152], - [-21.187958, 65.314167], - [-21.189391, 65.313161], - [-21.190752, 65.313235], - [-21.19254, 65.31248], - [-21.19294, 65.312005], - [-21.193168, 65.311094], - [-21.193754, 65.30991], - [-21.195347, 65.309121], - [-21.196515, 65.308691], - [-21.197669, 65.307929], - [-21.197707, 65.307212], - [-21.197418, 65.306455], - [-21.196411, 65.304467], - [-21.195773, 65.302496], - [-21.195473, 65.30159], - [-21.194681, 65.300793], - [-21.193754, 65.300063], - [-21.19267, 65.2994], - [-21.191836, 65.299314], - [-21.190914, 65.298358], - [-21.190019, 65.297184], - [-21.190136, 65.296354], - [-21.189988, 65.296067], - [-21.189215, 65.295633], - [-21.187047, 65.294567], - [-21.185826, 65.294101], - [-21.185247, 65.293869], - [-21.184645, 65.293822], - [-21.184001, 65.293466], - [-21.183071, 65.293367], - [-21.181425, 65.293295], - [-21.178757, 65.293249], - [-21.176401, 65.293299], - [-21.17564, 65.293459], - [-21.1749, 65.293549], - [-21.174223, 65.293505], - [-21.173239, 65.293294], - [-21.172302, 65.293227], - [-21.170396, 65.29307], - [-21.169877, 65.293024], - [-21.169479, 65.292823], - [-21.168872, 65.292715], - [-21.16831, 65.292828], - [-21.167646, 65.292863], - [-21.167102, 65.292756], - [-21.166392, 65.292406], - [-21.165835, 65.292038], - [-21.16546, 65.291567], - [-21.165373, 65.291185], - [-21.165652, 65.290952], - [-21.166091, 65.290675], - [-21.166293, 65.290383], - [-21.166379, 65.290033], - [-21.166562, 65.289912], - [-21.166952, 65.289831], - [-21.167121, 65.289714], - [-21.167155, 65.289419], - [-21.167016, 65.289234], - [-21.166691, 65.289046], - [-21.166542, 65.288903], - [-21.166573, 65.288737], - [-21.16681, 65.288622], - [-21.167091, 65.288469], - [-21.167199, 65.288334], - [-21.16754, 65.28829], - [-21.167873, 65.288252], - [-21.16798, 65.288145], - [-21.168002, 65.287989], - [-21.168195, 65.287984], - [-21.168569, 65.288061], - [-21.168968, 65.288141], - [-21.169398, 65.288163], - [-21.16975, 65.288095], - [-21.1702, 65.288073], - [-21.171276, 65.288105], - [-21.172852, 65.288288], - [-21.173282, 65.288253], - [-21.173622, 65.288131], - [-21.173997, 65.287871], - [-21.174333, 65.287553], - [-21.174578, 65.287248], - [-21.174784, 65.286827], - [-21.174781, 65.286392], - [-21.17462, 65.285866], - [-21.174267, 65.285265], - [-21.174052, 65.285018], - [-21.173817, 65.284722], - [-21.173311, 65.284408], - [-21.172241, 65.284063], - [-21.170971, 65.283597], - [-21.169312, 65.28317], - [-21.168358, 65.282915], - [-21.167389, 65.282803], - [-21.166831, 65.282709], - [-21.166616, 65.282588], - [-21.166477, 65.282467], - [-21.16636, 65.282062], - [-21.16623, 65.281725], - [-21.165919, 65.281243], - [-21.165566, 65.280891], - [-21.164941, 65.28052], - [-21.164051, 65.280206], - [-21.163637, 65.28017], - [-21.163355, 65.280251], - [-21.163107, 65.280407], - [-21.162779, 65.280352], - [-21.162391, 65.279703], - [-21.162678, 65.279524], - [-21.162832, 65.279402], - [-21.162796, 65.279254], - [-21.162594, 65.279134], - [-21.162658, 65.278952], - [-21.162775, 65.278634], - [-21.162809, 65.278446], - [-21.162563, 65.278293], - [-21.162543, 65.278119], - [-21.16285, 65.277329], - [-21.16283, 65.277136], - [-21.162359, 65.277014], - [-21.161501, 65.276619], - [-21.160814, 65.276162], - [-21.160096, 65.275834], - [-21.159591, 65.275686], - [-21.159052, 65.275625], - [-21.158883, 65.275646], - [-21.15858, 65.275889], - [-21.157948, 65.276287], - [-21.157712, 65.276408], - [-21.157359, 65.276437], - [-21.156995, 65.276332], - [-21.156852, 65.276244], - [-21.156975, 65.275987], - [-21.157348, 65.275839], - [-21.157487, 65.27566], - [-21.157166, 65.275368], - [-21.157282, 65.275055], - [-21.156952, 65.274748], - [-21.156434, 65.274575], - [-21.156299, 65.274452], - [-21.15655, 65.27426], - [-21.157017, 65.274268], - [-21.158035, 65.274112], - [-21.159056, 65.274044], - [-21.15959, 65.273865], - [-21.160564, 65.273765], - [-21.161018, 65.273765], - [-21.161404, 65.273855], - [-21.162092, 65.273915], - [-21.16271, 65.273963], - [-21.163078, 65.273906], - [-21.163355, 65.27377], - [-21.163804, 65.27342], - [-21.164009, 65.273026], - [-21.163937, 65.272666], - [-21.163721, 65.272123], - [-21.163182, 65.271499], - [-21.162735, 65.271072], - [-21.162026, 65.270531], - [-21.161609, 65.270181], - [-21.160782, 65.269592], - [-21.160233, 65.269351], - [-21.159396, 65.269134], - [-21.159097, 65.26895], - [-21.158903, 65.268487], - [-21.159077, 65.268245], - [-21.159072, 65.268107], - [-21.158763, 65.267895], - [-21.157914, 65.267506], - [-21.156898, 65.266871], - [-21.156115, 65.266487], - [-21.155623, 65.266194], - [-21.154782, 65.265845], - [-21.153357, 65.264353], - [-21.152854, 65.264088], - [-21.152035, 65.263635], - [-21.151427, 65.263325], - [-21.150624, 65.263172], - [-21.149592, 65.262975], - [-21.148467, 65.26271], - [-21.148015, 65.262603], - [-21.147712, 65.262446], - [-21.147705, 65.262195], - [-21.147551, 65.261642], - [-21.147349, 65.261171], - [-21.14704, 65.260843], - [-21.146606, 65.26061], - [-21.146084, 65.260429], - [-21.145565, 65.260326], - [-21.145191, 65.260142], - [-21.145083, 65.259932], - [-21.144945, 65.259522], - [-21.144782, 65.259324], - [-21.144378, 65.259074], - [-21.143583, 65.258724], - [-21.142756, 65.258372], - [-21.142212, 65.258154], - [-21.141715, 65.257862], - [-21.141161, 65.257672], - [-21.140493, 65.257497], - [-21.139675, 65.257337], - [-21.139314, 65.257198], - [-21.138991, 65.256873], - [-21.138594, 65.256653], - [-21.138228, 65.256527], - [-21.13813, 65.256433], - [-21.138221, 65.256285], - [-21.138549, 65.255962], - [-21.139108, 65.255333], - [-21.139357, 65.254983], - [-21.13954, 65.254533], - [-21.139636, 65.254097], - [-21.139526, 65.253747], - [-21.139519, 65.253133], - [-21.139272, 65.252886], - [-21.139172, 65.252741], - [-21.139272, 65.25237], - [-21.139261, 65.25213], - [-21.139033, 65.251826], - [-21.13897, 65.251584], - [-21.139023, 65.251189], - [-21.138924, 65.250901], - [-21.138659, 65.250545], - [-21.138273, 65.250217], - [-21.13792, 65.249994], - [-21.137588, 65.24984], - [-21.136909, 65.249688], - [-21.13575, 65.249468], - [-21.133509, 65.249135], - [-21.132908, 65.248946], - [-21.132393, 65.248695], - [-21.131941, 65.248377], - [-21.131629, 65.248152], - [-21.13116, 65.248], - [-21.130537, 65.247807], - [-21.129753, 65.247586], - [-21.129066, 65.247496], - [-21.128636, 65.247506], - [-21.128434, 65.24747], - [-21.12837, 65.247362], - [-21.128467, 65.247249], - [-21.128693, 65.247123], - [-21.129625, 65.246844], - [-21.131619, 65.246363], - [-21.13312, 65.245991], - [-21.134948, 65.245474], - [-21.135975, 65.24506], - [-21.136643, 65.244751], - [-21.13717, 65.24438], - [-21.137501, 65.244001], - [-21.137628, 65.243604], - [-21.137715, 65.243137], - [-21.137529, 65.242738], - [-21.137252, 65.242473], - [-21.13676, 65.242288], - [-21.136182, 65.242024], - [-21.13561, 65.24176], - [-21.135043, 65.241376], - [-21.13451, 65.2412], - [-21.133431, 65.240778], - [-21.133016, 65.240595], - [-21.132682, 65.240407], - [-21.132319, 65.240173], - [-21.132156, 65.239893], - [-21.13222, 65.239544], - [-21.132229, 65.239304], - [-21.13247, 65.239162], - [-21.132768, 65.239089], - [-21.133144, 65.238843], - [-21.133241, 65.238645], - [-21.133145, 65.238403], - [-21.132899, 65.238213], - [-21.132413, 65.238006], - [-21.132005, 65.237831], - [-21.131886, 65.237665], - [-21.131772, 65.237383], - [-21.131437, 65.237166], - [-21.131286, 65.236906], - [-21.130749, 65.236662], - [-21.130152, 65.236394], - [-21.129569, 65.236285], - [-21.128882, 65.236236], - [-21.128361, 65.236133], - [-21.128017, 65.23589], - [-21.127631, 65.23514], - [-21.127084, 65.234734], - [-21.126803, 65.234273], - [-21.126438, 65.234051], - [-21.126277, 65.233846], - [-21.126331, 65.233671], - [-21.126276, 65.233327], - [-21.126129, 65.233148], - [-21.125475, 65.232699], - [-21.124936, 65.23237], - [-21.124272, 65.232006], - [-21.123715, 65.231602], - [-21.123217, 65.231107], - [-21.122503, 65.230361], - [-21.12204, 65.230115], - [-21.121761, 65.230079], - [-21.121656, 65.229935], - [-21.121482, 65.229648], - [-21.121323, 65.22945], - [-21.120976, 65.228711], - [-21.120997, 65.228506], - [-21.121148, 65.228312], - [-21.121011, 65.228136], - [-21.120504, 65.227836], - [-21.119809, 65.22749], - [-21.11908, 65.227252], - [-21.118637, 65.227035], - [-21.118296, 65.226779], - [-21.118132, 65.226455], - [-21.117888, 65.226051], - [-21.117386, 65.225705], - [-21.116635, 65.225341], - [-21.115979, 65.225002], - [-21.11546, 65.224832], - [-21.115138, 65.22455], - [-21.114669, 65.224369], - [-21.114024, 65.224257], - [-21.113241, 65.224076], - [-21.112964, 65.223964], - [-21.112558, 65.223646], - [-21.112029, 65.223525], - [-21.111504, 65.223484], - [-21.110754, 65.223318], - [-21.109993, 65.222975], - [-21.108598, 65.222351], - [-21.10761, 65.22194], - [-21.106945, 65.221456], - [-21.106473, 65.221011], - [-21.10627, 65.22052], - [-21.10585, 65.220278], - [-21.105193, 65.219518], - [-21.10452, 65.218918], - [-21.103909, 65.218415], - [-21.103499, 65.218227], - [-21.102941, 65.2178], - [-21.102221, 65.217273], - [-21.101159, 65.21668], - [-21.10092, 65.21627], - [-21.100483, 65.215838], - [-21.10007, 65.215348], - [-21.09938, 65.21493], - [-21.098686, 65.214664], - [-21.097621, 65.21431], - [-21.097288, 65.214098], - [-21.096674, 65.213218], - [-21.096352, 65.212692], - [-21.09624, 65.212157], - [-21.095333, 65.210998], - [-21.09455, 65.209835], - [-21.093992, 65.209604], - [-21.093418, 65.209514], - [-21.092377, 65.209525], - [-21.091336, 65.209676], - [-21.09124, 65.20957], - [-21.092924, 65.209192], - [-21.094603, 65.208868], - [-21.095741, 65.208573], - [-21.096604, 65.208367], - [-21.09684, 65.208054], - [-21.096824, 65.207734], - [-21.096803, 65.207093], - [-21.097329, 65.206619], - [-21.097479, 65.20636], - [-21.097457, 65.206092], - [-21.097286, 65.205363], - [-21.096926, 65.20539], - [-21.096932, 65.205312], - [-21.09728, 65.205276], - [-21.097339, 65.205026], - [-21.097227, 65.204774], - [-21.096706, 65.203471], - [-21.096368, 65.203271], - [-21.095907, 65.203118], - [-21.095151, 65.202956], - [-21.094922, 65.202326], - [-21.095701, 65.201893], - [-21.095885, 65.201649], - [-21.095659, 65.200272], - [-21.09644, 65.19942], - [-21.097131, 65.198959], - [-21.097188, 65.198235], - [-21.09695, 65.19713], - [-21.097103, 65.196899], - [-21.097074, 65.196637], - [-21.096211, 65.196174], - [-21.096366, 65.195752], - [-21.096678, 65.195372], - [-21.096366, 65.194921], - [-21.096182, 65.194363], - [-21.095616, 65.193941], - [-21.095503, 65.193543], - [-21.095956, 65.193258], - [-21.095786, 65.192925], - [-21.094469, 65.191921], - [-21.093521, 65.191423], - [-21.093578, 65.191221], - [-21.093082, 65.190989], - [-21.09195, 65.19078], - [-21.091879, 65.190264], - [-21.09195, 65.190151], - [-21.092247, 65.189985], - [-21.092487, 65.189813], - [-21.092233, 65.189385], - [-21.091553, 65.189017], - [-21.091298, 65.188767], - [-21.091596, 65.188161], - [-21.092417, 65.18752], - [-21.091935, 65.18683], - [-21.091921, 65.186522], - [-21.092785, 65.185963], - [-21.09311, 65.185565], - [-21.092969, 65.185167], - [-21.093832, 65.184668], - [-21.094031, 65.184276], - [-21.093648, 65.183907], - [-21.093244, 65.183672], - [-21.093619, 65.183123], - [-21.093094, 65.182483], - [-21.092064, 65.181186], - [-21.091881, 65.18074], - [-21.0923, 65.180218], - [-21.092514, 65.180002], - [-21.092235, 65.17947], - [-21.092364, 65.179106], - [-21.092793, 65.178826], - [-21.092858, 65.178498], - [-21.093072, 65.178372], - [-21.092825, 65.178061], - [-21.093126, 65.177628], - [-21.093383, 65.177417], - [-21.093319, 65.177025], - [-21.092976, 65.17662], - [-21.093018, 65.176376], - [-21.093222, 65.176101], - [-21.093351, 65.175786], - [-21.093104, 65.175029], - [-21.093212, 65.174669], - [-21.093108, 65.17433], - [-21.092438, 65.173617], - [-21.092202, 65.173367], - [-21.092278, 65.172755], - [-21.091989, 65.172106], - [-21.0923, 65.17184], - [-21.09216, 65.171592], - [-21.09171, 65.17134], - [-21.091248, 65.170732], - [-21.092525, 65.169606], - [-21.092579, 65.169407], - [-21.092385, 65.169092], - [-21.091774, 65.168587], - [-21.092697, 65.167474], - [-21.092085, 65.167046], - [-21.092729, 65.166267], - [-21.092911, 65.165965], - [-21.093136, 65.165771], - [-21.092933, 65.165298], - [-21.092804, 65.164906], - [-21.093297, 65.164185], - [-21.093072, 65.163784], - [-21.093136, 65.163293], - [-21.092664, 65.162495], - [-21.092654, 65.162049], - [-21.092385, 65.161612], - [-21.092428, 65.160665], - [-21.091242, 65.158863], - [-21.089, 65.15756], - [-21.086669, 65.15699], - [-21.085105, 65.157089], - [-21.082152, 65.157146], - [-21.079829, 65.157365], - [-21.078045, 65.157496], - [-21.07657, 65.157922], - [-21.075337, 65.157838], - [-21.073819, 65.157698], - [-21.073796, 65.158485], - [-21.072221, 65.158668], - [-21.072796, 65.153049], - [-21.072453, 65.142155], - [-21.081723, 65.129812], - [-21.088417, 65.116453], - [-21.087559, 65.102148], - [-21.077946, 65.083568], - [-21.036445, 65.018009], - [-21.014459, 64.992957], - [-21.000629, 64.978623], - [-20.977727, 64.945297] - ], - [ - [-22.032706, 66.101138], - [-22.036441, 66.114753], - [-22.043911, 66.117399], - [-22.056049, 66.118533], - [-22.06632, 66.120801], - [-22.080327, 66.124959], - [-22.079393, 66.129871], - [-22.083128, 66.132894], - [-22.097134, 66.138561], - [-22.113942, 66.137805], - [-22.12608, 66.14196], - [-22.134484, 66.146869], - [-22.132617, 66.154798], - [-22.132617, 66.15895], - [-22.135418, 66.164233], - [-22.146623, 66.168383], - [-22.159695, 66.170647], - [-22.176503, 66.165742], - [-22.18584, 66.163856], - [-22.186774, 66.168383], - [-22.171834, 66.174042], - [-22.165298, 66.180454], - [-22.172768, 66.184224], - [-22.180238, 66.192141], - [-22.181171, 66.198925], - [-22.191443, 66.199678], - [-22.218521, 66.209097], - [-22.225991, 66.217006], - [-22.239998, 66.223407], - [-22.264275, 66.227924], - [-22.281083, 66.226418], - [-22.30536, 66.229053], - [-22.326836, 66.226418], - [-22.34271, 66.226042], - [-22.358584, 66.221148], - [-22.376467, 66.219282], - [-22.390949, 66.210153], - [-22.41736, 66.202722], - [-22.423439, 66.199229], - [-22.416774, 66.196203], - [-22.382371, 66.195725], - [-22.369789, 66.187995], - [-22.358584, 66.174796], - [-22.352047, 66.164988], - [-22.328704, 66.152533], - [-22.299757, 66.146869], - [-22.279063, 66.131326], - [-22.268944, 66.121557], - [-22.257739, 66.118533], - [-22.228793, 66.11135], - [-22.209184, 66.10076], - [-22.205449, 66.095463], - [-22.202648, 66.087138], - [-22.184906, 66.07881], - [-22.1709, 66.078431], - [-22.162497, 66.071994], - [-22.146623, 66.071236], - [-22.128882, 66.07313], - [-22.11114, 66.074266], - [-22.079393, 66.077295], - [-22.070056, 66.08146], - [-22.054182, 66.090923], - [-22.037374, 66.092058], - [-22.032706, 66.101138] - ] - ] - ] - } - } - ], - "style": { - "stroke": "#000000", - "fill": "#3498DB", - "stroke-width": 1, - "fill-opacity": 0.8 - } -} diff --git a/backend/server/static/data/jp.json b/backend/server/static/data/jp.json deleted file mode 100644 index 030bc99..0000000 --- a/backend/server/static/data/jp.json +++ /dev/null @@ -1,28474 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "name_jp": "北海道", - "name": "Hokkaido", - "ISOCODE": "JP-01", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:15:49+0100", - "cartodb_id": 1 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [141.42981, 43.413425], - [141.412888, 43.438297], - [141.404816, 43.456791], - [141.389359, 43.479565], - [141.377762, 43.488281], - [141.372696, 43.495487], - [141.37117, 43.504681], - [141.366104, 43.507614], - [141.363785, 43.508957], - [141.361115, 43.513363], - [141.360809, 43.521618], - [141.365051, 43.533672], - [141.364639, 43.539406], - [141.385544, 43.575626], - [141.388504, 43.586788], - [141.385071, 43.603813], - [141.365845, 43.619785], - [141.364273, 43.622963], - [141.355316, 43.641075], - [141.351593, 43.667267], - [141.344177, 43.679184], - [141.340607, 43.684898], - [141.331619, 43.705471], - [141.329559, 43.71788], - [141.331192, 43.72747], - [141.349838, 43.752975], - [141.36264, 43.765541], - [141.372696, 43.780682], - [141.375992, 43.792526], - [141.377319, 43.794811], - [141.380066, 43.799541], - [141.393784, 43.810944], - [141.404404, 43.81599], - [141.429642, 43.822792], - [141.457336, 43.835491], - [141.462753, 43.836521], - [141.468658, 43.834103], - [141.47406, 43.834675], - [141.497375, 43.840359], - [141.511307, 43.856091], - [141.516113, 43.85759], - [141.524765, 43.860607], - [141.532349, 43.860214], - [141.537506, 43.855061], - [141.542862, 43.854485], - [141.552078, 43.862984], - [141.556519, 43.863575], - [141.560211, 43.860973], - [141.564911, 43.867512], - [141.571075, 43.87104], - [141.57872, 43.872242], - [141.582611, 43.874447], - [141.58699, 43.880764], - [141.59874, 43.889202], - [141.608307, 43.905712], - [141.61618, 43.912178], - [141.620346, 43.920559], - [141.629456, 43.926308], - [141.633652, 43.935604], - [141.633926, 43.942013], - [141.630707, 43.947815], - [141.633728, 43.951866], - [141.635361, 43.952976], - [141.640808, 43.947353], - [141.644333, 43.94796], - [141.640472, 43.954006], - [141.64386, 43.959198], - [141.642944, 43.967236], - [141.646286, 43.978088], - [141.649963, 43.989983], - [141.662399, 44.013523], - [141.661118, 44.020424], - [141.658997, 44.029865], - [141.663391, 44.057713], - [141.661011, 44.09763], - [141.653717, 44.13422], - [141.653885, 44.14521], - [141.65744, 44.153835], - [141.659103, 44.184494], - [141.653809, 44.222519], - [141.653534, 44.22448], - [141.655807, 44.240005], - [141.655014, 44.251019], - [141.650375, 44.275867], - [141.647919, 44.292645], - [141.649628, 44.310013], - [141.663116, 44.312225], - [141.67067, 44.317093], - [141.681625, 44.334248], - [141.692398, 44.361259], - [141.701721, 44.370205], - [141.706482, 44.376511], - [141.710602, 44.390385], - [141.730438, 44.405499], - [141.742233, 44.419197], - [141.750305, 44.435268], - [141.759247, 44.463005], - [141.762695, 44.484974], - [141.764221, 44.494728], - [141.76442, 44.52702], - [141.764069, 44.533443], - [141.769852, 44.554836], - [141.772614, 44.559124], - [141.7798, 44.56216], - [141.787613, 44.578922], - [141.793076, 44.613613], - [141.793732, 44.63467], - [141.791382, 44.660152], - [141.78212, 44.716034], - [141.783081, 44.72311], - [141.777573, 44.756454], - [141.777374, 44.75708], - [141.761658, 44.808594], - [141.755066, 44.839897], - [141.743088, 44.873161], - [141.742767, 44.880268], - [141.738022, 44.88221], - [141.731659, 44.904804], - [141.687302, 44.992397], - [141.684204, 44.997757], - [141.682907, 45], - [141.657059, 45.044842], - [141.614365, 45.113388], - [141.578278, 45.171165], - [141.568466, 45.206184], - [141.574356, 45.222546], - [141.57547, 45.232563], - [141.575943, 45.236935], - [141.590591, 45.253559], - [141.609299, 45.273754], - [141.617722, 45.288452], - [141.622864, 45.309635], - [141.642365, 45.332554], - [141.653244, 45.351315], - [141.656097, 45.364304], - [141.653564, 45.368092], - [141.641495, 45.38615], - [141.635651, 45.400707], - [141.634216, 45.412415], - [141.640045, 45.433807], - [141.648895, 45.450096], - [141.65448, 45.451572], - [141.662735, 45.439713], - [141.673935, 45.428699], - [141.679031, 45.4207], - [141.680603, 45.418243], - [141.68602, 45.415833], - [141.682037, 45.406765], - [141.683441, 45.402153], - [141.697128, 45.395889], - [141.71489, 45.393879], - [141.72789, 45.394268], - [141.736511, 45.397961], - [141.743912, 45.403515], - [141.747787, 45.410294], - [141.761154, 45.404259], - [141.782837, 45.402603], - [141.811691, 45.408562], - [141.813263, 45.409203], - [141.8405, 45.420238], - [141.87291, 45.445332], - [141.8797, 45.457989], - [141.877762, 45.471775], - [141.883377, 45.493389], - [141.893707, 45.505276], - [141.899933, 45.51004], - [141.903854, 45.513039], - [141.918686, 45.517025], - [141.925766, 45.515476], - [141.94014, 45.523136], - [141.953339, 45.513649], - [141.96077, 45.512775], - [141.96727, 45.505974], - [141.977814, 45.476398], - [141.991226, 45.465069], - [142.016968, 45.455173], - [142.027359, 45.446976], - [142.029205, 45.432274], - [142.036163, 45.428661], - [142.038513, 45.423794], - [142.037216, 45.417412], - [142.044205, 45.408073], - [142.054184, 45.400032], - [142.069656, 45.391613], - [142.094116, 45.38113], - [142.124649, 45.364578], - [142.144287, 45.353928], - [142.166214, 45.339371], - [142.20668, 45.301632], - [142.2285, 45.279736], - [142.245239, 45.265766], - [142.251038, 45.259521], - [142.268173, 45.241081], - [142.304916, 45.208675], - [142.314178, 45.201576], - [142.324463, 45.193695], - [142.345917, 45.17247], - [142.398773, 45.129494], - [142.413879, 45.116684], - [142.459442, 45.083282], - [142.479095, 45.065746], - [142.486618, 45.061859], - [142.494919, 45.060238], - [142.501129, 45.061428], - [142.506546, 45.060349], - [142.502975, 45.054501], - [142.503296, 45.048992], - [142.509567, 45.045826], - [142.510391, 45.04425], - [142.512466, 45.040241], - [142.520493, 45.039543], - [142.52269, 45.033062], - [142.531097, 45.027767], - [142.531723, 45.016521], - [142.540878, 45], - [142.54425, 44.993923], - [142.549744, 44.988716], - [142.565414, 44.981136], - [142.569412, 44.972538], - [142.57373, 44.9692], - [142.589325, 44.960705], - [142.584579, 44.951454], - [142.589737, 44.944038], - [142.594666, 44.936939], - [142.593567, 44.934685], - [142.585388, 44.932644], - [142.587173, 44.925026], - [142.613373, 44.900162], - [142.628876, 44.890289], - [142.636627, 44.885464], - [142.646362, 44.870956], - [142.650986, 44.867603], - [142.665955, 44.843994], - [142.681549, 44.830898], - [142.684265, 44.827919], - [142.693604, 44.817688], - [142.703903, 44.81255], - [142.708344, 44.80645], - [142.710709, 44.797897], - [142.723984, 44.789227], - [142.742645, 44.763878], - [142.774231, 44.739944], - [142.786987, 44.728302], - [142.808731, 44.711784], - [142.819366, 44.707539], - [142.828949, 44.696682], - [142.840469, 44.691261], - [142.869492, 44.673344], - [142.871979, 44.667301], - [142.888123, 44.65897], - [142.895874, 44.654816], - [142.906311, 44.642776], - [142.926819, 44.627876], - [142.929398, 44.627464], - [142.934113, 44.626713], - [142.940384, 44.619625], - [142.937805, 44.61467], - [142.938553, 44.611435], - [142.949158, 44.606953], - [142.951324, 44.600918], - [142.959579, 44.59972], - [142.964218, 44.597271], - [142.969299, 44.587013], - [142.992401, 44.56353], - [143.015198, 44.545097], - [143.032761, 44.535088], - [143.037537, 44.532764], - [143.051987, 44.525711], - [143.056839, 44.526459], - [143.062088, 44.53315], - [143.066971, 44.529541], - [143.065155, 44.521812], - [143.067581, 44.515079], - [143.072739, 44.511002], - [143.08522, 44.506207], - [143.15921, 44.465755], - [143.202713, 44.44791], - [143.216873, 44.44006], - [143.226303, 44.437881], - [143.231476, 44.434025], - [143.234558, 44.423367], - [143.24118, 44.417625], - [143.2948, 44.3918], - [143.320541, 44.379383], - [143.353195, 44.367382], - [143.365005, 44.354099], - [143.361313, 44.347363], - [143.361023, 44.343246], - [143.363846, 44.338322], - [143.381973, 44.324341], - [143.386627, 44.322559], - [143.406952, 44.312386], - [143.516785, 44.265663], - [143.521713, 44.263206], - [143.537292, 44.255978], - [143.54895, 44.254143], - [143.558319, 44.25148], - [143.560944, 44.24942], - [143.566864, 44.246819], - [143.617889, 44.230537], - [143.625565, 44.22937], - [143.634262, 44.228046], - [143.65712, 44.218639], - [143.700012, 44.204975], - [143.778229, 44.183411], - [143.784882, 44.179005], - [143.788513, 44.176563], - [143.796448, 44.180359], - [143.80899, 44.173874], - [143.884842, 44.155315], - [143.951904, 44.141563], - [143.978104, 44.136181], - [144.067154, 44.124493], - [144.083176, 44.125851], - [144.098816, 44.126308], - [144.136429, 44.112247], - [144.193085, 44.101673], - [144.197693, 44.099857], - [144.220947, 44.100182], - [144.23172, 44.103363], - [144.243896, 44.111755], - [144.253143, 44.108349], - [144.260269, 44.084393], - [144.257706, 44.080608], - [144.256622, 44.071712], - [144.258438, 44.067039], - [144.2565, 44.063229], - [144.26416, 44.052551], - [144.259872, 44.043571], - [144.263519, 44.034458], - [144.268997, 44.028011], - [144.279678, 44.023163], - [144.285309, 44.018543], - [144.286224, 44.010929], - [144.299393, 43.994492], - [144.300522, 43.985722], - [144.303345, 43.981689], - [144.343628, 43.963528], - [144.378601, 43.953632], - [144.448257, 43.937954], - [144.495163, 43.930435], - [144.553192, 43.923279], - [144.58786, 43.920902], - [144.668259, 43.919079], - [144.674576, 43.918934], - [144.712692, 43.919334], - [144.763611, 43.927799], - [144.78508, 43.929932], - [144.794296, 43.933365], - [144.802322, 43.940994], - [144.809998, 43.944736], - [144.832214, 43.951412], - [144.834656, 43.953583], - [144.834839, 43.954521], - [144.836487, 43.962669], - [144.849991, 43.974148], - [144.881393, 43.986774], - [144.883743, 43.991245], - [144.894974, 43.995716], - [144.91861, 44.016308], - [144.924591, 44.028622], - [144.92514, 44.034103], - [144.932495, 44.041069], - [144.936111, 44.042259], - [144.941895, 44.039665], - [144.942688, 44.040161], - [144.952744, 44.046448], - [144.958191, 44.05328], - [144.969421, 44.057518], - [144.972122, 44.065414], - [144.981979, 44.065357], - [144.987091, 44.068764], - [144.983795, 44.073986], - [144.987427, 44.075405], - [144.994751, 44.072269], - [145, 44.074532], - [145.001404, 44.075134], - [145.007446, 44.081474], - [145.010101, 44.092125], - [145.013687, 44.096069], - [145.027451, 44.103153], - [145.035522, 44.10434], - [145.043167, 44.107609], - [145.053223, 44.115597], - [145.055634, 44.117512], - [145.071152, 44.126106], - [145.075333, 44.132774], - [145.086182, 44.136101], - [145.096497, 44.146805], - [145.116302, 44.153557], - [145.120132, 44.159782], - [145.131668, 44.163528], - [145.152054, 44.175987], - [145.186935, 44.191307], - [145.187454, 44.191536], - [145.195038, 44.197098], - [145.201431, 44.204369], - [145.212769, 44.217262], - [145.228638, 44.247173], - [145.235291, 44.249798], - [145.245102, 44.261204], - [145.257339, 44.268345], - [145.266754, 44.278858], - [145.273392, 44.28125], - [145.285629, 44.294361], - [145.289444, 44.303337], - [145.292221, 44.305481], - [145.295547, 44.306107], - [145.301682, 44.307259], - [145.307297, 44.312004], - [145.310776, 44.320766], - [145.320297, 44.335171], - [145.330017, 44.342445], - [145.333206, 44.342499], - [145.343903, 44.33778], - [145.345245, 44.335407], - [145.339661, 44.324924], - [145.341461, 44.320919], - [145.349915, 44.319305], - [145.352585, 44.314335], - [145.348953, 44.310173], - [145.347397, 44.301533], - [145.350281, 44.292648], - [145.354156, 44.290138], - [145.355286, 44.282726], - [145.358597, 44.278236], - [145.361984, 44.273632], - [145.368011, 44.270313], - [145.36409, 44.251472], - [145.352936, 44.242672], - [145.350235, 44.238228], - [145.350601, 44.220757], - [145.336151, 44.204792], - [145.334961, 44.19659], - [145.331879, 44.191479], - [145.322632, 44.185558], - [145.319748, 44.179287], - [145.312805, 44.173927], - [145.309921, 44.168076], - [145.308746, 44.165653], - [145.292114, 44.150032], - [145.272141, 44.138725], - [145.261047, 44.127159], - [145.252121, 44.111805], - [145.241989, 44.088017], - [145.245407, 44.065784], - [145.24028, 44.059406], - [145.240585, 44.056175], - [145.235641, 44.048409], - [145.217667, 44.028488], - [145.209564, 44.026859], - [145.203751, 44.023041], - [145.190964, 44.009956], - [145.183762, 44.004837], - [145.178635, 43.998222], - [145.159363, 43.983879], - [145.154404, 43.976009], - [145.154053, 43.975437], - [145.142517, 43.965263], - [145.13324, 43.949001], - [145.126587, 43.942928], - [145.114212, 43.918106], - [145.104477, 43.909672], - [145.100342, 43.897034], - [145.09523, 43.890419], - [145.097672, 43.880184], - [145.093689, 43.872131], - [145.095871, 43.862373], - [145.096985, 43.857723], - [145.094818, 43.848885], - [145.091537, 43.841015], - [145.08226, 43.818787], - [145.066528, 43.807224], - [145.063889, 43.803005], - [145.065277, 43.791679], - [145.062286, 43.784031], - [145.062576, 43.777359], - [145.069672, 43.753563], - [145.078384, 43.739555], - [145.091629, 43.726677], - [145.103348, 43.708141], - [145.117096, 43.690876], - [145.128189, 43.669384], - [145.137634, 43.653492], - [145.145767, 43.646626], - [145.156235, 43.640778], - [145.176376, 43.633949], - [145.216293, 43.623852], - [145.252701, 43.614628], - [145.288986, 43.608265], - [145.314606, 43.599728], - [145.338669, 43.588287], - [145.347763, 43.581806], - [145.354141, 43.573414], - [145.355301, 43.563473], - [145.355087, 43.562984], - [145.351974, 43.555851], - [145.346802, 43.551548], - [145.334641, 43.546944], - [145.322723, 43.544621], - [145.297882, 43.545311], - [145.291565, 43.548187], - [145.295242, 43.550278], - [145.30426, 43.549736], - [145.304214, 43.551346], - [145.285278, 43.557491], - [145.28421, 43.559387], - [145.288071, 43.560089], - [145.29538, 43.557621], - [145.304749, 43.556641], - [145.304611, 43.56147], - [145.306427, 43.563667], - [145.317337, 43.562374], - [145.330704, 43.558605], - [145.333572, 43.557796], - [145.334396, 43.559586], - [145.332413, 43.561764], - [145.324234, 43.564976], - [145.327972, 43.567524], - [145.334625, 43.564857], - [145.340683, 43.565437], - [145.344635, 43.573025], - [145.341522, 43.576412], - [145.336472, 43.576466], - [145.326614, 43.572651], - [145.321014, 43.573421], - [145.321564, 43.578674], - [145.318756, 43.57906], - [145.313766, 43.57658], - [145.311111, 43.578335], - [145.314392, 43.582516], - [145.323242, 43.582714], - [145.326889, 43.584347], - [145.326233, 43.587139], - [145.313004, 43.596371], - [145.306747, 43.596947], - [145.301849, 43.592396], - [145.292725, 43.592674], - [145.284821, 43.589436], - [145.281982, 43.589603], - [145.281906, 43.591892], - [145.288879, 43.598167], - [145.286591, 43.600361], - [145.280991, 43.598145], - [145.272842, 43.589638], - [145.268036, 43.591969], - [145.26738, 43.594761], - [145.270386, 43.602402], - [145.267517, 43.608299], - [145.242142, 43.610157], - [145.228287, 43.61367], - [145.214447, 43.620167], - [145.203018, 43.61964], - [145.193909, 43.623123], - [145.192383, 43.620678], - [145.200485, 43.610363], - [145.198105, 43.605671], - [145.19545, 43.601227], - [145.210632, 43.589375], - [145.221771, 43.587158], - [145.222214, 43.585297], - [145.217041, 43.58099], - [145.216583, 43.576649], - [145.226028, 43.567181], - [145.22612, 43.55592], - [145.240662, 43.537903], - [145.243988, 43.527386], - [145.247574, 43.522366], - [145.248199, 43.503963], - [145.255905, 43.478046], - [145.265213, 43.449287], - [145.266266, 43.434994], - [145.28064, 43.397686], - [145.289505, 43.382957], - [145.315994, 43.350483], - [145.345581, 43.326782], - [145.390442, 43.299229], - [145.393784, 43.295135], - [145.391022, 43.292053], - [145.385895, 43.291904], - [145.386047, 43.296261], - [145.382355, 43.296928], - [145.370865, 43.304234], - [145.361511, 43.3074], - [145.355392, 43.309467], - [145.343369, 43.317719], - [145.336685, 43.319931], - [145.334824, 43.314064], - [145.328308, 43.317875], - [145.314346, 43.322556], - [145.310181, 43.324856], - [145.303223, 43.339481], - [145.2948, 43.346149], - [145.287537, 43.34885], - [145.252686, 43.352386], - [145.244415, 43.351463], - [145.238541, 43.349262], - [145.234177, 43.340546], - [145.23671, 43.33765], - [145.256927, 43.335617], - [145.257324, 43.333298], - [145.254074, 43.332329], - [145.240585, 43.332615], - [145.234573, 43.335243], - [145.227417, 43.332878], - [145.227539, 43.331036], - [145.231232, 43.330147], - [145.244812, 43.318604], - [145.256516, 43.316353], - [145.262146, 43.319256], - [145.273575, 43.317245], - [145.290482, 43.319752], - [145.307312, 43.315372], - [145.333191, 43.304512], - [145.334015, 43.300331], - [145.331909, 43.295166], - [145.313538, 43.30125], - [145.299377, 43.302494], - [145.297592, 43.300526], - [145.30336, 43.298595], - [145.301926, 43.293854], - [145.304153, 43.285004], - [145.297836, 43.284668], - [145.296127, 43.283382], - [145.298996, 43.280697], - [145.311462, 43.279774], - [145.309082, 43.275085], - [145.312759, 43.271206], - [145.317642, 43.27277], - [145.322891, 43.272018], - [145.323761, 43.277252], - [145.329636, 43.279449], - [145.335861, 43.27887], - [145.346649, 43.273903], - [145.356537, 43.27243], - [145.378647, 43.264755], - [145.383835, 43.260326], - [145.387939, 43.260555], - [145.409668, 43.261166], - [145.440125, 43.258286], - [145.451263, 43.25972], - [145.459167, 43.257202], - [145.475159, 43.265934], - [145.481842, 43.266697], - [145.487503, 43.263847], - [145.489578, 43.25684], - [145.491608, 43.255344], - [145.507568, 43.2519], - [145.514175, 43.234524], - [145.513641, 43.2295], - [145.5103, 43.226471], - [145.509125, 43.225395], - [145.511444, 43.223656], - [145.513672, 43.224117], - [145.522675, 43.225994], - [145.529922, 43.234993], - [145.530624, 43.238628], - [145.513, 43.26445], - [145.503464, 43.260406], - [145.49823, 43.261395], - [145.495468, 43.264999], - [145.50589, 43.277264], - [145.505203, 43.279598], - [145.514862, 43.293514], - [145.521545, 43.294277], - [145.524979, 43.297066], - [145.522949, 43.301548], - [145.528366, 43.305138], - [145.530441, 43.309841], - [145.535355, 43.30864], - [145.537796, 43.308041], - [145.551743, 43.315044], - [145.548676, 43.318665], - [145.550385, 43.319946], - [145.564529, 43.322803], - [145.575668, 43.326981], - [145.579193, 43.333435], - [145.58815, 43.337738], - [145.583908, 43.342121], - [145.598465, 43.351612], - [145.604767, 43.351704], - [145.617493, 43.358772], - [145.623596, 43.36002], - [145.626526, 43.363754], - [145.636169, 43.368477], - [145.649139, 43.383411], - [145.653442, 43.388367], - [145.667068, 43.389175], - [145.671326, 43.385017], - [145.702103, 43.381596], - [145.729736, 43.383862], - [145.733902, 43.390278], - [145.740891, 43.388023], - [145.750244, 43.387238], - [145.755096, 43.388329], - [145.753754, 43.39323], - [145.756485, 43.395138], - [145.767471, 43.394939], - [145.766937, 43.392906], - [145.761826, 43.389534], - [145.763245, 43.388069], - [145.769943, 43.388821], - [145.776123, 43.385002], - [145.78035, 43.385513], - [145.783768, 43.385925], - [145.806961, 43.382236], - [145.814484, 43.384769], - [145.820007, 43.383518], - [145.820877, 43.38002], - [145.819244, 43.376675], - [145.808548, 43.371113], - [145.810852, 43.363621], - [145.80661, 43.359512], - [145.791168, 43.356533], - [145.791397, 43.352844], - [145.780746, 43.347736], - [145.776398, 43.342484], - [145.766708, 43.340305], - [145.75798, 43.335312], - [145.75029, 43.328419], - [145.746231, 43.328663], - [145.745499, 43.333302], - [145.740967, 43.332191], - [145.735214, 43.325642], - [145.72876, 43.324188], - [145.724838, 43.328556], - [145.720932, 43.330166], - [145.714279, 43.329643], - [145.701492, 43.322128], - [145.685043, 43.318275], - [145.679687, 43.315376], - [145.681351, 43.310455], - [145.677979, 43.308357], - [145.662247, 43.313877], - [145.644989, 43.314201], - [145.63446, 43.312752], - [145.61557, 43.306736], - [145.609848, 43.303165], - [145.613708, 43.295361], - [145.598907, 43.289333], - [145.598663, 43.281307], - [145.595718, 43.277344], - [145.590195, 43.2756], - [145.583893, 43.28125], - [145.577972, 43.281593], - [145.570236, 43.279747], - [145.56546, 43.276348], - [145.564301, 43.274349], - [145.567017, 43.267529], - [145.566116, 43.26207], - [145.557678, 43.250843], - [145.558853, 43.241356], - [145.557205, 43.234791], - [145.550797, 43.224827], - [145.553101, 43.217113], - [145.558182, 43.214752], - [145.558548, 43.212433], - [145.553482, 43.209053], - [145.539032, 43.205982], - [145.533966, 43.202602], - [145.529953, 43.197323], - [145.530899, 43.194511], - [145.534973, 43.191517], - [145.535675, 43.186424], - [145.532639, 43.181545], - [145.528397, 43.179955], - [145.524994, 43.180382], - [145.515656, 43.183907], - [145.512741, 43.183155], - [145.506073, 43.176418], - [145.50795, 43.173553], - [145.516052, 43.173088], - [145.52449, 43.169846], - [145.520432, 43.158363], - [145.516418, 43.156067], - [145.499451, 43.152683], - [145.49971, 43.160938], - [145.50441, 43.163883], - [145.505356, 43.166813], - [145.504547, 43.167847], - [145.501221, 43.172104], - [145.492737, 43.177876], - [145.479126, 43.18256], - [145.441208, 43.182663], - [145.374573, 43.178173], - [145.353653, 43.17292], - [145.345627, 43.174061], - [145.343231, 43.172157], - [145.3405, 43.169987], - [145.333847, 43.169437], - [145.314972, 43.162689], - [145.30661, 43.166599], - [145.291245, 43.166538], - [145.283295, 43.162388], - [145.245667, 43.150005], - [145.221954, 43.1357], - [145.202423, 43.131493], - [145.190201, 43.131474], - [145.189651, 43.13163], - [145.181976, 43.133762], - [145.173996, 43.141548], - [145.165939, 43.142445], - [145.152557, 43.14019], - [145.138855, 43.134739], - [145.126129, 43.126472], - [145.118378, 43.124138], - [145.115219, 43.120865], - [145.110901, 43.112144], - [145.109634, 43.10257], - [145.11087, 43.086891], - [145.114685, 43.081173], - [145.121475, 43.077133], - [145.129395, 43.075092], - [145.13826, 43.075802], - [145.161896, 43.077686], - [145.170303, 43.068043], - [145.160126, 43.069519], - [145.152542, 43.068783], - [145.147598, 43.066296], - [145.152634, 43.063496], - [145.151855, 43.061932], - [145.128067, 43.061848], - [145.124664, 43.062263], - [145.123322, 43.064404], - [145.125732, 43.066566], - [145.125031, 43.068901], - [145.120499, 43.070526], - [145.107071, 43.070793], - [145.099396, 43.069141], - [145.094406, 43.066196], - [145.08667, 43.057663], - [145.091324, 43.050983], - [145.087341, 43.048672], - [145.086945, 43.041576], - [145.084778, 43.038708], - [145.078888, 43.036041], - [145.0681, 43.034554], - [145.060974, 43.031952], - [145.047318, 43.023502], - [145.034119, 43.022831], - [145.029526, 43.023766], - [145.025131, 43.026756], - [145.021606, 43.032227], - [145.022964, 43.03973], - [145.015305, 43.041286], - [145.017029, 43.046017], - [145.007065, 43.049759], - [145, 43.049343], - [144.998901, 43.049278], - [144.990921, 43.05085], - [144.987686, 43.046658], - [145, 43.042553], - [145.001617, 43.042015], - [145.004639, 43.037724], - [145, 43.033413], - [144.998093, 43.031643], - [145, 43.031494], - [145.007095, 43.030933], - [145.004196, 43.023743], - [145.006973, 43.023365], - [145.013702, 43.028286], - [145.026199, 43.018665], - [145.022552, 43.013348], - [145.024918, 43.008862], - [145.029419, 43.007011], - [145.0298, 43.004467], - [145.025116, 43.001274], - [145.023315, 42.995861], - [145.011749, 42.991711], - [145.009399, 42.990864], - [145, 42.989235], - [144.993179, 42.988052], - [144.96727, 42.978638], - [144.961594, 42.97802], - [144.954941, 42.980644], - [144.952866, 42.981468], - [144.944229, 42.979397], - [144.934692, 42.984032], - [144.924759, 42.984783], - [144.919907, 42.979759], - [144.917419, 42.979889], - [144.915527, 42.982975], - [144.906448, 42.982761], - [144.900055, 42.984474], - [144.888733, 42.983688], - [144.881256, 42.980637], - [144.876724, 42.98225], - [144.864868, 42.995262], - [144.856552, 42.996613], - [144.855225, 42.998978], - [144.859009, 43.002682], - [144.858276, 43.004787], - [144.850571, 43.00909], - [144.835663, 43.006878], - [144.835464, 43.01125], - [144.840027, 43.016521], - [144.834991, 43.025963], - [144.838547, 43.030373], - [144.852509, 43.039059], - [144.857758, 43.038326], - [144.862106, 43.034889], - [144.866013, 43.026649], - [144.88765, 43.017719], - [144.904556, 43.014771], - [144.910217, 43.01516], - [144.915451, 43.017639], - [144.921295, 43.023075], - [144.927246, 43.02322], - [144.933121, 43.019238], - [144.936951, 43.026611], - [144.93634, 43.029858], - [144.939087, 43.032467], - [144.945892, 43.034866], - [144.946808, 43.037964], - [144.947754, 43.041195], - [144.947052, 43.043526], - [144.94252, 43.041931], - [144.939651, 43.044605], - [144.938522, 43.049026], - [144.922562, 43.055374], - [144.912552, 43.061867], - [144.900681, 43.065243], - [144.878098, 43.064587], - [144.865585, 43.067764], - [144.863953, 43.070374], - [144.868484, 43.075188], - [144.862549, 43.081696], - [144.861404, 43.086113], - [144.857788, 43.084236], - [144.856476, 43.080402], - [144.85878, 43.075005], - [144.859711, 43.071739], - [144.854797, 43.066257], - [144.855728, 43.056339], - [144.853653, 43.050938], - [144.854935, 43.048115], - [144.862503, 43.045429], - [144.857208, 43.042488], - [144.821182, 43.051468], - [144.80809, 43.051914], - [144.792618, 43.04958], - [144.786514, 43.04866], - [144.780991, 43.046417], - [144.781265, 43.042732], - [144.766998, 43.03405], - [144.755447, 43.024311], - [144.722748, 42.988792], - [144.720963, 42.983147], - [144.723099, 42.975922], - [144.728317, 42.968311], - [144.747559, 42.953793], - [144.749619, 42.953186], - [144.755157, 42.951569], - [144.761581, 42.946877], - [144.782547, 42.937542], - [144.784164, 42.934933], - [144.780319, 42.930538], - [144.759384, 42.930233], - [144.68924, 42.934258], - [144.674194, 42.936852], - [144.661774, 42.941582], - [144.658218, 42.942936], - [144.637695, 42.943733], - [144.629044, 42.948067], - [144.591736, 42.946255], - [144.569733, 42.948032], - [144.559677, 42.947151], - [144.548798, 42.944244], - [144.532532, 42.947338], - [144.524734, 42.947262], - [144.509842, 42.944778], - [144.496796, 42.93853], - [144.480621, 42.93565], - [144.471024, 42.940014], - [144.450272, 42.941708], - [144.443253, 42.946869], - [144.435013, 42.9491], - [144.423508, 42.949425], - [144.417862, 42.952679], - [144.405899, 42.95509], - [144.399887, 42.957672], - [144.392059, 42.96447], - [144.373352, 42.964676], - [144.363602, 42.967434], - [144.36264, 42.970692], - [144.364395, 42.972904], - [144.372757, 42.972046], - [144.374786, 42.977459], - [144.368576, 42.981422], - [144.368515, 42.98418], - [144.362335, 42.992046], - [144.34874, 42.99728], - [144.296738, 42.999046], - [144.266418, 42.998631], - [144.265701, 42.997517], - [144.198959, 42.987534], - [144.150009, 42.973488], - [144.126709, 42.963539], - [144.1129, 42.955215], - [144.074005, 42.945274], - [144.046783, 42.93663], - [144.013077, 42.921158], - [143.983139, 42.90184], - [143.934708, 42.877365], - [143.919769, 42.869759], - [143.902237, 42.856991], - [143.879425, 42.844219], - [143.83902, 42.813816], - [143.810257, 42.792149], - [143.764526, 42.760151], - [143.738693, 42.743584], - [143.723129, 42.731167], - [143.714249, 42.728786], - [143.710739, 42.72366], - [143.67569, 42.695766], - [143.669907, 42.693256], - [143.665573, 42.697563], - [143.661453, 42.696587], - [143.651276, 42.69334], - [143.649887, 42.691334], - [143.66507, 42.690933], - [143.661011, 42.686516], - [143.622437, 42.656693], - [143.607666, 42.641933], - [143.575012, 42.615753], - [143.563843, 42.604252], - [143.512939, 42.551769], - [143.483261, 42.522694], - [143.466629, 42.502491], - [143.412537, 42.438602], - [143.371628, 42.37624], - [143.348724, 42.340454], - [143.334549, 42.309826], - [143.323273, 42.294212], - [143.325409, 42.280605], - [143.324265, 42.277439], - [143.314957, 42.250061], - [143.315628, 42.242012], - [143.325424, 42.223293], - [143.32782, 42.209217], - [143.338303, 42.200329], - [143.340942, 42.194035], - [143.341019, 42.182114], - [143.338882, 42.173485], - [143.330963, 42.158443], - [143.330017, 42.156635], - [143.324814, 42.126122], - [143.322205, 42.119576], - [143.32724, 42.112503], - [143.326691, 42.108856], - [143.321457, 42.100117], - [143.320236, 42.086868], - [143.312271, 42.069527], - [143.318192, 42.053024], - [143.311676, 42.04319], - [143.299301, 42.037479], - [143.289108, 42.023434], - [143.274673, 42.014362], - [143.271896, 42.010899], - [143.266281, 42.00391], - [143.251114, 41.970566], - [143.245316, 41.944199], - [143.246185, 41.934311], - [143.250931, 41.922897], - [143.248322, 41.920708], - [143.24115, 41.9235], - [143.234131, 41.932938], - [143.221588, 41.943504], - [143.21759, 41.946861], - [143.200348, 41.954849], - [143.166992, 41.979023], - [143.16275, 41.984451], - [143.154694, 42.001713], - [143.137085, 42.023228], - [143.125854, 42.029831], - [143.1129, 42.035172], - [143.111801, 42.035622], - [143.096802, 42.045803], - [143.080887, 42.051201], - [143.035828, 42.071861], - [143.006363, 42.081863], - [142.99971, 42.08852], - [142.97937, 42.097271], - [142.964462, 42.114075], - [142.958466, 42.116577], - [142.946243, 42.117699], - [142.936615, 42.121017], - [142.928543, 42.119926], - [142.924576, 42.115482], - [142.919128, 42.116821], - [142.918762, 42.12096], - [142.914948, 42.123844], - [142.9021, 42.12524], - [142.874634, 42.128231], - [142.847977, 42.13488], - [142.840591, 42.133831], - [142.833694, 42.132851], - [142.822388, 42.133926], - [142.808563, 42.144253], - [142.782425, 42.154537], - [142.766815, 42.166065], - [142.759338, 42.169754], - [142.73912, 42.17112], - [142.726318, 42.178425], - [142.720566, 42.179989], - [142.703674, 42.180779], - [142.694733, 42.185658], - [142.672806, 42.18959], - [142.639404, 42.213367], - [142.619858, 42.221336], - [142.597488, 42.233974], - [142.580246, 42.239338], - [142.55307, 42.243641], - [142.514847, 42.259743], - [142.511002, 42.26017], - [142.497696, 42.261654], - [142.488037, 42.265163], - [142.47998, 42.269997], - [142.453857, 42.293491], - [142.441269, 42.300064], - [142.407394, 42.30637], - [142.384781, 42.315762], - [142.371033, 42.323967], - [142.35849, 42.331676], - [142.335861, 42.341286], - [142.307037, 42.356117], - [142.276398, 42.377865], - [142.261093, 42.392288], - [142.230377, 42.413109], - [142.22699, 42.419392], - [142.203873, 42.438156], - [142.175278, 42.453171], - [142.163452, 42.455608], - [142.119904, 42.464573], - [142.080429, 42.466579], - [142.068161, 42.474705], - [142.042923, 42.476994], - [142.033478, 42.479767], - [142.022293, 42.491524], - [142.011459, 42.497772], - [141.989532, 42.511185], - [141.979752, 42.513737], - [141.9552, 42.537521], - [141.915222, 42.555973], - [141.914719, 42.558506], - [141.916916, 42.559139], - [141.922577, 42.554638], - [141.927841, 42.554501], - [141.932114, 42.559662], - [141.936234, 42.561844], - [141.937958, 42.565464], - [141.925644, 42.560516], - [141.920425, 42.561337], - [141.913559, 42.566784], - [141.906876, 42.569477], - [141.90097, 42.575813], - [141.896133, 42.578232], - [141.876572, 42.583771], - [141.866882, 42.5886], - [141.816269, 42.606369], - [141.816025, 42.60775], - [141.813202, 42.606903], - [141.789551, 42.611614], - [141.766098, 42.613796], - [141.738174, 42.619976], - [141.691971, 42.626354], - [141.683167, 42.626404], - [141.641785, 42.626621], - [141.635345, 42.628376], - [141.633575, 42.630478], - [141.634964, 42.633884], - [141.630066, 42.642704], - [141.627579, 42.642532], - [141.62587, 42.638905], - [141.626984, 42.628571], - [141.622223, 42.625935], - [141.578018, 42.620995], - [141.550964, 42.613895], - [141.522583, 42.606441], - [141.431564, 42.575909], - [141.417603, 42.567276], - [141.40004, 42.561237], - [141.39772, 42.560234], - [141.366364, 42.5466], - [141.346619, 42.532894], - [141.345154, 42.532917], - [141.3479, 42.538246], - [141.347, 42.539463], - [141.339813, 42.53577], - [141.334534, 42.531307], - [141.340439, 42.531143], - [141.340057, 42.530201], - [141.324951, 42.523182], - [141.284698, 42.496746], - [141.277405, 42.491627], - [141.262314, 42.485058], - [141.236938, 42.466785], - [141.212296, 42.451466], - [141.200409, 42.447346], - [141.18985, 42.44595], - [141.173218, 42.438255], - [141.157028, 42.434673], - [141.151062, 42.431808], - [141.145889, 42.427902], - [141.10701, 42.398514], - [141.069916, 42.364819], - [141.060562, 42.356316], - [141.058273, 42.352467], - [141.060303, 42.348305], - [141.059006, 42.346497], - [141.048508, 42.346001], - [141.042526, 42.342216], - [141.040207, 42.337681], - [141.043182, 42.33419], - [141.041595, 42.332615], - [141.034195, 42.332748], - [141.026917, 42.326927], - [141.013168, 42.3116], - [141.014786, 42.304241], - [141.011902, 42.300858], - [141.003113, 42.29575], - [140.994812, 42.296352], - [140.977448, 42.30307], - [140.972839, 42.303383], - [140.968231, 42.301582], - [140.967224, 42.301189], - [140.964111, 42.309944], - [140.958328, 42.312565], - [140.944794, 42.313484], - [140.930206, 42.330452], - [140.931595, 42.335239], - [140.943039, 42.336414], - [140.952179, 42.342899], - [140.964722, 42.339478], - [140.963058, 42.335842], - [140.969131, 42.33276], - [140.971817, 42.320114], - [140.975479, 42.31868], - [140.984634, 42.325386], - [140.987045, 42.338497], - [140.987228, 42.339539], - [141.011734, 42.344143], - [141.006302, 42.347446], - [140.993881, 42.34515], - [140.988052, 42.34594], - [140.98024, 42.352486], - [140.976852, 42.352776], - [140.972122, 42.349651], - [140.966431, 42.354561], - [140.952286, 42.356178], - [140.948105, 42.360832], - [140.931793, 42.361801], - [140.92334, 42.367897], - [140.91716, 42.367775], - [140.907745, 42.372513], - [140.90509, 42.376678], - [140.905914, 42.386421], - [140.906052, 42.388115], - [140.893616, 42.42588], - [140.885193, 42.433578], - [140.871872, 42.452805], - [140.861908, 42.460526], - [140.852753, 42.46434], - [140.842911, 42.466335], - [140.84021, 42.469124], - [140.840378, 42.474621], - [140.837265, 42.473755], - [140.835617, 42.470116], - [140.833115, 42.469471], - [140.824081, 42.477631], - [140.816833, 42.483471], - [140.808594, 42.487038], - [140.805939, 42.491432], - [140.797409, 42.495689], - [140.789124, 42.498341], - [140.781326, 42.495716], - [140.782074, 42.511276], - [140.79068, 42.509079], - [140.786194, 42.514874], - [140.776947, 42.515705], - [140.774841, 42.517799], - [140.776093, 42.529461], - [140.773758, 42.534306], - [140.766815, 42.540367], - [140.743011, 42.553787], - [140.740921, 42.554966], - [140.7258, 42.568024], - [140.723053, 42.569439], - [140.712845, 42.569592], - [140.710754, 42.572144], - [140.711502, 42.577171], - [140.70694, 42.579987], - [140.695236, 42.582222], - [140.671127, 42.583496], - [140.659653, 42.582977], - [140.653091, 42.580551], - [140.648148, 42.581081], - [140.631012, 42.576977], - [140.607574, 42.568382], - [140.597916, 42.569359], - [140.597092, 42.569447], - [140.59108, 42.564262], - [140.584564, 42.563667], - [140.576843, 42.56469], - [140.540436, 42.581676], - [140.531799, 42.582935], - [140.528748, 42.584808], - [140.51976, 42.584473], - [140.514053, 42.579052], - [140.50264, 42.580807], - [140.493958, 42.579777], - [140.482864, 42.581982], - [140.476349, 42.581608], - [140.463242, 42.57674], - [140.450348, 42.566895], - [140.431107, 42.552185], - [140.389404, 42.512402], - [140.343948, 42.454098], - [140.314102, 42.399883], - [140.302887, 42.379471], - [140.28566, 42.320133], - [140.281906, 42.286747], - [140.282791, 42.277164], - [140.283936, 42.264973], - [140.293427, 42.247238], - [140.302216, 42.240498], - [140.312576, 42.23534], - [140.336166, 42.23003], - [140.349289, 42.224606], - [140.361237, 42.221718], - [140.384888, 42.220287], - [140.392532, 42.217674], - [140.407425, 42.209248], - [140.412186, 42.201633], - [140.425858, 42.194363], - [140.430618, 42.186977], - [140.441605, 42.183403], - [140.444061, 42.181129], - [140.447632, 42.17783], - [140.455002, 42.177052], - [140.46167, 42.172844], - [140.468201, 42.162914], - [140.490295, 42.148201], - [140.497971, 42.14764], - [140.508255, 42.140408], - [140.511749, 42.132576], - [140.519608, 42.126747], - [140.546982, 42.115154], - [140.564377, 42.110565], - [140.572998, 42.109825], - [140.588867, 42.107246], - [140.598724, 42.108253], - [140.613861, 42.111702], - [140.639328, 42.122097], - [140.648926, 42.12516], - [140.659393, 42.125923], - [140.686066, 42.123466], - [140.69754, 42.127419], - [140.708191, 42.13504], - [140.713425, 42.135422], - [140.720428, 42.133022], - [140.735779, 42.121113], - [140.762589, 42.112682], - [140.768555, 42.095646], - [140.770935, 42.091644], - [140.774719, 42.085243], - [140.782166, 42.07711], - [140.791565, 42.073071], - [140.807831, 42.072582], - [140.809555, 42.068661], - [140.805573, 42.058193], - [140.806641, 42.052681], - [140.814789, 42.047741], - [140.818497, 42.037605], - [140.831985, 42.026627], - [140.842575, 42.021645], - [140.859406, 42.009689], - [140.867569, 42.00589], - [140.878189, 42.004158], - [140.880081, 42.003849], - [140.902328, 41.988594], - [140.911011, 41.981579], - [140.919739, 41.966316], - [140.934402, 41.954845], - [140.939148, 41.939651], - [140.943314, 41.93523], - [140.947845, 41.933319], - [140.951004, 41.93647], - [140.953445, 41.936199], - [140.957596, 41.9217], - [140.963226, 41.915649], - [140.998413, 41.899326], - [141.004272, 41.896606], - [141.020035, 41.891743], - [141.028564, 41.890446], - [141.043015, 41.892014], - [141.062714, 41.885929], - [141.068817, 41.885357], - [141.07222, 41.886669], - [141.076111, 41.883621], - [141.079773, 41.883553], - [141.081665, 41.885349], - [141.085007, 41.884602], - [141.092178, 41.878971], - [141.113419, 41.873306], - [141.12471, 41.863247], - [141.136124, 41.857304], - [141.145264, 41.85535], - [141.153748, 41.853531], - [141.156967, 41.84935], - [141.149933, 41.840324], - [141.151855, 41.833649], - [141.155685, 41.829453], - [141.173721, 41.820175], - [141.189209, 41.817123], - [141.194138, 41.800541], - [141.192505, 41.797596], - [141.172012, 41.78838], - [141.165924, 41.780258], - [141.144272, 41.778553], - [141.140182, 41.778233], - [141.137009, 41.783562], - [141.13092, 41.784363], - [141.120789, 41.782726], - [141.112381, 41.778305], - [141.106705, 41.772915], - [141.097336, 41.757751], - [141.091461, 41.755573], - [141.087692, 41.752438], - [141.082718, 41.740166], - [141.07338, 41.734848], - [141.06134, 41.730949], - [141.057678, 41.721626], - [141.047348, 41.72319], - [141.04184, 41.722607], - [141.037048, 41.716282], - [141.029434, 41.716648], - [141.025208, 41.71833], - [141.020309, 41.717731], - [141.009079, 41.710148], - [140.994781, 41.711552], - [140.979095, 41.707706], - [140.968704, 41.707432], - [140.961746, 41.709389], - [140.95607, 41.71315], - [140.947571, 41.724747], - [140.939209, 41.730843], - [140.89296, 41.746517], - [140.856262, 41.7556], - [140.831894, 41.758064], - [140.780075, 41.772636], - [140.760498, 41.772026], - [140.750351, 41.76944], - [140.734879, 41.762356], - [140.729889, 41.758537], - [140.725113, 41.751514], - [140.730438, 41.744793], - [140.726074, 41.741886], - [140.711624, 41.738216], - [140.702499, 41.739269], - [140.699692, 41.748928], - [140.696442, 41.752869], - [140.697327, 41.763386], - [140.700714, 41.768475], - [140.705612, 41.775852], - [140.709946, 41.777847], - [140.718689, 41.773823], - [140.718231, 41.768105], - [140.721863, 41.766903], - [140.729385, 41.773884], - [140.730103, 41.777767], - [140.727753, 41.781467], - [140.732147, 41.785748], - [140.731369, 41.790337], - [140.725128, 41.797302], - [140.71933, 41.79739], - [140.71788, 41.800159], - [140.720718, 41.80378], - [140.717453, 41.807495], - [140.702347, 41.813675], - [140.681381, 41.819027], - [140.672546, 41.820076], - [140.659378, 41.819355], - [140.649536, 41.817211], - [140.633423, 41.808517], - [140.628372, 41.802181], - [140.626038, 41.794891], - [140.62854, 41.784779], - [140.622559, 41.778229], - [140.619858, 41.768192], - [140.613281, 41.761421], - [140.610657, 41.754131], - [140.60968, 41.739494], - [140.606873, 41.737705], - [140.595856, 41.736717], - [140.593369, 41.734463], - [140.588455, 41.733616], - [140.584763, 41.730705], - [140.581604, 41.728218], - [140.573624, 41.726501], - [140.551651, 41.713985], - [140.532043, 41.69846], - [140.50853, 41.697174], - [140.497147, 41.693207], - [140.487717, 41.694935], - [140.474274, 41.694195], - [140.465363, 41.69088], - [140.456985, 41.684807], - [140.447266, 41.673489], - [140.442825, 41.66576], - [140.442093, 41.660049], - [140.436935, 41.593044], - [140.439133, 41.568756], - [140.438034, 41.560299], - [140.442856, 41.557949], - [140.44574, 41.551273], - [140.436768, 41.531017], - [140.428772, 41.527], - [140.416367, 41.516399], - [140.378525, 41.511375], - [140.371872, 41.512833], - [140.366211, 41.51054], - [140.361435, 41.50861], - [140.354004, 41.50206], - [140.33815, 41.50042], - [140.333801, 41.496353], - [140.292526, 41.485161], - [140.268311, 41.475368], - [140.263458, 41.460545], - [140.255783, 41.456512], - [140.24762, 41.442413], - [140.24472, 41.43845], - [140.22702, 41.414257], - [140.224731, 41.4049], - [140.21521, 41.399738], - [140.208725, 41.393631], - [140.205063, 41.392296], - [140.1987, 41.39328], - [140.189362, 41.39727], - [140.174408, 41.410244], - [140.15303, 41.420765], - [140.141815, 41.421791], - [140.134262, 41.424385], - [140.128784, 41.424213], - [140.119003, 41.420647], - [140.106537, 41.419399], - [140.098267, 41.415817], - [140.092499, 41.415874], - [140.081604, 41.418266], - [140.080978, 41.418816], - [140.067825, 41.430298], - [140.052765, 41.438221], - [140.031799, 41.457413], - [140.029602, 41.47208], - [140.020355, 41.483376], - [140.005493, 41.525852], - [140, 41.5336], - [139.98851, 41.549805], - [139.985443, 41.568829], - [139.984711, 41.585999], - [139.983871, 41.605461], - [139.99231, 41.620266], - [139.994064, 41.635586], - [140, 41.639656], - [140, 41.640846], - [140.007309, 41.663624], - [140.008072, 41.674145], - [140.013062, 41.681194], - [140.016586, 41.691463], - [140.026855, 41.704647], - [140.033417, 41.714661], - [140.03688, 41.71677], - [140.040817, 41.71917], - [140.044586, 41.725544], - [140.051392, 41.731663], - [140.065842, 41.75602], - [140.073624, 41.76556], - [140.075546, 41.770576], - [140.074966, 41.790955], - [140.071747, 41.799686], - [140.073639, 41.803101], - [140.085937, 41.807564], - [140.092331, 41.806126], - [140.099686, 41.807201], - [140.112152, 41.803417], - [140.118195, 41.806988], - [140.118637, 41.807243], - [140.123032, 41.814297], - [140.127869, 41.846069], - [140.12413, 41.859612], - [140.124802, 41.863724], - [140.128235, 41.867126], - [140.135635, 41.870712], - [140.137024, 41.879856], - [140.141495, 41.890114], - [140.140167, 41.901802], - [140.145859, 41.912045], - [140.144577, 41.926022], - [140.131393, 41.960495], - [140.134262, 41.967106], - [140.129654, 41.984093], - [140.123688, 41.993538], - [140.119156, 41.997246], - [140.107666, 42.006516], - [140.108368, 42.012001], - [140.0979, 42.027901], - [140.084518, 42.03421], - [140.087967, 42.039211], - [140.083084, 42.043396], - [140.075272, 42.050095], - [140.069946, 42.062275], - [140.054642, 42.083481], - [140.024948, 42.108707], - [140.017624, 42.112206], - [140.00444, 42.113697], - [140, 42.116608], - [139.989227, 42.123672], - [139.969086, 42.123642], - [139.944077, 42.123596], - [139.927841, 42.127392], - [139.923279, 42.130634], - [139.916382, 42.142822], - [139.901901, 42.161938], - [139.898346, 42.172497], - [139.886826, 42.183807], - [139.882004, 42.192085], - [139.883026, 42.199173], - [139.879425, 42.205383], - [139.871658, 42.208759], - [139.864426, 42.211906], - [139.856735, 42.211277], - [139.849686, 42.213619], - [139.837997, 42.21439], - [139.803635, 42.222191], - [139.79541, 42.229343], - [139.776062, 42.257866], - [139.77919, 42.263111], - [139.78447, 42.265823], - [139.786987, 42.271072], - [139.781036, 42.285664], - [139.77771, 42.2938], - [139.770416, 42.302776], - [139.772079, 42.31284], - [139.776154, 42.318993], - [139.774384, 42.325188], - [139.782349, 42.347115], - [139.786407, 42.351208], - [139.795364, 42.353207], - [139.802826, 42.357277], - [139.806595, 42.36343], - [139.817825, 42.373196], - [139.822968, 42.389645], - [139.829102, 42.386623], - [139.837952, 42.403503], - [139.844025, 42.419945], - [139.847809, 42.449451], - [139.850952, 42.455383], - [139.854462, 42.461998], - [139.849991, 42.475307], - [139.849197, 42.48539], - [139.84314, 42.495049], - [139.845993, 42.500523], - [139.843384, 42.513596], - [139.845657, 42.522049], - [139.840012, 42.539951], - [139.836578, 42.561954], - [139.832001, 42.566795], - [139.832993, 42.571369], - [139.829315, 42.575287], - [139.829178, 42.576019], - [139.823792, 42.603031], - [139.82637, 42.611485], - [139.831711, 42.617401], - [139.842621, 42.622818], - [139.846481, 42.633553], - [139.853348, 42.637165], - [139.856857, 42.645611], - [139.864395, 42.652882], - [139.869476, 42.66246], - [139.875061, 42.662876], - [139.882263, 42.668316], - [139.887238, 42.669193], - [139.900055, 42.676498], - [139.903488, 42.678455], - [139.910629, 42.679317], - [139.936478, 42.686897], - [139.947952, 42.687946], - [139.962494, 42.685535], - [139.971222, 42.6889], - [139.985779, 42.68763], - [139.992645, 42.690319], - [140, 42.688957], - [140.012131, 42.686714], - [140.024582, 42.689812], - [140.030441, 42.687927], - [140.034164, 42.688351], - [140.058548, 42.700039], - [140.063889, 42.70388], - [140.069046, 42.716198], - [140.084473, 42.729565], - [140.088516, 42.729755], - [140.095413, 42.734039], - [140.106613, 42.735535], - [140.111954, 42.739376], - [140.118164, 42.739777], - [140.121964, 42.743629], - [140.132233, 42.745819], - [140.145111, 42.753708], - [140.149536, 42.758472], - [140.15358, 42.776291], - [140.162643, 42.788303], - [140.187012, 42.820606], - [140.190475, 42.822632], - [140.19574, 42.822117], - [140.207352, 42.811462], - [140.229263, 42.803902], - [140.232254, 42.797916], - [140.241135, 42.791409], - [140.244568, 42.776031], - [140.250351, 42.769787], - [140.261673, 42.761875], - [140.264252, 42.766426], - [140.276672, 42.766289], - [140.287262, 42.768002], - [140.298203, 42.772003], - [140.305145, 42.777191], - [140.307205, 42.786785], - [140.306412, 42.823891], - [140.308044, 42.827534], - [140.317551, 42.836357], - [140.340546, 42.850746], - [140.343323, 42.853432], - [140.353882, 42.863644], - [140.365417, 42.879078], - [140.377884, 42.894501], - [140.380554, 42.902943], - [140.391327, 42.911743], - [140.396866, 42.922897], - [140.404388, 42.925095], - [140.419022, 42.938656], - [140.420334, 42.942074], - [140.433884, 42.948776], - [140.440094, 42.948013], - [140.469101, 42.963676], - [140.475876, 42.966419], - [140.496475, 42.974773], - [140.507263, 42.982876], - [140.516632, 42.983669], - [140.521683, 42.986576], - [140.532791, 43.007271], - [140.53392, 43.015499], - [140.531921, 43.023083], - [140.52919, 43.025867], - [140.522034, 43.026421], - [140.50499, 43.044281], - [140.501404, 43.050968], - [140.496521, 43.055382], - [140.494858, 43.059181], - [140.492371, 43.064827], - [140.465622, 43.081432], - [140.460388, 43.098217], - [140.447845, 43.109138], - [140.440338, 43.122284], - [140.430206, 43.129971], - [140.42662, 43.137341], - [140.403778, 43.149761], - [140.395111, 43.156322], - [140.387405, 43.158432], - [140.361862, 43.176373], - [140.352341, 43.184498], - [140.338715, 43.205498], - [140.327118, 43.218914], - [140.327042, 43.230137], - [140.335907, 43.249729], - [140.33194, 43.254581], - [140.332626, 43.257782], - [140.33696, 43.258781], - [140.340179, 43.259525], - [140.343826, 43.268871], - [140.335861, 43.27721], - [140.338776, 43.281528], - [140.347244, 43.282116], - [140.350433, 43.284828], - [140.353989, 43.304939], - [140.360764, 43.314018], - [140.357117, 43.318871], - [140.349091, 43.324692], - [140.345139, 43.33046], - [140.349884, 43.332466], - [140.358902, 43.328926], - [140.384232, 43.326565], - [140.390884, 43.329689], - [140.401215, 43.329109], - [140.408173, 43.331772], - [140.419312, 43.325909], - [140.42746, 43.325581], - [140.43663, 43.329361], - [140.455719, 43.341488], - [140.460037, 43.351967], - [140.466461, 43.358757], - [140.467484, 43.362179], - [140.46315, 43.364525], - [140.46228, 43.367512], - [140.464859, 43.370228], - [140.484985, 43.37249], - [140.496536, 43.370281], - [140.504593, 43.366741], - [140.50531, 43.365627], - [140.510345, 43.357735], - [140.52153, 43.353695], - [140.531631, 43.356537], - [140.531464, 43.349438], - [140.533859, 43.345284], - [140.540359, 43.341534], - [140.543701, 43.337139], - [140.550522, 43.334297], - [140.5569, 43.326195], - [140.570206, 43.319374], - [140.579346, 43.309174], - [140.591141, 43.304886], - [140.59761, 43.300217], - [140.601974, 43.299469], - [140.603745, 43.295551], - [140.606827, 43.293221], - [140.614319, 43.292427], - [140.61969, 43.293953], - [140.626511, 43.291569], - [140.633133, 43.293079], - [140.636337, 43.2841], - [140.647278, 43.283028], - [140.650604, 43.278629], - [140.64386, 43.272312], - [140.6418, 43.265244], - [140.644547, 43.262684], - [140.650131, 43.261002], - [140.6707, 43.257267], - [140.703018, 43.248322], - [140.707718, 43.248936], - [140.712646, 43.245659], - [140.721069, 43.245075], - [140.729095, 43.240601], - [140.737198, 43.239792], - [140.741364, 43.231941], - [140.749161, 43.230679], - [140.752472, 43.226505], - [140.76239, 43.223148], - [140.777756, 43.224056], - [140.780121, 43.219437], - [140.777863, 43.206188], - [140.778259, 43.205692], - [140.7836, 43.198772], - [140.800262, 43.190723], - [140.821548, 43.191532], - [140.839142, 43.194458], - [140.848618, 43.197514], - [140.852966, 43.196754], - [140.860565, 43.199837], - [140.856323, 43.204487], - [140.861389, 43.206238], - [140.860809, 43.207851], - [140.854279, 43.209332], - [140.853714, 43.210945], - [140.857529, 43.213173], - [140.868134, 43.212315], - [140.871063, 43.205395], - [140.876953, 43.203693], - [140.900894, 43.209255], - [140.91806, 43.208054], - [140.920761, 43.215393], - [140.922501, 43.220116], - [140.92688, 43.220272], - [140.93103, 43.22295], - [140.945435, 43.222939], - [140.953934, 43.224854], - [140.966354, 43.231743], - [140.977097, 43.234993], - [140.998474, 43.237598], - [141.01532, 43.236389], - [141.019058, 43.235634], - [141.018265, 43.230381], - [141.025192, 43.222012], - [141.017395, 43.213448], - [141.016907, 43.207729], - [141.013062, 43.205048], - [141.007416, 43.20446], - [141.007019, 43.201946], - [141.009415, 43.198292], - [141.014175, 43.191055], - [141.031647, 43.180439], - [141.041641, 43.180035], - [141.045914, 43.17675], - [141.067139, 43.175911], - [141.096558, 43.167358], - [141.132019, 43.153416], - [141.144104, 43.150215], - [141.157654, 43.143948], - [141.158569, 43.143528], - [141.168549, 43.143108], - [141.178955, 43.14566], - [141.192307, 43.15205], - [141.208084, 43.156326], - [141.261429, 43.179333], - [141.277695, 43.187943], - [141.303131, 43.205711], - [141.32074, 43.218002], - [141.365631, 43.262894], - [141.375687, 43.263832], - [141.38118, 43.276089], - [141.394058, 43.28521], - [141.401627, 43.294445], - [141.410706, 43.310516], - [141.416183, 43.314297], - [141.424744, 43.324883], - [141.421616, 43.340755], - [141.422775, 43.346455], - [141.427612, 43.350018], - [141.429688, 43.354786], - [141.42659, 43.371803], - [141.431259, 43.394382], - [141.42981, 43.413425] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "青森県", - "name": "Aomori", - "ISOCODE": "JP-02", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:15:55+0100", - "cartodb_id": 14 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [140.883331, 40.507874], - [140.862549, 40.503834], - [140.852051, 40.504627], - [140.841919, 40.500778], - [140.830902, 40.493504], - [140.820801, 40.489063], - [140.814529, 40.480835], - [140.8134, 40.46978], - [140.811371, 40.458736], - [140.808716, 40.447262], - [140.798187, 40.4468], - [140.790512, 40.454277], - [140.772766, 40.451065], - [140.76355, 40.444218], - [140.755951, 40.436218], - [140.739014, 40.437092], - [140.736176, 40.427147], - [140.718948, 40.424934], - [140.708038, 40.424934], - [140.697662, 40.425274], - [140.691071, 40.416603], - [140.679382, 40.410133], - [140.668167, 40.404922], - [140.657516, 40.40102], - [140.647202, 40.400936], - [140.638412, 40.407257], - [140.624969, 40.421101], - [140.613403, 40.422169], - [140.604752, 40.428768], - [140.594086, 40.433578], - [140.585571, 40.42728], - [140.575394, 40.423588], - [140.565247, 40.423832], - [140.557587, 40.416622], - [140.563843, 40.407818], - [140.553268, 40.399246], - [140.543167, 40.400993], - [140.533112, 40.417557], - [140.532349, 40.428257], - [140.521286, 40.42749], - [140.51004, 40.426929], - [140.499969, 40.433846], - [140.489166, 40.437916], - [140.484695, 40.447124], - [140.474594, 40.450764], - [140.463364, 40.453602], - [140.4534, 40.451244], - [140.444077, 40.447067], - [140.440445, 40.456684], - [140.436829, 40.466228], - [140.440826, 40.475582], - [140.430649, 40.479694], - [140.414124, 40.473457], - [140.402222, 40.474957], - [140.394684, 40.48246], - [140.385284, 40.477467], - [140.374969, 40.473705], - [140.364151, 40.475342], - [140.357086, 40.468124], - [140.347137, 40.454102], - [140.345261, 40.444248], - [140.338562, 40.436668], - [140.326126, 40.436577], - [140.316162, 40.434345], - [140.305771, 40.440022], - [140.295151, 40.443596], - [140.284195, 40.44305], - [140.274002, 40.439365], - [140.2621, 40.438614], - [140.251373, 40.437794], - [140.236816, 40.432335], - [140.2267, 40.428829], - [140.216202, 40.432362], - [140.205704, 40.433441], - [140.195175, 40.434162], - [140.185379, 40.439533], - [140.174713, 40.435509], - [140.163742, 40.435966], - [140.150757, 40.435406], - [140.135483, 40.435375], - [140.124969, 40.43375], - [140.110413, 40.43449], - [140.10318, 40.443134], - [140.099518, 40.453579], - [140.090851, 40.459614], - [140.081772, 40.464169], - [140.071838, 40.466076], - [140.061386, 40.464569], - [140.052734, 40.458622], - [140.041992, 40.458153], - [140.032837, 40.45248], - [140.025787, 40.440609], - [140.025482, 40.42939], - [140.019669, 40.418598], - [140.009918, 40.424656], - [139.999969, 40.431526], - [139.981735, 40.425362], - [139.9711, 40.42635], - [139.962051, 40.431999], - [139.951141, 40.428413], - [139.944534, 40.426834], - [139.946548, 40.42955], - [139.944916, 40.441456], - [139.947998, 40.447147], - [139.946304, 40.454708], - [139.94838, 40.474586], - [139.953979, 40.489178], - [139.951797, 40.504749], - [139.953125, 40.514114], - [139.952698, 40.51741], - [139.949341, 40.542736], - [139.944992, 40.552376], - [139.93718, 40.551071], - [139.935165, 40.556347], - [139.938812, 40.560661], - [139.930054, 40.577431], - [139.925613, 40.580673], - [139.922333, 40.581612], - [139.909134, 40.580807], - [139.904297, 40.57856], - [139.892029, 40.580029], - [139.878235, 40.578766], - [139.873764, 40.58086], - [139.86647, 40.588482], - [139.862534, 40.592609], - [139.866165, 40.596012], - [139.863541, 40.601753], - [139.864792, 40.605858], - [139.863037, 40.609531], - [139.864883, 40.612263], - [139.869705, 40.614285], - [139.884262, 40.626751], - [139.895065, 40.628036], - [139.903625, 40.639862], - [139.908478, 40.643024], - [139.91925, 40.641335], - [139.931854, 40.642147], - [139.94046, 40.656487], - [139.941132, 40.661739], - [139.946014, 40.667645], - [139.952988, 40.667145], - [139.968735, 40.68232], - [139.969482, 40.691921], - [139.97377, 40.697601], - [139.982849, 40.703011], - [139.986923, 40.714184], - [140, 40.735596], - [140.002625, 40.739895], - [140.012878, 40.741859], - [140.022263, 40.748096], - [140.035645, 40.756977], - [140.05072, 40.760498], - [140.066452, 40.766754], - [140.091263, 40.758049], - [140.108734, 40.743008], - [140.117706, 40.739944], - [140.128815, 40.740063], - [140.135773, 40.742508], - [140.148788, 40.748322], - [140.16156, 40.756424], - [140.176178, 40.767483], - [140.185242, 40.77013], - [140.195328, 40.778717], - [140.201385, 40.781166], - [140.21463, 40.782169], - [140.220261, 40.77776], - [140.224472, 40.778172], - [140.242645, 40.785061], - [140.252731, 40.793411], - [140.26384, 40.808613], - [140.282227, 40.84066], - [140.29361, 40.868671], - [140.297653, 40.885719], - [140.303802, 40.911564], - [140.315674, 40.947575], - [140.325668, 41.00946], - [140.325882, 41.019756], - [140.328751, 41.027729], - [140.33313, 41.031078], - [140.330383, 41.033661], - [140.327026, 41.07626], - [140.324081, 41.086903], - [140.319138, 41.089855], - [140.296616, 41.111855], - [140.287323, 41.115623], - [140.259811, 41.115936], - [140.255951, 41.119186], - [140.258606, 41.131741], - [140.267151, 41.135532], - [140.270416, 41.132751], - [140.283737, 41.133514], - [140.290359, 41.131378], - [140.294357, 41.134995], - [140.301453, 41.126904], - [140.304474, 41.127094], - [140.308701, 41.129223], - [140.309357, 41.129555], - [140.317459, 41.140903], - [140.322906, 41.141525], - [140.331329, 41.153782], - [140.332718, 41.162918], - [140.340744, 41.18502], - [140.336365, 41.19331], - [140.338943, 41.200829], - [140.338776, 41.207241], - [140.334427, 41.216675], - [140.338364, 41.231503], - [140.34552, 41.24057], - [140.34523, 41.243988], - [140.344788, 41.249046], - [140.340973, 41.255043], - [140.34314, 41.257076], - [140.345871, 41.257271], - [140.352509, 41.255817], - [140.365646, 41.246964], - [140.372604, 41.246193], - [140.374664, 41.243877], - [140.380402, 41.242889], - [140.39595, 41.233315], - [140.405563, 41.229992], - [140.413742, 41.215698], - [140.430176, 41.205879], - [140.438141, 41.196621], - [140.440445, 41.19133], - [140.448532, 41.187561], - [140.457535, 41.184471], - [140.462402, 41.185322], - [140.471024, 41.178574], - [140.47644, 41.177357], - [140.485565, 41.179066], - [140.505142, 41.188644], - [140.524597, 41.204857], - [140.529999, 41.215767], - [140.533829, 41.215599], - [140.54512, 41.215099], - [140.553192, 41.223228], - [140.560074, 41.2197], - [140.564041, 41.220787], - [140.577347, 41.220371], - [140.59111, 41.213539], - [140.606476, 41.210342], - [140.614807, 41.204731], - [140.622131, 41.194782], - [140.63707, 41.187012], - [140.64447, 41.180496], - [140.651123, 41.168724], - [140.651276, 41.163002], - [140.649689, 41.160866], - [140.646576, 41.156662], - [140.641129, 41.120815], - [140.63826, 41.114906], - [140.639862, 41.106415], - [140.637726, 41.093632], - [140.642151, 41.077549], - [140.640839, 41.073677], - [140.65033, 41.043331], - [140.650192, 41.037842], - [140.657166, 41.015312], - [140.67186, 40.92997], - [140.679489, 40.910404], - [140.684357, 40.891491], - [140.688248, 40.876408], - [140.704483, 40.852364], - [140.717438, 40.84164], - [140.735199, 40.830608], - [140.740005, 40.830303], - [140.743683, 40.832764], - [140.746048, 40.831352], - [140.745941, 40.827236], - [140.752243, 40.826679], - [140.76651, 40.831257], - [140.76651, 40.83073], - [140.781525, 40.829872], - [140.790268, 40.830647], - [140.802734, 40.835018], - [140.815323, 40.843735], - [140.827744, 40.857487], - [140.835663, 40.860561], - [140.840698, 40.868027], - [140.848541, 40.868584], - [140.854263, 40.879242], - [140.863144, 40.884354], - [140.864456, 40.887993], - [140.860794, 40.89698], - [140.862061, 40.899246], - [140.870514, 40.899792], - [140.874313, 40.905903], - [140.87413, 40.910255], - [140.870087, 40.915813], - [140.873566, 40.921478], - [140.87146, 40.932266], - [140.873703, 40.936806], - [140.872284, 40.939804], - [140.868088, 40.940495], - [140.852173, 40.943119], - [140.845963, 40.947342], - [140.846619, 40.949162], - [140.863342, 40.953686], - [140.86525, 40.957314], - [140.864532, 40.963734], - [140.86676, 40.967815], - [140.87442, 40.972034], - [140.875732, 40.975216], - [140.868301, 40.979458], - [140.868378, 40.981976], - [140.877243, 40.985943], - [140.880112, 40.991158], - [140.8806, 40.997559], - [140.878906, 41.001476], - [140.87265, 41.004559], - [140.870041, 41.008034], - [140.872604, 41.013027], - [140.878006, 41.012249], - [140.884781, 41.006413], - [140.889282, 41.005421], - [140.89238, 41.005989], - [140.898376, 41.007095], - [140.925369, 40.991066], - [140.951309, 40.990841], - [140.955765, 40.988476], - [140.963181, 40.974613], - [140.974045, 40.964806], - [140.983597, 40.961891], - [140.990219, 40.951702], - [140.987686, 40.938019], - [140.97879, 40.932915], - [140.980835, 40.930588], - [141.004639, 40.930618], - [141.019516, 40.924168], - [141.034119, 40.917423], - [141.050995, 40.90963], - [141.06427, 40.90984], - [141.094269, 40.877922], - [141.104858, 40.870171], - [141.11377, 40.866795], - [141.128174, 40.865147], - [141.137604, 40.867939], - [141.15387, 40.877003], - [141.162079, 40.88306], - [141.167465, 40.887035], - [141.200333, 40.923458], - [141.218384, 40.948727], - [141.229492, 40.981915], - [141.235016, 40.994156], - [141.239304, 41.003685], - [141.244507, 41.023033], - [141.247894, 41.059357], - [141.246155, 41.078388], - [141.249756, 41.086555], - [141.252411, 41.101833], - [141.256058, 41.110916], - [141.261154, 41.116695], - [141.262985, 41.118786], - [141.271698, 41.125473], - [141.279785, 41.140411], - [141.282379, 41.153633], - [141.278519, 41.172714], - [141.269836, 41.192577], - [141.248367, 41.227348], - [141.243713, 41.231926], - [141.220535, 41.254692], - [141.201965, 41.269711], - [141.189072, 41.273857], - [141.183609, 41.273735], - [141.189545, 41.278885], - [141.187469, 41.280071], - [141.180176, 41.279755], - [141.175186, 41.275505], - [141.168182, 41.274498], - [141.145874, 41.24197], - [141.142761, 41.239742], - [141.14267, 41.236996], - [141.145981, 41.236244], - [141.148453, 41.237801], - [141.159088, 41.247437], - [141.162827, 41.259495], - [141.165268, 41.259907], - [141.167618, 41.258026], - [141.166061, 41.247528], - [141.162766, 41.239811], - [141.135712, 41.218819], - [141.125061, 41.208267], - [141.110504, 41.207859], - [141.096054, 41.200809], - [141.093872, 41.199017], - [141.087494, 41.198452], - [141.081039, 41.195599], - [141.062927, 41.178085], - [141.038742, 41.178989], - [141.012192, 41.191147], - [140.999481, 41.191147], - [140.989548, 41.193157], - [140.98288, 41.192822], - [140.970871, 41.186169], - [140.967743, 41.182789], - [140.954285, 41.168152], - [140.943726, 41.169483], - [140.935196, 41.167343], - [140.926804, 41.170235], - [140.906631, 41.163486], - [140.897385, 41.157696], - [140.88176, 41.159492], - [140.878693, 41.159843], - [140.871643, 41.156761], - [140.862259, 41.15646], - [140.857361, 41.154255], - [140.85199, 41.146561], - [140.841629, 41.14399], - [140.825623, 41.133953], - [140.819885, 41.12352], - [140.804749, 41.122852], - [140.797256, 41.125492], - [140.788757, 41.124256], - [140.779083, 41.134941], - [140.771042, 41.139645], - [140.769653, 41.144245], - [140.772583, 41.15152], - [140.772369, 41.156197], - [140.771255, 41.180149], - [140.774078, 41.194981], - [140.782257, 41.205833], - [140.789139, 41.224949], - [140.785431, 41.243774], - [140.786148, 41.248112], - [140.789886, 41.251713], - [140.789459, 41.2579], - [140.794098, 41.26149], - [140.795303, 41.271996], - [140.799057, 41.275864], - [140.799667, 41.276505], - [140.800522, 41.285187], - [140.804886, 41.289696], - [140.802994, 41.297966], - [140.809113, 41.310684], - [140.805054, 41.316929], - [140.807556, 41.319633], - [140.807129, 41.326279], - [140.818878, 41.334099], - [140.825638, 41.347492], - [140.82811, 41.360039], - [140.831665, 41.367306], - [140.830551, 41.381516], - [140.833817, 41.392307], - [140.835571, 41.398144], - [140.840347, 41.405617], - [140.839386, 41.414558], - [140.841614, 41.418186], - [140.848282, 41.41716], - [140.855469, 41.424366], - [140.86911, 41.433521], - [140.86969, 41.443356], - [140.872528, 41.446743], - [140.880798, 41.448662], - [140.882263, 41.457108], - [140.886917, 41.460461], - [140.889206, 41.466145], - [140.900665, 41.473045], - [140.910339, 41.491653], - [140.909592, 41.496929], - [140.91185, 41.50124], - [140.907639, 41.512989], - [140.902679, 41.520168], - [140.904037, 41.524723], - [140.910614, 41.53125], - [140.914948, 41.543766], - [140.917755, 41.546234], - [140.921997, 41.545475], - [140.922394, 41.544743], - [140.92662, 41.536926], - [140.932556, 41.532017], - [140.946152, 41.528576], - [140.955368, 41.521774], - [140.966064, 41.513348], - [140.979248, 41.497089], - [140.986984, 41.491455], - [140.995483, 41.49062], - [141.018967, 41.483097], - [141.033493, 41.480774], - [141.052948, 41.481266], - [141.075485, 41.481831], - [141.08136, 41.47554], - [141.104172, 41.466412], - [141.119873, 41.46291], - [141.121475, 41.456238], - [141.128052, 41.452908], - [141.130508, 41.444622], - [141.135559, 41.44109], - [141.142273, 41.432949], - [141.149231, 41.4319], - [141.154297, 41.429054], - [141.162704, 41.416985], - [141.172821, 41.411064], - [141.177292, 41.40823], - [141.19545, 41.388874], - [141.226395, 41.370632], - [141.26503, 41.355656], - [141.286682, 41.350174], - [141.315765, 41.348656], - [141.336609, 41.352757], - [141.342056, 41.353828], - [141.402512, 41.379547], - [141.428741, 41.398209], - [141.4617, 41.42564], - [141.467331, 41.428467], - [141.469131, 41.429367], - [141.474319, 41.42971], - [141.472794, 41.421959], - [141.475937, 41.416851], - [141.474289, 41.413685], - [141.467346, 41.414753], - [141.466873, 41.410416], - [141.472229, 41.399765], - [141.470337, 41.397747], - [141.467072, 41.399879], - [141.463699, 41.399036], - [141.460861, 41.396355], - [141.46196, 41.393353], - [141.4673, 41.39003], - [141.466782, 41.384548], - [141.46904, 41.379917], - [141.464523, 41.37315], - [141.458633, 41.370075], - [141.442062, 41.333393], - [141.44072, 41.33041], - [141.438812, 41.312366], - [141.432861, 41.299675], - [141.432587, 41.292587], - [141.424194, 41.271023], - [141.410385, 41.218674], - [141.408966, 41.210617], - [141.398071, 41.148666], - [141.398285, 41.138592], - [141.403519, 41.124744], - [141.404694, 41.115791], - [141.403259, 41.101631], - [141.407425, 41.091927], - [141.406723, 41.086563], - [141.40657, 41.085308], - [141.401093, 41.076271], - [141.398621, 41.066711], - [141.392822, 41.008701], - [141.393997, 40.99197], - [141.392456, 40.962109], - [141.392563, 40.956104], - [141.394897, 40.951439], - [141.393631, 40.941856], - [141.395554, 40.928539], - [141.392288, 40.921745], - [141.392624, 40.918449], - [141.396973, 40.901962], - [141.397141, 40.890514], - [141.395386, 40.883915], - [141.392899, 40.882], - [141.396606, 40.879391], - [141.405228, 40.84309], - [141.409195, 40.826401], - [141.409714, 40.808311], - [141.429977, 40.71896], - [141.432907, 40.705967], - [141.451416, 40.639885], - [141.473526, 40.598202], - [141.497894, 40.554176], - [141.50943, 40.542244], - [141.525726, 40.529972], - [141.53717, 40.524212], - [141.542587, 40.524548], - [141.549042, 40.528973], - [141.555038, 40.52906], - [141.566254, 40.53978], - [141.579819, 40.541977], - [141.583694, 40.541199], - [141.592224, 40.522465], - [141.595993, 40.519402], - [141.604385, 40.519432], - [141.609589, 40.514957], - [141.615204, 40.513222], - [141.620224, 40.503952], - [141.62468, 40.50293], - [141.629532, 40.497093], - [141.637146, 40.493019], - [141.639008, 40.489384], - [141.643799, 40.480045], - [141.654266, 40.472698], - [141.657318, 40.466675], - [141.66626, 40.458679], - [141.671295, 40.457413], - [141.675293, 40.45274], - [141.686035, 40.449593], - [141.670624, 40.432705], - [141.660721, 40.427109], - [141.647858, 40.423344], - [141.63855, 40.418941], - [141.624969, 40.417881], - [141.609924, 40.411221], - [141.599274, 40.409267], - [141.589951, 40.403202], - [141.58461, 40.392635], - [141.586365, 40.382107], - [141.584564, 40.370926], - [141.575821, 40.36525], - [141.566803, 40.35854], - [141.549652, 40.349117], - [141.539337, 40.344311], - [141.527359, 40.348408], - [141.516693, 40.35268], - [141.50943, 40.359852], - [141.495667, 40.366531], - [141.487, 40.371525], - [141.476151, 40.374134], - [141.465515, 40.372044], - [141.453537, 40.371044], - [141.441864, 40.370747], - [141.432846, 40.364613], - [141.421951, 40.360439], - [141.412231, 40.355], - [141.405807, 40.362961], - [141.39679, 40.358044], - [141.385025, 40.339283], - [141.374969, 40.337887], - [141.364853, 40.332157], - [141.354645, 40.32803], - [141.346741, 40.339054], - [141.339844, 40.347458], - [141.338028, 40.358719], - [141.328537, 40.362843], - [141.32019, 40.369843], - [141.301422, 40.362751], - [141.295776, 40.353645], - [141.288925, 40.345264], - [141.278397, 40.342163], - [141.267929, 40.347103], - [141.260483, 40.338749], - [141.249969, 40.336155], - [141.235687, 40.325542], - [141.227081, 40.320282], - [141.220551, 40.312084], - [141.210495, 40.309898], - [141.200897, 40.304981], - [141.190887, 40.304886], - [141.179825, 40.307106], - [141.165207, 40.303463], - [141.153397, 40.297958], - [141.14328, 40.297398], - [141.134201, 40.291302], - [141.115372, 40.281528], - [141.10582, 40.277779], - [141.11319, 40.258617], - [141.103729, 40.249954], - [141.092072, 40.250122], - [141.080215, 40.249054], - [141.072617, 40.239346], - [141.060715, 40.230431], - [141.050674, 40.230129], - [141.038818, 40.225052], - [141.029556, 40.218807], - [141.019394, 40.216324], - [141.009125, 40.215248], - [140.991806, 40.219234], - [140.981674, 40.219303], - [140.97287, 40.226597], - [140.966797, 40.237949], - [140.958389, 40.245602], - [140.950729, 40.259327], - [140.956253, 40.270027], - [140.957947, 40.282032], - [140.948074, 40.286098], - [140.95134, 40.296528], - [140.960953, 40.303532], - [140.961411, 40.313988], - [140.966171, 40.325321], - [140.971664, 40.333843], - [140.976471, 40.343895], - [140.99054, 40.345047], - [140.997437, 40.35424], - [140.995239, 40.364258], - [140.996826, 40.374199], - [140.989655, 40.381798], - [140.988861, 40.398869], - [140.986115, 40.409168], - [140.983261, 40.42564], - [140.972763, 40.426807], - [140.96196, 40.423607], - [140.950638, 40.424549], - [140.940674, 40.422348], - [140.929276, 40.418835], - [140.91803, 40.422226], - [140.907852, 40.422215], - [140.895935, 40.420261], - [140.874969, 40.416611], - [140.875275, 40.494572], - [140.883331, 40.507874] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "秋田県", - "name": "Akita", - "ISOCODE": "JP-05", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:00+0100", - "cartodb_id": 18 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [140.883331, 40.507874], - [140.875275, 40.494572], - [140.874969, 40.416611], - [140.895935, 40.420261], - [140.907852, 40.422215], - [140.91803, 40.422226], - [140.929276, 40.418835], - [140.940674, 40.422348], - [140.950638, 40.424549], - [140.96196, 40.423607], - [140.972763, 40.426807], - [140.983261, 40.42564], - [140.986115, 40.409168], - [140.988861, 40.398869], - [140.989655, 40.381798], - [140.996826, 40.374199], - [140.995239, 40.364258], - [140.997437, 40.35424], - [140.99054, 40.345047], - [140.976471, 40.343895], - [140.971664, 40.333843], - [140.966171, 40.325321], - [140.961411, 40.313988], - [140.960953, 40.303532], - [140.95134, 40.296528], - [140.948074, 40.286098], - [140.957947, 40.282032], - [140.956253, 40.270027], - [140.950729, 40.259327], - [140.958389, 40.245602], - [140.947189, 40.24231], - [140.94487, 40.232361], - [140.938004, 40.223347], - [140.926575, 40.222759], - [140.916168, 40.220436], - [140.907288, 40.214756], - [140.901962, 40.205357], - [140.893082, 40.197716], - [140.889893, 40.184975], - [140.8815, 40.178547], - [140.866089, 40.171692], - [140.874969, 40.157124], - [140.886215, 40.152802], - [140.880875, 40.143394], - [140.874969, 40.134922], - [140.874969, 40.122868], - [140.882629, 40.112156], - [140.880981, 40.102215], - [140.878815, 40.091976], - [140.868057, 40.083279], - [140.852325, 40.074127], - [140.850464, 40.063587], - [140.854462, 40.053997], - [140.858612, 40.044102], - [140.85788, 40.033466], - [140.85524, 40.022625], - [140.859131, 40.013023], - [140.852402, 40.005241], - [140.853958, 39.992599], - [140.851608, 39.982811], - [140.849854, 39.969395], - [140.85141, 39.956326], - [140.86087, 39.949844], - [140.856216, 39.935917], - [140.86113, 39.926613], - [140.86319, 39.916603], - [140.871689, 39.904621], - [140.874969, 39.893856], - [140.882416, 39.882629], - [140.881287, 39.87159], - [140.863892, 39.867653], - [140.852783, 39.864403], - [140.845154, 39.871513], - [140.837357, 39.878288], - [140.827805, 39.88306], - [140.819138, 39.87772], - [140.803772, 39.878357], - [140.795837, 39.871834], - [140.786407, 39.865475], - [140.789413, 39.854866], - [140.791306, 39.843948], - [140.789062, 39.834053], - [140.789932, 39.823902], - [140.798111, 39.817982], - [140.806732, 39.812439], - [140.817627, 39.814106], - [140.827301, 39.808975], - [140.838181, 39.803795], - [140.846909, 39.798168], - [140.844437, 39.786446], - [140.83699, 39.777702], - [140.828766, 39.771809], - [140.820877, 39.764317], - [140.814316, 39.756565], - [140.805161, 39.740715], - [140.79541, 39.736507], - [140.785324, 39.7351], - [140.786652, 39.724251], - [140.792633, 39.716049], - [140.79744, 39.706795], - [140.8078, 39.707832], - [140.813339, 39.698338], - [140.819016, 39.689137], - [140.822388, 39.678566], - [140.824814, 39.668446], - [140.825089, 39.657391], - [140.825516, 39.64679], - [140.817535, 39.639099], - [140.810562, 39.628906], - [140.807861, 39.617954], - [140.806793, 39.6073], - [140.799515, 39.600193], - [140.786026, 39.601192], - [140.782745, 39.590855], - [140.773712, 39.5858], - [140.762024, 39.575024], - [140.755203, 39.567379], - [140.745773, 39.563679], - [140.733749, 39.562916], - [140.730698, 39.553329], - [140.7397, 39.546257], - [140.744171, 39.534645], - [140.741394, 39.522896], - [140.731659, 39.517551], - [140.727478, 39.508186], - [140.721756, 39.499947], - [140.71669, 39.49118], - [140.722244, 39.481949], - [140.715668, 39.472904], - [140.706833, 39.467598], - [140.689514, 39.456589], - [140.682495, 39.448395], - [140.686523, 39.438251], - [140.688736, 39.426704], - [140.68486, 39.416618], - [140.67244, 39.414188], - [140.662033, 39.411869], - [140.661728, 39.396656], - [140.659286, 39.38623], - [140.679108, 39.382668], - [140.681625, 39.371792], - [140.683746, 39.361885], - [140.694305, 39.355873], - [140.692123, 39.345924], - [140.701675, 39.341763], - [140.709335, 39.333286], - [140.69989, 39.318157], - [140.70047, 39.307014], - [140.701614, 39.297035], - [140.711853, 39.294254], - [140.720459, 39.28553], - [140.720184, 39.274868], - [140.728439, 39.267464], - [140.739777, 39.263672], - [140.749969, 39.258976], - [140.758987, 39.254128], - [140.776596, 39.243454], - [140.785263, 39.236908], - [140.789764, 39.227787], - [140.781601, 39.220707], - [140.772522, 39.215939], - [140.769424, 39.206364], - [140.76825, 39.195183], - [140.778641, 39.191383], - [140.790161, 39.187027], - [140.801346, 39.186569], - [140.811188, 39.177742], - [140.800705, 39.173447], - [140.791199, 39.167412], - [140.78064, 39.165741], - [140.774246, 39.15649], - [140.768005, 39.148125], - [140.756592, 39.132938], - [140.770432, 39.124084], - [140.76413, 39.115498], - [140.765976, 39.104958], - [140.759903, 39.095188], - [140.756226, 39.085693], - [140.7659, 39.078583], - [140.775497, 39.075764], - [140.78595, 39.077972], - [140.796173, 39.074532], - [140.805496, 39.070808], - [140.80304, 39.059425], - [140.812759, 39.055084], - [140.805115, 39.046867], - [140.797623, 39.039059], - [140.797989, 39.02808], - [140.791229, 39.019569], - [140.78273, 39.006523], - [140.772614, 39.00069], - [140.767975, 38.984322], - [140.772888, 38.975193], - [140.777847, 38.965836], - [140.776779, 38.955109], - [140.75946, 38.95507], - [140.740707, 38.948246], - [140.730667, 38.941471], - [140.726425, 38.931557], - [140.718491, 38.924194], - [140.698608, 38.918591], - [140.688065, 38.913879], - [140.682419, 38.905342], - [140.675262, 38.895725], - [140.666061, 38.891323], - [140.657501, 38.886131], - [140.64563, 38.883934], - [140.635406, 38.88438], - [140.618088, 38.89109], - [140.610382, 38.88361], - [140.598053, 38.883263], - [140.588776, 38.877251], - [140.577667, 38.875858], - [140.567978, 38.871681], - [140.55452, 38.878864], - [140.542099, 38.896564], - [140.530304, 38.894779], - [140.520187, 38.89719], - [140.50885, 38.892063], - [140.494385, 38.904591], - [140.486252, 38.91291], - [140.475327, 38.911869], - [140.46492, 38.91774], - [140.461914, 38.92741], - [140.453217, 38.942902], - [140.456421, 38.953617], - [140.453888, 38.963615], - [140.449585, 38.973225], - [140.440933, 38.979546], - [140.435364, 38.988926], - [140.424164, 38.989368], - [140.412888, 38.990635], - [140.401794, 38.988564], - [140.391602, 38.990227], - [140.38147, 38.992104], - [140.372314, 39.00219], - [140.366104, 39.011478], - [140.363815, 39.022724], - [140.351639, 39.022003], - [140.341599, 39.026161], - [140.332382, 39.031933], - [140.321899, 39.027733], - [140.317978, 39.016335], - [140.308807, 39.012028], - [140.298141, 39.015377], - [140.291275, 39.024368], - [140.28125, 39.027382], - [140.270844, 39.028347], - [140.259338, 39.02943], - [140.24884, 39.027924], - [140.237366, 39.024632], - [140.225662, 39.026863], - [140.215912, 39.029812], - [140.20433, 39.033279], - [140.205032, 39.044357], - [140.205048, 39.055763], - [140.195206, 39.058128], - [140.185028, 39.05529], - [140.175186, 39.049511], - [140.164337, 39.050606], - [140.152496, 39.049305], - [140.146927, 39.058586], - [140.135361, 39.060734], - [140.119965, 39.069176], - [140.112091, 39.077045], - [140.101425, 39.080917], - [140.091049, 39.082066], - [140.07605, 39.084324], - [140.069702, 39.098133], - [140.064865, 39.111], - [140.065781, 39.13073], - [140.016098, 39.121075], - [140.000732, 39.112938], - [139.997162, 39.102852], - [139.986496, 39.105534], - [139.948776, 39.109867], - [139.926941, 39.113129], - [139.906342, 39.115849], - [139.875015, 39.118484], - [139.875259, 39.118813], - [139.880386, 39.119938], - [139.882904, 39.122581], - [139.888123, 39.132664], - [139.886566, 39.140415], - [139.888016, 39.149548], - [139.897034, 39.154118], - [139.90361, 39.164581], - [139.908157, 39.179409], - [139.911026, 39.188778], - [139.910187, 39.194218], - [139.90712, 39.197628], - [139.897949, 39.202236], - [139.896378, 39.209568], - [139.916306, 39.245121], - [139.91806, 39.255077], - [139.914658, 39.26329], - [139.915451, 39.26973], - [139.921539, 39.28083], - [139.927628, 39.285469], - [139.937134, 39.288563], - [139.942581, 39.290718], - [139.965683, 39.292213], - [139.975327, 39.298222], - [140, 39.341248], - [140.01442, 39.366394], - [140.02066, 39.38686], - [140.036194, 39.436047], - [140.052536, 39.510132], - [140.054245, 39.517868], - [140.060501, 39.575199], - [140.06424, 39.586765], - [140.066788, 39.608154], - [140.06842, 39.635117], - [140.069656, 39.655365], - [140.068588, 39.68018], - [140.070328, 39.683258], - [140.068161, 39.688938], - [140.061554, 39.735138], - [140.056915, 39.746296], - [140.056366, 39.751934], - [140.059128, 39.753529], - [140.058182, 39.75647], - [140.052383, 39.759537], - [140.043427, 39.786232], - [140.037094, 39.805122], - [140.038101, 39.809677], - [140.020737, 39.838448], - [140, 39.858017], - [139.968582, 39.887669], - [139.965042, 39.893379], - [139.957397, 39.897736], - [139.953644, 39.892208], - [139.949051, 39.891907], - [139.925003, 39.898342], - [139.913788, 39.898556], - [139.911728, 39.897423], - [139.904999, 39.897797], - [139.892151, 39.893951], - [139.881363, 39.894424], - [139.865875, 39.892097], - [139.862823, 39.890091], - [139.857574, 39.880848], - [139.857071, 39.87524], - [139.848999, 39.86919], - [139.854065, 39.867817], - [139.86171, 39.869713], - [139.865204, 39.869419], - [139.866226, 39.867935], - [139.857437, 39.864197], - [139.834457, 39.863503], - [139.821625, 39.853405], - [139.815155, 39.853352], - [139.814346, 39.853783], - [139.799301, 39.861855], - [139.783127, 39.862656], - [139.777649, 39.860497], - [139.77034, 39.860252], - [139.762817, 39.854183], - [139.756531, 39.852253], - [139.746872, 39.86747], - [139.745209, 39.879795], - [139.738327, 39.897026], - [139.739273, 39.900753], - [139.734818, 39.90398], - [139.72998, 39.90451], - [139.727768, 39.903313], - [139.722565, 39.908222], - [139.718231, 39.914478], - [139.711563, 39.924095], - [139.707825, 39.932301], - [139.709381, 39.937469], - [139.703598, 39.941349], - [139.708069, 39.945408], - [139.717255, 39.944988], - [139.721481, 39.942806], - [139.72435, 39.947113], - [139.722458, 39.953819], - [139.7164, 39.957916], - [139.713013, 39.954247], - [139.709824, 39.95557], - [139.702576, 39.970726], - [139.698135, 39.974785], - [139.701843, 39.979694], - [139.697662, 39.99041], - [139.70372, 40], - [139.719162, 40], - [139.721207, 39.997562], - [139.717438, 39.991199], - [139.723358, 39.983566], - [139.738617, 39.979877], - [139.74736, 39.975304], - [139.77417, 39.969673], - [139.786362, 39.963554], - [139.791473, 39.963017], - [139.800629, 39.955303], - [139.808151, 39.954082], - [139.823502, 39.959541], - [139.834076, 39.960327], - [139.835556, 39.960949], - [139.840134, 39.962887], - [139.860611, 39.974464], - [139.891495, 39.995567], - [139.898666, 40], - [139.926697, 40.030956], - [139.943039, 40.052307], - [139.967499, 40.095573], - [139.973541, 40.106228], - [139.983673, 40.128544], - [139.996735, 40.16592], - [140, 40.177677], - [140.005539, 40.197624], - [140.008514, 40.216797], - [140.011215, 40.224464], - [140.016495, 40.232735], - [140.020248, 40.244362], - [140.029175, 40.301674], - [140.028503, 40.354046], - [140.021698, 40.358681], - [140.01619, 40.369022], - [140.011459, 40.372269], - [140, 40.375576], - [139.991821, 40.377934], - [139.987122, 40.383461], - [139.985474, 40.393082], - [139.974762, 40.39592], - [139.966843, 40.402977], - [139.964142, 40.405388], - [139.9534, 40.40731], - [139.951706, 40.413498], - [139.943192, 40.425007], - [139.944534, 40.426834], - [139.951141, 40.428413], - [139.962051, 40.431999], - [139.9711, 40.42635], - [139.981735, 40.425362], - [139.999969, 40.431526], - [140.009918, 40.424656], - [140.019669, 40.418598], - [140.025482, 40.42939], - [140.025787, 40.440609], - [140.032837, 40.45248], - [140.041992, 40.458153], - [140.052734, 40.458622], - [140.061386, 40.464569], - [140.071838, 40.466076], - [140.081772, 40.464169], - [140.090851, 40.459614], - [140.099518, 40.453579], - [140.10318, 40.443134], - [140.110413, 40.43449], - [140.124969, 40.43375], - [140.135483, 40.435375], - [140.150757, 40.435406], - [140.163742, 40.435966], - [140.174713, 40.435509], - [140.185379, 40.439533], - [140.195175, 40.434162], - [140.205704, 40.433441], - [140.216202, 40.432362], - [140.2267, 40.428829], - [140.236816, 40.432335], - [140.251373, 40.437794], - [140.2621, 40.438614], - [140.274002, 40.439365], - [140.284195, 40.44305], - [140.295151, 40.443596], - [140.305771, 40.440022], - [140.316162, 40.434345], - [140.326126, 40.436577], - [140.338562, 40.436668], - [140.345261, 40.444248], - [140.347137, 40.454102], - [140.357086, 40.468124], - [140.364151, 40.475342], - [140.374969, 40.473705], - [140.385284, 40.477467], - [140.394684, 40.48246], - [140.402222, 40.474957], - [140.414124, 40.473457], - [140.430649, 40.479694], - [140.440826, 40.475582], - [140.436829, 40.466228], - [140.440445, 40.456684], - [140.444077, 40.447067], - [140.4534, 40.451244], - [140.463364, 40.453602], - [140.474594, 40.450764], - [140.484695, 40.447124], - [140.489166, 40.437916], - [140.499969, 40.433846], - [140.51004, 40.426929], - [140.521286, 40.42749], - [140.532349, 40.428257], - [140.533112, 40.417557], - [140.543167, 40.400993], - [140.553268, 40.399246], - [140.563843, 40.407818], - [140.557587, 40.416622], - [140.565247, 40.423832], - [140.575394, 40.423588], - [140.585571, 40.42728], - [140.594086, 40.433578], - [140.604752, 40.428768], - [140.613403, 40.422169], - [140.624969, 40.421101], - [140.638412, 40.407257], - [140.647202, 40.400936], - [140.657516, 40.40102], - [140.668167, 40.404922], - [140.679382, 40.410133], - [140.691071, 40.416603], - [140.697662, 40.425274], - [140.708038, 40.424934], - [140.718948, 40.424934], - [140.736176, 40.427147], - [140.739014, 40.437092], - [140.755951, 40.436218], - [140.76355, 40.444218], - [140.772766, 40.451065], - [140.790512, 40.454277], - [140.798187, 40.4468], - [140.808716, 40.447262], - [140.811371, 40.458736], - [140.8134, 40.46978], - [140.814529, 40.480835], - [140.820801, 40.489063], - [140.830902, 40.493504], - [140.841919, 40.500778], - [140.852051, 40.504627], - [140.862549, 40.503834], - [140.883331, 40.507874] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "岩手県", - "name": "Iwate", - "ISOCODE": "JP-03", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:06+0100", - "cartodb_id": 19 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [141.686035, 40.449593], - [141.689774, 40.448494], - [141.7005, 40.433128], - [141.707794, 40.428829], - [141.714279, 40.419514], - [141.723572, 40.413105], - [141.728867, 40.40382], - [141.730286, 40.394863], - [141.760941, 40.36412], - [141.764923, 40.352352], - [141.770782, 40.349686], - [141.778214, 40.341717], - [141.784363, 40.318226], - [141.789795, 40.312824], - [141.793549, 40.309753], - [141.79567, 40.30352], - [141.799026, 40.299923], - [141.802231, 40.29649], - [141.801971, 40.29055], - [141.805191, 40.289093], - [141.815094, 40.276711], - [141.815689, 40.269833], - [141.825287, 40.257458], - [141.825912, 40.251266], - [141.838058, 40.235851], - [141.840408, 40.221607], - [141.843781, 40.216713], - [141.841003, 40.214729], - [141.831284, 40.21727], - [141.822617, 40.216808], - [141.816833, 40.214214], - [141.811371, 40.204975], - [141.808151, 40.192707], - [141.809235, 40.183529], - [141.812378, 40.180473], - [141.820435, 40.180721], - [141.838715, 40.176357], - [141.851379, 40.166187], - [141.859619, 40.163914], - [141.863647, 40.160831], - [141.866089, 40.155277], - [141.873123, 40.148502], - [141.881226, 40.140694], - [141.882217, 40.136322], - [141.875336, 40.128956], - [141.871399, 40.12746], - [141.855072, 40.128574], - [141.849335, 40.126667], - [141.843811, 40.122696], - [141.842239, 40.114044], - [141.837677, 40.112106], - [141.833313, 40.10078], - [141.833694, 40.09597], - [141.839554, 40.086895], - [141.836639, 40.081711], - [141.837692, 40.07848], - [141.8461, 40.066822], - [141.856918, 40.05579], - [141.8703, 40.04903], - [141.872986, 40.049191], - [141.876419, 40.046352], - [141.883224, 40.045715], - [141.888885, 40.039162], - [141.891479, 40.030857], - [141.916534, 40.006168], - [141.929825, 40.004436], - [141.934952, 40.00613], - [141.940536, 40.004833], - [141.945709, 40.001034], - [141.946945, 40.003941], - [141.948746, 40], - [141.948853, 39.995838], - [141.96138, 39.977402], - [141.958267, 39.971695], - [141.960251, 39.965157], - [141.959167, 39.961239], - [141.964157, 39.951241], - [141.962128, 39.949242], - [141.963455, 39.946526], - [141.963791, 39.945839], - [141.961243, 39.940315], - [141.951401, 39.942802], - [141.946884, 39.940071], - [141.945679, 39.934288], - [141.94104, 39.929684], - [141.946014, 39.927395], - [141.946228, 39.918636], - [141.95314, 39.909184], - [141.954391, 39.89996], - [141.961487, 39.889042], - [141.968719, 39.884159], - [141.974808, 39.88245], - [141.979752, 39.871826], - [141.9823, 39.865677], - [141.981033, 39.859062], - [141.982773, 39.853153], - [141.978851, 39.847271], - [141.984909, 39.837227], - [141.982544, 39.830238], - [141.985184, 39.825542], - [141.990082, 39.826176], - [141.993469, 39.824368], - [141.994858, 39.820976], - [141.993576, 39.814152], - [141.989929, 39.808258], - [141.98793, 39.798958], - [141.991623, 39.793804], - [141.989105, 39.784737], - [141.996841, 39.783375], - [141.997696, 39.776253], - [142.004395, 39.775558], - [142.009445, 39.770554], - [141.999786, 39.76762], - [141.996826, 39.763783], - [141.995483, 39.756126], - [141.997208, 39.753761], - [142.007233, 39.750427], - [142.010239, 39.747177], - [142.000641, 39.744865], - [141.987503, 39.73061], - [141.973236, 39.727032], - [141.984314, 39.723446], - [141.987732, 39.718304], - [141.988617, 39.711594], - [141.986908, 39.706455], - [141.980942, 39.702114], - [141.973236, 39.688049], - [141.992889, 39.687653], - [141.994232, 39.683846], - [141.990585, 39.673992], - [141.984604, 39.669235], - [141.975449, 39.65377], - [141.976929, 39.651833], - [141.984406, 39.650898], - [141.985855, 39.648544], - [141.98291, 39.640953], - [141.976425, 39.638943], - [141.975204, 39.638561], - [141.96756, 39.633247], - [141.967758, 39.616562], - [141.965912, 39.609341], - [141.961761, 39.603676], - [141.952499, 39.598221], - [141.950348, 39.594349], - [141.950912, 39.590988], - [141.954895, 39.586239], - [141.998276, 39.632008], - [142.012711, 39.647221], - [142.021286, 39.65416], - [142.028397, 39.655739], - [142.030869, 39.644798], - [142.029312, 39.634022], - [142.026108, 39.626648], - [142.026566, 39.617874], - [142.028687, 39.613617], - [142.033203, 39.612595], - [142.037796, 39.609066], - [142.03598, 39.60622], - [142.031799, 39.604103], - [142.030167, 39.600002], - [142.034241, 39.592743], - [142.030609, 39.579342], - [142.035172, 39.573521], - [142.057587, 39.572376], - [142.059769, 39.568947], - [142.059204, 39.561047], - [142.062607, 39.559654], - [142.066467, 39.560951], - [142.07019, 39.560375], - [142.072922, 39.556927], - [142.074188, 39.552078], - [142.071487, 39.540512], - [142.068619, 39.534168], - [142.064056, 39.530403], - [142.055939, 39.529701], - [142.05603, 39.527195], - [142.061203, 39.524265], - [142.0616, 39.522163], - [142.056198, 39.521973], - [142.046066, 39.526989], - [142.039948, 39.528076], - [142.03688, 39.526539], - [142.030685, 39.509407], - [142.029221, 39.505383], - [142.016724, 39.495895], - [142.013687, 39.49081], - [142.01622, 39.47694], - [142.014526, 39.475761], - [142.002441, 39.479813], - [141.994675, 39.480343], - [141.973831, 39.478287], - [141.967697, 39.474998], - [141.960953, 39.474651], - [141.956192, 39.471928], - [141.956177, 39.463795], - [141.960892, 39.462143], - [141.96257, 39.459152], - [141.961319, 39.44878], - [141.968842, 39.448677], - [141.97551, 39.444061], - [141.979095, 39.441578], - [141.98999, 39.451344], - [142.000259, 39.452168], - [142.004669, 39.453861], - [142.010544, 39.461121], - [142.019135, 39.468689], - [142.026581, 39.471294], - [142.032745, 39.478752], - [142.042313, 39.481064], - [142.053604, 39.481007], - [142.054611, 39.476166], - [142.061188, 39.470261], - [142.062317, 39.467293], - [142.050201, 39.447784], - [142.043625, 39.445976], - [142.042358, 39.443108], - [142.042618, 39.441998], - [142.044632, 39.433422], - [142.042511, 39.422249], - [142.035049, 39.41547], - [142.029434, 39.415707], - [142.019592, 39.424877], - [142.013229, 39.426186], - [142.013885, 39.416359], - [142.011261, 39.413338], - [142.000778, 39.409191], - [141.990509, 39.408367], - [141.984695, 39.409649], - [141.984665, 39.413197], - [141.988129, 39.416805], - [141.988312, 39.4193], - [141.984573, 39.423626], - [141.97876, 39.424911], - [141.976669, 39.417908], - [141.965973, 39.408489], - [141.942078, 39.387432], - [141.940369, 39.38208], - [141.949844, 39.371471], - [141.957108, 39.375759], - [141.96991, 39.378357], - [141.970688, 39.373947], - [141.96843, 39.368408], - [141.962967, 39.363213], - [141.961441, 39.356602], - [141.9561, 39.353069], - [141.937683, 39.3507], - [141.92485, 39.3554], - [141.915405, 39.354538], - [141.912155, 39.354252], - [141.917404, 39.348408], - [141.916336, 39.344696], - [141.907242, 39.34111], - [141.902969, 39.337528], - [141.903366, 39.327503], - [141.905426, 39.326168], - [141.915619, 39.326168], - [141.923218, 39.331486], - [141.935989, 39.333672], - [141.944641, 39.330811], - [141.956558, 39.340122], - [141.963333, 39.341301], - [141.966263, 39.340969], - [141.969574, 39.338329], - [141.977432, 39.339466], - [141.9832, 39.345272], - [141.998596, 39.350471], - [142.002502, 39.349846], - [142.003906, 39.349625], - [141.994415, 39.344387], - [141.980667, 39.331821], - [141.979462, 39.318317], - [141.974182, 39.315617], - [141.969254, 39.314152], - [141.950821, 39.315125], - [141.942368, 39.309216], - [141.928162, 39.309383], - [141.918152, 39.304165], - [141.913864, 39.30434], - [141.908508, 39.308315], - [141.905838, 39.308632], - [141.900192, 39.304485], - [141.893829, 39.305576], - [141.891785, 39.302952], - [141.894272, 39.300137], - [141.899765, 39.2995], - [141.908112, 39.298531], - [141.912994, 39.29541], - [141.908432, 39.291424], - [141.915802, 39.289455], - [141.918823, 39.286411], - [141.929886, 39.287415], - [141.930939, 39.283199], - [141.927963, 39.278942], - [141.932343, 39.272297], - [141.932358, 39.268749], - [141.930298, 39.265915], - [141.920166, 39.270714], - [141.914719, 39.269478], - [141.907974, 39.272881], - [141.899445, 39.273647], - [141.89119, 39.270443], - [141.89743, 39.263721], - [141.902664, 39.261627], - [141.903885, 39.255947], - [141.902847, 39.252651], - [141.895081, 39.252556], - [141.892776, 39.250355], - [141.893677, 39.247814], - [141.897644, 39.247028], - [141.917648, 39.249542], - [141.917526, 39.245037], - [141.917465, 39.242878], - [141.922028, 39.238934], - [141.929657, 39.248631], - [141.932831, 39.248085], - [141.937637, 39.243923], - [141.940994, 39.246078], - [141.966599, 39.251904], - [141.975647, 39.25111], - [141.974197, 39.2495], - [141.945969, 39.240242], - [141.946655, 39.238544], - [141.952667, 39.23642], - [141.953629, 39.226994], - [141.957321, 39.222252], - [141.955841, 39.22002], - [141.950043, 39.217548], - [141.942703, 39.2239], - [141.939011, 39.224678], - [141.938049, 39.224339], - [141.926926, 39.220379], - [141.928864, 39.217377], - [141.920624, 39.214382], - [141.910126, 39.205845], - [141.89183, 39.208473], - [141.896927, 39.200752], - [141.893555, 39.198387], - [141.879776, 39.204372], - [141.8703, 39.203991], - [141.875427, 39.199547], - [141.868668, 39.194817], - [141.869385, 39.193329], - [141.879807, 39.193111], - [141.884521, 39.19146], - [141.891357, 39.185547], - [141.902771, 39.184246], - [141.907806, 39.18531], - [141.921799, 39.188259], - [141.928162, 39.187374], - [141.929169, 39.182533], - [141.927505, 39.177803], - [141.920822, 39.173908], - [141.913055, 39.166092], - [141.902313, 39.16153], - [141.895493, 39.155758], - [141.890823, 39.153866], - [141.881592, 39.151947], - [141.867371, 39.151485], - [141.85524, 39.154274], - [141.847488, 39.154381], - [141.839645, 39.149273], - [141.84697, 39.146683], - [141.85968, 39.137794], - [141.861542, 39.136494], - [141.876022, 39.129021], - [141.872314, 39.12542], - [141.875916, 39.119431], - [141.883545, 39.117451], - [141.902664, 39.119377], - [141.907135, 39.118153], - [141.911804, 39.111912], - [141.920166, 39.109062], - [141.924454, 39.105339], - [141.922226, 39.103973], - [141.914993, 39.103851], - [141.908859, 39.100143], - [141.899033, 39.097206], - [141.891037, 39.089607], - [141.881516, 39.087288], - [141.877182, 39.094555], - [141.868393, 39.096569], - [141.861649, 39.09811], - [141.862747, 39.102654], - [141.855164, 39.105049], - [141.841446, 39.103939], - [141.826172, 39.111649], - [141.817062, 39.111393], - [141.812622, 39.10907], - [141.817444, 39.105118], - [141.814438, 39.100235], - [141.820267, 39.0952], - [141.813843, 39.09108], - [141.818573, 39.085884], - [141.824738, 39.086052], - [141.823868, 39.081081], - [141.826218, 39.076187], - [141.840469, 39.077278], - [141.860443, 39.071762], - [141.861725, 39.071407], - [141.872726, 39.072002], - [141.875549, 39.070217], - [141.874512, 39.062748], - [141.870056, 39.060013], - [141.860565, 39.058102], - [141.824722, 39.057682], - [141.81871, 39.05584], - [141.819305, 39.052685], - [141.821869, 39.050915], - [141.826889, 39.050083], - [141.851791, 39.038853], - [141.854294, 39.032284], - [141.852905, 39.027542], - [141.849258, 39.024769], - [141.832779, 39.025284], - [141.826859, 39.025471], - [141.815994, 39.022987], - [141.799332, 39.025539], - [141.79866, 39.039543], - [141.795166, 39.039265], - [141.789566, 39.035526], - [141.783371, 39.0266], - [141.78038, 39.025883], - [141.776382, 39.030006], - [141.772156, 39.030804], - [141.769409, 39.029659], - [141.766708, 39.025181], - [141.758484, 39.017792], - [141.751068, 39.018921], - [141.74678, 39.022846], - [141.736237, 39.020763], - [141.728516, 39.025452], - [141.735275, 39.030815], - [141.732544, 39.033844], - [141.738678, 39.037773], - [141.739105, 39.04026], - [141.736282, 39.046211], - [141.73671, 39.056831], - [141.734863, 39.06525], - [141.730026, 39.068989], - [141.72316, 39.070301], - [141.726868, 39.061604], - [141.723038, 39.056126], - [141.7276, 39.044052], - [141.725311, 39.037678], - [141.720474, 39.029106], - [141.726364, 39.016983], - [141.734055, 39.012089], - [141.746811, 38.994686], - [141.747055, 38.990295], - [141.744843, 38.984959], - [141.737518, 38.987335], - [141.731842, 38.986309], - [141.729294, 38.988289], - [141.726288, 38.987156], - [141.719788, 38.993881], - [141.715302, 38.994686], - [141.714035, 38.991608], - [141.718887, 38.980148], - [141.715851, 38.9786], - [141.711227, 38.981495], - [141.708664, 38.974922], - [141.702454, 38.973709], - [141.700409, 38.971222], - [141.698975, 38.969463], - [141.702972, 38.965343], - [141.707458, 38.964539], - [141.714172, 38.96928], - [141.718918, 38.968258], - [141.72702, 38.953335], - [141.730072, 38.950916], - [141.727554, 38.949139], - [141.720413, 38.950256], - [141.715561, 38.949406], - [141.713425, 38.94532], - [141.709869, 38.944], - [141.706635, 38.939537], - [141.702362, 38.939289], - [141.6987, 38.944649], - [141.690796, 38.946217], - [141.695908, 38.951019], - [141.688995, 38.955673], - [141.687119, 38.963673], - [141.680725, 38.969906], - [141.676773, 38.970943], - [141.668716, 38.976498], - [141.668076, 38.979225], - [141.667664, 38.980919], - [141.669266, 38.989201], - [141.673035, 38.989677], - [141.678391, 38.993847], - [141.684265, 38.994034], - [141.688904, 38.991348], - [141.69136, 38.992088], - [141.689926, 38.994854], - [141.678391, 39.002193], - [141.671341, 39.004765], - [141.654739, 38.995819], - [141.652786, 38.998608], - [141.657593, 39.0028], - [141.655136, 39.006233], - [141.651215, 39.007431], - [141.645447, 39.004944], - [141.638535, 39.005421], - [141.631302, 39.001114], - [141.624252, 39.003685], - [141.623047, 39.001438], - [141.628983, 38.994114], - [141.631256, 38.987766], - [141.630447, 38.979244], - [141.63472, 38.975117], - [141.637711, 38.969353], - [141.572815, 38.990715], - [141.561981, 38.99221], - [141.550537, 38.993111], - [141.54039, 38.992256], - [141.530426, 38.989563], - [141.520752, 38.994289], - [141.511642, 38.999146], - [141.499542, 38.995667], - [141.489655, 38.985069], - [141.487259, 38.974987], - [141.493729, 38.960072], - [141.494507, 38.948757], - [141.492752, 38.938286], - [141.490189, 38.92738], - [141.494614, 38.916573], - [141.492722, 38.904488], - [141.483475, 38.898586], - [141.474335, 38.892555], - [141.469452, 38.882454], - [141.458344, 38.876621], - [141.455551, 38.86676], - [141.463425, 38.856483], - [141.46048, 38.84668], - [141.454056, 38.83593], - [141.456543, 38.82267], - [141.460098, 38.812752], - [141.449966, 38.807274], - [141.438171, 38.808186], - [141.437851, 38.779625], - [141.418839, 38.778187], - [141.410721, 38.784126], - [141.399918, 38.787163], - [141.393875, 38.795338], - [141.382599, 38.793072], - [141.374969, 38.80352], - [141.364426, 38.805916], - [141.354004, 38.809193], - [141.344376, 38.80547], - [141.334259, 38.809704], - [141.324051, 38.815475], - [141.313538, 38.819344], - [141.310638, 38.809086], - [141.306931, 38.799057], - [141.300827, 38.790455], - [141.290268, 38.794044], - [141.278961, 38.791145], - [141.267975, 38.784851], - [141.259491, 38.767391], - [141.25914, 38.757156], - [141.243805, 38.752502], - [141.232742, 38.749916], - [141.215469, 38.749912], - [141.210495, 38.759487], - [141.2043, 38.768188], - [141.195068, 38.774258], - [141.184296, 38.780903], - [141.175125, 38.775681], - [141.160751, 38.779514], - [141.150391, 38.782013], - [141.142914, 38.790092], - [141.144287, 38.801586], - [141.135178, 38.809818], - [141.124969, 38.822842], - [141.119003, 38.83345], - [141.134033, 38.839832], - [141.142899, 38.84716], - [141.149063, 38.855179], - [141.149506, 38.86586], - [141.136337, 38.875217], - [141.124969, 38.877331], - [141.107513, 38.876915], - [141.09967, 38.883202], - [141.089828, 38.880592], - [141.079376, 38.877144], - [141.069046, 38.879688], - [141.058731, 38.879021], - [141.048645, 38.875481], - [141.038666, 38.874706], - [141.029602, 38.87981], - [141.01915, 38.880596], - [141.009888, 38.876289], - [140.999969, 38.877754], - [140.987625, 38.873192], - [140.980972, 38.881943], - [140.974579, 38.889641], - [140.968567, 38.898594], - [140.959686, 38.905502], - [140.949799, 38.907856], - [140.939987, 38.911823], - [140.92717, 38.916599], - [140.916504, 38.919765], - [140.908295, 38.925888], - [140.89801, 38.924549], - [140.886795, 38.924656], - [140.874969, 38.932899], - [140.865372, 38.938595], - [140.852524, 38.94405], - [140.843399, 38.948483], - [140.835587, 38.956539], - [140.825027, 38.960793], - [140.814697, 38.961594], - [140.803711, 38.959084], - [140.792847, 38.958305], - [140.776779, 38.955109], - [140.777847, 38.965836], - [140.772888, 38.975193], - [140.767975, 38.984322], - [140.772614, 39.00069], - [140.78273, 39.006523], - [140.791229, 39.019569], - [140.797989, 39.02808], - [140.797623, 39.039059], - [140.805115, 39.046867], - [140.812759, 39.055084], - [140.80304, 39.059425], - [140.805496, 39.070808], - [140.796173, 39.074532], - [140.78595, 39.077972], - [140.775497, 39.075764], - [140.7659, 39.078583], - [140.756226, 39.085693], - [140.759903, 39.095188], - [140.765976, 39.104958], - [140.76413, 39.115498], - [140.770432, 39.124084], - [140.756592, 39.132938], - [140.768005, 39.148125], - [140.774246, 39.15649], - [140.78064, 39.165741], - [140.791199, 39.167412], - [140.800705, 39.173447], - [140.811188, 39.177742], - [140.801346, 39.186569], - [140.790161, 39.187027], - [140.778641, 39.191383], - [140.76825, 39.195183], - [140.769424, 39.206364], - [140.772522, 39.215939], - [140.781601, 39.220707], - [140.789764, 39.227787], - [140.785263, 39.236908], - [140.776596, 39.243454], - [140.758987, 39.254128], - [140.749969, 39.258976], - [140.739777, 39.263672], - [140.728439, 39.267464], - [140.720184, 39.274868], - [140.720459, 39.28553], - [140.711853, 39.294254], - [140.701614, 39.297035], - [140.70047, 39.307014], - [140.69989, 39.318157], - [140.709335, 39.333286], - [140.701675, 39.341763], - [140.692123, 39.345924], - [140.694305, 39.355873], - [140.683746, 39.361885], - [140.681625, 39.371792], - [140.679108, 39.382668], - [140.659286, 39.38623], - [140.661728, 39.396656], - [140.662033, 39.411869], - [140.67244, 39.414188], - [140.68486, 39.416618], - [140.688736, 39.426704], - [140.686523, 39.438251], - [140.682495, 39.448395], - [140.689514, 39.456589], - [140.706833, 39.467598], - [140.715668, 39.472904], - [140.722244, 39.481949], - [140.71669, 39.49118], - [140.721756, 39.499947], - [140.727478, 39.508186], - [140.731659, 39.517551], - [140.741394, 39.522896], - [140.744171, 39.534645], - [140.7397, 39.546257], - [140.730698, 39.553329], - [140.733749, 39.562916], - [140.745773, 39.563679], - [140.755203, 39.567379], - [140.762024, 39.575024], - [140.773712, 39.5858], - [140.782745, 39.590855], - [140.786026, 39.601192], - [140.799515, 39.600193], - [140.806793, 39.6073], - [140.807861, 39.617954], - [140.810562, 39.628906], - [140.817535, 39.639099], - [140.825516, 39.64679], - [140.825089, 39.657391], - [140.824814, 39.668446], - [140.822388, 39.678566], - [140.819016, 39.689137], - [140.813339, 39.698338], - [140.8078, 39.707832], - [140.79744, 39.706795], - [140.792633, 39.716049], - [140.786652, 39.724251], - [140.785324, 39.7351], - [140.79541, 39.736507], - [140.805161, 39.740715], - [140.814316, 39.756565], - [140.820877, 39.764317], - [140.828766, 39.771809], - [140.83699, 39.777702], - [140.844437, 39.786446], - [140.846909, 39.798168], - [140.838181, 39.803795], - [140.827301, 39.808975], - [140.817627, 39.814106], - [140.806732, 39.812439], - [140.798111, 39.817982], - [140.789932, 39.823902], - [140.789062, 39.834053], - [140.791306, 39.843948], - [140.789413, 39.854866], - [140.786407, 39.865475], - [140.795837, 39.871834], - [140.803772, 39.878357], - [140.819138, 39.87772], - [140.827805, 39.88306], - [140.837357, 39.878288], - [140.845154, 39.871513], - [140.852783, 39.864403], - [140.863892, 39.867653], - [140.881287, 39.87159], - [140.882416, 39.882629], - [140.874969, 39.893856], - [140.871689, 39.904621], - [140.86319, 39.916603], - [140.86113, 39.926613], - [140.856216, 39.935917], - [140.86087, 39.949844], - [140.85141, 39.956326], - [140.849854, 39.969395], - [140.851608, 39.982811], - [140.853958, 39.992599], - [140.852402, 40.005241], - [140.859131, 40.013023], - [140.85524, 40.022625], - [140.85788, 40.033466], - [140.858612, 40.044102], - [140.854462, 40.053997], - [140.850464, 40.063587], - [140.852325, 40.074127], - [140.868057, 40.083279], - [140.878815, 40.091976], - [140.880981, 40.102215], - [140.882629, 40.112156], - [140.874969, 40.122868], - [140.874969, 40.134922], - [140.880875, 40.143394], - [140.886215, 40.152802], - [140.874969, 40.157124], - [140.866089, 40.171692], - [140.8815, 40.178547], - [140.889893, 40.184975], - [140.893082, 40.197716], - [140.901962, 40.205357], - [140.907288, 40.214756], - [140.916168, 40.220436], - [140.926575, 40.222759], - [140.938004, 40.223347], - [140.94487, 40.232361], - [140.947189, 40.24231], - [140.958389, 40.245602], - [140.966797, 40.237949], - [140.97287, 40.226597], - [140.981674, 40.219303], - [140.991806, 40.219234], - [141.009125, 40.215248], - [141.019394, 40.216324], - [141.029556, 40.218807], - [141.038818, 40.225052], - [141.050674, 40.230129], - [141.060715, 40.230431], - [141.072617, 40.239346], - [141.080215, 40.249054], - [141.092072, 40.250122], - [141.103729, 40.249954], - [141.11319, 40.258617], - [141.10582, 40.277779], - [141.115372, 40.281528], - [141.134201, 40.291302], - [141.14328, 40.297398], - [141.153397, 40.297958], - [141.165207, 40.303463], - [141.179825, 40.307106], - [141.190887, 40.304886], - [141.200897, 40.304981], - [141.210495, 40.309898], - [141.220551, 40.312084], - [141.227081, 40.320282], - [141.235687, 40.325542], - [141.249969, 40.336155], - [141.260483, 40.338749], - [141.267929, 40.347103], - [141.278397, 40.342163], - [141.288925, 40.345264], - [141.295776, 40.353645], - [141.301422, 40.362751], - [141.32019, 40.369843], - [141.328537, 40.362843], - [141.338028, 40.358719], - [141.339844, 40.347458], - [141.346741, 40.339054], - [141.354645, 40.32803], - [141.364853, 40.332157], - [141.374969, 40.337887], - [141.385025, 40.339283], - [141.39679, 40.358044], - [141.405807, 40.362961], - [141.412231, 40.355], - [141.421951, 40.360439], - [141.432846, 40.364613], - [141.441864, 40.370747], - [141.453537, 40.371044], - [141.465515, 40.372044], - [141.476151, 40.374134], - [141.487, 40.371525], - [141.495667, 40.366531], - [141.50943, 40.359852], - [141.516693, 40.35268], - [141.527359, 40.348408], - [141.539337, 40.344311], - [141.549652, 40.349117], - [141.566803, 40.35854], - [141.575821, 40.36525], - [141.584564, 40.370926], - [141.586365, 40.382107], - [141.58461, 40.392635], - [141.589951, 40.403202], - [141.599274, 40.409267], - [141.609924, 40.411221], - [141.624969, 40.417881], - [141.63855, 40.418941], - [141.647858, 40.423344], - [141.660721, 40.427109], - [141.670624, 40.432705], - [141.686035, 40.449593] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "山形県", - "name": "Yamagata", - "ISOCODE": "JP-06", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:12+0100", - "cartodb_id": 21 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [140.065781, 39.13073], - [140.064865, 39.111], - [140.069702, 39.098133], - [140.07605, 39.084324], - [140.091049, 39.082066], - [140.101425, 39.080917], - [140.112091, 39.077045], - [140.119965, 39.069176], - [140.135361, 39.060734], - [140.146927, 39.058586], - [140.152496, 39.049305], - [140.164337, 39.050606], - [140.175186, 39.049511], - [140.185028, 39.05529], - [140.195206, 39.058128], - [140.205048, 39.055763], - [140.205032, 39.044357], - [140.20433, 39.033279], - [140.215912, 39.029812], - [140.225662, 39.026863], - [140.237366, 39.024632], - [140.24884, 39.027924], - [140.259338, 39.02943], - [140.270844, 39.028347], - [140.28125, 39.027382], - [140.291275, 39.024368], - [140.298141, 39.015377], - [140.308807, 39.012028], - [140.317978, 39.016335], - [140.321899, 39.027733], - [140.332382, 39.031933], - [140.341599, 39.026161], - [140.351639, 39.022003], - [140.363815, 39.022724], - [140.366104, 39.011478], - [140.372314, 39.00219], - [140.38147, 38.992104], - [140.391602, 38.990227], - [140.401794, 38.988564], - [140.412888, 38.990635], - [140.424164, 38.989368], - [140.435364, 38.988926], - [140.440933, 38.979546], - [140.449585, 38.973225], - [140.453888, 38.963615], - [140.456421, 38.953617], - [140.453217, 38.942902], - [140.461914, 38.92741], - [140.46492, 38.91774], - [140.475327, 38.911869], - [140.486252, 38.91291], - [140.494385, 38.904591], - [140.50885, 38.892063], - [140.520187, 38.89719], - [140.530304, 38.894779], - [140.542099, 38.896564], - [140.55452, 38.878864], - [140.54303, 38.864845], - [140.55159, 38.857841], - [140.559982, 38.852222], - [140.568909, 38.845066], - [140.579346, 38.838341], - [140.589539, 38.833614], - [140.596985, 38.824562], - [140.602783, 38.815701], - [140.600418, 38.805149], - [140.602005, 38.794106], - [140.6064, 38.78231], - [140.615845, 38.778969], - [140.624969, 38.772709], - [140.642365, 38.773739], - [140.648438, 38.764515], - [140.639633, 38.759205], - [140.634979, 38.749966], - [140.624969, 38.737099], - [140.614014, 38.720757], - [140.610901, 38.709793], - [140.614426, 38.698887], - [140.624939, 38.697304], - [140.625, 38.682026], - [140.620209, 38.668056], - [140.612396, 38.656021], - [140.609085, 38.645508], - [140.603226, 38.636433], - [140.593842, 38.631184], - [140.583115, 38.632626], - [140.5728, 38.635262], - [140.566574, 38.644764], - [140.549896, 38.646732], - [140.544662, 38.637745], - [140.545792, 38.626442], - [140.55188, 38.617207], - [140.557739, 38.609089], - [140.565552, 38.601978], - [140.569611, 38.59174], - [140.575424, 38.583282], - [140.577362, 38.573002], - [140.576965, 38.561962], - [140.573181, 38.55191], - [140.567551, 38.542454], - [140.557907, 38.53616], - [140.562637, 38.526276], - [140.572311, 38.520058], - [140.569122, 38.510105], - [140.57135, 38.49995], - [140.579468, 38.491154], - [140.590103, 38.487648], - [140.601639, 38.484207], - [140.606369, 38.474926], - [140.611755, 38.466167], - [140.611618, 38.456123], - [140.623077, 38.452316], - [140.608902, 38.441174], - [140.600311, 38.433983], - [140.589951, 38.438107], - [140.584869, 38.429432], - [140.581558, 38.419304], - [140.576462, 38.402294], - [140.580505, 38.392284], - [140.574295, 38.38419], - [140.565399, 38.374306], - [140.555252, 38.372974], - [140.550507, 38.364048], - [140.540665, 38.35944], - [140.531052, 38.355843], - [140.525253, 38.346741], - [140.527115, 38.336742], - [140.53334, 38.322681], - [140.527237, 38.31356], - [140.515839, 38.308094], - [140.506149, 38.30283], - [140.495926, 38.290825], - [140.500397, 38.280434], - [140.492599, 38.272667], - [140.479828, 38.269737], - [140.475662, 38.259853], - [140.472504, 38.239784], - [140.471527, 38.229038], - [140.477539, 38.220451], - [140.474304, 38.21035], - [140.478439, 38.200165], - [140.481949, 38.190784], - [140.483505, 38.179985], - [140.477203, 38.172066], - [140.472504, 38.163193], - [140.468613, 38.153339], - [140.458054, 38.149246], - [140.449188, 38.140736], - [140.44812, 38.128193], - [140.435654, 38.124413], - [140.427185, 38.116669], - [140.424286, 38.105862], - [140.422302, 38.095707], - [140.424469, 38.085621], - [140.41774, 38.075661], - [140.40741, 38.070316], - [140.397064, 38.067013], - [140.386108, 38.068275], - [140.382889, 38.058796], - [140.367538, 38.053574], - [140.356888, 38.054863], - [140.345596, 38.051762], - [140.334778, 38.053131], - [140.321869, 38.052708], - [140.311646, 38.054783], - [140.301559, 38.053238], - [140.291351, 38.05632], - [140.280365, 38.053093], - [140.285645, 38.043751], - [140.279007, 38.032871], - [140.283463, 38.023045], - [140.286713, 38.01318], - [140.292145, 38.004707], - [140.284103, 37.994709], - [140.279282, 37.984016], - [140.283295, 37.973682], - [140.275253, 37.964725], - [140.276901, 37.953915], - [140.281113, 37.941959], - [140.282181, 37.931553], - [140.277588, 37.920937], - [140.267899, 37.904976], - [140.27066, 37.89436], - [140.270676, 37.883488], - [140.271866, 37.872917], - [140.272949, 37.862194], - [140.268982, 37.85215], - [140.269577, 37.841854], - [140.270157, 37.824253], - [140.279221, 37.817711], - [140.288147, 37.81263], - [140.297913, 37.80788], - [140.293747, 37.798481], - [140.285294, 37.791874], - [140.280838, 37.782368], - [140.271622, 37.777424], - [140.265076, 37.769352], - [140.257767, 37.761414], - [140.244217, 37.750816], - [140.230301, 37.743103], - [140.220139, 37.744019], - [140.199951, 37.750111], - [140.187119, 37.752266], - [140.175095, 37.752895], - [140.164337, 37.753529], - [140.1539, 37.750191], - [140.146484, 37.742001], - [140.137512, 37.735725], - [140.126694, 37.730942], - [140.114883, 37.733498], - [140.104828, 37.735695], - [140.09375, 37.749981], - [140.084137, 37.753349], - [140.073502, 37.754719], - [140.068466, 37.764534], - [140.058487, 37.767815], - [140.0522, 37.775948], - [140.0439, 37.767212], - [140.03418, 37.764763], - [140.023773, 37.760704], - [140.013763, 37.760685], - [140.002853, 37.757706], - [139.989761, 37.757561], - [139.981522, 37.765961], - [139.975143, 37.775143], - [139.97197, 37.785599], - [139.963226, 37.793079], - [139.965179, 37.803017], - [139.957748, 37.812866], - [139.948318, 37.816517], - [139.940552, 37.825089], - [139.931213, 37.818577], - [139.923813, 37.810936], - [139.913162, 37.811344], - [139.902878, 37.808327], - [139.891846, 37.807919], - [139.879837, 37.810326], - [139.870789, 37.818932], - [139.861053, 37.823544], - [139.850571, 37.817432], - [139.842102, 37.812035], - [139.831894, 37.810734], - [139.82196, 37.806664], - [139.813416, 37.800301], - [139.806747, 37.808678], - [139.798004, 37.814983], - [139.791275, 37.82402], - [139.78157, 37.827614], - [139.771164, 37.825401], - [139.759827, 37.820103], - [139.741348, 37.820187], - [139.730469, 37.832211], - [139.722641, 37.839828], - [139.718719, 37.851265], - [139.706482, 37.85054], - [139.696167, 37.845852], - [139.682343, 37.848675], - [139.672409, 37.853748], - [139.662857, 37.858746], - [139.658401, 37.869484], - [139.648087, 37.875191], - [139.638931, 37.882652], - [139.635269, 37.896049], - [139.629593, 37.905231], - [139.633469, 37.923069], - [139.64093, 37.930565], - [139.644012, 37.940872], - [139.643967, 37.951046], - [139.647797, 37.961903], - [139.643814, 37.971432], - [139.642624, 37.982502], - [139.648087, 37.992455], - [139.655899, 38.000023], - [139.657578, 38.011314], - [139.657089, 38.022491], - [139.659286, 38.032444], - [139.668961, 38.036789], - [139.679138, 38.038189], - [139.685562, 38.046623], - [139.694412, 38.05294], - [139.692612, 38.067791], - [139.676559, 38.083355], - [139.681076, 38.097565], - [139.688889, 38.107212], - [139.69371, 38.116226], - [139.692337, 38.126392], - [139.693817, 38.137974], - [139.693924, 38.148304], - [139.688095, 38.15646], - [139.685608, 38.168594], - [139.691177, 38.179329], - [139.699326, 38.1852], - [139.704208, 38.193935], - [139.711823, 38.201534], - [139.723557, 38.201637], - [139.733841, 38.198051], - [139.744324, 38.197407], - [139.756607, 38.19083], - [139.767365, 38.196007], - [139.779404, 38.195202], - [139.791992, 38.192772], - [139.801056, 38.198654], - [139.810669, 38.204975], - [139.821091, 38.209633], - [139.829773, 38.214725], - [139.840485, 38.219093], - [139.850876, 38.222172], - [139.861588, 38.227085], - [139.867752, 38.237328], - [139.879013, 38.252586], - [139.884567, 38.261311], - [139.893845, 38.267002], - [139.9021, 38.279991], - [139.901443, 38.290733], - [139.891693, 38.298149], - [139.882401, 38.303993], - [139.87825, 38.313919], - [139.868439, 38.322735], - [139.860458, 38.329105], - [139.842987, 38.339939], - [139.832413, 38.341377], - [139.823776, 38.348835], - [139.813065, 38.352581], - [139.802887, 38.349438], - [139.79245, 38.347202], - [139.782928, 38.350304], - [139.772476, 38.351688], - [139.763565, 38.35815], - [139.749466, 38.359043], - [139.740952, 38.365208], - [139.733459, 38.372124], - [139.730988, 38.382557], - [139.722351, 38.389275], - [139.713364, 38.383644], - [139.707916, 38.393745], - [139.708862, 38.404198], - [139.718552, 38.417259], - [139.721649, 38.426899], - [139.721451, 38.43848], - [139.723236, 38.44836], - [139.718536, 38.457592], - [139.716507, 38.467663], - [139.720963, 38.477345], - [139.729019, 38.483757], - [139.716644, 38.495461], - [139.703979, 38.500027], - [139.687439, 38.502785], - [139.676697, 38.503769], - [139.665588, 38.505486], - [139.653412, 38.505077], - [139.641617, 38.508335], - [139.635437, 38.516815], - [139.624969, 38.522327], - [139.614975, 38.521446], - [139.605042, 38.519836], - [139.594452, 38.525951], - [139.584778, 38.530617], - [139.575226, 38.535759], - [139.566086, 38.53997], - [139.550919, 38.545071], - [139.548431, 38.550541], - [139.543777, 38.553772], - [139.539215, 38.552208], - [139.538284, 38.555771], - [139.541946, 38.561737], - [139.54805, 38.569107], - [139.552567, 38.569214], - [139.554916, 38.575417], - [139.561249, 38.581738], - [139.570602, 38.598209], - [139.577255, 38.605564], - [139.58017, 38.613007], - [139.588882, 38.618855], - [139.588577, 38.624908], - [139.596313, 38.633072], - [139.598862, 38.644272], - [139.604095, 38.649364], - [139.604538, 38.654358], - [139.605927, 38.656048], - [139.623184, 38.677074], - [139.631409, 38.683769], - [139.639938, 38.684196], - [139.64949, 38.690857], - [139.65451, 38.697201], - [139.662109, 38.701195], - [139.666656, 38.709011], - [139.674881, 38.715702], - [139.682297, 38.714695], - [139.685028, 38.716713], - [139.685226, 38.721924], - [139.692917, 38.721535], - [139.698914, 38.725353], - [139.707764, 38.740078], - [139.710281, 38.744267], - [139.746155, 38.770725], - [139.753922, 38.778877], - [139.760941, 38.788094], - [139.788513, 38.846008], - [139.787842, 38.849152], - [139.792953, 38.857365], - [139.802109, 38.879868], - [139.811707, 38.919865], - [139.815186, 38.920406], - [139.817871, 38.914295], - [139.824081, 38.909348], - [139.825562, 38.908276], - [139.829117, 38.910912], - [139.834808, 38.911167], - [139.834885, 38.912834], - [139.821732, 38.923996], - [139.817261, 38.925568], - [139.81604, 38.928307], - [139.827789, 38.955532], - [139.842819, 38.977467], - [139.847229, 38.987782], - [139.865585, 39.025681], - [139.86937, 39.053097], - [139.876312, 39.065849], - [139.877014, 39.07021], - [139.874252, 39.071514], - [139.868637, 39.074169], - [139.874695, 39.078602], - [139.875534, 39.086292], - [139.881454, 39.093651], - [139.879745, 39.104115], - [139.872437, 39.114925], - [139.875015, 39.118484], - [139.906342, 39.115849], - [139.926941, 39.113129], - [139.948776, 39.109867], - [139.986496, 39.105534], - [139.997162, 39.102852], - [140.000732, 39.112938], - [140.016098, 39.121075], - [140.065781, 39.13073] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "宮城県", - "name": "Miyagi", - "ISOCODE": "JP-04", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:18+0100", - "cartodb_id": 22 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [141.487259, 38.974987], - [141.489655, 38.985069], - [141.499542, 38.995667], - [141.511642, 38.999146], - [141.520752, 38.994289], - [141.530426, 38.989563], - [141.54039, 38.992256], - [141.550537, 38.993111], - [141.561981, 38.99221], - [141.572815, 38.990715], - [141.637711, 38.969353], - [141.645416, 38.954464], - [141.63826, 38.955368], - [141.638062, 38.952248], - [141.641602, 38.949188], - [141.644073, 38.941792], - [141.649857, 38.944695], - [141.65033, 38.943634], - [141.65007, 38.939678], - [141.645569, 38.9361], - [141.645386, 38.933296], - [141.645309, 38.931938], - [141.639801, 38.92944], - [141.640518, 38.927956], - [141.64473, 38.927162], - [141.647644, 38.922668], - [141.651962, 38.923332], - [141.654327, 38.914478], - [141.651901, 38.909985], - [141.655411, 38.906509], - [141.655319, 38.900879], - [141.664322, 38.895729], - [141.669067, 38.890743], - [141.670456, 38.887352], - [141.664673, 38.884449], - [141.668655, 38.880119], - [141.667191, 38.87809], - [141.672989, 38.872856], - [141.677567, 38.865376], - [141.679352, 38.859879], - [141.67601, 38.853542], - [141.672058, 38.854324], - [141.667328, 38.85952], - [141.664246, 38.857136], - [141.661362, 38.857876], - [141.656113, 38.864204], - [141.642059, 38.881165], - [141.640518, 38.88644], - [141.638199, 38.887573], - [141.637436, 38.892399], - [141.640656, 38.901035], - [141.637222, 38.901588], - [141.632812, 38.899258], - [141.630981, 38.895782], - [141.625107, 38.895596], - [141.626724, 38.891567], - [141.630325, 38.889549], - [141.620331, 38.887642], - [141.615372, 38.880951], - [141.611496, 38.88298], - [141.608124, 38.880192], - [141.605225, 38.880722], - [141.601196, 38.888596], - [141.595612, 38.893192], - [141.591568, 38.892517], - [141.588791, 38.907642], - [141.586212, 38.908993], - [141.583618, 38.905964], - [141.581085, 38.895424], - [141.583023, 38.89222], - [141.587631, 38.889328], - [141.593399, 38.879299], - [141.583511, 38.849434], - [141.589096, 38.840664], - [141.589996, 38.829781], - [141.596512, 38.831615], - [141.605225, 38.826061], - [141.602737, 38.824699], - [141.596893, 38.824924], - [141.595154, 38.822697], - [141.59169, 38.818451], - [141.589172, 38.820843], - [141.585236, 38.821831], - [141.583282, 38.820442], - [141.579422, 38.809952], - [141.574768, 38.808044], - [141.563965, 38.809925], - [141.558716, 38.802616], - [141.545639, 38.793728], - [141.532822, 38.79031], - [141.531281, 38.789898], - [141.521317, 38.783813], - [141.519958, 38.779064], - [141.519928, 38.765923], - [141.521622, 38.763145], - [141.528595, 38.75975], - [141.5336, 38.750168], - [141.539642, 38.748894], - [141.541794, 38.740883], - [141.552017, 38.734024], - [141.556427, 38.736565], - [141.56723, 38.738861], - [141.569397, 38.735229], - [141.56691, 38.729694], - [141.568207, 38.724842], - [141.560944, 38.719284], - [141.561203, 38.715099], - [141.568909, 38.710629], - [141.569672, 38.705799], - [141.569336, 38.704983], - [141.562424, 38.687927], - [141.559509, 38.688038], - [141.557159, 38.692928], - [141.558228, 38.697269], - [141.55545, 38.703846], - [141.545288, 38.707367], - [141.538498, 38.705124], - [141.53566, 38.710865], - [141.529602, 38.716103], - [141.525101, 38.712105], - [141.527481, 38.70763], - [141.516434, 38.684059], - [141.510422, 38.681366], - [141.507416, 38.684402], - [141.502411, 38.685219], - [141.499374, 38.68763], - [141.494064, 38.683453], - [141.496063, 38.68021], - [141.496964, 38.678753], - [141.497772, 38.670376], - [141.494812, 38.669861], - [141.487808, 38.67263], - [141.483932, 38.670273], - [141.478882, 38.674431], - [141.475571, 38.672676], - [141.473785, 38.669407], - [141.467102, 38.669033], - [141.465378, 38.666801], - [141.45546, 38.669891], - [141.45253, 38.669792], - [141.450195, 38.666332], - [141.452347, 38.653732], - [141.448059, 38.644505], - [141.45192, 38.642483], - [141.458893, 38.643471], - [141.466461, 38.641308], - [141.469803, 38.643684], - [141.473541, 38.643959], - [141.476913, 38.642582], - [141.485687, 38.642666], - [141.487045, 38.638859], - [141.495544, 38.638535], - [141.499146, 38.640903], - [141.502167, 38.638283], - [141.509262, 38.64135], - [141.525345, 38.634892], - [141.53067, 38.634899], - [141.534286, 38.63747], - [141.533524, 38.621017], - [141.519089, 38.602581], - [141.513428, 38.601337], - [141.511292, 38.596828], - [141.506348, 38.594303], - [141.499146, 38.58519], - [141.494141, 38.581413], - [141.48645, 38.577324], - [141.480133, 38.5784], - [141.46637, 38.574749], - [141.465469, 38.573112], - [141.464157, 38.568989], - [141.463425, 38.561295], - [141.470337, 38.561451], - [141.473083, 38.558636], - [141.477295, 38.558056], - [141.480286, 38.559196], - [141.481888, 38.555168], - [141.488358, 38.552422], - [141.49115, 38.546055], - [141.49144, 38.533314], - [141.502838, 38.528912], - [141.508286, 38.531208], - [141.516617, 38.541325], - [141.523849, 38.538128], - [141.532303, 38.550114], - [141.536697, 38.544102], - [141.536499, 38.540981], - [141.530914, 38.532223], - [141.539032, 38.530449], - [141.543503, 38.521301], - [141.544098, 38.513767], - [141.539215, 38.507694], - [141.538452, 38.503967], - [141.542587, 38.50214], - [141.543121, 38.498154], - [141.538528, 38.492485], - [141.540878, 38.487595], - [141.537048, 38.485657], - [141.525635, 38.485676], - [141.521805, 38.488121], - [141.517563, 38.488075], - [141.514786, 38.490269], - [141.516541, 38.497295], - [141.513794, 38.504288], - [141.510727, 38.506283], - [141.496155, 38.50663], - [141.484482, 38.515213], - [141.475525, 38.516388], - [141.481644, 38.511906], - [141.493561, 38.503181], - [141.498169, 38.49633], - [141.498184, 38.483597], - [141.500137, 38.476635], - [141.496475, 38.468845], - [141.484024, 38.464729], - [141.485779, 38.462994], - [141.50145, 38.459267], - [141.504593, 38.454346], - [141.50032, 38.449501], - [141.506165, 38.445312], - [141.509064, 38.444992], - [141.513519, 38.448578], - [141.514114, 38.445217], - [141.510406, 38.440975], - [141.500717, 38.438633], - [141.496811, 38.435444], - [141.491226, 38.435238], - [141.490082, 38.434353], - [141.488159, 38.43285], - [141.479599, 38.43589], - [141.467499, 38.437393], - [141.463287, 38.442352], - [141.458313, 38.443169], - [141.450226, 38.441177], - [141.461868, 38.436356], - [141.470428, 38.424759], - [141.473541, 38.423599], - [141.475647, 38.414753], - [141.473999, 38.405006], - [141.469284, 38.397255], - [141.473221, 38.392303], - [141.476944, 38.392582], - [141.485504, 38.402481], - [141.493408, 38.406147], - [141.499069, 38.41317], - [141.50058, 38.415054], - [141.504929, 38.416767], - [141.507996, 38.414978], - [141.508636, 38.412453], - [141.505417, 38.407566], - [141.508591, 38.398678], - [141.513748, 38.396393], - [141.522552, 38.397514], - [141.526154, 38.39571], - [141.538193, 38.401714], - [141.542038, 38.399689], - [141.544846, 38.389561], - [141.542542, 38.38652], - [141.537964, 38.385235], - [141.533554, 38.378311], - [141.527252, 38.387733], - [141.524109, 38.388275], - [141.520477, 38.385284], - [141.514206, 38.390949], - [141.509674, 38.390495], - [141.506897, 38.384132], - [141.502945, 38.380318], - [141.498306, 38.378391], - [141.49234, 38.375923], - [141.486755, 38.375511], - [141.485184, 38.371395], - [141.492569, 38.366734], - [141.495682, 38.369953], - [141.504822, 38.367725], - [141.512894, 38.369713], - [141.518402, 38.368874], - [141.52092, 38.366898], - [141.528488, 38.343647], - [141.534592, 38.339657], - [141.527771, 38.323429], - [141.529892, 38.319382], - [141.538773, 38.317371], - [141.541046, 38.315613], - [141.538284, 38.305283], - [141.532455, 38.300037], - [141.530716, 38.298477], - [141.526932, 38.288605], - [141.525665, 38.280933], - [141.526764, 38.272957], - [141.524673, 38.269073], - [141.513214, 38.272224], - [141.508881, 38.296188], - [141.504257, 38.294277], - [141.500565, 38.290035], - [141.49234, 38.289722], - [141.491501, 38.293304], - [141.497055, 38.297684], - [141.497269, 38.301014], - [141.490936, 38.305641], - [141.477951, 38.305302], - [141.471619, 38.310135], - [141.467621, 38.303947], - [141.463654, 38.305218], - [141.460587, 38.311386], - [141.450241, 38.310944], - [141.448227, 38.312691], - [141.453659, 38.314991], - [141.456345, 38.319897], - [141.462265, 38.321552], - [141.475388, 38.332741], - [141.46492, 38.334599], - [141.461899, 38.350159], - [141.459717, 38.349197], - [141.455719, 38.340164], - [141.453339, 38.340046], - [141.451859, 38.346363], - [141.448883, 38.349609], - [141.446213, 38.349293], - [141.441528, 38.341953], - [141.434006, 38.340153], - [141.436661, 38.344643], - [141.431427, 38.345676], - [141.430191, 38.345047], - [141.42569, 38.342762], - [141.423004, 38.346409], - [141.417496, 38.347244], - [141.420593, 38.350258], - [141.418961, 38.353867], - [141.427765, 38.354996], - [141.427216, 38.358982], - [141.431976, 38.363396], - [141.438934, 38.364384], - [141.449615, 38.370243], - [141.459778, 38.371735], - [141.456528, 38.374989], - [141.443542, 38.374855], - [141.439636, 38.371662], - [141.434052, 38.371246], - [141.44014, 38.379993], - [141.436966, 38.380112], - [141.429428, 38.378101], - [141.426575, 38.37466], - [141.420547, 38.375721], - [141.419861, 38.377625], - [141.425125, 38.381393], - [141.425308, 38.384518], - [141.427505, 38.387001], - [141.433853, 38.394211], - [141.431259, 38.395145], - [141.426651, 38.39344], - [141.422791, 38.395256], - [141.420197, 38.391804], - [141.416199, 38.391537], - [141.409698, 38.402218], - [141.40535, 38.400501], - [141.401138, 38.392101], - [141.393265, 38.384674], - [141.37999, 38.379742], - [141.36795, 38.382278], - [141.365479, 38.385082], - [141.371277, 38.393425], - [141.369919, 38.406204], - [141.373016, 38.409222], - [141.370758, 38.411392], - [141.363647, 38.407688], - [141.343689, 38.410725], - [141.325867, 38.409504], - [141.317535, 38.412106], - [141.301254, 38.409988], - [141.275986, 38.404026], - [141.274734, 38.405113], - [141.267242, 38.403927], - [141.254074, 38.405449], - [141.247238, 38.40173], - [141.227066, 38.396614], - [141.186218, 38.377422], - [141.181961, 38.376945], - [141.17836, 38.374363], - [141.170059, 38.367981], - [141.16188, 38.352234], - [141.161133, 38.36475], - [141.151398, 38.356541], - [141.138763, 38.358028], - [141.138641, 38.369926], - [141.134918, 38.374233], - [141.126022, 38.376217], - [141.112061, 38.382133], - [141.110626, 38.380302], - [141.112335, 38.377533], - [141.122116, 38.372597], - [141.119125, 38.371243], - [141.111694, 38.371086], - [141.111435, 38.366505], - [141.109604, 38.36578], - [141.109009, 38.365543], - [141.106049, 38.369614], - [141.100418, 38.37294], - [141.101288, 38.378963], - [141.097885, 38.384296], - [141.090942, 38.388088], - [141.086197, 38.388462], - [141.087555, 38.384449], - [141.095688, 38.378323], - [141.079346, 38.375137], - [141.076981, 38.370628], - [141.070465, 38.367725], - [141.066757, 38.363056], - [141.071198, 38.352467], - [141.069931, 38.348755], - [141.06488, 38.348305], - [141.059662, 38.340347], - [141.049911, 38.345901], - [141.046982, 38.345585], - [141.043869, 38.341938], - [141.04332, 38.335873], - [141.043167, 38.33424], - [141.045288, 38.334167], - [141.051056, 38.337933], - [141.054703, 38.336971], - [141.055405, 38.335072], - [141.043671, 38.3288], - [141.053726, 38.329472], - [141.05336, 38.327003], - [141.047882, 38.323643], - [141.040421, 38.322857], - [141.031479, 38.318993], - [141.036163, 38.317581], - [141.044449, 38.318962], - [141.049957, 38.318146], - [141.05162, 38.314751], - [141.043686, 38.310017], - [141.040527, 38.305744], - [141.041214, 38.303635], - [141.044174, 38.304573], - [141.048935, 38.309418], - [141.056442, 38.306446], - [141.058167, 38.308887], - [141.05542, 38.311699], - [141.058167, 38.31369], - [141.065094, 38.314285], - [141.069717, 38.320328], - [141.070221, 38.320992], - [141.076569, 38.315971], - [141.084366, 38.318203], - [141.085922, 38.31773], - [141.083008, 38.313034], - [141.090927, 38.303158], - [141.096909, 38.301277], - [141.088943, 38.291332], - [141.075745, 38.292], - [141.068146, 38.279118], - [141.064377, 38.27779], - [141.052246, 38.278625], - [141.03978, 38.268414], - [141.035248, 38.267738], - [141.033493, 38.269466], - [141.036667, 38.274158], - [141.035995, 38.276478], - [141.033615, 38.276558], - [141.02887, 38.271923], - [141.024597, 38.272923], - [141.022598, 38.273392], - [141.021103, 38.270103], - [141.003998, 38.271942], - [141.000931, 38.268917], - [141.003159, 38.266129], - [141.018494, 38.266018], - [141.019699, 38.264099], - [141.013702, 38.257713], - [141.013397, 38.255421], - [141.02623, 38.262623], - [141.028885, 38.262741], - [141.029526, 38.260006], - [141.005402, 38.239548], - [140.985611, 38.211426], - [140.969482, 38.182343], - [140.971268, 38.190838], - [140.970078, 38.193172], - [140.966843, 38.191822], - [140.964508, 38.183136], - [140.960037, 38.17849], - [140.956329, 38.178406], - [140.952896, 38.178524], - [140.957504, 38.175655], - [140.957794, 38.171261], - [140.952408, 38.164558], - [140.947586, 38.163261], - [140.947113, 38.159519], - [140.949036, 38.155907], - [140.953094, 38.157646], - [140.963379, 38.172115], - [140.963882, 38.166672], - [140.950531, 38.144585], - [140.941177, 38.118191], - [140.930634, 38.079308], - [140.929657, 38.056385], - [140.927856, 38.052273], - [140.927368, 38.048115], - [140.929688, 38.042191], - [140.926727, 38.041039], - [140.921875, 38.044125], - [140.902939, 38.040169], - [140.896439, 38.041847], - [140.895294, 38.040009], - [140.897278, 38.037647], - [140.919449, 38.033352], - [140.923019, 38.035946], - [140.927017, 38.036648], - [140.920532, 38.014114], - [140.920609, 38.004189], - [140.920639, 38.001381], - [140.91803, 37.992077], - [140.90802, 37.987404], - [140.9077, 37.981361], - [140.916687, 37.986694], - [140.920334, 37.985943], - [140.925644, 37.937759], - [140.924744, 37.925892], - [140.928375, 37.920132], - [140.929749, 37.906517], - [140.932999, 37.900887], - [140.936249, 37.895233], - [140.936844, 37.891201], - [140.915802, 37.893513], - [140.905472, 37.894302], - [140.896179, 37.899151], - [140.884552, 37.894749], - [140.874481, 37.893528], - [140.859589, 37.888145], - [140.863708, 37.878857], - [140.859543, 37.869549], - [140.864426, 37.860195], - [140.859177, 37.850914], - [140.857498, 37.838886], - [140.857788, 37.821613], - [140.861328, 37.811333], - [140.861038, 37.800827], - [140.854263, 37.792023], - [140.841995, 37.792152], - [140.831284, 37.792809], - [140.821426, 37.795216], - [140.810989, 37.794399], - [140.799454, 37.796696], - [140.788803, 37.800194], - [140.773895, 37.794613], - [140.790176, 37.786404], - [140.797882, 37.778923], - [140.790131, 37.772297], - [140.779404, 37.778542], - [140.763611, 37.782104], - [140.749969, 37.784565], - [140.7397, 37.782749], - [140.728836, 37.783119], - [140.72142, 37.791435], - [140.713364, 37.798195], - [140.696777, 37.803288], - [140.689636, 37.811569], - [140.688065, 37.822136], - [140.682663, 37.833282], - [140.689682, 37.840416], - [140.694275, 37.850426], - [140.690842, 37.861885], - [140.686066, 37.870888], - [140.691864, 37.879272], - [140.685501, 37.887531], - [140.675598, 37.889961], - [140.663483, 37.89777], - [140.650589, 37.895947], - [140.629791, 37.896236], - [140.621887, 37.909203], - [140.601639, 37.904636], - [140.590683, 37.906311], - [140.57312, 37.917366], - [140.563553, 37.907688], - [140.552338, 37.906658], - [140.541321, 37.902138], - [140.531464, 37.903847], - [140.520676, 37.904613], - [140.509949, 37.901695], - [140.499969, 37.897133], - [140.487488, 37.898518], - [140.478409, 37.906612], - [140.4729, 37.915291], - [140.472397, 37.925438], - [140.468994, 37.942177], - [140.45694, 37.947716], - [140.447845, 37.953938], - [140.43663, 37.950832], - [140.426163, 37.955292], - [140.414932, 37.96022], - [140.411102, 37.969948], - [140.400436, 37.970703], - [140.39006, 37.963211], - [140.389267, 37.952454], - [140.371994, 37.953915], - [140.360016, 37.95496], - [140.353745, 37.947086], - [140.344116, 37.950016], - [140.33226, 37.954872], - [140.321701, 37.955185], - [140.312225, 37.960579], - [140.303574, 37.96653], - [140.292664, 37.969395], - [140.283295, 37.973682], - [140.279282, 37.984016], - [140.284103, 37.994709], - [140.292145, 38.004707], - [140.286713, 38.01318], - [140.283463, 38.023045], - [140.279007, 38.032871], - [140.285645, 38.043751], - [140.280365, 38.053093], - [140.291351, 38.05632], - [140.301559, 38.053238], - [140.311646, 38.054783], - [140.321869, 38.052708], - [140.334778, 38.053131], - [140.345596, 38.051762], - [140.356888, 38.054863], - [140.367538, 38.053574], - [140.382889, 38.058796], - [140.386108, 38.068275], - [140.397064, 38.067013], - [140.40741, 38.070316], - [140.41774, 38.075661], - [140.424469, 38.085621], - [140.422302, 38.095707], - [140.424286, 38.105862], - [140.427185, 38.116669], - [140.435654, 38.124413], - [140.44812, 38.128193], - [140.449188, 38.140736], - [140.458054, 38.149246], - [140.468613, 38.153339], - [140.472504, 38.163193], - [140.477203, 38.172066], - [140.483505, 38.179985], - [140.481949, 38.190784], - [140.478439, 38.200165], - [140.474304, 38.21035], - [140.477539, 38.220451], - [140.471527, 38.229038], - [140.472504, 38.239784], - [140.475662, 38.259853], - [140.479828, 38.269737], - [140.492599, 38.272667], - [140.500397, 38.280434], - [140.495926, 38.290825], - [140.506149, 38.30283], - [140.515839, 38.308094], - [140.527237, 38.31356], - [140.53334, 38.322681], - [140.527115, 38.336742], - [140.525253, 38.346741], - [140.531052, 38.355843], - [140.540665, 38.35944], - [140.550507, 38.364048], - [140.555252, 38.372974], - [140.565399, 38.374306], - [140.574295, 38.38419], - [140.580505, 38.392284], - [140.576462, 38.402294], - [140.581558, 38.419304], - [140.584869, 38.429432], - [140.589951, 38.438107], - [140.600311, 38.433983], - [140.608902, 38.441174], - [140.623077, 38.452316], - [140.611618, 38.456123], - [140.611755, 38.466167], - [140.606369, 38.474926], - [140.601639, 38.484207], - [140.590103, 38.487648], - [140.579468, 38.491154], - [140.57135, 38.49995], - [140.569122, 38.510105], - [140.572311, 38.520058], - [140.562637, 38.526276], - [140.557907, 38.53616], - [140.567551, 38.542454], - [140.573181, 38.55191], - [140.576965, 38.561962], - [140.577362, 38.573002], - [140.575424, 38.583282], - [140.569611, 38.59174], - [140.565552, 38.601978], - [140.557739, 38.609089], - [140.55188, 38.617207], - [140.545792, 38.626442], - [140.544662, 38.637745], - [140.549896, 38.646732], - [140.566574, 38.644764], - [140.5728, 38.635262], - [140.583115, 38.632626], - [140.593842, 38.631184], - [140.603226, 38.636433], - [140.609085, 38.645508], - [140.612396, 38.656021], - [140.620209, 38.668056], - [140.625, 38.682026], - [140.624939, 38.697304], - [140.614426, 38.698887], - [140.610901, 38.709793], - [140.614014, 38.720757], - [140.624969, 38.737099], - [140.634979, 38.749966], - [140.639633, 38.759205], - [140.648438, 38.764515], - [140.642365, 38.773739], - [140.624969, 38.772709], - [140.615845, 38.778969], - [140.6064, 38.78231], - [140.602005, 38.794106], - [140.600418, 38.805149], - [140.602783, 38.815701], - [140.596985, 38.824562], - [140.589539, 38.833614], - [140.579346, 38.838341], - [140.568909, 38.845066], - [140.559982, 38.852222], - [140.55159, 38.857841], - [140.54303, 38.864845], - [140.55452, 38.878864], - [140.567978, 38.871681], - [140.577667, 38.875858], - [140.588776, 38.877251], - [140.598053, 38.883263], - [140.610382, 38.88361], - [140.618088, 38.89109], - [140.635406, 38.88438], - [140.64563, 38.883934], - [140.657501, 38.886131], - [140.666061, 38.891323], - [140.675262, 38.895725], - [140.682419, 38.905342], - [140.688065, 38.913879], - [140.698608, 38.918591], - [140.718491, 38.924194], - [140.726425, 38.931557], - [140.730667, 38.941471], - [140.740707, 38.948246], - [140.75946, 38.95507], - [140.776779, 38.955109], - [140.792847, 38.958305], - [140.803711, 38.959084], - [140.814697, 38.961594], - [140.825027, 38.960793], - [140.835587, 38.956539], - [140.843399, 38.948483], - [140.852524, 38.94405], - [140.865372, 38.938595], - [140.874969, 38.932899], - [140.886795, 38.924656], - [140.89801, 38.924549], - [140.908295, 38.925888], - [140.916504, 38.919765], - [140.92717, 38.916599], - [140.939987, 38.911823], - [140.949799, 38.907856], - [140.959686, 38.905502], - [140.968567, 38.898594], - [140.974579, 38.889641], - [140.980972, 38.881943], - [140.987625, 38.873192], - [140.999969, 38.877754], - [141.009888, 38.876289], - [141.01915, 38.880596], - [141.029602, 38.87981], - [141.038666, 38.874706], - [141.048645, 38.875481], - [141.058731, 38.879021], - [141.069046, 38.879688], - [141.079376, 38.877144], - [141.089828, 38.880592], - [141.09967, 38.883202], - [141.107513, 38.876915], - [141.124969, 38.877331], - [141.136337, 38.875217], - [141.149506, 38.86586], - [141.149063, 38.855179], - [141.142899, 38.84716], - [141.134033, 38.839832], - [141.119003, 38.83345], - [141.124969, 38.822842], - [141.135178, 38.809818], - [141.144287, 38.801586], - [141.142914, 38.790092], - [141.150391, 38.782013], - [141.160751, 38.779514], - [141.175125, 38.775681], - [141.184296, 38.780903], - [141.195068, 38.774258], - [141.2043, 38.768188], - [141.210495, 38.759487], - [141.215469, 38.749912], - [141.232742, 38.749916], - [141.243805, 38.752502], - [141.25914, 38.757156], - [141.259491, 38.767391], - [141.267975, 38.784851], - [141.278961, 38.791145], - [141.290268, 38.794044], - [141.300827, 38.790455], - [141.306931, 38.799057], - [141.310638, 38.809086], - [141.313538, 38.819344], - [141.324051, 38.815475], - [141.334259, 38.809704], - [141.344376, 38.80547], - [141.354004, 38.809193], - [141.364426, 38.805916], - [141.374969, 38.80352], - [141.382599, 38.793072], - [141.393875, 38.795338], - [141.399918, 38.787163], - [141.410721, 38.784126], - [141.418839, 38.778187], - [141.437851, 38.779625], - [141.438171, 38.808186], - [141.449966, 38.807274], - [141.460098, 38.812752], - [141.456543, 38.82267], - [141.454056, 38.83593], - [141.46048, 38.84668], - [141.463425, 38.856483], - [141.455551, 38.86676], - [141.458344, 38.876621], - [141.469452, 38.882454], - [141.474335, 38.892555], - [141.483475, 38.898586], - [141.492722, 38.904488], - [141.494614, 38.916573], - [141.490189, 38.92738], - [141.492752, 38.938286], - [141.494507, 38.948757], - [141.493729, 38.960072], - [141.487259, 38.974987] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "新潟県", - "name": "Niigata", - "ISOCODE": "JP-15", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:26+0100", - "cartodb_id": 24 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [139.624969, 38.522327], - [139.635437, 38.516815], - [139.641617, 38.508335], - [139.653412, 38.505077], - [139.665588, 38.505486], - [139.676697, 38.503769], - [139.687439, 38.502785], - [139.703979, 38.500027], - [139.716644, 38.495461], - [139.729019, 38.483757], - [139.720963, 38.477345], - [139.716507, 38.467663], - [139.718536, 38.457592], - [139.723236, 38.44836], - [139.721451, 38.43848], - [139.721649, 38.426899], - [139.718552, 38.417259], - [139.708862, 38.404198], - [139.707916, 38.393745], - [139.713364, 38.383644], - [139.722351, 38.389275], - [139.730988, 38.382557], - [139.733459, 38.372124], - [139.740952, 38.365208], - [139.749466, 38.359043], - [139.763565, 38.35815], - [139.772476, 38.351688], - [139.782928, 38.350304], - [139.79245, 38.347202], - [139.802887, 38.349438], - [139.813065, 38.352581], - [139.823776, 38.348835], - [139.832413, 38.341377], - [139.842987, 38.339939], - [139.860458, 38.329105], - [139.868439, 38.322735], - [139.87825, 38.313919], - [139.882401, 38.303993], - [139.891693, 38.298149], - [139.901443, 38.290733], - [139.9021, 38.279991], - [139.893845, 38.267002], - [139.884567, 38.261311], - [139.879013, 38.252586], - [139.867752, 38.237328], - [139.861588, 38.227085], - [139.850876, 38.222172], - [139.840485, 38.219093], - [139.829773, 38.214725], - [139.821091, 38.209633], - [139.810669, 38.204975], - [139.801056, 38.198654], - [139.791992, 38.192772], - [139.779404, 38.195202], - [139.767365, 38.196007], - [139.756607, 38.19083], - [139.744324, 38.197407], - [139.733841, 38.198051], - [139.723557, 38.201637], - [139.711823, 38.201534], - [139.704208, 38.193935], - [139.699326, 38.1852], - [139.691177, 38.179329], - [139.685608, 38.168594], - [139.688095, 38.15646], - [139.693924, 38.148304], - [139.693817, 38.137974], - [139.692337, 38.126392], - [139.69371, 38.116226], - [139.688889, 38.107212], - [139.681076, 38.097565], - [139.676559, 38.083355], - [139.692612, 38.067791], - [139.694412, 38.05294], - [139.685562, 38.046623], - [139.679138, 38.038189], - [139.668961, 38.036789], - [139.659286, 38.032444], - [139.657089, 38.022491], - [139.657578, 38.011314], - [139.655899, 38.000023], - [139.648087, 37.992455], - [139.642624, 37.982502], - [139.643814, 37.971432], - [139.647797, 37.961903], - [139.643967, 37.951046], - [139.644012, 37.940872], - [139.64093, 37.930565], - [139.633469, 37.923069], - [139.629593, 37.905231], - [139.635269, 37.896049], - [139.638931, 37.882652], - [139.648087, 37.875191], - [139.658401, 37.869484], - [139.662857, 37.858746], - [139.672409, 37.853748], - [139.682343, 37.848675], - [139.696167, 37.845852], - [139.706482, 37.85054], - [139.718719, 37.851265], - [139.722641, 37.839828], - [139.730469, 37.832211], - [139.741348, 37.820187], - [139.731598, 37.80925], - [139.721115, 37.801155], - [139.712952, 37.794464], - [139.705048, 37.78809], - [139.693939, 37.778866], - [139.685181, 37.773235], - [139.676895, 37.764961], - [139.670929, 37.755272], - [139.661209, 37.751259], - [139.661224, 37.739998], - [139.654404, 37.731007], - [139.645752, 37.722767], - [139.637039, 37.71653], - [139.629837, 37.708241], - [139.625137, 37.698734], - [139.631607, 37.688911], - [139.613678, 37.68169], - [139.608734, 37.672665], - [139.583466, 37.657814], - [139.574661, 37.652855], - [139.564819, 37.650227], - [139.554276, 37.646938], - [139.557281, 37.636894], - [139.550003, 37.627357], - [139.552567, 37.617531], - [139.557983, 37.599464], - [139.567139, 37.594791], - [139.568176, 37.584534], - [139.573822, 37.576012], - [139.573914, 37.563957], - [139.571945, 37.553642], - [139.569305, 37.543144], - [139.575516, 37.534534], - [139.582764, 37.526733], - [139.591354, 37.520103], - [139.588318, 37.51004], - [139.578918, 37.504307], - [139.563812, 37.500866], - [139.553574, 37.504944], - [139.54364, 37.508327], - [139.532867, 37.509468], - [139.522369, 37.510296], - [139.511414, 37.507698], - [139.499969, 37.509571], - [139.489075, 37.507301], - [139.48111, 37.500042], - [139.469437, 37.505375], - [139.461426, 37.512882], - [139.450867, 37.51326], - [139.437714, 37.511341], - [139.426956, 37.508347], - [139.417114, 37.504902], - [139.415665, 37.492939], - [139.410263, 37.483467], - [139.408676, 37.473415], - [139.409286, 37.462616], - [139.400787, 37.45681], - [139.390244, 37.459854], - [139.378815, 37.460529], - [139.366486, 37.466656], - [139.356659, 37.464378], - [139.349274, 37.457603], - [139.338501, 37.454868], - [139.325256, 37.457863], - [139.315704, 37.453484], - [139.305756, 37.454788], - [139.296173, 37.451054], - [139.28656, 37.44698], - [139.274826, 37.447472], - [139.263931, 37.44492], - [139.254501, 37.449554], - [139.239883, 37.441914], - [139.229202, 37.445057], - [139.219818, 37.440315], - [139.214371, 37.430702], - [139.209946, 37.420483], - [139.200363, 37.407997], - [139.208405, 37.401081], - [139.214828, 37.389721], - [139.225189, 37.390385], - [139.234573, 37.385151], - [139.238297, 37.375511], - [139.239441, 37.363605], - [139.23671, 37.353752], - [139.236588, 37.342628], - [139.227448, 37.3368], - [139.223984, 37.322472], - [139.224792, 37.311504], - [139.22049, 37.300957], - [139.217529, 37.289982], - [139.211639, 37.28162], - [139.203964, 37.275082], - [139.195618, 37.268589], - [139.187546, 37.261299], - [139.180328, 37.253639], - [139.172653, 37.243778], - [139.168045, 37.233318], - [139.174377, 37.224831], - [139.183105, 37.216331], - [139.190079, 37.207153], - [139.197937, 37.200703], - [139.221252, 37.197083], - [139.232407, 37.194191], - [139.240158, 37.185402], - [139.24704, 37.176559], - [139.249969, 37.164543], - [139.25618, 37.156403], - [139.249969, 37.144619], - [139.24762, 37.134373], - [139.246475, 37.124142], - [139.240204, 37.1157], - [139.238403, 37.104332], - [139.242218, 37.093166], - [139.249969, 37.07909], - [139.257767, 37.058578], - [139.259628, 37.047897], - [139.258026, 37.037254], - [139.252014, 37.026325], - [139.248642, 37.016376], - [139.249969, 37.005985], - [139.256363, 36.993015], - [139.256805, 36.982182], - [139.255157, 36.972317], - [139.25441, 36.961632], - [139.249573, 36.952641], - [139.242081, 36.944706], - [139.230331, 36.958561], - [139.219467, 36.956028], - [139.209839, 36.952801], - [139.199127, 36.955982], - [139.183411, 36.961521], - [139.178833, 36.971546], - [139.180374, 36.981499], - [139.177979, 36.992256], - [139.168564, 36.999985], - [139.157333, 37.004807], - [139.149963, 37.012566], - [139.142242, 37.020176], - [139.134064, 37.026276], - [139.129745, 37.035686], - [139.118088, 37.044838], - [139.110336, 37.052662], - [139.100021, 37.055527], - [139.093826, 37.038914], - [139.092468, 37.02763], - [139.093796, 37.016689], - [139.085388, 37.00914], - [139.076157, 37.004757], - [139.067184, 36.999996], - [139.058151, 36.995548], - [139.052032, 36.987103], - [139.042618, 36.983013], - [139.031677, 36.981266], - [139.021622, 36.984028], - [139.011124, 36.98069], - [139.000412, 36.976303], - [138.990326, 36.977207], - [138.980026, 36.977333], - [138.96904, 36.975582], - [138.96875, 36.964596], - [138.968918, 36.953659], - [138.968155, 36.943424], - [138.969742, 36.932552], - [138.974762, 36.92289], - [138.980286, 36.906742], - [138.982727, 36.896889], - [138.977859, 36.886635], - [138.967484, 36.88858], - [138.957855, 36.892262], - [138.946564, 36.891621], - [138.935181, 36.8909], - [138.928314, 36.882061], - [138.92244, 36.872887], - [138.924042, 36.862831], - [138.920334, 36.852299], - [138.927444, 36.84399], - [138.933014, 36.834274], - [138.91539, 36.82589], - [138.895676, 36.823551], - [138.884842, 36.822662], - [138.874969, 36.815067], - [138.857483, 36.808865], - [138.847687, 36.812092], - [138.8358, 36.813194], - [138.824677, 36.810013], - [138.829895, 36.799782], - [138.83342, 36.789783], - [138.832092, 36.778999], - [138.829987, 36.769192], - [138.824173, 36.760761], - [138.812775, 36.761948], - [138.803055, 36.757084], - [138.795944, 36.750004], - [138.789703, 36.742054], - [138.778763, 36.744205], - [138.767929, 36.74601], - [138.757889, 36.750416], - [138.740768, 36.758923], - [138.728943, 36.760048], - [138.725433, 36.74958], - [138.718384, 36.741341], - [138.710526, 36.734337], - [138.697922, 36.741032], - [138.694199, 36.750523], - [138.692001, 36.760708], - [138.682465, 36.763783], - [138.672638, 36.770714], - [138.676376, 36.780777], - [138.688065, 36.785831], - [138.693451, 36.796391], - [138.699066, 36.805534], - [138.690872, 36.81345], - [138.687286, 36.824242], - [138.693451, 36.843121], - [138.694351, 36.853809], - [138.685638, 36.860348], - [138.675827, 36.862827], - [138.665268, 36.864178], - [138.65535, 36.86768], - [138.644577, 36.872074], - [138.637772, 36.87941], - [138.624969, 36.884926], - [138.620926, 36.895031], - [138.616714, 36.904854], - [138.605591, 36.904278], - [138.592392, 36.916679], - [138.586197, 36.925697], - [138.588364, 36.936241], - [138.589371, 36.947533], - [138.590042, 36.958435], - [138.589569, 36.969086], - [138.590576, 36.979683], - [138.5849, 36.989288], - [138.576828, 37.000011], - [138.569122, 37.017967], - [138.558716, 37.019596], - [138.54689, 37.018486], - [138.535751, 37.019295], - [138.527863, 37.027336], - [138.517014, 37.026436], - [138.506088, 37.022301], - [138.490799, 37.016953], - [138.479446, 37.016979], - [138.467316, 37.015453], - [138.455246, 37.01284], - [138.445526, 37.00964], - [138.436325, 37.003868], - [138.426422, 37.002205], - [138.408463, 36.995255], - [138.397766, 36.994225], - [138.391525, 36.982853], - [138.382065, 36.977345], - [138.374969, 36.962898], - [138.366821, 36.949947], - [138.365814, 36.939285], - [138.360748, 36.93058], - [138.351639, 36.925301], - [138.34227, 36.919594], - [138.331863, 36.923683], - [138.321426, 36.922062], - [138.311508, 36.916695], - [138.3004, 36.908871], - [138.296097, 36.897995], - [138.299698, 36.879417], - [138.29599, 36.869854], - [138.295593, 36.858868], - [138.294373, 36.848759], - [138.287201, 36.841583], - [138.274673, 36.839836], - [138.274673, 36.85088], - [138.268021, 36.858768], - [138.260162, 36.865456], - [138.249969, 36.861771], - [138.237823, 36.861336], - [138.225845, 36.862076], - [138.216888, 36.867859], - [138.207047, 36.855091], - [138.196594, 36.85059], - [138.186096, 36.848656], - [138.176437, 36.843922], - [138.165726, 36.841106], - [138.155716, 36.842762], - [138.145615, 36.844532], - [138.135071, 36.846886], - [138.123474, 36.845421], - [138.113068, 36.843163], - [138.102692, 36.840137], - [138.0952, 36.833168], - [138.084946, 36.826202], - [138.078598, 36.816399], - [138.075867, 36.804916], - [138.066162, 36.80035], - [138.055527, 36.796883], - [138.048676, 36.806877], - [138.035172, 36.809101], - [138.02597, 36.815224], - [138.016098, 36.818478], - [138.007324, 36.824959], - [138.014969, 36.833359], - [138.0233, 36.840206], - [138.018967, 36.850445], - [138.024017, 36.860374], - [138.029175, 36.869331], - [138.0354, 36.87772], - [138.034592, 36.887829], - [138.023773, 36.887917], - [138.016724, 36.900551], - [137.999985, 36.904442], - [137.989105, 36.906719], - [137.977829, 36.905689], - [137.967606, 36.901367], - [137.95723, 36.901772], - [137.951004, 36.910023], - [137.939957, 36.910332], - [137.922333, 36.916595], - [137.912476, 36.913898], - [137.89537, 36.907047], - [137.884903, 36.909367], - [137.870834, 36.912891], - [137.867554, 36.902977], - [137.867706, 36.892963], - [137.869583, 36.882633], - [137.874985, 36.872654], - [137.874985, 36.860394], - [137.86322, 36.851112], - [137.859283, 36.840427], - [137.850983, 36.83326], - [137.838196, 36.81916], - [137.835449, 36.807079], - [137.825928, 36.801739], - [137.819702, 36.793468], - [137.809677, 36.788677], - [137.800156, 36.784477], - [137.794495, 36.775749], - [137.78595, 36.770374], - [137.775131, 36.7686], - [137.765823, 36.764153], - [137.757751, 36.772732], - [137.753372, 36.782692], - [137.757278, 36.792442], - [137.749985, 36.80827], - [137.741745, 36.815983], - [137.735855, 36.832676], - [137.736404, 36.84325], - [137.737656, 36.853676], - [137.736023, 36.864124], - [137.730927, 36.873478], - [137.723145, 36.880062], - [137.716232, 36.88866], - [137.720581, 36.904228], - [137.720596, 36.916065], - [137.720215, 36.927181], - [137.71489, 36.937233], - [137.703278, 36.939552], - [137.692551, 36.940102], - [137.68306, 36.944973], - [137.673309, 36.947536], - [137.664429, 36.95406], - [137.656906, 36.961758], - [137.64798, 36.969883], - [137.634811, 36.980865], - [137.643127, 36.981983], - [137.654343, 36.984821], - [137.667084, 36.985981], - [137.692154, 36.995811], - [137.714035, 36.999817], - [137.75061, 37.014133], - [137.778015, 37.021839], - [137.790237, 37.024296], - [137.800949, 37.026447], - [137.811905, 37.028439], - [137.826324, 37.037498], - [137.837814, 37.040943], - [137.861816, 37.046158], - [137.87175, 37.05024], - [137.888718, 37.05405], - [137.9104, 37.060108], - [137.917984, 37.062542], - [137.929825, 37.071609], - [137.941284, 37.07317], - [137.946014, 37.076046], - [137.949509, 37.083317], - [137.968887, 37.090847], - [137.983871, 37.100716], - [137.996704, 37.10643], - [138.003036, 37.11179], - [138.01091, 37.115051], - [138.016129, 37.116455], - [138.024719, 37.115742], - [138.052261, 37.128601], - [138.058578, 37.133125], - [138.062073, 37.139557], - [138.066818, 37.142845], - [138.07135, 37.149475], - [138.086365, 37.158913], - [138.093246, 37.165306], - [138.095428, 37.171124], - [138.099915, 37.174622], - [138.108246, 37.174324], - [138.124847, 37.170383], - [138.145569, 37.163055], - [138.15361, 37.161713], - [138.157562, 37.163548], - [138.167175, 37.162811], - [138.182068, 37.165142], - [138.203812, 37.171776], - [138.211105, 37.171272], - [138.213913, 37.1679], - [138.249847, 37.18124], - [138.25882, 37.187183], - [138.265259, 37.18922], - [138.270889, 37.190998], - [138.312866, 37.218853], - [138.353409, 37.251305], - [138.383575, 37.271984], - [138.442322, 37.323357], - [138.449112, 37.323265], - [138.461853, 37.332893], - [138.474213, 37.337105], - [138.496979, 37.351181], - [138.501053, 37.351997], - [138.513504, 37.354496], - [138.534866, 37.363785], - [138.543228, 37.363663], - [138.550919, 37.368767], - [138.562103, 37.377785], - [138.582245, 37.401691], - [138.597198, 37.42651], - [138.602722, 37.438946], - [138.616028, 37.45961], - [138.619476, 37.472912], - [138.623276, 37.478695], - [138.623703, 37.479053], - [138.645157, 37.496723], - [138.658691, 37.515499], - [138.673172, 37.529465], - [138.688019, 37.537159], - [138.720245, 37.558975], - [138.728134, 37.571415], - [138.737152, 37.585617], - [138.75087, 37.599792], - [138.754715, 37.606407], - [138.758987, 37.620316], - [138.767273, 37.636456], - [138.774811, 37.64426], - [138.777573, 37.649639], - [138.780045, 37.663784], - [138.791962, 37.698639], - [138.793198, 37.705711], - [138.78891, 37.712666], - [138.789551, 37.717243], - [138.799881, 37.731052], - [138.805161, 37.751827], - [138.817017, 37.773323], - [138.8172, 37.775036], - [138.81839, 37.78561], - [138.829803, 37.799812], - [138.870361, 37.83313], - [138.886978, 37.84515], - [138.909073, 37.854992], - [138.923004, 37.864136], - [138.931961, 37.868729], - [138.979294, 37.892967], - [139.032928, 37.928288], - [139.044617, 37.931828], - [139.055359, 37.939346], - [139.061432, 37.940067], - [139.074951, 37.943569], - [139.077255, 37.950203], - [139.079941, 37.951614], - [139.095566, 37.954865], - [139.106766, 37.95966], - [139.114151, 37.960354], - [139.122147, 37.963539], - [139.128754, 37.964245], - [139.132645, 37.962502], - [139.136108, 37.963688], - [139.14122, 37.967136], - [139.148575, 37.966785], - [139.183151, 37.978001], - [139.208023, 37.990234], - [139.213028, 37.990139], - [139.223053, 37.98222], - [139.230591, 37.979149], - [139.233521, 37.980133], - [139.232544, 37.982655], - [139.22374, 37.987629], - [139.221252, 37.992268], - [139.225327, 37.996151], - [139.250717, 38.007534], - [139.255096, 38.010433], - [139.259872, 38.013603], - [139.265167, 38.014542], - [139.282074, 38.024002], - [139.306091, 38.041241], - [139.346268, 38.076286], - [139.367065, 38.099209], - [139.402603, 38.143303], - [139.40831, 38.148396], - [139.419174, 38.149414], - [139.4133, 38.15538], - [139.434952, 38.185993], - [139.435104, 38.190578], - [139.430023, 38.19632], - [139.436966, 38.206181], - [139.454269, 38.240429], - [139.446472, 38.244144], - [139.44487, 38.25127], - [139.44606, 38.254791], - [139.443558, 38.259014], - [139.450699, 38.266579], - [139.447998, 38.272892], - [139.450989, 38.282841], - [139.447891, 38.29229], - [139.454269, 38.308422], - [139.45134, 38.315575], - [139.45137, 38.323917], - [139.455673, 38.333626], - [139.454086, 38.341167], - [139.455933, 38.348637], - [139.45314, 38.357227], - [139.45163, 38.361866], - [139.458511, 38.369225], - [139.463715, 38.382042], - [139.459442, 38.38839], - [139.458801, 38.392574], - [139.4608, 38.396912], - [139.464325, 38.399338], - [139.465591, 38.405357], - [139.469131, 38.407993], - [139.473862, 38.42186], - [139.476913, 38.425964], - [139.482056, 38.428982], - [139.483505, 38.432701], - [139.481903, 38.439617], - [139.497711, 38.452202], - [139.501663, 38.458786], - [139.501968, 38.46767], - [139.50209, 38.471081], - [139.514343, 38.487492], - [139.511841, 38.491718], - [139.516708, 38.49432], - [139.515549, 38.498936], - [139.518707, 38.505745], - [139.522507, 38.508163], - [139.527802, 38.507835], - [139.534698, 38.51519], - [139.55188, 38.542957], - [139.550919, 38.545071], - [139.566086, 38.53997], - [139.575226, 38.535759], - [139.584778, 38.530617], - [139.594452, 38.525951], - [139.605042, 38.519836], - [139.614975, 38.521446], - [139.624969, 38.522327] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "福島県", - "name": "Fukushima", - "ISOCODE": "JP-07", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:34+0100", - "cartodb_id": 35 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [140.283295, 37.973682], - [140.292664, 37.969395], - [140.303574, 37.96653], - [140.312225, 37.960579], - [140.321701, 37.955185], - [140.33226, 37.954872], - [140.344116, 37.950016], - [140.353745, 37.947086], - [140.360016, 37.95496], - [140.371994, 37.953915], - [140.389267, 37.952454], - [140.39006, 37.963211], - [140.400436, 37.970703], - [140.411102, 37.969948], - [140.414932, 37.96022], - [140.426163, 37.955292], - [140.43663, 37.950832], - [140.447845, 37.953938], - [140.45694, 37.947716], - [140.468994, 37.942177], - [140.472397, 37.925438], - [140.4729, 37.915291], - [140.478409, 37.906612], - [140.487488, 37.898518], - [140.499969, 37.897133], - [140.509949, 37.901695], - [140.520676, 37.904613], - [140.531464, 37.903847], - [140.541321, 37.902138], - [140.552338, 37.906658], - [140.563553, 37.907688], - [140.57312, 37.917366], - [140.590683, 37.906311], - [140.601639, 37.904636], - [140.621887, 37.909203], - [140.629791, 37.896236], - [140.650589, 37.895947], - [140.663483, 37.89777], - [140.675598, 37.889961], - [140.685501, 37.887531], - [140.691864, 37.879272], - [140.686066, 37.870888], - [140.690842, 37.861885], - [140.694275, 37.850426], - [140.689682, 37.840416], - [140.682663, 37.833282], - [140.688065, 37.822136], - [140.689636, 37.811569], - [140.696777, 37.803288], - [140.713364, 37.798195], - [140.72142, 37.791435], - [140.728836, 37.783119], - [140.7397, 37.782749], - [140.749969, 37.784565], - [140.763611, 37.782104], - [140.779404, 37.778542], - [140.790131, 37.772297], - [140.797882, 37.778923], - [140.790176, 37.786404], - [140.773895, 37.794613], - [140.788803, 37.800194], - [140.799454, 37.796696], - [140.810989, 37.794399], - [140.821426, 37.795216], - [140.831284, 37.792809], - [140.841995, 37.792152], - [140.854263, 37.792023], - [140.861038, 37.800827], - [140.861328, 37.811333], - [140.857788, 37.821613], - [140.857498, 37.838886], - [140.859177, 37.850914], - [140.864426, 37.860195], - [140.859543, 37.869549], - [140.863708, 37.878857], - [140.859589, 37.888145], - [140.874481, 37.893528], - [140.884552, 37.894749], - [140.896179, 37.899151], - [140.905472, 37.894302], - [140.915802, 37.893513], - [140.936844, 37.891201], - [140.939148, 37.875725], - [140.945099, 37.869049], - [140.953644, 37.852062], - [140.957169, 37.839207], - [140.958603, 37.837135], - [140.961304, 37.833221], - [140.96759, 37.827789], - [140.975006, 37.828785], - [140.978455, 37.824493], - [140.977066, 37.823078], - [140.959656, 37.822212], - [140.956406, 37.820236], - [140.957352, 37.818325], - [140.962036, 37.817539], - [140.967361, 37.818611], - [140.971359, 37.814926], - [140.973022, 37.815022], - [140.975845, 37.815189], - [140.977081, 37.813686], - [140.975647, 37.811646], - [140.978088, 37.808014], - [140.972855, 37.80381], - [140.972488, 37.796932], - [140.968765, 37.791424], - [140.969681, 37.788681], - [140.976089, 37.785748], - [140.980286, 37.7808], - [140.984802, 37.781689], - [140.984955, 37.783447], - [140.987335, 37.810852], - [140.982544, 37.822266], - [140.984726, 37.82365], - [140.98938, 37.822239], - [140.991302, 37.819042], - [140.989426, 37.803867], - [140.991226, 37.788776], - [140.99086, 37.773045], - [140.990829, 37.771671], - [141.003189, 37.762268], - [141.010284, 37.747627], - [141.013565, 37.740826], - [141.015366, 37.730534], - [141.014938, 37.698605], - [141.013031, 37.687813], - [141.007462, 37.686756], - [141.011154, 37.682243], - [141.008331, 37.678581], - [141.016464, 37.678509], - [141.019073, 37.673409], - [141.027023, 37.641605], - [141.026398, 37.634739], - [141.025406, 37.626423], - [141.027298, 37.609608], - [141.029282, 37.591835], - [141.029434, 37.565941], - [141.034241, 37.548443], - [141.037903, 37.505512], - [141.042831, 37.490307], - [141.042786, 37.484669], - [141.043701, 37.472946], - [141.038162, 37.429287], - [141.03717, 37.392155], - [141.039871, 37.369923], - [141.03949, 37.359005], - [141.039413, 37.356785], - [141.037689, 37.349117], - [141.031296, 37.33744], - [141.027374, 37.313351], - [141.028519, 37.300785], - [141.019058, 37.266449], - [141.015488, 37.244019], - [141.016113, 37.226662], - [141.01474, 37.220448], - [141.006622, 37.205692], - [141.003784, 37.172585], - [141.005814, 37.161865], - [141.010849, 37.153751], - [141.011398, 37.149555], - [141.008255, 37.143734], - [141.00531, 37.138283], - [141.004028, 37.119324], - [141.000961, 37.106064], - [140.989777, 37.096844], - [140.985336, 37.086975], - [140.979614, 37.057934], - [140.97583, 37.03133], - [140.978119, 37.020599], - [140.98494, 37.012009], - [140.985153, 37.00156], - [140.982986, 36.994953], - [140.976501, 36.985779], - [140.974762, 36.977486], - [140.964493, 36.970322], - [140.95697, 36.960972], - [140.952103, 36.957382], - [140.946854, 36.956516], - [140.939072, 36.95219], - [140.937363, 36.949814], - [140.927856, 36.936703], - [140.92276, 36.933743], - [140.920151, 36.933624], - [140.918213, 36.936195], - [140.907166, 36.940922], - [140.902832, 36.939453], - [140.89978, 36.94091], - [140.896454, 36.93668], - [140.893616, 36.936535], - [140.889206, 36.933247], - [140.882797, 36.936165], - [140.877228, 36.932453], - [140.869553, 36.932224], - [140.866638, 36.929386], - [140.864182, 36.922157], - [140.85408, 36.917904], - [140.845444, 36.91151], - [140.829926, 36.90971], - [140.819153, 36.906105], - [140.828079, 36.913445], - [140.814896, 36.908985], - [140.806915, 36.910294], - [140.807175, 36.905273], - [140.812042, 36.904068], - [140.813522, 36.902348], - [140.806961, 36.896091], - [140.80275, 36.89016], - [140.798843, 36.884666], - [140.795319, 36.871834], - [140.795135, 36.863277], - [140.798553, 36.855606], - [140.787048, 36.859962], - [140.776291, 36.863457], - [140.763229, 36.864799], - [140.743759, 36.872322], - [140.733002, 36.871086], - [140.714355, 36.872112], - [140.706985, 36.87888], - [140.698837, 36.884907], - [140.688232, 36.887417], - [140.677475, 36.890327], - [140.666977, 36.893486], - [140.657349, 36.897709], - [140.646271, 36.89595], - [140.635025, 36.896664], - [140.6185, 36.90028], - [140.612701, 36.90844], - [140.606232, 36.916584], - [140.59668, 36.923191], - [140.595993, 36.93322], - [140.589447, 36.942127], - [140.579254, 36.939526], - [140.572006, 36.923401], - [140.577377, 36.907429], - [140.584213, 36.899536], - [140.585938, 36.889366], - [140.593491, 36.881004], - [140.595551, 36.870281], - [140.585815, 36.864723], - [140.575577, 36.862839], - [140.560196, 36.856911], - [140.548615, 36.854912], - [140.53891, 36.8503], - [140.531967, 36.841774], - [140.522675, 36.833263], - [140.51001, 36.819633], - [140.499374, 36.815514], - [140.492538, 36.80706], - [140.48468, 36.800858], - [140.477432, 36.79261], - [140.464996, 36.792999], - [140.456604, 36.799805], - [140.449783, 36.807335], - [140.443176, 36.816093], - [140.432846, 36.815834], - [140.424423, 36.821686], - [140.416656, 36.828934], - [140.406189, 36.828255], - [140.39595, 36.829411], - [140.385513, 36.83326], - [140.379517, 36.842266], - [140.375031, 36.852238], - [140.373627, 36.87075], - [140.368576, 36.880642], - [140.358322, 36.881325], - [140.347092, 36.882576], - [140.336685, 36.885769], - [140.327042, 36.890743], - [140.325439, 36.90139], - [140.319519, 36.910168], - [140.306992, 36.921684], - [140.298462, 36.927383], - [140.288712, 36.932423], - [140.260712, 36.933674], - [140.251114, 36.938572], - [140.243988, 36.947124], - [140.249969, 36.955254], - [140.249969, 36.967239], - [140.250061, 36.986546], - [140.244156, 36.995106], - [140.248993, 37.006424], - [140.252167, 37.02285], - [140.239578, 37.020699], - [140.229401, 37.020615], - [140.219788, 37.017204], - [140.209167, 37.020756], - [140.202133, 37.027866], - [140.202301, 37.037895], - [140.199219, 37.048515], - [140.197525, 37.058891], - [140.18782, 37.066158], - [140.176895, 37.067974], - [140.16806, 37.07589], - [140.158203, 37.081429], - [140.154037, 37.091236], - [140.145737, 37.098576], - [140.135254, 37.100208], - [140.125259, 37.10532], - [140.114868, 37.112133], - [140.10585, 37.118008], - [140.095337, 37.119755], - [140.084625, 37.120846], - [140.07341, 37.123451], - [140.063034, 37.12236], - [140.053909, 37.127613], - [140.045105, 37.134277], - [140.03389, 37.136127], - [140.024261, 37.139164], - [139.999969, 37.14043], - [139.989395, 37.140785], - [139.979813, 37.143833], - [139.964493, 37.15023], - [139.953705, 37.151218], - [139.943237, 37.150055], - [139.93335, 37.148247], - [139.922379, 37.146358], - [139.911911, 37.14542], - [139.901794, 37.150524], - [139.891724, 37.147186], - [139.881943, 37.143875], - [139.869553, 37.144154], - [139.861923, 37.136433], - [139.85173, 37.135719], - [139.842407, 37.130363], - [139.832672, 37.126534], - [139.824142, 37.119804], - [139.819656, 37.110809], - [139.823502, 37.100395], - [139.823303, 37.089668], - [139.806503, 37.083366], - [139.7957, 37.086559], - [139.785446, 37.086708], - [139.77565, 37.083286], - [139.767365, 37.075626], - [139.757141, 37.070564], - [139.742126, 37.069412], - [139.731873, 37.066792], - [139.721664, 37.066399], - [139.712036, 37.062016], - [139.703262, 37.056385], - [139.692474, 37.058018], - [139.681488, 37.054382], - [139.674255, 37.045986], - [139.668152, 37.037357], - [139.657837, 37.037006], - [139.647705, 37.033089], - [139.628113, 37.029507], - [139.624969, 37.01865], - [139.61644, 37.011753], - [139.605347, 37.012154], - [139.594345, 37.010479], - [139.584473, 37.008141], - [139.574783, 36.998158], - [139.565552, 36.993721], - [139.555008, 36.989323], - [139.546005, 36.984566], - [139.537888, 36.977844], - [139.527283, 36.978447], - [139.518005, 36.974567], - [139.509583, 36.968342], - [139.499969, 36.965263], - [139.490417, 36.969734], - [139.479477, 36.969349], - [139.469131, 36.968037], - [139.462296, 36.955902], - [139.455536, 36.947315], - [139.445038, 36.944427], - [139.437988, 36.935768], - [139.43338, 36.926472], - [139.423508, 36.921017], - [139.41304, 36.923985], - [139.404343, 36.918758], - [139.385498, 36.908825], - [139.376587, 36.915176], - [139.3647, 36.91349], - [139.349228, 36.91898], - [139.339935, 36.923519], - [139.328125, 36.922737], - [139.317413, 36.923943], - [139.305176, 36.925526], - [139.297211, 36.932106], - [139.277878, 36.931164], - [139.268707, 36.938], - [139.260513, 36.930744], - [139.242401, 36.929741], - [139.242081, 36.944706], - [139.249573, 36.952641], - [139.25441, 36.961632], - [139.255157, 36.972317], - [139.256805, 36.982182], - [139.256363, 36.993015], - [139.249969, 37.005985], - [139.248642, 37.016376], - [139.252014, 37.026325], - [139.258026, 37.037254], - [139.259628, 37.047897], - [139.257767, 37.058578], - [139.249969, 37.07909], - [139.242218, 37.093166], - [139.238403, 37.104332], - [139.240204, 37.1157], - [139.246475, 37.124142], - [139.24762, 37.134373], - [139.249969, 37.144619], - [139.25618, 37.156403], - [139.249969, 37.164543], - [139.24704, 37.176559], - [139.240158, 37.185402], - [139.232407, 37.194191], - [139.221252, 37.197083], - [139.197937, 37.200703], - [139.190079, 37.207153], - [139.183105, 37.216331], - [139.174377, 37.224831], - [139.168045, 37.233318], - [139.172653, 37.243778], - [139.180328, 37.253639], - [139.187546, 37.261299], - [139.195618, 37.268589], - [139.203964, 37.275082], - [139.211639, 37.28162], - [139.217529, 37.289982], - [139.22049, 37.300957], - [139.224792, 37.311504], - [139.223984, 37.322472], - [139.227448, 37.3368], - [139.236588, 37.342628], - [139.23671, 37.353752], - [139.239441, 37.363605], - [139.238297, 37.375511], - [139.234573, 37.385151], - [139.225189, 37.390385], - [139.214828, 37.389721], - [139.208405, 37.401081], - [139.200363, 37.407997], - [139.209946, 37.420483], - [139.214371, 37.430702], - [139.219818, 37.440315], - [139.229202, 37.445057], - [139.239883, 37.441914], - [139.254501, 37.449554], - [139.263931, 37.44492], - [139.274826, 37.447472], - [139.28656, 37.44698], - [139.296173, 37.451054], - [139.305756, 37.454788], - [139.315704, 37.453484], - [139.325256, 37.457863], - [139.338501, 37.454868], - [139.349274, 37.457603], - [139.356659, 37.464378], - [139.366486, 37.466656], - [139.378815, 37.460529], - [139.390244, 37.459854], - [139.400787, 37.45681], - [139.409286, 37.462616], - [139.408676, 37.473415], - [139.410263, 37.483467], - [139.415665, 37.492939], - [139.417114, 37.504902], - [139.426956, 37.508347], - [139.437714, 37.511341], - [139.450867, 37.51326], - [139.461426, 37.512882], - [139.469437, 37.505375], - [139.48111, 37.500042], - [139.489075, 37.507301], - [139.499969, 37.509571], - [139.511414, 37.507698], - [139.522369, 37.510296], - [139.532867, 37.509468], - [139.54364, 37.508327], - [139.553574, 37.504944], - [139.563812, 37.500866], - [139.578918, 37.504307], - [139.588318, 37.51004], - [139.591354, 37.520103], - [139.582764, 37.526733], - [139.575516, 37.534534], - [139.569305, 37.543144], - [139.571945, 37.553642], - [139.573914, 37.563957], - [139.573822, 37.576012], - [139.568176, 37.584534], - [139.567139, 37.594791], - [139.557983, 37.599464], - [139.552567, 37.617531], - [139.550003, 37.627357], - [139.557281, 37.636894], - [139.554276, 37.646938], - [139.564819, 37.650227], - [139.574661, 37.652855], - [139.583466, 37.657814], - [139.608734, 37.672665], - [139.613678, 37.68169], - [139.631607, 37.688911], - [139.625137, 37.698734], - [139.629837, 37.708241], - [139.637039, 37.71653], - [139.645752, 37.722767], - [139.654404, 37.731007], - [139.661224, 37.739998], - [139.661209, 37.751259], - [139.670929, 37.755272], - [139.676895, 37.764961], - [139.685181, 37.773235], - [139.693939, 37.778866], - [139.705048, 37.78809], - [139.712952, 37.794464], - [139.721115, 37.801155], - [139.731598, 37.80925], - [139.741348, 37.820187], - [139.759827, 37.820103], - [139.771164, 37.825401], - [139.78157, 37.827614], - [139.791275, 37.82402], - [139.798004, 37.814983], - [139.806747, 37.808678], - [139.813416, 37.800301], - [139.82196, 37.806664], - [139.831894, 37.810734], - [139.842102, 37.812035], - [139.850571, 37.817432], - [139.861053, 37.823544], - [139.870789, 37.818932], - [139.879837, 37.810326], - [139.891846, 37.807919], - [139.902878, 37.808327], - [139.913162, 37.811344], - [139.923813, 37.810936], - [139.931213, 37.818577], - [139.940552, 37.825089], - [139.948318, 37.816517], - [139.957748, 37.812866], - [139.965179, 37.803017], - [139.963226, 37.793079], - [139.97197, 37.785599], - [139.975143, 37.775143], - [139.981522, 37.765961], - [139.989761, 37.757561], - [140.002853, 37.757706], - [140.013763, 37.760685], - [140.023773, 37.760704], - [140.03418, 37.764763], - [140.0439, 37.767212], - [140.0522, 37.775948], - [140.058487, 37.767815], - [140.068466, 37.764534], - [140.073502, 37.754719], - [140.084137, 37.753349], - [140.09375, 37.749981], - [140.104828, 37.735695], - [140.114883, 37.733498], - [140.126694, 37.730942], - [140.137512, 37.735725], - [140.146484, 37.742001], - [140.1539, 37.750191], - [140.164337, 37.753529], - [140.175095, 37.752895], - [140.187119, 37.752266], - [140.199951, 37.750111], - [140.220139, 37.744019], - [140.230301, 37.743103], - [140.244217, 37.750816], - [140.257767, 37.761414], - [140.265076, 37.769352], - [140.271622, 37.777424], - [140.280838, 37.782368], - [140.285294, 37.791874], - [140.293747, 37.798481], - [140.297913, 37.80788], - [140.288147, 37.81263], - [140.279221, 37.817711], - [140.270157, 37.824253], - [140.269577, 37.841854], - [140.268982, 37.85215], - [140.272949, 37.862194], - [140.271866, 37.872917], - [140.270676, 37.883488], - [140.27066, 37.89436], - [140.267899, 37.904976], - [140.277588, 37.920937], - [140.282181, 37.931553], - [140.281113, 37.941959], - [140.276901, 37.953915], - [140.275253, 37.964725], - [140.283295, 37.973682] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "石川県", - "name": "Ishikawa", - "ISOCODE": "JP-17", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:40+0100", - "cartodb_id": 37 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [136.988907, 36.963135], - [136.984528, 36.948795], - [136.973465, 36.944649], - [136.963593, 36.94857], - [136.952209, 36.952488], - [136.93985, 36.947742], - [136.930298, 36.943932], - [136.925354, 36.934502], - [136.917664, 36.927517], - [136.907379, 36.923557], - [136.898071, 36.91938], - [136.888458, 36.910618], - [136.880997, 36.896729], - [136.885742, 36.88406], - [136.884644, 36.871769], - [136.876282, 36.864426], - [136.866425, 36.854588], - [136.86467, 36.842197], - [136.859573, 36.83326], - [136.86055, 36.823219], - [136.85408, 36.812939], - [136.853683, 36.801891], - [136.853577, 36.783642], - [136.851974, 36.770107], - [136.850464, 36.754322], - [136.838928, 36.74128], - [136.825851, 36.737904], - [136.822662, 36.727886], - [136.811584, 36.727001], - [136.796402, 36.721077], - [136.797272, 36.710857], - [136.806229, 36.705528], - [136.816055, 36.699944], - [136.814468, 36.687935], - [136.822891, 36.681065], - [136.826157, 36.669296], - [136.812805, 36.65313], - [136.807602, 36.644096], - [136.803177, 36.633892], - [136.793655, 36.627708], - [136.787399, 36.618938], - [136.788483, 36.607887], - [136.791458, 36.591187], - [136.797745, 36.583271], - [136.796921, 36.572865], - [136.805389, 36.565601], - [136.814285, 36.5578], - [136.819931, 36.549122], - [136.815643, 36.538429], - [136.811172, 36.528625], - [136.805664, 36.51815], - [136.799362, 36.508629], - [136.800156, 36.489433], - [136.802063, 36.477589], - [136.799484, 36.466839], - [136.792343, 36.451405], - [136.79837, 36.442123], - [136.790131, 36.43618], - [136.78215, 36.428024], - [136.783371, 36.409584], - [136.791595, 36.403038], - [136.79834, 36.395348], - [136.800354, 36.385254], - [136.802872, 36.367554], - [136.805115, 36.350712], - [136.79451, 36.344666], - [136.788895, 36.333282], - [136.791733, 36.322079], - [136.793182, 36.31134], - [136.796143, 36.296921], - [136.802124, 36.287567], - [136.808838, 36.272938], - [136.817429, 36.26693], - [136.828064, 36.262825], - [136.838333, 36.259418], - [136.84761, 36.255421], - [136.849564, 36.239445], - [136.84288, 36.230061], - [136.835159, 36.220444], - [136.829865, 36.211956], - [136.822571, 36.203068], - [136.813995, 36.193314], - [136.803665, 36.181664], - [136.801727, 36.170521], - [136.781158, 36.163322], - [136.771133, 36.160995], - [136.775345, 36.151302], - [136.778717, 36.140953], - [136.782547, 36.130749], - [136.776031, 36.123119], - [136.772812, 36.113541], - [136.76825, 36.103924], - [136.759079, 36.096241], - [136.757065, 36.085823], - [136.741653, 36.077271], - [136.731659, 36.07835], - [136.720596, 36.078579], - [136.709808, 36.076317], - [136.700104, 36.070564], - [136.690033, 36.069206], - [136.680252, 36.066582], - [136.661102, 36.066032], - [136.656082, 36.083294], - [136.64888, 36.091484], - [136.63797, 36.09594], - [136.628372, 36.10099], - [136.616577, 36.107216], - [136.61116, 36.115837], - [136.605789, 36.125477], - [136.593597, 36.128151], - [136.584213, 36.133369], - [136.575912, 36.140003], - [136.56575, 36.142876], - [136.554794, 36.151772], - [136.544052, 36.15052], - [136.535568, 36.144554], - [136.524872, 36.148048], - [136.515503, 36.143879], - [136.499985, 36.146606], - [136.493637, 36.155499], - [136.483749, 36.151161], - [136.474472, 36.143719], - [136.46582, 36.134361], - [136.453323, 36.136406], - [136.441986, 36.136288], - [136.433121, 36.1423], - [136.4263, 36.151539], - [136.415176, 36.15659], - [136.408829, 36.167599], - [136.398331, 36.166328], - [136.374451, 36.166744], - [136.363083, 36.162464], - [136.349106, 36.169132], - [136.342102, 36.177876], - [136.339279, 36.188969], - [136.331421, 36.204166], - [136.334351, 36.214455], - [136.329407, 36.229115], - [136.319229, 36.232883], - [136.314697, 36.243271], - [136.304886, 36.254402], - [136.295151, 36.257828], - [136.284515, 36.261478], - [136.273361, 36.262749], - [136.265244, 36.269062], - [136.259186, 36.277046], - [136.246124, 36.290562], - [136.252426, 36.295731], - [136.258606, 36.297218], - [136.277588, 36.309822], - [136.281433, 36.313801], - [136.283188, 36.322159], - [136.286758, 36.326973], - [136.29599, 36.334732], - [136.29776, 36.340584], - [136.30777, 36.347507], - [136.318588, 36.350262], - [136.320663, 36.347347], - [136.322983, 36.347569], - [136.329132, 36.353016], - [136.332748, 36.351566], - [136.336365, 36.351997], - [136.345093, 36.357246], - [136.369766, 36.374447], - [136.421646, 36.418438], - [136.436035, 36.433506], - [136.448639, 36.443974], - [136.481277, 36.483295], - [136.485672, 36.48101], - [136.485397, 36.486225], - [136.487701, 36.489986], - [136.499039, 36.497944], - [136.515259, 36.515305], - [136.526596, 36.524925], - [136.542542, 36.54562], - [136.57605, 36.579071], - [136.577347, 36.580978], - [136.590485, 36.60038], - [136.594315, 36.603821], - [136.605713, 36.614799], - [136.607529, 36.612091], - [136.615555, 36.608135], - [136.620987, 36.607727], - [136.625381, 36.611069], - [136.624603, 36.61253], - [136.620972, 36.612942], - [136.618652, 36.611687], - [136.61554, 36.612728], - [136.60907, 36.618771], - [136.605179, 36.625237], - [136.615753, 36.637772], - [136.622223, 36.635693], - [136.632553, 36.645096], - [136.643677, 36.660793], - [136.645203, 36.665771], - [136.655807, 36.6735], - [136.657562, 36.676231], - [136.665359, 36.688328], - [136.675705, 36.698772], - [136.682159, 36.711506], - [136.690186, 36.721527], - [136.703629, 36.750542], - [136.726135, 36.788952], - [136.755157, 36.839249], - [136.755936, 36.84885], - [136.770721, 36.900185], - [136.770203, 36.915627], - [136.763962, 36.922092], - [136.757217, 36.923138], - [136.752289, 36.92585], - [136.751755, 36.930439], - [136.754105, 36.934612], - [136.763702, 36.943169], - [136.763184, 36.945675], - [136.757477, 36.948803], - [136.763702, 36.949638], - [136.766296, 36.951725], - [136.770721, 36.964455], - [136.772537, 36.980938], - [136.768631, 36.986988], - [136.7715, 36.989494], - [136.77124, 36.998047], - [136.766296, 37.003265], - [136.748093, 37.013069], - [136.74498, 37.02058], - [136.745193, 37.022419], - [136.746277, 37.031223], - [136.737427, 37.04353], - [136.738983, 37.048538], - [136.737427, 37.050415], - [136.729614, 37.051456], - [136.727798, 37.054379], - [136.725449, 37.069817], - [136.722321, 37.073364], - [136.722839, 37.079205], - [136.72673, 37.085049], - [136.724915, 37.091518], - [136.727249, 37.09256], - [136.730637, 37.098194], - [136.728806, 37.101326], - [136.730362, 37.109253], - [136.727753, 37.115929], - [136.729828, 37.124485], - [136.727737, 37.13575], - [136.719147, 37.144928], - [136.706375, 37.148262], - [136.70195, 37.14492], - [136.700134, 37.141373], - [136.688171, 37.132809], - [136.676178, 37.140102], - [136.674347, 37.144901], - [136.679276, 37.165142], - [136.677444, 37.170357], - [136.681595, 37.189766], - [136.683136, 37.191486], - [136.686279, 37.194984], - [136.68367, 37.199364], - [136.685745, 37.203537], - [136.68573, 37.209381], - [136.692505, 37.213558], - [136.694595, 37.216896], - [136.69902, 37.216484], - [136.698227, 37.22274], - [136.701096, 37.225037], - [136.705795, 37.224831], - [136.707352, 37.227962], - [136.702393, 37.237556], - [136.70343, 37.24194], - [136.712021, 37.24987], - [136.717239, 37.250084], - [136.728714, 37.261978], - [136.73262, 37.273663], - [136.736267, 37.278671], - [136.734436, 37.281384], - [136.739655, 37.285767], - [136.737823, 37.28973], - [136.733917, 37.28931], - [136.728424, 37.292229], - [136.727646, 37.294315], - [136.731552, 37.302872], - [136.727905, 37.305164], - [136.727631, 37.325611], - [136.742508, 37.337715], - [136.742493, 37.347103], - [136.746933, 37.346687], - [136.749802, 37.341263], - [136.757111, 37.347107], - [136.758942, 37.349819], - [136.754761, 37.35545], - [136.757111, 37.356911], - [136.757645, 37.361294], - [136.761292, 37.363171], - [136.772003, 37.364006], - [136.774689, 37.364868], - [136.79158, 37.370262], - [136.793671, 37.375893], - [136.799683, 37.376728], - [136.806213, 37.375267], - [136.812225, 37.379017], - [136.813004, 37.382149], - [136.817459, 37.384857], - [136.82843, 37.38673], - [136.845673, 37.397362], - [136.867889, 37.403603], - [136.873901, 37.404434], - [136.887741, 37.399624], - [136.893234, 37.403999], - [136.896378, 37.404411], - [136.900818, 37.403366], - [136.90419, 37.396687], - [136.907852, 37.392509], - [136.91333, 37.39167], - [136.925873, 37.392696], - [136.935318, 37.396568], - [136.950714, 37.402885], - [136.961975, 37.410378], - [136.972687, 37.412865], - [136.984726, 37.418686], - [137.001984, 37.42345], - [137.014557, 37.429478], - [137.032852, 37.429024], - [137.045166, 37.439011], - [137.046234, 37.445267], - [137.049118, 37.447346], - [137.061661, 37.446899], - [137.068466, 37.449802], - [137.076599, 37.454163], - [137.088135, 37.464771], - [137.091537, 37.466225], - [137.093658, 37.471851], - [137.108856, 37.478901], - [137.115692, 37.485352], - [137.136383, 37.491966], - [137.154968, 37.495037], - [137.166504, 37.499382], - [137.178009, 37.497883], - [137.188202, 37.498268], - [137.200012, 37.503231], - [137.213882, 37.504017], - [137.218597, 37.505878], - [137.229111, 37.514183], - [137.238007, 37.514984], - [137.24144, 37.518936], - [137.247726, 37.519119], - [137.268982, 37.529045], - [137.288589, 37.525627], - [137.296173, 37.526222], - [137.301651, 37.523693], - [137.322372, 37.525253], - [137.333069, 37.526058], - [137.334854, 37.519581], - [137.349716, 37.511379], - [137.349411, 37.505955], - [137.351746, 37.502815], - [137.357224, 37.501328], - [137.35878, 37.498611], - [137.356369, 37.491947], - [137.350327, 37.488636], - [137.348221, 37.4851], - [137.346329, 37.476765], - [137.349686, 37.471325], - [137.363983, 37.461243], - [137.364487, 37.457485], - [137.362625, 37.454159], - [137.36676, 37.448296], - [137.363068, 37.443932], - [137.353363, 37.438763], - [137.342621, 37.435684], - [137.318314, 37.434963], - [137.298203, 37.438179], - [137.284866, 37.437401], - [137.274918, 37.434731], - [137.269669, 37.431625], - [137.260483, 37.424778], - [137.247787, 37.401043], - [137.25061, 37.39373], - [137.24588, 37.38916], - [137.242172, 37.379997], - [137.243179, 37.374569], - [137.246536, 37.367462], - [137.25148, 37.364105], - [137.250137, 37.358479], - [137.25325, 37.355335], - [137.260025, 37.353012], - [137.27179, 37.355469], - [137.265182, 37.341309], - [137.260712, 37.33799], - [137.264099, 37.336514], - [137.270386, 37.338783], - [137.275818, 37.332504], - [137.269012, 37.327942], - [137.267136, 37.321899], - [137.257523, 37.31591], - [137.254822, 37.314228], - [137.243546, 37.30405], - [137.238861, 37.306988], - [137.237289, 37.30616], - [137.236465, 37.298027], - [137.23436, 37.294281], - [137.230698, 37.293041], - [137.217926, 37.295593], - [137.212173, 37.294571], - [137.210358, 37.296871], - [137.181931, 37.297596], - [137.170975, 37.300556], - [137.165222, 37.297028], - [137.160278, 37.300591], - [137.157928, 37.300179], - [137.155823, 37.296013], - [137.144333, 37.293339], - [137.131836, 37.288567], - [137.122635, 37.285057], - [137.110855, 37.276325], - [137.104324, 37.273422], - [137.101166, 37.267799], - [137.099289, 37.253616], - [137.093536, 37.251965], - [137.083069, 37.242603], - [137.073883, 37.224472], - [137.073593, 37.216129], - [137.061569, 37.206768], - [137.05896, 37.208447], - [137.044357, 37.205975], - [137.038498, 37.203434], - [137.035751, 37.20224], - [137.037033, 37.196602], - [137.040146, 37.193466], - [137.029694, 37.185768], - [137.021622, 37.185162], - [137.013, 37.181213], - [137.007538, 37.183311], - [137.001572, 37.193127], - [136.996628, 37.193554], - [136.993256, 37.199821], - [136.990128, 37.200241], - [136.987274, 37.203167], - [136.981018, 37.201511], - [136.972931, 37.201733], - [136.966949, 37.204247], - [136.961746, 37.208637], - [136.96019, 37.213436], - [136.957596, 37.215111], - [136.956818, 37.220325], - [136.95369, 37.218452], - [136.95108, 37.218666], - [136.957367, 37.227837], - [136.960953, 37.229771], - [136.968582, 37.233871], - [136.965469, 37.237003], - [136.952423, 37.233479], - [136.952942, 37.231182], - [136.950851, 37.229099], - [136.946136, 37.224308], - [136.939377, 37.227448], - [136.935211, 37.23204], - [136.928436, 37.233303], - [136.927902, 37.231007], - [136.933365, 37.222866], - [136.92424, 37.219536], - [136.921371, 37.219959], - [136.918777, 37.226639], - [136.916168, 37.225597], - [136.914597, 37.222263], - [136.915634, 37.219757], - [136.920837, 37.214535], - [136.924225, 37.214741], - [136.931503, 37.204716], - [136.932022, 37.201168], - [136.929672, 37.19846], - [136.926285, 37.204094], - [136.911697, 37.202446], - [136.915588, 37.194511], - [136.914276, 37.192009], - [136.910889, 37.18951], - [136.90831, 37.185844], - [136.895737, 37.168037], - [136.886612, 37.161785], - [136.880081, 37.142803], - [136.883194, 37.13842], - [136.891022, 37.143627], - [136.89389, 37.144043], - [136.90065, 37.136734], - [136.901154, 37.132771], - [136.893311, 37.11087], - [136.889664, 37.109829], - [136.886292, 37.11171], - [136.882126, 37.110462], - [136.877182, 37.114223], - [136.871445, 37.11256], - [136.867615, 37.109074], - [136.865723, 37.107346], - [136.869873, 37.103172], - [136.870392, 37.100666], - [136.867783, 37.096497], - [136.87117, 37.093365], - [136.871689, 37.090649], - [136.866211, 37.078342], - [136.870361, 37.073124], - [136.88414, 37.069981], - [136.891953, 37.073315], - [136.903412, 37.074345], - [136.908356, 37.077885], - [136.906281, 37.083939], - [136.907074, 37.086441], - [136.912796, 37.090191], - [136.919571, 37.090809], - [136.930496, 37.087456], - [136.939865, 37.08828], - [136.946106, 37.08493], - [136.947128, 37.082844], - [136.941513, 37.078075], - [136.938797, 37.07576], - [136.944244, 37.072208], - [136.958298, 37.070724], - [136.966873, 37.066956], - [136.958527, 37.057579], - [136.962418, 37.053818], - [136.97438, 37.051502], - [136.979065, 37.052746], - [136.989731, 37.051685], - [136.9991, 37.056675], - [137.007172, 37.056244], - [137.011856, 37.059574], - [137.01474, 37.064159], - [137.017365, 37.072498], - [137.016602, 37.080845], - [137.021072, 37.094193], - [137.037766, 37.105633], - [137.045578, 37.104568], - [137.0513, 37.106853], - [137.063553, 37.108494], - [137.064835, 37.105778], - [137.063522, 37.103485], - [137.059204, 37.102219], - [137.058578, 37.102036], - [137.056747, 37.099537], - [137.059311, 37.0891], - [137.058243, 37.080547], - [137.06131, 37.068645], - [137.053391, 37.033611], - [137.05751, 37.02129], - [137.053024, 37.004189], - [137.059998, 36.991028], - [137.053986, 36.981026], - [137.05423, 36.978104], - [137.060699, 36.970161], - [137.061981, 36.96661], - [137.060928, 36.962646], - [137.056259, 36.95713], - [137.044632, 36.962315], - [137.034546, 36.961689], - [137.023773, 36.960506], - [137.013046, 36.958912], - [136.999985, 36.963764], - [136.988907, 36.963135] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "栃木県", - "name": "Tochigi", - "ISOCODE": "JP-09", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:16:48+0100", - "cartodb_id": 39 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [139.964493, 37.15023], - [139.979813, 37.143833], - [139.989395, 37.140785], - [139.999969, 37.14043], - [140.024261, 37.139164], - [140.03389, 37.136127], - [140.045105, 37.134277], - [140.053909, 37.127613], - [140.063034, 37.12236], - [140.07341, 37.123451], - [140.084625, 37.120846], - [140.095337, 37.119755], - [140.10585, 37.118008], - [140.114868, 37.112133], - [140.125259, 37.10532], - [140.135254, 37.100208], - [140.145737, 37.098576], - [140.154037, 37.091236], - [140.158203, 37.081429], - [140.16806, 37.07589], - [140.176895, 37.067974], - [140.18782, 37.066158], - [140.197525, 37.058891], - [140.199219, 37.048515], - [140.202301, 37.037895], - [140.202133, 37.027866], - [140.209167, 37.020756], - [140.219788, 37.017204], - [140.229401, 37.020615], - [140.239578, 37.020699], - [140.252167, 37.02285], - [140.248993, 37.006424], - [140.244156, 36.995106], - [140.250061, 36.986546], - [140.249969, 36.967239], - [140.249969, 36.955254], - [140.243988, 36.947124], - [140.251114, 36.938572], - [140.260712, 36.933674], - [140.251694, 36.918282], - [140.252243, 36.905056], - [140.255127, 36.894897], - [140.256912, 36.884178], - [140.257339, 36.874043], - [140.257751, 36.86335], - [140.256119, 36.852654], - [140.259689, 36.843098], - [140.264999, 36.83424], - [140.268768, 36.823055], - [140.270126, 36.812294], - [140.268143, 36.802101], - [140.26828, 36.791813], - [140.2621, 36.782452], - [140.258087, 36.770039], - [140.258667, 36.759331], - [140.262482, 36.749939], - [140.270599, 36.74202], - [140.279861, 36.735916], - [140.288177, 36.728153], - [140.290497, 36.718315], - [140.285675, 36.705448], - [140.27446, 36.703651], - [140.264557, 36.698326], - [140.249771, 36.698978], - [140.237579, 36.696812], - [140.230087, 36.689095], - [140.223389, 36.681156], - [140.224823, 36.671162], - [140.234787, 36.666599], - [140.236191, 36.656044], - [140.24382, 36.64106], - [140.23938, 36.631157], - [140.247421, 36.615604], - [140.252151, 36.601288], - [140.249802, 36.591396], - [140.248001, 36.574314], - [140.249969, 36.564121], - [140.252594, 36.547241], - [140.251266, 36.537312], - [140.253281, 36.527283], - [140.250458, 36.511421], - [140.244736, 36.499947], - [140.234039, 36.493382], - [140.230804, 36.483704], - [140.222427, 36.477283], - [140.216263, 36.469238], - [140.211288, 36.460403], - [140.206604, 36.451321], - [140.207947, 36.440193], - [140.205261, 36.429565], - [140.205551, 36.416611], - [140.195847, 36.403313], - [140.188416, 36.395103], - [140.172409, 36.395813], - [140.161743, 36.394901], - [140.153824, 36.401726], - [140.147491, 36.410873], - [140.135986, 36.411526], - [140.124969, 36.409973], - [140.115204, 36.405273], - [140.11438, 36.3951], - [140.104034, 36.390926], - [140.096161, 36.397915], - [140.085739, 36.399792], - [140.069748, 36.400669], - [140.070755, 36.389748], - [140.067123, 36.379177], - [140.054001, 36.373955], - [140.034088, 36.374657], - [140.01973, 36.373219], - [140.002487, 36.365604], - [139.974762, 36.370827], - [139.968857, 36.362659], - [139.968002, 36.352406], - [139.959564, 36.346901], - [139.948105, 36.344604], - [139.938354, 36.340294], - [139.927185, 36.338524], - [139.917358, 36.333168], - [139.91124, 36.297009], - [139.892639, 36.307568], - [139.88002, 36.31068], - [139.853714, 36.308456], - [139.846191, 36.300682], - [139.83989, 36.292427], - [139.840881, 36.282021], - [139.841263, 36.269947], - [139.834763, 36.26125], - [139.832062, 36.249962], - [139.825714, 36.238911], - [139.791351, 36.225422], - [139.778717, 36.221069], - [139.763428, 36.216106], - [139.75264, 36.208488], - [139.742126, 36.203358], - [139.729568, 36.202934], - [139.717194, 36.206562], - [139.705292, 36.200718], - [139.67247, 36.212112], - [139.662476, 36.217617], - [139.661148, 36.228264], - [139.653397, 36.235355], - [139.644089, 36.239937], - [139.636902, 36.249966], - [139.641251, 36.2617], - [139.63295, 36.268414], - [139.622162, 36.271595], - [139.60788, 36.265213], - [139.593887, 36.265385], - [139.565552, 36.263939], - [139.557205, 36.271496], - [139.53981, 36.278828], - [139.529449, 36.281456], - [139.51915, 36.278126], - [139.507751, 36.277714], - [139.488708, 36.272076], - [139.478638, 36.26981], - [139.469757, 36.275776], - [139.463715, 36.284206], - [139.452942, 36.285255], - [139.440338, 36.293816], - [139.431763, 36.299541], - [139.422058, 36.309757], - [139.426926, 36.321445], - [139.424164, 36.333298], - [139.411789, 36.337486], - [139.397583, 36.344028], - [139.385223, 36.355145], - [139.370636, 36.365562], - [139.369537, 36.376076], - [139.368591, 36.38702], - [139.374969, 36.395432], - [139.379837, 36.404797], - [139.388443, 36.416515], - [139.395126, 36.424252], - [139.402527, 36.432606], - [139.409927, 36.442543], - [139.415161, 36.451347], - [139.425003, 36.453888], - [139.435013, 36.459782], - [139.440582, 36.468285], - [139.429214, 36.481285], - [139.423538, 36.499596], - [139.433411, 36.510078], - [139.438477, 36.519535], - [139.443161, 36.528652], - [139.440125, 36.538601], - [139.444031, 36.548836], - [139.460526, 36.550133], - [139.467987, 36.557537], - [139.477249, 36.568577], - [139.485657, 36.57531], - [139.478058, 36.586372], - [139.475601, 36.596485], - [139.468018, 36.60305], - [139.457825, 36.60088], - [139.446213, 36.602757], - [139.436813, 36.598606], - [139.424911, 36.600441], - [139.41507, 36.604748], - [139.405991, 36.600361], - [139.395798, 36.602798], - [139.386139, 36.60894], - [139.374969, 36.608833], - [139.364288, 36.610752], - [139.354218, 36.613422], - [139.34906, 36.622524], - [139.331329, 36.630592], - [139.333221, 36.640705], - [139.330948, 36.651295], - [139.338501, 36.666649], - [139.342026, 36.676643], - [139.340439, 36.686687], - [139.347549, 36.694618], - [139.356293, 36.701614], - [139.362732, 36.710274], - [139.370438, 36.722771], - [139.370209, 36.733295], - [139.367264, 36.744602], - [139.358109, 36.749786], - [139.355026, 36.759373], - [139.356262, 36.770535], - [139.365158, 36.775196], - [139.380096, 36.788307], - [139.380585, 36.798779], - [139.390213, 36.802032], - [139.394821, 36.811832], - [139.403839, 36.818272], - [139.407974, 36.82814], - [139.397202, 36.830967], - [139.386337, 36.833302], - [139.374969, 36.837009], - [139.366638, 36.844334], - [139.355927, 36.845955], - [139.358902, 36.855751], - [139.36438, 36.871708], - [139.374969, 36.886906], - [139.382935, 36.894844], - [139.385498, 36.908825], - [139.404343, 36.918758], - [139.41304, 36.923985], - [139.423508, 36.921017], - [139.43338, 36.926472], - [139.437988, 36.935768], - [139.445038, 36.944427], - [139.455536, 36.947315], - [139.462296, 36.955902], - [139.469131, 36.968037], - [139.479477, 36.969349], - [139.490417, 36.969734], - [139.499969, 36.965263], - [139.509583, 36.968342], - [139.518005, 36.974567], - [139.527283, 36.978447], - [139.537888, 36.977844], - [139.546005, 36.984566], - [139.555008, 36.989323], - [139.565552, 36.993721], - [139.574783, 36.998158], - [139.584473, 37.008141], - [139.594345, 37.010479], - [139.605347, 37.012154], - [139.61644, 37.011753], - [139.624969, 37.01865], - [139.628113, 37.029507], - [139.647705, 37.033089], - [139.657837, 37.037006], - [139.668152, 37.037357], - [139.674255, 37.045986], - [139.681488, 37.054382], - [139.692474, 37.058018], - [139.703262, 37.056385], - [139.712036, 37.062016], - [139.721664, 37.066399], - [139.731873, 37.066792], - [139.742126, 37.069412], - [139.757141, 37.070564], - [139.767365, 37.075626], - [139.77565, 37.083286], - [139.785446, 37.086708], - [139.7957, 37.086559], - [139.806503, 37.083366], - [139.823303, 37.089668], - [139.823502, 37.100395], - [139.819656, 37.110809], - [139.824142, 37.119804], - [139.832672, 37.126534], - [139.842407, 37.130363], - [139.85173, 37.135719], - [139.861923, 37.136433], - [139.869553, 37.144154], - [139.881943, 37.143875], - [139.891724, 37.147186], - [139.901794, 37.150524], - [139.911911, 37.14542], - [139.922379, 37.146358], - [139.93335, 37.148247], - [139.943237, 37.150055], - [139.953705, 37.151218], - [139.964493, 37.15023] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "群馬県", - "name": "Gunma", - "ISOCODE": "JP-10", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:17:00+0100", - "cartodb_id": 40 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [139.100021, 37.055527], - [139.110336, 37.052662], - [139.118088, 37.044838], - [139.129745, 37.035686], - [139.134064, 37.026276], - [139.142242, 37.020176], - [139.149963, 37.012566], - [139.157333, 37.004807], - [139.168564, 36.999985], - [139.177979, 36.992256], - [139.180374, 36.981499], - [139.178833, 36.971546], - [139.183411, 36.961521], - [139.199127, 36.955982], - [139.209839, 36.952801], - [139.219467, 36.956028], - [139.230331, 36.958561], - [139.242081, 36.944706], - [139.242401, 36.929741], - [139.260513, 36.930744], - [139.268707, 36.938], - [139.277878, 36.931164], - [139.297211, 36.932106], - [139.305176, 36.925526], - [139.317413, 36.923943], - [139.328125, 36.922737], - [139.339935, 36.923519], - [139.349228, 36.91898], - [139.3647, 36.91349], - [139.376587, 36.915176], - [139.385498, 36.908825], - [139.382935, 36.894844], - [139.374969, 36.886906], - [139.36438, 36.871708], - [139.358902, 36.855751], - [139.355927, 36.845955], - [139.366638, 36.844334], - [139.374969, 36.837009], - [139.386337, 36.833302], - [139.397202, 36.830967], - [139.407974, 36.82814], - [139.403839, 36.818272], - [139.394821, 36.811832], - [139.390213, 36.802032], - [139.380585, 36.798779], - [139.380096, 36.788307], - [139.365158, 36.775196], - [139.356262, 36.770535], - [139.355026, 36.759373], - [139.358109, 36.749786], - [139.367264, 36.744602], - [139.370209, 36.733295], - [139.370438, 36.722771], - [139.362732, 36.710274], - [139.356293, 36.701614], - [139.347549, 36.694618], - [139.340439, 36.686687], - [139.342026, 36.676643], - [139.338501, 36.666649], - [139.330948, 36.651295], - [139.333221, 36.640705], - [139.331329, 36.630592], - [139.34906, 36.622524], - [139.354218, 36.613422], - [139.364288, 36.610752], - [139.374969, 36.608833], - [139.386139, 36.60894], - [139.395798, 36.602798], - [139.405991, 36.600361], - [139.41507, 36.604748], - [139.424912, 36.600441], - [139.436813, 36.598606], - [139.446213, 36.602756], - [139.457825, 36.60088], - [139.468018, 36.60305], - [139.475601, 36.596485], - [139.478058, 36.586372], - [139.485657, 36.57531], - [139.477249, 36.568577], - [139.467987, 36.557537], - [139.460526, 36.550133], - [139.444031, 36.548836], - [139.440125, 36.538601], - [139.443161, 36.528652], - [139.438477, 36.519535], - [139.433411, 36.510078], - [139.423538, 36.499596], - [139.429214, 36.481285], - [139.440582, 36.468285], - [139.435013, 36.459782], - [139.425003, 36.453888], - [139.415161, 36.451347], - [139.409927, 36.442543], - [139.402527, 36.432606], - [139.395126, 36.424252], - [139.388443, 36.416515], - [139.379837, 36.404797], - [139.374969, 36.395432], - [139.368591, 36.38702], - [139.369537, 36.376076], - [139.370636, 36.365562], - [139.385223, 36.355145], - [139.397583, 36.344028], - [139.411789, 36.337486], - [139.424164, 36.333298], - [139.426926, 36.321445], - [139.422058, 36.309757], - [139.431763, 36.299541], - [139.440338, 36.293816], - [139.452942, 36.285255], - [139.463715, 36.284206], - [139.469757, 36.275776], - [139.478638, 36.26981], - [139.488709, 36.272076], - [139.507751, 36.277714], - [139.51915, 36.278126], - [139.529449, 36.281456], - [139.53981, 36.278828], - [139.557205, 36.271496], - [139.565552, 36.263939], - [139.593887, 36.265385], - [139.60788, 36.265213], - [139.622162, 36.271595], - [139.63295, 36.268414], - [139.641251, 36.2617], - [139.636902, 36.249966], - [139.644089, 36.239937], - [139.653397, 36.235355], - [139.661148, 36.228264], - [139.662476, 36.217617], - [139.652802, 36.202793], - [139.646851, 36.193569], - [139.635376, 36.19252], - [139.621963, 36.186432], - [139.612976, 36.193516], - [139.605606, 36.20113], - [139.595825, 36.206146], - [139.585693, 36.206135], - [139.576019, 36.200691], - [139.55983, 36.197849], - [139.548889, 36.193871], - [139.537338, 36.189892], - [139.525635, 36.188866], - [139.513596, 36.189575], - [139.49411, 36.188641], - [139.480286, 36.186668], - [139.466888, 36.186123], - [139.456924, 36.18853], - [139.447327, 36.193611], - [139.437775, 36.200916], - [139.420013, 36.214848], - [139.401474, 36.223785], - [139.391602, 36.229679], - [139.374969, 36.241417], - [139.363922, 36.243427], - [139.352371, 36.241417], - [139.340485, 36.238232], - [139.331345, 36.232876], - [139.309479, 36.234489], - [139.293793, 36.241215], - [139.281921, 36.244499], - [139.251587, 36.238438], - [139.214966, 36.256031], - [139.196701, 36.260952], - [139.186951, 36.264446], - [139.165634, 36.27367], - [139.151749, 36.275364], - [139.130325, 36.275928], - [139.12114, 36.265747], - [139.110764, 36.258144], - [139.1017, 36.238514], - [139.092331, 36.225574], - [139.086838, 36.216255], - [139.076279, 36.201794], - [139.067947, 36.194946], - [139.065125, 36.182121], - [139.060532, 36.172791], - [139.066818, 36.156792], - [139.052185, 36.149635], - [139.045517, 36.125572], - [139.034912, 36.12447], - [139.026611, 36.130653], - [139.013977, 36.128983], - [138.999969, 36.122536], - [138.967911, 36.122578], - [138.960861, 36.10535], - [138.953476, 36.097359], - [138.94455, 36.09058], - [138.934189, 36.084927], - [138.914444, 36.08773], - [138.904373, 36.087643], - [138.893158, 36.083336], - [138.880478, 36.079311], - [138.867218, 36.073776], - [138.860199, 36.066048], - [138.850327, 36.06403], - [138.846207, 36.053272], - [138.837753, 36.047096], - [138.832352, 36.038651], - [138.820969, 36.032436], - [138.80899, 36.030891], - [138.798782, 36.027763], - [138.788727, 36.030033], - [138.779282, 36.034027], - [138.768585, 36.034416], - [138.758163, 36.031322], - [138.753662, 36.021446], - [138.749969, 36.011448], - [138.74205, 36.004337], - [138.730927, 35.992649], - [138.720337, 35.989956], - [138.702042, 35.986191], - [138.690231, 35.990726], - [138.683914, 36.007545], - [138.673309, 36.009068], - [138.664062, 36.013348], - [138.653015, 36.015553], - [138.640381, 36.035027], - [138.646103, 36.05373], - [138.646133, 36.064247], - [138.640289, 36.073975], - [138.633499, 36.088322], - [138.643738, 36.094135], - [138.650513, 36.102589], - [138.640442, 36.12125], - [138.636124, 36.130363], - [138.624969, 36.128967], - [138.614273, 36.131256], - [138.603271, 36.133438], - [138.598587, 36.143299], - [138.593704, 36.152348], - [138.581085, 36.164829], - [138.589081, 36.171806], - [138.602585, 36.162479], - [138.612503, 36.158337], - [138.624969, 36.168213], - [138.634964, 36.177998], - [138.628738, 36.196789], - [138.636765, 36.211292], - [138.624969, 36.211845], - [138.615219, 36.229458], - [138.613998, 36.240089], - [138.607056, 36.250008], - [138.607483, 36.261391], - [138.603424, 36.275288], - [138.614334, 36.279457], - [138.624969, 36.283787], - [138.635834, 36.287151], - [138.646591, 36.290604], - [138.656113, 36.302971], - [138.650955, 36.312504], - [138.655182, 36.323719], - [138.653213, 36.343098], - [138.656998, 36.353947], - [138.659225, 36.363762], - [138.654236, 36.372726], - [138.655273, 36.382957], - [138.653931, 36.393745], - [138.644913, 36.41098], - [138.635666, 36.414833], - [138.624969, 36.413208], - [138.613663, 36.419708], - [138.602768, 36.421009], - [138.587616, 36.419327], - [138.577667, 36.416458], - [138.56694, 36.417076], - [138.552139, 36.408974], - [138.544739, 36.400688], - [138.533737, 36.399532], - [138.519272, 36.405018], - [138.499969, 36.411026], - [138.489426, 36.398334], - [138.47789, 36.400856], - [138.467636, 36.401188], - [138.460876, 36.408619], - [138.451035, 36.416683], - [138.435059, 36.42197], - [138.424774, 36.425133], - [138.414764, 36.429131], - [138.404236, 36.43158], - [138.404083, 36.441723], - [138.403473, 36.452389], - [138.406326, 36.463268], - [138.404068, 36.474094], - [138.400955, 36.484722], - [138.406097, 36.500027], - [138.407211, 36.511299], - [138.410629, 36.521564], - [138.415756, 36.538441], - [138.425095, 36.544899], - [138.431625, 36.55262], - [138.43187, 36.563877], - [138.423996, 36.570377], - [138.429626, 36.583355], - [138.430847, 36.593308], - [138.441452, 36.596611], - [138.444687, 36.607529], - [138.455002, 36.608952], - [138.460663, 36.618259], - [138.461273, 36.628632], - [138.470688, 36.634624], - [138.479401, 36.641651], - [138.490051, 36.638893], - [138.499969, 36.640171], - [138.510605, 36.644787], - [138.528198, 36.648106], - [138.534531, 36.656845], - [138.528564, 36.666378], - [138.521088, 36.673752], - [138.522736, 36.684162], - [138.528717, 36.692543], - [138.53978, 36.694008], - [138.547806, 36.700691], - [138.558731, 36.702507], - [138.570251, 36.702793], - [138.5811, 36.701721], - [138.591949, 36.703674], - [138.600464, 36.71162], - [138.6082, 36.705238], - [138.619202, 36.707516], - [138.624969, 36.716766], - [138.645111, 36.720673], - [138.655518, 36.723949], - [138.665314, 36.726311], - [138.675613, 36.727554], - [138.685471, 36.732029], - [138.697922, 36.741032], - [138.710526, 36.734337], - [138.718384, 36.741341], - [138.725433, 36.74958], - [138.728943, 36.760048], - [138.740768, 36.758923], - [138.757889, 36.750416], - [138.767929, 36.74601], - [138.778763, 36.744205], - [138.789703, 36.742054], - [138.795944, 36.750004], - [138.803055, 36.757084], - [138.812775, 36.761948], - [138.824173, 36.760761], - [138.829987, 36.769192], - [138.832092, 36.778999], - [138.83342, 36.789783], - [138.829895, 36.799782], - [138.824677, 36.810013], - [138.8358, 36.813194], - [138.847687, 36.812092], - [138.857483, 36.808865], - [138.874969, 36.815067], - [138.884842, 36.822662], - [138.895676, 36.823551], - [138.91539, 36.82589], - [138.933014, 36.834274], - [138.927444, 36.84399], - [138.920334, 36.852299], - [138.924042, 36.862831], - [138.92244, 36.872887], - [138.928314, 36.882061], - [138.935181, 36.8909], - [138.946564, 36.891621], - [138.957855, 36.892262], - [138.967484, 36.88858], - [138.977859, 36.886635], - [138.982727, 36.896889], - [138.980286, 36.906742], - [138.974762, 36.92289], - [138.969742, 36.932552], - [138.968155, 36.943424], - [138.968918, 36.953659], - [138.96875, 36.964596], - [138.96904, 36.975582], - [138.980026, 36.977333], - [138.990326, 36.977207], - [139.000412, 36.976303], - [139.011124, 36.98069], - [139.021622, 36.984028], - [139.031677, 36.981266], - [139.042618, 36.983013], - [139.052032, 36.987103], - [139.058151, 36.995548], - [139.067184, 36.999996], - [139.076157, 37.004757], - [139.085388, 37.00914], - [139.093796, 37.016689], - [139.092468, 37.02763], - [139.093826, 37.038914], - [139.100021, 37.055527] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "長野県", - "name": "Nagano", - "ISOCODE": "JP-20", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:17:06+0100", - "cartodb_id": 41 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [138.527863, 37.027336], - [138.535751, 37.019295], - [138.54689, 37.018486], - [138.558716, 37.019596], - [138.569122, 37.017967], - [138.576828, 37.000011], - [138.5849, 36.989288], - [138.590576, 36.979683], - [138.589569, 36.969086], - [138.590042, 36.958435], - [138.589371, 36.947533], - [138.588364, 36.936241], - [138.586197, 36.925697], - [138.592392, 36.916679], - [138.605591, 36.904278], - [138.616714, 36.904854], - [138.620926, 36.895031], - [138.624969, 36.884926], - [138.637772, 36.87941], - [138.644577, 36.872074], - [138.65535, 36.86768], - [138.665268, 36.864178], - [138.675827, 36.862827], - [138.685638, 36.860348], - [138.694351, 36.853809], - [138.693451, 36.843121], - [138.687286, 36.824242], - [138.690872, 36.81345], - [138.699066, 36.805534], - [138.693451, 36.796391], - [138.688065, 36.785831], - [138.676376, 36.780777], - [138.672638, 36.770714], - [138.682465, 36.763783], - [138.692001, 36.760708], - [138.694199, 36.750523], - [138.697922, 36.741032], - [138.685471, 36.732029], - [138.675613, 36.727554], - [138.665314, 36.726311], - [138.655518, 36.723949], - [138.645111, 36.720673], - [138.624969, 36.716766], - [138.619202, 36.707516], - [138.6082, 36.705238], - [138.600464, 36.71162], - [138.591949, 36.703674], - [138.5811, 36.701721], - [138.570251, 36.702793], - [138.558731, 36.702507], - [138.547806, 36.700691], - [138.53978, 36.694008], - [138.528717, 36.692543], - [138.522736, 36.684162], - [138.521088, 36.673752], - [138.528564, 36.666378], - [138.534531, 36.656845], - [138.528198, 36.648106], - [138.510605, 36.644787], - [138.499969, 36.640171], - [138.490051, 36.638893], - [138.479401, 36.641651], - [138.470688, 36.634624], - [138.461273, 36.628632], - [138.460663, 36.618259], - [138.455002, 36.608952], - [138.444687, 36.607529], - [138.441452, 36.596611], - [138.430847, 36.593307], - [138.429626, 36.583355], - [138.423996, 36.570377], - [138.43187, 36.563877], - [138.431625, 36.55262], - [138.425095, 36.544899], - [138.415756, 36.538441], - [138.410629, 36.521564], - [138.407211, 36.511299], - [138.406097, 36.500027], - [138.400955, 36.484722], - [138.404068, 36.474094], - [138.406326, 36.463268], - [138.403473, 36.452389], - [138.404083, 36.441723], - [138.404236, 36.43158], - [138.414764, 36.429131], - [138.424774, 36.425133], - [138.435059, 36.42197], - [138.451035, 36.416683], - [138.460876, 36.408619], - [138.467636, 36.401188], - [138.47789, 36.400856], - [138.489426, 36.398335], - [138.499969, 36.411026], - [138.519272, 36.405018], - [138.533737, 36.399532], - [138.544739, 36.400688], - [138.552139, 36.408974], - [138.56694, 36.417076], - [138.577667, 36.416458], - [138.587616, 36.419327], - [138.602768, 36.421009], - [138.613663, 36.419708], - [138.624969, 36.413208], - [138.635666, 36.414833], - [138.644913, 36.41098], - [138.653931, 36.393745], - [138.655273, 36.382957], - [138.654236, 36.372726], - [138.659225, 36.363762], - [138.656998, 36.353947], - [138.653214, 36.343098], - [138.655182, 36.323719], - [138.650955, 36.312504], - [138.656113, 36.302971], - [138.646591, 36.290604], - [138.635834, 36.287151], - [138.624969, 36.283787], - [138.614334, 36.279457], - [138.603424, 36.275288], - [138.607483, 36.261391], - [138.607056, 36.250008], - [138.613998, 36.240089], - [138.615219, 36.229458], - [138.624969, 36.211845], - [138.636765, 36.211292], - [138.628738, 36.196789], - [138.634964, 36.177998], - [138.624969, 36.168213], - [138.612503, 36.158337], - [138.602585, 36.162479], - [138.589081, 36.171806], - [138.581085, 36.164829], - [138.593704, 36.152348], - [138.598587, 36.143299], - [138.603271, 36.133438], - [138.614273, 36.131256], - [138.624969, 36.128967], - [138.636124, 36.130363], - [138.640442, 36.12125], - [138.650513, 36.102589], - [138.643738, 36.094135], - [138.633499, 36.088322], - [138.640289, 36.073975], - [138.646133, 36.064247], - [138.646103, 36.05373], - [138.640381, 36.035027], - [138.653015, 36.015553], - [138.664062, 36.013348], - [138.673309, 36.009068], - [138.683914, 36.007545], - [138.690231, 35.990726], - [138.702042, 35.986191], - [138.720337, 35.989956], - [138.715347, 35.970688], - [138.719055, 35.961277], - [138.727264, 35.955002], - [138.733566, 35.946461], - [138.739288, 35.938114], - [138.741928, 35.927711], - [138.73555, 35.916676], - [138.731689, 35.906059], - [138.721573, 35.905502], - [138.711166, 35.906578], - [138.703354, 35.900009], - [138.695175, 35.892815], - [138.686737, 35.88509], - [138.682968, 35.874062], - [138.674225, 35.867599], - [138.658554, 35.872608], - [138.647476, 35.871166], - [138.636246, 35.867325], - [138.624969, 35.867252], - [138.613937, 35.870461], - [138.60965, 35.880054], - [138.608139, 35.890438], - [138.612, 35.89986], - [138.605057, 35.907162], - [138.59758, 35.914207], - [138.587524, 35.914879], - [138.579803, 35.908379], - [138.569794, 35.913204], - [138.559387, 35.913174], - [138.548462, 35.911617], - [138.53685, 35.912071], - [138.519684, 35.916676], - [138.508453, 35.915382], - [138.50061, 35.908253], - [138.497314, 35.898449], - [138.48291, 35.894917], - [138.472626, 35.894829], - [138.463165, 35.90044], - [138.454102, 35.904869], - [138.448303, 35.916679], - [138.451538, 35.927219], - [138.456787, 35.93668], - [138.44902, 35.944389], - [138.439209, 35.950794], - [138.429886, 35.954697], - [138.41861, 35.956173], - [138.409164, 35.959709], - [138.397964, 35.962269], - [138.387115, 35.965988], - [138.376358, 35.968422], - [138.364441, 35.958076], - [138.362976, 35.947651], - [138.35376, 35.943214], - [138.348724, 35.93409], - [138.345795, 35.923748], - [138.338089, 35.916695], - [138.330002, 35.901676], - [138.321854, 35.89344], - [138.314301, 35.886841], - [138.308075, 35.878906], - [138.301651, 35.870575], - [138.294525, 35.863113], - [138.286713, 35.856403], - [138.276108, 35.861877], - [138.269775, 35.870113], - [138.260757, 35.876511], - [138.249969, 35.882198], - [138.240082, 35.877083], - [138.232361, 35.863705], - [138.226349, 35.851864], - [138.220764, 35.842705], - [138.215424, 35.833366], - [138.207001, 35.822094], - [138.206589, 35.810917], - [138.198914, 35.802914], - [138.19075, 35.795933], - [138.192017, 35.784859], - [138.201035, 35.778477], - [138.216736, 35.771793], - [138.225784, 35.764931], - [138.235291, 35.760376], - [138.232758, 35.750015], - [138.219101, 35.740944], - [138.210739, 35.733097], - [138.202438, 35.727207], - [138.193085, 35.720589], - [138.184738, 35.714542], - [138.187485, 35.703884], - [138.195511, 35.69566], - [138.196686, 35.685604], - [138.195541, 35.675541], - [138.200363, 35.666695], - [138.20874, 35.660694], - [138.213303, 35.64957], - [138.221619, 35.641262], - [138.212677, 35.630939], - [138.205902, 35.622841], - [138.207138, 35.612499], - [138.206741, 35.602406], - [138.200287, 35.593449], - [138.195984, 35.583126], - [138.191986, 35.573425], - [138.181152, 35.571854], - [138.173996, 35.579247], - [138.163605, 35.57444], - [138.154846, 35.567616], - [138.145401, 35.552265], - [138.15657, 35.550343], - [138.162277, 35.541637], - [138.155212, 35.533829], - [138.1483, 35.525455], - [138.141388, 35.518227], - [138.14917, 35.510017], - [138.142944, 35.499615], - [138.156677, 35.492859], - [138.163223, 35.485241], - [138.15947, 35.473759], - [138.162781, 35.464027], - [138.155975, 35.455811], - [138.144852, 35.456013], - [138.135223, 35.4505], - [138.124969, 35.453144], - [138.124969, 35.439335], - [138.124969, 35.425323], - [138.141769, 35.416691], - [138.141525, 35.403137], - [138.151962, 35.397697], - [138.153961, 35.386665], - [138.148315, 35.378323], - [138.14502, 35.36771], - [138.13559, 35.362873], - [138.124969, 35.364067], - [138.108963, 35.354893], - [138.099686, 35.350819], - [138.099045, 35.339977], - [138.090515, 35.334713], - [138.081787, 35.340458], - [138.071442, 35.343746], - [138.06134, 35.341564], - [138.055176, 35.333366], - [138.045044, 35.331604], - [138.039047, 35.322144], - [138.0289, 35.316658], - [138.029541, 35.306446], - [138.021805, 35.297924], - [138.011765, 35.300552], - [137.999969, 35.299278], - [137.984695, 35.289181], - [137.974319, 35.286083], - [137.965408, 35.280739], - [137.953537, 35.278568], - [137.945114, 35.272652], - [137.934677, 35.272663], - [137.929184, 35.264122], - [137.924347, 35.254749], - [137.914108, 35.250542], - [137.898331, 35.254562], - [137.885941, 35.243546], - [137.887863, 35.232925], - [137.883301, 35.222965], - [137.874985, 35.215527], - [137.863235, 35.219578], - [137.85112, 35.218231], - [137.840149, 35.212685], - [137.820786, 35.211281], - [137.810226, 35.206665], - [137.801132, 35.201855], - [137.788895, 35.202343], - [137.778122, 35.200233], - [137.769623, 35.206028], - [137.767044, 35.216496], - [137.752792, 35.216587], - [137.741302, 35.218788], - [137.729828, 35.218189], - [137.724823, 35.227486], - [137.710632, 35.228966], - [137.700577, 35.229099], - [137.68808, 35.228874], - [137.677765, 35.227539], - [137.666656, 35.22448], - [137.656036, 35.214142], - [137.644821, 35.205761], - [137.631958, 35.208229], - [137.6203, 35.2062], - [137.602722, 35.199905], - [137.593155, 35.19598], - [137.58107, 35.194847], - [137.58078, 35.205811], - [137.581421, 35.216282], - [137.571533, 35.224834], - [137.56485, 35.232548], - [137.554947, 35.238289], - [137.549057, 35.249969], - [137.556351, 35.257988], - [137.560425, 35.267647], - [137.565094, 35.284355], - [137.561478, 35.296871], - [137.564682, 35.30648], - [137.578583, 35.313587], - [137.595398, 35.326283], - [137.607071, 35.333317], - [137.604309, 35.343315], - [137.604355, 35.353455], - [137.601608, 35.365585], - [137.600998, 35.376038], - [137.593994, 35.386513], - [137.610626, 35.390293], - [137.624176, 35.39061], - [137.638, 35.398434], - [137.630295, 35.407478], - [137.621384, 35.416145], - [137.61882, 35.427147], - [137.611282, 35.434532], - [137.601974, 35.438892], - [137.603622, 35.448856], - [137.612885, 35.455269], - [137.624985, 35.464348], - [137.634933, 35.467888], - [137.632828, 35.47934], - [137.628571, 35.489796], - [137.634827, 35.505791], - [137.624985, 35.517517], - [137.616226, 35.52586], - [137.605972, 35.528099], - [137.592804, 35.525856], - [137.581879, 35.523109], - [137.571808, 35.517162], - [137.562027, 35.513447], - [137.552002, 35.515099], - [137.552521, 35.525303], - [137.536255, 35.538017], - [137.544647, 35.552513], - [137.535156, 35.563236], - [137.541351, 35.572536], - [137.539551, 35.583302], - [137.532471, 35.590725], - [137.52002, 35.602116], - [137.51947, 35.614067], - [137.526306, 35.621841], - [137.530151, 35.631828], - [137.539871, 35.634823], - [137.545059, 35.645061], - [137.541733, 35.65519], - [137.531982, 35.666492], - [137.523453, 35.673443], - [137.513, 35.679111], - [137.502045, 35.684124], - [137.500473, 35.695023], - [137.491257, 35.701653], - [137.490356, 35.71357], - [137.48317, 35.723305], - [137.475449, 35.731838], - [137.467804, 35.749954], - [137.461548, 35.758045], - [137.45047, 35.755424], - [137.44075, 35.7593], - [137.435547, 35.767994], - [137.424377, 35.770706], - [137.410675, 35.77367], - [137.398834, 35.773445], - [137.399231, 35.784325], - [137.396576, 35.794559], - [137.386124, 35.797264], - [137.375046, 35.796684], - [137.363373, 35.792843], - [137.354172, 35.798237], - [137.343552, 35.794956], - [137.335571, 35.802898], - [137.329285, 35.810871], - [137.330383, 35.822521], - [137.334457, 35.833286], - [137.343323, 35.84079], - [137.35437, 35.839771], - [137.364548, 35.843781], - [137.369171, 35.854313], - [137.370773, 35.866154], - [137.374054, 35.880299], - [137.382202, 35.887581], - [137.393524, 35.891071], - [137.405075, 35.894077], - [137.417175, 35.898346], - [137.428558, 35.900452], - [137.440521, 35.901924], - [137.448425, 35.892944], - [137.457306, 35.888218], - [137.467834, 35.888386], - [137.478531, 35.891186], - [137.487106, 35.906422], - [137.492065, 35.916611], - [137.499985, 35.924973], - [137.505325, 35.93494], - [137.51535, 35.937714], - [137.527374, 35.939201], - [137.531982, 35.950264], - [137.536957, 35.959423], - [137.544571, 35.966843], - [137.546448, 35.976887], - [137.55658, 35.98428], - [137.566605, 35.988052], - [137.576233, 35.992592], - [137.587173, 35.99984], - [137.596771, 36.008358], - [137.602295, 36.023064], - [137.601227, 36.033344], - [137.604095, 36.043282], - [137.610275, 36.051365], - [137.61792, 36.058891], - [137.616898, 36.073078], - [137.605301, 36.073303], - [137.596222, 36.077641], - [137.580154, 36.08329], - [137.572678, 36.090015], - [137.557022, 36.103809], - [137.56012, 36.114777], - [137.563049, 36.125439], - [137.557526, 36.137135], - [137.56842, 36.142906], - [137.573654, 36.152214], - [137.584946, 36.156666], - [137.595627, 36.166615], - [137.595032, 36.178288], - [137.597809, 36.187901], - [137.587448, 36.190838], - [137.579727, 36.199619], - [137.578445, 36.210381], - [137.587296, 36.219532], - [137.593658, 36.229069], - [137.598877, 36.238991], - [137.610077, 36.249783], - [137.624985, 36.264938], - [137.631332, 36.273933], - [137.640259, 36.280369], - [137.649323, 36.285011], - [137.651123, 36.295151], - [137.652359, 36.306446], - [137.653824, 36.317062], - [137.650146, 36.326778], - [137.649155, 36.338875], - [137.638733, 36.339317], - [137.6315, 36.346565], - [137.62532, 36.356464], - [137.616959, 36.363499], - [137.606827, 36.365456], - [137.596725, 36.365639], - [137.589249, 36.372353], - [137.590195, 36.3866], - [137.59935, 36.391148], - [137.607925, 36.398907], - [137.60788, 36.409004], - [137.624985, 36.419754], - [137.635834, 36.42181], - [137.640533, 36.431423], - [137.642929, 36.442158], - [137.648178, 36.450798], - [137.657547, 36.455185], - [137.658951, 36.465431], - [137.654999, 36.475784], - [137.656128, 36.486027], - [137.669754, 36.499931], - [137.676376, 36.507694], - [137.686508, 36.509705], - [137.697433, 36.507969], - [137.706833, 36.514641], - [137.700806, 36.534508], - [137.690247, 36.532913], - [137.689484, 36.543018], - [137.692047, 36.553242], - [137.695923, 36.564503], - [137.707199, 36.569187], - [137.716278, 36.574684], - [137.726273, 36.582806], - [137.736053, 36.585232], - [137.749985, 36.584099], - [137.755508, 36.593273], - [137.749985, 36.602226], - [137.749985, 36.621391], - [137.75592, 36.629982], - [137.758545, 36.641064], - [137.758179, 36.651611], - [137.764099, 36.666599], - [137.763229, 36.677372], - [137.757324, 36.686443], - [137.755707, 36.696999], - [137.755005, 36.708729], - [137.754654, 36.718834], - [137.757156, 36.729332], - [137.758484, 36.739845], - [137.757095, 36.751297], - [137.765823, 36.764153], - [137.775131, 36.7686], - [137.78595, 36.770374], - [137.794495, 36.775749], - [137.800156, 36.784477], - [137.809677, 36.788677], - [137.819702, 36.793468], - [137.825928, 36.801739], - [137.835449, 36.807079], - [137.838196, 36.81916], - [137.850983, 36.83326], - [137.859283, 36.840427], - [137.86322, 36.851112], - [137.874985, 36.860394], - [137.874985, 36.872654], - [137.869583, 36.882633], - [137.867706, 36.892963], - [137.867554, 36.902977], - [137.870834, 36.912891], - [137.884903, 36.909367], - [137.89537, 36.907047], - [137.912476, 36.913898], - [137.922333, 36.916595], - [137.939957, 36.910332], - [137.951004, 36.910023], - [137.95723, 36.901772], - [137.967606, 36.901367], - [137.977829, 36.905689], - [137.989105, 36.906719], - [137.999985, 36.904442], - [138.016724, 36.900551], - [138.023773, 36.887917], - [138.034592, 36.887829], - [138.0354, 36.87772], - [138.029175, 36.869331], - [138.024017, 36.860374], - [138.018967, 36.850445], - [138.0233, 36.840206], - [138.014969, 36.833359], - [138.007324, 36.824959], - [138.016098, 36.818478], - [138.02597, 36.815224], - [138.035172, 36.809101], - [138.048676, 36.806877], - [138.055527, 36.796883], - [138.066162, 36.80035], - [138.075867, 36.804916], - [138.078598, 36.816399], - [138.084946, 36.826202], - [138.0952, 36.833168], - [138.102692, 36.840137], - [138.113068, 36.843163], - [138.123474, 36.845421], - [138.135071, 36.846886], - [138.145615, 36.844532], - [138.155716, 36.842762], - [138.165726, 36.841106], - [138.176437, 36.843922], - [138.186096, 36.848656], - [138.196594, 36.85059], - [138.207047, 36.855091], - [138.216888, 36.867859], - [138.225845, 36.862076], - [138.237823, 36.861336], - [138.249969, 36.861771], - [138.260162, 36.865456], - [138.268021, 36.858768], - [138.274673, 36.85088], - [138.274673, 36.839836], - [138.287201, 36.841583], - [138.294373, 36.848759], - [138.295593, 36.858868], - [138.29599, 36.869854], - [138.299698, 36.879417], - [138.296097, 36.897995], - [138.3004, 36.908871], - [138.311508, 36.916695], - [138.321426, 36.922062], - [138.331863, 36.923683], - [138.34227, 36.919594], - [138.351639, 36.925301], - [138.360748, 36.93058], - [138.365814, 36.939285], - [138.366821, 36.949947], - [138.374969, 36.962898], - [138.382065, 36.977345], - [138.391525, 36.982853], - [138.397766, 36.994225], - [138.408463, 36.995255], - [138.426422, 37.002205], - [138.436325, 37.003868], - [138.445526, 37.00964], - [138.455246, 37.01284], - [138.467316, 37.015453], - [138.479446, 37.016979], - [138.490799, 37.016953], - [138.506088, 37.022301], - [138.517014, 37.026436], - [138.527863, 37.027336] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "富山県", - "name": "Toyama", - "ISOCODE": "JP-16", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:17:12+0100", - "cartodb_id": 42 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [136.988907, 36.963135], - [136.999985, 36.963764], - [137.013046, 36.958912], - [137.023773, 36.960506], - [137.034546, 36.961689], - [137.044632, 36.962315], - [137.056259, 36.95713], - [137.053879, 36.954319], - [137.036179, 36.941837], - [137.032776, 36.936211], - [137.032776, 36.932453], - [137.038452, 36.923679], - [137.03688, 36.920135], - [137.025696, 36.911812], - [137.022568, 36.907017], - [137.010056, 36.893272], - [137.000427, 36.885777], - [136.992111, 36.880367], - [136.988205, 36.87307], - [136.996292, 36.862598], - [137.001892, 36.854473], - [137.022064, 36.834194], - [137.066055, 36.803001], - [137.067078, 36.79987], - [137.060318, 36.792789], - [137.062103, 36.787357], - [137.07016, 36.791931], - [137.072754, 36.791298], - [137.073776, 36.788166], - [137.078705, 36.787735], - [137.08493, 36.792103], - [137.106415, 36.782864], - [137.124023, 36.778221], - [137.127625, 36.773411], - [137.130478, 36.774029], - [137.133072, 36.774857], - [137.148087, 36.769802], - [137.162582, 36.766834], - [137.17363, 36.761887], - [137.174591, 36.759209], - [137.191559, 36.756096], - [137.197266, 36.757954], - [137.22319, 36.76078], - [137.2258, 36.76223], - [137.226807, 36.758888], - [137.222107, 36.750767], - [137.222565, 36.740124], - [137.22435, 36.736778], - [137.226685, 36.736351], - [137.226486, 36.74762], - [137.234863, 36.76157], - [137.240311, 36.763638], - [137.297028, 36.757351], - [137.303787, 36.759617], - [137.309479, 36.759594], - [137.320618, 36.758915], - [137.332565, 36.762199], - [137.337784, 36.768021], - [137.343262, 36.770916], - [137.34613, 36.774448], - [137.345367, 36.776333], - [137.347473, 36.780079], - [137.353455, 36.784016], - [137.359955, 36.785652], - [137.384186, 36.800976], - [137.393036, 36.806564], - [137.395767, 36.822826], - [137.41098, 36.845493], - [137.41185, 36.855713], - [137.415009, 36.860916], - [137.419205, 36.866943], - [137.419785, 36.868629], - [137.422134, 36.875484], - [137.421661, 36.881538], - [137.412201, 36.899742], - [137.419312, 36.912018], - [137.42244, 36.912209], - [137.42662, 36.916359], - [137.431564, 36.917793], - [137.455582, 36.902843], - [137.463364, 36.901966], - [137.476807, 36.894794], - [137.487701, 36.893894], - [137.497772, 36.888618], - [137.504532, 36.889206], - [137.504288, 36.890667], - [137.489822, 36.899307], - [137.474258, 36.90086], - [137.463394, 36.905304], - [137.454758, 36.910995], - [137.443268, 36.918564], - [137.437805, 36.919014], - [137.431885, 36.924053], - [137.467102, 36.941803], - [137.499695, 36.955593], - [137.523132, 36.961292], - [137.54834, 36.962177], - [137.567047, 36.962891], - [137.578262, 36.966782], - [137.592911, 36.975239], - [137.634811, 36.980865], - [137.64798, 36.969883], - [137.656906, 36.961758], - [137.664429, 36.95406], - [137.673309, 36.947536], - [137.68306, 36.944973], - [137.692551, 36.940102], - [137.703278, 36.939552], - [137.71489, 36.937233], - [137.720215, 36.927181], - [137.720596, 36.916065], - [137.720581, 36.904228], - [137.716232, 36.88866], - [137.723145, 36.880062], - [137.730927, 36.873478], - [137.736023, 36.864124], - [137.737656, 36.853676], - [137.736404, 36.84325], - [137.735855, 36.832676], - [137.741745, 36.815983], - [137.749985, 36.80827], - [137.757278, 36.792442], - [137.753372, 36.782692], - [137.757751, 36.772732], - [137.765823, 36.764153], - [137.757095, 36.751297], - [137.758484, 36.739845], - [137.757156, 36.729332], - [137.754654, 36.718834], - [137.755005, 36.708729], - [137.755707, 36.696999], - [137.757324, 36.686443], - [137.763229, 36.677372], - [137.764099, 36.666599], - [137.758179, 36.651611], - [137.758545, 36.641064], - [137.75592, 36.629982], - [137.749985, 36.621391], - [137.749985, 36.602226], - [137.755508, 36.593273], - [137.749985, 36.584099], - [137.736053, 36.585232], - [137.726273, 36.582806], - [137.716278, 36.574684], - [137.707199, 36.569187], - [137.695923, 36.564503], - [137.692047, 36.553242], - [137.689484, 36.543018], - [137.690247, 36.532913], - [137.700806, 36.534508], - [137.706833, 36.514641], - [137.697433, 36.507969], - [137.686508, 36.509705], - [137.676376, 36.507694], - [137.669754, 36.499931], - [137.656128, 36.486027], - [137.654999, 36.475784], - [137.658951, 36.465431], - [137.657547, 36.455185], - [137.648178, 36.450798], - [137.642929, 36.442158], - [137.640533, 36.431423], - [137.635834, 36.42181], - [137.624985, 36.419754], - [137.60788, 36.409004], - [137.607925, 36.398907], - [137.59935, 36.391148], - [137.590195, 36.3866], - [137.578323, 36.389668], - [137.568085, 36.38538], - [137.556259, 36.38549], - [137.542877, 36.389431], - [137.534729, 36.398308], - [137.523727, 36.402802], - [137.515396, 36.4161], - [137.499985, 36.423092], - [137.490082, 36.420696], - [137.477631, 36.422253], - [137.463882, 36.409466], - [137.452499, 36.413502], - [137.439529, 36.416595], - [137.428177, 36.419346], - [137.41745, 36.422161], - [137.406845, 36.423851], - [137.400024, 36.431393], - [137.398026, 36.441353], - [137.392548, 36.455585], - [137.382721, 36.451572], - [137.369049, 36.447685], - [137.360901, 36.440567], - [137.355927, 36.431629], - [137.344559, 36.429962], - [137.333221, 36.427181], - [137.324173, 36.42268], - [137.313171, 36.424507], - [137.309921, 36.43428], - [137.316452, 36.443027], - [137.319626, 36.4533], - [137.311508, 36.460468], - [137.301132, 36.455288], - [137.290451, 36.45821], - [137.281448, 36.462585], - [137.269623, 36.456532], - [137.258133, 36.451309], - [137.250946, 36.458515], - [137.242081, 36.448021], - [137.224976, 36.439766], - [137.207047, 36.434349], - [137.199371, 36.442928], - [137.194534, 36.452164], - [137.176926, 36.448784], - [137.166824, 36.451363], - [137.158005, 36.446476], - [137.147125, 36.442371], - [137.139526, 36.434391], - [137.132828, 36.425133], - [137.126297, 36.416607], - [137.11113, 36.406487], - [137.104782, 36.396442], - [137.095673, 36.39138], - [137.097748, 36.380772], - [137.079071, 36.380051], - [137.070877, 36.373909], - [137.061172, 36.368599], - [137.05925, 36.351658], - [137.052124, 36.342854], - [137.055054, 36.333282], - [137.04837, 36.321335], - [137.040756, 36.314304], - [137.030609, 36.314125], - [137.024109, 36.306358], - [137.0168, 36.297688], - [137.010803, 36.287277], - [136.999985, 36.28474], - [136.986069, 36.27784], - [136.97818, 36.2714], - [136.9608, 36.274521], - [136.963593, 36.28463], - [136.970596, 36.295147], - [136.973969, 36.304665], - [136.970703, 36.314571], - [136.964294, 36.324478], - [136.956635, 36.336098], - [136.940674, 36.345821], - [136.930542, 36.348797], - [136.920975, 36.352695], - [136.910065, 36.357361], - [136.899826, 36.349537], - [136.892197, 36.34243], - [136.883347, 36.347179], - [136.879272, 36.366673], - [136.868927, 36.354412], - [136.860229, 36.346722], - [136.849625, 36.347675], - [136.840424, 36.343746], - [136.843994, 36.333275], - [136.839142, 36.317585], - [136.833725, 36.307152], - [136.825821, 36.300144], - [136.815033, 36.299709], - [136.796143, 36.296921], - [136.793182, 36.31134], - [136.791733, 36.322079], - [136.788895, 36.333282], - [136.79451, 36.344666], - [136.805115, 36.350712], - [136.802872, 36.367554], - [136.800354, 36.385254], - [136.79834, 36.395348], - [136.791595, 36.403038], - [136.783371, 36.409584], - [136.78215, 36.428024], - [136.790131, 36.43618], - [136.79837, 36.442123], - [136.792343, 36.451405], - [136.799484, 36.466839], - [136.802063, 36.477589], - [136.800156, 36.489433], - [136.799362, 36.508629], - [136.805664, 36.51815], - [136.811172, 36.528625], - [136.815643, 36.538429], - [136.819931, 36.549122], - [136.814285, 36.5578], - [136.805389, 36.565601], - [136.796921, 36.572865], - [136.797745, 36.583271], - [136.791458, 36.591187], - [136.788483, 36.607887], - [136.787399, 36.618938], - [136.793655, 36.627708], - [136.803177, 36.633892], - [136.807602, 36.644096], - [136.812805, 36.65313], - [136.826157, 36.669296], - [136.822891, 36.681065], - [136.814468, 36.687935], - [136.816055, 36.699944], - [136.806229, 36.705528], - [136.797272, 36.710857], - [136.796402, 36.721077], - [136.811584, 36.727001], - [136.822662, 36.727886], - [136.825851, 36.737904], - [136.838928, 36.74128], - [136.850464, 36.754322], - [136.851974, 36.770107], - [136.853577, 36.783642], - [136.853683, 36.801891], - [136.85408, 36.812939], - [136.86055, 36.823219], - [136.859573, 36.83326], - [136.86467, 36.842197], - [136.866425, 36.854588], - [136.876282, 36.864426], - [136.884644, 36.871769], - [136.885742, 36.88406], - [136.880997, 36.896729], - [136.888458, 36.910618], - [136.898071, 36.91938], - [136.907379, 36.923557], - [136.917664, 36.927517], - [136.925354, 36.934502], - [136.930298, 36.943932], - [136.93985, 36.947742], - [136.952209, 36.952488], - [136.963593, 36.94857], - [136.973465, 36.944649], - [136.984528, 36.948795], - [136.988907, 36.963135] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "茨城県", - "name": "Ibaraki", - "ISOCODE": "JP-08", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:17:19+0100", - "cartodb_id": 43 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [140.589447, 36.942127], - [140.595993, 36.93322], - [140.59668, 36.923191], - [140.606232, 36.916584], - [140.612701, 36.90844], - [140.6185, 36.90028], - [140.635025, 36.896664], - [140.646271, 36.89595], - [140.657349, 36.897709], - [140.666977, 36.893486], - [140.677475, 36.890327], - [140.688232, 36.887417], - [140.698837, 36.884907], - [140.706985, 36.87888], - [140.714355, 36.872112], - [140.733002, 36.871086], - [140.743759, 36.872322], - [140.763229, 36.864799], - [140.776291, 36.863457], - [140.787048, 36.859962], - [140.798553, 36.855606], - [140.805145, 36.840805], - [140.806366, 36.83408], - [140.80481, 36.829121], - [140.80162, 36.827557], - [140.786072, 36.828072], - [140.779602, 36.823483], - [140.765411, 36.804737], - [140.760498, 36.794872], - [140.754501, 36.789433], - [140.749222, 36.777283], - [140.743454, 36.75053], - [140.73645, 36.735096], - [140.731491, 36.713955], - [140.723923, 36.697285], - [140.722427, 36.683132], - [140.718994, 36.671547], - [140.719528, 36.66732], - [140.720108, 36.662739], - [140.715454, 36.657669], - [140.715286, 36.654331], - [140.708435, 36.65205], - [140.70578, 36.64566], - [140.699768, 36.639381], - [140.692429, 36.616646], - [140.678345, 36.604153], - [140.675873, 36.597572], - [140.668503, 36.577946], - [140.659897, 36.571331], - [140.657059, 36.56641], - [140.651001, 36.543209], - [140.64476, 36.532131], - [140.635544, 36.50235], - [140.629883, 36.49752], - [140.627762, 36.491322], - [140.62085, 36.481934], - [140.614777, 36.468761], - [140.614914, 36.461029], - [140.610031, 36.435074], - [140.614532, 36.400261], - [140.61824, 36.391579], - [140.627472, 36.385017], - [140.630585, 36.380112], - [140.631119, 36.37529], - [140.627457, 36.363712], - [140.626587, 36.362255], - [140.619598, 36.350597], - [140.607925, 36.338852], - [140.601883, 36.33633], - [140.590744, 36.33543], - [140.593719, 36.333038], - [140.600632, 36.331985], - [140.601547, 36.329449], - [140.601608, 36.325478], - [140.597473, 36.314541], - [140.586945, 36.305058], - [140.582794, 36.304562], - [140.57753, 36.307652], - [140.571854, 36.307415], - [140.568039, 36.303356], - [140.564621, 36.269627], - [140.568008, 36.235718], - [140.568619, 36.229607], - [140.580002, 36.171806], - [140.603714, 36.113461], - [140.618164, 36.077843], - [140.633926, 36.053104], - [140.639633, 36.038509], - [140.651367, 36.021], - [140.662323, 35.998295], - [140.66301, 35.997337], - [140.667618, 35.992279], - [140.67215, 35.99017], - [140.681229, 35.978241], - [140.687775, 35.968342], - [140.692947, 35.95927], - [140.696732, 35.955299], - [140.70108, 35.955418], - [140.702927, 35.948818], - [140.706741, 35.940239], - [140.70787, 35.927452], - [140.693588, 35.918938], - [140.682037, 35.91869], - [140.669418, 35.923069], - [140.66777, 35.921032], - [140.670212, 35.918449], - [140.681625, 35.915569], - [140.684555, 35.912548], - [140.684158, 35.909847], - [140.68689, 35.908085], - [140.690186, 35.897667], - [140.698746, 35.888477], - [140.703552, 35.887066], - [140.704636, 35.888283], - [140.695709, 35.899651], - [140.697418, 35.902935], - [140.69487, 35.908661], - [140.708557, 35.919121], - [140.709549, 35.919876], - [140.723663, 35.920036], - [140.730835, 35.909565], - [140.757156, 35.860767], - [140.787079, 35.81913], - [140.812439, 35.783791], - [140.833328, 35.761353], - [140.844177, 35.753254], - [140.852402, 35.743992], - [140.855164, 35.742851], - [140.858414, 35.74128], - [140.860718, 35.746212], - [140.865799, 35.745411], - [140.87117, 35.740421], - [140.880157, 35.725906], - [140.880707, 35.72171], - [140.877258, 35.716076], - [140.79805, 35.750694], - [140.786407, 35.757969], - [140.76622, 35.769417], - [140.744049, 35.782509], - [140.735275, 35.790272], - [140.728012, 35.799644], - [140.723938, 35.810143], - [140.719727, 35.820747], - [140.709488, 35.833263], - [140.698196, 35.840351], - [140.687637, 35.845558], - [140.677887, 35.848179], - [140.666534, 35.850231], - [140.649689, 35.850342], - [140.63681, 35.85302], - [140.624969, 35.856487], - [140.615326, 35.861412], - [140.604874, 35.868595], - [140.596451, 35.876652], - [140.588501, 35.884033], - [140.577438, 35.891636], - [140.567413, 35.896645], - [140.557648, 35.899189], - [140.543579, 35.899773], - [140.531586, 35.899258], - [140.521255, 35.895023], - [140.509247, 35.898178], - [140.499237, 35.903454], - [140.485245, 35.907768], - [140.476074, 35.914345], - [140.466248, 35.916531], - [140.453979, 35.914417], - [140.438065, 35.908455], - [140.425903, 35.903435], - [140.415237, 35.904697], - [140.404663, 35.906193], - [140.393112, 35.904003], - [140.382172, 35.899879], - [140.364319, 35.894981], - [140.356033, 35.888302], - [140.350861, 35.879368], - [140.341614, 35.872326], - [140.332565, 35.865772], - [140.320755, 35.861107], - [140.302063, 35.863842], - [140.290634, 35.869061], - [140.280075, 35.870403], - [140.268707, 35.865849], - [140.249969, 35.854069], - [140.238037, 35.85265], - [140.228302, 35.855022], - [140.217163, 35.859379], - [140.206497, 35.858433], - [140.196716, 35.853619], - [140.187332, 35.848427], - [140.177017, 35.845833], - [140.166138, 35.842026], - [140.154755, 35.84161], - [140.146164, 35.848701], - [140.138733, 35.855812], - [140.125076, 35.871281], - [140.114761, 35.874199], - [140.105072, 35.879581], - [140.093796, 35.882114], - [140.080826, 35.881798], - [140.070358, 35.882957], - [140.060287, 35.88768], - [140.048828, 35.890366], - [140.040283, 35.895599], - [140.030365, 35.901642], - [140.017502, 35.908173], - [140.000381, 35.906841], - [139.977493, 35.918629], - [139.967484, 35.923111], - [139.958908, 35.929996], - [139.947388, 35.935844], - [139.938889, 35.942387], - [139.938675, 35.954121], - [139.937256, 35.965202], - [139.926834, 35.967278], - [139.912094, 35.970558], - [139.900894, 35.975224], - [139.892044, 35.982552], - [139.882706, 35.999962], - [139.873322, 36.012924], - [139.859543, 36.026623], - [139.850113, 36.030907], - [139.83989, 36.038521], - [139.8181, 36.058266], - [139.81102, 36.068909], - [139.807114, 36.08329], - [139.801178, 36.092758], - [139.789154, 36.100227], - [139.780014, 36.093815], - [139.760223, 36.079285], - [139.740372, 36.083305], - [139.730606, 36.100876], - [139.725525, 36.114643], - [139.717575, 36.121983], - [139.712875, 36.13335], - [139.706177, 36.141884], - [139.700333, 36.151848], - [139.696518, 36.164082], - [139.694611, 36.177025], - [139.697433, 36.189034], - [139.705292, 36.200718], - [139.717194, 36.206562], - [139.729568, 36.202934], - [139.742126, 36.203358], - [139.75264, 36.208488], - [139.763428, 36.216106], - [139.778717, 36.221069], - [139.791351, 36.225422], - [139.825714, 36.238911], - [139.832062, 36.249962], - [139.834763, 36.26125], - [139.841263, 36.269947], - [139.840881, 36.282021], - [139.83989, 36.292427], - [139.846191, 36.300682], - [139.853714, 36.308456], - [139.88002, 36.31068], - [139.892639, 36.307568], - [139.91124, 36.297009], - [139.917358, 36.333168], - [139.927185, 36.338524], - [139.938354, 36.340294], - [139.948105, 36.344604], - [139.959564, 36.346901], - [139.968002, 36.352406], - [139.968857, 36.362659], - [139.974762, 36.370827], - [140.002487, 36.365604], - [140.01973, 36.373219], - [140.034088, 36.374657], - [140.054001, 36.373955], - [140.067123, 36.379177], - [140.070755, 36.389748], - [140.069748, 36.400669], - [140.085739, 36.399792], - [140.096161, 36.397915], - [140.104034, 36.390926], - [140.11438, 36.3951], - [140.115204, 36.405273], - [140.124969, 36.409973], - [140.135986, 36.411526], - [140.147491, 36.410873], - [140.153824, 36.401726], - [140.161743, 36.394901], - [140.172409, 36.395813], - [140.188416, 36.395103], - [140.195847, 36.403313], - [140.205551, 36.416611], - [140.205261, 36.429565], - [140.207947, 36.440193], - [140.206604, 36.451321], - [140.211288, 36.460403], - [140.216263, 36.469238], - [140.222427, 36.477283], - [140.230804, 36.483704], - [140.234039, 36.493382], - [140.244736, 36.499947], - [140.250458, 36.511421], - [140.253281, 36.527283], - [140.251266, 36.537312], - [140.252594, 36.547241], - [140.249969, 36.564121], - [140.248001, 36.574314], - [140.249802, 36.591396], - [140.252151, 36.601288], - [140.247421, 36.615604], - [140.23938, 36.631157], - [140.24382, 36.64106], - [140.236191, 36.656044], - [140.234787, 36.666599], - [140.224823, 36.671162], - [140.223389, 36.681156], - [140.230087, 36.689095], - [140.237579, 36.696812], - [140.249771, 36.698978], - [140.264557, 36.698326], - [140.27446, 36.703651], - [140.285675, 36.705448], - [140.290497, 36.718315], - [140.288177, 36.728153], - [140.279861, 36.735916], - [140.270599, 36.74202], - [140.262482, 36.749939], - [140.258667, 36.759331], - [140.258087, 36.770039], - [140.2621, 36.782452], - [140.26828, 36.791813], - [140.268143, 36.802101], - [140.270126, 36.812294], - [140.268768, 36.823055], - [140.264999, 36.83424], - [140.259689, 36.843098], - [140.256119, 36.852654], - [140.257751, 36.86335], - [140.257339, 36.874043], - [140.256912, 36.884178], - [140.255127, 36.894897], - [140.252243, 36.905056], - [140.251694, 36.918282], - [140.260712, 36.933674], - [140.288712, 36.932423], - [140.298462, 36.927383], - [140.306992, 36.921684], - [140.319519, 36.910168], - [140.325439, 36.90139], - [140.327042, 36.890743], - [140.336685, 36.885769], - [140.347092, 36.882576], - [140.358322, 36.881325], - [140.368576, 36.880642], - [140.373627, 36.87075], - [140.375031, 36.852238], - [140.379517, 36.842266], - [140.385513, 36.83326], - [140.39595, 36.829411], - [140.406189, 36.828255], - [140.416656, 36.828934], - [140.424423, 36.821686], - [140.432846, 36.815834], - [140.443176, 36.816093], - [140.449783, 36.807335], - [140.456604, 36.799805], - [140.464996, 36.792999], - [140.477432, 36.79261], - [140.48468, 36.800858], - [140.492538, 36.80706], - [140.499374, 36.815514], - [140.51001, 36.819633], - [140.522675, 36.833263], - [140.531967, 36.841774], - [140.53891, 36.8503], - [140.548615, 36.854912], - [140.560196, 36.856911], - [140.575577, 36.862839], - [140.585815, 36.864723], - [140.595551, 36.870281], - [140.593491, 36.881004], - [140.585938, 36.889366], - [140.584213, 36.899536], - [140.577377, 36.907429], - [140.572006, 36.923401], - [140.579254, 36.939526], - [140.589447, 36.942127] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "岐阜県", - "name": "Gifu", - "ISOCODE": "JP-21", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:17:25+0100", - "cartodb_id": 44 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [137.392548, 36.455585], - [137.398026, 36.441353], - [137.400024, 36.431393], - [137.406845, 36.423851], - [137.41745, 36.422161], - [137.428177, 36.419346], - [137.439529, 36.416595], - [137.452499, 36.413502], - [137.463882, 36.409466], - [137.477631, 36.422253], - [137.490082, 36.420696], - [137.499985, 36.423092], - [137.515396, 36.4161], - [137.523727, 36.402802], - [137.534729, 36.398308], - [137.542877, 36.389431], - [137.556259, 36.38549], - [137.568085, 36.38538], - [137.578323, 36.389668], - [137.590195, 36.3866], - [137.589249, 36.372353], - [137.596725, 36.365639], - [137.606827, 36.365456], - [137.616959, 36.363499], - [137.62532, 36.356464], - [137.6315, 36.346565], - [137.638733, 36.339317], - [137.649155, 36.338875], - [137.650146, 36.326778], - [137.653824, 36.317062], - [137.652359, 36.306446], - [137.651123, 36.295151], - [137.649323, 36.285011], - [137.640259, 36.280369], - [137.631332, 36.273933], - [137.624985, 36.264938], - [137.610077, 36.249783], - [137.598877, 36.238991], - [137.593658, 36.229069], - [137.587296, 36.219532], - [137.578445, 36.210381], - [137.579727, 36.199619], - [137.587448, 36.190838], - [137.597809, 36.187901], - [137.595032, 36.178288], - [137.595627, 36.166615], - [137.584946, 36.156666], - [137.573654, 36.152214], - [137.56842, 36.142906], - [137.557526, 36.137135], - [137.563049, 36.125439], - [137.56012, 36.114777], - [137.557022, 36.103809], - [137.572678, 36.090015], - [137.580154, 36.08329], - [137.596222, 36.077641], - [137.605301, 36.073303], - [137.616898, 36.073078], - [137.61792, 36.058891], - [137.610275, 36.051365], - [137.604095, 36.043282], - [137.601227, 36.033344], - [137.602295, 36.023064], - [137.596771, 36.008358], - [137.587173, 35.99984], - [137.576233, 35.992592], - [137.566605, 35.988052], - [137.55658, 35.98428], - [137.546448, 35.976887], - [137.544571, 35.966843], - [137.536957, 35.959423], - [137.531982, 35.950264], - [137.527374, 35.939201], - [137.51535, 35.937714], - [137.505325, 35.93494], - [137.499985, 35.924973], - [137.492065, 35.916611], - [137.487106, 35.906422], - [137.478531, 35.891186], - [137.467834, 35.888386], - [137.457306, 35.888218], - [137.448425, 35.892944], - [137.440521, 35.901924], - [137.428558, 35.900452], - [137.417175, 35.898346], - [137.405075, 35.894077], - [137.393524, 35.891071], - [137.382202, 35.887581], - [137.374054, 35.880299], - [137.370773, 35.866154], - [137.369171, 35.854313], - [137.364548, 35.843781], - [137.35437, 35.839771], - [137.343323, 35.84079], - [137.334457, 35.833286], - [137.330383, 35.822521], - [137.329285, 35.810871], - [137.335571, 35.802898], - [137.343552, 35.794956], - [137.354172, 35.798237], - [137.363373, 35.792843], - [137.375046, 35.796684], - [137.386124, 35.797264], - [137.396576, 35.794559], - [137.399231, 35.784325], - [137.398834, 35.773445], - [137.410675, 35.77367], - [137.424377, 35.770706], - [137.435547, 35.767994], - [137.44075, 35.7593], - [137.45047, 35.755424], - [137.461548, 35.758045], - [137.467804, 35.749954], - [137.475449, 35.731838], - [137.48317, 35.723305], - [137.490356, 35.71357], - [137.491257, 35.701653], - [137.500473, 35.695023], - [137.502045, 35.684124], - [137.513, 35.679111], - [137.523453, 35.673443], - [137.531982, 35.666492], - [137.541733, 35.65519], - [137.545059, 35.645061], - [137.539871, 35.634823], - [137.530151, 35.631828], - [137.526306, 35.621841], - [137.51947, 35.614067], - [137.52002, 35.602116], - [137.532471, 35.590725], - [137.539551, 35.583302], - [137.541351, 35.572536], - [137.535156, 35.563236], - [137.544647, 35.552513], - [137.536255, 35.538017], - [137.552521, 35.525303], - [137.552002, 35.515099], - [137.562027, 35.513447], - [137.571808, 35.517162], - [137.581879, 35.523109], - [137.592804, 35.525856], - [137.605972, 35.528099], - [137.616226, 35.52586], - [137.624985, 35.517517], - [137.634827, 35.505791], - [137.628571, 35.489796], - [137.632828, 35.47934], - [137.634933, 35.467888], - [137.624985, 35.464348], - [137.612885, 35.455269], - [137.603622, 35.448856], - [137.601974, 35.438892], - [137.611282, 35.434532], - [137.61882, 35.427147], - [137.621384, 35.416145], - [137.630295, 35.407478], - [137.638, 35.398434], - [137.624176, 35.39061], - [137.610626, 35.390293], - [137.593994, 35.386513], - [137.600998, 35.376038], - [137.601608, 35.365585], - [137.604355, 35.353455], - [137.604309, 35.343315], - [137.607071, 35.333317], - [137.595398, 35.326283], - [137.578583, 35.313587], - [137.564682, 35.30648], - [137.561478, 35.296871], - [137.565094, 35.284355], - [137.546326, 35.277695], - [137.535706, 35.278946], - [137.524277, 35.281025], - [137.519379, 35.270958], - [137.511246, 35.263111], - [137.499985, 35.260845], - [137.488998, 35.254242], - [137.4758, 35.244576], - [137.466003, 35.238029], - [137.446426, 35.231686], - [137.436905, 35.222641], - [137.424255, 35.231365], - [137.408157, 35.235146], - [137.3983, 35.23777], - [137.386871, 35.243252], - [137.387756, 35.256367], - [137.374985, 35.259888], - [137.363922, 35.257362], - [137.34523, 35.258354], - [137.348984, 35.26833], - [137.338882, 35.271301], - [137.329025, 35.276768], - [137.319504, 35.282814], - [137.310852, 35.287975], - [137.300323, 35.286175], - [137.290054, 35.285664], - [137.278976, 35.287464], - [137.268433, 35.282887], - [137.26355, 35.27396], - [137.254333, 35.266747], - [137.241409, 35.261677], - [137.232376, 35.256985], - [137.214447, 35.256493], - [137.200363, 35.249981], - [137.189163, 35.249977], - [137.180923, 35.255821], - [137.179276, 35.267094], - [137.172501, 35.274792], - [137.162781, 35.279354], - [137.151062, 35.277794], - [137.142227, 35.283089], - [137.124985, 35.292759], - [137.115021, 35.295643], - [137.103439, 35.296463], - [137.099609, 35.287056], - [137.083282, 35.293373], - [137.079514, 35.303181], - [137.069809, 35.306648], - [137.068283, 35.318134], - [137.074539, 35.326637], - [137.066345, 35.333328], - [137.049408, 35.335274], - [137.048721, 35.345558], - [137.050873, 35.362202], - [137.040848, 35.364552], - [137.031982, 35.369324], - [137.021332, 35.373268], - [137.011749, 35.378174], - [136.997665, 35.390003], - [136.990982, 35.398148], - [136.985077, 35.40649], - [136.991913, 35.421761], - [136.978363, 35.418972], - [136.964096, 35.412071], - [136.958176, 35.393394], - [136.948486, 35.390656], - [136.938156, 35.387154], - [136.928406, 35.378593], - [136.916733, 35.374901], - [136.895691, 35.37484], - [136.874985, 35.369854], - [136.858887, 35.362583], - [136.847122, 35.357716], - [136.832321, 35.354103], - [136.821243, 35.355854], - [136.810684, 35.357136], - [136.795242, 35.365051], - [136.777527, 35.366432], - [136.767685, 35.360535], - [136.758514, 35.345478], - [136.749405, 35.333424], - [136.73851, 35.311207], - [136.733871, 35.301498], - [136.728455, 35.29221], - [136.71553, 35.282143], - [136.707855, 35.272942], - [136.70256, 35.262058], - [136.694183, 35.250553], - [136.682144, 35.236752], - [136.682144, 35.212574], - [136.67923, 35.180702], - [136.676285, 35.170086], - [136.670883, 35.145515], - [136.659424, 35.155838], - [136.64917, 35.162621], - [136.648605, 35.148571], - [136.638229, 35.144657], - [136.625046, 35.144585], - [136.616333, 35.150566], - [136.608429, 35.166168], - [136.597076, 35.177757], - [136.588608, 35.185253], - [136.582581, 35.193367], - [136.573395, 35.199532], - [136.563004, 35.203514], - [136.560623, 35.214596], - [136.550705, 35.217033], - [136.551971, 35.227718], - [136.544067, 35.235161], - [136.539566, 35.246452], - [136.530304, 35.254326], - [136.518188, 35.249973], - [136.513474, 35.236439], - [136.499985, 35.234772], - [136.483185, 35.231571], - [136.47316, 35.230576], - [136.462372, 35.229904], - [136.454346, 35.223011], - [136.446518, 35.215702], - [136.436981, 35.218765], - [136.427017, 35.220924], - [136.417984, 35.214725], - [136.407547, 35.220921], - [136.396118, 35.22707], - [136.387634, 35.234669], - [136.381775, 35.24361], - [136.398056, 35.25243], - [136.397049, 35.262581], - [136.398605, 35.273167], - [136.398956, 35.291183], - [136.409775, 35.30225], - [136.415359, 35.31263], - [136.415436, 35.323318], - [136.418442, 35.333321], - [136.424042, 35.350639], - [136.416245, 35.357491], - [136.41713, 35.368637], - [136.427643, 35.370377], - [136.439377, 35.375843], - [136.445389, 35.386921], - [136.438019, 35.394283], - [136.428604, 35.399479], - [136.423004, 35.409885], - [136.418198, 35.421852], - [136.420883, 35.431541], - [136.426208, 35.441612], - [136.424347, 35.452251], - [136.422943, 35.463573], - [136.411621, 35.465427], - [136.402863, 35.472416], - [136.39621, 35.481575], - [136.390976, 35.490322], - [136.399948, 35.504486], - [136.404922, 35.515965], - [136.403183, 35.527153], - [136.393021, 35.52879], - [136.384079, 35.535305], - [136.380371, 35.546425], - [136.374985, 35.556339], - [136.362152, 35.545704], - [136.35936, 35.535912], - [136.345047, 35.534111], - [136.342499, 35.544346], - [136.333008, 35.547577], - [136.319702, 35.547691], - [136.320786, 35.55809], - [136.325592, 35.573593], - [136.325134, 35.584949], - [136.324417, 35.595005], - [136.320496, 35.604431], - [136.325729, 35.614231], - [136.315842, 35.619793], - [136.30632, 35.616138], - [136.292404, 35.617142], - [136.288589, 35.626804], - [136.282043, 35.635067], - [136.282486, 35.646038], - [136.278931, 35.661114], - [136.292038, 35.66663], - [136.297745, 35.677353], - [136.296356, 35.688053], - [136.30452, 35.693882], - [136.312408, 35.700356], - [136.319168, 35.710045], - [136.323868, 35.720119], - [136.329025, 35.729012], - [136.328064, 35.73991], - [136.3246, 35.759201], - [136.329559, 35.769337], - [136.339233, 35.772289], - [136.351334, 35.77668], - [136.365616, 35.784634], - [136.374985, 35.789143], - [136.384964, 35.791008], - [136.395721, 35.784958], - [136.407272, 35.780357], - [136.417572, 35.779263], - [136.434433, 35.771729], - [136.446655, 35.770924], - [136.456848, 35.773506], - [136.467346, 35.772511], - [136.477493, 35.769764], - [136.488266, 35.772343], - [136.499985, 35.762302], - [136.503586, 35.751129], - [136.516327, 35.758904], - [136.515839, 35.769329], - [136.523056, 35.778328], - [136.531982, 35.782871], - [136.540985, 35.777687], - [136.552109, 35.777237], - [136.563309, 35.77602], - [136.573395, 35.774063], - [136.583084, 35.778225], - [136.588516, 35.786934], - [136.598114, 35.792072], - [136.608322, 35.790394], - [136.624207, 35.784843], - [136.631241, 35.792522], - [136.641113, 35.79427], - [136.647507, 35.803238], - [136.655304, 35.795433], - [136.656708, 35.785423], - [136.668655, 35.781807], - [136.67659, 35.788216], - [136.68779, 35.786163], - [136.69809, 35.788471], - [136.709122, 35.788307], - [136.719147, 35.792965], - [136.725891, 35.802097], - [136.737228, 35.802193], - [136.754257, 35.804024], - [136.763855, 35.807312], - [136.774658, 35.803703], - [136.782028, 35.795582], - [136.794006, 35.801132], - [136.799667, 35.810814], - [136.801071, 35.822819], - [136.802704, 35.833294], - [136.810989, 35.839935], - [136.821945, 35.840717], - [136.834473, 35.852268], - [136.833099, 35.862236], - [136.828766, 35.871468], - [136.825195, 35.881752], - [136.82515, 35.893177], - [136.819229, 35.902641], - [136.811569, 35.909714], - [136.794724, 35.91748], - [136.786469, 35.924355], - [136.792404, 35.933929], - [136.792892, 35.944519], - [136.783188, 35.947376], - [136.771759, 35.948402], - [136.76207, 35.951687], - [136.752899, 35.955967], - [136.755722, 35.966396], - [136.755386, 35.977959], - [136.741608, 35.989906], - [136.730103, 35.993141], - [136.73436, 36.009026], - [136.736465, 36.019382], - [136.738251, 36.029991], - [136.738693, 36.041016], - [136.742691, 36.050396], - [136.757797, 36.061832], - [136.767792, 36.065487], - [136.763535, 36.075096], - [136.757065, 36.085823], - [136.759079, 36.096241], - [136.76825, 36.103924], - [136.772812, 36.113541], - [136.776031, 36.123119], - [136.782547, 36.130749], - [136.778717, 36.140953], - [136.775345, 36.151302], - [136.771133, 36.160995], - [136.781158, 36.163322], - [136.801727, 36.170521], - [136.803665, 36.181664], - [136.813995, 36.193314], - [136.822571, 36.203068], - [136.829865, 36.211956], - [136.835159, 36.220444], - [136.84288, 36.230061], - [136.849564, 36.239445], - [136.84761, 36.255421], - [136.838333, 36.259418], - [136.828064, 36.262825], - [136.817429, 36.26693], - [136.808838, 36.272938], - [136.802124, 36.287567], - [136.796143, 36.296921], - [136.815033, 36.299709], - [136.825821, 36.300144], - [136.833725, 36.307152], - [136.839142, 36.317585], - [136.843994, 36.333275], - [136.840424, 36.343746], - [136.849625, 36.347675], - [136.860229, 36.346722], - [136.868927, 36.354412], - [136.879272, 36.366673], - [136.883347, 36.347179], - [136.892197, 36.34243], - [136.899826, 36.349537], - [136.910065, 36.357361], - [136.920975, 36.352695], - [136.930542, 36.348797], - [136.940674, 36.345821], - [136.956635, 36.336098], - [136.964294, 36.324478], - [136.970703, 36.314571], - [136.973969, 36.304665], - [136.970596, 36.295147], - [136.963593, 36.28463], - [136.9608, 36.274521], - [136.97818, 36.2714], - [136.986069, 36.27784], - [136.999985, 36.28474], - [137.010803, 36.287277], - [137.0168, 36.297688], - [137.024109, 36.306358], - [137.030609, 36.314125], - [137.040756, 36.314304], - [137.04837, 36.321335], - [137.055054, 36.333282], - [137.052124, 36.342854], - [137.05925, 36.351658], - [137.061172, 36.368599], - [137.070877, 36.373909], - [137.079071, 36.380051], - [137.097748, 36.380772], - [137.095673, 36.39138], - [137.104782, 36.396442], - [137.11113, 36.406487], - [137.126297, 36.416607], - [137.132828, 36.425133], - [137.139526, 36.434391], - [137.147125, 36.442371], - [137.158005, 36.446476], - [137.166824, 36.451363], - [137.176926, 36.448784], - [137.194534, 36.452164], - [137.199371, 36.442928], - [137.207047, 36.434349], - [137.224976, 36.439766], - [137.242081, 36.448021], - [137.250946, 36.458515], - [137.258133, 36.451309], - [137.269623, 36.456532], - [137.281448, 36.462585], - [137.290451, 36.45821], - [137.301132, 36.455288], - [137.311508, 36.460468], - [137.319626, 36.4533], - [137.316452, 36.443027], - [137.309921, 36.43428], - [137.313171, 36.424507], - [137.324173, 36.42268], - [137.333221, 36.427181], - [137.344559, 36.429962], - [137.355927, 36.431629], - [137.360901, 36.440567], - [137.369049, 36.447685], - [137.382721, 36.451572], - [137.392548, 36.455585] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "福井県", - "name": "Fukui", - "ISOCODE": "JP-18", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:17:30+0100", - "cartodb_id": 45 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [136.246124, 36.290562], - [136.259186, 36.277046], - [136.265244, 36.269062], - [136.273361, 36.262749], - [136.284515, 36.261478], - [136.295151, 36.257828], - [136.304886, 36.254402], - [136.314697, 36.243271], - [136.319229, 36.232883], - [136.329407, 36.229115], - [136.334351, 36.214455], - [136.331421, 36.204166], - [136.339279, 36.188969], - [136.342102, 36.177876], - [136.349106, 36.169132], - [136.363083, 36.162464], - [136.374451, 36.166744], - [136.398331, 36.166328], - [136.408829, 36.167599], - [136.415176, 36.15659], - [136.4263, 36.151539], - [136.433121, 36.1423], - [136.441986, 36.136288], - [136.453323, 36.136406], - [136.46582, 36.134361], - [136.474472, 36.143719], - [136.483749, 36.151161], - [136.493637, 36.155499], - [136.499985, 36.146606], - [136.515503, 36.143879], - [136.524872, 36.148048], - [136.535568, 36.144554], - [136.544052, 36.15052], - [136.554794, 36.151772], - [136.56575, 36.142876], - [136.575912, 36.140003], - [136.584213, 36.133369], - [136.593597, 36.128151], - [136.605789, 36.125477], - [136.61116, 36.115837], - [136.616577, 36.107216], - [136.628372, 36.10099], - [136.63797, 36.09594], - [136.64888, 36.091484], - [136.656082, 36.083294], - [136.661102, 36.066032], - [136.680252, 36.066582], - [136.690033, 36.069206], - [136.700104, 36.070564], - [136.709808, 36.076317], - [136.720596, 36.078579], - [136.731659, 36.07835], - [136.741653, 36.077271], - [136.757065, 36.085823], - [136.763535, 36.075096], - [136.767792, 36.065487], - [136.757797, 36.061832], - [136.742691, 36.050396], - [136.738693, 36.041016], - [136.738251, 36.029991], - [136.736465, 36.019382], - [136.73436, 36.009026], - [136.730103, 35.993141], - [136.741608, 35.989906], - [136.755386, 35.977959], - [136.755722, 35.966396], - [136.752899, 35.955967], - [136.76207, 35.951687], - [136.771759, 35.948402], - [136.783188, 35.947376], - [136.792892, 35.944519], - [136.792404, 35.933929], - [136.786469, 35.924355], - [136.794724, 35.91748], - [136.811569, 35.909714], - [136.819229, 35.902641], - [136.82515, 35.893177], - [136.825195, 35.881752], - [136.828766, 35.871468], - [136.833099, 35.862236], - [136.834473, 35.852268], - [136.821945, 35.840717], - [136.810989, 35.839935], - [136.802704, 35.833294], - [136.801071, 35.822819], - [136.799667, 35.810814], - [136.794006, 35.801132], - [136.782028, 35.795582], - [136.774658, 35.803703], - [136.763855, 35.807312], - [136.754257, 35.804024], - [136.737228, 35.802193], - [136.725891, 35.802097], - [136.719147, 35.792965], - [136.709122, 35.788307], - [136.69809, 35.788471], - [136.68779, 35.786163], - [136.67659, 35.788216], - [136.668655, 35.781807], - [136.656708, 35.785423], - [136.655304, 35.795433], - [136.647507, 35.803238], - [136.641113, 35.79427], - [136.631241, 35.792522], - [136.624207, 35.784843], - [136.608322, 35.790394], - [136.598114, 35.792072], - [136.588516, 35.786934], - [136.583084, 35.778225], - [136.573395, 35.774063], - [136.563309, 35.77602], - [136.552109, 35.777237], - [136.540985, 35.777687], - [136.531982, 35.782871], - [136.523056, 35.778328], - [136.515839, 35.769329], - [136.516327, 35.758904], - [136.503586, 35.751129], - [136.499985, 35.762302], - [136.488266, 35.772343], - [136.477493, 35.769764], - [136.467346, 35.772511], - [136.456848, 35.773506], - [136.446655, 35.770924], - [136.434433, 35.771729], - [136.417572, 35.779263], - [136.407272, 35.780357], - [136.395721, 35.784958], - [136.384964, 35.791008], - [136.374985, 35.789143], - [136.365616, 35.784634], - [136.351334, 35.77668], - [136.339233, 35.772289], - [136.329559, 35.769337], - [136.3246, 35.759201], - [136.328064, 35.73991], - [136.329025, 35.729012], - [136.323868, 35.720119], - [136.319168, 35.710045], - [136.312408, 35.700356], - [136.30452, 35.693882], - [136.296356, 35.688053], - [136.297745, 35.677353], - [136.292038, 35.66663], - [136.278931, 35.661114], - [136.260483, 35.667896], - [136.247009, 35.671371], - [136.23819, 35.678226], - [136.226822, 35.678158], - [136.212067, 35.683796], - [136.202271, 35.686649], - [136.197647, 35.695686], - [136.187164, 35.69997], - [136.175018, 35.699013], - [136.164337, 35.693867], - [136.153397, 35.694542], - [136.150635, 35.683918], - [136.143112, 35.675083], - [136.137543, 35.66663], - [136.14592, 35.66066], - [136.153473, 35.653847], - [136.155746, 35.643105], - [136.161224, 35.633701], - [136.162933, 35.622681], - [136.170181, 35.613892], - [136.174713, 35.603867], - [136.179565, 35.5937], - [136.173431, 35.583305], - [136.173157, 35.573128], - [136.172745, 35.562805], - [136.152359, 35.568104], - [136.142258, 35.572002], - [136.131699, 35.572227], - [136.11673, 35.575977], - [136.113632, 35.558796], - [136.110657, 35.548637], - [136.09906, 35.531773], - [136.089691, 35.536053], - [136.079971, 35.53194], - [136.073914, 35.523582], - [136.064011, 35.527931], - [136.054398, 35.530766], - [136.044189, 35.528595], - [136.033432, 35.52644], - [136.026062, 35.515644], - [136.018616, 35.507465], - [136.010361, 35.490227], - [135.999985, 35.488926], - [135.987152, 35.48597], - [135.978867, 35.491779], - [135.961761, 35.501198], - [135.9543, 35.508812], - [135.947906, 35.517998], - [135.940948, 35.509705], - [135.936996, 35.499958], - [135.932617, 35.488956], - [135.924988, 35.482151], - [135.922195, 35.47168], - [135.919006, 35.458881], - [135.917175, 35.44772], - [135.915451, 35.437016], - [135.914078, 35.427082], - [135.903961, 35.423241], - [135.895981, 35.41663], - [135.895035, 35.403236], - [135.886276, 35.39835], - [135.876846, 35.393959], - [135.866287, 35.391563], - [135.857361, 35.397167], - [135.848648, 35.40818], - [135.838394, 35.408581], - [135.827194, 35.411354], - [135.815308, 35.408409], - [135.812836, 35.398457], - [135.812515, 35.387539], - [135.803848, 35.381775], - [135.79364, 35.383335], - [135.78331, 35.370918], - [135.777374, 35.362003], - [135.770966, 35.352596], - [135.75, 35.35471], - [135.741058, 35.349041], - [135.731033, 35.349247], - [135.720337, 35.351467], - [135.71228, 35.344154], - [135.701508, 35.341751], - [135.69136, 35.344784], - [135.680008, 35.346535], - [135.671432, 35.353497], - [135.660919, 35.355892], - [135.651123, 35.359222], - [135.639709, 35.360493], - [135.625, 35.366432], - [135.614136, 35.364418], - [135.603195, 35.367939], - [135.59256, 35.365093], - [135.582397, 35.371559], - [135.572159, 35.371967], - [135.561737, 35.373215], - [135.550827, 35.373497], - [135.537231, 35.374237], - [135.529816, 35.381721], - [135.533737, 35.391865], - [135.527985, 35.40015], - [135.530624, 35.41045], - [135.520172, 35.419224], - [135.51004, 35.419304], - [135.5, 35.428429], - [135.491791, 35.435604], - [135.482224, 35.446262], - [135.472458, 35.453831], - [135.464127, 35.460747], - [135.462173, 35.470573], - [135.470062, 35.480732], - [135.477676, 35.489819], - [135.478897, 35.502335], - [135.469147, 35.507256], - [135.460449, 35.513004], - [135.452438, 35.519901], - [135.457367, 35.530914], - [135.462158, 35.539692], - [135.468887, 35.548416], - [135.476089, 35.562664], - [135.477188, 35.562618], - [135.47879, 35.55846], - [135.482864, 35.558506], - [135.490845, 35.555042], - [135.484024, 35.550583], - [135.483047, 35.548069], - [135.483994, 35.544861], - [135.48439, 35.543491], - [135.478851, 35.538837], - [135.476425, 35.53088], - [135.477966, 35.53027], - [135.487091, 35.534126], - [135.488419, 35.53101], - [135.486267, 35.522217], - [135.489059, 35.522667], - [135.495361, 35.527954], - [135.498459, 35.525482], - [135.499283, 35.521523], - [135.508453, 35.523083], - [135.508102, 35.529343], - [135.512848, 35.535236], - [135.511536, 35.538143], - [135.504868, 35.539326], - [135.505585, 35.542885], - [135.501984, 35.544933], - [135.505157, 35.553944], - [135.513657, 35.548813], - [135.522293, 35.550991], - [135.523636, 35.547249], - [135.5224, 35.542793], - [135.520737, 35.536781], - [135.522659, 35.527824], - [135.520996, 35.520084], - [135.515991, 35.513977], - [135.51329, 35.507061], - [135.518539, 35.497719], - [135.530914, 35.489292], - [135.544434, 35.489223], - [135.548737, 35.491772], - [135.553482, 35.498081], - [135.556046, 35.496857], - [135.561005, 35.490227], - [135.575775, 35.491211], - [135.579529, 35.496052], - [135.586639, 35.498001], - [135.593384, 35.50375], - [135.600754, 35.510036], - [135.610855, 35.516399], - [135.621277, 35.518795], - [135.623291, 35.52132], - [135.622223, 35.524025], - [135.624222, 35.527382], - [135.632843, 35.531013], - [135.637115, 35.536064], - [135.642197, 35.536739], - [135.650269, 35.543495], - [135.65564, 35.542919], - [135.658936, 35.54483], - [135.666077, 35.544689], - [135.666473, 35.534462], - [135.671082, 35.533043], - [135.674271, 35.523888], - [135.671753, 35.522404], - [135.65863, 35.530006], - [135.65097, 35.525337], - [135.641937, 35.519829], - [135.634277, 35.520172], - [135.635864, 35.516014], - [135.641983, 35.516697], - [135.643784, 35.515045], - [135.642044, 35.512108], - [135.645691, 35.506504], - [135.639114, 35.503101], - [135.633377, 35.493446], - [135.628845, 35.489437], - [135.623199, 35.491676], - [135.605637, 35.489628], - [135.596146, 35.493919], - [135.587723, 35.493835], - [135.585724, 35.490685], - [135.596207, 35.489326], - [135.611359, 35.482376], - [135.617462, 35.483063], - [135.623047, 35.485203], - [135.63765, 35.480335], - [135.653473, 35.479439], - [135.658798, 35.481579], - [135.66478, 35.491444], - [135.668854, 35.491692], - [135.676819, 35.487797], - [135.697708, 35.489033], - [135.703781, 35.493053], - [135.706329, 35.492867], - [135.707657, 35.48933], - [135.714035, 35.488342], - [135.71666, 35.483566], - [135.72049, 35.482971], - [135.723022, 35.484249], - [135.724762, 35.488022], - [135.723175, 35.491554], - [135.735382, 35.495003], - [135.73999, 35.49379], - [135.740433, 35.494331], - [135.748276, 35.503674], - [135.756989, 35.520031], - [135.755859, 35.528996], - [135.759125, 35.53278], - [135.765015, 35.530533], - [135.765991, 35.534508], - [135.76416, 35.537415], - [135.753479, 35.535236], - [135.750458, 35.531872], - [135.745071, 35.534748], - [135.741013, 35.532207], - [135.736816, 35.521736], - [135.733521, 35.519409], - [135.729462, 35.51812], - [135.721298, 35.518677], - [135.718887, 35.527214], - [135.722061, 35.537888], - [135.717926, 35.541191], - [135.705597, 35.541519], - [135.700317, 35.54166], - [135.692581, 35.54702], - [135.694336, 35.549332], - [135.702469, 35.552742], - [135.709747, 35.561787], - [135.715591, 35.563923], - [135.717041, 35.569992], - [135.724472, 35.568176], - [135.741806, 35.568954], - [135.746201, 35.565651], - [135.754379, 35.564468], - [135.756958, 35.562195], - [135.756012, 35.556343], - [135.759964, 35.546776], - [135.774536, 35.544601], - [135.774231, 35.549191], - [135.766998, 35.555183], - [135.769028, 35.556244], - [135.771927, 35.554863], - [135.784958, 35.548653], - [135.786835, 35.541363], - [135.792175, 35.54224], - [135.792969, 35.540577], - [135.789978, 35.534916], - [135.800034, 35.526234], - [135.803802, 35.531063], - [135.814804, 35.528648], - [135.819107, 35.531395], - [135.814957, 35.536999], - [135.81929, 35.537243], - [135.826202, 35.534794], - [135.835632, 35.535492], - [135.837158, 35.536549], - [135.82756, 35.549206], - [135.824753, 35.550018], - [135.821625, 35.55563], - [135.817261, 35.557476], - [135.815689, 35.561012], - [135.80954, 35.563049], - [135.805893, 35.568863], - [135.809158, 35.572441], - [135.814011, 35.572895], - [135.814484, 35.57645], - [135.817535, 35.576473], - [135.820129, 35.57399], - [135.824463, 35.573814], - [135.830139, 35.569267], - [135.832764, 35.563442], - [135.841171, 35.563927], - [135.852798, 35.574455], - [135.851486, 35.577366], - [135.854004, 35.580101], - [135.858597, 35.580551], - [135.860611, 35.582653], - [135.859314, 35.584732], - [135.86235, 35.587471], - [135.861816, 35.589344], - [135.857208, 35.590351], - [135.855911, 35.59243], - [135.855545, 35.601612], - [135.851746, 35.599079], - [135.847916, 35.598839], - [135.845856, 35.600285], - [135.846832, 35.60363], - [135.84552, 35.606754], - [135.837906, 35.60252], - [135.834213, 35.60611], - [135.833008, 35.607281], - [135.831436, 35.609982], - [135.832932, 35.613125], - [135.840042, 35.61652], - [135.842026, 35.622383], - [135.839966, 35.623825], - [135.828445, 35.625404], - [135.827133, 35.628529], - [135.82988, 35.634186], - [135.825272, 35.634983], - [135.818405, 35.632008], - [135.816055, 35.636581], - [135.819016, 35.644535], - [135.826172, 35.644176], - [135.83287, 35.640263], - [135.848236, 35.636833], - [135.850906, 35.626835], - [135.860397, 35.623566], - [135.862732, 35.620872], - [135.861221, 35.618145], - [135.86795, 35.610683], - [135.869247, 35.610603], - [135.874084, 35.61031], - [135.884995, 35.617073], - [135.890625, 35.616695], - [135.895508, 35.612976], - [135.897552, 35.613407], - [135.898483, 35.621765], - [135.900253, 35.623657], - [135.904846, 35.624317], - [135.910202, 35.624146], - [135.913315, 35.619991], - [135.912613, 35.614559], - [135.921097, 35.608776], - [135.92952, 35.609879], - [135.937393, 35.614319], - [135.950287, 35.626514], - [135.952301, 35.629662], - [135.951492, 35.634037], - [135.957626, 35.633453], - [135.967438, 35.622456], - [135.971542, 35.62294], - [135.973053, 35.623123], - [135.981171, 35.629646], - [135.987442, 35.641586], - [135.974518, 35.655277], - [135.969162, 35.654613], - [135.968094, 35.658993], - [135.971573, 35.669033], - [135.970505, 35.673412], - [135.979126, 35.680984], - [135.980347, 35.685585], - [135.979004, 35.692047], - [135.980743, 35.697693], - [135.97551, 35.709141], - [135.972931, 35.711208], - [135.968613, 35.709091], - [135.968124, 35.707001], - [135.972244, 35.703274], - [135.968445, 35.700741], - [135.962555, 35.701118], - [135.959717, 35.70298], - [135.962509, 35.704876], - [135.962631, 35.706944], - [135.963165, 35.715946], - [135.959274, 35.720928], - [135.960007, 35.724899], - [135.965363, 35.727024], - [135.974991, 35.736065], - [135.978592, 35.733582], - [135.983444, 35.734241], - [135.985962, 35.73885], - [135.994583, 35.747047], - [136.009109, 35.752777], - [136.02153, 35.764126], - [136.024857, 35.764774], - [136.026947, 35.760193], - [136.033127, 35.756268], - [136.035751, 35.748558], - [136.039902, 35.743156], - [136.039154, 35.739815], - [136.035553, 35.742298], - [136.028503, 35.746578], - [136.026169, 35.747189], - [136.026581, 35.745293], - [136.033279, 35.740295], - [136.039764, 35.730423], - [136.040863, 35.721245], - [136.04425, 35.715214], - [136.04303, 35.708527], - [136.047668, 35.705006], - [136.046158, 35.701656], - [136.051331, 35.695633], - [136.050339, 35.692917], - [136.046524, 35.690388], - [136.039337, 35.693058], - [136.029968, 35.683605], - [136.036163, 35.677589], - [136.04335, 35.674294], - [136.047226, 35.669518], - [136.05014, 35.657845], - [136.054504, 35.6562], - [136.064957, 35.658352], - [136.071579, 35.661312], - [136.075119, 35.665092], - [136.083282, 35.667015], - [136.079147, 35.673046], - [136.080872, 35.680363], - [136.084946, 35.681011], - [136.08876, 35.684376], - [136.088974, 35.687923], - [136.085648, 35.689575], - [136.083008, 35.698742], - [136.083725, 35.703758], - [136.092621, 35.711323], - [136.093719, 35.713287], - [136.100418, 35.725143], - [136.098541, 35.736198], - [136.090073, 35.739697], - [136.098984, 35.743504], - [136.104065, 35.748753], - [136.101898, 35.762516], - [136.103333, 35.774422], - [136.100449, 35.783173], - [136.090363, 35.795433], - [136.075012, 35.822269], - [136.071899, 35.826843], - [136.065216, 35.830563], - [136.01384, 35.872829], - [135.999313, 35.891106], - [135.997971, 35.896107], - [136.000183, 35.905933], - [135.998795, 35.917194], - [136.00119, 35.923538], - [136.001801, 35.925148], - [136.000137, 35.936619], - [135.991074, 35.945744], - [135.98819, 35.95282], - [135.971634, 35.965862], - [135.964874, 35.974583], - [135.961945, 35.985416], - [135.968765, 35.996319], - [135.96846, 36.001324], - [135.989944, 36.008148], - [136.004288, 36.021309], - [136.015137, 36.031269], - [136.019669, 36.040482], - [136.0186, 36.045067], - [136.021118, 36.05072], - [136.027863, 36.069756], - [136.031952, 36.072285], - [136.031143, 36.076244], - [136.035934, 36.086086], - [136.03331, 36.091915], - [136.051163, 36.107468], - [136.054688, 36.115211], - [136.058258, 36.117836], - [136.05928, 36.11858], - [136.058685, 36.127552], - [136.076385, 36.132038], - [136.107254, 36.160183], - [136.117172, 36.17297], - [136.130112, 36.195374], - [136.136475, 36.203339], - [136.139221, 36.213997], - [136.141785, 36.216305], - [136.144592, 36.218616], - [136.137344, 36.222961], - [136.131348, 36.233368], - [136.132095, 36.236294], - [136.135925, 36.239235], - [136.128418, 36.245872], - [136.134552, 36.24987], - [136.146667, 36.24931], - [136.151794, 36.251842], - [136.157196, 36.25145], - [136.163925, 36.247726], - [136.168823, 36.247128], - [136.187057, 36.252853], - [136.19783, 36.259373], - [136.219391, 36.268658], - [136.237122, 36.283188], - [136.246124, 36.290562] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "埼玉県", - "name": "Saitama", - "ISOCODE": "JP-11", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:17:39+0100", - "cartodb_id": 46 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [139.130325, 36.275928], - [139.151749, 36.275364], - [139.165634, 36.27367], - [139.186951, 36.264446], - [139.196701, 36.260952], - [139.214966, 36.256031], - [139.251587, 36.238438], - [139.281921, 36.244499], - [139.293793, 36.241215], - [139.309479, 36.234489], - [139.331345, 36.232876], - [139.340485, 36.238232], - [139.352371, 36.241417], - [139.363922, 36.243427], - [139.374969, 36.241417], - [139.391602, 36.229679], - [139.401474, 36.223785], - [139.420013, 36.214848], - [139.437775, 36.200916], - [139.447327, 36.193611], - [139.456924, 36.18853], - [139.466888, 36.186123], - [139.480286, 36.186668], - [139.49411, 36.188641], - [139.513596, 36.189575], - [139.525635, 36.188866], - [139.537338, 36.189892], - [139.548889, 36.193871], - [139.55983, 36.197849], - [139.576019, 36.200691], - [139.585693, 36.206135], - [139.595825, 36.206146], - [139.605606, 36.20113], - [139.612976, 36.193516], - [139.621964, 36.186432], - [139.635376, 36.19252], - [139.646851, 36.193569], - [139.652802, 36.202793], - [139.662476, 36.217617], - [139.67247, 36.212112], - [139.705292, 36.200718], - [139.697433, 36.189034], - [139.694611, 36.177025], - [139.696518, 36.164082], - [139.700333, 36.151848], - [139.706177, 36.141884], - [139.712875, 36.13335], - [139.717575, 36.121983], - [139.725525, 36.114643], - [139.730606, 36.100876], - [139.740372, 36.083305], - [139.760223, 36.079285], - [139.780014, 36.093815], - [139.782684, 36.077717], - [139.788223, 36.064503], - [139.793686, 36.056057], - [139.803329, 36.046703], - [139.816116, 36.035896], - [139.819931, 36.025681], - [139.81929, 36.005329], - [139.818649, 35.993053], - [139.825378, 35.984425], - [139.838745, 35.959373], - [139.843582, 35.946648], - [139.849426, 35.938004], - [139.85849, 35.931866], - [139.878159, 35.909813], - [139.884201, 35.900677], - [139.891708, 35.891747], - [139.896774, 35.881996], - [139.900024, 35.870972], - [139.903839, 35.860168], - [139.898102, 35.84761], - [139.892517, 35.83733], - [139.895554, 35.815723], - [139.892426, 35.805195], - [139.874969, 35.794319], - [139.862808, 35.792038], - [139.847931, 35.795151], - [139.83783, 35.794498], - [139.827896, 35.791344], - [139.819351, 35.808537], - [139.80365, 35.803829], - [139.792892, 35.802731], - [139.780701, 35.807373], - [139.770264, 35.814396], - [139.758682, 35.80904], - [139.759064, 35.798679], - [139.760208, 35.788078], - [139.749466, 35.783577], - [139.737427, 35.786701], - [139.720505, 35.789932], - [139.701096, 35.795834], - [139.691055, 35.798176], - [139.680161, 35.796047], - [139.669769, 35.797153], - [139.659241, 35.796635], - [139.643417, 35.791718], - [139.635223, 35.783737], - [139.628387, 35.774944], - [139.624969, 35.763596], - [139.614929, 35.767097], - [139.597305, 35.775482], - [139.587112, 35.771656], - [139.578751, 35.764961], - [139.56601, 35.758465], - [139.550797, 35.760113], - [139.53923, 35.77203], - [139.546906, 35.778717], - [139.53685, 35.796131], - [139.529251, 35.788685], - [139.51886, 35.785469], - [139.509705, 35.779686], - [139.499451, 35.776314], - [139.485596, 35.777832], - [139.476913, 35.771614], - [139.465439, 35.770256], - [139.456177, 35.765305], - [139.442139, 35.7663], - [139.414902, 35.764904], - [139.404388, 35.765282], - [139.392502, 35.763798], - [139.384735, 35.771046], - [139.372314, 35.780163], - [139.365768, 35.788673], - [139.355789, 35.790279], - [139.343765, 35.791252], - [139.326187, 35.795097], - [139.321854, 35.805664], - [139.318329, 35.821812], - [139.307343, 35.82077], - [139.305252, 35.830879], - [139.295181, 35.83392], - [139.285065, 35.836105], - [139.274551, 35.836361], - [139.264206, 35.833324], - [139.249969, 35.833675], - [139.239563, 35.836105], - [139.229477, 35.836422], - [139.218658, 35.841911], - [139.207901, 35.841404], - [139.198685, 35.836903], - [139.186829, 35.840294], - [139.177429, 35.845062], - [139.164597, 35.850288], - [139.156006, 35.856285], - [139.146484, 35.860077], - [139.136139, 35.861286], - [139.124969, 35.861721], - [139.114685, 35.861561], - [139.102615, 35.864719], - [139.092728, 35.867603], - [139.082489, 35.872158], - [139.072327, 35.868744], - [139.062424, 35.871845], - [139.053101, 35.875584], - [139.045151, 35.88279], - [139.036469, 35.888039], - [139.026627, 35.894138], - [139.01355, 35.89386], - [138.999969, 35.881153], - [138.987366, 35.878559], - [138.977295, 35.879513], - [138.967865, 35.874382], - [138.956467, 35.87019], - [138.949112, 35.862125], - [138.946976, 35.851837], - [138.933487, 35.846581], - [138.923065, 35.848076], - [138.912613, 35.847984], - [138.902161, 35.843445], - [138.891937, 35.83997], - [138.882034, 35.844151], - [138.865814, 35.855579], - [138.85675, 35.86208], - [138.844635, 35.861835], - [138.834732, 35.859764], - [138.823654, 35.862057], - [138.809601, 35.866554], - [138.79805, 35.870197], - [138.794937, 35.879799], - [138.791245, 35.890659], - [138.783096, 35.896473], - [138.770416, 35.896206], - [138.76088, 35.899399], - [138.742325, 35.902653], - [138.731689, 35.906059], - [138.73555, 35.916676], - [138.741928, 35.927711], - [138.739288, 35.938114], - [138.733566, 35.946461], - [138.727264, 35.955002], - [138.719055, 35.961277], - [138.715347, 35.970688], - [138.720337, 35.989956], - [138.730927, 35.992649], - [138.74205, 36.004337], - [138.749969, 36.011448], - [138.753662, 36.021446], - [138.758163, 36.031322], - [138.768585, 36.034416], - [138.779282, 36.034027], - [138.788727, 36.030033], - [138.798782, 36.027763], - [138.80899, 36.030891], - [138.820969, 36.032436], - [138.832352, 36.038651], - [138.837753, 36.047096], - [138.846207, 36.053272], - [138.850327, 36.06403], - [138.860199, 36.066048], - [138.867218, 36.073776], - [138.880478, 36.079311], - [138.893158, 36.083336], - [138.904373, 36.087643], - [138.914444, 36.08773], - [138.934189, 36.084927], - [138.94455, 36.09058], - [138.953476, 36.097359], - [138.960861, 36.10535], - [138.967911, 36.122578], - [138.999969, 36.122536], - [139.013977, 36.128983], - [139.026611, 36.130653], - [139.034912, 36.12447], - [139.045517, 36.125572], - [139.052185, 36.149635], - [139.066818, 36.156792], - [139.060532, 36.172791], - [139.065125, 36.182121], - [139.067947, 36.194946], - [139.076279, 36.201794], - [139.086838, 36.216255], - [139.092331, 36.225574], - [139.1017, 36.238514], - [139.110764, 36.258144], - [139.12114, 36.265747], - [139.130325, 36.275928] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "千葉県", - "name": "Chiba", - "ISOCODE": "JP-12", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:22:22+0100", - "cartodb_id": 47 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [139.789154, 36.100227], - [139.801178, 36.092758], - [139.807114, 36.08329], - [139.81102, 36.068909], - [139.8181, 36.058266], - [139.83989, 36.038521], - [139.850113, 36.030907], - [139.859543, 36.026623], - [139.873322, 36.012924], - [139.882706, 35.999962], - [139.892044, 35.982552], - [139.900894, 35.975224], - [139.912094, 35.970558], - [139.926834, 35.967278], - [139.937256, 35.965202], - [139.938675, 35.954121], - [139.938889, 35.942387], - [139.947388, 35.935844], - [139.958908, 35.929996], - [139.967484, 35.923111], - [139.977493, 35.918629], - [140.000381, 35.906841], - [140.017502, 35.908173], - [140.030365, 35.901642], - [140.040283, 35.895599], - [140.048828, 35.890366], - [140.060287, 35.88768], - [140.070358, 35.882957], - [140.080826, 35.881798], - [140.093796, 35.882114], - [140.105072, 35.879581], - [140.114761, 35.874199], - [140.125076, 35.871281], - [140.138733, 35.855812], - [140.146164, 35.848701], - [140.154755, 35.84161], - [140.166138, 35.842026], - [140.177017, 35.845833], - [140.187332, 35.848427], - [140.196716, 35.853619], - [140.206497, 35.858433], - [140.217163, 35.859379], - [140.228302, 35.855022], - [140.238037, 35.85265], - [140.249969, 35.854069], - [140.268707, 35.865849], - [140.280075, 35.870403], - [140.290634, 35.869061], - [140.302063, 35.863842], - [140.320755, 35.861107], - [140.332565, 35.865772], - [140.341614, 35.872326], - [140.350861, 35.879368], - [140.356033, 35.888302], - [140.364319, 35.894981], - [140.382172, 35.899879], - [140.393112, 35.904003], - [140.404663, 35.906193], - [140.415237, 35.904697], - [140.425903, 35.903435], - [140.438065, 35.908455], - [140.453979, 35.914417], - [140.466248, 35.916531], - [140.476074, 35.914345], - [140.485245, 35.907768], - [140.499237, 35.903454], - [140.509247, 35.898178], - [140.521255, 35.895023], - [140.531586, 35.899258], - [140.543579, 35.899773], - [140.557648, 35.899189], - [140.567413, 35.896645], - [140.577438, 35.891636], - [140.588501, 35.884033], - [140.596451, 35.876652], - [140.604874, 35.868595], - [140.615326, 35.861412], - [140.624969, 35.856487], - [140.63681, 35.85302], - [140.649689, 35.850342], - [140.666534, 35.850231], - [140.677887, 35.848179], - [140.687637, 35.845558], - [140.698196, 35.840351], - [140.709488, 35.833263], - [140.719727, 35.820747], - [140.723938, 35.810143], - [140.728012, 35.799644], - [140.735275, 35.790272], - [140.744049, 35.782509], - [140.76622, 35.769417], - [140.786407, 35.757969], - [140.79805, 35.750694], - [140.877258, 35.716076], - [140.874832, 35.712093], - [140.875565, 35.706429], - [140.872864, 35.693775], - [140.869003, 35.693283], - [140.860718, 35.696491], - [140.854324, 35.696499], - [140.847473, 35.707806], - [140.841064, 35.712414], - [140.834702, 35.713047], - [140.810745, 35.712822], - [140.752838, 35.693661], - [140.734665, 35.693432], - [140.72757, 35.699932], - [140.708954, 35.701382], - [140.685226, 35.697361], - [140.666473, 35.690815], - [140.663879, 35.689911], - [140.616333, 35.664295], - [140.536148, 35.607525], - [140.49884, 35.574856], - [140.478516, 35.555439], - [140.466858, 35.54076], - [140.437759, 35.502178], - [140.415573, 35.457951], - [140.412598, 35.448853], - [140.401108, 35.414738], - [140.399353, 35.393066], - [140.39769, 35.392372], - [140.395798, 35.394859], - [140.395798, 35.403255], - [140.393845, 35.404388], - [140.394135, 35.39463], - [140.388519, 35.378983], - [140.393219, 35.381348], - [140.39653, 35.386887], - [140.397491, 35.385811], - [140.395859, 35.377716], - [140.399521, 35.349262], - [140.401505, 35.333889], - [140.413361, 35.325798], - [140.41864, 35.318531], - [140.422089, 35.305058], - [140.420456, 35.297173], - [140.412674, 35.288429], - [140.406174, 35.262936], - [140.40741, 35.25663], - [140.411636, 35.254204], - [140.413269, 35.251228], - [140.413727, 35.24453], - [140.410812, 35.234478], - [140.408615, 35.226933], - [140.40509, 35.222237], - [140.392715, 35.190655], - [140.379166, 35.17749], - [140.358917, 35.179359], - [140.356018, 35.177151], - [140.339523, 35.160519], - [140.331726, 35.140491], - [140.331482, 35.139874], - [140.328323, 35.137463], - [140.32222, 35.137226], - [140.315994, 35.134281], - [140.31546, 35.145157], - [140.30368, 35.148849], - [140.298676, 35.144821], - [140.298477, 35.140232], - [140.295715, 35.135509], - [140.283829, 35.130852], - [140.27977, 35.130764], - [140.273895, 35.136158], - [140.269974, 35.13356], - [140.262878, 35.133976], - [140.258942, 35.130959], - [140.254318, 35.129841], - [140.252655, 35.126759], - [140.244781, 35.120724], - [140.243896, 35.118034], - [140.246033, 35.114422], - [140.242676, 35.113056], - [140.227783, 35.114681], - [140.227005, 35.114769], - [140.207214, 35.109287], - [140.202576, 35.113808], - [140.197617, 35.122723], - [140.193619, 35.124092], - [140.189285, 35.117741], - [140.182648, 35.117096], - [140.172119, 35.120113], - [140.164978, 35.119484], - [140.156601, 35.113667], - [140.15181, 35.114429], - [140.15097, 35.118839], - [140.138779, 35.118771], - [140.132858, 35.116848], - [140.125031, 35.111641], - [140.118057, 35.103065], - [140.113861, 35.093784], - [140.111374, 35.088634], - [140.111832, 35.08131], - [140.110138, 35.077389], - [140.101303, 35.072418], - [140.090515, 35.069378], - [140.088135, 35.06694], - [140.090057, 35.064381], - [140.088425, 35.06171], - [140.077881, 35.058453], - [140.057999, 35.056293], - [140.052841, 35.054348], - [140.003067, 35.023277], - [140, 35.021366], - [139.997391, 35.019741], - [139.98848, 35.012257], - [139.98465, 35.005466], - [139.983337, 35], - [139.980087, 34.986378], - [139.971558, 34.969692], - [139.97081, 34.963657], - [139.973541, 34.949383], - [139.961136, 34.930504], - [139.94429, 34.914665], - [139.942657, 34.913597], - [139.937271, 34.910053], - [139.898956, 34.902092], - [139.874496, 34.904617], - [139.866119, 34.904415], - [139.854111, 34.90139], - [139.848312, 34.902168], - [139.83345, 34.911114], - [139.831863, 34.915752], - [139.833054, 34.927204], - [139.829803, 34.934807], - [139.825882, 34.938457], - [139.807449, 34.946869], - [139.787628, 34.951969], - [139.774002, 34.953571], - [139.764786, 34.958187], - [139.760223, 34.969181], - [139.759445, 34.971062], - [139.761581, 34.97393], - [139.766129, 34.973606], - [139.768219, 34.975433], - [139.812302, 34.974728], - [139.832657, 34.983391], - [139.832504, 34.985901], - [139.828033, 34.988522], - [139.832962, 34.991112], - [139.852219, 34.991028], - [139.855621, 34.986973], - [139.859695, 34.987492], - [139.865479, 34.992981], - [139.86702, 35], - [139.86795, 35.004192], - [139.866852, 35.008816], - [139.866455, 35.011749], - [139.859955, 35.020691], - [139.855927, 35.021214], - [139.851288, 35.024673], - [139.842606, 35.031166], - [139.825989, 35.034519], - [139.820053, 35.038429], - [139.824326, 35.043961], - [139.830521, 35.040249], - [139.835815, 35.039276], - [139.838669, 35.047764], - [139.830597, 35.062382], - [139.830902, 35.070312], - [139.833054, 35.073597], - [139.844208, 35.079575], - [139.847626, 35.082825], - [139.848511, 35.086143], - [139.844803, 35.095219], - [139.837677, 35.101254], - [139.835846, 35.106728], - [139.832809, 35.111694], - [139.835419, 35.12138], - [139.83815, 35.123207], - [139.841095, 35.131626], - [139.84343, 35.133148], - [139.838028, 35.143944], - [139.827332, 35.156418], - [139.825333, 35.165886], - [139.822723, 35.16814], - [139.823395, 35.1898], - [139.826172, 35.193481], - [139.828979, 35.197224], - [139.835281, 35.202431], - [139.858261, 35.214516], - [139.863998, 35.214394], - [139.867142, 35.217152], - [139.872528, 35.217667], - [139.873016, 35.219551], - [139.877014, 35.226055], - [139.873993, 35.239628], - [139.868271, 35.252628], - [139.857193, 35.26543], - [139.855453, 35.271122], - [139.857941, 35.277039], - [139.856628, 35.28429], - [139.851059, 35.289749], - [139.838318, 35.299129], - [139.823044, 35.301331], - [139.784256, 35.311558], - [139.794846, 35.312672], - [139.81926, 35.315235], - [139.82547, 35.317303], - [139.824478, 35.32235], - [139.829102, 35.323196], - [139.83287, 35.320919], - [139.84137, 35.322941], - [139.846848, 35.326279], - [139.854095, 35.337437], - [139.850479, 35.344425], - [139.858734, 35.350533], - [139.845795, 35.365887], - [139.8517, 35.370789], - [139.874558, 35.36401], - [139.891617, 35.358944], - [139.899948, 35.355309], - [139.894531, 35.366108], - [139.89505, 35.370182], - [139.902344, 35.370026], - [139.904083, 35.376583], - [139.913406, 35.380154], - [139.919922, 35.3797], - [139.921936, 35.382797], - [139.920547, 35.386909], - [139.912537, 35.388653], - [139.908875, 35.394073], - [139.906601, 35.407005], - [139.916153, 35.417164], - [139.907257, 35.415157], - [139.90181, 35.420692], - [139.90094, 35.421577], - [139.926117, 35.440197], - [139.93692, 35.441532], - [139.953781, 35.440537], - [139.956924, 35.453976], - [139.964722, 35.457577], - [139.968658, 35.449005], - [139.960617, 35.44981], - [139.960846, 35.444778], - [139.966522, 35.442142], - [139.970596, 35.437969], - [139.97644, 35.440353], - [139.980911, 35.447792], - [139.976852, 35.455395], - [139.975128, 35.458603], - [139.976364, 35.46109], - [139.973312, 35.461784], - [139.971512, 35.465279], - [139.982498, 35.471951], - [139.988297, 35.473076], - [139.997482, 35.460621], - [140, 35.459942], - [140, 35.46059], - [140.002304, 35.46711], - [140.009674, 35.46883], - [140.005524, 35.471436], - [140.004852, 35.473965], - [140.013077, 35.478493], - [140.025085, 35.470371], - [140.026642, 35.47065], - [140.023041, 35.477642], - [140.021042, 35.486797], - [140.029419, 35.49572], - [140.039688, 35.492661], - [140.040482, 35.493584], - [140.034271, 35.502838], - [140.042999, 35.511124], - [140.045654, 35.509804], - [140.046707, 35.506954], - [140.048645, 35.507538], - [140.050781, 35.513458], - [140.045929, 35.517654], - [140.059463, 35.531483], - [140.067886, 35.53035], - [140.06427, 35.537029], - [140.070251, 35.543175], - [140.074844, 35.542442], - [140.076187, 35.537308], - [140.081604, 35.537575], - [140.078857, 35.547062], - [140.080032, 35.547665], - [140.081833, 35.546619], - [140.098129, 35.537193], - [140.101791, 35.532082], - [140.105698, 35.533562], - [140.10553, 35.540165], - [140.099106, 35.543453], - [140.096222, 35.548862], - [140.098694, 35.55352], - [140.101837, 35.555332], - [140.122772, 35.548874], - [140.124023, 35.551987], - [140.102859, 35.562534], - [140.105316, 35.566875], - [140.132355, 35.569702], - [140.127136, 35.571438], - [140.120178, 35.573757], - [140.121582, 35.580948], - [140.120697, 35.588509], - [140.122833, 35.594429], - [140.117065, 35.594566], - [140.113068, 35.60157], - [140.109863, 35.597874], - [140.106766, 35.597317], - [140.106293, 35.605812], - [140.102051, 35.605595], - [140.091827, 35.610542], - [140.091934, 35.602371], - [140.04805, 35.63657], - [140.026321, 35.654133], - [140.019928, 35.65546], - [140.011032, 35.657303], - [140, 35.65377], - [139.998184, 35.653191], - [139.995255, 35.657654], - [140, 35.65876], - [140.002625, 35.659374], - [140.003906, 35.663116], - [140, 35.663967], - [139.99588, 35.664867], - [139.992538, 35.668709], - [139.994385, 35.67778], - [139.990402, 35.68541], - [139.984238, 35.685543], - [139.980698, 35.683422], - [139.974136, 35.682941], - [139.974838, 35.680725], - [139.982452, 35.678356], - [139.982651, 35.672699], - [139.978775, 35.671841], - [139.972641, 35.672604], - [139.966995, 35.676815], - [139.963486, 35.686943], - [139.960007, 35.686707], - [139.961624, 35.680191], - [139.963898, 35.676254], - [139.959549, 35.672894], - [139.951767, 35.682175], - [139.947861, 35.677689], - [139.939545, 35.673958], - [139.939499, 35.672386], - [139.952194, 35.671799], - [139.954056, 35.669872], - [139.940094, 35.667034], - [139.926743, 35.65947], - [139.927429, 35.65694], - [139.929718, 35.654404], - [139.940445, 35.642521], - [139.93364, 35.634815], - [139.920288, 35.626938], - [139.914902, 35.626739], - [139.911163, 35.630276], - [139.908447, 35.629704], - [139.909805, 35.62402], - [139.902313, 35.618839], - [139.898224, 35.623013], - [139.891373, 35.622856], - [139.893539, 35.638817], - [139.902954, 35.646572], - [139.91568, 35.651001], - [139.924545, 35.659863], - [139.930084, 35.672043], - [139.931747, 35.682011], - [139.931198, 35.696964], - [139.925095, 35.711361], - [139.916794, 35.724651], - [139.904068, 35.738239], - [139.894867, 35.746544], - [139.888138, 35.770065], - [139.892441, 35.781296], - [139.874969, 35.794319], - [139.892426, 35.805195], - [139.895554, 35.815723], - [139.892517, 35.83733], - [139.898102, 35.84761], - [139.903839, 35.860168], - [139.900024, 35.870972], - [139.896774, 35.881996], - [139.891708, 35.891747], - [139.884201, 35.900677], - [139.878159, 35.909813], - [139.85849, 35.931866], - [139.849426, 35.938004], - [139.843582, 35.946648], - [139.838745, 35.959373], - [139.825378, 35.984425], - [139.818649, 35.993053], - [139.81929, 36.005329], - [139.819931, 36.025681], - [139.816116, 36.035896], - [139.803329, 36.046703], - [139.793686, 36.056057], - [139.788223, 36.064503], - [139.782684, 36.077717], - [139.780014, 36.093815], - [139.789154, 36.100227] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "山梨県", - "name": "Yamanashi", - "ISOCODE": "JP-19", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:18:26+0100", - "cartodb_id": 48 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [138.362976, 35.947651], - [138.364441, 35.958076], - [138.376358, 35.968422], - [138.387115, 35.965988], - [138.397964, 35.962269], - [138.409164, 35.959709], - [138.41861, 35.956173], - [138.429886, 35.954697], - [138.439209, 35.950794], - [138.44902, 35.944389], - [138.456787, 35.93668], - [138.451538, 35.927219], - [138.448303, 35.916679], - [138.454102, 35.904869], - [138.463165, 35.90044], - [138.472626, 35.894829], - [138.48291, 35.894917], - [138.497314, 35.898449], - [138.50061, 35.908253], - [138.508453, 35.915382], - [138.519684, 35.916676], - [138.53685, 35.912071], - [138.548462, 35.911617], - [138.559387, 35.913174], - [138.569794, 35.913204], - [138.579803, 35.908379], - [138.587524, 35.914879], - [138.59758, 35.914207], - [138.605057, 35.907162], - [138.612, 35.89986], - [138.608139, 35.890438], - [138.60965, 35.880054], - [138.613937, 35.870461], - [138.624969, 35.867252], - [138.636246, 35.867325], - [138.647476, 35.871166], - [138.658554, 35.872608], - [138.674225, 35.867599], - [138.682968, 35.874062], - [138.686737, 35.88509], - [138.695175, 35.892815], - [138.703354, 35.900009], - [138.711166, 35.906578], - [138.721573, 35.905502], - [138.731689, 35.906059], - [138.742325, 35.902653], - [138.76088, 35.899399], - [138.770416, 35.896206], - [138.783096, 35.896473], - [138.791245, 35.890659], - [138.794937, 35.879799], - [138.79805, 35.870197], - [138.809601, 35.866554], - [138.823654, 35.862057], - [138.834732, 35.859764], - [138.844635, 35.861835], - [138.85675, 35.86208], - [138.865814, 35.855579], - [138.882034, 35.844151], - [138.891937, 35.83997], - [138.902161, 35.843445], - [138.912613, 35.847984], - [138.923065, 35.848076], - [138.933487, 35.846581], - [138.946976, 35.851837], - [138.951004, 35.842274], - [138.956375, 35.833332], - [138.964493, 35.827385], - [138.972977, 35.821449], - [138.974762, 35.811474], - [138.973877, 35.80093], - [138.978439, 35.791553], - [138.98587, 35.783245], - [138.9935, 35.758133], - [138.999969, 35.748981], - [139.0103, 35.743011], - [139.021423, 35.726963], - [139.026901, 35.717876], - [139.035812, 35.712883], - [139.044952, 35.707165], - [139.054871, 35.702858], - [139.064667, 35.698097], - [139.074631, 35.693291], - [139.085892, 35.691597], - [139.095779, 35.688007], - [139.105972, 35.688316], - [139.115067, 35.682529], - [139.124969, 35.675747], - [139.133514, 35.670006], - [139.124969, 35.658272], - [139.125214, 35.64407], - [139.126663, 35.629799], - [139.129364, 35.619762], - [139.137436, 35.613659], - [139.133163, 35.593071], - [139.124969, 35.585194], - [139.131256, 35.572636], - [139.132355, 35.561722], - [139.124969, 35.553349], - [139.115021, 35.546539], - [139.115219, 35.532814], - [139.108322, 35.525211], - [139.099289, 35.519478], - [139.090454, 35.511219], - [139.080841, 35.507763], - [139.069763, 35.506264], - [139.054153, 35.507244], - [139.047455, 35.499657], - [139.038651, 35.487751], - [139.030838, 35.480228], - [139.021698, 35.47578], - [139.011292, 35.471348], - [138.999619, 35.470905], - [138.989304, 35.468006], - [138.979645, 35.463039], - [138.969116, 35.460579], - [138.958557, 35.45715], - [138.950134, 35.450901], - [138.940338, 35.445679], - [138.934204, 35.437099], - [138.929718, 35.427544], - [138.93335, 35.417503], - [138.922379, 35.408749], - [138.919556, 35.398731], - [138.905899, 35.392963], - [138.89595, 35.387222], - [138.885971, 35.382523], - [138.873688, 35.380608], - [138.865585, 35.386875], - [138.850418, 35.38567], - [138.840439, 35.381618], - [138.831268, 35.374424], - [138.817841, 35.373062], - [138.806122, 35.37318], - [138.796082, 35.372318], - [138.782898, 35.370392], - [138.772415, 35.370197], - [138.759933, 35.367855], - [138.733307, 35.361351], - [138.719849, 35.361477], - [138.709686, 35.360096], - [138.699905, 35.356255], - [138.689194, 35.35479], - [138.681488, 35.362579], - [138.674973, 35.386971], - [138.666626, 35.395069], - [138.654602, 35.395103], - [138.642242, 35.395069], - [138.624969, 35.392216], - [138.614502, 35.39011], - [138.608353, 35.402988], - [138.604187, 35.416679], - [138.600861, 35.42844], - [138.591217, 35.433792], - [138.585175, 35.442497], - [138.574875, 35.436535], - [138.566238, 35.431313], - [138.559326, 35.423954], - [138.55127, 35.416683], - [138.535156, 35.404743], - [138.53569, 35.394279], - [138.538116, 35.383778], - [138.531372, 35.375862], - [138.533646, 35.364902], - [138.53334, 35.354244], - [138.533401, 35.343838], - [138.537888, 35.333351], - [138.530762, 35.323372], - [138.523636, 35.315773], - [138.515671, 35.307991], - [138.517685, 35.298023], - [138.521133, 35.28788], - [138.523712, 35.278057], - [138.523224, 35.267349], - [138.518341, 35.25843], - [138.52446, 35.250023], - [138.529709, 35.230812], - [138.535355, 35.220558], - [138.534592, 35.207222], - [138.536133, 35.197269], - [138.525696, 35.195709], - [138.514725, 35.185329], - [138.506912, 35.178795], - [138.499359, 35.171253], - [138.481705, 35.172325], - [138.471176, 35.17429], - [138.459427, 35.175022], - [138.448608, 35.175819], - [138.436874, 35.176296], - [138.429443, 35.18354], - [138.423569, 35.192574], - [138.413467, 35.198967], - [138.401733, 35.197052], - [138.397263, 35.206669], - [138.393875, 35.217457], - [138.392029, 35.23418], - [138.383453, 35.250023], - [138.375336, 35.261662], - [138.371414, 35.271694], - [138.370789, 35.282917], - [138.373795, 35.300335], - [138.366745, 35.308807], - [138.357437, 35.313175], - [138.346313, 35.314964], - [138.338699, 35.323082], - [138.328201, 35.32415], - [138.318237, 35.319832], - [138.307892, 35.314407], - [138.297394, 35.309227], - [138.289413, 35.302311], - [138.279388, 35.304405], - [138.270447, 35.311272], - [138.259933, 35.314919], - [138.255127, 35.323734], - [138.258087, 35.333366], - [138.257828, 35.344643], - [138.254349, 35.354481], - [138.249969, 35.363926], - [138.239075, 35.36692], - [138.238602, 35.377476], - [138.246124, 35.386078], - [138.249649, 35.396759], - [138.258163, 35.402485], - [138.261505, 35.416355], - [138.262161, 35.427677], - [138.258133, 35.437656], - [138.25029, 35.446217], - [138.249969, 35.460499], - [138.258362, 35.467232], - [138.261276, 35.477654], - [138.262024, 35.490097], - [138.263336, 35.500019], - [138.269501, 35.50943], - [138.266205, 35.520573], - [138.260803, 35.53083], - [138.263077, 35.540989], - [138.260651, 35.55077], - [138.250397, 35.557137], - [138.247925, 35.567345], - [138.242477, 35.583256], - [138.245514, 35.59304], - [138.239609, 35.602745], - [138.238022, 35.613087], - [138.232086, 35.621944], - [138.233536, 35.632023], - [138.221619, 35.641262], - [138.213303, 35.64957], - [138.20874, 35.660694], - [138.200363, 35.666695], - [138.195541, 35.675541], - [138.196686, 35.685604], - [138.195511, 35.69566], - [138.187485, 35.703884], - [138.184738, 35.714542], - [138.193085, 35.720589], - [138.202438, 35.727207], - [138.210739, 35.733097], - [138.219101, 35.740944], - [138.232758, 35.750015], - [138.235291, 35.760376], - [138.225784, 35.764931], - [138.216736, 35.771793], - [138.201035, 35.778477], - [138.192017, 35.784859], - [138.19075, 35.795933], - [138.198914, 35.802914], - [138.206589, 35.810917], - [138.207001, 35.822094], - [138.215424, 35.833366], - [138.220764, 35.842705], - [138.226349, 35.851864], - [138.232361, 35.863705], - [138.240082, 35.877083], - [138.249969, 35.882198], - [138.260757, 35.876511], - [138.269775, 35.870113], - [138.276108, 35.861877], - [138.286713, 35.856403], - [138.294525, 35.863113], - [138.301651, 35.870575], - [138.308075, 35.878906], - [138.314301, 35.886841], - [138.321854, 35.89344], - [138.330002, 35.901676], - [138.338089, 35.916695], - [138.345795, 35.923748], - [138.348724, 35.93409], - [138.35376, 35.943214], - [138.362976, 35.947651] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "東京都", - "name": "Tokyo", - "ISOCODE": "JP-13", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:18:31+0100", - "cartodb_id": 49 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [139.01355, 35.89386], - [139.026627, 35.894138], - [139.036469, 35.888039], - [139.045151, 35.88279], - [139.053101, 35.875584], - [139.062424, 35.871845], - [139.072327, 35.868744], - [139.082489, 35.872158], - [139.092728, 35.867603], - [139.102615, 35.864719], - [139.114685, 35.861561], - [139.124969, 35.861721], - [139.136139, 35.861286], - [139.146484, 35.860077], - [139.156006, 35.856285], - [139.164597, 35.850288], - [139.177429, 35.845062], - [139.186829, 35.840294], - [139.198685, 35.836903], - [139.207901, 35.841404], - [139.218658, 35.841911], - [139.229477, 35.836422], - [139.239563, 35.836105], - [139.249969, 35.833675], - [139.264206, 35.833324], - [139.274551, 35.836361], - [139.285065, 35.836105], - [139.295181, 35.83392], - [139.305252, 35.830879], - [139.307343, 35.82077], - [139.318329, 35.821812], - [139.321854, 35.805664], - [139.326187, 35.795097], - [139.343765, 35.791252], - [139.355789, 35.790279], - [139.365768, 35.788673], - [139.372314, 35.780163], - [139.384735, 35.771046], - [139.392502, 35.763798], - [139.404388, 35.765282], - [139.414902, 35.764904], - [139.442139, 35.7663], - [139.456177, 35.765305], - [139.465439, 35.770256], - [139.476913, 35.771614], - [139.485596, 35.777832], - [139.499451, 35.776314], - [139.509705, 35.779686], - [139.51886, 35.785469], - [139.529251, 35.788685], - [139.53685, 35.796131], - [139.546906, 35.778717], - [139.53923, 35.77203], - [139.550797, 35.760113], - [139.56601, 35.758465], - [139.578751, 35.764961], - [139.587112, 35.771656], - [139.597305, 35.775482], - [139.614929, 35.767097], - [139.624969, 35.763596], - [139.628387, 35.774944], - [139.635223, 35.783737], - [139.643417, 35.791718], - [139.659241, 35.796635], - [139.669769, 35.797153], - [139.680161, 35.796047], - [139.691055, 35.798176], - [139.701096, 35.795834], - [139.720505, 35.789932], - [139.737427, 35.786701], - [139.749466, 35.783577], - [139.760208, 35.788078], - [139.759064, 35.798679], - [139.758682, 35.80904], - [139.770264, 35.814396], - [139.780701, 35.807373], - [139.792892, 35.802731], - [139.80365, 35.803829], - [139.819351, 35.808537], - [139.827896, 35.791344], - [139.83783, 35.794498], - [139.847931, 35.795151], - [139.862808, 35.792038], - [139.874969, 35.794319], - [139.892441, 35.781296], - [139.888138, 35.770065], - [139.894867, 35.746544], - [139.904068, 35.738239], - [139.916794, 35.724651], - [139.925095, 35.711361], - [139.931198, 35.696964], - [139.931747, 35.682011], - [139.930084, 35.672043], - [139.924545, 35.659863], - [139.91568, 35.651001], - [139.902954, 35.646572], - [139.893539, 35.638817], - [139.891373, 35.622856], - [139.883957, 35.622688], - [139.88092, 35.623695], - [139.879837, 35.626232], - [139.879547, 35.629066], - [139.884445, 35.637756], - [139.895523, 35.646633], - [139.896973, 35.655712], - [139.896103, 35.66235], - [139.892258, 35.662029], - [139.889771, 35.659321], - [139.891525, 35.654259], - [139.889099, 35.650539], - [139.876907, 35.642632], - [139.872086, 35.636448], - [139.856735, 35.638031], - [139.858002, 35.665649], - [139.855743, 35.674465], - [139.848022, 35.675083], - [139.848099, 35.673199], - [139.848175, 35.671509], - [139.851501, 35.667042], - [139.851059, 35.653229], - [139.849472, 35.652004], - [139.838501, 35.658203], - [139.835999, 35.664227], - [139.833633, 35.662388], - [139.834122, 35.653584], - [139.845123, 35.648327], - [139.847168, 35.640114], - [139.845184, 35.637959], - [139.831558, 35.63353], - [139.829285, 35.634521], - [139.828125, 35.658733], - [139.822433, 35.661678], - [139.812027, 35.657001], - [139.807205, 35.655083], - [139.805695, 35.651722], - [139.81044, 35.648232], - [139.809555, 35.642025], - [139.811493, 35.637459], - [139.805817, 35.633617], - [139.807816, 35.630749], - [139.806946, 35.625107], - [139.800034, 35.625816], - [139.802567, 35.618408], - [139.799118, 35.619045], - [139.789734, 35.629421], - [139.787506, 35.624374], - [139.790863, 35.620911], - [139.792877, 35.616367], - [139.796692, 35.60778], - [139.791077, 35.605633], - [139.784302, 35.610298], - [139.775696, 35.623486], - [139.777191, 35.627415], - [139.782196, 35.63184], - [139.780884, 35.634693], - [139.788651, 35.639061], - [139.793457, 35.637264], - [139.80336, 35.643852], - [139.802063, 35.646706], - [139.799316, 35.647327], - [139.79306, 35.646893], - [139.788132, 35.64473], - [139.794601, 35.651951], - [139.791931, 35.655399], - [139.785553, 35.651005], - [139.779251, 35.648872], - [139.777969, 35.65229], - [139.780167, 35.656208], - [139.778473, 35.661819], - [139.772644, 35.659756], - [139.769073, 35.656433], - [139.768829, 35.648518], - [139.765762, 35.638962], - [139.75946, 35.636826], - [139.760025, 35.632854], - [139.765579, 35.632744], - [139.765244, 35.62196], - [139.765121, 35.618042], - [139.778931, 35.593437], - [139.785645, 35.58651], - [139.793808, 35.581818], - [139.792984, 35.577309], - [139.765274, 35.577873], - [139.758347, 35.600643], - [139.755569, 35.600132], - [139.755493, 35.59787], - [139.749802, 35.592896], - [139.749741, 35.591198], - [139.753845, 35.58942], - [139.756546, 35.579056], - [139.760056, 35.565533], - [139.771042, 35.562481], - [139.773209, 35.565266], - [139.779495, 35.566833], - [139.781128, 35.565437], - [139.775162, 35.561264], - [139.775009, 35.556175], - [139.777344, 35.551785], - [139.78244, 35.54512], - [139.787796, 35.538551], - [139.791245, 35.533642], - [139.801132, 35.521675], - [139.803391, 35.514961], - [139.799118, 35.513222], - [139.772797, 35.540539], - [139.744583, 35.541924], - [139.729507, 35.540627], - [139.719894, 35.537014], - [139.707626, 35.533741], - [139.707352, 35.54969], - [139.692657, 35.554745], - [139.683075, 35.559162], - [139.676651, 35.56789], - [139.673416, 35.578972], - [139.66658, 35.586842], - [139.652771, 35.590706], - [139.636841, 35.601418], - [139.624039, 35.609238], - [139.604477, 35.614464], - [139.588806, 35.617527], - [139.577408, 35.619602], - [139.565979, 35.631252], - [139.555359, 35.633369], - [139.541504, 35.634621], - [139.530624, 35.639519], - [139.519836, 35.623528], - [139.509247, 35.619419], - [139.499969, 35.614861], - [139.492126, 35.601891], - [139.483871, 35.608017], - [139.477325, 35.616432], - [139.467194, 35.621227], - [139.455917, 35.611549], - [139.472824, 35.600704], - [139.4823, 35.592918], - [139.496109, 35.5858], - [139.489365, 35.573517], - [139.491882, 35.558758], - [139.484238, 35.542824], - [139.487717, 35.533195], - [139.489777, 35.523403], - [139.484512, 35.512844], - [139.486588, 35.501907], - [139.471283, 35.500862], - [139.467209, 35.510651], - [139.45755, 35.517731], - [139.457047, 35.528328], - [139.449295, 35.536213], - [139.441299, 35.542286], - [139.431046, 35.548546], - [139.424225, 35.556782], - [139.416031, 35.562992], - [139.411942, 35.572395], - [139.402664, 35.579334], - [139.3853, 35.586784], - [139.370285, 35.593746], - [139.359787, 35.595383], - [139.348511, 35.598824], - [139.338089, 35.600693], - [139.326782, 35.601414], - [139.311264, 35.601536], - [139.301636, 35.604282], - [139.292389, 35.608723], - [139.282288, 35.60817], - [139.272202, 35.606361], - [139.260117, 35.600746], - [139.248581, 35.601982], - [139.239151, 35.607079], - [139.23288, 35.61565], - [139.225098, 35.621956], - [139.219635, 35.632801], - [139.218628, 35.642948], - [139.208527, 35.648312], - [139.197235, 35.648537], - [139.187424, 35.641853], - [139.175125, 35.647133], - [139.170135, 35.656151], - [139.164139, 35.664623], - [139.144623, 35.667152], - [139.133514, 35.670006], - [139.124969, 35.675747], - [139.115067, 35.682529], - [139.105972, 35.688316], - [139.095779, 35.688007], - [139.085892, 35.691597], - [139.074631, 35.693291], - [139.064667, 35.698097], - [139.054871, 35.702858], - [139.044952, 35.707165], - [139.035812, 35.712883], - [139.026901, 35.717876], - [139.021423, 35.726963], - [139.0103, 35.743011], - [138.999969, 35.748981], - [138.9935, 35.758133], - [138.98587, 35.783245], - [138.978439, 35.791553], - [138.973877, 35.80093], - [138.974762, 35.811474], - [138.972977, 35.821449], - [138.964493, 35.827385], - [138.956375, 35.833332], - [138.951004, 35.842274], - [138.946976, 35.851837], - [138.949112, 35.862125], - [138.956467, 35.87019], - [138.967865, 35.874382], - [138.977295, 35.879513], - [138.987366, 35.878559], - [138.999969, 35.881153], - [139.01355, 35.89386] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "滋賀県", - "name": "Shiga", - "ISOCODE": "JP-25", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:18:38+0100", - "cartodb_id": 50 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [136.153397, 35.694542], - [136.164337, 35.693867], - [136.175018, 35.699013], - [136.187164, 35.69997], - [136.197647, 35.695686], - [136.202271, 35.686649], - [136.212067, 35.683796], - [136.226822, 35.678158], - [136.23819, 35.678226], - [136.247009, 35.671371], - [136.260483, 35.667896], - [136.278931, 35.661114], - [136.282486, 35.646038], - [136.282043, 35.635067], - [136.288589, 35.626804], - [136.292404, 35.617142], - [136.30632, 35.616138], - [136.315842, 35.619793], - [136.325729, 35.614231], - [136.320496, 35.604431], - [136.324417, 35.595005], - [136.325134, 35.584949], - [136.325592, 35.573593], - [136.320786, 35.55809], - [136.319702, 35.547691], - [136.333008, 35.547577], - [136.342499, 35.544346], - [136.345047, 35.534111], - [136.35936, 35.535912], - [136.362152, 35.545704], - [136.374985, 35.556339], - [136.380371, 35.546425], - [136.384079, 35.535305], - [136.393021, 35.52879], - [136.403183, 35.527153], - [136.404922, 35.515965], - [136.399948, 35.504486], - [136.390976, 35.490322], - [136.39621, 35.481575], - [136.402863, 35.472416], - [136.411621, 35.465427], - [136.422943, 35.463573], - [136.424347, 35.452251], - [136.426208, 35.441612], - [136.420883, 35.431541], - [136.418198, 35.421852], - [136.423004, 35.409885], - [136.428604, 35.399479], - [136.438019, 35.394283], - [136.445389, 35.386921], - [136.439377, 35.375843], - [136.427643, 35.370377], - [136.41713, 35.368637], - [136.416245, 35.357491], - [136.424042, 35.350639], - [136.418442, 35.333321], - [136.415436, 35.323318], - [136.415359, 35.31263], - [136.409775, 35.30225], - [136.398956, 35.291183], - [136.398605, 35.273167], - [136.397049, 35.262581], - [136.398056, 35.25243], - [136.381775, 35.24361], - [136.387634, 35.234669], - [136.396118, 35.22707], - [136.407547, 35.220921], - [136.417984, 35.214725], - [136.4189, 35.203392], - [136.415543, 35.19236], - [136.422012, 35.179539], - [136.432739, 35.177967], - [136.439911, 35.170033], - [136.457184, 35.159752], - [136.457733, 35.149197], - [136.447662, 35.146454], - [136.445984, 35.135887], - [136.438705, 35.128021], - [136.448135, 35.122871], - [136.442947, 35.113682], - [136.444733, 35.102116], - [136.4422, 35.091747], - [136.439255, 35.075844], - [136.443817, 35.066673], - [136.437271, 35.058826], - [136.427444, 35.053551], - [136.420868, 35.044777], - [136.419357, 35.033455], - [136.42543, 35.024632], - [136.420959, 35.01487], - [136.422867, 34.999992], - [136.418869, 34.987396], - [136.413071, 34.972385], - [136.406372, 34.963963], - [136.399658, 34.954407], - [136.387283, 34.947792], - [136.378952, 34.94141], - [136.374771, 34.931221], - [136.374298, 34.920567], - [136.368423, 34.902805], - [136.359818, 34.897396], - [136.343658, 34.892452], - [136.333511, 34.888958], - [136.323608, 34.886497], - [136.316162, 34.87785], - [136.307266, 34.871754], - [136.296936, 34.868294], - [136.278824, 34.869076], - [136.271484, 34.861931], - [136.261429, 34.857819], - [136.249985, 34.855625], - [136.240021, 34.85714], - [136.221359, 34.862453], - [136.209518, 34.865391], - [136.198807, 34.868904], - [136.188873, 34.874966], - [136.182144, 34.883327], - [136.171997, 34.8839], - [136.160202, 34.88158], - [136.149841, 34.879673], - [136.140579, 34.884907], - [136.130371, 34.882591], - [136.118713, 34.888996], - [136.113953, 34.898647], - [136.100662, 34.88599], - [136.090088, 34.882263], - [136.093719, 34.871712], - [136.103409, 34.867271], - [136.114868, 34.866608], - [136.124985, 34.869595], - [136.129089, 34.859135], - [136.113464, 34.852268], - [136.109848, 34.841972], - [136.101562, 34.836357], - [136.090179, 34.832863], - [136.093887, 34.822044], - [136.093536, 34.811401], - [136.085068, 34.805046], - [136.075333, 34.802116], - [136.065979, 34.797455], - [136.055969, 34.796776], - [136.045044, 34.795692], - [136.035599, 34.790417], - [136.025345, 34.788342], - [136.017059, 34.794117], - [136.01799, 34.805241], - [136.031281, 34.816223], - [136.023148, 34.82267], - [136.012741, 34.82267], - [136.005646, 34.830322], - [135.999985, 34.841221], - [135.989685, 34.837837], - [135.979675, 34.835186], - [135.973251, 34.843742], - [135.964478, 34.850685], - [135.949051, 34.848553], - [135.94545, 34.858032], - [135.94606, 34.874916], - [135.942535, 34.885147], - [135.931641, 34.884914], - [135.922058, 34.881344], - [135.912811, 34.876217], - [135.90535, 34.869522], - [135.89502, 34.871269], - [135.888672, 34.880405], - [135.878326, 34.883453], - [135.869507, 34.888905], - [135.868774, 34.902653], - [135.87326, 34.912388], - [135.875702, 34.924622], - [135.881195, 34.9338], - [135.875, 34.952179], - [135.866028, 34.957272], - [135.859146, 34.964844], - [135.858963, 34.975452], - [135.851929, 34.982979], - [135.83638, 34.996803], - [135.834106, 35.008465], - [135.837082, 35.019001], - [135.830536, 35.027138], - [135.822159, 35.035473], - [135.82132, 35.045795], - [135.830475, 35.050545], - [135.838867, 35.056213], - [135.836349, 35.065952], - [135.8405, 35.075718], - [135.839294, 35.089432], - [135.8452, 35.098572], - [135.84761, 35.108921], - [135.852371, 35.118111], - [135.854736, 35.128433], - [135.851624, 35.138363], - [135.856476, 35.148251], - [135.852402, 35.157429], - [135.846924, 35.166626], - [135.843414, 35.177055], - [135.844666, 35.187031], - [135.839676, 35.196419], - [135.835159, 35.206646], - [135.832489, 35.216526], - [135.8405, 35.223595], - [135.840378, 35.233768], - [135.846359, 35.252224], - [135.849686, 35.262421], - [135.851898, 35.276535], - [135.840637, 35.271633], - [135.830856, 35.275928], - [135.824753, 35.2855], - [135.821548, 35.296452], - [135.814133, 35.304768], - [135.807831, 35.313828], - [135.792419, 35.325249], - [135.784897, 35.333305], - [135.776932, 35.339481], - [135.770966, 35.352596], - [135.777374, 35.362003], - [135.78331, 35.370918], - [135.79364, 35.383335], - [135.803848, 35.381775], - [135.812515, 35.387539], - [135.812836, 35.398457], - [135.815308, 35.408409], - [135.827194, 35.411354], - [135.838394, 35.408581], - [135.848648, 35.40818], - [135.857361, 35.397167], - [135.866287, 35.391563], - [135.876846, 35.393959], - [135.886276, 35.39835], - [135.895035, 35.403236], - [135.895981, 35.41663], - [135.903961, 35.423241], - [135.914078, 35.427082], - [135.915451, 35.437016], - [135.917175, 35.44772], - [135.919006, 35.458881], - [135.922195, 35.47168], - [135.924988, 35.482151], - [135.932617, 35.488956], - [135.936996, 35.499958], - [135.940948, 35.509705], - [135.947906, 35.517998], - [135.9543, 35.508812], - [135.961761, 35.501198], - [135.978867, 35.491779], - [135.987152, 35.48597], - [135.999985, 35.488926], - [136.010361, 35.490227], - [136.018616, 35.507465], - [136.026062, 35.515644], - [136.033432, 35.52644], - [136.044189, 35.528595], - [136.054398, 35.530766], - [136.064011, 35.527931], - [136.073914, 35.523582], - [136.079971, 35.53194], - [136.089691, 35.536053], - [136.09906, 35.531773], - [136.110657, 35.548637], - [136.113632, 35.558796], - [136.11673, 35.575977], - [136.131699, 35.572227], - [136.142258, 35.572002], - [136.152359, 35.568104], - [136.172745, 35.562805], - [136.173157, 35.573128], - [136.173431, 35.583305], - [136.179565, 35.5937], - [136.174713, 35.603867], - [136.170181, 35.613892], - [136.162933, 35.622681], - [136.161224, 35.633701], - [136.155746, 35.643105], - [136.153473, 35.653847], - [136.14592, 35.66066], - [136.137543, 35.66663], - [136.143112, 35.675083], - [136.150635, 35.683918], - [136.153397, 35.694542] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "神奈川県", - "name": "Kanagawa", - "ISOCODE": "JP-14", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:18:44+0100", - "cartodb_id": 52 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [139.133514, 35.670006], - [139.144623, 35.667152], - [139.164139, 35.664623], - [139.170135, 35.656151], - [139.175125, 35.647133], - [139.187424, 35.641853], - [139.197235, 35.648537], - [139.208527, 35.648312], - [139.218628, 35.642948], - [139.219635, 35.632801], - [139.225098, 35.621956], - [139.23288, 35.61565], - [139.239151, 35.607079], - [139.248581, 35.601982], - [139.260117, 35.600746], - [139.272202, 35.606361], - [139.282288, 35.60817], - [139.292389, 35.608723], - [139.301636, 35.604282], - [139.311264, 35.601536], - [139.326782, 35.601414], - [139.338089, 35.600693], - [139.348511, 35.598824], - [139.359787, 35.595383], - [139.370285, 35.593746], - [139.3853, 35.586784], - [139.402664, 35.579334], - [139.411942, 35.572395], - [139.416031, 35.562992], - [139.424225, 35.556782], - [139.431046, 35.548546], - [139.441299, 35.542286], - [139.449295, 35.536213], - [139.457047, 35.528328], - [139.45755, 35.517731], - [139.467209, 35.510651], - [139.471283, 35.500862], - [139.486588, 35.501907], - [139.484512, 35.512844], - [139.489777, 35.523403], - [139.487717, 35.533195], - [139.484238, 35.542824], - [139.491882, 35.558758], - [139.489365, 35.573517], - [139.496109, 35.5858], - [139.4823, 35.592918], - [139.472824, 35.600704], - [139.455917, 35.611549], - [139.467194, 35.621227], - [139.477325, 35.616432], - [139.483871, 35.608017], - [139.492126, 35.601891], - [139.499969, 35.614861], - [139.509247, 35.619419], - [139.519836, 35.623528], - [139.530624, 35.639519], - [139.541504, 35.634621], - [139.555359, 35.633369], - [139.565979, 35.631252], - [139.577408, 35.619602], - [139.588806, 35.617527], - [139.604477, 35.614464], - [139.624039, 35.609238], - [139.636841, 35.601418], - [139.652771, 35.590706], - [139.66658, 35.586842], - [139.673416, 35.578972], - [139.676651, 35.56789], - [139.683075, 35.559162], - [139.692657, 35.554745], - [139.707352, 35.54969], - [139.707626, 35.533741], - [139.719894, 35.537014], - [139.729507, 35.540627], - [139.744583, 35.541924], - [139.772797, 35.540539], - [139.799118, 35.513222], - [139.796539, 35.512169], - [139.789032, 35.513981], - [139.782013, 35.513943], - [139.776566, 35.51799], - [139.775391, 35.523525], - [139.772232, 35.528656], - [139.768738, 35.532421], - [139.76532, 35.531368], - [139.764252, 35.530354], - [139.756897, 35.530521], - [139.755325, 35.52433], - [139.727814, 35.507347], - [139.720108, 35.504669], - [139.717972, 35.502449], - [139.718414, 35.493954], - [139.70079, 35.483555], - [139.697479, 35.488712], - [139.693283, 35.487099], - [139.693863, 35.483128], - [139.69101, 35.480354], - [139.68364, 35.488419], - [139.681549, 35.487896], - [139.680115, 35.486225], - [139.684631, 35.475388], - [139.678925, 35.469276], - [139.672729, 35.470531], - [139.674957, 35.475578], - [139.673645, 35.478432], - [139.650696, 35.474354], - [139.655212, 35.462952], - [139.651093, 35.464161], - [139.64502, 35.469372], - [139.638046, 35.467808], - [139.63765, 35.454239], - [139.649384, 35.452881], - [139.65332, 35.446014], - [139.656754, 35.44482], - [139.660324, 35.448708], - [139.664429, 35.446934], - [139.663666, 35.444683], - [139.666367, 35.442368], - [139.673233, 35.448456], - [139.675537, 35.448414], - [139.671082, 35.438316], - [139.675201, 35.437103], - [139.680161, 35.440968], - [139.681366, 35.435287], - [139.6828, 35.436954], - [139.684143, 35.43523], - [139.690308, 35.433414], - [139.692184, 35.426586], - [139.690674, 35.422657], - [139.685822, 35.422188], - [139.685638, 35.415966], - [139.677689, 35.404243], - [139.674164, 35.40205], - [139.670792, 35.404945], - [139.667313, 35.403881], - [139.664612, 35.406197], - [139.662689, 35.411327], - [139.65509, 35.411472], - [139.63562, 35.40789], - [139.636215, 35.404484], - [139.640305, 35.402706], - [139.645203, 35.404312], - [139.646088, 35.403549], - [139.648575, 35.401417], - [139.640182, 35.398186], - [139.631973, 35.401173], - [139.627563, 35.392204], - [139.632431, 35.393242], - [139.636459, 35.389206], - [139.634293, 35.385853], - [139.636963, 35.382408], - [139.644684, 35.386784], - [139.653015, 35.387753], - [139.652908, 35.384361], - [139.647919, 35.379368], - [139.653946, 35.372459], - [139.656738, 35.373539], - [139.657959, 35.367859], - [139.654465, 35.366795], - [139.65625, 35.356575], - [139.659607, 35.353683], - [139.661377, 35.342899], - [139.651535, 35.337433], - [139.650162, 35.339298], - [139.646896, 35.343746], - [139.648346, 35.346546], - [139.646347, 35.348846], - [139.636505, 35.342815], - [139.635666, 35.337738], - [139.637573, 35.332047], - [139.640259, 35.329731], - [139.645813, 35.330753], - [139.652603, 35.326664], - [139.660217, 35.32708], - [139.660782, 35.322544], - [139.652405, 35.319878], - [139.648865, 35.316555], - [139.647949, 35.309216], - [139.643097, 35.308178], - [139.642975, 35.304222], - [139.63736, 35.300934], - [139.639282, 35.295807], - [139.646835, 35.294529], - [139.651489, 35.288216], - [139.657578, 35.284138], - [139.66037, 35.285213], - [139.661865, 35.289146], - [139.665558, 35.290565], - [139.666061, 35.29076], - [139.664856, 35.297009], - [139.666321, 35.299809], - [139.672531, 35.299686], - [139.677277, 35.296764], - [139.682617, 35.290436], - [139.67775, 35.289402], - [139.685547, 35.272842], - [139.699814, 35.265205], - [139.711426, 35.261013], - [139.725922, 35.261292], - [139.73291, 35.263977], - [139.736359, 35.263908], - [139.751297, 35.255688], - [139.74968, 35.247799], - [139.742004, 35.245125], - [139.740631, 35.243755], - [139.73703, 35.240135], - [139.729401, 35.239159], - [139.732513, 35.227779], - [139.731049, 35.224979], - [139.72139, 35.225174], - [139.719223, 35.221825], - [139.721176, 35.217823], - [139.726013, 35.218292], - [139.728699, 35.215977], - [139.726532, 35.212624], - [139.718842, 35.20882], - [139.696732, 35.207561], - [139.686966, 35.203796], - [139.67218, 35.193905], - [139.662155, 35.181087], - [139.661316, 35.176014], - [139.663162, 35.173428], - [139.666626, 35.168556], - [139.669144, 35.160587], - [139.672531, 35.158821], - [139.682159, 35.158066], - [139.684662, 35.149532], - [139.683014, 35.139946], - [139.674683, 35.137848], - [139.672714, 35.141281], - [139.668457, 35.137405], - [139.6595, 35.137016], - [139.654053, 35.139385], - [139.651901, 35.136597], - [139.647064, 35.136124], - [139.640961, 35.139637], - [139.636154, 35.140297], - [139.63031, 35.128529], - [139.61731, 35.131607], - [139.614609, 35.133923], - [139.622513, 35.140869], - [139.608673, 35.142986], - [139.615173, 35.143993], - [139.621826, 35.142975], - [139.624405, 35.144165], - [139.623978, 35.146263], - [139.620773, 35.147282], - [139.62117, 35.149971], - [139.616562, 35.152081], - [139.618454, 35.155167], - [139.623764, 35.154621], - [139.621414, 35.160107], - [139.628494, 35.159103], - [139.636932, 35.160362], - [139.627686, 35.164761], - [139.626236, 35.166882], - [139.627914, 35.171227], - [139.626785, 35.17543], - [139.620667, 35.181637], - [139.623505, 35.183029], - [139.633133, 35.182171], - [139.637039, 35.184998], - [139.635559, 35.186287], - [139.629715, 35.186222], - [139.622223, 35.189949], - [139.618149, 35.189629], - [139.61702, 35.191875], - [139.616013, 35.193859], - [139.609848, 35.192127], - [139.607086, 35.193027], - [139.612595, 35.197701], - [139.616699, 35.205952], - [139.616699, 35.213055], - [139.62973, 35.207939], - [139.634811, 35.208023], - [139.63472, 35.21241], - [139.631821, 35.21645], - [139.623016, 35.219376], - [139.612778, 35.217533], - [139.606766, 35.234383], - [139.594742, 35.246571], - [139.587708, 35.249035], - [139.584259, 35.252251], - [139.579803, 35.259796], - [139.575134, 35.267712], - [139.572815, 35.288647], - [139.567245, 35.289612], - [139.559875, 35.297302], - [139.545868, 35.304104], - [139.541046, 35.304428], - [139.532272, 35.301289], - [139.524384, 35.301262], - [139.49295, 35.304703], - [139.490387, 35.304134], - [139.48233, 35.306824], - [139.475143, 35.312626], - [139.471848, 35.312908], - [139.43634, 35.316845], - [139.419693, 35.313667], - [139.40773, 35.313725], - [139.397964, 35.311226], - [139.376846, 35.311062], - [139.337738, 35.306068], - [139.273972, 35.293438], - [139.254974, 35.287991], - [139.196976, 35.258629], - [139.195541, 35.257896], - [139.172272, 35.245632], - [139.153824, 35.232224], - [139.149536, 35.224792], - [139.151382, 35.21014], - [139.151215, 35.2043], - [139.146851, 35.194572], - [139.148651, 35.186394], - [139.14772, 35.180775], - [139.152679, 35.168354], - [139.14917, 35.161327], - [139.152695, 35.151649], - [139.156921, 35.148434], - [139.172958, 35.14143], - [139.169098, 35.13942], - [139.158707, 35.140045], - [139.148697, 35.14505], - [139.140884, 35.147503], - [139.133286, 35.148071], - [139.126633, 35.146324], - [139.123886, 35.142197], - [139.122116, 35.139526], - [139.119553, 35.135746], - [139.11528, 35.138046], - [139.096237, 35.137375], - [139.085876, 35.138126], - [139.075577, 35.14183], - [139.064987, 35.14241], - [139.054092, 35.144318], - [139.043854, 35.147308], - [139.032913, 35.146542], - [139.030151, 35.156578], - [139.026459, 35.174824], - [139.012756, 35.179722], - [138.999969, 35.191109], - [138.990967, 35.197487], - [138.991226, 35.208439], - [138.986343, 35.217903], - [138.978897, 35.23217], - [138.977951, 35.249992], - [138.978653, 35.260487], - [138.985275, 35.269611], - [138.996277, 35.28159], - [139.007767, 35.286594], - [139.010361, 35.297337], - [139.013763, 35.307152], - [139.016983, 35.316856], - [139.021606, 35.326637], - [139.013596, 35.33905], - [139.013138, 35.350452], - [139.010803, 35.361038], - [139.008911, 35.372181], - [139.002411, 35.379852], - [139.00415, 35.390053], - [138.996628, 35.4002], - [138.985229, 35.40062], - [138.97496, 35.40181], - [138.963089, 35.398933], - [138.952652, 35.398113], - [138.941376, 35.395855], - [138.930984, 35.397499], - [138.919556, 35.398731], - [138.922379, 35.408749], - [138.93335, 35.417503], - [138.929718, 35.427544], - [138.934204, 35.437099], - [138.940338, 35.445679], - [138.950134, 35.450901], - [138.958557, 35.45715], - [138.969116, 35.460579], - [138.979645, 35.463039], - [138.989304, 35.468006], - [138.999619, 35.470905], - [139.011292, 35.471348], - [139.021698, 35.47578], - [139.030838, 35.480228], - [139.038651, 35.487751], - [139.047455, 35.499657], - [139.054153, 35.507244], - [139.069763, 35.506264], - [139.080841, 35.507763], - [139.090454, 35.511219], - [139.099289, 35.519478], - [139.108322, 35.525211], - [139.115219, 35.532814], - [139.115021, 35.546539], - [139.124969, 35.553349], - [139.132355, 35.561722], - [139.131256, 35.572636], - [139.124969, 35.585194], - [139.133163, 35.593071], - [139.137436, 35.613659], - [139.129364, 35.619762], - [139.126663, 35.629799], - [139.125214, 35.64407], - [139.124969, 35.658272], - [139.133514, 35.670006] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "静岡県", - "name": "Shizuoka", - "ISOCODE": "JP-22", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:18:50+0100", - "cartodb_id": 53 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [138.242477, 35.583256], - [138.247925, 35.567345], - [138.250397, 35.557137], - [138.260651, 35.55077], - [138.263077, 35.540989], - [138.260803, 35.53083], - [138.266205, 35.520573], - [138.269501, 35.50943], - [138.263336, 35.500019], - [138.262024, 35.490097], - [138.261276, 35.477654], - [138.258362, 35.467232], - [138.249969, 35.460499], - [138.25029, 35.446217], - [138.258133, 35.437656], - [138.262161, 35.427677], - [138.261505, 35.416355], - [138.258163, 35.402485], - [138.249649, 35.396759], - [138.246124, 35.386078], - [138.238602, 35.377476], - [138.239075, 35.36692], - [138.249969, 35.363926], - [138.254349, 35.354481], - [138.257828, 35.344643], - [138.258087, 35.333366], - [138.255127, 35.323734], - [138.259933, 35.314919], - [138.270447, 35.311272], - [138.279388, 35.304405], - [138.289413, 35.302311], - [138.297394, 35.309227], - [138.307892, 35.314407], - [138.318237, 35.319832], - [138.328201, 35.32415], - [138.338699, 35.323082], - [138.346313, 35.314964], - [138.357437, 35.313175], - [138.366745, 35.308807], - [138.373795, 35.300335], - [138.370789, 35.282917], - [138.371414, 35.271694], - [138.375336, 35.261662], - [138.383453, 35.250023], - [138.392029, 35.23418], - [138.393875, 35.217457], - [138.397263, 35.206669], - [138.401733, 35.197052], - [138.413467, 35.198967], - [138.423569, 35.192574], - [138.429443, 35.18354], - [138.436874, 35.176296], - [138.448608, 35.175819], - [138.459427, 35.175022], - [138.471176, 35.17429], - [138.481705, 35.172325], - [138.499359, 35.171253], - [138.506912, 35.178795], - [138.514725, 35.185329], - [138.525696, 35.195709], - [138.536133, 35.197269], - [138.534592, 35.207222], - [138.535355, 35.220558], - [138.529709, 35.230812], - [138.52446, 35.250023], - [138.518341, 35.25843], - [138.523224, 35.267349], - [138.523712, 35.278057], - [138.521133, 35.28788], - [138.517685, 35.298023], - [138.515671, 35.307991], - [138.523636, 35.315773], - [138.530762, 35.323372], - [138.537888, 35.333351], - [138.533401, 35.343838], - [138.53334, 35.354244], - [138.533646, 35.364902], - [138.531372, 35.375862], - [138.538116, 35.383778], - [138.53569, 35.394279], - [138.535156, 35.404743], - [138.55127, 35.416683], - [138.559326, 35.423954], - [138.566238, 35.431313], - [138.574875, 35.436535], - [138.585175, 35.442497], - [138.591217, 35.433792], - [138.600861, 35.42844], - [138.604187, 35.416679], - [138.608353, 35.402988], - [138.614502, 35.39011], - [138.624969, 35.392216], - [138.642242, 35.395069], - [138.654602, 35.395103], - [138.666626, 35.395069], - [138.674973, 35.386971], - [138.681488, 35.362579], - [138.689194, 35.35479], - [138.699905, 35.356255], - [138.709686, 35.360096], - [138.719849, 35.361477], - [138.733307, 35.361351], - [138.759933, 35.367855], - [138.772415, 35.370197], - [138.782898, 35.370392], - [138.796082, 35.372318], - [138.806122, 35.37318], - [138.817841, 35.373062], - [138.831268, 35.374424], - [138.840439, 35.381618], - [138.850418, 35.38567], - [138.865585, 35.386875], - [138.873688, 35.380608], - [138.885971, 35.382523], - [138.89595, 35.387222], - [138.905899, 35.392963], - [138.919556, 35.398731], - [138.930984, 35.397499], - [138.941376, 35.395855], - [138.952652, 35.398113], - [138.963089, 35.398933], - [138.97496, 35.40181], - [138.985229, 35.40062], - [138.996628, 35.4002], - [139.00415, 35.390053], - [139.002411, 35.379852], - [139.008911, 35.372181], - [139.010803, 35.361038], - [139.013138, 35.350452], - [139.013596, 35.33905], - [139.021606, 35.326637], - [139.016983, 35.316856], - [139.013763, 35.307152], - [139.010361, 35.297337], - [139.007767, 35.286594], - [138.996277, 35.28159], - [138.985275, 35.269611], - [138.978653, 35.260487], - [138.977951, 35.249992], - [138.978897, 35.23217], - [138.986343, 35.217903], - [138.991226, 35.208439], - [138.990967, 35.197487], - [138.999969, 35.191109], - [139.012756, 35.179722], - [139.026459, 35.174824], - [139.030151, 35.156578], - [139.032913, 35.146542], - [139.043854, 35.147308], - [139.054092, 35.144318], - [139.064987, 35.14241], - [139.075577, 35.14183], - [139.085876, 35.138126], - [139.096237, 35.137375], - [139.11528, 35.138046], - [139.119553, 35.135746], - [139.105927, 35.115623], - [139.097122, 35.109951], - [139.09462, 35.102276], - [139.086502, 35.093456], - [139.090637, 35.087322], - [139.090805, 35.084393], - [139.086395, 35.080933], - [139.085251, 35.076569], - [139.089844, 35.068546], - [139.088776, 35.066685], - [139.083893, 35.064693], - [139.081482, 35.060356], - [139.081879, 35.056381], - [139.085754, 35.049835], - [139.089767, 35.048294], - [139.094223, 35.053425], - [139.101547, 35.052238], - [139.104538, 35.049572], - [139.109711, 35.044979], - [139.10762, 35.016834], - [139.108887, 35.008038], - [139.107285, 35.005356], - [139.095383, 35.006008], - [139.093765, 35.002491], - [139.095795, 35], - [139.09964, 34.995277], - [139.107208, 34.976753], - [139.112442, 34.973728], - [139.127441, 34.975101], - [139.133438, 34.972057], - [139.14064, 34.96711], - [139.14357, 34.954735], - [139.145798, 34.953018], - [139.153015, 34.95726], - [139.158264, 34.929382], - [139.153564, 34.924259], - [139.152817, 34.918423], - [139.151917, 34.911346], - [139.145187, 34.898327], - [139.147003, 34.891193], - [139.142197, 34.882729], - [139.132309, 34.873531], - [139.116516, 34.870087], - [139.11235, 34.866203], - [139.108063, 34.857727], - [139.096115, 34.855877], - [139.091919, 34.850948], - [139.087265, 34.838512], - [139.088364, 34.824295], - [139.086823, 34.81966], - [139.086426, 34.818485], - [139.075104, 34.802841], - [139.073074, 34.793694], - [139.062057, 34.779709], - [139.059769, 34.770359], - [139.056885, 34.766865], - [139.052536, 34.765072], - [139.040405, 34.765095], - [139.028717, 34.753628], - [139.024139, 34.75309], - [139.015671, 34.748447], - [139.011246, 34.734337], - [139.009613, 34.73019], - [139.003174, 34.725719], - [138.999222, 34.720158], - [138.998032, 34.713501], - [138.988098, 34.70137], - [138.985825, 34.692436], - [138.985916, 34.686378], - [138.988281, 34.680698], - [138.982559, 34.674335], - [138.985519, 34.671982], - [138.990814, 34.671463], - [138.993515, 34.668907], - [138.994537, 34.660328], - [138.992691, 34.657234], - [138.985992, 34.652142], - [138.973343, 34.651333], - [138.964554, 34.653168], - [138.963089, 34.654865], - [138.965286, 34.661652], - [138.968323, 34.671051], - [138.964645, 34.674667], - [138.959824, 34.673923], - [138.958496, 34.67186], - [138.956345, 34.666889], - [138.953003, 34.664444], - [138.947708, 34.664543], - [138.945587, 34.661034], - [138.932663, 34.659184], - [138.927185, 34.652393], - [138.918884, 34.634594], - [138.911453, 34.63055], - [138.897369, 34.632061], - [138.898499, 34.627445], - [138.891312, 34.622776], - [138.881165, 34.620659], - [138.872742, 34.616634], - [138.865402, 34.606327], - [138.857437, 34.610226], - [138.853989, 34.604027], - [138.84787, 34.601212], - [138.833374, 34.606476], - [138.830231, 34.612167], - [138.823715, 34.613533], - [138.819748, 34.616524], - [138.815369, 34.623074], - [138.811371, 34.624184], - [138.80423, 34.621387], - [138.800201, 34.622082], - [138.799698, 34.631901], - [138.794769, 34.634548], - [138.785263, 34.639664], - [138.781143, 34.646626], - [138.780716, 34.649971], - [138.783127, 34.655357], - [138.793121, 34.661243], - [138.795471, 34.664333], - [138.793518, 34.667496], - [138.78363, 34.665787], - [138.779327, 34.675045], - [138.768265, 34.68755], - [138.762527, 34.690361], - [138.747833, 34.688313], - [138.746887, 34.701061], - [138.744476, 34.705906], - [138.748703, 34.713142], - [138.748322, 34.718063], - [138.747742, 34.725681], - [138.755035, 34.734539], - [138.761108, 34.735271], - [138.764313, 34.742104], - [138.762741, 34.749649], - [138.768051, 34.750183], - [138.781845, 34.766026], - [138.77005, 34.769356], - [138.768631, 34.773556], - [138.770599, 34.781246], - [138.766418, 34.786118], - [138.765854, 34.787506], - [138.759262, 34.803776], - [138.76767, 34.806347], - [138.769272, 34.809662], - [138.761536, 34.813759], - [138.760651, 34.818577], - [138.761795, 34.824192], - [138.7686, 34.833473], - [138.76651, 34.841232], - [138.767883, 34.845383], - [138.775528, 34.847759], - [138.779663, 34.850822], - [138.779968, 34.852905], - [138.776489, 34.855885], - [138.766983, 34.860012], - [138.763062, 34.865299], - [138.759918, 34.881428], - [138.763123, 34.888054], - [138.763702, 34.88855], - [138.774506, 34.897881], - [138.783447, 34.90107], - [138.786621, 34.906235], - [138.791504, 34.909492], - [138.792648, 34.914482], - [138.789505, 34.920383], - [138.782562, 34.926556], - [138.780594, 34.938908], - [138.775665, 34.94442], - [138.769409, 34.957886], - [138.767807, 34.964802], - [138.77005, 34.973114], - [138.772415, 34.976833], - [138.78299, 34.973732], - [138.781799, 34.977093], - [138.776047, 34.983398], - [138.7836, 34.998566], - [138.783844, 35], - [138.78688, 35.018135], - [138.790619, 35.025585], - [138.79657, 35.029869], - [138.797974, 35.025459], - [138.806061, 35.024487], - [138.810562, 35.021694], - [138.81665, 35.021797], - [138.823074, 35.025028], - [138.849564, 35.019974], - [138.854813, 35.016956], - [138.870941, 35.023144], - [138.875488, 35.022228], - [138.878006, 35.022945], - [138.882385, 35.024193], - [138.886124, 35.021412], - [138.891998, 35.023396], - [138.89595, 35.01936], - [138.89975, 35.019081], - [138.902588, 35.020908], - [138.905212, 35.024204], - [138.90004, 35.03035], - [138.907761, 35.043991], - [138.914154, 35.045963], - [138.910202, 35.049583], - [138.90361, 35.049911], - [138.894897, 35.046726], - [138.878479, 35.068733], - [138.873978, 35.0709], - [138.867645, 35.07143], - [138.86496, 35.075653], - [138.869919, 35.080578], - [138.868515, 35.085403], - [138.864548, 35.079418], - [138.861786, 35.080093], - [138.8582, 35.088718], - [138.850983, 35.094273], - [138.818222, 35.113426], - [138.756638, 35.127834], - [138.739853, 35.13063], - [138.720474, 35.133862], - [138.701172, 35.133759], - [138.692764, 35.132435], - [138.664734, 35.117435], - [138.661667, 35.117069], - [138.657196, 35.120895], - [138.649719, 35.116215], - [138.643127, 35.116737], - [138.642334, 35.115078], - [138.622818, 35.116219], - [138.617935, 35.113998], - [138.609573, 35.114338], - [138.581451, 35.105583], - [138.574997, 35.101089], - [138.567322, 35.098286], - [138.56366, 35.093746], - [138.552597, 35.06406], - [138.548172, 35.058697], - [138.532852, 35.050034], - [138.530197, 35.048527], - [138.514862, 35.043743], - [138.509354, 35.035057], - [138.503937, 35.030544], - [138.502029, 35.024517], - [138.504547, 35.012371], - [138.502045, 35], - [138.501434, 34.996971], - [138.505081, 34.989819], - [138.511307, 34.984924], - [138.514618, 34.985504], - [138.517273, 34.99131], - [138.513062, 35], - [138.512177, 35.001823], - [138.512131, 35.011009], - [138.513748, 35.01516], - [138.520996, 35.01088], - [138.525299, 35.010395], - [138.52475, 35.019798], - [138.526337, 35.022907], - [138.529907, 35.024315], - [138.536682, 35.020458], - [138.541016, 35.009953], - [138.542099, 35.001797], - [138.541473, 35], - [138.539658, 34.994736], - [138.526215, 34.982826], - [138.513626, 34.974663], - [138.50647, 34.971844], - [138.484863, 34.956921], - [138.464767, 34.951057], - [138.457581, 34.948959], - [138.429092, 34.942894], - [138.41861, 34.938236], - [138.405746, 34.928185], - [138.40036, 34.924919], - [138.392242, 34.924824], - [138.376434, 34.919403], - [138.367706, 34.913258], - [138.35849, 34.895012], - [138.337326, 34.874416], - [138.333084, 34.851719], - [138.341766, 34.842628], - [138.344391, 34.834454], - [138.344284, 34.828819], - [138.334885, 34.813705], - [138.324341, 34.804867], - [138.316025, 34.793495], - [138.302185, 34.770088], - [138.299576, 34.765736], - [138.30455, 34.761288], - [138.289108, 34.760445], - [138.283005, 34.758434], - [138.263641, 34.749287], - [138.238068, 34.732491], - [138.22847, 34.719044], - [138.222366, 34.702625], - [138.222031, 34.69783], - [138.21814, 34.692657], - [138.216476, 34.683704], - [138.214066, 34.6805], - [138.209488, 34.674397], - [138.204758, 34.664227], - [138.203491, 34.649628], - [138.204529, 34.637093], - [138.219772, 34.614155], - [138.232986, 34.60585], - [138.243546, 34.60363], - [138.243484, 34.600292], - [138.236313, 34.594746], - [138.225754, 34.596336], - [138.216492, 34.600208], - [138.212845, 34.600437], - [138.195831, 34.601505], - [138.183594, 34.60854], - [138.154205, 34.615566], - [138.140472, 34.623661], - [138.118347, 34.628506], - [138.072098, 34.64481], - [138.069427, 34.645756], - [138.052856, 34.651154], - [137.988205, 34.665405], - [137.970032, 34.665382], - [137.952133, 34.667233], - [137.920395, 34.666412], - [137.911224, 34.666176], - [137.901703, 34.671066], - [137.89769, 34.672565], - [137.883163, 34.67247], - [137.87558, 34.674171], - [137.868195, 34.674282], - [137.864136, 34.670971], - [137.864517, 34.668751], - [137.869614, 34.670471], - [137.873062, 34.670933], - [137.880737, 34.669788], - [137.885544, 34.669449], - [137.894272, 34.67012], - [137.897446, 34.668839], - [137.900635, 34.666695], - [137.889725, 34.662834], - [137.850021, 34.65694], - [137.821625, 34.646759], - [137.818634, 34.649708], - [137.81459, 34.649326], - [137.808319, 34.652096], - [137.81102, 34.646854], - [137.801697, 34.647144], - [137.795624, 34.645737], - [137.794891, 34.648872], - [137.799301, 34.65802], - [137.799438, 34.668247], - [137.79187, 34.668938], - [137.792526, 34.661209], - [137.789932, 34.655178], - [137.782242, 34.646061], - [137.77269, 34.648857], - [137.759903, 34.655434], - [137.760254, 34.663155], - [137.754013, 34.668842], - [137.753204, 34.665508], - [137.756943, 34.661514], - [137.752106, 34.658005], - [137.731461, 34.661724], - [137.71637, 34.666229], - [137.708023, 34.66716], - [137.611984, 34.677872], - [137.609222, 34.679562], - [137.613312, 34.683708], - [137.611816, 34.685596], - [137.597977, 34.69091], - [137.591919, 34.690952], - [137.590134, 34.688461], - [137.600662, 34.681084], - [137.601639, 34.67878], - [137.600159, 34.678364], - [137.595825, 34.677151], - [137.578934, 34.679146], - [137.523605, 34.674919], - [137.492813, 34.674904], - [137.488266, 34.674278], - [137.48909, 34.682014], - [137.493576, 34.691547], - [137.492966, 34.701954], - [137.49118, 34.711967], - [137.485107, 34.720943], - [137.481796, 34.731098], - [137.478149, 34.750008], - [137.480164, 34.76165], - [137.480103, 34.771862], - [137.496246, 34.78318], - [137.495636, 34.793358], - [137.492523, 34.803692], - [137.496933, 34.813789], - [137.501892, 34.823559], - [137.50972, 34.831318], - [137.52211, 34.83334], - [137.531433, 34.838531], - [137.543396, 34.838917], - [137.552124, 34.845188], - [137.568344, 34.84882], - [137.589859, 34.846622], - [137.596664, 34.854073], - [137.599487, 34.865364], - [137.608688, 34.871052], - [137.624451, 34.876392], - [137.633591, 34.881252], - [137.641632, 34.887573], - [137.643417, 34.897957], - [137.651932, 34.916664], - [137.655685, 34.926929], - [137.659622, 34.936871], - [137.667572, 34.943672], - [137.678467, 34.942131], - [137.685059, 34.950031], - [137.693268, 34.956684], - [137.706589, 34.968155], - [137.708267, 34.98819], - [137.70401, 34.999996], - [137.707977, 35.012463], - [137.714645, 35.020611], - [137.726044, 35.035496], - [137.734711, 35.042229], - [137.741119, 35.050785], - [137.749985, 35.057125], - [137.75943, 35.062187], - [137.768417, 35.069401], - [137.77684, 35.083321], - [137.782242, 35.095787], - [137.797897, 35.099472], - [137.805893, 35.105701], - [137.801773, 35.125458], - [137.818817, 35.135796], - [137.817093, 35.146297], - [137.831024, 35.149342], - [137.827637, 35.159199], - [137.817108, 35.161972], - [137.804916, 35.17028], - [137.805801, 35.181103], - [137.82283, 35.193333], - [137.820786, 35.211281], - [137.840149, 35.212685], - [137.85112, 35.218231], - [137.863235, 35.219578], - [137.874985, 35.215527], - [137.883301, 35.222965], - [137.887863, 35.232925], - [137.885941, 35.243546], - [137.898331, 35.254562], - [137.914108, 35.250542], - [137.924347, 35.254749], - [137.929184, 35.264122], - [137.934677, 35.272663], - [137.945114, 35.272652], - [137.953537, 35.278568], - [137.965408, 35.280739], - [137.974319, 35.286083], - [137.984695, 35.289181], - [137.999969, 35.299278], - [138.011765, 35.300552], - [138.021805, 35.297924], - [138.029541, 35.306446], - [138.0289, 35.316658], - [138.039047, 35.322144], - [138.045044, 35.331604], - [138.055176, 35.333366], - [138.06134, 35.341564], - [138.071442, 35.343746], - [138.081787, 35.340458], - [138.090515, 35.334713], - [138.099045, 35.339977], - [138.099686, 35.350819], - [138.108963, 35.354893], - [138.124969, 35.364067], - [138.13559, 35.362873], - [138.14502, 35.36771], - [138.148315, 35.378323], - [138.153961, 35.386665], - [138.151962, 35.397697], - [138.141525, 35.403137], - [138.141769, 35.416691], - [138.124969, 35.425323], - [138.124969, 35.439335], - [138.124969, 35.453144], - [138.135223, 35.4505], - [138.144852, 35.456013], - [138.155975, 35.455811], - [138.162781, 35.464027], - [138.15947, 35.473759], - [138.163223, 35.485241], - [138.156677, 35.492859], - [138.142944, 35.499615], - [138.14917, 35.510017], - [138.141388, 35.518227], - [138.1483, 35.525455], - [138.155212, 35.533829], - [138.162277, 35.541637], - [138.15657, 35.550343], - [138.145401, 35.552265], - [138.154846, 35.567616], - [138.163605, 35.57444], - [138.173996, 35.579247], - [138.181152, 35.571854], - [138.191986, 35.573425], - [138.195984, 35.583126], - [138.200287, 35.593449], - [138.206741, 35.602406], - [138.207138, 35.612499], - [138.205902, 35.622841], - [138.212677, 35.630939], - [138.221619, 35.641262], - [138.233536, 35.632023], - [138.232086, 35.621944], - [138.238022, 35.613087], - [138.239609, 35.602745], - [138.245514, 35.59304], - [138.242477, 35.583256] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "愛知県", - "name": "Aichi", - "ISOCODE": "JP-23", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:19:19+0100", - "cartodb_id": 65 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [136.978363, 35.418972], - [136.991913, 35.421761], - [136.985077, 35.40649], - [136.990982, 35.398148], - [136.997665, 35.390003], - [137.011749, 35.378174], - [137.021332, 35.373268], - [137.031982, 35.369324], - [137.040848, 35.364552], - [137.050873, 35.362202], - [137.048721, 35.345558], - [137.049408, 35.335274], - [137.066345, 35.333328], - [137.074539, 35.326637], - [137.068283, 35.318134], - [137.069809, 35.306648], - [137.079514, 35.303181], - [137.083282, 35.293373], - [137.099609, 35.287056], - [137.103439, 35.296463], - [137.115021, 35.295643], - [137.124985, 35.292759], - [137.142227, 35.283089], - [137.151062, 35.277794], - [137.162781, 35.279354], - [137.172501, 35.274792], - [137.179276, 35.267094], - [137.180923, 35.255821], - [137.189163, 35.249977], - [137.200363, 35.249981], - [137.214447, 35.256493], - [137.232376, 35.256985], - [137.241409, 35.261677], - [137.254333, 35.266747], - [137.26355, 35.27396], - [137.268433, 35.282887], - [137.278976, 35.287464], - [137.290054, 35.285664], - [137.300323, 35.286175], - [137.310852, 35.287975], - [137.319504, 35.282814], - [137.329025, 35.276768], - [137.338882, 35.271301], - [137.348984, 35.26833], - [137.34523, 35.258354], - [137.363922, 35.257362], - [137.374985, 35.259888], - [137.387756, 35.256367], - [137.386871, 35.243252], - [137.3983, 35.23777], - [137.408157, 35.235146], - [137.424255, 35.231365], - [137.436905, 35.222641], - [137.446426, 35.231686], - [137.466003, 35.238029], - [137.4758, 35.244576], - [137.488998, 35.254242], - [137.499985, 35.260845], - [137.511246, 35.263111], - [137.519379, 35.270958], - [137.524277, 35.281025], - [137.535706, 35.278946], - [137.546326, 35.277695], - [137.565094, 35.284355], - [137.560425, 35.267647], - [137.556351, 35.257988], - [137.549057, 35.249969], - [137.554947, 35.238289], - [137.56485, 35.232548], - [137.571533, 35.224834], - [137.581421, 35.216282], - [137.58078, 35.205811], - [137.58107, 35.194847], - [137.593155, 35.19598], - [137.602722, 35.199905], - [137.6203, 35.2062], - [137.631958, 35.208229], - [137.644821, 35.205761], - [137.656036, 35.214142], - [137.666656, 35.22448], - [137.677765, 35.227539], - [137.68808, 35.228874], - [137.700577, 35.229099], - [137.710632, 35.228966], - [137.724823, 35.227486], - [137.729828, 35.218189], - [137.741302, 35.218788], - [137.752792, 35.216587], - [137.767044, 35.216496], - [137.769623, 35.206028], - [137.778122, 35.200233], - [137.788895, 35.202343], - [137.801132, 35.201855], - [137.810226, 35.206665], - [137.820786, 35.211281], - [137.82283, 35.193333], - [137.805801, 35.181103], - [137.804916, 35.17028], - [137.817108, 35.161972], - [137.827637, 35.159199], - [137.831024, 35.149342], - [137.817093, 35.146297], - [137.818817, 35.135796], - [137.801773, 35.125458], - [137.805893, 35.105701], - [137.797897, 35.099472], - [137.782242, 35.095787], - [137.77684, 35.083321], - [137.768417, 35.069401], - [137.75943, 35.062187], - [137.749985, 35.057125], - [137.741119, 35.050785], - [137.734711, 35.042229], - [137.726044, 35.035496], - [137.714645, 35.020611], - [137.707977, 35.012463], - [137.70401, 34.999996], - [137.708267, 34.98819], - [137.706589, 34.968155], - [137.693268, 34.956684], - [137.685059, 34.950031], - [137.678467, 34.942131], - [137.667572, 34.943672], - [137.659622, 34.936871], - [137.655685, 34.926929], - [137.651932, 34.916664], - [137.643417, 34.897957], - [137.641632, 34.887573], - [137.633591, 34.881252], - [137.624451, 34.876392], - [137.608688, 34.871052], - [137.599487, 34.865364], - [137.596664, 34.854073], - [137.589859, 34.846622], - [137.568344, 34.84882], - [137.552124, 34.845188], - [137.543396, 34.838917], - [137.531433, 34.838531], - [137.52211, 34.83334], - [137.50972, 34.831318], - [137.501892, 34.823559], - [137.496933, 34.813789], - [137.492523, 34.803692], - [137.495636, 34.793358], - [137.496246, 34.78318], - [137.480103, 34.771862], - [137.480164, 34.76165], - [137.478149, 34.750008], - [137.481796, 34.731098], - [137.485107, 34.720943], - [137.49118, 34.711967], - [137.492966, 34.701954], - [137.493576, 34.691547], - [137.48909, 34.682014], - [137.488266, 34.674278], - [137.463745, 34.670902], - [137.449219, 34.667049], - [137.445267, 34.666], - [137.351746, 34.647087], - [137.318375, 34.637646], - [137.30191, 34.6343], - [137.278198, 34.629478], - [137.24559, 34.617508], - [137.205933, 34.608059], - [137.194061, 34.602676], - [137.170563, 34.595871], - [137.158981, 34.591358], - [137.149841, 34.587799], - [137.127899, 34.585361], - [137.093872, 34.589008], - [137.046432, 34.577648], - [137.035095, 34.579762], - [137.027771, 34.577694], - [137.019196, 34.578335], - [137.020721, 34.581463], - [137.024048, 34.584038], - [137.029068, 34.587917], - [137.064087, 34.650032], - [137.072693, 34.65815], - [137.078262, 34.662102], - [137.082047, 34.662926], - [137.095413, 34.657047], - [137.118103, 34.65239], - [137.110275, 34.650742], - [137.091095, 34.65184], - [137.089813, 34.648712], - [137.09259, 34.646828], - [137.111755, 34.645519], - [137.113022, 34.643429], - [137.106918, 34.633846], - [137.10817, 34.631966], - [137.117279, 34.636738], - [137.125351, 34.636505], - [137.131668, 34.638157], - [137.138992, 34.642307], - [137.140778, 34.64439], - [137.14003, 34.646896], - [137.134995, 34.650879], - [137.135269, 34.654427], - [137.127441, 34.653824], - [137.132507, 34.657982], - [137.159012, 34.657272], - [137.167847, 34.659328], - [137.179733, 34.663044], - [137.193146, 34.670513], - [137.206024, 34.672344], - [137.215149, 34.679405], - [137.230804, 34.680389], - [137.232086, 34.682888], - [137.23941, 34.684532], - [137.241882, 34.686966], - [137.248047, 34.693054], - [137.257401, 34.693016], - [137.274628, 34.704006], - [137.276917, 34.707127], - [137.275223, 34.719032], - [137.276764, 34.722363], - [137.289185, 34.728989], - [137.299545, 34.729778], - [137.302567, 34.727467], - [137.305634, 34.695518], - [137.302826, 34.691151], - [137.294479, 34.689308], - [137.29007, 34.68594], - [137.28688, 34.683498], - [137.288376, 34.681194], - [137.297974, 34.683239], - [137.303268, 34.681755], - [137.309387, 34.689869], - [137.315918, 34.685661], - [137.31897, 34.688572], - [137.319244, 34.69212], - [137.313477, 34.696529], - [137.3125, 34.702377], - [137.313934, 34.727417], - [137.316208, 34.729076], - [137.328842, 34.72839], - [137.332901, 34.730457], - [137.346039, 34.732273], - [137.359451, 34.726807], - [137.360367, 34.728172], - [137.358261, 34.7318], - [137.352631, 34.735374], - [137.337021, 34.742336], - [137.33049, 34.747795], - [137.328781, 34.757195], - [137.330658, 34.772007], - [137.33345, 34.775124], - [137.338257, 34.775726], - [137.348862, 34.774006], - [137.351166, 34.777752], - [137.352707, 34.780247], - [137.350449, 34.78318], - [137.336288, 34.782207], - [137.334793, 34.78413], - [137.332535, 34.787025], - [137.324646, 34.78059], - [137.321106, 34.779774], - [137.318588, 34.781246], - [137.315582, 34.785225], - [137.315613, 34.789192], - [137.320465, 34.796474], - [137.319962, 34.798771], - [137.309647, 34.805916], - [137.292999, 34.811211], - [137.285156, 34.811245], - [137.276306, 34.809822], - [137.266663, 34.804436], - [137.263367, 34.804031], - [137.257309, 34.806351], - [137.258865, 34.81073], - [137.257858, 34.813236], - [137.247025, 34.818501], - [137.24118, 34.813725], - [137.237885, 34.814152], - [137.237411, 34.818104], - [137.237167, 34.82021], - [137.235413, 34.821884], - [137.224792, 34.823807], - [137.223267, 34.821934], - [137.226791, 34.818161], - [137.226517, 34.815243], - [137.222961, 34.812752], - [137.216904, 34.813816], - [137.214874, 34.812572], - [137.21611, 34.808601], - [137.212296, 34.803814], - [137.197891, 34.805954], - [137.196518, 34.784042], - [137.184814, 34.769684], - [137.177719, 34.765533], - [137.170639, 34.764515], - [137.166351, 34.767033], - [137.168137, 34.771202], - [137.176086, 34.777119], - [137.176514, 34.777435], - [137.177536, 34.779938], - [137.173782, 34.787254], - [137.168472, 34.787064], - [137.159851, 34.782501], - [137.154541, 34.782726], - [137.149261, 34.786919], - [137.138901, 34.787579], - [137.133316, 34.783421], - [137.129272, 34.783642], - [137.121719, 34.788883], - [137.115646, 34.789734], - [137.11058, 34.785576], - [137.091583, 34.776653], - [137.086533, 34.77771], - [137.074692, 34.785881], - [137.070129, 34.785477], - [137.061523, 34.780697], - [137.052917, 34.779675], - [137.030457, 34.786194], - [137.028442, 34.789124], - [137.031479, 34.793705], - [137.029984, 34.796841], - [137.023407, 34.799988], - [137.021912, 34.803955], - [137.016098, 34.803757], - [137.00853, 34.811497], - [137.005508, 34.817974], - [137.009598, 34.832783], - [137.008347, 34.836128], - [137.004807, 34.836552], - [136.997711, 34.83239], - [136.992401, 34.831566], - [136.988617, 34.837418], - [136.982559, 34.839722], - [136.977753, 34.839314], - [136.976501, 34.843491], - [136.97905, 34.852463], - [136.974533, 34.868752], - [136.974808, 34.878349], - [136.976089, 34.882317], - [136.984451, 34.884598], - [136.985977, 34.886471], - [136.981934, 34.891071], - [136.989822, 34.907127], - [136.989075, 34.912556], - [136.979462, 34.912991], - [136.969543, 34.894432], - [136.971802, 34.888584], - [136.96875, 34.88525], - [136.963943, 34.885048], - [136.952057, 34.888615], - [136.946991, 34.888416], - [136.944214, 34.885704], - [136.953308, 34.879013], - [136.955566, 34.874416], - [136.951767, 34.869621], - [136.947968, 34.868584], - [136.938095, 34.869225], - [136.935318, 34.866932], - [136.93428, 34.858585], - [136.939301, 34.834785], - [136.929626, 34.805367], - [136.925339, 34.79657], - [136.919479, 34.784508], - [136.918457, 34.777412], - [136.920471, 34.772194], - [136.933838, 34.75798], - [136.96965, 34.728287], - [136.972397, 34.715343], - [136.968826, 34.706581], - [136.964279, 34.703876], - [136.94989, 34.70557], - [136.949142, 34.707031], - [136.947739, 34.704124], - [136.952637, 34.701378], - [136.967819, 34.69936], - [136.971909, 34.693851], - [136.970062, 34.691345], - [136.968552, 34.694477], - [136.962997, 34.694279], - [136.961487, 34.696785], - [136.946579, 34.693676], - [136.943817, 34.698692], - [136.931946, 34.699959], - [136.930695, 34.703091], - [136.920853, 34.703106], - [136.919327, 34.704151], - [136.921356, 34.70874], - [136.919601, 34.712082], - [136.912033, 34.715221], - [136.903702, 34.721283], - [136.885269, 34.727566], - [136.883255, 34.731533], - [136.859268, 34.744701], - [136.85556, 34.748631], - [136.849182, 34.755356], - [136.843887, 34.770596], - [136.846161, 34.774975], - [136.85527, 34.781021], - [136.85704, 34.78582], - [136.856049, 34.794796], - [136.866959, 34.83382], - [136.866714, 34.839455], - [136.863678, 34.848644], - [136.85257, 34.864216], - [136.852066, 34.864933], - [136.851318, 34.876831], - [136.829819, 34.90815], - [136.831619, 34.93737], - [136.834671, 34.965549], - [136.84407, 34.980782], - [136.862549, 35], - [136.866135, 35.003727], - [136.860855, 35.005871], - [136.857208, 35.008034], - [136.855865, 35.010483], - [136.86412, 35.015965], - [136.868698, 35.027699], - [136.875916, 35.038628], - [136.893463, 35.042511], - [136.899765, 35.04335], - [136.903412, 35.043911], - [136.903717, 35.046635], - [136.892105, 35.050133], - [136.891083, 35.054214], - [136.892731, 35.057766], - [136.903961, 35.065163], - [136.90358, 35.072792], - [136.899597, 35.073322], - [136.891006, 35.067841], - [136.888702, 35.064289], - [136.885788, 35.053379], - [136.881149, 35.051727], - [136.878494, 35.051987], - [136.877106, 35.064243], - [136.875778, 35.065327], - [136.875107, 35.066143], - [136.883011, 35.07571], - [136.892609, 35.077656], - [136.903839, 35.088596], - [136.901123, 35.098938], - [136.89946, 35.101387], - [136.889572, 35.089905], - [136.878601, 35.092312], - [136.875656, 35.085491], - [136.878006, 35.08223], - [136.873398, 35.074581], - [136.867477, 35.066658], - [136.856873, 35.066341], - [136.851471, 35.080761], - [136.848419, 35.091644], - [136.845581, 35.102482], - [136.842148, 35.104557], - [136.840363, 35.098297], - [136.84314, 35.084518], - [136.840088, 35.082016], - [136.842621, 35.079929], - [136.841858, 35.072414], - [136.84259, 35.067917], - [136.838989, 35.061909], - [136.835678, 35.060257], - [136.826065, 35.061306], - [136.81546, 35.058807], - [136.80719, 35.057137], - [136.806244, 35.049229], - [136.80162, 35.045395], - [136.796005, 35.044006], - [136.783417, 35.041767], - [136.783783, 35.037682], - [136.801682, 35.036945], - [136.808105, 35.037361], - [136.806076, 35.032982], - [136.799728, 35.027763], - [136.795425, 35.027138], - [136.78833, 35.028809], - [136.782745, 35.03194], - [136.769562, 35.051979], - [136.765503, 35.052605], - [136.769058, 35.043629], - [136.766525, 35.042377], - [136.761948, 35.04718], - [136.758667, 35.042168], - [136.755112, 35.04488], - [136.746475, 35.058865], - [136.736832, 35.070343], - [136.731766, 35.067211], - [136.740402, 35.054897], - [136.746994, 35.039246], - [136.744202, 35.031521], - [136.739136, 35.030685], - [136.732544, 35.033604], - [136.727463, 35.040283], - [136.7229, 35.053432], - [136.720108, 35.057186], - [136.716553, 35.06303], - [136.712677, 35.060555], - [136.705109, 35.071213], - [136.696213, 35.083553], - [136.687424, 35.094845], - [136.677383, 35.114925], - [136.674286, 35.127285], - [136.670883, 35.145515], - [136.676285, 35.170086], - [136.67923, 35.180702], - [136.682144, 35.212574], - [136.682144, 35.236752], - [136.694183, 35.250553], - [136.70256, 35.262058], - [136.707855, 35.272942], - [136.71553, 35.282143], - [136.728455, 35.29221], - [136.733871, 35.301498], - [136.73851, 35.311207], - [136.749405, 35.333424], - [136.758514, 35.345478], - [136.767685, 35.360535], - [136.777527, 35.366432], - [136.795242, 35.365051], - [136.810684, 35.357136], - [136.821243, 35.355854], - [136.832321, 35.354103], - [136.847122, 35.357716], - [136.858887, 35.362583], - [136.874985, 35.369854], - [136.895691, 35.37484], - [136.916733, 35.374901], - [136.928406, 35.378593], - [136.938156, 35.387154], - [136.948486, 35.390656], - [136.958176, 35.393394], - [136.964096, 35.412071], - [136.978363, 35.418972] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "三重県", - "name": "Mie", - "ISOCODE": "JP-24", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:18:57+0100", - "cartodb_id": 66 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [136.518188, 35.249973], - [136.530304, 35.254326], - [136.539566, 35.246452], - [136.544067, 35.235161], - [136.551971, 35.227718], - [136.550705, 35.217033], - [136.560623, 35.214596], - [136.563004, 35.203514], - [136.573395, 35.199532], - [136.582581, 35.193367], - [136.588608, 35.185253], - [136.597076, 35.177757], - [136.608429, 35.166168], - [136.616333, 35.150566], - [136.625046, 35.144585], - [136.638229, 35.144657], - [136.648605, 35.148571], - [136.64917, 35.162621], - [136.659424, 35.155838], - [136.670883, 35.145515], - [136.674286, 35.127285], - [136.677383, 35.114925], - [136.687424, 35.094845], - [136.696213, 35.083553], - [136.705109, 35.071213], - [136.712677, 35.060555], - [136.709702, 35.058643], - [136.713257, 35.052799], - [136.712509, 35.047165], - [136.711746, 35.044033], - [136.714279, 35.038815], - [136.713272, 35.037354], - [136.716568, 35.033806], - [136.720383, 35.021286], - [136.71962, 35.019615], - [136.715561, 35.020241], - [136.706436, 35.028584], - [136.70314, 35.025452], - [136.701111, 35.018772], - [136.688965, 35.010624], - [136.683136, 35.008324], - [136.680084, 35.008736], - [136.676285, 35.004978], - [136.674438, 35], - [136.674286, 34.991825], - [136.669968, 34.988483], - [136.658066, 34.987846], - [136.65477, 34.985756], - [136.661118, 34.980335], - [136.660706, 34.976513], - [136.651993, 34.982204], - [136.635773, 34.983021], - [136.632477, 34.981976], - [136.631226, 34.982761], - [136.627838, 34.977985], - [136.627609, 34.966541], - [136.633606, 34.96249], - [136.632996, 34.956764], - [136.634354, 34.952686], - [136.639633, 34.950462], - [136.642929, 34.949005], - [136.647247, 34.942959], - [136.654327, 34.948601], - [136.658371, 34.946934], - [136.663437, 34.954453], - [136.668243, 34.956127], - [136.669266, 34.954041], - [136.663193, 34.944225], - [136.658661, 34.930862], - [136.660446, 34.919804], - [136.658936, 34.914791], - [136.651093, 34.907063], - [136.642761, 34.898705], - [136.641006, 34.886803], - [136.628387, 34.863411], - [136.623596, 34.860065], - [136.619049, 34.851501], - [136.596588, 34.827885], - [136.582474, 34.810329], - [136.577667, 34.806774], - [136.570114, 34.798622], - [136.565048, 34.797779], - [136.565826, 34.794231], - [136.547928, 34.772076], - [136.537125, 34.752018], - [136.534378, 34.742619], - [136.536179, 34.733231], - [136.530655, 34.717564], - [136.528061, 34.709736], - [136.524902, 34.70023], - [136.528992, 34.686462], - [136.532791, 34.682713], - [136.541122, 34.6796], - [136.54718, 34.680027], - [136.556519, 34.684219], - [136.562576, 34.681725], - [136.56813, 34.683823], - [136.569901, 34.68132], - [136.569412, 34.677147], - [136.566391, 34.674217], - [136.55983, 34.67379], - [136.555786, 34.67107], - [136.553024, 34.666054], - [136.556641, 34.63559], - [136.552597, 34.638504], - [136.547806, 34.638702], - [136.553635, 34.630993], - [136.548859, 34.624096], - [136.545578, 34.625134], - [136.543823, 34.618866], - [136.531494, 34.611954], - [136.536789, 34.609463], - [136.549408, 34.609695], - [136.55571, 34.608456], - [136.559235, 34.611591], - [136.564529, 34.609512], - [136.563568, 34.595528], - [136.565842, 34.595116], - [136.569855, 34.598461], - [136.572617, 34.607441], - [136.578156, 34.611832], - [136.582962, 34.605995], - [136.597336, 34.601845], - [136.625336, 34.598541], - [136.633423, 34.594585], - [136.641998, 34.594181], - [136.650833, 34.590641], - [136.656387, 34.583759], - [136.667511, 34.563316], - [136.675827, 34.556225], - [136.693481, 34.550602], - [136.708603, 34.548317], - [136.713898, 34.545399], - [136.708618, 34.541012], - [136.706604, 34.536209], - [136.708374, 34.532665], - [136.712906, 34.530579], - [136.717438, 34.532043], - [136.726028, 34.543232], - [136.729279, 34.543316], - [136.730042, 34.541229], - [136.728027, 34.536636], - [136.724747, 34.531837], - [136.71492, 34.525364], - [136.713928, 34.519936], - [136.715942, 34.51931], - [136.730042, 34.525787], - [136.740112, 34.533092], - [136.743896, 34.532261], - [136.75473, 34.52433], - [136.742264, 34.514275], - [136.740768, 34.514267], - [136.736938, 34.516453], - [136.730438, 34.518314], - [136.725876, 34.517029], - [136.724731, 34.516075], - [136.735428, 34.514553], - [136.740768, 34.512688], - [136.740021, 34.510475], - [136.74118, 34.50985], - [136.743073, 34.510178], - [136.74556, 34.512508], - [136.746933, 34.513268], - [136.750961, 34.511181], - [136.752975, 34.511806], - [136.755997, 34.508053], - [136.758514, 34.507843], - [136.760529, 34.509514], - [136.759781, 34.51181], - [136.75473, 34.51786], - [136.758514, 34.522869], - [136.762039, 34.521618], - [136.771118, 34.514107], - [136.777161, 34.512646], - [136.786987, 34.51181], - [136.798828, 34.508675], - [136.812927, 34.510132], - [136.818726, 34.502617], - [136.822739, 34.491138], - [136.825256, 34.488213], - [136.827774, 34.488003], - [136.833328, 34.491131], - [136.829056, 34.502403], - [136.829559, 34.505951], - [136.832581, 34.507202], - [136.835846, 34.506992], - [136.83963, 34.504276], - [136.840012, 34.502579], - [136.842392, 34.491962], - [136.847687, 34.49321], - [136.85321, 34.488823], - [136.857758, 34.488613], - [136.866562, 34.491528], - [136.87085, 34.490063], - [136.869843, 34.48735], - [136.866562, 34.485264], - [136.85498, 34.48465], - [136.853973, 34.483604], - [136.851196, 34.476093], - [136.851685, 34.469414], - [136.854462, 34.467953], - [136.856476, 34.470039], - [136.855972, 34.474422], - [136.860504, 34.479427], - [136.869583, 34.479836], - [136.879898, 34.475235], - [136.881149, 34.473358], - [136.877365, 34.46397], - [136.871826, 34.461678], - [136.875839, 34.458126], - [136.873978, 34.457043], - [136.873322, 34.456669], - [136.875336, 34.454788], - [136.88063, 34.456661], - [136.883392, 34.451649], - [136.886414, 34.451439], - [136.890686, 34.447678], - [136.883881, 34.439335], - [136.884872, 34.434742], - [136.880402, 34.425949], - [136.893433, 34.43536], - [136.88765, 34.438705], - [136.895203, 34.444122], - [136.90152, 34.452881], - [136.916626, 34.454536], - [136.921646, 34.448269], - [136.927185, 34.446175], - [136.927933, 34.443249], - [136.924911, 34.44054], - [136.927155, 34.434277], - [136.927155, 34.430607], - [136.927124, 34.420502], - [136.933655, 34.413815], - [136.924347, 34.410698], - [136.922821, 34.404022], - [136.913498, 34.395267], - [136.916504, 34.388168], - [136.913727, 34.384205], - [136.917252, 34.380863], - [136.915482, 34.375229], - [136.910446, 34.375237], - [136.907944, 34.380039], - [136.903915, 34.379417], - [136.901917, 34.386307], - [136.899902, 34.387768], - [136.892349, 34.384022], - [136.890335, 34.385067], - [136.892105, 34.390701], - [136.885818, 34.389244], - [136.885559, 34.382774], - [136.878769, 34.38633], - [136.879333, 34.383858], - [136.881271, 34.375267], - [136.879517, 34.372345], - [136.870956, 34.367764], - [136.862152, 34.365685], - [136.854355, 34.372158], - [136.849579, 34.371536], - [136.839523, 34.362778], - [136.83197, 34.365074], - [136.830215, 34.363823], - [136.826431, 34.358608], - [136.830215, 34.355476], - [136.837601, 34.356682], - [136.845551, 34.357971], - [136.848572, 34.365482], - [136.851089, 34.367779], - [136.855118, 34.367359], - [136.858124, 34.364223], - [136.859375, 34.356918], - [136.868439, 34.362965], - [136.874207, 34.355865], - [136.873459, 34.353779], - [136.868668, 34.352528], - [136.874191, 34.343552], - [136.876968, 34.345634], - [136.881241, 34.353977], - [136.887543, 34.358772], - [136.891815, 34.357517], - [136.894577, 34.35981], - [136.894089, 34.362942], - [136.895844, 34.364609], - [136.903137, 34.362095], - [136.911438, 34.365635], - [136.912949, 34.364796], - [136.911942, 34.361668], - [136.904358, 34.356167], - [136.885254, 34.342289], - [136.883728, 34.334984], - [136.884232, 34.328308], - [136.88649, 34.323505], - [136.895264, 34.315983], - [136.897018, 34.312225], - [136.89325, 34.304089], - [136.895508, 34.301582], - [136.889709, 34.298458], - [136.891464, 34.295742], - [136.900253, 34.291142], - [136.900757, 34.285717], - [136.907013, 34.276943], - [136.904755, 34.274651], - [136.899231, 34.27549], - [136.894455, 34.273617], - [136.880142, 34.273006], - [136.877625, 34.271549], - [136.880875, 34.265076], - [136.877609, 34.261532], - [136.870575, 34.259869], - [136.858521, 34.260502], - [136.855499, 34.258629], - [136.854248, 34.249027], - [136.851471, 34.244648], - [136.841934, 34.250916], - [136.828125, 34.249252], - [136.819839, 34.249882], - [136.807037, 34.252392], - [136.787201, 34.259281], - [136.774399, 34.25824], - [136.768112, 34.260326], - [136.764252, 34.266521], - [136.757065, 34.269508], - [136.756058, 34.271805], - [136.764603, 34.27264], - [136.770874, 34.277439], - [136.793228, 34.276604], - [136.800507, 34.27055], - [136.801514, 34.275764], - [136.816589, 34.270962], - [136.819855, 34.264492], - [136.823868, 34.266159], - [136.825623, 34.271168], - [136.83316, 34.269703], - [136.833405, 34.260727], - [136.835922, 34.261353], - [136.836426, 34.263855], - [136.839188, 34.263439], - [136.841202, 34.260933], - [136.846466, 34.265518], - [136.856247, 34.269863], - [136.86055, 34.27177], - [136.863052, 34.274273], - [136.861801, 34.27845], - [136.851761, 34.275116], - [136.848999, 34.279083], - [136.847733, 34.27491], - [136.839691, 34.270741], - [136.835678, 34.278255], - [136.829651, 34.284103], - [136.839706, 34.286392], - [136.837448, 34.288689], - [136.824127, 34.289742], - [136.817093, 34.287029], - [136.812836, 34.288494], - [136.8181, 34.293499], - [136.821869, 34.293915], - [136.848007, 34.289936], - [136.856796, 34.286591], - [136.867096, 34.284687], - [136.869446, 34.286865], - [136.870209, 34.289906], - [136.865509, 34.288582], - [136.86055, 34.287479], - [136.858551, 34.290138], - [136.854782, 34.290138], - [136.852524, 34.294525], - [136.84726, 34.297657], - [136.840973, 34.2962], - [136.837448, 34.297455], - [136.833939, 34.301422], - [136.8367, 34.303715], - [136.840225, 34.303715], - [136.843994, 34.301418], - [136.846008, 34.305382], - [136.85228, 34.304123], - [136.855804, 34.305374], - [136.855301, 34.307461], - [136.848267, 34.30809], - [136.849533, 34.312683], - [136.843491, 34.311436], - [136.838715, 34.308098], - [136.832443, 34.309563], - [136.825394, 34.305393], - [136.820129, 34.305813], - [136.817856, 34.307484], - [136.82515, 34.311443], - [136.822891, 34.312904], - [136.812592, 34.30978], - [136.806381, 34.318302], - [136.806061, 34.318756], - [136.799011, 34.308949], - [136.799774, 34.307697], - [136.805298, 34.307068], - [136.810577, 34.302475], - [136.824387, 34.299759], - [136.814346, 34.298717], - [136.805801, 34.294754], - [136.801773, 34.289955], - [136.793732, 34.289543], - [136.782425, 34.29163], - [136.783432, 34.296429], - [136.777664, 34.295177], - [136.776398, 34.299351], - [136.777161, 34.302067], - [136.782181, 34.304359], - [136.774643, 34.307907], - [136.767105, 34.314377], - [136.764587, 34.313541], - [136.767609, 34.306866], - [136.766357, 34.302898], - [136.763336, 34.300396], - [136.759064, 34.301437], - [136.757812, 34.299351], - [136.759323, 34.297474], - [136.768112, 34.295387], - [136.766861, 34.29351], - [136.749771, 34.294968], - [136.739716, 34.300392], - [136.729416, 34.302891], - [136.719116, 34.301846], - [136.719376, 34.295792], - [136.717606, 34.293079], - [136.711578, 34.293701], - [136.708572, 34.289944], - [136.705811, 34.291821], - [136.700531, 34.287853], - [136.696259, 34.287849], - [136.692245, 34.282421], - [136.690231, 34.283672], - [136.689224, 34.287426], - [136.693237, 34.295986], - [136.692474, 34.301411], - [136.693985, 34.305798], - [136.698746, 34.309555], - [136.697235, 34.314354], - [136.698746, 34.317486], - [136.707031, 34.321667], - [136.715103, 34.319366], - [136.711563, 34.325634], - [136.713058, 34.327721], - [136.732162, 34.336285], - [136.733917, 34.339417], - [136.732407, 34.341919], - [136.723358, 34.339203], - [136.718323, 34.345043], - [136.717834, 34.338783], - [136.715576, 34.336487], - [136.705246, 34.350674], - [136.699982, 34.33606], - [136.695312, 34.329548], - [136.690704, 34.323116], - [136.688187, 34.325619], - [136.687424, 34.329582], - [136.688934, 34.332714], - [136.685654, 34.335842], - [136.691437, 34.341064], - [136.692429, 34.343151], - [136.690933, 34.344193], - [136.683136, 34.33876], - [136.678864, 34.339386], - [136.671066, 34.344177], - [136.661514, 34.340622], - [136.663528, 34.338329], - [136.670563, 34.340004], - [136.674591, 34.338963], - [136.677109, 34.335419], - [136.672836, 34.331032], - [136.675858, 34.327904], - [136.675873, 34.325191], - [136.673111, 34.323311], - [136.665558, 34.326225], - [136.665817, 34.323723], - [136.661057, 34.316204], - [136.656006, 34.323711], - [136.654251, 34.322041], - [136.654266, 34.318325], - [136.654266, 34.317242], - [136.644226, 34.312431], - [136.641464, 34.309299], - [136.643219, 34.307423], - [136.658798, 34.313698], - [136.664581, 34.310364], - [136.668594, 34.310158], - [136.671356, 34.315796], - [136.683243, 34.313461], - [136.671371, 34.306824], - [136.669617, 34.300976], - [136.659073, 34.292412], - [136.664856, 34.289494], - [136.665619, 34.286781], - [136.659836, 34.286362], - [136.657578, 34.283436], - [136.641754, 34.283627], - [136.640503, 34.28154], - [136.641769, 34.276531], - [136.640381, 34.274937], - [136.638504, 34.272774], - [136.625946, 34.271713], - [136.604126, 34.255409], - [136.59761, 34.254562], - [136.591568, 34.256851], - [136.582733, 34.27562], - [136.577469, 34.274982], - [136.576706, 34.276443], - [136.578201, 34.280411], - [136.577194, 34.285625], - [136.569153, 34.283733], - [136.563385, 34.280594], - [136.56691, 34.274548], - [136.565918, 34.272667], - [136.563904, 34.272663], - [136.555099, 34.281624], - [136.553589, 34.279324], - [136.556107, 34.275093], - [136.56192, 34.265358], - [136.561188, 34.257427], - [136.559174, 34.255962], - [136.555405, 34.257206], - [136.555695, 34.246563], - [136.55394, 34.244892], - [136.549149, 34.252186], - [136.543365, 34.256142], - [136.547836, 34.269714], - [136.546326, 34.275135], - [136.544556, 34.276176], - [136.54155, 34.274712], - [136.540558, 34.269283], - [136.5383, 34.267189], - [136.536789, 34.269691], - [136.529495, 34.272388], - [136.528519, 34.265293], - [136.518448, 34.270699], - [136.520706, 34.27446], - [136.51593, 34.275909], - [136.507889, 34.275055], - [136.512421, 34.271309], - [136.513962, 34.258793], - [136.517517, 34.248158], - [136.526321, 34.241081], - [136.523331, 34.23711], - [136.505219, 34.253685], - [136.510757, 34.242508], - [136.504486, 34.240406], - [136.496201, 34.242683], - [136.493942, 34.239758], - [136.496979, 34.233501], - [136.508011, 34.23624], - [136.513306, 34.23312], - [136.516571, 34.228329], - [136.509293, 34.229149], - [136.497772, 34.220982], - [136.490509, 34.218044], - [136.486481, 34.218868], - [136.487015, 34.223083], - [136.487213, 34.224712], - [136.477676, 34.22636], - [136.467346, 34.234474], - [136.46608, 34.238434], - [136.467819, 34.244701], - [136.466049, 34.245739], - [136.458527, 34.242798], - [136.46257, 34.237171], - [136.459335, 34.227982], - [136.465393, 34.221737], - [136.461639, 34.218597], - [136.437302, 34.217068], - [136.435547, 34.215813], - [136.436066, 34.212685], - [136.422775, 34.21014], - [136.416763, 34.205532], - [136.410004, 34.203423], - [136.404984, 34.203201], - [136.402878, 34.205795], - [136.400436, 34.20882], - [136.405685, 34.21447], - [136.404419, 34.215511], - [136.395142, 34.215481], - [136.394669, 34.20776], - [136.374939, 34.187866], - [136.370438, 34.185558], - [136.367172, 34.186378], - [136.365402, 34.189297], - [136.366638, 34.192223], - [136.364868, 34.194927], - [136.360123, 34.19178], - [136.357101, 34.191563], - [136.355087, 34.193642], - [136.356323, 34.199074], - [136.364578, 34.203068], - [136.357285, 34.205963], - [136.358521, 34.208889], - [136.35701, 34.209927], - [136.350998, 34.208652], - [136.354034, 34.204281], - [136.344513, 34.200699], - [136.344025, 34.198818], - [136.34407, 34.190056], - [136.340088, 34.183155], - [136.34137, 34.178566], - [136.337372, 34.176464], - [136.331818, 34.180408], - [136.328064, 34.180187], - [136.321808, 34.176407], - [136.309296, 34.172604], - [136.305298, 34.169872], - [136.302338, 34.159843], - [136.298843, 34.158161], - [136.294861, 34.152718], - [136.290085, 34.153534], - [136.287842, 34.15102], - [136.29364, 34.146034], - [136.286194, 34.134735], - [136.289993, 34.127449], - [136.297256, 34.128941], - [136.298019, 34.126438], - [136.291306, 34.117229], - [136.292313, 34.115562], - [136.296738, 34.114143], - [136.298096, 34.113708], - [136.306351, 34.117081], - [136.310883, 34.114178], - [136.31839, 34.11525], - [136.320923, 34.112545], - [136.319427, 34.109829], - [136.316422, 34.109608], - [136.30751, 34.090164], - [136.302032, 34.084091], - [136.299255, 34.086166], - [136.297714, 34.092838], - [136.28746, 34.090919], - [136.2845, 34.082977], - [136.277725, 34.082531], - [136.272659, 34.093571], - [136.280884, 34.100491], - [136.279358, 34.102779], - [136.267578, 34.095749], - [136.265625, 34.094582], - [136.268173, 34.089169], - [136.266937, 34.085613], - [136.262421, 34.08622], - [136.254333, 34.096203], - [136.276031, 34.113617], - [136.279022, 34.118011], - [136.276993, 34.121967], - [136.27298, 34.121532], - [136.268494, 34.118176], - [136.259521, 34.10833], - [136.245026, 34.102215], - [136.24202, 34.102615], - [136.241257, 34.104282], - [136.248474, 34.110992], - [136.248718, 34.113083], - [136.240204, 34.110748], - [136.237747, 34.103851], - [136.23732, 34.093204], - [136.244125, 34.08614], - [136.233383, 34.082542], - [136.223892, 34.077282], - [136.210373, 34.074505], - [136.209137, 34.07283], - [136.213196, 34.065128], - [136.217728, 34.062439], - [136.239517, 34.062748], - [136.253571, 34.061142], - [136.257843, 34.058449], - [136.250839, 34.055286], - [136.250107, 34.052361], - [136.253464, 34.03756], - [136.25502, 34.036606], - [136.266281, 34.029686], - [136.275055, 34.028263], - [136.288132, 34.018719], - [136.270157, 34.010506], - [136.262405, 34.009636], - [136.260666, 34.007961], - [136.26268, 34.005466], - [136.275955, 34.005524], - [136.279236, 34.001778], - [136.278244, 33.999687], - [136.272995, 33.998623], - [136.271027, 33.991936], - [136.2668, 33.988373], - [136.277344, 33.98341], - [136.275665, 33.970673], - [136.269089, 33.967194], - [136.264938, 33.964993], - [136.257935, 33.965378], - [136.25441, 33.967659], - [136.243896, 33.96928], - [136.241119, 33.972191], - [136.242584, 33.976997], - [136.255341, 33.979347], - [136.254318, 33.98164], - [136.236267, 33.986359], - [136.22142, 33.99881], - [136.219162, 33.999214], - [136.217178, 33.997536], - [136.222488, 33.98838], - [136.221527, 33.983784], - [136.206345, 33.970985], - [136.202591, 33.970551], - [136.194077, 33.974133], - [136.192307, 33.97488], - [136.170288, 33.97456], - [136.162994, 33.977863], - [136.161804, 33.970345], - [136.158813, 33.968658], - [136.155807, 33.969479], - [136.149704, 33.975437], - [136.147903, 33.975716], - [136.146484, 33.974503], - [136.147598, 33.972115], - [136.152557, 33.968418], - [136.157089, 33.964684], - [136.162109, 33.964085], - [136.177567, 33.971676], - [136.182816, 33.972538], - [136.194595, 33.969883], - [136.204132, 33.964714], - [136.210388, 33.964325], - [136.220108, 33.972092], - [136.225601, 33.972954], - [136.227615, 33.97192], - [136.224396, 33.965229], - [136.229156, 33.965668], - [136.235016, 33.950462], - [136.233536, 33.946072], - [136.227036, 33.946461], - [136.222107, 33.935375], - [136.217636, 33.931183], - [136.213867, 33.932625], - [136.214828, 33.939098], - [136.212311, 33.941589], - [136.208298, 33.942196], - [136.196808, 33.940056], - [136.190338, 33.934181], - [136.192612, 33.932938], - [136.201111, 33.933399], - [136.201141, 33.929085], - [136.201157, 33.925888], - [136.204453, 33.920059], - [136.202469, 33.91692], - [136.192474, 33.916454], - [136.186493, 33.913296], - [136.175507, 33.911362], - [136.174408, 33.923668], - [136.159622, 33.929226], - [136.152863, 33.929607], - [136.149872, 33.927296], - [136.151886, 33.925636], - [136.158401, 33.924419], - [136.15918, 33.920666], - [136.154236, 33.913754], - [136.145782, 33.906616], - [136.156097, 33.898739], - [136.152863, 33.896221], - [136.1418, 33.896355], - [136.140869, 33.896362], - [136.142151, 33.891361], - [136.138443, 33.886753], - [136.135452, 33.885693], - [136.124847, 33.899197], - [136.119415, 33.889359], - [136.113922, 33.888702], - [136.097046, 33.87442], - [136.086411, 33.861835], - [136.063019, 33.821426], - [136.053421, 33.804466], - [136.036026, 33.76701], - [136.029251, 33.74485], - [136.028564, 33.736916], - [136.019867, 33.733315], - [136.010391, 33.732418], - [136.005676, 33.730507], - [136.012711, 33.725964], - [136.020645, 33.730606], - [136.023163, 33.728745], - [136.014587, 33.719658], - [135.991165, 33.731831], - [135.989731, 33.732273], - [135.978943, 33.734005], - [135.958694, 33.725151], - [135.945053, 33.733486], - [135.934586, 33.750969], - [135.920868, 33.76199], - [135.909836, 33.763603], - [135.899429, 33.785553], - [135.887558, 33.798073], - [135.865891, 33.807869], - [135.858978, 33.815845], - [135.861267, 33.827629], - [135.862961, 33.842197], - [135.856781, 33.859547], - [135.855972, 33.874062], - [135.862411, 33.896881], - [135.867462, 33.906033], - [135.872223, 33.916847], - [135.887451, 33.920002], - [135.902374, 33.922096], - [135.899612, 33.931961], - [135.895691, 33.942223], - [135.90271, 33.95034], - [135.91008, 33.95771], - [135.918457, 33.969498], - [135.927383, 33.975864], - [135.937759, 33.976799], - [135.94841, 33.976509], - [135.959503, 33.977619], - [135.969849, 33.982338], - [135.97966, 33.985844], - [135.993408, 33.999958], - [136.006104, 34.006527], - [136.010406, 34.015968], - [136.018326, 34.023403], - [136.021713, 34.033054], - [136.032043, 34.029362], - [136.040359, 34.037899], - [136.049713, 34.03133], - [136.069092, 34.03035], - [136.080017, 34.027271], - [136.090195, 34.024189], - [136.103821, 34.022392], - [136.103897, 34.033718], - [136.098083, 34.043381], - [136.096634, 34.053646], - [136.097946, 34.067009], - [136.096695, 34.078632], - [136.108902, 34.089897], - [136.110535, 34.099995], - [136.107483, 34.110867], - [136.11026, 34.122265], - [136.107422, 34.132526], - [136.109619, 34.143063], - [136.114059, 34.152748], - [136.115128, 34.163857], - [136.108475, 34.171955], - [136.111328, 34.181725], - [136.101349, 34.183369], - [136.096298, 34.192451], - [136.103455, 34.199963], - [136.110733, 34.207054], - [136.121078, 34.211018], - [136.116028, 34.220943], - [136.124985, 34.235462], - [136.133148, 34.249851], - [136.124985, 34.25597], - [136.123657, 34.266338], - [136.116684, 34.27409], - [136.107758, 34.28035], - [136.100235, 34.288471], - [136.097977, 34.298512], - [136.108597, 34.301853], - [136.124191, 34.307072], - [136.131821, 34.313702], - [136.12178, 34.322926], - [136.111679, 34.3265], - [136.104492, 34.339264], - [136.100266, 34.350422], - [136.09462, 34.365562], - [136.088959, 34.376167], - [136.079971, 34.383133], - [136.073151, 34.391617], - [136.079269, 34.401806], - [136.088104, 34.407387], - [136.092957, 34.416676], - [136.098663, 34.431744], - [136.108932, 34.432152], - [136.124985, 34.439857], - [136.135422, 34.440872], - [136.145294, 34.438484], - [136.155869, 34.441437], - [136.166183, 34.445164], - [136.17868, 34.442234], - [136.19017, 34.446007], - [136.209183, 34.445312], - [136.210495, 34.456684], - [136.214447, 34.466846], - [136.218811, 34.47797], - [136.229004, 34.484837], - [136.222244, 34.49345], - [136.221161, 34.506042], - [136.221436, 34.516468], - [136.21431, 34.525131], - [136.201111, 34.521793], - [136.190796, 34.519653], - [136.181122, 34.514107], - [136.173309, 34.525913], - [136.17157, 34.536068], - [136.163498, 34.546124], - [136.157684, 34.556355], - [136.148132, 34.553284], - [136.13649, 34.551773], - [136.116043, 34.544849], - [136.102493, 34.552956], - [136.092773, 34.555477], - [136.083557, 34.559891], - [136.074142, 34.564426], - [136.063309, 34.566242], - [136.056885, 34.574848], - [136.050171, 34.583332], - [136.050644, 34.594078], - [136.055084, 34.604465], - [136.065491, 34.616844], - [136.072311, 34.625492], - [136.07399, 34.635563], - [136.069733, 34.650517], - [136.079285, 34.655907], - [136.088867, 34.672237], - [136.082458, 34.680981], - [136.07843, 34.692539], - [136.067093, 34.705086], - [136.071716, 34.714157], - [136.066132, 34.723156], - [136.048187, 34.737877], - [136.034271, 34.752697], - [136.032761, 34.763153], - [136.036438, 34.772522], - [136.027725, 34.778259], - [136.025345, 34.788342], - [136.035599, 34.790417], - [136.045044, 34.795692], - [136.055969, 34.796776], - [136.065979, 34.797455], - [136.075333, 34.802116], - [136.085068, 34.805046], - [136.093536, 34.811401], - [136.093887, 34.822044], - [136.090179, 34.832863], - [136.101562, 34.836357], - [136.109848, 34.841972], - [136.113464, 34.852268], - [136.129089, 34.859135], - [136.124985, 34.869595], - [136.114868, 34.866608], - [136.103409, 34.867271], - [136.093719, 34.871712], - [136.090088, 34.882263], - [136.100662, 34.88599], - [136.113953, 34.898647], - [136.118713, 34.888996], - [136.130371, 34.882591], - [136.140579, 34.884907], - [136.149841, 34.879673], - [136.160202, 34.88158], - [136.171997, 34.8839], - [136.182144, 34.883327], - [136.188873, 34.874966], - [136.198807, 34.868904], - [136.209518, 34.865391], - [136.221359, 34.862453], - [136.240021, 34.85714], - [136.249985, 34.855625], - [136.261429, 34.857819], - [136.271484, 34.861931], - [136.278824, 34.869076], - [136.296936, 34.868294], - [136.307266, 34.871754], - [136.316162, 34.87785], - [136.323608, 34.886497], - [136.333511, 34.888958], - [136.343658, 34.892452], - [136.359818, 34.897396], - [136.368423, 34.902805], - [136.374298, 34.920567], - [136.374771, 34.931221], - [136.378952, 34.94141], - [136.387283, 34.947792], - [136.399658, 34.954407], - [136.406372, 34.963963], - [136.413071, 34.972385], - [136.418869, 34.987396], - [136.422867, 34.999992], - [136.420959, 35.01487], - [136.42543, 35.024632], - [136.419357, 35.033455], - [136.420868, 35.044777], - [136.427444, 35.053551], - [136.437271, 35.058826], - [136.443817, 35.066673], - [136.439255, 35.075844], - [136.4422, 35.091747], - [136.444733, 35.102116], - [136.442947, 35.113682], - [136.448135, 35.122871], - [136.438705, 35.128021], - [136.445984, 35.135887], - [136.447662, 35.146454], - [136.457733, 35.149197], - [136.457184, 35.159752], - [136.439911, 35.170033], - [136.432739, 35.177967], - [136.422012, 35.179539], - [136.415543, 35.19236], - [136.4189, 35.203392], - [136.417984, 35.214725], - [136.427017, 35.220924], - [136.436981, 35.218765], - [136.446518, 35.215702], - [136.454346, 35.223011], - [136.462372, 35.229904], - [136.47316, 35.230576], - [136.483185, 35.231571], - [136.499985, 35.234772], - [136.513474, 35.236439], - [136.518188, 35.249973] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "大阪府", - "name": "Osaka", - "ISOCODE": "JP-27", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:19:06+0100", - "cartodb_id": 69 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [135.714249, 34.778027], - [135.711792, 34.760727], - [135.712723, 34.749958], - [135.702286, 34.746796], - [135.702698, 34.731331], - [135.706558, 34.721249], - [135.697983, 34.71455], - [135.68956, 34.708252], - [135.680588, 34.702728], - [135.675842, 34.687687], - [135.680847, 34.677269], - [135.676895, 34.667892], - [135.669083, 34.649822], - [135.666992, 34.640003], - [135.663406, 34.62138], - [135.661652, 34.611458], - [135.654541, 34.603554], - [135.663849, 34.598621], - [135.673721, 34.600422], - [135.679916, 34.59177], - [135.68457, 34.581631], - [135.675934, 34.567467], - [135.665146, 34.562691], - [135.660034, 34.55315], - [135.655777, 34.543991], - [135.664886, 34.527718], - [135.679657, 34.522251], - [135.679688, 34.510735], - [135.676193, 34.499958], - [135.682587, 34.491138], - [135.68399, 34.476936], - [135.686035, 34.466991], - [135.685394, 34.45253], - [135.686737, 34.442234], - [135.683014, 34.432606], - [135.676498, 34.424477], - [135.669418, 34.416634], - [135.677307, 34.409931], - [135.676926, 34.395828], - [135.666046, 34.393219], - [135.645798, 34.380386], - [135.635162, 34.37933], - [135.624741, 34.380909], - [135.611328, 34.374195], - [135.601273, 34.376862], - [135.591537, 34.372246], - [135.580124, 34.372692], - [135.570969, 34.368229], - [135.562134, 34.361423], - [135.553497, 34.354958], - [135.540863, 34.352978], - [135.531921, 34.348114], - [135.519302, 34.338844], - [135.506073, 34.340034], - [135.49527, 34.351372], - [135.488144, 34.359444], - [135.475601, 34.3498], - [135.465973, 34.344975], - [135.456055, 34.346809], - [135.437073, 34.344944], - [135.429337, 34.337471], - [135.411804, 34.33886], - [135.396194, 34.328323], - [135.386246, 34.326015], - [135.37236, 34.327053], - [135.361603, 34.329365], - [135.351593, 34.327919], - [135.341446, 34.331966], - [135.332474, 34.313808], - [135.319885, 34.312157], - [135.309265, 34.311073], - [135.304077, 34.300846], - [135.295074, 34.295715], - [135.289337, 34.304115], - [135.285339, 34.314503], - [135.272903, 34.309166], - [135.259872, 34.312366], - [135.25, 34.30999], - [135.24176, 34.303982], - [135.231964, 34.298717], - [135.22139, 34.301796], - [135.210815, 34.305008], - [135.207397, 34.295513], - [135.20668, 34.284775], - [135.195343, 34.283451], - [135.187561, 34.276825], - [135.176987, 34.276733], - [135.166382, 34.275372], - [135.15155, 34.279774], - [135.141846, 34.277241], - [135.134949, 34.26907], - [135.125, 34.271458], - [135.113007, 34.270546], - [135.110611, 34.280956], - [135.1017, 34.286995], - [135.104599, 34.297749], - [135.106262, 34.307762], - [135.096283, 34.310253], - [135.108566, 34.319511], - [135.130646, 34.321491], - [135.13829, 34.31617], - [135.143311, 34.316868], - [135.150742, 34.32177], - [135.156128, 34.329147], - [135.176346, 34.336105], - [135.183655, 34.335785], - [135.189819, 34.333687], - [135.210632, 34.342793], - [135.225098, 34.346409], - [135.251236, 34.369019], - [135.255203, 34.371773], - [135.268051, 34.376026], - [135.273636, 34.379417], - [135.276031, 34.380863], - [135.28154, 34.387001], - [135.293518, 34.393921], - [135.310898, 34.411667], - [135.322952, 34.41523], - [135.326111, 34.41864], - [135.324387, 34.422634], - [135.330841, 34.424088], - [135.331543, 34.428127], - [135.328979, 34.433449], - [135.329758, 34.434807], - [135.337875, 34.434273], - [135.341034, 34.437683], - [135.342545, 34.442406], - [135.35466, 34.443951], - [135.354599, 34.446636], - [135.352112, 34.448605], - [135.359253, 34.454765], - [135.361755, 34.452122], - [135.363632, 34.452251], - [135.365662, 34.458229], - [135.364716, 34.463581], - [135.372757, 34.4664], - [135.377533, 34.469833], - [135.376678, 34.471832], - [135.368576, 34.471695], - [135.374924, 34.477173], - [135.383926, 34.473965], - [135.386307, 34.476021], - [135.383804, 34.478661], - [135.384445, 34.486053], - [135.377884, 34.4893], - [135.377808, 34.491982], - [135.383392, 34.496101], - [135.385101, 34.492104], - [135.391556, 34.493553], - [135.392059, 34.497673], - [135.392181, 34.501614], - [135.396164, 34.504364], - [135.39682, 34.511086], - [135.406494, 34.513256], - [135.414688, 34.510036], - [135.411942, 34.516834], - [135.41272, 34.519138], - [135.416855, 34.520115], - [135.421021, 34.519943], - [135.423782, 34.519981], - [135.427933, 34.5205], - [135.430908, 34.52375], - [135.434723, 34.527473], - [135.44043, 34.533054], - [135.442825, 34.537674], - [135.44606, 34.542301], - [135.452011, 34.549263], - [135.453308, 34.553638], - [135.450226, 34.555428], - [135.443817, 34.556713], - [135.437164, 34.557079], - [135.431885, 34.557922], - [135.425461, 34.559666], - [135.417389, 34.561382], - [135.411407, 34.564346], - [135.410645, 34.573513], - [135.412811, 34.576298], - [135.413742, 34.57608], - [135.416092, 34.576302], - [135.41803, 34.574505], - [135.424927, 34.578938], - [135.428146, 34.576145], - [135.428604, 34.573338], - [135.433517, 34.571404], - [135.436707, 34.574139], - [135.433105, 34.588844], - [135.439835, 34.585224], - [135.442947, 34.5816], - [135.44812, 34.580853], - [135.450378, 34.579727], - [135.453918, 34.567036], - [135.457993, 34.566429], - [135.459106, 34.56852], - [135.46344, 34.576584], - [135.456451, 34.582069], - [135.457062, 34.584351], - [135.456741, 34.5849], - [135.458328, 34.586567], - [135.467224, 34.588051], - [135.468735, 34.59277], - [135.453384, 34.58984], - [135.443436, 34.589687], - [135.439087, 34.590374], - [135.432022, 34.600903], - [135.432755, 34.604271], - [135.436874, 34.601654], - [135.448318, 34.598484], - [135.450684, 34.601204], - [135.446472, 34.607845], - [135.476654, 34.604141], - [135.464325, 34.608135], - [135.442093, 34.611702], - [135.435852, 34.61113], - [135.430145, 34.613167], - [135.42984, 34.617264], - [135.433945, 34.619846], - [135.437592, 34.618061], - [135.442001, 34.618813], - [135.44165, 34.622475], - [135.445511, 34.623905], - [135.448898, 34.621201], - [135.451477, 34.617111], - [135.455902, 34.61763], - [135.455856, 34.619923], - [135.459122, 34.623177], - [135.462173, 34.62299], - [135.466049, 34.623501], - [135.47049, 34.623104], - [135.474625, 34.624767], - [135.480667, 34.627602], - [135.485031, 34.631329], - [135.485214, 34.636143], - [135.481049, 34.636543], - [135.477219, 34.633972], - [135.475586, 34.632114], - [135.472031, 34.629543], - [135.467346, 34.627876], - [135.462097, 34.626427], - [135.456528, 34.627495], - [135.45813, 34.630726], - [135.461441, 34.631462], - [135.466415, 34.633137], - [135.468307, 34.635681], - [135.464645, 34.637695], - [135.45932, 34.640602], - [135.460388, 34.64291], - [135.464813, 34.643887], - [135.466492, 34.643223], - [135.469025, 34.640965], - [135.473175, 34.641479], - [135.473129, 34.644001], - [135.473312, 34.649048], - [135.469666, 34.6506], - [135.464676, 34.650074], - [135.459183, 34.647705], - [135.456177, 34.64537], - [135.454208, 34.646263], - [135.450867, 34.646904], - [135.444458, 34.64819], - [135.440247, 34.651112], - [135.434113, 34.65263], - [135.434875, 34.655003], - [135.43721, 34.656681], - [135.45163, 34.665634], - [135.453888, 34.670326], - [135.461136, 34.675854], - [135.456894, 34.676949], - [135.462738, 34.682899], - [135.466034, 34.697342], - [135.462738, 34.730591], - [135.458496, 34.757198], - [135.447449, 34.766922], - [135.4478, 34.77697], - [135.445099, 34.786743], - [135.435745, 34.794807], - [135.421051, 34.808968], - [135.422852, 34.819351], - [135.425232, 34.838703], - [135.424927, 34.848709], - [135.433807, 34.853413], - [135.435623, 34.86375], - [135.442673, 34.883423], - [135.444977, 34.894382], - [135.43277, 34.896366], - [135.423309, 34.904682], - [135.431732, 34.912289], - [135.441147, 34.916634], - [135.4534, 34.916676], - [135.463837, 34.915005], - [135.469559, 34.925907], - [135.451935, 34.930923], - [135.441895, 34.933998], - [135.431564, 34.933266], - [135.420609, 34.931633], - [135.412781, 34.941471], - [135.399872, 34.94067], - [135.389847, 34.94331], - [135.385422, 34.952644], - [135.374649, 34.950703], - [135.363861, 34.951294], - [135.357239, 34.959171], - [135.349411, 34.965569], - [135.352325, 34.975372], - [135.361496, 34.980721], - [135.355911, 34.989765], - [135.355331, 34.999962], - [135.356628, 35.010395], - [135.357208, 35.021156], - [135.342712, 35.022785], - [135.337006, 35.031136], - [135.341827, 35.040531], - [135.35199, 35.044121], - [135.362137, 35.046913], - [135.373795, 35.042221], - [135.384857, 35.027763], - [135.383362, 35.011497], - [135.39296, 35.007133], - [135.402939, 35.004768], - [135.412781, 35.008118], - [135.420837, 34.999958], - [135.43251, 35.002769], - [135.443298, 35.004356], - [135.453079, 34.999958], - [135.464172, 34.997299], - [135.472824, 34.992142], - [135.483963, 34.991749], - [135.492905, 34.986332], - [135.486176, 34.978451], - [135.489883, 34.968708], - [135.488663, 34.952896], - [135.496277, 34.937931], - [135.508957, 34.942417], - [135.517487, 34.937057], - [135.524612, 34.928711], - [135.538544, 34.922733], - [135.544037, 34.912037], - [135.554749, 34.913738], - [135.565048, 34.914631], - [135.575867, 34.913486], - [135.584198, 34.92292], - [135.582336, 34.934021], - [135.564987, 34.9403], - [135.569489, 34.949741], - [135.575302, 34.958805], - [135.577972, 34.96888], - [135.58786, 34.971333], - [135.596375, 34.96526], - [135.606064, 34.967899], - [135.616089, 34.967899], - [135.619736, 34.952271], - [135.615936, 34.942322], - [135.625778, 34.930794], - [135.635834, 34.931297], - [135.645905, 34.926533], - [135.653854, 34.91618], - [135.656876, 34.90604], - [135.667145, 34.900475], - [135.679016, 34.894184], - [135.684128, 34.885384], - [135.687561, 34.867847], - [135.694, 34.860126], - [135.694443, 34.849873], - [135.704361, 34.84779], - [135.71286, 34.841984], - [135.718582, 34.833305], - [135.725998, 34.823109], - [135.73967, 34.810341], - [135.746704, 34.801483], - [135.746323, 34.791008], - [135.739578, 34.782707], - [135.731995, 34.775471], - [135.714249, 34.778027] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "奈良県", - "name": "Nara", - "ISOCODE": "JP-29", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:19:12+0100", - "cartodb_id": 72 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [135.714249, 34.778027], - [135.731995, 34.775471], - [135.734589, 34.759586], - [135.73941, 34.749962], - [135.748886, 34.743629], - [135.75618, 34.735069], - [135.758545, 34.724342], - [135.770111, 34.722313], - [135.780762, 34.720406], - [135.796249, 34.720726], - [135.806686, 34.718006], - [135.81488, 34.712242], - [135.83551, 34.709782], - [135.846146, 34.705727], - [135.85585, 34.702614], - [135.875, 34.708122], - [135.893005, 34.706142], - [135.899841, 34.72649], - [135.907883, 34.733482], - [135.914581, 34.74099], - [135.919312, 34.750523], - [135.93045, 34.75362], - [135.926514, 34.738342], - [135.935837, 34.734619], - [135.946075, 34.735088], - [135.953812, 34.742794], - [135.962372, 34.736958], - [135.976837, 34.73782], - [135.985275, 34.73135], - [135.988373, 34.721832], - [135.989716, 34.711891], - [136.001678, 34.710033], - [136.01149, 34.713326], - [136.031021, 34.706394], - [136.037262, 34.715107], - [136.043839, 34.722645], - [136.048187, 34.737877], - [136.066132, 34.723156], - [136.071716, 34.714157], - [136.067093, 34.705086], - [136.07843, 34.692539], - [136.082458, 34.680981], - [136.088867, 34.672237], - [136.079285, 34.655907], - [136.069733, 34.650517], - [136.07399, 34.635563], - [136.072311, 34.625492], - [136.065491, 34.616844], - [136.055084, 34.604465], - [136.050644, 34.594078], - [136.050171, 34.583332], - [136.056885, 34.574848], - [136.063309, 34.566242], - [136.074142, 34.564426], - [136.083557, 34.559891], - [136.092773, 34.555477], - [136.102493, 34.552956], - [136.116043, 34.544849], - [136.13649, 34.551773], - [136.148132, 34.553284], - [136.157684, 34.556355], - [136.163498, 34.546124], - [136.17157, 34.536068], - [136.173309, 34.525913], - [136.181122, 34.514107], - [136.190796, 34.519653], - [136.201111, 34.521793], - [136.21431, 34.525131], - [136.221436, 34.516468], - [136.221161, 34.506042], - [136.222244, 34.49345], - [136.229004, 34.484837], - [136.218811, 34.47797], - [136.214447, 34.466846], - [136.210495, 34.456684], - [136.209183, 34.445312], - [136.19017, 34.446007], - [136.17868, 34.442234], - [136.166183, 34.445164], - [136.155869, 34.441437], - [136.145294, 34.438484], - [136.135422, 34.440872], - [136.124985, 34.439857], - [136.108932, 34.432152], - [136.098663, 34.431744], - [136.092957, 34.416676], - [136.088104, 34.407387], - [136.079269, 34.401806], - [136.073151, 34.391617], - [136.079971, 34.383133], - [136.088959, 34.376167], - [136.09462, 34.365562], - [136.100266, 34.350422], - [136.104492, 34.339264], - [136.111679, 34.3265], - [136.12178, 34.322926], - [136.131821, 34.313702], - [136.124191, 34.307072], - [136.108597, 34.301853], - [136.097977, 34.298512], - [136.100235, 34.288471], - [136.107758, 34.28035], - [136.116684, 34.27409], - [136.123657, 34.266338], - [136.124985, 34.25597], - [136.133148, 34.249851], - [136.124985, 34.235462], - [136.116028, 34.220943], - [136.121078, 34.211018], - [136.110733, 34.207054], - [136.103455, 34.199963], - [136.096298, 34.192451], - [136.101349, 34.183369], - [136.111328, 34.181725], - [136.108475, 34.171955], - [136.115128, 34.163857], - [136.114059, 34.152748], - [136.109619, 34.143063], - [136.107422, 34.132526], - [136.11026, 34.122265], - [136.107483, 34.110867], - [136.110535, 34.099995], - [136.108902, 34.089897], - [136.096695, 34.078632], - [136.097946, 34.067009], - [136.096634, 34.053646], - [136.098083, 34.043381], - [136.103897, 34.033718], - [136.103821, 34.022392], - [136.090195, 34.024189], - [136.080017, 34.027271], - [136.069092, 34.03035], - [136.049713, 34.03133], - [136.040359, 34.037899], - [136.032043, 34.029362], - [136.021713, 34.033054], - [136.018326, 34.023403], - [136.010406, 34.015968], - [136.006104, 34.006527], - [135.993408, 33.999958], - [135.97966, 33.985844], - [135.969849, 33.982338], - [135.959503, 33.977619], - [135.94841, 33.976509], - [135.937759, 33.976799], - [135.927383, 33.975864], - [135.918457, 33.969498], - [135.91008, 33.95771], - [135.90271, 33.95034], - [135.895691, 33.942223], - [135.899612, 33.931961], - [135.902374, 33.922096], - [135.887451, 33.920002], - [135.872223, 33.916847], - [135.867462, 33.906033], - [135.862411, 33.896881], - [135.849197, 33.893421], - [135.83873, 33.892277], - [135.828369, 33.897118], - [135.819077, 33.902103], - [135.809052, 33.901283], - [135.804932, 33.892052], - [135.791992, 33.889427], - [135.780762, 33.884842], - [135.769821, 33.887428], - [135.760544, 33.882423], - [135.74498, 33.887138], - [135.735794, 33.892876], - [135.727264, 33.899712], - [135.71637, 33.899281], - [135.705475, 33.900307], - [135.693512, 33.899998], - [135.684174, 33.895893], - [135.67392, 33.897034], - [135.665512, 33.889423], - [135.65947, 33.880993], - [135.64682, 33.873768], - [135.635147, 33.871208], - [135.625, 33.87479], - [135.628479, 33.884605], - [135.624252, 33.895485], - [135.60524, 33.901237], - [135.614471, 33.916634], - [135.615829, 33.926548], - [135.619675, 33.935905], - [135.624039, 33.949791], - [135.634399, 33.946171], - [135.639435, 33.956791], - [135.642456, 33.967224], - [135.641403, 33.978554], - [135.637894, 33.988045], - [135.627197, 33.999962], - [135.618088, 34.006016], - [135.608124, 34.009193], - [135.597504, 34.008747], - [135.597931, 34.020012], - [135.600815, 34.030937], - [135.597031, 34.041252], - [135.58786, 34.046471], - [135.582443, 34.054981], - [135.572128, 34.05468], - [135.5634, 34.06028], - [135.553772, 34.065033], - [135.54277, 34.071503], - [135.552536, 34.083656], - [135.549225, 34.094398], - [135.558395, 34.09919], - [135.565506, 34.106758], - [135.574982, 34.110924], - [135.583298, 34.11927], - [135.587677, 34.129208], - [135.590332, 34.13979], - [135.607361, 34.150444], - [135.625, 34.155468], - [135.626099, 34.166637], - [135.635345, 34.174335], - [135.644226, 34.179626], - [135.641724, 34.190697], - [135.637192, 34.201015], - [135.643661, 34.209801], - [135.652115, 34.21537], - [135.662399, 34.214878], - [135.671448, 34.221172], - [135.681747, 34.219353], - [135.691208, 34.214119], - [135.700424, 34.208885], - [135.712479, 34.205544], - [135.720917, 34.212589], - [135.730072, 34.2183], - [135.732239, 34.230663], - [135.726334, 34.240124], - [135.721588, 34.258308], - [135.712616, 34.265045], - [135.703949, 34.272083], - [135.693665, 34.273064], - [135.681946, 34.270924], - [135.676224, 34.27932], - [135.676666, 34.289761], - [135.671326, 34.298355], - [135.671295, 34.313412], - [135.663498, 34.323868], - [135.663956, 34.340992], - [135.666351, 34.351597], - [135.660538, 34.360279], - [135.656845, 34.370396], - [135.645798, 34.380386], - [135.666046, 34.393219], - [135.676926, 34.395828], - [135.677307, 34.409931], - [135.669418, 34.416634], - [135.676498, 34.424477], - [135.683014, 34.432606], - [135.686737, 34.442234], - [135.685394, 34.45253], - [135.686035, 34.466991], - [135.68399, 34.476936], - [135.682587, 34.491138], - [135.676193, 34.499958], - [135.679688, 34.510735], - [135.679657, 34.522251], - [135.664886, 34.527718], - [135.655777, 34.543991], - [135.660034, 34.55315], - [135.665146, 34.562691], - [135.675934, 34.567467], - [135.68457, 34.581631], - [135.679916, 34.59177], - [135.673721, 34.600422], - [135.663849, 34.598621], - [135.654541, 34.603554], - [135.661652, 34.611458], - [135.663406, 34.62138], - [135.666992, 34.640003], - [135.669083, 34.649822], - [135.676895, 34.667892], - [135.680847, 34.677269], - [135.675842, 34.687687], - [135.680588, 34.702728], - [135.68956, 34.708252], - [135.697983, 34.71455], - [135.706558, 34.721249], - [135.702698, 34.731331], - [135.702286, 34.746796], - [135.712723, 34.749958], - [135.711792, 34.760727], - [135.714249, 34.778027] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "和歌山県", - "name": "Wakayama", - "ISOCODE": "JP-30", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:48+0100", - "cartodb_id": 84 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [135.624741, 34.380909], - [135.635162, 34.37933], - [135.645798, 34.380386], - [135.656845, 34.370396], - [135.660538, 34.360279], - [135.666351, 34.351597], - [135.663956, 34.340992], - [135.663498, 34.323868], - [135.671295, 34.313412], - [135.671326, 34.298355], - [135.676666, 34.289761], - [135.676224, 34.27932], - [135.681946, 34.270924], - [135.693665, 34.273064], - [135.703949, 34.272083], - [135.712616, 34.265045], - [135.721588, 34.258308], - [135.726334, 34.240124], - [135.732239, 34.230663], - [135.730072, 34.2183], - [135.720917, 34.212589], - [135.712479, 34.205544], - [135.700424, 34.208885], - [135.691208, 34.214119], - [135.681747, 34.219353], - [135.671448, 34.221172], - [135.662399, 34.214878], - [135.652115, 34.21537], - [135.643661, 34.209801], - [135.637192, 34.201015], - [135.641724, 34.190697], - [135.644226, 34.179626], - [135.635345, 34.174335], - [135.626099, 34.166637], - [135.625, 34.155468], - [135.607361, 34.150444], - [135.590332, 34.13979], - [135.587677, 34.129208], - [135.583298, 34.11927], - [135.574982, 34.110924], - [135.565506, 34.106758], - [135.558395, 34.09919], - [135.549225, 34.094398], - [135.552536, 34.083656], - [135.54277, 34.071503], - [135.553772, 34.065033], - [135.5634, 34.06028], - [135.572128, 34.05468], - [135.582443, 34.054981], - [135.58786, 34.046471], - [135.597031, 34.041252], - [135.600815, 34.030937], - [135.597931, 34.020012], - [135.597504, 34.008747], - [135.608124, 34.009193], - [135.618088, 34.006016], - [135.627197, 33.999962], - [135.637894, 33.988045], - [135.641403, 33.978554], - [135.642456, 33.967224], - [135.639435, 33.956791], - [135.634399, 33.946171], - [135.624039, 33.949791], - [135.619675, 33.935905], - [135.615829, 33.926548], - [135.614471, 33.916634], - [135.60524, 33.901237], - [135.624252, 33.895485], - [135.628479, 33.884605], - [135.625, 33.87479], - [135.635147, 33.871208], - [135.64682, 33.873768], - [135.65947, 33.880993], - [135.665512, 33.889423], - [135.67392, 33.897034], - [135.684174, 33.895893], - [135.693512, 33.899998], - [135.705475, 33.900307], - [135.71637, 33.899281], - [135.727264, 33.899712], - [135.735794, 33.892876], - [135.74498, 33.887138], - [135.760544, 33.882423], - [135.769821, 33.887428], - [135.780762, 33.884842], - [135.791992, 33.889427], - [135.804932, 33.892052], - [135.809052, 33.901283], - [135.819077, 33.902103], - [135.828369, 33.897118], - [135.83873, 33.892277], - [135.849197, 33.893421], - [135.862411, 33.896881], - [135.855972, 33.874062], - [135.856781, 33.859547], - [135.862961, 33.842197], - [135.861267, 33.827629], - [135.858978, 33.815845], - [135.865891, 33.807869], - [135.887558, 33.798073], - [135.899429, 33.785553], - [135.909836, 33.763603], - [135.920868, 33.76199], - [135.934586, 33.750969], - [135.945053, 33.733486], - [135.958694, 33.725151], - [135.978943, 33.734005], - [135.989731, 33.732273], - [135.991165, 33.731831], - [136.014587, 33.719658], - [136.001175, 33.705441], - [135.999283, 33.694996], - [135.992889, 33.685566], - [135.98024, 33.677761], - [135.978546, 33.673367], - [135.979919, 33.660233], - [135.981689, 33.657532], - [135.990387, 33.660301], - [135.991913, 33.656765], - [135.988968, 33.651737], - [135.985123, 33.64727], - [135.983292, 33.645134], - [135.980728, 33.652935], - [135.978241, 33.652916], - [135.976776, 33.649776], - [135.965805, 33.65012], - [135.960373, 33.644657], - [135.948669, 33.643322], - [135.942749, 33.637856], - [135.944031, 33.634945], - [135.951263, 33.633953], - [135.958527, 33.630665], - [135.960052, 33.626923], - [135.958649, 33.617313], - [135.947739, 33.612022], - [135.943741, 33.613247], - [135.934143, 33.6017], - [135.939728, 33.59277], - [135.945328, 33.599663], - [135.945877, 33.600327], - [135.948837, 33.602222], - [135.95134, 33.601406], - [135.953125, 33.597664], - [135.950928, 33.593685], - [135.943985, 33.589672], - [135.941788, 33.586319], - [135.947311, 33.580723], - [135.953293, 33.580975], - [135.957214, 33.587677], - [135.96611, 33.593998], - [135.968384, 33.591095], - [135.963791, 33.576668], - [135.960327, 33.574554], - [135.946625, 33.574669], - [135.939194, 33.571487], - [135.935699, 33.572296], - [135.926407, 33.579529], - [135.924179, 33.578472], - [135.928024, 33.567234], - [135.920074, 33.566341], - [135.902496, 33.556194], - [135.903763, 33.554535], - [135.90799, 33.554985], - [135.917892, 33.560066], - [135.925354, 33.561371], - [135.929367, 33.558899], - [135.923172, 33.555721], - [135.911331, 33.545204], - [135.901169, 33.54158], - [135.895996, 33.536118], - [135.890045, 33.534405], - [135.885376, 33.528111], - [135.877136, 33.530342], - [135.875153, 33.529701], - [135.870926, 33.525459], - [135.869492, 33.524025], - [135.859848, 33.518734], - [135.858139, 33.516006], - [135.850677, 33.515324], - [135.84726, 33.509457], - [135.830322, 33.510361], - [135.822693, 33.503208], - [135.808853, 33.496208], - [135.807892, 33.493073], - [135.801514, 33.485924], - [135.801544, 33.482349], - [135.80159, 33.479248], - [135.793976, 33.471466], - [135.791336, 33.462891], - [135.792145, 33.458309], - [135.804276, 33.441929], - [135.797821, 33.44104], - [135.79364, 33.436417], - [135.781906, 33.440697], - [135.776688, 33.440861], - [135.771515, 33.436646], - [135.768112, 33.430775], - [135.763153, 33.429478], - [135.760132, 33.432583], - [135.761063, 33.437599], - [135.757248, 33.444031], - [135.757721, 33.445705], - [135.761169, 33.44928], - [135.775772, 33.453789], - [135.776779, 33.454609], - [135.781937, 33.458847], - [135.781876, 33.463856], - [135.77478, 33.474014], - [135.764542, 33.47831], - [135.750854, 33.477982], - [135.746658, 33.475441], - [135.738434, 33.477455], - [135.733734, 33.474281], - [135.728287, 33.4734], - [135.717758, 33.479145], - [135.715057, 33.47662], - [135.709488, 33.484287], - [135.703766, 33.484444], - [135.689148, 33.479507], - [135.683624, 33.483837], - [135.67688, 33.485027], - [135.669067, 33.489513], - [135.66008, 33.494675], - [135.647598, 33.498516], - [135.636566, 33.504669], - [135.632187, 33.497116], - [135.61792, 33.502815], - [135.600281, 33.501389], - [135.599075, 33.498875], - [135.601074, 33.498058], - [135.601105, 33.495556], - [135.596878, 33.495094], - [135.593292, 33.502777], - [135.587051, 33.504383], - [135.578964, 33.512856], - [135.571472, 33.514656], - [135.553574, 33.513428], - [135.552277, 33.514336], - [135.548294, 33.517128], - [135.534348, 33.517605], - [135.516083, 33.52367], - [135.514816, 33.525116], - [135.516006, 33.528675], - [135.513977, 33.531364], - [135.505966, 33.533993], - [135.50293, 33.537086], - [135.496429, 33.538685], - [135.492081, 33.546356], - [135.48465, 33.543564], - [135.478104, 33.548706], - [135.471939, 33.544884], - [135.465485, 33.543976], - [135.45993, 33.548084], - [135.455261, 33.544487], - [135.452255, 33.545494], - [135.449448, 33.550053], - [135.448822, 33.557766], - [135.443771, 33.562298], - [135.424744, 33.56813], - [135.421967, 33.570812], - [135.421112, 33.577061], - [135.415192, 33.57386], - [135.411942, 33.574657], - [135.40564, 33.579174], - [135.406845, 33.581692], - [135.405823, 33.583351], - [135.400101, 33.582867], - [135.391602, 33.598831], - [135.393768, 33.603237], - [135.393692, 33.607826], - [135.397583, 33.613506], - [135.394516, 33.618477], - [135.398392, 33.624367], - [135.396545, 33.630604], - [135.397461, 33.63604], - [135.387054, 33.646767], - [135.380768, 33.650238], - [135.356003, 33.654739], - [135.333588, 33.668026], - [135.342422, 33.676067], - [135.35083, 33.680134], - [135.344162, 33.689857], - [135.353561, 33.694771], - [135.362808, 33.69384], - [135.365677, 33.686363], - [135.367432, 33.68576], - [135.367752, 33.680698], - [135.3703, 33.678909], - [135.37326, 33.68082], - [135.372208, 33.684147], - [135.374176, 33.685425], - [135.383667, 33.684284], - [135.381104, 33.688217], - [135.382828, 33.689491], - [135.389069, 33.689148], - [135.38829, 33.691433], - [135.384766, 33.693478], - [135.386383, 33.700382], - [135.388611, 33.70166], - [135.392593, 33.692791], - [135.396088, 33.701958], - [135.401276, 33.705151], - [135.401978, 33.70787], - [135.398987, 33.714771], - [135.393326, 33.718201], - [135.388565, 33.718979], - [135.378418, 33.728668], - [135.37439, 33.731121], - [135.361481, 33.726795], - [135.359238, 33.727184], - [135.363297, 33.737041], - [135.361984, 33.74099], - [135.353943, 33.744438], - [135.339447, 33.745304], - [135.332504, 33.742508], - [135.327316, 33.753712], - [135.329498, 33.757286], - [135.325867, 33.765171], - [135.321594, 33.766785], - [135.318832, 33.767796], - [135.303406, 33.765099], - [135.300323, 33.76965], - [135.279419, 33.7794], - [135.261902, 33.781471], - [135.248215, 33.779625], - [135.24321, 33.780186], - [135.240677, 33.782238], - [135.239548, 33.788898], - [135.240692, 33.794548], - [135.23938, 33.797661], - [135.230057, 33.802132], - [135.221649, 33.810368], - [135.214447, 33.808811], - [135.192261, 33.819363], - [135.190918, 33.824352], - [135.185089, 33.828449], - [135.178864, 33.83984], - [135.171783, 33.844543], - [135.17244, 33.848518], - [135.165466, 33.860523], - [135.162491, 33.871544], - [135.148239, 33.884705], - [135.125351, 33.891479], - [135.113861, 33.890274], - [135.095963, 33.885841], - [135.0952, 33.886005], - [135.085907, 33.887993], - [135.07579, 33.881588], - [135.067078, 33.880001], - [135.065292, 33.881641], - [135.064957, 33.885811], - [135.06955, 33.8936], - [135.065628, 33.901474], - [135.067795, 33.905262], - [135.083817, 33.904659], - [135.087936, 33.911186], - [135.087082, 33.915974], - [135.083542, 33.917595], - [135.085724, 33.921383], - [135.084381, 33.925327], - [135.076431, 33.922916], - [135.071899, 33.924522], - [135.073822, 33.927887], - [135.0793, 33.929428], - [135.08371, 33.933876], - [135.08873, 33.932693], - [135.094177, 33.935902], - [135.090332, 33.939812], - [135.095291, 33.941971], - [135.098679, 33.947865], - [135.103912, 33.948772], - [135.110306, 33.954288], - [135.114059, 33.953926], - [135.116989, 33.957516], - [135.115433, 33.960831], - [135.108688, 33.959904], - [135.101273, 33.955204], - [135.085785, 33.954357], - [135.083221, 33.957451], - [135.089203, 33.95858], - [135.091003, 33.967999], - [135.086731, 33.969189], - [135.08287, 33.97393], - [135.078598, 33.975121], - [135.077545, 33.977196], - [135.080765, 33.978912], - [135.089066, 33.976944], - [135.093796, 33.978474], - [135.09671, 33.982479], - [135.093384, 33.985981], - [135.090698, 33.98642], - [135.089874, 33.986553], - [135.090836, 33.988445], - [135.095551, 33.990185], - [135.099106, 33.987732], - [135.101028, 33.991722], - [135.107773, 33.992027], - [135.116119, 33.987762], - [135.122711, 33.996414], - [135.130722, 33.996319], - [135.135925, 33.998894], - [135.141693, 33.998768], - [135.146149, 34.001125], - [135.148804, 34.006168], - [135.152802, 34.006641], - [135.15625, 34.009613], - [135.147919, 34.012627], - [135.145615, 34.015518], - [135.157303, 34.01902], - [135.158707, 34.024048], - [135.16449, 34.023083], - [135.168457, 34.025433], - [135.175949, 34.026577], - [135.180298, 34.033943], - [135.179352, 34.036621], - [135.171509, 34.035282], - [135.165482, 34.036453], - [135.168152, 34.040665], - [135.167358, 34.04295], - [135.16481, 34.045002], - [135.158829, 34.043457], - [135.1548, 34.044445], - [135.153412, 34.051105], - [135.144791, 34.056622], - [135.140656, 34.062199], - [135.131409, 34.061443], - [135.124069, 34.065304], - [135.110474, 34.067825], - [135.101257, 34.065399], - [135.093994, 34.065502], - [135.087387, 34.07], - [135.087311, 34.073338], - [135.094894, 34.070316], - [135.104767, 34.077347], - [135.107452, 34.080933], - [135.106277, 34.08947], - [135.111023, 34.090374], - [135.118439, 34.09507], - [135.120987, 34.105331], - [135.12059, 34.112633], - [135.122772, 34.116001], - [135.124252, 34.117275], - [135.128036, 34.116077], - [135.133377, 34.112392], - [135.136047, 34.117023], - [135.130356, 34.125919], - [135.130249, 34.130924], - [135.131195, 34.133442], - [135.138443, 34.134796], - [135.157684, 34.138195], - [135.167725, 34.137707], - [135.172775, 34.135895], - [135.190826, 34.142487], - [135.199722, 34.141979], - [135.202881, 34.144718], - [135.201981, 34.148056], - [135.1931, 34.147896], - [135.189774, 34.151859], - [135.19278, 34.159966], - [135.191284, 34.163906], - [135.186157, 34.166553], - [135.183563, 34.172543], - [135.183441, 34.177238], - [135.186554, 34.181992], - [135.186417, 34.186871], - [135.186279, 34.192051], - [135.179886, 34.189919], - [135.177551, 34.186523], - [135.164627, 34.186283], - [135.15419, 34.184074], - [135.14682, 34.187294], - [135.145065, 34.192627], - [135.151443, 34.196102], - [135.150253, 34.210167], - [135.146149, 34.212776], - [135.146851, 34.221554], - [135.145767, 34.22686], - [135.133667, 34.22596], - [135.128769, 34.227879], - [135.130341, 34.229252], - [135.137619, 34.229389], - [135.126007, 34.239906], - [135.113831, 34.241688], - [135.099915, 34.248131], - [135.08934, 34.250614], - [135.071564, 34.250271], - [135.069626, 34.256561], - [135.068863, 34.259037], - [135.069046, 34.262589], - [135.073761, 34.271652], - [135.081055, 34.277164], - [135.080399, 34.277981], - [135.07666, 34.282734], - [135.076416, 34.294422], - [135.082291, 34.301811], - [135.088516, 34.304405], - [135.096283, 34.310253], - [135.106262, 34.307762], - [135.104599, 34.297749], - [135.1017, 34.286995], - [135.110611, 34.280956], - [135.113007, 34.270546], - [135.125, 34.271458], - [135.134949, 34.26907], - [135.141846, 34.277241], - [135.15155, 34.279774], - [135.166382, 34.275372], - [135.176987, 34.276733], - [135.187561, 34.276825], - [135.195343, 34.283451], - [135.20668, 34.284775], - [135.207397, 34.295513], - [135.210815, 34.305008], - [135.22139, 34.301796], - [135.231964, 34.298717], - [135.24176, 34.303982], - [135.25, 34.30999], - [135.259872, 34.312366], - [135.272903, 34.309166], - [135.285339, 34.314503], - [135.289337, 34.304115], - [135.295074, 34.295715], - [135.304077, 34.300846], - [135.309265, 34.311073], - [135.319885, 34.312157], - [135.332474, 34.313808], - [135.341446, 34.331966], - [135.351593, 34.327919], - [135.361603, 34.329365], - [135.37236, 34.327053], - [135.386246, 34.326015], - [135.396194, 34.328323], - [135.411804, 34.33886], - [135.429337, 34.337471], - [135.437073, 34.344944], - [135.456055, 34.346809], - [135.465973, 34.344975], - [135.475601, 34.3498], - [135.488144, 34.359444], - [135.49527, 34.351372], - [135.506073, 34.340034], - [135.519302, 34.338844], - [135.531921, 34.348114], - [135.540863, 34.352978], - [135.553497, 34.354958], - [135.562134, 34.361423], - [135.570969, 34.368229], - [135.580124, 34.372692], - [135.591537, 34.372246], - [135.601273, 34.376862], - [135.611328, 34.374195], - [135.624741, 34.380909] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "京都府", - "name": "Kyoto", - "ISOCODE": "JP-26", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:19:30+0100", - "cartodb_id": 123 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [134.870529, 35.658962], - [134.87114, 35.659306], - [134.881866, 35.660103], - [134.888931, 35.653114], - [134.886017, 35.646389], - [134.887573, 35.645576], - [134.893921, 35.647346], - [134.899063, 35.64576], - [134.905655, 35.648365], - [134.915955, 35.644768], - [134.92543, 35.644291], - [134.935089, 35.646317], - [134.954361, 35.654728], - [134.958878, 35.656704], - [134.967682, 35.662472], - [134.969162, 35.665417], - [134.968018, 35.67041], - [134.977341, 35.676189], - [134.97876, 35.681637], - [134.984085, 35.683178], - [134.989014, 35.691395], - [134.99646, 35.690254], - [135, 35.69067], - [135.002579, 35.690971], - [135.008392, 35.693977], - [135.021805, 35.688747], - [135.027679, 35.689041], - [135.033524, 35.691216], - [135.038956, 35.700062], - [135.046646, 35.699131], - [135.051178, 35.702328], - [135.061584, 35.705608], - [135.066238, 35.710728], - [135.071579, 35.716606], - [135.081482, 35.720089], - [135.089523, 35.726883], - [135.089172, 35.731678], - [135.086258, 35.736439], - [135.087997, 35.738758], - [135.095901, 35.739914], - [135.098129, 35.743286], - [135.103027, 35.741474], - [135.107864, 35.743004], - [135.110596, 35.74659], - [135.119858, 35.744213], - [135.125214, 35.745125], - [135.133057, 35.749199], - [135.138306, 35.755322], - [135.142883, 35.756847], - [135.149658, 35.750675], - [135.153, 35.750511], - [135.157791, 35.753708], - [135.166, 35.752983], - [135.168961, 35.757824], - [135.177185, 35.756264], - [135.181198, 35.760704], - [135.18335, 35.76107], - [135.193176, 35.762741], - [135.2005, 35.768055], - [135.209549, 35.763374], - [135.21312, 35.76363], - [135.224777, 35.769833], - [135.226685, 35.777164], - [135.229462, 35.77887], - [135.23497, 35.772053], - [135.243484, 35.768612], - [135.251358, 35.758694], - [135.2603, 35.759434], - [135.261093, 35.757355], - [135.258133, 35.751682], - [135.258972, 35.747936], - [135.281387, 35.740284], - [135.280792, 35.730675], - [135.290497, 35.731838], - [135.294083, 35.717686], - [135.29303, 35.705772], - [135.299179, 35.705013], - [135.312347, 35.698498], - [135.315491, 35.694149], - [135.313217, 35.692661], - [135.309067, 35.684948], - [135.306534, 35.680264], - [135.305191, 35.670433], - [135.307083, 35.664406], - [135.304871, 35.660412], - [135.299484, 35.660763], - [135.294556, 35.664875], - [135.298523, 35.671188], - [135.292389, 35.671738], - [135.286575, 35.667698], - [135.274582, 35.666924], - [135.270538, 35.664158], - [135.252441, 35.63512], - [135.251358, 35.624668], - [135.239838, 35.613251], - [135.238617, 35.609894], - [135.221985, 35.598198], - [135.213577, 35.584724], - [135.198837, 35.567833], - [135.195206, 35.558182], - [135.196609, 35.551937], - [135.194641, 35.547733], - [135.199326, 35.543205], - [135.197861, 35.539845], - [135.201492, 35.536968], - [135.204834, 35.535969], - [135.211868, 35.541489], - [135.213333, 35.544434], - [135.209488, 35.558369], - [135.215546, 35.562206], - [135.224426, 35.565037], - [135.229706, 35.569279], - [135.232452, 35.572655], - [135.233521, 35.583107], - [135.235016, 35.584587], - [135.240936, 35.582367], - [135.246765, 35.585155], - [135.257248, 35.597813], - [135.259521, 35.598679], - [135.262009, 35.588898], - [135.257202, 35.586124], - [135.256241, 35.583397], - [135.258392, 35.577579], - [135.255676, 35.572742], - [135.259079, 35.568611], - [135.273163, 35.566074], - [135.281189, 35.559914], - [135.272354, 35.554585], - [135.262665, 35.554253], - [135.256393, 35.548328], - [135.251755, 35.550983], - [135.252823, 35.551598], - [135.256546, 35.553757], - [135.257782, 35.556278], - [135.256699, 35.559395], - [135.247284, 35.557606], - [135.244095, 35.550674], - [135.245285, 35.54213], - [135.249222, 35.536545], - [135.276382, 35.530834], - [135.279602, 35.522526], - [135.292969, 35.517262], - [135.290771, 35.511391], - [135.291565, 35.496788], - [135.28627, 35.479187], - [135.290131, 35.477772], - [135.295212, 35.492657], - [135.296814, 35.502491], - [135.295151, 35.509773], - [135.296829, 35.515015], - [135.319611, 35.51112], - [135.323044, 35.518467], - [135.322235, 35.521381], - [135.327011, 35.52457], - [135.336411, 35.513409], - [135.340652, 35.50386], - [135.340469, 35.499889], - [135.335785, 35.491066], - [135.330017, 35.485569], - [135.330139, 35.479099], - [135.325882, 35.474873], - [135.324295, 35.463787], - [135.319794, 35.459141], - [135.318024, 35.454758], - [135.315643, 35.44886], - [135.320465, 35.450172], - [135.325989, 35.45504], - [135.331802, 35.457409], - [135.334488, 35.464119], - [135.344055, 35.471123], - [135.350388, 35.473495], - [135.350525, 35.480179], - [135.346603, 35.480656], - [135.353989, 35.486275], - [135.355637, 35.493183], - [135.365417, 35.488289], - [135.383759, 35.489548], - [135.386414, 35.483524], - [135.379898, 35.476974], - [135.387543, 35.477066], - [135.39389, 35.479019], - [135.397766, 35.476139], - [135.401306, 35.478058], - [135.401901, 35.483326], - [135.402634, 35.489765], - [135.407379, 35.495457], - [135.404007, 35.498756], - [135.399933, 35.498501], - [135.397232, 35.50724], - [135.399704, 35.51165], - [135.398102, 35.515388], - [135.393524, 35.514709], - [135.391022, 35.512177], - [135.38559, 35.501675], - [135.353973, 35.500885], - [135.34877, 35.506668], - [135.352783, 35.510265], - [135.349396, 35.51461], - [135.35675, 35.517204], - [135.355438, 35.519276], - [135.345184, 35.521656], - [135.34227, 35.529488], - [135.341156, 35.532463], - [135.34549, 35.547131], - [135.347794, 35.547157], - [135.351685, 35.54303], - [135.356049, 35.542454], - [135.367401, 35.549896], - [135.374252, 35.551647], - [135.382797, 35.559261], - [135.386871, 35.560143], - [135.3974, 35.556507], - [135.403198, 35.560539], - [135.409821, 35.561661], - [135.417847, 35.569893], - [135.428375, 35.565628], - [135.432205, 35.56567], - [135.430542, 35.574211], - [135.432785, 35.57674], - [135.43042, 35.580891], - [135.43219, 35.581955], - [135.436096, 35.581615], - [135.438583, 35.581398], - [135.4375, 35.585354], - [135.439987, 35.589348], - [135.448654, 35.590069], - [135.457687, 35.599979], - [135.461517, 35.599606], - [135.466064, 35.602997], - [135.46727, 35.59132], - [135.462158, 35.591679], - [135.461151, 35.590626], - [135.461761, 35.584579], - [135.455978, 35.579506], - [135.455063, 35.572815], - [135.458191, 35.569508], - [135.469696, 35.567757], - [135.473099, 35.562782], - [135.476089, 35.562664], - [135.468887, 35.548416], - [135.462158, 35.539692], - [135.457367, 35.530914], - [135.452438, 35.519901], - [135.460449, 35.513004], - [135.469147, 35.507256], - [135.478897, 35.502335], - [135.477676, 35.489819], - [135.470062, 35.480732], - [135.462173, 35.470573], - [135.464127, 35.460747], - [135.472458, 35.453831], - [135.482224, 35.446262], - [135.491791, 35.435604], - [135.5, 35.428429], - [135.51004, 35.419304], - [135.520172, 35.419224], - [135.530624, 35.41045], - [135.527985, 35.40015], - [135.533737, 35.391865], - [135.529816, 35.381721], - [135.537231, 35.374237], - [135.550827, 35.373497], - [135.561737, 35.373215], - [135.572159, 35.371967], - [135.582397, 35.371559], - [135.59256, 35.365093], - [135.603195, 35.367939], - [135.614136, 35.364418], - [135.625, 35.366432], - [135.639709, 35.360493], - [135.651123, 35.359222], - [135.660919, 35.355892], - [135.671432, 35.353497], - [135.680008, 35.346535], - [135.69136, 35.344784], - [135.701508, 35.341751], - [135.71228, 35.344154], - [135.720337, 35.351467], - [135.731033, 35.349247], - [135.741058, 35.349041], - [135.75, 35.35471], - [135.770966, 35.352596], - [135.776932, 35.339481], - [135.784897, 35.333305], - [135.792419, 35.325249], - [135.807831, 35.313828], - [135.814133, 35.304768], - [135.821548, 35.296452], - [135.824753, 35.2855], - [135.830856, 35.275928], - [135.840637, 35.271633], - [135.851898, 35.276535], - [135.849686, 35.262421], - [135.846359, 35.252224], - [135.840378, 35.233768], - [135.8405, 35.223595], - [135.832489, 35.216526], - [135.835159, 35.206646], - [135.839676, 35.196419], - [135.844666, 35.187031], - [135.843414, 35.177055], - [135.846924, 35.166626], - [135.852402, 35.157429], - [135.856476, 35.148251], - [135.851624, 35.138363], - [135.854736, 35.128433], - [135.852371, 35.118111], - [135.84761, 35.108921], - [135.8452, 35.098572], - [135.839294, 35.089432], - [135.8405, 35.075718], - [135.836349, 35.065952], - [135.838867, 35.056213], - [135.830475, 35.050545], - [135.82132, 35.045795], - [135.822159, 35.035473], - [135.830536, 35.027138], - [135.837082, 35.019001], - [135.834106, 35.008465], - [135.83638, 34.996803], - [135.851929, 34.982979], - [135.858963, 34.975452], - [135.859146, 34.964844], - [135.866028, 34.957272], - [135.875, 34.952179], - [135.881195, 34.9338], - [135.875702, 34.924622], - [135.87326, 34.912388], - [135.868774, 34.902653], - [135.869507, 34.888905], - [135.878326, 34.883453], - [135.888672, 34.880405], - [135.89502, 34.871269], - [135.90535, 34.869522], - [135.912811, 34.876217], - [135.922058, 34.881344], - [135.931641, 34.884914], - [135.942535, 34.885147], - [135.94606, 34.874916], - [135.94545, 34.858032], - [135.949051, 34.848553], - [135.964478, 34.850685], - [135.973251, 34.843742], - [135.979675, 34.835186], - [135.989685, 34.837837], - [135.999985, 34.841221], - [136.005646, 34.830322], - [136.012741, 34.82267], - [136.023148, 34.82267], - [136.031281, 34.816223], - [136.01799, 34.805241], - [136.017059, 34.794117], - [136.025345, 34.788342], - [136.027725, 34.778259], - [136.036438, 34.772522], - [136.032761, 34.763153], - [136.034271, 34.752697], - [136.048187, 34.737877], - [136.043839, 34.722645], - [136.037262, 34.715107], - [136.031021, 34.706394], - [136.01149, 34.713326], - [136.001678, 34.710033], - [135.989716, 34.711891], - [135.988373, 34.721832], - [135.985275, 34.73135], - [135.976837, 34.73782], - [135.962372, 34.736958], - [135.953812, 34.742794], - [135.946075, 34.735088], - [135.935837, 34.734619], - [135.926514, 34.738342], - [135.93045, 34.75362], - [135.919312, 34.750523], - [135.914581, 34.74099], - [135.907883, 34.733482], - [135.899841, 34.72649], - [135.893005, 34.706142], - [135.875, 34.708122], - [135.85585, 34.702614], - [135.846146, 34.705727], - [135.83551, 34.709782], - [135.81488, 34.712242], - [135.806686, 34.718006], - [135.796249, 34.720726], - [135.780762, 34.720406], - [135.770111, 34.722313], - [135.758545, 34.724342], - [135.75618, 34.735069], - [135.748886, 34.743629], - [135.73941, 34.749962], - [135.734589, 34.759586], - [135.731995, 34.775471], - [135.739578, 34.782707], - [135.746323, 34.791008], - [135.746704, 34.801483], - [135.73967, 34.810341], - [135.725998, 34.823109], - [135.718582, 34.833305], - [135.71286, 34.841984], - [135.704361, 34.84779], - [135.694443, 34.849873], - [135.694, 34.860126], - [135.687561, 34.867847], - [135.684128, 34.885384], - [135.679016, 34.894184], - [135.667145, 34.900475], - [135.656876, 34.90604], - [135.653854, 34.91618], - [135.645905, 34.926533], - [135.635834, 34.931297], - [135.625778, 34.930794], - [135.615936, 34.942322], - [135.619736, 34.952271], - [135.616089, 34.967899], - [135.606064, 34.967899], - [135.596375, 34.96526], - [135.58786, 34.971333], - [135.577972, 34.96888], - [135.575302, 34.958805], - [135.569489, 34.949741], - [135.564987, 34.9403], - [135.582336, 34.934021], - [135.584198, 34.92292], - [135.575867, 34.913486], - [135.565048, 34.914631], - [135.554749, 34.913738], - [135.544037, 34.912037], - [135.538544, 34.922733], - [135.524612, 34.928711], - [135.517487, 34.937057], - [135.508957, 34.942417], - [135.496277, 34.937931], - [135.488663, 34.952896], - [135.489883, 34.968708], - [135.486176, 34.978451], - [135.492905, 34.986332], - [135.483963, 34.991749], - [135.472824, 34.992142], - [135.464172, 34.997299], - [135.453079, 34.999958], - [135.443298, 35.004356], - [135.43251, 35.002769], - [135.420837, 34.999958], - [135.412781, 35.008118], - [135.402939, 35.004768], - [135.39296, 35.007133], - [135.383362, 35.011497], - [135.384857, 35.027763], - [135.373795, 35.042221], - [135.375, 35.055973], - [135.382385, 35.064495], - [135.392212, 35.068947], - [135.401611, 35.073078], - [135.403, 35.090862], - [135.391174, 35.098396], - [135.396118, 35.107323], - [135.389435, 35.114807], - [135.386688, 35.125786], - [135.372986, 35.128822], - [135.362259, 35.12912], - [135.352188, 35.132694], - [135.342209, 35.136681], - [135.337311, 35.146351], - [135.326248, 35.143356], - [135.313171, 35.141499], - [135.294022, 35.138813], - [135.286392, 35.147911], - [135.293533, 35.156036], - [135.291901, 35.169296], - [135.280838, 35.171837], - [135.270554, 35.172768], - [135.258835, 35.173874], - [135.239807, 35.173565], - [135.228607, 35.160786], - [135.218079, 35.15876], - [135.207779, 35.158619], - [135.200607, 35.165936], - [135.189896, 35.168667], - [135.191986, 35.178932], - [135.192139, 35.189102], - [135.202484, 35.191601], - [135.198334, 35.200932], - [135.184738, 35.2127], - [135.174698, 35.214043], - [135.164978, 35.217293], - [135.158752, 35.225941], - [135.166733, 35.232239], - [135.164627, 35.249947], - [135.157562, 35.258347], - [135.146637, 35.259201], - [135.136307, 35.260227], - [135.116882, 35.260582], - [135.105957, 35.259319], - [135.096191, 35.256588], - [135.088394, 35.249962], - [135.080475, 35.241516], - [135.067261, 35.240055], - [135.060699, 35.253181], - [135.05191, 35.258904], - [135.041489, 35.257641], - [135.031372, 35.261761], - [135.02179, 35.26519], - [135.013443, 35.270813], - [135.011185, 35.281181], - [135, 35.287262], - [134.989975, 35.288944], - [134.971329, 35.292839], - [134.960342, 35.295609], - [134.950302, 35.300789], - [134.934525, 35.305721], - [134.924164, 35.312561], - [134.927658, 35.322792], - [134.928543, 35.333298], - [134.921585, 35.343788], - [134.924866, 35.354404], - [134.923447, 35.365242], - [134.929703, 35.374638], - [134.927628, 35.384666], - [134.930206, 35.395275], - [134.94191, 35.406837], - [134.953018, 35.407387], - [134.963486, 35.405174], - [134.972412, 35.396702], - [134.983673, 35.395031], - [134.989822, 35.38628], - [135, 35.383827], - [135.009125, 35.388039], - [135.022568, 35.391373], - [135.028915, 35.399174], - [135.035782, 35.406818], - [135.046417, 35.405464], - [135.052612, 35.416637], - [135.049911, 35.426624], - [135.052383, 35.437386], - [135.052139, 35.448143], - [135.046936, 35.457386], - [135.04361, 35.468346], - [135.043335, 35.479858], - [135.043289, 35.494247], - [135.046509, 35.514557], - [135.042267, 35.524284], - [135.039993, 35.534603], - [135.030045, 35.536777], - [135.019318, 35.534336], - [135.007324, 35.532452], - [134.99115, 35.526501], - [134.979279, 35.521305], - [134.969666, 35.516972], - [134.962494, 35.509621], - [134.951752, 35.51075], - [134.940643, 35.509529], - [134.925858, 35.516865], - [134.920898, 35.533283], - [134.915451, 35.542225], - [134.905502, 35.547405], - [134.898682, 35.554817], - [134.888748, 35.557926], - [134.882721, 35.566048], - [134.871811, 35.575413], - [134.86731, 35.595024], - [134.869965, 35.604778], - [134.87471, 35.623066], - [134.869919, 35.63295], - [134.870529, 35.658962] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "兵庫県", - "name": "Hyogo", - "ISOCODE": "JP-28", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:19:35+0100", - "cartodb_id": 124 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [134.870529, 35.658962], - [134.869919, 35.63295], - [134.87471, 35.623066], - [134.869965, 35.604778], - [134.86731, 35.595024], - [134.871811, 35.575413], - [134.882721, 35.566048], - [134.888748, 35.557926], - [134.898682, 35.554817], - [134.905502, 35.547405], - [134.915451, 35.542225], - [134.920898, 35.533283], - [134.925858, 35.516865], - [134.940643, 35.509529], - [134.951752, 35.51075], - [134.962494, 35.509621], - [134.969666, 35.516972], - [134.979279, 35.521305], - [134.99115, 35.526501], - [135.007324, 35.532452], - [135.019318, 35.534336], - [135.030045, 35.536777], - [135.039993, 35.534603], - [135.042267, 35.524284], - [135.046509, 35.514557], - [135.043289, 35.494247], - [135.043335, 35.479858], - [135.04361, 35.468346], - [135.046936, 35.457386], - [135.052139, 35.448143], - [135.052383, 35.437386], - [135.049911, 35.426624], - [135.052612, 35.416637], - [135.046417, 35.405464], - [135.035782, 35.406818], - [135.028915, 35.399174], - [135.022568, 35.391373], - [135.009125, 35.388039], - [135, 35.383827], - [134.989822, 35.38628], - [134.983673, 35.395031], - [134.972412, 35.396702], - [134.963486, 35.405174], - [134.953018, 35.407387], - [134.94191, 35.406837], - [134.930206, 35.395275], - [134.927628, 35.384666], - [134.929703, 35.374638], - [134.923447, 35.365242], - [134.924866, 35.354404], - [134.921585, 35.343788], - [134.928543, 35.333298], - [134.927658, 35.322792], - [134.924164, 35.312561], - [134.934525, 35.305721], - [134.950302, 35.300789], - [134.960342, 35.295609], - [134.971329, 35.292839], - [134.989975, 35.288944], - [135, 35.287262], - [135.011185, 35.281181], - [135.013443, 35.270813], - [135.02179, 35.26519], - [135.031372, 35.261761], - [135.041489, 35.257641], - [135.05191, 35.258904], - [135.060699, 35.253181], - [135.067261, 35.240055], - [135.080475, 35.241516], - [135.088394, 35.249962], - [135.096191, 35.256588], - [135.105957, 35.259319], - [135.116882, 35.260582], - [135.136307, 35.260227], - [135.146637, 35.259201], - [135.157562, 35.258347], - [135.164627, 35.249947], - [135.166733, 35.232239], - [135.158752, 35.225941], - [135.164978, 35.217293], - [135.174698, 35.214043], - [135.184738, 35.2127], - [135.198334, 35.200932], - [135.202484, 35.191601], - [135.192139, 35.189102], - [135.191986, 35.178932], - [135.189896, 35.168667], - [135.200607, 35.165936], - [135.207779, 35.158619], - [135.218079, 35.15876], - [135.228607, 35.160786], - [135.239807, 35.173565], - [135.258835, 35.173874], - [135.270554, 35.172768], - [135.280838, 35.171837], - [135.291901, 35.169296], - [135.293533, 35.156036], - [135.286392, 35.147911], - [135.294022, 35.138813], - [135.313171, 35.141499], - [135.326248, 35.143356], - [135.337311, 35.146351], - [135.342209, 35.136681], - [135.352188, 35.132694], - [135.362259, 35.12912], - [135.372986, 35.128822], - [135.386688, 35.125786], - [135.389435, 35.114807], - [135.396118, 35.107323], - [135.391174, 35.098396], - [135.403, 35.090862], - [135.401611, 35.073078], - [135.392212, 35.068947], - [135.382385, 35.064495], - [135.375, 35.055973], - [135.373795, 35.042221], - [135.362137, 35.046913], - [135.35199, 35.044121], - [135.341827, 35.040531], - [135.337006, 35.031136], - [135.342712, 35.022785], - [135.357208, 35.021156], - [135.356628, 35.010395], - [135.355331, 34.999962], - [135.355911, 34.989765], - [135.361496, 34.980721], - [135.352325, 34.975372], - [135.349411, 34.965569], - [135.357239, 34.959171], - [135.363861, 34.951294], - [135.374649, 34.950703], - [135.385422, 34.952644], - [135.389847, 34.94331], - [135.399872, 34.94067], - [135.412781, 34.941471], - [135.420609, 34.931633], - [135.431564, 34.933266], - [135.441895, 34.933998], - [135.451935, 34.930923], - [135.469559, 34.925907], - [135.463837, 34.915005], - [135.4534, 34.916676], - [135.441147, 34.916634], - [135.431732, 34.912289], - [135.423309, 34.904682], - [135.43277, 34.896366], - [135.444977, 34.894382], - [135.442673, 34.883423], - [135.435623, 34.86375], - [135.433807, 34.853413], - [135.424927, 34.848709], - [135.425232, 34.838703], - [135.422852, 34.819351], - [135.421051, 34.808968], - [135.435745, 34.794807], - [135.445099, 34.786743], - [135.4478, 34.77697], - [135.447449, 34.766922], - [135.458496, 34.757198], - [135.462738, 34.730591], - [135.466034, 34.697342], - [135.462738, 34.682899], - [135.456894, 34.676949], - [135.456238, 34.677116], - [135.448166, 34.674305], - [135.443497, 34.665504], - [135.425827, 34.657166], - [135.422424, 34.663151], - [135.426437, 34.66523], - [135.428009, 34.670631], - [135.429993, 34.671661], - [135.432312, 34.672554], - [135.436279, 34.674149], - [135.441498, 34.675671], - [135.442474, 34.679092], - [135.437012, 34.67857], - [135.43251, 34.676891], - [135.43158, 34.676624], - [135.429153, 34.675053], - [135.424255, 34.676506], - [135.419647, 34.677868], - [135.421204, 34.680576], - [135.443848, 34.685642], - [135.462906, 34.694481], - [135.461411, 34.699341], - [135.458115, 34.701302], - [135.442047, 34.692993], - [135.433151, 34.690834], - [135.427399, 34.693428], - [135.421768, 34.691322], - [135.417633, 34.693939], - [135.419128, 34.699329], - [135.432007, 34.70491], - [135.43161, 34.707462], - [135.420609, 34.706066], - [135.408615, 34.697147], - [135.40387, 34.6917], - [135.401413, 34.692329], - [135.406891, 34.701145], - [135.400391, 34.701038], - [135.39476, 34.698929], - [135.388367, 34.694126], - [135.381058, 34.694008], - [135.380966, 34.701801], - [135.375305, 34.696594], - [135.368774, 34.697826], - [135.367065, 34.701153], - [135.369415, 34.704548], - [135.367706, 34.707874], - [135.364441, 34.708492], - [135.359451, 34.713104], - [135.35936, 34.717129], - [135.354431, 34.719059], - [135.354355, 34.722412], - [135.35675, 34.723797], - [135.348755, 34.724472], - [135.343643, 34.7276], - [135.336334, 34.727474], - [135.333908, 34.726765], - [135.330826, 34.720001], - [135.320297, 34.718479], - [135.314575, 34.719723], - [135.309616, 34.722992], - [135.304733, 34.722908], - [135.294296, 34.717358], - [135.290237, 34.717289], - [135.28952, 34.713249], - [135.292831, 34.711292], - [135.292908, 34.707939], - [135.279129, 34.706356], - [135.276627, 34.708996], - [135.272278, 34.707035], - [135.273483, 34.704914], - [135.26622, 34.702774], - [135.254044, 34.701889], - [135.242615, 34.703697], - [135.23616, 34.701569], - [135.228836, 34.70211], - [135.215088, 34.699177], - [135.213562, 34.695126], - [135.216034, 34.693829], - [135.222443, 34.697968], - [135.229721, 34.69944], - [135.225845, 34.69199], - [135.218613, 34.688507], - [135.212021, 34.687374], - [135.209778, 34.685246], - [135.206589, 34.682247], - [135.199249, 34.683456], - [135.195923, 34.686081], - [135.192734, 34.68401], - [135.191238, 34.678616], - [135.192963, 34.675289], - [135.186493, 34.673828], - [135.18895, 34.673203], - [135.193176, 34.66724], - [135.186737, 34.66444], - [135.191879, 34.654469], - [135.184631, 34.652321], - [135.177322, 34.652187], - [135.173981, 34.655483], - [135.163452, 34.653946], - [135.157883, 34.649815], - [135.154602, 34.651096], - [135.15065, 34.646996], - [135.142624, 34.643494], - [135.136871, 34.645397], - [135.117996, 34.64381], - [135.112488, 34.641853], - [135.108154, 34.638344], - [135.103058, 34.634205], - [135.09726, 34.634331], - [135.063828, 34.62801], - [135.047943, 34.627151], - [135.042618, 34.628326], - [135.033646, 34.635082], - [135.023682, 34.640572], - [135.017334, 34.642353], - [135.008484, 34.643269], - [135, 34.641731], - [134.988373, 34.639626], - [134.967514, 34.647449], - [134.966934, 34.647808], - [134.929092, 34.671696], - [134.918762, 34.670906], - [134.913422, 34.672703], - [134.899368, 34.690643], - [134.882782, 34.697685], - [134.869675, 34.707287], - [134.847397, 34.719704], - [134.84285, 34.709187], - [134.836899, 34.709553], - [134.833496, 34.704575], - [134.814316, 34.710049], - [134.81572, 34.740059], - [134.793365, 34.733624], - [134.790192, 34.740421], - [134.793762, 34.743614], - [134.775681, 34.749363], - [134.772583, 34.752026], - [134.774673, 34.759369], - [134.771652, 34.7589], - [134.76297, 34.752281], - [134.757843, 34.755325], - [134.764008, 34.761482], - [134.76416, 34.765453], - [134.759018, 34.768913], - [134.749847, 34.771473], - [134.73291, 34.771599], - [134.726273, 34.774406], - [134.718277, 34.780319], - [134.705017, 34.784683], - [134.700821, 34.783562], - [134.692276, 34.772091], - [134.688766, 34.770054], - [134.68544, 34.774143], - [134.680923, 34.7738], - [134.679611, 34.777203], - [134.683655, 34.781216], - [134.682343, 34.784618], - [134.677109, 34.781067], - [134.672668, 34.771648], - [134.665573, 34.770508], - [134.662338, 34.778282], - [134.666458, 34.779354], - [134.667572, 34.781834], - [134.665726, 34.783752], - [134.65802, 34.783085], - [134.661316, 34.791008], - [134.653854, 34.788158], - [134.650772, 34.786354], - [134.649857, 34.777996], - [134.647018, 34.777046], - [134.645157, 34.776417], - [134.639832, 34.775806], - [134.637939, 34.778706], - [134.644333, 34.783264], - [134.640717, 34.784653], - [134.632996, 34.784477], - [134.628906, 34.782421], - [134.630264, 34.777058], - [134.618546, 34.771885], - [134.61557, 34.772305], - [134.616638, 34.775761], - [134.607025, 34.778481], - [134.606613, 34.773079], - [134.598969, 34.770939], - [134.594788, 34.771332], - [134.589325, 34.774639], - [134.586395, 34.773098], - [134.588669, 34.75893], - [134.573868, 34.757114], - [134.578308, 34.766533], - [134.573669, 34.768944], - [134.570526, 34.765968], - [134.562241, 34.772911], - [134.557907, 34.774502], - [134.550369, 34.77248], - [134.545303, 34.77301], - [134.538071, 34.778511], - [134.533539, 34.778008], - [134.528732, 34.773331], - [134.521713, 34.76651], - [134.515991, 34.763268], - [134.512192, 34.763821], - [134.509277, 34.768566], - [134.509399, 34.772953], - [134.504868, 34.772449], - [134.499496, 34.765873], - [134.494629, 34.768288], - [134.486801, 34.758949], - [134.483276, 34.758255], - [134.476013, 34.773979], - [134.4776, 34.780067], - [134.481262, 34.784519], - [134.471741, 34.7906], - [134.463531, 34.785637], - [134.462845, 34.774559], - [134.468658, 34.765839], - [134.469452, 34.764668], - [134.469299, 34.761112], - [134.466843, 34.75877], - [134.458389, 34.753593], - [134.455292, 34.756039], - [134.459885, 34.763226], - [134.458542, 34.765705], - [134.453461, 34.766857], - [134.44841, 34.766342], - [134.444809, 34.7598], - [134.440674, 34.763268], - [134.438431, 34.761971], - [134.440063, 34.758244], - [134.435104, 34.754807], - [134.43573, 34.750851], - [134.438873, 34.746944], - [134.433914, 34.743507], - [134.431534, 34.738659], - [134.427032, 34.736691], - [134.41922, 34.727764], - [134.413223, 34.72514], - [134.410385, 34.727173], - [134.412079, 34.729919], - [134.410858, 34.736786], - [134.3992, 34.738197], - [134.397781, 34.734852], - [134.387802, 34.738827], - [134.373077, 34.758156], - [134.369537, 34.758083], - [134.367325, 34.756367], - [134.368027, 34.753036], - [134.372925, 34.748886], - [134.372925, 34.74625], - [134.365952, 34.751122], - [134.363327, 34.746056], - [134.367752, 34.74197], - [134.367294, 34.740082], - [134.349487, 34.732468], - [134.331467, 34.761322], - [134.335052, 34.762859], - [134.3293, 34.771709], - [134.321579, 34.782936], - [134.320099, 34.792953], - [134.312927, 34.80088], - [134.306961, 34.809792], - [134.292786, 34.81694], - [134.288223, 34.825985], - [134.277145, 34.824471], - [134.265442, 34.833302], - [134.263382, 34.843723], - [134.256424, 34.853077], - [134.261703, 34.86158], - [134.268066, 34.869743], - [134.265015, 34.879322], - [134.272736, 34.886482], - [134.282211, 34.892273], - [134.291626, 34.89571], - [134.292114, 34.907692], - [134.285599, 34.91811], - [134.278564, 34.925255], - [134.269745, 34.93203], - [134.259171, 34.933125], - [134.257736, 34.943287], - [134.266647, 34.949467], - [134.275574, 34.956688], - [134.277374, 34.967331], - [134.272888, 34.977188], - [134.280807, 34.984116], - [134.283173, 34.994801], - [134.274292, 34.999958], - [134.268692, 35.010246], - [134.273163, 35.019463], - [134.281494, 35.026653], - [134.289993, 35.033306], - [134.299088, 35.038242], - [134.309677, 35.038105], - [134.319778, 35.04195], - [134.317688, 35.051926], - [134.323639, 35.0704], - [134.322906, 35.080708], - [134.342911, 35.085632], - [134.352737, 35.091007], - [134.356293, 35.100399], - [134.356018, 35.110813], - [134.362274, 35.120167], - [134.365005, 35.1367], - [134.377274, 35.147499], - [134.388092, 35.148918], - [134.400131, 35.148911], - [134.411514, 35.144478], - [134.415527, 35.155582], - [134.411011, 35.168091], - [134.415375, 35.177113], - [134.407394, 35.184193], - [134.397003, 35.188431], - [134.38588, 35.194386], - [134.383514, 35.204514], - [134.384048, 35.21534], - [134.3927, 35.221165], - [134.401093, 35.228107], - [134.405685, 35.237682], - [134.426193, 35.232227], - [134.43515, 35.226814], - [134.445114, 35.230774], - [134.454819, 35.234432], - [134.465271, 35.240829], - [134.474243, 35.24604], - [134.48381, 35.250263], - [134.489914, 35.259411], - [134.5, 35.264168], - [134.509705, 35.269264], - [134.51828, 35.274708], - [134.514542, 35.284927], - [134.513504, 35.295296], - [134.515747, 35.306023], - [134.507812, 35.313206], - [134.504913, 35.323154], - [134.512573, 35.34082], - [134.510941, 35.353386], - [134.5, 35.364113], - [134.488892, 35.366325], - [134.479568, 35.371513], - [134.475632, 35.380722], - [134.479233, 35.390953], - [134.48317, 35.400654], - [134.47934, 35.410984], - [134.480087, 35.425697], - [134.470566, 35.429855], - [134.459671, 35.433281], - [134.442825, 35.439732], - [134.441086, 35.451012], - [134.437149, 35.467842], - [134.437119, 35.478783], - [134.432999, 35.488815], - [134.43129, 35.502239], - [134.423309, 35.508778], - [134.41777, 35.517506], - [134.422913, 35.527027], - [134.428116, 35.538376], - [134.427765, 35.548729], - [134.42392, 35.559834], - [134.410461, 35.562046], - [134.40976, 35.57328], - [134.40451, 35.59153], - [134.395737, 35.598198], - [134.375916, 35.608521], - [134.377228, 35.610538], - [134.38768, 35.611168], - [134.389053, 35.616623], - [134.391052, 35.618126], - [134.397949, 35.618053], - [134.405701, 35.615074], - [134.410492, 35.617676], - [134.4189, 35.618259], - [134.421844, 35.622074], - [134.434601, 35.622742], - [134.434982, 35.627346], - [134.438934, 35.632015], - [134.441971, 35.632908], - [134.445648, 35.629848], - [134.455078, 35.630451], - [134.467133, 35.637993], - [134.479095, 35.639683], - [134.483536, 35.645199], - [134.497345, 35.653812], - [134.505997, 35.654812], - [134.510193, 35.66032], - [134.516052, 35.660851], - [134.519943, 35.659042], - [134.522476, 35.659508], - [134.52951, 35.664234], - [134.544464, 35.6689], - [134.55098, 35.664429], - [134.556564, 35.656597], - [134.561981, 35.65461], - [134.564407, 35.650478], - [134.566711, 35.650311], - [134.570404, 35.654972], - [134.574219, 35.65588], - [134.579147, 35.653046], - [134.583344, 35.65876], - [134.59024, 35.659096], - [134.597275, 35.653797], - [134.601074, 35.655537], - [134.607727, 35.655029], - [134.617889, 35.647697], - [134.621628, 35.641708], - [134.626266, 35.640751], - [134.629807, 35.641857], - [134.629639, 35.648327], - [134.637009, 35.649712], - [134.640686, 35.646229], - [134.643768, 35.645657], - [134.648056, 35.64761], - [134.647415, 35.652611], - [134.663483, 35.663334], - [134.667831, 35.66341], - [134.669434, 35.660515], - [134.664505, 35.653542], - [134.666656, 35.649612], - [134.669754, 35.648415], - [134.670898, 35.649296], - [134.672516, 35.650551], - [134.677551, 35.662746], - [134.680145, 35.661747], - [134.683624, 35.655338], - [134.690247, 35.656498], - [134.691849, 35.663624], - [134.69902, 35.662914], - [134.700607, 35.660854], - [134.698425, 35.656429], - [134.69902, 35.653099], - [134.706406, 35.654274], - [134.713882, 35.652103], - [134.713821, 35.664211], - [134.726318, 35.665264], - [134.732254, 35.663277], - [134.736954, 35.659389], - [134.746887, 35.660393], - [134.746765, 35.665611], - [134.752411, 35.664455], - [134.757355, 35.660988], - [134.761398, 35.662727], - [134.762024, 35.668167], - [134.765244, 35.672604], - [134.768051, 35.672443], - [134.769089, 35.661812], - [134.771179, 35.659969], - [134.787506, 35.661285], - [134.78511, 35.665001], - [134.789917, 35.667171], - [134.795074, 35.665585], - [134.800095, 35.669426], - [134.803146, 35.669685], - [134.804276, 35.665527], - [134.815567, 35.663628], - [134.830093, 35.655094], - [134.841568, 35.656532], - [134.842911, 35.653423], - [134.840973, 35.64901], - [134.834457, 35.64389], - [134.836792, 35.642467], - [134.84198, 35.63942], - [134.848068, 35.641399], - [134.84993, 35.648945], - [134.856125, 35.656769], - [134.860168, 35.658504], - [134.868118, 35.657585], - [134.870529, 35.658962] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "鳥取県", - "name": "Tottori", - "ISOCODE": "JP-31", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:19:42+0100", - "cartodb_id": 125 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [134.375916, 35.608521], - [134.395737, 35.598198], - [134.40451, 35.59153], - [134.40976, 35.57328], - [134.410461, 35.562046], - [134.42392, 35.559834], - [134.427765, 35.548729], - [134.428116, 35.538376], - [134.422913, 35.527027], - [134.41777, 35.517506], - [134.423309, 35.508778], - [134.43129, 35.502239], - [134.432999, 35.488815], - [134.437119, 35.478783], - [134.437149, 35.467842], - [134.441086, 35.451012], - [134.442825, 35.439732], - [134.459671, 35.433281], - [134.470566, 35.429855], - [134.480087, 35.425697], - [134.47934, 35.410984], - [134.48317, 35.400654], - [134.479233, 35.390953], - [134.475632, 35.380722], - [134.479568, 35.371513], - [134.488892, 35.366325], - [134.5, 35.364113], - [134.510941, 35.353386], - [134.512573, 35.34082], - [134.504913, 35.323154], - [134.507812, 35.313206], - [134.515747, 35.306023], - [134.513504, 35.295296], - [134.514542, 35.284927], - [134.51828, 35.274708], - [134.509705, 35.269264], - [134.5, 35.264168], - [134.489914, 35.259411], - [134.48381, 35.250263], - [134.474243, 35.24604], - [134.465271, 35.240829], - [134.454819, 35.234432], - [134.445114, 35.230774], - [134.43515, 35.226814], - [134.426193, 35.232227], - [134.405685, 35.237682], - [134.400391, 35.247013], - [134.390167, 35.24728], - [134.375412, 35.241489], - [134.365341, 35.2262], - [134.355606, 35.221333], - [134.345154, 35.217319], - [134.337845, 35.210094], - [134.32959, 35.203545], - [134.319473, 35.199089], - [134.308685, 35.19841], - [134.298187, 35.197315], - [134.284332, 35.193722], - [134.2742, 35.19759], - [134.267624, 35.205246], - [134.257034, 35.20504], - [134.25, 35.196781], - [134.238586, 35.196011], - [134.22908, 35.192463], - [134.2155, 35.187569], - [134.205322, 35.185596], - [134.196365, 35.181084], - [134.190918, 35.171532], - [134.181793, 35.16663], - [134.171432, 35.177238], - [134.164993, 35.186672], - [134.15567, 35.192646], - [134.157486, 35.20343], - [134.163849, 35.211716], - [134.165146, 35.222103], - [134.160278, 35.231304], - [134.148132, 35.228321], - [134.140228, 35.235107], - [134.147308, 35.249973], - [134.1465, 35.260475], - [134.14061, 35.268749], - [134.135101, 35.277836], - [134.120911, 35.279823], - [134.113953, 35.287239], - [134.105499, 35.293266], - [134.100311, 35.302391], - [134.089539, 35.303963], - [134.079468, 35.299492], - [134.062714, 35.29882], - [134.052811, 35.295433], - [134.043716, 35.300648], - [134.032761, 35.30204], - [134.022659, 35.302757], - [134.012573, 35.304234], - [134.002945, 35.311131], - [134.00737, 35.320953], - [134.013687, 35.337288], - [134.010696, 35.348141], - [134, 35.349751], - [133.990067, 35.344379], - [133.980591, 35.340935], - [133.969147, 35.343204], - [133.959061, 35.339035], - [133.944672, 35.330666], - [133.934601, 35.330334], - [133.930573, 35.320927], - [133.933136, 35.310421], - [133.914398, 35.303818], - [133.904861, 35.300632], - [133.895248, 35.296711], - [133.886108, 35.291412], - [133.874298, 35.289936], - [133.868942, 35.281456], - [133.864212, 35.267277], - [133.854431, 35.258259], - [133.846451, 35.249783], - [133.830719, 35.246445], - [133.820999, 35.255287], - [133.814178, 35.264145], - [133.810532, 35.275112], - [133.804443, 35.284218], - [133.794525, 35.289867], - [133.783295, 35.295277], - [133.7742, 35.300522], - [133.757599, 35.30703], - [133.75, 35.315041], - [133.738846, 35.315376], - [133.728058, 35.315971], - [133.717773, 35.31889], - [133.705795, 35.321369], - [133.694214, 35.32082], - [133.68541, 35.315636], - [133.675583, 35.320229], - [133.665237, 35.323158], - [133.654816, 35.331497], - [133.64122, 35.336033], - [133.619965, 35.336491], - [133.609451, 35.338337], - [133.599167, 35.341682], - [133.5914, 35.333305], - [133.590591, 35.321629], - [133.583298, 35.313435], - [133.57869, 35.302917], - [133.579132, 35.292549], - [133.573593, 35.282356], - [133.573883, 35.271534], - [133.56955, 35.261757], - [133.564957, 35.249966], - [133.559677, 35.240742], - [133.548401, 35.240181], - [133.539474, 35.234341], - [133.529388, 35.235237], - [133.519501, 35.237312], - [133.511124, 35.230171], - [133.514374, 35.217945], - [133.521805, 35.210339], - [133.523972, 35.200375], - [133.524567, 35.182034], - [133.510986, 35.189308], - [133.501587, 35.185738], - [133.489273, 35.183296], - [133.47879, 35.178463], - [133.470474, 35.172253], - [133.459732, 35.170658], - [133.449799, 35.168884], - [133.439911, 35.170574], - [133.430222, 35.173946], - [133.420944, 35.178841], - [133.410461, 35.182648], - [133.40155, 35.177448], - [133.396576, 35.166637], - [133.402191, 35.157467], - [133.405548, 35.147839], - [133.410904, 35.138306], - [133.414413, 35.127972], - [133.413437, 35.117191], - [133.397461, 35.110432], - [133.38591, 35.111511], - [133.375, 35.10928], - [133.360062, 35.09874], - [133.350327, 35.101994], - [133.339645, 35.101959], - [133.331482, 35.093773], - [133.321793, 35.090794], - [133.311432, 35.09473], - [133.302261, 35.100075], - [133.293106, 35.094135], - [133.292557, 35.083286], - [133.290283, 35.065189], - [133.279526, 35.062584], - [133.272141, 35.054569], - [133.263626, 35.060581], - [133.251022, 35.075439], - [133.234833, 35.074009], - [133.231186, 35.064674], - [133.215576, 35.070515], - [133.203857, 35.069145], - [133.192886, 35.066734], - [133.182526, 35.065056], - [133.171585, 35.064575], - [133.163177, 35.070698], - [133.144211, 35.062256], - [133.143951, 35.073174], - [133.139725, 35.086754], - [133.142502, 35.096561], - [133.146927, 35.106403], - [133.14534, 35.117405], - [133.147797, 35.127403], - [133.152405, 35.13755], - [133.16127, 35.14576], - [133.171249, 35.149162], - [133.182785, 35.152622], - [133.191238, 35.158218], - [133.197464, 35.16663], - [133.193359, 35.176918], - [133.18454, 35.184971], - [133.18602, 35.195427], - [133.176971, 35.202023], - [133.165283, 35.203327], - [133.155289, 35.200798], - [133.154251, 35.212749], - [133.16391, 35.219734], - [133.173523, 35.223885], - [133.1828, 35.230381], - [133.193253, 35.233479], - [133.208527, 35.238899], - [133.219009, 35.24157], - [133.228577, 35.24575], - [133.239563, 35.245941], - [133.253113, 35.253593], - [133.262131, 35.257927], - [133.272232, 35.255688], - [133.282959, 35.258156], - [133.293732, 35.257896], - [133.304443, 35.260086], - [133.311646, 35.270054], - [133.307541, 35.280983], - [133.303375, 35.291435], - [133.306793, 35.301735], - [133.300827, 35.310013], - [133.300354, 35.323235], - [133.297714, 35.337795], - [133.300888, 35.348698], - [133.307648, 35.357841], - [133.319122, 35.363693], - [133.322037, 35.378433], - [133.31781, 35.388798], - [133.324066, 35.399082], - [133.321762, 35.40921], - [133.321228, 35.431973], - [133.322922, 35.442535], - [133.324692, 35.45319], - [133.327301, 35.465618], - [133.335724, 35.463524], - [133.368988, 35.461346], - [133.374161, 35.459614], - [133.379593, 35.45768], - [133.398712, 35.451958], - [133.411209, 35.452103], - [133.418259, 35.454182], - [133.430176, 35.462036], - [133.433258, 35.4734], - [133.436996, 35.475594], - [133.43927, 35.482132], - [133.445343, 35.483555], - [133.449539, 35.492863], - [133.465195, 35.497055], - [133.47583, 35.498814], - [133.501282, 35.512882], - [133.510635, 35.515018], - [133.516113, 35.518509], - [133.547394, 35.521446], - [133.566299, 35.52739], - [133.578247, 35.528336], - [133.587097, 35.530453], - [133.594254, 35.530224], - [133.600327, 35.525375], - [133.612457, 35.522144], - [133.621292, 35.517994], - [133.634293, 35.518337], - [133.653595, 35.514252], - [133.659866, 35.510445], - [133.676407, 35.505238], - [133.69342, 35.507557], - [133.71933, 35.503838], - [133.755188, 35.500576], - [133.801575, 35.501949], - [133.812836, 35.500771], - [133.862778, 35.502834], - [133.870331, 35.505524], - [133.881027, 35.506203], - [133.926849, 35.509392], - [133.93367, 35.511017], - [133.945358, 35.51965], - [133.957886, 35.519108], - [133.964066, 35.524685], - [133.972336, 35.521954], - [133.986313, 35.523537], - [133.989944, 35.52216], - [133.993439, 35.52412], - [133.997787, 35.524014], - [134.004578, 35.526676], - [134.006287, 35.53653], - [134.010513, 35.539761], - [134.019501, 35.530781], - [134.021774, 35.524151], - [134.033737, 35.517742], - [134.041153, 35.517288], - [134.077988, 35.522301], - [134.086563, 35.525002], - [134.093781, 35.522869], - [134.136703, 35.529461], - [134.162415, 35.531281], - [134.197174, 35.537674], - [134.217911, 35.543758], - [134.235764, 35.544556], - [134.245117, 35.54705], - [134.275391, 35.558758], - [134.278366, 35.561535], - [134.276199, 35.565247], - [134.279877, 35.570126], - [134.29303, 35.574158], - [134.297424, 35.580933], - [134.293243, 35.583977], - [134.296722, 35.587181], - [134.313446, 35.591076], - [134.326523, 35.589676], - [134.34024, 35.591835], - [134.34343, 35.596493], - [134.341537, 35.599586], - [134.344162, 35.605904], - [134.350296, 35.60561], - [134.351425, 35.602085], - [134.354294, 35.600471], - [134.37088, 35.600807], - [134.375916, 35.608521] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "島根県", - "name": "Shimane", - "ISOCODE": "JP-32", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:19:48+0100", - "cartodb_id": 126 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [133.324692, 35.45319], - [133.322922, 35.442535], - [133.321228, 35.431973], - [133.321762, 35.40921], - [133.324066, 35.399082], - [133.31781, 35.388798], - [133.322037, 35.378433], - [133.319122, 35.363693], - [133.307648, 35.357841], - [133.300888, 35.348698], - [133.297714, 35.337795], - [133.300354, 35.323235], - [133.300827, 35.310013], - [133.306793, 35.301735], - [133.303375, 35.291435], - [133.307541, 35.280983], - [133.311646, 35.270054], - [133.304443, 35.260086], - [133.293732, 35.257896], - [133.282959, 35.258156], - [133.272232, 35.255688], - [133.262131, 35.257927], - [133.253113, 35.253593], - [133.239563, 35.245941], - [133.228577, 35.24575], - [133.219009, 35.24157], - [133.208527, 35.238899], - [133.193253, 35.233479], - [133.1828, 35.230381], - [133.173523, 35.223885], - [133.16391, 35.219734], - [133.154251, 35.212749], - [133.155289, 35.200798], - [133.165283, 35.203327], - [133.176971, 35.202023], - [133.18602, 35.195427], - [133.18454, 35.184971], - [133.193359, 35.176918], - [133.197464, 35.16663], - [133.191238, 35.158218], - [133.182785, 35.152622], - [133.171249, 35.149162], - [133.16127, 35.14576], - [133.152405, 35.13755], - [133.147797, 35.127403], - [133.14534, 35.117405], - [133.146927, 35.106403], - [133.142502, 35.096561], - [133.139725, 35.086754], - [133.143951, 35.073174], - [133.125, 35.080242], - [133.114685, 35.082497], - [133.103882, 35.079262], - [133.09314, 35.078835], - [133.08284, 35.077583], - [133.072205, 35.078026], - [133.061646, 35.076088], - [133.054901, 35.067257], - [133.042587, 35.064857], - [133.033417, 35.070004], - [133.018143, 35.08329], - [133.008224, 35.087284], - [132.992996, 35.097996], - [132.980637, 35.083309], - [132.964462, 35.075905], - [132.953049, 35.072334], - [132.943726, 35.076832], - [132.933319, 35.079304], - [132.923126, 35.080841], - [132.909195, 35.087284], - [132.903244, 35.095894], - [132.894745, 35.10162], - [132.874619, 35.098534], - [132.862274, 35.089428], - [132.85405, 35.081554], - [132.847107, 35.073833], - [132.837738, 35.066174], - [132.830231, 35.057804], - [132.831818, 35.043877], - [132.821854, 35.040089], - [132.81488, 35.032162], - [132.808273, 35.023304], - [132.799164, 35.017612], - [132.789642, 35.010178], - [132.78389, 34.999962], - [132.774414, 34.99416], - [132.765961, 34.977928], - [132.753769, 34.975067], - [132.752792, 34.959522], - [132.740326, 34.957066], - [132.730377, 34.95327], - [132.723007, 34.944935], - [132.713562, 34.95084], - [132.703323, 34.949707], - [132.6922, 34.948883], - [132.682617, 34.938416], - [132.678131, 34.929317], - [132.668213, 34.924404], - [132.658875, 34.920021], - [132.649124, 34.906982], - [132.650635, 34.896908], - [132.668457, 34.887409], - [132.678024, 34.891468], - [132.692612, 34.881046], - [132.703232, 34.87867], - [132.707382, 34.865501], - [132.711594, 34.856361], - [132.703873, 34.842243], - [132.693939, 34.843952], - [132.683945, 34.847305], - [132.675018, 34.841576], - [132.662384, 34.828941], - [132.651077, 34.836746], - [132.635498, 34.836754], - [132.624603, 34.839012], - [132.61441, 34.836311], - [132.601349, 34.828121], - [132.59465, 34.820316], - [132.585205, 34.81493], - [132.576065, 34.809902], - [132.568985, 34.802757], - [132.558304, 34.804527], - [132.549454, 34.799549], - [132.539734, 34.791985], - [132.529449, 34.795818], - [132.518692, 34.799316], - [132.509598, 34.792824], - [132.5, 34.79612], - [132.489227, 34.794796], - [132.477753, 34.795967], - [132.467209, 34.799309], - [132.456924, 34.797462], - [132.452332, 34.807972], - [132.444473, 34.814487], - [132.434036, 34.81229], - [132.423691, 34.808685], - [132.427399, 34.798317], - [132.417557, 34.794529], - [132.409348, 34.78817], - [132.401474, 34.78022], - [132.389923, 34.779469], - [132.385559, 34.791626], - [132.375, 34.797787], - [132.364349, 34.79702], - [132.352539, 34.79343], - [132.34375, 34.788422], - [132.331039, 34.78833], - [132.322083, 34.794117], - [132.311966, 34.792259], - [132.306, 34.783791], - [132.301193, 34.773678], - [132.291138, 34.776283], - [132.281998, 34.781773], - [132.280731, 34.79361], - [132.270844, 34.79752], - [132.253784, 34.803898], - [132.240692, 34.798283], - [132.244873, 34.787758], - [132.242813, 34.776737], - [132.235138, 34.769882], - [132.228287, 34.760715], - [132.224838, 34.750538], - [132.2155, 34.741749], - [132.204987, 34.745457], - [132.198975, 34.736057], - [132.189529, 34.730865], - [132.179474, 34.731903], - [132.170776, 34.725986], - [132.16008, 34.720028], - [132.151291, 34.714657], - [132.143097, 34.706547], - [132.136276, 34.694302], - [132.144745, 34.688484], - [132.156967, 34.689796], - [132.164215, 34.680126], - [132.156967, 34.672203], - [132.150024, 34.659458], - [132.142929, 34.651604], - [132.128876, 34.637119], - [132.132843, 34.626564], - [132.124893, 34.619179], - [132.119461, 34.60545], - [132.12532, 34.596844], - [132.12709, 34.583286], - [132.120834, 34.57386], - [132.118073, 34.562492], - [132.110092, 34.556042], - [132.101349, 34.549583], - [132.092987, 34.542316], - [132.086319, 34.534161], - [132.076538, 34.531792], - [132.065948, 34.530342], - [132.056061, 34.526756], - [132.050293, 34.51823], - [132.048386, 34.507877], - [132.040894, 34.499958], - [132.056625, 34.492577], - [132.059799, 34.482437], - [132.065536, 34.47348], - [132.057678, 34.464638], - [132.043396, 34.464882], - [132.033829, 34.459488], - [132.024536, 34.454704], - [132.018723, 34.445499], - [132.018494, 34.434349], - [132.010208, 34.428387], - [132, 34.424778], - [131.992493, 34.411507], - [131.999969, 34.403809], - [132.004028, 34.392193], - [132.009537, 34.382771], - [132.01442, 34.373932], - [132.013702, 34.363365], - [132.002579, 34.362522], - [131.992142, 34.349728], - [131.983566, 34.341389], - [131.97728, 34.333298], - [131.974167, 34.323296], - [131.964294, 34.315208], - [131.957581, 34.307194], - [131.949066, 34.316864], - [131.94136, 34.323837], - [131.932755, 34.32967], - [131.922409, 34.33358], - [131.913177, 34.323746], - [131.902603, 34.31588], - [131.89328, 34.320759], - [131.888062, 34.31176], - [131.874969, 34.304386], - [131.857483, 34.303028], - [131.847504, 34.307564], - [131.836395, 34.308006], - [131.821533, 34.300236], - [131.81427, 34.309223], - [131.801529, 34.313965], - [131.797577, 34.323875], - [131.787064, 34.32832], - [131.777451, 34.336372], - [131.780807, 34.346336], - [131.771744, 34.357334], - [131.768707, 34.368523], - [131.769241, 34.381657], - [131.776962, 34.391216], - [131.786896, 34.396545], - [131.789337, 34.406921], - [131.796722, 34.423229], - [131.796402, 34.433281], - [131.782455, 34.432514], - [131.771652, 34.432621], - [131.761581, 34.430641], - [131.751923, 34.433281], - [131.743988, 34.425915], - [131.73407, 34.42812], - [131.723724, 34.425423], - [131.711304, 34.428703], - [131.701492, 34.431637], - [131.696487, 34.440849], - [131.698395, 34.451073], - [131.696381, 34.462914], - [131.702316, 34.471687], - [131.69223, 34.476765], - [131.683029, 34.482258], - [131.680634, 34.492699], - [131.670761, 34.500828], - [131.676605, 34.509197], - [131.684692, 34.515594], - [131.695679, 34.519669], - [131.704071, 34.527546], - [131.707092, 34.538414], - [131.703537, 34.547958], - [131.7052, 34.562164], - [131.717178, 34.563087], - [131.726868, 34.568874], - [131.722458, 34.583282], - [131.721649, 34.593361], - [131.719574, 34.603214], - [131.712982, 34.611343], - [131.702087, 34.613468], - [131.697128, 34.623333], - [131.699905, 34.635654], - [131.697723, 34.64542], - [131.691528, 34.654362], - [131.68512, 34.675045], - [131.686874, 34.675236], - [131.692444, 34.679028], - [131.695938, 34.675835], - [131.704971, 34.672668], - [131.709442, 34.674114], - [131.718109, 34.672817], - [131.723557, 34.674721], - [131.729477, 34.672886], - [131.7388, 34.673492], - [131.752258, 34.676365], - [131.768616, 34.677689], - [131.775406, 34.682365], - [131.795853, 34.686783], - [131.81044, 34.688026], - [131.824402, 34.695297], - [131.838898, 34.702175], - [131.854034, 34.71096], - [131.857239, 34.716526], - [131.857437, 34.72155], - [131.867279, 34.725929], - [131.871475, 34.731747], - [131.86972, 34.735645], - [131.874252, 34.740223], - [131.86911, 34.745651], - [131.868225, 34.751884], - [131.872528, 34.756035], - [131.884308, 34.757774], - [131.890045, 34.755089], - [131.892899, 34.76231], - [131.895828, 34.763897], - [131.896973, 34.774181], - [131.900177, 34.775776], - [131.91423, 34.77343], - [131.918015, 34.775787], - [131.926422, 34.781036], - [131.931442, 34.781662], - [131.93309, 34.783821], - [131.932373, 34.787342], - [131.936234, 34.790428], - [131.939911, 34.78828], - [131.948563, 34.791767], - [131.955261, 34.806461], - [131.955902, 34.812756], - [131.973022, 34.822857], - [131.977127, 34.82198], - [131.983704, 34.826218], - [131.988708, 34.827255], - [131.993469, 34.832253], - [131.998672, 34.842915], - [132.006622, 34.845325], - [132.016266, 34.857834], - [132.015564, 34.861149], - [132.011505, 34.861401], - [132.007721, 34.865219], - [132.011856, 34.868313], - [132.016693, 34.867672], - [132.021576, 34.870792], - [132.026337, 34.871822], - [132.033997, 34.879234], - [132.036621, 34.877876], - [132.040482, 34.881165], - [132.04364, 34.8792], - [132.046814, 34.872643], - [132.058456, 34.872688], - [132.062866, 34.883942], - [132.072098, 34.890785], - [132.072693, 34.893524], - [132.065781, 34.898891], - [132.063049, 34.898159], - [132.06163, 34.900608], - [132.064255, 34.903431], - [132.074951, 34.90678], - [132.07608, 34.909332], - [132.077072, 34.913971], - [132.084045, 34.920307], - [132.087372, 34.928589], - [132.098816, 34.932384], - [132.109512, 34.931343], - [132.111511, 34.93623], - [132.109161, 34.94178], - [132.10994, 34.945782], - [132.111084, 34.947113], - [132.115875, 34.952702], - [132.117874, 34.953407], - [132.121445, 34.948532], - [132.150574, 34.962421], - [132.154968, 34.965309], - [132.156677, 34.97081], - [132.159317, 34.973419], - [132.170044, 34.976555], - [132.186996, 34.986195], - [132.202393, 35], - [132.214996, 35.011307], - [132.224548, 35.017525], - [132.244507, 35.032501], - [132.251053, 35.033379], - [132.256393, 35.037762], - [132.260437, 35.038124], - [132.269226, 35.035114], - [132.273254, 35.035896], - [132.289749, 35.045086], - [132.294769, 35.046112], - [132.298172, 35.048748], - [132.306763, 35.049492], - [132.311874, 35.053238], - [132.318039, 35.065796], - [132.321411, 35.069057], - [132.330322, 35.073154], - [132.326904, 35.079922], - [132.328171, 35.084564], - [132.32991, 35.086178], - [132.336868, 35.092621], - [132.342758, 35.091587], - [132.343979, 35.092678], - [132.342484, 35.096592], - [132.347961, 35.098679], - [132.355972, 35.105453], - [132.361282, 35.105862], - [132.367905, 35.114674], - [132.371674, 35.11544], - [132.373535, 35.118645], - [132.376785, 35.119598], - [132.376114, 35.122501], - [132.377563, 35.124016], - [132.387375, 35.125633], - [132.395264, 35.134911], - [132.393051, 35.138172], - [132.387863, 35.140068], - [132.387192, 35.142971], - [132.388885, 35.144493], - [132.39595, 35.145592], - [132.398636, 35.152168], - [132.404312, 35.1553], - [132.404678, 35.162628], - [132.408203, 35.166279], - [132.411163, 35.169346], - [132.41684, 35.172478], - [132.418533, 35.17881], - [132.422501, 35.180626], - [132.421906, 35.186871], - [132.433411, 35.185829], - [132.446823, 35.191753], - [132.456268, 35.200455], - [132.462524, 35.202354], - [132.470978, 35.210602], - [132.474136, 35.215595], - [132.486832, 35.218697], - [132.490494, 35.221542], - [132.490021, 35.225498], - [132.492645, 35.228725], - [132.503296, 35.22472], - [132.506042, 35.225655], - [132.516464, 35.235432], - [132.52919, 35.23526], - [132.531372, 35.237221], - [132.52832, 35.242123], - [132.543411, 35.255199], - [132.57045, 35.26368], - [132.580948, 35.271992], - [132.588013, 35.273285], - [132.607986, 35.275867], - [132.623581, 35.279545], - [132.633728, 35.285122], - [132.645905, 35.295784], - [132.656372, 35.310146], - [132.667587, 35.329544], - [132.676834, 35.362114], - [132.679016, 35.369843], - [132.681534, 35.380585], - [132.678696, 35.395947], - [132.675735, 35.399185], - [132.667419, 35.402245], - [132.657623, 35.409218], - [132.650146, 35.410839], - [132.644852, 35.414417], - [132.631088, 35.414562], - [132.627899, 35.416962], - [132.630905, 35.422913], - [132.629837, 35.428726], - [132.632278, 35.430695], - [132.645294, 35.430519], - [132.648727, 35.433353], - [132.6483, 35.436474], - [132.656921, 35.437607], - [132.661392, 35.44006], - [132.669067, 35.439564], - [132.66983, 35.439514], - [132.679962, 35.445923], - [132.689835, 35.442291], - [132.689194, 35.449791], - [132.699158, 35.449715], - [132.70874, 35.446697], - [132.713379, 35.441006], - [132.729675, 35.446369], - [132.753372, 35.44696], - [132.763412, 35.450222], - [132.763168, 35.455231], - [132.746338, 35.460094], - [132.732803, 35.466702], - [132.765686, 35.475998], - [132.796631, 35.479752], - [132.804382, 35.482933], - [132.82132, 35.496449], - [132.829697, 35.497353], - [132.834259, 35.503353], - [132.837753, 35.504723], - [132.845551, 35.502056], - [132.860107, 35.50692], - [132.868317, 35.511368], - [132.869232, 35.511349], - [132.872147, 35.511284], - [132.877655, 35.508331], - [132.896225, 35.509773], - [132.926102, 35.514919], - [132.948822, 35.514812], - [132.958206, 35.516159], - [132.966293, 35.512447], - [132.972397, 35.512852], - [132.979614, 35.516842], - [132.982727, 35.521328], - [132.981049, 35.52441], - [132.973953, 35.528568], - [132.973251, 35.532516], - [132.975632, 35.541367], - [132.979782, 35.541496], - [132.980988, 35.541538], - [132.983643, 35.544754], - [132.991119, 35.54332], - [132.996658, 35.54496], - [132.99762, 35.541019], - [133.001465, 35.540516], - [133.005173, 35.537918], - [133.022552, 35.54285], - [133.029953, 35.537651], - [133.032227, 35.538143], - [133.033676, 35.53986], - [133.032913, 35.545265], - [133.030319, 35.551453], - [133.032242, 35.554226], - [133.037781, 35.555653], - [133.041168, 35.559731], - [133.04483, 35.557964], - [133.047394, 35.552197], - [133.051056, 35.55043], - [133.053543, 35.551762], - [133.052521, 35.557369], - [133.054382, 35.561188], - [133.060181, 35.563038], - [133.061829, 35.566013], - [133.059311, 35.57053], - [133.052277, 35.573654], - [133.052444, 35.575329], - [133.066559, 35.579529], - [133.070221, 35.577553], - [133.070694, 35.584045], - [133.084396, 35.580502], - [133.100983, 35.580803], - [133.095169, 35.58522], - [133.09935, 35.588482], - [133.093964, 35.594582], - [133.084015, 35.599705], - [133.085495, 35.600796], - [133.097443, 35.602211], - [133.106277, 35.59914], - [133.108536, 35.599834], - [133.115128, 35.595444], - [133.115082, 35.591053], - [133.126862, 35.5793], - [133.129196, 35.581036], - [133.131561, 35.582787], - [133.138931, 35.583637], - [133.143631, 35.581272], - [133.141159, 35.579525], - [133.13353, 35.578667], - [133.142075, 35.570572], - [133.145798, 35.561703], - [133.150833, 35.56353], - [133.157547, 35.561642], - [133.160248, 35.564022], - [133.159088, 35.56712], - [133.161591, 35.568241], - [133.163208, 35.572258], - [133.167328, 35.571548], - [133.170654, 35.56559], - [133.174774, 35.56488], - [133.180176, 35.569637], - [133.185013, 35.569992], - [133.18985, 35.564709], - [133.195999, 35.564472], - [133.196167, 35.56636], - [133.191315, 35.571854], - [133.192215, 35.574802], - [133.189713, 35.579323], - [133.193466, 35.580898], - [133.199432, 35.580067], - [133.201019, 35.577782], - [133.197708, 35.571835], - [133.199356, 35.569168], - [133.207397, 35.572124], - [133.213425, 35.568756], - [133.216599, 35.572193], - [133.21611, 35.57719], - [133.219131, 35.578323], - [133.221237, 35.582775], - [133.223892, 35.580345], - [133.234604, 35.580666], - [133.235443, 35.579227], - [133.228729, 35.575058], - [133.233185, 35.572475], - [133.237183, 35.574474], - [133.24498, 35.571571], - [133.250168, 35.575275], - [133.252716, 35.575562], - [133.257462, 35.572151], - [133.260452, 35.57412], - [133.266815, 35.574306], - [133.271973, 35.579052], - [133.279007, 35.576126], - [133.281433, 35.579121], - [133.28923, 35.575798], - [133.292999, 35.577194], - [133.293503, 35.577385], - [133.301819, 35.574284], - [133.305588, 35.575649], - [133.31427, 35.575691], - [133.326553, 35.569572], - [133.328491, 35.566078], - [133.323822, 35.561764], - [133.314148, 35.56086], - [133.301041, 35.556927], - [133.290802, 35.557671], - [133.268723, 35.55452], - [133.252808, 35.550499], - [133.251846, 35.549217], - [133.250153, 35.547077], - [133.247269, 35.536968], - [133.247757, 35.531761], - [133.252304, 35.521984], - [133.253403, 35.519604], - [133.268768, 35.495411], - [133.285706, 35.487343], - [133.296616, 35.477009], - [133.325928, 35.465958], - [133.327301, 35.465618], - [133.324692, 35.45319] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "岡山県", - "name": "Okayama", - "ISOCODE": "JP-33", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:01+0100", - "cartodb_id": 128 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [134, 35.349751], - [134.010696, 35.348141], - [134.013687, 35.337288], - [134.00737, 35.320953], - [134.002945, 35.311131], - [134.012573, 35.304234], - [134.022659, 35.302757], - [134.032761, 35.30204], - [134.043716, 35.300648], - [134.052811, 35.295433], - [134.062714, 35.29882], - [134.079468, 35.299492], - [134.089539, 35.303963], - [134.100311, 35.302391], - [134.105499, 35.293266], - [134.113953, 35.287239], - [134.120911, 35.279823], - [134.135101, 35.277836], - [134.14061, 35.268749], - [134.1465, 35.260475], - [134.147308, 35.249973], - [134.140228, 35.235107], - [134.148132, 35.228321], - [134.160278, 35.231304], - [134.165146, 35.222103], - [134.163849, 35.211716], - [134.157486, 35.20343], - [134.15567, 35.192646], - [134.164993, 35.186672], - [134.171433, 35.177238], - [134.181793, 35.16663], - [134.190918, 35.171532], - [134.196365, 35.181084], - [134.205322, 35.185596], - [134.2155, 35.187569], - [134.22908, 35.192463], - [134.238586, 35.196011], - [134.25, 35.196781], - [134.257034, 35.20504], - [134.267624, 35.205246], - [134.2742, 35.19759], - [134.284332, 35.193722], - [134.298187, 35.197315], - [134.308685, 35.19841], - [134.319473, 35.199089], - [134.32959, 35.203545], - [134.337845, 35.210094], - [134.345154, 35.217319], - [134.355606, 35.221333], - [134.365341, 35.2262], - [134.375412, 35.241489], - [134.390167, 35.24728], - [134.400391, 35.247013], - [134.405685, 35.237682], - [134.401093, 35.228107], - [134.3927, 35.221165], - [134.384048, 35.21534], - [134.383514, 35.204514], - [134.38588, 35.194386], - [134.397003, 35.188431], - [134.407394, 35.184193], - [134.415375, 35.177113], - [134.411011, 35.168091], - [134.415527, 35.155582], - [134.411514, 35.144478], - [134.400131, 35.148911], - [134.388092, 35.148918], - [134.377274, 35.147499], - [134.365005, 35.1367], - [134.362274, 35.120167], - [134.356018, 35.110813], - [134.356293, 35.100399], - [134.352737, 35.091007], - [134.342911, 35.085632], - [134.322906, 35.080708], - [134.323639, 35.0704], - [134.317688, 35.051926], - [134.319778, 35.04195], - [134.309677, 35.038105], - [134.299088, 35.038242], - [134.289993, 35.033306], - [134.281494, 35.026653], - [134.273163, 35.019463], - [134.268692, 35.010246], - [134.274292, 34.999958], - [134.283173, 34.994801], - [134.280808, 34.984116], - [134.272888, 34.977188], - [134.277374, 34.967331], - [134.275574, 34.956688], - [134.266647, 34.949467], - [134.257736, 34.943287], - [134.259171, 34.933125], - [134.269745, 34.93203], - [134.278564, 34.925255], - [134.285599, 34.91811], - [134.292114, 34.907692], - [134.291626, 34.89571], - [134.282211, 34.892273], - [134.272736, 34.886482], - [134.265015, 34.879322], - [134.268066, 34.869743], - [134.261703, 34.86158], - [134.256424, 34.853077], - [134.263382, 34.843723], - [134.265442, 34.833302], - [134.277145, 34.824471], - [134.288223, 34.825985], - [134.292786, 34.81694], - [134.306961, 34.809792], - [134.312927, 34.80088], - [134.320099, 34.792953], - [134.321579, 34.782936], - [134.3293, 34.771709], - [134.335052, 34.762859], - [134.331467, 34.761322], - [134.349487, 34.732468], - [134.348831, 34.732189], - [134.345154, 34.736916], - [134.342621, 34.737278], - [134.335236, 34.730656], - [134.33017, 34.723034], - [134.326401, 34.722328], - [134.324722, 34.724297], - [134.321152, 34.728485], - [134.315506, 34.731289], - [134.306107, 34.732971], - [134.302002, 34.735184], - [134.298309, 34.740326], - [134.295898, 34.736519], - [134.296478, 34.734024], - [134.290054, 34.729298], - [134.282623, 34.732689], - [134.278336, 34.732182], - [134.281494, 34.728279], - [134.275772, 34.725445], - [134.273209, 34.718292], - [134.269226, 34.716537], - [134.245392, 34.719372], - [134.234283, 34.718716], - [134.232208, 34.720757], - [134.234161, 34.722679], - [134.239426, 34.723835], - [134.242142, 34.725983], - [134.231873, 34.73098], - [134.219513, 34.730713], - [134.198593, 34.736732], - [134.193924, 34.740597], - [134.189499, 34.736744], - [134.208755, 34.727139], - [134.202164, 34.719898], - [134.203217, 34.71846], - [134.206039, 34.71706], - [134.214874, 34.717251], - [134.217224, 34.715004], - [134.214767, 34.712654], - [134.222168, 34.710312], - [134.227982, 34.710228], - [134.233185, 34.71389], - [134.236969, 34.71376], - [134.243958, 34.708691], - [134.248444, 34.702316], - [134.2547, 34.700714], - [134.25, 34.693161], - [134.246353, 34.696632], - [134.240723, 34.690876], - [134.234161, 34.690941], - [134.231796, 34.685673], - [134.219192, 34.684772], - [134.21875, 34.682884], - [134.221588, 34.681274], - [134.228897, 34.681644], - [134.231979, 34.679829], - [134.220093, 34.672474], - [134.212463, 34.674187], - [134.211014, 34.67207], - [134.211868, 34.668957], - [134.215713, 34.66737], - [134.216537, 34.665298], - [134.200684, 34.663494], - [134.203308, 34.66021], - [134.194809, 34.649792], - [134.183472, 34.656853], - [134.180206, 34.6563], - [134.179214, 34.656132], - [134.177277, 34.653374], - [134.182007, 34.647427], - [134.184799, 34.639343], - [134.189774, 34.641541], - [134.194321, 34.64164], - [134.195908, 34.639168], - [134.183655, 34.627834], - [134.179947, 34.617733], - [134.175018, 34.613865], - [134.170959, 34.614609], - [134.165466, 34.61282], - [134.162155, 34.613789], - [134.157425, 34.619324], - [134.154984, 34.61697], - [134.155624, 34.612808], - [134.152985, 34.608574], - [134.14418, 34.607754], - [134.142715, 34.606468], - [134.145905, 34.601318], - [134.143753, 34.597931], - [134.141022, 34.596199], - [134.13298, 34.595394], - [134.130081, 34.590252], - [134.128693, 34.58778], - [134.125717, 34.58625], - [134.111557, 34.587185], - [134.092682, 34.578197], - [134.089615, 34.57959], - [134.087387, 34.58601], - [134.082275, 34.587982], - [134.077362, 34.583904], - [134.070847, 34.58271], - [134.059341, 34.587246], - [134.061234, 34.598564], - [134.069839, 34.605236], - [134.069717, 34.608784], - [134.063889, 34.609486], - [134.052155, 34.598148], - [134.048553, 34.60788], - [134.042175, 34.610027], - [134.041245, 34.607708], - [134.03775, 34.606583], - [134.029922, 34.606819], - [134.025528, 34.609642], - [134.016907, 34.610901], - [134.004807, 34.610619], - [133.985886, 34.603279], - [133.980041, 34.604187], - [133.976364, 34.601387], - [133.971191, 34.597504], - [133.965424, 34.596531], - [133.958954, 34.601387], - [133.95224, 34.598515], - [133.955917, 34.594425], - [133.954468, 34.59272], - [133.935684, 34.588718], - [133.929855, 34.589207], - [133.926315, 34.582649], - [133.928146, 34.580605], - [133.926285, 34.579609], - [133.928665, 34.57486], - [133.929596, 34.575211], - [133.933487, 34.57217], - [133.936447, 34.567024], - [133.938904, 34.561863], - [133.94603, 34.552639], - [133.948959, 34.555214], - [133.948853, 34.565441], - [133.95163, 34.572609], - [133.971924, 34.591049], - [133.989441, 34.595222], - [134.007416, 34.593349], - [134.019302, 34.599892], - [134.024857, 34.600021], - [134.040619, 34.59621], - [134.047134, 34.5891], - [134.046936, 34.581116], - [134.052933, 34.575199], - [134.051224, 34.573696], - [134.044159, 34.573742], - [134.040207, 34.571354], - [134.034988, 34.56163], - [134.038956, 34.556084], - [134.034744, 34.553688], - [134.036896, 34.54998], - [134.030548, 34.551296], - [134.02832, 34.550198], - [134.027298, 34.542866], - [134.022232, 34.543583], - [134.018829, 34.547474], - [134.011978, 34.548565], - [134.009262, 34.546829], - [134.009872, 34.543713], - [134.003464, 34.539597], - [134.001129, 34.534321], - [134.005371, 34.528366], - [134.000259, 34.522816], - [134.010727, 34.515968], - [134.011353, 34.51556], - [134.009979, 34.511353], - [134.007736, 34.510883], - [133.99794, 34.517124], - [133.993286, 34.52787], - [133.981094, 34.530296], - [133.972153, 34.526745], - [133.966049, 34.520752], - [133.963791, 34.513184], - [133.960892, 34.509983], - [133.961792, 34.505829], - [133.968964, 34.49514], - [133.96933, 34.4916], - [133.962891, 34.488525], - [133.959503, 34.491783], - [133.956146, 34.4869], - [133.952927, 34.485153], - [133.953567, 34.481621], - [133.951614, 34.479694], - [133.945831, 34.479137], - [133.942963, 34.474892], - [133.942169, 34.470665], - [133.941483, 34.466923], - [133.94313, 34.462994], - [133.947952, 34.462067], - [133.948517, 34.460201], - [133.942856, 34.456516], - [133.946732, 34.453476], - [133.937592, 34.448662], - [133.932709, 34.458569], - [133.929031, 34.448666], - [133.924789, 34.447311], - [133.920685, 34.449509], - [133.915787, 34.448956], - [133.911728, 34.446873], - [133.909027, 34.451729], - [133.90593, 34.453743], - [133.892624, 34.452374], - [133.883209, 34.455276], - [133.871063, 34.463955], - [133.849442, 34.469681], - [133.841904, 34.469078], - [133.840012, 34.47258], - [133.817429, 34.463455], - [133.814758, 34.460674], - [133.813431, 34.455627], - [133.81781, 34.439243], - [133.820221, 34.435337], - [133.824631, 34.432037], - [133.826431, 34.430691], - [133.827042, 34.42778], - [133.814316, 34.431431], - [133.809402, 34.435062], - [133.800156, 34.433159], - [133.795792, 34.435555], - [133.793076, 34.433815], - [133.791534, 34.434612], - [133.791382, 34.438786], - [133.777405, 34.449078], - [133.779648, 34.456444], - [133.776291, 34.458656], - [133.7771, 34.464104], - [133.774094, 34.470291], - [133.764374, 34.47443], - [133.763763, 34.477337], - [133.767731, 34.48579], - [133.76886, 34.509624], - [133.766602, 34.509148], - [133.764206, 34.505745], - [133.76268, 34.48587], - [133.760452, 34.484978], - [133.757462, 34.490749], - [133.75621, 34.494701], - [133.754318, 34.50069], - [133.754318, 34.50737], - [133.751617, 34.512314], - [133.747314, 34.512829], - [133.73941, 34.506458], - [133.738174, 34.50314], - [133.729477, 34.492771], - [133.739227, 34.488018], - [133.741226, 34.48587], - [133.740143, 34.467213], - [133.735275, 34.465172], - [133.731506, 34.464424], - [133.731155, 34.472305], - [133.729279, 34.471615], - [133.726624, 34.471218], - [133.709, 34.472885], - [133.708572, 34.482342], - [133.711121, 34.498058], - [133.711029, 34.517776], - [133.722916, 34.522167], - [133.722733, 34.522846], - [133.724121, 34.526012], - [133.730469, 34.531605], - [133.731598, 34.535187], - [133.730469, 34.538498], - [133.720779, 34.528015], - [133.708725, 34.533131], - [133.705704, 34.544949], - [133.697449, 34.545116], - [133.695206, 34.533695], - [133.693344, 34.52417], - [133.691956, 34.520969], - [133.684708, 34.521061], - [133.683609, 34.520077], - [133.683334, 34.517544], - [133.690674, 34.515564], - [133.693192, 34.51059], - [133.68045, 34.505459], - [133.673264, 34.521008], - [133.667999, 34.519302], - [133.667236, 34.51722], - [133.661285, 34.514763], - [133.647964, 34.500839], - [133.643036, 34.500706], - [133.634369, 34.500477], - [133.622177, 34.490128], - [133.618271, 34.493156], - [133.611221, 34.493176], - [133.601532, 34.489574], - [133.595154, 34.485226], - [133.592117, 34.479088], - [133.586761, 34.474346], - [133.588181, 34.470417], - [133.583679, 34.469463], - [133.580124, 34.463726], - [133.563965, 34.464958], - [133.555084, 34.460121], - [133.546036, 34.459663], - [133.541733, 34.460175], - [133.532837, 34.474754], - [133.531433, 34.475513], - [133.530258, 34.476147], - [133.525787, 34.47435], - [133.521637, 34.477371], - [133.524719, 34.482464], - [133.523514, 34.487236], - [133.527756, 34.494663], - [133.526382, 34.497131], - [133.518585, 34.496914], - [133.514496, 34.498264], - [133.508224, 34.503727], - [133.499466, 34.502232], - [133.496094, 34.504642], - [133.490982, 34.512646], - [133.489304, 34.510509], - [133.491852, 34.503689], - [133.488464, 34.500046], - [133.483963, 34.49641], - [133.483429, 34.490803], - [133.477173, 34.488625], - [133.481781, 34.4753], - [133.483353, 34.458912], - [133.477509, 34.456749], - [133.474747, 34.464546], - [133.467987, 34.464653], - [133.465881, 34.467213], - [133.459854, 34.468658], - [133.458038, 34.47353], - [133.453873, 34.472958], - [133.453705, 34.486893], - [133.458374, 34.499962], - [133.448227, 34.502571], - [133.450684, 34.512386], - [133.452545, 34.522999], - [133.452011, 34.539608], - [133.44783, 34.549049], - [133.441101, 34.558113], - [133.431839, 34.564926], - [133.424698, 34.58329], - [133.408051, 34.5868], - [133.400787, 34.593952], - [133.397049, 34.604053], - [133.386139, 34.618385], - [133.394959, 34.628899], - [133.390533, 34.638294], - [133.396927, 34.646442], - [133.401825, 34.656002], - [133.405289, 34.66663], - [133.39566, 34.672092], - [133.386658, 34.676506], - [133.38446, 34.687607], - [133.376663, 34.694653], - [133.373001, 34.708271], - [133.371857, 34.718834], - [133.363327, 34.725426], - [133.372162, 34.74065], - [133.365845, 34.756054], - [133.369019, 34.765659], - [133.375, 34.780811], - [133.378159, 34.790749], - [133.380707, 34.803009], - [133.375, 34.81144], - [133.365784, 34.816895], - [133.348099, 34.826435], - [133.338043, 34.841328], - [133.32933, 34.853954], - [133.320114, 34.863491], - [133.312058, 34.870758], - [133.306946, 34.879585], - [133.2995, 34.886578], - [133.299393, 34.896748], - [133.301453, 34.907215], - [133.307175, 34.916626], - [133.304626, 34.926781], - [133.311905, 34.933784], - [133.305649, 34.943813], - [133.299927, 34.953236], - [133.306305, 34.961033], - [133.309372, 34.97073], - [133.317108, 34.97868], - [133.322937, 34.987743], - [133.323212, 35.003643], - [133.314606, 35.009861], - [133.305984, 35.015156], - [133.299774, 35.023102], - [133.294067, 35.031681], - [133.284561, 35.038139], - [133.27565, 35.04464], - [133.272141, 35.054569], - [133.279526, 35.062584], - [133.290283, 35.065189], - [133.292557, 35.083286], - [133.293106, 35.094135], - [133.302261, 35.100075], - [133.311432, 35.09473], - [133.321793, 35.090794], - [133.331482, 35.093773], - [133.339645, 35.101959], - [133.350327, 35.101994], - [133.360062, 35.09874], - [133.375, 35.10928], - [133.38591, 35.111511], - [133.397461, 35.110432], - [133.413437, 35.117191], - [133.414413, 35.127972], - [133.410904, 35.138306], - [133.405548, 35.147839], - [133.402191, 35.157467], - [133.396576, 35.166637], - [133.40155, 35.177448], - [133.410461, 35.182648], - [133.420944, 35.178841], - [133.430222, 35.173946], - [133.439911, 35.170574], - [133.449799, 35.168884], - [133.459732, 35.170658], - [133.470474, 35.172253], - [133.47879, 35.178463], - [133.489273, 35.183296], - [133.501587, 35.185738], - [133.510986, 35.189308], - [133.524567, 35.182034], - [133.523972, 35.200375], - [133.521805, 35.210339], - [133.514374, 35.217945], - [133.511124, 35.230171], - [133.519501, 35.237312], - [133.529388, 35.235237], - [133.539474, 35.234341], - [133.548401, 35.240181], - [133.559677, 35.240742], - [133.564957, 35.249966], - [133.56955, 35.261757], - [133.573883, 35.271534], - [133.573593, 35.282356], - [133.579132, 35.292549], - [133.57869, 35.302917], - [133.583298, 35.313435], - [133.590591, 35.321629], - [133.5914, 35.333305], - [133.599167, 35.341682], - [133.609451, 35.338337], - [133.619965, 35.336491], - [133.64122, 35.336033], - [133.654816, 35.331497], - [133.665237, 35.323158], - [133.675583, 35.320229], - [133.68541, 35.315636], - [133.694214, 35.32082], - [133.705795, 35.321369], - [133.717773, 35.31889], - [133.728058, 35.315971], - [133.738846, 35.315376], - [133.75, 35.315041], - [133.757599, 35.30703], - [133.7742, 35.300522], - [133.783295, 35.295277], - [133.794525, 35.289867], - [133.804443, 35.284218], - [133.810532, 35.275112], - [133.814178, 35.264145], - [133.820999, 35.255287], - [133.830719, 35.246445], - [133.846451, 35.249783], - [133.854431, 35.258259], - [133.864212, 35.267277], - [133.868942, 35.281456], - [133.874298, 35.289936], - [133.886108, 35.291412], - [133.895248, 35.296711], - [133.904861, 35.300632], - [133.914398, 35.303818], - [133.933136, 35.310421], - [133.930573, 35.320927], - [133.934601, 35.330334], - [133.944672, 35.330666], - [133.959061, 35.339035], - [133.969147, 35.343204], - [133.980591, 35.340935], - [133.990067, 35.344379], - [134, 35.349751] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "広島県", - "name": "Hiroshima", - "ISOCODE": "JP-34", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:09+0100", - "cartodb_id": 129 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [132.874619, 35.098534], - [132.894745, 35.10162], - [132.903244, 35.095894], - [132.909195, 35.087284], - [132.923126, 35.080841], - [132.933319, 35.079304], - [132.943726, 35.076832], - [132.953049, 35.072334], - [132.964462, 35.075905], - [132.980637, 35.083309], - [132.992996, 35.097996], - [133.008224, 35.087284], - [133.018143, 35.08329], - [133.033417, 35.070004], - [133.042587, 35.064857], - [133.054901, 35.067257], - [133.061646, 35.076088], - [133.072205, 35.078026], - [133.08284, 35.077583], - [133.09314, 35.078835], - [133.103882, 35.079262], - [133.114685, 35.082497], - [133.125, 35.080242], - [133.143951, 35.073174], - [133.144211, 35.062256], - [133.163177, 35.070698], - [133.171585, 35.064575], - [133.182526, 35.065056], - [133.192886, 35.066734], - [133.203857, 35.069145], - [133.215576, 35.070515], - [133.231186, 35.064674], - [133.234833, 35.074009], - [133.251022, 35.075439], - [133.263626, 35.060581], - [133.272141, 35.054569], - [133.27565, 35.04464], - [133.284561, 35.038139], - [133.294067, 35.031681], - [133.299774, 35.023102], - [133.305984, 35.015156], - [133.314606, 35.009861], - [133.323212, 35.003643], - [133.322937, 34.987743], - [133.317108, 34.97868], - [133.309372, 34.97073], - [133.306305, 34.961033], - [133.299927, 34.953236], - [133.305649, 34.943813], - [133.311905, 34.933784], - [133.304626, 34.926781], - [133.307175, 34.916626], - [133.301453, 34.907215], - [133.299393, 34.896748], - [133.2995, 34.886578], - [133.306946, 34.879585], - [133.312057, 34.870758], - [133.320114, 34.863491], - [133.32933, 34.853954], - [133.338043, 34.841328], - [133.348099, 34.826435], - [133.365784, 34.816895], - [133.375, 34.81144], - [133.380707, 34.803009], - [133.378159, 34.790749], - [133.375, 34.780811], - [133.369019, 34.765659], - [133.365845, 34.756054], - [133.372162, 34.74065], - [133.363327, 34.725426], - [133.371857, 34.718834], - [133.373001, 34.708271], - [133.376663, 34.694653], - [133.38446, 34.687607], - [133.386658, 34.676506], - [133.39566, 34.672092], - [133.405289, 34.66663], - [133.401825, 34.656002], - [133.396927, 34.646442], - [133.390533, 34.638294], - [133.394958, 34.628899], - [133.386139, 34.618385], - [133.397049, 34.604053], - [133.400787, 34.593952], - [133.408051, 34.5868], - [133.424698, 34.58329], - [133.431839, 34.564926], - [133.441101, 34.558113], - [133.44783, 34.549049], - [133.452011, 34.539608], - [133.452545, 34.522999], - [133.450684, 34.512386], - [133.448227, 34.502571], - [133.458374, 34.499962], - [133.453705, 34.486893], - [133.453873, 34.472958], - [133.451721, 34.472664], - [133.447281, 34.449505], - [133.438095, 34.450512], - [133.428909, 34.451523], - [133.421326, 34.452255], - [133.419464, 34.449894], - [133.428162, 34.442295], - [133.436417, 34.435993], - [133.442215, 34.430927], - [133.44281, 34.426674], - [133.447433, 34.421566], - [133.440231, 34.414421], - [133.416687, 34.433365], - [133.392822, 34.448887], - [133.399338, 34.43903], - [133.407608, 34.4324], - [133.412354, 34.427731], - [133.42099, 34.418385], - [133.41687, 34.413315], - [133.413513, 34.408928], - [133.402451, 34.415791], - [133.39978, 34.413731], - [133.3983, 34.411377], - [133.402451, 34.407902], - [133.401459, 34.403595], - [133.405533, 34.401428], - [133.406067, 34.398819], - [133.401215, 34.39241], - [133.398972, 34.389374], - [133.396698, 34.387325], - [133.392258, 34.388821], - [133.388687, 34.388702], - [133.391281, 34.38369], - [133.390472, 34.381599], - [133.389008, 34.377777], - [133.380127, 34.373764], - [133.372604, 34.367073], - [133.368881, 34.365711], - [133.354324, 34.364872], - [133.352188, 34.373581], - [133.345016, 34.376713], - [133.337219, 34.376484], - [133.33284, 34.37907], - [133.329514, 34.374039], - [133.328339, 34.372257], - [133.318298, 34.377598], - [133.311447, 34.384914], - [133.303284, 34.381542], - [133.297745, 34.381588], - [133.287643, 34.38818], - [133.284027, 34.396217], - [133.278488, 34.390415], - [133.268127, 34.391357], - [133.257538, 34.386032], - [133.250412, 34.387695], - [133.248947, 34.392456], - [133.257492, 34.398769], - [133.261398, 34.395752], - [133.263885, 34.396244], - [133.265762, 34.399433], - [133.274979, 34.401794], - [133.27713, 34.404366], - [133.278351, 34.409756], - [133.279663, 34.415508], - [133.275375, 34.42144], - [133.275681, 34.42625], - [133.268845, 34.438576], - [133.263321, 34.432564], - [133.262268, 34.439217], - [133.257721, 34.439709], - [133.255844, 34.43652], - [133.257568, 34.431351], - [133.255417, 34.428986], - [133.252197, 34.433487], - [133.24762, 34.434601], - [133.246475, 34.426212], - [133.237625, 34.421146], - [133.236755, 34.417984], - [133.239578, 34.411179], - [133.237213, 34.407558], - [133.221191, 34.405613], - [133.213486, 34.408932], - [133.210205, 34.407059], - [133.206116, 34.404739], - [133.200134, 34.403305], - [133.193558, 34.39851], - [133.150253, 34.387367], - [133.135513, 34.379395], - [133.12677, 34.377869], - [133.119141, 34.379513], - [133.097824, 34.38908], - [133.092758, 34.389759], - [133.091248, 34.384281], - [133.086472, 34.383923], - [133.078323, 34.386173], - [133.076904, 34.384041], - [133.079361, 34.37994], - [133.09259, 34.371372], - [133.083389, 34.341431], - [133.079803, 34.337349], - [133.069168, 34.338894], - [133.058609, 34.338558], - [133.040161, 34.32962], - [133.026642, 34.328354], - [133.018234, 34.324955], - [133.01297, 34.324577], - [133.008865, 34.326534], - [133.00383, 34.331802], - [132.993546, 34.33147], - [132.988464, 34.326923], - [132.971344, 34.332844], - [132.965881, 34.336636], - [132.960327, 34.336872], - [132.957916, 34.334705], - [132.952606, 34.335369], - [132.949142, 34.334209], - [132.944687, 34.327381], - [132.938797, 34.322876], - [132.938126, 34.322365], - [132.926315, 34.322189], - [132.921982, 34.323505], - [132.924545, 34.32756], - [132.921692, 34.329346], - [132.914917, 34.323692], - [132.903687, 34.322071], - [132.894592, 34.317593], - [132.891357, 34.311638], - [132.888992, 34.313648], - [132.884537, 34.312248], - [132.879959, 34.307919], - [132.878601, 34.304951], - [132.880554, 34.300838], - [132.879395, 34.29892], - [132.876053, 34.30027], - [132.867508, 34.295181], - [132.863434, 34.296093], - [132.858917, 34.290928], - [132.854736, 34.2887], - [132.852951, 34.294491], - [132.846878, 34.296528], - [132.845032, 34.29715], - [132.839828, 34.310966], - [132.832733, 34.311985], - [132.830093, 34.31461], - [132.821655, 34.312447], - [132.814911, 34.30637], - [132.811646, 34.311272], - [132.801865, 34.305721], - [132.803711, 34.298683], - [132.79451, 34.281452], - [132.795471, 34.277309], - [132.791748, 34.271126], - [132.783829, 34.273571], - [132.781708, 34.276005], - [132.774429, 34.275547], - [132.767548, 34.277611], - [132.76329, 34.277256], - [132.762695, 34.273895], - [132.764008, 34.270809], - [132.766113, 34.265865], - [132.760788, 34.256702], - [132.763855, 34.255764], - [132.768219, 34.258835], - [132.772522, 34.258358], - [132.777222, 34.254757], - [132.778687, 34.250629], - [132.777542, 34.248295], - [132.76796, 34.24379], - [132.767456, 34.238968], - [132.755768, 34.236481], - [132.748566, 34.239784], - [132.741302, 34.239326], - [132.706161, 34.233517], - [132.69928, 34.230354], - [132.697739, 34.226124], - [132.698822, 34.224491], - [132.693558, 34.217796], - [132.692764, 34.210075], - [132.688019, 34.204689], - [132.683884, 34.211857], - [132.678955, 34.210011], - [132.673157, 34.21545], - [132.663757, 34.212406], - [132.666656, 34.204987], - [132.664734, 34.203041], - [132.660248, 34.202465], - [132.658112, 34.199883], - [132.651794, 34.200706], - [132.642609, 34.198502], - [132.641113, 34.203255], - [132.633636, 34.202156], - [132.631088, 34.207912], - [132.624893, 34.206024], - [132.620926, 34.21006], - [132.619659, 34.215027], - [132.621902, 34.220329], - [132.613663, 34.21941], - [132.60881, 34.225716], - [132.604202, 34.222416], - [132.600906, 34.223137], - [132.593521, 34.210548], - [132.571854, 34.19223], - [132.56427, 34.193417], - [132.557159, 34.189823], - [132.546097, 34.190258], - [132.544769, 34.191673], - [132.548065, 34.205368], - [132.547272, 34.210979], - [132.545303, 34.215088], - [132.539261, 34.219883], - [132.542664, 34.222095], - [132.552017, 34.22097], - [132.552612, 34.224125], - [132.556335, 34.224884], - [132.5569, 34.228664], - [132.560593, 34.230259], - [132.561432, 34.233215], - [132.559219, 34.237103], - [132.54837, 34.237965], - [132.545914, 34.241844], - [132.533752, 34.238899], - [132.529266, 34.242916], - [132.532837, 34.246803], - [132.531662, 34.249897], - [132.526184, 34.253666], - [132.521011, 34.251808], - [132.516464, 34.25206], - [132.517456, 34.257111], - [132.515457, 34.261635], - [132.521179, 34.277298], - [132.505066, 34.300625], - [132.504562, 34.301346], - [132.496826, 34.309837], - [132.507614, 34.329449], - [132.501831, 34.334042], - [132.495865, 34.332573], - [132.493988, 34.334801], - [132.498245, 34.344776], - [132.500946, 34.345917], - [132.507507, 34.345528], - [132.5103, 34.335812], - [132.51535, 34.339966], - [132.518356, 34.340492], - [132.525787, 34.347237], - [132.529785, 34.348007], - [132.531616, 34.351414], - [132.522903, 34.359039], - [132.519821, 34.36039], - [132.516891, 34.358612], - [132.505157, 34.356724], - [132.505188, 34.375107], - [132.499359, 34.380745], - [132.496063, 34.381042], - [132.502502, 34.368954], - [132.49823, 34.359188], - [132.495285, 34.357826], - [132.480927, 34.362942], - [132.477493, 34.361149], - [132.477127, 34.353821], - [132.47258, 34.349476], - [132.467239, 34.350327], - [132.460297, 34.34861], - [132.457458, 34.359367], - [132.463043, 34.363125], - [132.465347, 34.36697], - [132.464508, 34.36861], - [132.460953, 34.369316], - [132.459427, 34.369469], - [132.457443, 34.373783], - [132.45401, 34.36739], - [132.455948, 34.363907], - [132.453857, 34.360699], - [132.450089, 34.360558], - [132.448776, 34.35675], - [132.44426, 34.356583], - [132.444489, 34.361816], - [132.442612, 34.363834], - [132.438065, 34.359489], - [132.43605, 34.350224], - [132.425491, 34.354637], - [132.433029, 34.368912], - [132.431229, 34.369682], - [132.428329, 34.367279], - [132.422791, 34.358089], - [132.41507, 34.361145], - [132.427887, 34.384808], - [132.425888, 34.384735], - [132.415436, 34.373066], - [132.399902, 34.371655], - [132.390228, 34.367645], - [132.384399, 34.365227], - [132.376923, 34.359097], - [132.367722, 34.357082], - [132.355148, 34.356819], - [132.353363, 34.352779], - [132.347198, 34.35025], - [132.343292, 34.343628], - [132.336258, 34.343361], - [132.323196, 34.333675], - [132.321823, 34.322132], - [132.310364, 34.311043], - [132.305969, 34.304192], - [132.288345, 34.290775], - [132.287567, 34.288754], - [132.284607, 34.281021], - [132.279343, 34.276226], - [132.268402, 34.274136], - [132.266495, 34.272182], - [132.267639, 34.269718], - [132.260483, 34.267353], - [132.253418, 34.258724], - [132.243317, 34.255199], - [132.233749, 34.246265], - [132.228195, 34.237904], - [132.228622, 34.2304], - [132.224976, 34.228168], - [132.232544, 34.226181], - [132.229156, 34.223812], - [132.217361, 34.219524], - [132.209915, 34.226273], - [132.19722, 34.227581], - [132.187149, 34.224731], - [132.17009, 34.230446], - [132.16098, 34.225761], - [132.152451, 34.232704], - [132.149261, 34.249805], - [132.142365, 34.257294], - [132.137497, 34.266621], - [132.140884, 34.277962], - [132.135178, 34.288033], - [132.126923, 34.294361], - [132.126358, 34.309391], - [132.131073, 34.320946], - [132.125992, 34.33057], - [132.116425, 34.327137], - [132.103424, 34.333195], - [132.101608, 34.343147], - [132.092743, 34.347786], - [132.084335, 34.353786], - [132.072174, 34.352978], - [132.073685, 34.363953], - [132.07518, 34.374088], - [132.079758, 34.383625], - [132.07338, 34.392075], - [132.076599, 34.401619], - [132.071991, 34.411125], - [132.079773, 34.422756], - [132.079453, 34.434513], - [132.080597, 34.444988], - [132.071198, 34.464058], - [132.065536, 34.47348], - [132.059799, 34.482437], - [132.056625, 34.492577], - [132.040894, 34.499958], - [132.048386, 34.507877], - [132.050293, 34.51823], - [132.056061, 34.526756], - [132.065948, 34.530342], - [132.076538, 34.531792], - [132.086319, 34.534161], - [132.092987, 34.542316], - [132.101349, 34.549583], - [132.110092, 34.556042], - [132.118073, 34.562492], - [132.120834, 34.57386], - [132.12709, 34.583286], - [132.12532, 34.596844], - [132.119461, 34.60545], - [132.124893, 34.619179], - [132.132843, 34.626564], - [132.128876, 34.637119], - [132.142929, 34.651604], - [132.150024, 34.659458], - [132.156967, 34.672203], - [132.164215, 34.680126], - [132.156967, 34.689796], - [132.144745, 34.688484], - [132.136276, 34.694302], - [132.143097, 34.706547], - [132.151291, 34.714657], - [132.16008, 34.720028], - [132.170776, 34.725986], - [132.179474, 34.731903], - [132.189529, 34.730865], - [132.198975, 34.736057], - [132.204987, 34.745457], - [132.2155, 34.741749], - [132.224838, 34.750538], - [132.228287, 34.760715], - [132.235138, 34.769882], - [132.242813, 34.776737], - [132.244873, 34.787758], - [132.240692, 34.798283], - [132.253784, 34.803898], - [132.270844, 34.79752], - [132.280731, 34.79361], - [132.281998, 34.781773], - [132.291138, 34.776283], - [132.301193, 34.773678], - [132.306, 34.783791], - [132.311966, 34.792259], - [132.322083, 34.794117], - [132.331039, 34.78833], - [132.34375, 34.788422], - [132.352539, 34.79343], - [132.364349, 34.79702], - [132.375, 34.797787], - [132.385559, 34.791626], - [132.389923, 34.779469], - [132.401474, 34.78022], - [132.409348, 34.78817], - [132.417557, 34.794529], - [132.427399, 34.798317], - [132.423691, 34.808685], - [132.434036, 34.81229], - [132.444473, 34.814487], - [132.452332, 34.807972], - [132.456924, 34.797462], - [132.467209, 34.799309], - [132.477753, 34.795967], - [132.489227, 34.794796], - [132.5, 34.79612], - [132.509598, 34.792824], - [132.518692, 34.799316], - [132.529449, 34.795818], - [132.539734, 34.791985], - [132.549454, 34.799549], - [132.558304, 34.804527], - [132.568985, 34.802757], - [132.576065, 34.809902], - [132.585205, 34.81493], - [132.59465, 34.820316], - [132.601349, 34.828121], - [132.61441, 34.836311], - [132.624603, 34.839012], - [132.635498, 34.836754], - [132.651077, 34.836746], - [132.662384, 34.828941], - [132.675018, 34.841576], - [132.683945, 34.847305], - [132.693939, 34.843952], - [132.703873, 34.842243], - [132.711594, 34.856361], - [132.707382, 34.865501], - [132.703232, 34.87867], - [132.692612, 34.881046], - [132.678024, 34.891468], - [132.668457, 34.887409], - [132.650635, 34.896908], - [132.649124, 34.906982], - [132.658875, 34.920021], - [132.668213, 34.924404], - [132.678131, 34.929317], - [132.682617, 34.938416], - [132.6922, 34.948883], - [132.703323, 34.949707], - [132.713562, 34.95084], - [132.723007, 34.944935], - [132.730377, 34.95327], - [132.740326, 34.957066], - [132.752792, 34.959522], - [132.753769, 34.975067], - [132.765961, 34.977928], - [132.774414, 34.99416], - [132.78389, 34.999962], - [132.789642, 35.010178], - [132.799164, 35.017612], - [132.808273, 35.023304], - [132.81488, 35.032162], - [132.821854, 35.040089], - [132.831818, 35.043877], - [132.830231, 35.057804], - [132.837738, 35.066174], - [132.847107, 35.073833], - [132.85405, 35.081554], - [132.862274, 35.089428], - [132.874619, 35.098534] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "山口県", - "name": "Yamaguchi", - "ISOCODE": "JP-35", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:15+0100", - "cartodb_id": 142 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [131.722458, 34.583282], - [131.726868, 34.568874], - [131.717178, 34.563087], - [131.7052, 34.562164], - [131.703537, 34.547958], - [131.707092, 34.538414], - [131.704071, 34.527546], - [131.695679, 34.519669], - [131.684692, 34.515594], - [131.676605, 34.509197], - [131.670761, 34.500828], - [131.680634, 34.492699], - [131.683029, 34.482258], - [131.69223, 34.476765], - [131.702316, 34.471687], - [131.696381, 34.462914], - [131.698395, 34.451073], - [131.696487, 34.440849], - [131.701492, 34.431637], - [131.711304, 34.428703], - [131.723724, 34.425423], - [131.73407, 34.42812], - [131.743988, 34.425915], - [131.751923, 34.433281], - [131.761581, 34.430641], - [131.771652, 34.432621], - [131.782455, 34.432514], - [131.796402, 34.433281], - [131.796722, 34.423229], - [131.789337, 34.406921], - [131.786896, 34.396545], - [131.776962, 34.391216], - [131.769241, 34.381657], - [131.768707, 34.368523], - [131.771744, 34.357334], - [131.780807, 34.346336], - [131.777451, 34.336372], - [131.787064, 34.32832], - [131.797577, 34.323875], - [131.801529, 34.313965], - [131.81427, 34.309223], - [131.821533, 34.300236], - [131.836395, 34.308006], - [131.847504, 34.307564], - [131.857483, 34.303028], - [131.874969, 34.304386], - [131.888062, 34.31176], - [131.89328, 34.320759], - [131.902603, 34.31588], - [131.913177, 34.323746], - [131.922409, 34.33358], - [131.932755, 34.32967], - [131.94136, 34.323837], - [131.949066, 34.316864], - [131.957581, 34.307194], - [131.964294, 34.315208], - [131.974167, 34.323296], - [131.97728, 34.333298], - [131.983566, 34.341389], - [131.992142, 34.349728], - [132.002579, 34.362522], - [132.013702, 34.363365], - [132.01442, 34.373932], - [132.009537, 34.382771], - [132.004028, 34.392193], - [131.999969, 34.403809], - [131.992493, 34.411507], - [132, 34.424778], - [132.010208, 34.428387], - [132.018494, 34.434349], - [132.018723, 34.445499], - [132.024536, 34.454704], - [132.033829, 34.459488], - [132.043396, 34.464882], - [132.057678, 34.464638], - [132.065536, 34.47348], - [132.071198, 34.464058], - [132.080597, 34.444988], - [132.079453, 34.434513], - [132.079773, 34.422756], - [132.071991, 34.411125], - [132.076599, 34.401619], - [132.07338, 34.392075], - [132.079758, 34.383625], - [132.07518, 34.374088], - [132.073685, 34.363953], - [132.072174, 34.352978], - [132.084335, 34.353786], - [132.092743, 34.347786], - [132.101608, 34.343147], - [132.103424, 34.333195], - [132.116425, 34.327137], - [132.125992, 34.33057], - [132.131073, 34.320946], - [132.126358, 34.309391], - [132.126923, 34.294361], - [132.135178, 34.288033], - [132.140884, 34.277962], - [132.137497, 34.266621], - [132.142365, 34.257294], - [132.149261, 34.249805], - [132.152451, 34.232704], - [132.16098, 34.225761], - [132.17009, 34.230446], - [132.187149, 34.224731], - [132.19722, 34.227581], - [132.209915, 34.226273], - [132.217361, 34.219524], - [132.229156, 34.223812], - [132.232544, 34.226181], - [132.237473, 34.224892], - [132.246521, 34.211452], - [132.245178, 34.208477], - [132.235596, 34.204556], - [132.245728, 34.203068], - [132.247589, 34.201256], - [132.244308, 34.192566], - [132.237289, 34.187908], - [132.237747, 34.184166], - [132.247742, 34.167004], - [132.252808, 34.161766], - [132.251419, 34.159622], - [132.243103, 34.160137], - [132.239197, 34.158314], - [132.24054, 34.156696], - [132.250946, 34.154591], - [132.251846, 34.151909], - [132.249847, 34.142849], - [132.246933, 34.141068], - [132.237198, 34.122097], - [132.225769, 34.138157], - [132.225266, 34.124557], - [132.223648, 34.1222], - [132.219727, 34.120377], - [132.206757, 34.119034], - [132.202728, 34.114906], - [132.215714, 34.075932], - [132.212677, 34.054085], - [132.223648, 34.041771], - [132.222748, 34.029728], - [132.222214, 34.022705], - [132.223312, 34.012093], - [132.22142, 33.996769], - [132.207962, 33.98204], - [132.2043, 33.971455], - [132.190735, 33.954212], - [132.184174, 33.955208], - [132.169708, 33.95401], - [132.16066, 33.95031], - [132.140671, 33.952404], - [132.137482, 33.952736], - [132.127487, 33.952133], - [132.121643, 33.953571], - [132.119049, 33.950752], - [132.125427, 33.94453], - [132.128159, 33.936073], - [132.132095, 33.932888], - [132.130692, 33.922386], - [132.137634, 33.901772], - [132.136185, 33.892105], - [132.141327, 33.889595], - [132.136734, 33.886906], - [132.135651, 33.883938], - [132.14621, 33.874329], - [132.151276, 33.873276], - [132.153809, 33.868362], - [132.153305, 33.863956], - [132.155411, 33.861191], - [132.161606, 33.858646], - [132.165573, 33.850655], - [132.163055, 33.841991], - [132.157211, 33.839252], - [132.145813, 33.828568], - [132.13031, 33.832756], - [132.124435, 33.830643], - [132.118942, 33.839195], - [132.121933, 33.8437], - [132.118652, 33.857357], - [132.123947, 33.865299], - [132.123077, 33.871948], - [132.119949, 33.874123], - [132.1017, 33.878197], - [132.080215, 33.890495], - [132.078003, 33.898346], - [132.073349, 33.900875], - [132.051056, 33.905407], - [132.063583, 33.914059], - [132.064026, 33.9193], - [132.066818, 33.922962], - [132.064011, 33.923897], - [132.060425, 33.920826], - [132.054962, 33.920189], - [132.05748, 33.915485], - [132.047394, 33.908184], - [132.043427, 33.903217], - [132.034988, 33.902039], - [132.02652, 33.897099], - [132.016541, 33.900665], - [131.98349, 33.922085], - [131.978271, 33.921452], - [131.974335, 33.916069], - [131.977341, 33.911594], - [131.973938, 33.909992], - [131.970642, 33.910694], - [131.967422, 33.914322], - [131.968048, 33.920616], - [131.972473, 33.92205], - [131.973007, 33.925625], - [131.963806, 33.937363], - [131.95372, 33.942589], - [131.945999, 33.941853], - [131.937393, 33.943375], - [131.92984, 33.948284], - [131.927597, 33.95237], - [131.923553, 33.957218], - [131.916504, 33.961941], - [131.903549, 33.964951], - [131.886429, 33.982834], - [131.8806, 33.984051], - [131.868134, 33.982903], - [131.870529, 33.993031], - [131.868515, 33.997334], - [131.863113, 33.999615], - [131.856735, 34.005615], - [131.846313, 34.003922], - [131.841095, 34.003075], - [131.837006, 34.004364], - [131.830902, 33.99345], - [131.821381, 33.985317], - [131.807358, 33.980961], - [131.801041, 33.981739], - [131.799408, 33.97979], - [131.806946, 33.975304], - [131.81929, 33.974365], - [131.822052, 33.970093], - [131.825607, 33.96941], - [131.825974, 33.967545], - [131.820297, 33.961872], - [131.815323, 33.961243], - [131.808685, 33.963467], - [131.80513, 33.96833], - [131.782867, 33.967594], - [131.781143, 33.971279], - [131.780075, 33.971504], - [131.777832, 33.971973], - [131.776154, 33.974827], - [131.77951, 33.977478], - [131.790863, 33.980259], - [131.786407, 33.987385], - [131.787964, 33.990585], - [131.794922, 33.995686], - [131.804687, 34.008221], - [131.815079, 34.010334], - [131.820145, 34.013683], - [131.825623, 34.014332], - [131.830292, 34.02393], - [131.828476, 34.029079], - [131.825668, 34.030003], - [131.821732, 34.028793], - [131.810532, 34.035423], - [131.805817, 34.034805], - [131.802383, 34.037582], - [131.802277, 34.04343], - [131.795822, 34.046288], - [131.795181, 34.047348], - [131.793594, 34.049953], - [131.790817, 34.050255], - [131.788025, 34.050762], - [131.786652, 34.052795], - [131.783569, 34.049946], - [131.776489, 34.05069], - [131.771652, 34.047768], - [131.766663, 34.051521], - [131.760498, 34.049797], - [131.753998, 34.041367], - [131.751282, 34.040623], - [131.747772, 34.044651], - [131.747833, 34.047791], - [131.752991, 34.053444], - [131.755859, 34.055866], - [131.76033, 34.056683], - [131.760696, 34.057205], - [131.762634, 34.059917], - [131.758133, 34.059517], - [131.755127, 34.063564], - [131.749023, 34.064976], - [131.746536, 34.060478], - [131.740829, 34.055428], - [131.730057, 34.055382], - [131.724609, 34.050133], - [131.721161, 34.05312], - [131.713867, 34.053429], - [131.711609, 34.049572], - [131.708298, 34.050262], - [131.705139, 34.048664], - [131.703766, 34.042545], - [131.701416, 34.039936], - [131.698303, 34.041679], - [131.693542, 34.041473], - [131.696777, 34.046001], - [131.691956, 34.046837], - [131.688797, 34.045238], - [131.684357, 34.04797], - [131.681229, 34.045956], - [131.680679, 34.042797], - [131.682617, 34.039955], - [131.678101, 34.035789], - [131.670502, 34.037128], - [131.664825, 34.034355], - [131.654694, 34.033302], - [131.651779, 34.031712], - [131.649399, 34.033699], - [131.651428, 34.037338], - [131.648285, 34.039291], - [131.636887, 34.037121], - [131.632614, 34.033379], - [131.627167, 34.032303], - [131.619461, 34.019428], - [131.611679, 34.015533], - [131.604752, 34.021912], - [131.605103, 34.028404], - [131.601837, 34.036201], - [131.593063, 34.040203], - [131.590515, 34.032986], - [131.591599, 34.027809], - [131.588821, 34.020164], - [131.589996, 34.017498], - [131.588425, 34.016815], - [131.58165, 34.013882], - [131.579254, 34.012844], - [131.576202, 34.009781], - [131.555893, 34.00198], - [131.551331, 34.002613], - [131.547699, 34.000778], - [131.54631, 33.999046], - [131.549667, 33.993553], - [131.542587, 33.99052], - [131.536972, 33.995911], - [131.531326, 33.994194], - [131.523621, 34.000954], - [131.51442, 33.999706], - [131.510849, 34.000591], - [131.518356, 34.008659], - [131.518127, 34.012199], - [131.515503, 34.013966], - [131.506927, 34.014832], - [131.501648, 34.018772], - [131.510361, 34.027523], - [131.509995, 34.03315], - [131.504456, 34.033527], - [131.499161, 34.030155], - [131.490845, 34.019123], - [131.488113, 34.018787], - [131.485229, 34.020748], - [131.48053, 34.031193], - [131.478088, 34.030041], - [131.474121, 34.021709], - [131.475204, 34.016743], - [131.477936, 34.013313], - [131.486465, 34.009312], - [131.483475, 34.005207], - [131.473206, 33.997425], - [131.470505, 33.996468], - [131.451462, 34.003963], - [131.446777, 34.002911], - [131.452591, 33.99461], - [131.453964, 33.994007], - [131.462128, 33.990444], - [131.467712, 33.985683], - [131.464111, 33.979252], - [131.461685, 33.978096], - [131.459335, 33.97966], - [131.455872, 33.986607], - [131.44516, 33.985493], - [131.444046, 33.983353], - [131.446411, 33.977818], - [131.443817, 33.975403], - [131.440002, 33.976273], - [131.435822, 33.982559], - [131.42778, 33.983028], - [131.42688, 33.985287], - [131.435181, 34.003845], - [131.432083, 34.00893], - [131.427719, 34.010609], - [131.417343, 34.004284], - [131.412384, 33.992958], - [131.410812, 33.989357], - [131.404922, 33.987415], - [131.402145, 33.980183], - [131.39801, 33.978317], - [131.395874, 33.987835], - [131.403992, 33.994057], - [131.407761, 34.0051], - [131.418335, 34.016033], - [131.414139, 34.018764], - [131.400711, 34.016895], - [131.397232, 34.02029], - [131.399353, 34.029793], - [131.402191, 34.032429], - [131.409058, 34.034836], - [131.406021, 34.039085], - [131.403671, 34.055485], - [131.401062, 34.049515], - [131.396347, 34.04491], - [131.389496, 34.042297], - [131.387115, 34.025257], - [131.377869, 34.021069], - [131.37294, 34.016033], - [131.368256, 34.003487], - [131.365997, 33.984783], - [131.359146, 33.982166], - [131.356735, 33.979477], - [131.350525, 33.972572], - [131.355591, 33.960476], - [131.346756, 33.954006], - [131.331985, 33.946213], - [131.321274, 33.945297], - [131.315109, 33.940201], - [131.310791, 33.941044], - [131.305664, 33.938923], - [131.302231, 33.934166], - [131.292725, 33.930374], - [131.279526, 33.929131], - [131.27597, 33.926243], - [131.274506, 33.918232], - [131.261169, 33.919067], - [131.253937, 33.922279], - [131.236557, 33.912678], - [131.230087, 33.912163], - [131.225662, 33.914463], - [131.218872, 33.922291], - [131.219467, 33.924618], - [131.230896, 33.92955], - [131.228745, 33.93906], - [131.21521, 33.931728], - [131.208054, 33.930344], - [131.202972, 33.938461], - [131.190079, 33.936592], - [131.184753, 33.93383], - [131.184647, 33.924629], - [131.184113, 33.925152], - [131.162842, 33.946365], - [131.160568, 33.950226], - [131.162323, 33.953865], - [131.170425, 33.956341], - [131.173981, 33.959232], - [131.172119, 33.964367], - [131.17511, 33.968273], - [131.170593, 33.972027], - [131.169617, 33.975323], - [131.171295, 33.980003], - [131.177307, 33.987396], - [131.173874, 33.989948], - [131.163651, 33.985489], - [131.159363, 33.985703], - [131.153625, 33.988979], - [131.151306, 33.993465], - [131.154541, 34.001144], - [131.154114, 34.007187], - [131.151352, 34.011024], - [131.142761, 33.993889], - [131.138199, 33.990952], - [131.132141, 33.991497], - [131.120056, 34.006165], - [131.105286, 34.024059], - [131.094467, 34.031895], - [131.081055, 34.029781], - [131.062424, 34.037861], - [131.05159, 34.038586], - [131.04744, 34.054687], - [131.043823, 34.055824], - [131.042221, 34.046906], - [131.035568, 34.041561], - [131.034866, 34.033794], - [131.02504, 34.027458], - [131.028976, 34.021381], - [131.027924, 34.018612], - [131.01918, 34.011074], - [131.011993, 34.016781], - [130.999191, 34.002979], - [131.005478, 33.995556], - [131.00267, 33.989357], - [130.998093, 33.986622], - [131.000961, 33.981537], - [130.999115, 33.979355], - [130.994888, 33.978939], - [130.988358, 33.975479], - [130.965836, 33.960983], - [130.9543, 33.950932], - [130.949326, 33.949921], - [130.942245, 33.943924], - [130.925293, 33.942657], - [130.930923, 33.937504], - [130.931839, 33.931904], - [130.927399, 33.930847], - [130.927032, 33.928947], - [130.931229, 33.922886], - [130.931366, 33.917458], - [130.928421, 33.909786], - [130.925171, 33.906071], - [130.91188, 33.906448], - [130.907898, 33.909382], - [130.906693, 33.912251], - [130.912338, 33.917339], - [130.91066, 33.919765], - [130.904404, 33.916107], - [130.902298, 33.921017], - [130.903229, 33.925453], - [130.896423, 33.933056], - [130.894257, 33.933617], - [130.884933, 33.936031], - [130.878052, 33.94091], - [130.876511, 33.945011], - [130.88002, 33.948326], - [130.882767, 33.948463], - [130.886948, 33.942612], - [130.891495, 33.942215], - [130.89505, 33.938213], - [130.900909, 33.936832], - [130.904999, 33.939129], - [130.905899, 33.943985], - [130.912643, 33.944321], - [130.911118, 33.948009], - [130.921005, 33.970871], - [130.913925, 33.985569], - [130.914001, 33.99498], - [130.918808, 34.004837], - [130.919739, 34.009274], - [130.916565, 34.01852], - [130.914169, 34.020283], - [130.910446, 34.019676], - [130.907837, 34.021217], - [130.904465, 34.026066], - [130.916946, 34.034008], - [130.917725, 34.040527], - [130.914154, 34.048294], - [130.913605, 34.055794], - [130.904266, 34.067032], - [130.901886, 34.065239], - [130.900986, 34.053486], - [130.899323, 34.052147], - [130.895325, 34.058846], - [130.892014, 34.059517], - [130.89003, 34.066105], - [130.886139, 34.067791], - [130.884583, 34.071896], - [130.880371, 34.074612], - [130.885025, 34.079651], - [130.883881, 34.081478], - [130.876938, 34.080292], - [130.874252, 34.082874], - [130.876205, 34.086945], - [130.873764, 34.092884], - [130.865356, 34.098103], - [130.866699, 34.100262], - [130.863876, 34.104511], - [130.868134, 34.10807], - [130.869629, 34.111698], - [130.870377, 34.129089], - [130.8741, 34.133041], - [130.883224, 34.13538], - [130.888275, 34.13501], - [130.887878, 34.13018], - [130.890244, 34.128628], - [130.901367, 34.131275], - [130.905991, 34.136734], - [130.901688, 34.144043], - [130.903687, 34.147697], - [130.909515, 34.146946], - [130.913788, 34.153851], - [130.91832, 34.153866], - [130.92981, 34.165104], - [130.931152, 34.174366], - [130.934998, 34.180412], - [130.935593, 34.186089], - [130.932526, 34.204124], - [130.929016, 34.2075], - [130.922363, 34.209053], - [130.921371, 34.212345], - [130.925049, 34.230927], - [130.912521, 34.244308], - [130.90654, 34.246937], - [130.903229, 34.250954], - [130.900757, 34.260654], - [130.899628, 34.261795], - [130.896423, 34.265038], - [130.876801, 34.278687], - [130.875809, 34.285328], - [130.880157, 34.291401], - [130.887192, 34.291546], - [130.890289, 34.293999], - [130.890701, 34.302174], - [130.892853, 34.307091], - [130.897598, 34.304195], - [130.899155, 34.306988], - [130.897308, 34.311707], - [130.900345, 34.31834], - [130.896576, 34.321705], - [130.896698, 34.326939], - [130.893829, 34.33181], - [130.896057, 34.335686], - [130.894989, 34.340023], - [130.89679, 34.34304], - [130.901367, 34.345779], - [130.903259, 34.350891], - [130.902161, 34.355644], - [130.903305, 34.357227], - [130.905136, 34.359768], - [130.911453, 34.359455], - [130.921005, 34.34927], - [130.926453, 34.350586], - [130.927597, 34.345207], - [130.931564, 34.342686], - [130.935776, 34.343731], - [130.939667, 34.348942], - [130.945496, 34.348606], - [130.949585, 34.351109], - [130.951523, 34.348698], - [130.962097, 34.352356], - [130.968918, 34.358967], - [130.974548, 34.361336], - [130.984177, 34.360554], - [130.991394, 34.365303], - [130.997925, 34.365623], - [131.002869, 34.370464], - [131.009766, 34.369129], - [131.017899, 34.37162], - [131.033478, 34.368622], - [131.037704, 34.369453], - [131.041473, 34.372982], - [131.03804, 34.375324], - [131.035843, 34.381279], - [131.024002, 34.388802], - [131.022385, 34.38982], - [131.017517, 34.401707], - [131.01474, 34.401104], - [131.010788, 34.398895], - [131.006088, 34.39571], - [131.001846, 34.394711], - [130.987503, 34.395004], - [130.975876, 34.402378], - [130.969635, 34.401649], - [130.959152, 34.403641], - [130.957352, 34.400627], - [130.959961, 34.395947], - [130.959061, 34.392391], - [130.960419, 34.388191], - [130.959457, 34.385468], - [130.95224, 34.384274], - [130.937256, 34.389385], - [130.941406, 34.394608], - [130.941483, 34.400673], - [130.949524, 34.400864], - [130.950912, 34.401737], - [130.959656, 34.407219], - [130.962143, 34.411106], - [130.960739, 34.416683], - [130.964584, 34.426281], - [130.970963, 34.425133], - [130.976257, 34.428738], - [130.977493, 34.432564], - [130.975677, 34.436657], - [130.97847, 34.43993], - [130.984985, 34.433559], - [131.0056, 34.427258], - [131.011169, 34.423557], - [131.012344, 34.421104], - [131.008072, 34.413998], - [131.016388, 34.410431], - [131.02507, 34.408768], - [131.043427, 34.409073], - [131.050995, 34.409199], - [131.055969, 34.41383], - [131.06073, 34.414268], - [131.070145, 34.419956], - [131.077148, 34.420921], - [131.08548, 34.417145], - [131.097534, 34.417725], - [131.118256, 34.406181], - [131.128616, 34.409397], - [131.132309, 34.414177], - [131.135056, 34.414516], - [131.135132, 34.406364], - [131.141083, 34.396828], - [131.140671, 34.388237], - [131.145493, 34.380524], - [131.147415, 34.378933], - [131.156189, 34.371628], - [131.162933, 34.368816], - [131.170746, 34.368771], - [131.176804, 34.372196], - [131.185974, 34.374512], - [131.192612, 34.380474], - [131.198746, 34.390171], - [131.188263, 34.399708], - [131.176819, 34.404808], - [131.178207, 34.406544], - [131.176361, 34.422344], - [131.172379, 34.425083], - [131.171982, 34.427155], - [131.176743, 34.427589], - [131.179199, 34.424988], - [131.184723, 34.425251], - [131.186447, 34.422199], - [131.190292, 34.421333], - [131.194458, 34.421387], - [131.196335, 34.421413], - [131.199539, 34.425957], - [131.20433, 34.422421], - [131.209137, 34.42202], - [131.220566, 34.424442], - [131.226868, 34.428085], - [131.238388, 34.429256], - [131.248062, 34.435146], - [131.251968, 34.433445], - [131.257217, 34.434113], - [131.258347, 34.424969], - [131.263702, 34.423965], - [131.265625, 34.421753], - [131.261597, 34.418011], - [131.266129, 34.414253], - [131.262939, 34.413059], - [131.257553, 34.414478], - [131.255753, 34.418575], - [131.253128, 34.420124], - [131.247986, 34.417999], - [131.242355, 34.419197], - [131.236603, 34.41851], - [131.229996, 34.415688], - [131.230392, 34.419922], - [131.230148, 34.420761], - [131.228699, 34.419811], - [131.217056, 34.413197], - [131.21347, 34.406757], - [131.220123, 34.398083], - [131.213882, 34.39716], - [131.211884, 34.393303], - [131.205551, 34.393631], - [131.204666, 34.388363], - [131.211929, 34.378044], - [131.211243, 34.369652], - [131.2202, 34.367565], - [131.223495, 34.371067], - [131.228409, 34.372761], - [131.224167, 34.379459], - [131.226532, 34.38166], - [131.226532, 34.385426], - [131.231232, 34.390453], - [131.232864, 34.384888], - [131.237137, 34.388641], - [131.240952, 34.388195], - [131.2509, 34.379047], - [131.256943, 34.379124], - [131.258087, 34.380848], - [131.256805, 34.388523], - [131.259308, 34.388641], - [131.263138, 34.380669], - [131.267914, 34.380684], - [131.274567, 34.386639], - [131.282928, 34.385983], - [131.281723, 34.381538], - [131.288391, 34.383312], - [131.294556, 34.381016], - [131.29538, 34.380711], - [131.306747, 34.380196], - [131.329315, 34.389187], - [131.332504, 34.394142], - [131.33136, 34.403706], - [131.342697, 34.41489], - [131.347931, 34.411999], - [131.353409, 34.413086], - [131.360031, 34.408165], - [131.379791, 34.410538], - [131.382904, 34.412979], - [131.380447, 34.415794], - [131.381561, 34.417934], - [131.38913, 34.417656], - [131.38884, 34.414505], - [131.390945, 34.413139], - [131.401932, 34.418449], - [131.404877, 34.423599], - [131.407562, 34.42477], - [131.412994, 34.422718], - [131.418228, 34.423584], - [131.418625, 34.425274], - [131.41391, 34.427776], - [131.413284, 34.42963], - [131.418198, 34.431732], - [131.41832, 34.43362], - [131.414658, 34.435543], - [131.417267, 34.437962], - [131.423721, 34.435745], - [131.42662, 34.437553], - [131.415359, 34.443935], - [131.409729, 34.44138], - [131.397003, 34.443306], - [131.400009, 34.447414], - [131.398636, 34.452789], - [131.400436, 34.456005], - [131.41272, 34.449669], - [131.416565, 34.448589], - [131.421051, 34.449421], - [131.428146, 34.452671], - [131.436417, 34.461433], - [131.438034, 34.463154], - [131.435944, 34.468075], - [131.437851, 34.469833], - [131.447495, 34.468807], - [131.448822, 34.475555], - [131.444962, 34.480606], - [131.451416, 34.482151], - [131.460373, 34.480049], - [131.466034, 34.485947], - [131.469772, 34.494476], - [131.469101, 34.496956], - [131.465057, 34.496983], - [131.461517, 34.504765], - [131.45517, 34.505524], - [131.45813, 34.510254], - [131.452866, 34.513569], - [131.460373, 34.52227], - [131.466888, 34.526745], - [131.470596, 34.53548], - [131.472549, 34.536407], - [131.476227, 34.53051], - [131.497528, 34.531269], - [131.498627, 34.531307], - [131.500885, 34.535381], - [131.50679, 34.537735], - [131.509964, 34.543312], - [131.515289, 34.546684], - [131.51799, 34.551823], - [131.520508, 34.551933], - [131.522598, 34.554745], - [131.526367, 34.554913], - [131.530472, 34.557812], - [131.535202, 34.558857], - [131.542923, 34.568188], - [131.548645, 34.569489], - [131.552734, 34.572598], - [131.556992, 34.584698], - [131.553696, 34.592705], - [131.558487, 34.596886], - [131.558563, 34.607342], - [131.560654, 34.613914], - [131.567398, 34.619019], - [131.574081, 34.621197], - [131.576859, 34.619995], - [131.579803, 34.618729], - [131.582016, 34.619663], - [131.581512, 34.622917], - [131.589096, 34.623322], - [131.592697, 34.618462], - [131.595825, 34.620899], - [131.602478, 34.619518], - [131.603958, 34.624184], - [131.607773, 34.627693], - [131.606659, 34.629318], - [131.601624, 34.628887], - [131.599503, 34.630466], - [131.595062, 34.628807], - [131.592392, 34.630989], - [131.597076, 34.640808], - [131.592346, 34.643528], - [131.599869, 34.648457], - [131.602783, 34.65799], - [131.617645, 34.666794], - [131.626678, 34.663845], - [131.635727, 34.664658], - [131.64682, 34.657196], - [131.645004, 34.651375], - [131.643463, 34.646393], - [131.644745, 34.642059], - [131.648499, 34.642639], - [131.65065, 34.644615], - [131.647537, 34.649914], - [131.651154, 34.652576], - [131.659256, 34.656273], - [131.664963, 34.654015], - [131.673859, 34.661087], - [131.675674, 34.664509], - [131.671204, 34.671211], - [131.672012, 34.674381], - [131.673965, 34.675304], - [131.677078, 34.674183], - [131.683121, 34.674831], - [131.68512, 34.675045], - [131.691528, 34.654362], - [131.697723, 34.64542], - [131.699905, 34.635654], - [131.697128, 34.623333], - [131.702087, 34.613468], - [131.712982, 34.611343], - [131.719574, 34.603214], - [131.721649, 34.593361], - [131.722458, 34.583282] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "香川県", - "name": "Kagawa", - "ISOCODE": "JP-37", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:25+0100", - "cartodb_id": 171 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [134.443512, 34.204998], - [134.441299, 34.187916], - [134.432556, 34.176628], - [134.436188, 34.166626], - [134.424835, 34.158691], - [134.414734, 34.157314], - [134.406311, 34.164059], - [134.396561, 34.160271], - [134.378571, 34.168858], - [134.370956, 34.175373], - [134.359604, 34.181831], - [134.350021, 34.178421], - [134.345398, 34.169239], - [134.335297, 34.171432], - [134.32338, 34.171936], - [134.312714, 34.170452], - [134.299698, 34.16663], - [134.294281, 34.175877], - [134.28392, 34.173996], - [134.273087, 34.178204], - [134.262589, 34.180084], - [134.246475, 34.176762], - [134.231659, 34.177341], - [134.221497, 34.175053], - [134.211517, 34.171818], - [134.193039, 34.169643], - [134.176086, 34.172447], - [134.166214, 34.166637], - [134.152863, 34.162838], - [134.146179, 34.155094], - [134.138412, 34.147892], - [134.141418, 34.130131], - [134.133682, 34.122086], - [134.125, 34.115696], - [134.108963, 34.11393], - [134.098297, 34.111229], - [134.088928, 34.115681], - [134.077911, 34.114559], - [134.061874, 34.109856], - [134.052612, 34.11414], - [134.043015, 34.098274], - [134.033478, 34.093502], - [134.029785, 34.08329], - [134.019424, 34.082691], - [134.008331, 34.081055], - [134.002365, 34.071636], - [133.989212, 34.072899], - [133.978302, 34.071568], - [133.970413, 34.078403], - [133.954132, 34.086819], - [133.946442, 34.095043], - [133.940506, 34.104008], - [133.93483, 34.112553], - [133.924637, 34.110935], - [133.915558, 34.10252], - [133.902893, 34.097923], - [133.895325, 34.104652], - [133.884735, 34.100822], - [133.875, 34.097557], - [133.864685, 34.102043], - [133.854706, 34.098564], - [133.845886, 34.092522], - [133.835236, 34.093487], - [133.825851, 34.089634], - [133.821762, 34.07299], - [133.8116, 34.068672], - [133.801315, 34.066292], - [133.792862, 34.07299], - [133.78212, 34.076591], - [133.773834, 34.069664], - [133.761475, 34.058178], - [133.753098, 34.052391], - [133.743225, 34.046806], - [133.73143, 34.040909], - [133.725021, 34.031219], - [133.724197, 34.019249], - [133.715378, 34.014088], - [133.702988, 34.01458], - [133.692825, 34.010021], - [133.680283, 34.012871], - [133.673019, 34.020618], - [133.662094, 34.024292], - [133.651184, 34.023911], - [133.640137, 34.023838], - [133.625, 34.031929], - [133.614075, 34.0298], - [133.606384, 34.035969], - [133.603592, 34.037739], - [133.606323, 34.040779], - [133.615341, 34.040607], - [133.62883, 34.048275], - [133.634369, 34.054062], - [133.638245, 34.06398], - [133.639389, 34.079876], - [133.642746, 34.083935], - [133.646927, 34.105213], - [133.64798, 34.110588], - [133.651154, 34.112762], - [133.645752, 34.116165], - [133.64386, 34.119873], - [133.642502, 34.122345], - [133.645935, 34.14415], - [133.643753, 34.148685], - [133.647995, 34.155479], - [133.650421, 34.170784], - [133.647598, 34.178852], - [133.650162, 34.184139], - [133.64978, 34.187263], - [133.641235, 34.194344], - [133.635468, 34.206924], - [133.629654, 34.207813], - [133.622635, 34.21389], - [133.615753, 34.216835], - [133.613174, 34.218227], - [133.611542, 34.221733], - [133.61293, 34.224693], - [133.610077, 34.226913], - [133.601181, 34.229805], - [133.589355, 34.236378], - [133.573898, 34.239922], - [133.580231, 34.244896], - [133.577393, 34.246906], - [133.576477, 34.25106], - [133.574646, 34.252682], - [133.559418, 34.256439], - [133.566223, 34.262264], - [133.572205, 34.26368], - [133.577499, 34.263199], - [133.586197, 34.259258], - [133.59523, 34.259502], - [133.595688, 34.258102], - [133.596664, 34.255157], - [133.601547, 34.252155], - [133.615677, 34.250866], - [133.619507, 34.249092], - [133.626541, 34.236336], - [133.630112, 34.23497], - [133.640839, 34.236717], - [133.658112, 34.231956], - [133.664444, 34.236927], - [133.680283, 34.243191], - [133.679962, 34.23859], - [133.67485, 34.23407], - [133.672516, 34.229626], - [133.675812, 34.222404], - [133.678665, 34.219975], - [133.686462, 34.226234], - [133.69043, 34.227383], - [133.698395, 34.229469], - [133.721558, 34.247822], - [133.735413, 34.253609], - [133.742523, 34.258179], - [133.74913, 34.269417], - [133.756561, 34.27253], - [133.75943, 34.276569], - [133.772232, 34.283787], - [133.776016, 34.283051], - [133.779587, 34.288776], - [133.788071, 34.290245], - [133.805145, 34.297569], - [133.812607, 34.299847], - [133.818695, 34.305012], - [133.819962, 34.311516], - [133.827744, 34.319016], - [133.823486, 34.332066], - [133.824051, 34.337299], - [133.828323, 34.344505], - [133.822784, 34.344574], - [133.828537, 34.352234], - [133.83371, 34.355289], - [133.842758, 34.355515], - [133.846359, 34.353516], - [133.844742, 34.34951], - [133.841721, 34.346241], - [133.837234, 34.341389], - [133.837128, 34.337627], - [133.841385, 34.33794], - [133.849426, 34.345242], - [133.85582, 34.356255], - [133.859268, 34.358219], - [133.862595, 34.356632], - [133.864777, 34.351887], - [133.863663, 34.347889], - [133.851547, 34.335064], - [133.837097, 34.324265], - [133.839813, 34.318901], - [133.861176, 34.326324], - [133.866211, 34.325821], - [133.871582, 34.330547], - [133.87825, 34.326954], - [133.877472, 34.33445], - [133.897491, 34.351231], - [133.893677, 34.366585], - [133.896042, 34.377918], - [133.901932, 34.38203], - [133.909241, 34.374481], - [133.912994, 34.375408], - [133.914886, 34.378796], - [133.925232, 34.370693], - [133.926529, 34.376781], - [133.928162, 34.379509], - [133.934128, 34.389492], - [133.94249, 34.380924], - [133.945786, 34.37286], - [133.948563, 34.372719], - [133.954132, 34.378906], - [133.960678, 34.378857], - [133.968765, 34.370281], - [133.970291, 34.362591], - [133.973846, 34.361839], - [133.978195, 34.366745], - [133.984146, 34.369392], - [133.990234, 34.360561], - [134.001343, 34.352055], - [134.007187, 34.350521], - [134.029831, 34.350216], - [134.036377, 34.349953], - [134.042252, 34.347584], - [134.050964, 34.350082], - [134.057541, 34.348774], - [134.070618, 34.349075], - [134.078217, 34.34737], - [134.080383, 34.342617], - [134.083588, 34.34457], - [134.08905, 34.339058], - [134.098343, 34.335804], - [134.09227, 34.340801], - [134.088501, 34.348022], - [134.089386, 34.352009], - [134.094513, 34.35672], - [134.0961, 34.361767], - [134.095917, 34.370945], - [134.098694, 34.382286], - [134.105835, 34.379108], - [134.117569, 34.358913], - [134.121719, 34.355457], - [134.123947, 34.356133], - [134.125336, 34.36013], - [134.121506, 34.369648], - [134.121872, 34.373417], - [134.128937, 34.380672], - [134.127258, 34.385647], - [134.123627, 34.38932], - [134.126404, 34.396275], - [134.134201, 34.39645], - [134.139603, 34.400955], - [134.144684, 34.399189], - [134.151443, 34.392658], - [134.160248, 34.389343], - [134.161377, 34.388912], - [134.169128, 34.382614], - [134.170609, 34.375755], - [134.164917, 34.364983], - [134.163391, 34.357643], - [134.164963, 34.348076], - [134.162018, 34.337986], - [134.162918, 34.333416], - [134.169434, 34.326462], - [134.173767, 34.324471], - [134.191315, 34.326107], - [134.193253, 34.328655], - [134.191528, 34.3353], - [134.19339, 34.340141], - [134.191132, 34.347816], - [134.194397, 34.347889], - [134.202347, 34.343052], - [134.207108, 34.343575], - [134.214111, 34.344563], - [134.21608, 34.346066], - [134.216766, 34.348377], - [134.210144, 34.358879], - [134.215973, 34.365479], - [134.220428, 34.35973], - [134.226135, 34.346077], - [134.234314, 34.341869], - [134.234711, 34.337284], - [134.241837, 34.334724], - [134.253738, 34.348339], - [134.264862, 34.346073], - [134.265869, 34.337952], - [134.267715, 34.335278], - [134.273346, 34.332268], - [134.274246, 34.327274], - [134.272125, 34.322845], - [134.272781, 34.320576], - [134.274094, 34.315998], - [134.256683, 34.302059], - [134.256546, 34.298298], - [134.263977, 34.285721], - [134.26886, 34.282276], - [134.272141, 34.281929], - [134.276764, 34.286831], - [134.281601, 34.284843], - [134.285294, 34.279076], - [134.298584, 34.271633], - [134.307785, 34.27475], - [134.313065, 34.274651], - [134.324814, 34.268425], - [134.334122, 34.259644], - [134.340927, 34.258739], - [134.344147, 34.256756], - [134.353989, 34.25066], - [134.362762, 34.251049], - [134.368118, 34.248444], - [134.373383, 34.24897], - [134.381058, 34.252468], - [134.382401, 34.258339], - [134.389923, 34.258492], - [134.402756, 34.249359], - [134.407455, 34.243191], - [134.406754, 34.241505], - [134.403519, 34.240398], - [134.401886, 34.236191], - [134.404709, 34.234158], - [134.412949, 34.235786], - [134.4216, 34.231575], - [134.413254, 34.225147], - [134.416107, 34.222073], - [134.436768, 34.210796], - [134.444901, 34.208618], - [134.443512, 34.204998] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "徳島県", - "name": "Tokushima", - "ISOCODE": "JP-36", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:32+0100", - "cartodb_id": 218 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [134.443512, 34.204998], - [134.444901, 34.208618], - [134.45929, 34.204769], - [134.465302, 34.205307], - [134.482971, 34.210663], - [134.492065, 34.217522], - [134.510468, 34.223721], - [134.522507, 34.224163], - [134.530853, 34.222023], - [134.546341, 34.224823], - [134.564087, 34.218689], - [134.573074, 34.220737], - [134.57814, 34.218861], - [134.582199, 34.217358], - [134.583389, 34.219677], - [134.581818, 34.222153], - [134.571976, 34.224056], - [134.570908, 34.226749], - [134.573563, 34.230347], - [134.586716, 34.236019], - [134.590714, 34.236721], - [134.596786, 34.235374], - [134.610504, 34.24794], - [134.620819, 34.247505], - [134.62326, 34.240871], - [134.621933, 34.234165], - [134.623291, 34.230015], - [134.617615, 34.226154], - [134.614334, 34.227139], - [134.610931, 34.2229], - [134.606171, 34.222187], - [134.599457, 34.210583], - [134.594589, 34.214458], - [134.594284, 34.21394], - [134.589783, 34.206226], - [134.591705, 34.200211], - [134.611359, 34.18784], - [134.619156, 34.187359], - [134.62915, 34.179607], - [134.633392, 34.180313], - [134.638016, 34.17664], - [134.647278, 34.177433], - [134.647827, 34.175774], - [134.638718, 34.159119], - [134.626846, 34.143665], - [134.621262, 34.145649], - [134.605728, 34.145157], - [134.622299, 34.135441], - [134.612213, 34.118141], - [134.6091, 34.103264], - [134.60582, 34.104454], - [134.602921, 34.109409], - [134.597382, 34.110352], - [134.598648, 34.100773], - [134.601776, 34.096237], - [134.611313, 34.095997], - [134.611649, 34.083061], - [134.609482, 34.079681], - [134.597107, 34.08321], - [134.5896, 34.082863], - [134.582489, 34.086277], - [134.579636, 34.080799], - [134.60199, 34.069527], - [134.601593, 34.065342], - [134.597977, 34.060268], - [134.597198, 34.052113], - [134.592163, 34.052647], - [134.58078, 34.057026], - [134.578354, 34.053848], - [134.565659, 34.050686], - [134.567017, 34.046745], - [134.562637, 34.042488], - [134.567398, 34.042164], - [134.574738, 34.048981], - [134.587952, 34.051105], - [134.5923, 34.047848], - [134.591125, 34.044903], - [134.586517, 34.039181], - [134.581787, 34.038048], - [134.58342, 34.033489], - [134.586197, 34.032288], - [134.596725, 34.032276], - [134.601028, 34.030476], - [134.59613, 34.026211], - [134.597458, 34.023731], - [134.604584, 34.019688], - [134.607422, 34.016193], - [134.604034, 34.012165], - [134.597107, 34.008904], - [134.598526, 34.00246], - [134.602798, 34.002121], - [134.603195, 33.996704], - [134.606781, 33.993637], - [134.614075, 33.992313], - [134.615509, 33.985451], - [134.617294, 33.984024], - [134.630783, 33.985523], - [134.637207, 33.98877], - [134.639389, 33.992867], - [134.633636, 34.000603], - [134.640457, 34.007824], - [134.647583, 34.003155], - [134.655396, 33.992023], - [134.663696, 33.970886], - [134.673721, 33.961048], - [134.677628, 33.955063], - [134.687683, 33.953156], - [134.697372, 33.946442], - [134.698425, 33.944374], - [134.682114, 33.936359], - [134.674744, 33.930801], - [134.688309, 33.928959], - [134.691238, 33.927116], - [134.691864, 33.926723], - [134.708496, 33.922218], - [134.705139, 33.916317], - [134.702957, 33.903755], - [134.693848, 33.898376], - [134.68782, 33.889503], - [134.682449, 33.884605], - [134.682114, 33.878338], - [134.66983, 33.879162], - [134.664291, 33.880939], - [134.659058, 33.880013], - [134.65274, 33.873009], - [134.6436, 33.868877], - [134.638229, 33.864189], - [134.630814, 33.851738], - [134.631348, 33.850079], - [134.636551, 33.852055], - [134.650436, 33.865871], - [134.652069, 33.851292], - [134.650375, 33.848965], - [134.645416, 33.847416], - [134.64325, 33.844246], - [134.647034, 33.842644], - [134.657516, 33.84367], - [134.663666, 33.847328], - [134.666245, 33.843826], - [134.670441, 33.845989], - [134.673737, 33.844379], - [134.679398, 33.84782], - [134.683914, 33.847065], - [134.687088, 33.850044], - [134.696091, 33.849995], - [134.70314, 33.847618], - [134.715851, 33.849094], - [134.721191, 33.845432], - [134.723022, 33.842331], - [134.706284, 33.842037], - [134.684052, 33.831833], - [134.682098, 33.830128], - [134.685638, 33.828522], - [134.697769, 33.833122], - [134.70697, 33.834743], - [134.71225, 33.833168], - [134.718964, 33.834538], - [134.72554, 33.831734], - [134.738998, 33.842819], - [134.742325, 33.839954], - [134.749817, 33.840088], - [134.747421, 33.835663], - [134.749008, 33.832352], - [134.732605, 33.824871], - [134.703812, 33.811733], - [134.692245, 33.804638], - [134.671677, 33.798637], - [134.657196, 33.788567], - [134.649689, 33.789055], - [134.647003, 33.786919], - [134.644974, 33.778534], - [134.638824, 33.784267], - [134.630829, 33.784538], - [134.62439, 33.782539], - [134.621246, 33.778934], - [134.616501, 33.778641], - [134.613159, 33.773151], - [134.607529, 33.768456], - [134.607376, 33.764904], - [134.59288, 33.765678], - [134.589325, 33.767906], - [134.586884, 33.765568], - [134.587738, 33.761616], - [134.586273, 33.760338], - [134.57753, 33.760799], - [134.577103, 33.75808], - [134.580261, 33.751877], - [134.572937, 33.736504], - [134.572571, 33.731697], - [134.568863, 33.730583], - [134.565338, 33.73177], - [134.562393, 33.739017], - [134.560165, 33.73856], - [134.558487, 33.735813], - [134.552734, 33.736538], - [134.549576, 33.732929], - [134.545715, 33.728268], - [134.548691, 33.719765], - [134.548019, 33.717041], - [134.535049, 33.707611], - [134.504089, 33.690525], - [134.493668, 33.688442], - [134.491562, 33.683811], - [134.454575, 33.668682], - [134.447784, 33.662285], - [134.440384, 33.66021], - [134.430954, 33.657566], - [134.426422, 33.659351], - [134.422989, 33.656986], - [134.419907, 33.651707], - [134.413452, 33.650742], - [134.407837, 33.65501], - [134.405167, 33.65287], - [134.401169, 33.65279], - [134.399368, 33.646492], - [134.393692, 33.644497], - [134.389389, 33.637939], - [134.381516, 33.634232], - [134.380905, 33.629627], - [134.375488, 33.62764], - [134.367691, 33.621426], - [134.372757, 33.618816], - [134.387421, 33.619953], - [134.390488, 33.617302], - [134.3862, 33.610954], - [134.376816, 33.607632], - [134.373901, 33.604889], - [134.373184, 33.604218], - [134.365738, 33.586117], - [134.354431, 33.581291], - [134.345383, 33.58099], - [134.336319, 33.578693], - [134.341797, 33.577953], - [134.359207, 33.57972], - [134.365509, 33.577137], - [134.359863, 33.574306], - [134.339203, 33.573879], - [134.330261, 33.576263], - [134.326141, 33.577362], - [134.316132, 33.570889], - [134.312912, 33.561638], - [134.322708, 33.550995], - [134.320175, 33.543846], - [134.317993, 33.54213], - [134.31601, 33.542377], - [134.308014, 33.546566], - [134.299316, 33.551777], - [134.290131, 33.55621], - [134.278442, 33.556816], - [134.268356, 33.5527], - [134.258255, 33.549934], - [134.231934, 33.555111], - [134.224625, 33.561989], - [134.21347, 33.562637], - [134.198471, 33.557411], - [134.196472, 33.567497], - [134.187973, 33.582977], - [134.180237, 33.590637], - [134.172806, 33.598309], - [134.158798, 33.608089], - [134.156921, 33.618462], - [134.153961, 33.628117], - [134.164978, 33.631824], - [134.172897, 33.638325], - [134.17804, 33.650867], - [134.172424, 33.666229], - [134.178085, 33.674965], - [134.166489, 33.684925], - [134.155884, 33.682804], - [134.145111, 33.684319], - [134.136215, 33.690147], - [134.126373, 33.692635], - [134.114059, 33.691948], - [134.10379, 33.690872], - [134.092514, 33.689495], - [134.081451, 33.686607], - [134.066483, 33.687263], - [134.068939, 33.705952], - [134.067749, 33.716404], - [134.070602, 33.726749], - [134.064148, 33.735222], - [134.059418, 33.749958], - [134.06131, 33.760223], - [134.061523, 33.77187], - [134.057648, 33.781574], - [134.048935, 33.788216], - [134.044434, 33.798317], - [134.036072, 33.806084], - [134.039474, 33.815742], - [134.035767, 33.825237], - [134.026199, 33.821556], - [134.015549, 33.818703], - [134, 33.817856], - [133.992538, 33.826195], - [133.987213, 33.837521], - [133.977585, 33.833294], - [133.967194, 33.831837], - [133.957901, 33.827599], - [133.954773, 33.817116], - [133.952911, 33.805584], - [133.945923, 33.797695], - [133.934875, 33.79665], - [133.923859, 33.794731], - [133.914841, 33.789066], - [133.904007, 33.790691], - [133.898102, 33.799721], - [133.887573, 33.800018], - [133.875, 33.802799], - [133.870682, 33.812302], - [133.863388, 33.821247], - [133.856369, 33.830112], - [133.842026, 33.840904], - [133.831207, 33.841648], - [133.820724, 33.834053], - [133.807861, 33.83329], - [133.790939, 33.83329], - [133.781937, 33.838757], - [133.770355, 33.836643], - [133.750229, 33.833591], - [133.74353, 33.842224], - [133.733566, 33.847576], - [133.721512, 33.845951], - [133.711075, 33.848118], - [133.700928, 33.848465], - [133.692062, 33.853718], - [133.682144, 33.855686], - [133.673599, 33.861893], - [133.665375, 33.868156], - [133.663223, 33.878407], - [133.671951, 33.885124], - [133.680649, 33.890755], - [133.678741, 33.901218], - [133.691833, 33.91663], - [133.6875, 33.931511], - [133.695053, 33.941334], - [133.690811, 33.950428], - [133.69194, 33.960743], - [133.683563, 33.969013], - [133.67804, 33.981464], - [133.680176, 33.991333], - [133.692825, 34.010021], - [133.702988, 34.01458], - [133.715378, 34.014088], - [133.724197, 34.019249], - [133.725021, 34.031219], - [133.73143, 34.040909], - [133.743225, 34.046806], - [133.753098, 34.052391], - [133.761475, 34.058178], - [133.773834, 34.069664], - [133.78212, 34.076591], - [133.792862, 34.07299], - [133.801315, 34.066292], - [133.8116, 34.068672], - [133.821762, 34.07299], - [133.825851, 34.089634], - [133.835236, 34.093487], - [133.845886, 34.092522], - [133.854706, 34.098564], - [133.864685, 34.102043], - [133.875, 34.097557], - [133.884735, 34.100822], - [133.895325, 34.104652], - [133.902893, 34.097923], - [133.915558, 34.10252], - [133.924637, 34.110935], - [133.93483, 34.112553], - [133.940506, 34.104008], - [133.946442, 34.095043], - [133.954132, 34.086819], - [133.970413, 34.078403], - [133.978302, 34.071568], - [133.989212, 34.072899], - [134.002365, 34.071636], - [134.008331, 34.081055], - [134.019424, 34.082691], - [134.029785, 34.08329], - [134.033478, 34.093502], - [134.043015, 34.098274], - [134.052612, 34.11414], - [134.061874, 34.109856], - [134.077911, 34.114559], - [134.088928, 34.115681], - [134.098297, 34.111229], - [134.108963, 34.11393], - [134.125, 34.115696], - [134.133682, 34.122086], - [134.141418, 34.130131], - [134.138412, 34.147892], - [134.146179, 34.155094], - [134.152863, 34.162838], - [134.166214, 34.166637], - [134.176086, 34.172447], - [134.193039, 34.169643], - [134.211517, 34.171818], - [134.221497, 34.175053], - [134.231659, 34.177341], - [134.246475, 34.176762], - [134.262589, 34.180084], - [134.273087, 34.178204], - [134.28392, 34.173996], - [134.294281, 34.175877], - [134.299698, 34.16663], - [134.312714, 34.170452], - [134.32338, 34.171936], - [134.335297, 34.171432], - [134.345398, 34.169239], - [134.350021, 34.178421], - [134.359604, 34.181831], - [134.370956, 34.175373], - [134.378571, 34.168858], - [134.396561, 34.160271], - [134.406311, 34.164059], - [134.414734, 34.157314], - [134.424835, 34.158691], - [134.436188, 34.166626], - [134.432556, 34.176628], - [134.441299, 34.187916], - [134.443512, 34.204998] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "愛媛県", - "name": "Ehime", - "ISOCODE": "JP-38", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:41+0100", - "cartodb_id": 246 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [133.603592, 34.037739], - [133.606384, 34.035969], - [133.614075, 34.0298], - [133.625, 34.031929], - [133.640137, 34.023838], - [133.651184, 34.023911], - [133.662094, 34.024292], - [133.673019, 34.020618], - [133.680283, 34.012871], - [133.692825, 34.010021], - [133.680176, 33.991333], - [133.67804, 33.981464], - [133.683563, 33.969013], - [133.69194, 33.960743], - [133.690811, 33.950428], - [133.695053, 33.941334], - [133.6875, 33.931511], - [133.691833, 33.91663], - [133.678741, 33.901218], - [133.680649, 33.890755], - [133.671951, 33.885124], - [133.663223, 33.878407], - [133.653061, 33.879417], - [133.642471, 33.878067], - [133.63353, 33.87159], - [133.619003, 33.873642], - [133.609436, 33.878338], - [133.595016, 33.87183], - [133.585587, 33.864323], - [133.568359, 33.871628], - [133.559692, 33.878712], - [133.549301, 33.8769], - [133.540253, 33.86932], - [133.534653, 33.860806], - [133.529053, 33.851421], - [133.521072, 33.844418], - [133.510666, 33.843468], - [133.510239, 33.833076], - [133.5, 33.826107], - [133.48999, 33.827095], - [133.473541, 33.833229], - [133.458252, 33.8335], - [133.440445, 33.830868], - [133.430161, 33.83329], - [133.420517, 33.836662], - [133.406219, 33.83329], - [133.395081, 33.822964], - [133.384811, 33.823341], - [133.365463, 33.82896], - [133.35466, 33.828457], - [133.347336, 33.821293], - [133.336685, 33.818474], - [133.328247, 33.811378], - [133.317612, 33.812675], - [133.306046, 33.818661], - [133.290222, 33.826241], - [133.279846, 33.827675], - [133.269897, 33.820385], - [133.265045, 33.810387], - [133.263824, 33.799629], - [133.258972, 33.789585], - [133.25, 33.785149], - [133.234024, 33.780647], - [133.22345, 33.776936], - [133.215698, 33.784389], - [133.206253, 33.791405], - [133.196259, 33.79076], - [133.193161, 33.780937], - [133.187424, 33.77145], - [133.183151, 33.761478], - [133.174316, 33.754436], - [133.16449, 33.749847], - [133.161392, 33.738617], - [133.163132, 33.728058], - [133.151657, 33.720436], - [133.142624, 33.711121], - [133.144028, 33.699749], - [133.133545, 33.695858], - [133.125, 33.689899], - [133.122498, 33.676979], - [133.121979, 33.666634], - [133.110962, 33.654591], - [133.100967, 33.654987], - [133.089935, 33.653183], - [133.080017, 33.650326], - [133.072495, 33.632767], - [133.071045, 33.622795], - [133.074219, 33.613026], - [133.081924, 33.605846], - [133.068665, 33.597202], - [133.05835, 33.591938], - [133.053345, 33.583237], - [133.048828, 33.572163], - [133.063324, 33.559975], - [133.064087, 33.54845], - [133.065201, 33.538105], - [133.047043, 33.526451], - [133.040924, 33.518471], - [133.03685, 33.508598], - [133.028351, 33.499966], - [133.018051, 33.488937], - [133.017624, 33.477562], - [133, 33.472115], - [132.989685, 33.469658], - [132.97879, 33.46801], - [132.967911, 33.46468], - [132.956741, 33.463245], - [132.946274, 33.468552], - [132.935013, 33.467072], - [132.924377, 33.464767], - [132.912521, 33.465366], - [132.896423, 33.468956], - [132.885757, 33.46946], - [132.873825, 33.467743], - [132.862061, 33.472389], - [132.846497, 33.474243], - [132.836182, 33.472015], - [132.825974, 33.469418], - [132.81929, 33.461857], - [132.809494, 33.456753], - [132.817261, 33.447239], - [132.827179, 33.443226], - [132.828323, 33.432701], - [132.827576, 33.422363], - [132.836349, 33.416557], - [132.834961, 33.403263], - [132.842697, 33.394829], - [132.852753, 33.394928], - [132.85553, 33.384991], - [132.85939, 33.373634], - [132.86441, 33.364124], - [132.875, 33.361462], - [132.886993, 33.358036], - [132.89418, 33.350903], - [132.900558, 33.342571], - [132.904861, 33.33329], - [132.902878, 33.318108], - [132.898529, 33.308884], - [132.886276, 33.303684], - [132.875, 33.301224], - [132.866867, 33.294968], - [132.857834, 33.289391], - [132.84787, 33.285629], - [132.837036, 33.284554], - [132.827225, 33.279179], - [132.816498, 33.277233], - [132.806824, 33.274464], - [132.796585, 33.271549], - [132.789764, 33.263817], - [132.780899, 33.249596], - [132.777313, 33.230537], - [132.773407, 33.220417], - [132.775375, 33.210247], - [132.771851, 33.200787], - [132.760941, 33.198219], - [132.75, 33.199623], - [132.741562, 33.193413], - [132.739685, 33.182926], - [132.734451, 33.173195], - [132.728333, 33.164936], - [132.720154, 33.157784], - [132.712524, 33.149342], - [132.703094, 33.144218], - [132.698547, 33.134621], - [132.688812, 33.131802], - [132.682938, 33.140728], - [132.67366, 33.147449], - [132.664124, 33.152103], - [132.658081, 33.160404], - [132.649887, 33.16663], - [132.640823, 33.170937], - [132.6353, 33.182255], - [132.624985, 33.179092], - [132.618027, 33.166634], - [132.625305, 33.157097], - [132.63295, 33.140209], - [132.631485, 33.129295], - [132.640869, 33.12426], - [132.647156, 33.116005], - [132.655136, 33.107662], - [132.665848, 33.105507], - [132.670258, 33.092766], - [132.672241, 33.082878], - [132.670837, 33.071175], - [132.66687, 33.061115], - [132.660324, 33.05344], - [132.668045, 33.0466], - [132.675674, 33.040077], - [132.680954, 33.028156], - [132.67923, 33.017796], - [132.67926, 33.007526], - [132.686111, 32.999962], - [132.686356, 32.985188], - [132.689178, 32.974953], - [132.688736, 32.963905], - [132.684555, 32.95443], - [132.685471, 32.943119], - [132.675858, 32.939522], - [132.664886, 32.938679], - [132.660217, 32.917484], - [132.658813, 32.91785], - [132.64798, 32.916836], - [132.629181, 32.912197], - [132.606613, 32.903664], - [132.603867, 32.90419], - [132.59996, 32.908016], - [132.604202, 32.912342], - [132.603378, 32.913982], - [132.597122, 32.915218], - [132.591843, 32.921913], - [132.5914, 32.925655], - [132.601318, 32.935299], - [132.585602, 32.932751], - [132.583511, 32.929962], - [132.580582, 32.934238], - [132.579605, 32.934589], - [132.570496, 32.93784], - [132.569199, 32.934242], - [132.564667, 32.935955], - [132.561981, 32.93523], - [132.554398, 32.938293], - [132.553268, 32.936165], - [132.555405, 32.933113], - [132.564606, 32.927395], - [132.56987, 32.925919], - [132.575333, 32.920689], - [132.546646, 32.925697], - [132.542999, 32.929321], - [132.54213, 32.936592], - [132.53981, 32.938179], - [132.532242, 32.93623], - [132.529663, 32.938431], - [132.514786, 32.939137], - [132.513672, 32.936802], - [132.515182, 32.931431], - [132.519653, 32.931175], - [132.527588, 32.925831], - [132.516083, 32.918938], - [132.506378, 32.915447], - [132.501892, 32.911316], - [132.505478, 32.908943], - [132.517838, 32.908775], - [132.530029, 32.912148], - [132.535248, 32.911713], - [132.536087, 32.909863], - [132.53038, 32.905479], - [132.528793, 32.897907], - [132.519791, 32.895069], - [132.502213, 32.895676], - [132.498978, 32.891171], - [132.496262, 32.891071], - [132.489578, 32.896042], - [132.481888, 32.898708], - [132.479263, 32.899624], - [132.478668, 32.901482], - [132.482941, 32.90477], - [132.48085, 32.90699], - [132.482483, 32.913727], - [132.477158, 32.920837], - [132.475601, 32.92704], - [132.468719, 32.930752], - [132.466843, 32.933601], - [132.470078, 32.937901], - [132.474533, 32.933262], - [132.480499, 32.932652], - [132.485062, 32.935116], - [132.48822, 32.931683], - [132.491714, 32.930981], - [132.493164, 32.936459], - [132.499222, 32.934177], - [132.501648, 32.934895], - [132.504028, 32.941456], - [132.507538, 32.945339], - [132.506699, 32.947189], - [132.487854, 32.952755], - [132.485336, 32.958504], - [132.480789, 32.959869], - [132.478546, 32.960548], - [132.478088, 32.964497], - [132.490631, 32.966007], - [132.49176, 32.967926], - [132.489487, 32.97369], - [132.494843, 32.975349], - [132.499466, 32.981571], - [132.50563, 32.977207], - [132.50853, 32.968964], - [132.50351, 32.965858], - [132.508102, 32.962894], - [132.505325, 32.959244], - [132.510727, 32.955269], - [132.51619, 32.959854], - [132.519394, 32.959972], - [132.523651, 32.954075], - [132.527298, 32.955463], - [132.530899, 32.952881], - [132.535629, 32.952221], - [132.538391, 32.956078], - [132.543869, 32.955444], - [132.550034, 32.951077], - [132.557007, 32.950287], - [132.561142, 32.951481], - [132.552536, 32.955341], - [132.548325, 32.960197], - [132.542038, 32.962265], - [132.538147, 32.961079], - [132.530396, 32.962463], - [132.525742, 32.966469], - [132.518021, 32.967438], - [132.511993, 32.973892], - [132.506668, 32.985806], - [132.507721, 32.989391], - [132.506088, 32.992256], - [132.506454, 32.999573], - [132.500336, 33.002895], - [132.497269, 33.009464], - [132.495331, 33.008766], - [132.492264, 33.001137], - [132.489182, 33.001595], - [132.487762, 33.001804], - [132.484604, 33.005653], - [132.485458, 33.012783], - [132.482513, 33.021858], - [132.485062, 33.03949], - [132.480118, 33.039097], - [132.47641, 33.034367], - [132.473419, 33.034672], - [132.473389, 33.0401], - [132.470276, 33.042698], - [132.465973, 33.039822], - [132.457474, 33.041176], - [132.456146, 33.038204], - [132.459946, 33.032082], - [132.457672, 33.028034], - [132.454956, 33.027931], - [132.452454, 33.033058], - [132.446869, 33.03577], - [132.444611, 33.041115], - [132.439529, 33.043427], - [132.43512, 33.037834], - [132.430817, 33.044353], - [132.423599, 33.049511], - [132.413971, 33.049149], - [132.416031, 33.033569], - [132.413132, 33.027615], - [132.416428, 33.021477], - [132.406891, 33.019238], - [132.40477, 33.017277], - [132.401779, 33.00819], - [132.397675, 33.006363], - [132.393356, 33.013088], - [132.385696, 33.012798], - [132.381027, 33.016796], - [132.382874, 33.019161], - [132.388947, 33.021481], - [132.393433, 33.020817], - [132.397827, 33.022026], - [132.399597, 33.035244], - [132.40358, 33.034977], - [132.405685, 33.037144], - [132.405869, 33.038357], - [132.406418, 33.041973], - [132.399521, 33.05069], - [132.402267, 33.05497], - [132.407639, 33.056423], - [132.408295, 33.062504], - [132.413605, 33.065208], - [132.419052, 33.065205], - [132.42009, 33.059818], - [132.430206, 33.060406], - [132.432297, 33.053802], - [132.439743, 33.048862], - [132.445724, 33.052845], - [132.448242, 33.061291], - [132.450256, 33.060738], - [132.454346, 33.053585], - [132.457855, 33.052883], - [132.464066, 33.057289], - [132.474716, 33.057266], - [132.48175, 33.060032], - [132.485077, 33.053268], - [132.489136, 33.060932], - [132.484711, 33.064945], - [132.485291, 33.068096], - [132.480148, 33.076466], - [132.478058, 33.064487], - [132.473343, 33.069115], - [132.467728, 33.067654], - [132.465179, 33.069019], - [132.473175, 33.077042], - [132.465668, 33.07864], - [132.46727, 33.08284], - [132.468491, 33.086052], - [132.472092, 33.083683], - [132.475525, 33.084435], - [132.482681, 33.08971], - [132.481354, 33.091331], - [132.475098, 33.09256], - [132.474426, 33.095669], - [132.477188, 33.099739], - [132.469986, 33.104897], - [132.467087, 33.112724], - [132.462997, 33.115074], - [132.452362, 33.114887], - [132.447205, 33.11866], - [132.464462, 33.12035], - [132.469803, 33.122635], - [132.474594, 33.116135], - [132.486481, 33.116367], - [132.491028, 33.119663], - [132.493195, 33.115986], - [132.506256, 33.117512], - [132.500443, 33.124397], - [132.502426, 33.129063], - [132.50058, 33.13129], - [132.489883, 33.131939], - [132.481277, 33.13538], - [132.480576, 33.129925], - [132.475876, 33.130432], - [132.474838, 33.130547], - [132.471619, 33.135231], - [132.465576, 33.132084], - [132.460037, 33.133755], - [132.456711, 33.126324], - [132.447067, 33.130558], - [132.443939, 33.133362], - [132.447372, 33.13892], - [132.444717, 33.142159], - [132.429489, 33.148689], - [132.428635, 33.150745], - [132.430191, 33.15435], - [132.43541, 33.153923], - [132.437958, 33.157356], - [132.437775, 33.1609], - [132.43541, 33.163525], - [132.437286, 33.165474], - [132.448486, 33.164639], - [132.453232, 33.168785], - [132.459106, 33.165661], - [132.460754, 33.162594], - [132.463699, 33.16312], - [132.466263, 33.166138], - [132.459595, 33.170483], - [132.458633, 33.171989], - [132.456345, 33.175579], - [132.451538, 33.17728], - [132.448959, 33.183865], - [132.443604, 33.177402], - [132.437973, 33.189926], - [132.432922, 33.196209], - [132.425491, 33.200733], - [132.419189, 33.19799], - [132.411469, 33.198326], - [132.407394, 33.195667], - [132.411057, 33.192257], - [132.421448, 33.192856], - [132.422318, 33.190384], - [132.420654, 33.184475], - [132.413025, 33.183353], - [132.409058, 33.178612], - [132.41217, 33.176014], - [132.410553, 33.173866], - [132.404037, 33.174873], - [132.404297, 33.179268], - [132.399139, 33.183041], - [132.399643, 33.183979], - [132.400711, 33.18602], - [132.40004, 33.189335], - [132.393097, 33.194084], - [132.396881, 33.197567], - [132.397873, 33.201992], - [132.421234, 33.206211], - [132.426208, 33.210571], - [132.429138, 33.206715], - [132.451233, 33.197102], - [132.462234, 33.205029], - [132.466064, 33.202877], - [132.460556, 33.199329], - [132.459473, 33.196365], - [132.462234, 33.195633], - [132.461685, 33.191856], - [132.45842, 33.187977], - [132.461304, 33.185162], - [132.464691, 33.177353], - [132.468445, 33.176659], - [132.468872, 33.175919], - [132.470352, 33.173389], - [132.47728, 33.173855], - [132.483475, 33.178467], - [132.4897, 33.17807], - [132.486755, 33.172745], - [132.487488, 33.168179], - [132.482544, 33.163193], - [132.491241, 33.158085], - [132.494095, 33.160488], - [132.494888, 33.164276], - [132.499588, 33.164448], - [132.499664, 33.172592], - [132.496719, 33.176662], - [132.498077, 33.179214], - [132.508408, 33.176258], - [132.506348, 33.163445], - [132.517075, 33.166973], - [132.513641, 33.170811], - [132.513519, 33.178116], - [132.510437, 33.180088], - [132.508438, 33.185028], - [132.503525, 33.184219], - [132.492416, 33.187775], - [132.494522, 33.190151], - [132.505707, 33.189938], - [132.509064, 33.192146], - [132.506927, 33.194992], - [132.50293, 33.195679], - [132.5009, 33.201241], - [132.503479, 33.204052], - [132.506683, 33.199783], - [132.511078, 33.200989], - [132.518784, 33.210461], - [132.522064, 33.209328], - [132.533676, 33.210171], - [132.537033, 33.212589], - [132.548767, 33.21114], - [132.542877, 33.219482], - [132.546173, 33.222946], - [132.552231, 33.216068], - [132.558243, 33.215034], - [132.555069, 33.218884], - [132.558533, 33.224022], - [132.555496, 33.229965], - [132.55069, 33.226868], - [132.546432, 33.227547], - [132.535461, 33.23341], - [132.533966, 33.238365], - [132.526886, 33.240612], - [132.52504, 33.24284], - [132.527313, 33.246891], - [132.543655, 33.252499], - [132.544495, 33.255451], - [132.542267, 33.260174], - [132.536285, 33.255779], - [132.522339, 33.256523], - [132.518982, 33.259113], - [132.517456, 33.254879], - [132.509018, 33.25478], - [132.505081, 33.263821], - [132.499969, 33.264484], - [132.49382, 33.265285], - [132.486664, 33.269196], - [132.483429, 33.26469], - [132.489014, 33.262394], - [132.480423, 33.255814], - [132.478531, 33.249062], - [132.475204, 33.251026], - [132.474045, 33.254116], - [132.476669, 33.261101], - [132.476318, 33.267769], - [132.486053, 33.280865], - [132.486298, 33.285679], - [132.496811, 33.293583], - [132.501266, 33.293957], - [132.503571, 33.297379], - [132.507019, 33.297924], - [132.508881, 33.300289], - [132.527496, 33.300556], - [132.528381, 33.302677], - [132.526627, 33.307831], - [132.521103, 33.30888], - [132.514191, 33.313011], - [132.50853, 33.307167], - [132.5056, 33.306225], - [132.500275, 33.308117], - [132.495667, 33.317268], - [132.492676, 33.310966], - [132.487579, 33.313496], - [132.473389, 33.314014], - [132.471832, 33.311852], - [132.472733, 33.307514], - [132.4664, 33.304985], - [132.454788, 33.303925], - [132.44371, 33.306644], - [132.439072, 33.309814], - [132.437531, 33.315392], - [132.435822, 33.314701], - [132.428207, 33.298965], - [132.423294, 33.297947], - [132.416397, 33.301655], - [132.412201, 33.301079], - [132.405334, 33.304161], - [132.400711, 33.311504], - [132.392242, 33.312019], - [132.384308, 33.316105], - [132.379837, 33.311554], - [132.375946, 33.314747], - [132.373642, 33.320503], - [132.374313, 33.326378], - [132.381638, 33.333546], - [132.385315, 33.334518], - [132.390778, 33.339317], - [132.394867, 33.337177], - [132.398499, 33.343578], - [132.407669, 33.344131], - [132.413513, 33.341637], - [132.416168, 33.343197], - [132.411972, 33.347218], - [132.422592, 33.353252], - [132.420074, 33.358589], - [132.414688, 33.356926], - [132.412643, 33.358101], - [132.417404, 33.371433], - [132.424149, 33.375446], - [132.422012, 33.378078], - [132.418976, 33.379009], - [132.403061, 33.365047], - [132.397446, 33.363373], - [132.393631, 33.360306], - [132.390839, 33.361248], - [132.392212, 33.363594], - [132.386734, 33.377586], - [132.381088, 33.380714], - [132.386444, 33.3876], - [132.394058, 33.389347], - [132.397949, 33.39576], - [132.391739, 33.40012], - [132.39624, 33.404255], - [132.396576, 33.407402], - [132.391037, 33.413246], - [132.386124, 33.412018], - [132.384811, 33.413429], - [132.402695, 33.427677], - [132.407013, 33.421577], - [132.410034, 33.420853], - [132.410904, 33.423183], - [132.409409, 33.427929], - [132.415817, 33.438194], - [132.412796, 33.43832], - [132.407837, 33.438522], - [132.395874, 33.434311], - [132.392563, 33.435856], - [132.387573, 33.435879], - [132.386917, 33.438984], - [132.395187, 33.442429], - [132.404388, 33.442566], - [132.410019, 33.44445], - [132.414032, 33.448566], - [132.418915, 33.450214], - [132.426697, 33.458229], - [132.420731, 33.458214], - [132.41246, 33.454563], - [132.407181, 33.45562], - [132.402298, 33.453766], - [132.391281, 33.455021], - [132.3918, 33.46381], - [132.395966, 33.465012], - [132.400833, 33.462482], - [132.404251, 33.463863], - [132.403488, 33.468845], - [132.399658, 33.469246], - [132.393219, 33.469921], - [132.389572, 33.468323], - [132.380829, 33.455044], - [132.376022, 33.460918], - [132.374954, 33.466934], - [132.367828, 33.474392], - [132.361893, 33.47834], - [132.359131, 33.478653], - [132.35434, 33.484322], - [132.350922, 33.483147], - [132.351608, 33.479622], - [132.356339, 33.474998], - [132.356323, 33.470821], - [132.3517, 33.468975], - [132.341385, 33.470879], - [132.334793, 33.46833], - [132.331268, 33.469238], - [132.326492, 33.460915], - [132.32312, 33.449715], - [132.320129, 33.4496], - [132.319824, 33.450634], - [132.317413, 33.458477], - [132.307648, 33.468544], - [132.304382, 33.469044], - [132.297379, 33.460632], - [132.292282, 33.458347], - [132.287506, 33.445423], - [132.283524, 33.440884], - [132.275085, 33.440556], - [132.268066, 33.436943], - [132.261887, 33.436287], - [132.251236, 33.430859], - [132.241806, 33.421303], - [132.227615, 33.421585], - [132.213699, 33.413883], - [132.209747, 33.411697], - [132.197754, 33.408298], - [132.190811, 33.407818], - [132.180374, 33.398636], - [132.165176, 33.390305], - [132.161194, 33.385971], - [132.161804, 33.375137], - [132.15831, 33.366642], - [132.151489, 33.368462], - [132.143738, 33.364811], - [132.141479, 33.365139], - [132.137299, 33.359959], - [132.123611, 33.360039], - [132.119278, 33.357777], - [132.110886, 33.356606], - [132.108017, 33.364101], - [132.107666, 33.365036], - [132.108978, 33.368221], - [132.114136, 33.369473], - [132.121658, 33.368313], - [132.117935, 33.372551], - [132.121124, 33.377689], - [132.12558, 33.378075], - [132.125, 33.3839], - [132.115921, 33.381657], - [132.109192, 33.382015], - [132.086472, 33.374832], - [132.083252, 33.37011], - [132.080795, 33.369591], - [132.076172, 33.37212], - [132.074188, 33.367653], - [132.066574, 33.366093], - [132.063278, 33.362827], - [132.060074, 33.362278], - [132.058746, 33.359509], - [132.061615, 33.352943], - [132.053314, 33.350307], - [132.045898, 33.344997], - [132.039703, 33.340565], - [132.029816, 33.339535], - [132.027496, 33.340904], - [132.047729, 33.36512], - [132.064301, 33.375397], - [132.084183, 33.38435], - [132.088409, 33.392872], - [132.092224, 33.395741], - [132.109726, 33.40292], - [132.120117, 33.412361], - [132.124405, 33.416248], - [132.130997, 33.418392], - [132.134766, 33.413319], - [132.1371, 33.402763], - [132.138885, 33.402], - [132.140625, 33.402069], - [132.139725, 33.404957], - [132.145554, 33.416256], - [132.148972, 33.417229], - [132.154388, 33.413895], - [132.160004, 33.407017], - [132.16301, 33.406719], - [132.166763, 33.410625], - [132.169968, 33.411171], - [132.170364, 33.41745], - [132.166534, 33.419178], - [132.163574, 33.423031], - [132.149506, 33.429779], - [132.154572, 33.432697], - [132.164307, 33.436424], - [132.167084, 33.431313], - [132.171448, 33.428638], - [132.175079, 33.426411], - [132.180328, 33.425991], - [132.181046, 33.43103], - [132.17688, 33.442978], - [132.178772, 33.444725], - [132.189865, 33.446835], - [132.194061, 33.443031], - [132.197784, 33.443176], - [132.200897, 33.441002], - [132.202271, 33.442936], - [132.20047, 33.448505], - [132.201996, 33.452324], - [132.205414, 33.453709], - [132.210205, 33.448051], - [132.219437, 33.443192], - [132.232651, 33.442875], - [132.230499, 33.4501], - [132.231247, 33.454514], - [132.234573, 33.457359], - [132.243042, 33.457272], - [132.245117, 33.460278], - [132.251022, 33.461552], - [132.252014, 33.458874], - [132.252777, 33.456818], - [132.248642, 33.455193], - [132.249985, 33.453365], - [132.255478, 33.452953], - [132.259293, 33.447044], - [132.265182, 33.448528], - [132.269775, 33.46019], - [132.269196, 33.466225], - [132.263611, 33.468098], - [132.26326, 33.469753], - [132.278778, 33.472862], - [132.280365, 33.471252], - [132.282593, 33.471546], - [132.28595, 33.478359], - [132.288345, 33.475529], - [132.292297, 33.476097], - [132.293991, 33.481384], - [132.306015, 33.484768], - [132.309753, 33.4893], - [132.314148, 33.489784], - [132.321381, 33.490582], - [132.327332, 33.495819], - [132.340683, 33.501968], - [132.343475, 33.50103], - [132.348251, 33.504971], - [132.360214, 33.509392], - [132.366669, 33.514442], - [132.376419, 33.51836], - [132.386017, 33.524986], - [132.391449, 33.526028], - [132.392593, 33.523357], - [132.395325, 33.52346], - [132.400757, 33.528885], - [132.403244, 33.529186], - [132.407089, 33.536224], - [132.410278, 33.537178], - [132.418579, 33.545216], - [132.426224, 33.546753], - [132.431381, 33.552586], - [132.436432, 33.560917], - [132.43808, 33.567245], - [132.445557, 33.571907], - [132.449188, 33.578724], - [132.458298, 33.585747], - [132.46376, 33.595345], - [132.472168, 33.601505], - [132.476044, 33.603527], - [132.481171, 33.610397], - [132.491791, 33.617264], - [132.507462, 33.622643], - [132.521011, 33.631634], - [132.521454, 33.631924], - [132.537506, 33.639816], - [132.557999, 33.643902], - [132.603088, 33.659725], - [132.614624, 33.668282], - [132.622925, 33.676723], - [132.634705, 33.680691], - [132.650284, 33.691784], - [132.656631, 33.696293], - [132.666031, 33.707695], - [132.689453, 33.743599], - [132.702194, 33.758453], - [132.703461, 33.763092], - [132.700958, 33.778042], - [132.695374, 33.794762], - [132.696152, 33.799171], - [132.699997, 33.802231], - [132.695816, 33.805843], - [132.704269, 33.831615], - [132.707031, 33.846539], - [132.710052, 33.851032], - [132.716476, 33.852509], - [132.717392, 33.85421], - [132.714066, 33.860779], - [132.715485, 33.867508], - [132.713821, 33.870792], - [132.705521, 33.87656], - [132.71376, 33.892094], - [132.717911, 33.90414], - [132.729492, 33.899796], - [132.732193, 33.898788], - [132.73703, 33.892063], - [132.739975, 33.89822], - [132.750015, 33.902534], - [132.757523, 33.907806], - [132.762772, 33.923023], - [132.771637, 33.941078], - [132.777008, 33.979481], - [132.778885, 33.987061], - [132.769882, 33.996986], - [132.773056, 33.998558], - [132.779877, 33.99754], - [132.78508, 34.003773], - [132.798599, 34.009037], - [132.804626, 34.009029], - [132.822235, 34.0219], - [132.830994, 34.028301], - [132.841797, 34.033051], - [132.851654, 34.041733], - [132.859848, 34.043053], - [132.863022, 34.045036], - [132.867188, 34.052277], - [132.871567, 34.054932], - [132.87944, 34.052895], - [132.88588, 34.054363], - [132.899246, 34.058147], - [132.907944, 34.064907], - [132.910675, 34.065414], - [132.918411, 34.061077], - [132.922913, 34.061016], - [132.925308, 34.063599], - [132.928146, 34.082909], - [132.929077, 34.083317], - [132.93576, 34.086288], - [132.932495, 34.102264], - [132.92807, 34.105667], - [132.916382, 34.108833], - [132.90152, 34.105003], - [132.90007, 34.108921], - [132.90094, 34.111874], - [132.897461, 34.116146], - [132.898849, 34.118698], - [132.908279, 34.115669], - [132.912781, 34.115818], - [132.919006, 34.122288], - [132.922333, 34.120934], - [132.92662, 34.115017], - [132.932907, 34.114807], - [132.942337, 34.122215], - [132.947876, 34.135292], - [132.948441, 34.136616], - [132.95372, 34.125721], - [132.959061, 34.118793], - [132.963974, 34.115822], - [132.969528, 34.114956], - [132.971573, 34.108757], - [132.976593, 34.103493], - [132.978409, 34.107311], - [132.985168, 34.113167], - [132.987244, 34.111771], - [132.990997, 34.101242], - [132.994766, 34.095726], - [132.998749, 34.080193], - [133.02298, 34.060295], - [133.025742, 34.054955], - [133.034576, 34.042709], - [133.042877, 34.036499], - [133.046524, 34.022835], - [133.055847, 34.010601], - [133.065674, 33.992954], - [133.072372, 33.977921], - [133.070557, 33.973896], - [133.074936, 33.965893], - [133.077393, 33.955944], - [133.080994, 33.953762], - [133.087479, 33.954178], - [133.091385, 33.950958], - [133.091766, 33.94944], - [133.094437, 33.938736], - [133.095627, 33.940235], - [133.098434, 33.939068], - [133.103394, 33.94006], - [133.10762, 33.934971], - [133.113281, 33.931808], - [133.122528, 33.921032], - [133.125717, 33.927814], - [133.130707, 33.928387], - [133.132095, 33.925087], - [133.130081, 33.920013], - [133.136841, 33.913422], - [133.135147, 33.918503], - [133.137207, 33.922951], - [133.141083, 33.925785], - [133.142944, 33.92313], - [133.154739, 33.916813], - [133.159485, 33.916958], - [133.161179, 33.923901], - [133.167328, 33.926598], - [133.169342, 33.926342], - [133.177887, 33.925251], - [133.180649, 33.930977], - [133.184555, 33.933182], - [133.198395, 33.931309], - [133.200226, 33.929485], - [133.208725, 33.935383], - [133.227875, 33.944111], - [133.240112, 33.944691], - [133.259048, 33.952568], - [133.259308, 33.96949], - [133.256943, 33.97234], - [133.264755, 33.976959], - [133.266235, 33.965939], - [133.274475, 33.966187], - [133.282318, 33.976025], - [133.293213, 33.973007], - [133.295288, 33.977245], - [133.304993, 33.978786], - [133.321487, 33.985329], - [133.326965, 33.992172], - [133.334076, 33.989666], - [133.33934, 33.977921], - [133.344437, 33.975563], - [133.345596, 33.977894], - [133.343887, 33.982857], - [133.346405, 33.988567], - [133.35881, 33.979118], - [133.365692, 33.976395], - [133.372482, 33.975758], - [133.401779, 33.987881], - [133.405609, 33.986111], - [133.416107, 33.986622], - [133.424805, 33.982067], - [133.438553, 33.98288], - [133.449432, 33.980057], - [133.456757, 33.978596], - [133.458817, 33.977192], - [133.459747, 33.972626], - [133.464584, 33.970673], - [133.469528, 33.972275], - [133.485245, 33.967499], - [133.501358, 33.965237], - [133.521317, 33.967045], - [133.541275, 33.975323], - [133.545319, 33.980446], - [133.558197, 33.990612], - [133.570847, 34.008007], - [133.576477, 34.015751], - [133.584076, 34.020134], - [133.590057, 34.027187], - [133.599594, 34.033291], - [133.603592, 34.037739] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "福岡県", - "name": "Fukuoka", - "ISOCODE": "JP-40", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:47+0100", - "cartodb_id": 273 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [131.175446, 33.583282], - [131.180527, 33.568882], - [131.189056, 33.562233], - [131.190552, 33.549263], - [131.187546, 33.539524], - [131.179672, 33.533272], - [131.17067, 33.527046], - [131.171005, 33.516453], - [131.177261, 33.507408], - [131.160828, 33.504486], - [131.150314, 33.501686], - [131.133545, 33.501957], - [131.114105, 33.502998], - [131.103226, 33.501869], - [131.092499, 33.503361], - [131.080231, 33.502831], - [131.064316, 33.506279], - [131.053818, 33.506695], - [131.043381, 33.511543], - [131.03093, 33.514229], - [131.021729, 33.509308], - [131.011917, 33.506592], - [131.000229, 33.507092], - [130.983871, 33.504383], - [130.973526, 33.499958], - [130.965271, 33.494209], - [130.9561, 33.486958], - [130.943756, 33.480072], - [130.934036, 33.476082], - [130.931046, 33.463428], - [130.921066, 33.452293], - [130.912872, 33.446491], - [130.902252, 33.445679], - [130.899628, 33.434311], - [130.893341, 33.424625], - [130.892807, 33.406441], - [130.889481, 33.395805], - [130.88707, 33.385929], - [130.886917, 33.375244], - [130.874969, 33.373676], - [130.861893, 33.369816], - [130.859177, 33.35511], - [130.846313, 33.347679], - [130.838165, 33.340294], - [130.853241, 33.33329], - [130.859024, 33.323753], - [130.859802, 33.312328], - [130.864746, 33.302589], - [130.867813, 33.293045], - [130.862656, 33.283421], - [130.855118, 33.275932], - [130.86055, 33.265762], - [130.844513, 33.253933], - [130.834396, 33.254517], - [130.828369, 33.238102], - [130.836166, 33.230442], - [130.84668, 33.230125], - [130.842636, 33.214275], - [130.845215, 33.203911], - [130.856247, 33.196785], - [130.86528, 33.191177], - [130.874969, 33.187904], - [130.884979, 33.183659], - [130.887878, 33.172813], - [130.877655, 33.16663], - [130.879395, 33.1562], - [130.877213, 33.145317], - [130.871399, 33.134296], - [130.868454, 33.123558], - [130.863281, 33.113716], - [130.855667, 33.106144], - [130.845642, 33.103157], - [130.83165, 33.103157], - [130.821838, 33.108906], - [130.811539, 33.112942], - [130.801193, 33.117073], - [130.791534, 33.120705], - [130.780228, 33.120155], - [130.768005, 33.125237], - [130.758728, 33.129723], - [130.749969, 33.137432], - [130.740723, 33.142475], - [130.734253, 33.151142], - [130.723816, 33.148563], - [130.714142, 33.151821], - [130.703568, 33.149113], - [130.693344, 33.149521], - [130.693237, 33.160576], - [130.685165, 33.16663], - [130.674622, 33.155342], - [130.669434, 33.144905], - [130.671143, 33.135036], - [130.66394, 33.126396], - [130.662109, 33.115883], - [130.658264, 33.105274], - [130.648163, 33.107189], - [130.637833, 33.108391], - [130.625107, 33.107586], - [130.615204, 33.105274], - [130.60527, 33.110371], - [130.593018, 33.110428], - [130.582321, 33.112717], - [130.573456, 33.105652], - [130.564148, 33.100754], - [130.565918, 33.08976], - [130.555588, 33.080013], - [130.544418, 33.078331], - [130.536118, 33.069614], - [130.528366, 33.062977], - [130.518478, 33.060902], - [130.508255, 33.055447], - [130.499969, 33.048893], - [130.506714, 33.032459], - [130.509705, 33.021896], - [130.515701, 33.013004], - [130.509293, 33.003132], - [130.482574, 32.999966], - [130.469391, 32.999428], - [130.424225, 33.003422], - [130.424728, 33.005257], - [130.430603, 33.006207], - [130.43222, 33.007759], - [130.431274, 33.010426], - [130.428253, 33.010887], - [130.427582, 33.010609], - [130.415283, 33.005573], - [130.414352, 33.00803], - [130.421982, 33.018272], - [130.4263, 33.020184], - [130.430435, 33.027515], - [130.432114, 33.034714], - [130.434631, 33.037361], - [130.442474, 33.038624], - [130.445068, 33.043575], - [130.439789, 33.060425], - [130.435669, 33.065632], - [130.428543, 33.067959], - [130.421722, 33.072807], - [130.420654, 33.076931], - [130.421982, 33.082226], - [130.431442, 33.097794], - [130.429916, 33.098339], - [130.420822, 33.094078], - [130.414871, 33.09396], - [130.411911, 33.09066], - [130.400208, 33.097542], - [130.405853, 33.107883], - [130.404434, 33.110104], - [130.398026, 33.103271], - [130.385101, 33.106739], - [130.37912, 33.110172], - [130.377762, 33.114902], - [130.380112, 33.132381], - [130.37117, 33.135651], - [130.362854, 33.146893], - [130.35643, 33.146328], - [130.355179, 33.140198], - [130.352554, 33.137394], - [130.352829, 33.139854], - [130.357803, 33.167423], - [130.361755, 33.189156], - [130.362793, 33.199329], - [130.374969, 33.216434], - [130.380936, 33.228275], - [130.392715, 33.24361], - [130.403442, 33.249954], - [130.419739, 33.261406], - [130.438126, 33.268749], - [130.451462, 33.277264], - [130.465485, 33.289639], - [130.473557, 33.30254], - [130.486435, 33.304268], - [130.491226, 33.314705], - [130.499969, 33.322769], - [130.512466, 33.34095], - [130.538208, 33.339542], - [130.539658, 33.350151], - [130.54277, 33.361961], - [130.544037, 33.397198], - [130.543732, 33.416637], - [130.539352, 33.435413], - [130.530106, 33.440132], - [130.518585, 33.444298], - [130.508179, 33.442986], - [130.491074, 33.436878], - [130.481003, 33.433884], - [130.471298, 33.429295], - [130.4608, 33.416962], - [130.449646, 33.414783], - [130.442566, 33.407089], - [130.430527, 33.393517], - [130.414871, 33.403767], - [130.408707, 33.412849], - [130.398895, 33.423889], - [130.386902, 33.424309], - [130.370544, 33.431664], - [130.360001, 33.430931], - [130.351517, 33.437191], - [130.342041, 33.441132], - [130.332611, 33.449165], - [130.322205, 33.45533], - [130.312347, 33.458828], - [130.300354, 33.459187], - [130.293167, 33.466442], - [130.283249, 33.471718], - [130.273605, 33.476551], - [130.259842, 33.473068], - [130.249969, 33.467678], - [130.240143, 33.47139], - [130.229279, 33.473377], - [130.218582, 33.476192], - [130.206177, 33.477913], - [130.19693, 33.473072], - [130.18866, 33.465248], - [130.170975, 33.464298], - [130.162811, 33.471531], - [130.153137, 33.474438], - [130.143951, 33.469456], - [130.123947, 33.472179], - [130.107559, 33.472759], - [130.099243, 33.466564], - [130.088043, 33.466419], - [130.075912, 33.465794], - [130.062897, 33.468994], - [130.052841, 33.465939], - [130.041275, 33.466461], - [130.04129, 33.46714], - [130.051422, 33.486336], - [130.049896, 33.489594], - [130.053314, 33.493557], - [130.066223, 33.494301], - [130.071884, 33.498184], - [130.091339, 33.504322], - [130.094727, 33.502426], - [130.09816, 33.50325], - [130.107651, 33.512161], - [130.11113, 33.51236], - [130.112549, 33.507214], - [130.128677, 33.505211], - [130.132828, 33.509212], - [130.133453, 33.514053], - [130.134064, 33.518692], - [130.131119, 33.521034], - [130.137283, 33.52494], - [130.143677, 33.526142], - [130.157318, 33.533192], - [130.170593, 33.547958], - [130.174637, 33.550488], - [130.181534, 33.551506], - [130.171082, 33.554256], - [130.166885, 33.556736], - [130.162476, 33.555859], - [130.153, 33.546535], - [130.147964, 33.543949], - [130.145218, 33.544003], - [130.142334, 33.548855], - [130.138718, 33.550323], - [130.135254, 33.549915], - [130.120209, 33.541737], - [130.118988, 33.544388], - [130.122589, 33.55233], - [130.125595, 33.555218], - [130.135056, 33.555344], - [130.138733, 33.56245], - [130.131165, 33.563274], - [130.128082, 33.56749], - [130.117996, 33.565659], - [130.107376, 33.557926], - [130.105515, 33.55658], - [130.102325, 33.558907], - [130.09967, 33.570045], - [130.093918, 33.573269], - [130.092148, 33.576515], - [130.093124, 33.579914], - [130.108521, 33.583935], - [130.110321, 33.592403], - [130.113693, 33.593853], - [130.120316, 33.589211], - [130.132462, 33.584259], - [130.138458, 33.584183], - [130.152832, 33.591484], - [130.15976, 33.598362], - [130.163406, 33.605888], - [130.157516, 33.616844], - [130.15921, 33.620831], - [130.160233, 33.623272], - [130.167648, 33.627457], - [130.172836, 33.62817], - [130.173157, 33.624214], - [130.179276, 33.62561], - [130.204086, 33.637051], - [130.205902, 33.64238], - [130.211517, 33.643951], - [130.213318, 33.646355], - [130.208237, 33.656731], - [130.207718, 33.660049], - [130.209793, 33.662254], - [130.212723, 33.663048], - [130.224609, 33.655144], - [130.232803, 33.652676], - [130.240799, 33.643299], - [130.24144, 33.641453], - [130.234787, 33.630886], - [130.233246, 33.628445], - [130.237228, 33.616123], - [130.241089, 33.61174], - [130.252869, 33.608009], - [130.259567, 33.608597], - [130.265945, 33.606861], - [130.271973, 33.609497], - [130.27623, 33.609318], - [130.280899, 33.601006], - [130.276337, 33.592388], - [130.273453, 33.590973], - [130.271317, 33.58646], - [130.273621, 33.582619], - [130.28389, 33.57901], - [130.294586, 33.579605], - [130.29895, 33.577969], - [130.313599, 33.582127], - [130.317795, 33.58905], - [130.315674, 33.593742], - [130.33522, 33.5896], - [130.34343, 33.590054], - [130.352386, 33.587204], - [130.357224, 33.586006], - [130.364655, 33.586624], - [130.367752, 33.58847], - [130.376694, 33.592304], - [130.382446, 33.597721], - [130.387604, 33.594288], - [130.382919, 33.589935], - [130.385254, 33.587635], - [130.396271, 33.590736], - [130.399261, 33.594494], - [130.404251, 33.593002], - [130.4039, 33.599491], - [130.409134, 33.59964], - [130.407974, 33.60413], - [130.414856, 33.605518], - [130.415314, 33.616283], - [130.419861, 33.615417], - [130.423569, 33.624981], - [130.422073, 33.628036], - [130.424835, 33.634251], - [130.42337, 33.640232], - [130.42543, 33.645988], - [130.429626, 33.646637], - [130.431442, 33.648827], - [130.436462, 33.648682], - [130.439667, 33.652412], - [130.437531, 33.657314], - [130.439514, 33.660767], - [130.43222, 33.671032], - [130.434296, 33.676373], - [130.433136, 33.678398], - [130.425766, 33.680088], - [130.414948, 33.677826], - [130.411743, 33.674095], - [130.412003, 33.670765], - [130.405975, 33.667927], - [130.398438, 33.665215], - [130.377655, 33.662609], - [130.37262, 33.657917], - [130.368118, 33.653721], - [130.36647, 33.646103], - [130.367889, 33.640747], - [130.366806, 33.638596], - [130.363129, 33.637768], - [130.352341, 33.644699], - [130.342651, 33.647301], - [130.339203, 33.64669], - [130.334915, 33.650219], - [130.332809, 33.654701], - [130.326843, 33.657509], - [130.347488, 33.658649], - [130.363632, 33.666229], - [130.371613, 33.666458], - [130.388016, 33.673843], - [130.396347, 33.678284], - [130.402893, 33.681767], - [130.419479, 33.696472], - [130.424698, 33.709721], - [130.429581, 33.714378], - [130.440094, 33.714321], - [130.446869, 33.717197], - [130.454193, 33.722614], - [130.462418, 33.732677], - [130.472672, 33.755184], - [130.475662, 33.768101], - [130.473984, 33.773655], - [130.473312, 33.774204], - [130.468643, 33.777969], - [130.463226, 33.780182], - [130.454071, 33.778851], - [130.452698, 33.777103], - [130.449356, 33.781521], - [130.449249, 33.786118], - [130.453613, 33.7943], - [130.448853, 33.810558], - [130.454315, 33.811066], - [130.458328, 33.807728], - [130.469757, 33.808762], - [130.475723, 33.812641], - [130.481079, 33.820873], - [130.486404, 33.836216], - [130.481842, 33.849979], - [130.482544, 33.853779], - [130.484375, 33.854088], - [130.486252, 33.854397], - [130.496063, 33.847401], - [130.503738, 33.848438], - [130.523193, 33.855965], - [130.529236, 33.861935], - [130.530823, 33.867455], - [130.533966, 33.875359], - [130.529022, 33.880951], - [130.528793, 33.884075], - [130.531494, 33.884636], - [130.539352, 33.883591], - [130.558594, 33.887337], - [130.568863, 33.887466], - [130.569534, 33.881855], - [130.571823, 33.878212], - [130.578049, 33.875408], - [130.590469, 33.873348], - [130.610168, 33.874599], - [130.630219, 33.877541], - [130.645828, 33.882759], - [130.650986, 33.884483], - [130.662857, 33.893261], - [130.665375, 33.89632], - [130.663223, 33.898296], - [130.666428, 33.902435], - [130.66684, 33.905037], - [130.667618, 33.909817], - [130.671082, 33.913761], - [130.685715, 33.919125], - [130.689377, 33.923706], - [130.688843, 33.930786], - [130.696808, 33.931618], - [130.702286, 33.935459], - [130.717865, 33.934803], - [130.725311, 33.932472], - [130.726791, 33.932568], - [130.725723, 33.934475], - [130.754333, 33.919548], - [130.770416, 33.908669], - [130.775009, 33.90765], - [130.781418, 33.908852], - [130.782669, 33.909088], - [130.786728, 33.911804], - [130.7883, 33.921082], - [130.777451, 33.918644], - [130.771667, 33.918976], - [130.766708, 33.924992], - [130.767685, 33.928806], - [130.771179, 33.932331], - [130.812408, 33.950958], - [130.826096, 33.952282], - [130.83606, 33.956551], - [130.840347, 33.956142], - [130.842865, 33.952717], - [130.836761, 33.943626], - [130.835922, 33.940269], - [130.833847, 33.93198], - [130.829529, 33.929459], - [130.819443, 33.926857], - [130.819565, 33.92519], - [130.826996, 33.922852], - [130.829758, 33.919437], - [130.830353, 33.914661], - [130.824509, 33.909134], - [130.825394, 33.903748], - [130.823044, 33.89819], - [130.814392, 33.889805], - [130.806625, 33.886482], - [130.793777, 33.884151], - [130.779892, 33.875496], - [130.757492, 33.873508], - [130.755219, 33.870464], - [130.757568, 33.869122], - [130.763931, 33.867775], - [130.78392, 33.870663], - [130.80159, 33.87714], - [130.805588, 33.875427], - [130.806091, 33.869328], - [130.808273, 33.866222], - [130.812271, 33.86935], - [130.815384, 33.88372], - [130.826141, 33.894321], - [130.827911, 33.901196], - [130.836502, 33.910065], - [130.837448, 33.917538], - [130.851288, 33.923038], - [130.861221, 33.934624], - [130.871231, 33.941818], - [130.907379, 33.899323], - [130.904236, 33.894356], - [130.896317, 33.899811], - [130.890945, 33.897869], - [130.888168, 33.898357], - [130.88446, 33.904442], - [130.875763, 33.903584], - [130.872742, 33.902081], - [130.868332, 33.894413], - [130.870865, 33.891651], - [130.875702, 33.889339], - [130.881302, 33.891907], - [130.884094, 33.890774], - [130.886505, 33.884777], - [130.894806, 33.887493], - [130.896713, 33.883083], - [130.903488, 33.885391], - [130.912811, 33.884937], - [130.921524, 33.887356], - [130.932724, 33.902489], - [130.937515, 33.915333], - [130.940948, 33.913128], - [130.947922, 33.927692], - [130.95285, 33.932327], - [130.966614, 33.939491], - [130.968536, 33.947739], - [130.965485, 33.951771], - [130.967087, 33.953938], - [130.981812, 33.951324], - [130.98819, 33.953312], - [130.990936, 33.949898], - [130.995392, 33.950745], - [130.999451, 33.953453], - [131.005417, 33.954166], - [131.017044, 33.952858], - [131.028488, 33.954048], - [131.02887, 33.952187], - [131.023468, 33.943558], - [131.027542, 33.939159], - [131.026291, 33.936409], - [131.025803, 33.935314], - [131.016235, 33.932541], - [131.012985, 33.928829], - [131.013184, 33.922565], - [131.004166, 33.918987], - [131.002563, 33.916817], - [131.018661, 33.912388], - [131.015106, 33.909492], - [131.00798, 33.907471], - [131.00589, 33.901722], - [131.011856, 33.895329], - [131.003525, 33.896172], - [130.995056, 33.899097], - [130.992523, 33.896046], - [130.990936, 33.890114], - [130.99231, 33.884956], - [130.984161, 33.869293], - [130.984818, 33.860004], - [130.98494, 33.858463], - [130.990921, 33.851654], - [130.990906, 33.841408], - [130.986801, 33.839325], - [130.982559, 33.828663], - [130.972427, 33.833805], - [130.96759, 33.835026], - [130.962921, 33.833748], - [130.961823, 33.828049], - [130.966125, 33.818771], - [130.983154, 33.799221], - [130.988144, 33.799469], - [130.991638, 33.802986], - [130.992081, 33.810741], - [131.012573, 33.811131], - [131.014404, 33.809967], - [131.017029, 33.804871], - [131.014313, 33.793659], - [131.018051, 33.776283], - [131.022598, 33.775463], - [131.027756, 33.776974], - [131.030441, 33.774178], - [131.029541, 33.762222], - [131.030762, 33.754578], - [131.031342, 33.751022], - [131.027527, 33.744774], - [131.02507, 33.737129], - [131.023315, 33.730145], - [131.02504, 33.723331], - [131.033112, 33.718716], - [131.031799, 33.705482], - [131.037613, 33.697411], - [131.039062, 33.691002], - [131.044586, 33.687096], - [131.048813, 33.687511], - [131.054276, 33.684433], - [131.056778, 33.677242], - [131.066025, 33.666412], - [131.070053, 33.655323], - [131.077438, 33.649624], - [131.079468, 33.645542], - [131.077072, 33.637066], - [131.078354, 33.63295], - [131.08667, 33.631893], - [131.103256, 33.615982], - [131.110428, 33.613407], - [131.111557, 33.618687], - [131.114487, 33.619663], - [131.11792, 33.616905], - [131.123245, 33.619255], - [131.130035, 33.618538], - [131.134689, 33.619808], - [131.175629, 33.615936], - [131.184555, 33.616783], - [131.18869, 33.614681], - [131.182983, 33.603333], - [131.183044, 33.598946], - [131.187698, 33.600941], - [131.175446, 33.583282] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "高知県", - "name": "Kochi", - "ISOCODE": "JP-39", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:20:53+0100", - "cartodb_id": 287 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [133.609436, 33.878338], - [133.619003, 33.873642], - [133.63353, 33.87159], - [133.642471, 33.878067], - [133.653061, 33.879417], - [133.663223, 33.878407], - [133.665375, 33.868156], - [133.673599, 33.861893], - [133.682144, 33.855686], - [133.692062, 33.853718], - [133.700928, 33.848465], - [133.711075, 33.848118], - [133.721512, 33.845951], - [133.733566, 33.847576], - [133.74353, 33.842224], - [133.750229, 33.833591], - [133.770355, 33.836643], - [133.781937, 33.838757], - [133.790939, 33.83329], - [133.807861, 33.83329], - [133.820724, 33.834053], - [133.831207, 33.841648], - [133.842026, 33.840904], - [133.856369, 33.830112], - [133.863388, 33.821247], - [133.870682, 33.812302], - [133.875, 33.802799], - [133.887573, 33.800018], - [133.898102, 33.799721], - [133.904007, 33.790691], - [133.914841, 33.789066], - [133.923859, 33.794731], - [133.934875, 33.79665], - [133.945923, 33.797695], - [133.952911, 33.805584], - [133.954773, 33.817116], - [133.957901, 33.827599], - [133.967194, 33.831837], - [133.977585, 33.833294], - [133.987213, 33.837521], - [133.992538, 33.826195], - [134, 33.817856], - [134.015549, 33.818703], - [134.026199, 33.821556], - [134.035767, 33.825237], - [134.039474, 33.815742], - [134.036072, 33.806084], - [134.044434, 33.798317], - [134.048935, 33.788216], - [134.057648, 33.781574], - [134.061523, 33.77187], - [134.06131, 33.760223], - [134.059418, 33.749958], - [134.064148, 33.735222], - [134.070602, 33.726749], - [134.067749, 33.716404], - [134.068939, 33.705952], - [134.066483, 33.687263], - [134.081451, 33.686607], - [134.092514, 33.689495], - [134.10379, 33.690872], - [134.114059, 33.691948], - [134.126373, 33.692635], - [134.136215, 33.690147], - [134.145111, 33.684319], - [134.155884, 33.682804], - [134.166489, 33.684925], - [134.178085, 33.674965], - [134.172424, 33.666229], - [134.17804, 33.650867], - [134.172897, 33.638325], - [134.164978, 33.631824], - [134.153961, 33.628117], - [134.156921, 33.618462], - [134.158798, 33.608089], - [134.172806, 33.598309], - [134.180237, 33.590637], - [134.187973, 33.582977], - [134.196472, 33.567497], - [134.198471, 33.557411], - [134.21347, 33.562637], - [134.224625, 33.561989], - [134.231934, 33.555111], - [134.258255, 33.549934], - [134.268356, 33.5527], - [134.278442, 33.556816], - [134.290131, 33.55621], - [134.299316, 33.551777], - [134.308014, 33.546566], - [134.31601, 33.542377], - [134.307999, 33.543381], - [134.305908, 33.538116], - [134.302948, 33.53722], - [134.299683, 33.538403], - [134.297882, 33.531895], - [134.291534, 33.527588], - [134.288956, 33.522732], - [134.290268, 33.520046], - [134.295822, 33.517662], - [134.283447, 33.507172], - [134.273209, 33.491928], - [134.259766, 33.476192], - [134.25676, 33.468826], - [134.248596, 33.459259], - [134.246353, 33.443348], - [134.226166, 33.412651], - [134.218369, 33.391613], - [134.220917, 33.381859], - [134.211502, 33.36496], - [134.208786, 33.356762], - [134.208328, 33.347363], - [134.201523, 33.31707], - [134.201355, 33.316326], - [134.190994, 33.282707], - [134.191711, 33.26812], - [134.188583, 33.249268], - [134.183899, 33.240192], - [134.180664, 33.240746], - [134.174362, 33.251457], - [134.164612, 33.261879], - [134.153641, 33.278534], - [134.139053, 33.292393], - [134.130814, 33.293667], - [134.123978, 33.290173], - [134.119766, 33.289867], - [134.114487, 33.291832], - [134.112106, 33.296577], - [134.113113, 33.303696], - [134.105621, 33.320423], - [134.084854, 33.332676], - [134.079712, 33.337772], - [134.073105, 33.34993], - [134.066986, 33.354378], - [134.052719, 33.365105], - [134.045258, 33.365555], - [134.041687, 33.368187], - [134.039551, 33.372726], - [134.042862, 33.384907], - [134.040695, 33.397587], - [134.034409, 33.407246], - [134.027023, 33.412708], - [134.015244, 33.415348], - [134.00563, 33.420132], - [133.996185, 33.419907], - [133.990372, 33.422897], - [133.985703, 33.428417], - [133.975418, 33.431095], - [133.955368, 33.442921], - [133.94931, 33.452583], - [133.946548, 33.460449], - [133.947006, 33.468807], - [133.945084, 33.474186], - [133.933075, 33.483074], - [133.927032, 33.485016], - [133.919266, 33.486702], - [133.907898, 33.491222], - [133.900391, 33.49229], - [133.89003, 33.497044], - [133.874222, 33.500408], - [133.866821, 33.498764], - [133.847916, 33.498497], - [133.844864, 33.500298], - [133.840637, 33.50687], - [133.836365, 33.508224], - [133.785477, 33.510895], - [133.778076, 33.510315], - [133.77356, 33.50996], - [133.761734, 33.513203], - [133.758392, 33.516247], - [133.757462, 33.528122], - [133.748596, 33.531857], - [133.734421, 33.531487], - [133.692963, 33.528103], - [133.680527, 33.527771], - [133.678085, 33.526455], - [133.666168, 33.525719], - [133.657822, 33.522366], - [133.642166, 33.521526], - [133.592987, 33.512054], - [133.58519, 33.507664], - [133.574585, 33.499023], - [133.573914, 33.496918], - [133.577423, 33.496391], - [133.579025, 33.493511], - [133.57077, 33.488068], - [133.494003, 33.459835], - [133.486206, 33.46212], - [133.484238, 33.467491], - [133.477386, 33.470848], - [133.475769, 33.46767], - [133.479568, 33.466316], - [133.482117, 33.458458], - [133.485428, 33.456463], - [133.488876, 33.457394], - [133.491425, 33.456005], - [133.489029, 33.453644], - [133.476669, 33.451622], - [133.470459, 33.447998], - [133.468414, 33.446796], - [133.463654, 33.441444], - [133.450821, 33.445042], - [133.446854, 33.444511], - [133.439514, 33.435535], - [133.433151, 33.432846], - [133.427826, 33.435616], - [133.426254, 33.443504], - [133.422226, 33.444431], - [133.419189, 33.43996], - [133.41423, 33.4394], - [133.411423, 33.441196], - [133.407257, 33.439613], - [133.402725, 33.440945], - [133.400528, 33.440044], - [133.409012, 33.433403], - [133.409866, 33.430714], - [133.408447, 33.429005], - [133.401993, 33.428608], - [133.396957, 33.42387], - [133.392258, 33.423523], - [133.383926, 33.426205], - [133.373535, 33.424107], - [133.370621, 33.423519], - [133.356583, 33.414131], - [133.358154, 33.4123], - [133.365677, 33.410851], - [133.366898, 33.405251], - [133.370636, 33.404942], - [133.373749, 33.407955], - [133.376007, 33.419292], - [133.383804, 33.411171], - [133.388107, 33.40942], - [133.389267, 33.417385], - [133.39505, 33.416092], - [133.399094, 33.420593], - [133.404831, 33.413872], - [133.407471, 33.416245], - [133.406906, 33.424156], - [133.4133, 33.425804], - [133.420151, 33.434559], - [133.423187, 33.433186], - [133.425461, 33.42979], - [133.42717, 33.42725], - [133.431412, 33.426952], - [133.434494, 33.424538], - [133.438187, 33.42527], - [133.439514, 33.429272], - [133.445663, 33.431118], - [133.447006, 33.434914], - [133.457443, 33.428741], - [133.463181, 33.428696], - [133.463028, 33.426189], - [133.460388, 33.423607], - [133.459457, 33.416065], - [133.450485, 33.416645], - [133.441849, 33.408886], - [133.433868, 33.409489], - [133.43074, 33.406689], - [133.42424, 33.407753], - [133.422913, 33.406509], - [133.423416, 33.404209], - [133.421661, 33.403919], - [133.416351, 33.405853], - [133.415085, 33.404919], - [133.413849, 33.40173], - [133.41095, 33.398186], - [133.410339, 33.394829], - [133.407684, 33.393082], - [133.404175, 33.399658], - [133.401337, 33.399155], - [133.399765, 33.397293], - [133.398834, 33.39679], - [133.397079, 33.397354], - [133.394577, 33.400082], - [133.392471, 33.40036], - [133.389069, 33.398174], - [133.384598, 33.398045], - [133.381775, 33.394413], - [133.38179, 33.387943], - [133.37352, 33.395424], - [133.365555, 33.395611], - [133.354202, 33.393604], - [133.350418, 33.395164], - [133.34697, 33.394226], - [133.347427, 33.389233], - [133.336685, 33.384739], - [133.334122, 33.380489], - [133.333755, 33.377346], - [133.336472, 33.372002], - [133.33136, 33.363499], - [133.333801, 33.358772], - [133.33287, 33.357075], - [133.327911, 33.35672], - [133.320068, 33.348553], - [133.318344, 33.355751], - [133.317047, 33.361198], - [133.324219, 33.361828], - [133.326767, 33.372131], - [133.325623, 33.375854], - [133.320892, 33.375923], - [133.31813, 33.370621], - [133.308945, 33.376194], - [133.306915, 33.37154], - [133.30394, 33.371243], - [133.303024, 33.375179], - [133.29715, 33.378971], - [133.303162, 33.383743], - [133.306198, 33.388424], - [133.298203, 33.400921], - [133.297409, 33.396305], - [133.299988, 33.388241], - [133.294998, 33.382664], - [133.288391, 33.380379], - [133.285736, 33.372784], - [133.282791, 33.371559], - [133.278152, 33.369633], - [133.268768, 33.362465], - [133.269485, 33.357265], - [133.272064, 33.355255], - [133.269165, 33.341812], - [133.27359, 33.336933], - [133.272934, 33.335037], - [133.264999, 33.334587], - [133.261749, 33.329273], - [133.256821, 33.328289], - [133.253204, 33.325672], - [133.247711, 33.32634], - [133.236557, 33.31995], - [133.248184, 33.315502], - [133.25235, 33.311035], - [133.255814, 33.311142], - [133.264038, 33.30492], - [133.262405, 33.302364], - [133.257507, 33.300758], - [133.25795, 33.296177], - [133.254791, 33.294621], - [133.254044, 33.294655], - [133.246582, 33.294998], - [133.24704, 33.290001], - [133.251404, 33.287003], - [133.247498, 33.273945], - [133.248871, 33.270855], - [133.261292, 33.276451], - [133.264801, 33.275513], - [133.265717, 33.271576], - [133.262589, 33.26355], - [133.263535, 33.258778], - [133.269058, 33.251431], - [133.25972, 33.243633], - [133.253265, 33.243439], - [133.251434, 33.240044], - [133.259201, 33.232555], - [133.25589, 33.228909], - [133.262146, 33.221584], - [133.259079, 33.218151], - [133.254593, 33.216125], - [133.245682, 33.212109], - [133.240295, 33.199215], - [133.247498, 33.193172], - [133.245087, 33.191429], - [133.238861, 33.192074], - [133.231583, 33.188511], - [133.227829, 33.189232], - [133.219315, 33.185215], - [133.215866, 33.179054], - [133.216797, 33.174911], - [133.226776, 33.167496], - [133.228943, 33.163387], - [133.224487, 33.157616], - [133.228256, 33.150635], - [133.227249, 33.145386], - [133.220673, 33.142677], - [133.214722, 33.142498], - [133.211624, 33.145325], - [133.212616, 33.151196], - [133.212067, 33.152431], - [133.210144, 33.156757], - [133.205261, 33.160572], - [133.200287, 33.161045], - [133.191788, 33.156818], - [133.17276, 33.138485], - [133.168518, 33.127918], - [133.16127, 33.118092], - [133.158737, 33.108204], - [133.149979, 33.093323], - [133.145233, 33.088581], - [133.125839, 33.078999], - [133.123291, 33.075161], - [133.119827, 33.069416], - [133.117996, 33.060383], - [133.104752, 33.040974], - [133.102493, 33.030674], - [133.103973, 33.025085], - [133.106873, 33.021423], - [133.105072, 33.017399], - [133.102417, 33.015648], - [133.097458, 33.015907], - [133.077042, 33.029655], - [133.073349, 33.029121], - [133.06723, 33.027462], - [133.065598, 33.03096], - [133.050323, 33.029217], - [133.037689, 33.02401], - [133.029053, 33.017887], - [133.024673, 33.010857], - [133.019882, 33.007572], - [133.012436, 32.991676], - [133.005051, 32.985592], - [133.003738, 32.981583], - [133.011017, 32.968674], - [133.000626, 32.947258], - [133.000717, 32.945267], - [133.000793, 32.943504], - [133.003174, 32.940037], - [133.008209, 32.93832], - [133.0103, 32.935886], - [133.005966, 32.933239], - [133.003708, 32.928574], - [132.993362, 32.933037], - [132.98114, 32.945992], - [132.97908, 32.93716], - [132.980255, 32.933231], - [132.984161, 32.928768], - [132.991699, 32.926094], - [133.005875, 32.924473], - [133.008926, 32.922485], - [133.004654, 32.918797], - [133.007095, 32.913868], - [133.01329, 32.908436], - [133.015656, 32.899956], - [133.012466, 32.888374], - [133.013412, 32.873379], - [133.003632, 32.865547], - [133.001907, 32.854851], - [132.993805, 32.859177], - [132.992493, 32.858543], - [132.988235, 32.856487], - [132.982269, 32.857544], - [132.969696, 32.856716], - [132.965668, 32.853035], - [132.962677, 32.853771], - [132.961288, 32.856853], - [132.958771, 32.858025], - [132.956696, 32.849606], - [132.962662, 32.843334], - [132.961136, 32.839111], - [132.964111, 32.833576], - [132.963699, 32.826466], - [132.967529, 32.823669], - [132.960587, 32.819061], - [132.959473, 32.810886], - [132.965103, 32.801262], - [132.97406, 32.794464], - [132.983978, 32.793537], - [132.991623, 32.788364], - [132.997864, 32.7869], - [133.003204, 32.783318], - [133.010406, 32.782509], - [133.017471, 32.768131], - [133.018265, 32.767097], - [133.023254, 32.760601], - [133.023651, 32.75164], - [133.021698, 32.745945], - [133.026962, 32.733387], - [133.028229, 32.721535], - [133.025452, 32.71769], - [133.02298, 32.717815], - [133.018173, 32.715157], - [133.010056, 32.714474], - [133.006561, 32.715611], - [133.004547, 32.721806], - [132.999985, 32.724579], - [132.992996, 32.726227], - [132.98642, 32.724342], - [132.982422, 32.72546], - [132.975342, 32.723976], - [132.973007, 32.731827], - [132.977295, 32.740524], - [132.975922, 32.743401], - [132.972336, 32.743938], - [132.970215, 32.744255], - [132.96814, 32.746273], - [132.968231, 32.749825], - [132.961227, 32.751888], - [132.960251, 32.755123], - [132.960556, 32.759136], - [132.962448, 32.76321], - [132.968063, 32.766537], - [132.970123, 32.767502], - [132.969498, 32.769257], - [132.966827, 32.770042], - [132.964798, 32.768635], - [132.963333, 32.766354], - [132.959305, 32.763088], - [132.95314, 32.761429], - [132.946594, 32.769348], - [132.947205, 32.772289], - [132.950653, 32.772404], - [132.953033, 32.774361], - [132.952438, 32.776428], - [132.944138, 32.779701], - [132.938538, 32.778053], - [132.926651, 32.773693], - [132.925415, 32.77887], - [132.918365, 32.781975], - [132.908539, 32.781017], - [132.89856, 32.783188], - [132.895645, 32.782253], - [132.891052, 32.780224], - [132.885803, 32.781506], - [132.883926, 32.779358], - [132.888153, 32.773655], - [132.883209, 32.768482], - [132.883865, 32.765163], - [132.888794, 32.760113], - [132.880463, 32.758789], - [132.873474, 32.755424], - [132.870377, 32.75803], - [132.873947, 32.761074], - [132.877396, 32.77663], - [132.876053, 32.779091], - [132.864578, 32.781624], - [132.856186, 32.776329], - [132.852448, 32.77203], - [132.847641, 32.774372], - [132.84433, 32.771545], - [132.842697, 32.764393], - [132.837967, 32.760059], - [132.832962, 32.758343], - [132.831894, 32.757973], - [132.829163, 32.753288], - [132.821152, 32.751751], - [132.819672, 32.746475], - [132.809601, 32.744961], - [132.807022, 32.74147], - [132.79921, 32.739948], - [132.796219, 32.740471], - [132.789978, 32.747143], - [132.78302, 32.747948], - [132.77684, 32.753365], - [132.774094, 32.754105], - [132.770874, 32.749195], - [132.766068, 32.746525], - [132.761581, 32.74741], - [132.748688, 32.764072], - [132.74353, 32.768486], - [132.735474, 32.771751], - [132.732895, 32.778965], - [132.728622, 32.780483], - [132.726303, 32.787498], - [132.718155, 32.789928], - [132.717529, 32.790112], - [132.712448, 32.788261], - [132.708694, 32.789173], - [132.702393, 32.786865], - [132.694748, 32.786594], - [132.692398, 32.784424], - [132.700119, 32.782822], - [132.701767, 32.779537], - [132.694839, 32.779919], - [132.688904, 32.77512], - [132.67865, 32.777676], - [132.672348, 32.775368], - [132.663269, 32.774418], - [132.653702, 32.76823], - [132.657089, 32.763988], - [132.654572, 32.76096], - [132.634323, 32.756062], - [132.633881, 32.76001], - [132.635513, 32.761944], - [132.642838, 32.763462], - [132.645386, 32.766891], - [132.643021, 32.769222], - [132.639664, 32.77253], - [132.639175, 32.777313], - [132.644821, 32.778141], - [132.648361, 32.781189], - [132.644302, 32.783546], - [132.639832, 32.784016], - [132.632111, 32.790207], - [132.635757, 32.796181], - [132.643616, 32.79229], - [132.647171, 32.795338], - [132.651871, 32.79488], - [132.654694, 32.797695], - [132.659805, 32.794327], - [132.663239, 32.794868], - [132.665344, 32.797237], - [132.663483, 32.799885], - [132.647079, 32.801804], - [132.651505, 32.807178], - [132.650482, 32.812988], - [132.655365, 32.813995], - [132.656662, 32.822598], - [132.659256, 32.824989], - [132.662704, 32.818199], - [132.663467, 32.816681], - [132.664749, 32.823933], - [132.667816, 32.826752], - [132.664398, 32.830807], - [132.664551, 32.832691], - [132.677643, 32.832737], - [132.681488, 32.834961], - [132.676147, 32.837902], - [132.67218, 32.838181], - [132.668259, 32.842632], - [132.662186, 32.845337], - [132.66716, 32.849689], - [132.673508, 32.851376], - [132.683914, 32.860718], - [132.693283, 32.866058], - [132.694031, 32.870678], - [132.70076, 32.874672], - [132.703323, 32.877892], - [132.710419, 32.879185], - [132.714325, 32.875149], - [132.712997, 32.871971], - [132.714142, 32.868881], - [132.717499, 32.871471], - [132.720093, 32.873474], - [132.721786, 32.869148], - [132.728546, 32.867508], - [132.730865, 32.87051], - [132.72496, 32.875103], - [132.72226, 32.879601], - [132.715912, 32.882927], - [132.714417, 32.888302], - [132.7276, 32.886467], - [132.729446, 32.889244], - [132.728241, 32.893795], - [132.725372, 32.891815], - [132.720169, 32.892052], - [132.722443, 32.901104], - [132.716675, 32.91259], - [132.724945, 32.920395], - [132.718811, 32.919552], - [132.708664, 32.914814], - [132.707062, 32.912045], - [132.71077, 32.907166], - [132.709915, 32.904423], - [132.706314, 32.902206], - [132.704453, 32.900997], - [132.699554, 32.901936], - [132.696457, 32.904308], - [132.695496, 32.90699], - [132.696335, 32.909161], - [132.701691, 32.910812], - [132.703033, 32.91357], - [132.699829, 32.918259], - [132.694717, 32.911816], - [132.682938, 32.914948], - [132.676453, 32.911171], - [132.67218, 32.913872], - [132.670837, 32.91473], - [132.660217, 32.917484], - [132.664886, 32.938679], - [132.675858, 32.939522], - [132.685471, 32.943119], - [132.684555, 32.95443], - [132.688736, 32.963905], - [132.689178, 32.974953], - [132.686356, 32.985188], - [132.686111, 32.999962], - [132.67926, 33.007526], - [132.67923, 33.017796], - [132.680954, 33.028156], - [132.675674, 33.040077], - [132.668045, 33.0466], - [132.660324, 33.05344], - [132.66687, 33.061115], - [132.670837, 33.071175], - [132.672241, 33.082878], - [132.670258, 33.092766], - [132.665848, 33.105507], - [132.655136, 33.107662], - [132.647156, 33.116005], - [132.640869, 33.12426], - [132.631485, 33.129295], - [132.63295, 33.140209], - [132.625305, 33.157097], - [132.618027, 33.166634], - [132.624985, 33.179092], - [132.6353, 33.182255], - [132.640823, 33.170937], - [132.649887, 33.16663], - [132.658081, 33.160404], - [132.664124, 33.152103], - [132.67366, 33.147449], - [132.682938, 33.140728], - [132.688812, 33.131802], - [132.698547, 33.134621], - [132.703094, 33.144218], - [132.712524, 33.149342], - [132.720154, 33.157784], - [132.728333, 33.164936], - [132.734451, 33.173195], - [132.739685, 33.182926], - [132.741562, 33.193413], - [132.75, 33.199623], - [132.760941, 33.198219], - [132.771851, 33.200787], - [132.775375, 33.210247], - [132.773407, 33.220417], - [132.777313, 33.230537], - [132.780899, 33.249596], - [132.789764, 33.263817], - [132.796585, 33.271549], - [132.806824, 33.274464], - [132.816498, 33.277233], - [132.827225, 33.279179], - [132.837036, 33.284554], - [132.84787, 33.285629], - [132.857834, 33.289391], - [132.866867, 33.294968], - [132.875, 33.301224], - [132.886276, 33.303684], - [132.898529, 33.308884], - [132.902878, 33.318108], - [132.904861, 33.33329], - [132.900558, 33.342571], - [132.89418, 33.350903], - [132.886993, 33.358036], - [132.875, 33.361462], - [132.86441, 33.364124], - [132.85939, 33.373634], - [132.85553, 33.384991], - [132.852753, 33.394928], - [132.842697, 33.394829], - [132.834961, 33.403263], - [132.836349, 33.416557], - [132.827576, 33.422363], - [132.828323, 33.432701], - [132.827179, 33.443226], - [132.817261, 33.447239], - [132.809494, 33.456753], - [132.81929, 33.461857], - [132.825974, 33.469418], - [132.836182, 33.472015], - [132.846497, 33.474243], - [132.862061, 33.472389], - [132.873825, 33.467743], - [132.885757, 33.46946], - [132.896423, 33.468956], - [132.912521, 33.465366], - [132.924377, 33.464767], - [132.935013, 33.467072], - [132.946274, 33.468552], - [132.956741, 33.463245], - [132.967911, 33.46468], - [132.97879, 33.46801], - [132.989685, 33.469658], - [133, 33.472115], - [133.017624, 33.477562], - [133.018051, 33.488937], - [133.028351, 33.499966], - [133.03685, 33.508598], - [133.040924, 33.518471], - [133.047043, 33.526451], - [133.065201, 33.538105], - [133.064087, 33.54845], - [133.063324, 33.559975], - [133.048828, 33.572163], - [133.053345, 33.583237], - [133.05835, 33.591938], - [133.068665, 33.597202], - [133.081924, 33.605846], - [133.074219, 33.613026], - [133.071045, 33.622795], - [133.072495, 33.632767], - [133.080017, 33.650326], - [133.089935, 33.653183], - [133.100967, 33.654987], - [133.110962, 33.654591], - [133.121979, 33.666634], - [133.122498, 33.676979], - [133.125, 33.689899], - [133.133545, 33.695858], - [133.144028, 33.699749], - [133.142624, 33.711121], - [133.151657, 33.720436], - [133.163132, 33.728058], - [133.161392, 33.738617], - [133.16449, 33.749847], - [133.174316, 33.754436], - [133.183151, 33.761478], - [133.187424, 33.77145], - [133.193161, 33.780937], - [133.196259, 33.79076], - [133.206253, 33.791405], - [133.215698, 33.784389], - [133.22345, 33.776936], - [133.234024, 33.780647], - [133.25, 33.785149], - [133.258972, 33.789585], - [133.263824, 33.799629], - [133.265045, 33.810387], - [133.269897, 33.820385], - [133.279846, 33.827675], - [133.290222, 33.826241], - [133.306046, 33.818661], - [133.317612, 33.812675], - [133.328247, 33.811378], - [133.336685, 33.818474], - [133.347336, 33.821293], - [133.35466, 33.828457], - [133.365463, 33.82896], - [133.384811, 33.823341], - [133.395081, 33.822964], - [133.406219, 33.83329], - [133.420517, 33.836662], - [133.430161, 33.83329], - [133.440445, 33.830868], - [133.458252, 33.8335], - [133.473541, 33.833229], - [133.48999, 33.827095], - [133.5, 33.826107], - [133.510239, 33.833076], - [133.510666, 33.843468], - [133.521072, 33.844418], - [133.529053, 33.851421], - [133.534653, 33.860806], - [133.540253, 33.86932], - [133.549301, 33.8769], - [133.559692, 33.878712], - [133.568359, 33.871628], - [133.585587, 33.864323], - [133.595016, 33.87183], - [133.609436, 33.878338] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "大分県", - "name": "Oita", - "ISOCODE": "JP-44", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:01+0100", - "cartodb_id": 307 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [131.175446, 33.583282], - [131.187698, 33.600941], - [131.191284, 33.602478], - [131.203079, 33.612446], - [131.207458, 33.614117], - [131.212021, 33.613083], - [131.21814, 33.607315], - [131.220215, 33.602608], - [131.236984, 33.598183], - [131.242722, 33.598248], - [131.244919, 33.602531], - [131.250549, 33.600498], - [131.258057, 33.596466], - [131.261856, 33.591839], - [131.25943, 33.587337], - [131.26033, 33.585079], - [131.272842, 33.580658], - [131.294189, 33.574772], - [131.300613, 33.575699], - [131.315002, 33.577003], - [131.321304, 33.576046], - [131.328125, 33.578453], - [131.33226, 33.576141], - [131.337753, 33.576187], - [131.340668, 33.569847], - [131.345734, 33.568619], - [131.349396, 33.569836], - [131.357651, 33.569386], - [131.367157, 33.57275], - [131.372223, 33.567764], - [131.374863, 33.573109], - [131.383224, 33.574959], - [131.389099, 33.572933], - [131.399826, 33.572803], - [131.409637, 33.567822], - [131.418777, 33.56908], - [131.427551, 33.568439], - [131.428436, 33.566391], - [131.42662, 33.563591], - [131.419098, 33.560318], - [131.417557, 33.557323], - [131.419617, 33.552612], - [131.422272, 33.557541], - [131.432922, 33.562626], - [131.435791, 33.568192], - [131.429886, 33.574604], - [131.426498, 33.58448], - [131.42775, 33.588089], - [131.43132, 33.590759], - [131.434845, 33.590294], - [131.440125, 33.585941], - [131.442902, 33.585442], - [131.447968, 33.591732], - [131.448959, 33.599506], - [131.452545, 33.605732], - [131.459274, 33.611523], - [131.461517, 33.613453], - [131.470734, 33.613667], - [131.473343, 33.611904], - [131.476852, 33.615616], - [131.478241, 33.621113], - [131.480179, 33.622036], - [131.481277, 33.628143], - [131.486649, 33.629852], - [131.490601, 33.634418], - [131.489868, 33.637936], - [131.486099, 33.634632], - [131.483582, 33.634933], - [131.484848, 33.638542], - [131.49173, 33.643871], - [131.500626, 33.64156], - [131.50441, 33.644653], - [131.50029, 33.650528], - [131.504288, 33.654259], - [131.501007, 33.65871], - [131.504639, 33.668274], - [131.508408, 33.66782], - [131.509964, 33.670815], - [131.512207, 33.670708], - [131.516983, 33.666534], - [131.521286, 33.665474], - [131.526093, 33.668407], - [131.527222, 33.670338], - [131.531189, 33.670727], - [131.525482, 33.67799], - [131.530762, 33.677395], - [131.53923, 33.673805], - [131.543579, 33.67609], - [131.549637, 33.675106], - [131.556137, 33.678741], - [131.560638, 33.678734], - [131.563095, 33.683231], - [131.57135, 33.675243], - [131.574478, 33.669323], - [131.579361, 33.665958], - [131.577209, 33.673416], - [131.57753, 33.680115], - [131.579758, 33.684395], - [131.582382, 33.686184], - [131.590286, 33.68758], - [131.603317, 33.682934], - [131.607407, 33.681446], - [131.613342, 33.682335], - [131.616501, 33.675789], - [131.619568, 33.674881], - [131.624985, 33.675957], - [131.632507, 33.667515], - [131.63533, 33.678085], - [131.643234, 33.675507], - [131.646667, 33.672733], - [131.64827, 33.666954], - [131.653519, 33.666821], - [131.651871, 33.661472], - [131.655899, 33.656845], - [131.66124, 33.663136], - [131.668152, 33.664486], - [131.670242, 33.662907], - [131.672943, 33.655685], - [131.673843, 33.653244], - [131.67717, 33.651928], - [131.681564, 33.641674], - [131.686539, 33.63792], - [131.693817, 33.637196], - [131.699478, 33.634518], - [131.704529, 33.625546], - [131.703888, 33.619667], - [131.709778, 33.605301], - [131.714783, 33.601128], - [131.721603, 33.599545], - [131.723724, 33.597549], - [131.727356, 33.587261], - [131.735916, 33.581993], - [131.738693, 33.573338], - [131.737808, 33.567451], - [131.745438, 33.556919], - [131.747375, 33.553867], - [131.747665, 33.541138], - [131.751678, 33.536713], - [131.74437, 33.525955], - [131.737152, 33.501411], - [131.741211, 33.480068], - [131.740799, 33.466682], - [131.731796, 33.455219], - [131.730591, 33.446396], - [131.716949, 33.433479], - [131.714157, 33.426464], - [131.713379, 33.41494], - [131.70842, 33.402607], - [131.702805, 33.400902], - [131.687027, 33.402508], - [131.680908, 33.404747], - [131.676331, 33.402458], - [131.668655, 33.401703], - [131.664078, 33.403381], - [131.670227, 33.408455], - [131.674881, 33.409706], - [131.673737, 33.41613], - [131.6716, 33.418335], - [131.666275, 33.419979], - [131.662247, 33.419159], - [131.653244, 33.417316], - [131.641373, 33.420135], - [131.638687, 33.419392], - [131.636902, 33.41597], - [131.64032, 33.409225], - [131.634598, 33.405212], - [131.641754, 33.402187], - [131.649216, 33.386433], - [131.65712, 33.379261], - [131.651337, 33.376293], - [131.649185, 33.370975], - [131.637665, 33.368374], - [131.63208, 33.37001], - [131.622284, 33.367695], - [131.614822, 33.367573], - [131.61026, 33.36507], - [131.608063, 33.360378], - [131.609085, 33.35207], - [131.604416, 33.343502], - [131.595139, 33.340794], - [131.591034, 33.346668], - [131.588776, 33.346985], - [131.587418, 33.340866], - [131.586365, 33.341171], - [131.578049, 33.343578], - [131.571838, 33.34351], - [131.564178, 33.346508], - [131.562714, 33.346233], - [131.562943, 33.342484], - [131.558441, 33.342911], - [131.545578, 33.357372], - [131.550613, 33.360313], - [131.550491, 33.362186], - [131.544022, 33.362312], - [131.538498, 33.359348], - [131.528717, 33.36058], - [131.5233, 33.359707], - [131.516617, 33.355228], - [131.509232, 33.354057], - [131.503891, 33.344414], - [131.502518, 33.327011], - [131.511948, 33.296524], - [131.50946, 33.288681], - [131.513733, 33.276344], - [131.512695, 33.269402], - [131.513596, 33.268528], - [131.516403, 33.265812], - [131.531128, 33.260838], - [131.537857, 33.256756], - [131.547241, 33.253628], - [131.561478, 33.252598], - [131.570709, 33.251759], - [131.590836, 33.243889], - [131.598618, 33.242565], - [131.600677, 33.245373], - [131.607758, 33.243389], - [131.610382, 33.245178], - [131.610474, 33.247478], - [131.604782, 33.251194], - [131.61351, 33.262444], - [131.617432, 33.263245], - [131.619247, 33.262074], - [131.623962, 33.254139], - [131.627243, 33.255409], - [131.630035, 33.256496], - [131.642807, 33.254765], - [131.647369, 33.26123], - [131.677078, 33.262959], - [131.679153, 33.261589], - [131.681519, 33.255424], - [131.683243, 33.255711], - [131.686508, 33.267132], - [131.688965, 33.267448], - [131.696976, 33.262577], - [131.70256, 33.256557], - [131.704178, 33.246395], - [131.709396, 33.239655], - [131.710602, 33.238945], - [131.713898, 33.241806], - [131.707489, 33.257191], - [131.710236, 33.26107], - [131.732941, 33.247231], - [131.734833, 33.244804], - [131.746567, 33.239677], - [131.762939, 33.236], - [131.767029, 33.235897], - [131.772141, 33.235771], - [131.779251, 33.237122], - [131.785721, 33.241158], - [131.79129, 33.239311], - [131.812439, 33.238754], - [131.827377, 33.242111], - [131.839249, 33.243034], - [131.848434, 33.247181], - [131.855118, 33.247467], - [131.861099, 33.25127], - [131.865875, 33.250221], - [131.872635, 33.245285], - [131.877335, 33.245693], - [131.874924, 33.252689], - [131.877106, 33.257587], - [131.886719, 33.258827], - [131.89299, 33.261799], - [131.895416, 33.262955], - [131.909256, 33.259983], - [131.908463, 33.256611], - [131.901642, 33.250267], - [131.899292, 33.239727], - [131.892487, 33.237141], - [131.883514, 33.237808], - [131.880722, 33.230381], - [131.880798, 33.224953], - [131.884964, 33.22179], - [131.88353, 33.216717], - [131.871658, 33.203476], - [131.874847, 33.200058], - [131.879852, 33.199226], - [131.881989, 33.196812], - [131.879211, 33.193562], - [131.87738, 33.186802], - [131.865829, 33.189026], - [131.862885, 33.187569], - [131.850159, 33.181263], - [131.841171, 33.173988], - [131.839813, 33.167664], - [131.831802, 33.160641], - [131.829712, 33.154285], - [131.830673, 33.150566], - [131.834885, 33.154922], - [131.83577, 33.152454], - [131.833984, 33.145069], - [131.824448, 33.138607], - [131.816315, 33.129696], - [131.815552, 33.125904], - [131.80719, 33.120533], - [131.811859, 33.117184], - [131.817612, 33.116386], - [131.837173, 33.118164], - [131.83931, 33.118359], - [131.844086, 33.11731], - [131.847366, 33.112228], - [131.850372, 33.111729], - [131.85524, 33.11319], - [131.862808, 33.119358], - [131.870331, 33.122181], - [131.875565, 33.125954], - [131.881897, 33.123714], - [131.881775, 33.12162], - [131.884399, 33.119019], - [131.887146, 33.118717], - [131.892471, 33.121029], - [131.897308, 33.118935], - [131.90155, 33.122665], - [131.90416, 33.128624], - [131.907059, 33.129997], - [131.908859, 33.128819], - [131.907669, 33.123966], - [131.910385, 33.119904], - [131.919724, 33.121342], - [131.922134, 33.118309], - [131.920319, 33.115517], - [131.911758, 33.113487], - [131.906265, 33.109917], - [131.905289, 33.105492], - [131.902267, 33.102337], - [131.901321, 33.101357], - [131.892075, 33.102634], - [131.884552, 33.100021], - [131.883667, 33.098106], - [131.886108, 33.094658], - [131.881699, 33.093845], - [131.874893, 33.087292], - [131.87558, 33.08419], - [131.868942, 33.083282], - [131.86142, 33.084633], - [131.860901, 33.080853], - [131.864288, 33.078281], - [131.872269, 33.077366], - [131.873383, 33.075325], - [131.866043, 33.073761], - [131.86705, 33.06921], - [131.876282, 33.068138], - [131.882034, 33.071514], - [131.885544, 33.070827], - [131.890976, 33.066883], - [131.893906, 33.067631], - [131.889404, 33.072662], - [131.891632, 33.076725], - [131.894348, 33.076839], - [131.902405, 33.070705], - [131.903458, 33.070717], - [131.909576, 33.070797], - [131.913773, 33.075359], - [131.916473, 33.07568], - [131.920166, 33.067902], - [131.91893, 33.063671], - [131.919876, 33.060162], - [131.926041, 33.064808], - [131.932251, 33.060471], - [131.934113, 33.062431], - [131.930374, 33.067078], - [131.932938, 33.069691], - [131.937088, 33.070698], - [131.939301, 33.079559], - [131.935822, 33.083801], - [131.937592, 33.087425], - [131.945969, 33.092575], - [131.947647, 33.089306], - [131.945282, 33.083153], - [131.946075, 33.078175], - [131.954239, 33.06139], - [131.95752, 33.060482], - [131.960938, 33.064083], - [131.962891, 33.066135], - [131.967529, 33.067165], - [131.975052, 33.065807], - [131.974411, 33.059723], - [131.977081, 33.056492], - [131.983231, 33.06155], - [131.988022, 33.060078], - [131.992599, 33.062355], - [131.99469, 33.064739], - [131.991028, 33.072315], - [131.993912, 33.077862], - [131.994537, 33.084362], - [132.007645, 33.089077], - [132.008469, 33.08765], - [132.004257, 33.079124], - [132.004761, 33.07476], - [132.00766, 33.071747], - [132.015625, 33.054119], - [132.024826, 33.053452], - [132.020004, 33.049911], - [132.016983, 33.047703], - [132.011826, 33.046864], - [132.005234, 33.049515], - [131.995987, 33.046627], - [131.990936, 33.039738], - [131.980118, 33.038452], - [131.974625, 33.039062], - [131.964645, 33.044701], - [131.954117, 33.042591], - [131.947067, 33.044388], - [131.944214, 33.042389], - [131.937607, 33.041069], - [131.933121, 33.037331], - [131.929642, 33.037601], - [131.928574, 33.030457], - [131.929749, 33.027374], - [131.926849, 33.017651], - [131.912949, 33.005581], - [131.912369, 33.003639], - [131.911301, 33.000084], - [131.914825, 32.994801], - [131.909744, 32.984566], - [131.905945, 32.986076], - [131.907883, 32.990959], - [131.906143, 32.995274], - [131.897934, 32.98344], - [131.902573, 32.980297], - [131.903732, 32.973248], - [131.907196, 32.973183], - [131.910721, 32.968113], - [131.9142, 32.967838], - [131.918701, 32.963017], - [131.920639, 32.963516], - [131.922607, 32.967983], - [131.929596, 32.962849], - [131.928955, 32.952591], - [131.925323, 32.94722], - [131.9189, 32.942772], - [131.912338, 32.940826], - [131.909088, 32.937141], - [131.906342, 32.933475], - [131.900558, 32.930935], - [131.900177, 32.928829], - [131.90329, 32.92889], - [131.909073, 32.928997], - [131.913132, 32.931465], - [131.923416, 32.929184], - [131.918045, 32.936474], - [131.918686, 32.938171], - [131.924301, 32.939449], - [131.931976, 32.947708], - [131.93425, 32.955318], - [131.939606, 32.952618], - [131.937027, 32.950005], - [131.937881, 32.948162], - [131.947128, 32.946671], - [131.950531, 32.951824], - [131.954651, 32.949074], - [131.960617, 32.940342], - [131.963898, 32.939228], - [131.968002, 32.940861], - [131.966156, 32.947044], - [131.96756, 32.952534], - [131.973373, 32.946301], - [131.979141, 32.95343], - [131.979828, 32.941769], - [131.983276, 32.933559], - [131.991806, 32.935585], - [131.996216, 32.940777], - [131.996231, 32.944744], - [132.001556, 32.946842], - [132.00647, 32.951641], - [132.009064, 32.945274], - [132.004456, 32.939445], - [132.006912, 32.935371], - [132.003296, 32.929585], - [132.005661, 32.927177], - [132.009399, 32.926704], - [132.022705, 32.931847], - [132.032379, 32.931408], - [132.035767, 32.9328], - [132.037964, 32.937485], - [132.035202, 32.942383], - [132.037048, 32.944756], - [132.046158, 32.941437], - [132.050446, 32.939877], - [132.052597, 32.941216], - [132.051651, 32.944725], - [132.05304, 32.946243], - [132.064346, 32.93898], - [132.069931, 32.94088], - [132.076645, 32.940315], - [132.079132, 32.935616], - [132.08461, 32.935211], - [132.090378, 32.925007], - [132.089493, 32.923092], - [132.075607, 32.923782], - [132.072418, 32.92762], - [132.066269, 32.926952], - [132.06012, 32.930874], - [132.05455, 32.928558], - [132.05336, 32.92371], - [132.047958, 32.918476], - [132.043976, 32.919147], - [132.041763, 32.92741], - [132.039444, 32.928986], - [132.03334, 32.927483], - [132.030319, 32.925266], - [132.026703, 32.922615], - [132.023499, 32.922485], - [132.021637, 32.920322], - [132.020996, 32.914448], - [132.015366, 32.917767], - [132.013107, 32.905354], - [132.013809, 32.897659], - [132.010544, 32.898567], - [132.006577, 32.902996], - [132.001068, 32.904022], - [131.999146, 32.907284], - [131.999725, 32.910023], - [131.996277, 32.914265], - [131.991196, 32.912174], - [131.98613, 32.914261], - [131.983246, 32.912888], - [131.990387, 32.900658], - [131.991257, 32.889835], - [131.987534, 32.885925], - [131.989456, 32.882664], - [131.998749, 32.88451], - [132.001099, 32.890522], - [132.001328, 32.89109], - [132.007629, 32.88467], - [132.017776, 32.88446], - [132.017151, 32.882557], - [132.006516, 32.878357], - [132.006027, 32.874866], - [132.005814, 32.873318], - [131.994278, 32.863449], - [131.990494, 32.8564], - [131.988052, 32.855881], - [131.981598, 32.860626], - [131.979248, 32.85844], - [131.981384, 32.851639], - [131.967773, 32.839172], - [131.965088, 32.838642], - [131.957199, 32.846664], - [131.955246, 32.846375], - [131.959381, 32.834648], - [131.948471, 32.826885], - [131.96405, 32.826698], - [131.96579, 32.813828], - [131.967545, 32.812901], - [131.968338, 32.812473], - [131.971222, 32.81823], - [131.967911, 32.828323], - [131.969696, 32.831738], - [131.973755, 32.825642], - [131.983261, 32.819355], - [131.987442, 32.81974], - [131.989807, 32.821507], - [131.989395, 32.824203], - [131.981766, 32.832237], - [131.981766, 32.836414], - [131.985626, 32.838036], - [131.990295, 32.838646], - [131.997589, 32.836445], - [132.004608, 32.830471], - [132.013382, 32.828117], - [132.014267, 32.825649], - [132.005386, 32.81255], - [131.996124, 32.810497], - [131.98877, 32.805389], - [131.979156, 32.800816], - [131.976013, 32.795258], - [131.979111, 32.794525], - [131.979782, 32.794369], - [131.980438, 32.791473], - [131.979691, 32.787476], - [131.976151, 32.784615], - [131.967529, 32.784256], - [131.965378, 32.78709], - [131.965897, 32.790867], - [131.969528, 32.796448], - [131.954315, 32.798943], - [131.951736, 32.796539], - [131.954071, 32.790585], - [131.949051, 32.783485], - [131.942688, 32.778416], - [131.934723, 32.779335], - [131.929977, 32.784561], - [131.925491, 32.78521], - [131.925949, 32.781471], - [131.924362, 32.779106], - [131.921875, 32.779423], - [131.915405, 32.784576], - [131.912033, 32.782974], - [131.904587, 32.783703], - [131.906479, 32.789211], - [131.903412, 32.795208], - [131.903137, 32.79575], - [131.896698, 32.800278], - [131.893692, 32.784286], - [131.899048, 32.777206], - [131.904556, 32.759274], - [131.900009, 32.760963], - [131.89711, 32.764179], - [131.88829, 32.783638], - [131.884521, 32.784733], - [131.883469, 32.781765], - [131.885834, 32.775185], - [131.879272, 32.769268], - [131.879807, 32.764488], - [131.885468, 32.756378], - [131.879196, 32.747379], - [131.878876, 32.746914], - [131.89093, 32.743458], - [131.887131, 32.737614], - [131.874283, 32.738705], - [131.857574, 32.73349], - [131.848541, 32.738995], - [131.851379, 32.751331], - [131.850159, 32.762066], - [131.846573, 32.772961], - [131.85228, 32.785934], - [131.856232, 32.795448], - [131.861847, 32.805763], - [131.860886, 32.81815], - [131.850266, 32.814503], - [131.839752, 32.816765], - [131.829926, 32.821758], - [131.818771, 32.824192], - [131.809753, 32.81897], - [131.799454, 32.820267], - [131.789642, 32.830368], - [131.778793, 32.832481], - [131.762009, 32.833298], - [131.749969, 32.829964], - [131.737976, 32.826241], - [131.737228, 32.816017], - [131.732559, 32.805927], - [131.730438, 32.794338], - [131.720718, 32.787422], - [131.717697, 32.777195], - [131.705643, 32.769642], - [131.693863, 32.768703], - [131.680801, 32.766102], - [131.671143, 32.763279], - [131.661423, 32.765968], - [131.647888, 32.768055], - [131.636047, 32.7686], - [131.624969, 32.771034], - [131.613586, 32.77042], - [131.602386, 32.769962], - [131.592255, 32.770512], - [131.584808, 32.761921], - [131.57695, 32.754921], - [131.565964, 32.751686], - [131.551743, 32.753689], - [131.541489, 32.755329], - [131.532516, 32.760021], - [131.520142, 32.764423], - [131.510742, 32.777061], - [131.51474, 32.787735], - [131.519669, 32.797432], - [131.509369, 32.802925], - [131.49144, 32.816319], - [131.483582, 32.824844], - [131.477539, 32.834049], - [131.460953, 32.826485], - [131.448349, 32.826298], - [131.438583, 32.824131], - [131.433029, 32.814941], - [131.418396, 32.809769], - [131.406387, 32.809288], - [131.396194, 32.807796], - [131.38562, 32.805687], - [131.374969, 32.804192], - [131.355515, 32.804604], - [131.352356, 32.815102], - [131.341522, 32.830219], - [131.330948, 32.82933], - [131.324493, 32.840462], - [131.315887, 32.847858], - [131.305664, 32.851276], - [131.295242, 32.855381], - [131.287048, 32.86282], - [131.27626, 32.867485], - [131.275314, 32.878036], - [131.259705, 32.883732], - [131.256531, 32.895031], - [131.256378, 32.905224], - [131.255325, 32.921593], - [131.249969, 32.930077], - [131.249969, 32.945255], - [131.249969, 32.960316], - [131.259705, 32.962864], - [131.266068, 32.972038], - [131.248917, 32.980919], - [131.248749, 32.993507], - [131.240707, 32.999966], - [131.230591, 33.00705], - [131.227966, 33.017704], - [131.22345, 33.027546], - [131.220367, 33.038826], - [131.219147, 33.049934], - [131.206223, 33.060402], - [131.196045, 33.07394], - [131.184906, 33.073692], - [131.175613, 33.083286], - [131.175232, 33.100979], - [131.168182, 33.116295], - [131.165894, 33.133175], - [131.157867, 33.140327], - [131.15126, 33.148907], - [131.141907, 33.155018], - [131.134277, 33.162083], - [131.121094, 33.16663], - [131.113068, 33.179695], - [131.103607, 33.184307], - [131.084824, 33.184971], - [131.07399, 33.187183], - [131.062454, 33.1917], - [131.052292, 33.190876], - [131.04158, 33.190716], - [131.034805, 33.183174], - [131.022675, 33.177422], - [130.999817, 33.177395], - [130.989807, 33.166634], - [130.988708, 33.148762], - [130.983261, 33.135014], - [130.996506, 33.124111], - [130.999969, 33.11338], - [131.009109, 33.105091], - [131.015366, 33.096352], - [131.025604, 33.083336], - [131.016754, 33.076313], - [131.013275, 33.06657], - [131.018188, 33.057182], - [131.016479, 33.046978], - [131.009918, 33.037682], - [131.004135, 33.028294], - [130.991699, 33.020176], - [130.972443, 33.020405], - [130.964767, 33.029343], - [130.961029, 33.038769], - [130.952011, 33.047523], - [130.941772, 33.048923], - [130.931091, 33.048885], - [130.920212, 33.049782], - [130.913498, 33.058495], - [130.902618, 33.060768], - [130.895889, 33.070786], - [130.889511, 33.083286], - [130.875031, 33.088871], - [130.864578, 33.091911], - [130.845261, 33.090721], - [130.845642, 33.103157], - [130.855667, 33.106144], - [130.863281, 33.113716], - [130.868454, 33.123558], - [130.871399, 33.134296], - [130.877213, 33.145317], - [130.879395, 33.1562], - [130.877655, 33.16663], - [130.887878, 33.172813], - [130.884979, 33.183659], - [130.874969, 33.187904], - [130.86528, 33.191177], - [130.856247, 33.196785], - [130.845215, 33.203911], - [130.842636, 33.214275], - [130.84668, 33.230125], - [130.836166, 33.230442], - [130.828369, 33.238102], - [130.834396, 33.254517], - [130.844513, 33.253933], - [130.86055, 33.265762], - [130.855118, 33.275932], - [130.862656, 33.283421], - [130.867813, 33.293045], - [130.864746, 33.302589], - [130.859802, 33.312328], - [130.859024, 33.323753], - [130.853241, 33.33329], - [130.838165, 33.340294], - [130.846313, 33.347679], - [130.859177, 33.35511], - [130.861893, 33.369816], - [130.874969, 33.373676], - [130.886917, 33.375244], - [130.88707, 33.385929], - [130.889481, 33.395805], - [130.892807, 33.406441], - [130.893341, 33.424625], - [130.899628, 33.434311], - [130.902252, 33.445679], - [130.912872, 33.446491], - [130.921066, 33.452293], - [130.931046, 33.463428], - [130.934036, 33.476082], - [130.943756, 33.480072], - [130.9561, 33.486958], - [130.965271, 33.494209], - [130.973526, 33.499958], - [130.983871, 33.504383], - [131.000229, 33.507092], - [131.011917, 33.506592], - [131.021729, 33.509308], - [131.03093, 33.514229], - [131.043381, 33.511543], - [131.053818, 33.506695], - [131.064316, 33.506279], - [131.080231, 33.502831], - [131.092499, 33.503361], - [131.103226, 33.501869], - [131.114105, 33.502998], - [131.133545, 33.501957], - [131.150314, 33.501686], - [131.160828, 33.504486], - [131.177261, 33.507408], - [131.171005, 33.516453], - [131.17067, 33.527046], - [131.179672, 33.533272], - [131.187546, 33.539524], - [131.190552, 33.549263], - [131.189056, 33.562233], - [131.180527, 33.568882], - [131.175446, 33.583282] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "佐賀県", - "name": "Saga", - "ISOCODE": "JP-41", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:06+0100", - "cartodb_id": 316 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [130.273605, 33.476551], - [130.283249, 33.471718], - [130.293167, 33.466442], - [130.300354, 33.459187], - [130.312347, 33.458828], - [130.322205, 33.45533], - [130.332611, 33.449165], - [130.342041, 33.441132], - [130.351517, 33.437191], - [130.360001, 33.430931], - [130.370544, 33.431664], - [130.386902, 33.424309], - [130.398895, 33.423889], - [130.408707, 33.412849], - [130.414871, 33.403767], - [130.430527, 33.393517], - [130.442566, 33.407089], - [130.449646, 33.414783], - [130.4608, 33.416962], - [130.471298, 33.429295], - [130.481003, 33.433884], - [130.491074, 33.436878], - [130.508179, 33.442986], - [130.518585, 33.444298], - [130.530106, 33.440132], - [130.539352, 33.435413], - [130.543732, 33.416637], - [130.544037, 33.397198], - [130.54277, 33.361961], - [130.539658, 33.350151], - [130.538208, 33.339542], - [130.512466, 33.34095], - [130.499969, 33.322769], - [130.491226, 33.314705], - [130.486435, 33.304268], - [130.473557, 33.30254], - [130.465485, 33.289639], - [130.451462, 33.277264], - [130.438126, 33.268749], - [130.419739, 33.261406], - [130.403442, 33.249954], - [130.392715, 33.24361], - [130.380936, 33.228275], - [130.374969, 33.216434], - [130.362793, 33.199329], - [130.361755, 33.189156], - [130.357803, 33.167423], - [130.352829, 33.139854], - [130.352554, 33.137394], - [130.34877, 33.133362], - [130.345551, 33.136318], - [130.342865, 33.148502], - [130.336334, 33.155663], - [130.328186, 33.16148], - [130.324738, 33.161079], - [130.32637, 33.156155], - [130.333572, 33.149864], - [130.333969, 33.141529], - [130.331146, 33.13876], - [130.326492, 33.137775], - [130.312057, 33.137131], - [130.309662, 33.139095], - [130.309418, 33.145176], - [130.292694, 33.151764], - [130.291565, 33.162987], - [130.294373, 33.168163], - [130.293182, 33.173946], - [130.28743, 33.171326], - [130.280502, 33.161285], - [130.258789, 33.182632], - [130.26532, 33.187019], - [130.263321, 33.196522], - [130.259186, 33.201515], - [130.253555, 33.197433], - [130.254852, 33.187263], - [130.252991, 33.185696], - [130.243439, 33.185909], - [130.238998, 33.189926], - [130.23584, 33.192047], - [130.217743, 33.19165], - [130.213181, 33.18972], - [130.210602, 33.190826], - [130.207474, 33.189606], - [130.212753, 33.185722], - [130.223984, 33.185104], - [130.228287, 33.180958], - [130.225677, 33.175209], - [130.226013, 33.164917], - [130.22374, 33.162197], - [130.198044, 33.143501], - [130.196732, 33.136154], - [130.191559, 33.131615], - [130.157761, 33.107124], - [130.151672, 33.102596], - [130.147812, 33.104256], - [130.14296, 33.115059], - [130.131882, 33.129265], - [130.132004, 33.11861], - [130.126663, 33.120186], - [130.123505, 33.119377], - [130.132095, 33.111298], - [130.135971, 33.103367], - [130.134476, 33.100357], - [130.126862, 33.096363], - [130.132889, 33.089394], - [130.141663, 33.079029], - [130.150925, 33.071823], - [130.168716, 33.048176], - [130.17482, 33.046227], - [130.177231, 33.040928], - [130.17923, 33.0285], - [130.186462, 33.018669], - [130.187469, 33.006187], - [130.193436, 33.005901], - [130.195709, 33.002266], - [130.194977, 32.995953], - [130.201019, 32.988564], - [130.201508, 32.986198], - [130.202255, 32.982574], - [130.208008, 32.984989], - [130.212357, 32.980221], - [130.219345, 32.976437], - [130.218582, 32.973469], - [130.222305, 32.970337], - [130.229187, 32.96801], - [130.233917, 32.964516], - [130.234863, 32.962059], - [130.233109, 32.959244], - [130.220383, 32.954132], - [130.220001, 32.9534], - [130.195526, 32.955986], - [130.185272, 32.956882], - [130.173782, 32.958683], - [130.163467, 32.957874], - [130.153259, 32.959602], - [130.146957, 32.967972], - [130.135101, 32.965099], - [130.124969, 32.967449], - [130.114578, 32.968834], - [130.104416, 32.971226], - [130.087479, 32.975826], - [130.078415, 32.984188], - [130.061478, 32.983902], - [130.053726, 32.991074], - [130.044495, 33.000603], - [130.03569, 33.006489], - [130.031204, 33.015873], - [130.018768, 33.014454], - [130.008301, 33.021767], - [129.999969, 33.03091], - [129.998581, 33.040905], - [129.990402, 33.047997], - [129.982803, 33.054539], - [129.971252, 33.059147], - [129.960342, 33.062119], - [129.949493, 33.066223], - [129.941513, 33.072456], - [129.935318, 33.083282], - [129.924561, 33.087227], - [129.927292, 33.102444], - [129.937454, 33.10767], - [129.953812, 33.106766], - [129.958694, 33.124825], - [129.951294, 33.132545], - [129.947708, 33.143238], - [129.940567, 33.162071], - [129.929962, 33.160435], - [129.919525, 33.156914], - [129.909363, 33.155609], - [129.898605, 33.156334], - [129.888565, 33.157906], - [129.874969, 33.161995], - [129.864792, 33.167622], - [129.848618, 33.173325], - [129.836441, 33.171135], - [129.827438, 33.176254], - [129.81842, 33.182426], - [129.81752, 33.192741], - [129.810944, 33.200703], - [129.810989, 33.211182], - [129.812241, 33.223347], - [129.816971, 33.235996], - [129.808838, 33.24213], - [129.796494, 33.252083], - [129.78685, 33.259289], - [129.775528, 33.274097], - [129.768204, 33.282967], - [129.763824, 33.294834], - [129.768845, 33.305428], - [129.771164, 33.316319], - [129.776871, 33.325504], - [129.796799, 33.339085], - [129.796936, 33.33292], - [129.804504, 33.328362], - [129.808838, 33.320992], - [129.815338, 33.316719], - [129.815094, 33.310303], - [129.824112, 33.296696], - [129.826324, 33.293358], - [129.833771, 33.290638], - [129.840866, 33.283802], - [129.849213, 33.285625], - [129.853149, 33.283562], - [129.858307, 33.27615], - [129.860428, 33.275337], - [129.869629, 33.274353], - [129.869202, 33.275757], - [129.858047, 33.283283], - [129.851562, 33.294449], - [129.843185, 33.299061], - [129.83606, 33.298779], - [129.830734, 33.304131], - [129.832047, 33.306816], - [129.839203, 33.307327], - [129.847824, 33.322918], - [129.840775, 33.326992], - [129.842957, 33.330315], - [129.848984, 33.330433], - [129.847733, 33.338772], - [129.844696, 33.34193], - [129.845413, 33.34396], - [129.850098, 33.344379], - [129.851639, 33.346592], - [129.849091, 33.353985], - [129.847198, 33.359478], - [129.839432, 33.361526], - [129.836319, 33.35688], - [129.833588, 33.356804], - [129.82489, 33.360973], - [129.822525, 33.35881], - [129.824966, 33.35178], - [129.817291, 33.344635], - [129.813721, 33.344379], - [129.806793, 33.357174], - [129.809036, 33.361183], - [129.813904, 33.363892], - [129.811813, 33.372051], - [129.812836, 33.377968], - [129.809174, 33.390347], - [129.811981, 33.398228], - [129.800034, 33.406254], - [129.802124, 33.408436], - [129.815384, 33.406536], - [129.827011, 33.404728], - [129.833023, 33.401173], - [129.834503, 33.385468], - [129.837051, 33.379581], - [129.840408, 33.377094], - [129.843857, 33.382641], - [129.854065, 33.380222], - [129.859146, 33.375336], - [129.858978, 33.369835], - [129.854721, 33.361118], - [129.856094, 33.357822], - [129.871658, 33.370949], - [129.867935, 33.385124], - [129.867676, 33.386108], - [129.87059, 33.391685], - [129.869522, 33.402313], - [129.862762, 33.406834], - [129.860474, 33.402138], - [129.854568, 33.400177], - [129.843018, 33.402905], - [129.836853, 33.408077], - [129.82869, 33.408539], - [129.827469, 33.410446], - [129.828903, 33.41473], - [129.828064, 33.417992], - [129.8181, 33.419937], - [129.813507, 33.427547], - [129.797073, 33.437893], - [129.792221, 33.438858], - [129.787949, 33.447136], - [129.789566, 33.450264], - [129.795029, 33.453247], - [129.799149, 33.453629], - [129.80191, 33.450485], - [129.804947, 33.450775], - [129.807877, 33.453136], - [129.807312, 33.456383], - [129.798676, 33.461464], - [129.797531, 33.464287], - [129.798676, 33.468357], - [129.805634, 33.473248], - [129.808029, 33.479088], - [129.810593, 33.48032], - [129.814209, 33.477589], - [129.817612, 33.479004], - [129.823303, 33.478222], - [129.827057, 33.473873], - [129.826401, 33.465641], - [129.833832, 33.462692], - [129.83847, 33.458984], - [129.840408, 33.455887], - [129.83728, 33.447567], - [129.839554, 33.441692], - [129.843185, 33.442635], - [129.849625, 33.440891], - [129.852005, 33.443283], - [129.850723, 33.447723], - [129.854401, 33.450546], - [129.857132, 33.452641], - [129.858826, 33.45668], - [129.857697, 33.462948], - [129.850677, 33.471157], - [129.846039, 33.467976], - [129.841888, 33.467522], - [129.836502, 33.471962], - [129.844315, 33.477261], - [129.837784, 33.484524], - [129.837524, 33.488216], - [129.841949, 33.488651], - [129.834091, 33.500126], - [129.835693, 33.506466], - [129.832306, 33.511944], - [129.833374, 33.515099], - [129.835922, 33.516102], - [129.842728, 33.512043], - [129.847855, 33.511063], - [129.849869, 33.512325], - [129.850372, 33.515053], - [129.843903, 33.516571], - [129.842148, 33.518509], - [129.84285, 33.520535], - [129.848099, 33.520046], - [129.849121, 33.519951], - [129.855118, 33.516163], - [129.858154, 33.516449], - [129.856079, 33.521393], - [129.857254, 33.525692], - [129.855438, 33.530388], - [129.851013, 33.533398], - [129.848358, 33.537914], - [129.851303, 33.550613], - [129.85463, 33.551113], - [129.859055, 33.548103], - [129.864029, 33.538403], - [129.880432, 33.531033], - [129.882172, 33.521973], - [129.884857, 33.517914], - [129.890701, 33.515514], - [129.894775, 33.515053], - [129.894882, 33.516422], - [129.888306, 33.519787], - [129.888016, 33.534489], - [129.887985, 33.536118], - [129.893005, 33.537209], - [129.898666, 33.542858], - [129.901703, 33.543144], - [129.905563, 33.539936], - [129.909225, 33.544552], - [129.912811, 33.544804], - [129.916534, 33.539997], - [129.919754, 33.539124], - [129.925583, 33.539936], - [129.934067, 33.54657], - [129.936584, 33.543671], - [129.93277, 33.534008], - [129.93544, 33.52972], - [129.942627, 33.527008], - [129.957855, 33.525444], - [129.961502, 33.523163], - [129.96106, 33.517677], - [129.964371, 33.51128], - [129.97345, 33.508228], - [129.968826, 33.502064], - [129.964188, 33.501137], - [129.959915, 33.500278], - [129.9487, 33.490589], - [129.948349, 33.482796], - [129.942535, 33.478767], - [129.941681, 33.471691], - [129.949188, 33.466206], - [129.956665, 33.467152], - [129.96022, 33.470394], - [129.959259, 33.475506], - [129.962921, 33.480118], - [129.967239, 33.479179], - [129.972519, 33.470142], - [129.965027, 33.465523], - [129.963089, 33.461956], - [129.965408, 33.456768], - [129.970978, 33.45116], - [129.980438, 33.449696], - [129.98024, 33.443962], - [129.985184, 33.440083], - [129.987198, 33.438503], - [129.994675, 33.426125], - [129.995392, 33.435043], - [129.987289, 33.446312], - [129.990417, 33.447739], - [130, 33.445358], - [130.003571, 33.444035], - [130.025681, 33.444904], - [130.041031, 33.455204], - [130.041275, 33.466461], - [130.052841, 33.465939], - [130.062897, 33.468994], - [130.075912, 33.465794], - [130.088043, 33.466419], - [130.099243, 33.466564], - [130.107559, 33.472759], - [130.123947, 33.472179], - [130.143951, 33.469456], - [130.153137, 33.474438], - [130.162811, 33.471531], - [130.170975, 33.464298], - [130.18866, 33.465248], - [130.19693, 33.473072], - [130.206177, 33.477913], - [130.218582, 33.476192], - [130.229279, 33.473377], - [130.240143, 33.47139], - [130.249969, 33.467678], - [130.259842, 33.473068], - [130.273605, 33.476551] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "長崎県", - "name": "Nagasaki", - "ISOCODE": "JP-42", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:12+0100", - "cartodb_id": 325 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [129.796799, 33.339085], - [129.776871, 33.325504], - [129.771164, 33.316319], - [129.768845, 33.305428], - [129.763824, 33.294834], - [129.768204, 33.282967], - [129.775528, 33.274097], - [129.78685, 33.259289], - [129.796494, 33.252083], - [129.808838, 33.24213], - [129.816971, 33.235996], - [129.812241, 33.223347], - [129.810989, 33.211182], - [129.810944, 33.200703], - [129.81752, 33.192741], - [129.81842, 33.182426], - [129.827438, 33.176254], - [129.836441, 33.171135], - [129.848618, 33.173325], - [129.864792, 33.167622], - [129.874969, 33.161995], - [129.888565, 33.157906], - [129.898605, 33.156334], - [129.909363, 33.155609], - [129.919525, 33.156914], - [129.929962, 33.160435], - [129.940567, 33.162071], - [129.947708, 33.143238], - [129.951294, 33.132545], - [129.958694, 33.124825], - [129.953812, 33.106766], - [129.937454, 33.10767], - [129.927292, 33.102444], - [129.924561, 33.087227], - [129.935318, 33.083282], - [129.941513, 33.072456], - [129.949493, 33.066223], - [129.960342, 33.062119], - [129.971252, 33.059147], - [129.982803, 33.054539], - [129.990402, 33.047997], - [129.998581, 33.040905], - [129.999969, 33.03091], - [130.008301, 33.021767], - [130.018768, 33.014454], - [130.031204, 33.015873], - [130.03569, 33.006489], - [130.044495, 33.000603], - [130.053726, 32.991074], - [130.061478, 32.983902], - [130.078415, 32.984188], - [130.087479, 32.975826], - [130.104416, 32.971226], - [130.114578, 32.968834], - [130.124969, 32.967449], - [130.135101, 32.965099], - [130.146957, 32.967972], - [130.153259, 32.959602], - [130.163467, 32.957874], - [130.173782, 32.958683], - [130.185272, 32.956882], - [130.195526, 32.955986], - [130.220001, 32.9534], - [130.216949, 32.947456], - [130.212936, 32.944931], - [130.210892, 32.930393], - [130.208725, 32.929642], - [130.20871, 32.92358], - [130.206726, 32.92054], - [130.199234, 32.918232], - [130.195099, 32.914234], - [130.193695, 32.907051], - [130.191605, 32.905258], - [130.186554, 32.906433], - [130.182587, 32.906208], - [130.176208, 32.905842], - [130.172913, 32.90377], - [130.171997, 32.89975], - [130.168976, 32.897278], - [130.16362, 32.896133], - [130.162094, 32.893539], - [130.155518, 32.889191], - [130.146271, 32.887196], - [130.133148, 32.887276], - [130.119705, 32.876053], - [130.115341, 32.874962], - [130.112213, 32.870811], - [130.109451, 32.865219], - [130.09317, 32.855495], - [130.093216, 32.851738], - [130.085434, 32.847107], - [130.082062, 32.842937], - [130.083206, 32.841125], - [130.088776, 32.845627], - [130.094101, 32.846981], - [130.098206, 32.854324], - [130.101151, 32.854706], - [130.109512, 32.852264], - [130.113297, 32.854362], - [130.134109, 32.832573], - [130.136612, 32.835224], - [130.147324, 32.840439], - [130.160324, 32.835751], - [130.161972, 32.827484], - [130.158905, 32.816441], - [130.160172, 32.812962], - [130.164932, 32.818459], - [130.16629, 32.829197], - [130.170364, 32.83382], - [130.176605, 32.83313], - [130.180923, 32.834843], - [130.193268, 32.835129], - [130.202316, 32.842541], - [130.216324, 32.846893], - [130.221695, 32.85096], - [130.228928, 32.853252], - [130.234665, 32.858803], - [130.238174, 32.861183], - [130.249466, 32.868835], - [130.25238, 32.869419], - [130.273117, 32.867035], - [130.284058, 32.872459], - [130.295044, 32.874332], - [130.308151, 32.874439], - [130.312988, 32.872829], - [130.324875, 32.863255], - [130.331543, 32.860283], - [130.344116, 32.851372], - [130.34819, 32.846584], - [130.354721, 32.829453], - [130.366837, 32.813766], - [130.37941, 32.788765], - [130.386246, 32.783501], - [130.387497, 32.780228], - [130.38739, 32.772072], - [130.384308, 32.760826], - [130.383774, 32.735931], - [130.378433, 32.725185], - [130.373978, 32.722015], - [130.369141, 32.715534], - [130.361908, 32.705879], - [130.360077, 32.700764], - [130.363464, 32.689041], - [130.362717, 32.682732], - [130.35881, 32.675827], - [130.351059, 32.667664], - [130.338989, 32.66114], - [130.330551, 32.658577], - [130.320023, 32.651093], - [130.307312, 32.646408], - [130.289581, 32.646038], - [130.278381, 32.647285], - [130.272537, 32.646122], - [130.269791, 32.643459], - [130.26358, 32.625343], - [130.259872, 32.622211], - [130.252563, 32.62117], - [130.246719, 32.617077], - [130.236755, 32.605854], - [130.228958, 32.60144], - [130.228241, 32.601421], - [130.222076, 32.601257], - [130.215622, 32.598591], - [130.209015, 32.604065], - [130.204208, 32.605671], - [130.198547, 32.605556], - [130.199585, 32.601852], - [130.205826, 32.59782], - [130.203094, 32.594948], - [130.196716, 32.59145], - [130.189362, 32.59082], - [130.177094, 32.583851], - [130.173523, 32.588451], - [130.173386, 32.593246], - [130.179733, 32.60009], - [130.180908, 32.60392], - [130.177872, 32.611057], - [130.151291, 32.627392], - [130.143356, 32.632267], - [130.136017, 32.649818], - [130.136353, 32.667179], - [130.130051, 32.677895], - [130.133133, 32.679535], - [130.140747, 32.673912], - [130.144089, 32.675358], - [130.14772, 32.673061], - [130.16217, 32.683712], - [130.173218, 32.696884], - [130.18483, 32.699852], - [130.191101, 32.706478], - [130.192566, 32.708027], - [130.20874, 32.718979], - [130.212799, 32.726944], - [130.212479, 32.743225], - [130.209152, 32.747841], - [130.200958, 32.748417], - [130.196915, 32.752575], - [130.19017, 32.753445], - [130.187469, 32.756424], - [130.192184, 32.762337], - [130.192078, 32.76672], - [130.196442, 32.773865], - [130.188553, 32.782822], - [130.182449, 32.784981], - [130.161179, 32.784447], - [130.156555, 32.784328], - [130.151169, 32.786739], - [130.14772, 32.786541], - [130.139496, 32.781258], - [130.131271, 32.778904], - [130.104294, 32.785496], - [130.087433, 32.783058], - [130.070251, 32.775578], - [130.061966, 32.76799], - [130.054581, 32.764633], - [130.046692, 32.75832], - [130.037704, 32.756332], - [130.030807, 32.750076], - [130.030258, 32.749901], - [130.021179, 32.747005], - [130.014206, 32.747639], - [130.009796, 32.750099], - [130, 32.746292], - [129.997162, 32.745377], - [129.982864, 32.753334], - [129.97229, 32.75349], - [129.965118, 32.755516], - [129.962448, 32.759346], - [129.959, 32.760468], - [129.956696, 32.758762], - [129.95752, 32.755501], - [129.956223, 32.753052], - [129.951401, 32.747131], - [129.958099, 32.735947], - [129.958679, 32.729713], - [129.95459, 32.726048], - [129.948776, 32.724777], - [129.945862, 32.722195], - [129.945862, 32.715534], - [129.938797, 32.708595], - [129.936249, 32.710812], - [129.933472, 32.710052], - [129.931229, 32.704311], - [129.93074, 32.703094], - [129.926239, 32.697617], - [129.921387, 32.701569], - [129.91835, 32.700829], - [129.915298, 32.69664], - [129.918732, 32.688637], - [129.91684, 32.682087], - [129.909378, 32.673565], - [129.901184, 32.652683], - [129.895081, 32.647526], - [129.884201, 32.643791], - [129.878586, 32.637917], - [129.869507, 32.636372], - [129.854965, 32.630779], - [129.847763, 32.632339], - [129.84462, 32.628799], - [129.843887, 32.627968], - [129.84166, 32.620293], - [129.844208, 32.614864], - [129.843491, 32.61261], - [129.838058, 32.605804], - [129.810638, 32.584641], - [129.80101, 32.579453], - [129.786407, 32.576382], - [129.78479, 32.573029], - [129.788803, 32.568897], - [129.786514, 32.567421], - [129.783066, 32.568306], - [129.777649, 32.575272], - [129.77121, 32.576096], - [129.759567, 32.572853], - [129.755096, 32.567596], - [129.75322, 32.567162], - [129.747925, 32.565933], - [129.743607, 32.562737], - [129.738968, 32.572639], - [129.741394, 32.575947], - [129.746735, 32.5784], - [129.75209, 32.584526], - [129.755966, 32.585682], - [129.759949, 32.581097], - [129.762192, 32.582115], - [129.764008, 32.587982], - [129.784439, 32.599678], - [129.787643, 32.605927], - [129.793457, 32.607433], - [129.797913, 32.622562], - [129.808044, 32.634151], - [129.81189, 32.642418], - [129.812622, 32.643993], - [129.815903, 32.647938], - [129.822784, 32.649151], - [129.823425, 32.653709], - [129.820114, 32.666756], - [129.824814, 32.678196], - [129.829376, 32.68092], - [129.837067, 32.682087], - [129.838943, 32.688637], - [129.842621, 32.690495], - [129.847321, 32.68816], - [129.85318, 32.700451], - [129.853821, 32.70845], - [129.861526, 32.716732], - [129.864716, 32.725964], - [129.874329, 32.734138], - [129.875366, 32.737064], - [129.874985, 32.738148], - [129.87204, 32.746437], - [129.865005, 32.753502], - [129.862823, 32.753399], - [129.867004, 32.744434], - [129.866653, 32.740089], - [129.85881, 32.730206], - [129.855728, 32.722347], - [129.847229, 32.71434], - [129.839905, 32.717972], - [129.833023, 32.713314], - [129.829727, 32.712814], - [129.829788, 32.716946], - [129.833801, 32.7197], - [129.830688, 32.721485], - [129.833496, 32.726147], - [129.829544, 32.730965], - [129.830154, 32.735291], - [129.827896, 32.737717], - [129.823883, 32.738407], - [129.814606, 32.731968], - [129.809372, 32.736935], - [129.810928, 32.742817], - [129.81517, 32.748318], - [129.814301, 32.751122], - [129.810394, 32.753181], - [129.802429, 32.752026], - [129.797409, 32.753918], - [129.795975, 32.756298], - [129.800949, 32.760838], - [129.802032, 32.764217], - [129.799942, 32.7687], - [129.792587, 32.771873], - [129.790405, 32.778656], - [129.782394, 32.780487], - [129.777802, 32.787636], - [129.771286, 32.787777], - [129.769135, 32.791573], - [129.784653, 32.819397], - [129.782913, 32.819332], - [129.777283, 32.819122], - [129.771927, 32.813229], - [129.765106, 32.816368], - [129.76152, 32.815651], - [129.757721, 32.812195], - [129.751968, 32.815044], - [129.747513, 32.813686], - [129.744736, 32.809483], - [129.745987, 32.804588], - [129.741425, 32.798416], - [129.731644, 32.808842], - [129.723083, 32.814144], - [129.720734, 32.822311], - [129.714615, 32.824032], - [129.704514, 32.823448], - [129.702805, 32.829514], - [129.688492, 32.841106], - [129.686844, 32.845932], - [129.684723, 32.852108], - [129.679169, 32.861145], - [129.679657, 32.870991], - [129.670914, 32.88089], - [129.661469, 32.903], - [129.663315, 32.909328], - [129.657776, 32.911472], - [129.646896, 32.925621], - [129.63942, 32.927414], - [129.641159, 32.932369], - [129.639145, 32.937992], - [129.631653, 32.94323], - [129.633774, 32.946095], - [129.631546, 32.952419], - [129.634521, 32.9557], - [129.632492, 32.968212], - [129.635269, 32.976093], - [129.645416, 32.984028], - [129.653137, 32.981766], - [129.657211, 32.9921], - [129.662109, 32.995502], - [129.657211, 33.002831], - [129.650146, 33.01339], - [129.6521, 33.021088], - [129.651611, 33.028923], - [129.653275, 33.032734], - [129.656418, 33.034626], - [129.659546, 33.032848], - [129.663834, 33.035366], - [129.663513, 33.045258], - [129.666763, 33.048523], - [129.666504, 33.055656], - [129.67662, 33.05624], - [129.673965, 33.060524], - [129.664719, 33.060806], - [129.663742, 33.062237], - [129.674393, 33.06601], - [129.675903, 33.067993], - [129.675232, 33.069866], - [129.672028, 33.070736], - [129.666458, 33.069206], - [129.664688, 33.070911], - [129.678711, 33.080257], - [129.679626, 33.080875], - [129.676102, 33.084518], - [129.676636, 33.087933], - [129.68045, 33.091393], - [129.685608, 33.091106], - [129.705002, 33.08107], - [129.710037, 33.075737], - [129.712936, 33.077869], - [129.723221, 33.073391], - [129.724426, 33.071487], - [129.718918, 33.067204], - [129.720963, 33.062035], - [129.731613, 33.069248], - [129.734238, 33.067951], - [129.735992, 33.066017], - [129.737503, 33.057434], - [129.736404, 33.053822], - [129.728806, 33.047356], - [129.729187, 33.045269], - [129.732117, 33.044415], - [129.733459, 33.040665], - [129.735916, 33.040756], - [129.738373, 33.044292], - [129.740814, 33.044609], - [129.743332, 33.044933], - [129.741989, 33.048683], - [129.749771, 33.053989], - [129.755936, 33.045834], - [129.764694, 33.039368], - [129.763382, 33.036457], - [129.751999, 33.030437], - [129.746521, 33.019493], - [129.737991, 33.00803], - [129.738388, 32.999283], - [129.740707, 32.997543], - [129.740784, 32.995014], - [129.737076, 32.992928], - [129.741974, 32.985992], - [129.743896, 32.986115], - [129.746933, 32.990074], - [129.753204, 32.990181], - [129.75621, 32.993916], - [129.762161, 32.989906], - [129.765762, 32.992352], - [129.769653, 32.994995], - [129.762863, 32.998825], - [129.756638, 32.999176], - [129.75592, 33.000591], - [129.76503, 33.009037], - [129.763184, 33.013275], - [129.766876, 33.015133], - [129.769302, 33.014767], - [129.778366, 33.005299], - [129.782883, 33.003895], - [129.788788, 32.999428], - [129.794815, 33.00322], - [129.803848, 33.000408], - [129.806473, 32.995667], - [129.812469, 32.992344], - [129.816467, 32.977417], - [129.818756, 32.978893], - [129.821396, 32.977825], - [129.827286, 32.966236], - [129.824509, 32.965477], - [129.823196, 32.963173], - [129.822601, 32.962139], - [129.815247, 32.958656], - [129.811523, 32.952896], - [129.819305, 32.94809], - [129.822586, 32.934582], - [129.820923, 32.930775], - [129.818176, 32.93047], - [129.817474, 32.928444], - [129.82048, 32.92506], - [129.818924, 32.922623], - [129.820251, 32.918869], - [129.818085, 32.91555], - [129.809753, 32.910053], - [129.80574, 32.91074], - [129.803711, 32.912693], - [129.802368, 32.916443], - [129.804184, 32.925526], - [129.802322, 32.929535], - [129.797775, 32.927036], - [129.796814, 32.928699], - [129.800186, 32.940449], - [129.803253, 32.944637], - [129.801498, 32.946575], - [129.797592, 32.945419], - [129.793869, 32.942535], - [129.791794, 32.940926], - [129.789719, 32.935303], - [129.790344, 32.922634], - [129.793152, 32.909847], - [129.796158, 32.906693], - [129.792526, 32.905518], - [129.789932, 32.900154], - [129.790405, 32.895763], - [129.797348, 32.894222], - [129.798965, 32.900791], - [129.80954, 32.900421], - [129.810516, 32.888653], - [129.814972, 32.886562], - [129.811768, 32.877098], - [129.807449, 32.873901], - [129.801193, 32.874027], - [129.800476, 32.878658], - [129.795395, 32.876423], - [129.795761, 32.870659], - [129.795364, 32.869263], - [129.793152, 32.861626], - [129.794357, 32.859718], - [129.796982, 32.862095], - [129.800201, 32.861454], - [129.806015, 32.855843], - [129.815491, 32.855301], - [129.827866, 32.84679], - [129.831741, 32.840828], - [129.845535, 32.833149], - [129.852188, 32.824505], - [129.85498, 32.825489], - [129.857956, 32.831982], - [129.855515, 32.845669], - [129.858444, 32.855145], - [129.861664, 32.854733], - [129.86554, 32.841133], - [129.865921, 32.83979], - [129.86911, 32.835476], - [129.87262, 32.835274], - [129.874435, 32.837463], - [129.874298, 32.84597], - [129.87738, 32.854057], - [129.881378, 32.856354], - [129.883636, 32.860817], - [129.882385, 32.868927], - [129.884079, 32.873192], - [129.886765, 32.872581], - [129.890961, 32.867287], - [129.898102, 32.864807], - [129.901184, 32.872669], - [129.903458, 32.873917], - [129.905823, 32.87286], - [129.913925, 32.862057], - [129.920242, 32.859398], - [129.932907, 32.857975], - [129.935974, 32.852283], - [129.941132, 32.855431], - [129.948288, 32.855629], - [129.954483, 32.855804], - [129.964081, 32.846748], - [129.96492, 32.840267], - [129.976837, 32.843018], - [129.981873, 32.841347], - [129.986679, 32.833717], - [129.993576, 32.831478], - [130, 32.828999], - [130.002472, 32.827003], - [130.005234, 32.826538], - [130.014679, 32.837963], - [130.012589, 32.839302], - [130.002274, 32.83849], - [130, 32.839947], - [129.995224, 32.841717], - [129.98381, 32.855244], - [129.977783, 32.85812], - [129.975327, 32.861248], - [129.968704, 32.863472], - [129.966263, 32.866829], - [129.966629, 32.871403], - [129.967728, 32.874016], - [129.968323, 32.875439], - [129.974838, 32.878731], - [129.972855, 32.881145], - [129.965317, 32.882042], - [129.961975, 32.881088], - [129.959274, 32.884693], - [129.953537, 32.884335], - [129.951065, 32.887466], - [129.958282, 32.892559], - [129.959274, 32.894794], - [129.952988, 32.901134], - [129.946655, 32.903568], - [129.939484, 32.909035], - [129.931396, 32.916855], - [129.936005, 32.953564], - [129.94101, 32.964985], - [129.941513, 32.965603], - [129.948563, 32.974194], - [129.950378, 32.979832], - [129.946106, 32.99432], - [129.946701, 33.005081], - [129.93927, 33.014236], - [129.928146, 33.021542], - [129.916, 33.026379], - [129.906677, 33.032429], - [129.894562, 33.047825], - [129.887543, 33.052132], - [129.876953, 33.055954], - [129.871841, 33.055965], - [129.86441, 33.055984], - [129.850769, 33.045509], - [129.848236, 33.041061], - [129.843277, 33.047314], - [129.835449, 33.038116], - [129.834137, 33.031761], - [129.829269, 33.02882], - [129.826645, 33.030121], - [129.82605, 33.036354], - [129.829437, 33.044659], - [129.837906, 33.051754], - [129.837204, 33.053173], - [129.829025, 33.056625], - [129.826294, 33.059998], - [129.822189, 33.059769], - [129.820679, 33.054573], - [129.813812, 33.060703], - [129.804962, 33.059139], - [129.803177, 33.060619], - [129.804184, 33.061108], - [129.808273, 33.063087], - [129.804962, 33.066029], - [129.808533, 33.069733], - [129.807556, 33.071167], - [129.802963, 33.071655], - [129.798813, 33.077862], - [129.796143, 33.078472], - [129.792389, 33.075928], - [129.784988, 33.075428], - [129.780792, 33.070614], - [129.773499, 33.071484], - [129.771805, 33.074108], - [129.772827, 33.090584], - [129.769455, 33.089397], - [129.767044, 33.086319], - [129.764343, 33.072918], - [129.766235, 33.069138], - [129.773117, 33.066681], - [129.777145, 33.058876], - [129.782257, 33.058128], - [129.78447, 33.055019], - [129.782928, 33.052807], - [129.776016, 33.050133], - [129.773087, 33.049], - [129.770462, 33.043407], - [129.764252, 33.047432], - [129.76265, 33.051426], - [129.765411, 33.055405], - [129.762909, 33.058071], - [129.745911, 33.056961], - [129.744034, 33.064186], - [129.746719, 33.067249], - [129.74585, 33.070057], - [129.742813, 33.072983], - [129.733383, 33.095329], - [129.734604, 33.096867], - [129.742462, 33.096199], - [129.749878, 33.093483], - [129.75264, 33.094017], - [129.753891, 33.096016], - [129.751953, 33.102554], - [129.747162, 33.107418], - [129.745865, 33.111855], - [129.748093, 33.116261], - [129.748459, 33.116989], - [129.750977, 33.117767], - [129.754608, 33.115494], - [129.759506, 33.10833], - [129.761948, 33.108192], - [129.764099, 33.111286], - [129.760529, 33.11792], - [129.763672, 33.119808], - [129.771393, 33.117306], - [129.773865, 33.117626], - [129.774826, 33.119408], - [129.773438, 33.122475], - [129.764725, 33.126179], - [129.764648, 33.128712], - [129.774353, 33.134136], - [129.783539, 33.132927], - [129.789993, 33.13509], - [129.786926, 33.137791], - [129.781799, 33.138538], - [129.777557, 33.136711], - [129.767563, 33.137962], - [129.76152, 33.133938], - [129.758362, 33.135494], - [129.755722, 33.140007], - [129.751297, 33.139336], - [129.748779, 33.131443], - [129.745148, 33.127052], - [129.73735, 33.124962], - [129.735291, 33.119568], - [129.731339, 33.121395], - [129.729919, 33.127674], - [129.723145, 33.131729], - [129.724075, 33.136501], - [129.730133, 33.140755], - [129.729767, 33.14307], - [129.726639, 33.144855], - [129.729752, 33.149734], - [129.730087, 33.157524], - [129.727371, 33.161121], - [129.721146, 33.158482], - [129.718018, 33.160503], - [129.716476, 33.161499], - [129.709427, 33.158676], - [129.70401, 33.15921], - [129.703247, 33.152821], - [129.709702, 33.148098], - [129.712479, 33.141743], - [129.708755, 33.135979], - [129.712631, 33.133236], - [129.714249, 33.126026], - [129.713257, 33.116894], - [129.710724, 33.115887], - [129.714417, 33.110859], - [129.703033, 33.10828], - [129.693298, 33.10928], - [129.687164, 33.107555], - [129.677246, 33.113388], - [129.675812, 33.108875], - [129.677383, 33.100979], - [129.674255, 33.095871], - [129.669754, 33.094055], - [129.669464, 33.094814], - [129.66658, 33.102497], - [129.660278, 33.112495], - [129.661743, 33.117466], - [129.658356, 33.122932], - [129.662064, 33.125027], - [129.665543, 33.124142], - [129.669861, 33.119999], - [129.674622, 33.121574], - [129.680878, 33.121456], - [129.682571, 33.125725], - [129.687302, 33.126839], - [129.689499, 33.130619], - [129.698898, 33.132164], - [129.695404, 33.136265], - [129.689819, 33.138184], - [129.682999, 33.145222], - [129.682541, 33.149841], - [129.684311, 33.155025], - [129.671936, 33.160763], - [129.66774, 33.159389], - [129.665161, 33.161369], - [129.663864, 33.165806], - [129.656586, 33.163452], - [129.651154, 33.167198], - [129.643448, 33.163029], - [129.641327, 33.163834], - [129.646683, 33.16951], - [129.648773, 33.175365], - [129.653366, 33.174652], - [129.656525, 33.180222], - [129.655579, 33.185555], - [129.658463, 33.187691], - [129.657501, 33.189354], - [129.650314, 33.191589], - [129.649017, 33.196022], - [129.649979, 33.201481], - [129.643951, 33.211689], - [129.641907, 33.224205], - [129.643005, 33.227818], - [129.639801, 33.225239], - [129.637192, 33.216198], - [129.639221, 33.203568], - [129.640701, 33.194416], - [129.638733, 33.190159], - [129.63443, 33.187412], - [129.623566, 33.18824], - [129.62262, 33.19725], - [129.617905, 33.199806], - [129.614441, 33.197239], - [129.612305, 33.198044], - [129.608292, 33.195511], - [129.606293, 33.201363], - [129.610229, 33.213547], - [129.606735, 33.214199], - [129.604431, 33.212715], - [129.59938, 33.203808], - [129.592957, 33.205536], - [129.590118, 33.204086], - [129.583755, 33.210175], - [129.576782, 33.20826], - [129.569229, 33.209362], - [129.562195, 33.20676], - [129.560165, 33.208706], - [129.562622, 33.212246], - [129.559341, 33.21587], - [129.562622, 33.219368], - [129.559219, 33.225063], - [129.560455, 33.226833], - [129.564514, 33.226383], - [129.568893, 33.222927], - [129.570282, 33.226757], - [129.568573, 33.233051], - [129.566513, 33.234543], - [129.562561, 33.232918], - [129.559891, 33.233753], - [129.55983, 33.236511], - [129.562592, 33.240498], - [129.567047, 33.241631], - [129.569443, 33.244259], - [129.567352, 33.249195], - [129.57016, 33.252174], - [129.572708, 33.254871], - [129.57486, 33.261646], - [129.578125, 33.264912], - [129.576767, 33.272106], - [129.579163, 33.27496], - [129.582092, 33.27388], - [129.581406, 33.264961], - [129.582642, 33.263287], - [129.592422, 33.269642], - [129.588577, 33.287079], - [129.607986, 33.304848], - [129.618652, 33.304951], - [129.610229, 33.309319], - [129.601532, 33.306351], - [129.592987, 33.300049], - [129.591965, 33.299294], - [129.589279, 33.2999], - [129.585526, 33.30447], - [129.580933, 33.301506], - [129.565201, 33.320965], - [129.564651, 33.32444], - [129.566864, 33.328453], - [129.570435, 33.32872], - [129.577087, 33.32629], - [129.575424, 33.333042], - [129.578934, 33.350304], - [129.577988, 33.359314], - [129.574081, 33.368942], - [129.581436, 33.375664], - [129.58728, 33.373505], - [129.598038, 33.374527], - [129.600006, 33.371662], - [129.598907, 33.371128], - [129.595734, 33.369598], - [129.596344, 33.36681], - [129.600662, 33.366112], - [129.603836, 33.368237], - [129.607605, 33.36734], - [129.609619, 33.365162], - [129.615662, 33.368965], - [129.620346, 33.3694], - [129.630188, 33.358749], - [129.633713, 33.358326], - [129.632233, 33.363922], - [129.635086, 33.365372], - [129.641968, 33.362469], - [129.64801, 33.362823], - [129.650574, 33.367504], - [129.658157, 33.366627], - [129.662079, 33.37468], - [129.6689, 33.377979], - [129.669357, 33.380478], - [129.66568, 33.385963], - [129.672272, 33.393181], - [129.678146, 33.39492], - [129.679718, 33.393917], - [129.680786, 33.386509], - [129.681808, 33.385971], - [129.684204, 33.384708], - [129.684555, 33.378719], - [129.68045, 33.378716], - [129.677719, 33.364857], - [129.674103, 33.360462], - [129.683029, 33.348713], - [129.687027, 33.347343], - [129.693024, 33.350685], - [129.697693, 33.347439], - [129.701569, 33.347912], - [129.706039, 33.342152], - [129.710083, 33.341469], - [129.716675, 33.345234], - [129.722733, 33.345814], - [129.728729, 33.348927], - [129.746017, 33.363579], - [129.749954, 33.364967], - [129.754318, 33.364723], - [129.761719, 33.361702], - [129.762802, 33.361259], - [129.772049, 33.350174], - [129.774277, 33.350739], - [129.776718, 33.357262], - [129.776077, 33.363041], - [129.785645, 33.369854], - [129.790924, 33.367489], - [129.794449, 33.363613], - [129.795074, 33.361053], - [129.79303, 33.356113], - [129.796631, 33.346264], - [129.796799, 33.339085] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "熊本県", - "name": "Kumamoto", - "ISOCODE": "JP-43", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:17+0100", - "cartodb_id": 338 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [131.113068, 33.179695], - [131.121094, 33.16663], - [131.134277, 33.162083], - [131.141907, 33.155018], - [131.15126, 33.148907], - [131.157867, 33.140327], - [131.165894, 33.133175], - [131.168182, 33.116295], - [131.175232, 33.100979], - [131.175613, 33.083286], - [131.184906, 33.073692], - [131.196045, 33.07394], - [131.206223, 33.060402], - [131.219147, 33.049934], - [131.220367, 33.038826], - [131.22345, 33.027546], - [131.227966, 33.017704], - [131.230591, 33.00705], - [131.240707, 32.999966], - [131.248749, 32.993507], - [131.248917, 32.980919], - [131.266068, 32.972038], - [131.259705, 32.962864], - [131.249969, 32.960316], - [131.249969, 32.945255], - [131.249969, 32.930077], - [131.255325, 32.921593], - [131.256378, 32.905224], - [131.256531, 32.895031], - [131.259705, 32.883732], - [131.275314, 32.878036], - [131.27626, 32.867485], - [131.287048, 32.86282], - [131.295242, 32.855381], - [131.305664, 32.851276], - [131.315887, 32.847858], - [131.324493, 32.840462], - [131.330948, 32.82933], - [131.311356, 32.824715], - [131.297653, 32.825176], - [131.287399, 32.827785], - [131.277298, 32.822533], - [131.267227, 32.822529], - [131.260056, 32.814751], - [131.25766, 32.804131], - [131.249969, 32.797356], - [131.248108, 32.786518], - [131.238739, 32.779865], - [131.242828, 32.77039], - [131.24646, 32.760231], - [131.23938, 32.751869], - [131.237259, 32.741245], - [131.226379, 32.734943], - [131.218613, 32.727936], - [131.208237, 32.726696], - [131.198563, 32.723156], - [131.187943, 32.713581], - [131.184158, 32.70298], - [131.179535, 32.693665], - [131.176987, 32.683689], - [131.177567, 32.673683], - [131.165436, 32.668404], - [131.158264, 32.675438], - [131.147598, 32.673592], - [131.137512, 32.65807], - [131.129379, 32.650475], - [131.124969, 32.64072], - [131.121689, 32.624119], - [131.118439, 32.61208], - [131.123062, 32.601894], - [131.116592, 32.590008], - [131.108353, 32.583309], - [131.093155, 32.57542], - [131.080032, 32.578819], - [131.070053, 32.58094], - [131.05687, 32.584339], - [131.044556, 32.574245], - [131.040878, 32.563877], - [131.042313, 32.5532], - [131.031845, 32.550571], - [131.021835, 32.545872], - [131.023132, 32.535362], - [131.026367, 32.525711], - [131.021652, 32.516438], - [131.011444, 32.51133], - [131.010956, 32.499962], - [131.009415, 32.486626], - [131.01619, 32.476673], - [131.017563, 32.466541], - [131.018677, 32.447895], - [131.022293, 32.437946], - [131.028702, 32.428997], - [131.03447, 32.420139], - [131.043732, 32.408657], - [131.053604, 32.404758], - [131.066101, 32.404716], - [131.072357, 32.395988], - [131.071609, 32.384998], - [131.077713, 32.375534], - [131.078186, 32.365364], - [131.075592, 32.355373], - [131.086243, 32.349583], - [131.096252, 32.347054], - [131.104996, 32.338718], - [131.114319, 32.326206], - [131.107803, 32.317661], - [131.103668, 32.30835], - [131.096832, 32.2985], - [131.090118, 32.289692], - [131.08252, 32.281746], - [131.073105, 32.276817], - [131.05397, 32.28059], - [131.053757, 32.261234], - [131.044067, 32.255135], - [131.049149, 32.240639], - [131.065948, 32.238247], - [131.073105, 32.230793], - [131.076218, 32.220345], - [131.082214, 32.210106], - [131.091324, 32.202278], - [131.102661, 32.1973], - [131.106583, 32.187943], - [131.104523, 32.17728], - [131.10582, 32.166641], - [131.111221, 32.157864], - [131.101456, 32.151619], - [131.090454, 32.150856], - [131.078918, 32.154655], - [131.066696, 32.153152], - [131.056442, 32.154289], - [131.046448, 32.159218], - [131.039627, 32.166626], - [131.021606, 32.16663], - [131.010147, 32.168797], - [131.00087, 32.158226], - [130.991211, 32.14204], - [130.981247, 32.136768], - [130.975845, 32.128101], - [130.974533, 32.117619], - [130.96373, 32.116554], - [130.954437, 32.112045], - [130.944901, 32.115295], - [130.935181, 32.112499], - [130.924622, 32.120174], - [130.911438, 32.127235], - [130.90123, 32.125835], - [130.891068, 32.119724], - [130.880585, 32.117828], - [130.868042, 32.104397], - [130.860519, 32.096397], - [130.850784, 32.100586], - [130.839203, 32.103226], - [130.829193, 32.099239], - [130.821793, 32.091469], - [130.811203, 32.095497], - [130.800156, 32.095341], - [130.789871, 32.095581], - [130.778931, 32.097214], - [130.767441, 32.097206], - [130.749969, 32.099895], - [130.740021, 32.102989], - [130.730179, 32.098598], - [130.714355, 32.100456], - [130.704453, 32.102573], - [130.69519, 32.108562], - [130.687195, 32.114754], - [130.677246, 32.120647], - [130.666916, 32.12664], - [130.657135, 32.133057], - [130.6539, 32.147923], - [130.642365, 32.149284], - [130.624969, 32.153339], - [130.61853, 32.168037], - [130.6147, 32.179131], - [130.604935, 32.183907], - [130.593887, 32.182598], - [130.592804, 32.166637], - [130.586838, 32.156487], - [130.577316, 32.151237], - [130.566986, 32.15118], - [130.556503, 32.149281], - [130.546021, 32.146427], - [130.541946, 32.136002], - [130.531097, 32.133427], - [130.520081, 32.132347], - [130.510452, 32.13728], - [130.49939, 32.132259], - [130.488708, 32.133961], - [130.478592, 32.129219], - [130.478378, 32.11834], - [130.467606, 32.116173], - [130.458191, 32.109978], - [130.447662, 32.112694], - [130.436859, 32.111195], - [130.426392, 32.113911], - [130.415222, 32.115524], - [130.405243, 32.116798], - [130.400208, 32.125835], - [130.393066, 32.133469], - [130.389114, 32.143509], - [130.374969, 32.15485], - [130.367294, 32.16114], - [130.369141, 32.165859], - [130.374817, 32.168682], - [130.373367, 32.171524], - [130.369812, 32.173203], - [130.366959, 32.175133], - [130.369705, 32.177586], - [130.373154, 32.177567], - [130.377792, 32.174694], - [130.383377, 32.188164], - [130.391556, 32.196556], - [130.389877, 32.199181], - [130.3853, 32.19809], - [130.383484, 32.199448], - [130.384064, 32.201363], - [130.386642, 32.202965], - [130.38887, 32.209148], - [130.393707, 32.210045], - [130.398361, 32.213436], - [130.399719, 32.221237], - [130.403351, 32.221859], - [130.406555, 32.228092], - [130.410645, 32.229156], - [130.417435, 32.227028], - [130.42691, 32.231522], - [130.435806, 32.229275], - [130.444763, 32.229168], - [130.447998, 32.231853], - [130.442917, 32.237419], - [130.432083, 32.240997], - [130.438263, 32.253242], - [130.43396, 32.258018], - [130.435913, 32.261467], - [130.442459, 32.259323], - [130.447189, 32.265015], - [130.451996, 32.266327], - [130.450974, 32.270027], - [130.455948, 32.275734], - [130.454361, 32.280449], - [130.458206, 32.28463], - [130.46492, 32.283539], - [130.469147, 32.273327], - [130.472397, 32.272461], - [130.47377, 32.27713], - [130.469193, 32.285652], - [130.470825, 32.287434], - [130.47345, 32.287766], - [130.478714, 32.283043], - [130.482758, 32.281593], - [130.489594, 32.288654], - [130.491867, 32.287941], - [130.4944, 32.290169], - [130.490433, 32.293713], - [130.478806, 32.294743], - [130.476517, 32.299004], - [130.474319, 32.311832], - [130.470245, 32.313698], - [130.469574, 32.31596], - [130.471603, 32.321709], - [130.475113, 32.320648], - [130.477234, 32.32515], - [130.483459, 32.320896], - [130.485657, 32.321018], - [130.483948, 32.330532], - [130.485886, 32.337322], - [130.490707, 32.341972], - [130.503433, 32.345802], - [130.506851, 32.347782], - [130.508621, 32.348801], - [130.509369, 32.35511], - [130.506104, 32.355976], - [130.503799, 32.35397], - [130.496948, 32.356728], - [130.493835, 32.355721], - [130.492035, 32.356667], - [130.494217, 32.360336], - [130.510574, 32.378151], - [130.515854, 32.386375], - [130.519958, 32.387432], - [130.533875, 32.398426], - [130.548904, 32.411148], - [130.550949, 32.415833], - [130.576859, 32.432861], - [130.569626, 32.445816], - [130.57402, 32.459164], - [130.572891, 32.461952], - [130.579605, 32.470879], - [130.580536, 32.474895], - [130.569824, 32.472942], - [130.554443, 32.471966], - [130.550537, 32.47348], - [130.54808, 32.486713], - [130.548599, 32.488781], - [130.55069, 32.488739], - [130.572052, 32.492821], - [130.575485, 32.492851], - [130.580612, 32.493492], - [130.593719, 32.489601], - [130.598145, 32.489632], - [130.600891, 32.492493], - [130.593689, 32.493149], - [130.589569, 32.495644], - [130.589066, 32.498959], - [130.59491, 32.499901], - [130.587372, 32.505135], - [130.563599, 32.510902], - [130.551529, 32.515713], - [130.549286, 32.51791], - [130.549774, 32.528698], - [130.555191, 32.538036], - [130.560577, 32.53952], - [130.569916, 32.538616], - [130.581055, 32.554543], - [130.589401, 32.565071], - [130.595078, 32.566753], - [130.601578, 32.568775], - [130.610291, 32.569214], - [130.600479, 32.573521], - [130.60878, 32.581276], - [130.612808, 32.580132], - [130.614243, 32.579082], - [130.620773, 32.576595], - [130.623413, 32.574715], - [130.624649, 32.573883], - [130.625488, 32.574383], - [130.625381, 32.576866], - [130.622879, 32.580265], - [130.617783, 32.582802], - [130.612564, 32.5867], - [130.614929, 32.588081], - [130.623276, 32.585186], - [130.63179, 32.593369], - [130.637527, 32.595764], - [130.653473, 32.583454], - [130.660156, 32.5765], - [130.663666, 32.575851], - [130.663803, 32.580452], - [130.65419, 32.587254], - [130.650253, 32.593727], - [130.663773, 32.617424], - [130.665207, 32.627594], - [130.657974, 32.635918], - [130.649414, 32.634834], - [130.641922, 32.629421], - [130.635956, 32.628284], - [130.629761, 32.627102], - [130.622818, 32.627567], - [130.603424, 32.619843], - [130.598068, 32.618931], - [130.593964, 32.621006], - [130.578171, 32.617859], - [130.569153, 32.619671], - [130.563492, 32.616234], - [130.557602, 32.619049], - [130.552048, 32.617493], - [130.545517, 32.619022], - [130.541565, 32.615883], - [130.531799, 32.614517], - [130.520493, 32.607635], - [130.514709, 32.605858], - [130.508652, 32.607616], - [130.502258, 32.607475], - [130.498093, 32.607231], - [130.491745, 32.606277], - [130.482452, 32.605141], - [130.475128, 32.600983], - [130.468765, 32.600422], - [130.466171, 32.601952], - [130.464783, 32.610443], - [130.45575, 32.618931], - [130.458557, 32.624096], - [130.465134, 32.628429], - [130.495621, 32.642632], - [130.503998, 32.649357], - [130.514893, 32.652039], - [130.531494, 32.661827], - [130.540359, 32.664494], - [130.549088, 32.669769], - [130.54921, 32.671448], - [130.551804, 32.67305], - [130.556274, 32.682484], - [130.564758, 32.69109], - [130.569977, 32.693878], - [130.597244, 32.70224], - [130.608917, 32.707878], - [130.627365, 32.705524], - [130.634995, 32.702587], - [130.642761, 32.694435], - [130.642273, 32.700886], - [130.637909, 32.706505], - [130.61235, 32.714748], - [130.610718, 32.716751], - [130.612564, 32.721863], - [130.609055, 32.725853], - [130.613541, 32.735077], - [130.605423, 32.757835], - [130.60759, 32.768394], - [130.610641, 32.770439], - [130.616501, 32.771381], - [130.622879, 32.768795], - [130.628098, 32.768448], - [130.629944, 32.770218], - [130.626022, 32.772934], - [130.615784, 32.774475], - [130.613388, 32.776646], - [130.616898, 32.782684], - [130.622238, 32.784012], - [130.617874, 32.789421], - [130.612564, 32.791019], - [130.611053, 32.798038], - [130.607239, 32.802643], - [130.600922, 32.804604], - [130.60022, 32.807281], - [130.603714, 32.813526], - [130.602814, 32.815567], - [130.595352, 32.820156], - [130.581558, 32.828636], - [130.576965, 32.83382], - [130.585251, 32.848476], - [130.583282, 32.851711], - [130.577682, 32.850368], - [130.574799, 32.846031], - [130.571823, 32.846081], - [130.540634, 32.856312], - [130.532364, 32.860878], - [130.531174, 32.863529], - [130.53299, 32.869061], - [130.54364, 32.881966], - [130.54628, 32.88942], - [130.545471, 32.893559], - [130.53476, 32.878349], - [130.528046, 32.875481], - [130.524338, 32.875488], - [130.517471, 32.877834], - [130.511169, 32.882713], - [130.502075, 32.885147], - [130.456482, 32.914734], - [130.453354, 32.916759], - [130.444534, 32.918781], - [130.441559, 32.922173], - [130.443695, 32.92981], - [130.433701, 32.969387], - [130.435226, 32.975323], - [130.431335, 32.980751], - [130.433609, 32.986519], - [130.42746, 32.992451], - [130.418457, 32.996555], - [130.416672, 33.000427], - [130.423569, 33.001015], - [130.424225, 33.003422], - [130.469391, 32.999428], - [130.482574, 32.999966], - [130.509293, 33.003132], - [130.515701, 33.013004], - [130.509705, 33.021896], - [130.506714, 33.032459], - [130.499969, 33.048893], - [130.508255, 33.055447], - [130.518478, 33.060902], - [130.528366, 33.062977], - [130.536118, 33.069614], - [130.544418, 33.078331], - [130.555588, 33.080013], - [130.565918, 33.08976], - [130.564148, 33.100754], - [130.573456, 33.105652], - [130.582321, 33.112717], - [130.593018, 33.110428], - [130.60527, 33.110371], - [130.615204, 33.105274], - [130.625107, 33.107586], - [130.637833, 33.108391], - [130.648163, 33.107189], - [130.658264, 33.105274], - [130.662109, 33.115883], - [130.66394, 33.126396], - [130.671143, 33.135036], - [130.669434, 33.144905], - [130.674622, 33.155342], - [130.685165, 33.16663], - [130.693237, 33.160576], - [130.693344, 33.149521], - [130.703568, 33.149113], - [130.714142, 33.151821], - [130.723816, 33.148563], - [130.734253, 33.151142], - [130.740723, 33.142475], - [130.749969, 33.137432], - [130.758728, 33.129723], - [130.768005, 33.125237], - [130.780228, 33.120155], - [130.791534, 33.120705], - [130.801193, 33.117073], - [130.811539, 33.112942], - [130.821838, 33.108906], - [130.83165, 33.103157], - [130.845642, 33.103157], - [130.845261, 33.090721], - [130.864578, 33.091911], - [130.875031, 33.088871], - [130.889511, 33.083286], - [130.895889, 33.070786], - [130.902618, 33.060768], - [130.913498, 33.058495], - [130.920212, 33.049782], - [130.931091, 33.048885], - [130.941772, 33.048923], - [130.952011, 33.047523], - [130.961029, 33.038769], - [130.964767, 33.029343], - [130.972443, 33.020405], - [130.991699, 33.020176], - [131.004135, 33.028294], - [131.009918, 33.037682], - [131.016479, 33.046978], - [131.018188, 33.057182], - [131.013275, 33.06657], - [131.016754, 33.076313], - [131.025604, 33.083336], - [131.015366, 33.096352], - [131.009109, 33.105091], - [130.999969, 33.11338], - [130.996506, 33.124111], - [130.983261, 33.135014], - [130.988708, 33.148762], - [130.989807, 33.166634], - [130.999817, 33.177395], - [131.022675, 33.177422], - [131.034805, 33.183174], - [131.04158, 33.190716], - [131.052292, 33.190876], - [131.062454, 33.1917], - [131.07399, 33.187183], - [131.084824, 33.184971], - [131.103607, 33.184307], - [131.113068, 33.179695] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "鹿児島県", - "name": "Kagoshima", - "ISOCODE": "JP-46", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:23+0100", - "cartodb_id": 410 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [130.593887, 32.182598], - [130.604935, 32.183907], - [130.6147, 32.179131], - [130.61853, 32.168037], - [130.624969, 32.153339], - [130.642365, 32.149284], - [130.6539, 32.147923], - [130.657135, 32.133057], - [130.666916, 32.12664], - [130.677246, 32.120647], - [130.687195, 32.114754], - [130.69519, 32.108562], - [130.704453, 32.102573], - [130.714355, 32.100456], - [130.730179, 32.098598], - [130.718719, 32.083302], - [130.708588, 32.076527], - [130.705963, 32.066135], - [130.705658, 32.05529], - [130.714706, 32.048416], - [130.725357, 32.048801], - [130.738647, 32.0453], - [130.749969, 32.031387], - [130.763153, 32.02467], - [130.771347, 32.016609], - [130.780457, 32.011219], - [130.78093, 31.999966], - [130.783356, 31.989094], - [130.785095, 31.97851], - [130.793137, 31.971287], - [130.798843, 31.961374], - [130.801605, 31.949881], - [130.813828, 31.941324], - [130.833923, 31.938122], - [130.845291, 31.937571], - [130.856628, 31.934914], - [130.871964, 31.924538], - [130.883118, 31.918184], - [130.888672, 31.906513], - [130.89418, 31.897989], - [130.899094, 31.887348], - [130.893326, 31.863506], - [130.890579, 31.853676], - [130.888245, 31.843409], - [130.877884, 31.840197], - [130.879593, 31.821281], - [130.881439, 31.811419], - [130.886597, 31.80201], - [130.907257, 31.797976], - [130.91954, 31.797583], - [130.927856, 31.791021], - [130.934616, 31.782108], - [130.944946, 31.781528], - [130.955124, 31.780222], - [130.968445, 31.777912], - [130.978882, 31.778862], - [130.98938, 31.776556], - [130.992859, 31.76688], - [130.983521, 31.759731], - [130.980103, 31.74996], - [130.98938, 31.74622], - [130.999969, 31.742634], - [131.010117, 31.744896], - [131.020172, 31.741785], - [131.018967, 31.731602], - [131.018799, 31.71698], - [131.020218, 31.702644], - [131.028793, 31.695124], - [131.027893, 31.6849], - [131.028381, 31.673601], - [131.036652, 31.658831], - [131.045654, 31.652319], - [131.050751, 31.641552], - [131.056229, 31.631445], - [131.06517, 31.640558], - [131.073105, 31.650467], - [131.081635, 31.656626], - [131.091949, 31.649883], - [131.098801, 31.642086], - [131.108688, 31.635662], - [131.117737, 31.62892], - [131.134308, 31.623596], - [131.145309, 31.626961], - [131.156204, 31.630527], - [131.166306, 31.633614], - [131.180618, 31.624519], - [131.190247, 31.62112], - [131.188461, 31.608841], - [131.190506, 31.599024], - [131.199829, 31.591459], - [131.205414, 31.581007], - [131.206177, 31.570505], - [131.201981, 31.560736], - [131.192825, 31.55422], - [131.199936, 31.540823], - [131.202133, 31.530308], - [131.202515, 31.517857], - [131.199341, 31.508213], - [131.189148, 31.504173], - [131.178268, 31.499975], - [131.170898, 31.489151], - [131.165298, 31.480108], - [131.164062, 31.463074], - [131.166687, 31.448761], - [131.152817, 31.45624], - [131.14238, 31.45344], - [131.138336, 31.456503], - [131.121323, 31.463312], - [131.107101, 31.4627], - [131.096924, 31.457935], - [131.08342, 31.447514], - [131.065857, 31.434052], - [131.061523, 31.432537], - [131.037842, 31.409933], - [131.028412, 31.394047], - [131.021515, 31.377501], - [131.019669, 31.353531], - [131.012054, 31.35137], - [130.990479, 31.350763], - [130.985901, 31.348593], - [130.990204, 31.346188], - [130.999084, 31.345078], - [131.024475, 31.3472], - [131.041992, 31.34585], - [131.056946, 31.341454], - [131.06633, 31.336199], - [131.086624, 31.33222], - [131.09549, 31.3274], - [131.110443, 31.324959], - [131.111969, 31.321903], - [131.108139, 31.315159], - [131.109863, 31.312397], - [131.11142, 31.309917], - [131.109619, 31.302731], - [131.09819, 31.298622], - [131.080627, 31.284288], - [131.078079, 31.277973], - [131.07959, 31.273392], - [131.085159, 31.270327], - [131.090729, 31.269003], - [131.107224, 31.269173], - [131.123489, 31.278059], - [131.129578, 31.278259], - [131.132858, 31.276287], - [131.134125, 31.272797], - [131.131561, 31.268227], - [131.116562, 31.258465], - [131.110703, 31.250635], - [131.10437, 31.251091], - [131.100555, 31.249357], - [131.087845, 31.238277], - [131.081238, 31.234371], - [131.073349, 31.22415], - [131.069977, 31.2218], - [131.066498, 31.219372], - [131.06015, 31.216774], - [131.043686, 31.221174], - [131.033798, 31.220108], - [131.026184, 31.217947], - [131.014755, 31.207293], - [131.007339, 31.184858], - [130.993637, 31.174208], - [130.99234, 31.163746], - [130.990051, 31.16048], - [130.97966, 31.159195], - [130.976624, 31.154623], - [130.976868, 31.152006], - [130.980667, 31.150692], - [130.982941, 31.147854], - [130.982178, 31.145021], - [130.974808, 31.137623], - [130.965683, 31.131409], - [130.96492, 31.130886], - [130.927155, 31.116131], - [130.918274, 31.105244], - [130.905853, 31.102865], - [130.891418, 31.09613], - [130.870651, 31.08918], - [130.846085, 31.083979], - [130.838226, 31.084204], - [130.834366, 31.082823], - [130.829117, 31.080944], - [130.819489, 31.081608], - [130.81012, 31.073332], - [130.801773, 31.074209], - [130.793411, 31.064625], - [130.777206, 31.061146], - [130.769363, 31.057226], - [130.76709, 31.054829], - [130.76683, 31.050251], - [130.764053, 31.048946], - [130.753159, 31.05135], - [130.737732, 31.042635], - [130.72583, 31.038496], - [130.721786, 31.03479], - [130.720016, 31.03043], - [130.722733, 31.02809], - [130.723557, 31.027378], - [130.722794, 31.022364], - [130.720276, 31.021492], - [130.716476, 31.023672], - [130.710144, 31.023891], - [130.70079, 31.017134], - [130.695724, 31.01757], - [130.692184, 31.016262], - [130.690414, 31.01321], - [130.69371, 31.010157], - [130.694214, 31.006016], - [130.691437, 31.001436], - [130.685623, 30.997293], - [130.68309, 30.999039], - [130.678284, 30.999474], - [130.669937, 30.99206], - [130.662109, 30.989006], - [130.659058, 30.991404], - [130.658051, 30.994455], - [130.660324, 31.001652], - [130.673965, 31.01844], - [130.677155, 31.025326], - [130.681046, 31.033703], - [130.678757, 31.047438], - [130.680008, 31.052452], - [130.676712, 31.060083], - [130.672409, 31.062044], - [130.667343, 31.06139], - [130.66304, 31.062916], - [130.66153, 31.065968], - [130.666077, 31.072725], - [130.67392, 31.079485], - [130.681503, 31.082756], - [130.693649, 31.092348], - [130.706818, 31.096708], - [130.717194, 31.10717], - [130.727173, 31.11087], - [130.730118, 31.111963], - [130.734421, 31.115667], - [130.747589, 31.133539], - [130.760498, 31.161436], - [130.76506, 31.179743], - [130.764297, 31.183886], - [130.755692, 31.198931], - [130.756958, 31.204161], - [130.762024, 31.21048], - [130.76709, 31.204157], - [130.774704, 31.203279], - [130.770645, 31.209387], - [130.770142, 31.216362], - [130.772675, 31.224642], - [130.790421, 31.24185], - [130.791183, 31.251005], - [130.795502, 31.265387], - [130.796524, 31.278246], - [130.794495, 31.293287], - [130.801361, 31.314857], - [130.803131, 31.325537], - [130.799072, 31.336], - [130.789444, 31.352024], - [130.783096, 31.3626], - [130.780807, 31.372627], - [130.77269, 31.385925], - [130.765839, 31.401403], - [130.756943, 31.414919], - [130.743988, 31.429523], - [130.73053, 31.440643], - [130.71553, 31.450233], - [130.709946, 31.452196], - [130.708984, 31.453266], - [130.701797, 31.461349], - [130.697205, 31.512121], - [130.701004, 31.521055], - [130.708633, 31.524542], - [130.709396, 31.527592], - [130.7043, 31.541536], - [130.701752, 31.543934], - [130.697433, 31.544806], - [130.693878, 31.543716], - [130.687271, 31.536308], - [130.678864, 31.543497], - [130.678162, 31.543402], - [130.674042, 31.542845], - [130.669968, 31.545023], - [130.647095, 31.538044], - [130.640732, 31.538261], - [130.63208, 31.545229], - [130.625717, 31.545664], - [130.608398, 31.563738], - [130.602295, 31.56526], - [130.599747, 31.569834], - [130.593384, 31.571791], - [130.592102, 31.574839], - [130.594894, 31.58312], - [130.59819, 31.584211], - [130.601746, 31.590752], - [130.606583, 31.592062], - [130.611404, 31.600561], - [130.612411, 31.601028], - [130.618515, 31.603832], - [130.624359, 31.613857], - [130.631485, 31.617128], - [130.650558, 31.617136], - [130.664047, 31.621279], - [130.674744, 31.620407], - [130.678558, 31.621933], - [130.685684, 31.621498], - [130.690262, 31.617359], - [130.697388, 31.618448], - [130.70018, 31.617359], - [130.702484, 31.609297], - [130.707321, 31.606682], - [130.714706, 31.59753], - [130.715729, 31.592737], - [130.712234, 31.582287], - [130.711151, 31.579012], - [130.714462, 31.572039], - [130.719543, 31.567026], - [130.71701, 31.562016], - [130.723877, 31.558964], - [130.723618, 31.554825], - [130.716248, 31.551775], - [130.717773, 31.550032], - [130.731247, 31.551989], - [130.74855, 31.550022], - [130.753632, 31.550892], - [130.768127, 31.559383], - [130.78212, 31.570704], - [130.786697, 31.579199], - [130.78746, 31.587914], - [130.788254, 31.590239], - [130.791031, 31.598368], - [130.795105, 31.602722], - [130.800964, 31.622543], - [130.81929, 31.640829], - [130.821335, 31.646275], - [130.81041, 31.674824], - [130.807602, 31.677004], - [130.801239, 31.678534], - [130.799713, 31.680931], - [130.80098, 31.684853], - [130.798691, 31.689428], - [130.79538, 31.690956], - [130.786224, 31.691616], - [130.779602, 31.692926], - [130.769409, 31.699469], - [130.756927, 31.700346], - [130.749542, 31.702528], - [130.745468, 31.707758], - [130.740128, 31.706017], - [130.734009, 31.709503], - [130.728149, 31.70929], - [130.719742, 31.716696], - [130.706497, 31.716482], - [130.698593, 31.721491], - [130.687134, 31.722364], - [130.678482, 31.718878], - [130.671341, 31.719967], - [130.664215, 31.7204], - [130.654587, 31.714798], - [130.653168, 31.71273], - [130.649185, 31.713427], - [130.643082, 31.706236], - [130.632141, 31.702528], - [130.631485, 31.702034], - [130.625519, 31.697515], - [130.620941, 31.691195], - [130.614105, 31.668755], - [130.622528, 31.651329], - [130.609558, 31.637161], - [130.607544, 31.626486], - [130.604248, 31.619511], - [130.598648, 31.615368], - [130.590256, 31.612749], - [130.583405, 31.606644], - [130.577057, 31.597052], - [130.565628, 31.587238], - [130.565384, 31.578522], - [130.568192, 31.573296], - [130.561325, 31.570894], - [130.565155, 31.563925], - [130.561096, 31.557819], - [130.564941, 31.547148], - [130.562149, 31.54344], - [130.557571, 31.54213], - [130.548172, 31.538853], - [130.542847, 31.531874], - [130.532196, 31.519444], - [130.518799, 31.482384], - [130.517059, 31.467566], - [130.521683, 31.441856], - [130.53064, 31.414627], - [130.538025, 31.408968], - [130.540314, 31.404394], - [130.544632, 31.401785], - [130.550735, 31.40288], - [130.555298, 31.405935], - [130.559616, 31.403324], - [130.564209, 31.394175], - [130.56575, 31.385025], - [130.564743, 31.381971], - [130.556641, 31.375273], - [130.557617, 31.365046], - [130.555389, 31.359081], - [130.554382, 31.357336], - [130.559219, 31.349495], - [130.564331, 31.326397], - [130.569168, 31.315941], - [130.576797, 31.3081], - [130.593048, 31.299612], - [130.599152, 31.290026], - [130.60347, 31.286978], - [130.617935, 31.28219], - [130.621765, 31.270424], - [130.626328, 31.268026], - [130.635544, 31.265959], - [130.636978, 31.265635], - [130.660324, 31.264334], - [130.664383, 31.260193], - [130.668701, 31.259975], - [130.669708, 31.256924], - [130.656799, 31.239485], - [130.655029, 31.23251], - [130.659866, 31.216381], - [130.658844, 31.211149], - [130.65657, 31.209187], - [130.63858, 31.206347], - [130.635284, 31.200897], - [130.636307, 31.198936], - [130.640106, 31.1985], - [130.643402, 31.201773], - [130.644669, 31.195669], - [130.644211, 31.193579], - [130.642914, 31.187603], - [130.638611, 31.180408], - [130.633789, 31.178009], - [130.616821, 31.17691], - [130.600861, 31.172977], - [130.591751, 31.164906], - [130.592514, 31.162292], - [130.598602, 31.159025], - [130.599106, 31.157282], - [130.596069, 31.156626], - [130.591263, 31.152262], - [130.562851, 31.168371], - [130.557541, 31.168585], - [130.547668, 31.160946], - [130.544968, 31.160137], - [130.535263, 31.157227], - [130.524368, 31.158087], - [130.519547, 31.160042], - [130.513962, 31.16614], - [130.509872, 31.176378], - [130.509857, 31.184008], - [130.517197, 31.192301], - [130.517441, 31.195789], - [130.514633, 31.201235], - [130.492279, 31.22344], - [130.474991, 31.236492], - [130.463058, 31.242796], - [130.450638, 31.241684], - [130.436203, 31.23839], - [130.420471, 31.239668], - [130.414886, 31.241402], - [130.412598, 31.244013], - [130.409561, 31.244444], - [130.405502, 31.241602], - [130.397629, 31.244419], - [130.392838, 31.240921], - [130.368469, 31.246317], - [130.36087, 31.242813], - [130.354538, 31.242363], - [130.340317, 31.247124], - [130.324341, 31.24621], - [130.310104, 31.256636], - [130.30072, 31.25552], - [130.294357, 31.260298], - [130.290802, 31.260723], - [130.28479, 31.245667], - [130.282013, 31.243261], - [130.272873, 31.243889], - [130.263214, 31.250181], - [130.249786, 31.246872], - [130.244965, 31.247728], - [130.240891, 31.251202], - [130.23204, 31.245071], - [130.229248, 31.246588], - [130.22139, 31.245689], - [130.216797, 31.250906], - [130.215775, 31.254608], - [130.216522, 31.257008], - [130.22438, 31.258125], - [130.227402, 31.260096], - [130.226883, 31.261837], - [130.221313, 31.261383], - [130.21875, 31.265299], - [130.227097, 31.270338], - [130.227585, 31.273609], - [130.22554, 31.274338], - [130.221497, 31.275768], - [130.218674, 31.280556], - [130.204742, 31.277239], - [130.201416, 31.283113], - [130.202408, 31.285732], - [130.212784, 31.290562], - [130.215805, 31.295366], - [130.226959, 31.299326], - [130.224899, 31.303026], - [130.21907, 31.304096], - [130.218018, 31.309759], - [130.210632, 31.315184], - [130.206848, 31.311464], - [130.207367, 31.308416], - [130.201782, 31.310358], - [130.19722, 31.307726], - [130.190842, 31.313589], - [130.179932, 31.314423], - [130.176361, 31.318987], - [130.178879, 31.322046], - [130.180542, 31.322496], - [130.186218, 31.324034], - [130.195358, 31.323631], - [130.20195, 31.324961], - [130.206497, 31.328028], - [130.21051, 31.337194], - [130.200043, 31.348928], - [130.192169, 31.349991], - [130.188324, 31.356516], - [130.179184, 31.358662], - [130.171265, 31.366697], - [130.167191, 31.368425], - [130.161819, 31.37538], - [130.156219, 31.378193], - [130.152634, 31.382973], - [130.149017, 31.392984], - [130.145447, 31.396023], - [130.138474, 31.399124], - [130.13475, 31.400776], - [130.130661, 31.407297], - [130.126328, 31.409023], - [130.115143, 31.409414], - [130.113144, 31.403957], - [130.109344, 31.40307], - [130.106781, 31.408291], - [130.110046, 31.412445], - [130.117386, 31.417051], - [130.121948, 31.41794], - [130.128311, 31.416222], - [130.135956, 31.411894], - [130.140274, 31.413], - [130.148102, 31.421093], - [130.155441, 31.423954], - [130.160995, 31.430948], - [130.165054, 31.4314], - [130.172195, 31.426413], - [130.175018, 31.422501], - [130.176575, 31.415316], - [130.180328, 31.415081], - [130.183182, 31.414904], - [130.190857, 31.404688], - [130.19339, 31.405132], - [130.194138, 31.407969], - [130.190811, 31.414276], - [130.192062, 31.417332], - [130.196106, 31.420397], - [130.198181, 31.412558], - [130.197968, 31.405584], - [130.205627, 31.398855], - [130.209732, 31.391024], - [130.212784, 31.389509], - [130.214844, 31.382977], - [130.226562, 31.376259], - [130.229355, 31.37714], - [130.229019, 31.391741], - [130.233047, 31.399164], - [130.237869, 31.400923], - [130.244217, 31.400507], - [130.245544, 31.401375], - [130.252563, 31.405981], - [130.256104, 31.410786], - [130.26651, 31.412779], - [130.277908, 31.419567], - [130.286224, 31.431795], - [130.29155, 31.435949], - [130.302475, 31.434019], - [130.298904, 31.436625], - [130.298859, 31.447302], - [130.308945, 31.467159], - [130.315521, 31.47415], - [130.324814, 31.498362], - [130.331848, 31.518425], - [130.335815, 31.542622], - [130.338974, 31.581848], - [130.336823, 31.609949], - [130.331375, 31.634554], - [130.327011, 31.641951], - [130.322662, 31.648693], - [130.31604, 31.650419], - [130.309418, 31.650183], - [130.304825, 31.653221], - [130.301208, 31.663887], - [130.290451, 31.678671], - [130.288132, 31.685854], - [130.278168, 31.693232], - [130.270523, 31.693863], - [130.266937, 31.696903], - [130.263748, 31.7108], - [130.258301, 31.715364], - [130.25029, 31.715368], - [130.242126, 31.719482], - [130.227005, 31.735991], - [130.218323, 31.741625], - [130.207367, 31.741371], - [130.197449, 31.73698], - [130.192841, 31.741539], - [130.190216, 31.755035], - [130.175812, 31.78047], - [130.175995, 31.787937], - [130.17601, 31.788748], - [130.180252, 31.804882], - [130.19313, 31.828886], - [130.197189, 31.832603], - [130.206635, 31.830893], - [130.216873, 31.824175], - [130.2258, 31.823551], - [130.232956, 31.819], - [130.238815, 31.8188], - [130.248749, 31.823189], - [130.246704, 31.824488], - [130.246124, 31.824528], - [130.2314, 31.825529], - [130.22525, 31.828995], - [130.220367, 31.838779], - [130.217804, 31.840515], - [130.207352, 31.840261], - [130.204788, 31.841776], - [130.202469, 31.846125], - [130.204697, 31.858112], - [130.215363, 31.867514], - [130.216339, 31.8771], - [130.221649, 31.886265], - [130.223892, 31.895855], - [130.219238, 31.90847], - [130.219894, 31.917736], - [130.216797, 31.933725], - [130.21701, 31.941784], - [130.210022, 31.962231], - [130.20488, 31.968746], - [130.205353, 31.973974], - [130.199707, 31.980053], - [130.195114, 31.98069], - [130.192017, 31.984163], - [130.189728, 31.985027], - [130.181305, 31.981949], - [130.179245, 31.984554], - [130.17923, 31.988039], - [130.18306, 31.988052], - [130.185349, 31.990238], - [130.183273, 31.995457], - [130.183853, 32], - [130.18544, 32.001919], - [130.183228, 32.005131], - [130.184265, 32.007488], - [130.18895, 32.010056], - [130.195465, 32.011269], - [130.197891, 32.014748], - [130.201416, 32.028942], - [130.208633, 32.033745], - [130.211395, 32.042049], - [130.212479, 32.053177], - [130.211685, 32.058399], - [130.211472, 32.059803], - [130.20668, 32.067673], - [130.196503, 32.075443], - [130.19043, 32.074677], - [130.190353, 32.066525], - [130.182159, 32.070858], - [130.177872, 32.08168], - [130.180634, 32.089985], - [130.187531, 32.105003], - [130.204636, 32.118099], - [130.219971, 32.119606], - [130.234207, 32.125641], - [130.237503, 32.127293], - [130.243958, 32.126408], - [130.264694, 32.118401], - [130.272705, 32.110085], - [130.275208, 32.10939], - [130.277222, 32.111805], - [130.272186, 32.122795], - [130.27504, 32.124001], - [130.280441, 32.120758], - [130.285065, 32.114964], - [130.290085, 32.104179], - [130.283691, 32.091911], - [130.285324, 32.089706], - [130.288651, 32.091148], - [130.298065, 32.102333], - [130.302383, 32.103622], - [130.309647, 32.103558], - [130.311951, 32.103539], - [130.325027, 32.108662], - [130.333725, 32.113537], - [130.339798, 32.120564], - [130.341736, 32.114613], - [130.343826, 32.115986], - [130.349213, 32.119213], - [130.3582, 32.129948], - [130.362427, 32.138542], - [130.368118, 32.144287], - [130.368912, 32.149971], - [130.367294, 32.16114], - [130.374969, 32.15485], - [130.389114, 32.143509], - [130.393066, 32.133469], - [130.400208, 32.125835], - [130.405243, 32.116798], - [130.415222, 32.115524], - [130.426392, 32.113911], - [130.436859, 32.111195], - [130.447662, 32.112694], - [130.458191, 32.109978], - [130.467606, 32.116173], - [130.478378, 32.11834], - [130.478592, 32.129219], - [130.488708, 32.133961], - [130.49939, 32.132259], - [130.510452, 32.13728], - [130.520081, 32.132347], - [130.531097, 32.133427], - [130.541946, 32.136002], - [130.546021, 32.146427], - [130.556503, 32.149281], - [130.566986, 32.15118], - [130.577316, 32.151237], - [130.586838, 32.156487], - [130.592804, 32.166637], - [130.593887, 32.182598] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "沖縄県", - "name": "Okinawa", - "ISOCODE": "JP-47", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:29+0100", - "cartodb_id": 454 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [127.683769, 26.071968], - [127.663269, 26.078938], - [127.658218, 26.08647], - [127.660721, 26.091986], - [127.661926, 26.10075], - [127.668457, 26.109415], - [127.670143, 26.118408], - [127.670639, 26.144838], - [127.670723, 26.14922], - [127.667702, 26.153521], - [127.661369, 26.154909], - [127.658653, 26.157251], - [127.655693, 26.167669], - [127.647957, 26.184097], - [127.639809, 26.190247], - [127.638023, 26.193703], - [127.638672, 26.196119], - [127.644409, 26.198652], - [127.645393, 26.206537], - [127.648491, 26.208355], - [127.656471, 26.208534], - [127.666702, 26.206362], - [127.669769, 26.200531], - [127.675438, 26.196726], - [127.680031, 26.188309], - [127.683273, 26.185324], - [127.686653, 26.185617], - [127.692787, 26.190996], - [127.690987, 26.19445], - [127.686577, 26.19632], - [127.683037, 26.20192], - [127.676666, 26.204399], - [127.672638, 26.210424], - [127.675407, 26.215075], - [127.682098, 26.218281], - [127.687439, 26.217745], - [127.690048, 26.219551], - [127.685303, 26.225124], - [127.682968, 26.230534], - [127.684738, 26.236471], - [127.698463, 26.256435], - [127.710228, 26.268927], - [127.713623, 26.268784], - [127.717812, 26.266035], - [127.723328, 26.267904], - [127.731644, 26.265465], - [127.736992, 26.273228], - [127.74131, 26.274633], - [127.756393, 26.290251], - [127.76004, 26.298195], - [127.761047, 26.305643], - [127.760063, 26.315233], - [127.757751, 26.319988], - [127.747414, 26.325882], - [127.745796, 26.331526], - [127.743851, 26.349615], - [127.745796, 26.357958], - [127.735687, 26.36451], - [127.734062, 26.37081], - [127.726044, 26.380245], - [127.718712, 26.399746], - [127.716766, 26.408659], - [127.715622, 26.432665], - [127.717018, 26.434662], - [127.721367, 26.435411], - [127.73674, 26.423079], - [127.743301, 26.422783], - [127.755096, 26.429068], - [127.757401, 26.4303], - [127.764877, 26.43177], - [127.77343, 26.43829], - [127.776817, 26.438801], - [127.786697, 26.432022], - [127.79084, 26.431456], - [127.799263, 26.434038], - [127.807281, 26.442291], - [127.809723, 26.451082], - [127.81424, 26.454235], - [127.817963, 26.459995], - [127.828957, 26.466125], - [127.836998, 26.473942], - [127.847061, 26.478958], - [127.848427, 26.482264], - [127.845306, 26.489843], - [127.846161, 26.49445], - [127.853798, 26.499416], - [127.859978, 26.494957], - [127.863777, 26.497877], - [127.860237, 26.5037], - [127.860657, 26.506113], - [127.862831, 26.506596], - [127.86705, 26.50297], - [127.869957, 26.502811], - [127.871597, 26.505466], - [127.874977, 26.505756], - [127.882423, 26.499794], - [127.886078, 26.499214], - [127.892326, 26.501308], - [127.899437, 26.508009], - [127.904503, 26.509424], - [127.907562, 26.512764], - [127.917526, 26.512312], - [127.921341, 26.515011], - [127.928093, 26.526291], - [127.934097, 26.528597], - [127.935631, 26.535181], - [127.93924, 26.536346], - [127.941727, 26.535067], - [127.945389, 26.533195], - [127.952164, 26.533987], - [127.958099, 26.539351], - [127.966812, 26.54018], - [127.971573, 26.543989], - [127.985779, 26.577478], - [127.983467, 26.58202], - [127.976379, 26.584063], - [127.96666, 26.584524], - [127.963127, 26.589695], - [127.940361, 26.596664], - [127.930977, 26.602154], - [127.929558, 26.602257], - [127.923927, 26.602665], - [127.917976, 26.597956], - [127.913132, 26.597639], - [127.901581, 26.602644], - [127.897781, 26.608683], - [127.889099, 26.615713], - [127.884697, 26.625891], - [127.882782, 26.643328], - [127.885773, 26.649942], - [127.89341, 26.655125], - [127.894073, 26.65798], - [127.879883, 26.67975], - [127.877281, 26.686251], - [127.877617, 26.687874], - [127.878143, 26.69042], - [127.884277, 26.6971], - [127.885628, 26.701715], - [127.888039, 26.702421], - [127.90374, 26.696846], - [127.92263, 26.699854], - [127.929497, 26.69759], - [127.947319, 26.704069], - [127.952431, 26.703735], - [127.958832, 26.700806], - [127.969307, 26.699705], - [127.970612, 26.696453], - [127.969521, 26.691408], - [127.972054, 26.687527], - [127.97644, 26.687176], - [127.977859, 26.688517], - [127.975777, 26.694155], - [127.980659, 26.693159], - [127.982353, 26.691805], - [127.988113, 26.687191], - [128.003662, 26.687281], - [128.005234, 26.682943], - [128.003662, 26.67745], - [127.993202, 26.668285], - [127.989037, 26.65029], - [127.986633, 26.649368], - [127.985718, 26.647165], - [127.987228, 26.64501], - [127.992577, 26.64468], - [127.996536, 26.641701], - [128.004639, 26.638802], - [128.00946, 26.630596], - [128.013641, 26.628494], - [128.021408, 26.628647], - [128.024628, 26.626526], - [128.02803, 26.626375], - [128.038101, 26.631815], - [128.055817, 26.632597], - [128.066879, 26.637398], - [128.083969, 26.643625], - [128.094391, 26.654966], - [128.102341, 26.657959], - [128.111282, 26.659876], - [128.116241, 26.655382], - [128.122559, 26.655939], - [128.124435, 26.658379], - [128.124359, 26.661871], - [128.12114, 26.664433], - [128.107895, 26.669205], - [128.104614, 26.674385], - [128.105957, 26.678999], - [128.113449, 26.6905], - [128.121964, 26.70093], - [128.147461, 26.711895], - [128.152939, 26.718018], - [128.160965, 26.727003], - [128.161591, 26.731165], - [128.155807, 26.739576], - [128.159546, 26.745544], - [128.162781, 26.742546], - [128.172012, 26.742937], - [128.191238, 26.752903], - [128.206833, 26.77285], - [128.215866, 26.781754], - [128.226166, 26.788494], - [128.233673, 26.800426], - [128.239212, 26.813635], - [128.253067, 26.83573], - [128.255081, 26.843193], - [128.250793, 26.860374], - [128.251694, 26.864103], - [128.255966, 26.868332], - [128.262482, 26.871288], - [128.265457, 26.868502], - [128.267776, 26.863081], - [128.271515, 26.859652], - [128.277405, 26.857573], - [128.285614, 26.849417], - [128.292282, 26.845383], - [128.296066, 26.839333], - [128.298035, 26.838493], - [128.300583, 26.844219], - [128.304703, 26.845165], - [128.307404, 26.84412], - [128.309967, 26.838266], - [128.308243, 26.828405], - [128.318985, 26.815704], - [128.323288, 26.808352], - [128.323883, 26.803556], - [128.320038, 26.790819], - [128.320129, 26.786234], - [128.325897, 26.778906], - [128.326431, 26.776295], - [128.324554, 26.773203], - [128.3284, 26.76475], - [128.328766, 26.758858], - [128.325424, 26.745256], - [128.322617, 26.741026], - [128.31601, 26.731112], - [128.299591, 26.715096], - [128.298553, 26.707212], - [128.295517, 26.701479], - [128.289108, 26.694813], - [128.282623, 26.691202], - [128.279816, 26.675861], - [128.278275, 26.672951], - [128.275848, 26.668364], - [128.240982, 26.631258], - [128.233795, 26.626978], - [128.22438, 26.624186], - [128.198425, 26.62262], - [128.184875, 26.620403], - [128.170441, 26.624506], - [128.162918, 26.624147], - [128.15686, 26.623816], - [128.151581, 26.620876], - [128.149963, 26.617571], - [128.155533, 26.608063], - [128.151672, 26.59663], - [128.149033, 26.59527], - [128.136353, 26.597218], - [128.131271, 26.596685], - [128.129684, 26.591848], - [128.131454, 26.589043], - [128.139587, 26.583735], - [128.143173, 26.575937], - [128.146957, 26.572994], - [128.150848, 26.569965], - [128.15239, 26.566063], - [128.150772, 26.563192], - [128.143051, 26.560863], - [128.141922, 26.557346], - [128.135498, 26.551764], - [128.112366, 26.544773], - [128.105255, 26.537647], - [128.100616, 26.538433], - [128.093704, 26.533276], - [128.090546, 26.533653], - [128.082855, 26.540277], - [128.07695, 26.543221], - [128.04213, 26.547789], - [128.041656, 26.546431], - [128.040543, 26.543171], - [128.045197, 26.531466], - [128.053238, 26.520481], - [128.051361, 26.517605], - [128.040009, 26.515635], - [128.038651, 26.511459], - [128.034393, 26.507442], - [128.021744, 26.508724], - [128.0112, 26.502836], - [128.004379, 26.504011], - [128.001251, 26.502857], - [127.998718, 26.497564], - [128.005341, 26.485245], - [128.004272, 26.479107], - [128.001694, 26.475561], - [127.997353, 26.474819], - [127.994141, 26.47694], - [127.989273, 26.477499], - [127.989464, 26.470293], - [127.975807, 26.46303], - [127.961632, 26.46755], - [127.955353, 26.466331], - [127.953697, 26.464333], - [127.952072, 26.452286], - [127.94754, 26.449354], - [127.945686, 26.446039], - [127.94725, 26.441702], - [127.952477, 26.436129], - [127.951576, 26.433708], - [127.948219, 26.432329], - [127.940842, 26.436111], - [127.930672, 26.435467], - [127.922256, 26.441849], - [127.913971, 26.443645], - [127.903313, 26.443209], - [127.897667, 26.445496], - [127.892464, 26.450193], - [127.874023, 26.450466], - [127.858147, 26.444893], - [127.844566, 26.433319], - [127.838699, 26.42832], - [127.835457, 26.422573], - [127.835136, 26.416449], - [127.83989, 26.41087], - [127.842003, 26.40436], - [127.847588, 26.404041], - [127.849571, 26.402554], - [127.851913, 26.396486], - [127.860207, 26.394693], - [127.863167, 26.39257], - [127.876122, 26.379297], - [127.877953, 26.374311], - [127.87735, 26.369493], - [127.875473, 26.358313], - [127.877563, 26.35224], - [127.89624, 26.332968], - [127.910378, 26.32037], - [127.917023, 26.316793], - [127.922523, 26.309698], - [127.925179, 26.300795], - [127.921593, 26.290018], - [127.919434, 26.289101], - [127.916389, 26.294064], - [127.903412, 26.298965], - [127.90049, 26.30007], - [127.864243, 26.333395], - [127.858902, 26.333721], - [127.853668, 26.330116], - [127.843277, 26.329023], - [127.837334, 26.325186], - [127.835037, 26.320112], - [127.837303, 26.316883], - [127.844116, 26.315498], - [127.84816, 26.309467], - [127.836357, 26.306597], - [127.830513, 26.298828], - [127.822693, 26.298269], - [127.821823, 26.298206], - [127.818237, 26.295946], - [127.816002, 26.28891], - [127.820442, 26.276989], - [127.8162, 26.272532], - [127.809288, 26.268452], - [127.800591, 26.258656], - [127.790413, 26.24118], - [127.787857, 26.236757], - [127.788933, 26.233286], - [127.791862, 26.232256], - [127.792877, 26.230093], - [127.791054, 26.226341], - [127.785789, 26.224043], - [127.763847, 26.203037], - [127.762032, 26.199219], - [127.76133, 26.197741], - [127.763107, 26.194721], - [127.772362, 26.192518], - [127.773743, 26.186432], - [127.777519, 26.180834], - [127.77652, 26.173166], - [127.779327, 26.167549], - [127.785881, 26.166815], - [127.79068, 26.168447], - [127.798889, 26.178017], - [127.807068, 26.179937], - [127.817047, 26.186268], - [127.824821, 26.185558], - [127.828148, 26.180088], - [127.825996, 26.174553], - [127.830063, 26.170816], - [127.834106, 26.163912], - [127.830879, 26.157946], - [127.826347, 26.155664], - [127.825363, 26.154781], - [127.816658, 26.146942], - [127.799271, 26.136742], - [127.794182, 26.128332], - [127.790581, 26.127163], - [127.780098, 26.130213], - [127.773842, 26.128986], - [127.768929, 26.122982], - [127.755363, 26.115263], - [127.74646, 26.104366], - [127.723358, 26.082891], - [127.720703, 26.083073], - [127.711243, 26.083717], - [127.699028, 26.079733], - [127.690773, 26.072561], - [127.683769, 26.071968] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name_jp": "宮崎県", - "name": "Miyazaki", - "ISOCODE": "JP-45", - "created_at": "2013-12-02T09:00:35+0100", - "updated_at": "2013-12-02T09:21:37+0100", - "cartodb_id": 502 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [131.789642, 32.830368], - [131.799454, 32.820267], - [131.809753, 32.81897], - [131.818771, 32.824192], - [131.829926, 32.821758], - [131.839752, 32.816765], - [131.850266, 32.814503], - [131.860886, 32.81815], - [131.861847, 32.805763], - [131.856232, 32.795448], - [131.85228, 32.785934], - [131.846573, 32.772961], - [131.850159, 32.762066], - [131.851379, 32.751331], - [131.848541, 32.738995], - [131.857574, 32.73349], - [131.874283, 32.738705], - [131.887131, 32.737614], - [131.882568, 32.730579], - [131.865051, 32.726284], - [131.86203, 32.723022], - [131.867981, 32.714302], - [131.863831, 32.713707], - [131.858002, 32.716171], - [131.851578, 32.708172], - [131.851059, 32.704391], - [131.854538, 32.699947], - [131.858261, 32.699482], - [131.861481, 32.690849], - [131.857819, 32.690277], - [131.850204, 32.68557], - [131.844818, 32.684921], - [131.839142, 32.68906], - [131.833939, 32.695988], - [131.832443, 32.69796], - [131.827515, 32.697956], - [131.825485, 32.694736], - [131.826385, 32.688095], - [131.814819, 32.679249], - [131.801239, 32.671356], - [131.798492, 32.667896], - [131.799667, 32.660851], - [131.798187, 32.656612], - [131.792877, 32.658886], - [131.791336, 32.668007], - [131.787689, 32.667221], - [131.782028, 32.66301], - [131.779373, 32.653709], - [131.772522, 32.652992], - [131.771362, 32.651691], - [131.772583, 32.647987], - [131.776138, 32.646259], - [131.773285, 32.640499], - [131.774185, 32.637825], - [131.779282, 32.634914], - [131.779312, 32.630531], - [131.773468, 32.625271], - [131.769501, 32.60944], - [131.763275, 32.606457], - [131.76413, 32.604404], - [131.767853, 32.603939], - [131.752731, 32.593472], - [131.750641, 32.587116], - [131.728836, 32.585327], - [131.72168, 32.589397], - [131.714478, 32.598473], - [131.716553, 32.604828], - [131.712296, 32.613827], - [131.709305, 32.614323], - [131.698441, 32.606747], - [131.707016, 32.591465], - [131.706223, 32.588299], - [131.698074, 32.588566], - [131.694016, 32.58651], - [131.688324, 32.582916], - [131.694046, 32.578159], - [131.70134, 32.575768], - [131.706451, 32.576618], - [131.717148, 32.587109], - [131.717392, 32.583153], - [131.715866, 32.579746], - [131.705383, 32.569893], - [131.69191, 32.544872], - [131.689728, 32.536217], - [131.695892, 32.516239], - [131.695099, 32.513077], - [131.691025, 32.511227], - [131.694427, 32.508034], - [131.697845, 32.508396], - [131.699478, 32.50993], - [131.70018, 32.510586], - [131.705795, 32.51125], - [131.710007, 32.514778], - [131.719788, 32.515835], - [131.722183, 32.513016], - [131.722748, 32.503647], - [131.724655, 32.500809], - [131.734558, 32.495609], - [131.736496, 32.492146], - [131.733597, 32.487217], - [131.72525, 32.482883], - [131.724915, 32.480362], - [131.722092, 32.478359], - [131.709366, 32.473209], - [131.706039, 32.467216], - [131.694977, 32.467144], - [131.686325, 32.471771], - [131.688721, 32.476681], - [131.687592, 32.479134], - [131.677444, 32.476181], - [131.674683, 32.47937], - [131.672928, 32.481407], - [131.664185, 32.467659], - [131.660263, 32.459553], - [131.663849, 32.449276], - [131.662155, 32.444817], - [131.658188, 32.441509], - [131.659729, 32.440323], - [131.664597, 32.441166], - [131.673111, 32.450729], - [131.674698, 32.448921], - [131.674118, 32.446392], - [131.666748, 32.438133], - [131.667374, 32.436073], - [131.680023, 32.438305], - [131.684204, 32.442245], - [131.687378, 32.442596], - [131.689621, 32.434139], - [131.680359, 32.424751], - [131.681564, 32.421257], - [131.678009, 32.41901], - [131.678986, 32.416534], - [131.681519, 32.409985], - [131.676971, 32.408112], - [131.662872, 32.409363], - [131.658859, 32.406681], - [131.651321, 32.4053], - [131.647568, 32.402626], - [131.643997, 32.396622], - [131.638214, 32.37904], - [131.640244, 32.370155], - [131.638153, 32.364216], - [131.632584, 32.358959], - [131.631607, 32.350777], - [131.634949, 32.340698], - [131.634216, 32.336697], - [131.628647, 32.335403], - [131.625595, 32.332973], - [131.615555, 32.336487], - [131.616302, 32.332348], - [131.619156, 32.329971], - [131.615601, 32.323967], - [131.610901, 32.320625], - [131.599899, 32.300091], - [131.593399, 32.286232], - [131.583115, 32.254665], - [131.579941, 32.250351], - [131.58255, 32.240242], - [131.58107, 32.232452], - [131.576172, 32.220272], - [131.564728, 32.191849], - [131.55986, 32.171799], - [131.552124, 32.154541], - [131.545944, 32.128384], - [131.545288, 32.119171], - [131.542145, 32.110889], - [131.53566, 32.10099], - [131.521988, 32.06176], - [131.512939, 32.042145], - [131.512421, 32.046501], - [131.517853, 32.062233], - [131.513412, 32.057816], - [131.50856, 32.0457], - [131.504486, 32.042847], - [131.500595, 32.040115], - [131.493774, 32.043346], - [131.479111, 32.046844], - [131.472076, 32.045891], - [131.480637, 32.038357], - [131.487305, 32.037415], - [131.494095, 32.034389], - [131.502365, 32.035397], - [131.506195, 32.03286], - [131.510315, 32.037434], - [131.512924, 32.03484], - [131.50206, 32], - [131.478134, 31.949759], - [131.469315, 31.929554], - [131.462936, 31.892347], - [131.464401, 31.882755], - [131.457397, 31.864935], - [131.45369, 31.844917], - [131.453613, 31.834461], - [131.452057, 31.828588], - [131.446152, 31.822521], - [131.446579, 31.810976], - [131.449356, 31.806387], - [131.453934, 31.80549], - [131.464584, 31.797375], - [131.468918, 31.796263], - [131.479019, 31.782265], - [131.48259, 31.780933], - [131.48613, 31.779612], - [131.48967, 31.775236], - [131.490402, 31.770004], - [131.487488, 31.75499], - [131.475449, 31.744818], - [131.471573, 31.737432], - [131.468872, 31.714357], - [131.462097, 31.691738], - [131.458755, 31.687399], - [131.461273, 31.683681], - [131.467133, 31.682997], - [131.46991, 31.680801], - [131.470657, 31.676441], - [131.468338, 31.671127], - [131.467804, 31.66992], - [131.458618, 31.666267], - [131.456055, 31.663668], - [131.455002, 31.659315], - [131.461349, 31.656885], - [131.463867, 31.651424], - [131.463821, 31.645325], - [131.467865, 31.641163], - [131.468353, 31.637892], - [131.466034, 31.633329], - [131.459641, 31.630096], - [131.458099, 31.627272], - [131.462891, 31.620928], - [131.463379, 31.616785], - [131.451096, 31.60792], - [131.431458, 31.601051], - [131.425842, 31.596724], - [131.417084, 31.581297], - [131.422119, 31.571249], - [131.420563, 31.5669], - [131.415451, 31.562786], - [131.411896, 31.563457], - [131.40889, 31.570663], - [131.406342, 31.571548], - [131.403534, 31.568512], - [131.398621, 31.555244], - [131.399338, 31.549576], - [131.397293, 31.548061], - [131.392731, 31.550045], - [131.38533, 31.546595], - [131.384293, 31.54137], - [131.391098, 31.532621], - [131.390823, 31.529354], - [131.383652, 31.519802], - [131.389236, 31.517378], - [131.389969, 31.51367], - [131.387131, 31.506493], - [131.385864, 31.506281], - [131.382095, 31.513708], - [131.379547, 31.514593], - [131.374435, 31.509386], - [131.381714, 31.493227], - [131.386276, 31.490808], - [131.389297, 31.486654], - [131.391266, 31.476183], - [131.379791, 31.468178], - [131.37114, 31.46604], - [131.368896, 31.464018], - [131.363464, 31.459103], - [131.361923, 31.454098], - [131.363419, 31.449732], - [131.364151, 31.445372], - [131.369217, 31.44186], - [131.372223, 31.435308], - [131.374451, 31.423965], - [131.370575, 31.414831], - [131.365479, 31.410715], - [131.354538, 31.406843], - [131.348419, 31.402296], - [131.344803, 31.391853], - [131.335876, 31.386009], - [131.333313, 31.379919], - [131.334549, 31.37381], - [131.33757, 31.369001], - [131.349472, 31.36437], - [131.350464, 31.361534], - [131.346893, 31.356319], - [131.340591, 31.353987], - [131.334671, 31.351797], - [131.328339, 31.35248], - [131.324036, 31.355333], - [131.317734, 31.365168], - [131.316269, 31.373674], - [131.312485, 31.378267], - [131.298248, 31.376585], - [131.294449, 31.377911], - [131.284012, 31.371199], - [131.273361, 31.373203], - [131.265991, 31.371708], - [131.258621, 31.372608], - [131.253311, 31.375244], - [131.243973, 31.387486], - [131.241241, 31.400791], - [131.241898, 31.403086], - [131.243042, 31.407103], - [131.24762, 31.409048], - [131.247635, 31.41297], - [131.238022, 31.419544], - [131.234726, 31.420212], - [131.232681, 31.418039], - [131.229889, 31.418922], - [131.222565, 31.428537], - [131.21344, 31.433149], - [131.214462, 31.435106], - [131.221832, 31.435514], - [131.223114, 31.43856], - [131.220596, 31.444017], - [131.2173, 31.443811], - [131.212967, 31.439905], - [131.212021, 31.440105], - [131.199249, 31.442787], - [131.186295, 31.442833], - [131.179932, 31.439589], - [131.17511, 31.440039], - [131.168274, 31.447908], - [131.166687, 31.448761], - [131.164062, 31.463074], - [131.165298, 31.480108], - [131.170898, 31.489151], - [131.178268, 31.499975], - [131.189148, 31.504173], - [131.199341, 31.508213], - [131.202515, 31.517857], - [131.202133, 31.530308], - [131.199936, 31.540823], - [131.192825, 31.55422], - [131.201981, 31.560736], - [131.206177, 31.570505], - [131.205414, 31.581007], - [131.199829, 31.591459], - [131.190506, 31.599024], - [131.188461, 31.608841], - [131.190247, 31.62112], - [131.180618, 31.624519], - [131.166306, 31.633614], - [131.156204, 31.630527], - [131.145309, 31.626961], - [131.134308, 31.623596], - [131.117737, 31.62892], - [131.108688, 31.635662], - [131.098801, 31.642086], - [131.091949, 31.649883], - [131.081635, 31.656626], - [131.073105, 31.650467], - [131.06517, 31.640558], - [131.056229, 31.631445], - [131.050751, 31.641552], - [131.045654, 31.652319], - [131.036652, 31.658831], - [131.028381, 31.673601], - [131.027893, 31.6849], - [131.028793, 31.695124], - [131.020218, 31.702644], - [131.018799, 31.71698], - [131.018967, 31.731602], - [131.020172, 31.741785], - [131.010117, 31.744896], - [130.999969, 31.742634], - [130.98938, 31.74622], - [130.980103, 31.74996], - [130.983521, 31.759731], - [130.992859, 31.76688], - [130.98938, 31.776556], - [130.978882, 31.778862], - [130.968445, 31.777912], - [130.955124, 31.780222], - [130.944946, 31.781528], - [130.934616, 31.782108], - [130.927856, 31.791021], - [130.91954, 31.797583], - [130.907257, 31.797976], - [130.886597, 31.80201], - [130.881439, 31.811419], - [130.879593, 31.821281], - [130.877884, 31.840197], - [130.888245, 31.843409], - [130.890579, 31.853676], - [130.893326, 31.863506], - [130.899094, 31.887348], - [130.89418, 31.897989], - [130.888672, 31.906513], - [130.883118, 31.918184], - [130.871964, 31.924538], - [130.856628, 31.934914], - [130.845291, 31.937571], - [130.833923, 31.938122], - [130.813828, 31.941324], - [130.801605, 31.949881], - [130.798843, 31.961374], - [130.793137, 31.971287], - [130.785095, 31.97851], - [130.783356, 31.989094], - [130.78093, 31.999966], - [130.780457, 32.011219], - [130.771347, 32.016609], - [130.763153, 32.02467], - [130.749969, 32.031387], - [130.738647, 32.0453], - [130.725357, 32.048801], - [130.714706, 32.048416], - [130.705658, 32.05529], - [130.705963, 32.066135], - [130.708588, 32.076527], - [130.718719, 32.083302], - [130.730179, 32.098598], - [130.740021, 32.102989], - [130.749969, 32.099895], - [130.767441, 32.097206], - [130.778931, 32.097214], - [130.789871, 32.095581], - [130.800156, 32.095341], - [130.811203, 32.095497], - [130.821793, 32.091469], - [130.829193, 32.099239], - [130.839203, 32.103226], - [130.850784, 32.100586], - [130.860519, 32.096397], - [130.868042, 32.104397], - [130.880585, 32.117828], - [130.891068, 32.119724], - [130.90123, 32.125835], - [130.911438, 32.127235], - [130.924622, 32.120174], - [130.935181, 32.112499], - [130.944901, 32.115295], - [130.954437, 32.112045], - [130.96373, 32.116554], - [130.974533, 32.117619], - [130.975845, 32.128101], - [130.981247, 32.136768], - [130.991211, 32.14204], - [131.00087, 32.158226], - [131.010147, 32.168797], - [131.021606, 32.16663], - [131.039627, 32.166626], - [131.046448, 32.159218], - [131.056442, 32.154289], - [131.066696, 32.153152], - [131.078918, 32.154655], - [131.090454, 32.150856], - [131.101456, 32.151619], - [131.111221, 32.157864], - [131.10582, 32.166641], - [131.104523, 32.17728], - [131.106583, 32.187943], - [131.102661, 32.1973], - [131.091324, 32.202278], - [131.082214, 32.210106], - [131.076218, 32.220345], - [131.073105, 32.230793], - [131.065948, 32.238247], - [131.049149, 32.240639], - [131.044067, 32.255135], - [131.053757, 32.261234], - [131.05397, 32.28059], - [131.073105, 32.276817], - [131.08252, 32.281746], - [131.090118, 32.289692], - [131.096832, 32.2985], - [131.103668, 32.30835], - [131.107803, 32.317661], - [131.114319, 32.326206], - [131.104996, 32.338718], - [131.096252, 32.347054], - [131.086243, 32.349583], - [131.075592, 32.355373], - [131.078186, 32.365364], - [131.077713, 32.375534], - [131.071609, 32.384998], - [131.072357, 32.395988], - [131.066101, 32.404716], - [131.053604, 32.404758], - [131.043732, 32.408657], - [131.03447, 32.420139], - [131.028702, 32.428997], - [131.022293, 32.437946], - [131.018677, 32.447895], - [131.017563, 32.466541], - [131.01619, 32.476673], - [131.009415, 32.486626], - [131.010956, 32.499962], - [131.011444, 32.51133], - [131.021652, 32.516438], - [131.026367, 32.525711], - [131.023132, 32.535362], - [131.021835, 32.545872], - [131.031845, 32.550571], - [131.042313, 32.5532], - [131.040878, 32.563877], - [131.044556, 32.574245], - [131.05687, 32.584339], - [131.070053, 32.58094], - [131.080032, 32.578819], - [131.093155, 32.57542], - [131.108353, 32.583309], - [131.116592, 32.590008], - [131.123062, 32.601894], - [131.118439, 32.61208], - [131.121689, 32.624119], - [131.124969, 32.64072], - [131.129379, 32.650475], - [131.137512, 32.65807], - [131.147598, 32.673592], - [131.158264, 32.675438], - [131.165436, 32.668404], - [131.177567, 32.673683], - [131.176987, 32.683689], - [131.179535, 32.693665], - [131.184158, 32.70298], - [131.187943, 32.713581], - [131.198563, 32.723156], - [131.208237, 32.726696], - [131.218613, 32.727936], - [131.226379, 32.734943], - [131.237259, 32.741245], - [131.23938, 32.751869], - [131.24646, 32.760231], - [131.242828, 32.77039], - [131.238739, 32.779865], - [131.248108, 32.786518], - [131.249969, 32.797356], - [131.25766, 32.804131], - [131.260056, 32.814751], - [131.267227, 32.822529], - [131.277298, 32.822533], - [131.287399, 32.827785], - [131.297653, 32.825176], - [131.311356, 32.824715], - [131.330948, 32.82933], - [131.341522, 32.830219], - [131.352356, 32.815102], - [131.355515, 32.804604], - [131.374969, 32.804192], - [131.38562, 32.805687], - [131.396194, 32.807796], - [131.406387, 32.809288], - [131.418396, 32.809769], - [131.433029, 32.814941], - [131.438583, 32.824131], - [131.448349, 32.826298], - [131.460953, 32.826485], - [131.477539, 32.834049], - [131.483582, 32.824844], - [131.49144, 32.816319], - [131.509369, 32.802925], - [131.519669, 32.797432], - [131.51474, 32.787735], - [131.510742, 32.777061], - [131.520142, 32.764423], - [131.532516, 32.760021], - [131.541489, 32.755329], - [131.551743, 32.753689], - [131.565964, 32.751686], - [131.57695, 32.754921], - [131.584808, 32.761921], - [131.592255, 32.770512], - [131.602386, 32.769962], - [131.613586, 32.77042], - [131.624969, 32.771034], - [131.636047, 32.7686], - [131.647888, 32.768055], - [131.661423, 32.765968], - [131.671143, 32.763279], - [131.680801, 32.766102], - [131.693863, 32.768703], - [131.705643, 32.769642], - [131.717697, 32.777195], - [131.720718, 32.787422], - [131.730438, 32.794338], - [131.732559, 32.805927], - [131.737228, 32.816017], - [131.737976, 32.826241], - [131.749969, 32.829964], - [131.762009, 32.833298], - [131.778793, 32.832481], - [131.789642, 32.830368] - ] - ] - ] - } - } - ], - "style": { - "stroke": "#000000", - "fill": "#3498DB", - "stroke-width": 1, - "fill-opacity": 0.8 - } -} diff --git a/backend/server/static/data/mx.json b/backend/server/static/data/mx.json deleted file mode 100644 index b11ba3c..0000000 --- a/backend/server/static/data/mx.json +++ /dev/null @@ -1,18584 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "state_code": "09", - "name": "Ciudad de México", - "id": 1, - "ISOCODE": "MX-CMX" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-99.111241, 19.561498], - [-99.128106, 19.525293], - [-99.128005, 19.524531], - [-99.06463, 19.49907], - [-99.063863, 19.498779], - [-99.047141, 19.443131], - [-99.046459, 19.442365], - [-99.058133, 19.40072], - [-99.058136, 19.400692], - [-98.992194, 19.367749], - [-98.991939, 19.367599], - [-98.958359, 19.323612], - [-98.957903, 19.323228], - [-98.975413, 19.257535], - [-98.976531, 19.253125], - [-98.967968, 19.236436], - [-98.968587, 19.232218], - [-98.94295, 19.224077], - [-98.940303, 19.22324], - [-98.968572, 19.205208], - [-98.969679, 19.204253], - [-98.954916, 19.174063], - [-98.952386, 19.168638], - [-98.965612, 19.16493], - [-98.967366, 19.164439], - [-98.958319, 19.153847], - [-98.954626, 19.149524], - [-98.963037, 19.145643], - [-98.966456, 19.143871], - [-98.963266, 19.092063], - [-98.965721, 19.085861], - [-98.983594, 19.078763], - [-99.028994, 19.085369], - [-99.05665, 19.053462], - [-99.0598, 19.048237], - [-99.105129, 19.05779], - [-99.125433, 19.062065], - [-99.135213, 19.088841], - [-99.135379, 19.089296], - [-99.221084, 19.09564], - [-99.226778, 19.09606], - [-99.25663, 19.116558], - [-99.278695, 19.131702], - [-99.315556, 19.227395], - [-99.315343, 19.229196], - [-99.335772, 19.239327], - [-99.342341, 19.241122], - [-99.33763, 19.26404], - [-99.33916, 19.267697], - [-99.361922, 19.275742], - [-99.364924, 19.277769], - [-99.318049, 19.364821], - [-99.317608, 19.36573], - [-99.222328, 19.426946], - [-99.222274, 19.427023], - [-99.209316, 19.512307], - [-99.209258, 19.512409], - [-99.159252, 19.50351], - [-99.157181, 19.502849], - [-99.176616, 19.529109], - [-99.177046, 19.529328], - [-99.157316, 19.527878], - [-99.156798, 19.528091], - [-99.158047, 19.556493], - [-99.158096, 19.557351], - [-99.126993, 19.588508], - [-99.123706, 19.592757], - [-99.111241, 19.561498] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "12", - "name": "Guerrero", - "id": 2, - "ISOCODE": "MX-GRO" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-99.908501, 16.824954], - [-99.908501, 16.824954] - ] - ], - [ - [ - [-101.658182, 17.678411], - [-101.658182, 17.678411] - ] - ], - [ - [ - [-100.610181, 18.887117], - [-100.567232, 18.849089], - [-100.566394, 18.84859], - [-100.50217, 18.830865], - [-100.493483, 18.823917], - [-100.490831, 18.789967], - [-100.490285, 18.789303], - [-100.460947, 18.796829], - [-100.459392, 18.796893], - [-100.45671, 18.778295], - [-100.456004, 18.777878], - [-100.430762, 18.783387], - [-100.430634, 18.783248], - [-100.419519, 18.760188], - [-100.418085, 18.759514], - [-100.424222, 18.756628], - [-100.43713, 18.750555], - [-100.449733, 18.702963], - [-100.447133, 18.701575], - [-100.476767, 18.688807], - [-100.478337, 18.686865], - [-100.487254, 18.641294], - [-100.487028, 18.640352], - [-100.474816, 18.621937], - [-100.474289, 18.619216], - [-100.447507, 18.622763], - [-100.446509, 18.622465], - [-100.431364, 18.602348], - [-100.429733, 18.599273], - [-100.449251, 18.556996], - [-100.449362, 18.556561], - [-100.429551, 18.510534], - [-100.429097, 18.510048], - [-100.40315, 18.533975], - [-100.395954, 18.54052], - [-100.381583, 18.536588], - [-100.373701, 18.529114], - [-100.363219, 18.499094], - [-100.362003, 18.496847], - [-100.383328, 18.438214], - [-100.385357, 18.426524], - [-100.374115, 18.422986], - [-100.359441, 18.423462], - [-100.304183, 18.36762], - [-100.303753, 18.367017], - [-100.292246, 18.381379], - [-100.291978, 18.381606], - [-100.271283, 18.373291], - [-100.270892, 18.373732], - [-100.259457, 18.427156], - [-100.25952, 18.427433], - [-100.236539, 18.416714], - [-100.2364, 18.416772], - [-100.17437, 18.481385], - [-100.174203, 18.481681], - [-100.10451, 18.524012], - [-100.089951, 18.522161], - [-100.070732, 18.582816], - [-100.082414, 18.58795], - [-100.03357, 18.606173], - [-100.024964, 18.606867], - [-100.001085, 18.584112], - [-99.999301, 18.583578], - [-100.002326, 18.564661], - [-100.001603, 18.56393], - [-99.96208, 18.553066], - [-99.961672, 18.552979], - [-99.947173, 18.587699], - [-99.947162, 18.587941], - [-99.888541, 18.618431], - [-99.888463, 18.618663], - [-99.848417, 18.605442], - [-99.847618, 18.60549], - [-99.848483, 18.620018], - [-99.84836, 18.620259], - [-99.816793, 18.624903], - [-99.816559, 18.625003], - [-99.812636, 18.640798], - [-99.812518, 18.640858], - [-99.793425, 18.630448], - [-99.793005, 18.630658], - [-99.737648, 18.739082], - [-99.737031, 18.739833], - [-99.672575, 18.713121], - [-99.671972, 18.713504], - [-99.708421, 18.76872], - [-99.709158, 18.768839], - [-99.69705, 18.786337], - [-99.696994, 18.786337], - [-99.661686, 18.771487], - [-99.661456, 18.771305], - [-99.631527, 18.720783], - [-99.630908, 18.720552], - [-99.623414, 18.73862], - [-99.622866, 18.739839], - [-99.590754, 18.739465], - [-99.589909, 18.739307], - [-99.570292, 18.706201], - [-99.569782, 18.705511], - [-99.537119, 18.694012], - [-99.536435, 18.693751], - [-99.494673, 18.720346], - [-99.494414, 18.720545], - [-99.454696, 18.612681], - [-99.453886, 18.609902], - [-99.421938, 18.58891], - [-99.419704, 18.590337], - [-99.423529, 18.564751], - [-99.422882, 18.562068], - [-99.372385, 18.507891], - [-99.362952, 18.499027], - [-99.356554, 18.470948], - [-99.357404, 18.467669], - [-99.346988, 18.467676], - [-99.343446, 18.467128], - [-99.350707, 18.478971], - [-99.352675, 18.485981], - [-99.329413, 18.488928], - [-99.328264, 18.488832], - [-99.328377, 18.461461], - [-99.328368, 18.45954], - [-99.246007, 18.456433], - [-99.205422, 18.456589], - [-99.188816, 18.435206], - [-99.177905, 18.424745], - [-99.182242, 18.440429], - [-99.181315, 18.448418], - [-99.140766, 18.475054], - [-99.140623, 18.474973], - [-99.128832, 18.428303], - [-99.128315, 18.427309], - [-99.066296, 18.36778], - [-99.066051, 18.367105], - [-99.075987, 18.342842], - [-99.075964, 18.342379], - [-99.051816, 18.290153], - [-99.051773, 18.289815], - [-99.069118, 18.283586], - [-99.069364, 18.283235], - [-99.053456, 18.265111], - [-99.053228, 18.264156], - [-99.063899, 18.25187], - [-99.06371, 18.251483], - [-99.033185, 18.270965], - [-99.031706, 18.272315], - [-99.017276, 18.266312], - [-99.016903, 18.266391], - [-99.020976, 18.247064], - [-99.01933, 18.245411], - [-98.989056, 18.249355], - [-98.989041, 18.249318], - [-98.998156, 18.199864], - [-99.000066, 18.190205], - [-98.884786, 18.167032], - [-98.881877, 18.166162], - [-98.859162, 18.128782], - [-98.85237, 18.117601], - [-98.870711, 18.0582], - [-98.869812, 18.057217], - [-98.813271, 18.064649], - [-98.813, 18.064875], - [-98.812036, 18.050846], - [-98.811297, 18.050633], - [-98.797305, 18.062428], - [-98.79707, 18.062646], - [-98.735455, 18.045321], - [-98.735098, 18.045095], - [-98.766606, 18.019806], - [-98.767097, 18.019611], - [-98.800757, 18.022012], - [-98.80126, 18.022052], - [-98.815387, 18.002244], - [-98.814938, 18.001697], - [-98.73236, 17.982066], - [-98.731827, 17.982553], - [-98.651082, 17.933197], - [-98.650538, 17.933161], - [-98.585602, 17.974885], - [-98.585523, 17.974941], - [-98.530156, 17.975792], - [-98.529628, 17.975823], - [-98.52668, 17.996012], - [-98.526725, 17.996289], - [-98.434221, 17.983908], - [-98.432759, 17.983903], - [-98.422874, 17.943111], - [-98.422943, 17.942441], - [-98.444887, 17.922507], - [-98.444998, 17.922297], - [-98.424399, 17.892566], - [-98.424226, 17.892238], - [-98.424945, 17.844379], - [-98.424957, 17.839595], - [-98.49394, 17.772967], - [-98.496343, 17.768809], - [-98.485923, 17.68863], - [-98.486173, 17.680992], - [-98.473839, 17.678081], - [-98.470705, 17.678096], - [-98.466136, 17.648264], - [-98.461045, 17.630359], - [-98.412112, 17.600849], - [-98.410152, 17.599769], - [-98.380937, 17.605211], - [-98.376972, 17.605349], - [-98.329627, 17.533263], - [-98.329452, 17.532981], - [-98.320298, 17.506882], - [-98.311884, 17.477492], - [-98.329014, 17.478728], - [-98.335887, 17.457577], - [-98.335851, 17.456305], - [-98.291469, 17.345018], - [-98.287373, 17.329011], - [-98.304811, 17.32752], - [-98.317837, 17.302387], - [-98.323495, 17.275944], - [-98.288396, 17.238609], - [-98.288483, 17.23822], - [-98.24508, 17.250484], - [-98.244342, 17.251467], - [-98.203415, 17.216587], - [-98.203136, 17.216287], - [-98.222975, 17.12342], - [-98.2226, 17.12215], - [-98.167349, 17.114979], - [-98.165519, 17.114921], - [-98.045715, 17.057262], - [-98.007276, 17.040137], - [-98.035159, 17.02112], - [-98.057494, 17.023776], - [-98.10749, 16.961604], - [-98.111261, 16.958868], - [-98.072572, 16.875392], - [-98.072334, 16.87425], - [-98.107967, 16.761675], - [-98.108157, 16.760951], - [-98.134746, 16.758805], - [-98.135178, 16.758393], - [-98.124349, 16.750092], - [-98.124237, 16.749641], - [-98.13806, 16.724618], - [-98.138994, 16.723784], - [-98.199456, 16.697596], - [-98.200271, 16.697235], - [-98.200502, 16.71187], - [-98.201545, 16.712672], - [-98.233078, 16.717424], - [-98.233535, 16.717366], - [-98.241949, 16.697938], - [-98.243442, 16.6967], - [-98.228423, 16.641558], - [-98.228459, 16.639504], - [-98.215799, 16.624994], - [-98.214206, 16.618795], - [-98.196666, 16.623357], - [-98.193776, 16.621463], - [-98.203339, 16.587241], - [-98.203364, 16.58718], - [-98.268311, 16.558882], - [-98.269427, 16.558455], - [-98.316637, 16.569867], - [-98.32997, 16.572748], - [-98.394417, 16.546734], - [-98.395139, 16.546836], - [-98.387172, 16.49963], - [-98.387333, 16.497786], - [-98.3538, 16.491311], - [-98.352532, 16.489431], - [-98.349534, 16.445198], - [-98.349938, 16.444449], - [-98.377802, 16.408266], - [-98.399158, 16.380513], - [-98.46988, 16.381082], - [-98.470855, 16.381155], - [-98.53294, 16.351857], - [-98.533398, 16.351583], - [-98.552652, 16.316031], - [-98.552632, 16.315953], - [-98.772479, 16.554739], - [-98.772965, 16.554942], - [-98.840276, 16.548926], - [-98.841697, 16.548497], - [-98.855656, 16.52864], - [-98.856955, 16.528249], - [-98.904518, 16.534465], - [-98.905858, 16.534427], - [-99.32151, 16.655768], - [-99.332886, 16.658449], - [-99.651696, 16.694594], - [-99.654846, 16.695404], - [-99.745574, 16.73605], - [-99.747158, 16.73691], - [-99.817, 16.788599], - [-99.817369, 16.788798], - [-99.845044, 16.784284], - [-99.845128, 16.784312], - [-99.859086, 16.796119], - [-99.85906, 16.796244], - [-99.836912, 16.805474], - [-99.837031, 16.805706], - [-99.876306, 16.814149], - [-99.876522, 16.814546], - [-99.851539, 16.836326], - [-99.851302, 16.836695], - [-99.861877, 16.85502], - [-99.862089, 16.855132], - [-99.897409, 16.854239], - [-99.897756, 16.854082], - [-99.91101, 16.841929], - [-99.911009, 16.841884], - [-99.894071, 16.832843], - [-99.894061, 16.83279], - [-99.915661, 16.827772], - [-99.91575, 16.827758], - [-99.922963, 16.859753], - [-99.922977, 16.859789], - [-99.988116, 16.908484], - [-99.989876, 16.909265], - [-101.060563, 17.265868], - [-101.06109, 17.266008], - [-101.056254, 17.307023], - [-101.056707, 17.307584], - [-101.173627, 17.389214], - [-101.174201, 17.389481], - [-101.203154, 17.426703], - [-101.203566, 17.42705], - [-101.456637, 17.525769], - [-101.457053, 17.525791], - [-101.44068, 17.555122], - [-101.441313, 17.557614], - [-101.484211, 17.605867], - [-101.490726, 17.61098], - [-101.515875, 17.623964], - [-101.516802, 17.624104], - [-101.551826, 17.611636], - [-101.552662, 17.6116], - [-101.551207, 17.638446], - [-101.551362, 17.638688], - [-101.572257, 17.623458], - [-101.572668, 17.623484], - [-101.605913, 17.660352], - [-101.606393, 17.660652], - [-101.648472, 17.664342], - [-101.649163, 17.664627], - [-101.647452, 17.700761], - [-101.647489, 17.701156], - [-101.66629, 17.732156], - [-101.667199, 17.734015], - [-101.746671, 17.792317], - [-101.747636, 17.793185], - [-101.769972, 17.844848], - [-101.770631, 17.845857], - [-101.81403, 17.890335], - [-101.81807, 17.893033], - [-102.032134, 17.987727], - [-102.033218, 17.987976], - [-102.099241, 17.982809], - [-102.099454, 17.982732], - [-102.137907, 17.94019], - [-102.138451, 17.940474], - [-102.137138, 17.968458], - [-102.137552, 17.969684], - [-102.169921, 17.987431], - [-102.173275, 17.989637], - [-102.183694, 18.022413], - [-102.184182, 18.024572], - [-102.162067, 18.162656], - [-102.161818, 18.164148], - [-102.141123, 18.187906], - [-102.140314, 18.188265], - [-101.976529, 18.207996], - [-101.976484, 18.208015], - [-101.973878, 18.232015], - [-101.973409, 18.232307], - [-101.907626, 18.244018], - [-101.906647, 18.244808], - [-101.897, 18.276986], - [-101.896819, 18.277115], - [-101.863731, 18.261187], - [-101.863249, 18.261655], - [-101.882798, 18.276987], - [-101.882916, 18.277437], - [-101.86384, 18.286338], - [-101.862695, 18.287228], - [-101.870204, 18.307943], - [-101.870198, 18.308323], - [-101.855951, 18.313718], - [-101.855716, 18.314276], - [-101.888936, 18.399064], - [-101.889316, 18.400473], - [-101.861732, 18.444919], - [-101.860442, 18.446185], - [-101.887512, 18.480315], - [-101.887925, 18.481495], - [-101.882444, 18.532526], - [-101.88226, 18.534228], - [-101.849099, 18.569428], - [-101.843844, 18.574396], - [-101.773341, 18.603218], - [-101.771794, 18.603721], - [-101.72484, 18.612478], - [-101.717357, 18.612011], - [-101.703419, 18.588516], - [-101.701176, 18.587893], - [-101.625579, 18.599561], - [-101.6245, 18.599154], - [-101.585913, 18.523553], - [-101.583563, 18.520995], - [-101.50819, 18.486983], - [-101.507444, 18.486797], - [-101.442915, 18.488869], - [-101.441947, 18.488993], - [-101.407408, 18.512419], - [-101.406885, 18.512513], - [-101.366313, 18.499753], - [-101.365604, 18.499882], - [-101.362327, 18.519958], - [-101.361877, 18.520218], - [-101.282462, 18.544686], - [-101.282077, 18.544734], - [-101.089175, 18.506003], - [-101.088661, 18.505908], - [-101.012486, 18.527636], - [-101.012003, 18.527543], - [-101.006445, 18.494516], - [-101.005992, 18.493651], - [-100.966388, 18.474394], - [-100.9651, 18.473209], - [-100.958111, 18.44455], - [-100.957443, 18.44443], - [-100.943581, 18.455043], - [-100.942753, 18.455077], - [-100.922994, 18.444163], - [-100.922275, 18.444567], - [-100.915178, 18.470825], - [-100.914785, 18.471485], - [-100.89526, 18.46276], - [-100.894368, 18.463139], - [-100.875115, 18.491699], - [-100.873975, 18.492009], - [-100.839346, 18.473323], - [-100.838481, 18.473069], - [-100.798845, 18.480565], - [-100.798178, 18.480541], - [-100.778112, 18.440249], - [-100.777643, 18.439543], - [-100.737923, 18.427598], - [-100.737369, 18.427301], - [-100.723146, 18.400742], - [-100.72273, 18.400449], - [-100.707751, 18.418668], - [-100.707038, 18.419], - [-100.691751, 18.414574], - [-100.691051, 18.414153], - [-100.677014, 18.373185], - [-100.676694, 18.372559], - [-100.643211, 18.346139], - [-100.643, 18.346158], - [-100.588151, 18.411517], - [-100.58823, 18.412145], - [-100.630303, 18.437762], - [-100.631492, 18.43847], - [-100.636965, 18.457367], - [-100.637244, 18.457749], - [-100.696837, 18.489877], - [-100.69779, 18.490641], - [-100.71018, 18.48395], - [-100.715041, 18.486397], - [-100.721586, 18.512494], - [-100.722676, 18.513768], - [-100.743273, 18.518449], - [-100.744225, 18.518073], - [-100.762111, 18.555401], - [-100.764896, 18.561211], - [-100.751131, 18.639969], - [-100.751213, 18.641667], - [-100.770533, 18.691807], - [-100.770283, 18.69271], - [-100.78352, 18.687027], - [-100.784264, 18.687003], - [-100.775428, 18.729814], - [-100.772935, 18.732568], - [-100.796074, 18.746365], - [-100.796912, 18.74627], - [-100.798971, 18.783908], - [-100.798969, 18.784536], - [-100.783206, 18.800253], - [-100.782518, 18.801654], - [-100.791647, 18.833463], - [-100.791771, 18.834168], - [-100.76696, 18.864975], - [-100.766674, 18.865415], - [-100.748838, 18.868114], - [-100.748403, 18.867933], - [-100.710925, 18.836644], - [-100.709985, 18.836433], - [-100.696819, 18.794132], - [-100.696069, 18.794125], - [-100.610181, 18.887117] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "15", - "name": "México", - "id": 3, - "ISOCODE": "MX-MEX" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-99.912368, 20.285626], - [-99.859513, 20.264884], - [-99.859541, 20.264628], - [-99.843973, 20.279705], - [-99.84189, 20.281881], - [-99.720096, 20.167362], - [-99.719372, 20.167138], - [-99.677168, 20.163621], - [-99.676949, 20.16247], - [-99.660732, 20.18078], - [-99.659727, 20.180821], - [-99.632012, 20.146794], - [-99.630602, 20.145694], - [-99.601435, 20.166903], - [-99.599561, 20.169673], - [-99.533913, 20.162131], - [-99.533494, 20.162058], - [-99.515357, 20.175733], - [-99.51224, 20.1751], - [-99.502654, 20.155006], - [-99.501831, 20.153287], - [-99.518608, 20.14697], - [-99.518128, 20.145667], - [-99.461026, 20.066377], - [-99.459759, 20.065457], - [-99.436949, 20.001774], - [-99.436853, 20.001299], - [-99.450124, 19.964586], - [-99.450244, 19.964247], - [-99.477563, 19.960865], - [-99.477765, 19.960566], - [-99.475051, 19.944106], - [-99.483981, 19.905177], - [-99.463848, 19.894042], - [-99.463881, 19.892596], - [-99.437419, 19.902756], - [-99.435933, 19.903129], - [-99.437751, 19.893933], - [-99.445208, 19.884321], - [-99.421184, 19.855871], - [-99.420988, 19.855122], - [-99.373751, 19.851564], - [-99.37325, 19.851542], - [-99.383712, 19.772799], - [-99.383032, 19.771416], - [-99.345378, 19.779298], - [-99.34456, 19.779455], - [-99.33876, 19.801961], - [-99.338654, 19.802028], - [-99.313861, 19.796345], - [-99.306601, 19.797694], - [-99.298163, 19.833461], - [-99.296944, 19.835222], - [-99.229322, 19.874033], - [-99.2283, 19.875047], - [-99.206605, 19.926341], - [-99.205603, 19.927501], - [-99.226048, 19.950042], - [-99.227761, 19.951068], - [-99.159321, 20.017028], - [-99.158603, 20.027188], - [-99.089351, 20.034349], - [-99.08545, 20.032488], - [-99.066209, 20.016159], - [-99.063841, 20.014194], - [-99.060619, 19.974135], - [-99.059576, 19.973996], - [-99.035442, 20.014319], - [-99.031343, 20.014854], - [-99.034289, 19.973212], - [-99.034513, 19.971772], - [-99.006838, 19.965017], - [-99.00412, 19.964952], - [-99.020671, 19.986609], - [-99.021555, 19.987005], - [-98.989003, 20.068217], - [-98.988978, 20.068262], - [-98.946894, 20.027625], - [-98.946655, 20.027475], - [-98.94302, 19.980673], - [-98.94273, 19.979073], - [-98.981176, 19.954721], - [-98.995623, 19.956892], - [-98.999615, 19.942795], - [-98.999779, 19.941825], - [-98.956248, 19.928143], - [-98.956112, 19.928184], - [-98.954525, 19.889159], - [-98.953547, 19.88854], - [-99.006119, 19.874024], - [-99.020581, 19.867683], - [-99.008288, 19.828531], - [-99.008201, 19.828402], - [-98.950652, 19.7996], - [-98.950042, 19.799641], - [-98.92819, 19.84188], - [-98.927632, 19.843393], - [-98.906438, 19.84528], - [-98.906016, 19.84513], - [-98.912046, 19.880581], - [-98.911825, 19.881017], - [-98.858627, 19.900971], - [-98.85583, 19.90428], - [-98.843995, 19.882223], - [-98.844034, 19.881988], - [-98.797204, 19.857297], - [-98.795172, 19.856415], - [-98.787505, 19.878921], - [-98.780574, 19.883541], - [-98.713225, 19.854279], - [-98.712821, 19.853802], - [-98.672956, 19.862726], - [-98.672659, 19.862835], - [-98.697429, 19.832448], - [-98.697641, 19.832115], - [-98.676628, 19.813791], - [-98.675875, 19.813184], - [-98.661215, 19.834651], - [-98.660815, 19.835031], - [-98.599155, 19.765244], - [-98.596867, 19.76584], - [-98.607955, 19.725379], - [-98.608102, 19.725075], - [-98.632807, 19.722326], - [-98.632924, 19.722236], - [-98.62402, 19.696893], - [-98.623915, 19.696408], - [-98.639704, 19.671349], - [-98.639897, 19.671083], - [-98.619692, 19.661173], - [-98.619671, 19.661164], - [-98.643554, 19.649186], - [-98.643814, 19.648838], - [-98.668229, 19.658504], - [-98.670055, 19.658676], - [-98.661932, 19.611693], - [-98.661747, 19.610113], - [-98.706693, 19.556444], - [-98.708132, 19.554806], - [-98.638472, 19.434667], - [-98.634822, 19.431242], - [-98.658456, 19.432297], - [-98.660178, 19.432094], - [-98.655642, 19.374264], - [-98.655543, 19.373452], - [-98.638479, 19.359271], - [-98.63808, 19.358911], - [-98.661066, 19.339247], - [-98.663476, 19.324792], - [-98.62789, 19.257942], - [-98.627525, 19.257759], - [-98.642884, 19.220669], - [-98.647022, 19.184828], - [-98.640086, 19.136979], - [-98.640657, 19.125456], - [-98.625604, 19.120179], - [-98.625489, 19.119572], - [-98.639296, 19.077443], - [-98.639298, 19.07744], - [-98.626104, 19.068429], - [-98.623471, 19.066382], - [-98.62936, 19.043213], - [-98.619875, 19.03506], - [-98.713503, 18.943492], - [-98.714037, 18.943032], - [-98.791, 18.936709], - [-98.79208, 18.93534], - [-98.832486, 18.953285], - [-98.835891, 18.950152], - [-98.8597, 18.965749], - [-98.860102, 18.965963], - [-98.871661, 19.021446], - [-98.871026, 19.025393], - [-98.900609, 19.038781], - [-98.90339, 19.038483], - [-98.915549, 19.061107], - [-98.915598, 19.064057], - [-98.972614, 19.069031], - [-98.978995, 19.074456], - [-98.96124, 19.095583], - [-98.959064, 19.104278], - [-98.965612, 19.16493], - [-98.952386, 19.168638], - [-98.968377, 19.210489], - [-98.968528, 19.210571], - [-98.941859, 19.217968], - [-98.940303, 19.22324], - [-98.968367, 19.232148], - [-98.968587, 19.232218], - [-98.965987, 19.249941], - [-98.976531, 19.253125], - [-98.959001, 19.321859], - [-98.957903, 19.323228], - [-98.991894, 19.367554], - [-98.991939, 19.367599], - [-99.057932, 19.400609], - [-99.058136, 19.400692], - [-99.046652, 19.442063], - [-99.046459, 19.442365], - [-99.064205, 19.498004], - [-99.063863, 19.498779], - [-99.127796, 19.524363], - [-99.128005, 19.524531], - [-99.111241, 19.561498], - [-99.108097, 19.564888], - [-99.122149, 19.592476], - [-99.123706, 19.592757], - [-99.156144, 19.560154], - [-99.158096, 19.557351], - [-99.157145, 19.528257], - [-99.156798, 19.528091], - [-99.175424, 19.531977], - [-99.176011, 19.532036], - [-99.157702, 19.504207], - [-99.157181, 19.502849], - [-99.209195, 19.512468], - [-99.209258, 19.512409], - [-99.22232, 19.42713], - [-99.222274, 19.427023], - [-99.310707, 19.370408], - [-99.313088, 19.370449], - [-99.333842, 19.33059], - [-99.356608, 19.306676], - [-99.353581, 19.291934], - [-99.364924, 19.277769], - [-99.340939, 19.267798], - [-99.33916, 19.267697], - [-99.342069, 19.247539], - [-99.342341, 19.241122], - [-99.321297, 19.232665], - [-99.315343, 19.229196], - [-99.282589, 19.138213], - [-99.278695, 19.131702], - [-99.313744, 19.098219], - [-99.318319, 19.087417], - [-99.309983, 18.962415], - [-99.308716, 18.958798], - [-99.364763, 18.898999], - [-99.367037, 18.893999], - [-99.388135, 18.896998], - [-99.406654, 18.895188], - [-99.40801, 18.889829], - [-99.410957, 18.878184], - [-99.428376, 18.877684], - [-99.429355, 18.877569], - [-99.427299, 18.827908], - [-99.425889, 18.826433], - [-99.49319, 18.721636], - [-99.49387, 18.720821], - [-99.53577, 18.693963], - [-99.536435, 18.693751], - [-99.569142, 18.705038], - [-99.569782, 18.705511], - [-99.5885, 18.738722], - [-99.589909, 18.739307], - [-99.622677, 18.739866], - [-99.622866, 18.739839], - [-99.630484, 18.720624], - [-99.630908, 18.720552], - [-99.662102, 18.770238], - [-99.661456, 18.771305], - [-99.69705, 18.786337], - [-99.697216, 18.786336], - [-99.709119, 18.769137], - [-99.709158, 18.768839], - [-99.671844, 18.714156], - [-99.671972, 18.713504], - [-99.736572, 18.739682], - [-99.737031, 18.739833], - [-99.792373, 18.632759], - [-99.793005, 18.630658], - [-99.812306, 18.640885], - [-99.812518, 18.640858], - [-99.816238, 18.625291], - [-99.81629, 18.625165], - [-99.846117, 18.620615], - [-99.84836, 18.620259], - [-99.847056, 18.605851], - [-99.847618, 18.60549], - [-99.887919, 18.618905], - [-99.888463, 18.618663], - [-99.946899, 18.588025], - [-99.947162, 18.587941], - [-99.961638, 18.553233], - [-99.961672, 18.552979], - [-100.000847, 18.563483], - [-100.001603, 18.56393], - [-100.003649, 18.567499], - [-99.999301, 18.583578], - [-100.023034, 18.605312], - [-100.024964, 18.606867], - [-100.061748, 18.586745], - [-100.063596, 18.585504], - [-100.071755, 18.593691], - [-100.082414, 18.58795], - [-100.070062, 18.576147], - [-100.068886, 18.564441], - [-100.089489, 18.523808], - [-100.089951, 18.522161], - [-100.173874, 18.481876], - [-100.174203, 18.481681], - [-100.186923, 18.456986], - [-100.185736, 18.455107], - [-100.216443, 18.446183], - [-100.217076, 18.445924], - [-100.236019, 18.41724], - [-100.2364, 18.416772], - [-100.259385, 18.427502], - [-100.25952, 18.427433], - [-100.270515, 18.374905], - [-100.270892, 18.373732], - [-100.291421, 18.38161], - [-100.291978, 18.381606], - [-100.303376, 18.366943], - [-100.303753, 18.367017], - [-100.354349, 18.415978], - [-100.359441, 18.423462], - [-100.384049, 18.426112], - [-100.385357, 18.426524], - [-100.367491, 18.475383], - [-100.362003, 18.496847], - [-100.373194, 18.524134], - [-100.373701, 18.529114], - [-100.388798, 18.540177], - [-100.395954, 18.54052], - [-100.428448, 18.510932], - [-100.429097, 18.510048], - [-100.448992, 18.555251], - [-100.449362, 18.556561], - [-100.431199, 18.598948], - [-100.429733, 18.599273], - [-100.486663, 18.639999], - [-100.487028, 18.640352], - [-100.478696, 18.686168], - [-100.478337, 18.686865], - [-100.448349, 18.700312], - [-100.447133, 18.701575], - [-100.424222, 18.756628], - [-100.418085, 18.759514], - [-100.430608, 18.783068], - [-100.430634, 18.783248], - [-100.455337, 18.777707], - [-100.456004, 18.777878], - [-100.458892, 18.796679], - [-100.459392, 18.796893], - [-100.48967, 18.789981], - [-100.490285, 18.789303], - [-100.491179, 18.815255], - [-100.493483, 18.823917], - [-100.584824, 18.858443], - [-100.585494, 18.858766], - [-100.612925, 18.892833], - [-100.612897, 18.893455], - [-100.544123, 18.934428], - [-100.543786, 18.934704], - [-100.530471, 19.008665], - [-100.529853, 19.009331], - [-100.411404, 19.063353], - [-100.410827, 19.063595], - [-100.389677, 19.142282], - [-100.389482, 19.142913], - [-100.362973, 19.153003], - [-100.361591, 19.154707], - [-100.377797, 19.170796], - [-100.378191, 19.1711], - [-100.372931, 19.194057], - [-100.373085, 19.194172], - [-100.320058, 19.252653], - [-100.319883, 19.252992], - [-100.320662, 19.306829], - [-100.323265, 19.306803], - [-100.301089, 19.342938], - [-100.300731, 19.342744], - [-100.312389, 19.36154], - [-100.312374, 19.362361], - [-100.293357, 19.393315], - [-100.293094, 19.395129], - [-100.239739, 19.40428], - [-100.237425, 19.403512], - [-100.190041, 19.439449], - [-100.189873, 19.439704], - [-100.206444, 19.47023], - [-100.206438, 19.47037], - [-100.201188, 19.491278], - [-100.20098, 19.492792], - [-100.17865, 19.490688], - [-100.177694, 19.492625], - [-100.199732, 19.499445], - [-100.20194, 19.499528], - [-100.197576, 19.529024], - [-100.196427, 19.531733], - [-100.236889, 19.557481], - [-100.237476, 19.557219], - [-100.249417, 19.6312], - [-100.247519, 19.634513], - [-100.266127, 19.663096], - [-100.27399, 19.672251], - [-100.235063, 19.719446], - [-100.234136, 19.720036], - [-100.229928, 19.702727], - [-100.22949, 19.702206], - [-100.191727, 19.697947], - [-100.192112, 19.697138], - [-100.14987, 19.727721], - [-100.148186, 19.728215], - [-100.132121, 19.851431], - [-100.131487, 19.852014], - [-100.063219, 19.855362], - [-100.063033, 19.855809], - [-100.129541, 19.915465], - [-100.130122, 19.916193], - [-100.131387, 19.978461], - [-100.131394, 19.982002], - [-100.116517, 20.005567], - [-100.116024, 20.00613], - [-100.154877, 20.007279], - [-100.155078, 20.007441], - [-100.15315, 20.053494], - [-100.15332, 20.053674], - [-100.089213, 20.01539], - [-100.088818, 20.015018], - [-100.00049, 20.077231], - [-100.000352, 20.07748], - [-99.979967, 20.074334], - [-99.978468, 20.074045], - [-99.980444, 20.060382], - [-99.980193, 20.059147], - [-99.926396, 20.064331], - [-99.926337, 20.064331], - [-99.942135, 20.119464], - [-99.942206, 20.1201], - [-99.936513, 20.161819], - [-99.936213, 20.162523], - [-99.921758, 20.157991], - [-99.921903, 20.15874], - [-99.964989, 20.201003], - [-99.96523, 20.201158], - [-99.986376, 20.256701], - [-99.986464, 20.257068], - [-99.977031, 20.272375], - [-99.976814, 20.272257], - [-99.951032, 20.216137], - [-99.950933, 20.215904], - [-99.918465, 20.211785], - [-99.918415, 20.211788], - [-99.934084, 20.24977], - [-99.934081, 20.249991], - [-99.912368, 20.285626] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "17", - "name": "Morelos", - "id": 4, - "ISOCODE": "MX-MOR" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-99.062086, 19.048719], - [-99.030195, 19.084557], - [-99.028994, 19.085369], - [-98.962944, 19.062632], - [-98.957779, 19.060294], - [-98.91565, 19.064067], - [-98.915598, 19.064057], - [-98.878956, 19.028108], - [-98.871026, 19.025393], - [-98.859044, 18.965394], - [-98.85948, 18.964778], - [-98.795016, 18.938454], - [-98.79208, 18.93534], - [-98.71483, 18.942649], - [-98.714037, 18.943032], - [-98.64928, 19.007471], - [-98.632947, 19.01555], - [-98.677946, 18.92426], - [-98.678092, 18.923717], - [-98.706218, 18.902978], - [-98.707343, 18.902856], - [-98.713554, 18.867571], - [-98.713472, 18.867244], - [-98.681629, 18.90631], - [-98.681415, 18.907167], - [-98.672915, 18.909441], - [-98.665929, 18.90604], - [-98.664949, 18.887678], - [-98.66486, 18.887665], - [-98.727777, 18.805666], - [-98.727946, 18.805509], - [-98.753421, 18.743039], - [-98.753494, 18.742969], - [-98.716292, 18.739462], - [-98.715907, 18.73919], - [-98.741882, 18.70256], - [-98.741882, 18.702177], - [-98.711545, 18.616682], - [-98.711426, 18.616455], - [-98.706736, 18.445897], - [-98.706699, 18.445112], - [-98.751671, 18.453826], - [-98.752191, 18.453924], - [-98.827461, 18.523748], - [-98.827766, 18.523886], - [-98.850188, 18.478245], - [-98.850409, 18.478035], - [-98.911404, 18.46203], - [-98.912221, 18.462122], - [-98.93474, 18.423234], - [-98.935152, 18.422904], - [-98.984751, 18.421351], - [-98.985372, 18.421154], - [-98.987892, 18.397241], - [-98.987939, 18.397064], - [-99.017816, 18.387956], - [-99.018175, 18.387784], - [-99.064786, 18.332373], - [-99.065478, 18.332376], - [-99.075964, 18.342379], - [-99.075987, 18.342842], - [-99.066051, 18.367105], - [-99.066296, 18.36778], - [-99.127899, 18.426715], - [-99.128315, 18.427309], - [-99.140766, 18.475054], - [-99.141094, 18.475242], - [-99.178947, 18.450201], - [-99.181315, 18.448418], - [-99.17935, 18.428895], - [-99.177905, 18.424745], - [-99.204429, 18.455282], - [-99.205422, 18.456589], - [-99.323664, 18.458162], - [-99.328368, 18.45954], - [-99.328601, 18.483449], - [-99.328264, 18.488832], - [-99.346056, 18.483948], - [-99.352675, 18.485981], - [-99.346471, 18.466488], - [-99.357404, 18.467669], - [-99.364183, 18.497708], - [-99.362952, 18.499027], - [-99.421491, 18.561621], - [-99.422882, 18.562068], - [-99.420223, 18.58623], - [-99.419704, 18.590337], - [-99.453081, 18.610414], - [-99.453886, 18.609902], - [-99.493829, 18.719273], - [-99.494414, 18.720545], - [-99.426701, 18.824687], - [-99.425889, 18.826433], - [-99.429317, 18.877394], - [-99.429355, 18.877569], - [-99.373128, 18.89863], - [-99.367037, 18.893999], - [-99.315201, 18.945018], - [-99.313036, 18.948117], - [-99.31802, 19.085877], - [-99.318319, 19.087417], - [-99.29527, 19.122678], - [-99.295078, 19.122932], - [-99.282315, 19.129876], - [-99.278695, 19.131702], - [-99.25663, 19.116558], - [-99.226778, 19.09606], - [-99.136481, 19.089378], - [-99.135379, 19.089296], - [-99.135213, 19.088841], - [-99.125433, 19.062065], - [-99.062086, 19.048719] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "25", - "name": "Sinaloa", - "id": 5, - "ISOCODE": "MX-SIN" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-106.412929, 23.173039], - [-106.412929, 23.173039] - ] - ], - [ - [ - [-106.40392, 23.180308], - [-106.40392, 23.180308] - ] - ], - [ - [ - [-106.440122, 23.185235], - [-106.440122, 23.185235] - ] - ], - [ - [ - [-106.436176, 23.18684], - [-106.436176, 23.18684] - ] - ], - [ - [ - [-106.465416, 23.223099], - [-106.465416, 23.223099] - ] - ], - [ - [ - [-106.462327, 23.230811], - [-106.462327, 23.230811] - ] - ], - [ - [ - [-106.475181, 23.258431], - [-106.475181, 23.258431] - ] - ], - [ - [ - [-108.366657, 25.158081], - [-108.354283, 25.162772], - [-108.353914, 25.162185], - [-108.371341, 25.149283], - [-108.371825, 25.149372], - [-108.376724, 25.167301], - [-108.376346, 25.16744], - [-108.371783, 25.157135], - [-108.371692, 25.157132], - [-108.363201, 25.168698], - [-108.36303, 25.168616], - [-108.366657, 25.158081] - ] - ], - [ - [ - [-108.381757, 25.165997], - [-108.368323, 25.147258], - [-108.368204, 25.146748], - [-108.381757, 25.165997] - ] - ], - [ - [ - [-108.37493, 25.173484], - [-108.37493, 25.173484] - ] - ], - [ - [ - [-108.475514, 27.039945], - [-108.409831, 27.014227], - [-108.40964, 27.013405], - [-108.371637, 27.023012], - [-108.35011, 27.022554], - [-108.33391, 27.004671], - [-108.333326, 27.004596], - [-108.317476, 27.034111], - [-108.316558, 27.034488], - [-108.287128, 27.013072], - [-108.28601, 27.012471], - [-108.25087, 27.040912], - [-108.250448, 27.041031], - [-108.194607, 27.032254], - [-108.194274, 27.031953], - [-108.181664, 26.994375], - [-108.181524, 26.99411], - [-108.234713, 26.95888], - [-108.235016, 26.95862], - [-108.230285, 26.906131], - [-108.230237, 26.905725], - [-108.212329, 26.886154], - [-108.209717, 26.885438], - [-108.207964, 26.904621], - [-108.20739, 26.906], - [-108.185669, 26.899713], - [-108.183916, 26.899738], - [-108.176705, 26.881441], - [-108.174549, 26.881465], - [-108.144203, 26.908439], - [-108.143102, 26.907884], - [-108.1396, 26.895479], - [-108.144247, 26.867649], - [-108.094107, 26.870464], - [-108.026821, 26.798466], - [-108.037649, 26.769781], - [-108.014264, 26.773153], - [-108.005701, 26.761049], - [-108.019114, 26.731258], - [-108.019231, 26.730667], - [-108.011578, 26.689956], - [-108.011747, 26.689482], - [-108.081285, 26.642316], - [-108.081603, 26.641994], - [-108.032136, 26.615973], - [-108.03181, 26.615924], - [-107.961156, 26.527068], - [-107.961017, 26.526955], - [-107.957241, 26.4941], - [-107.957265, 26.493744], - [-108.000586, 26.44756], - [-108.012797, 26.439048], - [-107.87332, 26.250334], - [-107.856265, 26.226035], - [-107.841321, 26.184284], - [-107.840909, 26.183554], - [-107.789082, 26.168727], - [-107.788924, 26.168614], - [-107.78069, 26.136938], - [-107.755172, 26.134512], - [-107.739201, 26.166722], - [-107.738716, 26.16724], - [-107.71209, 26.174104], - [-107.711661, 26.1743], - [-107.636045, 26.15469], - [-107.63575, 26.154578], - [-107.582027, 26.17064], - [-107.581708, 26.170606], - [-107.526603, 26.128056], - [-107.526267, 26.127748], - [-107.52394, 26.10723], - [-107.52002, 26.104227], - [-107.462017, 26.13739], - [-107.460003, 26.138315], - [-107.416118, 26.14122], - [-107.346528, 26.109523], - [-107.327035, 26.09089], - [-107.30489, 26.076402], - [-107.306692, 26.048784], - [-107.276346, 26.001977], - [-107.29043, 25.943088], - [-107.296128, 25.924793], - [-107.059328, 25.758214], - [-107.057905, 25.757368], - [-107.064237, 25.719451], - [-107.064224, 25.719074], - [-107.044801, 25.699014], - [-107.043127, 25.697699], - [-107.01107, 25.691424], - [-107.01068, 25.691459], - [-106.990299, 25.714924], - [-106.965323, 25.697879], - [-106.966835, 25.669337], - [-106.96694, 25.668331], - [-106.994396, 25.661795], - [-106.97329, 25.62957], - [-107.124368, 25.550557], - [-107.124565, 25.550414], - [-107.173434, 25.556848], - [-107.173879, 25.556553], - [-107.178117, 25.515176], - [-107.177925, 25.514823], - [-107.139822, 25.496621], - [-107.139018, 25.491665], - [-107.15858, 25.442166], - [-107.158691, 25.441992], - [-107.184874, 25.436816], - [-107.210132, 25.417101], - [-107.171551, 25.326358], - [-107.207817, 25.331564], - [-107.157522, 25.262304], - [-107.157203, 25.261765], - [-107.121461, 25.243467], - [-107.121057, 25.243111], - [-107.135385, 25.225343], - [-107.148775, 25.224548], - [-107.125821, 25.187556], - [-107.124919, 25.18664], - [-107.127656, 25.113171], - [-107.129892, 25.053139], - [-107.067936, 25.030347], - [-107.067399, 25.030155], - [-107.024978, 24.927176], - [-107.021053, 24.909908], - [-107.000809, 24.928032], - [-107.000575, 24.928241], - [-106.946278, 24.888952], - [-106.934508, 24.880536], - [-106.928554, 24.866164], - [-106.951418, 24.859024], - [-106.938167, 24.834697], - [-106.930663, 24.820917], - [-106.867816, 24.824164], - [-106.865853, 24.822955], - [-106.707212, 24.666557], - [-106.705948, 24.665262], - [-106.659744, 24.554749], - [-106.645461, 24.528979], - [-106.622607, 24.524897], - [-106.630067, 24.506503], - [-106.563561, 24.473106], - [-106.560016, 24.472711], - [-106.569276, 24.437021], - [-106.601588, 24.414566], - [-106.527991, 24.295124], - [-106.517094, 24.286984], - [-106.508303, 24.290872], - [-106.469655, 24.277857], - [-106.374536, 24.299818], - [-106.367545, 24.301941], - [-106.327848, 24.361063], - [-106.268869, 24.374755], - [-106.169975, 24.33365], - [-106.15254, 24.33877], - [-106.076323, 24.27182], - [-106.075843, 24.271389], - [-106.071296, 24.249573], - [-106.069948, 24.220201], - [-106.067982, 24.22025], - [-106.043884, 24.22085], - [-105.990261, 24.114773], - [-105.989724, 24.11439], - [-106.007602, 24.073108], - [-106.007883, 24.072507], - [-105.998891, 24.044293], - [-105.99872, 24.043383], - [-105.913114, 23.998628], - [-105.912136, 23.997534], - [-105.908404, 23.984816], - [-105.908462, 23.983427], - [-105.935851, 23.957191], - [-105.945415, 23.948026], - [-105.899919, 23.943921], - [-105.857753, 23.899822], - [-105.857588, 23.899296], - [-105.864773, 23.875156], - [-105.867241, 23.875243], - [-105.951522, 23.907679], - [-105.953662, 23.908585], - [-105.957783, 23.871825], - [-105.961266, 23.840742], - [-105.91066, 23.741397], - [-105.906093, 23.739399], - [-105.916556, 23.715356], - [-105.926634, 23.684136], - [-105.907193, 23.58454], - [-105.892655, 23.552645], - [-105.884318, 23.590394], - [-105.853596, 23.597288], - [-105.845186, 23.583695], - [-105.845375, 23.596573], - [-105.845516, 23.603256], - [-105.820167, 23.608927], - [-105.811644, 23.611029], - [-105.769992, 23.557342], - [-105.769302, 23.556465], - [-105.760407, 23.503201], - [-105.760339, 23.502959], - [-105.723591, 23.475235], - [-105.723445, 23.47484], - [-105.738774, 23.445629], - [-105.738865, 23.445206], - [-105.700449, 23.420563], - [-105.700289, 23.420171], - [-105.73074, 23.375464], - [-105.73069, 23.374897], - [-105.694391, 23.340916], - [-105.694005, 23.340569], - [-105.687638, 23.288433], - [-105.687084, 23.28752], - [-105.644931, 23.277616], - [-105.643208, 23.276479], - [-105.629778, 23.203304], - [-105.629713, 23.202295], - [-105.646131, 23.149354], - [-105.646179, 23.148891], - [-105.624352, 23.122785], - [-105.62397, 23.122388], - [-105.555068, 23.098991], - [-105.554309, 23.098887], - [-105.50644, 23.125544], - [-105.504034, 23.127729], - [-105.426344, 23.120018], - [-105.424427, 23.120292], - [-105.392314, 23.085331], - [-105.39222, 23.085157], - [-105.392245, 23.084082], - [-105.412996, 23.074099], - [-105.409105, 23.024104], - [-105.40895, 23.023641], - [-105.41564, 23.023739], - [-105.432595, 23.023969], - [-105.453311, 22.977402], - [-105.489103, 22.96334], - [-105.501264, 22.95856], - [-105.474178, 22.888608], - [-105.47122, 22.883286], - [-105.475333, 22.880624], - [-105.484201, 22.858703], - [-105.474686, 22.851687], - [-105.474589, 22.851416], - [-105.524692, 22.77517], - [-105.524772, 22.77477], - [-105.500459, 22.657423], - [-105.498064, 22.651391], - [-105.463963, 22.659238], - [-105.472996, 22.628369], - [-105.472681, 22.627185], - [-105.450236, 22.625859], - [-105.449572, 22.624597], - [-105.441548, 22.524614], - [-105.441725, 22.524268], - [-105.472074, 22.503972], - [-105.47406, 22.5029], - [-105.502847, 22.5269], - [-105.503179, 22.527682], - [-105.533108, 22.515228], - [-105.533596, 22.515031], - [-105.539935, 22.535593], - [-105.541676, 22.536537], - [-105.596481, 22.536196], - [-105.597345, 22.536305], - [-105.599861, 22.546549], - [-105.600477, 22.558888], - [-105.6413, 22.593536], - [-105.642158, 22.593889], - [-105.640386, 22.578972], - [-105.639213, 22.576985], - [-105.660348, 22.586255], - [-105.660562, 22.586363], - [-105.697839, 22.568523], - [-105.698562, 22.568381], - [-105.674309, 22.496464], - [-105.671106, 22.481562], - [-105.682471, 22.467415], - [-105.682771, 22.467134], - [-105.713093, 22.474533], - [-105.714116, 22.474946], - [-105.859728, 22.697464], - [-105.870863, 22.708447], - [-106.031214, 22.830664], - [-106.034491, 22.829713], - [-106.174073, 22.990683], - [-106.174788, 22.991708], - [-106.340678, 23.13998], - [-106.341359, 23.140551], - [-106.396761, 23.183899], - [-106.397386, 23.184219], - [-106.42963, 23.176229], - [-106.42999, 23.176578], - [-106.421708, 23.215716], - [-106.422055, 23.216758], - [-106.49353, 23.303671], - [-106.493565, 23.303736], - [-106.483098, 23.330493], - [-106.483583, 23.331269], - [-106.6939, 23.5678], - [-106.6952, 23.5694], - [-106.8105, 23.6525], - [-106.810949, 23.65279], - [-106.794874, 23.680537], - [-106.795397, 23.681884], - [-106.880777, 23.794558], - [-106.881765, 23.795285], - [-106.8909, 23.8388], - [-106.8933, 23.8417], - [-107.198943, 24.106332], - [-107.199534, 24.106849], - [-107.647277, 24.40556], - [-107.64945, 24.406996], - [-107.799242, 24.487452], - [-107.800085, 24.487999], - [-107.833521, 24.54428], - [-107.839337, 24.551178], - [-107.989169, 24.643529], - [-107.991017, 24.645144], - [-108.017649, 24.68039], - [-108.018135, 24.681577], - [-108.02077, 24.732389], - [-108.023213, 24.736287], - [-108.069911, 24.785141], - [-108.089968, 24.81473], - [-108.118655, 24.826948], - [-108.121758, 24.829478], - [-108.219224, 25.008242], - [-108.224371, 25.015794], - [-108.327569, 25.101504], - [-108.332459, 25.105688], - [-108.358146, 25.167282], - [-108.357453, 25.169194], - [-108.435077, 25.243602], - [-108.444013, 25.251615], - [-108.629643, 25.336903], - [-108.65211, 25.344173], - [-108.799204, 25.368705], - [-108.800064, 25.36869], - [-108.8949, 25.4151], - [-108.9112, 25.4206], - [-109.020436, 25.437735], - [-109.022391, 25.438357], - [-109.118584, 25.542995], - [-109.119223, 25.544999], - [-109.152332, 25.556989], - [-109.162933, 25.560826], - [-109.219517, 25.62332], - [-109.225464, 25.62609], - [-109.2909, 25.6447], - [-109.2963, 25.6454], - [-109.396599, 25.638563], - [-109.398158, 25.638683], - [-109.391197, 25.65427], - [-109.3905, 25.6696], - [-109.432977, 25.806868], - [-109.433603, 25.809409], - [-109.421614, 25.892395], - [-109.421133, 25.893893], - [-109.446281, 25.946132], - [-109.447693, 25.948988], - [-109.411142, 26.050852], - [-109.408316, 26.058498], - [-109.31738, 26.189733], - [-109.310288, 26.202495], - [-109.289852, 26.274076], - [-109.286799, 26.279421], - [-109.251892, 26.312178], - [-109.258324, 26.319928], - [-109.210421, 26.343029], - [-109.210112, 26.34317], - [-109.165103, 26.306999], - [-109.164943, 26.306847], - [-109.125524, 26.296988], - [-109.125238, 26.297014], - [-109.010896, 26.399235], - [-109.006443, 26.40237], - [-108.936549, 26.390184], - [-108.936522, 26.39018], - [-108.909185, 26.416585], - [-108.910115, 26.421715], - [-108.88378, 26.407538], - [-108.881392, 26.406252], - [-108.86034, 26.43277], - [-108.876108, 26.447576], - [-108.837762, 26.472523], - [-108.837795, 26.476857], - [-108.888171, 26.480111], - [-108.91467, 26.47954], - [-108.891363, 26.489854], - [-108.873152, 26.551071], - [-108.795512, 26.565627], - [-108.787724, 26.565256], - [-108.741839, 26.591183], - [-108.734293, 26.593568], - [-108.682347, 26.587017], - [-108.678831, 26.587015], - [-108.679282, 26.633999], - [-108.678988, 26.642889], - [-108.638797, 26.67426], - [-108.630366, 26.676573], - [-108.629764, 26.712458], - [-108.628385, 26.718387], - [-108.602773, 26.727189], - [-108.601024, 26.727223], - [-108.580078, 26.786804], - [-108.580849, 26.789577], - [-108.555344, 26.780041], - [-108.554034, 26.779857], - [-108.538381, 26.796555], - [-108.536912, 26.798429], - [-108.557279, 26.823117], - [-108.557043, 26.823753], - [-108.467552, 26.969694], - [-108.466978, 26.970702], - [-108.428781, 26.975647], - [-108.424271, 26.97623], - [-108.499542, 26.986279], - [-108.502486, 26.987357], - [-108.504517, 27.006965], - [-108.504439, 27.007184], - [-108.475514, 27.039945] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "02", - "name": "Baja California", - "id": 6, - "ISOCODE": "MX-BCN" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-112.66384, 28.41883], - [-112.66384, 28.41883] - ] - ], - [ - [ - [-115.536077, 28.296137], - [-115.536077, 28.296137] - ] - ], - [ - [ - [-115.554178, 28.311379], - [-115.566576, 28.314907], - [-115.567095, 28.315717], - [-115.554178, 28.311379] - ] - ], - [ - [ - [-115.585287, 28.315656], - [-115.568475, 28.309526], - [-115.568465, 28.30826], - [-115.5888, 28.295829], - [-115.590746, 28.296359], - [-115.59794, 28.313311], - [-115.598771, 28.314933], - [-115.585287, 28.315656] - ] - ], - [ - [ - [-115.21372, 28.375303], - [-115.175611, 28.306613], - [-115.175497, 28.30645], - [-115.176081, 28.213987], - [-115.176047, 28.213443], - [-115.156138, 28.18023], - [-115.156004, 28.179948], - [-115.155871, 28.14237], - [-115.156392, 28.140815], - [-115.18563, 28.106508], - [-115.185824, 28.105677], - [-115.180571, 28.040962], - [-115.180573, 28.040763], - [-115.250382, 28.03616], - [-115.250599, 28.036142], - [-115.263187, 28.071253], - [-115.265226, 28.074704], - [-115.292591, 28.09488], - [-115.29468, 28.095382], - [-115.358389, 28.081429], - [-115.358391, 28.081514], - [-115.351557, 28.117819], - [-115.351422, 28.118077], - [-115.319331, 28.134528], - [-115.318841, 28.134877], - [-115.242059, 28.221777], - [-115.241742, 28.222297], - [-115.265456, 28.294374], - [-115.265481, 28.294396], - [-115.246117, 28.353671], - [-115.246094, 28.353961], - [-115.21372, 28.375303] - ] - ], - [ - [ - [-112.892331, 28.678261], - [-112.83917, 28.660724], - [-112.838665, 28.661163], - [-112.755678, 28.59251], - [-112.755555, 28.591643], - [-112.785722, 28.580733], - [-112.785843, 28.580799], - [-112.798425, 28.610053], - [-112.798907, 28.610578], - [-112.867762, 28.64392], - [-112.867846, 28.643969], - [-112.892331, 28.678261] - ] - ], - [ - [ - [-112.903956, 28.697951], - [-112.903956, 28.697951] - ] - ], - [ - [ - [-112.931136, 28.709298], - [-112.897439, 28.697205], - [-112.897361, 28.697177], - [-112.894535, 28.681751], - [-112.894527, 28.681698], - [-112.931041, 28.696322], - [-112.93112, 28.696371], - [-112.931136, 28.709298] - ] - ], - [ - [ - [-112.962185, 28.724462], - [-112.962185, 28.724462] - ] - ], - [ - [ - [-112.965836, 28.734012], - [-112.965836, 28.734012] - ] - ], - [ - [ - [-112.960496, 28.734391], - [-112.946038, 28.71814], - [-112.945946, 28.716955], - [-112.960496, 28.734391] - ] - ], - [ - [ - [-112.983308, 28.82428], - [-112.983308, 28.82428] - ] - ], - [ - [ - [-112.999012, 28.837205], - [-112.999012, 28.837205] - ] - ], - [ - [ - [-113.358115, 28.826025], - [-113.358115, 28.826025] - ] - ], - [ - [ - [-113.029062, 28.888268], - [-113.029062, 28.888268] - ] - ], - [ - [ - [-113.036016, 28.900252], - [-113.03994, 28.884101], - [-113.040027, 28.884027], - [-113.047488, 28.893861], - [-113.047517, 28.893992], - [-113.036016, 28.900252] - ] - ], - [ - [ - [-113.35796, 28.883062], - [-113.35796, 28.883062] - ] - ], - [ - [ - [-113.042441, 28.911776], - [-113.042441, 28.911776] - ] - ], - [ - [ - [-113.38374, 28.922584], - [-113.38374, 28.922584] - ] - ], - [ - [ - [-113.474055, 28.956574], - [-113.474055, 28.956574] - ] - ], - [ - [ - [-113.48099, 28.955265], - [-113.48099, 28.955265] - ] - ], - [ - [ - [-113.475475, 28.967845], - [-113.475475, 28.967845] - ] - ], - [ - [ - [-113.518985, 28.997967], - [-113.518985, 28.997967] - ] - ], - [ - [ - [-113.520201, 28.999473], - [-113.520201, 28.999473] - ] - ], - [ - [ - [-113.512536, 29.00272], - [-113.50199, 28.994058], - [-113.501982, 28.993976], - [-113.511574, 28.988747], - [-113.511849, 28.988967], - [-113.512536, 29.00272] - ] - ], - [ - [ - [-113.522281, 29.006636], - [-113.522281, 29.006636] - ] - ], - [ - [ - [-113.511073, 29.011773], - [-113.511073, 29.011773] - ] - ], - [ - [ - [-113.524372, 29.01333], - [-113.524372, 29.01333] - ] - ], - [ - [ - [-113.506076, 29.013659], - [-113.506076, 29.013659] - ] - ], - [ - [ - [-113.514321, 29.016306], - [-113.514321, 29.016306] - ] - ], - [ - [ - [-113.469408, 29.02418], - [-113.469408, 29.02418] - ] - ], - [ - [ - [-113.498912, 29.027834], - [-113.498912, 29.027834] - ] - ], - [ - [ - [-113.086108, 29.068535], - [-113.097773, 29.0632], - [-113.097784, 29.063503], - [-113.086108, 29.068535] - ] - ], - [ - [ - [-113.512508, 29.062078], - [-113.512508, 29.062078] - ] - ], - [ - [ - [-113.51927, 29.068983], - [-113.51927, 29.068983] - ] - ], - [ - [ - [-113.524635, 29.095516], - [-113.502567, 29.090744], - [-113.502337, 29.090416], - [-113.502759, 29.050031], - [-113.502725, 29.049829], - [-113.489239, 29.037939], - [-113.489153, 29.037723], - [-113.513592, 29.051942], - [-113.513789, 29.052103], - [-113.524635, 29.095516] - ] - ], - [ - [ - [-113.528204, 29.09891], - [-113.528204, 29.09891] - ] - ], - [ - [ - [-113.606405, 29.1685], - [-113.606405, 29.1685] - ] - ], - [ - [ - [-113.513913, 29.551478], - [-113.385108, 29.459538], - [-113.384824, 29.459113], - [-113.344853, 29.387376], - [-113.344785, 29.386949], - [-113.370796, 29.349863], - [-113.370918, 29.349433], - [-113.366179, 29.311015], - [-113.364051, 29.308594], - [-113.291468, 29.280862], - [-113.29135, 29.28083], - [-113.161198, 29.278684], - [-113.160466, 29.278526], - [-113.173333, 29.248474], - [-113.173544, 29.248096], - [-113.17476, 29.130964], - [-113.174559, 29.127782], - [-113.148875, 29.06671], - [-113.148367, 29.066188], - [-113.099683, 29.05668], - [-113.099522, 29.056691], - [-113.121515, 28.987187], - [-113.121819, 28.987331], - [-113.243637, 29.067173], - [-113.243948, 29.067133], - [-113.300175, 29.144617], - [-113.300689, 29.145103], - [-113.404049, 29.209174], - [-113.404245, 29.209304], - [-113.440385, 29.275596], - [-113.440904, 29.276063], - [-113.494814, 29.283831], - [-113.495418, 29.283581], - [-113.505664, 29.322103], - [-113.506059, 29.322835], - [-113.587237, 29.40858], - [-113.588216, 29.408925], - [-113.594433, 29.438451], - [-113.594512, 29.439306], - [-113.563963, 29.50409], - [-113.563713, 29.504739], - [-113.572362, 29.537679], - [-113.572122, 29.538357], - [-113.55922, 29.545862], - [-113.558689, 29.546007], - [-113.549546, 29.533705], - [-113.545502, 29.53399], - [-113.513913, 29.551478] - ] - ], - [ - [ - [-113.556637, 29.552022], - [-113.556637, 29.552022] - ] - ], - [ - [ - [-113.538132, 29.565682], - [-113.538132, 29.565682] - ] - ], - [ - [ - [-113.565362, 29.564006], - [-113.575398, 29.545933], - [-113.575467, 29.545913], - [-113.579415, 29.560453], - [-113.579458, 29.56075], - [-113.565362, 29.564006] - ] - ], - [ - [ - [-118.326154, 29.173867], - [-118.336665, 29.148628], - [-118.336577, 29.145558], - [-118.323378, 29.11129], - [-118.32185, 29.108485], - [-118.264066, 29.071865], - [-118.261003, 29.06815], - [-118.244424, 28.963416], - [-118.243822, 28.960884], - [-118.265575, 28.887998], - [-118.267022, 28.886017], - [-118.313576, 28.873197], - [-118.315424, 28.872933], - [-118.305368, 28.893127], - [-118.304642, 28.89466], - [-118.321211, 28.926879], - [-118.323044, 28.929777], - [-118.319085, 28.962095], - [-118.319898, 28.963814], - [-118.341626, 28.972656], - [-118.343056, 28.974107], - [-118.347103, 29.030112], - [-118.347503, 29.032371], - [-118.39698, 29.066498], - [-118.399335, 29.068583], - [-118.40765, 29.142829], - [-118.406612, 29.144902], - [-118.32545, 29.191559], - [-118.324621, 29.192729], - [-118.326154, 29.173867] - ] - ], - [ - [ - [-115.791351, 29.797162], - [-115.791351, 29.797162] - ] - ], - [ - [ - [-114.417463, 29.988013], - [-114.391696, 29.961893], - [-114.391686, 29.961845], - [-114.414835, 29.949237], - [-114.415319, 29.948658], - [-114.417463, 29.988013] - ] - ], - [ - [ - [-114.389372, 29.994884], - [-114.389372, 29.994884] - ] - ], - [ - [ - [-114.473459, 30.022764], - [-114.473459, 30.022764] - ] - ], - [ - [ - [-114.487038, 30.053484], - [-114.487038, 30.053484] - ] - ], - [ - [ - [-114.550385, 30.09397], - [-114.534732, 30.084751], - [-114.534691, 30.084349], - [-114.550385, 30.09397] - ] - ], - [ - [ - [-114.625771, 30.131029], - [-114.625771, 30.131029] - ] - ], - [ - [ - [-116.112946, 30.49699], - [-116.100511, 30.484451], - [-116.100382, 30.484466], - [-116.121803, 30.48396], - [-116.122287, 30.484265], - [-116.112946, 30.49699] - ] - ], - [ - [ - [-114.74477, 31.532094], - [-114.773794, 31.536225], - [-114.774959, 31.538764], - [-114.771705, 31.558704], - [-114.769588, 31.558368], - [-114.74477, 31.532094] - ] - ], - [ - [ - [-114.746523, 31.80186], - [-114.734435, 31.769755], - [-114.730467, 31.764869], - [-114.65184, 31.690866], - [-114.649776, 31.682053], - [-114.667035, 31.676475], - [-114.668174, 31.676289], - [-114.710794, 31.710257], - [-114.711638, 31.710323], - [-114.689868, 31.684273], - [-114.6897, 31.681724], - [-114.716406, 31.680933], - [-114.717504, 31.681179], - [-114.790566, 31.729384], - [-114.7911, 31.729997], - [-114.799929, 31.812113], - [-114.799936, 31.812645], - [-114.770844, 31.816962], - [-114.769695, 31.81683], - [-114.746523, 31.80186] - ] - ], - [ - [ - [-116.797523, 31.807142], - [-116.786026, 31.792041], - [-116.786008, 31.792007], - [-116.797523, 31.807142] - ] - ], - [ - [ - [-116.805657, 31.813318], - [-116.805657, 31.813318] - ] - ], - [ - [ - [-117.245654, 32.413902], - [-117.245654, 32.413902] - ] - ], - [ - [ - [-117.259778, 32.418884], - [-117.259778, 32.418884] - ] - ], - [ - [ - [-117.298944, 32.445528], - [-117.298944, 32.445528] - ] - ], - [ - [ - [-117.09522, 32.536961], - [-114.723405, 32.718458], - [-114.719718, 32.718654], - [-114.763415, 32.645099], - [-114.764644, 32.643168], - [-114.806955, 32.622542], - [-114.807917, 32.620354], - [-114.812161, 32.563514], - [-114.812252, 32.562233], - [-114.792064, 32.560005], - [-114.791813, 32.557846], - [-114.81573, 32.483323], - [-114.81593, 32.482977], - [-114.932537, 32.483524], - [-114.934997, 32.481875], - [-114.931582, 32.440988], - [-114.93194, 32.439701], - [-114.968424, 32.390782], - [-114.968453, 32.390653], - [-114.966383, 32.339233], - [-114.966592, 32.338794], - [-115.052496, 32.246614], - [-115.053022, 32.245174], - [-114.978806, 32.180752], - [-114.975318, 32.177995], - [-114.989727, 32.146398], - [-114.989736, 32.146378], - [-114.958245, 32.042724], - [-114.957005, 32.038636], - [-114.966579, 31.962477], - [-114.965485, 31.918424], - [-114.910759, 31.867761], - [-114.909687, 31.86726], - [-114.844163, 31.864117], - [-114.843186, 31.863554], - [-114.807832, 31.81687], - [-114.806878, 31.81668], - [-114.817429, 31.73363], - [-114.816954, 31.728743], - [-114.784689, 31.64352], - [-114.783684, 31.635527], - [-114.790403, 31.616705], - [-114.795584, 31.61202], - [-114.811678, 31.611795], - [-114.816457, 31.609636], - [-114.857367, 31.503032], - [-114.857954, 31.501138], - [-114.891565, 31.266864], - [-114.892041, 31.266651], - [-114.881393, 31.242302], - [-114.881286, 31.236443], - [-114.890662, 31.152729], - [-114.890574, 31.15029], - [-114.867821, 31.09068], - [-114.867495, 31.090229], - [-114.815331, 31.052347], - [-114.814293, 31.052105], - [-114.83336, 31.019332], - [-114.833418, 31.019176], - [-114.829017, 30.993324], - [-114.828991, 30.993282], - [-114.720667, 30.937032], - [-114.720336, 30.937036], - [-114.710645, 30.907685], - [-114.709949, 30.905705], - [-114.709795, 30.846432], - [-114.709889, 30.84487], - [-114.694058, 30.819332], - [-114.693594, 30.81928], - [-114.69893, 30.63586], - [-114.698807, 30.63374], - [-114.631719, 30.491013], - [-114.630727, 30.48871], - [-114.635177, 30.351857], - [-114.63485, 30.350197], - [-114.655821, 30.286684], - [-114.656292, 30.285186], - [-114.640156, 30.263193], - [-114.639771, 30.260454], - [-114.668059, 30.193978], - [-114.667723, 30.191419], - [-114.633772, 30.127155], - [-114.633241, 30.126412], - [-114.606149, 30.10963], - [-114.603908, 30.107988], - [-114.536927, 29.970742], - [-114.536816, 29.970428], - [-114.487894, 29.949034], - [-114.487471, 29.948769], - [-114.471305, 29.913568], - [-114.470955, 29.913271], - [-114.413762, 29.891208], - [-114.412984, 29.890687], - [-114.413331, 29.848817], - [-114.413578, 29.848353], - [-114.369499, 29.808381], - [-114.369196, 29.80775], - [-114.393825, 29.809491], - [-114.394882, 29.808001], - [-114.387962, 29.778837], - [-114.385991, 29.77708], - [-114.332733, 29.74311], - [-114.33049, 29.74252], - [-114.296057, 29.742014], - [-114.294289, 29.742789], - [-114.280583, 29.771839], - [-114.28024, 29.772312], - [-114.210093, 29.744874], - [-114.208112, 29.743853], - [-114.181775, 29.708623], - [-114.181374, 29.708081], - [-114.064099, 29.628987], - [-114.063427, 29.62859], - [-114.046733, 29.596771], - [-114.045835, 29.596063], - [-113.994972, 29.577976], - [-113.994254, 29.577595], - [-113.897289, 29.485295], - [-113.896919, 29.484835], - [-113.836517, 29.456215], - [-113.836106, 29.455873], - [-113.825368, 29.429879], - [-113.825008, 29.429454], - [-113.775082, 29.411089], - [-113.773817, 29.41053], - [-113.638015, 29.283895], - [-113.637513, 29.283398], - [-113.625115, 29.254166], - [-113.625149, 29.252862], - [-113.65635, 29.209781], - [-113.65614, 29.208536], - [-113.572444, 29.117121], - [-113.571377, 29.116858], - [-113.539123, 29.058793], - [-113.538495, 29.057955], - [-113.534435, 29.032858], - [-113.534454, 29.032279], - [-113.548136, 29.040483], - [-113.548884, 29.040157], - [-113.563085, 29.009657], - [-113.563034, 29.007772], - [-113.542757, 28.957812], - [-113.541563, 28.955826], - [-113.557315, 28.947099], - [-113.557293, 28.946928], - [-113.525944, 28.894196], - [-113.526202, 28.893273], - [-113.482833, 28.892841], - [-113.479031, 28.89454], - [-113.480098, 28.947227], - [-113.480087, 28.947752], - [-113.444961, 28.946651], - [-113.444342, 28.946757], - [-113.438864, 28.958694], - [-113.438371, 28.959681], - [-113.416938, 28.924], - [-113.415236, 28.923406], - [-113.387107, 28.939959], - [-113.385758, 28.939628], - [-113.394352, 28.917499], - [-113.394037, 28.91523], - [-113.368513, 28.904839], - [-113.367737, 28.903525], - [-113.38073, 28.896083], - [-113.380695, 28.894522], - [-113.358331, 28.874343], - [-113.357373, 28.873979], - [-113.370316, 28.840219], - [-113.370763, 28.838501], - [-113.354497, 28.804826], - [-113.354709, 28.80439], - [-113.313602, 28.80289], - [-113.312569, 28.803141], - [-113.251929, 28.840117], - [-113.251615, 28.840532], - [-113.196843, 28.792631], - [-113.196436, 28.792286], - [-113.189313, 28.730326], - [-113.189232, 28.729987], - [-113.159353, 28.661314], - [-113.158796, 28.660074], - [-113.129745, 28.635317], - [-113.128761, 28.632638], - [-113.104747, 28.506618], - [-113.104339, 28.506078], - [-113.016256, 28.457762], - [-113.01563, 28.457381], - [-112.904022, 28.474619], - [-112.903534, 28.475243], - [-112.874921, 28.450377], - [-112.874601, 28.45039], - [-112.881084, 28.435079], - [-112.880371, 28.434429], - [-112.847297, 28.441088], - [-112.846715, 28.4409], - [-112.873545, 28.282916], - [-112.8735, 28.282227], - [-112.786966, 28.197068], - [-112.786509, 28.196137], - [-112.811508, 28.138766], - [-112.812032, 28.13583], - [-112.789055, 28.068892], - [-112.788679, 28.068255], - [-112.80489, 28.030582], - [-112.8049, 28.028512], - [-112.765487, 28.000448], - [-112.764929, 28], - [-114.203611, 28], - [-114.204879, 28], - [-114.132259, 28.085546], - [-114.130711, 28.085828], - [-114.063374, 28.206339], - [-114.062254, 28.207618], - [-114.079107, 28.246278], - [-114.078839, 28.246624], - [-114.102297, 28.239737], - [-114.104408, 28.238866], - [-114.124105, 28.255746], - [-114.124955, 28.256836], - [-114.050341, 28.429155], - [-114.047867, 28.438539], - [-114.068329, 28.510151], - [-114.069341, 28.515094], - [-114.106707, 28.553518], - [-114.110292, 28.55573], - [-114.160683, 28.569287], - [-114.161711, 28.570361], - [-114.154266, 28.603551], - [-114.154773, 28.615107], - [-114.169873, 28.645736], - [-114.17415, 28.651054], - [-114.268061, 28.660617], - [-114.270188, 28.660104], - [-114.280928, 28.70235], - [-114.283973, 28.705989], - [-114.346192, 28.730496], - [-114.347052, 28.730807], - [-114.348507, 28.771408], - [-114.34862, 28.772312], - [-114.369459, 28.809018], - [-114.372205, 28.811891], - [-114.395819, 28.815657], - [-114.397255, 28.817787], - [-114.412123, 28.87416], - [-114.414129, 28.876475], - [-114.436522, 28.876059], - [-114.437322, 28.875889], - [-114.446136, 28.903089], - [-114.449017, 28.906902], - [-114.486514, 28.931616], - [-114.488315, 28.932966], - [-114.522027, 28.933239], - [-114.52609, 28.932241], - [-114.530872, 28.91845], - [-114.531664, 28.918842], - [-114.559522, 28.968338], - [-114.56219, 28.971273], - [-114.59138, 28.969759], - [-114.592181, 28.970419], - [-114.622448, 29.083028], - [-114.626956, 29.089901], - [-114.671026, 29.111964], - [-114.674397, 29.112925], - [-114.71565, 29.11018], - [-114.715948, 29.110335], - [-114.741272, 29.178573], - [-114.743447, 29.181842], - [-114.811776, 29.213289], - [-114.813031, 29.214243], - [-114.964882, 29.373361], - [-114.967011, 29.375138], - [-115.071178, 29.415902], - [-115.072539, 29.416614], - [-115.187783, 29.427556], - [-115.188576, 29.427837], - [-115.248273, 29.513058], - [-115.25028, 29.514408], - [-115.340543, 29.555881], - [-115.341452, 29.556207], - [-115.378002, 29.558123], - [-115.378538, 29.558362], - [-115.456366, 29.624561], - [-115.457126, 29.624908], - [-115.504667, 29.616738], - [-115.505387, 29.616957], - [-115.5826, 29.690506], - [-115.584575, 29.692181], - [-115.618992, 29.695116], - [-115.619678, 29.695334], - [-115.698869, 29.754592], - [-115.699878, 29.755203], - [-115.685094, 29.818922], - [-115.684551, 29.826466], - [-115.701635, 29.899704], - [-115.701972, 29.900309], - [-115.741727, 29.947428], - [-115.742851, 29.947961], - [-115.787341, 29.959153], - [-115.788091, 29.959442], - [-115.812152, 29.948942], - [-115.812699, 29.949458], - [-115.781344, 30.090401], - [-115.781275, 30.090945], - [-115.801745, 30.132769], - [-115.801843, 30.132969], - [-115.795386, 30.240051], - [-115.795392, 30.241406], - [-115.811472, 30.299727], - [-115.811812, 30.300513], - [-115.847448, 30.355488], - [-115.849555, 30.357736], - [-115.914498, 30.399901], - [-115.916864, 30.400748], - [-115.974117, 30.396185], - [-115.977457, 30.394729], - [-115.9904, 30.3864], - [-115.991638, 30.382043], - [-115.983061, 30.360439], - [-115.982478, 30.359676], - [-116.000013, 30.359698], - [-116.000688, 30.359943], - [-116.011074, 30.416219], - [-116.01311, 30.421732], - [-116.046655, 30.470162], - [-116.047235, 30.470497], - [-116.026703, 30.641368], - [-116.026643, 30.647564], - [-116.056098, 30.792266], - [-116.057479, 30.795717], - [-116.200423, 30.882277], - [-116.200644, 30.882374], - [-116.267501, 30.96507], - [-116.269913, 30.967069], - [-116.329963, 30.960133], - [-116.330272, 30.960428], - [-116.33786, 30.984515], - [-116.338394, 30.985473], - [-116.309514, 31.146488], - [-116.30906, 31.15073], - [-116.363181, 31.246669], - [-116.36412, 31.248559], - [-116.455856, 31.330051], - [-116.456736, 31.330953], - [-116.521492, 31.434046], - [-116.521846, 31.43469], - [-116.570234, 31.464734], - [-116.570927, 31.465117], - [-116.600682, 31.462599], - [-116.60194, 31.463024], - [-116.608573, 31.496991], - [-116.608714, 31.497351], - [-116.647036, 31.515421], - [-116.648459, 31.516064], - [-116.667507, 31.55116], - [-116.6689, 31.552527], - [-116.690841, 31.554007], - [-116.691083, 31.554212], - [-116.692179, 31.571213], - [-116.69208, 31.571368], - [-116.652467, 31.580611], - [-116.651706, 31.581973], - [-116.667564, 31.617783], - [-116.667619, 31.617855], - [-116.650377, 31.663368], - [-116.649931, 31.664539], - [-116.740559, 31.741863], - [-116.744561, 31.743374], - [-116.729552, 31.749082], - [-116.727887, 31.749159], - [-116.66012, 31.719742], - [-116.65585, 31.722293], - [-116.6192, 31.7732], - [-116.615473, 31.775585], - [-116.612509, 31.840311], - [-116.612535, 31.840404], - [-116.620902, 31.858766], - [-116.62107, 31.858894], - [-116.633137, 31.855519], - [-116.633476, 31.855206], - [-116.625395, 31.843978], - [-116.62554, 31.843882], - [-116.668693, 31.861586], - [-116.668743, 31.861603], - [-116.699066, 31.894743], - [-116.69943, 31.894977], - [-116.745791, 31.902023], - [-116.74654, 31.902482], - [-116.769104, 31.971273], - [-116.769967, 31.971937], - [-116.851136, 31.986652], - [-116.851721, 31.98628], - [-116.879219, 32.017382], - [-116.880252, 32.018668], - [-116.886309, 32.121925], - [-116.886593, 32.12335], - [-116.922592, 32.226343], - [-116.922679, 32.226531], - [-117.036098, 32.282009], - [-117.037849, 32.283662], - [-117.118296, 32.464087], - [-117.118315, 32.46412], - [-117.123655, 32.533757], - [-117.123666, 32.533901], - [-117.09522, 32.536961] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "26", - "name": "Sonora", - "id": 7, - "ISOCODE": "MX-SON" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-110.950851, 27.867454], - [-110.950851, 27.867454] - ] - ], - [ - [ - [-110.85928, 27.878852], - [-110.85928, 27.878852] - ] - ], - [ - [ - [-110.953004, 27.875487], - [-110.953004, 27.875487] - ] - ], - [ - [ - [-110.955083, 27.884617], - [-110.955083, 27.884617] - ] - ], - [ - [ - [-110.833073, 27.90088], - [-110.848635, 27.890898], - [-110.848654, 27.891104], - [-110.833073, 27.90088] - ] - ], - [ - [ - [-110.90045, 27.898816], - [-110.90045, 27.898816] - ] - ], - [ - [ - [-110.898523, 27.900294], - [-110.898523, 27.900294] - ] - ], - [ - [ - [-110.879982, 27.91099], - [-110.879982, 27.91099] - ] - ], - [ - [ - [-110.871383, 27.912389], - [-110.871383, 27.912389] - ] - ], - [ - [ - [-110.968529, 27.908534], - [-110.968529, 27.908534] - ] - ], - [ - [ - [-110.99212, 27.926174], - [-110.99212, 27.926174] - ] - ], - [ - [ - [-111.058743, 27.929591], - [-111.058743, 27.929591] - ] - ], - [ - [ - [-110.991993, 27.935192], - [-110.991993, 27.935192] - ] - ], - [ - [ - [-111.050898, 27.935052], - [-111.050898, 27.935052] - ] - ], - [ - [ - [-111.05139, 27.93895], - [-111.05139, 27.93895] - ] - ], - [ - [ - [-111.028747, 27.952669], - [-111.028747, 27.952669] - ] - ], - [ - [ - [-111.120875, 27.953353], - [-111.120875, 27.953353] - ] - ], - [ - [ - [-111.378628, 27.974084], - [-111.366677, 27.955679], - [-111.366445, 27.955067], - [-111.380111, 27.959524], - [-111.380725, 27.959658], - [-111.39148, 27.981548], - [-111.391633, 27.981925], - [-111.378628, 27.974084] - ] - ], - [ - [ - [-112.291913, 28.728343], - [-112.291913, 28.728343] - ] - ], - [ - [ - [-112.554205, 28.730948], - [-112.542937, 28.711849], - [-112.542908, 28.711707], - [-112.554759, 28.672157], - [-112.554826, 28.672121], - [-112.60629, 28.667884], - [-112.606483, 28.667909], - [-112.613936, 28.706651], - [-112.614056, 28.706833], - [-112.61221, 28.727162], - [-112.612077, 28.727235], - [-112.554205, 28.730948] - ] - ], - [ - [ - [-111.966315, 28.8088], - [-111.966315, 28.8088] - ] - ], - [ - [ - [-112.291837, 29.226276], - [-112.262709, 29.194224], - [-112.262484, 29.193775], - [-112.274696, 29.137686], - [-112.274378, 29.136797], - [-112.195181, 29.021039], - [-112.195076, 29.020702], - [-112.215275, 28.957324], - [-112.215383, 28.956883], - [-112.190179, 28.977453], - [-112.189357, 28.977], - [-112.213019, 28.959663], - [-112.214858, 28.956872], - [-112.239745, 28.872981], - [-112.239554, 28.871748], - [-112.274161, 28.818666], - [-112.275207, 28.816642], - [-112.273657, 28.784407], - [-112.27357, 28.783895], - [-112.253656, 28.767812], - [-112.253779, 28.767631], - [-112.309706, 28.747014], - [-112.310192, 28.746843], - [-112.327946, 28.763408], - [-112.328573, 28.763586], - [-112.358483, 28.759857], - [-112.35893, 28.759714], - [-112.406515, 28.7991], - [-112.406835, 28.79948], - [-112.459989, 28.802092], - [-112.46149, 28.802635], - [-112.471584, 28.821118], - [-112.472357, 28.821724], - [-112.584107, 28.876158], - [-112.584367, 28.876633], - [-112.492247, 28.945817], - [-112.489496, 28.949048], - [-112.505703, 29.062698], - [-112.505837, 29.063075], - [-112.462885, 29.186556], - [-112.461574, 29.188322], - [-112.436812, 29.199885], - [-112.43554, 29.200055], - [-112.411874, 29.185558], - [-112.409127, 29.185973], - [-112.360984, 29.219551], - [-112.35998, 29.220228], - [-112.291837, 29.226276] - ] - ], - [ - [ - [-114.675962, 31.756419], - [-114.593589, 31.748291], - [-114.591959, 31.74668], - [-114.610925, 31.727402], - [-114.615576, 31.727891], - [-114.675962, 31.756419] - ] - ], - [ - [ - [-114.882589, 32.49215], - [-114.849078, 32.473423], - [-114.848405, 32.473416], - [-114.813573, 32.493913], - [-114.812398, 32.493697], - [-114.119166, 32.283894], - [-114.109969, 32.281594], - [-111.100895, 31.340894], - [-111.075002, 31.332569], - [-108.800371, 31.332155], - [-108.755916, 31.332419], - [-108.809962, 31.250092], - [-108.817231, 31.239006], - [-108.86492, 31.23884], - [-108.879812, 31.238786], - [-108.906291, 31.213343], - [-108.906647, 31.208051], - [-108.900332, 31.202452], - [-108.860687, 31.218927], - [-108.848332, 31.195108], - [-108.805025, 31.192956], - [-108.835012, 31.169335], - [-108.84564, 31.135576], - [-108.81703, 31.119577], - [-108.769997, 31.102472], - [-108.766463, 31.074105], - [-108.766157, 31.073628], - [-108.730738, 31.052176], - [-108.729899, 31.052154], - [-108.749995, 31.036697], - [-108.752466, 31.033848], - [-108.708659, 31.033872], - [-108.684387, 31.03374], - [-108.683842, 31.006835], - [-108.683807, 31.005973], - [-108.774378, 31.005116], - [-108.803255, 31.004829], - [-108.802405, 30.905558], - [-108.802393, 30.904101], - [-108.843145, 30.905476], - [-108.939243, 30.907565], - [-108.930952, 30.866487], - [-108.929849, 30.861021], - [-108.943648, 30.750116], - [-108.948302, 30.736911], - [-108.918968, 30.739354], - [-108.886919, 30.719287], - [-108.866925, 30.689387], - [-108.876792, 30.625788], - [-108.876465, 30.624574], - [-108.834264, 30.605741], - [-108.830647, 30.601733], - [-108.756542, 30.596076], - [-108.726666, 30.594548], - [-108.726828, 30.591595], - [-108.727439, 30.580477], - [-108.687398, 30.554765], - [-108.677792, 30.557073], - [-108.657367, 30.466557], - [-108.603843, 30.465113], - [-108.617426, 30.433799], - [-108.648652, 30.416865], - [-108.61984, 30.374796], - [-108.622056, 30.340318], - [-108.589979, 30.338156], - [-108.580006, 30.337482], - [-108.542588, 30.28392], - [-108.542199, 30.283512], - [-108.550547, 30.266642], - [-108.586034, 30.28607], - [-108.620218, 30.29823], - [-108.610598, 30.042364], - [-108.606922, 30.028618], - [-108.628529, 29.953422], - [-108.628709, 29.953034], - [-108.621691, 29.878209], - [-108.607199, 29.84714], - [-108.6355, 29.831048], - [-108.635718, 29.829684], - [-108.624019, 29.802655], - [-108.61856, 29.800466], - [-108.541259, 29.796138], - [-108.534964, 29.751365], - [-108.540337, 29.738325], - [-108.540776, 29.736228], - [-108.547809, 29.73735], - [-108.592751, 29.728391], - [-108.592534, 29.717646], - [-108.659099, 29.716127], - [-108.645167, 29.691958], - [-108.61828, 29.660525], - [-108.651917, 29.65041], - [-108.654988, 29.649433], - [-108.641137, 29.588886], - [-108.659505, 29.584041], - [-108.638324, 29.558319], - [-108.662309, 29.544482], - [-108.649459, 29.509979], - [-108.648713, 29.509101], - [-108.625556, 29.501567], - [-108.625155, 29.501031], - [-108.685023, 29.484232], - [-108.689606, 29.484], - [-108.694332, 29.467114], - [-108.717754, 29.465954], - [-108.703622, 29.408455], - [-108.669733, 29.307417], - [-108.682209, 29.26743], - [-108.76162, 29.254942], - [-108.761888, 29.253884], - [-108.738357, 29.220952], - [-108.735408, 29.217713], - [-108.73983, 29.20082], - [-108.753869, 29.200098], - [-108.746025, 29.164017], - [-108.745297, 29.162343], - [-108.741266, 29.16477], - [-108.728854, 29.171801], - [-108.700017, 29.135047], - [-108.698528, 29.12774], - [-108.726427, 29.098174], - [-108.72959, 29.096533], - [-108.710254, 29.086111], - [-108.709438, 29.083003], - [-108.722002, 29.070003], - [-108.724353, 29.069897], - [-108.702497, 28.958464], - [-108.698145, 28.936266], - [-108.709682, 28.889825], - [-108.709798, 28.889515], - [-108.679752, 28.864759], - [-108.678176, 28.863276], - [-108.665835, 28.828216], - [-108.65785, 28.809224], - [-108.629625, 28.811722], - [-108.623817, 28.806123], - [-108.645557, 28.794727], - [-108.643294, 28.765068], - [-108.583812, 28.740145], - [-108.583785, 28.740139], - [-108.578984, 28.657336], - [-108.580151, 28.632446], - [-108.53186, 28.538973], - [-108.523287, 28.50591], - [-108.509871, 28.508366], - [-108.507672, 28.508216], - [-108.519495, 28.461719], - [-108.520389, 28.459759], - [-108.51254, 28.454908], - [-108.504141, 28.454439], - [-108.513634, 28.439603], - [-108.515541, 28.426284], - [-108.488982, 28.375116], - [-108.479701, 28.369551], - [-108.505683, 28.360806], - [-108.521651, 28.365061], - [-108.521557, 28.363647], - [-108.519638, 28.334762], - [-108.535883, 28.323732], - [-108.550928, 28.318055], - [-108.603507, 28.347562], - [-108.611167, 28.335257], - [-108.636181, 28.335228], - [-108.635486, 28.306256], - [-108.641293, 28.291609], - [-108.686108, 28.303452], - [-108.687225, 28.303462], - [-108.720343, 28.28508], - [-108.750984, 28.271569], - [-108.797441, 28.266597], - [-108.791663, 28.253617], - [-108.879528, 28.264505], - [-108.880663, 28.264726], - [-108.921154, 28.251453], - [-108.922014, 28.251492], - [-108.964908, 28.263882], - [-108.967261, 28.265], - [-108.992874, 28.297888], - [-108.993974, 28.29796], - [-108.996183, 28.25514], - [-108.997444, 28.255055], - [-109.021536, 28.276694], - [-109.022777, 28.277532], - [-109.040521, 28.267579], - [-109.040682, 28.26699], - [-109.067687, 28.286419], - [-109.068696, 28.286139], - [-109.058666, 28.268365], - [-109.058436, 28.267269], - [-109.07369, 28.273172], - [-109.074886, 28.272609], - [-109.062001, 28.199276], - [-109.06199, 28.199202], - [-109.072509, 28.149865], - [-109.072894, 28.148572], - [-109.036568, 28.033093], - [-109.0319, 28.018288], - [-108.950314, 27.95404], - [-108.926511, 27.940594], - [-108.904703, 27.850749], - [-108.86914, 27.839286], - [-108.918077, 27.789918], - [-108.920294, 27.783973], - [-108.89892, 27.750254], - [-108.895516, 27.744807], - [-108.863258, 27.744542], - [-108.832964, 27.74435], - [-108.798615, 27.723031], - [-108.784495, 27.730465], - [-108.749979, 27.665133], - [-108.749314, 27.664731], - [-108.740158, 27.600735], - [-108.739852, 27.599955], - [-108.722958, 27.588148], - [-108.712808, 27.566246], - [-108.653219, 27.538949], - [-108.652405, 27.537033], - [-108.661076, 27.46496], - [-108.661648, 27.464744], - [-108.659779, 27.462452], - [-108.633418, 27.428136], - [-108.618902, 27.366127], - [-108.591045, 27.31808], - [-108.647339, 27.256984], - [-108.664375, 27.239396], - [-108.662582, 27.220387], - [-108.662578, 27.219543], - [-108.653584, 27.176858], - [-108.653221, 27.176055], - [-108.622422, 27.156891], - [-108.611427, 27.154145], - [-108.602322, 27.037255], - [-108.602276, 27.036943], - [-108.562535, 27.046019], - [-108.568885, 27.024208], - [-108.572247, 27.012656], - [-108.553617, 26.998414], - [-108.551763, 26.997145], - [-108.429823, 26.976972], - [-108.424271, 26.97623], - [-108.443764, 26.973708], - [-108.466978, 26.970702], - [-108.556373, 26.824681], - [-108.557043, 26.823753], - [-108.536437, 26.800258], - [-108.536912, 26.798429], - [-108.551785, 26.780969], - [-108.554034, 26.779857], - [-108.578245, 26.791255], - [-108.580849, 26.789577], - [-108.578641, 26.762071], - [-108.579004, 26.761271], - [-108.617729, 26.722003], - [-108.628385, 26.718387], - [-108.633698, 26.679568], - [-108.630366, 26.676573], - [-108.674549, 26.646616], - [-108.678988, 26.642889], - [-108.678828, 26.587652], - [-108.678831, 26.587015], - [-108.734, 26.593564], - [-108.734293, 26.593568], - [-108.786026, 26.566944], - [-108.787724, 26.565256], - [-108.832879, 26.562458], - [-108.873152, 26.551071], - [-108.891363, 26.489854], - [-108.891318, 26.489595], - [-108.912385, 26.480644], - [-108.91467, 26.47954], - [-108.838543, 26.477559], - [-108.837795, 26.476857], - [-108.870444, 26.452036], - [-108.876108, 26.447576], - [-108.86034, 26.43277], - [-108.876237, 26.412748], - [-108.881392, 26.406252], - [-108.88378, 26.407538], - [-108.910115, 26.421715], - [-108.924104, 26.402141], - [-108.936522, 26.39018], - [-109.006373, 26.402394], - [-109.006443, 26.40237], - [-109.07314, 26.353992], - [-109.074214, 26.35353], - [-109.09553, 26.31424], - [-109.09668, 26.312124], - [-109.131546, 26.297458], - [-109.131855, 26.297494], - [-109.164716, 26.306749], - [-109.164943, 26.306847], - [-109.202421, 26.344431], - [-109.202538, 26.344453], - [-109.259533, 26.319525], - [-109.260008, 26.319702], - [-109.252039, 26.409648], - [-109.252029, 26.412233], - [-109.265947, 26.496975], - [-109.267714, 26.50161], - [-109.306559, 26.56121], - [-109.309715, 26.565059], - [-109.40296, 26.653477], - [-109.407625, 26.656917], - [-109.485181, 26.682901], - [-109.48548, 26.683998], - [-109.495355, 26.670293], - [-109.495959, 26.670261], - [-109.606686, 26.694897], - [-109.611896, 26.69526], - [-109.686449, 26.676005], - [-109.687501, 26.676212], - [-109.769746, 26.708546], - [-109.771095, 26.709148], - [-109.81563, 26.747812], - [-109.818155, 26.749909], - [-109.849842, 26.789965], - [-109.852531, 26.795046], - [-109.889023, 26.919271], - [-109.890077, 26.92247], - [-109.943543, 26.990256], - [-109.944378, 26.991677], - [-109.939857, 27.00934], - [-109.941671, 27.017964], - [-109.963693, 27.05141], - [-109.967207, 27.05418], - [-110.10436, 27.108662], - [-110.109685, 27.110252], - [-110.302375, 27.153684], - [-110.304559, 27.154499], - [-110.436344, 27.269368], - [-110.439896, 27.271342], - [-110.594423, 27.309457], - [-110.5967, 27.3114], - [-110.606, 27.3448], - [-110.6061, 27.3468], - [-110.587379, 27.508597], - [-110.587358, 27.510559], - [-110.626206, 27.618361], - [-110.626512, 27.620283], - [-110.6013, 27.7001], - [-110.6009, 27.7005], - [-110.61672, 27.8002], - [-110.616156, 27.8093], - [-110.61437, 27.795651], - [-110.612925, 27.796469], - [-110.5833, 27.8307], - [-110.5829, 27.8311], - [-110.5903, 27.8453], - [-110.5899, 27.8455], - [-110.5489, 27.8321], - [-110.5485, 27.8321], - [-110.5232, 27.8468], - [-110.526468, 27.850803], - [-110.576631, 27.881566], - [-110.578104, 27.882358], - [-110.62876, 27.88296], - [-110.631004, 27.88225], - [-110.647484, 27.903328], - [-110.648163, 27.903916], - [-110.664873, 27.89626], - [-110.665395, 27.895212], - [-110.611606, 27.858304], - [-110.612336, 27.858188], - [-110.649702, 27.885872], - [-110.654426, 27.888758], - [-110.72194, 27.907187], - [-110.725877, 27.908105], - [-110.852989, 27.912301], - [-110.853206, 27.91234], - [-110.799724, 27.920031], - [-110.79945, 27.920099], - [-110.828236, 27.954337], - [-110.828887, 27.954325], - [-110.907156, 27.897651], - [-110.907212, 27.897586], - [-110.855886, 27.899983], - [-110.855833, 27.899902], - [-110.889485, 27.840032], - [-110.889988, 27.83971], - [-110.903132, 27.866535], - [-110.903394, 27.866912], - [-110.932591, 27.8811], - [-110.932808, 27.881678], - [-110.949984, 27.868295], - [-110.950345, 27.868488], - [-110.966581, 27.90524], - [-110.966654, 27.90553], - [-110.946298, 27.920554], - [-110.946589, 27.921437], - [-110.970094, 27.928029], - [-110.970616, 27.928472], - [-110.982554, 27.957566], - [-110.984002, 27.958434], - [-111.039239, 27.957141], - [-111.039974, 27.956961], - [-111.059655, 27.928148], - [-111.059981, 27.927794], - [-111.065852, 27.940353], - [-111.066106, 27.940674], - [-111.104585, 27.936621], - [-111.104983, 27.936749], - [-111.097611, 27.959507], - [-111.099283, 27.961249], - [-111.173435, 27.991842], - [-111.173755, 27.991707], - [-111.211221, 28.041458], - [-111.211874, 28.041971], - [-111.254185, 28.053648], - [-111.25502, 28.054161], - [-111.293884, 28.130269], - [-111.293635, 28.130829], - [-111.329817, 28.158203], - [-111.330035, 28.158202], - [-111.343481, 28.209105], - [-111.343838, 28.209684], - [-111.376597, 28.21884], - [-111.377111, 28.218803], - [-111.389061, 28.269004], - [-111.390413, 28.270909], - [-111.456577, 28.315572], - [-111.457029, 28.315958], - [-111.464213, 28.367733], - [-111.465103, 28.368898], - [-111.711781, 28.458687], - [-111.712269, 28.458988], - [-111.715433, 28.493329], - [-111.715732, 28.494613], - [-111.773828, 28.606352], - [-111.774424, 28.607133], - [-111.90764, 28.702696], - [-111.908012, 28.70295], - [-111.949744, 28.757042], - [-111.950184, 28.757328], - [-111.901529, 28.786458], - [-111.901, 28.787], - [-111.971482, 28.842998], - [-111.972308, 28.843467], - [-112.030994, 28.859199], - [-112.031086, 28.859274], - [-112.099413, 28.953479], - [-112.10133, 28.954886], - [-112.171748, 28.968296], - [-112.172268, 28.968966], - [-112.150635, 28.990716], - [-112.150238, 28.991713], - [-112.166593, 29.010256], - [-112.166889, 29.010543], - [-112.170697, 29.072106], - [-112.1708, 29.072568], - [-112.18675, 29.073725], - [-112.187632, 29.073328], - [-112.165166, 29.113164], - [-112.165138, 29.114872], - [-112.199482, 29.176258], - [-112.199599, 29.176404], - [-112.229293, 29.178982], - [-112.230003, 29.179848], - [-112.209284, 29.238246], - [-112.208956, 29.241493], - [-112.231498, 29.30452], - [-112.233159, 29.307648], - [-112.29207, 29.331262], - [-112.300986, 29.329997], - [-112.340846, 29.318139], - [-112.346248, 29.313561], - [-112.3343, 29.2919], - [-112.3349, 29.2918], - [-112.351829, 29.319998], - [-112.352979, 29.321014], - [-112.408793, 29.343656], - [-112.409653, 29.344322], - [-112.421573, 29.375592], - [-112.421457, 29.376508], - [-112.385328, 29.441761], - [-112.382668, 29.448725], - [-112.380111, 29.485071], - [-112.380833, 29.486862], - [-112.427971, 29.519021], - [-112.428828, 29.519815], - [-112.434359, 29.557356], - [-112.435414, 29.559208], - [-112.50478, 29.619061], - [-112.506231, 29.620232], - [-112.543246, 29.688864], - [-112.54409, 29.690002], - [-112.580341, 29.711415], - [-112.580623, 29.711814], - [-112.606206, 29.778292], - [-112.605995, 29.778936], - [-112.650962, 29.83412], - [-112.651799, 29.834683], - [-112.662643, 29.887875], - [-112.665545, 29.891659], - [-112.746472, 29.914026], - [-112.747345, 29.915427], - [-112.733106, 29.998626], - [-112.733102, 30.000553], - [-112.760967, 30.060218], - [-112.761475, 30.062359], - [-112.759745, 30.197613], - [-112.759612, 30.198556], - [-112.812114, 30.259961], - [-112.818215, 30.264085], - [-112.864315, 30.268097], - [-112.864398, 30.268158], - [-112.846183, 30.321142], - [-112.846023, 30.324478], - [-112.863043, 30.410374], - [-112.86463, 30.413915], - [-112.986863, 30.53541], - [-112.987631, 30.536086], - [-113.083817, 30.678232], - [-113.084268, 30.678481], - [-113.126833, 30.810477], - [-113.127167, 30.812042], - [-113.101314, 30.890496], - [-113.101062, 30.890886], - [-113.097363, 30.964249], - [-113.096455, 30.970048], - [-113.127676, 31.056029], - [-113.128411, 31.058909], - [-113.094315, 30.997026], - [-113.091942, 30.995268], - [-113.060064, 31.056755], - [-113.058831, 31.060481], - [-113.080757, 31.147904], - [-113.077508, 31.151667], - [-113.098479, 31.180946], - [-113.101509, 31.189444], - [-113.206302, 31.236123], - [-113.207154, 31.240529], - [-113.544797, 31.296257], - [-113.545363, 31.296318], - [-113.555391, 31.316505], - [-113.558405, 31.317765], - [-113.623728, 31.327529], - [-113.624613, 31.327994], - [-113.643916, 31.342854], - [-113.643876, 31.343268], - [-113.619253, 31.339961], - [-113.617805, 31.340367], - [-113.60884, 31.359896], - [-113.609195, 31.364588], - [-113.638778, 31.478158], - [-113.640314, 31.480509], - [-113.685028, 31.517313], - [-113.688751, 31.519338], - [-113.845993, 31.589038], - [-113.852479, 31.595399], - [-113.9162, 31.599], - [-113.92, 31.5983], - [-113.965436, 31.628387], - [-113.979411, 31.631429], - [-113.9743, 31.5843], - [-113.9737, 31.5783], - [-113.958057, 31.563223], - [-113.9562, 31.5624], - [-113.9832, 31.5328], - [-113.987029, 31.529531], - [-114.019045, 31.530815], - [-114.020158, 31.530025], - [-114.025878, 31.492233], - [-114.0259, 31.4922], - [-114.168618, 31.498722], - [-114.169233, 31.498834], - [-114.447879, 31.648873], - [-114.448283, 31.648975], - [-114.581752, 31.750457], - [-114.582789, 31.752221], - [-114.687838, 31.761846], - [-114.692802, 31.763121], - [-114.756685, 31.816402], - [-114.760211, 31.818259], - [-114.816832, 31.819989], - [-114.818857, 31.820906], - [-114.844163, 31.864117], - [-114.844922, 31.864551], - [-114.909687, 31.86726], - [-114.910759, 31.867761], - [-114.963922, 31.918033], - [-114.965485, 31.918424], - [-114.95746, 32.036808], - [-114.957005, 32.038636], - [-114.989704, 32.14627], - [-114.989736, 32.146378], - [-114.975408, 32.177799], - [-114.975318, 32.177995], - [-115.050977, 32.244791], - [-115.053022, 32.245174], - [-114.967131, 32.3384], - [-114.966592, 32.338794], - [-114.968415, 32.390527], - [-114.968453, 32.390653], - [-114.932452, 32.438474], - [-114.93194, 32.439701], - [-114.935636, 32.481031], - [-114.935416, 32.481424], - [-114.882589, 32.49215] - ], - [ - [-110.848408, 27.982478], - [-110.866087, 27.98133], - [-110.866228, 27.981368], - [-110.855739, 27.964782], - [-110.855832, 27.964544], - [-110.869567, 27.969272], - [-110.86952, 27.969153], - [-110.845115, 27.953245], - [-110.84517, 27.953042], - [-110.826659, 27.961535], - [-110.826572, 27.961592], - [-110.848408, 27.982478] - ], - [ - [-110.828571, 27.95557], - [-110.844045, 27.953371], - [-110.844879, 27.952847], - [-110.828571, 27.95557] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "03", - "name": "Baja California Sur", - "id": 8, - "ISOCODE": "MX-BCS" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-109.894608, 22.874823], - [-109.894608, 22.874823] - ] - ], - [ - [ - [-109.89308, 22.876476], - [-109.89308, 22.876476] - ] - ], - [ - [ - [-110.148301, 24.252595], - [-110.148301, 24.252595] - ] - ], - [ - [ - [-110.337538, 24.288673], - [-110.337538, 24.288673] - ] - ], - [ - [ - [-109.800423, 24.151908], - [-109.802107, 24.136835], - [-109.802497, 24.136711], - [-109.872908, 24.15251], - [-109.87363, 24.152981], - [-109.939471, 24.324976], - [-109.939477, 24.325412], - [-109.929045, 24.374236], - [-109.928712, 24.373909], - [-109.800423, 24.151908] - ] - ], - [ - [ - [-110.383893, 24.456927], - [-110.383893, 24.456927] - ] - ], - [ - [ - [-110.383281, 24.466801], - [-110.383281, 24.466801] - ] - ], - [ - [ - [-110.399096, 24.486314], - [-110.409348, 24.48163], - [-110.409396, 24.481785], - [-110.399096, 24.486314] - ] - ], - [ - [ - [-110.354104, 24.53146], - [-110.305572, 24.50358], - [-110.3055, 24.503552], - [-110.28909, 24.471857], - [-110.289073, 24.471722], - [-110.325748, 24.403625], - [-110.325853, 24.403464], - [-110.348367, 24.401348], - [-110.348482, 24.401401], - [-110.346938, 24.431153], - [-110.346984, 24.431457], - [-110.369851, 24.428648], - [-110.369992, 24.428606], - [-110.378659, 24.448434], - [-110.378697, 24.448536], - [-110.354882, 24.456183], - [-110.354508, 24.456508], - [-110.371123, 24.457307], - [-110.371186, 24.457422], - [-110.356398, 24.468815], - [-110.356397, 24.469022], - [-110.376348, 24.467281], - [-110.376517, 24.467506], - [-110.363288, 24.481466], - [-110.363479, 24.481511], - [-110.386439, 24.474639], - [-110.386495, 24.47469], - [-110.393255, 24.497167], - [-110.393255, 24.497331], - [-110.380458, 24.507071], - [-110.380402, 24.507139], - [-110.399372, 24.518423], - [-110.399445, 24.518539], - [-110.354104, 24.53146] - ] - ], - [ - [ - [-110.391217, 24.590236], - [-110.360317, 24.549857], - [-110.360307, 24.549603], - [-110.367842, 24.530955], - [-110.367936, 24.530741], - [-110.398934, 24.536254], - [-110.399065, 24.536348], - [-110.383123, 24.557012], - [-110.383297, 24.557077], - [-110.408224, 24.544526], - [-110.408355, 24.544594], - [-110.392347, 24.563202], - [-110.392361, 24.563296], - [-110.414501, 24.568167], - [-110.414489, 24.568328], - [-110.391217, 24.590236] - ] - ], - [ - [ - [-110.405427, 24.596386], - [-110.405427, 24.596386] - ] - ], - [ - [ - [-110.56626, 24.840077], - [-110.563784, 24.814807], - [-110.564418, 24.814411], - [-110.586909, 24.827869], - [-110.586931, 24.828204], - [-110.56626, 24.840077] - ] - ], - [ - [ - [-110.60519, 24.843308], - [-110.60519, 24.843308] - ] - ], - [ - [ - [-110.580175, 24.852656], - [-110.580175, 24.852656] - ] - ], - [ - [ - [-110.603193, 24.874137], - [-110.603193, 24.874137] - ] - ], - [ - [ - [-110.509517, 25.112021], - [-110.509517, 25.112021] - ] - ], - [ - [ - [-110.706701, 25.104869], - [-110.669159, 25.052296], - [-110.668846, 25.05204], - [-110.602593, 25.038823], - [-110.602464, 25.038843], - [-110.575088, 25.015981], - [-110.574905, 25.015882], - [-110.570267, 24.954057], - [-110.570211, 24.953837], - [-110.526205, 24.882697], - [-110.526193, 24.882368], - [-110.589396, 24.864749], - [-110.589854, 24.864864], - [-110.573464, 24.887549], - [-110.573629, 24.888005], - [-110.641123, 24.914108], - [-110.641373, 24.914134], - [-110.629169, 24.917819], - [-110.629205, 24.917943], - [-110.655228, 24.948214], - [-110.655319, 24.948359], - [-110.677808, 25.016865], - [-110.67795, 25.017267], - [-110.715264, 25.038093], - [-110.715598, 25.038794], - [-110.706701, 25.104869] - ] - ], - [ - [ - [-110.860153, 25.127493], - [-110.860153, 25.127493] - ] - ], - [ - [ - [-110.694983, 25.203575], - [-110.694983, 25.203575] - ] - ], - [ - [ - [-110.915417, 25.210281], - [-110.915417, 25.210281] - ] - ], - [ - [ - [-110.921773, 25.24714], - [-110.921773, 25.24714] - ] - ], - [ - [ - [-110.687435, 25.30573], - [-110.714684, 25.261294], - [-110.71534, 25.26087], - [-110.7312, 25.281518], - [-110.731346, 25.282513], - [-110.713219, 25.303959], - [-110.712556, 25.304335], - [-110.687435, 25.30573] - ] - ], - [ - [ - [-110.952907, 25.328814], - [-110.952907, 25.328814] - ] - ], - [ - [ - [-112.119551, 25.495398], - [-112.119551, 25.495398] - ] - ], - [ - [ - [-112.120129, 25.495741], - [-112.120129, 25.495741] - ] - ], - [ - [ - [-111.131804, 25.587929], - [-111.131804, 25.587929] - ] - ], - [ - [ - [-111.144324, 25.585482], - [-111.144324, 25.585482] - ] - ], - [ - [ - [-110.77369, 25.711541], - [-110.759475, 25.593313], - [-110.759505, 25.592861], - [-110.787059, 25.605265], - [-110.787525, 25.605825], - [-110.806175, 25.657665], - [-110.806246, 25.657862], - [-110.77369, 25.711541] - ] - ], - [ - [ - [-111.034966, 25.714291], - [-111.013378, 25.678929], - [-111.01331, 25.678754], - [-111.029719, 25.649954], - [-111.029796, 25.649778], - [-111.059587, 25.706991], - [-111.059636, 25.707269], - [-111.034966, 25.714291] - ] - ], - [ - [ - [-111.223703, 25.729921], - [-111.223703, 25.729921] - ] - ], - [ - [ - [-111.043242, 25.738268], - [-111.043242, 25.738268] - ] - ], - [ - [ - [-111.048419, 25.741051], - [-111.048419, 25.741051] - ] - ], - [ - [ - [-111.226058, 25.743503], - [-111.226058, 25.743503] - ] - ], - [ - [ - [-111.275583, 25.758441], - [-111.275583, 25.758441] - ] - ], - [ - [ - [-111.28044, 25.767763], - [-111.28044, 25.767763] - ] - ], - [ - [ - [-111.260101, 25.811689], - [-111.242706, 25.771327], - [-111.242475, 25.770948], - [-111.259132, 25.782848], - [-111.259261, 25.783095], - [-111.260101, 25.811689] - ] - ], - [ - [ - [-111.316111, 25.841851], - [-111.316111, 25.841851] - ] - ], - [ - [ - [-111.180424, 26.045978], - [-111.180424, 26.045978] - ] - ], - [ - [ - [-111.059826, 26.070972], - [-111.084253, 26.017632], - [-111.084337, 26.017225], - [-111.067574, 25.966142], - [-111.06759, 25.96584], - [-111.100227, 25.996936], - [-111.101147, 25.99766], - [-111.117623, 25.99569], - [-111.119885, 25.994376], - [-111.180148, 25.904861], - [-111.180335, 25.904547], - [-111.182209, 25.867308], - [-111.18219, 25.867198], - [-111.203921, 25.848276], - [-111.203986, 25.848055], - [-111.202161, 25.807869], - [-111.202339, 25.807486], - [-111.228341, 25.822522], - [-111.228417, 25.822616], - [-111.233127, 25.847653], - [-111.23315, 25.848002], - [-111.214652, 25.869548], - [-111.214554, 25.869798], - [-111.1979, 25.954845], - [-111.197855, 25.954978], - [-111.16804, 25.98734], - [-111.168021, 25.9874], - [-111.175491, 26.041513], - [-111.175439, 26.041727], - [-111.13836, 26.050031], - [-111.138141, 26.05015], - [-111.128567, 26.067297], - [-111.1285, 26.067432], - [-111.102314, 26.051529], - [-111.10224, 26.05152], - [-111.059826, 26.070972] - ] - ], - [ - [ - [-111.303608, 26.105385], - [-111.303608, 26.105385] - ] - ], - [ - [ - [-111.265548, 26.137301], - [-111.263014, 26.106532], - [-111.263256, 26.106142], - [-111.297063, 26.098576], - [-111.297119, 26.098576], - [-111.265548, 26.137301] - ] - ], - [ - [ - [-111.436001, 26.641629], - [-111.424317, 26.62599], - [-111.424232, 26.625707], - [-111.436001, 26.641629] - ] - ], - [ - [ - [-111.913701, 26.879666], - [-111.913701, 26.879666] - ] - ], - [ - [ - [-111.910934, 27.036326], - [-111.910934, 27.036326] - ] - ], - [ - [ - [-111.909577, 27.058146], - [-111.909577, 27.058146] - ] - ], - [ - [ - [-112.068829, 27.165455], - [-112.068829, 27.165455] - ] - ], - [ - [ - [-112.080196, 27.251052], - [-112.043376, 27.208579], - [-112.043374, 27.208353], - [-112.059295, 27.17981], - [-112.059381, 27.179653], - [-112.084542, 27.185475], - [-112.084831, 27.185747], - [-112.10873, 27.238724], - [-112.108707, 27.239074], - [-112.093265, 27.257935], - [-112.092812, 27.258347], - [-112.080196, 27.251052] - ] - ], - [ - [ - [-114.293278, 27.110557], - [-114.293278, 27.110557] - ] - ], - [ - [ - [-114.293252, 27.112226], - [-114.293252, 27.112226] - ] - ], - [ - [ - [-114.374232, 27.148955], - [-114.384695, 27.1459], - [-114.384753, 27.145954], - [-114.374232, 27.148955] - ] - ], - [ - [ - [-111.944886, 27.434554], - [-111.930046, 27.416786], - [-111.929231, 27.415781], - [-111.937239, 27.405773], - [-111.938614, 27.405184], - [-111.968744, 27.427734], - [-111.968885, 27.428691], - [-111.944886, 27.434554] - ] - ], - [ - [ - [-114.710607, 27.513775], - [-114.710607, 27.513775] - ] - ], - [ - [ - [-114.70974, 27.515067], - [-114.70974, 27.515067] - ] - ], - [ - [ - [-114.710892, 27.515549], - [-114.710892, 27.515549] - ] - ], - [ - [ - [-112.739461, 27.842591], - [-112.739461, 27.842591] - ] - ], - [ - [ - [-112.759744, 27.901707], - [-112.759744, 27.901707] - ] - ], - [ - [ - [-115.222641, 27.89372], - [-115.222641, 27.89372] - ] - ], - [ - [ - [-115.192795, 27.885314], - [-115.159037, 27.865239], - [-115.158718, 27.86431], - [-115.178229, 27.850204], - [-115.178317, 27.850242], - [-115.187987, 27.875115], - [-115.188782, 27.876051], - [-115.219131, 27.889195], - [-115.220075, 27.889846], - [-115.192795, 27.885314] - ] - ], - [ - [ - [-112.75825, 27.975381], - [-112.771641, 27.863426], - [-112.771378, 27.861994], - [-112.72008, 27.825567], - [-112.719944, 27.825445], - [-112.707969, 27.765594], - [-112.707822, 27.76462], - [-112.676324, 27.722164], - [-112.675984, 27.721629], - [-112.637838, 27.706196], - [-112.636626, 27.705242], - [-112.597045, 27.651932], - [-112.59538, 27.650503], - [-112.419262, 27.590678], - [-112.418316, 27.590288], - [-112.330258, 27.517696], - [-112.330039, 27.517659], - [-112.303676, 27.387069], - [-112.303171, 27.385951], - [-112.241712, 27.32581], - [-112.241011, 27.325264], - [-112.199381, 27.252034], - [-112.199114, 27.251606], - [-112.212747, 27.204069], - [-112.212548, 27.203807], - [-112.097526, 27.133237], - [-112.097219, 27.133084], - [-111.954014, 27.096461], - [-111.953389, 27.096394], - [-111.9456, 27.0707], - [-111.945967, 27.069956], - [-111.987024, 27.057668], - [-111.988747, 27.05611], - [-112.014859, 27.001388], - [-112.015253, 26.999836], - [-112.009292, 26.959988], - [-112.008063, 26.957855], - [-111.952359, 26.901497], - [-111.952253, 26.901362], - [-111.982642, 26.888902], - [-111.982667, 26.888887], - [-111.954519, 26.899971], - [-111.954415, 26.899928], - [-111.902783, 26.853428], - [-111.902345, 26.853185], - [-111.822313, 26.895329], - [-111.822072, 26.896201], - [-111.802615, 26.889036], - [-111.801538, 26.888901], - [-111.721276, 26.806843], - [-111.72102, 26.806616], - [-111.667419, 26.78055], - [-111.666326, 26.77993], - [-111.647202, 26.745041], - [-111.646984, 26.744836], - [-111.56179, 26.696947], - [-111.561601, 26.696798], - [-111.565703, 26.559399], - [-111.565538, 26.558801], - [-111.502727, 26.530459], - [-111.501315, 26.530161], - [-111.46092, 26.537368], - [-111.460485, 26.537369], - [-111.442553, 26.518301], - [-111.442142, 26.51787], - [-111.469861, 26.46538], - [-111.470506, 26.464328], - [-111.469378, 26.415888], - [-111.469026, 26.413435], - [-111.425022, 26.381083], - [-111.424561, 26.380621], - [-111.434252, 26.362935], - [-111.433951, 26.362368], - [-111.403532, 26.349965], - [-111.403162, 26.350291], - [-111.386902, 26.322215], - [-111.386598, 26.32206], - [-111.382987, 26.281874], - [-111.383008, 26.281386], - [-111.397806, 26.256247], - [-111.397673, 26.255583], - [-111.354099, 26.131414], - [-111.354371, 26.12957], - [-111.324488, 26.100358], - [-111.323872, 26.10013], - [-111.318838, 26.070124], - [-111.319111, 26.068994], - [-111.345379, 26.029155], - [-111.3455, 26.028694], - [-111.3381, 25.989318], - [-111.338465, 25.987306], - [-111.358564, 25.962036], - [-111.35865, 25.959753], - [-111.336947, 25.908249], - [-111.336756, 25.907525], - [-111.333465, 25.837026], - [-111.333372, 25.836426], - [-111.292957, 25.813468], - [-111.292057, 25.813005], - [-111.307778, 25.813207], - [-111.308326, 25.812865], - [-111.306641, 25.774543], - [-111.306273, 25.773496], - [-111.244027, 25.721935], - [-111.242917, 25.72123], - [-111.22451, 25.725816], - [-111.223939, 25.725143], - [-111.193783, 25.61487], - [-111.193338, 25.613629], - [-111.123168, 25.530051], - [-111.121506, 25.528174], - [-111.017844, 25.515523], - [-111.016784, 25.514947], - [-111.024833, 25.445387], - [-111.024776, 25.443731], - [-110.979764, 25.34212], - [-110.979628, 25.34142], - [-110.933246, 25.291778], - [-110.933118, 25.291585], - [-110.946245, 25.260224], - [-110.946177, 25.257553], - [-110.906911, 25.183754], - [-110.906621, 25.183465], - [-110.90798, 25.147427], - [-110.907629, 25.145784], - [-110.816925, 25.035899], - [-110.815507, 25.034386], - [-110.758088, 25.014109], - [-110.757199, 25.013823], - [-110.749373, 24.968666], - [-110.749758, 24.965978], - [-110.685487, 24.884464], - [-110.685294, 24.884002], - [-110.657082, 24.806455], - [-110.657067, 24.806157], - [-110.689876, 24.708245], - [-110.690301, 24.707348], - [-110.7285, 24.6693], - [-110.729, 24.6687], - [-110.738166, 24.553625], - [-110.738218, 24.552721], - [-110.729414, 24.515244], - [-110.72916, 24.514529], - [-110.687385, 24.463652], - [-110.687051, 24.46296], - [-110.681478, 24.357478], - [-110.681311, 24.356872], - [-110.612154, 24.256699], - [-110.612085, 24.256493], - [-110.561746, 24.212218], - [-110.560179, 24.211301], - [-110.506623, 24.194888], - [-110.506438, 24.194767], - [-110.325282, 24.176208], - [-110.324658, 24.175092], - [-110.303186, 24.181299], - [-110.303031, 24.181502], - [-110.299858, 24.211004], - [-110.299661, 24.21168], - [-110.3143, 24.2497], - [-110.3134, 24.2506], - [-110.326916, 24.244409], - [-110.327167, 24.24441], - [-110.33609, 24.257695], - [-110.336338, 24.258234], - [-110.339966, 24.315288], - [-110.339962, 24.316133], - [-110.297689, 24.352068], - [-110.297656, 24.352356], - [-110.246644, 24.349967], - [-110.24647, 24.350017], - [-110.23177, 24.340593], - [-110.231523, 24.34025], - [-110.236332, 24.31839], - [-110.235631, 24.317304], - [-110.193663, 24.293336], - [-110.193078, 24.292911], - [-110.175227, 24.253255], - [-110.174748, 24.252786], - [-110.009089, 24.160423], - [-110.008524, 24.159843], - [-109.985367, 24.044563], - [-109.984335, 24.04374], - [-109.930119, 24.028723], - [-109.929717, 24.02872], - [-109.828767, 24.061715], - [-109.827644, 24.061284], - [-109.804334, 24.021814], - [-109.804235, 24.021242], - [-109.83524, 23.985775], - [-109.835669, 23.985065], - [-109.837662, 23.933392], - [-109.837503, 23.932753], - [-109.69955, 23.799125], - [-109.699365, 23.798988], - [-109.713176, 23.738804], - [-109.71329, 23.738116], - [-109.697296, 23.662981], - [-109.69708, 23.662624], - [-109.470582, 23.55697], - [-109.47021, 23.556716], - [-109.479576, 23.519702], - [-109.479418, 23.51917], - [-109.425644, 23.450839], - [-109.425037, 23.450327], - [-109.432076, 23.414266], - [-109.431999, 23.413665], - [-109.413239, 23.387603], - [-109.413173, 23.38696], - [-109.432064, 23.377285], - [-109.432215, 23.376948], - [-109.425328, 23.307369], - [-109.425221, 23.306189], - [-109.439053, 23.23524], - [-109.439303, 23.23413], - [-109.532085, 23.112908], - [-109.5328, 23.112146], - [-109.701637, 23.039965], - [-109.703084, 23.039105], - [-109.714723, 23.005621], - [-109.715199, 23.00468], - [-109.791179, 22.966902], - [-109.792371, 22.966203], - [-109.842499, 22.90355], - [-109.842787, 22.903173], - [-109.910595, 22.886019], - [-109.911406, 22.885729], - [-109.89437, 22.875943], - [-109.894433, 22.875897], - [-109.962565, 22.872554], - [-109.963833, 22.872181], - [-110.009173, 22.898477], - [-110.012248, 22.900635], - [-110.059995, 22.948416], - [-110.061127, 22.949562], - [-110.097865, 23.018415], - [-110.098724, 23.019414], - [-110.168055, 23.316246], - [-110.168164, 23.317073], - [-110.333703, 23.564179], - [-110.334035, 23.564526], - [-110.598612, 23.698798], - [-110.599434, 23.698888], - [-111.020109, 24.091869], - [-111.022098, 24.093598], - [-111.274047, 24.242639], - [-111.275433, 24.243597], - [-111.440182, 24.324388], - [-111.441325, 24.325928], - [-111.565482, 24.365761], - [-111.577608, 24.367557], - [-111.694559, 24.35076], - [-111.69512, 24.350687], - [-111.710656, 24.303204], - [-111.711347, 24.303282], - [-111.74258, 24.345469], - [-111.743125, 24.346008], - [-111.869034, 24.437299], - [-111.876181, 24.442542], - [-112.101783, 24.558635], - [-112.102074, 24.558759], - [-112.116, 24.6023], - [-112.11644, 24.602928], - [-112.1742, 24.6521], - [-112.1748, 24.6533], - [-112.165992, 24.671], - [-112.165, 24.6719], - [-112.1451, 24.6684], - [-112.1437, 24.6696], - [-112.1353, 24.6948], - [-112.1352, 24.6967], - [-112.1417, 24.7306], - [-112.1432, 24.7333], - [-112.1734, 24.764], - [-112.1749, 24.7653], - [-112.23539, 24.789716], - [-112.238102, 24.789482], - [-112.261077, 24.779445], - [-112.26147, 24.778879], - [-112.2589, 24.7508], - [-112.2595, 24.7501], - [-112.30234, 24.791955], - [-112.302638, 24.791694], - [-112.206846, 25.012209], - [-112.20533, 25.015754], - [-112.128248, 25.267602], - [-112.124815, 25.281861], - [-112.137041, 25.296134], - [-112.137122, 25.297669], - [-112.098634, 25.488499], - [-112.097356, 25.488453], - [-112.094826, 25.684083], - [-112.094402, 25.684287], - [-112.107015, 25.780795], - [-112.10744, 25.78246], - [-112.19086, 25.985157], - [-112.191486, 25.986319], - [-112.233499, 26.036063], - [-112.234221, 26.036682], - [-112.307757, 26.071661], - [-112.308068, 26.07189], - [-112.333894, 26.159313], - [-112.334577, 26.16065], - [-112.391963, 26.231196], - [-112.393454, 26.232753], - [-112.454935, 26.26243], - [-112.456809, 26.262477], - [-112.496296, 26.231655], - [-112.49752, 26.231504], - [-112.634645, 26.320698], - [-112.634999, 26.321112], - [-112.679613, 26.315449], - [-112.679918, 26.315307], - [-112.721648, 26.365403], - [-112.722077, 26.365813], - [-113.125824, 26.643575], - [-113.138344, 26.659765], - [-113.267692, 26.702777], - [-113.269009, 26.703623], - [-113.282037, 26.745318], - [-113.28325, 26.753163], - [-113.33513, 26.784933], - [-113.338576, 26.786683], - [-113.460482, 26.809166], - [-113.463908, 26.808329], - [-113.506529, 26.79316], - [-113.509179, 26.79153], - [-113.54724, 26.7207], - [-113.54751, 26.720243], - [-113.576506, 26.705609], - [-113.577038, 26.704702], - [-113.604041, 26.712693], - [-113.607171, 26.713665], - [-113.683351, 26.778998], - [-113.685962, 26.780856], - [-113.733228, 26.799089], - [-113.73374, 26.799463], - [-113.783924, 26.914913], - [-113.785473, 26.917342], - [-113.851358, 26.969577], - [-113.852776, 26.970382], - [-113.942849, 26.998887], - [-113.947009, 26.99944], - [-114.001898, 26.97123], - [-114.002535, 26.971102], - [-114.090204, 27.08606], - [-114.091191, 27.08709], - [-114.179791, 27.137918], - [-114.181298, 27.138519], - [-114.26382, 27.1514], - [-114.268434, 27.150886], - [-114.291702, 27.142433], - [-114.293147, 27.141029], - [-114.296629, 27.122873], - [-114.296696, 27.122863], - [-114.380014, 27.178312], - [-114.384738, 27.180234], - [-114.430842, 27.174359], - [-114.431009, 27.174448], - [-114.434697, 27.209531], - [-114.434902, 27.209767], - [-114.48796, 27.228601], - [-114.488006, 27.228717], - [-114.487359, 27.339509], - [-114.487808, 27.344337], - [-114.511416, 27.41481], - [-114.513483, 27.41717], - [-114.600938, 27.478431], - [-114.601004, 27.478489], - [-114.736315, 27.523873], - [-114.73728, 27.524177], - [-114.793073, 27.614622], - [-114.79608, 27.617099], - [-114.826002, 27.630586], - [-114.830726, 27.631216], - [-114.846482, 27.617661], - [-114.847596, 27.617824], - [-114.871596, 27.649633], - [-114.871534, 27.649868], - [-114.926369, 27.673749], - [-114.930438, 27.675975], - [-114.947077, 27.712062], - [-114.950039, 27.714167], - [-114.986207, 27.728675], - [-114.989492, 27.72894], - [-115.005548, 27.717467], - [-115.006274, 27.717713], - [-115.025129, 27.74031], - [-115.026194, 27.741016], - [-115.051996, 27.819065], - [-115.051995, 27.819832], - [-115.082272, 27.847378], - [-115.082303, 27.847396], - [-115.055849, 27.861563], - [-115.055174, 27.861794], - [-115.007041, 27.828492], - [-115.006312, 27.82836], - [-114.866158, 27.829564], - [-114.86581, 27.830207], - [-114.840765, 27.811028], - [-114.838708, 27.810092], - [-114.737772, 27.807044], - [-114.737524, 27.808638], - [-114.636086, 27.776619], - [-114.633906, 27.776067], - [-114.534869, 27.785749], - [-114.533284, 27.786065], - [-114.497166, 27.772396], - [-114.488092, 27.774976], - [-114.391078, 27.821537], - [-114.390008, 27.821864], - [-114.340546, 27.866075], - [-114.33438, 27.86953], - [-114.295357, 27.865044], - [-114.294822, 27.864133], - [-114.294235, 27.864621], - [-114.265595, 27.888391], - [-114.270955, 27.92831], - [-114.265281, 27.942385], - [-114.205169, 27.999723], - [-114.204879, 28], - [-112.766667, 28], - [-112.764929, 28], - [-112.75825, 27.975381] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "32", - "name": "Zacatecas", - "id": 9, - "ISOCODE": "MX-ZAC" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-101.84881, 25.017624], - [-101.793253, 24.907656], - [-101.773463, 24.875535], - [-101.698051, 24.845205], - [-101.685149, 24.840013], - [-101.656332, 24.860793], - [-101.606715, 24.838063], - [-101.601261, 24.835563], - [-101.609012, 24.789664], - [-101.640767, 24.800704], - [-101.624183, 24.763343], - [-101.62227, 24.758983], - [-101.485343, 24.742198], - [-101.461639, 24.736757], - [-101.354972, 24.807983], - [-101.342142, 24.813353], - [-101.236089, 24.777879], - [-101.215039, 24.775168], - [-101.106877, 24.609202], - [-101.080495, 24.591185], - [-101.062589, 24.584033], - [-100.958793, 24.542684], - [-100.903806, 24.582732], - [-100.902234, 24.583918], - [-100.858964, 24.560752], - [-100.847806, 24.555619], - [-100.801911, 24.55532], - [-100.799934, 24.556186], - [-100.755395, 24.480533], - [-100.742324, 24.460435], - [-100.818508, 24.37787], - [-100.850383, 24.343539], - [-100.935767, 24.287704], - [-100.945286, 24.281196], - [-101.006675, 24.335835], - [-101.009681, 24.384479], - [-101.009868, 24.385117], - [-100.987111, 24.432217], - [-100.987327, 24.432519], - [-101.047906, 24.268236], - [-101.065402, 24.207021], - [-101.173232, 24.164137], - [-101.216746, 24.159732], - [-101.195892, 23.952153], - [-101.192505, 23.918559], - [-101.722351, 23.489721], - [-101.775122, 23.447629], - [-102.105552, 23.357212], - [-102.122532, 23.35386], - [-102.162726, 23.360086], - [-102.168799, 23.361026], - [-102.168725, 23.376429], - [-102.168615, 23.398908], - [-102.174542, 23.399554], - [-102.191342, 23.401388], - [-102.193998, 23.444051], - [-102.193615, 23.447599], - [-102.231098, 23.447013], - [-102.23815, 23.446901], - [-102.252732, 23.369009], - [-102.253611, 23.364956], - [-102.292897, 23.323262], - [-102.296038, 23.320501], - [-102.269041, 23.280924], - [-102.269534, 23.279913], - [-102.23182, 23.315185], - [-102.231597, 23.315116], - [-102.244392, 23.277711], - [-102.244672, 23.276769], - [-102.283687, 23.273177], - [-102.285825, 23.27332], - [-102.289146, 23.234519], - [-102.289369, 23.231691], - [-102.244227, 23.211581], - [-102.239458, 23.209493], - [-102.240965, 23.173109], - [-102.240974, 23.16938], - [-102.215835, 23.133518], - [-102.214155, 23.13132], - [-102.259927, 23.046674], - [-102.260051, 23.045916], - [-102.250606, 23.046739], - [-102.238082, 23.047644], - [-102.196982, 22.882643], - [-102.192132, 22.864902], - [-102.131527, 22.790343], - [-102.124897, 22.782952], - [-101.946065, 22.65041], - [-101.939756, 22.645725], - [-101.858031, 22.65553], - [-101.853284, 22.656025], - [-101.869996, 22.576853], - [-101.872958, 22.563073], - [-101.826283, 22.552265], - [-101.819892, 22.551295], - [-101.837141, 22.499692], - [-101.799276, 22.470559], - [-101.793663, 22.468728], - [-101.783361, 22.465034], - [-101.778495, 22.484868], - [-101.771535, 22.488163], - [-101.737547, 22.480715], - [-101.735361, 22.480215], - [-101.742682, 22.499496], - [-101.746175, 22.508693], - [-101.741245, 22.509847], - [-101.696018, 22.520422], - [-101.661079, 22.505051], - [-101.659906, 22.50532], - [-101.655994, 22.513814], - [-101.590083, 22.589036], - [-101.595313, 22.623935], - [-101.595287, 22.624072], - [-101.587325, 22.621132], - [-101.573821, 22.612816], - [-101.567411, 22.656537], - [-101.567398, 22.656776], - [-101.499976, 22.699649], - [-101.497004, 22.701541], - [-101.491175, 22.741924], - [-101.490965, 22.742877], - [-101.440622, 22.745909], - [-101.411077, 22.747681], - [-101.359497, 22.71467], - [-101.349234, 22.711779], - [-101.378968, 22.677026], - [-101.380018, 22.675835], - [-101.360664, 22.65491], - [-101.359376, 22.653533], - [-101.340877, 22.657936], - [-101.336937, 22.658756], - [-101.305894, 22.609973], - [-101.305709, 22.60993], - [-101.286276, 22.509032], - [-101.285726, 22.507856], - [-101.313726, 22.45349], - [-101.374786, 22.456458], - [-101.378429, 22.394622], - [-101.381911, 22.357485], - [-101.432972, 22.363277], - [-101.434721, 22.345622], - [-101.435125, 22.341534], - [-101.392648, 22.300188], - [-101.391435, 22.299902], - [-101.415478, 22.268315], - [-101.416259, 22.267346], - [-101.377242, 22.261425], - [-101.376804, 22.261656], - [-101.33234, 22.212042], - [-101.324253, 22.209893], - [-101.34692, 22.182319], - [-101.351306, 22.17676], - [-101.337693, 22.143523], - [-101.327745, 22.144112], - [-101.352632, 22.079167], - [-101.35424, 22.071735], - [-101.345885, 22.053606], - [-101.346587, 22.04969], - [-101.374784, 22.044418], - [-101.377078, 22.044962], - [-101.369529, 22.028829], - [-101.369738, 22.027517], - [-101.381855, 22.024202], - [-101.382755, 22.020738], - [-101.354621, 22.030413], - [-101.351675, 22.043789], - [-101.327851, 22.021906], - [-101.327208, 22.021498], - [-101.346019, 22.027066], - [-101.348572, 22.028071], - [-101.3518, 22.015669], - [-101.352439, 22.013082], - [-101.326618, 22.000825], - [-101.32651, 21.999728], - [-101.37235, 21.990795], - [-101.373366, 21.990249], - [-101.428278, 21.93471], - [-101.429173, 21.934361], - [-101.410806, 21.910137], - [-101.410228, 21.908694], - [-101.434034, 21.897457], - [-101.434596, 21.897065], - [-101.440112, 21.910265], - [-101.441803, 21.909338], - [-101.440763, 21.892896], - [-101.440675, 21.892716], - [-101.480997, 21.868168], - [-101.483196, 21.867681], - [-101.495053, 21.835704], - [-101.503515, 21.830124], - [-101.496346, 21.809987], - [-101.496331, 21.80994], - [-101.510126, 21.799384], - [-101.510542, 21.799058], - [-101.51976, 21.812979], - [-101.522044, 21.818023], - [-101.536376, 21.810194], - [-101.537012, 21.810462], - [-101.552237, 21.834683], - [-101.561421, 21.836051], - [-101.569434, 21.905878], - [-101.569806, 21.917081], - [-101.595552, 21.909921], - [-101.595849, 21.909963], - [-101.6159, 21.928942], - [-101.616712, 21.929448], - [-101.650117, 21.90741], - [-101.650696, 21.907675], - [-101.659164, 21.941544], - [-101.659141, 21.941595], - [-101.743622, 22.010198], - [-101.74663, 22.012065], - [-101.775654, 22.007409], - [-101.777633, 22.007302], - [-101.801244, 22.030273], - [-101.801436, 22.030996], - [-101.815689, 22.020152], - [-101.815673, 22.019983], - [-101.861382, 22.028781], - [-101.86167, 22.028884], - [-101.855754, 22.045449], - [-101.855192, 22.046511], - [-102.022038, 22.128488], - [-102.025915, 22.129771], - [-102.017934, 22.151655], - [-102.017075, 22.153961], - [-102.04509, 22.153691], - [-102.045221, 22.153733], - [-102.029467, 22.168666], - [-102.000993, 22.168111], - [-101.999724, 22.233084], - [-101.999716, 22.233656], - [-102.02241, 22.24158], - [-102.022495, 22.241585], - [-102.036562, 22.297627], - [-102.03727, 22.298976], - [-102.062898, 22.301749], - [-102.075627, 22.306073], - [-102.104613, 22.281259], - [-102.10525, 22.280793], - [-102.124111, 22.286956], - [-102.15323, 22.29041], - [-102.149847, 22.347175], - [-102.252389, 22.374466], - [-102.253201, 22.374495], - [-102.249176, 22.385639], - [-102.250299, 22.387222], - [-102.28964, 22.419736], - [-102.290076, 22.419918], - [-102.298505, 22.459538], - [-102.311805, 22.456916], - [-102.321344, 22.389653], - [-102.321365, 22.388533], - [-102.35925, 22.384952], - [-102.378443, 22.360879], - [-102.46753, 22.350994], - [-102.468642, 22.351881], - [-102.468991, 22.310169], - [-102.470202, 22.30921], - [-102.526007, 22.291003], - [-102.527039, 22.290899], - [-102.6629, 22.291835], - [-102.668743, 22.291871], - [-102.66967, 22.258298], - [-102.670017, 22.245702], - [-102.641685, 22.226356], - [-102.639299, 22.226039], - [-102.652136, 22.193832], - [-102.651596, 22.19314], - [-102.668588, 22.194501], - [-102.66931, 22.194024], - [-102.690939, 22.107175], - [-102.690865, 22.106555], - [-102.755033, 22.074327], - [-102.755806, 22.073662], - [-102.872825, 21.856429], - [-102.874177, 21.852771], - [-102.850108, 21.833877], - [-102.847315, 21.833409], - [-102.852582, 21.803962], - [-102.853345, 21.799053], - [-102.832039, 21.797746], - [-102.831262, 21.797249], - [-102.817245, 21.767066], - [-102.816916, 21.766475], - [-102.748588, 21.722187], - [-102.7453, 21.720052], - [-102.766281, 21.688099], - [-102.766492, 21.686928], - [-102.80392, 21.671716], - [-102.805279, 21.671282], - [-102.774422, 21.659112], - [-102.773405, 21.658306], - [-102.783277, 21.647045], - [-102.783615, 21.646693], - [-102.764891, 21.596427], - [-102.764741, 21.596065], - [-102.695575, 21.572952], - [-102.695101, 21.572913], - [-102.696881, 21.543759], - [-102.69641, 21.54303], - [-102.631888, 21.534271], - [-102.630734, 21.533983], - [-102.641611, 21.519423], - [-102.642167, 21.518721], - [-102.62595, 21.502961], - [-102.624842, 21.501411], - [-102.648763, 21.47476], - [-102.649067, 21.474197], - [-102.636659, 21.463299], - [-102.63613, 21.462908], - [-102.654612, 21.447186], - [-102.655007, 21.44665], - [-102.659407, 21.411465], - [-102.659669, 21.410877], - [-102.638223, 21.393419], - [-102.638141, 21.393237], - [-102.642539, 21.36747], - [-102.642595, 21.367201], - [-102.694093, 21.340711], - [-102.695055, 21.340744], - [-102.728743, 21.387311], - [-102.729128, 21.387356], - [-102.727857, 21.357445], - [-102.72796, 21.357088], - [-102.757192, 21.339795], - [-102.757765, 21.339186], - [-102.755563, 21.32445], - [-102.755281, 21.323159], - [-102.770964, 21.315894], - [-102.771818, 21.316006], - [-102.786797, 21.329964], - [-102.788916, 21.329507], - [-102.796251, 21.313363], - [-102.798499, 21.306914], - [-102.810839, 21.323863], - [-102.811964, 21.323717], - [-102.815524, 21.295113], - [-102.815159, 21.294669], - [-102.837734, 21.302699], - [-102.839739, 21.301574], - [-102.875429, 21.238068], - [-102.87611, 21.237089], - [-102.902328, 21.2359], - [-102.903029, 21.235186], - [-102.910051, 21.206751], - [-102.910652, 21.205235], - [-102.944964, 21.214102], - [-102.947811, 21.214601], - [-102.94621, 21.234323], - [-102.946294, 21.234443], - [-102.996059, 21.259225], - [-102.996904, 21.259682], - [-103.015803, 21.24207], - [-103.017014, 21.241049], - [-103.045537, 21.249191], - [-103.045884, 21.249426], - [-103.044169, 21.262125], - [-103.044892, 21.262365], - [-103.065308, 21.255778], - [-103.0655, 21.255806], - [-103.056979, 21.24724], - [-103.056985, 21.246788], - [-103.08385, 21.195415], - [-103.084306, 21.194059], - [-103.071334, 21.153383], - [-103.071376, 21.152934], - [-103.098615, 21.131172], - [-103.0985, 21.128493], - [-103.076267, 21.097373], - [-103.07579, 21.096889], - [-103.056973, 21.099805], - [-103.056475, 21.09932], - [-103.087878, 21.06624], - [-103.088425, 21.065742], - [-103.12285, 21.066907], - [-103.123323, 21.066804], - [-103.128303, 21.053311], - [-103.129305, 21.053278], - [-103.188028, 21.070589], - [-103.188367, 21.07066], - [-103.209107, 21.094141], - [-103.209602, 21.094221], - [-103.257829, 21.083325], - [-103.258235, 21.083066], - [-103.274374, 21.052246], - [-103.275731, 21.051447], - [-103.296078, 21.064832], - [-103.296558, 21.064838], - [-103.337897, 21.04204], - [-103.338862, 21.041869], - [-103.38529, 21.067214], - [-103.385507, 21.06739], - [-103.428209, 21.146414], - [-103.428582, 21.146724], - [-103.499707, 21.129684], - [-103.504052, 21.127739], - [-103.510884, 21.145759], - [-103.510964, 21.146222], - [-103.530219, 21.142005], - [-103.531465, 21.141978], - [-103.553696, 21.116748], - [-103.554447, 21.11658], - [-103.590059, 21.127514], - [-103.590441, 21.127522], - [-103.618433, 21.188261], - [-103.618634, 21.188779], - [-103.666759, 21.215837], - [-103.667324, 21.216049], - [-103.640774, 21.222048], - [-103.640196, 21.222072], - [-103.634214, 21.281888], - [-103.633993, 21.282292], - [-103.666347, 21.290499], - [-103.666681, 21.290465], - [-103.715847, 21.267826], - [-103.716211, 21.267868], - [-103.720351, 21.306702], - [-103.720839, 21.307961], - [-103.706022, 21.32485], - [-103.705085, 21.325498], - [-103.678362, 21.319974], - [-103.677404, 21.319911], - [-103.617383, 21.352853], - [-103.616945, 21.35341], - [-103.578896, 21.330411], - [-103.578452, 21.330234], - [-103.568417, 21.351667], - [-103.56763, 21.352216], - [-103.511095, 21.354832], - [-103.509964, 21.354893], - [-103.504183, 21.376195], - [-103.50392, 21.376837], - [-103.538577, 21.444411], - [-103.5387, 21.444771], - [-103.575517, 21.43637], - [-103.575884, 21.436154], - [-103.594331, 21.391673], - [-103.595312, 21.390906], - [-103.626448, 21.434071], - [-103.626525, 21.434482], - [-103.660414, 21.441206], - [-103.66079, 21.441584], - [-103.659248, 21.462922], - [-103.658743, 21.463698], - [-103.700017, 21.466435], - [-103.701465, 21.466266], - [-103.673081, 21.505221], - [-103.672578, 21.505455], - [-103.694331, 21.528681], - [-103.694487, 21.528887], - [-103.6898, 21.551297], - [-103.689789, 21.552353], - [-103.661235, 21.556143], - [-103.658316, 21.555907], - [-103.645231, 21.576166], - [-103.644878, 21.576454], - [-103.61932, 21.557145], - [-103.619005, 21.556864], - [-103.593809, 21.559279], - [-103.592918, 21.559226], - [-103.590922, 21.58944], - [-103.590497, 21.589795], - [-103.559737, 21.576851], - [-103.558892, 21.576404], - [-103.545397, 21.587406], - [-103.545222, 21.587639], - [-103.555488, 21.632095], - [-103.555492, 21.634084], - [-103.509547, 21.737678], - [-103.508474, 21.739735], - [-103.572022, 21.801772], - [-103.572627, 21.80349], - [-103.527293, 21.804955], - [-103.526058, 21.805065], - [-103.531483, 21.817426], - [-103.531425, 21.817839], - [-103.503399, 21.83248], - [-103.502817, 21.833075], - [-103.470688, 21.813532], - [-103.47053, 21.81354], - [-103.472216, 21.835187], - [-103.472357, 21.836004], - [-103.456322, 21.832509], - [-103.455357, 21.832796], - [-103.413566, 21.904437], - [-103.41387, 21.905455], - [-103.394487, 21.896697], - [-103.394339, 21.896695], - [-103.345012, 21.913425], - [-103.34408, 21.913472], - [-103.341756, 21.939517], - [-103.341351, 21.940403], - [-103.279145, 21.989102], - [-103.278561, 21.98965], - [-103.265091, 21.972156], - [-103.264715, 21.971845], - [-103.206632, 21.965206], - [-103.205568, 21.965194], - [-103.191968, 21.973408], - [-103.191812, 21.97445], - [-103.201879, 21.998369], - [-103.201662, 21.998568], - [-103.111973, 22.013996], - [-103.111486, 22.014261], - [-103.107274, 22.058012], - [-103.107909, 22.063396], - [-103.149576, 22.070828], - [-103.154285, 22.072237], - [-103.152596, 22.086232], - [-103.152784, 22.087622], - [-103.104232, 22.101908], - [-103.1017, 22.101798], - [-103.077701, 22.124911], - [-103.077025, 22.125504], - [-103.108077, 22.144026], - [-103.108798, 22.144341], - [-103.101445, 22.178621], - [-103.106059, 22.191356], - [-103.055535, 22.213949], - [-103.05477, 22.213827], - [-103.055681, 22.241242], - [-103.055455, 22.247256], - [-103.100533, 22.293856], - [-103.100988, 22.293975], - [-103.189234, 22.298297], - [-103.190574, 22.298527], - [-103.220238, 22.280222], - [-103.220622, 22.280466], - [-103.208298, 22.332799], - [-103.208233, 22.333081], - [-103.169086, 22.353828], - [-103.16859, 22.354616], - [-103.169378, 22.383682], - [-103.168578, 22.385013], - [-103.198276, 22.38113], - [-103.198771, 22.380601], - [-103.212564, 22.409667], - [-103.213413, 22.410073], - [-103.231041, 22.395425], - [-103.232121, 22.393394], - [-103.28449, 22.414363], - [-103.285231, 22.414244], - [-103.300134, 22.393387], - [-103.300502, 22.39299], - [-103.313945, 22.404846], - [-103.314585, 22.404908], - [-103.364441, 22.369686], - [-103.364717, 22.369536], - [-103.366279, 22.353217], - [-103.366683, 22.351039], - [-103.346881, 22.336281], - [-103.342955, 22.335122], - [-103.363591, 22.314731], - [-103.363756, 22.314483], - [-103.350702, 22.308573], - [-103.350093, 22.307457], - [-103.355867, 22.280125], - [-103.355688, 22.279799], - [-103.332663, 22.298179], - [-103.327706, 22.30736], - [-103.307802, 22.306311], - [-103.306883, 22.306283], - [-103.298164, 22.29865], - [-103.29779, 22.298337], - [-103.313656, 22.259501], - [-103.313938, 22.258711], - [-103.294693, 22.254443], - [-103.295104, 22.253285], - [-103.309257, 22.236205], - [-103.311934, 22.233257], - [-103.33354, 22.241966], - [-103.337697, 22.245164], - [-103.39976, 22.214039], - [-103.40896, 22.215365], - [-103.42894, 22.190561], - [-103.434125, 22.190761], - [-103.421195, 22.178941], - [-103.419686, 22.177483], - [-103.438711, 22.118306], - [-103.4395, 22.117639], - [-103.500696, 22.105433], - [-103.501564, 22.105564], - [-103.515169, 22.109486], - [-103.515897, 22.109916], - [-103.514171, 22.128813], - [-103.514551, 22.129109], - [-103.542005, 22.120541], - [-103.542737, 22.120612], - [-103.559233, 22.136609], - [-103.560141, 22.136586], - [-103.579028, 22.128152], - [-103.57995, 22.126827], - [-103.580799, 22.105519], - [-103.58112, 22.104871], - [-103.604456, 22.098492], - [-103.604705, 22.097942], - [-103.682872, 22.109019], - [-103.683847, 22.109205], - [-103.690509, 22.129282], - [-103.690293, 22.130093], - [-103.597217, 22.272449], - [-103.594903, 22.273078], - [-103.637267, 22.294871], - [-103.637788, 22.295233], - [-103.642136, 22.340158], - [-103.642111, 22.340873], - [-103.605086, 22.33995], - [-103.604802, 22.340142], - [-103.594133, 22.406506], - [-103.59402, 22.407215], - [-103.559216, 22.427907], - [-103.559194, 22.428428], - [-103.602511, 22.555846], - [-103.602759, 22.556792], - [-103.660236, 22.547496], - [-103.661011, 22.547144], - [-103.725819, 22.573944], - [-103.726555, 22.574147], - [-103.768364, 22.555775], - [-103.769102, 22.555789], - [-103.808046, 22.43134], - [-103.810176, 22.427285], - [-103.811317, 22.377657], - [-103.811152, 22.376745], - [-103.845296, 22.343015], - [-103.845434, 22.342757], - [-103.828506, 22.287913], - [-103.82862, 22.286613], - [-103.862163, 22.171786], - [-103.862936, 22.166882], - [-103.917476, 22.261399], - [-103.917876, 22.26197], - [-103.910089, 22.28277], - [-103.910149, 22.283328], - [-103.926022, 22.331616], - [-103.926124, 22.332073], - [-103.886183, 22.399923], - [-103.8862, 22.400203], - [-103.869312, 22.401262], - [-103.866929, 22.409381], - [-103.891981, 22.435791], - [-103.8947, 22.438164], - [-103.876513, 22.440943], - [-103.876098, 22.441184], - [-103.885303, 22.473357], - [-103.885369, 22.473525], - [-103.864756, 22.489954], - [-103.863985, 22.491443], - [-103.874568, 22.521084], - [-103.875186, 22.521576], - [-103.85194, 22.553262], - [-103.851798, 22.55362], - [-103.860754, 22.567325], - [-103.860721, 22.567619], - [-103.761316, 22.625403], - [-103.760962, 22.625614], - [-103.751956, 22.710491], - [-103.751986, 22.711645], - [-103.774204, 22.733759], - [-103.774674, 22.733869], - [-103.897868, 22.728399], - [-103.898328, 22.728277], - [-103.908855, 22.749976], - [-103.909342, 22.750124], - [-104.011927, 22.747928], - [-104.012999, 22.747626], - [-104.055047, 22.724314], - [-104.055912, 22.723978], - [-104.05867, 22.692874], - [-104.059164, 22.692064], - [-104.072811, 22.698308], - [-104.073623, 22.696953], - [-104.016811, 22.669623], - [-104.015509, 22.668911], - [-104.033141, 22.634765], - [-104.033294, 22.634109], - [-104.025719, 22.614239], - [-104.027006, 22.613178], - [-103.986759, 22.591186], - [-103.986222, 22.590902], - [-104.000777, 22.567271], - [-104.000839, 22.566775], - [-103.974057, 22.545736], - [-103.972332, 22.545114], - [-104.005331, 22.537136], - [-104.005571, 22.5366], - [-103.935144, 22.500495], - [-103.934411, 22.499922], - [-103.930142, 22.476457], - [-103.929393, 22.476099], - [-103.959966, 22.43442], - [-103.96057, 22.433179], - [-104.00533, 22.408706], - [-104.005906, 22.408684], - [-104.014711, 22.365362], - [-104.015134, 22.364813], - [-104.04828, 22.376271], - [-104.048753, 22.376445], - [-104.097047, 22.357576], - [-104.097345, 22.357824], - [-104.095126, 22.375901], - [-104.094895, 22.376306], - [-104.076647, 22.381806], - [-104.075391, 22.383131], - [-104.051628, 22.466624], - [-104.051575, 22.466748], - [-104.081481, 22.533045], - [-104.08188, 22.533556], - [-104.119653, 22.517809], - [-104.120381, 22.517485], - [-104.115254, 22.498549], - [-104.113509, 22.49661], - [-104.150079, 22.513278], - [-104.150407, 22.516276], - [-104.189519, 22.507786], - [-104.19023, 22.507612], - [-104.214116, 22.483827], - [-104.214828, 22.484161], - [-104.186358, 22.471786], - [-104.18573, 22.471413], - [-104.195195, 22.447758], - [-104.1951, 22.447631], - [-104.169432, 22.444414], - [-104.167487, 22.44515], - [-104.175926, 22.427372], - [-104.178856, 22.427432], - [-104.167092, 22.387625], - [-104.167386, 22.387356], - [-104.207485, 22.421943], - [-104.207869, 22.422208], - [-104.225108, 22.419447], - [-104.225724, 22.419338], - [-104.258019, 22.385077], - [-104.258339, 22.384658], - [-104.254597, 22.349026], - [-104.254743, 22.348789], - [-104.27376, 22.342769], - [-104.274773, 22.342795], - [-104.352613, 22.395359], - [-104.353533, 22.401315], - [-104.298009, 22.465658], - [-104.296126, 22.472989], - [-104.322705, 22.533027], - [-104.325824, 22.537397], - [-104.30638, 22.557417], - [-104.305689, 22.557889], - [-104.289341, 22.553171], - [-104.28885, 22.552965], - [-104.278447, 22.582732], - [-104.278173, 22.583071], - [-104.262002, 22.586064], - [-104.261407, 22.586203], - [-104.283018, 22.620377], - [-104.283199, 22.621157], - [-104.269691, 22.635297], - [-104.269275, 22.635821], - [-104.289876, 22.644906], - [-104.289966, 22.64561], - [-104.26761, 22.73155], - [-104.266344, 22.736539], - [-104.232822, 22.752932], - [-104.232075, 22.753104], - [-104.221652, 22.779289], - [-104.221039, 22.77942], - [-104.182704, 22.758353], - [-104.182181, 22.758268], - [-104.081052, 22.765343], - [-104.080475, 22.766617], - [-104.095007, 22.805495], - [-104.095227, 22.805839], - [-104.111338, 22.809986], - [-104.111485, 22.810311], - [-104.112584, 22.904837], - [-104.112644, 22.905118], - [-104.132659, 22.90476], - [-104.132994, 22.904959], - [-104.16566, 22.944348], - [-104.166593, 22.945221], - [-104.172203, 23.103079], - [-104.172132, 23.128408], - [-104.138183, 23.170867], - [-104.129023, 23.182214], - [-104.112321, 23.344895], - [-104.111215, 23.351205], - [-104.064931, 23.460757], - [-104.065977, 23.463493], - [-103.926258, 23.556196], - [-103.925313, 23.556983], - [-103.921509, 23.589111], - [-103.921469, 23.589175], - [-103.890546, 23.579733], - [-103.890087, 23.579828], - [-103.903525, 23.598935], - [-103.906867, 23.601871], - [-103.886892, 23.595414], - [-103.882522, 23.592271], - [-103.87738, 23.628869], - [-103.877429, 23.62897], - [-103.852646, 23.638647], - [-103.849179, 23.640082], - [-103.819162, 23.616668], - [-103.811302, 23.613649], - [-103.794909, 23.629155], - [-103.793542, 23.630855], - [-103.78513, 23.676431], - [-103.785104, 23.676565], - [-103.847606, 23.679441], - [-103.851081, 23.679599], - [-103.841095, 23.700988], - [-103.841015, 23.701243], - [-103.85449, 23.727922], - [-103.862362, 23.752638], - [-103.817387, 23.806698], - [-103.816067, 23.80765], - [-103.849754, 23.862566], - [-103.853112, 23.874616], - [-103.819778, 23.96086], - [-103.81836, 23.964909], - [-103.837549, 23.964081], - [-103.838799, 23.964824], - [-103.857392, 23.994691], - [-103.872387, 24.007022], - [-103.847826, 24.003236], - [-103.843129, 24.026967], - [-103.832225, 24.02398], - [-103.813274, 24.021974], - [-103.810282, 24.040092], - [-103.79977, 24.050564], - [-103.662252, 24.148237], - [-103.660362, 24.149326], - [-103.63597, 24.110293], - [-103.622007, 24.117465], - [-103.559734, 24.193316], - [-103.559602, 24.193588], - [-103.568357, 24.281941], - [-103.56835, 24.286371], - [-103.508065, 24.287722], - [-103.506755, 24.287964], - [-103.484208, 24.318116], - [-103.484063, 24.318341], - [-103.449031, 24.33211], - [-103.44834, 24.3326], - [-103.419542, 24.430393], - [-103.419332, 24.430488], - [-103.282902, 24.429019], - [-103.282645, 24.428837], - [-103.255443, 24.445534], - [-103.253532, 24.447254], - [-103.222246, 24.420594], - [-103.222834, 24.417103], - [-103.167809, 24.43494], - [-103.165982, 24.435278], - [-103.118383, 24.415268], - [-103.098527, 24.401627], - [-103.087515, 24.436027], - [-103.075081, 24.422625], - [-103.044424, 24.464675], - [-103.04315, 24.466501], - [-102.991897, 24.437715], - [-102.983573, 24.433257], - [-102.967445, 24.457635], - [-102.96744, 24.457704], - [-102.901358, 24.428597], - [-102.900107, 24.4285], - [-102.892181, 24.460859], - [-102.891891, 24.461118], - [-102.834045, 24.390109], - [-102.831736, 24.384692], - [-102.789553, 24.406154], - [-102.788852, 24.406248], - [-102.756986, 24.37733], - [-102.756654, 24.376983], - [-102.703987, 24.374133], - [-102.699904, 24.373972], - [-102.607299, 24.405399], - [-102.606593, 24.411169], - [-102.565813, 24.408809], - [-102.533931, 24.407722], - [-102.520224, 24.422872], - [-102.520146, 24.423932], - [-102.480542, 24.42789], - [-102.480267, 24.428014], - [-102.494641, 24.612555], - [-102.512182, 24.709721], - [-102.565373, 24.866355], - [-102.566236, 24.902221], - [-102.636724, 24.928976], - [-102.673062, 24.942752], - [-102.67299, 24.976238], - [-102.672984, 24.978818], - [-102.64676, 24.978671], - [-102.642956, 24.978648], - [-102.635543, 25.004169], - [-102.628885, 25.008322], - [-102.668313, 25.06392], - [-102.669694, 25.066636], - [-102.485252, 25.011134], - [-102.446763, 24.999515], - [-102.453678, 25.048138], - [-102.463325, 25.115916], - [-102.356956, 25.121846], - [-102.295513, 25.125236], - [-101.84881, 25.017624] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "10", - "name": "Durango", - "id": 10, - "ISOCODE": "MX-DUR" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-105.967316, 26.785537], - [-105.939194, 26.763216], - [-105.901661, 26.759564], - [-105.898337, 26.763854], - [-105.894102, 26.741009], - [-105.874542, 26.738576], - [-105.865437, 26.747376], - [-105.814553, 26.690967], - [-105.775809, 26.660933], - [-105.794261, 26.698767], - [-105.746792, 26.713925], - [-105.746342, 26.713869], - [-105.734966, 26.685326], - [-105.734964, 26.68482], - [-105.728908, 26.697896], - [-105.704799, 26.652908], - [-105.68988, 26.657189], - [-105.670948, 26.635226], - [-105.674883, 26.61767], - [-105.607592, 26.61397], - [-105.60101, 26.614849], - [-105.615959, 26.66818], - [-105.619487, 26.683509], - [-105.565337, 26.577645], - [-105.549003, 26.546579], - [-105.496513, 26.542892], - [-105.496085, 26.542852], - [-105.471514, 26.508702], - [-105.471137, 26.508664], - [-105.470337, 26.527826], - [-105.470142, 26.527898], - [-105.404686, 26.518066], - [-105.403428, 26.517525], - [-105.369191, 26.534014], - [-105.368625, 26.534269], - [-105.344107, 26.504493], - [-105.342706, 26.504516], - [-105.356873, 26.484944], - [-105.35563, 26.481626], - [-105.31737, 26.462492], - [-105.316752, 26.462287], - [-105.288883, 26.488522], - [-105.287925, 26.488927], - [-105.265002, 26.462416], - [-105.264683, 26.462073], - [-105.182063, 26.492154], - [-105.10155, 26.521406], - [-105.07401, 26.458824], - [-105.056634, 26.419301], - [-105.000547, 26.454835], - [-105.000389, 26.454951], - [-104.96345, 26.449071], - [-104.963104, 26.449184], - [-104.965646, 26.470613], - [-104.965405, 26.471176], - [-104.944618, 26.46829], - [-104.944377, 26.468345], - [-104.908551, 26.505499], - [-104.8989, 26.510018], - [-104.852104, 26.505636], - [-104.809274, 26.508497], - [-104.727707, 26.478398], - [-104.727036, 26.477965], - [-104.626133, 26.371554], - [-104.625406, 26.371009], - [-104.593856, 26.38044], - [-104.574451, 26.340468], - [-104.500991, 26.414726], - [-104.500974, 26.414757], - [-104.503062, 26.464981], - [-104.502829, 26.465846], - [-104.435335, 26.602791], - [-104.434775, 26.604521], - [-104.333695, 26.655512], - [-104.330387, 26.656533], - [-104.296928, 26.717918], - [-104.286543, 26.725403], - [-104.317031, 26.760284], - [-104.31728, 26.760737], - [-104.313567, 26.763379], - [-104.301762, 26.771949], - [-104.315242, 26.798645], - [-104.315307, 26.79907], - [-104.274286, 26.841421], - [-104.273042, 26.84228], - [-104.227671, 26.779308], - [-104.227809, 26.777154], - [-104.056933, 26.748158], - [-104.045738, 26.742977], - [-104.040067, 26.754764], - [-104.033191, 26.774391], - [-104.000842, 26.777059], - [-103.994995, 26.77754], - [-103.993884, 26.776363], - [-103.993833, 26.75361], - [-103.861297, 26.750421], - [-103.861298, 26.754095], - [-103.668353, 26.720371], - [-103.658256, 26.719484], - [-103.643891, 26.690158], - [-103.415964, 26.616736], - [-103.374183, 26.602355], - [-103.317626, 26.365276], - [-103.316793, 26.361776], - [-103.262904, 26.287591], - [-103.260825, 26.284727], - [-103.330745, 26.173764], - [-103.350488, 26.14239], - [-103.346366, 25.860699], - [-103.34636, 25.860304], - [-103.318918, 25.814802], - [-103.318588, 25.812701], - [-103.332331, 25.742817], - [-103.333705, 25.738736], - [-103.352317, 25.717377], - [-103.352836, 25.716553], - [-103.339394, 25.707904], - [-103.339437, 25.707605], - [-103.381321, 25.640443], - [-103.381422, 25.640342], - [-103.405128, 25.645319], - [-103.406003, 25.645027], - [-103.402802, 25.62903], - [-103.403276, 25.628128], - [-103.423942, 25.624517], - [-103.42477, 25.62368], - [-103.416137, 25.615172], - [-103.416025, 25.614422], - [-103.454654, 25.557929], - [-103.455445, 25.557061], - [-103.494196, 25.538012], - [-103.494414, 25.537732], - [-103.351021, 25.410345], - [-103.341368, 25.410142], - [-103.33692, 25.371344], - [-103.336916, 25.371231], - [-103.405978, 25.398748], - [-103.406699, 25.398901], - [-103.461819, 25.376371], - [-103.462059, 25.376311], - [-103.510937, 25.279817], - [-103.51071, 25.279126], - [-103.403079, 25.182507], - [-103.402858, 25.182349], - [-103.360111, 25.110802], - [-103.359539, 25.110029], - [-103.262754, 25.059005], - [-103.26218, 25.058549], - [-103.277858, 25.034791], - [-103.278015, 25.034614], - [-103.246675, 24.996413], - [-103.246563, 24.996027], - [-103.258763, 24.965121], - [-103.259146, 24.964659], - [-103.092981, 24.82289], - [-103.092947, 24.822861], - [-103.005271, 24.793245], - [-103.005138, 24.793218], - [-102.975215, 24.799464], - [-102.975182, 24.799452], - [-102.869344, 24.74197], - [-102.869344, 24.74197], - [-102.856421, 24.739806], - [-102.856403, 24.739774], - [-102.854936, 24.754222], - [-102.853131, 24.772001], - [-102.671482, 25.063772], - [-102.669694, 25.066636], - [-102.643002, 25.027813], - [-102.628885, 25.008322], - [-102.6342, 24.998701], - [-102.642956, 24.978648], - [-102.667426, 24.978787], - [-102.672984, 24.978818], - [-102.673036, 24.954845], - [-102.673062, 24.942752], - [-102.636724, 24.928976], - [-102.566236, 24.902221], - [-102.51544, 24.71948], - [-102.512182, 24.709721], - [-102.483655, 24.522131], - [-102.479807, 24.490448], - [-102.48693, 24.444655], - [-102.486996, 24.444228], - [-102.47305, 24.442527], - [-102.472697, 24.43968], - [-102.533886, 24.408613], - [-102.533931, 24.407722], - [-102.606555, 24.411167], - [-102.606593, 24.411169], - [-102.699084, 24.374338], - [-102.699904, 24.373972], - [-102.755476, 24.376689], - [-102.756654, 24.376983], - [-102.783422, 24.404077], - [-102.788852, 24.406248], - [-102.830762, 24.385245], - [-102.831736, 24.384692], - [-102.891479, 24.460844], - [-102.891891, 24.461118], - [-102.900282, 24.428971], - [-102.900107, 24.4285], - [-102.967781, 24.457434], - [-102.983573, 24.433257], - [-103.040664, 24.465031], - [-103.04315, 24.466501], - [-103.072398, 24.426013], - [-103.075081, 24.422625], - [-103.087515, 24.436027], - [-103.098527, 24.401627], - [-103.164588, 24.435075], - [-103.165259, 24.435198], - [-103.217888, 24.41721], - [-103.222834, 24.417103], - [-103.25239, 24.446798], - [-103.253532, 24.447254], - [-103.282384, 24.428908], - [-103.282645, 24.428837], - [-103.419332, 24.430488], - [-103.419542, 24.430393], - [-103.44771, 24.333617], - [-103.44834, 24.3326], - [-103.483815, 24.318365], - [-103.484063, 24.318341], - [-103.506873, 24.288745], - [-103.506755, 24.287964], - [-103.558859, 24.287508], - [-103.56835, 24.286371], - [-103.55954, 24.194111], - [-103.559536, 24.193789], - [-103.605766, 24.151154], - [-103.622007, 24.117465], - [-103.63597, 24.110293], - [-103.658063, 24.145538], - [-103.660362, 24.149326], - [-103.811306, 24.03389], - [-103.813274, 24.021974], - [-103.832225, 24.02398], - [-103.843129, 24.026967], - [-103.847826, 24.003236], - [-103.872387, 24.007022], - [-103.833947, 23.969642], - [-103.81836, 23.964909], - [-103.847994, 23.882235], - [-103.853112, 23.874616], - [-103.816198, 23.8077], - [-103.816067, 23.80765], - [-103.860381, 23.755504], - [-103.862362, 23.752638], - [-103.841027, 23.701268], - [-103.841015, 23.701243], - [-103.850399, 23.68043], - [-103.851081, 23.679599], - [-103.813475, 23.67788], - [-103.785104, 23.676565], - [-103.793228, 23.632603], - [-103.793542, 23.630855], - [-103.806277, 23.61783], - [-103.811302, 23.613649], - [-103.837008, 23.630376], - [-103.849179, 23.640082], - [-103.876985, 23.629119], - [-103.877429, 23.62897], - [-103.882394, 23.592991], - [-103.882522, 23.592271], - [-103.904917, 23.603099], - [-103.906867, 23.601871], - [-103.89002, 23.580208], - [-103.890087, 23.579828], - [-103.920945, 23.589058], - [-103.921469, 23.589175], - [-103.924824, 23.557494], - [-103.925313, 23.556983], - [-104.065126, 23.463536], - [-104.065977, 23.463493], - [-104.109696, 23.355127], - [-104.111215, 23.351205], - [-104.128691, 23.187372], - [-104.129023, 23.182214], - [-104.166011, 23.136007], - [-104.172132, 23.128408], - [-104.166129, 22.946178], - [-104.166593, 22.945221], - [-104.133245, 22.905252], - [-104.132994, 22.904959], - [-104.112818, 22.905312], - [-104.112644, 22.905118], - [-104.111419, 22.810638], - [-104.111485, 22.810311], - [-104.095542, 22.806071], - [-104.095227, 22.805839], - [-104.080158, 22.768328], - [-104.080475, 22.766617], - [-104.181538, 22.758475], - [-104.182181, 22.758268], - [-104.220306, 22.778841], - [-104.221039, 22.77942], - [-104.232031, 22.753526], - [-104.232075, 22.753104], - [-104.266175, 22.736604], - [-104.266344, 22.736539], - [-104.289597, 22.646613], - [-104.289966, 22.64561], - [-104.269603, 22.636279], - [-104.269275, 22.635821], - [-104.283129, 22.622054], - [-104.283288, 22.621703], - [-104.261405, 22.586631], - [-104.261407, 22.586203], - [-104.32562, 22.537497], - [-104.325824, 22.537397], - [-104.302831, 22.492017], - [-104.296126, 22.472989], - [-104.321514, 22.433866], - [-104.320188, 22.430094], - [-104.345902, 22.414985], - [-104.348843, 22.409717], - [-104.351181, 22.410949], - [-104.371512, 22.421659], - [-104.494135, 22.376255], - [-104.49539, 22.376324], - [-104.481209, 22.351818], - [-104.48121, 22.351617], - [-104.506221, 22.345084], - [-104.506377, 22.345099], - [-104.592976, 22.411871], - [-104.593085, 22.411955], - [-104.602715, 22.459897], - [-104.602561, 22.460508], - [-104.651982, 22.462402], - [-104.655292, 22.462155], - [-104.655893, 22.539862], - [-104.655755, 22.54007], - [-104.669635, 22.564864], - [-104.669998, 22.565262], - [-104.708209, 22.554735], - [-104.708737, 22.554624], - [-104.719359, 22.568686], - [-104.719797, 22.569045], - [-104.735358, 22.55838], - [-104.736067, 22.55795], - [-104.759254, 22.568514], - [-104.759812, 22.568718], - [-104.77575, 22.584721], - [-104.775934, 22.585123], - [-104.774106, 22.632316], - [-104.774094, 22.63255], - [-104.793542, 22.648607], - [-104.793992, 22.648711], - [-104.814378, 22.634283], - [-104.814678, 22.634249], - [-104.840116, 22.651139], - [-104.858397, 22.648327], - [-104.862398, 22.608028], - [-104.862493, 22.60707], - [-104.96071, 22.505267], - [-104.987913, 22.498727], - [-105.007553, 22.585672], - [-105.072369, 22.656499], - [-105.068423, 22.678414], - [-104.903802, 22.734095], - [-104.89272, 22.737409], - [-104.915432, 22.748283], - [-104.915637, 22.748538], - [-104.905601, 22.799399], - [-104.905576, 22.799578], - [-104.918084, 22.819356], - [-104.918389, 22.819781], - [-104.958016, 22.813646], - [-104.958967, 22.813605], - [-104.987748, 22.83536], - [-104.988405, 22.836049], - [-104.987695, 22.887188], - [-104.987796, 22.888252], - [-105.00971, 22.921482], - [-105.010039, 22.922363], - [-105.003864, 22.976165], - [-105.003139, 22.976983], - [-105.314905, 22.945629], - [-105.32357, 22.94133], - [-105.342741, 22.967478], - [-105.343049, 22.968159], - [-105.333801, 22.994141], - [-105.333705, 22.994682], - [-105.35375, 23.019438], - [-105.353857, 23.019785], - [-105.350346, 23.060176], - [-105.350471, 23.060575], - [-105.414588, 23.114293], - [-105.415892, 23.116897], - [-105.474676, 23.121994], - [-105.501978, 23.128012], - [-105.553177, 23.098898], - [-105.554309, 23.098887], - [-105.643107, 23.141053], - [-105.643991, 23.141768], - [-105.63048, 23.234487], - [-105.630317, 23.235581], - [-105.642344, 23.238076], - [-105.642636, 23.238958], - [-105.642871, 23.275433], - [-105.643208, 23.276479], - [-105.686187, 23.286586], - [-105.687084, 23.28752], - [-105.694056, 23.340154], - [-105.694005, 23.340569], - [-105.730438, 23.374497], - [-105.73069, 23.374897], - [-105.700321, 23.419686], - [-105.700289, 23.420171], - [-105.738392, 23.444638], - [-105.738865, 23.445206], - [-105.723588, 23.474469], - [-105.723445, 23.47484], - [-105.760048, 23.502507], - [-105.760339, 23.502959], - [-105.769035, 23.555963], - [-105.769302, 23.556465], - [-105.80735, 23.590634], - [-105.811644, 23.611029], - [-105.837849, 23.604937], - [-105.845516, 23.603256], - [-105.845234, 23.589872], - [-105.845186, 23.583695], - [-105.853596, 23.597288], - [-105.884318, 23.590394], - [-105.892655, 23.552645], - [-105.907193, 23.58454], - [-105.908905, 23.58827], - [-105.920734, 23.655836], - [-105.926634, 23.684136], - [-105.9061, 23.739059], - [-105.906093, 23.739399], - [-105.91066, 23.741397], - [-105.923063, 23.747754], - [-105.951945, 23.819793], - [-105.961266, 23.840742], - [-105.957783, 23.871825], - [-105.953662, 23.908585], - [-105.882274, 23.878542], - [-105.867241, 23.875243], - [-105.85777, 23.898804], - [-105.857588, 23.899296], - [-105.899919, 23.943921], - [-105.945415, 23.948026], - [-105.935761, 23.957277], - [-105.908462, 23.983427], - [-105.912094, 23.997239], - [-105.912136, 23.997534], - [-105.997881, 24.04252], - [-105.99872, 24.043383], - [-106.007908, 24.071757], - [-106.007883, 24.072507], - [-105.989575, 24.113931], - [-105.989724, 24.11439], - [-106.04431, 24.219798], - [-106.043884, 24.22085], - [-106.067982, 24.22025], - [-106.069948, 24.220201], - [-106.075479, 24.270841], - [-106.075843, 24.271389], - [-106.118457, 24.309597], - [-106.15254, 24.33877], - [-106.169975, 24.33365], - [-106.194406, 24.351785], - [-106.268869, 24.374755], - [-106.335232, 24.356404], - [-106.33633, 24.355695], - [-106.363013, 24.304173], - [-106.367545, 24.301941], - [-106.465793, 24.278873], - [-106.469655, 24.277857], - [-106.517094, 24.286984], - [-106.527991, 24.295124], - [-106.595288, 24.409472], - [-106.601588, 24.414566], - [-106.569276, 24.437021], - [-106.559453, 24.469645], - [-106.560016, 24.472711], - [-106.627363, 24.503228], - [-106.630067, 24.506503], - [-106.622607, 24.524897], - [-106.641433, 24.529794], - [-106.645461, 24.528979], - [-106.699146, 24.648555], - [-106.705948, 24.665262], - [-106.861015, 24.818358], - [-106.865853, 24.822955], - [-106.88876, 24.826683], - [-106.902949, 24.828388], - [-106.919277, 24.813953], - [-106.930663, 24.820917], - [-106.950832, 24.857948], - [-106.951418, 24.859024], - [-106.931584, 24.875229], - [-106.934508, 24.880536], - [-107.003224, 24.92587], - [-107.021053, 24.909908], - [-107.025147, 24.928381], - [-107.018344, 24.933617], - [-107.064866, 25.024893], - [-107.063571, 25.025255], - [-107.119158, 25.049193], - [-107.129892, 25.053139], - [-107.124974, 25.185207], - [-107.124919, 25.18664], - [-107.136347, 25.201735], - [-107.148775, 25.224548], - [-107.121247, 25.242622], - [-107.121057, 25.243111], - [-107.156088, 25.261504], - [-107.157203, 25.261765], - [-107.200054, 25.320799], - [-107.207817, 25.331564], - [-107.171551, 25.326358], - [-107.204007, 25.402705], - [-107.210132, 25.417101], - [-107.158859, 25.441923], - [-107.158691, 25.441992], - [-107.139845, 25.489253], - [-107.139295, 25.489565], - [-107.177925, 25.514823], - [-107.178117, 25.515176], - [-107.173813, 25.556148], - [-107.173879, 25.556553], - [-107.124845, 25.550392], - [-107.124565, 25.550414], - [-106.976857, 25.627624], - [-106.97329, 25.62957], - [-106.994396, 25.661795], - [-106.994325, 25.662233], - [-106.899222, 25.643742], - [-106.873756, 25.571865], - [-106.702549, 25.581206], - [-106.705758, 25.59735], - [-106.698846, 25.580839], - [-106.681969, 25.579168], - [-106.700847, 25.596075], - [-106.70797, 25.602451], - [-106.653803, 25.558948], - [-106.652826, 25.558844], - [-106.655595, 25.575166], - [-106.653673, 25.577927], - [-106.631634, 25.585402], - [-106.630848, 25.5858], - [-106.591714, 25.645787], - [-106.591824, 25.647392], - [-106.480738, 25.71878], - [-106.463618, 25.729044], - [-106.464042, 25.74171], - [-106.526555, 25.71338], - [-106.555968, 25.691707], - [-106.560125, 25.912459], - [-106.56013, 25.912707], - [-106.547306, 25.952422], - [-106.533715, 25.945762], - [-106.491665, 25.968053], - [-106.455815, 25.972579], - [-106.444713, 26.005088], - [-106.470407, 26.005426], - [-106.461046, 26.020112], - [-106.453397, 26.027841], - [-106.467675, 26.055461], - [-106.471229, 26.060523], - [-106.458644, 26.112161], - [-106.415615, 26.1394], - [-106.430135, 26.194321], - [-106.432776, 26.204013], - [-106.330718, 26.3231], - [-106.312258, 26.348754], - [-106.288724, 26.335148], - [-106.287041, 26.335082], - [-106.275458, 26.367415], - [-106.302252, 26.365503], - [-106.297598, 26.396455], - [-106.272977, 26.403615], - [-106.264374, 26.406116], - [-106.265221, 26.42414], - [-106.24203, 26.466824], - [-106.253823, 26.507006], - [-106.253881, 26.507356], - [-106.278818, 26.510049], - [-106.280666, 26.511754], - [-106.271652, 26.528082], - [-106.280135, 26.532067], - [-106.233464, 26.558807], - [-106.232961, 26.55956], - [-106.236039, 26.608975], - [-106.23654, 26.612167], - [-106.208201, 26.67691], - [-106.207923, 26.678065], - [-106.18859, 26.67419], - [-106.187989, 26.674476], - [-106.189703, 26.694396], - [-106.189675, 26.695139], - [-106.173086, 26.70481], - [-106.172662, 26.705167], - [-106.131112, 26.701166], - [-106.130674, 26.702203], - [-106.16481, 26.726483], - [-106.176581, 26.727722], - [-106.177613, 26.771442], - [-106.177626, 26.772337], - [-106.127037, 26.779331], - [-106.125262, 26.77941], - [-106.102786, 26.759382], - [-106.100643, 26.759333], - [-106.065048, 26.827633], - [-106.047339, 26.844876], - [-105.967316, 26.785537] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "08", - "name": "Chihuahua", - "id": 11, - "ISOCODE": "MX-CHH" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-107.656585, 31.783705], - [-106.557943, 31.783884], - [-106.528523, 31.783817], - [-106.489729, 31.748484], - [-106.487546, 31.747717], - [-106.453681, 31.76437], - [-106.452051, 31.764623], - [-106.385991, 31.735032], - [-106.381268, 31.732335], - [-106.215875, 31.476254], - [-106.208131, 31.467582], - [-106.082312, 31.399949], - [-106.080197, 31.398603], - [-106.006051, 31.392804], - [-106.004782, 31.392655], - [-105.954224, 31.364634], - [-105.953511, 31.364094], - [-105.938157, 31.318992], - [-105.937828, 31.31824], - [-105.870769, 31.289951], - [-105.870331, 31.289716], - [-105.784149, 31.198837], - [-105.783275, 31.198151], - [-105.774019, 31.167711], - [-105.772577, 31.166208], - [-105.743595, 31.165349], - [-105.741899, 31.164708], - [-105.605599, 31.084599], - [-105.604142, 31.083268], - [-105.560479, 30.993794], - [-105.557586, 30.99005], - [-105.50394, 30.96801], - [-105.502849, 30.96801], - [-105.492032, 30.942856], - [-105.491525, 30.942303], - [-105.401261, 30.890135], - [-105.400095, 30.889383], - [-105.401414, 30.85362], - [-105.401186, 30.853188], - [-105.339982, 30.840497], - [-105.339104, 30.840256], - [-105.317654, 30.81139], - [-105.316508, 30.810879], - [-105.292743, 30.826355], - [-105.291162, 30.825828], - [-105.258082, 30.794956], - [-105.256365, 30.794423], - [-105.216656, 30.805611], - [-105.215552, 30.805899], - [-105.216798, 30.783989], - [-105.21682, 30.783543], - [-105.19624, 30.791715], - [-105.19556, 30.792254], - [-105.176719, 30.768164], - [-105.17555, 30.76758], - [-105.166945, 30.779624], - [-105.165915, 30.779539], - [-105.161922, 30.753202], - [-105.161689, 30.752417], - [-105.119463, 30.749946], - [-105.118588, 30.749595], - [-105.062791, 30.686478], - [-105.061937, 30.685822], - [-105.007567, 30.686026], - [-105.006903, 30.68578], - [-104.973164, 30.611453], - [-104.971677, 30.610004], - [-104.923107, 30.603786], - [-104.922361, 30.603532], - [-104.867331, 30.494546], - [-104.866487, 30.494033], - [-104.86821, 30.442098], - [-104.868243, 30.442027], - [-104.848709, 30.421663], - [-104.847836, 30.42068], - [-104.858885, 30.391279], - [-104.859162, 30.390401], - [-104.817464, 30.3757], - [-104.816567, 30.375117], - [-104.811715, 30.333531], - [-104.811282, 30.332653], - [-104.765928, 30.306513], - [-104.76533, 30.306117], - [-104.762919, 30.275148], - [-104.763187, 30.274583], - [-104.706656, 30.23493], - [-104.706195, 30.234131], - [-104.68688, 30.174283], - [-104.686257, 30.17292], - [-104.695817, 30.134594], - [-104.69645, 30.134675], - [-104.685681, 30.085678], - [-104.685086, 30.085397], - [-104.706216, 30.051681], - [-104.706593, 30.050576], - [-104.692702, 29.976279], - [-104.693487, 29.975833], - [-104.674229, 29.95693], - [-104.673476, 29.956011], - [-104.682732, 29.930021], - [-104.68295, 29.929175], - [-104.566814, 29.772236], - [-104.565347, 29.770135], - [-104.570076, 29.753698], - [-104.56971, 29.752467], - [-104.550391, 29.74158], - [-104.549715, 29.7414], - [-104.560291, 29.737021], - [-104.560438, 29.736079], - [-104.531583, 29.691336], - [-104.530843, 29.690498], - [-104.544362, 29.681572], - [-104.54416, 29.680704], - [-104.509132, 29.633771], - [-104.508334, 29.632651], - [-104.477032, 29.628451], - [-104.476351, 29.62833], - [-104.405551, 29.577047], - [-104.398982, 29.573004], - [-104.385831, 29.544463], - [-104.384923, 29.542991], - [-104.358033, 29.541011], - [-104.356154, 29.541195], - [-104.336762, 29.520417], - [-104.335383, 29.519796], - [-104.315502, 29.532434], - [-104.313408, 29.531759], - [-104.265183, 29.514331], - [-104.263644, 29.514158], - [-104.231555, 29.479898], - [-104.23075, 29.479118], - [-104.21454, 29.485659], - [-104.212882, 29.485089], - [-104.218083, 29.457327], - [-104.217507, 29.456119], - [-104.168114, 29.396263], - [-104.167929, 29.395515], - [-104.109974, 29.373993], - [-104.107813, 29.373575], - [-104.039436, 29.321186], - [-104.037894, 29.319905], - [-103.784592, 29.265901], - [-103.783325, 29.265519], - [-103.778065, 29.224063], - [-103.777303, 29.221934], - [-103.76038, 29.233457], - [-103.758173, 29.23297], - [-103.719042, 29.18189], - [-103.718278, 29.181148], - [-103.650814, 29.157049], - [-103.650146, 29.156694], - [-103.554955, 29.158684], - [-103.554072, 29.158516], - [-103.433616, 29.04434], - [-103.432817, 29.043632], - [-103.361635, 29.018984], - [-103.359604, 29.018786], - [-103.345911, 29.046712], - [-103.345082, 29.046802], - [-103.327771, 29.040557], - [-103.327485, 29.039895], - [-103.337033, 29.018646], - [-103.336475, 29.018173], - [-103.306772, 29.022928], - [-103.306769, 29.022491], - [-103.370875, 28.906812], - [-103.40365, 28.869254], - [-103.396287, 28.833765], - [-103.396347, 28.833529], - [-103.404586, 28.829552], - [-103.410015, 28.840922], - [-103.423554, 28.82129], - [-103.431663, 28.81318], - [-103.542499, 28.633645], - [-103.557295, 28.611281], - [-103.568645, 28.632971], - [-103.572659, 28.640639], - [-103.582001, 28.628794], - [-103.596374, 28.639475], - [-103.606791, 28.595372], - [-103.591916, 28.590834], - [-103.598618, 28.579096], - [-103.601008, 28.574907], - [-103.623747, 28.580907], - [-103.624568, 28.581147], - [-103.643355, 28.530634], - [-103.643011, 28.512462], - [-103.762871, 28.298197], - [-103.76818, 28.300373], - [-103.913284, 28.003454], - [-103.926692, 27.971357], - [-103.915635, 27.968228], - [-103.877716, 27.95749], - [-103.885388, 27.935513], - [-103.892886, 27.914023], - [-103.940716, 27.927477], - [-103.941868, 27.927796], - [-103.939742, 27.933887], - [-103.935643, 27.945342], - [-103.954345, 27.950644], - [-103.954973, 27.950821], - [-103.945783, 27.856388], - [-103.960002, 27.835309], - [-103.943907, 27.826871], - [-103.900844, 27.826857], - [-103.921917, 27.809127], - [-103.93565, 27.797553], - [-103.887422, 27.745912], - [-103.881145, 27.739186], - [-103.896692, 27.740557], - [-103.883245, 27.657592], - [-103.897263, 27.656549], - [-103.854641, 27.549594], - [-103.854601, 27.549433], - [-103.874739, 27.332509], - [-103.876876, 27.311592], - [-103.832688, 27.298486], - [-103.832123, 27.298293], - [-103.798433, 27.212979], - [-103.799398, 27.12473], - [-103.792579, 27.110379], - [-103.78347, 27.091206], - [-103.75261, 27.078108], - [-103.752461, 27.07792], - [-103.742337, 27.024272], - [-103.740834, 27.022522], - [-103.77057, 27.012684], - [-103.779948, 27.008886], - [-103.784458, 26.981483], - [-103.784629, 26.980699], - [-103.852014, 26.934671], - [-103.852089, 26.934619], - [-103.851484, 26.934492], - [-103.835919, 26.935813], - [-103.851943, 26.90523], - [-103.851701, 26.896134], - [-103.759903, 26.832504], - [-103.753968, 26.829573], - [-103.699366, 26.725851], - [-103.699094, 26.725256], - [-103.838138, 26.749964], - [-103.861298, 26.754095], - [-103.951659, 26.753878], - [-103.993833, 26.75361], - [-103.994527, 26.777044], - [-103.994995, 26.77754], - [-104.000842, 26.777059], - [-104.033191, 26.774391], - [-104.041604, 26.749632], - [-104.045738, 26.742977], - [-104.199995, 26.775009], - [-104.227809, 26.777154], - [-104.272848, 26.841895], - [-104.273042, 26.84228], - [-104.314628, 26.799591], - [-104.315307, 26.79907], - [-104.30207, 26.772522], - [-104.301762, 26.771949], - [-104.313567, 26.763379], - [-104.31728, 26.760737], - [-104.286676, 26.725756], - [-104.286543, 26.725403], - [-104.329801, 26.657686], - [-104.330387, 26.656533], - [-104.433761, 26.605424], - [-104.434775, 26.604521], - [-104.500183, 26.466776], - [-104.502829, 26.465846], - [-104.500747, 26.415338], - [-104.500974, 26.414757], - [-104.566244, 26.348771], - [-104.574451, 26.340468], - [-104.593856, 26.38044], - [-104.624386, 26.371096], - [-104.625406, 26.371009], - [-104.726481, 26.477446], - [-104.727036, 26.477965], - [-104.799036, 26.505662], - [-104.809274, 26.508497], - [-104.875845, 26.505546], - [-104.8989, 26.510018], - [-104.94421, 26.468464], - [-104.944377, 26.468345], - [-104.962928, 26.473557], - [-104.963215, 26.473391], - [-104.963038, 26.449547], - [-104.963104, 26.449184], - [-105.000285, 26.454926], - [-105.000389, 26.454951], - [-105.056217, 26.422144], - [-105.056634, 26.419301], - [-105.084344, 26.482317], - [-105.10155, 26.521406], - [-105.182063, 26.492154], - [-105.264683, 26.462073], - [-105.278535, 26.487326], - [-105.279082, 26.487475], - [-105.316588, 26.462382], - [-105.316752, 26.462287], - [-105.35058, 26.478352], - [-105.352765, 26.478876], - [-105.343537, 26.503875], - [-105.342706, 26.504516], - [-105.368168, 26.533993], - [-105.368625, 26.534269], - [-105.40084, 26.517847], - [-105.403428, 26.517525], - [-105.46994, 26.527746], - [-105.470142, 26.527898], - [-105.471137, 26.508664], - [-105.471514, 26.508702], - [-105.496017, 26.542551], - [-105.496085, 26.542852], - [-105.517335, 26.544134], - [-105.549003, 26.546579], - [-105.596415, 26.63792], - [-105.619487, 26.683509], - [-105.6112, 26.651209], - [-105.60101, 26.614849], - [-105.645533, 26.61661], - [-105.674883, 26.61767], - [-105.670948, 26.635226], - [-105.68988, 26.657189], - [-105.704799, 26.652908], - [-105.746027, 26.713634], - [-105.746342, 26.713869], - [-105.794261, 26.698767], - [-105.775809, 26.660933], - [-105.814553, 26.690967], - [-105.865437, 26.747376], - [-105.874542, 26.738576], - [-105.894102, 26.741009], - [-105.898337, 26.763854], - [-105.907621, 26.753018], - [-105.908606, 26.752838], - [-105.937971, 26.765819], - [-105.939194, 26.763216], - [-106.034859, 26.835075], - [-106.047339, 26.844876], - [-106.091003, 26.775056], - [-106.100643, 26.759333], - [-106.124222, 26.777914], - [-106.125262, 26.77941], - [-106.176984, 26.772991], - [-106.177626, 26.772337], - [-106.177423, 26.731534], - [-106.176581, 26.727722], - [-106.141789, 26.720927], - [-106.141444, 26.720787], - [-106.130606, 26.703568], - [-106.130674, 26.702203], - [-106.172138, 26.705119], - [-106.172662, 26.705167], - [-106.18886, 26.696309], - [-106.189675, 26.695139], - [-106.188071, 26.674852], - [-106.187989, 26.674476], - [-106.20665, 26.679367], - [-106.207923, 26.678065], - [-106.236009, 26.613188], - [-106.23654, 26.612167], - [-106.23204, 26.561608], - [-106.232961, 26.55956], - [-106.278167, 26.532762], - [-106.280135, 26.532067], - [-106.270448, 26.527554], - [-106.269571, 26.527169], - [-106.279291, 26.513465], - [-106.280666, 26.511754], - [-106.255092, 26.507204], - [-106.253881, 26.507356], - [-106.242142, 26.466839], - [-106.24203, 26.466824], - [-106.272977, 26.403615], - [-106.297598, 26.396455], - [-106.30221, 26.36443], - [-106.302177, 26.363876], - [-106.275458, 26.367415], - [-106.287041, 26.335082], - [-106.311154, 26.347758], - [-106.312258, 26.348754], - [-106.42382, 26.214779], - [-106.432776, 26.204013], - [-106.425794, 26.178387], - [-106.415615, 26.1394], - [-106.458644, 26.112161], - [-106.454407, 26.09526], - [-106.471229, 26.060523], - [-106.454988, 26.044955], - [-106.453397, 26.027841], - [-106.469933, 26.006061], - [-106.470407, 26.005426], - [-106.444713, 26.005088], - [-106.455815, 25.972579], - [-106.533715, 25.945762], - [-106.547306, 25.952422], - [-106.56013, 25.912707], - [-106.556395, 25.71431], - [-106.555968, 25.691707], - [-106.464042, 25.74171], - [-106.463618, 25.729044], - [-106.591275, 25.647779], - [-106.591824, 25.647392], - [-106.656435, 25.565219], - [-106.652826, 25.558844], - [-106.701004, 25.598486], - [-106.70797, 25.602451], - [-106.700847, 25.596075], - [-106.681969, 25.579168], - [-106.70057, 25.587416], - [-106.705758, 25.59735], - [-106.702549, 25.581206], - [-106.862775, 25.571722], - [-106.873756, 25.571865], - [-106.899222, 25.643742], - [-106.893784, 25.644291], - [-106.956542, 25.653668], - [-106.994325, 25.662233], - [-106.986119, 25.664061], - [-106.96694, 25.668331], - [-106.968809, 25.684298], - [-106.965323, 25.697879], - [-106.990299, 25.714924], - [-107.010574, 25.691527], - [-107.01068, 25.691459], - [-107.045606, 25.699672], - [-107.046144, 25.699875], - [-107.064129, 25.718812], - [-107.064224, 25.719074], - [-107.058381, 25.756811], - [-107.057905, 25.757368], - [-107.24651, 25.877774], - [-107.246601, 25.877841], - [-107.242471, 25.89237], - [-107.296128, 25.924793], - [-107.276715, 26.001872], - [-107.276346, 26.001977], - [-107.306692, 26.048784], - [-107.30489, 26.076402], - [-107.345742, 26.108772], - [-107.346528, 26.109523], - [-107.432347, 26.138246], - [-107.431043, 26.14286], - [-107.518839, 26.105833], - [-107.52002, 26.104227], - [-107.541919, 26.144488], - [-107.543277, 26.146349], - [-107.581708, 26.170606], - [-107.582027, 26.17064], - [-107.635346, 26.154658], - [-107.63575, 26.154578], - [-107.711076, 26.174413], - [-107.711661, 26.1743], - [-107.738208, 26.167577], - [-107.738716, 26.16724], - [-107.755172, 26.134512], - [-107.78069, 26.136938], - [-107.78889, 26.168264], - [-107.788924, 26.168614], - [-107.841504, 26.184911], - [-107.854019, 26.196519], - [-107.856265, 26.226035], - [-108.000586, 26.422162], - [-108.012797, 26.439048], - [-107.988099, 26.456684], - [-107.969639, 26.470168], - [-107.985623, 26.4721], - [-107.985356, 26.47306], - [-107.955471, 26.50542], - [-107.95546, 26.505984], - [-108.031646, 26.61569], - [-108.03181, 26.615924], - [-108.081495, 26.64179], - [-108.081603, 26.641994], - [-108.008777, 26.698389], - [-108.007897, 26.69933], - [-108.010869, 26.754131], - [-108.005701, 26.761049], - [-108.037649, 26.769781], - [-108.026821, 26.798466], - [-108.094107, 26.870464], - [-108.144247, 26.867649], - [-108.142226, 26.9072], - [-108.143102, 26.907884], - [-108.172516, 26.88249], - [-108.174549, 26.881465], - [-108.181729, 26.898184], - [-108.183916, 26.899738], - [-108.205898, 26.906333], - [-108.20739, 26.906], - [-108.206209, 26.88555], - [-108.209717, 26.885438], - [-108.229791, 26.905202], - [-108.230237, 26.905725], - [-108.234841, 26.958141], - [-108.235016, 26.95862], - [-108.181695, 26.993705], - [-108.181524, 26.99411], - [-108.194298, 27.031656], - [-108.194274, 27.031953], - [-108.249854, 27.040771], - [-108.250448, 27.041031], - [-108.28523, 27.012666], - [-108.28601, 27.012471], - [-108.315639, 27.034231], - [-108.316558, 27.034488], - [-108.33212, 27.004739], - [-108.333326, 27.004596], - [-108.349869, 27.022339], - [-108.35011, 27.022554], - [-108.371637, 27.023012], - [-108.40964, 27.013405], - [-108.479608, 27.039582], - [-108.479974, 27.039588], - [-108.502474, 26.987784], - [-108.502486, 26.987357], - [-108.560743, 27.003291], - [-108.572247, 27.012656], - [-108.562535, 27.046019], - [-108.602276, 27.036943], - [-108.604405, 27.131057], - [-108.611427, 27.154145], - [-108.652156, 27.175687], - [-108.653221, 27.176055], - [-108.662315, 27.218249], - [-108.662578, 27.219543], - [-108.66251, 27.238673], - [-108.664375, 27.239396], - [-108.625591, 27.289246], - [-108.591045, 27.31808], - [-108.659779, 27.462452], - [-108.661648, 27.464744], - [-108.652864, 27.528926], - [-108.652405, 27.537033], - [-108.690256, 27.559181], - [-108.712808, 27.566246], - [-108.722958, 27.588148], - [-108.739852, 27.599955], - [-108.750718, 27.659445], - [-108.749314, 27.664731], - [-108.784478, 27.725038], - [-108.784495, 27.730465], - [-108.877254, 27.744628], - [-108.895516, 27.744807], - [-108.915143, 27.775679], - [-108.920294, 27.783973], - [-108.914552, 27.798493], - [-108.910464, 27.809136], - [-108.872832, 27.831597], - [-108.86914, 27.839286], - [-108.904703, 27.850749], - [-108.914868, 27.854005], - [-108.925281, 27.920721], - [-108.926511, 27.940594], - [-109.029531, 28.016725], - [-109.0319, 28.018288], - [-109.071046, 28.14536], - [-109.072894, 28.148572], - [-109.065761, 28.182616], - [-109.06199, 28.199202], - [-109.074796, 28.271429], - [-109.074886, 28.272609], - [-109.059536, 28.267264], - [-109.058436, 28.267269], - [-109.068696, 28.286139], - [-109.067687, 28.286419], - [-109.041135, 28.267765], - [-109.040682, 28.26699], - [-109.025718, 28.278271], - [-109.025277, 28.278236], - [-108.996183, 28.25514], - [-108.995096, 28.255464], - [-108.994572, 28.297934], - [-108.993974, 28.29796], - [-108.968958, 28.266171], - [-108.967261, 28.265], - [-108.922377, 28.2519], - [-108.922014, 28.251492], - [-108.818713, 28.261766], - [-108.791663, 28.253617], - [-108.797441, 28.266597], - [-108.796685, 28.267163], - [-108.759573, 28.270742], - [-108.750984, 28.271569], - [-108.688572, 28.302765], - [-108.687225, 28.303462], - [-108.644365, 28.29828], - [-108.641293, 28.291609], - [-108.635486, 28.306256], - [-108.636181, 28.335228], - [-108.603507, 28.347562], - [-108.550928, 28.318055], - [-108.535742, 28.323827], - [-108.519638, 28.334762], - [-108.521557, 28.363647], - [-108.521651, 28.365061], - [-108.505683, 28.360806], - [-108.501365, 28.355729], - [-108.479814, 28.369479], - [-108.479701, 28.369551], - [-108.515452, 28.426112], - [-108.515541, 28.426284], - [-108.507729, 28.500226], - [-108.507672, 28.508216], - [-108.518897, 28.5065], - [-108.523287, 28.50591], - [-108.53186, 28.538973], - [-108.531287, 28.556669], - [-108.564396, 28.61271], - [-108.580151, 28.632446], - [-108.583787, 28.739135], - [-108.583785, 28.740139], - [-108.630099, 28.759817], - [-108.643294, 28.765068], - [-108.645557, 28.794727], - [-108.624396, 28.800116], - [-108.623817, 28.806123], - [-108.629625, 28.811722], - [-108.65785, 28.809224], - [-108.681201, 28.854771], - [-108.678176, 28.863276], - [-108.709626, 28.88914], - [-108.709798, 28.889515], - [-108.69782, 28.931388], - [-108.698145, 28.936266], - [-108.723486, 29.065484], - [-108.724353, 29.069897], - [-108.709691, 29.08146], - [-108.709438, 29.083003], - [-108.727471, 29.085761], - [-108.72959, 29.096533], - [-108.708261, 29.114277], - [-108.698528, 29.12774], - [-108.709501, 29.149134], - [-108.728854, 29.171801], - [-108.741266, 29.16477], - [-108.745297, 29.162343], - [-108.751341, 29.189654], - [-108.753869, 29.200098], - [-108.73983, 29.20082], - [-108.735408, 29.217713], - [-108.761474, 29.253004], - [-108.761888, 29.253884], - [-108.682209, 29.26743], - [-108.669733, 29.307417], - [-108.70738, 29.439479], - [-108.719078, 29.459789], - [-108.694332, 29.467114], - [-108.689606, 29.484], - [-108.626146, 29.500382], - [-108.625155, 29.501031], - [-108.649459, 29.509979], - [-108.662309, 29.544482], - [-108.638324, 29.558319], - [-108.659505, 29.584041], - [-108.641137, 29.588886], - [-108.651917, 29.65041], - [-108.61828, 29.660525], - [-108.656276, 29.711988], - [-108.659099, 29.716127], - [-108.592534, 29.717646], - [-108.536058, 29.750169], - [-108.534964, 29.751365], - [-108.541259, 29.796138], - [-108.60758, 29.797916], - [-108.61856, 29.800466], - [-108.632166, 29.818033], - [-108.635718, 29.829684], - [-108.608383, 29.845144], - [-108.607199, 29.84714], - [-108.628599, 29.952335], - [-108.628709, 29.953034], - [-108.61062, 30.003585], - [-108.606922, 30.028618], - [-108.619086, 30.271384], - [-108.620218, 30.29823], - [-108.550547, 30.266642], - [-108.542199, 30.283512], - [-108.574917, 30.327544], - [-108.580006, 30.337482], - [-108.607211, 30.339318], - [-108.622056, 30.340318], - [-108.61984, 30.374796], - [-108.636954, 30.399861], - [-108.648652, 30.416865], - [-108.613559, 30.435716], - [-108.603843, 30.465113], - [-108.663427, 30.467208], - [-108.664772, 30.468152], - [-108.66197, 30.521915], - [-108.661973, 30.521942], - [-108.674685, 30.535074], - [-108.677792, 30.557073], - [-108.726828, 30.591595], - [-108.726666, 30.594548], - [-108.756542, 30.596076], - [-108.76202, 30.587272], - [-108.874398, 30.623548], - [-108.876465, 30.624574], - [-108.869029, 30.68107], - [-108.866925, 30.689387], - [-108.918968, 30.739354], - [-108.948302, 30.736911], - [-108.930952, 30.866487], - [-108.939243, 30.907565], - [-108.843145, 30.905476], - [-108.802393, 30.904101], - [-108.803135, 30.990721], - [-108.803255, 31.004829], - [-108.699929, 31.005825], - [-108.683807, 31.005973], - [-108.684012, 31.024534], - [-108.684387, 31.03374], - [-108.722592, 31.033747], - [-108.752466, 31.033848], - [-108.730681, 31.051724], - [-108.729899, 31.052154], - [-108.765275, 31.073319], - [-108.766157, 31.073628], - [-108.770127, 31.101925], - [-108.769997, 31.102472], - [-108.833297, 31.125459], - [-108.84564, 31.135576], - [-108.835012, 31.169335], - [-108.805025, 31.192956], - [-108.848332, 31.195108], - [-108.860687, 31.218927], - [-108.906647, 31.208051], - [-108.906291, 31.213343], - [-108.881695, 31.23556], - [-108.879812, 31.238786], - [-108.81868, 31.239001], - [-108.817231, 31.239006], - [-108.791998, 31.277472], - [-108.755916, 31.332419], - [-108.208493, 31.333363], - [-108.208473, 31.333363], - [-108.208291, 31.715862], - [-108.208373, 31.783754], - [-107.656585, 31.783705] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "06", - "name": "Colima", - "id": 12, - "ISOCODE": "MX-COL" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-114.726499, 18.360372], - [-114.680963, 18.354826], - [-114.680963, 18.354826], - [-114.746586, 18.335147], - [-114.751992, 18.332594], - [-114.757768, 18.352826], - [-114.756735, 18.357387], - [-114.726499, 18.360372] - ] - ], - [ - [ - [-104.486464, 19.104869], - [-104.486464, 19.104869] - ] - ], - [ - [ - [-110.988188, 18.853506], - [-110.944815, 18.82655], - [-110.942377, 18.827287], - [-110.914416, 18.774651], - [-110.914382, 18.773535], - [-110.921955, 18.729674], - [-110.921943, 18.726109], - [-110.95083, 18.71277], - [-110.953879, 18.711705], - [-110.971221, 18.736561], - [-110.972506, 18.737977], - [-111.015681, 18.746868], - [-111.019114, 18.749147], - [-111.036509, 18.776643], - [-111.037503, 18.779774], - [-111.05631, 18.772468], - [-111.05772, 18.773771], - [-111.043995, 18.78869], - [-111.043701, 18.790407], - [-111.053952, 18.809153], - [-111.053649, 18.809565], - [-111.018546, 18.815935], - [-111.016713, 18.81669], - [-110.988188, 18.853506] - ] - ], - [ - [ - [-112.064313, 18.99157], - [-112.064313, 18.99157] - ] - ], - [ - [ - [-103.618277, 19.512519], - [-103.606199, 19.500558], - [-103.615402, 19.47553], - [-103.615358, 19.474995], - [-103.574386, 19.411852], - [-103.574268, 19.411562], - [-103.486474, 19.337945], - [-103.48643, 19.337891], - [-103.509097, 19.295481], - [-103.509182, 19.29515], - [-103.515074, 19.211597], - [-103.515239, 19.211352], - [-103.497615, 19.174959], - [-103.497631, 19.174642], - [-103.526426, 19.079218], - [-103.526481, 19.078728], - [-103.489055, 19.02854], - [-103.488506, 19.027587], - [-103.498742, 19.012039], - [-103.498782, 19.011674], - [-103.488594, 18.964889], - [-103.488453, 18.963905], - [-103.507854, 18.963782], - [-103.508601, 18.963671], - [-103.531079, 18.906875], - [-103.531348, 18.906259], - [-103.557387, 18.906843], - [-103.558075, 18.90658], - [-103.572545, 18.871821], - [-103.573244, 18.871328], - [-103.6284, 18.886993], - [-103.63028, 18.885325], - [-103.640573, 18.867937], - [-103.640572, 18.867244], - [-103.617813, 18.844475], - [-103.617187, 18.842851], - [-103.619757, 18.802281], - [-103.620031, 18.801383], - [-103.699664, 18.754744], - [-103.700303, 18.754356], - [-103.737506, 18.684402], - [-103.737765, 18.684156], - [-103.800731, 18.746646], - [-103.803419, 18.74891], - [-103.981598, 18.871156], - [-103.983185, 18.872582], - [-104.150963, 18.957928], - [-104.160814, 18.962684], - [-104.331768, 19.01758], - [-104.332064, 19.017622], - [-104.329944, 19.051033], - [-104.330074, 19.05116], - [-104.303624, 19.070241], - [-104.303843, 19.071527], - [-104.332269, 19.101599], - [-104.33384, 19.102239], - [-104.354005, 19.090921], - [-104.354155, 19.091038], - [-104.353459, 19.114321], - [-104.355409, 19.115384], - [-104.39283, 19.115395], - [-104.393943, 19.114613], - [-104.395259, 19.085359], - [-104.395453, 19.085122], - [-104.410827, 19.106391], - [-104.411235, 19.106547], - [-104.438223, 19.098697], - [-104.438471, 19.098574], - [-104.441481, 19.083401], - [-104.441718, 19.083257], - [-104.451132, 19.108025], - [-104.451472, 19.108484], - [-104.48738, 19.123657], - [-104.489382, 19.124553], - [-104.690478, 19.176675], - [-104.690586, 19.176976], - [-104.683255, 19.190711], - [-104.679979, 19.193172], - [-104.619038, 19.180872], - [-104.618822, 19.180851], - [-104.613126, 19.155846], - [-104.612834, 19.155483], - [-104.59099, 19.149917], - [-104.58984, 19.150095], - [-104.600463, 19.178461], - [-104.600287, 19.179053], - [-104.577661, 19.179585], - [-104.576938, 19.180205], - [-104.569212, 19.218236], - [-104.569113, 19.218695], - [-104.53045, 19.259716], - [-104.530288, 19.259789], - [-104.509132, 19.244462], - [-104.508385, 19.244225], - [-104.496, 19.254439], - [-104.494535, 19.253947], - [-104.489241, 19.230625], - [-104.488955, 19.229943], - [-104.472042, 19.228844], - [-104.471673, 19.228836], - [-104.439606, 19.277587], - [-104.439259, 19.277988], - [-104.401354, 19.288888], - [-104.400946, 19.28907], - [-104.401301, 19.267178], - [-104.401323, 19.266813], - [-104.374804, 19.281249], - [-104.374273, 19.281884], - [-104.362724, 19.269096], - [-104.361874, 19.269078], - [-104.344215, 19.289104], - [-104.34388, 19.289546], - [-104.315566, 19.279451], - [-104.314804, 19.279356], - [-104.298039, 19.302379], - [-104.297591, 19.302671], - [-104.261436, 19.311672], - [-104.261179, 19.311806], - [-104.1921, 19.292288], - [-104.191667, 19.29221], - [-104.180422, 19.312219], - [-104.179801, 19.312562], - [-104.162192, 19.302745], - [-104.16165, 19.30272], - [-104.123088, 19.319031], - [-104.122985, 19.319042], - [-104.132889, 19.352415], - [-104.133344, 19.353746], - [-104.091093, 19.392555], - [-104.090226, 19.393025], - [-104.062944, 19.495504], - [-104.061725, 19.497703], - [-103.986196, 19.474313], - [-103.974007, 19.474553], - [-103.969304, 19.459231], - [-103.964799, 19.454163], - [-103.910399, 19.438994], - [-103.899522, 19.434547], - [-103.908386, 19.4531], - [-103.908765, 19.453628], - [-103.890382, 19.463603], - [-103.889331, 19.463597], - [-103.858269, 19.432123], - [-103.856453, 19.431331], - [-103.824453, 19.437958], - [-103.824135, 19.437788], - [-103.819565, 19.408841], - [-103.819253, 19.40874], - [-103.718671, 19.453531], - [-103.718257, 19.453498], - [-103.690434, 19.492032], - [-103.690045, 19.492448], - [-103.618277, 19.512519] - ] - ], - [ - [ - [-110.810299, 19.287528], - [-110.832576, 19.287586], - [-110.833462, 19.290255], - [-110.814216, 19.320755], - [-110.812643, 19.32071], - [-110.810299, 19.287528] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "18", - "name": "Nayarit", - "id": 13, - "ISOCODE": "MX-NAY" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-105.274319, 21.049986], - [-105.274319, 21.049986] - ] - ], - [ - [ - [-106.227722, 21.365703], - [-106.229133, 21.325066], - [-106.229374, 21.324974], - [-106.255901, 21.325896], - [-106.256278, 21.326035], - [-106.278726, 21.347727], - [-106.278769, 21.348183], - [-106.25809, 21.367671], - [-106.257851, 21.367909], - [-106.227722, 21.365703] - ] - ], - [ - [ - [-106.434842, 21.494434], - [-106.373383, 21.482152], - [-106.371936, 21.48152], - [-106.359, 21.456983], - [-106.35854, 21.455888], - [-106.379477, 21.449085], - [-106.380333, 21.448399], - [-106.386375, 21.419754], - [-106.387167, 21.419458], - [-106.48012, 21.449544], - [-106.480309, 21.449614], - [-106.493755, 21.465887], - [-106.494008, 21.466203], - [-106.484032, 21.479788], - [-106.48376, 21.480109], - [-106.434842, 21.494434] - ] - ], - [ - [ - [-106.653348, 21.693452], - [-106.548257, 21.668146], - [-106.546976, 21.667608], - [-106.538061, 21.634441], - [-106.537369, 21.632794], - [-106.506493, 21.603951], - [-106.5057, 21.603345], - [-106.512193, 21.571144], - [-106.511847, 21.570462], - [-106.540717, 21.543797], - [-106.541678, 21.544312], - [-106.544548, 21.561669], - [-106.546227, 21.563215], - [-106.62881, 21.598476], - [-106.628973, 21.598612], - [-106.655775, 21.655715], - [-106.656085, 21.655874], - [-106.653348, 21.693452] - ] - ], - [ - [ - [-106.67321, 21.774852], - [-106.657718, 21.739667], - [-106.657716, 21.739453], - [-106.677496, 21.728641], - [-106.677957, 21.728686], - [-106.687316, 21.745639], - [-106.687459, 21.745791], - [-106.67321, 21.774852] - ] - ], - [ - [ - [-105.879895, 21.848728], - [-105.885438, 21.840031], - [-105.886722, 21.840024], - [-105.890598, 21.852309], - [-105.89086, 21.853073], - [-105.879895, 21.848728] - ] - ], - [ - [ - [-105.383567, 23.081742], - [-105.35088, 23.061042], - [-105.350471, 23.060575], - [-105.358779, 23.046258], - [-105.358788, 23.045929], - [-105.328342, 22.942988], - [-105.32357, 22.94133], - [-105.003284, 22.976992], - [-105.003139, 22.976983], - [-105.009941, 22.923214], - [-105.010039, 22.922363], - [-104.98832, 22.889254], - [-104.987796, 22.888252], - [-104.98964, 22.839646], - [-104.989653, 22.83886], - [-104.965033, 22.8156], - [-104.964395, 22.815177], - [-104.934226, 22.827311], - [-104.932798, 22.827309], - [-104.913344, 22.813987], - [-104.9131, 22.813782], - [-104.912959, 22.745569], - [-104.89272, 22.737409], - [-105.062116, 22.683904], - [-105.068423, 22.678414], - [-105.072369, 22.656499], - [-105.007553, 22.585672], - [-104.987913, 22.498727], - [-104.960525, 22.505311], - [-104.862493, 22.60707], - [-104.858492, 22.647368], - [-104.858397, 22.648327], - [-104.815016, 22.634284], - [-104.814678, 22.634249], - [-104.789217, 22.647944], - [-104.788919, 22.647974], - [-104.774212, 22.632821], - [-104.774094, 22.63255], - [-104.775631, 22.584489], - [-104.775375, 22.584202], - [-104.738271, 22.558869], - [-104.737053, 22.558096], - [-104.670502, 22.565022], - [-104.669998, 22.565262], - [-104.655858, 22.540335], - [-104.655755, 22.54007], - [-104.655273, 22.462569], - [-104.655292, 22.462155], - [-104.602592, 22.460515], - [-104.602561, 22.460508], - [-104.59319, 22.412098], - [-104.593085, 22.411955], - [-104.506708, 22.345415], - [-104.506513, 22.345163], - [-104.481414, 22.351409], - [-104.48121, 22.351617], - [-104.495537, 22.375909], - [-104.49539, 22.376324], - [-104.39741, 22.411917], - [-104.371512, 22.421659], - [-104.351181, 22.410949], - [-104.348843, 22.409717], - [-104.351567, 22.389031], - [-104.350041, 22.386405], - [-104.325316, 22.380749], - [-104.293128, 22.365131], - [-104.299543, 22.327266], - [-104.299526, 22.327088], - [-104.284833, 22.297203], - [-104.284866, 22.297094], - [-104.328602, 22.245486], - [-104.328679, 22.245359], - [-104.341275, 22.210056], - [-104.341359, 22.209563], - [-104.331858, 22.200491], - [-104.331836, 22.19979], - [-104.37287, 22.10302], - [-104.373192, 22.102564], - [-104.360798, 22.016305], - [-104.360039, 22.015057], - [-104.36998, 21.975119], - [-104.369863, 21.974784], - [-104.327561, 21.975393], - [-104.326863, 21.975369], - [-104.294845, 22.002681], - [-104.294077, 22.002761], - [-104.246704, 21.967088], - [-104.246005, 21.966938], - [-104.194606, 21.985685], - [-104.193319, 21.98542], - [-104.173699, 21.96354], - [-104.173699, 21.963393], - [-104.20104, 21.891752], - [-104.201041, 21.891478], - [-104.186775, 21.868378], - [-104.186385, 21.868012], - [-104.172515, 21.8715], - [-104.172233, 21.871319], - [-104.196546, 21.850674], - [-104.197, 21.850772], - [-104.162074, 21.810183], - [-104.161748, 21.809841], - [-104.080308, 21.782528], - [-104.079856, 21.782405], - [-104.052615, 21.794646], - [-104.052254, 21.794761], - [-103.977974, 21.77152], - [-103.977757, 21.771332], - [-103.923939, 21.772136], - [-103.923482, 21.771802], - [-103.916054, 21.756427], - [-103.916129, 21.755769], - [-103.931841, 21.743635], - [-103.931828, 21.743381], - [-103.903044, 21.716444], - [-103.902791, 21.716258], - [-103.896371, 21.728034], - [-103.895913, 21.727744], - [-103.887854, 21.698194], - [-103.887725, 21.697818], - [-103.926235, 21.653855], - [-103.928245, 21.649193], - [-103.907905, 21.619168], - [-103.907699, 21.618676], - [-103.918776, 21.61712], - [-103.919084, 21.61625], - [-103.919749, 21.583041], - [-103.919235, 21.581986], - [-103.892812, 21.574205], - [-103.892578, 21.574143], - [-103.881745, 21.552453], - [-103.881646, 21.552142], - [-103.856415, 21.55244], - [-103.856272, 21.552365], - [-103.86011, 21.525163], - [-103.859925, 21.52475], - [-103.824959, 21.493926], - [-103.823713, 21.493047], - [-103.774306, 21.498401], - [-103.774129, 21.498381], - [-103.721015, 21.42597], - [-103.720896, 21.425431], - [-103.76367, 21.410201], - [-103.764403, 21.410304], - [-103.767719, 21.389784], - [-103.767333, 21.388433], - [-103.741439, 21.374264], - [-103.741333, 21.374055], - [-103.749585, 21.336944], - [-103.749352, 21.336708], - [-103.820032, 21.28135], - [-103.820346, 21.281041], - [-103.818547, 21.249039], - [-103.819391, 21.248435], - [-103.861325, 21.248622], - [-103.86189, 21.248868], - [-103.897613, 21.226645], - [-103.898363, 21.22649], - [-103.917543, 21.230882], - [-103.917899, 21.231028], - [-103.930611, 21.262056], - [-103.931057, 21.262547], - [-103.925204, 21.237439], - [-103.92402, 21.234572], - [-103.972547, 21.256166], - [-103.973454, 21.256328], - [-104.016952, 21.227291], - [-104.017489, 21.227202], - [-104.027054, 21.195683], - [-104.027969, 21.194672], - [-104.051954, 21.205353], - [-104.052839, 21.205413], - [-104.068287, 21.186786], - [-104.068586, 21.186773], - [-104.084005, 21.205062], - [-104.085659, 21.205361], - [-104.10949, 21.188961], - [-104.110845, 21.188596], - [-104.201349, 21.19301], - [-104.202794, 21.192832], - [-104.21918, 21.176717], - [-104.219398, 21.176611], - [-104.211055, 21.119123], - [-104.21086, 21.118601], - [-104.242454, 21.027882], - [-104.242713, 21.027332], - [-104.224317, 21.004433], - [-104.223196, 21.001264], - [-104.238016, 20.993119], - [-104.238474, 20.992151], - [-104.23431, 20.974052], - [-104.234083, 20.971052], - [-104.204842, 20.959901], - [-104.201306, 20.959242], - [-104.206072, 20.938436], - [-104.206588, 20.936373], - [-104.226828, 20.936396], - [-104.228753, 20.935582], - [-104.267036, 20.88797], - [-104.26788, 20.887461], - [-104.290741, 20.887893], - [-104.290916, 20.887796], - [-104.279548, 20.865123], - [-104.279111, 20.864519], - [-104.295123, 20.84586], - [-104.295416, 20.845496], - [-104.361377, 20.841096], - [-104.361768, 20.840931], - [-104.358378, 20.813292], - [-104.350402, 20.811644], - [-104.371783, 20.788518], - [-104.375892, 20.784073], - [-104.334123, 20.791977], - [-104.328322, 20.798098], - [-104.300254, 20.772936], - [-104.297617, 20.770795], - [-104.283166, 20.783274], - [-104.282856, 20.783481], - [-104.241975, 20.714151], - [-104.241816, 20.713434], - [-104.252381, 20.683594], - [-104.25316, 20.682296], - [-104.236383, 20.663722], - [-104.236461, 20.662897], - [-104.260162, 20.643447], - [-104.26039, 20.642836], - [-104.247205, 20.632158], - [-104.246924, 20.631492], - [-104.253989, 20.603493], - [-104.254146, 20.603221], - [-104.281898, 20.628756], - [-104.282011, 20.628993], - [-104.288258, 20.688887], - [-104.288487, 20.689157], - [-104.377212, 20.74212], - [-104.377549, 20.742373], - [-104.413813, 20.793], - [-104.414125, 20.79377], - [-104.49954, 20.838178], - [-104.499938, 20.838186], - [-104.556855, 20.923662], - [-104.556922, 20.924152], - [-104.65472, 20.932019], - [-104.656375, 20.932391], - [-104.727426, 20.982536], - [-104.729363, 20.983154], - [-104.728406, 21.010439], - [-104.728473, 21.011405], - [-104.770248, 21.008987], - [-104.771712, 21.008601], - [-104.78162, 21.022708], - [-104.782462, 21.023359], - [-104.837364, 21.020059], - [-104.838099, 21.020009], - [-104.899961, 20.963509], - [-104.900627, 20.962747], - [-104.899888, 20.947103], - [-104.900526, 20.946341], - [-104.952387, 20.930242], - [-104.953164, 20.930134], - [-104.966912, 20.909788], - [-104.967244, 20.909508], - [-104.989571, 20.921365], - [-104.990374, 20.921563], - [-105.002701, 20.910628], - [-105.003394, 20.910858], - [-105.005923, 20.922451], - [-105.006332, 20.922536], - [-105.030841, 20.909083], - [-105.031613, 20.909171], - [-105.046805, 20.934284], - [-105.04744, 20.934386], - [-105.09765, 20.919716], - [-105.098641, 20.919434], - [-105.159435, 20.858726], - [-105.160563, 20.857415], - [-105.173372, 20.767774], - [-105.173397, 20.767711], - [-105.196189, 20.7768], - [-105.196961, 20.777171], - [-105.239245, 20.747883], - [-105.239916, 20.747351], - [-105.242013, 20.705658], - [-105.242573, 20.704242], - [-105.275551, 20.672404], - [-105.276335, 20.671995], - [-105.346797, 20.759439], - [-105.348121, 20.759897], - [-105.398827, 20.734817], - [-105.398977, 20.734645], - [-105.510213, 20.771784], - [-105.511002, 20.771966], - [-105.534639, 20.757414], - [-105.534913, 20.7576], - [-105.528427, 20.787615], - [-105.52846, 20.787869], - [-105.487292, 20.796538], - [-105.486681, 20.797321], - [-105.45236, 20.874952], - [-105.451978, 20.875382], - [-105.436589, 20.872952], - [-105.435682, 20.873587], - [-105.401836, 20.93112], - [-105.401726, 20.931377], - [-105.332881, 20.984413], - [-105.331636, 20.985747], - [-105.31326, 21.034701], - [-105.313102, 21.034942], - [-105.274552, 21.023041], - [-105.273739, 21.023083], - [-105.239314, 21.055387], - [-105.238769, 21.056364], - [-105.228292, 21.103065], - [-105.228281, 21.10357], - [-105.238978, 21.131569], - [-105.238983, 21.132292], - [-105.223801, 21.158167], - [-105.223686, 21.159047], - [-105.233274, 21.179976], - [-105.233253, 21.180683], - [-105.216427, 21.204307], - [-105.216382, 21.205007], - [-105.248041, 21.347239], - [-105.248189, 21.347291], - [-105.188144, 21.459598], - [-105.188086, 21.460123], - [-105.2269, 21.522925], - [-105.227517, 21.523378], - [-105.264988, 21.512127], - [-105.265501, 21.512065], - [-105.443794, 21.623802], - [-105.444636, 21.624719], - [-105.531062, 21.80751], - [-105.53074, 21.807894], - [-105.625533, 21.952744], - [-105.628342, 21.957721], - [-105.653748, 22.039195], - [-105.653997, 22.042899], - [-105.638365, 22.182018], - [-105.636647, 22.181873], - [-105.685848, 22.377599], - [-105.686334, 22.379039], - [-105.760273, 22.530122], - [-105.760359, 22.530618], - [-105.750369, 22.539408], - [-105.750212, 22.539336], - [-105.714932, 22.475809], - [-105.714116, 22.474946], - [-105.677426, 22.468109], - [-105.677036, 22.468135], - [-105.674921, 22.503546], - [-105.675235, 22.5072], - [-105.700481, 22.561915], - [-105.700072, 22.563898], - [-105.660976, 22.585985], - [-105.660562, 22.586363], - [-105.639712, 22.576887], - [-105.639213, 22.576985], - [-105.642437, 22.590155], - [-105.642158, 22.593889], - [-105.605351, 22.561166], - [-105.600477, 22.558888], - [-105.598288, 22.536671], - [-105.597345, 22.536305], - [-105.552517, 22.539127], - [-105.541676, 22.536537], - [-105.534298, 22.517272], - [-105.533596, 22.515031], - [-105.50398, 22.526338], - [-105.503179, 22.527682], - [-105.474422, 22.503234], - [-105.47406, 22.5029], - [-105.442648, 22.523372], - [-105.441725, 22.524268], - [-105.449471, 22.623273], - [-105.449572, 22.624597], - [-105.472356, 22.626504], - [-105.472681, 22.627185], - [-105.463963, 22.659238], - [-105.498064, 22.651391], - [-105.524596, 22.774479], - [-105.524772, 22.77477], - [-105.474684, 22.851144], - [-105.474589, 22.851416], - [-105.475333, 22.880624], - [-105.47122, 22.883286], - [-105.496866, 22.937816], - [-105.501264, 22.95856], - [-105.453311, 22.977402], - [-105.432595, 23.023969], - [-105.409589, 23.023663], - [-105.40895, 23.023641], - [-105.413778, 23.068947], - [-105.412996, 23.074099], - [-105.383567, 23.081742] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "16", - "name": "Michoacán de Ocampo", - "id": 14, - "ISOCODE": "MX-MIC" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-102.010064, 20.381856], - [-102.025077, 20.349343], - [-102.025198, 20.348646], - [-102.015455, 20.328885], - [-102.014661, 20.328323], - [-102.013802, 20.350245], - [-102.013702, 20.350632], - [-101.996449, 20.359558], - [-101.99639, 20.359643], - [-101.945294, 20.342673], - [-101.944717, 20.342129], - [-101.963472, 20.319011], - [-101.963472, 20.318557], - [-101.934932, 20.298054], - [-101.934547, 20.297691], - [-101.951184, 20.271583], - [-101.951088, 20.270948], - [-101.931508, 20.208762], - [-101.931295, 20.208468], - [-101.907939, 20.215153], - [-101.907341, 20.214107], - [-101.917897, 20.195077], - [-101.91728, 20.194819], - [-101.89483, 20.20409], - [-101.894243, 20.204022], - [-101.881616, 20.187984], - [-101.880858, 20.188132], - [-101.871943, 20.210707], - [-101.871598, 20.210989], - [-101.83423, 20.224754], - [-101.833866, 20.22479], - [-101.825297, 20.201984], - [-101.824861, 20.201838], - [-101.788397, 20.218757], - [-101.786616, 20.219318], - [-101.760406, 20.201863], - [-101.759392, 20.201732], - [-101.731638, 20.214696], - [-101.731199, 20.214802], - [-101.698534, 20.189556], - [-101.697935, 20.189674], - [-101.686936, 20.2172], - [-101.686917, 20.217221], - [-101.669253, 20.212882], - [-101.668474, 20.213135], - [-101.663892, 20.235812], - [-101.663308, 20.23758], - [-101.646809, 20.238345], - [-101.646252, 20.238668], - [-101.643152, 20.266854], - [-101.642521, 20.267646], - [-101.626132, 20.266374], - [-101.625534, 20.266998], - [-101.62583, 20.312948], - [-101.624654, 20.31458], - [-101.601657, 20.297978], - [-101.601074, 20.298019], - [-101.583591, 20.327182], - [-101.583098, 20.32736], - [-101.566567, 20.315681], - [-101.565782, 20.315741], - [-101.554028, 20.332197], - [-101.553266, 20.332516], - [-101.523695, 20.332368], - [-101.522936, 20.332347], - [-101.501865, 20.312026], - [-101.501068, 20.311673], - [-101.472599, 20.331248], - [-101.472123, 20.331163], - [-101.451274, 20.319545], - [-101.450942, 20.319498], - [-101.456216, 20.307244], - [-101.456697, 20.30437], - [-101.440245, 20.305183], - [-101.440197, 20.305193], - [-101.456421, 20.267891], - [-101.45593, 20.26717], - [-101.421725, 20.275321], - [-101.420562, 20.275204], - [-101.353317, 20.234923], - [-101.352618, 20.234932], - [-101.362737, 20.1975], - [-101.363198, 20.195794], - [-101.412536, 20.203179], - [-101.419891, 20.201591], - [-101.423689, 20.169891], - [-101.422498, 20.163226], - [-101.389485, 20.135277], - [-101.389376, 20.134864], - [-101.408156, 20.123611], - [-101.408689, 20.123134], - [-101.404763, 20.081769], - [-101.404696, 20.080195], - [-101.387757, 20.083201], - [-101.387513, 20.082961], - [-101.40203, 20.038051], - [-101.40168, 20.035009], - [-101.254606, 20.035168], - [-101.253031, 20.035496], - [-101.204644, 20.007771], - [-101.203056, 20.007224], - [-101.20159, 20.025027], - [-101.201532, 20.025739], - [-101.160553, 20.040087], - [-101.160352, 20.0402], - [-101.192125, 20.055984], - [-101.196318, 20.057189], - [-101.174014, 20.072105], - [-101.17162, 20.073452], - [-101.175633, 20.095915], - [-101.175237, 20.097116], - [-101.13696, 20.064385], - [-101.133147, 20.059985], - [-101.043015, 20.091391], - [-101.042901, 20.091954], - [-100.994964, 20.066571], - [-100.992834, 20.064906], - [-101.012982, 20.045778], - [-101.013987, 20.045711], - [-101.008016, 20.028235], - [-101.008089, 20.028093], - [-100.968065, 20.011965], - [-100.967644, 20.011293], - [-100.981646, 20.002804], - [-100.982701, 20.002631], - [-100.976709, 19.983596], - [-100.976709, 19.982738], - [-101.004583, 19.96659], - [-101.004656, 19.966234], - [-101.002678, 19.95272], - [-101.002276, 19.952363], - [-100.981985, 19.956058], - [-100.980791, 19.955221], - [-100.972781, 19.931032], - [-100.97184, 19.929977], - [-100.953709, 19.931244], - [-100.947879, 19.933563], - [-100.947043, 19.950266], - [-100.947539, 19.962545], - [-100.83865, 19.934661], - [-100.835762, 19.934596], - [-100.824969, 19.977546], - [-100.824301, 19.978329], - [-100.792656, 19.955617], - [-100.792064, 19.955575], - [-100.779529, 19.915784], - [-100.778814, 19.91515], - [-100.751283, 19.915476], - [-100.748753, 19.91275], - [-100.663315, 19.962894], - [-100.660381, 19.964548], - [-100.619687, 19.957164], - [-100.617573, 19.957693], - [-100.595475, 19.991069], - [-100.595603, 19.991662], - [-100.557342, 19.988087], - [-100.556743, 19.987261], - [-100.592554, 19.957962], - [-100.590714, 19.956839], - [-100.528259, 19.97428], - [-100.528201, 19.974257], - [-100.535761, 19.924299], - [-100.536009, 19.923007], - [-100.52172, 19.919019], - [-100.519946, 19.91882], - [-100.511703, 19.958023], - [-100.511687, 19.958216], - [-100.465349, 19.986615], - [-100.465824, 19.987398], - [-100.370706, 19.989134], - [-100.362931, 19.989861], - [-100.358565, 20.063755], - [-100.358264, 20.064916], - [-100.397243, 20.096902], - [-100.397257, 20.096953], - [-100.342488, 20.188717], - [-100.340308, 20.189737], - [-100.355276, 20.217204], - [-100.355237, 20.219018], - [-100.325914, 20.250956], - [-100.323558, 20.251934], - [-100.346606, 20.296369], - [-100.345833, 20.298], - [-100.261172, 20.267672], - [-100.260457, 20.26751], - [-100.181775, 20.208709], - [-100.181144, 20.208801], - [-100.191866, 20.17624], - [-100.191864, 20.176], - [-100.234973, 20.143923], - [-100.235604, 20.143459], - [-100.19751, 20.129892], - [-100.197393, 20.129888], - [-100.201721, 20.077538], - [-100.202941, 20.076649], - [-100.164647, 20.078367], - [-100.164462, 20.078347], - [-100.138406, 20.047873], - [-100.138079, 20.047564], - [-100.152949, 20.054154], - [-100.15332, 20.053674], - [-100.157209, 20.019564], - [-100.157695, 20.017915], - [-100.154877, 20.007279], - [-100.15377, 20.00639], - [-100.116758, 20.006679], - [-100.116024, 20.00613], - [-100.130597, 19.983175], - [-100.131394, 19.982002], - [-100.130147, 19.917269], - [-100.130122, 19.916193], - [-100.064272, 19.856193], - [-100.063033, 19.855809], - [-100.131487, 19.852014], - [-100.132121, 19.851431], - [-100.146569, 19.733846], - [-100.146446, 19.732359], - [-100.166862, 19.710269], - [-100.16934, 19.707739], - [-100.227944, 19.702319], - [-100.22949, 19.702206], - [-100.23226, 19.720403], - [-100.232243, 19.720504], - [-100.262914, 19.695638], - [-100.263869, 19.69579], - [-100.267517, 19.677233], - [-100.27399, 19.672251], - [-100.247647, 19.634685], - [-100.247519, 19.634513], - [-100.237682, 19.563661], - [-100.237476, 19.557219], - [-100.216558, 19.553351], - [-100.214696, 19.552765], - [-100.203686, 19.537073], - [-100.196427, 19.531733], - [-100.201824, 19.501085], - [-100.20194, 19.499528], - [-100.17673, 19.489693], - [-100.176715, 19.489678], - [-100.198391, 19.492244], - [-100.20098, 19.492792], - [-100.206415, 19.457812], - [-100.206832, 19.456645], - [-100.18972, 19.4405], - [-100.189719, 19.44027], - [-100.210747, 19.418811], - [-100.215942, 19.413421], - [-100.292005, 19.395652], - [-100.292575, 19.395437], - [-100.310514, 19.364706], - [-100.312374, 19.362361], - [-100.301623, 19.343657], - [-100.300731, 19.342744], - [-100.322763, 19.308124], - [-100.323265, 19.306803], - [-100.319832, 19.253383], - [-100.319883, 19.252992], - [-100.373071, 19.194192], - [-100.373085, 19.194172], - [-100.371106, 19.177497], - [-100.378191, 19.1711], - [-100.364126, 19.157206], - [-100.361591, 19.154707], - [-100.386528, 19.145054], - [-100.389482, 19.142913], - [-100.410438, 19.06417], - [-100.410827, 19.063595], - [-100.529018, 19.009858], - [-100.529853, 19.009331], - [-100.543146, 18.937105], - [-100.543786, 18.934704], - [-100.592867, 18.915424], - [-100.593237, 18.915279], - [-100.695394, 18.794649], - [-100.696069, 18.794125], - [-100.709442, 18.835256], - [-100.709561, 18.835849], - [-100.748032, 18.867633], - [-100.748403, 18.867933], - [-100.774589, 18.859993], - [-100.776922, 18.859752], - [-100.791135, 18.834947], - [-100.791771, 18.834168], - [-100.78357, 18.804616], - [-100.782518, 18.801654], - [-100.798506, 18.784797], - [-100.798969, 18.784536], - [-100.797017, 18.747215], - [-100.796995, 18.74687], - [-100.7744, 18.734251], - [-100.772935, 18.732568], - [-100.785338, 18.691834], - [-100.785405, 18.691481], - [-100.764148, 18.683442], - [-100.763654, 18.682942], - [-100.756932, 18.639252], - [-100.751213, 18.641667], - [-100.763527, 18.563314], - [-100.764896, 18.561211], - [-100.754101, 18.538687], - [-100.744225, 18.518073], - [-100.726165, 18.5168], - [-100.724995, 18.515936], - [-100.710365, 18.487601], - [-100.715041, 18.486397], - [-100.637725, 18.457734], - [-100.637244, 18.457749], - [-100.631471, 18.438929], - [-100.631492, 18.43847], - [-100.588637, 18.412631], - [-100.58823, 18.412145], - [-100.642861, 18.346377], - [-100.643, 18.346158], - [-100.676119, 18.371842], - [-100.676694, 18.372559], - [-100.690557, 18.413698], - [-100.691051, 18.414153], - [-100.706515, 18.419195], - [-100.707038, 18.419], - [-100.722134, 18.4001], - [-100.72273, 18.400449], - [-100.736922, 18.426708], - [-100.737369, 18.427301], - [-100.776913, 18.438894], - [-100.777643, 18.439543], - [-100.797408, 18.480271], - [-100.798178, 18.480541], - [-100.837614, 18.472947], - [-100.838481, 18.473069], - [-100.872861, 18.491937], - [-100.873975, 18.492009], - [-100.893412, 18.463782], - [-100.894368, 18.463139], - [-100.914516, 18.47175], - [-100.914785, 18.471485], - [-100.92148, 18.445049], - [-100.922275, 18.444567], - [-100.941916, 18.455032], - [-100.942753, 18.455077], - [-100.955891, 18.444527], - [-100.957443, 18.44443], - [-100.973147, 18.481181], - [-100.973707, 18.481961], - [-101.005565, 18.493025], - [-101.005992, 18.493651], - [-101.011601, 18.527412], - [-101.012003, 18.527543], - [-101.088081, 18.505904], - [-101.088661, 18.505908], - [-101.281686, 18.544671], - [-101.282077, 18.544734], - [-101.361553, 18.520357], - [-101.361877, 18.520218], - [-101.364957, 18.50007], - [-101.365604, 18.499882], - [-101.406342, 18.51251], - [-101.406885, 18.512513], - [-101.441213, 18.489197], - [-101.441947, 18.488993], - [-101.50648, 18.486693], - [-101.507444, 18.486797], - [-101.580865, 18.519799], - [-101.583563, 18.520995], - [-101.624408, 18.599059], - [-101.6245, 18.599154], - [-101.7011, 18.587918], - [-101.701176, 18.587893], - [-101.713453, 18.610221], - [-101.717357, 18.612011], - [-101.762316, 18.605843], - [-101.771794, 18.603721], - [-101.837892, 18.577931], - [-101.843844, 18.574396], - [-101.881626, 18.536205], - [-101.88226, 18.534228], - [-101.888276, 18.483442], - [-101.887925, 18.481495], - [-101.860441, 18.447378], - [-101.860442, 18.446185], - [-101.889357, 18.40184], - [-101.889316, 18.400473], - [-101.855831, 18.314953], - [-101.855716, 18.314276], - [-101.870124, 18.308562], - [-101.870198, 18.308323], - [-101.862122, 18.288086], - [-101.862695, 18.287228], - [-101.882927, 18.277894], - [-101.882916, 18.277437], - [-101.862891, 18.262247], - [-101.863249, 18.261655], - [-101.896558, 18.27714], - [-101.896819, 18.277115], - [-101.9058, 18.245683], - [-101.906647, 18.244808], - [-101.973009, 18.232514], - [-101.973409, 18.232307], - [-101.977563, 18.20756], - [-101.978149, 18.20731], - [-102.139755, 18.188381], - [-102.140314, 18.188265], - [-102.16088, 18.165417], - [-102.161818, 18.164148], - [-102.178275, 18.122923], - [-102.178711, 18.120341], - [-102.181599, 18.006447], - [-102.181308, 18.003316], - [-102.133059, 17.951522], - [-102.132989, 17.950836], - [-102.191315, 17.915485], - [-102.191747, 17.915536], - [-102.302661, 17.967102], - [-102.310149, 17.96984], - [-102.481878, 18.01816], - [-102.483796, 18.018741], - [-102.758844, 18.070145], - [-102.759134, 18.069876], - [-103.030113, 18.187685], - [-103.031198, 18.188091], - [-103.111503, 18.191584], - [-103.111617, 18.190953], - [-103.336613, 18.270064], - [-103.33844, 18.270695], - [-103.361565, 18.264936], - [-103.361876, 18.26497], - [-103.491976, 18.32945], - [-103.49224, 18.329554], - [-103.512207, 18.346279], - [-103.512272, 18.346373], - [-103.581824, 18.50431], - [-103.583091, 18.505906], - [-103.711801, 18.596957], - [-103.711884, 18.597006], - [-103.685574, 18.624808], - [-103.686207, 18.628639], - [-103.737737, 18.691979], - [-103.738127, 18.692961], - [-103.70075, 18.75374], - [-103.700303, 18.754356], - [-103.622367, 18.798746], - [-103.620031, 18.801383], - [-103.617131, 18.842307], - [-103.617187, 18.842851], - [-103.640262, 18.866743], - [-103.640572, 18.867244], - [-103.631139, 18.883972], - [-103.63028, 18.885325], - [-103.616343, 18.892593], - [-103.615556, 18.892421], - [-103.587922, 18.866225], - [-103.587576, 18.865847], - [-103.57372, 18.87139], - [-103.573244, 18.871328], - [-103.558338, 18.906218], - [-103.558075, 18.90658], - [-103.532625, 18.905166], - [-103.532045, 18.905435], - [-103.534059, 18.926293], - [-103.53362, 18.927036], - [-103.514422, 18.934389], - [-103.514114, 18.934932], - [-103.522536, 18.947917], - [-103.522318, 18.948516], - [-103.5073, 18.947486], - [-103.50637, 18.948226], - [-103.508903, 18.963324], - [-103.508601, 18.963671], - [-103.49188, 18.958081], - [-103.491202, 18.958356], - [-103.47338, 18.990879], - [-103.473096, 18.991067], - [-103.411676, 18.967778], - [-103.411434, 18.967659], - [-103.3805, 18.979297], - [-103.377249, 18.98017], - [-103.333334, 18.973209], - [-103.332485, 18.973251], - [-103.225392, 19.024123], - [-103.223876, 19.024101], - [-103.204932, 18.96848], - [-103.204472, 18.967612], - [-103.174484, 18.937521], - [-103.173364, 18.936264], - [-103.125764, 18.930432], - [-103.125019, 18.930145], - [-103.088471, 18.983008], - [-103.088109, 18.984109], - [-103.052815, 18.99805], - [-103.0525, 18.998125], - [-103.063731, 19.026597], - [-103.063239, 19.027854], - [-103.033397, 19.029142], - [-103.033242, 19.029118], - [-103.02729, 19.047752], - [-103.025214, 19.053104], - [-102.991903, 19.052886], - [-102.990835, 19.053379], - [-103.015502, 19.078737], - [-103.016006, 19.079185], - [-103.020019, 19.131477], - [-103.019727, 19.132371], - [-102.978101, 19.120023], - [-102.977623, 19.120061], - [-102.978265, 19.145777], - [-102.979358, 19.152413], - [-102.960664, 19.173101], - [-102.960096, 19.174056], - [-102.915554, 19.179482], - [-102.915073, 19.179367], - [-102.872933, 19.209359], - [-102.865377, 19.211285], - [-102.825345, 19.206412], - [-102.824433, 19.205693], - [-102.762287, 19.250695], - [-102.753816, 19.255805], - [-102.713419, 19.235981], - [-102.712722, 19.235808], - [-102.698826, 19.249931], - [-102.696593, 19.248809], - [-102.701445, 19.226099], - [-102.700692, 19.224537], - [-102.670089, 19.212561], - [-102.669923, 19.212412], - [-102.574917, 19.402764], - [-102.568801, 19.412626], - [-102.577192, 19.422671], - [-102.576787, 19.423909], - [-102.54412, 19.429331], - [-102.543715, 19.42958], - [-102.568453, 19.444372], - [-102.568581, 19.445478], - [-102.542713, 19.477537], - [-102.542705, 19.478033], - [-102.5759, 19.498053], - [-102.575943, 19.498062], - [-102.581483, 19.528098], - [-102.581864, 19.528255], - [-102.654777, 19.488208], - [-102.657528, 19.487237], - [-102.688448, 19.513029], - [-102.689487, 19.513416], - [-102.737664, 19.492957], - [-102.738065, 19.493359], - [-102.710866, 19.540832], - [-102.710656, 19.541069], - [-102.725979, 19.578848], - [-102.726039, 19.579026], - [-102.71603, 19.602308], - [-102.715932, 19.602935], - [-102.77511, 19.627168], - [-102.775849, 19.627715], - [-102.791857, 19.671635], - [-102.791203, 19.673186], - [-102.80507, 19.674139], - [-102.805663, 19.674838], - [-102.780489, 19.703442], - [-102.780482, 19.704324], - [-102.810371, 19.74077], - [-102.810805, 19.741016], - [-102.803854, 19.751221], - [-102.803926, 19.752158], - [-102.816274, 19.749905], - [-102.816901, 19.751133], - [-102.812809, 19.775953], - [-102.819527, 19.777941], - [-102.792789, 19.813796], - [-102.792312, 19.814116], - [-102.741836, 19.815878], - [-102.739396, 19.815826], - [-102.752826, 19.83375], - [-102.75333, 19.834124], - [-102.730697, 19.852605], - [-102.730353, 19.853209], - [-102.742426, 19.878738], - [-102.74249, 19.878759], - [-102.731298, 19.89893], - [-102.731215, 19.899508], - [-102.768221, 19.927509], - [-102.770634, 19.929868], - [-102.775343, 19.958557], - [-102.776874, 19.960154], - [-102.793405, 19.95055], - [-102.794009, 19.950291], - [-102.881793, 19.975646], - [-102.88205, 19.975769], - [-102.902083, 19.967086], - [-102.902622, 19.966863], - [-102.949825, 19.994308], - [-102.951215, 19.996557], - [-102.989262, 19.984863], - [-102.99381, 19.983895], - [-103.015483, 19.959754], - [-103.016227, 19.959343], - [-103.033464, 19.967899], - [-103.034782, 19.967913], - [-103.050963, 19.991517], - [-103.051504, 19.991611], - [-103.020924, 20.047176], - [-103.02072, 20.047306], - [-103.04157, 20.090441], - [-103.041711, 20.090641], - [-103.034147, 20.134983], - [-103.0335, 20.135664], - [-102.92682, 20.129558], - [-102.926448, 20.129575], - [-102.954003, 20.166569], - [-102.954143, 20.170878], - [-102.867955, 20.162271], - [-102.867462, 20.162664], - [-102.840436, 20.116375], - [-102.840675, 20.116109], - [-102.816947, 20.106067], - [-102.816287, 20.106048], - [-102.802071, 20.122291], - [-102.801873, 20.123034], - [-102.816251, 20.138564], - [-102.815204, 20.139265], - [-102.682292, 20.170243], - [-102.679722, 20.171502], - [-102.679843, 20.226073], - [-102.679025, 20.226913], - [-102.627896, 20.229065], - [-102.627331, 20.229386], - [-102.610692, 20.268849], - [-102.610146, 20.269089], - [-102.590764, 20.25853], - [-102.590486, 20.258465], - [-102.565172, 20.277874], - [-102.564583, 20.278155], - [-102.555668, 20.260881], - [-102.554977, 20.260685], - [-102.544629, 20.280246], - [-102.544118, 20.280559], - [-102.529902, 20.270433], - [-102.529278, 20.270615], - [-102.530477, 20.295826], - [-102.530018, 20.296221], - [-102.447788, 20.338278], - [-102.447386, 20.338491], - [-102.367128, 20.327769], - [-102.366701, 20.327795], - [-102.307129, 20.358121], - [-102.306598, 20.358164], - [-102.254604, 20.335366], - [-102.25416, 20.335266], - [-102.17574, 20.355813], - [-102.175366, 20.355966], - [-102.17768, 20.367489], - [-102.177022, 20.368154], - [-102.158209, 20.366802], - [-102.158158, 20.36696], - [-102.168429, 20.378605], - [-102.168168, 20.37874], - [-102.065467, 20.374898], - [-102.065033, 20.374922], - [-102.023152, 20.380905], - [-102.022651, 20.38089], - [-102.016705, 20.394436], - [-102.016043, 20.394556], - [-102.010064, 20.381856] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "14", - "name": "Jalisco", - "id": 15, - "ISOCODE": "MX-JAL" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-104.813743, 19.231477], - [-104.813743, 19.231477] - ] - ], - [ - [ - [-104.812084, 19.232931], - [-104.812084, 19.232931] - ] - ], - [ - [ - [-104.875576, 19.272371], - [-104.875576, 19.272371] - ] - ], - [ - [ - [-104.959913, 19.306577], - [-104.959913, 19.306577] - ] - ], - [ - [ - [-104.955615, 19.310041], - [-104.955615, 19.310041] - ] - ], - [ - [ - [-104.951472, 19.314715], - [-104.951472, 19.314715] - ] - ], - [ - [ - [-105.034821, 19.391037], - [-105.034821, 19.391037] - ] - ], - [ - [ - [-105.035723, 19.441298], - [-105.035723, 19.441298] - ] - ], - [ - [ - [-105.06311, 19.476757], - [-105.06311, 19.476757] - ] - ], - [ - [ - [-105.064103, 19.478338], - [-105.064103, 19.478338] - ] - ], - [ - [ - [-105.085001, 19.513928], - [-105.085001, 19.513928] - ] - ], - [ - [ - [-105.086234, 19.522792], - [-105.086234, 19.522792] - ] - ], - [ - [ - [-105.09328, 19.526615], - [-105.09328, 19.526615] - ] - ], - [ - [ - [-105.093613, 19.530413], - [-105.093613, 19.530413] - ] - ], - [ - [ - [-105.087773, 19.531848], - [-105.087773, 19.531848] - ] - ], - [ - [ - [-105.088915, 19.53611], - [-105.088915, 19.53611] - ] - ], - [ - [ - [-105.092126, 19.535016], - [-105.092126, 19.535016] - ] - ], - [ - [ - [-105.092756, 19.538436], - [-105.092756, 19.538436] - ] - ], - [ - [ - [-105.115008, 19.547376], - [-105.115008, 19.547376] - ] - ], - [ - [ - [-105.108258, 19.546641], - [-105.108258, 19.546641] - ] - ], - [ - [ - [-105.106761, 19.555697], - [-105.106761, 19.555697] - ] - ], - [ - [ - [-105.110529, 19.561712], - [-105.110529, 19.561712] - ] - ], - [ - [ - [-105.130513, 19.573146], - [-105.130513, 19.573146] - ] - ], - [ - [ - [-105.132486, 19.573497], - [-105.132486, 19.573497] - ] - ], - [ - [ - [-105.135317, 19.573601], - [-105.135317, 19.573601] - ] - ], - [ - [ - [-105.147115, 19.579019], - [-105.147115, 19.579019] - ] - ], - [ - [ - [-105.145517, 19.581209], - [-105.145517, 19.581209] - ] - ], - [ - [ - [-105.291674, 20.544746], - [-105.291674, 20.544746] - ] - ], - [ - [ - [-103.93374, 22.746047], - [-103.909342, 22.750124], - [-103.908855, 22.749976], - [-103.898895, 22.728687], - [-103.898328, 22.728277], - [-103.774908, 22.733556], - [-103.774674, 22.733869], - [-103.752106, 22.712161], - [-103.751986, 22.711645], - [-103.760859, 22.625802], - [-103.760962, 22.625614], - [-103.860286, 22.567612], - [-103.860721, 22.567619], - [-103.851762, 22.553827], - [-103.851798, 22.55362], - [-103.874985, 22.522219], - [-103.875186, 22.521576], - [-103.864189, 22.492289], - [-103.863985, 22.491443], - [-103.885148, 22.473718], - [-103.885369, 22.473525], - [-103.876056, 22.441441], - [-103.876098, 22.441184], - [-103.894553, 22.438651], - [-103.8947, 22.438164], - [-103.865976, 22.415227], - [-103.866929, 22.409381], - [-103.925931, 22.332559], - [-103.926124, 22.332073], - [-103.910263, 22.283595], - [-103.910149, 22.283328], - [-103.917698, 22.262295], - [-103.917876, 22.26197], - [-103.886554, 22.226699], - [-103.886139, 22.226177], - [-103.866275, 22.169826], - [-103.862936, 22.166882], - [-103.829294, 22.285611], - [-103.82862, 22.286613], - [-103.846107, 22.33098], - [-103.845434, 22.342757], - [-103.812209, 22.375712], - [-103.811152, 22.376745], - [-103.810166, 22.426526], - [-103.810176, 22.427285], - [-103.769578, 22.554826], - [-103.769102, 22.555789], - [-103.72715, 22.57402], - [-103.726555, 22.574147], - [-103.66195, 22.54736], - [-103.661011, 22.547144], - [-103.603325, 22.557128], - [-103.602759, 22.556792], - [-103.559456, 22.428952], - [-103.559194, 22.428428], - [-103.593058, 22.407391], - [-103.59402, 22.407215], - [-103.604659, 22.340596], - [-103.604802, 22.340142], - [-103.64148, 22.341327], - [-103.642111, 22.340873], - [-103.637979, 22.295689], - [-103.637788, 22.295233], - [-103.594899, 22.273534], - [-103.594903, 22.273078], - [-103.629862, 22.240161], - [-103.630896, 22.238918], - [-103.654724, 22.172092], - [-103.654474, 22.171936], - [-103.68938, 22.130574], - [-103.690293, 22.130093], - [-103.684749, 22.109895], - [-103.683847, 22.109205], - [-103.605544, 22.097818], - [-103.604705, 22.097942], - [-103.594815, 22.111198], - [-103.594043, 22.111647], - [-103.581573, 22.104907], - [-103.58112, 22.104871], - [-103.58031, 22.125725], - [-103.57995, 22.126827], - [-103.561087, 22.136268], - [-103.560141, 22.136586], - [-103.54343, 22.121138], - [-103.542737, 22.120612], - [-103.515146, 22.129147], - [-103.514551, 22.129109], - [-103.516203, 22.110731], - [-103.515897, 22.109916], - [-103.502525, 22.106781], - [-103.501564, 22.105564], - [-103.440506, 22.117359], - [-103.4395, 22.117639], - [-103.419818, 22.177496], - [-103.419686, 22.177483], - [-103.43229, 22.18915], - [-103.434125, 22.190761], - [-103.421667, 22.189544], - [-103.417231, 22.190476], - [-103.409756, 22.210326], - [-103.40896, 22.215365], - [-103.386606, 22.21259], - [-103.385657, 22.212529], - [-103.383145, 22.225289], - [-103.383026, 22.227013], - [-103.343386, 22.243087], - [-103.337697, 22.245164], - [-103.316331, 22.235619], - [-103.311934, 22.233257], - [-103.297042, 22.251804], - [-103.295104, 22.253285], - [-103.313483, 22.258565], - [-103.313938, 22.258711], - [-103.306584, 22.305948], - [-103.306883, 22.306283], - [-103.325167, 22.307365], - [-103.327706, 22.30736], - [-103.355296, 22.279596], - [-103.355688, 22.279799], - [-103.350147, 22.305541], - [-103.350093, 22.307457], - [-103.362443, 22.31389], - [-103.363756, 22.314483], - [-103.343226, 22.334831], - [-103.342955, 22.335122], - [-103.366633, 22.350076], - [-103.366683, 22.351039], - [-103.364842, 22.368571], - [-103.364717, 22.369536], - [-103.315197, 22.40466], - [-103.314585, 22.404908], - [-103.30095, 22.393169], - [-103.300502, 22.39299], - [-103.285675, 22.4137], - [-103.285231, 22.414244], - [-103.232161, 22.393862], - [-103.232121, 22.393394], - [-103.214266, 22.410139], - [-103.213413, 22.410073], - [-103.19865, 22.382123], - [-103.198771, 22.380601], - [-103.170864, 22.384679], - [-103.168578, 22.385013], - [-103.168697, 22.355692], - [-103.16859, 22.354616], - [-103.207866, 22.333049], - [-103.208233, 22.333081], - [-103.220859, 22.280706], - [-103.220622, 22.280466], - [-103.19215, 22.295223], - [-103.190574, 22.298527], - [-103.101324, 22.29398], - [-103.100988, 22.293975], - [-103.062027, 22.248898], - [-103.055455, 22.247256], - [-103.052424, 22.220378], - [-103.05477, 22.213827], - [-103.102617, 22.193059], - [-103.106059, 22.191356], - [-103.108834, 22.144489], - [-103.108798, 22.144341], - [-103.076512, 22.127838], - [-103.077025, 22.125504], - [-103.100675, 22.103344], - [-103.1017, 22.101798], - [-103.151383, 22.088016], - [-103.152784, 22.087622], - [-103.154761, 22.072642], - [-103.154285, 22.072237], - [-103.108705, 22.063487], - [-103.107909, 22.063396], - [-103.111193, 22.014619], - [-103.111486, 22.014261], - [-103.200687, 21.999008], - [-103.201662, 21.998568], - [-103.191989, 21.974789], - [-103.191812, 21.97445], - [-103.20469, 21.965546], - [-103.205568, 21.965194], - [-103.264243, 21.971806], - [-103.264715, 21.971845], - [-103.278335, 21.989679], - [-103.278561, 21.98965], - [-103.340555, 21.941312], - [-103.341351, 21.940403], - [-103.344036, 21.91376], - [-103.34408, 21.913472], - [-103.39417, 21.897149], - [-103.394339, 21.896695], - [-103.413088, 21.905985], - [-103.41387, 21.905455], - [-103.455158, 21.833208], - [-103.455357, 21.832796], - [-103.471601, 21.836742], - [-103.472357, 21.836004], - [-103.470931, 21.81451], - [-103.47053, 21.81354], - [-103.502246, 21.831989], - [-103.502817, 21.833075], - [-103.53097, 21.817984], - [-103.531425, 21.817839], - [-103.526052, 21.805671], - [-103.526058, 21.805065], - [-103.571814, 21.803756], - [-103.572627, 21.80349], - [-103.509291, 21.739846], - [-103.508474, 21.739735], - [-103.555335, 21.634616], - [-103.555492, 21.634084], - [-103.545501, 21.588217], - [-103.545222, 21.587639], - [-103.557485, 21.577039], - [-103.558892, 21.576404], - [-103.589726, 21.590134], - [-103.590497, 21.589795], - [-103.593785, 21.559767], - [-103.592918, 21.559226], - [-103.618545, 21.556869], - [-103.619005, 21.556864], - [-103.64441, 21.576369], - [-103.644878, 21.576454], - [-103.659622, 21.558695], - [-103.658316, 21.555907], - [-103.68911, 21.55289], - [-103.689789, 21.552353], - [-103.694474, 21.53016], - [-103.694487, 21.528887], - [-103.672414, 21.507059], - [-103.672578, 21.505455], - [-103.700976, 21.467075], - [-103.701465, 21.466266], - [-103.65902, 21.463745], - [-103.658743, 21.463698], - [-103.661265, 21.442808], - [-103.66079, 21.441584], - [-103.627958, 21.43468], - [-103.626525, 21.434482], - [-103.595668, 21.39261], - [-103.595312, 21.390906], - [-103.575879, 21.435774], - [-103.575884, 21.436154], - [-103.539994, 21.444053], - [-103.5387, 21.444771], - [-103.50488, 21.377656], - [-103.50392, 21.376837], - [-103.510657, 21.355428], - [-103.509964, 21.354893], - [-103.56649, 21.352196], - [-103.56763, 21.352216], - [-103.578119, 21.330435], - [-103.578452, 21.330234], - [-103.616041, 21.353217], - [-103.616945, 21.35341], - [-103.72007, 21.309358], - [-103.720839, 21.307961], - [-103.713924, 21.267098], - [-103.713648, 21.266687], - [-103.668348, 21.289872], - [-103.666681, 21.290465], - [-103.635137, 21.28318], - [-103.633993, 21.282292], - [-103.640097, 21.222449], - [-103.640196, 21.222072], - [-103.667327, 21.216113], - [-103.667324, 21.216049], - [-103.619036, 21.188942], - [-103.618634, 21.188779], - [-103.614058, 21.156929], - [-103.613608, 21.156247], - [-103.570124, 21.117754], - [-103.568959, 21.116718], - [-103.531591, 21.141584], - [-103.531465, 21.141978], - [-103.511234, 21.146121], - [-103.510964, 21.146222], - [-103.504905, 21.127998], - [-103.504052, 21.127739], - [-103.428882, 21.146244], - [-103.428582, 21.146724], - [-103.396245, 21.080728], - [-103.395963, 21.080288], - [-103.354164, 21.045781], - [-103.353103, 21.04526], - [-103.296942, 21.064578], - [-103.296558, 21.064838], - [-103.276614, 21.051284], - [-103.275731, 21.051447], - [-103.258277, 21.081984], - [-103.258235, 21.083066], - [-103.210118, 21.093985], - [-103.209602, 21.094221], - [-103.188407, 21.070864], - [-103.188367, 21.07066], - [-103.128303, 21.053311], - [-103.127329, 21.053531], - [-103.123746, 21.066582], - [-103.123323, 21.066804], - [-103.077716, 21.07282], - [-103.077363, 21.072431], - [-103.057119, 21.098976], - [-103.056475, 21.09932], - [-103.075078, 21.096766], - [-103.07579, 21.096889], - [-103.098321, 21.128361], - [-103.0985, 21.128493], - [-103.072723, 21.151394], - [-103.071376, 21.152934], - [-103.084196, 21.192538], - [-103.084306, 21.194059], - [-103.057648, 21.24613], - [-103.056985, 21.246788], - [-103.065228, 21.255083], - [-103.0655, 21.255806], - [-103.045528, 21.262422], - [-103.044892, 21.262365], - [-103.046192, 21.250132], - [-103.045884, 21.249426], - [-103.018567, 21.241199], - [-103.017014, 21.241049], - [-102.998289, 21.259673], - [-102.996904, 21.259682], - [-102.946558, 21.234577], - [-102.946294, 21.234443], - [-102.947945, 21.21474], - [-102.947811, 21.214601], - [-102.914305, 21.206947], - [-102.910652, 21.205235], - [-102.903, 21.23492], - [-102.903029, 21.235186], - [-102.877371, 21.236766], - [-102.876574, 21.236634], - [-102.846897, 21.276691], - [-102.844829, 21.277327], - [-102.849075, 21.292309], - [-102.848778, 21.293176], - [-102.815547, 21.294493], - [-102.815159, 21.294669], - [-102.812734, 21.322613], - [-102.811964, 21.323717], - [-102.799158, 21.308006], - [-102.798499, 21.306914], - [-102.78979, 21.328712], - [-102.788916, 21.329507], - [-102.756068, 21.322462], - [-102.755281, 21.323159], - [-102.758165, 21.338135], - [-102.757765, 21.339186], - [-102.728505, 21.356662], - [-102.72796, 21.357088], - [-102.729453, 21.378958], - [-102.729128, 21.387356], - [-102.698378, 21.343683], - [-102.698284, 21.343268], - [-102.680337, 21.339918], - [-102.677777, 21.34089], - [-102.642539, 21.36747], - [-102.642437, 21.367738], - [-102.638337, 21.392521], - [-102.638141, 21.393237], - [-102.659444, 21.410392], - [-102.659669, 21.410877], - [-102.654726, 21.446104], - [-102.655007, 21.44665], - [-102.63634, 21.461827], - [-102.63613, 21.462908], - [-102.64927, 21.473567], - [-102.649067, 21.474197], - [-102.62496, 21.501339], - [-102.624842, 21.501411], - [-102.64208, 21.518673], - [-102.642167, 21.518721], - [-102.63084, 21.533443], - [-102.630734, 21.533983], - [-102.695547, 21.542657], - [-102.69641, 21.54303], - [-102.695076, 21.571332], - [-102.695101, 21.572913], - [-102.763794, 21.595754], - [-102.764741, 21.596065], - [-102.782768, 21.646151], - [-102.783615, 21.646693], - [-102.773409, 21.658035], - [-102.773405, 21.658306], - [-102.805283, 21.671012], - [-102.805279, 21.671282], - [-102.767166, 21.687118], - [-102.766492, 21.686928], - [-102.746393, 21.71817], - [-102.7453, 21.720052], - [-102.698138, 21.728864], - [-102.696263, 21.728768], - [-102.669609, 21.763609], - [-102.668926, 21.764051], - [-102.555208, 21.743574], - [-102.552494, 21.742651], - [-102.463435, 21.697918], - [-102.456864, 21.698088], - [-102.458917, 21.680818], - [-102.461066, 21.679259], - [-102.317418, 21.628342], - [-102.310166, 21.626626], - [-102.296862, 21.65075], - [-102.295371, 21.653099], - [-102.303959, 21.666603], - [-102.30399, 21.666685], - [-102.239077, 21.652659], - [-102.237618, 21.652001], - [-102.214232, 21.686604], - [-102.214267, 21.694819], - [-102.187412, 21.689942], - [-102.177886, 21.688155], - [-102.173772, 21.700994], - [-102.171433, 21.707001], - [-102.143639, 21.706249], - [-102.1421, 21.705374], - [-102.088696, 21.767128], - [-102.086181, 21.767264], - [-102.093251, 21.776054], - [-102.094571, 21.777702], - [-102.07372, 21.783197], - [-102.071963, 21.782655], - [-102.042723, 21.822544], - [-102.041743, 21.823068], - [-102.038246, 21.850505], - [-102.038418, 21.853198], - [-101.897615, 21.904261], - [-101.880213, 21.91015], - [-101.847263, 21.907961], - [-101.838003, 21.907344], - [-101.835995, 21.93282], - [-101.835289, 21.941771], - [-101.881762, 21.938132], - [-101.8858, 21.932612], - [-101.911549, 21.994508], - [-101.912598, 21.997486], - [-101.892785, 21.980331], - [-101.891253, 21.976592], - [-101.864731, 21.98997], - [-101.863799, 21.990016], - [-101.861854, 22.028694], - [-101.86167, 22.028884], - [-101.8189, 22.020802], - [-101.815673, 22.019983], - [-101.801944, 22.030676], - [-101.801436, 22.030996], - [-101.777637, 22.008322], - [-101.777633, 22.007302], - [-101.753289, 22.013199], - [-101.751004, 22.014645], - [-101.660507, 21.942112], - [-101.659141, 21.941595], - [-101.650696, 21.907675], - [-101.650117, 21.90741], - [-101.61674, 21.929387], - [-101.616712, 21.929448], - [-101.596446, 21.910275], - [-101.595849, 21.909963], - [-101.570117, 21.917118], - [-101.569806, 21.917081], - [-101.565748, 21.842489], - [-101.565964, 21.842033], - [-101.514077, 21.806834], - [-101.510542, 21.799058], - [-101.538402, 21.777687], - [-101.538832, 21.777335], - [-101.575266, 21.779258], - [-101.585694, 21.778777], - [-101.580014, 21.740357], - [-101.579683, 21.736405], - [-101.558441, 21.73459], - [-101.557653, 21.735099], - [-101.570779, 21.704483], - [-101.570855, 21.704308], - [-101.583305, 21.709656], - [-101.584043, 21.709574], - [-101.569389, 21.692971], - [-101.569139, 21.69231], - [-101.596074, 21.637446], - [-101.596086, 21.637062], - [-101.580521, 21.626077], - [-101.580189, 21.625531], - [-101.611544, 21.583598], - [-101.612313, 21.582917], - [-101.620572, 21.541126], - [-101.620008, 21.541069], - [-101.640982, 21.527237], - [-101.641269, 21.526648], - [-101.570491, 21.418619], - [-101.570416, 21.418536], - [-101.677325, 21.395049], - [-101.677583, 21.395142], - [-101.643426, 21.355534], - [-101.642845, 21.355106], - [-101.642469, 21.300863], - [-101.643177, 21.299336], - [-101.758058, 21.268678], - [-101.759717, 21.267622], - [-101.781878, 21.162143], - [-101.781109, 21.160528], - [-101.800433, 21.164276], - [-101.804009, 21.166348], - [-101.810567, 21.142556], - [-101.811826, 21.141237], - [-101.833062, 21.137605], - [-101.833215, 21.137568], - [-101.81901, 21.113163], - [-101.817659, 21.107046], - [-101.874249, 21.093579], - [-101.875004, 21.092894], - [-101.938879, 20.931504], - [-101.93895, 20.930614], - [-101.979441, 20.925064], - [-101.979882, 20.925048], - [-102.02147, 20.862466], - [-102.021781, 20.86216], - [-102.079676, 20.82928], - [-102.079867, 20.829065], - [-102.095514, 20.780633], - [-102.095908, 20.780051], - [-102.067775, 20.77223], - [-102.067593, 20.772247], - [-102.064167, 20.739187], - [-102.064487, 20.73875], - [-102.034692, 20.742203], - [-102.034461, 20.742139], - [-102.037853, 20.717673], - [-102.03774, 20.717396], - [-102.015972, 20.717456], - [-102.014389, 20.717064], - [-102.015514, 20.668525], - [-102.013837, 20.664441], - [-101.970713, 20.664226], - [-101.96808, 20.663641], - [-101.971246, 20.637913], - [-101.971188, 20.63761], - [-101.95138, 20.608573], - [-101.951144, 20.607427], - [-101.975042, 20.547084], - [-101.973918, 20.541788], - [-102.012594, 20.544466], - [-102.014142, 20.542596], - [-102.010115, 20.526683], - [-102.010092, 20.526059], - [-102.045953, 20.482692], - [-102.046027, 20.482614], - [-102.043909, 20.456785], - [-102.043995, 20.456592], - [-102.076586, 20.428192], - [-102.076616, 20.428159], - [-102.071181, 20.409417], - [-102.070883, 20.409019], - [-102.104878, 20.3791], - [-102.105768, 20.378636], - [-102.16777, 20.378788], - [-102.168168, 20.37874], - [-102.158214, 20.367176], - [-102.158158, 20.36696], - [-102.176477, 20.36843], - [-102.177022, 20.368154], - [-102.17507, 20.356162], - [-102.175366, 20.355966], - [-102.253663, 20.335409], - [-102.25416, 20.335266], - [-102.30625, 20.358107], - [-102.306598, 20.358164], - [-102.365956, 20.327989], - [-102.36629, 20.327879], - [-102.434109, 20.341058], - [-102.434632, 20.341024], - [-102.490039, 20.308947], - [-102.490629, 20.308601], - [-102.504939, 20.316015], - [-102.505442, 20.315858], - [-102.530018, 20.296221], - [-102.530477, 20.295826], - [-102.527874, 20.271455], - [-102.528584, 20.270953], - [-102.543719, 20.2807], - [-102.544118, 20.280559], - [-102.554746, 20.260697], - [-102.554977, 20.260685], - [-102.564123, 20.278239], - [-102.564583, 20.278155], - [-102.590191, 20.258507], - [-102.590486, 20.258465], - [-102.609616, 20.269189], - [-102.610146, 20.269089], - [-102.627039, 20.229644], - [-102.627331, 20.229386], - [-102.678001, 20.226929], - [-102.679025, 20.226913], - [-102.679239, 20.178897], - [-102.679722, 20.171502], - [-102.816251, 20.138564], - [-102.819282, 20.137248], - [-102.80214, 20.123916], - [-102.801873, 20.123034], - [-102.815853, 20.106184], - [-102.816287, 20.106048], - [-102.838777, 20.114545], - [-102.840675, 20.116109], - [-102.865431, 20.160854], - [-102.865953, 20.162364], - [-102.938382, 20.171419], - [-102.94017, 20.171682], - [-102.954143, 20.170878], - [-102.954003, 20.166569], - [-102.9245, 20.136258], - [-102.926448, 20.129575], - [-102.957758, 20.141219], - [-102.95958, 20.14124], - [-102.969173, 20.12609], - [-102.970584, 20.125404], - [-103.003225, 20.136708], - [-103.004819, 20.138196], - [-103.044287, 20.123845], - [-103.044408, 20.123601], - [-103.020735, 20.047526], - [-103.02072, 20.047306], - [-103.051492, 19.992147], - [-103.051504, 19.991611], - [-103.025896, 19.961028], - [-103.02522, 19.960492], - [-102.952457, 19.996366], - [-102.951215, 19.996557], - [-102.904185, 19.968509], - [-102.902622, 19.966863], - [-102.88208, 19.973718], - [-102.88205, 19.975769], - [-102.794354, 19.950319], - [-102.794009, 19.950291], - [-102.777923, 19.960167], - [-102.776874, 19.960154], - [-102.776937, 19.941482], - [-102.770634, 19.929868], - [-102.73309, 19.900915], - [-102.731215, 19.899508], - [-102.7423, 19.879553], - [-102.74249, 19.878759], - [-102.730323, 19.854459], - [-102.730353, 19.853209], - [-102.753117, 19.834343], - [-102.75333, 19.834124], - [-102.73957, 19.816659], - [-102.739396, 19.815826], - [-102.7906, 19.813647], - [-102.792312, 19.814116], - [-102.818341, 19.779879], - [-102.819527, 19.777941], - [-102.816901, 19.751133], - [-102.816274, 19.749905], - [-102.805247, 19.752947], - [-102.803926, 19.752158], - [-102.810634, 19.741642], - [-102.810805, 19.741016], - [-102.780997, 19.705137], - [-102.780482, 19.704324], - [-102.804439, 19.676328], - [-102.805663, 19.674838], - [-102.792387, 19.674625], - [-102.791203, 19.673186], - [-102.776024, 19.628142], - [-102.775849, 19.627715], - [-102.71622, 19.603266], - [-102.715932, 19.602935], - [-102.72603, 19.579185], - [-102.726039, 19.579026], - [-102.710634, 19.541322], - [-102.710656, 19.541069], - [-102.738578, 19.494764], - [-102.738065, 19.493359], - [-102.690931, 19.512738], - [-102.689487, 19.513416], - [-102.65845, 19.487047], - [-102.657528, 19.487237], - [-102.582545, 19.52827], - [-102.582318, 19.528326], - [-102.575343, 19.498988], - [-102.575943, 19.498062], - [-102.543424, 19.478993], - [-102.542705, 19.478033], - [-102.56793, 19.446759], - [-102.568581, 19.445478], - [-102.543597, 19.43096], - [-102.543715, 19.42958], - [-102.575665, 19.424308], - [-102.576787, 19.423909], - [-102.570711, 19.414618], - [-102.568801, 19.412626], - [-102.669283, 19.213324], - [-102.6695, 19.21271], - [-102.700536, 19.224448], - [-102.700692, 19.224537], - [-102.69489, 19.247774], - [-102.696593, 19.248809], - [-102.711735, 19.236022], - [-102.712722, 19.235808], - [-102.753113, 19.255705], - [-102.753816, 19.255805], - [-102.789464, 19.24279], - [-102.790243, 19.242458], - [-102.824385, 19.20572], - [-102.824433, 19.205693], - [-102.865015, 19.209839], - [-102.865377, 19.211285], - [-102.914692, 19.179587], - [-102.915073, 19.179367], - [-102.957827, 19.17355], - [-102.960096, 19.174056], - [-102.978813, 19.152918], - [-102.979358, 19.152413], - [-102.976961, 19.124551], - [-102.977623, 19.120061], - [-103.003689, 19.137141], - [-103.00446, 19.137571], - [-103.020028, 19.130772], - [-103.020427, 19.130494], - [-103.016078, 19.079923], - [-103.016006, 19.079185], - [-102.990739, 19.054619], - [-102.990835, 19.053379], - [-103.020345, 19.052242], - [-103.025214, 19.053104], - [-103.032771, 19.029775], - [-103.033242, 19.029118], - [-103.062253, 19.028528], - [-103.063239, 19.027854], - [-103.052576, 18.99853], - [-103.0525, 18.998125], - [-103.08758, 18.984312], - [-103.088109, 18.984109], - [-103.124354, 18.930827], - [-103.125019, 18.930145], - [-103.17049, 18.934765], - [-103.173364, 18.936264], - [-103.204002, 18.967416], - [-103.204472, 18.967612], - [-103.223764, 19.023474], - [-103.223876, 19.024101], - [-103.331698, 18.973541], - [-103.332485, 18.973251], - [-103.374878, 18.978654], - [-103.377249, 18.98017], - [-103.411193, 18.967649], - [-103.411434, 18.967659], - [-103.472211, 18.990966], - [-103.47266, 18.991136], - [-103.487831, 18.966504], - [-103.488594, 18.964889], - [-103.498677, 19.011548], - [-103.498782, 19.011674], - [-103.488651, 19.026905], - [-103.488506, 19.027587], - [-103.526175, 19.078418], - [-103.526481, 19.078728], - [-103.497746, 19.174372], - [-103.497631, 19.174642], - [-103.515202, 19.211076], - [-103.515239, 19.211352], - [-103.509068, 19.294873], - [-103.509182, 19.29515], - [-103.486346, 19.337495], - [-103.48643, 19.337891], - [-103.574026, 19.411386], - [-103.574268, 19.411562], - [-103.615066, 19.474738], - [-103.615358, 19.474995], - [-103.606199, 19.500558], - [-103.618277, 19.512519], - [-103.689597, 19.49265], - [-103.690045, 19.492448], - [-103.718033, 19.453677], - [-103.718257, 19.453498], - [-103.818971, 19.40887], - [-103.819253, 19.40874], - [-103.823968, 19.437571], - [-103.824135, 19.437788], - [-103.854781, 19.430942], - [-103.856453, 19.431331], - [-103.88866, 19.463316], - [-103.889331, 19.463597], - [-103.905959, 19.455679], - [-103.908765, 19.453628], - [-103.898596, 19.434966], - [-103.899522, 19.434547], - [-104.051764, 19.497601], - [-104.061725, 19.497703], - [-104.076162, 19.481324], - [-104.07674, 19.480215], - [-104.077531, 19.432701], - [-104.070884, 19.435235], - [-104.086359, 19.405029], - [-104.090226, 19.393025], - [-104.128425, 19.356132], - [-104.133344, 19.353746], - [-104.122873, 19.319141], - [-104.122985, 19.319042], - [-104.161026, 19.303035], - [-104.16165, 19.30272], - [-104.1789, 19.312822], - [-104.179801, 19.312562], - [-104.191196, 19.292302], - [-104.191667, 19.29221], - [-104.260672, 19.311826], - [-104.261179, 19.311806], - [-104.296807, 19.302972], - [-104.297591, 19.302671], - [-104.314128, 19.279632], - [-104.314804, 19.279356], - [-104.343376, 19.289711], - [-104.34388, 19.289546], - [-104.361235, 19.269223], - [-104.361874, 19.269078], - [-104.373826, 19.281855], - [-104.374273, 19.281884], - [-104.401008, 19.266659], - [-104.401323, 19.266813], - [-104.399925, 19.288957], - [-104.400946, 19.28907], - [-104.439165, 19.278048], - [-104.439259, 19.277988], - [-104.471109, 19.228971], - [-104.471673, 19.228836], - [-104.488175, 19.22955], - [-104.488955, 19.229943], - [-104.493229, 19.252897], - [-104.494535, 19.253947], - [-104.507653, 19.24418], - [-104.508385, 19.244225], - [-104.529509, 19.260031], - [-104.530288, 19.259789], - [-104.568761, 19.219147], - [-104.569113, 19.218695], - [-104.576407, 19.180868], - [-104.576938, 19.180205], - [-104.599707, 19.179821], - [-104.600287, 19.179053], - [-104.588867, 19.150811], - [-104.58984, 19.150095], - [-104.61204, 19.155254], - [-104.612834, 19.155483], - [-104.618681, 19.180678], - [-104.618822, 19.180851], - [-104.679935, 19.193111], - [-104.679979, 19.193172], - [-104.692686, 19.173021], - [-104.693347, 19.173263], - [-104.702813, 19.178132], - [-104.703461, 19.180376], - [-104.685542, 19.206763], - [-104.685735, 19.207092], - [-104.73384, 19.221583], - [-104.734011, 19.221698], - [-104.732408, 19.239188], - [-104.732507, 19.239283], - [-104.808636, 19.233067], - [-104.808916, 19.2332], - [-104.809467, 19.258138], - [-104.809446, 19.258605], - [-104.788835, 19.281413], - [-104.788661, 19.281778], - [-104.797952, 19.298669], - [-104.798295, 19.299014], - [-104.829399, 19.30782], - [-104.830519, 19.307659], - [-104.836685, 19.290177], - [-104.836967, 19.289768], - [-104.876346, 19.280909], - [-104.876703, 19.28092], - [-104.936749, 19.308881], - [-104.937062, 19.308881], - [-105.031367, 19.387852], - [-105.031631, 19.387817], - [-105.019474, 19.420113], - [-105.019562, 19.420765], - [-105.072551, 19.470758], - [-105.073125, 19.471104], - [-105.057716, 19.474228], - [-105.057508, 19.474455], - [-105.060671, 19.49554], - [-105.060682, 19.495635], - [-105.081369, 19.505282], - [-105.081501, 19.505407], - [-105.088902, 19.559934], - [-105.088954, 19.560453], - [-105.116405, 19.586185], - [-105.119539, 19.587328], - [-105.14182, 19.574847], - [-105.142315, 19.575081], - [-105.152054, 19.602804], - [-105.152704, 19.603511], - [-105.199197, 19.621047], - [-105.199519, 19.62126], - [-105.26403, 19.67912], - [-105.264379, 19.679319], - [-105.26277, 19.694285], - [-105.263548, 19.6956], - [-105.491993, 19.991205], - [-105.49273, 19.992255], - [-105.549344, 20.094447], - [-105.549561, 20.094569], - [-105.542788, 20.183742], - [-105.542747, 20.184845], - [-105.554156, 20.224466], - [-105.554324, 20.224842], - [-105.655428, 20.3172], - [-105.656162, 20.317713], - [-105.694823, 20.40914], - [-105.69496, 20.409228], - [-105.672694, 20.407173], - [-105.672352, 20.407394], - [-105.671191, 20.425389], - [-105.671275, 20.425883], - [-105.604623, 20.475499], - [-105.604149, 20.475769], - [-105.316769, 20.511622], - [-105.316578, 20.511515], - [-105.258465, 20.557032], - [-105.2578, 20.557695], - [-105.233253, 20.614904], - [-105.232958, 20.615433], - [-105.244971, 20.652939], - [-105.245072, 20.653315], - [-105.278955, 20.681254], - [-105.278932, 20.681335], - [-105.26173, 20.67966], - [-105.261252, 20.679816], - [-105.24333, 20.703525], - [-105.242573, 20.704242], - [-105.23992, 20.747143], - [-105.239916, 20.747351], - [-105.197169, 20.776826], - [-105.196961, 20.777171], - [-105.173479, 20.767717], - [-105.173397, 20.767711], - [-105.162892, 20.791137], - [-105.162276, 20.792519], - [-105.174077, 20.813345], - [-105.173943, 20.813943], - [-105.142874, 20.885956], - [-105.142546, 20.886466], - [-105.080701, 20.93138], - [-105.080337, 20.931471], - [-105.04744, 20.934386], - [-105.046805, 20.934284], - [-105.032416, 20.909641], - [-105.031613, 20.909171], - [-105.006809, 20.922393], - [-105.006332, 20.922536], - [-105.003952, 20.911263], - [-105.003394, 20.910858], - [-104.991247, 20.92151], - [-104.990374, 20.921563], - [-104.967716, 20.909396], - [-104.967244, 20.909508], - [-104.953392, 20.92926], - [-104.953164, 20.930134], - [-104.901385, 20.945657], - [-104.900526, 20.946341], - [-104.901438, 20.961054], - [-104.900627, 20.962747], - [-104.838479, 21.019651], - [-104.838099, 21.020009], - [-104.730423, 21.012404], - [-104.729989, 21.012288], - [-104.729686, 20.984236], - [-104.729363, 20.983154], - [-104.682768, 20.961574], - [-104.681058, 20.960667], - [-104.681778, 20.944882], - [-104.681, 20.943841], - [-104.629088, 20.924159], - [-104.628533, 20.923866], - [-104.591215, 20.934347], - [-104.590736, 20.934619], - [-104.557356, 20.924458], - [-104.556922, 20.924152], - [-104.500167, 20.838512], - [-104.499938, 20.838186], - [-104.414644, 20.794067], - [-104.414125, 20.79377], - [-104.378107, 20.742933], - [-104.377549, 20.742373], - [-104.288799, 20.689406], - [-104.288487, 20.689157], - [-104.281968, 20.62929], - [-104.282011, 20.628993], - [-104.253989, 20.603493], - [-104.25364, 20.603419], - [-104.247203, 20.630775], - [-104.246924, 20.631492], - [-104.260416, 20.641964], - [-104.26039, 20.642836], - [-104.236662, 20.662261], - [-104.236461, 20.662897], - [-104.252748, 20.681892], - [-104.25316, 20.682296], - [-104.241843, 20.712739], - [-104.241816, 20.713434], - [-104.282811, 20.783238], - [-104.282856, 20.783481], - [-104.297317, 20.770852], - [-104.297617, 20.770795], - [-104.322604, 20.792987], - [-104.328322, 20.798098], - [-104.375624, 20.780608], - [-104.375892, 20.784073], - [-104.358733, 20.802635], - [-104.350402, 20.811644], - [-104.362495, 20.814143], - [-104.364059, 20.813933], - [-104.362008, 20.840698], - [-104.361768, 20.840931], - [-104.296051, 20.845388], - [-104.295416, 20.845496], - [-104.279673, 20.864249], - [-104.279111, 20.864519], - [-104.290904, 20.887527], - [-104.290916, 20.887796], - [-104.268451, 20.887263], - [-104.26788, 20.887461], - [-104.230085, 20.931977], - [-104.228753, 20.935582], - [-104.207201, 20.935966], - [-104.206588, 20.936373], - [-104.201059, 20.95732], - [-104.201306, 20.959242], - [-104.227887, 20.967169], - [-104.233129, 20.968743], - [-104.238525, 20.991715], - [-104.238474, 20.992151], - [-104.22529, 20.997412], - [-104.223196, 21.001264], - [-104.242486, 21.026761], - [-104.242713, 21.027332], - [-104.211109, 21.118139], - [-104.21086, 21.118601], - [-104.219407, 21.176593], - [-104.219398, 21.176611], - [-104.20401, 21.192319], - [-104.202794, 21.192832], - [-104.112308, 21.189095], - [-104.110845, 21.188596], - [-104.087196, 21.204732], - [-104.085659, 21.205361], - [-104.068887, 21.186841], - [-104.068586, 21.186773], - [-104.053501, 21.205125], - [-104.052839, 21.205413], - [-104.029335, 21.194682], - [-104.027969, 21.194672], - [-104.017677, 21.226637], - [-104.017489, 21.227202], - [-103.974096, 21.256003], - [-103.973454, 21.256328], - [-103.924869, 21.234704], - [-103.92402, 21.234572], - [-103.932234, 21.261932], - [-103.931057, 21.262547], - [-103.91815, 21.231579], - [-103.917899, 21.231028], - [-103.898944, 21.226667], - [-103.898363, 21.22649], - [-103.861997, 21.248694], - [-103.86189, 21.248868], - [-103.820535, 21.247872], - [-103.819391, 21.248435], - [-103.820672, 21.279275], - [-103.820346, 21.281041], - [-103.749701, 21.33664], - [-103.749352, 21.336708], - [-103.741424, 21.373605], - [-103.741333, 21.374055], - [-103.767126, 21.388155], - [-103.767333, 21.388433], - [-103.764402, 21.407949], - [-103.764403, 21.410304], - [-103.721031, 21.424607], - [-103.720896, 21.425431], - [-103.774247, 21.497931], - [-103.774129, 21.498381], - [-103.822907, 21.492613], - [-103.823713, 21.493047], - [-103.859384, 21.524072], - [-103.859925, 21.52475], - [-103.856001, 21.552046], - [-103.856272, 21.552365], - [-103.880706, 21.552072], - [-103.881646, 21.552142], - [-103.89248, 21.573955], - [-103.892578, 21.574143], - [-103.918672, 21.581356], - [-103.919235, 21.581986], - [-103.919229, 21.615731], - [-103.919084, 21.61625], - [-103.907638, 21.617828], - [-103.907699, 21.618676], - [-103.930122, 21.641656], - [-103.930249, 21.641914], - [-103.887746, 21.697418], - [-103.887725, 21.697818], - [-103.895581, 21.727265], - [-103.895913, 21.727744], - [-103.90241, 21.716144], - [-103.902791, 21.716258], - [-103.931728, 21.743206], - [-103.931828, 21.743381], - [-103.916557, 21.755409], - [-103.916129, 21.755769], - [-103.923131, 21.771405], - [-103.923482, 21.771802], - [-104.051826, 21.794707], - [-104.052254, 21.794761], - [-104.079602, 21.782554], - [-104.079856, 21.782405], - [-104.161244, 21.809618], - [-104.161748, 21.809841], - [-104.19664, 21.850532], - [-104.197, 21.850772], - [-104.172616, 21.869919], - [-104.172233, 21.871319], - [-104.184441, 21.867193], - [-104.186385, 21.868012], - [-104.200772, 21.89112], - [-104.201041, 21.891478], - [-104.173835, 21.963227], - [-104.173699, 21.963393], - [-104.192553, 21.984822], - [-104.193319, 21.98542], - [-104.245257, 21.966912], - [-104.246005, 21.966938], - [-104.293108, 22.002736], - [-104.294077, 22.002761], - [-104.326183, 21.975745], - [-104.326863, 21.975369], - [-104.370422, 21.975816], - [-104.370693, 21.976173], - [-104.360038, 22.014744], - [-104.360039, 22.015057], - [-104.373279, 22.101893], - [-104.373192, 22.102564], - [-104.331963, 22.199418], - [-104.331836, 22.19979], - [-104.341231, 22.208753], - [-104.341359, 22.209563], - [-104.32874, 22.245195], - [-104.328679, 22.245359], - [-104.284877, 22.297074], - [-104.284866, 22.297094], - [-104.298376, 22.346944], - [-104.298379, 22.347811], - [-104.255153, 22.348957], - [-104.254743, 22.348789], - [-104.258379, 22.384231], - [-104.258339, 22.384658], - [-104.221436, 22.420855], - [-104.22075, 22.4211], - [-104.164824, 22.391514], - [-104.164688, 22.39165], - [-104.178808, 22.427341], - [-104.178856, 22.427432], - [-104.167512, 22.444702], - [-104.167487, 22.44515], - [-104.194919, 22.447547], - [-104.1951, 22.447631], - [-104.186656, 22.46962], - [-104.18573, 22.471413], - [-104.214947, 22.483913], - [-104.214828, 22.484161], - [-104.190566, 22.507254], - [-104.19023, 22.507612], - [-104.151297, 22.515227], - [-104.150407, 22.516276], - [-104.116006, 22.496631], - [-104.113509, 22.49661], - [-104.120796, 22.517049], - [-104.120381, 22.517485], - [-104.077541, 22.531758], - [-104.07716, 22.531782], - [-104.051522, 22.467389], - [-104.051575, 22.466748], - [-104.094643, 22.355078], - [-104.094161, 22.355048], - [-104.049148, 22.376226], - [-104.048753, 22.376445], - [-104.015618, 22.364739], - [-104.015134, 22.364813], - [-104.005896, 22.407581], - [-104.005906, 22.408684], - [-103.962009, 22.433191], - [-103.96057, 22.433179], - [-103.929791, 22.474567], - [-103.929442, 22.475124], - [-103.934315, 22.499389], - [-103.934411, 22.499922], - [-104.004439, 22.536372], - [-104.005571, 22.5366], - [-103.972375, 22.544579], - [-103.972332, 22.545114], - [-104.000627, 22.566253], - [-104.000839, 22.566775], - [-103.986049, 22.590435], - [-103.986222, 22.590902], - [-104.017675, 22.596896], - [-104.018066, 22.596989], - [-104.026184, 22.612976], - [-104.027006, 22.613178], - [-104.033414, 22.633162], - [-104.033294, 22.634109], - [-104.016379, 22.664349], - [-104.015509, 22.668911], - [-104.073437, 22.695596], - [-104.073623, 22.696953], - [-104.060335, 22.69153], - [-104.059164, 22.692064], - [-104.056101, 22.723402], - [-104.055912, 22.723978], - [-104.026866, 22.742201], - [-104.025691, 22.743278], - [-103.93374, 22.746047] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "07", - "name": "Chiapas", - "id": 16, - "ISOCODE": "MX-CHP" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-91.973637, 17.911431], - [-91.940304, 17.907413], - [-91.939598, 17.906293], - [-91.955426, 17.882309], - [-91.956833, 17.87993], - [-91.948409, 17.863308], - [-91.944232, 17.862914], - [-91.920858, 17.898202], - [-91.918128, 17.89952], - [-91.854381, 17.883357], - [-91.849686, 17.882865], - [-91.812521, 17.900372], - [-91.810908, 17.899401], - [-91.805551, 17.871323], - [-91.804369, 17.868866], - [-91.780004, 17.851868], - [-91.77969, 17.851299], - [-91.792124, 17.827553], - [-91.792372, 17.824517], - [-91.78203, 17.78673], - [-91.782253, 17.782485], - [-91.790069, 17.746982], - [-91.790162, 17.746018], - [-91.829367, 17.738637], - [-91.830662, 17.737677], - [-91.769951, 17.707002], - [-91.767853, 17.703115], - [-91.739153, 17.710914], - [-91.738806, 17.710809], - [-91.681981, 17.67064], - [-91.681377, 17.670134], - [-91.673542, 17.683059], - [-91.672992, 17.683472], - [-91.655183, 17.676382], - [-91.654744, 17.676157], - [-91.659902, 17.630649], - [-91.659899, 17.630447], - [-91.644684, 17.622476], - [-91.644567, 17.621925], - [-91.663066, 17.612709], - [-91.663563, 17.612167], - [-91.639247, 17.581784], - [-91.638827, 17.581469], - [-91.634415, 17.535071], - [-91.634288, 17.534624], - [-91.662531, 17.480264], - [-91.662817, 17.479817], - [-91.699979, 17.467298], - [-91.699797, 17.467111], - [-91.666959, 17.462241], - [-91.665206, 17.46166], - [-91.671935, 17.44443], - [-91.672043, 17.444059], - [-91.582488, 17.408371], - [-91.579688, 17.407344], - [-91.561068, 17.401312], - [-91.558794, 17.40053], - [-91.557982, 17.416965], - [-91.557857, 17.422244], - [-91.542794, 17.420794], - [-91.537244, 17.419736], - [-91.513941, 17.394392], - [-91.509936, 17.392203], - [-91.420866, 17.374691], - [-91.419833, 17.374071], - [-91.417158, 17.346298], - [-91.416775, 17.345627], - [-91.38354, 17.315087], - [-91.383514, 17.312831], - [-91.38887, 17.299728], - [-91.389549, 17.299516], - [-91.425181, 17.302305], - [-91.425529, 17.301844], - [-91.439708, 17.250807], - [-91.439759, 17.25], - [-91.427507, 17.216724], - [-91.427424, 17.216595], - [-91.355383, 17.191075], - [-91.354748, 17.190771], - [-91.347867, 17.159429], - [-91.34649, 17.159027], - [-91.324962, 17.182635], - [-91.32445, 17.182747], - [-91.267268, 17.170654], - [-91.266447, 17.170133], - [-91.267807, 17.109053], - [-91.266943, 17.107878], - [-91.22785, 17.095791], - [-91.226958, 17.095059], - [-91.175735, 17.016082], - [-91.175253, 17.015704], - [-91.123601, 17.004139], - [-91.122759, 17.003384], - [-91.120593, 16.978275], - [-91.12005, 16.977528], - [-91.068717, 16.929172], - [-91.06448, 16.92513], - [-91.066152, 16.903354], - [-91.065627, 16.902858], - [-91.007112, 16.886184], - [-91.00561, 16.885414], - [-90.988887, 16.863454], - [-90.987831, 16.863085], - [-90.986165, 16.895775], - [-90.985743, 16.896753], - [-90.966371, 16.902142], - [-90.965009, 16.9015], - [-90.954341, 16.885473], - [-90.954509, 16.884474], - [-90.974512, 16.864877], - [-90.974055, 16.863626], - [-90.934513, 16.860016], - [-90.933639, 16.859326], - [-90.922852, 16.823003], - [-90.921765, 16.821935], - [-90.880949, 16.824395], - [-90.877713, 16.823786], - [-90.84951, 16.796704], - [-90.848784, 16.796535], - [-90.804545, 16.798857], - [-90.804092, 16.798716], - [-90.803202, 16.776676], - [-90.802809, 16.776235], - [-90.715721, 16.728174], - [-90.715258, 16.727891], - [-90.658983, 16.641861], - [-90.657596, 16.639458], - [-90.653648, 16.596127], - [-90.653358, 16.594503], - [-90.667527, 16.583648], - [-90.666841, 16.581806], - [-90.646546, 16.578417], - [-90.644635, 16.579077], - [-90.641863, 16.595915], - [-90.640493, 16.595814], - [-90.625988, 16.578604], - [-90.625601, 16.577704], - [-90.646351, 16.562045], - [-90.647078, 16.560518], - [-90.645532, 16.519498], - [-90.64541, 16.518643], - [-90.617597, 16.522142], - [-90.616584, 16.52179], - [-90.605625, 16.503637], - [-90.605764, 16.502039], - [-90.633972, 16.481271], - [-90.632494, 16.48008], - [-90.596501, 16.490714], - [-90.595197, 16.490775], - [-90.589784, 16.470082], - [-90.588446, 16.469686], - [-90.549026, 16.482413], - [-90.547012, 16.482351], - [-90.529155, 16.458349], - [-90.527802, 16.457716], - [-90.515641, 16.469685], - [-90.514216, 16.469896], - [-90.496749, 16.453766], - [-90.495804, 16.453489], - [-90.481929, 16.461587], - [-90.480353, 16.461263], - [-90.486976, 16.425446], - [-90.486087, 16.423912], - [-90.422182, 16.425143], - [-90.420724, 16.424897], - [-90.408942, 16.404201], - [-90.40772, 16.404033], - [-90.395214, 16.416138], - [-90.394269, 16.415936], - [-90.401816, 16.393002], - [-90.401126, 16.391432], - [-90.370214, 16.367689], - [-90.370326, 16.365928], - [-90.408194, 16.365044], - [-90.409766, 16.363016], - [-90.40982, 16.346477], - [-90.409314, 16.345899], - [-90.403981, 16.361106], - [-90.403034, 16.361057], - [-90.381314, 16.33936], - [-90.381642, 16.33845], - [-90.410011, 16.329183], - [-90.410371, 16.328806], - [-90.410607, 16.308023], - [-90.411644, 16.307236], - [-90.436653, 16.303824], - [-90.437648, 16.303227], - [-90.440823, 16.280825], - [-90.440482, 16.279792], - [-90.422295, 16.260434], - [-90.42243, 16.259179], - [-90.453902, 16.250619], - [-90.454717, 16.248648], - [-90.427935, 16.233959], - [-90.427827, 16.233196], - [-90.45637, 16.211741], - [-90.456673, 16.209506], - [-90.45283, 16.186269], - [-90.451978, 16.18504], - [-90.424688, 16.164253], - [-90.424505, 16.163184], - [-90.449882, 16.151013], - [-90.45025, 16.149951], - [-90.428063, 16.138304], - [-90.427881, 16.137121], - [-90.42932, 16.118678], - [-90.429766, 16.117769], - [-90.45508, 16.117806], - [-90.456612, 16.112149], - [-90.455199, 16.092925], - [-90.45367, 16.092259], - [-90.425891, 16.104782], - [-90.425038, 16.103667], - [-90.440961, 16.074859], - [-90.440841, 16.074195], - [-91.726736, 16.074029], - [-91.731384, 16.07402], - [-92.186245, 15.301868], - [-92.210076, 15.261215], - [-92.059324, 15.071114], - [-92.059197, 15.070334], - [-92.085156, 15.02122], - [-92.085666, 15.020729], - [-92.125686, 15.015232], - [-92.126983, 15.015237], - [-92.150372, 14.987528], - [-92.150768, 14.986918], - [-92.136138, 14.892523], - [-92.136216, 14.89165], - [-92.184135, 14.831022], - [-92.184834, 14.828264], - [-92.161243, 14.774308], - [-92.160726, 14.773497], - [-92.170033, 14.744256], - [-92.169931, 14.74375], - [-92.147849, 14.720183], - [-92.147495, 14.719035], - [-92.145715, 14.664398], - [-92.14568, 14.663804], - [-92.177008, 14.62633], - [-92.177054, 14.626226], - [-92.182328, 14.578643], - [-92.182476, 14.578329], - [-92.214937, 14.557154], - [-92.21526, 14.556898], - [-92.220748, 14.535301], - [-92.221101, 14.534988], - [-92.40942, 14.69612], - [-92.410629, 14.694944], - [-92.954202, 15.255998], - [-92.954389, 15.256744], - [-93.330439, 15.589521], - [-93.332346, 15.591125], - [-93.745232, 15.89408], - [-93.748981, 15.896515], - [-93.887057, 15.970999], - [-93.890756, 15.972624], - [-93.956132, 15.985303], - [-93.95715, 15.984602], - [-94.035432, 16.021756], - [-94.036008, 16.022095], - [-94.10949, 16.178685], - [-94.109568, 16.179101], - [-94.048505, 16.216142], - [-94.04847, 16.216171], - [-94.033412, 16.275064], - [-94.032961, 16.275945], - [-94.051637, 16.327492], - [-94.050665, 16.329714], - [-94.138793, 16.461232], - [-94.139156, 16.461786], - [-93.861142, 17.161772], - [-93.860916, 17.163741], - [-93.830753, 17.172638], - [-93.827138, 17.172503], - [-93.798553, 17.241453], - [-93.798306, 17.241923], - [-93.78986, 17.233367], - [-93.78861, 17.232327], - [-93.772583, 17.245721], - [-93.77245, 17.245824], - [-93.664866, 17.256204], - [-93.662694, 17.256277], - [-93.664344, 17.285019], - [-93.664411, 17.286193], - [-93.611156, 17.312376], - [-93.60794, 17.31493], - [-93.514106, 17.442386], - [-93.513805, 17.442805], - [-93.51485, 17.490209], - [-93.514902, 17.490238], - [-93.485082, 17.548482], - [-93.484146, 17.549877], - [-93.4521, 17.546235], - [-93.451707, 17.546484], - [-93.446356, 17.585466], - [-93.445946, 17.585986], - [-93.422162, 17.588967], - [-93.42049, 17.590048], - [-93.384675, 17.641855], - [-93.384789, 17.644378], - [-93.356746, 17.647893], - [-93.356278, 17.648037], - [-93.354276, 17.712717], - [-93.354302, 17.712882], - [-93.390531, 17.773165], - [-93.390548, 17.7734], - [-93.34943, 17.766614], - [-93.349135, 17.767085], - [-93.343647, 17.785843], - [-93.343112, 17.787517], - [-93.380852, 17.782717], - [-93.380948, 17.783165], - [-93.366734, 17.802829], - [-93.366611, 17.802923], - [-93.34093, 17.797578], - [-93.340586, 17.798121], - [-93.341142, 17.929388], - [-93.340897, 17.930331], - [-93.298279, 17.938438], - [-93.29801, 17.938582], - [-93.278445, 17.985192], - [-93.278323, 17.985288], - [-93.241341, 17.950512], - [-93.240921, 17.950095], - [-93.192804, 17.956036], - [-93.192002, 17.956136], - [-93.129278, 17.908004], - [-93.129129, 17.907852], - [-93.091895, 17.897769], - [-93.091376, 17.897561], - [-93.130272, 17.852881], - [-93.1318, 17.852316], - [-93.116116, 17.823284], - [-93.115641, 17.822213], - [-93.102128, 17.844842], - [-93.101645, 17.845828], - [-93.044103, 17.842669], - [-93.043126, 17.842577], - [-93.025831, 17.825654], - [-93.025436, 17.825418], - [-93.012013, 17.793833], - [-93.012013, 17.793669], - [-93.042352, 17.768662], - [-93.042638, 17.768412], - [-93.057626, 17.72066], - [-93.057725, 17.720489], - [-93.037382, 17.704069], - [-93.037116, 17.703382], - [-93.040561, 17.610446], - [-93.040525, 17.609828], - [-93.004488, 17.579588], - [-93.004433, 17.579495], - [-93.005631, 17.555374], - [-93.005565, 17.555248], - [-92.979987, 17.536507], - [-92.979786, 17.536131], - [-92.99085, 17.531943], - [-92.992648, 17.530016], - [-92.985635, 17.51517], - [-92.984873, 17.511308], - [-92.969225, 17.518315], - [-92.968042, 17.517973], - [-92.948636, 17.483306], - [-92.94812, 17.482743], - [-92.93936, 17.502349], - [-92.939199, 17.502447], - [-92.888296, 17.510104], - [-92.887356, 17.510464], - [-92.860954, 17.501007], - [-92.859809, 17.500282], - [-92.850341, 17.469287], - [-92.849876, 17.468978], - [-92.832213, 17.481237], - [-92.831552, 17.480857], - [-92.819481, 17.433404], - [-92.819631, 17.432746], - [-92.854495, 17.411887], - [-92.854264, 17.411198], - [-92.82953, 17.396647], - [-92.829216, 17.3963], - [-92.829701, 17.408111], - [-92.8294, 17.408599], - [-92.786068, 17.417614], - [-92.785795, 17.417527], - [-92.755006, 17.343407], - [-92.75418, 17.343299], - [-92.679457, 17.37825], - [-92.678765, 17.378494], - [-92.668208, 17.456231], - [-92.668185, 17.456695], - [-92.659517, 17.444548], - [-92.659408, 17.444285], - [-92.606062, 17.477251], - [-92.605825, 17.477376], - [-92.595171, 17.517462], - [-92.59699, 17.52036], - [-92.572754, 17.548062], - [-92.571411, 17.549609], - [-92.533177, 17.54889], - [-92.530073, 17.549998], - [-92.520297, 17.572791], - [-92.519985, 17.57305], - [-92.403344, 17.578786], - [-92.402079, 17.57804], - [-92.351401, 17.617449], - [-92.350674, 17.617934], - [-92.349999, 17.700689], - [-92.349897, 17.702785], - [-92.329559, 17.710713], - [-92.32809, 17.71373], - [-92.279156, 17.695679], - [-92.274623, 17.692258], - [-92.195036, 17.776225], - [-92.194499, 17.776641], - [-92.188714, 17.768154], - [-92.188487, 17.768135], - [-92.172632, 17.785824], - [-92.17195, 17.786568], - [-92.151708, 17.764569], - [-92.130825, 17.76608], - [-92.146623, 17.81242], - [-92.146583, 17.814676], - [-92.121019, 17.796842], - [-92.120482, 17.795973], - [-92.106463, 17.838127], - [-92.102033, 17.85088], - [-92.049958, 17.853957], - [-92.049407, 17.854772], - [-92.072127, 17.877402], - [-92.071797, 17.877674], - [-92.003503, 17.890603], - [-92.003355, 17.890518], - [-91.992308, 17.91604], - [-91.99129, 17.919612], - [-91.999803, 17.942513], - [-91.999888, 17.943345], - [-91.973637, 17.911431] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "27", - "name": "Tabasco", - "id": 17, - "ISOCODE": "MX-TAB" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-92.451062, 18.59787], - [-92.428409, 18.562082], - [-92.42623, 18.557041], - [-92.414787, 18.489297], - [-92.414052, 18.487292], - [-92.365494, 18.464623], - [-92.364325, 18.463729], - [-92.356818, 18.443541], - [-92.355477, 18.442853], - [-92.323711, 18.4713], - [-92.322529, 18.473081], - [-92.310556, 18.460529], - [-92.310287, 18.455579], - [-92.176771, 18.458203], - [-92.176148, 18.458233], - [-92.172951, 18.275338], - [-92.183244, 18.274063], - [-92.154038, 18.220172], - [-92.148938, 18.210406], - [-92.16057, 18.187893], - [-92.160903, 18.155424], - [-92.112006, 18.095644], - [-92.110108, 18.094406], - [-92.082974, 18.085688], - [-92.081558, 18.08569], - [-92.041661, 18.098077], - [-92.039939, 18.09795], - [-92.042584, 18.078929], - [-92.042095, 18.078319], - [-91.97968, 18.043446], - [-91.978779, 18.04283], - [-91.967797, 18.019178], - [-91.966748, 18.015988], - [-91.904166, 18.012694], - [-91.900355, 18.012147], - [-91.878438, 17.995631], - [-91.867208, 17.983266], - [-91.855556, 17.981061], - [-91.804644, 17.972551], - [-91.768006, 17.948548], - [-91.762267, 17.939014], - [-91.760585, 17.95648], - [-91.760487, 17.957626], - [-91.661453, 17.888089], - [-91.638806, 17.873954], - [-91.631542, 17.898149], - [-91.633089, 17.905016], - [-91.614847, 17.912038], - [-91.612714, 17.912919], - [-91.622047, 17.942575], - [-91.62474, 17.949072], - [-91.609553, 18.098284], - [-91.609505, 18.098438], - [-91.575067, 18.139213], - [-91.572199, 18.142015], - [-91.580123, 18.158053], - [-91.579966, 18.15818], - [-91.537991, 18.148502], - [-91.534505, 18.146174], - [-91.509599, 18.171054], - [-91.509337, 18.171055], - [-91.501876, 18.156412], - [-91.501864, 18.155569], - [-91.50964, 18.154575], - [-91.515213, 18.154952], - [-91.516513, 18.130622], - [-91.516532, 18.130485], - [-91.504138, 18.116558], - [-91.504036, 18.116459], - [-91.384967, 18.064249], - [-91.384425, 18.064065], - [-91.327441, 18.0628], - [-91.327024, 18.062665], - [-91.217683, 17.975078], - [-91.21746, 17.974987], - [-91.166585, 17.977539], - [-91.144727, 17.97516], - [-91.151123, 17.962673], - [-91.133182, 17.95801], - [-91.130669, 17.98225], - [-91.113581, 17.97585], - [-91.119416, 17.965434], - [-91.1202, 17.963375], - [-90.990442, 17.962598], - [-90.987952, 17.962545], - [-90.987507, 17.272458], - [-90.987459, 17.251025], - [-91.434088, 17.251026], - [-91.439697, 17.250967], - [-91.425529, 17.301844], - [-91.425181, 17.302305], - [-91.3839, 17.3101], - [-91.383664, 17.311183], - [-91.415553, 17.344656], - [-91.416775, 17.345627], - [-91.419318, 17.373554], - [-91.419833, 17.374071], - [-91.505005, 17.399482], - [-91.509936, 17.392203], - [-91.537079, 17.414218], - [-91.537244, 17.419736], - [-91.554777, 17.421825], - [-91.557857, 17.422244], - [-91.558769, 17.401768], - [-91.558794, 17.40053], - [-91.575925, 17.406411], - [-91.579688, 17.407344], - [-91.671356, 17.44373], - [-91.672043, 17.444059], - [-91.664962, 17.461478], - [-91.665206, 17.46166], - [-91.699979, 17.467298], - [-91.700137, 17.467518], - [-91.663179, 17.479742], - [-91.662817, 17.479817], - [-91.634424, 17.534325], - [-91.634288, 17.534624], - [-91.638784, 17.580802], - [-91.638827, 17.581469], - [-91.66333, 17.611896], - [-91.663563, 17.612167], - [-91.644915, 17.621317], - [-91.644567, 17.621925], - [-91.65979, 17.630208], - [-91.659899, 17.630447], - [-91.655853, 17.674516], - [-91.654744, 17.676157], - [-91.670558, 17.683544], - [-91.672992, 17.683472], - [-91.680543, 17.670071], - [-91.681377, 17.670134], - [-91.73865, 17.710446], - [-91.738806, 17.710809], - [-91.753915, 17.705347], - [-91.767853, 17.703115], - [-91.829999, 17.737156], - [-91.830662, 17.737677], - [-91.791603, 17.745267], - [-91.790162, 17.746018], - [-91.782966, 17.777606], - [-91.782253, 17.782485], - [-91.792223, 17.823259], - [-91.792372, 17.824517], - [-91.779641, 17.850776], - [-91.77969, 17.851299], - [-91.804079, 17.868495], - [-91.804369, 17.868866], - [-91.809272, 17.896849], - [-91.809943, 17.898248], - [-91.845341, 17.883428], - [-91.849686, 17.882865], - [-91.915839, 17.900074], - [-91.918128, 17.89952], - [-91.944232, 17.862914], - [-91.948409, 17.863308], - [-91.957107, 17.877358], - [-91.956833, 17.87993], - [-91.939153, 17.904834], - [-91.939598, 17.906293], - [-91.976094, 17.912405], - [-91.978453, 17.913689], - [-91.995671, 17.94259], - [-91.999888, 17.943345], - [-92.000502, 17.898737], - [-92.003355, 17.890518], - [-92.071341, 17.877732], - [-92.071797, 17.877674], - [-92.052193, 17.866905], - [-92.051647, 17.866091], - [-92.053521, 17.848395], - [-92.053787, 17.84811], - [-92.089961, 17.856537], - [-92.090469, 17.856599], - [-92.117033, 17.800001], - [-92.120482, 17.795973], - [-92.139874, 17.809789], - [-92.146583, 17.814676], - [-92.129913, 17.766974], - [-92.130825, 17.76608], - [-92.151708, 17.764569], - [-92.170903, 17.786078], - [-92.17195, 17.786568], - [-92.188952, 17.768529], - [-92.194499, 17.776641], - [-92.274445, 17.692417], - [-92.274623, 17.692258], - [-92.336854, 17.712202], - [-92.337347, 17.71209], - [-92.349284, 17.702801], - [-92.349897, 17.702785], - [-92.351498, 17.619632], - [-92.350674, 17.617934], - [-92.400858, 17.586033], - [-92.402079, 17.57804], - [-92.517721, 17.573076], - [-92.519985, 17.57305], - [-92.527103, 17.556632], - [-92.530073, 17.549998], - [-92.568617, 17.548406], - [-92.571411, 17.549609], - [-92.595576, 17.52213], - [-92.59699, 17.52036], - [-92.605597, 17.477673], - [-92.605825, 17.477376], - [-92.659272, 17.444619], - [-92.659408, 17.444285], - [-92.667602, 17.456972], - [-92.668185, 17.456695], - [-92.678794, 17.378839], - [-92.678765, 17.378494], - [-92.75418, 17.343299], - [-92.755006, 17.343407], - [-92.785516, 17.417028], - [-92.785795, 17.417527], - [-92.828884, 17.408762], - [-92.8294, 17.408599], - [-92.828751, 17.396372], - [-92.829216, 17.3963], - [-92.854228, 17.411178], - [-92.854264, 17.411198], - [-92.819904, 17.431971], - [-92.819631, 17.432746], - [-92.831211, 17.480384], - [-92.831552, 17.480857], - [-92.849434, 17.468929], - [-92.849876, 17.468978], - [-92.859473, 17.499583], - [-92.859809, 17.500282], - [-92.885937, 17.510226], - [-92.887356, 17.510464], - [-92.939108, 17.502469], - [-92.939199, 17.502447], - [-92.947482, 17.482438], - [-92.94812, 17.482743], - [-92.967197, 17.517085], - [-92.967373, 17.517437], - [-92.984023, 17.51164], - [-92.984873, 17.511308], - [-92.991503, 17.528636], - [-92.992648, 17.530016], - [-92.980239, 17.537094], - [-92.98049, 17.537563], - [-93.040006, 17.609622], - [-93.040525, 17.609828], - [-93.037108, 17.702776], - [-93.037116, 17.703382], - [-93.057732, 17.720186], - [-93.057725, 17.720489], - [-93.042526, 17.768066], - [-93.042638, 17.768412], - [-93.012048, 17.793579], - [-93.012013, 17.793669], - [-93.025336, 17.825134], - [-93.025436, 17.825418], - [-93.043368, 17.841881], - [-93.043126, 17.842577], - [-93.10117, 17.845315], - [-93.101645, 17.845828], - [-93.115116, 17.823262], - [-93.115641, 17.822213], - [-93.130465, 17.848949], - [-93.1318, 17.852316], - [-93.09073, 17.896907], - [-93.091376, 17.897561], - [-93.128907, 17.907801], - [-93.129129, 17.907852], - [-93.191214, 17.955763], - [-93.192002, 17.956136], - [-93.240133, 17.950102], - [-93.240921, 17.950095], - [-93.278296, 17.9851], - [-93.278323, 17.985288], - [-93.297745, 17.939103], - [-93.29801, 17.938582], - [-93.340811, 17.930544], - [-93.340897, 17.930331], - [-93.340513, 17.798757], - [-93.340586, 17.798121], - [-93.366095, 17.803018], - [-93.366611, 17.802923], - [-93.380802, 17.783825], - [-93.380948, 17.783165], - [-93.343747, 17.787516], - [-93.343112, 17.787517], - [-93.349111, 17.767462], - [-93.349135, 17.767085], - [-93.390415, 17.773828], - [-93.390548, 17.7734], - [-93.354429, 17.713234], - [-93.354302, 17.712882], - [-93.356629, 17.649916], - [-93.356278, 17.648037], - [-93.383262, 17.644571], - [-93.384789, 17.644378], - [-93.419553, 17.591443], - [-93.42049, 17.590048], - [-93.445248, 17.586579], - [-93.445946, 17.585986], - [-93.451386, 17.547099], - [-93.451707, 17.546484], - [-93.483437, 17.550651], - [-93.484146, 17.549877], - [-93.514836, 17.490433], - [-93.514879, 17.490323], - [-93.513647, 17.443152], - [-93.513805, 17.442805], - [-93.603753, 17.320309], - [-93.60794, 17.31493], - [-93.627432, 17.312843], - [-93.635868, 17.314355], - [-93.645419, 17.328874], - [-93.64543, 17.329095], - [-93.634877, 17.33743], - [-93.634959, 17.337702], - [-93.6949, 17.387618], - [-93.69492, 17.387804], - [-93.673102, 17.419773], - [-93.672996, 17.419918], - [-93.63871, 17.435606], - [-93.638206, 17.436086], - [-93.63615, 17.454411], - [-93.636597, 17.455277], - [-93.650392, 17.458447], - [-93.650414, 17.458855], - [-93.624233, 17.493341], - [-93.624105, 17.493457], - [-93.637183, 17.509482], - [-93.637341, 17.509814], - [-93.613497, 17.552208], - [-93.613601, 17.552511], - [-93.656105, 17.555258], - [-93.656542, 17.555238], - [-93.71268, 17.630033], - [-93.713184, 17.63067], - [-93.732597, 17.62555], - [-93.732883, 17.62576], - [-93.74651, 17.659541], - [-93.746583, 17.660115], - [-93.738302, 17.679153], - [-93.738511, 17.67937], - [-93.80509, 17.689338], - [-93.805155, 17.689356], - [-93.826341, 17.719091], - [-93.826586, 17.719192], - [-93.869885, 17.713486], - [-93.869997, 17.713536], - [-93.876923, 17.756503], - [-93.877049, 17.756564], - [-93.93991, 17.753023], - [-93.940107, 17.75317], - [-93.967622, 17.845139], - [-93.967786, 17.845252], - [-94.025492, 17.840465], - [-94.025947, 17.840381], - [-94.032858, 17.872172], - [-94.033158, 17.872557], - [-94.082774, 17.869569], - [-94.083431, 17.869868], - [-94.092032, 17.961575], - [-94.09199, 17.961932], - [-94.06142, 17.987726], - [-94.0614, 17.988124], - [-94.066166, 18.008979], - [-94.066524, 18.009396], - [-94.083663, 18.006125], - [-94.083749, 18.006464], - [-94.074372, 18.05764], - [-94.074358, 18.058593], - [-94.09696, 18.078012], - [-94.097159, 18.078628], - [-94.081176, 18.094633], - [-94.081108, 18.095773], - [-94.100444, 18.125916], - [-94.100737, 18.12732], - [-94.094049, 18.158452], - [-94.09468, 18.16067], - [-94.102881, 18.173449], - [-94.104679, 18.17395], - [-94.126011, 18.16713], - [-94.126919, 18.16825], - [-94.129995, 18.211291], - [-94.130025, 18.212851], - [-93.586152, 18.391064], - [-93.58552, 18.392095], - [-93.435574, 18.427662], - [-93.435261, 18.427913], - [-93.214422, 18.446161], - [-93.214067, 18.446873], - [-93.187879, 18.431136], - [-93.186767, 18.43113], - [-93.198595, 18.452888], - [-93.198363, 18.453165], - [-93.186041, 18.441408], - [-93.184879, 18.441081], - [-93.030907, 18.431171], - [-93.028547, 18.43108], - [-92.890859, 18.444744], - [-92.890322, 18.444854], - [-92.772945, 18.504163], - [-92.771547, 18.505302], - [-92.687672, 18.619289], - [-92.687306, 18.619392], - [-92.645228, 18.611408], - [-92.634573, 18.612825], - [-92.472093, 18.650154], - [-92.46879, 18.650965], - [-92.451062, 18.59787] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "20", - "name": "Oaxaca", - "id": 18, - "ISOCODE": "MX-OAX" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-96.228346, 15.686878], - [-96.228346, 15.686878] - ] - ], - [ - [ - [-96.222299, 15.689949], - [-96.222299, 15.689949] - ] - ], - [ - [ - [-96.161422, 15.717158], - [-96.161422, 15.717158] - ] - ], - [ - [ - [-96.118229, 15.746998], - [-96.118229, 15.746998] - ] - ], - [ - [ - [-96.116903, 15.747912], - [-96.116903, 15.747912] - ] - ], - [ - [ - [-96.115877, 15.748494], - [-96.115877, 15.748494] - ] - ], - [ - [ - [-96.116146, 15.748988], - [-96.116146, 15.748988] - ] - ], - [ - [ - [-96.084088, 15.764983], - [-96.084088, 15.764983] - ] - ], - [ - [ - [-96.094653, 15.771755], - [-96.094653, 15.771755] - ] - ], - [ - [ - [-97.351405, 15.935997], - [-97.351405, 15.935997] - ] - ], - [ - [ - [-95.575308, 15.941507], - [-95.575308, 15.941507] - ] - ], - [ - [ - [-96.682145, 18.668842], - [-96.561202, 18.587846], - [-96.560947, 18.587699], - [-96.499931, 18.58953], - [-96.499749, 18.589502], - [-96.457483, 18.570486], - [-96.457309, 18.570437], - [-96.420862, 18.510607], - [-96.420762, 18.510458], - [-96.403019, 18.439992], - [-96.402985, 18.439919], - [-96.35273, 18.410369], - [-96.352588, 18.410247], - [-96.345427, 18.379869], - [-96.345343, 18.379695], - [-96.31737, 18.364609], - [-96.317328, 18.364537], - [-96.310009, 18.322815], - [-96.309948, 18.322353], - [-96.270996, 18.298164], - [-96.270764, 18.297823], - [-96.269159, 18.274098], - [-96.269164, 18.273984], - [-96.288259, 18.259944], - [-96.288237, 18.259761], - [-96.218091, 18.162628], - [-96.217478, 18.161967], - [-96.171391, 18.186418], - [-96.170691, 18.186384], - [-96.188281, 18.151414], - [-96.188282, 18.151303], - [-96.157641, 18.132532], - [-96.154226, 18.131805], - [-96.09936, 18.166768], - [-96.099184, 18.166843], - [-96.052539, 18.127114], - [-96.051389, 18.126738], - [-95.953967, 18.159765], - [-95.953459, 18.159865], - [-95.933436, 18.141714], - [-95.933342, 18.141668], - [-95.914759, 18.15221], - [-95.914647, 18.1522], - [-95.907444, 18.135754], - [-95.907161, 18.135644], - [-95.84258, 18.129931], - [-95.833167, 18.129027], - [-95.799972, 17.950267], - [-95.799925, 17.950013], - [-95.858506, 17.845318], - [-95.858816, 17.844783], - [-95.849252, 17.826965], - [-95.849336, 17.825848], - [-95.866252, 17.774996], - [-95.86639, 17.774353], - [-95.892171, 17.765952], - [-95.892924, 17.765141], - [-95.902826, 17.733411], - [-95.902774, 17.732653], - [-95.892634, 17.720717], - [-95.892108, 17.720607], - [-95.873596, 17.727773], - [-95.87281, 17.727409], - [-95.89528, 17.704507], - [-95.895293, 17.704494], - [-95.871779, 17.702426], - [-95.871018, 17.702169], - [-95.803478, 17.629859], - [-95.803306, 17.629366], - [-95.78119, 17.638907], - [-95.781114, 17.638877], - [-95.773641, 17.606243], - [-95.773658, 17.60585], - [-95.802538, 17.607011], - [-95.803486, 17.6071], - [-95.807616, 17.591939], - [-95.80755, 17.591842], - [-95.792096, 17.58642], - [-95.791853, 17.586363], - [-95.787429, 17.603559], - [-95.781751, 17.603028], - [-95.727687, 17.578198], - [-95.726897, 17.578029], - [-95.724849, 17.536765], - [-95.725149, 17.536226], - [-95.702519, 17.518699], - [-95.702236, 17.518534], - [-95.685555, 17.53718], - [-95.685154, 17.537532], - [-95.648835, 17.539647], - [-95.648471, 17.539889], - [-95.65432, 17.560129], - [-95.654104, 17.560393], - [-95.645045, 17.546714], - [-95.644492, 17.546544], - [-95.605284, 17.54902], - [-95.60512, 17.549013], - [-95.599187, 17.535023], - [-95.598752, 17.534615], - [-95.532693, 17.555719], - [-95.531996, 17.555834], - [-95.506734, 17.590321], - [-95.506317, 17.590771], - [-95.463711, 17.596015], - [-95.463016, 17.596394], - [-95.473291, 17.608749], - [-95.473141, 17.609113], - [-95.45522, 17.610719], - [-95.454459, 17.611103], - [-95.425624, 17.647345], - [-95.42549, 17.647472], - [-95.408077, 17.643101], - [-95.407162, 17.643332], - [-95.344275, 17.683494], - [-95.343759, 17.68366], - [-95.335075, 17.67449], - [-95.334419, 17.674801], - [-95.298137, 17.721761], - [-95.297809, 17.722141], - [-95.267669, 17.716671], - [-95.267177, 17.716713], - [-95.269179, 17.740712], - [-95.269026, 17.740934], - [-95.258976, 17.728689], - [-95.258673, 17.728543], - [-95.238974, 17.738996], - [-95.238913, 17.739264], - [-95.182887, 17.691475], - [-95.182435, 17.691063], - [-95.188095, 17.651443], - [-95.188132, 17.650701], - [-95.240906, 17.635136], - [-95.241933, 17.634958], - [-95.247774, 17.64609], - [-95.248226, 17.645978], - [-95.258675, 17.629295], - [-95.259001, 17.629011], - [-95.248373, 17.625932], - [-95.248411, 17.625582], - [-95.278943, 17.613624], - [-95.278845, 17.613243], - [-95.253333, 17.608107], - [-95.253048, 17.607806], - [-95.083982, 17.382544], - [-95.076567, 17.372934], - [-94.966676, 17.334438], - [-94.966509, 17.334368], - [-94.952063, 17.316119], - [-94.95098, 17.315649], - [-94.927805, 17.325172], - [-94.927158, 17.325141], - [-94.891887, 17.311876], - [-94.890782, 17.311056], - [-94.914462, 17.292841], - [-94.914766, 17.292577], - [-94.895578, 17.256665], - [-94.895429, 17.256378], - [-94.922862, 17.194055], - [-94.922815, 17.193788], - [-93.905212, 17.139129], - [-93.867427, 17.136965], - [-94.139144, 16.461817], - [-94.139156, 16.461786], - [-94.037209, 16.289654], - [-94.032961, 16.275945], - [-94.04847, 16.216193], - [-94.04847, 16.216171], - [-94.103932, 16.181621], - [-94.109568, 16.179101], - [-94.103051, 16.144064], - [-94.102764, 16.142516], - [-94.036366, 16.022905], - [-94.036008, 16.022095], - [-94.000217, 16.006178], - [-94.000219, 16.003089], - [-94.226525, 16.106076], - [-94.273277, 16.123268], - [-94.531409, 16.190029], - [-94.540045, 16.191865], - [-94.802093, 16.213492], - [-94.831845, 16.214537], - [-95.043443, 16.185978], - [-95.062715, 16.183986], - [-95.138722, 16.188698], - [-95.142342, 16.188651], - [-95.151997, 16.169608], - [-95.151662, 16.167948], - [-95.1917, 16.1676], - [-95.1923, 16.1674], - [-95.198213, 16.149916], - [-95.202631, 16.145699], - [-95.198296, 16.150332], - [-95.198287, 16.159909], - [-95.228855, 16.159094], - [-95.233211, 16.158283], - [-95.247489, 16.13373], - [-95.247492, 16.133342], - [-95.279368, 16.12209], - [-95.281045, 16.120468], - [-95.275389, 16.107988], - [-95.275659, 16.107403], - [-95.34868, 16.082761], - [-95.350409, 16.081641], - [-95.377809, 16.046859], - [-95.378038, 16.04635], - [-95.367898, 16.021695], - [-95.368105, 16.020875], - [-95.423443, 16.000112], - [-95.424133, 15.999712], - [-95.435312, 15.976436], - [-95.435617, 15.976096], - [-95.56718, 15.958132], - [-95.568524, 15.957792], - [-95.661993, 15.912842], - [-95.662512, 15.912416], - [-95.760376, 15.897745], - [-95.765708, 15.896388], - [-95.776626, 15.87175], - [-95.777174, 15.8711], - [-95.95368, 15.829578], - [-95.954029, 15.829636], - [-96.074797, 15.766796], - [-96.074903, 15.766737], - [-96.121095, 15.760792], - [-96.121441, 15.760717], - [-96.127717, 15.737708], - [-96.127861, 15.737606], - [-96.202792, 15.712335], - [-96.203763, 15.711963], - [-96.237116, 15.682675], - [-96.237521, 15.682484], - [-96.425891, 15.696165], - [-96.426167, 15.696439], - [-96.49456, 15.658693], - [-96.494629, 15.658366], - [-96.556298, 15.657239], - [-96.556821, 15.657169], - [-96.696714, 15.715568], - [-96.698916, 15.716239], - [-96.860184, 15.739868], - [-96.860419, 15.739822], - [-96.931645, 15.78155], - [-96.933866, 15.782646], - [-97.017784, 15.806575], - [-97.018685, 15.806949], - [-97.061689, 15.860042], - [-97.061924, 15.860337], - [-97.211336, 15.923127], - [-97.21339, 15.92369], - [-97.332841, 15.945853], - [-97.334625, 15.94604], - [-97.421357, 15.941868], - [-97.421402, 15.941835], - [-97.52767, 15.969166], - [-97.529689, 15.969431], - [-97.653165, 15.977892], - [-97.655757, 15.977797], - [-97.679653, 15.96237], - [-97.679733, 15.962339], - [-97.787808, 15.982332], - [-97.788505, 15.982445], - [-97.960772, 16.100299], - [-97.961159, 16.100555], - [-98.201849, 16.227315], - [-98.204273, 16.228545], - [-98.416376, 16.268993], - [-98.422109, 16.270286], - [-98.549286, 16.313497], - [-98.549683, 16.313656], - [-98.542978, 16.343006], - [-98.542942, 16.343111], - [-98.521944, 16.356581], - [-98.520733, 16.360054], - [-98.455042, 16.385087], - [-98.454181, 16.385793], - [-98.399533, 16.380514], - [-98.399158, 16.380513], - [-98.350058, 16.444302], - [-98.349938, 16.444449], - [-98.352402, 16.48835], - [-98.352532, 16.489431], - [-98.386348, 16.497632], - [-98.387333, 16.497786], - [-98.394773, 16.537089], - [-98.395139, 16.546836], - [-98.34028, 16.558169], - [-98.32997, 16.572748], - [-98.2704, 16.558427], - [-98.269427, 16.558455], - [-98.204066, 16.586447], - [-98.203364, 16.58718], - [-98.19414, 16.618431], - [-98.193776, 16.621463], - [-98.211048, 16.619983], - [-98.214206, 16.618795], - [-98.243525, 16.680048], - [-98.243442, 16.6967], - [-98.234754, 16.715912], - [-98.233535, 16.717366], - [-98.202618, 16.713194], - [-98.201545, 16.712672], - [-98.204572, 16.697476], - [-98.200271, 16.697235], - [-98.139879, 16.723497], - [-98.138994, 16.723784], - [-98.125481, 16.748112], - [-98.124237, 16.749641], - [-98.135326, 16.757827], - [-98.135178, 16.758393], - [-98.108482, 16.760493], - [-98.108157, 16.760951], - [-98.072528, 16.873681], - [-98.072334, 16.87425], - [-98.110809, 16.958473], - [-98.111261, 16.958868], - [-98.075231, 17.00722], - [-98.057494, 17.023776], - [-98.025186, 17.019216], - [-98.007276, 17.040137], - [-98.152559, 17.109323], - [-98.153424, 17.110403], - [-98.22165, 17.122344], - [-98.2226, 17.12215], - [-98.203117, 17.216211], - [-98.203136, 17.216287], - [-98.243344, 17.250712], - [-98.244342, 17.251467], - [-98.288246, 17.238215], - [-98.288483, 17.23822], - [-98.3227, 17.274839], - [-98.323495, 17.275944], - [-98.304811, 17.32752], - [-98.287373, 17.329011], - [-98.304915, 17.394304], - [-98.335851, 17.456305], - [-98.329014, 17.478728], - [-98.311884, 17.477492], - [-98.329696, 17.532198], - [-98.329452, 17.532981], - [-98.374289, 17.600369], - [-98.376972, 17.605349], - [-98.407734, 17.601214], - [-98.410152, 17.599769], - [-98.450505, 17.633345], - [-98.461045, 17.630359], - [-98.475142, 17.678197], - [-98.486173, 17.680992], - [-98.496616, 17.761562], - [-98.496343, 17.768809], - [-98.438465, 17.825103], - [-98.424957, 17.839595], - [-98.424914, 17.857162], - [-98.424892, 17.86599], - [-98.411751, 17.862555], - [-98.398755, 17.860912], - [-98.3827, 17.883421], - [-98.382604, 17.88367], - [-98.349267, 17.893031], - [-98.349073, 17.893173], - [-98.329073, 17.878868], - [-98.328825, 17.878926], - [-98.302403, 17.892714], - [-98.302075, 17.893108], - [-98.282676, 17.93485], - [-98.28231, 17.93515], - [-98.262423, 17.926904], - [-98.26223, 17.926877], - [-98.254952, 17.883843], - [-98.254775, 17.883627], - [-98.230286, 17.879412], - [-98.209746, 17.879758], - [-98.174998, 17.901508], - [-98.170911, 17.902058], - [-98.169698, 17.952616], - [-98.16961, 17.952834], - [-98.130794, 17.988044], - [-98.130394, 17.988084], - [-98.04681, 17.976591], - [-98.046714, 17.976206], - [-98.030155, 17.991859], - [-98.029787, 17.991836], - [-97.982636, 17.968975], - [-97.979377, 17.964442], - [-97.951716, 17.966568], - [-97.93738, 17.967901], - [-97.948696, 17.948436], - [-97.948849, 17.948156], - [-97.937521, 17.918968], - [-97.936302, 17.917179], - [-97.82175, 17.914627], - [-97.819287, 17.914738], - [-97.803574, 17.960084], - [-97.803375, 17.960459], - [-97.768178, 17.976504], - [-97.767941, 17.976653], - [-97.766578, 18.005585], - [-97.766381, 18.005915], - [-97.718748, 18.003824], - [-97.699742, 18.001637], - [-97.697879, 18.018267], - [-97.697775, 18.018816], - [-97.764353, 18.068635], - [-97.771671, 18.068368], - [-97.797605, 18.036878], - [-97.798544, 18.035802], - [-97.790615, 18.006498], - [-97.790921, 18.004158], - [-97.826011, 17.972841], - [-97.826272, 17.972677], - [-97.835631, 17.98345], - [-97.842604, 17.996082], - [-97.835106, 18.048314], - [-97.834782, 18.049799], - [-97.813718, 18.062866], - [-97.81067, 18.067717], - [-97.843201, 18.081766], - [-97.84946, 18.083741], - [-97.867381, 18.143408], - [-97.867483, 18.144571], - [-97.839594, 18.170771], - [-97.839462, 18.171231], - [-97.857702, 18.191869], - [-97.859227, 18.192289], - [-97.824724, 18.222859], - [-97.822961, 18.223404], - [-97.797889, 18.282413], - [-97.797297, 18.283175], - [-97.749747, 18.275764], - [-97.721274, 18.276048], - [-97.659297, 18.293099], - [-97.654714, 18.293093], - [-97.636259, 18.202274], - [-97.634024, 18.200068], - [-97.651677, 18.176884], - [-97.653176, 18.175289], - [-97.609994, 18.153942], - [-97.609298, 18.153683], - [-97.605782, 18.135223], - [-97.608154, 18.131011], - [-97.583473, 18.114871], - [-97.56962, 18.103387], - [-97.544593, 18.034348], - [-97.543905, 18.033445], - [-97.53513, 18.046158], - [-97.534046, 18.046338], - [-97.489934, 18.026128], - [-97.489245, 18.025592], - [-97.465592, 18.02821], - [-97.465205, 18.028406], - [-97.411327, 18.10228], - [-97.41124, 18.102393], - [-97.37678, 18.094415], - [-97.376553, 18.094512], - [-97.303543, 18.159028], - [-97.303409, 18.159079], - [-97.229037, 18.17454], - [-97.228667, 18.174592], - [-97.216024, 18.163945], - [-97.214348, 18.163668], - [-97.167767, 18.200856], - [-97.167368, 18.200903], - [-97.13864, 18.167101], - [-97.133885, 18.15772], - [-97.057373, 18.15449], - [-97.042094, 18.156569], - [-96.9919, 18.230496], - [-96.991479, 18.230739], - [-96.93698, 18.216196], - [-96.936835, 18.216032], - [-96.921976, 18.240414], - [-96.921876, 18.240619], - [-96.916592, 18.230759], - [-96.916154, 18.230642], - [-96.854955, 18.241333], - [-96.854761, 18.241228], - [-96.817965, 18.3008], - [-96.817574, 18.300786], - [-96.822096, 18.320045], - [-96.821823, 18.320684], - [-96.784998, 18.337728], - [-96.784213, 18.338328], - [-96.755228, 18.391297], - [-96.754638, 18.392159], - [-96.73057, 18.398014], - [-96.729836, 18.397695], - [-96.733305, 18.374991], - [-96.733057, 18.374121], - [-96.700714, 18.382836], - [-96.700178, 18.382929], - [-96.696309, 18.364862], - [-96.69625, 18.364754], - [-96.691748, 18.380021], - [-96.691831, 18.38085], - [-96.674728, 18.381289], - [-96.674563, 18.381395], - [-96.681047, 18.411583], - [-96.681037, 18.412204], - [-96.709587, 18.429644], - [-96.709707, 18.429954], - [-96.682776, 18.474884], - [-96.682542, 18.475062], - [-96.682239, 18.506816], - [-96.682275, 18.507118], - [-96.726814, 18.52973], - [-96.726899, 18.529829], - [-96.718617, 18.537583], - [-96.711827, 18.548055], - [-96.717025, 18.570516], - [-96.715605, 18.573241], - [-96.704704, 18.55953], - [-96.699631, 18.553343], - [-96.702007, 18.581038], - [-96.702149, 18.581227], - [-96.676282, 18.607533], - [-96.672464, 18.607574], - [-96.688487, 18.638589], - [-96.688697, 18.638793], - [-96.682145, 18.668842] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "11", - "name": "Guanajuato", - "id": 19, - "ISOCODE": "MX-GUA" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-101.350027, 21.83796], - [-101.290011, 21.812287], - [-101.289685, 21.81214], - [-101.226376, 21.817397], - [-101.217152, 21.816077], - [-101.218525, 21.808852], - [-101.219795, 21.8022], - [-101.161361, 21.757571], - [-101.161267, 21.757506], - [-101.05934, 21.765421], - [-101.059248, 21.765521], - [-100.98281, 21.753587], - [-100.981974, 21.753527], - [-100.918001, 21.714455], - [-100.912578, 21.713649], - [-100.921176, 21.700337], - [-100.921273, 21.700274], - [-100.907417, 21.682012], - [-100.907183, 21.681637], - [-100.868214, 21.677954], - [-100.86515, 21.68708], - [-100.834606, 21.664653], - [-100.834321, 21.664559], - [-100.850061, 21.635072], - [-100.857678, 21.618987], - [-100.814578, 21.601378], - [-100.809496, 21.59205], - [-100.735029, 21.578975], - [-100.734344, 21.578727], - [-100.718336, 21.553236], - [-100.71763, 21.550232], - [-100.68159, 21.547616], - [-100.681168, 21.547505], - [-100.6656, 21.527821], - [-100.657456, 21.524718], - [-100.637035, 21.541345], - [-100.635447, 21.543192], - [-100.634138, 21.542501], - [-100.614299, 21.533135], - [-100.62043, 21.510232], - [-100.614955, 21.505789], - [-100.534297, 21.541574], - [-100.53395, 21.542327], - [-100.464274, 21.543168], - [-100.46108, 21.545335], - [-100.459261, 21.567417], - [-100.460702, 21.57121], - [-100.485802, 21.594404], - [-100.485685, 21.595277], - [-100.435211, 21.682465], - [-100.435044, 21.682718], - [-100.272692, 21.687247], - [-100.272135, 21.687347], - [-100.246738, 21.665442], - [-100.246311, 21.664933], - [-100.180418, 21.65032], - [-100.179635, 21.65079], - [-100.171321, 21.601573], - [-100.171443, 21.601266], - [-100.147285, 21.617937], - [-100.147195, 21.618125], - [-100.075844, 21.557932], - [-100.062276, 21.523305], - [-99.957019, 21.526219], - [-99.956822, 21.526227], - [-99.965078, 21.505924], - [-99.965111, 21.505121], - [-99.949445, 21.495466], - [-99.945705, 21.497432], - [-99.958242, 21.484508], - [-99.959346, 21.483514], - [-99.942702, 21.449875], - [-99.942333, 21.44962], - [-99.943328, 21.461704], - [-99.943169, 21.461784], - [-99.906005, 21.448137], - [-99.905174, 21.448159], - [-99.835793, 21.477881], - [-99.834929, 21.478116], - [-99.839284, 21.462579], - [-99.839181, 21.462386], - [-99.818094, 21.461958], - [-99.817074, 21.461691], - [-99.776399, 21.494721], - [-99.776081, 21.494537], - [-99.772064, 21.406379], - [-99.772042, 21.405538], - [-99.792104, 21.360215], - [-99.794522, 21.357399], - [-99.792133, 21.343907], - [-99.777565, 21.343235], - [-99.78778, 21.329594], - [-99.784003, 21.32015], - [-99.762998, 21.298173], - [-99.757894, 21.29214], - [-99.736583, 21.311745], - [-99.737253, 21.312885], - [-99.67871, 21.304872], - [-99.671303, 21.301194], - [-99.698817, 21.267522], - [-99.699076, 21.266698], - [-99.691876, 21.234142], - [-99.687855, 21.22578], - [-99.695549, 21.228228], - [-99.738483, 21.235818], - [-99.829145, 21.157935], - [-99.830426, 21.157507], - [-99.978583, 21.215973], - [-99.986368, 21.21831], - [-100.011086, 21.189464], - [-99.996484, 21.182665], - [-99.996418, 21.182595], - [-100.02632, 21.103996], - [-100.027543, 21.100253], - [-100.011028, 21.029907], - [-100.01107, 21.028505], - [-100.022538, 21.01464], - [-100.022563, 21.014621], - [-100.068239, 21.023658], - [-100.06895, 21.022813], - [-100.069523, 20.957426], - [-100.080738, 20.949858], - [-100.065205, 20.938916], - [-100.064172, 20.936289], - [-100.092738, 20.931681], - [-100.117828, 20.922155], - [-100.134422, 20.934814], - [-100.135312, 20.937264], - [-100.181345, 20.932559], - [-100.181528, 20.930402], - [-100.259303, 20.968173], - [-100.263623, 20.970999], - [-100.264663, 20.931159], - [-100.265543, 20.929247], - [-100.29173, 20.930866], - [-100.299209, 20.931328], - [-100.314016, 20.904775], - [-100.333591, 20.890728], - [-100.412791, 20.887807], - [-100.413399, 20.887432], - [-100.452285, 20.899638], - [-100.453956, 20.900179], - [-100.453386, 20.91972], - [-100.453176, 20.923199], - [-100.470915, 20.927891], - [-100.472233, 20.928446], - [-100.470029, 20.907702], - [-100.469958, 20.907039], - [-100.485022, 20.908814], - [-100.485367, 20.9088], - [-100.502736, 20.875521], - [-100.509024, 20.870707], - [-100.5025, 20.855217], - [-100.502049, 20.85292], - [-100.577303, 20.816763], - [-100.577589, 20.81667], - [-100.558429, 20.804583], - [-100.558328, 20.804571], - [-100.563564, 20.777248], - [-100.564077, 20.774697], - [-100.548134, 20.747804], - [-100.548915, 20.736383], - [-100.596507, 20.717312], - [-100.596536, 20.717261], - [-100.551653, 20.634513], - [-100.551125, 20.633766], - [-100.533913, 20.638585], - [-100.529535, 20.638667], - [-100.497917, 20.61583], - [-100.496177, 20.616194], - [-100.482216, 20.576356], - [-100.482092, 20.571508], - [-100.484978, 20.554219], - [-100.485003, 20.553804], - [-100.498077, 20.554641], - [-100.504765, 20.555033], - [-100.508607, 20.507555], - [-100.509756, 20.506527], - [-100.493591, 20.490576], - [-100.492382, 20.490416], - [-100.475585, 20.392078], - [-100.476181, 20.389611], - [-100.411061, 20.376539], - [-100.409995, 20.376006], - [-100.388656, 20.309404], - [-100.388383, 20.309017], - [-100.326174, 20.261261], - [-100.325763, 20.26102], - [-100.354481, 20.219471], - [-100.355237, 20.219018], - [-100.340712, 20.191058], - [-100.340308, 20.189737], - [-100.39712, 20.097124], - [-100.397257, 20.096953], - [-100.362451, 20.065845], - [-100.358264, 20.064916], - [-100.363955, 19.993588], - [-100.362931, 19.989861], - [-100.464545, 19.987282], - [-100.465824, 19.987398], - [-100.510849, 19.959049], - [-100.511687, 19.958216], - [-100.520063, 19.92008], - [-100.519946, 19.91882], - [-100.533786, 19.922272], - [-100.536009, 19.923007], - [-100.527935, 19.973484], - [-100.528201, 19.974257], - [-100.590297, 19.957123], - [-100.590714, 19.956839], - [-100.556782, 19.985298], - [-100.556743, 19.987261], - [-100.593472, 19.991754], - [-100.595603, 19.991662], - [-100.616927, 19.958256], - [-100.617573, 19.957693], - [-100.657829, 19.962442], - [-100.660381, 19.964548], - [-100.747149, 19.91307], - [-100.748753, 19.91275], - [-100.777911, 19.914889], - [-100.778814, 19.91515], - [-100.791848, 19.954856], - [-100.792064, 19.955575], - [-100.823236, 19.97747], - [-100.824301, 19.978329], - [-100.835411, 19.936282], - [-100.835762, 19.934596], - [-100.946693, 19.962271], - [-100.947539, 19.962545], - [-100.947043, 19.950266], - [-100.947879, 19.933563], - [-100.970547, 19.929238], - [-100.97184, 19.929977], - [-100.981188, 19.95473], - [-100.980791, 19.955221], - [-101.000886, 19.952333], - [-101.002276, 19.952363], - [-101.004505, 19.965977], - [-101.004656, 19.966234], - [-100.981367, 19.980844], - [-100.976709, 19.982738], - [-100.983431, 20.000297], - [-100.982701, 20.002631], - [-100.967335, 20.009914], - [-100.967644, 20.011293], - [-101.005108, 20.027905], - [-101.008089, 20.028093], - [-101.014007, 20.04414], - [-101.013987, 20.045711], - [-100.992715, 20.06449], - [-100.992834, 20.064906], - [-101.041544, 20.091034], - [-101.042901, 20.091954], - [-101.132036, 20.060668], - [-101.133147, 20.059985], - [-101.17359, 20.097828], - [-101.175237, 20.097116], - [-101.170886, 20.075695], - [-101.17162, 20.073452], - [-101.192932, 20.058107], - [-101.196318, 20.057189], - [-101.15995, 20.041931], - [-101.160352, 20.0402], - [-101.198764, 20.025168], - [-101.201532, 20.025739], - [-101.202844, 20.009796], - [-101.203056, 20.007224], - [-101.253044, 20.034918], - [-101.253031, 20.035496], - [-101.388136, 20.03041], - [-101.388736, 20.030398], - [-101.402503, 20.04558], - [-101.402658, 20.046431], - [-101.387771, 20.081544], - [-101.387513, 20.082961], - [-101.404183, 20.080451], - [-101.404696, 20.080195], - [-101.405877, 20.109194], - [-101.408689, 20.123134], - [-101.389682, 20.133762], - [-101.389376, 20.134864], - [-101.420351, 20.163009], - [-101.422498, 20.163226], - [-101.421635, 20.183237], - [-101.419891, 20.201591], - [-101.364295, 20.195831], - [-101.363198, 20.195794], - [-101.353225, 20.236954], - [-101.35323, 20.237325], - [-101.386001, 20.248817], - [-101.395324, 20.248549], - [-101.419696, 20.274444], - [-101.420562, 20.275204], - [-101.454942, 20.267519], - [-101.45593, 20.26717], - [-101.440312, 20.304599], - [-101.440197, 20.305193], - [-101.45653, 20.304409], - [-101.456697, 20.30437], - [-101.451267, 20.319065], - [-101.450942, 20.319498], - [-101.472123, 20.331163], - [-101.472599, 20.331248], - [-101.499614, 20.312105], - [-101.500179, 20.311704], - [-101.522298, 20.331975], - [-101.522936, 20.332347], - [-101.550631, 20.332451], - [-101.553266, 20.332516], - [-101.565154, 20.316792], - [-101.565782, 20.315741], - [-101.582123, 20.327277], - [-101.583098, 20.32736], - [-101.60028, 20.298418], - [-101.601074, 20.298019], - [-101.62423, 20.314728], - [-101.624654, 20.31458], - [-101.625438, 20.267418], - [-101.625534, 20.266998], - [-101.642074, 20.26788], - [-101.642521, 20.267646], - [-101.645988, 20.239109], - [-101.646252, 20.238668], - [-101.662642, 20.23819], - [-101.663308, 20.23758], - [-101.667596, 20.21369], - [-101.668474, 20.213135], - [-101.685479, 20.218461], - [-101.686917, 20.217221], - [-101.695912, 20.190585], - [-101.697935, 20.189674], - [-101.731039, 20.214767], - [-101.731199, 20.214802], - [-101.758457, 20.202096], - [-101.759392, 20.201732], - [-101.785576, 20.219238], - [-101.786616, 20.219318], - [-101.824015, 20.202025], - [-101.824861, 20.201838], - [-101.833282, 20.224724], - [-101.833866, 20.22479], - [-101.870929, 20.211019], - [-101.871598, 20.210989], - [-101.880049, 20.188478], - [-101.880858, 20.188132], - [-101.893022, 20.203777], - [-101.894243, 20.204022], - [-101.916518, 20.1948], - [-101.91728, 20.194819], - [-101.907046, 20.213305], - [-101.907341, 20.214107], - [-101.930972, 20.208284], - [-101.931295, 20.208468], - [-101.950512, 20.270494], - [-101.951088, 20.270948], - [-101.934356, 20.296875], - [-101.934547, 20.297691], - [-101.963087, 20.318104], - [-101.963472, 20.318557], - [-101.944237, 20.34104], - [-101.944717, 20.342129], - [-101.991602, 20.360502], - [-101.99639, 20.359643], - [-102.013191, 20.35143], - [-102.013702, 20.350632], - [-102.010971, 20.327169], - [-102.013799, 20.32793], - [-102.025133, 20.347441], - [-102.025235, 20.347982], - [-102.013414, 20.393703], - [-102.01359, 20.393898], - [-102.064449, 20.375167], - [-102.065033, 20.374922], - [-102.096254, 20.384131], - [-102.096412, 20.384257], - [-102.044114, 20.456448], - [-102.043995, 20.456592], - [-102.046015, 20.482454], - [-102.046027, 20.482614], - [-102.01038, 20.525598], - [-102.010092, 20.526059], - [-102.014077, 20.541962], - [-102.014142, 20.542596], - [-101.974082, 20.541942], - [-101.973918, 20.541788], - [-101.95129, 20.606776], - [-101.951144, 20.607427], - [-101.970949, 20.637549], - [-101.971188, 20.63761], - [-101.96791, 20.663382], - [-101.96808, 20.663641], - [-102.010415, 20.664013], - [-102.013837, 20.664441], - [-102.013649, 20.714403], - [-102.014389, 20.717064], - [-102.037485, 20.717304], - [-102.03774, 20.717396], - [-102.034316, 20.741918], - [-102.034461, 20.742139], - [-102.063147, 20.738513], - [-102.064487, 20.73875], - [-102.067488, 20.771956], - [-102.067593, 20.772247], - [-102.094802, 20.781683], - [-102.095827, 20.782857], - [-102.073946, 20.837658], - [-102.073678, 20.837924], - [-102.022372, 20.861905], - [-102.021781, 20.86216], - [-101.979717, 20.924846], - [-101.979882, 20.925048], - [-101.939002, 20.930606], - [-101.93895, 20.930614], - [-101.87606, 21.090729], - [-101.875004, 21.092894], - [-101.818805, 21.106419], - [-101.817659, 21.107046], - [-101.832984, 21.134013], - [-101.833448, 21.137273], - [-101.812412, 21.140716], - [-101.811826, 21.141237], - [-101.804286, 21.166122], - [-101.804009, 21.166348], - [-101.781973, 21.160042], - [-101.781109, 21.160528], - [-101.759911, 21.26601], - [-101.759717, 21.267622], - [-101.6443, 21.298899], - [-101.643177, 21.299336], - [-101.642759, 21.354588], - [-101.642845, 21.355106], - [-101.677608, 21.394281], - [-101.677583, 21.395142], - [-101.571178, 21.418401], - [-101.570416, 21.418536], - [-101.589232, 21.464488], - [-101.589042, 21.4649], - [-101.641006, 21.521861], - [-101.641166, 21.522267], - [-101.580355, 21.625252], - [-101.580189, 21.625531], - [-101.595996, 21.636802], - [-101.596086, 21.637062], - [-101.569571, 21.690382], - [-101.569139, 21.69231], - [-101.583982, 21.708681], - [-101.584043, 21.709574], - [-101.571219, 21.704509], - [-101.570855, 21.704308], - [-101.558338, 21.733486], - [-101.557653, 21.735099], - [-101.578679, 21.736355], - [-101.579683, 21.736405], - [-101.584805, 21.771626], - [-101.585694, 21.778777], - [-101.539797, 21.777473], - [-101.538832, 21.777335], - [-101.473905, 21.827365], - [-101.473873, 21.827391], - [-101.350027, 21.83796] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "01", - "name": "Aguascalientes", - "id": 20, - "ISOCODE": "MX-AGU" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-102.287865, 22.41649], - [-102.250647, 22.387218], - [-102.250299, 22.387222], - [-102.254217, 22.375277], - [-102.253201, 22.374495], - [-102.149847, 22.347175], - [-102.15323, 22.29041], - [-102.107806, 22.28273], - [-102.10525, 22.280793], - [-102.075674, 22.306015], - [-102.075627, 22.306073], - [-102.040124, 22.297954], - [-102.03727, 22.298976], - [-102.022486, 22.241637], - [-102.022495, 22.241585], - [-102.000856, 22.236876], - [-101.999716, 22.233656], - [-102.00088, 22.173964], - [-102.000993, 22.168111], - [-102.04454, 22.154424], - [-102.045221, 22.153733], - [-102.044322, 22.153445], - [-102.017075, 22.153961], - [-102.023594, 22.136374], - [-102.025915, 22.129771], - [-101.855357, 22.046555], - [-101.855192, 22.046511], - [-101.863598, 21.991439], - [-101.863799, 21.990016], - [-101.888822, 21.977685], - [-101.891253, 21.976592], - [-101.911565, 21.995566], - [-101.912598, 21.997486], - [-101.890375, 21.95095], - [-101.8858, 21.932612], - [-101.866015, 21.945779], - [-101.865306, 21.947511], - [-101.835995, 21.93282], - [-101.838003, 21.907344], - [-101.847263, 21.907961], - [-101.880213, 21.91015], - [-102.038165, 21.853169], - [-102.038418, 21.853198], - [-102.042063, 21.826322], - [-102.041743, 21.823068], - [-102.138762, 21.713031], - [-102.1421, 21.705374], - [-102.16643, 21.706013], - [-102.171433, 21.707001], - [-102.175934, 21.69417], - [-102.177886, 21.688155], - [-102.208241, 21.693739], - [-102.214267, 21.694819], - [-102.236033, 21.653787], - [-102.237618, 21.652001], - [-102.302571, 21.666574], - [-102.30399, 21.666685], - [-102.296522, 21.653353], - [-102.295371, 21.653099], - [-102.322873, 21.627047], - [-102.325722, 21.622266], - [-102.458421, 21.678799], - [-102.461066, 21.679259], - [-102.456706, 21.696009], - [-102.456864, 21.698088], - [-102.632342, 21.766872], - [-102.633494, 21.767339], - [-102.667566, 21.764484], - [-102.668926, 21.764051], - [-102.695333, 21.732546], - [-102.696263, 21.728768], - [-102.715427, 21.733628], - [-102.715605, 21.734091], - [-102.735222, 21.715671], - [-102.737323, 21.715609], - [-102.816189, 21.766158], - [-102.816916, 21.766475], - [-102.831245, 21.797001], - [-102.831262, 21.797249], - [-102.853112, 21.799006], - [-102.853345, 21.799053], - [-102.847523, 21.828592], - [-102.847315, 21.833409], - [-102.873892, 21.851096], - [-102.874177, 21.852771], - [-102.755974, 22.072178], - [-102.755806, 22.073662], - [-102.691083, 22.106164], - [-102.690865, 22.106555], - [-102.669406, 22.193366], - [-102.66931, 22.194024], - [-102.652775, 22.192986], - [-102.651596, 22.19314], - [-102.63965, 22.225232], - [-102.639299, 22.226039], - [-102.641387, 22.228448], - [-102.670017, 22.245702], - [-102.668934, 22.284948], - [-102.668743, 22.291871], - [-102.511591, 22.292594], - [-102.506631, 22.293813], - [-102.468238, 22.310922], - [-102.467244, 22.312032], - [-102.468842, 22.347465], - [-102.468642, 22.351881], - [-102.387879, 22.364141], - [-102.378443, 22.360879], - [-102.35925, 22.384952], - [-102.362877, 22.388747], - [-102.322673, 22.388551], - [-102.321365, 22.388533], - [-102.311774, 22.456775], - [-102.311805, 22.456916], - [-102.298478, 22.459545], - [-102.298307, 22.45959], - [-102.287865, 22.41649] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "22", - "name": "Querétaro", - "id": 21, - "ISOCODE": "MX-QUE" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-99.188108, 21.669917], - [-99.170941, 21.628301], - [-99.171896, 21.627031], - [-99.128521, 21.590196], - [-99.128297, 21.589817], - [-99.142262, 21.536428], - [-99.142282, 21.53544], - [-99.097883, 21.377642], - [-99.092621, 21.36336], - [-99.129605, 21.36147], - [-99.13783, 21.329792], - [-99.102949, 21.321194], - [-99.124607, 21.318484], - [-99.127559, 21.318337], - [-99.104421, 21.291243], - [-99.104345, 21.289598], - [-99.054595, 21.282605], - [-99.053244, 21.281631], - [-99.051182, 21.253744], - [-99.051177, 21.25343], - [-99.073043, 21.234955], - [-99.073532, 21.230425], - [-99.050111, 21.207328], - [-99.04308, 21.178677], - [-99.061009, 21.154372], - [-99.061332, 21.154205], - [-99.072674, 21.157737], - [-99.072707, 21.157966], - [-99.062319, 21.17416], - [-99.062412, 21.174309], - [-99.076064, 21.173578], - [-99.076479, 21.173464], - [-99.076631, 21.159515], - [-99.077048, 21.159145], - [-99.175206, 21.138459], - [-99.175478, 21.138378], - [-99.214684, 21.106499], - [-99.215419, 21.106211], - [-99.255576, 21.10419], - [-99.255955, 21.104247], - [-99.308587, 21.147313], - [-99.309206, 21.1473], - [-99.341617, 21.123892], - [-99.341828, 21.12366], - [-99.346148, 21.101032], - [-99.34636, 21.100877], - [-99.397281, 21.10207], - [-99.397367, 21.102003], - [-99.363284, 21.041992], - [-99.363246, 21.041729], - [-99.389581, 21.004545], - [-99.389955, 21.004138], - [-99.39046, 20.953072], - [-99.390626, 20.952274], - [-99.415483, 20.924941], - [-99.415586, 20.924901], - [-99.412167, 20.905965], - [-99.412557, 20.905429], - [-99.434994, 20.899448], - [-99.435227, 20.899397], - [-99.445786, 20.853399], - [-99.446064, 20.853031], - [-99.488643, 20.833017], - [-99.488732, 20.832933], - [-99.503708, 20.765956], - [-99.503817, 20.765787], - [-99.548416, 20.73725], - [-99.548471, 20.737198], - [-99.501776, 20.660071], - [-99.501923, 20.658962], - [-99.565012, 20.640529], - [-99.565344, 20.640394], - [-99.618987, 20.591928], - [-99.619511, 20.591407], - [-99.657721, 20.601827], - [-99.65787, 20.601799], - [-99.696216, 20.574545], - [-99.696413, 20.574445], - [-99.711716, 20.581269], - [-99.711952, 20.581267], - [-99.738409, 20.560648], - [-99.738683, 20.560521], - [-99.827941, 20.542986], - [-99.828071, 20.543008], - [-99.852974, 20.322609], - [-99.859106, 20.268471], - [-99.919381, 20.281738], - [-99.919501, 20.281665], - [-99.934081, 20.249991], - [-99.934084, 20.24977], - [-99.918415, 20.211788], - [-99.918465, 20.211785], - [-99.949636, 20.215717], - [-99.950933, 20.215904], - [-99.957507, 20.250774], - [-99.957814, 20.251262], - [-99.984635, 20.265181], - [-99.984943, 20.2648], - [-99.965381, 20.20146], - [-99.96523, 20.201158], - [-99.922379, 20.159152], - [-99.921903, 20.15874], - [-99.935724, 20.162939], - [-99.936213, 20.162523], - [-99.942105, 20.120359], - [-99.942206, 20.1201], - [-99.927351, 20.067065], - [-99.926337, 20.064331], - [-99.979646, 20.059678], - [-99.980193, 20.059147], - [-99.978609, 20.073277], - [-99.978468, 20.074045], - [-100.000053, 20.077433], - [-100.000352, 20.07748], - [-100.088293, 20.015437], - [-100.088818, 20.015018], - [-100.16145, 20.062041], - [-100.162194, 20.062539], - [-100.164133, 20.078149], - [-100.164288, 20.078252], - [-100.201873, 20.076237], - [-100.202941, 20.076649], - [-100.197458, 20.129036], - [-100.197393, 20.129888], - [-100.235038, 20.143249], - [-100.235604, 20.143459], - [-100.196624, 20.174214], - [-100.191864, 20.176], - [-100.181162, 20.208004], - [-100.181144, 20.208801], - [-100.260202, 20.267332], - [-100.260457, 20.26751], - [-100.380432, 20.302585], - [-100.381289, 20.303052], - [-100.40979, 20.375756], - [-100.409995, 20.376006], - [-100.47309, 20.388561], - [-100.476181, 20.389611], - [-100.492582, 20.489557], - [-100.492382, 20.490416], - [-100.509562, 20.506508], - [-100.509756, 20.506527], - [-100.504782, 20.554736], - [-100.504765, 20.555033], - [-100.486564, 20.553832], - [-100.485003, 20.553804], - [-100.482112, 20.571448], - [-100.482092, 20.571508], - [-100.496143, 20.615707], - [-100.496177, 20.616194], - [-100.546828, 20.635069], - [-100.551125, 20.633766], - [-100.596093, 20.716996], - [-100.596536, 20.717261], - [-100.551895, 20.735999], - [-100.548915, 20.736383], - [-100.559043, 20.799777], - [-100.558328, 20.804571], - [-100.577579, 20.816657], - [-100.577589, 20.81667], - [-100.50377, 20.852259], - [-100.502049, 20.85292], - [-100.507287, 20.869538], - [-100.509024, 20.870707], - [-100.476691, 20.908651], - [-100.469958, 20.907039], - [-100.472234, 20.928415], - [-100.472233, 20.928446], - [-100.455973, 20.923244], - [-100.453176, 20.923199], - [-100.453932, 20.900737], - [-100.453956, 20.900179], - [-100.413638, 20.887503], - [-100.413399, 20.887432], - [-100.333742, 20.890731], - [-100.333591, 20.890728], - [-100.299359, 20.914656], - [-100.298394, 20.915292], - [-100.304976, 20.926325], - [-100.304195, 20.92832], - [-100.28216, 20.930275], - [-100.265543, 20.929247], - [-100.264806, 20.969757], - [-100.263623, 20.970999], - [-100.184484, 20.931411], - [-100.181528, 20.930402], - [-100.17837, 20.938665], - [-100.135312, 20.937264], - [-100.119156, 20.922878], - [-100.117828, 20.922155], - [-100.073326, 20.934769], - [-100.064172, 20.936289], - [-100.079127, 20.949614], - [-100.080738, 20.949858], - [-100.064256, 21.000444], - [-100.060746, 21.005816], - [-100.069238, 21.021184], - [-100.06895, 21.022813], - [-100.025558, 21.014819], - [-100.022563, 21.014621], - [-100.008212, 21.045766], - [-100.006658, 21.046394], - [-100.025762, 21.071573], - [-100.026348, 21.072805], - [-100.024531, 21.100163], - [-100.027543, 21.100253], - [-99.996501, 21.182488], - [-99.996418, 21.182595], - [-100.011086, 21.189464], - [-99.986368, 21.21831], - [-99.831878, 21.157347], - [-99.831259, 21.157323], - [-99.738264, 21.235209], - [-99.738483, 21.235818], - [-99.695549, 21.228228], - [-99.687855, 21.22578], - [-99.698438, 21.258312], - [-99.699076, 21.266698], - [-99.673603, 21.29695], - [-99.671303, 21.301194], - [-99.731788, 21.313193], - [-99.737253, 21.312885], - [-99.733804, 21.303982], - [-99.734161, 21.301444], - [-99.756886, 21.292078], - [-99.757894, 21.29214], - [-99.78778, 21.329594], - [-99.787791, 21.329622], - [-99.777888, 21.342264], - [-99.777565, 21.343235], - [-99.792133, 21.343907], - [-99.794522, 21.357399], - [-99.775924, 21.374742], - [-99.775496, 21.374969], - [-99.77735, 21.495023], - [-99.777352, 21.495955], - [-99.750929, 21.522876], - [-99.749292, 21.523173], - [-99.746769, 21.578201], - [-99.746743, 21.578363], - [-99.661061, 21.568582], - [-99.659542, 21.567945], - [-99.62561, 21.511229], - [-99.625801, 21.507302], - [-99.549835, 21.447277], - [-99.549345, 21.447068], - [-99.551976, 21.428496], - [-99.551931, 21.428393], - [-99.499205, 21.419057], - [-99.497521, 21.419226], - [-99.470533, 21.446072], - [-99.469822, 21.446515], - [-99.436974, 21.449715], - [-99.436276, 21.449856], - [-99.406374, 21.428245], - [-99.405921, 21.428271], - [-99.386847, 21.499999], - [-99.386708, 21.500373], - [-99.372302, 21.506243], - [-99.371976, 21.507104], - [-99.376195, 21.547411], - [-99.375907, 21.547931], - [-99.350677, 21.552345], - [-99.349861, 21.552357], - [-99.306578, 21.532402], - [-99.305489, 21.532914], - [-99.274604, 21.564916], - [-99.274402, 21.565323], - [-99.281289, 21.60663], - [-99.280717, 21.607903], - [-99.244865, 21.614366], - [-99.243496, 21.615057], - [-99.218174, 21.666162], - [-99.217698, 21.666646], - [-99.188108, 21.669917] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "24", - "name": "San Luis Potosí", - "id": 22, - "ISOCODE": "MX-SLP" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-100.603533, 24.4013], - [-100.614536, 24.296334], - [-100.633066, 24.22598], - [-100.615794, 24.225056], - [-100.585093, 24.223925], - [-100.604221, 24.175909], - [-100.6134, 24.173944], - [-100.548771, 24.146031], - [-100.516827, 24.139897], - [-100.51958, 24.118382], - [-100.538683, 24.118516], - [-100.529516, 24.089465], - [-100.523759, 24.071455], - [-100.560017, 23.931601], - [-100.562402, 23.919641], - [-100.551723, 23.918136], - [-100.546768, 23.917437], - [-100.549434, 23.889315], - [-100.539846, 23.888393], - [-100.548105, 23.851899], - [-100.550299, 23.842203], - [-100.546878, 23.841833], - [-100.52553, 23.839526], - [-100.528791, 23.816353], - [-100.497602, 23.798713], - [-100.497772, 23.739755], - [-100.497706, 23.73631], - [-100.466534, 23.68903], - [-100.466483, 23.688941], - [-100.4509, 23.696148], - [-100.4471, 23.696535], - [-100.458328, 23.660113], - [-100.449845, 23.656009], - [-100.472411, 23.640662], - [-100.477379, 23.633819], - [-100.49087, 23.577974], - [-100.491637, 23.568613], - [-100.469545, 23.566783], - [-100.459169, 23.51711], - [-100.459176, 23.511566], - [-100.464416, 23.512082], - [-100.494169, 23.528406], - [-100.497617, 23.494027], - [-100.517211, 23.421043], - [-100.514017, 23.415631], - [-100.457083, 23.36641], - [-100.483869, 23.208832], - [-100.47985, 23.194365], - [-100.344799, 23.164808], - [-100.331758, 23.162683], - [-100.326341, 23.185024], - [-100.323515, 23.195627], - [-100.363764, 23.189005], - [-100.374317, 23.265324], - [-100.325812, 23.263093], - [-100.306257, 23.260942], - [-100.281643, 23.304672], - [-100.278435, 23.310368], - [-100.220704, 23.298047], - [-100.220166, 23.297932], - [-100.212693, 23.308722], - [-100.206364, 23.307109], - [-100.220363, 23.270868], - [-100.228237, 23.250476], - [-100.122407, 23.235593], - [-100.103813, 23.231535], - [-100.10974, 23.199718], - [-100.118286, 23.200545], - [-100.113121, 23.137402], - [-100.115597, 23.12599], - [-100.08926, 23.123445], - [-100.068743, 23.121156], - [-100.069379, 23.096857], - [-100.069029, 23.095942], - [-100.011324, 23.064561], - [-100.011252, 23.063921], - [-100.06194, 23.040008], - [-100.062097, 23.039844], - [-100.071635, 22.998259], - [-100.071656, 22.997357], - [-100.094915, 23.013841], - [-100.097455, 23.013091], - [-100.099532, 23.007931], - [-100.089421, 22.968757], - [-100.110145, 22.975512], - [-100.110847, 22.975719], - [-100.109707, 22.916726], - [-100.044239, 22.917892], - [-100.02959, 22.825776], - [-100.029384, 22.824394], - [-100.097631, 22.7664], - [-100.10192, 22.762793], - [-100.095624, 22.753558], - [-100.09406, 22.751265], - [-100.06601, 22.74135], - [-100.022343, 22.725925], - [-99.958098, 22.750311], - [-99.956958, 22.751667], - [-99.883154, 22.748239], - [-99.882397, 22.749862], - [-99.872682, 22.745453], - [-99.842819, 22.730557], - [-99.847403, 22.683756], - [-99.847924, 22.678435], - [-99.812959, 22.660402], - [-99.805486, 22.657773], - [-99.78811, 22.668302], - [-99.785037, 22.668509], - [-99.728951, 22.659134], - [-99.724085, 22.659608], - [-99.691981, 22.676847], - [-99.682535, 22.681125], - [-99.560638, 22.64122], - [-99.534692, 22.612765], - [-99.495831, 22.619924], - [-99.494536, 22.620869], - [-99.544327, 22.74414], - [-99.496789, 22.748498], - [-99.47922, 22.742053], - [-99.477127, 22.740637], - [-99.442554, 22.664399], - [-99.442053, 22.663616], - [-99.387025, 22.670051], - [-99.385553, 22.670268], - [-99.373516, 22.629997], - [-99.3732, 22.629078], - [-99.33881, 22.63356], - [-99.329618, 22.634888], - [-99.243425, 22.433371], - [-99.236839, 22.412862], - [-99.060438, 22.415238], - [-99.060399, 22.415269], - [-99.000957, 22.404506], - [-98.931973, 22.392775], - [-98.930072, 22.382559], - [-98.925545, 22.371747], - [-98.890631, 22.355355], - [-98.889997, 22.355094], - [-98.872925, 22.36582], - [-98.872289, 22.367413], - [-98.823045, 22.35694], - [-98.821467, 22.356256], - [-98.757141, 22.366821], - [-98.756404, 22.366941], - [-98.677099, 22.408927], - [-98.676662, 22.408933], - [-98.681006, 22.373249], - [-98.681547, 22.371575], - [-98.579694, 22.377537], - [-98.579316, 22.377757], - [-98.579287, 22.348669], - [-98.579291, 22.348628], - [-98.53634, 22.337884], - [-98.535215, 22.337878], - [-98.476389, 22.289288], - [-98.475908, 22.28864], - [-98.454396, 22.303931], - [-98.446659, 22.305621], - [-98.433973, 22.277183], - [-98.433794, 22.276844], - [-98.405531, 22.283435], - [-98.403699, 22.282543], - [-98.405102, 22.256256], - [-98.405093, 22.256076], - [-98.370936, 22.25484], - [-98.368137, 22.255373], - [-98.371998, 22.241311], - [-98.374556, 22.236079], - [-98.328075, 22.242659], - [-98.325967, 22.243053], - [-98.350398, 22.222772], - [-98.352261, 22.222799], - [-98.334829, 22.190241], - [-98.336545, 22.187693], - [-98.431566, 22.12872], - [-98.432017, 22.128265], - [-98.438862, 22.112419], - [-98.438737, 22.111915], - [-98.419014, 22.098582], - [-98.418825, 22.098019], - [-98.439004, 22.076415], - [-98.439452, 22.075647], - [-98.434556, 22.052049], - [-98.434649, 22.051669], - [-98.459517, 21.99562], - [-98.459544, 21.995169], - [-98.481424, 21.990605], - [-98.481476, 21.990514], - [-98.46809, 21.965481], - [-98.468806, 21.964601], - [-98.492674, 21.960314], - [-98.493203, 21.960412], - [-98.520384, 21.978923], - [-98.522, 21.979431], - [-98.549415, 21.961213], - [-98.550665, 21.96075], - [-98.578081, 21.967029], - [-98.578839, 21.966092], - [-98.568693, 21.938974], - [-98.56602, 21.937644], - [-98.518336, 21.950918], - [-98.516993, 21.951243], - [-98.505793, 21.940455], - [-98.503146, 21.936626], - [-98.49984, 21.923515], - [-98.500452, 21.923149], - [-98.543378, 21.932652], - [-98.543847, 21.932117], - [-98.546325, 21.917918], - [-98.545874, 21.917348], - [-98.510864, 21.910306], - [-98.510798, 21.908697], - [-98.51902, 21.897164], - [-98.520201, 21.896986], - [-98.537591, 21.906209], - [-98.538203, 21.905808], - [-98.547933, 21.860794], - [-98.548034, 21.860105], - [-98.52997, 21.863782], - [-98.528858, 21.863175], - [-98.515555, 21.824902], - [-98.514481, 21.823893], - [-98.486633, 21.836575], - [-98.48632, 21.836269], - [-98.493232, 21.814259], - [-98.493119, 21.81394], - [-98.475306, 21.814402], - [-98.475038, 21.814192], - [-98.4547, 21.766427], - [-98.454723, 21.766012], - [-98.467309, 21.770841], - [-98.467597, 21.770698], - [-98.476695, 21.745473], - [-98.476924, 21.745219], - [-98.50365, 21.738412], - [-98.504219, 21.738048], - [-98.515838, 21.717363], - [-98.516674, 21.716851], - [-98.536768, 21.721143], - [-98.537411, 21.720624], - [-98.520871, 21.710971], - [-98.520532, 21.710231], - [-98.530403, 21.697435], - [-98.530742, 21.697275], - [-98.543583, 21.72323], - [-98.543841, 21.723394], - [-98.567116, 21.717572], - [-98.567435, 21.717368], - [-98.558002, 21.688805], - [-98.558255, 21.687672], - [-98.578891, 21.672121], - [-98.579201, 21.671948], - [-98.620842, 21.683177], - [-98.621997, 21.682383], - [-98.609295, 21.667652], - [-98.60947, 21.667229], - [-98.6437, 21.631269], - [-98.643664, 21.630936], - [-98.621355, 21.628159], - [-98.621127, 21.627822], - [-98.625721, 21.585775], - [-98.625747, 21.585456], - [-98.602283, 21.540531], - [-98.602247, 21.540431], - [-98.532613, 21.501552], - [-98.532256, 21.50114], - [-98.506651, 21.367388], - [-98.506604, 21.366851], - [-98.54928, 21.384496], - [-98.549566, 21.384598], - [-98.596886, 21.359166], - [-98.596935, 21.359074], - [-98.638338, 21.367706], - [-98.638553, 21.367717], - [-98.65252, 21.348414], - [-98.65275, 21.346844], - [-98.680735, 21.346496], - [-98.681083, 21.346178], - [-98.670908, 21.324859], - [-98.670727, 21.32472], - [-98.60505, 21.302026], - [-98.604673, 21.301842], - [-98.595355, 21.283443], - [-98.595241, 21.28323], - [-98.608614, 21.20169], - [-98.608742, 21.201408], - [-98.650397, 21.181093], - [-98.650522, 21.180933], - [-98.682337, 21.200724], - [-98.68266, 21.200638], - [-98.696483, 21.161604], - [-98.696641, 21.16146], - [-98.702008, 21.184802], - [-98.702121, 21.185118], - [-98.72731, 21.179497], - [-98.727661, 21.179549], - [-98.741178, 21.192574], - [-98.741314, 21.192792], - [-98.772641, 21.172121], - [-98.772921, 21.171969], - [-98.807524, 21.193326], - [-98.808143, 21.193245], - [-98.790108, 21.178995], - [-98.789878, 21.178501], - [-98.793416, 21.160561], - [-98.793953, 21.160184], - [-98.824537, 21.161248], - [-98.824948, 21.16135], - [-98.855964, 21.188674], - [-98.8574, 21.189264], - [-98.880007, 21.179264], - [-98.882659, 21.179611], - [-98.944692, 21.310372], - [-98.944961, 21.311337], - [-99.04327, 21.279488], - [-99.043453, 21.279433], - [-99.093177, 21.291742], - [-99.104345, 21.289598], - [-99.126577, 21.317166], - [-99.127559, 21.318337], - [-99.102949, 21.321194], - [-99.13783, 21.329792], - [-99.129456, 21.362046], - [-99.092621, 21.36336], - [-99.142073, 21.534588], - [-99.142282, 21.53544], - [-99.128274, 21.589557], - [-99.128297, 21.589817], - [-99.169429, 21.625497], - [-99.171896, 21.627031], - [-99.188108, 21.669917], - [-99.188175, 21.670005], - [-99.217152, 21.66694], - [-99.217698, 21.666646], - [-99.242477, 21.616642], - [-99.243496, 21.615057], - [-99.2794, 21.608223], - [-99.280717, 21.607903], - [-99.274335, 21.56557], - [-99.274402, 21.565323], - [-99.304981, 21.533348], - [-99.305489, 21.532914], - [-99.375525, 21.548189], - [-99.375907, 21.547931], - [-99.371963, 21.507726], - [-99.371976, 21.507104], - [-99.386349, 21.500561], - [-99.386708, 21.500373], - [-99.404385, 21.429387], - [-99.404646, 21.428926], - [-99.435057, 21.449578], - [-99.435708, 21.449833], - [-99.468589, 21.446647], - [-99.469129, 21.446756], - [-99.50308, 21.418604], - [-99.503814, 21.418563], - [-99.551976, 21.428496], - [-99.5529, 21.429069], - [-99.556596, 21.436609], - [-99.549345, 21.447068], - [-99.615927, 21.49908], - [-99.625801, 21.507302], - [-99.659673, 21.567678], - [-99.659542, 21.567945], - [-99.743895, 21.577841], - [-99.746743, 21.578363], - [-99.749374, 21.523603], - [-99.749292, 21.523173], - [-99.791565, 21.474961], - [-99.791775, 21.474818], - [-99.816349, 21.461962], - [-99.817074, 21.461691], - [-99.838736, 21.463037], - [-99.839181, 21.462386], - [-99.835434, 21.476575], - [-99.834929, 21.478116], - [-99.858692, 21.47503], - [-99.863775, 21.47431], - [-99.903409, 21.449025], - [-99.905174, 21.448159], - [-99.942669, 21.461784], - [-99.943169, 21.461784], - [-99.941816, 21.449594], - [-99.942333, 21.44962], - [-99.958692, 21.483099], - [-99.959346, 21.483514], - [-99.945921, 21.493975], - [-99.945705, 21.497432], - [-99.964264, 21.504142], - [-99.965111, 21.505121], - [-99.95688, 21.526123], - [-99.956822, 21.526227], - [-100.050849, 21.524245], - [-100.062276, 21.523305], - [-100.075844, 21.557932], - [-100.147028, 21.617943], - [-100.147195, 21.618125], - [-100.170812, 21.601013], - [-100.171443, 21.601266], - [-100.177666, 21.648918], - [-100.179635, 21.65079], - [-100.244216, 21.665154], - [-100.246311, 21.664933], - [-100.271904, 21.687174], - [-100.272135, 21.687347], - [-100.434857, 21.682813], - [-100.435044, 21.682718], - [-100.485476, 21.59632], - [-100.485685, 21.595277], - [-100.462159, 21.57387], - [-100.460702, 21.57121], - [-100.460909, 21.545808], - [-100.46108, 21.545335], - [-100.520804, 21.542088], - [-100.53395, 21.542327], - [-100.614575, 21.506032], - [-100.614955, 21.505789], - [-100.619156, 21.522602], - [-100.614299, 21.533135], - [-100.634138, 21.542501], - [-100.635447, 21.543192], - [-100.640594, 21.527958], - [-100.657456, 21.524718], - [-100.680694, 21.547139], - [-100.681168, 21.547505], - [-100.716283, 21.549722], - [-100.71763, 21.550232], - [-100.734073, 21.578544], - [-100.734344, 21.578727], - [-100.809443, 21.592071], - [-100.809496, 21.59205], - [-100.857612, 21.61896], - [-100.857678, 21.618987], - [-100.842601, 21.649027], - [-100.834321, 21.664559], - [-100.865115, 21.687049], - [-100.86515, 21.68708], - [-100.869987, 21.672698], - [-100.870112, 21.672494], - [-100.9067, 21.681359], - [-100.907183, 21.681637], - [-100.921237, 21.700114], - [-100.921273, 21.700274], - [-100.912615, 21.713568], - [-100.912578, 21.713649], - [-100.981819, 21.753422], - [-100.981974, 21.753527], - [-101.049039, 21.763898], - [-101.059248, 21.765521], - [-101.149546, 21.756398], - [-101.161267, 21.757506], - [-101.204261, 21.789423], - [-101.219795, 21.8022], - [-101.217212, 21.815813], - [-101.217152, 21.816077], - [-101.289255, 21.812195], - [-101.289685, 21.81214], - [-101.319439, 21.835308], - [-101.319484, 21.835334], - [-101.454906, 21.829507], - [-101.455072, 21.829959], - [-101.492676, 21.812735], - [-101.496331, 21.80994], - [-101.502618, 21.827515], - [-101.503515, 21.830124], - [-101.483191, 21.867583], - [-101.483196, 21.867681], - [-101.442739, 21.892465], - [-101.440675, 21.892716], - [-101.443123, 21.908443], - [-101.441803, 21.909338], - [-101.435527, 21.899249], - [-101.434596, 21.897065], - [-101.410358, 21.908643], - [-101.410228, 21.908694], - [-101.42974, 21.933302], - [-101.429173, 21.934361], - [-101.373815, 21.989818], - [-101.373366, 21.990249], - [-101.327697, 21.999698], - [-101.32651, 21.999728], - [-101.347588, 22.013752], - [-101.352439, 22.013082], - [-101.349831, 22.023243], - [-101.348572, 22.028071], - [-101.32939, 22.016248], - [-101.327942, 22.016468], - [-101.330901, 22.035315], - [-101.351675, 22.043789], - [-101.364967, 22.022066], - [-101.365692, 22.018548], - [-101.379598, 22.020327], - [-101.382755, 22.020738], - [-101.371293, 22.027716], - [-101.369738, 22.027517], - [-101.377609, 22.042127], - [-101.377078, 22.044962], - [-101.347456, 22.050033], - [-101.346587, 22.04969], - [-101.354751, 22.068914], - [-101.35424, 22.071735], - [-101.329382, 22.135605], - [-101.327745, 22.144112], - [-101.341257, 22.152133], - [-101.351306, 22.17676], - [-101.332731, 22.200059], - [-101.324253, 22.209893], - [-101.376356, 22.261289], - [-101.376804, 22.261656], - [-101.413444, 22.267152], - [-101.416259, 22.267346], - [-101.392029, 22.298374], - [-101.391435, 22.299902], - [-101.434839, 22.338641], - [-101.435125, 22.341534], - [-101.432972, 22.363277], - [-101.381911, 22.357485], - [-101.373948, 22.444507], - [-101.374786, 22.456458], - [-101.313726, 22.45349], - [-101.315383, 22.469649], - [-101.285726, 22.507856], - [-101.305503, 22.609187], - [-101.305709, 22.60993], - [-101.336286, 22.65742], - [-101.336937, 22.658756], - [-101.356533, 22.654176], - [-101.359376, 22.653533], - [-101.378644, 22.674544], - [-101.380018, 22.675835], - [-101.361557, 22.696905], - [-101.349234, 22.711779], - [-101.392798, 22.738131], - [-101.411077, 22.747681], - [-101.441915, 22.745831], - [-101.490965, 22.742877], - [-101.491175, 22.741924], - [-101.497004, 22.701541], - [-101.558871, 22.662205], - [-101.567398, 22.656776], - [-101.573778, 22.612898], - [-101.573821, 22.612816], - [-101.594928, 22.624499], - [-101.595287, 22.624072], - [-101.59039, 22.591082], - [-101.590083, 22.589036], - [-101.659526, 22.505736], - [-101.659906, 22.50532], - [-101.695849, 22.52006], - [-101.696018, 22.520422], - [-101.741245, 22.509847], - [-101.746175, 22.508693], - [-101.742682, 22.499496], - [-101.735361, 22.480215], - [-101.766017, 22.486794], - [-101.771535, 22.488163], - [-101.78294, 22.466932], - [-101.783361, 22.465034], - [-101.799138, 22.470516], - [-101.799276, 22.470559], - [-101.837141, 22.499692], - [-101.820691, 22.548913], - [-101.819892, 22.551295], - [-101.872779, 22.563034], - [-101.872958, 22.563073], - [-101.85664, 22.639992], - [-101.853284, 22.656025], - [-101.86755, 22.654652], - [-101.939756, 22.645725], - [-102.113431, 22.774468], - [-102.124897, 22.782952], - [-102.176131, 22.843023], - [-102.192132, 22.864902], - [-102.237203, 23.042571], - [-102.238082, 23.047644], - [-102.252279, 23.046618], - [-102.260051, 23.045916], - [-102.214274, 23.130742], - [-102.214155, 23.13132], - [-102.229925, 23.151884], - [-102.240974, 23.16938], - [-102.239417, 23.208691], - [-102.239458, 23.209493], - [-102.272075, 23.22402], - [-102.289369, 23.231691], - [-102.285845, 23.27292], - [-102.285825, 23.27332], - [-102.248022, 23.27449], - [-102.244672, 23.276769], - [-102.232679, 23.312119], - [-102.231597, 23.315116], - [-102.268447, 23.27985], - [-102.268986, 23.27988], - [-102.294479, 23.318789], - [-102.296038, 23.320501], - [-102.255226, 23.362466], - [-102.253611, 23.364956], - [-102.23861, 23.444673], - [-102.23815, 23.446901], - [-102.204227, 23.447434], - [-102.193615, 23.447599], - [-102.19305, 23.409548], - [-102.191342, 23.401388], - [-102.174542, 23.399554], - [-102.168615, 23.398908], - [-102.168746, 23.371863], - [-102.168799, 23.361026], - [-102.122877, 23.353914], - [-102.122532, 23.35386], - [-102.014007, 23.372411], - [-102.011944, 23.372749], - [-101.800639, 23.439583], - [-101.775122, 23.447629], - [-101.19257, 23.918564], - [-101.192505, 23.918559], - [-101.213212, 24.124452], - [-101.216746, 24.159732], - [-101.070435, 24.205021], - [-101.065402, 24.207021], - [-100.996065, 24.418155], - [-100.987327, 24.432519], - [-101.00853, 24.385242], - [-101.009868, 24.385117], - [-101.006675, 24.335835], - [-100.945286, 24.281196], - [-100.850675, 24.343397], - [-100.850383, 24.343539], - [-100.742324, 24.460435], - [-100.71121, 24.491522], - [-100.603533, 24.4013] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "29", - "name": "Tlaxcala", - "id": 23, - "ISOCODE": "MX-TLA" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-98.054985, 19.721801], - [-98.037884, 19.648475], - [-98.042212, 19.640225], - [-97.974096, 19.625056], - [-97.967919, 19.624713], - [-97.946941, 19.586204], - [-97.946589, 19.585524], - [-97.916435, 19.593868], - [-97.916226, 19.593931], - [-97.870879, 19.559957], - [-97.870146, 19.559155], - [-97.889716, 19.50479], - [-97.889748, 19.504579], - [-97.849242, 19.483537], - [-97.848739, 19.482782], - [-97.862096, 19.456237], - [-97.862271, 19.456176], - [-97.805459, 19.48947], - [-97.794539, 19.498375], - [-97.796921, 19.473151], - [-97.796859, 19.472443], - [-97.755359, 19.457673], - [-97.754801, 19.457543], - [-97.705792, 19.394322], - [-97.705455, 19.393641], - [-97.681969, 19.388446], - [-97.681302, 19.388303], - [-97.653982, 19.354208], - [-97.653631, 19.3538], - [-97.632854, 19.356364], - [-97.631446, 19.355395], - [-97.637451, 19.340341], - [-97.638712, 19.338263], - [-97.625849, 19.331994], - [-97.625674, 19.331394], - [-97.689371, 19.286654], - [-97.690933, 19.285888], - [-97.718983, 19.304004], - [-97.719643, 19.304753], - [-97.738267, 19.28713], - [-97.738333, 19.2871], - [-97.745029, 19.305218], - [-97.745092, 19.30526], - [-97.769678, 19.286595], - [-97.771386, 19.283753], - [-97.838651, 19.301562], - [-97.83927, 19.301376], - [-97.839098, 19.288032], - [-97.838429, 19.287264], - [-97.868631, 19.273421], - [-97.870287, 19.270586], - [-97.859331, 19.261569], - [-97.854052, 19.257328], - [-97.870473, 19.240277], - [-97.870495, 19.240061], - [-97.851022, 19.222991], - [-97.850988, 19.222934], - [-97.927736, 19.165331], - [-97.928203, 19.164213], - [-98.0094, 19.211376], - [-98.031686, 19.230938], - [-98.109985, 19.143434], - [-98.110159, 19.143212], - [-98.165889, 19.105175], - [-98.166176, 19.105072], - [-98.204262, 19.114914], - [-98.204348, 19.114929], - [-98.190598, 19.13951], - [-98.190707, 19.139986], - [-98.222827, 19.136613], - [-98.223039, 19.136638], - [-98.229957, 19.156501], - [-98.230241, 19.156729], - [-98.269345, 19.162309], - [-98.269703, 19.16239], - [-98.30631, 19.188755], - [-98.307156, 19.189204], - [-98.323793, 19.16882], - [-98.323929, 19.168662], - [-98.342674, 19.177921], - [-98.34271, 19.17794], - [-98.330861, 19.199877], - [-98.330681, 19.20015], - [-98.365995, 19.225315], - [-98.368915, 19.226122], - [-98.409527, 19.290696], - [-98.410091, 19.291339], - [-98.408008, 19.312103], - [-98.407721, 19.315932], - [-98.438027, 19.325657], - [-98.441273, 19.325251], - [-98.46457, 19.35635], - [-98.470278, 19.360831], - [-98.523149, 19.460532], - [-98.523192, 19.460869], - [-98.577501, 19.460276], - [-98.591276, 19.449214], - [-98.640536, 19.463304], - [-98.653227, 19.465986], - [-98.706119, 19.547107], - [-98.708399, 19.5476], - [-98.681356, 19.597649], - [-98.68138, 19.598285], - [-98.61086, 19.601829], - [-98.609836, 19.602014], - [-98.566816, 19.640458], - [-98.566358, 19.64112], - [-98.550316, 19.62051], - [-98.5504, 19.618578], - [-98.536819, 19.632974], - [-98.535576, 19.634419], - [-98.519829, 19.603065], - [-98.519239, 19.602399], - [-98.490193, 19.619831], - [-98.490195, 19.619953], - [-98.409564, 19.616688], - [-98.381697, 19.609362], - [-98.324012, 19.684997], - [-98.323803, 19.685298], - [-98.332089, 19.721713], - [-98.331667, 19.72232], - [-98.27248, 19.724691], - [-98.271982, 19.724579], - [-98.254126, 19.716917], - [-98.253869, 19.716721], - [-98.241054, 19.675977], - [-98.241067, 19.675836], - [-98.165919, 19.66958], - [-98.165564, 19.667476], - [-98.118621, 19.688242], - [-98.117736, 19.688263], - [-98.101267, 19.668237], - [-98.101008, 19.66805], - [-98.064613, 19.708655], - [-98.064396, 19.70901], - [-98.066385, 19.727252], - [-98.065972, 19.728077], - [-98.054985, 19.721801] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "21", - "name": "Puebla", - "id": 24, - "ISOCODE": "MX-PUE" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-97.842178, 20.839887], - [-97.850177, 20.817464], - [-97.850118, 20.816924], - [-97.831258, 20.808596], - [-97.830698, 20.807997], - [-97.773162, 20.826759], - [-97.773002, 20.827201], - [-97.739305, 20.802542], - [-97.738915, 20.801535], - [-97.70081, 20.80019], - [-97.695179, 20.800039], - [-97.725524, 20.791738], - [-97.725983, 20.791654], - [-97.722848, 20.750029], - [-97.72282, 20.749989], - [-97.751854, 20.732246], - [-97.752968, 20.73237], - [-97.756809, 20.68989], - [-97.75686, 20.689492], - [-97.737326, 20.680026], - [-97.737067, 20.679655], - [-97.749364, 20.643481], - [-97.749511, 20.64332], - [-97.704745, 20.629428], - [-97.704468, 20.629224], - [-97.715232, 20.609568], - [-97.715394, 20.609085], - [-97.695256, 20.602827], - [-97.693419, 20.602681], - [-97.70139, 20.573551], - [-97.701903, 20.571866], - [-97.68445, 20.572869], - [-97.684056, 20.57251], - [-97.684877, 20.554415], - [-97.684772, 20.554261], - [-97.657719, 20.545065], - [-97.657294, 20.545069], - [-97.648023, 20.565833], - [-97.648196, 20.566312], - [-97.637182, 20.553831], - [-97.636665, 20.553712], - [-97.588607, 20.561116], - [-97.587953, 20.56107], - [-97.541515, 20.490329], - [-97.541043, 20.489712], - [-97.571015, 20.490741], - [-97.576046, 20.4909], - [-97.595776, 20.464078], - [-97.595884, 20.463992], - [-97.634123, 20.452845], - [-97.635365, 20.452186], - [-97.644873, 20.408445], - [-97.645411, 20.408324], - [-97.671181, 20.408395], - [-97.672075, 20.408529], - [-97.708824, 20.454848], - [-97.709187, 20.455109], - [-97.734021, 20.451752], - [-97.734599, 20.451306], - [-97.76536, 20.38141], - [-97.765642, 20.381228], - [-97.745189, 20.380207], - [-97.74445, 20.38011], - [-97.742903, 20.351795], - [-97.742877, 20.351197], - [-97.701153, 20.320848], - [-97.700689, 20.319919], - [-97.680234, 20.347263], - [-97.679345, 20.349918], - [-97.674306, 20.337602], - [-97.673125, 20.336607], - [-97.689508, 20.321258], - [-97.689858, 20.320087], - [-97.68121, 20.302692], - [-97.681398, 20.302432], - [-97.757203, 20.279235], - [-97.757298, 20.279079], - [-97.735223, 20.242543], - [-97.735112, 20.242392], - [-97.731675, 20.181577], - [-97.731461, 20.181348], - [-97.720506, 20.189197], - [-97.72023, 20.189168], - [-97.653546, 20.163437], - [-97.653025, 20.163433], - [-97.632803, 20.183227], - [-97.63232, 20.183223], - [-97.606735, 20.167274], - [-97.604489, 20.166874], - [-97.602716, 20.119489], - [-97.602735, 20.119314], - [-97.578782, 20.103006], - [-97.578651, 20.10252], - [-97.596072, 20.093543], - [-97.596091, 20.092984], - [-97.580678, 20.078955], - [-97.580258, 20.079008], - [-97.561751, 20.085576], - [-97.561296, 20.086022], - [-97.558336, 20.106633], - [-97.558051, 20.106911], - [-97.495341, 20.136882], - [-97.494838, 20.137348], - [-97.50551, 20.153439], - [-97.505384, 20.153938], - [-97.467436, 20.178583], - [-97.465059, 20.180218], - [-97.464383, 20.223612], - [-97.464294, 20.224227], - [-97.44724, 20.24276], - [-97.445276, 20.246161], - [-97.408998, 20.232302], - [-97.408169, 20.232092], - [-97.38097, 20.24987], - [-97.380605, 20.249882], - [-97.365658, 20.215978], - [-97.365512, 20.215751], - [-97.283359, 20.181338], - [-97.283191, 20.181112], - [-97.244951, 20.181338], - [-97.244041, 20.182279], - [-97.165148, 20.152066], - [-97.164413, 20.151832], - [-97.15008, 20.160627], - [-97.149991, 20.160614], - [-97.151394, 20.137619], - [-97.151364, 20.13754], - [-97.12272, 20.136939], - [-97.122409, 20.136721], - [-97.205697, 20.056654], - [-97.206152, 20.056355], - [-97.20718, 20.015317], - [-97.206927, 20.014668], - [-97.260195, 19.977409], - [-97.260669, 19.977254], - [-97.269267, 19.947648], - [-97.269249, 19.947027], - [-97.255953, 19.93244], - [-97.255809, 19.93246], - [-97.304454, 19.870874], - [-97.304559, 19.870695], - [-97.313782, 19.736046], - [-97.313784, 19.735135], - [-97.331963, 19.717704], - [-97.33314, 19.71678], - [-97.304313, 19.671737], - [-97.30393, 19.671156], - [-97.337512, 19.675236], - [-97.341162, 19.675752], - [-97.399986, 19.618151], - [-97.402747, 19.615343], - [-97.417095, 19.626896], - [-97.418467, 19.627217], - [-97.434152, 19.589003], - [-97.434279, 19.588848], - [-97.404243, 19.499847], - [-97.404556, 19.495866], - [-97.349931, 19.484669], - [-97.348259, 19.484627], - [-97.356782, 19.433129], - [-97.357276, 19.432377], - [-97.397195, 19.419019], - [-97.397357, 19.419064], - [-97.360694, 19.376628], - [-97.360453, 19.376029], - [-97.34267, 19.386187], - [-97.33775, 19.392531], - [-97.285186, 19.391644], - [-97.284968, 19.391637], - [-97.21069, 19.35909], - [-97.210206, 19.359442], - [-97.215398, 19.323927], - [-97.215605, 19.32332], - [-97.200627, 19.309499], - [-97.200273, 19.309265], - [-97.170565, 19.328894], - [-97.170206, 19.329022], - [-97.102181, 19.303727], - [-97.101999, 19.303615], - [-97.04568, 19.321256], - [-97.045511, 19.321283], - [-97.03136, 19.298314], - [-97.030991, 19.297327], - [-96.985713, 19.280048], - [-96.98556, 19.279397], - [-97.001193, 19.237151], - [-97.001235, 19.236546], - [-97.05599, 19.197967], - [-97.056155, 19.197667], - [-97.027012, 19.133754], - [-97.027052, 19.133236], - [-97.054733, 19.133658], - [-97.055633, 19.134002], - [-97.066544, 19.159345], - [-97.066693, 19.159455], - [-97.193811, 19.171524], - [-97.194589, 19.171813], - [-97.209113, 19.159925], - [-97.209633, 19.159851], - [-97.196948, 19.147147], - [-97.197198, 19.146559], - [-97.26122, 19.096859], - [-97.261399, 19.096627], - [-97.268882, 19.058607], - [-97.266626, 19.030313], - [-97.285121, 18.999871], - [-97.285126, 18.999431], - [-97.258701, 18.977809], - [-97.258259, 18.977714], - [-97.2418, 18.902299], - [-97.241816, 18.902143], - [-97.29687, 18.867646], - [-97.297312, 18.86731], - [-97.326345, 18.81029], - [-97.326346, 18.810246], - [-97.352037, 18.792894], - [-97.353031, 18.791285], - [-97.35361, 18.775444], - [-97.35285, 18.774361], - [-97.330089, 18.766211], - [-97.330059, 18.765974], - [-97.349638, 18.717766], - [-97.350025, 18.717143], - [-97.343554, 18.686826], - [-97.343975, 18.685759], - [-97.323599, 18.664839], - [-97.323178, 18.664309], - [-97.303456, 18.674222], - [-97.303203, 18.674286], - [-97.272616, 18.628689], - [-97.271852, 18.627779], - [-97.235936, 18.643557], - [-97.235429, 18.643569], - [-97.141825, 18.596421], - [-97.141443, 18.596418], - [-97.144434, 18.572649], - [-97.144563, 18.570928], - [-97.083755, 18.484156], - [-97.083471, 18.483943], - [-97.080208, 18.456525], - [-97.079968, 18.454508], - [-96.99948, 18.531553], - [-96.998917, 18.531916], - [-96.954776, 18.553683], - [-96.954334, 18.553829], - [-96.926839, 18.535815], - [-96.925945, 18.534926], - [-96.899529, 18.54859], - [-96.899251, 18.548648], - [-96.842408, 18.49342], - [-96.842358, 18.493389], - [-96.81388, 18.517418], - [-96.813446, 18.517618], - [-96.797466, 18.512009], - [-96.797012, 18.511935], - [-96.78129, 18.430543], - [-96.781388, 18.429638], - [-96.764303, 18.427813], - [-96.763186, 18.427051], - [-96.759477, 18.408999], - [-96.759085, 18.408264], - [-96.728523, 18.409147], - [-96.725905, 18.408804], - [-96.728211, 18.3973], - [-96.728132, 18.396645], - [-96.753933, 18.392621], - [-96.754638, 18.392159], - [-96.784095, 18.338946], - [-96.784213, 18.338328], - [-96.820754, 18.321756], - [-96.821378, 18.321252], - [-96.817489, 18.303029], - [-96.817574, 18.300786], - [-96.853053, 18.243931], - [-96.854761, 18.241228], - [-96.920981, 18.240226], - [-96.921876, 18.240619], - [-96.936363, 18.216586], - [-96.936835, 18.216032], - [-96.990716, 18.231], - [-96.991479, 18.230739], - [-97.038483, 18.169345], - [-97.042094, 18.156569], - [-97.111903, 18.149534], - [-97.113758, 18.149468], - [-97.168136, 18.197922], - [-97.167368, 18.200903], - [-97.213957, 18.164075], - [-97.214348, 18.163668], - [-97.228346, 18.174551], - [-97.228667, 18.174592], - [-97.303259, 18.159121], - [-97.303409, 18.159079], - [-97.376451, 18.094585], - [-97.376553, 18.094512], - [-97.411043, 18.102458], - [-97.41124, 18.102393], - [-97.466749, 18.027422], - [-97.466918, 18.026951], - [-97.503266, 18.029208], - [-97.505915, 18.027822], - [-97.532915, 18.046095], - [-97.534046, 18.046338], - [-97.542759, 18.033964], - [-97.543905, 18.033445], - [-97.568332, 18.093927], - [-97.56962, 18.103387], - [-97.597009, 18.125499], - [-97.608154, 18.131011], - [-97.608996, 18.153336], - [-97.609298, 18.153683], - [-97.651841, 18.174459], - [-97.653176, 18.175289], - [-97.635415, 18.19531], - [-97.634024, 18.200068], - [-97.65311, 18.291052], - [-97.654714, 18.293093], - [-97.721232, 18.276084], - [-97.721274, 18.276048], - [-97.794115, 18.283876], - [-97.797297, 18.283175], - [-97.824323, 18.227293], - [-97.822961, 18.223404], - [-97.858589, 18.193107], - [-97.859227, 18.192289], - [-97.841013, 18.171808], - [-97.839462, 18.171231], - [-97.864268, 18.147654], - [-97.867483, 18.144571], - [-97.860508, 18.101829], - [-97.84946, 18.083741], - [-97.813583, 18.069836], - [-97.81067, 18.067717], - [-97.832999, 18.050735], - [-97.834782, 18.049799], - [-97.842691, 18.005198], - [-97.842604, 17.996082], - [-97.835631, 17.98345], - [-97.826272, 17.972677], - [-97.791991, 18.003221], - [-97.790921, 18.004158], - [-97.798097, 18.035138], - [-97.798544, 18.035802], - [-97.780063, 18.058118], - [-97.771671, 18.068368], - [-97.697895, 18.019559], - [-97.697775, 18.018816], - [-97.699826, 18.00192], - [-97.699742, 18.001637], - [-97.76592, 18.005863], - [-97.766381, 18.005915], - [-97.768188, 17.976783], - [-97.767941, 17.976653], - [-97.802946, 17.959983], - [-97.803375, 17.960459], - [-97.819212, 17.915824], - [-97.819287, 17.914738], - [-97.935534, 17.91722], - [-97.936302, 17.917179], - [-97.948301, 17.947856], - [-97.948849, 17.948156], - [-97.937225, 17.967611], - [-97.93738, 17.967901], - [-97.978862, 17.964766], - [-97.979377, 17.964442], - [-98.029711, 17.991656], - [-98.029787, 17.991836], - [-98.046304, 17.976804], - [-98.046714, 17.976206], - [-98.129879, 17.988071], - [-98.130394, 17.988084], - [-98.169423, 17.953166], - [-98.16961, 17.952834], - [-98.170703, 17.902355], - [-98.170911, 17.902058], - [-98.207117, 17.886996], - [-98.209746, 17.879758], - [-98.25421, 17.883732], - [-98.254775, 17.883627], - [-98.262162, 17.926653], - [-98.26223, 17.926877], - [-98.282315, 17.934961], - [-98.28231, 17.93515], - [-98.302075, 17.893108], - [-98.302403, 17.892714], - [-98.329543, 17.878793], - [-98.329845, 17.878718], - [-98.348766, 17.893116], - [-98.349073, 17.893173], - [-98.38229, 17.883604], - [-98.382604, 17.88367], - [-98.398604, 17.861516], - [-98.398755, 17.860912], - [-98.423246, 17.864652], - [-98.423598, 17.864837], - [-98.433563, 17.888947], - [-98.435518, 17.891411], - [-98.444465, 17.922166], - [-98.444998, 17.922297], - [-98.422889, 17.948334], - [-98.422899, 17.949002], - [-98.425033, 17.97657], - [-98.425094, 17.976934], - [-98.440188, 17.981982], - [-98.44814, 17.990711], - [-98.475289, 17.982183], - [-98.476387, 17.981044], - [-98.526436, 17.996157], - [-98.526725, 17.996289], - [-98.529249, 17.976058], - [-98.529628, 17.975823], - [-98.58545, 17.974957], - [-98.585523, 17.974941], - [-98.650217, 17.93323], - [-98.650538, 17.933161], - [-98.731376, 17.982172], - [-98.731827, 17.982553], - [-98.813621, 18.000876], - [-98.814938, 18.001697], - [-98.801331, 18.021671], - [-98.80126, 18.022052], - [-98.767424, 18.019572], - [-98.767097, 18.019611], - [-98.735078, 18.044718], - [-98.735098, 18.045095], - [-98.796556, 18.06195], - [-98.79707, 18.062646], - [-98.810747, 18.050757], - [-98.811297, 18.050633], - [-98.812806, 18.064571], - [-98.813, 18.064875], - [-98.857232, 18.059254], - [-98.869812, 18.057217], - [-98.853848, 18.112815], - [-98.85237, 18.117601], - [-98.881308, 18.165226], - [-98.881877, 18.166162], - [-98.991896, 18.189918], - [-99.000066, 18.190205], - [-98.989041, 18.249318], - [-98.989056, 18.249355], - [-99.017832, 18.245535], - [-99.01933, 18.245411], - [-99.016124, 18.263405], - [-99.014707, 18.263266], - [-99.031234, 18.272091], - [-99.031706, 18.272315], - [-99.063365, 18.251294], - [-99.06371, 18.251483], - [-99.053171, 18.263473], - [-99.053228, 18.264156], - [-99.069415, 18.282959], - [-99.069364, 18.283235], - [-99.052079, 18.289555], - [-99.051773, 18.289815], - [-99.07033, 18.326427], - [-99.070494, 18.32684], - [-99.018353, 18.38745], - [-99.018175, 18.387784], - [-98.988171, 18.396842], - [-98.987939, 18.397064], - [-98.985558, 18.420888], - [-98.985372, 18.421154], - [-98.935668, 18.423013], - [-98.935152, 18.422904], - [-98.912221, 18.461646], - [-98.912221, 18.462122], - [-98.85085, 18.477741], - [-98.850409, 18.478035], - [-98.827824, 18.523841], - [-98.827766, 18.523886], - [-98.752241, 18.454823], - [-98.752191, 18.453924], - [-98.707979, 18.445687], - [-98.706699, 18.445112], - [-98.711467, 18.616114], - [-98.711426, 18.616455], - [-98.741631, 18.701746], - [-98.741882, 18.702177], - [-98.716216, 18.738488], - [-98.715907, 18.73919], - [-98.753397, 18.742927], - [-98.753494, 18.742969], - [-98.72796, 18.805472], - [-98.727946, 18.805509], - [-98.661445, 18.897684], - [-98.661315, 18.897809], - [-98.672915, 18.909441], - [-98.681415, 18.907167], - [-98.712931, 18.867548], - [-98.713472, 18.867244], - [-98.707224, 18.902016], - [-98.707343, 18.902856], - [-98.678517, 18.923328], - [-98.678092, 18.923717], - [-98.626491, 19.024307], - [-98.619875, 19.03506], - [-98.637366, 19.074445], - [-98.639298, 19.07744], - [-98.625726, 19.118628], - [-98.625489, 19.119572], - [-98.640393, 19.124763], - [-98.640657, 19.125456], - [-98.64293, 19.175686], - [-98.647022, 19.184828], - [-98.642884, 19.220669], - [-98.643571, 19.23873], - [-98.628055, 19.25724], - [-98.627525, 19.257759], - [-98.662133, 19.322164], - [-98.663476, 19.324792], - [-98.660495, 19.351262], - [-98.660588, 19.351736], - [-98.638207, 19.358689], - [-98.63808, 19.358911], - [-98.655242, 19.372712], - [-98.655543, 19.373452], - [-98.659768, 19.430447], - [-98.660178, 19.432094], - [-98.634697, 19.429548], - [-98.634676, 19.429914], - [-98.65822, 19.461183], - [-98.653227, 19.465986], - [-98.609158, 19.450613], - [-98.591276, 19.449214], - [-98.577501, 19.460276], - [-98.570276, 19.466769], - [-98.535214, 19.462322], - [-98.523192, 19.460869], - [-98.471667, 19.363053], - [-98.470278, 19.360831], - [-98.441707, 19.32669], - [-98.441273, 19.325251], - [-98.408396, 19.316245], - [-98.407721, 19.315932], - [-98.410251, 19.291711], - [-98.410091, 19.291339], - [-98.36822, 19.227674], - [-98.368915, 19.226122], - [-98.334936, 19.20447], - [-98.330681, 19.20015], - [-98.342607, 19.178236], - [-98.34271, 19.17794], - [-98.324078, 19.16882], - [-98.323929, 19.168662], - [-98.309541, 19.189503], - [-98.307156, 19.189204], - [-98.270195, 19.162666], - [-98.269703, 19.16239], - [-98.230597, 19.156805], - [-98.230241, 19.156729], - [-98.223204, 19.136868], - [-98.223039, 19.136638], - [-98.191061, 19.140021], - [-98.190707, 19.139986], - [-98.204216, 19.115201], - [-98.204348, 19.114929], - [-98.166229, 19.105107], - [-98.166176, 19.105072], - [-98.035234, 19.224126], - [-98.031686, 19.230938], - [-97.928372, 19.164323], - [-97.928203, 19.164213], - [-97.85422, 19.220223], - [-97.850988, 19.222934], - [-97.870376, 19.239993], - [-97.870495, 19.240061], - [-97.856316, 19.257155], - [-97.854052, 19.257328], - [-97.870034, 19.270333], - [-97.870287, 19.270586], - [-97.839572, 19.287336], - [-97.838429, 19.287264], - [-97.839387, 19.301185], - [-97.83927, 19.301376], - [-97.772266, 19.284064], - [-97.771386, 19.283753], - [-97.745716, 19.304841], - [-97.745092, 19.30526], - [-97.738713, 19.288336], - [-97.738333, 19.2871], - [-97.720305, 19.304013], - [-97.719643, 19.304753], - [-97.691763, 19.286867], - [-97.690933, 19.285888], - [-97.626869, 19.323386], - [-97.626356, 19.323934], - [-97.633356, 19.350676], - [-97.631446, 19.355395], - [-97.673521, 19.367321], - [-97.673859, 19.367471], - [-97.724105, 19.429464], - [-97.724525, 19.431637], - [-97.794336, 19.472311], - [-97.796859, 19.472443], - [-97.795132, 19.496819], - [-97.794539, 19.498375], - [-97.859664, 19.454501], - [-97.862271, 19.456176], - [-97.848532, 19.482204], - [-97.848739, 19.482782], - [-97.889715, 19.504446], - [-97.889748, 19.504579], - [-97.869487, 19.558199], - [-97.870146, 19.559155], - [-97.916143, 19.59386], - [-97.916226, 19.593931], - [-97.945389, 19.585333], - [-97.946589, 19.585524], - [-97.968097, 19.624495], - [-97.967919, 19.624713], - [-98.035336, 19.638617], - [-98.042212, 19.640225], - [-98.036373, 19.685126], - [-98.036382, 19.685523], - [-98.056251, 19.726023], - [-98.060808, 19.728917], - [-98.098825, 19.669673], - [-98.101008, 19.66805], - [-98.11661, 19.688055], - [-98.117736, 19.688263], - [-98.165338, 19.667523], - [-98.165564, 19.667476], - [-98.240786, 19.675857], - [-98.241067, 19.675836], - [-98.255321, 19.718735], - [-98.255319, 19.718829], - [-98.19639, 19.741657], - [-98.195699, 19.74162], - [-98.194099, 19.764389], - [-98.194376, 19.765372], - [-98.234331, 19.776705], - [-98.234815, 19.777046], - [-98.268642, 19.84449], - [-98.26923, 19.844947], - [-98.314627, 19.854786], - [-98.315004, 19.855116], - [-98.269712, 19.895439], - [-98.269352, 19.895709], - [-98.268716, 19.913156], - [-98.26782, 19.916114], - [-98.248513, 19.917344], - [-98.248073, 19.917531], - [-98.251865, 19.947879], - [-98.251604, 19.94815], - [-98.222305, 19.947169], - [-98.222082, 19.946932], - [-98.216278, 19.968346], - [-98.215941, 19.968521], - [-98.197825, 19.959793], - [-98.180698, 19.959752], - [-98.161511, 19.977199], - [-98.160428, 19.97813], - [-98.180595, 20.04647], - [-98.180903, 20.046986], - [-98.15929, 20.092398], - [-98.159705, 20.09257], - [-98.128444, 20.107197], - [-98.128273, 20.107203], - [-98.124772, 20.12374], - [-98.124607, 20.12407], - [-98.109476, 20.120568], - [-98.108462, 20.120803], - [-98.098088, 20.143736], - [-98.097879, 20.14539], - [-98.139471, 20.150027], - [-98.139583, 20.150142], - [-98.127966, 20.185581], - [-98.127959, 20.185941], - [-98.180299, 20.256946], - [-98.180434, 20.257059], - [-98.261804, 20.215424], - [-98.261938, 20.215257], - [-98.276542, 20.220505], - [-98.277742, 20.222704], - [-98.284481, 20.261866], - [-98.284444, 20.262789], - [-98.254269, 20.301271], - [-98.25403, 20.301342], - [-98.179303, 20.293761], - [-98.179078, 20.293808], - [-98.181383, 20.3365], - [-98.181308, 20.336543], - [-98.127228, 20.336298], - [-98.126836, 20.336231], - [-98.070603, 20.430141], - [-98.070484, 20.430273], - [-98.01194, 20.455145], - [-98.011385, 20.455772], - [-98.008905, 20.482269], - [-98.008865, 20.482541], - [-97.989324, 20.494961], - [-97.988791, 20.495385], - [-97.997473, 20.505879], - [-97.997426, 20.506095], - [-97.979334, 20.514933], - [-97.97263, 20.523202], - [-97.980823, 20.540573], - [-97.980816, 20.540709], - [-97.909845, 20.586297], - [-97.909686, 20.586378], - [-97.89497, 20.623829], - [-97.894971, 20.623899], - [-97.917813, 20.673637], - [-97.917832, 20.673938], - [-97.897462, 20.702888], - [-97.897426, 20.703214], - [-97.922195, 20.716384], - [-97.922447, 20.716519], - [-97.880055, 20.832654], - [-97.87912, 20.834276], - [-97.842178, 20.839887] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "13", - "name": "Hidalgo", - "id": 25, - "ISOCODE": "MX-HID" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-98.483211, 21.397325], - [-98.463423, 21.350836], - [-98.463606, 21.350154], - [-98.495132, 21.340888], - [-98.495618, 21.34042], - [-98.543969, 21.26408], - [-98.543982, 21.263901], - [-98.516546, 21.244273], - [-98.516543, 21.244269], - [-98.468528, 21.249632], - [-98.46836, 21.249651], - [-98.47971, 21.223994], - [-98.479657, 21.223888], - [-98.457094, 21.214881], - [-98.456948, 21.214833], - [-98.446796, 21.179965], - [-98.446767, 21.179813], - [-98.41645, 21.155347], - [-98.416436, 21.154982], - [-98.3511, 21.15728], - [-98.350754, 21.157143], - [-98.316604, 21.186171], - [-98.315856, 21.18688], - [-98.298937, 21.177404], - [-98.297903, 21.177402], - [-98.279296, 21.192744], - [-98.279131, 21.192753], - [-98.295733, 21.155273], - [-98.295922, 21.153613], - [-98.282275, 21.136618], - [-98.282174, 21.136417], - [-98.250565, 21.130687], - [-98.24911, 21.129403], - [-98.217733, 21.151755], - [-98.216825, 21.151472], - [-98.195413, 21.121047], - [-98.195152, 21.120363], - [-98.201982, 21.106443], - [-98.201694, 21.106137], - [-98.175267, 21.106267], - [-98.174862, 21.106224], - [-98.147358, 21.07845], - [-98.14741, 21.076583], - [-98.160764, 21.019957], - [-98.161158, 21.019131], - [-98.187442, 21.031027], - [-98.188271, 21.031308], - [-98.214893, 20.989656], - [-98.215007, 20.989627], - [-98.210009, 20.967473], - [-98.209539, 20.967089], - [-98.216105, 20.953079], - [-98.216112, 20.952608], - [-98.228237, 20.95802], - [-98.228574, 20.957609], - [-98.239341, 20.923119], - [-98.239355, 20.923026], - [-98.224869, 20.906622], - [-98.224863, 20.906357], - [-98.249647, 20.89825], - [-98.250966, 20.897305], - [-98.265291, 20.866542], - [-98.265503, 20.866536], - [-98.253769, 20.82156], - [-98.253765, 20.821492], - [-98.225007, 20.818184], - [-98.224705, 20.818235], - [-98.233646, 20.797571], - [-98.233653, 20.797556], - [-98.298803, 20.778334], - [-98.29881, 20.77784], - [-98.307838, 20.801328], - [-98.30783, 20.801916], - [-98.328148, 20.783998], - [-98.328522, 20.784097], - [-98.34327, 20.797122], - [-98.344665, 20.797485], - [-98.315141, 20.809607], - [-98.314838, 20.809815], - [-98.352442, 20.835383], - [-98.35287, 20.836007], - [-98.34505, 20.863667], - [-98.345146, 20.864853], - [-98.402148, 20.858161], - [-98.402909, 20.858384], - [-98.450038, 20.822184], - [-98.450554, 20.821472], - [-98.464383, 20.773613], - [-98.464557, 20.772529], - [-98.449832, 20.751521], - [-98.449729, 20.751346], - [-98.503203, 20.732455], - [-98.503611, 20.732227], - [-98.51614, 20.743144], - [-98.516654, 20.74289], - [-98.506803, 20.733206], - [-98.506438, 20.733119], - [-98.549779, 20.689457], - [-98.55018, 20.689393], - [-98.533884, 20.662841], - [-98.533397, 20.662717], - [-98.515092, 20.688792], - [-98.514825, 20.689202], - [-98.421109, 20.741978], - [-98.420937, 20.741834], - [-98.445894, 20.694622], - [-98.445904, 20.694337], - [-98.459319, 20.696718], - [-98.459883, 20.696203], - [-98.463561, 20.667517], - [-98.463686, 20.667241], - [-98.494484, 20.644536], - [-98.494847, 20.644341], - [-98.480131, 20.589436], - [-98.48018, 20.588999], - [-98.508635, 20.595768], - [-98.512248, 20.594224], - [-98.534655, 20.530682], - [-98.534665, 20.530658], - [-98.596996, 20.49636], - [-98.597286, 20.495771], - [-98.549972, 20.435514], - [-98.549689, 20.435359], - [-98.548953, 20.360425], - [-98.548967, 20.360286], - [-98.517467, 20.336911], - [-98.517401, 20.336852], - [-98.460464, 20.331438], - [-98.460389, 20.33145], - [-98.386213, 20.402668], - [-98.386149, 20.402713], - [-98.321209, 20.418008], - [-98.321014, 20.418014], - [-98.312183, 20.44963], - [-98.312139, 20.449768], - [-98.228864, 20.520626], - [-98.228694, 20.520835], - [-98.158433, 20.542488], - [-98.158043, 20.542561], - [-98.111864, 20.615741], - [-98.111786, 20.615937], - [-98.080929, 20.633156], - [-98.080714, 20.633327], - [-98.075367, 20.676335], - [-98.074903, 20.676548], - [-98.021131, 20.626897], - [-98.02101, 20.62678], - [-98.017765, 20.527385], - [-98.017272, 20.525992], - [-97.985127, 20.517519], - [-97.985071, 20.517406], - [-98.011313, 20.455994], - [-98.011385, 20.455772], - [-98.070383, 20.430286], - [-98.070484, 20.430273], - [-98.126299, 20.337013], - [-98.126836, 20.336231], - [-98.181143, 20.336459], - [-98.181308, 20.336543], - [-98.17838, 20.294473], - [-98.179078, 20.293808], - [-98.253356, 20.301286], - [-98.25403, 20.301342], - [-98.284108, 20.263075], - [-98.284444, 20.262789], - [-98.266055, 20.215567], - [-98.261938, 20.215257], - [-98.180672, 20.257044], - [-98.180434, 20.257059], - [-98.128145, 20.186194], - [-98.127959, 20.185941], - [-98.139694, 20.150347], - [-98.139583, 20.150142], - [-98.098486, 20.146272], - [-98.097879, 20.14539], - [-98.105919, 20.123136], - [-98.108462, 20.120803], - [-98.123958, 20.124284], - [-98.124607, 20.12407], - [-98.128139, 20.107387], - [-98.128273, 20.107203], - [-98.159237, 20.093053], - [-98.159705, 20.09257], - [-98.180545, 20.047285], - [-98.180903, 20.046986], - [-98.16224, 19.980377], - [-98.160428, 19.97813], - [-98.166979, 19.971802], - [-98.180698, 19.959752], - [-98.215552, 19.96852], - [-98.215941, 19.968521], - [-98.221678, 19.947404], - [-98.222082, 19.946932], - [-98.251163, 19.948466], - [-98.251604, 19.94815], - [-98.248125, 19.918154], - [-98.248073, 19.917531], - [-98.267716, 19.916088], - [-98.26782, 19.916114], - [-98.26821, 19.897208], - [-98.269352, 19.895709], - [-98.314681, 19.855584], - [-98.315004, 19.855116], - [-98.268642, 19.84449], - [-98.267149, 19.843336], - [-98.235223, 19.777507], - [-98.234815, 19.777046], - [-98.194827, 19.765548], - [-98.194484, 19.76559], - [-98.195908, 19.74184], - [-98.195699, 19.74162], - [-98.258637, 19.71784], - [-98.259575, 19.717209], - [-98.329599, 19.722581], - [-98.331667, 19.72232], - [-98.323831, 19.685541], - [-98.323803, 19.685298], - [-98.369879, 19.624528], - [-98.381697, 19.609362], - [-98.489966, 19.619763], - [-98.490195, 19.619953], - [-98.491585, 19.607566], - [-98.491614, 19.607368], - [-98.519073, 19.602377], - [-98.519239, 19.602399], - [-98.52888, 19.624925], - [-98.535576, 19.634419], - [-98.54688, 19.621513], - [-98.5504, 19.618578], - [-98.566384, 19.640251], - [-98.566358, 19.64112], - [-98.609021, 19.602359], - [-98.609836, 19.602014], - [-98.663129, 19.604914], - [-98.663146, 19.604754], - [-98.670245, 19.657338], - [-98.670055, 19.658676], - [-98.644187, 19.648831], - [-98.643814, 19.648838], - [-98.619901, 19.661072], - [-98.619671, 19.661164], - [-98.639616, 19.670816], - [-98.639897, 19.671083], - [-98.624069, 19.696133], - [-98.623915, 19.696408], - [-98.632795, 19.722165], - [-98.632924, 19.722236], - [-98.608136, 19.725188], - [-98.608102, 19.725075], - [-98.596894, 19.765767], - [-98.596867, 19.76584], - [-98.660659, 19.83488], - [-98.660815, 19.835031], - [-98.674818, 19.814773], - [-98.675875, 19.813184], - [-98.695868, 19.830445], - [-98.697641, 19.832115], - [-98.672416, 19.862244], - [-98.672659, 19.862835], - [-98.712573, 19.853973], - [-98.712821, 19.853802], - [-98.779013, 19.88258], - [-98.780574, 19.883541], - [-98.79485, 19.856611], - [-98.795172, 19.856415], - [-98.843228, 19.881749], - [-98.844034, 19.881988], - [-98.851261, 19.900605], - [-98.85583, 19.90428], - [-98.865642, 19.89331], - [-98.865896, 19.892587], - [-98.881925, 19.900603], - [-98.883162, 19.901529], - [-98.909204, 19.879872], - [-98.911825, 19.881017], - [-98.90567, 19.845982], - [-98.906016, 19.84513], - [-98.925205, 19.842671], - [-98.927632, 19.843393], - [-98.948759, 19.800511], - [-98.949517, 19.799972], - [-99.0002, 19.824951], - [-99.008201, 19.828402], - [-99.020042, 19.866803], - [-99.020581, 19.867683], - [-98.954311, 19.887479], - [-98.953547, 19.88854], - [-98.953483, 19.911551], - [-98.956112, 19.928184], - [-98.999089, 19.94201], - [-98.999779, 19.941825], - [-98.995768, 19.956165], - [-98.995623, 19.956892], - [-98.94287, 19.977988], - [-98.94273, 19.979073], - [-98.946628, 20.02668], - [-98.946655, 20.027475], - [-98.98897, 20.067862], - [-98.988978, 20.068262], - [-99.020958, 19.988765], - [-99.021555, 19.987005], - [-99.006794, 19.976039], - [-99.00412, 19.964952], - [-99.033621, 19.97117], - [-99.034513, 19.971772], - [-99.030897, 20.012553], - [-99.031343, 20.014854], - [-99.048777, 20.008087], - [-99.04943, 20.007697], - [-99.059483, 19.974599], - [-99.059576, 19.973996], - [-99.063945, 20.009104], - [-99.063841, 20.014194], - [-99.079673, 20.026212], - [-99.08545, 20.032488], - [-99.156477, 20.026123], - [-99.158603, 20.027188], - [-99.22547, 19.9517], - [-99.227761, 19.951068], - [-99.206529, 19.928532], - [-99.205603, 19.927501], - [-99.228349, 19.875416], - [-99.2283, 19.875047], - [-99.287386, 19.836964], - [-99.296944, 19.835222], - [-99.307056, 19.798714], - [-99.306601, 19.797694], - [-99.338512, 19.802047], - [-99.338654, 19.802028], - [-99.344517, 19.779908], - [-99.34456, 19.779455], - [-99.382343, 19.771255], - [-99.382445, 19.771204], - [-99.375134, 19.847636], - [-99.37325, 19.851542], - [-99.402621, 19.855247], - [-99.414992, 19.850527], - [-99.444072, 19.883589], - [-99.445208, 19.884321], - [-99.435888, 19.902469], - [-99.435933, 19.903129], - [-99.463098, 19.892565], - [-99.463881, 19.892596], - [-99.482579, 19.905195], - [-99.483981, 19.905177], - [-99.477832, 19.960268], - [-99.477765, 19.960566], - [-99.45073, 19.964284], - [-99.450244, 19.964247], - [-99.436842, 20.000727], - [-99.436853, 20.001299], - [-99.459605, 20.064846], - [-99.459759, 20.065457], - [-99.51766, 20.144862], - [-99.518128, 20.145667], - [-99.503737, 20.152426], - [-99.501831, 20.153287], - [-99.511857, 20.174281], - [-99.51224, 20.1751], - [-99.533318, 20.162439], - [-99.533494, 20.162058], - [-99.596851, 20.169707], - [-99.599561, 20.169673], - [-99.629379, 20.145911], - [-99.630602, 20.145694], - [-99.659508, 20.179711], - [-99.659727, 20.180821], - [-99.675284, 20.166296], - [-99.676949, 20.16247], - [-99.717672, 20.166818], - [-99.719372, 20.167138], - [-99.8354, 20.276505], - [-99.84189, 20.281881], - [-99.859462, 20.264864], - [-99.859541, 20.264628], - [-99.828124, 20.542539], - [-99.828071, 20.543008], - [-99.739061, 20.560403], - [-99.738683, 20.560521], - [-99.712168, 20.581162], - [-99.711952, 20.581267], - [-99.696619, 20.574398], - [-99.696413, 20.574445], - [-99.658014, 20.601755], - [-99.65787, 20.601799], - [-99.619982, 20.591349], - [-99.619511, 20.591407], - [-99.565653, 20.640192], - [-99.565344, 20.640394], - [-99.503033, 20.659004], - [-99.501923, 20.658962], - [-99.505476, 20.68457], - [-99.50554, 20.684701], - [-99.54848, 20.737111], - [-99.548471, 20.737198], - [-99.503986, 20.765684], - [-99.503817, 20.765787], - [-99.488791, 20.832801], - [-99.488732, 20.832933], - [-99.446532, 20.852705], - [-99.446064, 20.853031], - [-99.435332, 20.899209], - [-99.435227, 20.899397], - [-99.412992, 20.904998], - [-99.412557, 20.905429], - [-99.415671, 20.924705], - [-99.415586, 20.924901], - [-99.391035, 20.951644], - [-99.390626, 20.952274], - [-99.389977, 21.003385], - [-99.389955, 21.004138], - [-99.363339, 21.04143], - [-99.363246, 21.041729], - [-99.376981, 21.056226], - [-99.377079, 21.056615], - [-99.367097, 21.068725], - [-99.367437, 21.06948], - [-99.387447, 21.067674], - [-99.387673, 21.067827], - [-99.397509, 21.101801], - [-99.397367, 21.102003], - [-99.346595, 21.100766], - [-99.34636, 21.100877], - [-99.341981, 21.12346], - [-99.341828, 21.12366], - [-99.309797, 21.147101], - [-99.309206, 21.1473], - [-99.248149, 21.10135], - [-99.247681, 21.101266], - [-99.150939, 21.147458], - [-99.150522, 21.147751], - [-99.090938, 21.152985], - [-99.090631, 21.153096], - [-99.076887, 21.173303], - [-99.076479, 21.173464], - [-99.062574, 21.174437], - [-99.062412, 21.174309], - [-99.072708, 21.158133], - [-99.072707, 21.157966], - [-99.061716, 21.154149], - [-99.061332, 21.154205], - [-99.047935, 21.177928], - [-99.04308, 21.178677], - [-99.051943, 21.218449], - [-99.05237, 21.219516], - [-99.072964, 21.229485], - [-99.073532, 21.230425], - [-99.055428, 21.250484], - [-99.051177, 21.25343], - [-99.054645, 21.282599], - [-99.055138, 21.282538], - [-98.945291, 21.311174], - [-98.944961, 21.311337], - [-98.92301, 21.247099], - [-98.922873, 21.246731], - [-98.900008, 21.238838], - [-98.899891, 21.238561], - [-98.915269, 21.226317], - [-98.915081, 21.225194], - [-98.882779, 21.182519], - [-98.882659, 21.179611], - [-98.858631, 21.189265], - [-98.8574, 21.189264], - [-98.825237, 21.16163], - [-98.824948, 21.16135], - [-98.794808, 21.160154], - [-98.793953, 21.160184], - [-98.789945, 21.177853], - [-98.789878, 21.178501], - [-98.808605, 21.192444], - [-98.808143, 21.193245], - [-98.773158, 21.172014], - [-98.772921, 21.171969], - [-98.741618, 21.19276], - [-98.741314, 21.192792], - [-98.728104, 21.179741], - [-98.727661, 21.179549], - [-98.702294, 21.185153], - [-98.702121, 21.185118], - [-98.696709, 21.161462], - [-98.696641, 21.16146], - [-98.683047, 21.200262], - [-98.68266, 21.200638], - [-98.650696, 21.180936], - [-98.650522, 21.180933], - [-98.609184, 21.201053], - [-98.608742, 21.201408], - [-98.595299, 21.282949], - [-98.595241, 21.28323], - [-98.604353, 21.301593], - [-98.604673, 21.301842], - [-98.670616, 21.324755], - [-98.670727, 21.32472], - [-98.681174, 21.346046], - [-98.681083, 21.346178], - [-98.653335, 21.346908], - [-98.65275, 21.346844], - [-98.638711, 21.367686], - [-98.638553, 21.367717], - [-98.597075, 21.359041], - [-98.596935, 21.359074], - [-98.549923, 21.384488], - [-98.549566, 21.384598], - [-98.511889, 21.362491], - [-98.511426, 21.362513], - [-98.505361, 21.388078], - [-98.505184, 21.38866], - [-98.483211, 21.397325] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "30", - "name": "Veracruz de Ignacio de la Llave", - "id": 26, - "ISOCODE": "MX-VER" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-96.09227, 19.173762], - [-96.09227, 19.173762] - ] - ], - [ - [ - [-97.228885, 21.469622], - [-97.228885, 21.469622] - ] - ], - [ - [ - [-98.208828, 22.464762], - [-98.193553, 22.468721], - [-98.192562, 22.467055], - [-98.188988, 22.425339], - [-98.187485, 22.423869], - [-98.115905, 22.39677], - [-98.113536, 22.395303], - [-98.107272, 22.368333], - [-98.106213, 22.366712], - [-98.088238, 22.371229], - [-98.086015, 22.370154], - [-98.075711, 22.349251], - [-98.074263, 22.347781], - [-97.991286, 22.351406], - [-97.99002, 22.350864], - [-97.970458, 22.328453], - [-97.97051, 22.32805], - [-97.983527, 22.306083], - [-97.98398, 22.304671], - [-97.997154, 22.314516], - [-97.998949, 22.314327], - [-97.999481, 22.299322], - [-98.000324, 22.297432], - [-97.958029, 22.294106], - [-97.956708, 22.293892], - [-97.895158, 22.222706], - [-97.894962, 22.222378], - [-97.845788, 22.207039], - [-97.844888, 22.206966], - [-97.826877, 22.242438], - [-97.824815, 22.244145], - [-97.774908, 22.263866], - [-97.774348, 22.263916], - [-97.793374, 22.252468], - [-97.793377, 22.252448], - [-97.786311, 22.170989], - [-97.785252, 22.166325], - [-97.702486, 21.96385], - [-97.698066, 21.956484], - [-97.570331, 21.777715], - [-97.564334, 21.770794], - [-97.329189, 21.56869], - [-97.327904, 21.567165], - [-97.35004, 21.458278], - [-97.350587, 21.456606], - [-97.414311, 21.325834], - [-97.414438, 21.325391], - [-97.420745, 21.234062], - [-97.420242, 21.230897], - [-97.326313, 21.005817], - [-97.326281, 21.005664], - [-97.205452, 20.776605], - [-97.205173, 20.776132], - [-97.177536, 20.662289], - [-97.177468, 20.662088], - [-96.710556, 20.165473], - [-96.710189, 20.165221], - [-96.574436, 20.005193], - [-96.57433, 20.005208], - [-96.551856, 19.954764], - [-96.551711, 19.954508], - [-96.449717, 19.849476], - [-96.449496, 19.849204], - [-96.401173, 19.725451], - [-96.401071, 19.725334], - [-96.374025, 19.5611], - [-96.374026, 19.560898], - [-96.313008, 19.479685], - [-96.312836, 19.479175], - [-96.321714, 19.415016], - [-96.321736, 19.414344], - [-96.302522, 19.334254], - [-96.302265, 19.333638], - [-96.258068, 19.286833], - [-96.257029, 19.285814], - [-96.181994, 19.250479], - [-96.181774, 19.25044], - [-96.169585, 19.222218], - [-96.169311, 19.221919], - [-96.124294, 19.214507], - [-96.123503, 19.213873], - [-96.120091, 19.203754], - [-96.12033, 19.203595], - [-96.138324, 19.211213], - [-96.140276, 19.210058], - [-96.093017, 19.152145], - [-96.092713, 19.15153], - [-96.10528, 19.126563], - [-96.105342, 19.125917], - [-96.087021, 19.081485], - [-96.082602, 19.077673], - [-96.043205, 19.058686], - [-96.039364, 19.057609], - [-95.973894, 19.057926], - [-95.972792, 19.056645], - [-95.960341, 18.964598], - [-95.959561, 18.961107], - [-95.927828, 18.886291], - [-95.926909, 18.885218], - [-95.862316, 18.832533], - [-95.862269, 18.832504], - [-95.750546, 18.795115], - [-95.75042, 18.795115], - [-95.646893, 18.736187], - [-95.646092, 18.735878], - [-95.49339, 18.712933], - [-95.491888, 18.712505], - [-95.189156, 18.709685], - [-95.18898, 18.709738], - [-95.130836, 18.674264], - [-95.130736, 18.674295], - [-95.121876, 18.652685], - [-95.121636, 18.652492], - [-95.080176, 18.641688], - [-95.079478, 18.641695], - [-95.035049, 18.572947], - [-95.033813, 18.572342], - [-94.988142, 18.554535], - [-94.987955, 18.554448], - [-94.817441, 18.538684], - [-94.816574, 18.538576], - [-94.736953, 18.394622], - [-94.736529, 18.393889], - [-94.623235, 18.287312], - [-94.623102, 18.287129], - [-94.607616, 18.204944], - [-94.606999, 18.204039], - [-94.539972, 18.161375], - [-94.539795, 18.161206], - [-94.476326, 18.150643], - [-94.475518, 18.150576], - [-94.373347, 18.161418], - [-94.372976, 18.161415], - [-94.131245, 18.212742], - [-94.130025, 18.212851], - [-94.127665, 18.169437], - [-94.126919, 18.16825], - [-94.095404, 18.162525], - [-94.09468, 18.16067], - [-94.100737, 18.12732], - [-94.100444, 18.125916], - [-94.081115, 18.096876], - [-94.081108, 18.095773], - [-94.097202, 18.079225], - [-94.097159, 18.078628], - [-94.074399, 18.058948], - [-94.074358, 18.058593], - [-94.083772, 18.006903], - [-94.083749, 18.006464], - [-94.06709, 18.009852], - [-94.066524, 18.009396], - [-94.061501, 17.988447], - [-94.0614, 17.988124], - [-94.091796, 17.962394], - [-94.09199, 17.961932], - [-94.083564, 17.870688], - [-94.083431, 17.869868], - [-94.033437, 17.872682], - [-94.033158, 17.872557], - [-94.026275, 17.840461], - [-94.025947, 17.840381], - [-93.967955, 17.845287], - [-93.967786, 17.845252], - [-93.940263, 17.753371], - [-93.940107, 17.75317], - [-93.877274, 17.756573], - [-93.877049, 17.756564], - [-93.870098, 17.713669], - [-93.869997, 17.713536], - [-93.826827, 17.719205], - [-93.826586, 17.719192], - [-93.805307, 17.689556], - [-93.805155, 17.689356], - [-93.738701, 17.679412], - [-93.738511, 17.67937], - [-93.746555, 17.660576], - [-93.746583, 17.660115], - [-93.732999, 17.625917], - [-93.732883, 17.62576], - [-93.715112, 17.620826], - [-93.714728, 17.620853], - [-93.714159, 17.631565], - [-93.713184, 17.63067], - [-93.656679, 17.555322], - [-93.656542, 17.555238], - [-93.615752, 17.555301], - [-93.615247, 17.555112], - [-93.637242, 17.510028], - [-93.637341, 17.509814], - [-93.624053, 17.493745], - [-93.624105, 17.493457], - [-93.650316, 17.459048], - [-93.650414, 17.458855], - [-93.637286, 17.455726], - [-93.636597, 17.455277], - [-93.63807, 17.436779], - [-93.638206, 17.436086], - [-93.672879, 17.419912], - [-93.672996, 17.419918], - [-93.694881, 17.388033], - [-93.69492, 17.387804], - [-93.635182, 17.337876], - [-93.634959, 17.337702], - [-93.641428, 17.318068], - [-93.641503, 17.317953], - [-93.618555, 17.321726], - [-93.60794, 17.31493], - [-93.661876, 17.286652], - [-93.664411, 17.286193], - [-93.662787, 17.257893], - [-93.662694, 17.256277], - [-93.801105, 17.240472], - [-93.801449, 17.240379], - [-93.826993, 17.178527], - [-93.827138, 17.172503], - [-93.870123, 17.146647], - [-93.867427, 17.136965], - [-94.921348, 17.193715], - [-94.922815, 17.193788], - [-94.895545, 17.255894], - [-94.895429, 17.256378], - [-94.914928, 17.291666], - [-94.914766, 17.292577], - [-94.890445, 17.310172], - [-94.890782, 17.311056], - [-94.926604, 17.32503], - [-94.927158, 17.325141], - [-94.949968, 17.315325], - [-94.95098, 17.315649], - [-94.96632, 17.334276], - [-94.966509, 17.334368], - [-95.075013, 17.372315], - [-95.076567, 17.372934], - [-95.252922, 17.607513], - [-95.253048, 17.607806], - [-95.278544, 17.612785], - [-95.278845, 17.613243], - [-95.24874, 17.625294], - [-95.248411, 17.625582], - [-95.258814, 17.628578], - [-95.259001, 17.629011], - [-95.248959, 17.645541], - [-95.248226, 17.645978], - [-95.242513, 17.634984], - [-95.241933, 17.634958], - [-95.188376, 17.650148], - [-95.188132, 17.650701], - [-95.182211, 17.69051], - [-95.182435, 17.691063], - [-95.237953, 17.738332], - [-95.238913, 17.739264], - [-95.258138, 17.728569], - [-95.258673, 17.728543], - [-95.268727, 17.741082], - [-95.269026, 17.740934], - [-95.264995, 17.71798], - [-95.265554, 17.717536], - [-95.297333, 17.722367], - [-95.297809, 17.722141], - [-95.333599, 17.67556], - [-95.333808, 17.675183], - [-95.343228, 17.683448], - [-95.343759, 17.68366], - [-95.406426, 17.643756], - [-95.407162, 17.643332], - [-95.425079, 17.647647], - [-95.42549, 17.647472], - [-95.454143, 17.611414], - [-95.454459, 17.611103], - [-95.472579, 17.609548], - [-95.473141, 17.609113], - [-95.46269, 17.596892], - [-95.463016, 17.596394], - [-95.478208, 17.587834], - [-95.479344, 17.587829], - [-95.48366, 17.601821], - [-95.48418, 17.601899], - [-95.530874, 17.570794], - [-95.531106, 17.570611], - [-95.530859, 17.556613], - [-95.531463, 17.556163], - [-95.555157, 17.558652], - [-95.555547, 17.558642], - [-95.584871, 17.535197], - [-95.585334, 17.535027], - [-95.644492, 17.546544], - [-95.645045, 17.546714], - [-95.653266, 17.560494], - [-95.653592, 17.560488], - [-95.648138, 17.540376], - [-95.648471, 17.539889], - [-95.684839, 17.537624], - [-95.685154, 17.537532], - [-95.701772, 17.51945], - [-95.702102, 17.518492], - [-95.723825, 17.535804], - [-95.725149, 17.536226], - [-95.726945, 17.577712], - [-95.726897, 17.578029], - [-95.777703, 17.601543], - [-95.781751, 17.603028], - [-95.791636, 17.586533], - [-95.791853, 17.586363], - [-95.807265, 17.591877], - [-95.80755, 17.591842], - [-95.804417, 17.606676], - [-95.803486, 17.6071], - [-95.774171, 17.605575], - [-95.773658, 17.60585], - [-95.781051, 17.638199], - [-95.781114, 17.638877], - [-95.802349, 17.629015], - [-95.803306, 17.629366], - [-95.870786, 17.701949], - [-95.871018, 17.702169], - [-95.895191, 17.7044], - [-95.895293, 17.704494], - [-95.872411, 17.726938], - [-95.87281, 17.727409], - [-95.891641, 17.720698], - [-95.892108, 17.720607], - [-95.902826, 17.733411], - [-95.902864, 17.734104], - [-95.893261, 17.764719], - [-95.892924, 17.765141], - [-95.867165, 17.773229], - [-95.86639, 17.774353], - [-95.849717, 17.824487], - [-95.849336, 17.825848], - [-95.858896, 17.844524], - [-95.858816, 17.844783], - [-95.799975, 17.949907], - [-95.799925, 17.950013], - [-95.831638, 18.120805], - [-95.833167, 18.129027], - [-95.906671, 18.135573], - [-95.907161, 18.135644], - [-95.91458, 18.152156], - [-95.914647, 18.1522], - [-95.933184, 18.141661], - [-95.933342, 18.141668], - [-95.952534, 18.159828], - [-95.953459, 18.159865], - [-96.050854, 18.126992], - [-96.051389, 18.126738], - [-96.097416, 18.16676], - [-96.099184, 18.166843], - [-96.152304, 18.131619], - [-96.154226, 18.131805], - [-96.187664, 18.149979], - [-96.188282, 18.151303], - [-96.169739, 18.185697], - [-96.170691, 18.186384], - [-96.216499, 18.161605], - [-96.217478, 18.161967], - [-96.288007, 18.259514], - [-96.288237, 18.259761], - [-96.269442, 18.273874], - [-96.269164, 18.273984], - [-96.270606, 18.297444], - [-96.270764, 18.297823], - [-96.309603, 18.322143], - [-96.309948, 18.322353], - [-96.317346, 18.364381], - [-96.317328, 18.364537], - [-96.345161, 18.379545], - [-96.345343, 18.379695], - [-96.35248, 18.410095], - [-96.352588, 18.410247], - [-96.402874, 18.439853], - [-96.402985, 18.439919], - [-96.420754, 18.510344], - [-96.420762, 18.510458], - [-96.460819, 18.572812], - [-96.461071, 18.573044], - [-96.499749, 18.589502], - [-96.499931, 18.58953], - [-96.560578, 18.587628], - [-96.560947, 18.587699], - [-96.682959, 18.66949], - [-96.683022, 18.669688], - [-96.688077, 18.639578], - [-96.688697, 18.638793], - [-96.672313, 18.61295], - [-96.672464, 18.607574], - [-96.701436, 18.581434], - [-96.702149, 18.581227], - [-96.695499, 18.560331], - [-96.699631, 18.553343], - [-96.714713, 18.572185], - [-96.715605, 18.573241], - [-96.726554, 18.52996], - [-96.726899, 18.529829], - [-96.681992, 18.503346], - [-96.681544, 18.503273], - [-96.709665, 18.430139], - [-96.709707, 18.429954], - [-96.682738, 18.414111], - [-96.681037, 18.412204], - [-96.675419, 18.38491], - [-96.675047, 18.38423], - [-96.695904, 18.36475], - [-96.69625, 18.364754], - [-96.697167, 18.381655], - [-96.697724, 18.382074], - [-96.740094, 18.381983], - [-96.741038, 18.382613], - [-96.724683, 18.407388], - [-96.724919, 18.40818], - [-96.758318, 18.408083], - [-96.759085, 18.408264], - [-96.762872, 18.426331], - [-96.763186, 18.427051], - [-96.780312, 18.428852], - [-96.781012, 18.42907], - [-96.796685, 18.51143], - [-96.797012, 18.511935], - [-96.812919, 18.517657], - [-96.813446, 18.517618], - [-96.841972, 18.493616], - [-96.842358, 18.493389], - [-96.898969, 18.548319], - [-96.899251, 18.548648], - [-96.923324, 18.534709], - [-96.925945, 18.534926], - [-96.954776, 18.553683], - [-96.955448, 18.553461], - [-97.02572, 18.517047], - [-97.025765, 18.517072], - [-97.07703, 18.463179], - [-97.079968, 18.454508], - [-97.083436, 18.483644], - [-97.083471, 18.483943], - [-97.142799, 18.568545], - [-97.144563, 18.570928], - [-97.141538, 18.596111], - [-97.141443, 18.596418], - [-97.235263, 18.643127], - [-97.235429, 18.643569], - [-97.271795, 18.627786], - [-97.271852, 18.627779], - [-97.302877, 18.673991], - [-97.303203, 18.674286], - [-97.322708, 18.664223], - [-97.323178, 18.664309], - [-97.339763, 18.682497], - [-97.343975, 18.685759], - [-97.350006, 18.717009], - [-97.350025, 18.717143], - [-97.330099, 18.765552], - [-97.330059, 18.765974], - [-97.352519, 18.77489], - [-97.35285, 18.774361], - [-97.353559, 18.790064], - [-97.353031, 18.791285], - [-97.326566, 18.810103], - [-97.326346, 18.810246], - [-97.297491, 18.867006], - [-97.297312, 18.86731], - [-97.241895, 18.90203], - [-97.241816, 18.902143], - [-97.258121, 18.977376], - [-97.258259, 18.977714], - [-97.281858, 18.998134], - [-97.285126, 18.999431], - [-97.267188, 19.029808], - [-97.266626, 19.030313], - [-97.261579, 19.095934], - [-97.261399, 19.096627], - [-97.197482, 19.146292], - [-97.197198, 19.146559], - [-97.209605, 19.159498], - [-97.209633, 19.159851], - [-97.194801, 19.171329], - [-97.194589, 19.171813], - [-97.067546, 19.159537], - [-97.066693, 19.159455], - [-97.055893, 19.134233], - [-97.055633, 19.134002], - [-97.027114, 19.133228], - [-97.027052, 19.133236], - [-97.056136, 19.19748], - [-97.056155, 19.197667], - [-97.001758, 19.236212], - [-97.001235, 19.236546], - [-97.004508, 19.256296], - [-97.00441, 19.256901], - [-96.98572, 19.2787], - [-96.98556, 19.279397], - [-97.029245, 19.296544], - [-97.030991, 19.297327], - [-97.045351, 19.321165], - [-97.045511, 19.321283], - [-97.101748, 19.303784], - [-97.101999, 19.303615], - [-97.169968, 19.328926], - [-97.170206, 19.329022], - [-97.198998, 19.309122], - [-97.200273, 19.309265], - [-97.215567, 19.323148], - [-97.215605, 19.32332], - [-97.210214, 19.358815], - [-97.210206, 19.359442], - [-97.284868, 19.3916], - [-97.284968, 19.391637], - [-97.337663, 19.392471], - [-97.33775, 19.392531], - [-97.360356, 19.376015], - [-97.360453, 19.376029], - [-97.396345, 19.41839], - [-97.397357, 19.419064], - [-97.357296, 19.432376], - [-97.357276, 19.432377], - [-97.348251, 19.484485], - [-97.348259, 19.484627], - [-97.403782, 19.495697], - [-97.404556, 19.495866], - [-97.434121, 19.588356], - [-97.434279, 19.588848], - [-97.418833, 19.625858], - [-97.418467, 19.627217], - [-97.403353, 19.616508], - [-97.402747, 19.615343], - [-97.341163, 19.67566], - [-97.341162, 19.675752], - [-97.304279, 19.671278], - [-97.30393, 19.671156], - [-97.332836, 19.716163], - [-97.33314, 19.71678], - [-97.313849, 19.734986], - [-97.313784, 19.735135], - [-97.304616, 19.870483], - [-97.304559, 19.870695], - [-97.2563, 19.931887], - [-97.255809, 19.93246], - [-97.268785, 19.946298], - [-97.269249, 19.947027], - [-97.260877, 19.976831], - [-97.260669, 19.977254], - [-97.207164, 20.014454], - [-97.206927, 20.014668], - [-97.206388, 20.055579], - [-97.206152, 20.056355], - [-97.122896, 20.136199], - [-97.122409, 20.136721], - [-97.150541, 20.137577], - [-97.151364, 20.13754], - [-97.150116, 20.160375], - [-97.149991, 20.160614], - [-97.164266, 20.152311], - [-97.164413, 20.151832], - [-97.243935, 20.182244], - [-97.244041, 20.182279], - [-97.282337, 20.181088], - [-97.283191, 20.181112], - [-97.365215, 20.215938], - [-97.365512, 20.215751], - [-97.377192, 20.248875], - [-97.378239, 20.249256], - [-97.407283, 20.232185], - [-97.408169, 20.232092], - [-97.444973, 20.246014], - [-97.445276, 20.246161], - [-97.464006, 20.224725], - [-97.464294, 20.224227], - [-97.464599, 20.180979], - [-97.465059, 20.180218], - [-97.505112, 20.154377], - [-97.505384, 20.153938], - [-97.49471, 20.137575], - [-97.494838, 20.137348], - [-97.585621, 20.079451], - [-97.586028, 20.07933], - [-97.595624, 20.096579], - [-97.595712, 20.096892], - [-97.578658, 20.102468], - [-97.578651, 20.10252], - [-97.602547, 20.118948], - [-97.602735, 20.119314], - [-97.604547, 20.166207], - [-97.604489, 20.166874], - [-97.63232, 20.183223], - [-97.632803, 20.183227], - [-97.652023, 20.164065], - [-97.652441, 20.163566], - [-97.686567, 20.165843], - [-97.686831, 20.165809], - [-97.698529, 20.182128], - [-97.698718, 20.182378], - [-97.738755, 20.189224], - [-97.739257, 20.189249], - [-97.73511, 20.242377], - [-97.735112, 20.242392], - [-97.757047, 20.278308], - [-97.757298, 20.279079], - [-97.681844, 20.302162], - [-97.681398, 20.302432], - [-97.689992, 20.319372], - [-97.689858, 20.320087], - [-97.673297, 20.33642], - [-97.673125, 20.336607], - [-97.678906, 20.349819], - [-97.679345, 20.349918], - [-97.700009, 20.320751], - [-97.700689, 20.319919], - [-97.742603, 20.351206], - [-97.742877, 20.351197], - [-97.744484, 20.379899], - [-97.74445, 20.38011], - [-97.765407, 20.381064], - [-97.765642, 20.381228], - [-97.734661, 20.45005], - [-97.734599, 20.451306], - [-97.709951, 20.455259], - [-97.709187, 20.455109], - [-97.672142, 20.408625], - [-97.672075, 20.408529], - [-97.645883, 20.408367], - [-97.645411, 20.408324], - [-97.635852, 20.451753], - [-97.635365, 20.452186], - [-97.596422, 20.464084], - [-97.595884, 20.463992], - [-97.57781, 20.490002], - [-97.576046, 20.4909], - [-97.54119, 20.489479], - [-97.541043, 20.489712], - [-97.588648, 20.560633], - [-97.587953, 20.56107], - [-97.636526, 20.55426], - [-97.636665, 20.553712], - [-97.64789, 20.566274], - [-97.648196, 20.566312], - [-97.658471, 20.545078], - [-97.658965, 20.545116], - [-97.684636, 20.554239], - [-97.684772, 20.554261], - [-97.684918, 20.57325], - [-97.685172, 20.573437], - [-97.701869, 20.571829], - [-97.701903, 20.571866], - [-97.693362, 20.602244], - [-97.693419, 20.602681], - [-97.71507, 20.608844], - [-97.715394, 20.609085], - [-97.704433, 20.628932], - [-97.704468, 20.629224], - [-97.747415, 20.64384], - [-97.749511, 20.64332], - [-97.737298, 20.67932], - [-97.737067, 20.679655], - [-97.757139, 20.692859], - [-97.757537, 20.693468], - [-97.752189, 20.72972], - [-97.752968, 20.73237], - [-97.72403, 20.749131], - [-97.72282, 20.749989], - [-97.726051, 20.791192], - [-97.725983, 20.791654], - [-97.694707, 20.796896], - [-97.695179, 20.800039], - [-97.737423, 20.801477], - [-97.738915, 20.801535], - [-97.772607, 20.826807], - [-97.773002, 20.827201], - [-97.828235, 20.808517], - [-97.830254, 20.807957], - [-97.849719, 20.816268], - [-97.850118, 20.816924], - [-97.840374, 20.838882], - [-97.841087, 20.839312], - [-97.877973, 20.833956], - [-97.87912, 20.834276], - [-97.922065, 20.717274], - [-97.922447, 20.716519], - [-97.899481, 20.704263], - [-97.897426, 20.703214], - [-97.917807, 20.671511], - [-97.917835, 20.671245], - [-97.895112, 20.622824], - [-97.895146, 20.622698], - [-97.909616, 20.586479], - [-97.909686, 20.586378], - [-97.980179, 20.541114], - [-97.980816, 20.540709], - [-97.97263, 20.523202], - [-97.979334, 20.514933], - [-98.017233, 20.525959], - [-98.017272, 20.525992], - [-98.020972, 20.626488], - [-98.02101, 20.62678], - [-98.074287, 20.67666], - [-98.074903, 20.676548], - [-98.087162, 20.623026], - [-98.087181, 20.622877], - [-98.111538, 20.616042], - [-98.111786, 20.615937], - [-98.158007, 20.542826], - [-98.158043, 20.542561], - [-98.228056, 20.521184], - [-98.228448, 20.521011], - [-98.312016, 20.449847], - [-98.312139, 20.449768], - [-98.320876, 20.418132], - [-98.321014, 20.418014], - [-98.38608, 20.402603], - [-98.386149, 20.402713], - [-98.461804, 20.331234], - [-98.462081, 20.331216], - [-98.517252, 20.336848], - [-98.517401, 20.336852], - [-98.548407, 20.359599], - [-98.548617, 20.359754], - [-98.549622, 20.435156], - [-98.549689, 20.435359], - [-98.597167, 20.495696], - [-98.597286, 20.495771], - [-98.534973, 20.530394], - [-98.534665, 20.530658], - [-98.514076, 20.592195], - [-98.512248, 20.594224], - [-98.48049, 20.588716], - [-98.48018, 20.588999], - [-98.494939, 20.643911], - [-98.494847, 20.644341], - [-98.429518, 20.716068], - [-98.429281, 20.716275], - [-98.42362, 20.747479], - [-98.423647, 20.747722], - [-98.52437, 20.68198], - [-98.525051, 20.681839], - [-98.532464, 20.663417], - [-98.533397, 20.662717], - [-98.550038, 20.68885], - [-98.55018, 20.689393], - [-98.50691, 20.732932], - [-98.506438, 20.733119], - [-98.517217, 20.742384], - [-98.516654, 20.74289], - [-98.50418, 20.732366], - [-98.503611, 20.732227], - [-98.451257, 20.750302], - [-98.449729, 20.751346], - [-98.463232, 20.784655], - [-98.463231, 20.785177], - [-98.430799, 20.847357], - [-98.430639, 20.847672], - [-98.345557, 20.864361], - [-98.345146, 20.864853], - [-98.352916, 20.837175], - [-98.35287, 20.836007], - [-98.315157, 20.810314], - [-98.314838, 20.809815], - [-98.343536, 20.797938], - [-98.344665, 20.797485], - [-98.328518, 20.78445], - [-98.328522, 20.784097], - [-98.308236, 20.801568], - [-98.30783, 20.801916], - [-98.299854, 20.778394], - [-98.29881, 20.77784], - [-98.233936, 20.797312], - [-98.233653, 20.797556], - [-98.224854, 20.818062], - [-98.224705, 20.818235], - [-98.252874, 20.821705], - [-98.253765, 20.821492], - [-98.265416, 20.866355], - [-98.265503, 20.866536], - [-98.252665, 20.89394], - [-98.250966, 20.897305], - [-98.22494, 20.906214], - [-98.224863, 20.906357], - [-98.239308, 20.922812], - [-98.239355, 20.923026], - [-98.228574, 20.957586], - [-98.228574, 20.957609], - [-98.209717, 20.966909], - [-98.209539, 20.967089], - [-98.214971, 20.989491], - [-98.215007, 20.989627], - [-98.188732, 21.030841], - [-98.188271, 21.031308], - [-98.161562, 21.018827], - [-98.161158, 21.019131], - [-98.14741, 21.076583], - [-98.147358, 21.07845], - [-98.174443, 21.105986], - [-98.174862, 21.106224], - [-98.201136, 21.105865], - [-98.201694, 21.106137], - [-98.195039, 21.119557], - [-98.195152, 21.120363], - [-98.216108, 21.15108], - [-98.216825, 21.151472], - [-98.246921, 21.131024], - [-98.24911, 21.129403], - [-98.281754, 21.136477], - [-98.282174, 21.136417], - [-98.295709, 21.15212], - [-98.295922, 21.153613], - [-98.278102, 21.192022], - [-98.279131, 21.192753], - [-98.297498, 21.177634], - [-98.297903, 21.177402], - [-98.315539, 21.186712], - [-98.315856, 21.18688], - [-98.350549, 21.157389], - [-98.350754, 21.157143], - [-98.415982, 21.15496], - [-98.416436, 21.154982], - [-98.446635, 21.179735], - [-98.446767, 21.179813], - [-98.456919, 21.21462], - [-98.456948, 21.214833], - [-98.479038, 21.223388], - [-98.479657, 21.223888], - [-98.468775, 21.248596], - [-98.46836, 21.249651], - [-98.516446, 21.244278], - [-98.516543, 21.244269], - [-98.54284, 21.263939], - [-98.543982, 21.263901], - [-98.496111, 21.339316], - [-98.495618, 21.34042], - [-98.465267, 21.34732], - [-98.464835, 21.347763], - [-98.468677, 21.386532], - [-98.468697, 21.387033], - [-98.486146, 21.39852], - [-98.486417, 21.398518], - [-98.500686, 21.385347], - [-98.501208, 21.385457], - [-98.518937, 21.401097], - [-98.519188, 21.401304], - [-98.517052, 21.459275], - [-98.516913, 21.460702], - [-98.533609, 21.498399], - [-98.532256, 21.50114], - [-98.60207, 21.540264], - [-98.602247, 21.540431], - [-98.625576, 21.585273], - [-98.625747, 21.585456], - [-98.62099, 21.627377], - [-98.621127, 21.627822], - [-98.6437, 21.631269], - [-98.643631, 21.631682], - [-98.609736, 21.666876], - [-98.60947, 21.667229], - [-98.622903, 21.68142], - [-98.621997, 21.682383], - [-98.579572, 21.671836], - [-98.579201, 21.671948], - [-98.558714, 21.686679], - [-98.558255, 21.687672], - [-98.567884, 21.71681], - [-98.567435, 21.717368], - [-98.544588, 21.723698], - [-98.543841, 21.723394], - [-98.531259, 21.697143], - [-98.530742, 21.697275], - [-98.520445, 21.709621], - [-98.520532, 21.710231], - [-98.53772, 21.720271], - [-98.537411, 21.720624], - [-98.517636, 21.716376], - [-98.516674, 21.716851], - [-98.499134, 21.727002], - [-98.498946, 21.727243], - [-98.504787, 21.737515], - [-98.504219, 21.738048], - [-98.477455, 21.744879], - [-98.476924, 21.745219], - [-98.467868, 21.770458], - [-98.467597, 21.770698], - [-98.454723, 21.766012], - [-98.4547, 21.766427], - [-98.474895, 21.813934], - [-98.475038, 21.814192], - [-98.492946, 21.81362], - [-98.493119, 21.81394], - [-98.486053, 21.835977], - [-98.48632, 21.836269], - [-98.513117, 21.823554], - [-98.514481, 21.823893], - [-98.528107, 21.862268], - [-98.528858, 21.863175], - [-98.547772, 21.859276], - [-98.548034, 21.860105], - [-98.538492, 21.90534], - [-98.538203, 21.905808], - [-98.51091, 21.907189], - [-98.510798, 21.908697], - [-98.545221, 21.917154], - [-98.545874, 21.917348], - [-98.544136, 21.931582], - [-98.543847, 21.932117], - [-98.502571, 21.923658], - [-98.501243, 21.923084], - [-98.501709, 21.934046], - [-98.503146, 21.936626], - [-98.514521, 21.950991], - [-98.515597, 21.951268], - [-98.563631, 21.936929], - [-98.56602, 21.937644], - [-98.579131, 21.964752], - [-98.578839, 21.966092], - [-98.552042, 21.960869], - [-98.550665, 21.96075], - [-98.523583, 21.979335], - [-98.522, 21.979431], - [-98.470349, 21.963774], - [-98.468806, 21.964601], - [-98.479891, 21.988983], - [-98.481476, 21.990514], - [-98.461121, 21.995743], - [-98.459544, 21.995169], - [-98.434837, 22.0514], - [-98.434649, 22.051669], - [-98.439684, 22.074877], - [-98.439452, 22.075647], - [-98.419081, 22.097665], - [-98.418825, 22.098019], - [-98.438322, 22.111515], - [-98.438737, 22.111915], - [-98.43221, 22.127615], - [-98.432017, 22.128265], - [-98.337665, 22.187474], - [-98.336545, 22.187693], - [-98.330619, 22.200946], - [-98.330413, 22.201344], - [-98.352116, 22.220727], - [-98.352261, 22.222799], - [-98.326138, 22.242811], - [-98.325967, 22.243053], - [-98.372433, 22.236063], - [-98.374556, 22.236079], - [-98.367857, 22.254131], - [-98.368137, 22.255373], - [-98.402975, 22.256091], - [-98.405093, 22.256076], - [-98.396655, 22.275971], - [-98.396378, 22.276262], - [-98.429875, 22.274556], - [-98.430372, 22.274603], - [-98.446267, 22.30496], - [-98.446659, 22.305621], - [-98.473795, 22.29014], - [-98.475908, 22.28864], - [-98.535251, 22.332542], - [-98.535215, 22.337878], - [-98.578334, 22.348623], - [-98.579291, 22.348628], - [-98.579307, 22.376483], - [-98.579316, 22.377757], - [-98.67654, 22.372805], - [-98.681547, 22.371575], - [-98.670833, 22.405357], - [-98.670888, 22.405673], - [-98.638551, 22.414305], - [-98.638156, 22.414524], - [-98.575441, 22.394133], - [-98.574936, 22.393945], - [-98.526231, 22.407007], - [-98.525362, 22.406781], - [-98.506893, 22.428631], - [-98.506389, 22.429267], - [-98.468788, 22.428949], - [-98.466808, 22.428802], - [-98.463274, 22.41223], - [-98.460959, 22.412192], - [-98.440334, 22.433236], - [-98.43717, 22.433588], - [-98.41138, 22.401085], - [-98.409543, 22.399927], - [-98.386625, 22.423631], - [-98.384745, 22.422335], - [-98.389579, 22.390715], - [-98.387809, 22.389284], - [-98.357837, 22.406623], - [-98.355225, 22.407446], - [-98.354085, 22.389585], - [-98.352273, 22.388703], - [-98.318781, 22.39074], - [-98.317578, 22.390974], - [-98.318591, 22.467235], - [-98.316823, 22.468562], - [-98.289, 22.467628], - [-98.287369, 22.467028], - [-98.275543, 22.447674], - [-98.272937, 22.447291], - [-98.25004, 22.470915], - [-98.247931, 22.471657], - [-98.208828, 22.464762] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "19", - "name": "Nuevo León", - "id": 27, - "ISOCODE": "MX-NLE" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-100.016077, 27.632733], - [-99.998845, 27.615279], - [-99.856255, 27.755953], - [-99.843223, 27.769863], - [-99.81883, 27.776173], - [-99.818523, 27.776341], - [-99.79986, 27.73963], - [-99.796503, 27.735882], - [-99.770615, 27.731698], - [-99.769361, 27.730888], - [-99.729339, 27.680536], - [-99.728147, 27.679126], - [-99.925984, 27.549442], - [-99.926418, 27.549157], - [-99.920475, 27.502001], - [-99.919154, 27.491515], - [-99.770326, 27.440383], - [-99.760379, 27.436959], - [-99.748808, 27.289001], - [-99.74767, 27.277247], - [-99.684974, 27.117865], - [-99.678919, 27.102448], - [-99.658912, 27.088189], - [-99.650053, 27.065858], - [-99.731647, 26.925012], - [-99.734168, 26.920613], - [-99.770131, 26.928418], - [-99.766669, 26.889842], - [-99.744989, 26.912022], - [-99.744904, 26.912048], - [-99.712965, 26.895835], - [-99.712877, 26.895815], - [-99.693908, 26.909289], - [-99.693795, 26.909278], - [-99.687474, 26.894668], - [-99.687423, 26.894614], - [-99.63211, 26.891209], - [-99.632032, 26.891186], - [-99.627359, 26.870663], - [-99.627245, 26.870577], - [-99.58997, 26.861254], - [-99.589919, 26.861182], - [-99.580854, 26.829391], - [-99.580866, 26.829307], - [-99.62247, 26.770672], - [-99.622519, 26.770609], - [-99.618556, 26.726541], - [-99.618581, 26.726471], - [-99.657147, 26.695181], - [-99.657195, 26.695118], - [-99.659536, 26.671451], - [-99.659164, 26.670365], - [-99.553187, 26.664492], - [-99.538335, 26.664596], - [-99.415145, 26.605519], - [-99.396825, 26.596566], - [-99.427262, 26.370485], - [-99.430947, 26.351301], - [-99.408888, 26.315769], - [-99.401236, 26.304799], - [-99.364222, 26.329142], - [-99.36415, 26.32927], - [-99.27563, 26.263976], - [-99.260002, 26.25285], - [-99.209547, 26.257574], - [-99.197836, 26.258682], - [-99.167361, 26.07698], - [-99.167019, 26.075468], - [-99.14123, 26.053079], - [-99.141149, 26.053029], - [-99.110394, 26.078304], - [-99.110323, 26.078345], - [-99.076632, 26.071842], - [-99.076542, 26.071864], - [-99.023817, 26.103957], - [-99.023872, 26.104102], - [-98.903203, 25.971041], - [-98.900752, 25.968323], - [-98.823256, 26.047631], - [-98.823227, 26.047649], - [-98.591898, 26.018787], - [-98.585126, 26.017918], - [-98.581808, 25.495288], - [-98.581752, 25.489362], - [-98.431988, 25.489391], - [-98.421576, 25.489356], - [-98.422904, 25.453625], - [-98.423132, 25.447493], - [-98.934134, 25.072796], - [-98.93417, 25.072763], - [-99.018967, 25.069898], - [-99.019056, 25.069925], - [-99.028767, 25.110284], - [-99.028802, 25.110355], - [-99.052376, 25.127134], - [-99.052468, 25.127133], - [-99.097527, 25.06318], - [-99.097613, 25.063121], - [-99.160479, 25.055363], - [-99.160592, 25.055277], - [-99.156507, 25.027934], - [-99.156517, 25.027848], - [-99.18087, 25.011588], - [-99.18095, 25.011542], - [-99.159103, 24.916673], - [-99.158943, 24.915988], - [-99.204947, 24.864193], - [-99.207433, 24.861392], - [-99.182833, 24.778885], - [-99.181971, 24.776041], - [-99.203061, 24.775326], - [-99.212885, 24.771675], - [-99.273205, 24.795552], - [-99.294928, 24.804144], - [-99.364295, 24.7718], - [-99.364377, 24.771755], - [-99.389343, 24.739829], - [-99.389412, 24.739793], - [-99.477629, 24.712683], - [-99.477735, 24.712621], - [-99.500679, 24.679264], - [-99.500726, 24.679171], - [-99.499391, 24.641386], - [-99.499452, 24.641258], - [-99.544974, 24.626558], - [-99.545063, 24.626517], - [-99.546147, 24.613151], - [-99.546221, 24.613075], - [-99.609362, 24.622477], - [-99.609449, 24.62249], - [-99.722781, 24.56205], - [-99.732978, 24.553991], - [-99.723834, 24.501356], - [-99.719804, 24.48371], - [-99.658687, 24.500536], - [-99.636379, 24.50667], - [-99.611533, 24.452761], - [-99.589931, 24.396142], - [-99.589341, 24.350821], - [-99.59429, 24.330913], - [-99.643112, 24.225356], - [-99.647818, 24.218095], - [-99.655334, 24.136843], - [-99.657081, 24.117997], - [-99.570902, 24.039367], - [-99.541893, 24.033649], - [-99.540915, 24.003695], - [-99.540912, 23.997272], - [-99.514461, 23.98586], - [-99.48694, 23.960501], - [-99.466923, 23.896884], - [-99.456871, 23.866063], - [-99.485277, 23.875752], - [-99.493791, 23.878693], - [-99.576681, 23.775462], - [-99.602167, 23.762871], - [-99.746275, 23.782411], - [-99.769014, 23.784488], - [-99.841594, 23.777866], - [-99.86066, 23.774462], - [-99.951092, 23.58097], - [-99.961188, 23.55689], - [-99.923976, 23.391326], - [-99.921253, 23.379191], - [-100.047171, 23.396007], - [-100.080261, 23.395748], - [-100.134164, 23.34761], - [-100.14495, 23.339515], - [-100.087878, 23.310727], - [-100.078041, 23.305984], - [-100.101419, 23.232803], - [-100.101895, 23.23108], - [-100.210461, 23.248055], - [-100.228237, 23.250476], - [-100.2069, 23.305722], - [-100.206364, 23.307109], - [-100.276529, 23.309962], - [-100.278435, 23.310368], - [-100.281643, 23.304672], - [-100.306257, 23.260942], - [-100.331693, 23.259092], - [-100.374317, 23.265324], - [-100.363764, 23.189005], - [-100.323515, 23.195627], - [-100.326341, 23.185024], - [-100.331758, 23.162683], - [-100.457887, 23.18952], - [-100.47985, 23.194365], - [-100.460413, 23.347318], - [-100.457083, 23.36641], - [-100.514017, 23.415631], - [-100.517211, 23.421043], - [-100.495691, 23.513226], - [-100.494169, 23.528406], - [-100.464416, 23.512082], - [-100.459176, 23.511566], - [-100.469545, 23.566783], - [-100.491637, 23.568613], - [-100.486649, 23.604139], - [-100.477379, 23.633819], - [-100.447802, 23.674492], - [-100.44572, 23.677332], - [-100.447099, 23.696517], - [-100.4471, 23.696535], - [-100.465859, 23.68888], - [-100.466483, 23.688941], - [-100.494058, 23.737931], - [-100.497706, 23.73631], - [-100.497948, 23.764947], - [-100.497602, 23.798713], - [-100.528791, 23.816353], - [-100.526118, 23.835342], - [-100.52553, 23.839526], - [-100.5472, 23.841868], - [-100.550299, 23.842203], - [-100.543156, 23.873769], - [-100.539846, 23.888393], - [-100.55912, 23.919179], - [-100.562402, 23.919641], - [-100.524521, 24.069575], - [-100.523759, 24.071455], - [-100.536451, 24.111402], - [-100.538683, 24.118516], - [-100.51958, 24.118382], - [-100.516827, 24.139897], - [-100.589152, 24.16434], - [-100.6134, 24.173944], - [-100.604221, 24.175909], - [-100.593513, 24.1782], - [-100.585251, 24.223069], - [-100.585093, 24.223925], - [-100.615794, 24.225056], - [-100.633066, 24.22598], - [-100.600613, 24.372905], - [-100.603533, 24.4013], - [-100.71121, 24.491522], - [-100.742324, 24.460435], - [-100.796462, 24.550281], - [-100.799934, 24.556186], - [-100.798552, 24.72406], - [-100.796978, 24.750807], - [-100.827413, 24.824208], - [-100.826132, 24.835005], - [-100.748851, 24.900608], - [-100.727495, 24.918717], - [-100.80276, 24.985623], - [-100.821506, 24.996711], - [-100.804548, 25.153259], - [-100.80313, 25.165258], - [-100.70931, 25.236139], - [-100.708888, 25.236458], - [-100.597294, 25.254435], - [-100.595686, 25.254763], - [-100.342432, 25.189857], - [-100.332007, 25.186285], - [-100.32555, 25.222259], - [-100.280367, 25.209409], - [-100.261384, 25.207071], - [-100.229668, 25.217885], - [-100.229576, 25.217917], - [-100.24692, 25.229936], - [-100.247195, 25.230174], - [-100.234421, 25.235496], - [-100.26251, 25.254023], - [-100.243775, 25.269714], - [-100.254138, 25.306909], - [-100.312379, 25.335971], - [-100.313023, 25.336367], - [-100.468641, 25.337314], - [-100.470099, 25.33779], - [-100.451593, 25.410467], - [-100.451878, 25.410811], - [-100.521666, 25.434151], - [-100.522703, 25.434325], - [-100.525413, 25.449754], - [-100.530883, 25.463468], - [-100.57865, 25.469787], - [-100.584889, 25.470813], - [-100.581195, 25.487186], - [-100.57951, 25.494544], - [-100.616614, 25.504994], - [-100.619091, 25.505691], - [-100.608581, 25.513445], - [-100.59975, 25.51996], - [-100.529699, 25.514393], - [-100.538436, 25.531854], - [-100.612998, 25.542031], - [-100.614733, 25.542347], - [-100.630061, 25.568601], - [-100.632902, 25.571299], - [-100.6861, 25.567507], - [-100.690286, 25.567101], - [-100.72474, 25.619823], - [-100.729773, 25.633896], - [-100.782383, 25.639166], - [-100.78342, 25.639678], - [-100.78041, 25.645729], - [-100.787775, 25.683597], - [-100.85607, 25.807898], - [-100.861901, 25.818479], - [-100.827245, 25.920497], - [-100.834425, 25.945043], - [-100.876879, 25.947219], - [-100.905532, 25.956946], - [-100.913704, 26.05982], - [-100.916416, 26.075611], - [-100.942898, 26.086789], - [-100.977338, 26.133785], - [-100.982742, 26.139477], - [-101.047398, 26.169846], - [-101.068575, 26.189031], - [-101.091739, 26.244511], - [-101.09762, 26.25291], - [-101.185442, 26.345401], - [-101.206763, 26.369778], - [-100.794012, 26.701227], - [-100.753035, 26.735208], - [-100.696093, 26.623355], - [-100.691229, 26.613789], - [-100.645124, 26.656921], - [-100.6144, 26.685639], - [-100.601307, 26.737077], - [-100.590136, 26.759521], - [-100.541773, 26.806002], - [-100.538156, 26.808558], - [-100.550845, 26.856458], - [-100.551359, 26.85873], - [-100.534059, 27.045534], - [-100.533998, 27.045584], - [-100.673243, 27.084305], - [-100.674242, 27.084605], - [-100.68054, 27.110841], - [-100.682719, 27.111395], - [-100.718223, 27.080097], - [-100.71966, 27.079203], - [-100.747492, 27.081871], - [-100.748621, 27.081253], - [-100.735937, 27.048589], - [-100.735836, 27.04758], - [-100.746521, 27.036978], - [-100.747714, 27.036257], - [-100.762674, 27.062634], - [-100.76407, 27.062991], - [-100.797463, 27.045657], - [-100.798335, 27.045325], - [-100.827897, 27.073555], - [-100.830561, 27.073885], - [-100.833702, 27.180829], - [-100.834123, 27.195174], - [-100.687925, 27.32594], - [-100.678006, 27.334797], - [-100.421909, 27.392685], - [-100.4177, 27.393633], - [-100.353227, 27.672949], - [-100.35061, 27.684599], - [-100.220907, 27.776363], - [-100.188426, 27.799137], - [-100.016077, 27.632733] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "05", - "name": "Coahuila de Zaragoza", - "id": 28, - "ISOCODE": "MX-COA" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-102.310793, 29.876949], - [-102.265731, 29.867972], - [-102.265099, 29.867702], - [-102.260339, 29.853123], - [-102.259942, 29.853042], - [-102.246929, 29.864411], - [-102.246438, 29.864226], - [-102.223717, 29.84069], - [-102.22323, 29.840539], - [-102.196699, 29.836181], - [-102.196263, 29.836258], - [-102.187407, 29.848878], - [-102.187027, 29.848773], - [-102.179646, 29.826238], - [-102.179553, 29.826064], - [-102.143963, 29.803816], - [-102.143576, 29.80358], - [-102.07253, 29.786659], - [-102.072216, 29.786616], - [-102.049458, 29.785341], - [-102.049121, 29.785463], - [-102.03545, 29.804248], - [-102.034782, 29.80433], - [-101.988424, 29.796847], - [-101.987865, 29.796992], - [-101.976185, 29.815646], - [-101.975494, 29.815677], - [-101.95772, 29.795947], - [-101.957621, 29.795872], - [-101.9358, 29.799781], - [-101.935426, 29.799558], - [-101.929242, 29.782797], - [-101.928949, 29.78271], - [-101.853845, 29.807691], - [-101.853213, 29.807764], - [-101.824141, 29.787242], - [-101.823601, 29.787273], - [-101.818237, 29.811677], - [-101.817647, 29.81167], - [-101.804998, 29.780279], - [-101.804368, 29.780043], - [-101.776625, 29.789343], - [-101.775298, 29.789171], - [-101.710648, 29.761895], - [-101.710081, 29.76182], - [-101.662236, 29.771243], - [-101.661465, 29.771258], - [-101.644414, 29.754048], - [-101.643856, 29.754074], - [-101.627798, 29.770712], - [-101.627195, 29.770867], - [-101.575222, 29.76924], - [-101.574861, 29.769276], - [-101.569753, 29.796419], - [-101.569483, 29.796811], - [-101.545156, 29.812149], - [-101.544648, 29.812188], - [-101.537433, 29.758407], - [-101.536654, 29.758121], - [-101.466756, 29.788948], - [-101.464298, 29.78961], - [-101.448984, 29.750974], - [-101.447677, 29.750485], - [-101.40263, 29.771299], - [-101.40132, 29.770707], - [-101.416091, 29.748153], - [-101.415696, 29.746415], - [-101.37131, 29.699336], - [-101.370909, 29.69881], - [-101.361318, 29.64953], - [-101.360709, 29.648688], - [-101.346327, 29.66268], - [-101.345858, 29.662761], - [-101.302382, 29.651892], - [-101.301751, 29.650959], - [-101.304086, 29.577867], - [-101.302228, 29.576033], - [-101.279536, 29.587029], - [-101.278913, 29.587669], - [-101.271183, 29.627366], - [-101.270272, 29.62822], - [-101.249809, 29.623789], - [-101.249151, 29.622856], - [-101.242913, 29.567843], - [-101.243014, 29.566171], - [-101.260044, 29.523772], - [-101.258601, 29.522441], - [-101.188921, 29.518794], - [-101.185552, 29.518002], - [-101.149968, 29.4761], - [-101.147633, 29.474461], - [-101.068028, 29.465625], - [-101.061812, 29.464246], - [-101.01034, 29.368858], - [-101.010059, 29.368532], - [-100.886828, 29.307846], - [-100.886436, 29.307775], - [-100.878045, 29.280816], - [-100.876868, 29.280144], - [-100.814672, 29.264259], - [-100.813785, 29.263712], - [-100.768604, 29.198593], - [-100.767013, 29.195706], - [-100.77313, 29.169066], - [-100.77278, 29.168392], - [-100.679279, 29.106834], - [-100.676119, 29.103296], - [-100.646276, 28.989813], - [-100.645667, 28.987898], - [-100.651711, 28.944148], - [-100.651456, 28.942864], - [-100.630107, 28.923549], - [-100.629652, 28.922551], - [-100.641011, 28.915181], - [-100.640914, 28.914615], - [-100.601698, 28.902067], - [-100.600951, 28.90161], - [-100.575089, 28.830064], - [-100.574423, 28.828552], - [-100.548546, 28.826666], - [-100.547632, 28.82624], - [-100.535454, 28.805292], - [-100.535128, 28.804711], - [-100.533933, 28.760222], - [-100.533445, 28.758811], - [-100.50741, 28.740487], - [-100.50737, 28.740418], - [-100.500285, 28.661887], - [-100.500177, 28.661668], - [-100.44671, 28.642044], - [-100.446179, 28.641689], - [-100.447429, 28.60962], - [-100.447157, 28.609227], - [-100.400347, 28.586571], - [-100.398694, 28.585376], - [-100.411047, 28.552191], - [-100.411, 28.549752], - [-100.388973, 28.516195], - [-100.38854, 28.515399], - [-100.33421, 28.499817], - [-100.333874, 28.499282], - [-100.368387, 28.478318], - [-100.368399, 28.476667], - [-100.33771, 28.443628], - [-100.337468, 28.443022], - [-100.344981, 28.391308], - [-100.342931, 28.387158], - [-100.288048, 28.315373], - [-100.28676, 28.313242], - [-100.294138, 28.280345], - [-100.293621, 28.278763], - [-100.256589, 28.239294], - [-100.254515, 28.237874], - [-100.222282, 28.234388], - [-100.220637, 28.232758], - [-100.210333, 28.192215], - [-100.209161, 28.191226], - [-100.087039, 28.14682], - [-100.08461, 28.145029], - [-100.0537, 28.086131], - [-100.053003, 28.085052], - [-100.020235, 28.067855], - [-100.017747, 28.065134], - [-99.990755, 27.993957], - [-99.990492, 27.993617], - [-99.93176, 27.98114], - [-99.931224, 27.980583], - [-99.938373, 27.945276], - [-99.93765, 27.942189], - [-99.894802, 27.901803], - [-99.893528, 27.89948], - [-99.904235, 27.874846], - [-99.904083, 27.873705], - [-99.877981, 27.843855], - [-99.876962, 27.841466], - [-99.877782, 27.801463], - [-99.877636, 27.799651], - [-99.851512, 27.794279], - [-99.850759, 27.793903], - [-99.84328, 27.773729], - [-99.84312, 27.771865], - [-99.932687, 27.674421], - [-99.998845, 27.615279], - [-100.187997, 27.798722], - [-100.188426, 27.799137], - [-100.350341, 27.6848], - [-100.35061, 27.684599], - [-100.415452, 27.403839], - [-100.4177, 27.393633], - [-100.663168, 27.338165], - [-100.678006, 27.334797], - [-100.827805, 27.200833], - [-100.834123, 27.195174], - [-100.831994, 27.122707], - [-100.830561, 27.073885], - [-100.801241, 27.047576], - [-100.799436, 27.045831], - [-100.767624, 27.063383], - [-100.765864, 27.063325], - [-100.748225, 27.036888], - [-100.747714, 27.036257], - [-100.736477, 27.047041], - [-100.735836, 27.04758], - [-100.749033, 27.080014], - [-100.748621, 27.081253], - [-100.721173, 27.0787], - [-100.71966, 27.079203], - [-100.685078, 27.111341], - [-100.682719, 27.111395], - [-100.674752, 27.086464], - [-100.674242, 27.084605], - [-100.539784, 27.047406], - [-100.533998, 27.045584], - [-100.548161, 26.864655], - [-100.551359, 26.85873], - [-100.537845, 26.810325], - [-100.538156, 26.808558], - [-100.578902, 26.770127], - [-100.590136, 26.759521], - [-100.607978, 26.710873], - [-100.6144, 26.685639], - [-100.648987, 26.653309], - [-100.691229, 26.613789], - [-100.720802, 26.671919], - [-100.753035, 26.735208], - [-101.189601, 26.38468], - [-101.206763, 26.369778], - [-101.101571, 26.257703], - [-101.09762, 26.25291], - [-101.074647, 26.198975], - [-101.068575, 26.189031], - [-100.985047, 26.140917], - [-100.982742, 26.139477], - [-100.942898, 26.086789], - [-100.916416, 26.075611], - [-100.904969, 25.988407], - [-100.905532, 25.956946], - [-100.876879, 25.947219], - [-100.834425, 25.945043], - [-100.827245, 25.920497], - [-100.822669, 25.916885], - [-100.847069, 25.857886], - [-100.861901, 25.818479], - [-100.823913, 25.750021], - [-100.805614, 25.724302], - [-100.783113, 25.640296], - [-100.78342, 25.639678], - [-100.746959, 25.635463], - [-100.729773, 25.633896], - [-100.719916, 25.603067], - [-100.690286, 25.567101], - [-100.636042, 25.571943], - [-100.632902, 25.571299], - [-100.614929, 25.544102], - [-100.614733, 25.542347], - [-100.544214, 25.533513], - [-100.538436, 25.531854], - [-100.529699, 25.514393], - [-100.608581, 25.513445], - [-100.619091, 25.505691], - [-100.581195, 25.487186], - [-100.584889, 25.470813], - [-100.545113, 25.464613], - [-100.530883, 25.463468], - [-100.522642, 25.435455], - [-100.522703, 25.434325], - [-100.454865, 25.413812], - [-100.454164, 25.41337], - [-100.458115, 25.384249], - [-100.470099, 25.33779], - [-100.418452, 25.327981], - [-100.414561, 25.326998], - [-100.31423, 25.336888], - [-100.313023, 25.336367], - [-100.256642, 25.305935], - [-100.254138, 25.306909], - [-100.243775, 25.269714], - [-100.243142, 25.267443], - [-100.253942, 25.265568], - [-100.26251, 25.254023], - [-100.234421, 25.235496], - [-100.23937, 25.224648], - [-100.229576, 25.217917], - [-100.230324, 25.217661], - [-100.261384, 25.207071], - [-100.32555, 25.222259], - [-100.332007, 25.186285], - [-100.591962, 25.25505], - [-100.595686, 25.254763], - [-100.701497, 25.237699], - [-100.708888, 25.236458], - [-100.796858, 25.170001], - [-100.80313, 25.165258], - [-100.821149, 25], - [-100.821506, 24.996711], - [-100.740933, 24.931253], - [-100.727495, 24.918717], - [-100.816289, 24.843366], - [-100.826132, 24.835005], - [-100.813143, 24.792237], - [-100.796978, 24.750807], - [-100.805473, 24.59634], - [-100.799934, 24.556186], - [-100.835825, 24.553891], - [-100.847806, 24.555619], - [-100.900575, 24.582862], - [-100.902234, 24.583918], - [-100.934665, 24.559579], - [-100.958793, 24.542684], - [-101.062589, 24.584033], - [-101.080495, 24.591185], - [-101.106877, 24.609202], - [-101.12762, 24.623362], - [-101.188438, 24.749353], - [-101.201726, 24.765488], - [-101.313123, 24.801411], - [-101.342142, 24.813353], - [-101.388287, 24.794033], - [-101.402157, 24.788222], - [-101.448557, 24.746187], - [-101.461639, 24.736757], - [-101.600407, 24.754397], - [-101.62227, 24.758983], - [-101.62532, 24.765887], - [-101.640767, 24.800704], - [-101.609012, 24.789664], - [-101.603756, 24.820787], - [-101.601261, 24.835563], - [-101.606715, 24.838063], - [-101.656332, 24.860793], - [-101.685149, 24.840013], - [-101.744911, 24.864067], - [-101.773463, 24.875535], - [-101.841312, 24.997476], - [-101.84881, 25.017624], - [-102.295477, 25.125189], - [-102.295513, 25.125236], - [-102.398878, 25.119518], - [-102.463325, 25.115916], - [-102.453678, 25.048138], - [-102.446763, 24.999515], - [-102.628549, 25.054214], - [-102.669694, 25.066636], - [-102.82907, 24.810738], - [-102.853131, 24.772001], - [-102.856292, 24.740863], - [-102.856403, 24.739774], - [-102.975182, 24.799452], - [-102.975215, 24.799464], - [-103.005006, 24.793193], - [-103.005138, 24.793218], - [-103.092947, 24.822861], - [-103.092981, 24.82289], - [-103.258978, 24.964516], - [-103.259146, 24.964659], - [-103.246543, 24.995489], - [-103.246563, 24.996027], - [-103.277988, 25.034406], - [-103.278015, 25.034614], - [-103.261774, 25.0581], - [-103.26218, 25.058549], - [-103.358814, 25.109434], - [-103.359539, 25.110029], - [-103.402679, 25.18211], - [-103.402858, 25.182349], - [-103.51071, 25.279126], - [-103.510937, 25.279817], - [-103.462271, 25.376193], - [-103.462059, 25.376311], - [-103.406919, 25.398899], - [-103.406699, 25.398901], - [-103.337709, 25.371337], - [-103.336916, 25.371231], - [-103.337745, 25.397573], - [-103.341368, 25.410142], - [-103.368758, 25.416358], - [-103.369062, 25.416461], - [-103.494255, 25.537574], - [-103.494414, 25.537732], - [-103.456265, 25.556371], - [-103.455445, 25.557061], - [-103.416366, 25.613949], - [-103.416025, 25.614422], - [-103.425154, 25.622821], - [-103.42477, 25.62368], - [-103.404203, 25.627293], - [-103.403276, 25.628128], - [-103.406852, 25.644526], - [-103.406003, 25.645027], - [-103.381531, 25.640257], - [-103.381422, 25.640342], - [-103.340142, 25.706542], - [-103.339437, 25.707605], - [-103.35271, 25.716489], - [-103.352836, 25.716553], - [-103.333706, 25.738734], - [-103.333705, 25.738736], - [-103.318782, 25.806311], - [-103.318588, 25.812701], - [-103.345164, 25.857655], - [-103.34636, 25.860304], - [-103.34979, 26.094803], - [-103.350488, 26.14239], - [-103.279975, 26.254359], - [-103.260825, 26.284727], - [-103.262904, 26.287591], - [-103.316793, 26.361776], - [-103.374183, 26.602355], - [-103.374183, 26.602355], - [-103.636982, 26.693436], - [-103.643891, 26.690158], - [-103.658256, 26.719484], - [-103.701641, 26.730783], - [-103.715249, 26.735077], - [-103.75062, 26.809905], - [-103.753968, 26.829573], - [-103.847492, 26.892991], - [-103.851701, 26.896134], - [-103.851943, 26.90523], - [-103.835919, 26.935813], - [-103.852023, 26.934562], - [-103.852089, 26.934619], - [-103.784458, 26.981483], - [-103.779948, 27.008886], - [-103.742531, 27.021773], - [-103.740834, 27.022522], - [-103.752167, 27.076998], - [-103.752461, 27.07792], - [-103.783427, 27.091176], - [-103.78347, 27.091206], - [-103.794625, 27.114684], - [-103.799398, 27.12473], - [-103.79843, 27.213199], - [-103.798427, 27.213476], - [-103.831984, 27.296033], - [-103.832123, 27.298293], - [-103.848117, 27.30305], - [-103.876876, 27.311592], - [-103.855264, 27.532575], - [-103.854601, 27.549433], - [-103.896015, 27.651472], - [-103.897263, 27.656549], - [-103.883245, 27.657592], - [-103.895533, 27.674021], - [-103.887422, 27.745912], - [-103.93565, 27.797553], - [-103.902771, 27.825257], - [-103.900844, 27.826857], - [-103.957638, 27.834387], - [-103.960002, 27.835309], - [-103.945645, 27.888862], - [-103.943331, 27.888843], - [-103.952377, 27.937002], - [-103.954973, 27.950821], - [-103.940391, 27.946696], - [-103.935643, 27.945342], - [-103.940716, 27.927477], - [-103.892886, 27.914023], - [-103.884373, 27.93842], - [-103.877716, 27.95749], - [-103.918361, 27.968999], - [-103.926692, 27.971357], - [-103.862524, 28.10967], - [-103.8675, 28.112136], - [-103.66238, 28.477098], - [-103.643011, 28.512462], - [-103.637501, 28.554505], - [-103.624568, 28.581147], - [-103.598618, 28.579096], - [-103.591916, 28.590834], - [-103.616046, 28.598195], - [-103.596374, 28.639475], - [-103.568645, 28.632971], - [-103.557295, 28.611281], - [-103.519762, 28.668745], - [-103.514512, 28.664998], - [-103.454617, 28.777632], - [-103.431663, 28.81318], - [-103.423554, 28.82129], - [-103.410015, 28.840922], - [-103.396653, 28.833254], - [-103.396347, 28.833529], - [-103.40365, 28.869254], - [-103.40365, 28.869254], - [-103.307702, 29.002277], - [-103.30764, 29.003286], - [-103.288117, 29.002231], - [-103.287905, 29.002052], - [-103.280058, 28.975905], - [-103.279922, 28.975887], - [-103.267477, 28.99599], - [-103.267342, 28.996004], - [-103.250682, 28.980329], - [-103.250522, 28.98026], - [-103.228085, 28.991714], - [-103.227996, 28.991713], - [-103.163938, 28.972053], - [-103.163866, 28.972046], - [-103.116099, 28.984184], - [-103.115855, 28.984357], - [-103.100706, 29.060227], - [-103.10071, 29.060331], - [-103.086098, 29.05357], - [-103.085874, 29.053813], - [-103.076537, 29.090903], - [-103.075972, 29.091421], - [-103.034409, 29.100678], - [-103.033797, 29.101204], - [-102.995628, 29.179247], - [-102.995274, 29.179644], - [-102.9511, 29.17348], - [-102.950819, 29.173529], - [-102.94359, 29.191374], - [-102.943185, 29.191596], - [-102.917983, 29.190772], - [-102.917895, 29.190837], - [-102.912688, 29.219185], - [-102.912312, 29.219434], - [-102.89483, 29.208563], - [-102.89437, 29.208573], - [-102.867575, 29.22342], - [-102.867359, 29.223727], - [-102.871197, 29.241191], - [-102.871509, 29.2416], - [-102.906245, 29.258914], - [-102.906307, 29.259319], - [-102.884093, 29.347421], - [-102.883982, 29.347981], - [-102.839362, 29.358803], - [-102.83922, 29.358895], - [-102.845067, 29.373837], - [-102.844937, 29.374308], - [-102.812524, 29.400072], - [-102.81239, 29.400268], - [-102.833188, 29.409552], - [-102.833223, 29.410197], - [-102.825485, 29.457589], - [-102.825377, 29.457938], - [-102.800739, 29.486005], - [-102.800667, 29.486142], - [-102.808492, 29.522152], - [-102.808321, 29.52264], - [-102.771303, 29.548124], - [-102.77105, 29.5484], - [-102.768495, 29.594809], - [-102.768417, 29.594945], - [-102.740299, 29.597788], - [-102.740201, 29.597899], - [-102.741232, 29.635301], - [-102.741021, 29.635864], - [-102.693456, 29.676548], - [-102.693308, 29.676724], - [-102.698646, 29.696938], - [-102.698623, 29.697349], - [-102.675052, 29.743838], - [-102.674869, 29.744055], - [-102.63055, 29.733979], - [-102.630282, 29.734039], - [-102.57447, 29.754859], - [-102.574036, 29.75502], - [-102.569944, 29.77163], - [-102.569567, 29.771744], - [-102.548399, 29.744586], - [-102.548049, 29.744603], - [-102.513875, 29.765534], - [-102.513671, 29.765738], - [-102.518073, 29.783634], - [-102.517778, 29.78394], - [-102.487814, 29.786869], - [-102.487248, 29.786929], - [-102.387805, 29.761464], - [-102.387576, 29.761509], - [-102.364969, 29.845424], - [-102.364907, 29.845547], - [-102.310793, 29.876949] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "28", - "name": "Tamaulipas", - "id": 29, - "ISOCODE": "MX-TAM" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-99.717718, 27.662861], - [-99.66692, 27.659229], - [-99.664698, 27.658053], - [-99.656401, 27.629545], - [-99.655467, 27.62926], - [-99.596899, 27.64011], - [-99.595904, 27.639764], - [-99.577298, 27.618898], - [-99.577106, 27.618311], - [-99.58452, 27.603737], - [-99.584235, 27.603459], - [-99.555467, 27.61449], - [-99.554831, 27.61441], - [-99.511931, 27.566683], - [-99.511549, 27.566082], - [-99.528295, 27.498548], - [-99.528188, 27.498153], - [-99.49384, 27.497771], - [-99.493427, 27.497628], - [-99.478874, 27.479962], - [-99.478765, 27.479507], - [-99.494938, 27.448123], - [-99.495336, 27.446578], - [-99.487704, 27.411677], - [-99.487621, 27.411046], - [-99.504321, 27.339342], - [-99.504499, 27.33878], - [-99.538093, 27.317025], - [-99.538133, 27.316452], - [-99.495871, 27.304536], - [-99.494604, 27.303764], - [-99.488202, 27.260906], - [-99.487309, 27.260281], - [-99.463202, 27.268464], - [-99.461952, 27.268387], - [-99.442487, 27.251645], - [-99.441833, 27.250807], - [-99.426335, 27.177826], - [-99.426218, 27.176127], - [-99.442454, 27.107553], - [-99.442544, 27.10683], - [-99.428606, 27.092226], - [-99.428661, 27.091593], - [-99.452385, 27.065024], - [-99.452708, 27.064065], - [-99.44576, 27.02293], - [-99.445692, 27.021864], - [-99.41738, 27.017905], - [-99.415413, 27.017376], - [-99.378636, 26.97975], - [-99.376469, 26.976852], - [-99.392251, 26.964235], - [-99.393757, 26.960227], - [-99.387894, 26.943519], - [-99.385021, 26.939603], - [-99.3287, 26.919654], - [-99.324221, 26.915945], - [-99.323261, 26.873031], - [-99.317142, 26.865462], - [-99.280499, 26.858089], - [-99.26802, 26.842629], - [-99.23962, 26.745262], - [-99.208603, 26.724449], - [-99.171617, 26.543935], - [-99.171519, 26.543152], - [-99.104881, 26.5], - [-99.104311, 26.499091], - [-99.091616, 26.476129], - [-99.09165, 26.475318], - [-99.113711, 26.4336], - [-99.113589, 26.432524], - [-99.084453, 26.397909], - [-99.083986, 26.397573], - [-99.038572, 26.413378], - [-99.037289, 26.413568], - [-99.012001, 26.392556], - [-99.010775, 26.392259], - [-98.975509, 26.401238], - [-98.974387, 26.401307], - [-98.944668, 26.36953], - [-98.943241, 26.369437], - [-98.927463, 26.39452], - [-98.926723, 26.394565], - [-98.896757, 26.353269], - [-98.896133, 26.353081], - [-98.805391, 26.367926], - [-98.804602, 26.367627], - [-98.789035, 26.33108], - [-98.788518, 26.330515], - [-98.751405, 26.331575], - [-98.750718, 26.331183], - [-98.736164, 26.309317], - [-98.736073, 26.308323], - [-98.754104, 26.30815], - [-98.754981, 26.307588], - [-98.751958, 26.297553], - [-98.750919, 26.296012], - [-98.703643, 26.287799], - [-98.70246, 26.287092], - [-98.720114, 26.273403], - [-98.719658, 26.272553], - [-98.682412, 26.263711], - [-98.681122, 26.262936], - [-98.672124, 26.237856], - [-98.670564, 26.237003], - [-98.635528, 26.241953], - [-98.634578, 26.242333], - [-98.624783, 26.259367], - [-98.624412, 26.25974], - [-98.617112, 26.246595], - [-98.616259, 26.246489], - [-98.587052, 26.257829], - [-98.58573, 26.257671], - [-98.563845, 26.225482], - [-98.562665, 26.22441], - [-98.545914, 26.236233], - [-98.545741, 26.236528], - [-98.555481, 26.248105], - [-98.554243, 26.247786], - [-98.482214, 26.200869], - [-98.481401, 26.200622], - [-98.48256, 26.218441], - [-98.481816, 26.219304], - [-98.445313, 26.224377], - [-98.444103, 26.224178], - [-98.444451, 26.201311], - [-98.443932, 26.200541], - [-98.388198, 26.159443], - [-98.387321, 26.158425], - [-98.367344, 26.157446], - [-98.366375, 26.157661], - [-98.360876, 26.172349], - [-98.359826, 26.172515], - [-98.352844, 26.151107], - [-98.352091, 26.151056], - [-98.337035, 26.166359], - [-98.335693, 26.165819], - [-98.335852, 26.13919], - [-98.335615, 26.138315], - [-98.305927, 26.103357], - [-98.305338, 26.102886], - [-98.297501, 26.119997], - [-98.296866, 26.120298], - [-98.266881, 26.121063], - [-98.266296, 26.120937], - [-98.288375, 26.104692], - [-98.288088, 26.104331], - [-98.19432, 26.053272], - [-98.193635, 26.053089], - [-98.177707, 26.075109], - [-98.177164, 26.07522], - [-98.147495, 26.049387], - [-98.146865, 26.049139], - [-98.132685, 26.074021], - [-98.131871, 26.07431], - [-98.094468, 26.058801], - [-98.093585, 26.058649], - [-98.082197, 26.07134], - [-98.081331, 26.071302], - [-98.074181, 26.03641], - [-98.072949, 26.036424], - [-98.039187, 26.041245], - [-98.038713, 26.041367], - [-98.028645, 26.066752], - [-98.02793, 26.066984], - [-98.012287, 26.05612], - [-98.011887, 26.056082], - [-97.98054, 26.067268], - [-97.980197, 26.067217], - [-97.966489, 26.051687], - [-97.965875, 26.051666], - [-97.951223, 26.062214], - [-97.951075, 26.062238], - [-97.934093, 26.05281], - [-97.93355, 26.052986], - [-97.934204, 26.065415], - [-97.933643, 26.065557], - [-97.869559, 26.056811], - [-97.868976, 26.056778], - [-97.862047, 26.070034], - [-97.861397, 26.070029], - [-97.861245, 26.053422], - [-97.861002, 26.052961], - [-97.834873, 26.045884], - [-97.834262, 26.045602], - [-97.820144, 26.05652], - [-97.819286, 26.056584], - [-97.812973, 26.043875], - [-97.812411, 26.044066], - [-97.801762, 26.060234], - [-97.801093, 26.06021], - [-97.778259, 26.029309], - [-97.777899, 26.029208], - [-97.768755, 26.047526], - [-97.768035, 26.047259], - [-97.762024, 26.025712], - [-97.761539, 26.025561], - [-97.720853, 26.02301], - [-97.720455, 26.023023], - [-97.707439, 26.037751], - [-97.70712, 26.037735], - [-97.692227, 26.01884], - [-97.69156, 26.018818], - [-97.693636, 26.031938], - [-97.693271, 26.032358], - [-97.662956, 26.038161], - [-97.662614, 26.038076], - [-97.66826, 26.019785], - [-97.668137, 26.019425], - [-97.640532, 26.024475], - [-97.639921, 26.023951], - [-97.649565, 26.011003], - [-97.649295, 26.010444], - [-97.618803, 26.002685], - [-97.618361, 26.002315], - [-97.634655, 25.990692], - [-97.63445, 25.990037], - [-97.602493, 25.957859], - [-97.602095, 25.957355], - [-97.582459, 25.962593], - [-97.582122, 25.962378], - [-97.578561, 25.94229], - [-97.578117, 25.942094], - [-97.568519, 25.952943], - [-97.567908, 25.952514], - [-97.583694, 25.933662], - [-97.583274, 25.933216], - [-97.53778, 25.930949], - [-97.537314, 25.93081], - [-97.521987, 25.886823], - [-97.521272, 25.886324], - [-97.498506, 25.899103], - [-97.49819, 25.899163], - [-97.497477, 25.880325], - [-97.49715, 25.879867], - [-97.456052, 25.884297], - [-97.455517, 25.884119], - [-97.444821, 25.868295], - [-97.444613, 25.867807], - [-97.454111, 25.854578], - [-97.454057, 25.854281], - [-97.42551, 25.84072], - [-97.424452, 25.84044], - [-97.410201, 25.862028], - [-97.409455, 25.86227], - [-97.406506, 25.838323], - [-97.406151, 25.837896], - [-97.373123, 25.839842], - [-97.372631, 25.840125], - [-97.364093, 25.850212], - [-97.364212, 25.850867], - [-97.376514, 25.854886], - [-97.376186, 25.855593], - [-97.35675, 25.86689], - [-97.356659, 25.867351], - [-97.374309, 25.879664], - [-97.374173, 25.880277], - [-97.356494, 25.887225], - [-97.356401, 25.887762], - [-97.375231, 25.907738], - [-97.375032, 25.908292], - [-97.348515, 25.931048], - [-97.347915, 25.93131], - [-97.327158, 25.917595], - [-97.326096, 25.917544], - [-97.303872, 25.936431], - [-97.303205, 25.936981], - [-97.27774, 25.934959], - [-97.276822, 25.935198], - [-97.28448, 25.959065], - [-97.283966, 25.959328], - [-97.248555, 25.948197], - [-97.247494, 25.948031], - [-97.159388, 25.961879], - [-97.15854, 25.961753], - [-97.144265, 25.913358], - [-97.144224, 25.912533], - [-97.167872, 25.731437], - [-97.167943, 25.730873], - [-97.200997, 25.629971], - [-97.200957, 25.629876], - [-97.441588, 25.213051], - [-97.442974, 25.210624], - [-97.533974, 24.997994], - [-97.535324, 24.99505], - [-97.686256, 24.456075], - [-97.68653, 24.454522], - [-97.729795, 24.063267], - [-97.730279, 24.05811], - [-97.7338, 23.7734], - [-97.7315, 23.7717], - [-97.768016, 23.390344], - [-97.768997, 23.3782], - [-97.765901, 22.900239], - [-97.765951, 22.894786], - [-97.788051, 22.794347], - [-97.788457, 22.792884], - [-97.844512, 22.662937], - [-97.84484, 22.662047], - [-97.859156, 22.574363], - [-97.859303, 22.572552], - [-97.845058, 22.409654], - [-97.84484, 22.408267], - [-97.784109, 22.264106], - [-97.783589, 22.262617], - [-97.831216, 22.238845], - [-97.832113, 22.238103], - [-97.838024, 22.211844], - [-97.839683, 22.208886], - [-97.883074, 22.218995], - [-97.894962, 22.222378], - [-97.956503, 22.291739], - [-97.956708, 22.293892], - [-97.992664, 22.292775], - [-98.000324, 22.297432], - [-97.998942, 22.313856], - [-97.998949, 22.314327], - [-97.984584, 22.305318], - [-97.98398, 22.304671], - [-97.971801, 22.326228], - [-97.97051, 22.32805], - [-97.989421, 22.350272], - [-97.99002, 22.350864], - [-98.072781, 22.347161], - [-98.074263, 22.347781], - [-98.08471, 22.368685], - [-98.086015, 22.370154], - [-98.105135, 22.366023], - [-98.106213, 22.366712], - [-98.112034, 22.39376], - [-98.113536, 22.395303], - [-98.187485, 22.423869], - [-98.188988, 22.425339], - [-98.193553, 22.468721], - [-98.194995, 22.469559], - [-98.245191, 22.471715], - [-98.247931, 22.471657], - [-98.269232, 22.448059], - [-98.272937, 22.447291], - [-98.285313, 22.465397], - [-98.287369, 22.467028], - [-98.31579, 22.468823], - [-98.316823, 22.468562], - [-98.311864, 22.447413], - [-98.312215, 22.445219], - [-98.326751, 22.429084], - [-98.327361, 22.42647], - [-98.313471, 22.416799], - [-98.312711, 22.414273], - [-98.317578, 22.390974], - [-98.318781, 22.39074], - [-98.34931, 22.388261], - [-98.352273, 22.388703], - [-98.352931, 22.406725], - [-98.355225, 22.407446], - [-98.385189, 22.388411], - [-98.387809, 22.389284], - [-98.386625, 22.423631], - [-98.388644, 22.424293], - [-98.407734, 22.399935], - [-98.409543, 22.399927], - [-98.432452, 22.412864], - [-98.433117, 22.413578], - [-98.431972, 22.431566], - [-98.433766, 22.432864], - [-98.456803, 22.41371], - [-98.460959, 22.412192], - [-98.464984, 22.427648], - [-98.466808, 22.428802], - [-98.504354, 22.429494], - [-98.50504, 22.429472], - [-98.546028, 22.400215], - [-98.546083, 22.40019], - [-98.676662, 22.408933], - [-98.677099, 22.408927], - [-98.756152, 22.367661], - [-98.756404, 22.366941], - [-98.82022, 22.356679], - [-98.821467, 22.356256], - [-98.851606, 22.368313], - [-98.852701, 22.368361], - [-98.889509, 22.355105], - [-98.889997, 22.355094], - [-98.930072, 22.382559], - [-98.931973, 22.392775], - [-99.059129, 22.415048], - [-99.060399, 22.415269], - [-99.23227, 22.412626], - [-99.236839, 22.412862], - [-99.321388, 22.61673], - [-99.329618, 22.634888], - [-99.371165, 22.629347], - [-99.3732, 22.629078], - [-99.385699, 22.670027], - [-99.385553, 22.670268], - [-99.419913, 22.662038], - [-99.442053, 22.663616], - [-99.477127, 22.740637], - [-99.47922, 22.742053], - [-99.496789, 22.748498], - [-99.544327, 22.74414], - [-99.501301, 22.635122], - [-99.494536, 22.620869], - [-99.513652, 22.615061], - [-99.534692, 22.612765], - [-99.560638, 22.64122], - [-99.667125, 22.67566], - [-99.682535, 22.681125], - [-99.718369, 22.664555], - [-99.724085, 22.659608], - [-99.812959, 22.660402], - [-99.814029, 22.660766], - [-99.847736, 22.678337], - [-99.847924, 22.678435], - [-99.844788, 22.710453], - [-99.842819, 22.730557], - [-99.872682, 22.745453], - [-99.882397, 22.749862], - [-99.956241, 22.751647], - [-99.956958, 22.751667], - [-100.009018, 22.731013], - [-100.022343, 22.725925], - [-100.075448, 22.744687], - [-100.09406, 22.751265], - [-100.095624, 22.753558], - [-100.10192, 22.762793], - [-100.04886, 22.807644], - [-100.029384, 22.824394], - [-100.040296, 22.895545], - [-100.044239, 22.917892], - [-100.109707, 22.916726], - [-100.110384, 22.916714], - [-100.110619, 22.970178], - [-100.110847, 22.975719], - [-100.110145, 22.975512], - [-100.089421, 22.968757], - [-100.099507, 23.007993], - [-100.097455, 23.013091], - [-100.072433, 22.997043], - [-100.071656, 22.997357], - [-100.062309, 23.039545], - [-100.062097, 23.039844], - [-100.011324, 23.064561], - [-100.011355, 23.065359], - [-100.069379, 23.096857], - [-100.068743, 23.121156], - [-100.109734, 23.125445], - [-100.115597, 23.12599], - [-100.118307, 23.199121], - [-100.118286, 23.200545], - [-100.078109, 23.30555], - [-100.078041, 23.305984], - [-100.141439, 23.337784], - [-100.14495, 23.339515], - [-100.09201, 23.383865], - [-100.080261, 23.395748], - [-99.934002, 23.381936], - [-99.921253, 23.379191], - [-99.957432, 23.540269], - [-99.961188, 23.55689], - [-99.861325, 23.772938], - [-99.86066, 23.774462], - [-99.788431, 23.784388], - [-99.769014, 23.784488], - [-99.619486, 23.759662], - [-99.602167, 23.762871], - [-99.523901, 23.841218], - [-99.493791, 23.878693], - [-99.467414, 23.869513], - [-99.456871, 23.866063], - [-99.481467, 23.94062], - [-99.48694, 23.960501], - [-99.528565, 23.993315], - [-99.540912, 23.997272], - [-99.540923, 24.023919], - [-99.541893, 24.033649], - [-99.570902, 24.039367], - [-99.630562, 24.093816], - [-99.657081, 24.117997], - [-99.648541, 24.212671], - [-99.647818, 24.218095], - [-99.589546, 24.366591], - [-99.589931, 24.396142], - [-99.628581, 24.492171], - [-99.636379, 24.50667], - [-99.703879, 24.488097], - [-99.719804, 24.48371], - [-99.723834, 24.501356], - [-99.732978, 24.553991], - [-99.609534, 24.622462], - [-99.609449, 24.62249], - [-99.546295, 24.61304], - [-99.546221, 24.613075], - [-99.545129, 24.626471], - [-99.545063, 24.626517], - [-99.499517, 24.641167], - [-99.499452, 24.641258], - [-99.500745, 24.679083], - [-99.500726, 24.679171], - [-99.477789, 24.712553], - [-99.477735, 24.712621], - [-99.448184, 24.73216], - [-99.448077, 24.732206], - [-99.389492, 24.739756], - [-99.389412, 24.739793], - [-99.364438, 24.771707], - [-99.364377, 24.771755], - [-99.294983, 24.804063], - [-99.294928, 24.804144], - [-99.226757, 24.777169], - [-99.212885, 24.771675], - [-99.188653, 24.78068], - [-99.181971, 24.776041], - [-99.206183, 24.85725], - [-99.207433, 24.861392], - [-99.160959, 24.913719], - [-99.158943, 24.915988], - [-99.180942, 25.011442], - [-99.18095, 25.011542], - [-99.156555, 25.027783], - [-99.156517, 25.027848], - [-99.160656, 25.055203], - [-99.160592, 25.055277], - [-99.097718, 25.063083], - [-99.097613, 25.063121], - [-99.052496, 25.12713], - [-99.052468, 25.127133], - [-99.028849, 25.110415], - [-99.028802, 25.110355], - [-99.019131, 25.06997], - [-99.019056, 25.069925], - [-98.934967, 25.072546], - [-98.93417, 25.072763], - [-98.42324, 25.447416], - [-98.423132, 25.447493], - [-98.422379, 25.46774], - [-98.421576, 25.489356], - [-98.578164, 25.489365], - [-98.581752, 25.489362], - [-98.585018, 26.011002], - [-98.585126, 26.017918], - [-98.818216, 26.047042], - [-98.823227, 26.047649], - [-98.886656, 25.982845], - [-98.900752, 25.968323], - [-99.016031, 26.095482], - [-99.023872, 26.104102], - [-99.07646, 26.071902], - [-99.076542, 26.071864], - [-99.097581, 26.080749], - [-99.097669, 26.080747], - [-99.130821, 26.068855], - [-99.130907, 26.068816], - [-99.126238, 26.054059], - [-99.126312, 26.054023], - [-99.160246, 26.061333], - [-99.16033, 26.061385], - [-99.197802, 26.258487], - [-99.197836, 26.258682], - [-99.2498, 26.253777], - [-99.260002, 26.25285], - [-99.363878, 26.329065], - [-99.36415, 26.32927], - [-99.400901, 26.305015], - [-99.401236, 26.304799], - [-99.429848, 26.349496], - [-99.430947, 26.351301], - [-99.39972, 26.558773], - [-99.396825, 26.596566], - [-99.537066, 26.664], - [-99.538335, 26.664596], - [-99.640797, 26.669402], - [-99.659164, 26.670365], - [-99.657241, 26.695054], - [-99.657195, 26.695118], - [-99.618617, 26.726399], - [-99.618581, 26.726471], - [-99.612885, 26.791556], - [-99.612854, 26.79163], - [-99.580835, 26.830035], - [-99.580843, 26.830113], - [-99.59099, 26.862481], - [-99.591047, 26.862548], - [-99.626951, 26.870446], - [-99.627053, 26.870458], - [-99.629965, 26.890218], - [-99.63003, 26.89029], - [-99.661315, 26.90081], - [-99.661391, 26.900839], - [-99.687127, 26.894559], - [-99.687223, 26.894547], - [-99.693908, 26.909289], - [-99.69402, 26.909299], - [-99.721004, 26.89651], - [-99.721102, 26.896504], - [-99.744261, 26.912149], - [-99.744346, 26.912156], - [-99.766513, 26.88998], - [-99.766669, 26.889842], - [-99.770131, 26.928418], - [-99.74029, 26.922177], - [-99.734168, 26.920613], - [-99.662698, 27.044101], - [-99.650053, 27.065858], - [-99.669012, 27.095389], - [-99.678919, 27.102448], - [-99.736513, 27.248917], - [-99.74767, 27.277247], - [-99.758553, 27.389638], - [-99.760379, 27.436959], - [-99.907422, 27.487491], - [-99.919154, 27.491515], - [-99.922611, 27.518956], - [-99.926418, 27.549157], - [-99.728718, 27.678753], - [-99.728147, 27.679126], - [-99.717718, 27.662861] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "31", - "name": "Yucatán", - "id": 30, - "ISOCODE": "MX-YUC" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-92.2241, 20.908], - [-92.2449, 20.9009], - [-92.2453, 20.9018], - [-92.2241, 20.908] - ] - ], - [ - [ - [-92.2005, 20.9241], - [-92.2005, 20.9241] - ] - ], - [ - [ - [-92.1982, 20.9258], - [-92.1982, 20.9258] - ] - ], - [ - [ - [-92.2041, 20.925], - [-92.2171, 20.9176], - [-92.2175, 20.9182], - [-92.2041, 20.925] - ] - ], - [ - [ - [-92.3025, 20.9894], - [-92.3129, 20.9732], - [-92.3137, 20.9727], - [-92.3257, 20.9796], - [-92.3263, 20.98], - [-92.3025, 20.9894] - ] - ], - [ - [ - [-92.0792, 21.8378], - [-92.0792, 21.8378] - ] - ], - [ - [ - [-87.962908, 21.610131], - [-87.746526, 21.532718], - [-87.738361, 21.530391], - [-87.537585, 21.490226], - [-87.534913, 21.490222], - [-87.533204, 21.015956], - [-87.533145, 20.999602], - [-87.675727, 20.766263], - [-87.744259, 20.653787], - [-87.938006, 20.470197], - [-87.962742, 20.446706], - [-87.977966, 20.446994], - [-87.995065, 20.447316], - [-87.992958, 20.424068], - [-87.99296, 20.417993], - [-88.104236, 20.312108], - [-88.13649, 20.281372], - [-88.232669, 20.290179], - [-88.264634, 20.290342], - [-88.272961, 20.269931], - [-88.308788, 20.25351], - [-88.407326, 20.252119], - [-88.409128, 20.252097], - [-88.409122, 20.239728], - [-88.415114, 20.23297], - [-88.443426, 20.23815], - [-88.504934, 20.201315], - [-88.51993, 20.192328], - [-88.50962, 20.191007], - [-88.502345, 20.190078], - [-88.504079, 20.174739], - [-88.507621, 20.143391], - [-88.576682, 20.148078], - [-88.587676, 20.14047], - [-88.587974, 20.131451], - [-88.616384, 20.134461], - [-88.620808, 20.131804], - [-88.619167, 20.117323], - [-88.619173, 20.117172], - [-88.639866, 20.120356], - [-88.690609, 20.089856], - [-88.697465, 20.020022], - [-88.700176, 20.010357], - [-88.777341, 20.007925], - [-88.783503, 20.00818], - [-88.816143, 19.915499], - [-88.816503, 19.904474], - [-88.829381, 19.906097], - [-88.829437, 19.906015], - [-88.82384, 19.8839], - [-88.825926, 19.879926], - [-88.869951, 19.878256], - [-88.880192, 19.878125], - [-88.890422, 19.858545], - [-88.900488, 19.861114], - [-88.910686, 19.805788], - [-88.911104, 19.800938], - [-88.92685, 19.794711], - [-88.929512, 19.790949], - [-88.944935, 19.798725], - [-88.943852, 19.813443], - [-88.973182, 19.818027], - [-88.974452, 19.818101], - [-89.003786, 19.77359], - [-89.004087, 19.772007], - [-89.022231, 19.776075], - [-89.025163, 19.77671], - [-89.047296, 19.72516], - [-89.048827, 19.721493], - [-88.996622, 19.72678], - [-88.994741, 19.72744], - [-88.996738, 19.711529], - [-88.997529, 19.704884], - [-89.031133, 19.705526], - [-89.0362, 19.67804], - [-89.113115, 19.701496], - [-89.123399, 19.703424], - [-89.132646, 19.623259], - [-89.133641, 19.614632], - [-89.108392, 19.612338], - [-89.109024, 19.582349], - [-89.149521, 19.581249], - [-89.144862, 19.637399], - [-89.189203, 19.644006], - [-89.19269, 19.633557], - [-89.222869, 19.636657], - [-89.219557, 19.608022], - [-89.28734, 19.557945], - [-89.296562, 19.551174], - [-89.427256, 19.669608], - [-89.448113, 19.698354], - [-89.465986, 19.699958], - [-89.468295, 19.700161], - [-89.481285, 19.71952], - [-89.491662, 19.742228], - [-89.477646, 19.754498], - [-89.475909, 19.77122], - [-89.519613, 19.774824], - [-89.525672, 19.775555], - [-89.549679, 19.816219], - [-89.57743, 19.853509], - [-89.5875, 19.87442], - [-89.58681, 19.92046], - [-89.60467, 19.938285], - [-89.598704, 19.998197], - [-89.737343, 20.165833], - [-89.748474, 20.17927], - [-89.787844, 20.144448], - [-89.793975, 20.136172], - [-89.802725, 20.170794], - [-89.802505, 20.201605], - [-89.843453, 20.209275], - [-89.846165, 20.209687], - [-89.846096, 20.213771], - [-89.840678, 20.251028], - [-89.875661, 20.253102], - [-89.872382, 20.287628], - [-89.837964, 20.287176], - [-90.00374, 20.486501], - [-90.004174, 20.487022], - [-90.03969, 20.468221], - [-90.041688, 20.466451], - [-90.066812, 20.428194], - [-90.067211, 20.425226], - [-90.131038, 20.44275], - [-90.131571, 20.443078], - [-90.17848, 20.437656], - [-90.186298, 20.436932], - [-90.185497, 20.461181], - [-90.234208, 20.470467], - [-90.232508, 20.519894], - [-90.229241, 20.543563], - [-90.335236, 20.541312], - [-90.335236, 20.576348], - [-90.341138, 20.553701], - [-90.386649, 20.555586], - [-90.381821, 20.749543], - [-90.379357, 20.848327], - [-90.406833, 20.847746], - [-90.407018, 20.848668], - [-90.36678, 20.960179], - [-90.366452, 20.961057], - [-90.321409, 21.021363], - [-90.320422, 21.022052], - [-90.095177, 21.155291], - [-90.094612, 21.155553], - [-89.994505, 21.177332], - [-89.992228, 21.178128], - [-89.845307, 21.250749], - [-89.845128, 21.250812], - [-89.66999, 21.284915], - [-89.669652, 21.285085], - [-89.670957, 21.342249], - [-89.671266, 21.345325], - [-89.683787, 21.347397], - [-89.681369, 21.348869], - [-89.664706, 21.28842], - [-89.664419, 21.288413], - [-88.840691, 21.397991], - [-88.840622, 21.397874], - [-88.694851, 21.451182], - [-88.694739, 21.451073], - [-88.607509, 21.524393], - [-88.606679, 21.525086], - [-88.377363, 21.567549], - [-88.376569, 21.567759], - [-88.322638, 21.550567], - [-88.322519, 21.550451], - [-88.270059, 21.55569], - [-88.269908, 21.555657], - [-88.146638, 21.623637], - [-88.14502, 21.62395], - [-87.962908, 21.610131] - ] - ], - [ - [ - [-91.3869, 22.1107], - [-91.3869, 22.1107] - ] - ], - [ - [ - [-91.3809, 22.1173], - [-91.3809, 22.1173] - ] - ], - [ - [ - [-91.4082, 22.1175], - [-91.4082, 22.1175] - ] - ], - [ - [ - [-91.4055, 22.1192], - [-91.4055, 22.1192] - ] - ], - [ - [ - [-91.3884, 22.122], - [-91.3884, 22.122] - ] - ], - [ - [ - [-89.6677, 22.3742], - [-89.6677, 22.3742] - ] - ], - [ - [ - [-89.6603, 22.3746], - [-89.6603, 22.3746] - ] - ], - [ - [ - [-89.6635, 22.382], - [-89.6635, 22.382] - ] - ], - [ - [ - [-89.6941, 22.389], - [-89.6941, 22.389] - ] - ], - [ - [ - [-89.6862, 22.3889], - [-89.6862, 22.3889] - ] - ], - [ - [ - [-89.6852, 22.3967], - [-89.6852, 22.3967] - ] - ], - [ - [ - [-89.6832, 22.4007], - [-89.6832, 22.4007] - ] - ], - [ - [ - [-89.7432, 22.4433], - [-89.7432, 22.4433] - ] - ], - [ - [ - [-89.7558, 22.4497], - [-89.7696, 22.4533], - [-89.7699, 22.4534], - [-89.7558, 22.4497] - ] - ], - [ - [ - [-89.7579, 22.4572], - [-89.7579, 22.4572] - ] - ], - [ - [ - [-89.7457, 22.457], - [-89.7457, 22.457] - ] - ], - [ - [ - [-89.7664, 22.4648], - [-89.7664, 22.4648] - ] - ], - [ - [ - [-89.776, 22.4666], - [-89.776, 22.4666] - ] - ], - [ - [ - [-89.767, 22.4695], - [-89.767, 22.4695] - ] - ], - [ - [ - [-89.7629, 22.4731], - [-89.7629, 22.4731] - ] - ], - [ - [ - [-89.7608, 22.4747], - [-89.7608, 22.4747] - ] - ], - [ - [ - [-89.7763, 22.4877], - [-89.7746, 22.472], - [-89.7747, 22.4715], - [-89.7858, 22.4785], - [-89.7862, 22.4789], - [-89.7922, 22.5061], - [-89.7922, 22.5066], - [-89.7763, 22.4877] - ] - ], - [ - [ - [-89.758, 22.5143], - [-89.758, 22.5143] - ] - ], - [ - [ - [-89.7545, 22.5195], - [-89.7545, 22.5195] - ] - ], - [ - [ - [-89.7651, 22.5128], - [-89.7651, 22.5128] - ] - ], - [ - [ - [-89.7387, 22.5141], - [-89.7387, 22.5141] - ] - ], - [ - [ - [-89.728, 22.5279], - [-89.728, 22.5279] - ] - ], - [ - [ - [-89.7596, 22.5461], - [-89.77, 22.5348], - [-89.7701, 22.5353], - [-89.7596, 22.5461] - ] - ], - [ - [ - [-89.7793, 22.5397], - [-89.7793, 22.5397] - ] - ], - [ - [ - [-89.7346, 22.5426], - [-89.7346, 22.5426] - ] - ], - [ - [ - [-89.7419, 22.5337], - [-89.7419, 22.5337] - ] - ], - [ - [ - [-89.766, 22.5519], - [-89.766, 22.5519] - ] - ], - [ - [ - [-89.7445, 22.555], - [-89.7445, 22.555] - ] - ], - [ - [ - [-89.7402, 22.5607], - [-89.7402, 22.5607] - ] - ], - [ - [ - [-89.7644, 22.5608], - [-89.7644, 22.5608] - ] - ], - [ - [ - [-89.7456, 22.5658], - [-89.7456, 22.5658] - ] - ], - [ - [ - [-89.7431, 22.5749], - [-89.7431, 22.5749] - ] - ], - [ - [ - [-89.7825, 22.5176], - [-89.8065, 22.572], - [-89.8065, 22.5724], - [-89.7825, 22.5176] - ] - ], - [ - [ - [-89.7759, 22.5772], - [-89.7968, 22.5766], - [-89.7969, 22.577], - [-89.7759, 22.5772] - ] - ], - [ - [ - [-89.7727, 22.5798], - [-89.7727, 22.5798] - ] - ], - [ - [ - [-89.7987, 22.5797], - [-89.7987, 22.5797] - ] - ], - [ - [ - [-89.7937, 22.5882], - [-89.7937, 22.5882] - ] - ], - [ - [ - [-89.7914, 22.5922], - [-89.7914, 22.5922] - ] - ], - [ - [ - [-89.7749, 22.5871], - [-89.7749, 22.5871] - ] - ], - [ - [ - [-89.7776, 22.6037], - [-89.7776, 22.6037] - ] - ], - [ - [ - [-89.7822, 22.6065], - [-89.7822, 22.6065] - ] - ], - [ - [ - [-89.7298, 22.6096], - [-89.6578, 22.5837], - [-89.6574, 22.5834], - [-89.579, 22.4854], - [-89.579, 22.4849], - [-89.5907, 22.4229], - [-89.5908, 22.4225], - [-89.6244, 22.3808], - [-89.6248, 22.3805], - [-89.6593, 22.3686], - [-89.66, 22.3686], - [-89.6412, 22.3849], - [-89.6412, 22.3853], - [-89.6613, 22.3868], - [-89.6611, 22.3872], - [-89.6403, 22.397], - [-89.6401, 22.3973], - [-89.6704, 22.3848], - [-89.6709, 22.3849], - [-89.6605, 22.3937], - [-89.6604, 22.3941], - [-89.6891, 22.4112], - [-89.6893, 22.4114], - [-89.7054, 22.3929], - [-89.7058, 22.3931], - [-89.7136, 22.4199], - [-89.7139, 22.4203], - [-89.746, 22.4409], - [-89.7463, 22.4413], - [-89.7072, 22.4377], - [-89.7074, 22.4381], - [-89.7468, 22.4717], - [-89.7472, 22.472], - [-89.7615, 22.4656], - [-89.7619, 22.4658], - [-89.7534, 22.473], - [-89.7533, 22.4735], - [-89.7703, 22.4999], - [-89.7704, 22.5004], - [-89.7611, 22.5119], - [-89.7606, 22.5119], - [-89.7321, 22.4901], - [-89.7318, 22.4905], - [-89.7377, 22.5082], - [-89.7376, 22.5087], - [-89.7178, 22.5365], - [-89.7177, 22.5369], - [-89.7289, 22.5616], - [-89.729, 22.562], - [-89.7365, 22.5541], - [-89.7367, 22.5544], - [-89.7453, 22.5888], - [-89.7457, 22.5886], - [-89.7532, 22.5482], - [-89.7535, 22.5485], - [-89.7593, 22.5996], - [-89.7596, 22.5997], - [-89.7663, 22.5697], - [-89.7665, 22.5693], - [-89.7855, 22.5713], - [-89.7859, 22.5711], - [-89.7876, 22.5539], - [-89.7879, 22.5537], - [-89.7922, 22.5714], - [-89.7923, 22.5719], - [-89.7686, 22.5782], - [-89.7682, 22.5785], - [-89.7648, 22.6052], - [-89.7644, 22.6055], - [-89.734, 22.5984], - [-89.7335, 22.5984], - [-89.7298, 22.6096] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "04", - "name": "Campeche", - "id": 31, - "ISOCODE": "MX-CAM" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-91.956497, 20.196995], - [-91.956497, 20.196995] - ] - ], - [ - [ - [-91.978473, 20.204042], - [-91.978473, 20.204042] - ] - ], - [ - [ - [-91.963118, 20.201716], - [-91.963118, 20.201716] - ] - ], - [ - [ - [-90.482776, 20.210213], - [-90.482776, 20.210213] - ] - ], - [ - [ - [-90.497159, 20.3423], - [-90.497159, 20.3423] - ] - ], - [ - [ - [-90.470398, 20.621461], - [-90.470398, 20.621461] - ] - ], - [ - [ - [-90.461489, 20.639226], - [-90.461489, 20.639226] - ] - ], - [ - [ - [-90.452462, 20.682339], - [-90.453907, 20.656035], - [-90.454099, 20.655892], - [-90.466727, 20.674764], - [-90.466818, 20.675288], - [-90.458623, 20.693563], - [-90.458603, 20.693744], - [-90.452462, 20.682339] - ] - ], - [ - [ - [-90.379357, 20.848327], - [-90.381877, 20.747305], - [-90.386649, 20.555586], - [-90.341138, 20.553701], - [-90.335236, 20.576348], - [-90.335236, 20.541312], - [-90.234751, 20.54406], - [-90.229241, 20.543563], - [-90.231602, 20.482623], - [-90.234208, 20.470467], - [-90.185497, 20.461181], - [-90.184788, 20.461046], - [-90.186111, 20.441045], - [-90.186298, 20.436932], - [-90.131504, 20.442459], - [-90.131571, 20.443078], - [-90.100974, 20.425252], - [-90.067211, 20.425226], - [-90.041688, 20.466451], - [-90.03969, 20.468221], - [-90.005625, 20.477367], - [-90.004174, 20.487022], - [-89.838524, 20.28785], - [-89.837964, 20.287176], - [-89.872382, 20.287628], - [-89.874643, 20.263822], - [-89.875661, 20.253102], - [-89.840678, 20.251028], - [-89.846096, 20.213771], - [-89.846165, 20.209687], - [-89.843453, 20.209275], - [-89.802505, 20.201605], - [-89.802871, 20.164907], - [-89.793975, 20.136172], - [-89.752787, 20.176549], - [-89.748474, 20.17927], - [-89.684846, 20.102417], - [-89.598704, 19.998197], - [-89.60467, 19.938285], - [-89.58681, 19.92046], - [-89.5875, 19.87442], - [-89.526593, 19.77742], - [-89.525672, 19.775555], - [-89.497192, 19.772841], - [-89.475909, 19.77122], - [-89.479149, 19.740646], - [-89.491662, 19.742228], - [-89.47993, 19.716553], - [-89.47722, 19.711055], - [-89.162496, 19.437323], - [-89.146667, 19.423862], - [-89.146951, 19.133157], - [-89.13582, 19.132373], - [-89.144382, 18.755919], - [-89.155742, 18.753115], - [-89.150085, 18.475323], - [-89.150238, 18.451059], - [-89.134077, 18.450776], - [-89.12549, 18.450625], - [-89.12406, 18.428899], - [-89.121229, 18.38585], - [-89.129767, 18.385696], - [-89.138214, 18.385544], - [-89.13236, 18.293403], - [-89.151674, 18.293563], - [-89.158059, 18.221327], - [-89.142873, 18.224164], - [-89.14317, 18.175857], - [-89.143066, 18.14582], - [-89.163797, 18.14539], - [-89.200237, 18.144629], - [-89.202458, 18.083276], - [-89.151601, 18.082575], - [-89.144383, 18.082443], - [-89.144705, 18.06174], - [-89.144754, 18.057699], - [-89.163361, 18.057885], - [-89.163266, 18.041317], - [-89.163004, 18.018517], - [-89.195855, 18.02052], - [-89.206739, 18.02108], - [-89.207411, 17.993084], - [-89.207414, 17.992649], - [-89.206626, 17.965572], - [-89.205872, 17.9541], - [-89.190574, 17.953758], - [-89.15217, 17.95361], - [-89.151957, 17.940257], - [-89.151714, 17.815614], - [-90.978229, 17.815408], - [-90.98764, 17.815473], - [-90.987939, 17.962104], - [-90.987952, 17.962545], - [-91.117725, 17.96335], - [-91.1202, 17.963375], - [-91.116224, 17.97129], - [-91.113581, 17.97585], - [-91.130669, 17.98225], - [-91.133182, 17.95801], - [-91.146398, 17.972233], - [-91.144727, 17.97516], - [-91.217297, 17.975181], - [-91.21746, 17.974987], - [-91.326676, 18.062421], - [-91.327024, 18.062665], - [-91.384154, 18.064083], - [-91.384425, 18.064065], - [-91.503866, 18.116466], - [-91.504036, 18.116459], - [-91.50717, 18.130054], - [-91.516532, 18.130485], - [-91.508983, 18.170972], - [-91.509337, 18.171055], - [-91.524523, 18.159897], - [-91.534505, 18.146174], - [-91.579675, 18.158242], - [-91.579966, 18.15818], - [-91.578627, 18.148366], - [-91.572199, 18.142015], - [-91.609274, 18.098773], - [-91.609505, 18.098438], - [-91.624094, 17.949669], - [-91.62474, 17.949072], - [-91.613218, 17.913344], - [-91.612714, 17.912919], - [-91.629161, 17.906839], - [-91.633089, 17.905016], - [-91.636215, 17.878335], - [-91.638806, 17.873954], - [-91.75487, 17.951437], - [-91.760487, 17.957626], - [-91.757101, 17.939734], - [-91.762267, 17.939014], - [-91.772228, 17.945249], - [-91.804644, 17.972551], - [-91.865047, 17.982888], - [-91.867208, 17.983266], - [-91.898065, 18.011111], - [-91.900355, 18.012147], - [-91.940122, 18.012564], - [-91.966748, 18.015988], - [-91.977989, 18.041524], - [-91.978779, 18.04283], - [-92.041407, 18.078014], - [-92.042095, 18.078319], - [-92.038754, 18.097082], - [-92.039939, 18.09795], - [-92.081558, 18.08569], - [-92.082974, 18.085688], - [-92.121138, 18.10195], - [-92.121662, 18.101755], - [-92.148782, 18.149296], - [-92.160903, 18.155424], - [-92.161724, 18.193749], - [-92.164424, 18.197866], - [-92.15075, 18.208938], - [-92.148938, 18.210406], - [-92.181195, 18.271162], - [-92.183244, 18.274063], - [-92.172951, 18.275338], - [-92.17651, 18.425924], - [-92.176148, 18.458233], - [-92.308194, 18.456622], - [-92.310287, 18.455579], - [-92.321492, 18.470688], - [-92.322529, 18.473081], - [-92.356818, 18.443541], - [-92.358318, 18.44435], - [-92.364325, 18.463729], - [-92.365494, 18.464623], - [-92.412918, 18.485611], - [-92.414052, 18.487292], - [-92.426221, 18.557014], - [-92.42623, 18.557041], - [-92.462726, 18.61317], - [-92.465745, 18.616563], - [-92.467848, 18.647278], - [-92.46879, 18.650965], - [-91.981651, 18.699143], - [-91.981508, 18.69919], - [-91.956861, 18.697425], - [-91.95506, 18.696724], - [-91.908916, 18.636342], - [-91.908831, 18.636258], - [-91.856813, 18.612362], - [-91.855671, 18.611294], - [-91.840498, 18.664002], - [-91.840033, 18.6643], - [-91.72575, 18.685766], - [-91.723256, 18.686674], - [-91.5303, 18.7804], - [-91.498279, 18.79051], - [-91.392495, 18.892808], - [-91.391179, 18.893738], - [-91.115489, 19.033928], - [-91.113257, 19.035356], - [-90.902487, 19.181424], - [-90.8997, 19.183461], - [-90.762979, 19.302739], - [-90.762354, 19.30336], - [-90.723348, 19.358516], - [-90.722775, 19.359167], - [-90.706113, 19.46129], - [-90.706022, 19.461534], - [-90.711803, 19.562187], - [-90.71182, 19.562407], - [-90.685532, 19.62484], - [-90.685348, 19.626293], - [-90.712382, 19.671648], - [-90.712317, 19.671824], - [-90.671004, 19.717164], - [-90.670764, 19.717521], - [-90.662115, 19.757455], - [-90.661489, 19.758531], - [-90.522238, 19.858167], - [-90.521804, 19.858442], - [-90.53151, 19.863673], - [-90.529161, 19.865831], - [-90.50893, 19.866173], - [-90.508864, 19.866207], - [-90.44746, 19.959653], - [-90.447305, 19.959473], - [-90.469899, 19.984333], - [-90.470165, 19.984482], - [-90.46293, 20.013717], - [-90.46263, 20.013914], - [-90.490872, 20.060801], - [-90.491147, 20.060993], - [-90.478922, 20.112789], - [-90.478826, 20.113451], - [-90.495191, 20.159494], - [-90.495188, 20.159984], - [-90.477674, 20.184167], - [-90.477545, 20.184438], - [-90.50211, 20.497154], - [-90.502261, 20.497776], - [-90.448202, 20.63381], - [-90.44809, 20.633925], - [-90.453897, 20.703174], - [-90.45361, 20.70411], - [-90.407692, 20.76831], - [-90.407403, 20.768297], - [-90.413516, 20.820066], - [-90.412304, 20.824615], - [-90.404632, 20.846109], - [-90.404524, 20.846764], - [-90.379357, 20.848327] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "state_code": "23", - "name": "Quintana Roo", - "id": 32, - "ISOCODE": "MX-ROO" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-87.389749, 18.374174], - [-87.389749, 18.374174] - ] - ], - [ - [ - [-87.401617, 18.38124], - [-87.401617, 18.38124] - ] - ], - [ - [ - [-87.411551, 18.39207], - [-87.411551, 18.39207] - ] - ], - [ - [ - [-87.426125, 18.403942], - [-87.426125, 18.403942] - ] - ], - [ - [ - [-87.437999, 18.419432], - [-87.437999, 18.419432] - ] - ], - [ - [ - [-87.439242, 18.428457], - [-87.439242, 18.428457] - ] - ], - [ - [ - [-87.444563, 18.475415], - [-87.444563, 18.475415] - ] - ], - [ - [ - [-87.43654, 18.555382], - [-87.43654, 18.555382] - ] - ], - [ - [ - [-87.361919, 18.385145], - [-87.384509, 18.379367], - [-87.384319, 18.380163], - [-87.333617, 18.440493], - [-87.33216, 18.443775], - [-87.337156, 18.520104], - [-87.33702, 18.523015], - [-87.312618, 18.552872], - [-87.311606, 18.551303], - [-87.329764, 18.527635], - [-87.330984, 18.526432], - [-87.322124, 18.460854], - [-87.322931, 18.456561], - [-87.361919, 18.385145] - ] - ], - [ - [ - [-87.435689, 18.582907], - [-87.435689, 18.582907] - ] - ], - [ - [ - [-87.439516, 18.598437], - [-87.439516, 18.598437] - ] - ], - [ - [ - [-87.30945, 18.603577], - [-87.317784, 18.57785], - [-87.317793, 18.577813], - [-87.341235, 18.574369], - [-87.341235, 18.574492], - [-87.30945, 18.603577] - ] - ], - [ - [ - [-87.436376, 18.623655], - [-87.421303, 18.660152], - [-87.420279, 18.660005], - [-87.436376, 18.623655] - ] - ], - [ - [ - [-87.407823, 18.676688], - [-87.394443, 18.711255], - [-87.394049, 18.710142], - [-87.407823, 18.676688] - ] - ], - [ - [ - [-87.390992, 18.720347], - [-87.390992, 18.720347] - ] - ], - [ - [ - [-87.385949, 18.731332], - [-87.385949, 18.731332] - ] - ], - [ - [ - [-87.304984, 18.741913], - [-87.304984, 18.741913] - ] - ], - [ - [ - [-87.273826, 18.739437], - [-87.24535, 18.683497], - [-87.245254, 18.681936], - [-87.265998, 18.619218], - [-87.266937, 18.620613], - [-87.253009, 18.664147], - [-87.252722, 18.667404], - [-87.273826, 18.739437] - ] - ], - [ - [ - [-87.279717, 18.740771], - [-87.279717, 18.740771] - ] - ], - [ - [ - [-87.37785, 18.739345], - [-87.37785, 18.739345] - ] - ], - [ - [ - [-87.315754, 18.745589], - [-87.315754, 18.745589] - ] - ], - [ - [ - [-87.299137, 18.75097], - [-87.299137, 18.75097] - ] - ], - [ - [ - [-87.319683, 18.753181], - [-87.319683, 18.753181] - ] - ], - [ - [ - [-87.28904, 18.75174], - [-87.28904, 18.75174] - ] - ], - [ - [ - [-87.320254, 18.758977], - [-87.320254, 18.758977] - ] - ], - [ - [ - [-87.328513, 18.753984], - [-87.328513, 18.753984] - ] - ], - [ - [ - [-87.356647, 18.765558], - [-87.356647, 18.765558] - ] - ], - [ - [ - [-87.360496, 18.769924], - [-87.360496, 18.769924] - ] - ], - [ - [ - [-87.317472, 18.766651], - [-87.317472, 18.766651] - ] - ], - [ - [ - [-87.345194, 18.779298], - [-87.345194, 18.779298] - ] - ], - [ - [ - [-87.641145, 19.187996], - [-87.641145, 19.187996] - ] - ], - [ - [ - [-87.62966, 19.192781], - [-87.62966, 19.192781] - ] - ], - [ - [ - [-87.630025, 19.202698], - [-87.630025, 19.202698] - ] - ], - [ - [ - [-87.650117, 19.215436], - [-87.614922, 19.236251], - [-87.614564, 19.236026], - [-87.650117, 19.215436] - ] - ], - [ - [ - [-87.601982, 19.235745], - [-87.601982, 19.235745] - ] - ], - [ - [ - [-87.467495, 19.333908], - [-87.467495, 19.333908] - ] - ], - [ - [ - [-87.510644, 19.366093], - [-87.478212, 19.338435], - [-87.47821, 19.337527], - [-87.510644, 19.366093] - ] - ], - [ - [ - [-87.570943, 19.398193], - [-87.570943, 19.398193] - ] - ], - [ - [ - [-87.55194, 19.412819], - [-87.55194, 19.412819] - ] - ], - [ - [ - [-87.659066, 19.504476], - [-87.659066, 19.504476] - ] - ], - [ - [ - [-87.660594, 19.509892], - [-87.660594, 19.509892] - ] - ], - [ - [ - [-87.575909, 19.565724], - [-87.575909, 19.565724] - ] - ], - [ - [ - [-87.567141, 19.576591], - [-87.567141, 19.576591] - ] - ], - [ - [ - [-87.659309, 19.587399], - [-87.659309, 19.587399] - ] - ], - [ - [ - [-87.69993, 19.59099], - [-87.675458, 19.587705], - [-87.675457, 19.587407], - [-87.69993, 19.59099] - ] - ], - [ - [ - [-87.647819, 19.586726], - [-87.647819, 19.586726] - ] - ], - [ - [ - [-87.561914, 19.580135], - [-87.561914, 19.580135] - ] - ], - [ - [ - [-87.638243, 19.587398], - [-87.638243, 19.587398] - ] - ], - [ - [ - [-87.557697, 19.583283], - [-87.557697, 19.583283] - ] - ], - [ - [ - [-87.496495, 19.589949], - [-87.496495, 19.589949] - ] - ], - [ - [ - [-87.490338, 19.597635], - [-87.490338, 19.597635] - ] - ], - [ - [ - [-87.462117, 19.594352], - [-87.462117, 19.594352] - ] - ], - [ - [ - [-87.455412, 19.598176], - [-87.455412, 19.598176] - ] - ], - [ - [ - [-87.492382, 19.604858], - [-87.479263, 19.602408], - [-87.478359, 19.602315], - [-87.492382, 19.604858] - ] - ], - [ - [ - [-87.462933, 19.60076], - [-87.462933, 19.60076] - ] - ], - [ - [ - [-87.519027, 19.612741], - [-87.519027, 19.612741] - ] - ], - [ - [ - [-87.492287, 19.610957], - [-87.492287, 19.610957] - ] - ], - [ - [ - [-87.464019, 19.606739], - [-87.464019, 19.606739] - ] - ], - [ - [ - [-87.697566, 19.643078], - [-87.697566, 19.643078] - ] - ], - [ - [ - [-87.515032, 19.62893], - [-87.515032, 19.62893] - ] - ], - [ - [ - [-87.674086, 19.641218], - [-87.674086, 19.641218] - ] - ], - [ - [ - [-87.707994, 19.649977], - [-87.707994, 19.649977] - ] - ], - [ - [ - [-87.457254, 19.692196], - [-87.457254, 19.692196] - ] - ], - [ - [ - [-87.466273, 19.698542], - [-87.466273, 19.698542] - ] - ], - [ - [ - [-87.475886, 19.7046], - [-87.475886, 19.7046] - ] - ], - [ - [ - [-87.478848, 19.703784], - [-87.478848, 19.703784] - ] - ], - [ - [ - [-87.501746, 19.711465], - [-87.479916, 19.705173], - [-87.479681, 19.704913], - [-87.501746, 19.711465] - ] - ], - [ - [ - [-86.86484, 20.548219], - [-86.86484, 20.548219] - ] - ], - [ - [ - [-86.732367, 20.565569], - [-86.795049, 20.463136], - [-86.7952, 20.462862], - [-86.973666, 20.280846], - [-86.974182, 20.280421], - [-86.990466, 20.271943], - [-86.99071, 20.272047], - [-87.016322, 20.29858], - [-87.01676, 20.298551], - [-87.025164, 20.365936], - [-87.025267, 20.366368], - [-87.007623, 20.429345], - [-87.007494, 20.429848], - [-86.927287, 20.550947], - [-86.927225, 20.551015], - [-86.897393, 20.565549], - [-86.896964, 20.56558], - [-86.870095, 20.537467], - [-86.869783, 20.537303], - [-86.851115, 20.550109], - [-86.85112, 20.550326], - [-86.814118, 20.541715], - [-86.81401, 20.541627], - [-86.823415, 20.553749], - [-86.82332, 20.554511], - [-86.769538, 20.560354], - [-86.768712, 20.560635], - [-86.729496, 20.591607], - [-86.728284, 20.592063], - [-86.732367, 20.565569] - ] - ], - [ - [ - [-86.748595, 21.264835], - [-86.710628, 21.201839], - [-86.710405, 21.201454], - [-86.742431, 21.234434], - [-86.742553, 21.234361], - [-86.748595, 21.264835] - ] - ], - [ - [ - [-86.851709, 21.435972], - [-86.887073, 21.416589], - [-86.888329, 21.416808], - [-86.875385, 21.426155], - [-86.874821, 21.426331], - [-86.884149, 21.433613], - [-86.883586, 21.433994], - [-86.851709, 21.435972] - ] - ], - [ - [ - [-86.903171, 21.465974], - [-86.913517, 21.44979], - [-86.913618, 21.450526], - [-86.903171, 21.465974] - ] - ], - [ - [ - [-86.936137, 21.47548], - [-86.936137, 21.47548] - ] - ], - [ - [ - [-86.921916, 21.477699], - [-86.910817, 21.468244], - [-86.910737, 21.467639], - [-86.921916, 21.477699] - ] - ], - [ - [ - [-86.975898, 21.534345], - [-86.975898, 21.534345] - ] - ], - [ - [ - [-86.797144, 21.513525], - [-86.784661, 21.462244], - [-86.783882, 21.46109], - [-86.797144, 21.513525] - ] - ], - [ - [ - [-87.004153, 21.567657], - [-87.004153, 21.567657] - ] - ], - [ - [ - [-87.022806, 21.573781], - [-87.022806, 21.573781] - ] - ], - [ - [ - [-87.085747, 21.589414], - [-87.011006, 21.557662], - [-87.010305, 21.557443], - [-86.975572, 21.511474], - [-86.974827, 21.510542], - [-86.969728, 21.529594], - [-86.970204, 21.531333], - [-86.997099, 21.541186], - [-86.997659, 21.541354], - [-86.991971, 21.56305], - [-86.991396, 21.563541], - [-86.953507, 21.515778], - [-86.952319, 21.514687], - [-86.952505, 21.489954], - [-86.952455, 21.488595], - [-86.888258, 21.405865], - [-86.886736, 21.403546], - [-86.850916, 21.255862], - [-86.8485, 21.251873], - [-86.82055, 21.245342], - [-86.820243, 21.24577], - [-86.829478, 21.253415], - [-86.831563, 21.253726], - [-86.827182, 21.296693], - [-86.827263, 21.297447], - [-86.792523, 21.341043], - [-86.792161, 21.342108], - [-86.827718, 21.411443], - [-86.827921, 21.412998], - [-86.812022, 21.413819], - [-86.809835, 21.412905], - [-86.795278, 21.386039], - [-86.795054, 21.385918], - [-86.796518, 21.4085], - [-86.795948, 21.408082], - [-86.789899, 21.351134], - [-86.7904, 21.345641], - [-86.815738, 21.286801], - [-86.815873, 21.283258], - [-86.801362, 21.238416], - [-86.801235, 21.23825], - [-86.804089, 21.164453], - [-86.804037, 21.16418], - [-86.788062, 21.143896], - [-86.788106, 21.143475], - [-86.740766, 21.134998], - [-86.740599, 21.134896], - [-86.766291, 21.096238], - [-86.768922, 21.089859], - [-86.778511, 21.033105], - [-86.778629, 21.032535], - [-86.8098, 21.029186], - [-86.812968, 21.023054], - [-86.877792, 20.841726], - [-86.877925, 20.841402], - [-86.940103, 20.782543], - [-86.940453, 20.782329], - [-86.962572, 20.73046], - [-86.962732, 20.73009], - [-87.009249, 20.703224], - [-87.010243, 20.702374], - [-87.099204, 20.592939], - [-87.099002, 20.59277], - [-87.280792, 20.44737], - [-87.28224, 20.446063], - [-87.369567, 20.286126], - [-87.369791, 20.285595], - [-87.422398, 20.227826], - [-87.423547, 20.226242], - [-87.478193, 20.078748], - [-87.478391, 20.076902], - [-87.476781, 20.001683], - [-87.476266, 19.998992], - [-87.430195, 19.887818], - [-87.4301, 19.886841], - [-87.473219, 19.818826], - [-87.473867, 19.818753], - [-87.469447, 19.781506], - [-87.469644, 19.780703], - [-87.487265, 19.800989], - [-87.487191, 19.801296], - [-87.431288, 19.887081], - [-87.431161, 19.888261], - [-87.435262, 19.914985], - [-87.435314, 19.915232], - [-87.470974, 19.944249], - [-87.471011, 19.944249], - [-87.46421, 19.895149], - [-87.464209, 19.894687], - [-87.447791, 19.890204], - [-87.447451, 19.890206], - [-87.459362, 19.858601], - [-87.459374, 19.858391], - [-87.473493, 19.856509], - [-87.473877, 19.856099], - [-87.497308, 19.807172], - [-87.497723, 19.806904], - [-87.545266, 19.795824], - [-87.545437, 19.795776], - [-87.554662, 19.808473], - [-87.554855, 19.808517], - [-87.578789, 19.790424], - [-87.578911, 19.790366], - [-87.642785, 19.688062], - [-87.643024, 19.687765], - [-87.666351, 19.61724], - [-87.666779, 19.616488], - [-87.689275, 19.626066], - [-87.689396, 19.626225], - [-87.660828, 19.634103], - [-87.660685, 19.634263], - [-87.6496, 19.6868], - [-87.6491, 19.6881], - [-87.742176, 19.663896], - [-87.742279, 19.66366], - [-87.748625, 19.599858], - [-87.748472, 19.59948], - [-87.707715, 19.573187], - [-87.707581, 19.57306], - [-87.702239, 19.550277], - [-87.702122, 19.550201], - [-87.677114, 19.569283], - [-87.676845, 19.56922], - [-87.669469, 19.537974], - [-87.669357, 19.537551], - [-87.687509, 19.531829], - [-87.687542, 19.531734], - [-87.665856, 19.529815], - [-87.6638, 19.5294], - [-87.669919, 19.501883], - [-87.6695, 19.501], - [-87.610233, 19.554055], - [-87.610077, 19.5541], - [-87.551008, 19.565967], - [-87.550417, 19.566099], - [-87.531933, 19.562089], - [-87.531461, 19.561964], - [-87.5258, 19.5405], - [-87.5257, 19.5405], - [-87.4939, 19.5697], - [-87.4924, 19.5707], - [-87.5085, 19.5761], - [-87.5099, 19.5764], - [-87.5042, 19.5885], - [-87.504788, 19.590132], - [-87.4534, 19.596], - [-87.4517, 19.596], - [-87.45453, 19.647595], - [-87.454454, 19.648017], - [-87.410747, 19.592132], - [-87.410639, 19.591957], - [-87.440012, 19.469577], - [-87.440203, 19.469031], - [-87.527684, 19.39443], - [-87.527875, 19.394316], - [-87.564565, 19.39389], - [-87.564758, 19.394185], - [-87.542611, 19.397848], - [-87.542181, 19.39819], - [-87.535373, 19.428547], - [-87.535399, 19.429047], - [-87.604973, 19.396934], - [-87.60532, 19.396711], - [-87.633845, 19.374878], - [-87.635955, 19.373434], - [-87.667516, 19.297394], - [-87.6692, 19.295], - [-87.6582, 19.2777], - [-87.6584, 19.2741], - [-87.685934, 19.235626], - [-87.686851, 19.234752], - [-87.674322, 19.228222], - [-87.673597, 19.227952], - [-87.683117, 19.205503], - [-87.683014, 19.205023], - [-87.638113, 19.177249], - [-87.637759, 19.177154], - [-87.5874, 19.2454], - [-87.5867, 19.2454], - [-87.5778, 19.269], - [-87.577823, 19.269845], - [-87.612444, 19.238736], - [-87.611988, 19.240122], - [-87.55621, 19.295947], - [-87.556211, 19.296091], - [-87.490212, 19.325739], - [-87.489808, 19.326076], - [-87.445668, 19.312431], - [-87.445565, 19.311712], - [-87.536355, 19.210333], - [-87.537243, 19.207976], - [-87.549798, 19.085139], - [-87.5499, 19.084661], - [-87.626924, 18.940835], - [-87.627432, 18.939661], - [-87.672115, 18.756637], - [-87.672212, 18.756222], - [-87.712972, 18.707094], - [-87.71316, 18.706678], - [-87.739887, 18.54639], - [-87.739955, 18.545467], - [-87.761676, 18.497934], - [-87.762057, 18.496928], - [-87.764111, 18.418457], - [-87.764108, 18.417832], - [-87.823209, 18.323123], - [-87.823756, 18.321968], - [-87.849341, 18.184821], - [-87.84959, 18.184387], - [-87.867511, 18.188239], - [-87.902426, 18.142692], - [-87.925453, 18.160236], - [-87.999989, 18.159593], - [-88.030299, 18.160361], - [-88.030644, 18.321767], - [-88.030366, 18.414794], - [-88.142556, 18.415283], - [-88.249634, 18.415552], - [-88.250094, 18.473072], - [-88.326069, 18.489854], - [-88.326853, 18.490177], - [-88.379159, 18.478953], - [-88.380133, 18.478946], - [-88.402034, 18.496459], - [-88.402395, 18.496658], - [-88.446671, 18.475659], - [-88.447141, 18.475592], - [-88.476084, 18.494714], - [-88.476423, 18.494674], - [-88.519821, 18.460442], - [-88.520587, 18.45925], - [-88.551319, 18.376611], - [-88.551638, 18.376148], - [-88.544316, 18.360552], - [-88.544385, 18.360024], - [-88.605588, 18.292124], - [-88.605832, 18.291741], - [-88.615362, 18.223673], - [-88.615544, 18.223278], - [-88.696621, 18.183191], - [-88.697564, 18.182419], - [-88.68001, 18.161054], - [-88.680089, 18.160185], - [-88.717454, 18.11019], - [-88.718608, 18.108829], - [-88.716352, 18.061621], - [-88.716687, 18.060526], - [-88.765596, 18.034779], - [-88.766652, 18.034298], - [-88.784308, 17.980151], - [-88.784455, 17.979861], - [-88.85895, 17.92547], - [-88.859435, 17.925191], - [-88.859446, 17.89612], - [-88.859766, 17.894461], - [-88.913287, 17.910351], - [-88.913682, 17.910595], - [-88.944057, 17.958133], - [-88.94478, 17.95913], - [-88.986956, 17.94718], - [-88.987224, 17.947284], - [-89.000505, 17.984003], - [-89.000621, 17.984429], - [-89.036188, 18.004665], - [-89.037521, 18.005122], - [-89.132326, 17.972208], - [-89.132705, 17.972034], - [-89.151563, 17.941386], - [-89.151957, 17.940257], - [-89.15217, 17.95361], - [-89.202306, 17.95402], - [-89.205872, 17.9541], - [-89.207011, 18.014593], - [-89.206739, 18.02108], - [-89.193016, 18.020347], - [-89.163004, 18.018517], - [-89.163361, 18.057885], - [-89.144754, 18.057699], - [-89.144497, 18.076926], - [-89.144383, 18.082443], - [-89.202458, 18.083276], - [-89.200237, 18.144629], - [-89.163669, 18.145393], - [-89.143066, 18.14582], - [-89.142873, 18.224164], - [-89.158059, 18.221327], - [-89.151674, 18.293563], - [-89.13236, 18.293403], - [-89.129767, 18.385696], - [-89.121229, 18.38585], - [-89.134148, 18.450778], - [-89.150238, 18.451059], - [-89.153002, 18.740977], - [-89.155742, 18.753115], - [-89.144382, 18.755919], - [-89.137563, 19.111212], - [-89.13582, 19.132373], - [-89.146951, 19.133157], - [-89.146926, 19.281495], - [-89.146667, 19.423862], - [-89.167522, 19.441596], - [-89.296562, 19.551174], - [-89.219557, 19.608022], - [-89.222869, 19.636657], - [-89.19025, 19.633318], - [-89.189203, 19.644006], - [-89.144862, 19.637399], - [-89.149521, 19.581249], - [-89.109024, 19.582349], - [-89.108392, 19.612338], - [-89.132646, 19.623259], - [-89.123399, 19.703424], - [-89.066379, 19.683642], - [-89.0362, 19.67804], - [-89.030524, 19.708832], - [-88.997529, 19.704884], - [-88.996738, 19.711529], - [-88.994741, 19.72744], - [-89.043771, 19.72227], - [-89.048827, 19.721493], - [-89.027824, 19.770544], - [-89.025163, 19.77671], - [-89.004785, 19.772146], - [-89.004087, 19.772007], - [-88.999645, 19.796954], - [-88.999468, 19.797994], - [-88.976109, 19.810766], - [-88.974452, 19.818101], - [-88.958077, 19.810467], - [-88.943852, 19.813443], - [-88.944935, 19.798725], - [-88.945434, 19.791946], - [-88.920294, 19.803974], - [-88.911104, 19.800938], - [-88.900005, 19.858313], - [-88.900488, 19.861114], - [-88.890569, 19.860969], - [-88.879125, 19.862393], - [-88.87999, 19.876178], - [-88.880192, 19.878125], - [-88.832139, 19.881606], - [-88.825926, 19.879926], - [-88.827365, 19.904488], - [-88.829437, 19.906015], - [-88.817161, 19.904943], - [-88.816503, 19.904474], - [-88.783961, 20.001687], - [-88.783503, 20.00818], - [-88.705655, 20.011209], - [-88.700176, 20.010357], - [-88.690742, 20.086007], - [-88.690609, 20.089856], - [-88.576682, 20.148078], - [-88.507621, 20.143391], - [-88.509998, 20.191055], - [-88.51993, 20.192328], - [-88.405194, 20.246145], - [-88.409128, 20.252097], - [-88.313146, 20.254024], - [-88.308788, 20.25351], - [-88.266815, 20.26912], - [-88.264634, 20.290342], - [-88.167162, 20.285418], - [-88.13649, 20.281372], - [-87.994723, 20.416317], - [-87.99296, 20.417993], - [-87.993855, 20.433961], - [-87.995065, 20.447316], - [-87.977966, 20.446994], - [-87.962742, 20.446706], - [-87.755237, 20.643404], - [-87.744259, 20.653787], - [-87.578341, 20.925737], - [-87.533145, 20.999602], - [-87.534821, 21.464868], - [-87.534913, 21.490222], - [-87.48909, 21.485275], - [-87.488333, 21.485183], - [-87.4735, 21.457345], - [-87.473244, 21.457226], - [-87.432701, 21.468804], - [-87.431086, 21.468572], - [-87.341652, 21.43269], - [-87.341096, 21.432266], - [-87.272987, 21.43234], - [-87.27213, 21.432341], - [-87.273964, 21.442624], - [-87.273864, 21.443284], - [-87.233067, 21.418704], - [-87.232462, 21.418611], - [-87.216435, 21.442908], - [-87.21564, 21.443262], - [-87.188929, 21.439895], - [-87.188375, 21.439707], - [-87.158576, 21.462828], - [-87.158375, 21.463253], - [-87.112003, 21.471157], - [-87.111732, 21.471221], - [-87.09931, 21.531819], - [-87.098857, 21.532196], - [-87.128608, 21.554066], - [-87.128709, 21.554537], - [-87.085747, 21.589414] - ] - ], - [ - [ - [-87.03398, 21.585845], - [-86.992516, 21.56567], - [-86.992314, 21.564585], - [-87.03398, 21.585845] - ] - ], - [ - [ - [-87.102531, 21.605419], - [-87.046099, 21.586321], - [-87.046184, 21.585134], - [-87.105311, 21.601561], - [-87.106068, 21.601277], - [-87.128726, 21.569025], - [-87.129533, 21.568364], - [-87.209496, 21.519994], - [-87.209942, 21.519645], - [-87.261255, 21.530045], - [-87.261962, 21.530421], - [-87.286533, 21.512407], - [-87.289846, 21.511123], - [-87.287235, 21.52239], - [-87.287381, 21.525879], - [-87.312932, 21.525905], - [-87.315879, 21.525836], - [-87.32725, 21.54921], - [-87.327806, 21.549445], - [-87.385307, 21.505142], - [-87.386261, 21.504322], - [-87.396345, 21.511545], - [-87.396738, 21.512494], - [-87.335948, 21.565334], - [-87.334922, 21.56618], - [-87.301308, 21.545739], - [-87.297714, 21.544848], - [-87.228152, 21.542588], - [-87.221191, 21.543716], - [-87.102531, 21.605419] - ] - ] - ] - } - } - ], - "style": { - "stroke": "#000000", - "fill": "#3498DB", - "stroke-width": 1, - "fill-opacity": 0.8 - } -} diff --git a/backend/server/static/data/se.json b/backend/server/static/data/se.json deleted file mode 100644 index 0e3a7ef..0000000 --- a/backend/server/static/data/se.json +++ /dev/null @@ -1,4375 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "id": "5950", - "properties": { - "name": "Blekinge", - "ISOCODE": "SE-K", - "density": 0, - "path": "/world/Sweden/Blekinge" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [14.571692, 56.199631], - [14.549294, 56.22433], - [14.493297, 56.218306], - [14.440534, 56.230139], - [14.432274, 56.273924], - [14.410644, 56.306663], - [14.389346, 56.34119], - [14.411509, 56.392395], - [14.468415, 56.40204], - [14.524113, 56.458071], - [14.596628, 56.451776], - [14.668357, 56.40091], - [14.709738, 56.390819], - [14.802183, 56.382091], - [14.879696, 56.363295], - [14.920314, 56.383279], - [14.965603, 56.437939], - [15.018739, 56.46021], - [15.1263, 56.461223], - [15.134868, 56.439024], - [15.193455, 56.439219], - [15.202063, 56.465826], - [15.251069, 56.482822], - [15.295673, 56.462098], - [15.335467, 56.486835], - [15.397778, 56.499377], - [15.481077, 56.482255], - [15.492359, 56.515332], - [15.56411, 56.500064], - [15.590232, 56.469506], - [15.639212, 56.470076], - [15.655409, 56.444331], - [15.677092, 56.418851], - [15.730499, 56.410058], - [15.793941, 56.342689], - [15.850886, 56.320939], - [15.945668, 56.32385], - [15.987303, 56.306643], - [16.051779, 56.324125], - [16.010612, 56.236313], - [15.954949, 56.174791], - [15.912381, 56.157663], - [15.851109, 56.083813], - [15.787262, 56.116888], - [15.71074, 56.091014], - [15.664136, 56.099394], - [15.726235, 56.133452], - [15.742301, 56.163198], - [15.69267, 56.188067], - [15.593546, 56.178012], - [15.560697, 56.19091], - [15.495396, 56.177472], - [15.456451, 56.15575], - [15.410572, 56.183893], - [15.385923, 56.15826], - [15.317038, 56.137108], - [15.293481, 56.180122], - [15.253007, 56.171703], - [15.163987, 56.162516], - [15.09662, 56.164662], - [15.060275, 56.187871], - [15.022164, 56.163574], - [14.950904, 56.162249], - [14.850227, 56.158942], - [14.774776, 56.152336], - [14.732955, 56.15286], - [14.679337, 56.159433], - [14.684451, 56.117607], - [14.721067, 56.072208], - [14.781885, 56.036298], - [14.726788, 55.999622], - [14.662864, 56.001363], - [14.607912, 56.017027], - [14.545672, 56.045697], - [14.55409, 56.074148], - [14.594618, 56.084594], - [14.571692, 56.199631] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5963", - "properties": { - "name": "Dalarna", - "ISOCODE": "SE-W", - "density": 0, - "path": "/world/Sweden/Dalarna" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [13.949398, 60.266798], - [13.967804, 60.188652], - [13.848025, 60.268447], - [13.692454, 60.41757], - [13.567866, 60.421451], - [13.496855, 60.447148], - [13.437233, 60.527082], - [13.305194, 60.636806], - [13.260102, 60.698038], - [13.204982, 60.69829], - [13.175439, 60.766119], - [12.702387, 61.007994], - [12.67632, 61.058109], - [12.697828, 61.154121], - [12.781101, 61.187406], - [12.827458, 61.247131], - [12.86223, 61.360709], - [12.582828, 61.57406], - [12.434673, 61.567841], - [12.160884, 61.725341], - [12.302202, 62.261592], - [12.616807, 62.221612], - [12.795656, 62.23038], - [12.940514, 62.146344], - [13.038443, 62.08537], - [13.159416, 62.027092], - [13.295778, 62.061914], - [13.322772, 62.017658], - [13.371377, 62.010471], - [13.20924, 61.935186], - [13.416074, 61.82666], - [13.514506, 61.736383], - [13.506641, 61.691581], - [13.56471, 61.655073], - [13.613103, 61.671244], - [13.89015, 61.651166], - [13.983116, 61.634682], - [14.201418, 61.632642], - [14.356786, 61.613177], - [14.41477, 61.586199], - [14.500716, 61.630198], - [14.657637, 61.601272], - [14.684107, 61.547636], - [14.647643, 61.500556], - [14.7484, 61.512063], - [14.802598, 61.500438], - [14.917187, 61.505747], - [15.069327, 61.492816], - [15.159007, 61.604053], - [15.230175, 61.512417], - [15.654308, 61.223408], - [15.68075, 61.131433], - [15.758098, 61.060165], - [15.934091, 61.012191], - [16.142542, 61.000705], - [16.240161, 60.878355], - [16.400903, 60.787688], - [16.374772, 60.73975], - [16.304972, 60.713166], - [16.322127, 60.679508], - [16.241252, 60.618551], - [16.147161, 60.604859], - [16.233247, 60.519969], - [16.275301, 60.511983], - [16.300985, 60.483233], - [16.40304, 60.381503], - [16.52059, 60.364499], - [16.579017, 60.340872], - [16.587553, 60.304058], - [16.628302, 60.292395], - [16.639214, 60.237297], - [16.720361, 60.199881], - [16.5701, 60.196362], - [16.516243, 60.185271], - [16.515507, 60.154497], - [16.420431, 60.124212], - [16.377732, 60.08517], - [16.191697, 60.076077], - [16.153167, 60.086272], - [16.170559, 60.126903], - [16.10659, 60.14707], - [16.052881, 60.150286], - [16.019263, 60.190922], - [15.966668, 60.198868], - [15.893911, 60.168725], - [15.779051, 60.182169], - [15.754954, 60.149599], - [15.715352, 60.135576], - [15.71848, 60.1028], - [15.662605, 60.049858], - [15.709452, 60.018217], - [15.67789, 59.945182], - [15.608909, 59.958767], - [15.530114, 59.96139], - [15.481482, 59.906177], - [15.401702, 59.86114], - [15.324547, 59.929304], - [15.21681, 59.991204], - [15.12429, 60.025065], - [15.066472, 60.069705], - [15.018435, 60.064976], - [14.993258, 60.08256], - [14.923553, 60.060822], - [14.852924, 60.086111], - [14.846076, 60.122621], - [14.791183, 60.11995], - [14.717224, 60.094704], - [14.745337, 60.002925], - [14.438386, 60.025714], - [14.215313, 60.098742], - [14.186498, 60.175911], - [14.137722, 60.244332], - [14.038642, 60.238516], - [14.018711, 60.268288], - [13.949398, 60.266798] - ], - [ - [14.6713, 60.828977], - [14.735164, 60.780703], - [14.907237, 60.82466], - [14.965694, 60.753031], - [14.98241, 60.829943], - [15.057387, 60.845433], - [15.119606, 60.88083], - [15.036685, 60.90858], - [14.983113, 60.884147], - [14.90762, 60.860805], - [14.746317, 60.939222], - [14.686737, 60.938489], - [14.602222, 60.996719], - [14.552503, 60.971952], - [14.567232, 60.935127], - [14.640738, 60.931646], - [14.691018, 60.905747], - [14.643971, 60.893537], - [14.566134, 60.893615], - [14.6713, 60.828977] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5961", - "properties": { - "name": "Gävleborg", - "ISOCODE": "SE-X", - "density": 0, - "path": "/world/Sweden/Gävleborg" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [16.400903, 60.787688], - [16.240161, 60.878355], - [16.142542, 61.000705], - [15.934091, 61.012191], - [15.758098, 61.060165], - [15.68075, 61.131433], - [15.654308, 61.223408], - [15.230175, 61.512417], - [15.159007, 61.604053], - [15.069327, 61.492816], - [14.917187, 61.505747], - [14.802598, 61.500438], - [14.7484, 61.512063], - [14.647643, 61.500556], - [14.684107, 61.547636], - [14.657637, 61.601272], - [14.500716, 61.630198], - [14.526671, 61.791608], - [14.689947, 61.912379], - [14.72885, 61.879853], - [14.798338, 61.900077], - [14.872821, 61.838701], - [14.895676, 61.890023], - [15.040013, 61.884827], - [15.103666, 61.861808], - [15.102949, 61.908844], - [15.111489, 61.962674], - [15.083342, 62.007467], - [15.412374, 62.128381], - [15.395662, 62.203418], - [15.334493, 62.222802], - [15.324458, 62.289022], - [15.478617, 62.352934], - [15.620056, 62.358247], - [16.021537, 62.270777], - [16.060189, 62.250909], - [16.240344, 62.253612], - [16.512874, 62.248643], - [16.794786, 62.215318], - [16.905774, 62.183075], - [16.969356, 62.188173], - [17.092458, 62.171327], - [17.142944, 62.184445], - [17.237118, 62.162065], - [17.328438, 62.168828], - [17.479641, 62.147357], - [17.435511, 62.012866], - [17.359166, 61.952556], - [17.316862, 61.863951], - [17.386407, 61.82726], - [17.37985, 61.767777], - [17.413586, 61.740101], - [17.507291, 61.721092], - [17.469909, 61.636428], - [17.40851, 61.647814], - [17.373822, 61.684646], - [17.269431, 61.706085], - [17.2246, 61.658208], - [17.174063, 61.60342], - [17.113034, 61.551137], - [17.178911, 61.477847], - [17.105967, 61.418484], - [17.120133, 61.367343], - [17.239516, 61.297763], - [17.202239, 61.234876], - [17.1323, 61.201373], - [17.158032, 61.056875], - [17.14333, 61.031836], - [17.220497, 61.001286], - [17.161579, 60.952561], - [17.27052, 60.852668], - [17.237354, 60.802248], - [17.343995, 60.747795], - [17.216431, 60.691094], - [17.350723, 60.652299], - [17.300719, 60.471103], - [17.204033, 60.428678], - [17.199449, 60.30916], - [17.100329, 60.268682], - [16.905685, 60.287104], - [16.864918, 60.262563], - [16.881085, 60.241555], - [16.797354, 60.20168], - [16.720361, 60.199881], - [16.639214, 60.237297], - [16.628302, 60.292395], - [16.587553, 60.304058], - [16.579017, 60.340872], - [16.52059, 60.364499], - [16.40304, 60.381503], - [16.300985, 60.483233], - [16.275301, 60.511983], - [16.233247, 60.519969], - [16.147161, 60.604859], - [16.241252, 60.618551], - [16.322127, 60.679508], - [16.304972, 60.713166], - [16.374772, 60.73975], - [16.400903, 60.787688] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5954", - "properties": { - "name": "Gotland", - "ISOCODE": "SE-I", - "density": 0, - "path": "/world/Sweden/Gotland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [18.480172, 57.836026], - [18.537503, 57.845809], - [18.583853, 57.852851], - [18.606794, 57.894586], - [18.653701, 57.914294], - [18.706205, 57.929877], - [18.769997, 57.849859], - [18.818016, 57.916737], - [18.858981, 57.938713], - [18.999512, 57.9193], - [19.05443, 57.941815], - [19.074086, 57.981985], - [19.149663, 58.004495], - [19.233224, 57.98801], - [19.288693, 57.990365], - [19.305591, 57.968821], - [19.276005, 57.951409], - [19.201245, 57.952594], - [19.139685, 57.941628], - [19.114657, 57.927448], - [19.133809, 57.902085], - [19.0937, 57.861908], - [19.029497, 57.842037], - [18.995214, 57.83046], - [18.99725, 57.793877], - [18.932737, 57.794021], - [18.923207, 57.731131], - [18.848347, 57.73032], - [18.797142, 57.751099], - [18.784006, 57.69763], - [18.748418, 57.62607], - [18.78192, 57.614109], - [18.766681, 57.553546], - [18.733893, 57.523604], - [18.776123, 57.474488], - [18.83897, 57.449039], - [18.900144, 57.440085], - [18.866809, 57.397476], - [18.788828, 57.384219], - [18.725619, 57.375109], - [18.654512, 57.317516], - [18.655202, 57.286523], - [18.693879, 57.270475], - [18.656563, 57.235472], - [18.543236, 57.214195], - [18.527126, 57.19373], - [18.383553, 57.136707], - [18.42376, 57.126064], - [18.318219, 57.083963], - [18.319697, 57.020206], - [18.372248, 57.006734], - [18.300193, 56.952754], - [18.189322, 56.912849], - [18.1241, 56.916385], - [18.180456, 56.986284], - [18.192137, 57.027132], - [18.258213, 57.048941], - [18.283161, 57.077789], - [18.273599, 57.102206], - [18.209135, 57.074812], - [18.187907, 57.081999], - [18.204725, 57.140606], - [18.159964, 57.158809], - [18.13094, 57.173893], - [18.136495, 57.251597], - [18.082496, 57.261426], - [18.096924, 57.300229], - [18.149644, 57.332304], - [18.164789, 57.396506], - [18.128801, 57.423053], - [18.110283, 57.475427], - [18.090705, 57.524242], - [18.108547, 57.562793], - [18.190922, 57.614295], - [18.245067, 57.626259], - [18.314049, 57.676981], - [18.390109, 57.750726], - [18.42577, 57.81325], - [18.480172, 57.836026] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5960", - "properties": { - "name": "Halland", - "ISOCODE": "SE-N", - "density": 0, - "path": "/world/Sweden/Halland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [13.296026, 56.847312], - [13.321794, 56.772887], - [13.325975, 56.693385], - [13.373456, 56.662475], - [13.401812, 56.613742], - [13.416884, 56.584827], - [13.443759, 56.569216], - [13.474169, 56.51376], - [13.448121, 56.471648], - [13.471123, 56.452579], - [13.456948, 56.430976], - [13.419671, 56.413411], - [13.377822, 56.415257], - [13.30239, 56.38791], - [13.245562, 56.354316], - [13.201848, 56.328545], - [13.151296, 56.351128], - [12.991069, 56.361417], - [12.946641, 56.367426], - [12.970531, 56.421723], - [12.90351, 56.444262], - [12.935497, 56.471808], - [12.95273, 56.501739], - [12.954111, 56.549732], - [12.939851, 56.594158], - [12.907849, 56.6441], - [12.848533, 56.662677], - [12.79345, 56.641417], - [12.738123, 56.641763], - [12.695595, 56.688429], - [12.658728, 56.729456], - [12.622124, 56.781272], - [12.623209, 56.829868], - [12.564654, 56.857258], - [12.486918, 56.888921], - [12.410002, 56.902488], - [12.358411, 56.934926], - [12.372324, 56.966843], - [12.369216, 56.993591], - [12.340646, 57.028146], - [12.293082, 57.044227], - [12.261487, 57.083183], - [12.248511, 57.139504], - [12.197422, 57.182699], - [12.132524, 57.22273], - [12.133919, 57.262323], - [12.182224, 57.27692], - [12.174475, 57.303846], - [12.163444, 57.337614], - [12.148925, 57.346736], - [12.114319, 57.341222], - [12.10071, 57.350914], - [12.122603, 57.387075], - [12.121925, 57.43474], - [12.111085, 57.455794], - [12.091944, 57.46154], - [12.072513, 57.450127], - [12.059222, 57.426068], - [12.039651, 57.376592], - [12.02846, 57.361176], - [12.011443, 57.355738], - [11.987485, 57.361295], - [11.970097, 57.378876], - [11.93306, 57.426275], - [11.926583, 57.442119], - [11.933512, 57.460596], - [11.957738, 57.501684], - [11.952149, 57.52774], - [11.947128, 57.561146], - [12.01304, 57.56284], - [12.038235, 57.549647], - [12.138047, 57.562313], - [12.205408, 57.576467], - [12.28382, 57.604219], - [12.342632, 57.567772], - [12.326534, 57.529183], - [12.343708, 57.512618], - [12.354384, 57.492073], - [12.344697, 57.469243], - [12.355498, 57.457821], - [12.381394, 57.452795], - [12.396931, 57.443134], - [12.411514, 57.410946], - [12.395482, 57.341994], - [12.430555, 57.320584], - [12.427689, 57.272028], - [12.505214, 57.280047], - [12.527399, 57.32251], - [12.652677, 57.337719], - [12.705254, 57.332145], - [12.798433, 57.289108], - [12.858092, 57.267657], - [12.930822, 57.266621], - [12.953051, 57.236923], - [12.932, 57.228743], - [12.940984, 57.176131], - [13.011819, 57.185922], - [13.057045, 57.178701], - [13.047313, 57.157465], - [13.072537, 57.14924], - [13.100658, 57.160712], - [13.133071, 57.149162], - [13.085785, 57.127078], - [13.089936, 57.095662], - [13.130984, 57.031503], - [13.22009, 57.07646], - [13.227982, 57.10678], - [13.269247, 57.096025], - [13.358339, 57.117461], - [13.45944, 57.109478], - [13.484658, 57.122793], - [13.496227, 57.09163], - [13.52657, 57.095698], - [13.608011, 57.068616], - [13.592135, 57.031454], - [13.619938, 56.999543], - [13.684731, 56.986377], - [13.692812, 56.961956], - [13.660061, 56.902122], - [13.621803, 56.909283], - [13.612393, 56.891674], - [13.533333, 56.88982], - [13.486996, 56.866637], - [13.469148, 56.878251], - [13.371326, 56.860895], - [13.340123, 56.87126], - [13.296026, 56.847312] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5949", - "properties": { - "name": "Jämtland", - "ISOCODE": "SE-Z", - "density": 0, - "path": "/world/Sweden/Jämtland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [16.472705, 62.821948], - [16.397626, 62.77552], - [16.368134, 62.707739], - [16.252958, 62.723953], - [16.128164, 62.70015], - [15.963469, 62.718241], - [15.595481, 62.634596], - [15.256146, 62.611961], - [15.141298, 62.574191], - [15.077826, 62.604382], - [14.916465, 62.613257], - [14.794852, 62.601458], - [14.801025, 62.541527], - [14.835259, 62.46766], - [14.780401, 62.466586], - [14.805508, 62.416016], - [14.868697, 62.408254], - [14.947128, 62.325005], - [15.159058, 62.26774], - [15.273172, 62.307283], - [15.324458, 62.289022], - [15.334493, 62.222802], - [15.395662, 62.203418], - [15.412374, 62.128381], - [15.083342, 62.007467], - [15.111489, 61.962674], - [15.102949, 61.908844], - [15.103666, 61.861808], - [15.040013, 61.884827], - [14.895676, 61.890023], - [14.872821, 61.838701], - [14.798338, 61.900077], - [14.72885, 61.879853], - [14.689947, 61.912379], - [14.526671, 61.791608], - [14.500716, 61.630198], - [14.41477, 61.586199], - [14.356786, 61.613177], - [14.201418, 61.632642], - [13.983116, 61.634682], - [13.89015, 61.651166], - [13.613103, 61.671244], - [13.56471, 61.655073], - [13.506641, 61.691581], - [13.514506, 61.736383], - [13.416074, 61.82666], - [13.20924, 61.935186], - [13.371377, 62.010471], - [13.322772, 62.017658], - [13.295778, 62.061914], - [13.159416, 62.027092], - [13.038443, 62.08537], - [12.940514, 62.146344], - [12.795656, 62.23038], - [12.616807, 62.221612], - [12.302202, 62.261592], - [12.050883, 62.616022], - [12.130183, 62.751334], - [12.074434, 62.903435], - [12.1962, 62.995639], - [11.962305, 63.26815], - [12.198054, 63.470903], - [12.133106, 63.584238], - [12.273086, 63.659766], - [12.297209, 63.714934], - [12.363616, 63.752757], - [12.657924, 63.971397], - [12.871677, 64.049722], - [13.179891, 64.095894], - [13.281162, 64.086548], - [13.70626, 64.048973], - [13.962507, 64.014205], - [14.162523, 64.201395], - [14.130003, 64.406], - [14.123828, 64.468206], - [14.078629, 64.491602], - [13.915959, 64.513937], - [13.663074, 64.589792], - [14.210872, 65.062247], - [14.330409, 65.131043], - [14.620805, 65.024379], - [14.674495, 65.016749], - [14.720448, 64.988942], - [14.791616, 64.954046], - [14.786702, 64.91632], - [14.865919, 64.875005], - [14.950443, 64.873165], - [15.031683, 64.824446], - [15.046683, 64.765941], - [15.231793, 64.728705], - [15.332943, 64.66257], - [15.264455, 64.642234], - [15.335205, 64.622689], - [15.361526, 64.594345], - [15.422533, 64.602329], - [15.424268, 64.576922], - [15.542991, 64.533292], - [15.573138, 64.457665], - [15.639758, 64.456239], - [15.626895, 64.532844], - [15.703184, 64.550821], - [15.749737, 64.490632], - [15.757897, 64.428699], - [16.028569, 64.3498], - [16.033083, 64.277145], - [16.205936, 64.284373], - [16.724291, 64.026835], - [16.587966, 63.893795], - [16.574807, 63.822034], - [16.613574, 63.718331], - [16.371423, 63.672135], - [16.302706, 63.688617], - [16.251437, 63.666061], - [16.097767, 63.699727], - [15.988516, 63.658453], - [15.878331, 63.68775], - [15.797167, 63.673845], - [15.991134, 63.564156], - [15.972622, 63.516247], - [15.983423, 63.446879], - [16.05556, 63.459322], - [16.135344, 63.440536], - [16.126467, 63.379445], - [16.602047, 63.184227], - [17.011966, 62.954213], - [16.660556, 62.932433], - [16.472705, 62.821948] - ], - [ - [14.591905, 63.219426], - [14.478459, 63.249619], - [14.412261, 63.239798], - [14.308383, 63.278458], - [14.173006, 63.302077], - [14.00628, 63.323769], - [14.149049, 63.205559], - [14.048493, 63.202377], - [14.129802, 63.170237], - [14.249512, 63.150898], - [14.346283, 63.11799], - [14.369153, 63.069463], - [14.422848, 62.99194], - [14.423634, 62.921472], - [14.35856, 62.913408], - [14.417869, 62.838646], - [14.48128, 62.821445], - [14.525677, 62.898988], - [14.48793, 63.005385], - [14.457057, 63.077156], - [14.441772, 63.135595], - [14.516426, 63.148648], - [14.575319, 63.162352], - [14.525863, 63.173525], - [14.45926, 63.19806], - [14.473024, 63.22457], - [14.591905, 63.219426] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5955", - "properties": { - "name": "Jönköping", - "ISOCODE": "SE-F", - "density": 0, - "path": "/world/Sweden/Jönköping" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [14.982904, 57.934493], - [15.004374, 57.895976], - [15.076171, 57.850437], - [15.064367, 57.825793], - [15.100044, 57.758744], - [15.141132, 57.707642], - [15.284171, 57.715765], - [15.41564, 57.700903], - [15.440178, 57.674156], - [15.512473, 57.666273], - [15.653016, 57.607188], - [15.577978, 57.555643], - [15.621515, 57.534937], - [15.635469, 57.50695], - [15.605147, 57.490698], - [15.602013, 57.445663], - [15.546469, 57.467093], - [15.498566, 57.446449], - [15.50353, 57.391894], - [15.489426, 57.372841], - [15.506575, 57.328408], - [15.459605, 57.311317], - [15.465022, 57.25855], - [15.498833, 57.24568], - [15.529736, 57.199947], - [15.376503, 57.233055], - [15.217452, 57.218833], - [15.171525, 57.237745], - [15.111677, 57.237554], - [15.154359, 57.202582], - [15.085108, 57.204718], - [15.067522, 57.188847], - [15.025798, 57.173733], - [14.984682, 57.167005], - [14.966587, 57.142711], - [14.90985, 57.14045], - [14.893132, 57.190151], - [14.851394, 57.214141], - [14.787426, 57.232074], - [14.728704, 57.231638], - [14.672048, 57.212999], - [14.607963, 57.207366], - [14.592126, 57.193761], - [14.553088, 57.197626], - [14.543757, 57.165607], - [14.487092, 57.157714], - [14.387274, 57.155035], - [14.339753, 57.154452], - [14.339561, 57.062396], - [14.319967, 57.045335], - [14.330163, 57.010519], - [14.391922, 56.969435], - [14.339491, 56.898104], - [14.291757, 56.882473], - [14.246998, 56.895574], - [14.203745, 56.948287], - [14.194718, 56.990266], - [14.134599, 57.041974], - [14.113097, 57.032209], - [14.074017, 57.053976], - [14.019631, 57.063828], - [13.931482, 57.050019], - [13.920673, 57.025265], - [13.861778, 57.008223], - [13.818448, 57.064372], - [13.746509, 57.068311], - [13.704496, 57.053413], - [13.684731, 56.986377], - [13.619938, 56.999543], - [13.592135, 57.031454], - [13.608011, 57.068616], - [13.52657, 57.095698], - [13.496227, 57.09163], - [13.484658, 57.122793], - [13.45944, 57.109478], - [13.358339, 57.117461], - [13.269247, 57.096025], - [13.227982, 57.10678], - [13.22009, 57.07646], - [13.130984, 57.031503], - [13.089936, 57.095662], - [13.085785, 57.127078], - [13.133071, 57.149162], - [13.180235, 57.184467], - [13.197654, 57.234212], - [13.227497, 57.256397], - [13.272494, 57.247305], - [13.293275, 57.303508], - [13.36894, 57.313522], - [13.385212, 57.332655], - [13.429498, 57.339761], - [13.429862, 57.363185], - [13.485828, 57.380595], - [13.508062, 57.415684], - [13.62086, 57.515298], - [13.667189, 57.533059], - [13.681863, 57.561258], - [13.672666, 57.606756], - [13.676211, 57.628246], - [13.721829, 57.64062], - [13.736587, 57.668812], - [13.707236, 57.707407], - [13.710713, 57.734912], - [13.742481, 57.764137], - [13.74124, 57.843556], - [13.748984, 57.882884], - [13.70867, 57.937584], - [13.70825, 57.982097], - [13.757648, 58.014156], - [13.776144, 58.049999], - [13.798256, 58.053807], - [13.846553, 58.038987], - [13.875628, 58.050289], - [13.950773, 58.0342], - [13.959974, 58.009422], - [14.068404, 58.028694], - [14.071584, 58.046581], - [14.114025, 58.075251], - [14.113049, 58.151675], - [14.212836, 58.145696], - [14.193783, 58.066012], - [14.157633, 57.997373], - [14.116689, 57.957826], - [14.113916, 57.885777], - [14.141808, 57.871813], - [14.158137, 57.831319], - [14.150731, 57.790164], - [14.17918, 57.779765], - [14.208461, 57.792782], - [14.259509, 57.795696], - [14.266616, 57.853102], - [14.285504, 57.900915], - [14.351997, 57.968027], - [14.449941, 58.002837], - [14.468131, 58.045251], - [14.537452, 58.106139], - [14.603931, 58.092498], - [14.747946, 58.104873], - [14.755391, 58.073778], - [14.894522, 58.089862], - [14.933493, 58.131114], - [14.981789, 58.117653], - [15.025449, 58.032155], - [15.049417, 58.000111], - [15.014114, 57.976757], - [14.982904, 57.934493] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5958", - "properties": { - "name": "Kalmar", - "ISOCODE": "SE-H", - "density": 0, - "path": "/world/Sweden/Kalmar" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [15.73628, 57.070772], - [15.66376, 57.087323], - [15.626899, 57.131195], - [15.535439, 57.153032], - [15.555451, 57.184385], - [15.529736, 57.199947], - [15.498833, 57.24568], - [15.465022, 57.25855], - [15.459605, 57.311317], - [15.506575, 57.328408], - [15.489426, 57.372841], - [15.50353, 57.391894], - [15.498566, 57.446449], - [15.546469, 57.467093], - [15.602013, 57.445663], - [15.605147, 57.490698], - [15.635469, 57.50695], - [15.621515, 57.534937], - [15.577978, 57.555643], - [15.653016, 57.607188], - [15.512473, 57.666273], - [15.440178, 57.674156], - [15.41564, 57.700903], - [15.428928, 57.747149], - [15.456846, 57.767216], - [15.516402, 57.761889], - [15.536255, 57.796277], - [15.590788, 57.824377], - [15.580388, 57.853943], - [15.670724, 57.86481], - [15.778024, 57.845629], - [15.79452, 57.813856], - [15.866439, 57.832949], - [15.919418, 57.813367], - [16.018421, 57.861455], - [16.066557, 57.864742], - [16.019522, 57.95369], - [16.064651, 57.972569], - [15.984207, 58.035556], - [15.998622, 58.087735], - [16.091884, 58.088512], - [16.116604, 58.063405], - [16.175307, 58.066911], - [16.151071, 58.108289], - [16.178839, 58.124623], - [16.25165, 58.157968], - [16.293527, 58.133538], - [16.371791, 58.151378], - [16.468973, 58.084002], - [16.500808, 58.116299], - [16.561449, 58.099578], - [16.612264, 57.989259], - [16.688696, 57.98226], - [16.748618, 58.004125], - [16.76535, 57.922632], - [16.743799, 57.864294], - [16.685862, 57.890021], - [16.600067, 57.899484], - [16.533051, 57.847835], - [16.617894, 57.780498], - [16.69229, 57.753673], - [16.693541, 57.704646], - [16.635165, 57.686904], - [16.605138, 57.647274], - [16.639129, 57.621401], - [16.706455, 57.634893], - [16.705049, 57.602371], - [16.670409, 57.584824], - [16.578656, 57.58083], - [16.668145, 57.521552], - [16.689441, 57.485649], - [16.654672, 57.426424], - [16.618044, 57.37277], - [16.547704, 57.372153], - [16.557682, 57.317111], - [16.480141, 57.286166], - [16.498453, 57.23781], - [16.462398, 57.198591], - [16.497532, 57.132787], - [16.58075, 57.110784], - [16.490503, 57.039056], - [16.454498, 56.985349], - [16.460554, 56.94145], - [16.435644, 56.887589], - [16.406444, 56.796592], - [16.442195, 56.808637], - [16.469087, 56.783244], - [16.438115, 56.76363], - [16.39662, 56.782773], - [16.353361, 56.682444], - [16.279036, 56.672977], - [16.23525, 56.625207], - [16.221823, 56.59532], - [16.224069, 56.548075], - [16.186234, 56.539746], - [16.162806, 56.494221], - [16.119376, 56.470539], - [16.083646, 56.403502], - [16.051779, 56.324125], - [15.987303, 56.306643], - [15.945668, 56.32385], - [15.850886, 56.320939], - [15.793941, 56.342689], - [15.730499, 56.410058], - [15.677092, 56.418851], - [15.655409, 56.444331], - [15.639212, 56.470076], - [15.590232, 56.469506], - [15.56411, 56.500064], - [15.492359, 56.515332], - [15.481077, 56.482255], - [15.397778, 56.499377], - [15.335467, 56.486835], - [15.341842, 56.544326], - [15.370937, 56.558855], - [15.361895, 56.604605], - [15.418521, 56.646428], - [15.40757, 56.672401], - [15.419726, 56.715069], - [15.357503, 56.778477], - [15.436933, 56.797228], - [15.540488, 56.80543], - [15.551395, 56.836111], - [15.509765, 56.898341], - [15.511649, 56.917527], - [15.553748, 56.929436], - [15.651908, 56.910756], - [15.692473, 56.915478], - [15.809022, 56.920846], - [15.841191, 56.976732], - [15.798508, 57.022857], - [15.73628, 57.070772] - ] - ], - [ - [ - [16.520688, 56.765196], - [16.574051, 56.823108], - [16.608106, 56.882362], - [16.648983, 56.901258], - [16.708283, 56.900727], - [16.739829, 56.961948], - [16.771627, 57.010453], - [16.81317, 57.031077], - [16.843359, 57.072445], - [16.889814, 57.125333], - [16.915868, 57.176059], - [16.904344, 57.209513], - [16.944394, 57.222977], - [16.955796, 57.254789], - [16.965191, 57.304893], - [17.019677, 57.348122], - [17.061281, 57.366878], - [17.083872, 57.350729], - [17.112891, 57.359501], - [17.129441, 57.320201], - [17.078943, 57.305742], - [17.053387, 57.271325], - [17.067561, 57.248536], - [17.065542, 57.188827], - [17.038566, 57.174466], - [16.987234, 57.116532], - [16.950107, 57.048481], - [16.910592, 57.049519], - [16.935506, 57.016895], - [16.879121, 56.990126], - [16.87523, 56.921503], - [16.853233, 56.899507], - [16.855434, 56.868532], - [16.826708, 56.832515], - [16.778744, 56.825049], - [16.702273, 56.678204], - [16.683492, 56.62334], - [16.691198, 56.601058], - [16.638396, 56.572153], - [16.630485, 56.525587], - [16.599486, 56.464341], - [16.557049, 56.409318], - [16.571843, 56.375665], - [16.506417, 56.29145], - [16.473472, 56.233946], - [16.407764, 56.202265], - [16.416581, 56.254205], - [16.397976, 56.271791], - [16.405709, 56.43069], - [16.384099, 56.435795], - [16.378481, 56.537627], - [16.388066, 56.578642], - [16.438856, 56.627706], - [16.45792, 56.680746], - [16.520688, 56.765196] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5956", - "properties": { - "name": "Kronoberg", - "ISOCODE": "SE-G", - "density": 0, - "path": "/world/Sweden/Kronoberg" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [15.067522, 57.188847], - [15.085108, 57.204718], - [15.154359, 57.202582], - [15.111677, 57.237554], - [15.171525, 57.237745], - [15.217452, 57.218833], - [15.376503, 57.233055], - [15.529736, 57.199947], - [15.555451, 57.184385], - [15.535439, 57.153032], - [15.626899, 57.131195], - [15.66376, 57.087323], - [15.73628, 57.070772], - [15.798508, 57.022857], - [15.841191, 56.976732], - [15.809022, 56.920846], - [15.692473, 56.915478], - [15.651908, 56.910756], - [15.553748, 56.929436], - [15.511649, 56.917527], - [15.509765, 56.898341], - [15.551395, 56.836111], - [15.540488, 56.80543], - [15.436933, 56.797228], - [15.357503, 56.778477], - [15.419726, 56.715069], - [15.40757, 56.672401], - [15.418521, 56.646428], - [15.361895, 56.604605], - [15.370937, 56.558855], - [15.341842, 56.544326], - [15.335467, 56.486835], - [15.295673, 56.462098], - [15.251069, 56.482822], - [15.202063, 56.465826], - [15.193455, 56.439219], - [15.134868, 56.439024], - [15.1263, 56.461223], - [15.018739, 56.46021], - [14.965603, 56.437939], - [14.920314, 56.383279], - [14.879696, 56.363295], - [14.802183, 56.382091], - [14.709738, 56.390819], - [14.668357, 56.40091], - [14.596628, 56.451776], - [14.524113, 56.458071], - [14.414471, 56.480728], - [14.2527, 56.503536], - [14.237598, 56.49167], - [14.133104, 56.507785], - [14.101653, 56.532822], - [14.062312, 56.531162], - [14.05449, 56.504483], - [14.01584, 56.468487], - [13.927959, 56.467359], - [13.869608, 56.448524], - [13.788513, 56.448777], - [13.704803, 56.427904], - [13.576733, 56.409336], - [13.496908, 56.40995], - [13.456948, 56.430976], - [13.471123, 56.452579], - [13.448121, 56.471648], - [13.474169, 56.51376], - [13.443759, 56.569216], - [13.416884, 56.584827], - [13.401812, 56.613742], - [13.373456, 56.662475], - [13.325975, 56.693385], - [13.321794, 56.772887], - [13.296026, 56.847312], - [13.340123, 56.87126], - [13.371326, 56.860895], - [13.469148, 56.878251], - [13.486996, 56.866637], - [13.533333, 56.88982], - [13.612393, 56.891674], - [13.621803, 56.909283], - [13.660061, 56.902122], - [13.692812, 56.961956], - [13.684731, 56.986377], - [13.704496, 57.053413], - [13.746509, 57.068311], - [13.818448, 57.064372], - [13.861778, 57.008223], - [13.920673, 57.025265], - [13.931482, 57.050019], - [14.019631, 57.063828], - [14.074017, 57.053976], - [14.113097, 57.032209], - [14.134599, 57.041974], - [14.194718, 56.990266], - [14.203745, 56.948287], - [14.246998, 56.895574], - [14.291757, 56.882473], - [14.339491, 56.898104], - [14.391922, 56.969435], - [14.330163, 57.010519], - [14.319967, 57.045335], - [14.339561, 57.062396], - [14.339753, 57.154452], - [14.387274, 57.155035], - [14.487092, 57.157714], - [14.543757, 57.165607], - [14.553088, 57.197626], - [14.592126, 57.193761], - [14.607963, 57.207366], - [14.672048, 57.212999], - [14.728704, 57.231638], - [14.787426, 57.232074], - [14.851394, 57.214141], - [14.893132, 57.190151], - [14.90985, 57.14045], - [14.966587, 57.142711], - [14.984682, 57.167005], - [15.025798, 57.173733], - [15.067522, 57.188847] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5965", - "properties": { - "name": "Norrbotten", - "ISOCODE": "SE-BD", - "density": 0, - "path": "/world/Sweden/Norrbotten" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [18.180348, 65.592085], - [18.073337, 65.607358], - [17.793266, 65.646552], - [17.661291, 65.670906], - [16.779193, 66.053085], - [16.579049, 66.054594], - [15.822678, 66.300218], - [15.465048, 66.354476], - [15.38887, 66.484402], - [15.634687, 66.598284], - [15.998186, 66.878322], - [16.106345, 66.929347], - [16.375812, 67.01959], - [16.425061, 67.168708], - [16.390316, 67.232602], - [16.11439, 67.421335], - [16.199174, 67.507901], - [16.416947, 67.5229], - [16.529978, 67.604381], - [16.71192, 67.892611], - [16.770616, 67.913277], - [17.201236, 68.029221], - [17.299725, 68.096648], - [17.659005, 68.022929], - [17.917821, 67.944926], - [17.945843, 67.977861], - [18.166618, 68.168816], - [18.090545, 68.382224], - [18.112096, 68.513696], - [18.399895, 68.559038], - [18.601893, 68.488934], - [18.981032, 68.50418], - [19.913597, 68.363445], - [20.245201, 68.495962], - [19.95245, 68.556251], - [20.083278, 68.596674], - [20.234179, 68.674053], - [20.342706, 68.801838], - [20.320676, 68.911248], - [20.114416, 69.029481], - [20.594156, 69.04774], - [20.803601, 69.029251], - [20.882777, 68.988769], - [20.942493, 68.977135], - [20.91678, 68.958847], - [20.863632, 68.937048], - [20.939507, 68.90042], - [21.022621, 68.903519], - [21.244251, 68.821142], - [21.305017, 68.768896], - [21.366547, 68.77892], - [21.424403, 68.765366], - [21.432862, 68.70234], - [21.513573, 68.68515], - [21.625138, 68.669193], - [21.729815, 68.633483], - [21.715742, 68.601533], - [21.849631, 68.598333], - [22.01481, 68.555748], - [22.011025, 68.524798], - [22.030631, 68.499327], - [22.126602, 68.48419], - [22.234756, 68.480874], - [22.317553, 68.485107], - [22.353638, 68.454519], - [22.403734, 68.4706], - [22.58924, 68.431128], - [22.625497, 68.440967], - [22.661885, 68.419449], - [22.763484, 68.39052], - [22.793643, 68.406365], - [22.843793, 68.390991], - [22.836419, 68.363979], - [22.940948, 68.340175], - [22.973988, 68.3373], - [23.07825, 68.31342], - [23.084927, 68.277766], - [23.164243, 68.246777], - [23.161405, 68.211962], - [23.145775, 68.172757], - [23.181418, 68.143756], - [23.280888, 68.159462], - [23.340466, 68.129484], - [23.397214, 68.050462], - [23.46938, 68.047587], - [23.481168, 68.020641], - [23.542741, 68.016844], - [23.561429, 67.978162], - [23.644925, 67.970447], - [23.655244, 67.912172], - [23.536194, 67.895488], - [23.488023, 67.829721], - [23.506671, 67.791055], - [23.483184, 67.687922], - [23.556682, 67.629351], - [23.51585, 67.566645], - [23.469088, 67.569153], - [23.494343, 67.540943], - [23.415128, 67.492912], - [23.507353, 67.456597], - [23.541319, 67.471877], - [23.685388, 67.441635], - [23.723982, 67.456445], - [23.786167, 67.42649], - [23.749791, 67.392979], - [23.746234, 67.350789], - [23.793587, 67.342555], - [23.740352, 67.290335], - [23.613093, 67.278464], - [23.580588, 67.23535], - [23.606505, 67.208858], - [23.576289, 67.176627], - [23.678272, 67.105875], - [23.68381, 67.055441], - [23.770574, 67.00637], - [23.82283, 66.999432], - [23.831548, 66.969006], - [23.888098, 66.954212], - [23.88995, 66.913332], - [23.981289, 66.858066], - [24.013985, 66.821521], - [23.99473, 66.784578], - [23.935266, 66.79418], - [23.917329, 66.766357], - [23.917694, 66.68677], - [23.891069, 66.65242], - [23.889414, 66.584147], - [23.820341, 66.555871], - [23.819118, 66.524553], - [23.739434, 66.515791], - [23.728455, 66.483593], - [23.654398, 66.468712], - [23.646824, 66.44173], - [23.696891, 66.403541], - [23.634142, 66.31733], - [23.72932, 66.189608], - [23.861971, 66.1652], - [23.939041, 66.159275], - [23.928015, 66.1271], - [23.953637, 66.109698], - [23.946973, 66.08448], - [24.021316, 66.021395], - [24.041939, 65.96007], - [24.149845, 65.803639], - [23.839584, 65.793967], - [23.755849, 65.826502], - [23.686844, 65.831624], - [23.666708, 65.805934], - [23.59568, 65.797666], - [23.488307, 65.823769], - [23.430479, 65.779655], - [23.284761, 65.80694], - [23.220845, 65.820573], - [23.173648, 65.793808], - [23.110872, 65.716916], - [23.014484, 65.759423], - [22.834121, 65.796941], - [22.782533, 65.871838], - [22.701758, 65.896009], - [22.667166, 65.88268], - [22.686622, 65.79798], - [22.7787, 65.746936], - [22.777842, 65.713854], - [22.705352, 65.728067], - [22.619484, 65.779714], - [22.506998, 65.781598], - [22.513775, 65.817787], - [22.439926, 65.870609], - [22.336527, 65.854331], - [22.29654, 65.789927], - [22.293158, 65.718505], - [22.305915, 65.660308], - [22.322477, 65.609123], - [22.373337, 65.56397], - [22.324392, 65.555611], - [22.202224, 65.576018], - [22.143872, 65.56663], - [22.139141, 65.524776], - [22.029716, 65.52734], - [21.862508, 65.529475], - [21.984474, 65.467102], - [21.910153, 65.421118], - [21.797316, 65.404889], - [21.635406, 65.415531], - [21.484368, 65.395696], - [21.435513, 65.368748], - [21.6543, 65.298221], - [21.634798, 65.268751], - [21.54327, 65.243771], - [21.577317, 65.147188], - [21.501578, 65.080467], - [21.312535, 65.131809], - [21.29237, 65.170224], - [20.755287, 65.213666], - [19.881292, 65.394348], - [19.653998, 65.214296], - [19.599065, 65.191012], - [19.413849, 65.149967], - [19.334676, 65.188571], - [19.253559, 65.212672], - [19.250513, 65.2366], - [19.285443, 65.257795], - [19.08963, 65.320997], - [19.044366, 65.316895], - [19.041098, 65.340811], - [18.943659, 65.358563], - [18.852481, 65.381267], - [18.822811, 65.405167], - [18.766815, 65.418096], - [18.750524, 65.442875], - [18.701512, 65.451675], - [18.580069, 65.454381], - [18.514454, 65.487862], - [18.426727, 65.510038], - [18.293836, 65.52537], - [18.230943, 65.548221], - [18.180348, 65.592085] - ], - [ - [18.407484, 65.697488], - [18.355958, 65.723872], - [18.376954, 65.766183], - [18.30109, 65.787443], - [18.173033, 65.78833], - [17.922683, 65.923909], - [17.969577, 65.977377], - [17.926976, 66.041788], - [18.073547, 66.050945], - [18.109319, 66.074165], - [18.053266, 66.103094], - [17.961957, 66.086899], - [17.868939, 66.125268], - [17.815024, 66.184849], - [17.657181, 66.219667], - [17.550122, 66.271322], - [17.428748, 66.321892], - [17.322074, 66.376957], - [17.08993, 66.424326], - [17.062207, 66.39682], - [17.319436, 66.331739], - [17.451024, 66.258903], - [17.461382, 66.212911], - [17.616378, 66.182113], - [17.738474, 66.124029], - [17.850904, 66.077303], - [17.765545, 66.064271], - [17.645067, 66.040572], - [17.75073, 65.976144], - [17.760046, 65.941073], - [17.720202, 65.905321], - [17.737055, 65.842552], - [17.821409, 65.842874], - [17.873604, 65.899662], - [18.024364, 65.804951], - [18.117405, 65.677295], - [18.209606, 65.687813], - [18.27058, 65.67057], - [18.498145, 65.636357], - [18.50863, 65.662961], - [18.407484, 65.697488] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5948", - "properties": { - "name": "Örebro", - "ISOCODE": "SE-T", - "density": 0, - "path": "/world/Sweden/Örebro" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [15.579321, 59.428799], - [15.641542, 59.354002], - [15.616753, 59.322846], - [15.550725, 59.328461], - [15.422014, 59.306789], - [15.281043, 59.309215], - [15.286069, 59.283606], - [15.428008, 59.253979], - [15.560813, 59.278992], - [15.64098, 59.227296], - [15.60194, 59.195158], - [15.652999, 59.155982], - [15.76967, 59.150025], - [15.77157, 59.120034], - [15.67838, 59.112848], - [15.626191, 59.068818], - [15.60572, 59.024738], - [15.632189, 59.003186], - [15.530518, 58.944605], - [15.566239, 58.911155], - [15.523369, 58.875627], - [15.439796, 58.876808], - [15.419244, 58.83091], - [15.387174, 58.859897], - [15.339033, 58.847226], - [15.247245, 58.874997], - [15.186749, 58.836737], - [15.134257, 58.83599], - [15.085787, 58.80428], - [15.049677, 58.764626], - [15.028138, 58.727797], - [14.939411, 58.699058], - [14.979515, 58.744911], - [14.972726, 58.779629], - [14.940255, 58.774136], - [14.937056, 58.82676], - [14.873363, 58.804814], - [14.817254, 58.733623], - [14.721309, 58.701787], - [14.684126, 58.745955], - [14.624916, 58.745372], - [14.596271, 58.705252], - [14.546088, 58.696942], - [14.537479, 58.724502], - [14.467983, 58.724364], - [14.457483, 58.797169], - [14.402287, 58.799166], - [14.326612, 58.834155], - [14.370254, 58.87013], - [14.308242, 58.893022], - [14.267813, 58.999752], - [14.329118, 59.097997], - [14.280654, 59.15813], - [14.299317, 59.182535], - [14.283942, 59.23205], - [14.319132, 59.312658], - [14.318646, 59.322986], - [14.375271, 59.397526], - [14.462847, 59.447502], - [14.397898, 59.515694], - [14.417155, 59.541872], - [14.463339, 59.532416], - [14.459988, 59.591606], - [14.42087, 59.671788], - [14.438439, 59.707092], - [14.384006, 59.758474], - [14.437498, 59.775802], - [14.415991, 59.831038], - [14.431005, 59.908021], - [14.375701, 59.919678], - [14.343046, 59.955533], - [14.462839, 59.978774], - [14.438386, 60.025714], - [14.745337, 60.002925], - [14.717224, 60.094704], - [14.791183, 60.11995], - [14.846076, 60.122621], - [14.852924, 60.086111], - [14.923553, 60.060822], - [14.993258, 60.08256], - [15.018435, 60.064976], - [15.066472, 60.069705], - [15.12429, 60.025065], - [15.21681, 59.991204], - [15.324547, 59.929304], - [15.401702, 59.86114], - [15.407201, 59.816187], - [15.481595, 59.795765], - [15.534653, 59.708315], - [15.489794, 59.657742], - [15.533532, 59.629934], - [15.598662, 59.633482], - [15.610412, 59.591168], - [15.613282, 59.525825], - [15.709248, 59.529935], - [15.673484, 59.493379], - [15.705742, 59.478839], - [15.707383, 59.424426], - [15.579321, 59.428799] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5953", - "properties": { - "name": "Östergötland", - "ISOCODE": "SE-E", - "density": 0, - "path": "/world/Sweden/Östergötland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [14.933493, 58.131114], - [14.894522, 58.089862], - [14.755391, 58.073778], - [14.747946, 58.104873], - [14.603931, 58.092498], - [14.537452, 58.106139], - [14.590567, 58.205149], - [14.613906, 58.272567], - [14.638739, 58.294768], - [14.625658, 58.315308], - [14.646079, 58.349767], - [14.659641, 58.38399], - [14.772442, 58.434125], - [14.775502, 58.466481], - [14.818804, 58.47685], - [14.862041, 58.45289], - [14.923453, 58.467692], - [14.961297, 58.518072], - [15.023965, 58.538176], - [14.989468, 58.55449], - [14.928881, 58.561354], - [14.858994, 58.590342], - [14.926516, 58.633737], - [14.939411, 58.699058], - [15.028138, 58.727797], - [15.049677, 58.764626], - [15.085787, 58.80428], - [15.134257, 58.83599], - [15.186749, 58.836737], - [15.247245, 58.874997], - [15.339033, 58.847226], - [15.387174, 58.859897], - [15.419244, 58.83091], - [15.439796, 58.876808], - [15.523369, 58.875627], - [15.566239, 58.911155], - [15.530518, 58.944605], - [15.632189, 59.003186], - [15.741645, 58.980315], - [15.793686, 59.038744], - [15.842913, 59.024969], - [15.861152, 58.998543], - [15.957998, 58.964954], - [16.053636, 58.941628], - [16.098733, 58.897205], - [16.166874, 58.857371], - [16.226436, 58.849408], - [16.252765, 58.829031], - [16.369292, 58.709946], - [16.545128, 58.705745], - [16.687673, 58.679989], - [16.748196, 58.632426], - [16.683062, 58.634996], - [16.578406, 58.645587], - [16.44436, 58.663433], - [16.375294, 58.664277], - [16.273429, 58.672624], - [16.23412, 58.653396], - [16.232669, 58.619088], - [16.265422, 58.611569], - [16.345581, 58.628163], - [16.399362, 58.593909], - [16.421109, 58.639594], - [16.571834, 58.633336], - [16.711804, 58.598633], - [16.827392, 58.550928], - [16.902913, 58.509499], - [16.828129, 58.447572], - [16.719703, 58.427758], - [16.612306, 58.438606], - [16.564746, 58.441167], - [16.59629, 58.416116], - [16.688751, 58.400861], - [16.714378, 58.36651], - [16.809403, 58.361841], - [16.883508, 58.329554], - [16.847424, 58.283109], - [16.680798, 58.266095], - [16.765867, 58.232524], - [16.81971, 58.188948], - [16.768808, 58.123573], - [16.678904, 58.14602], - [16.691381, 58.114365], - [16.772402, 58.070759], - [16.709123, 58.049728], - [16.748618, 58.004125], - [16.688696, 57.98226], - [16.612264, 57.989259], - [16.561449, 58.099578], - [16.500808, 58.116299], - [16.468973, 58.084002], - [16.371791, 58.151378], - [16.293527, 58.133538], - [16.25165, 58.157968], - [16.178839, 58.124623], - [16.151071, 58.108289], - [16.175307, 58.066911], - [16.116604, 58.063405], - [16.091884, 58.088512], - [15.998622, 58.087735], - [15.984207, 58.035556], - [16.064651, 57.972569], - [16.019522, 57.95369], - [16.066557, 57.864742], - [16.018421, 57.861455], - [15.919418, 57.813367], - [15.866439, 57.832949], - [15.79452, 57.813856], - [15.778024, 57.845629], - [15.670724, 57.86481], - [15.580388, 57.853943], - [15.590788, 57.824377], - [15.536255, 57.796277], - [15.516402, 57.761889], - [15.456846, 57.767216], - [15.428928, 57.747149], - [15.41564, 57.700903], - [15.284171, 57.715765], - [15.141132, 57.707642], - [15.100044, 57.758744], - [15.064367, 57.825793], - [15.076171, 57.850437], - [15.004374, 57.895976], - [14.982904, 57.934493], - [15.014114, 57.976757], - [15.049417, 58.000111], - [15.025449, 58.032155], - [14.981789, 58.117653], - [14.933493, 58.131114] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5959", - "properties": { - "name": "Skåne", - "ISOCODE": "SE-M", - "density": 0, - "path": "/world/Sweden/Skåne" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [13.704803, 56.427904], - [13.788513, 56.448777], - [13.869608, 56.448524], - [13.927959, 56.467359], - [14.01584, 56.468487], - [14.05449, 56.504483], - [14.062312, 56.531162], - [14.101653, 56.532822], - [14.133104, 56.507785], - [14.237598, 56.49167], - [14.2527, 56.503536], - [14.414471, 56.480728], - [14.524113, 56.458071], - [14.468415, 56.40204], - [14.411509, 56.392395], - [14.389346, 56.34119], - [14.410644, 56.306663], - [14.432274, 56.273924], - [14.440534, 56.230139], - [14.493297, 56.218306], - [14.549294, 56.22433], - [14.571692, 56.199631], - [14.594618, 56.084594], - [14.55409, 56.074148], - [14.545672, 56.045697], - [14.467821, 56.030021], - [14.429347, 55.988728], - [14.354007, 55.96203], - [14.32357, 55.916674], - [14.279805, 55.904525], - [14.209043, 55.828756], - [14.198599, 55.758876], - [14.217529, 55.692909], - [14.277534, 55.671708], - [14.295962, 55.612954], - [14.348581, 55.586696], - [14.363047, 55.542572], - [14.331026, 55.504551], - [14.259872, 55.459566], - [14.209366, 55.405035], - [14.190251, 55.385577], - [14.102839, 55.391919], - [14.061222, 55.388628], - [13.95773, 55.431783], - [13.914987, 55.441147], - [13.850202, 55.431719], - [13.736974, 55.435453], - [13.700214, 55.422796], - [13.64868, 55.421152], - [13.593587, 55.381246], - [13.484584, 55.382144], - [13.451594, 55.374837], - [13.419997, 55.359777], - [13.380004, 55.356823], - [13.335422, 55.340044], - [13.319586, 55.350496], - [13.285192, 55.347024], - [13.26192, 55.352651], - [13.211635, 55.367003], - [13.118506, 55.37934], - [13.082277, 55.374198], - [13.059933, 55.373967], - [13.010637, 55.391621], - [12.973969, 55.404786], - [12.944233, 55.401272], - [12.929407, 55.39581], - [12.924851, 55.388343], - [12.908101, 55.388145], - [12.894024, 55.396455], - [12.874441, 55.398853], - [12.816009, 55.385962], - [12.863454, 55.447421], - [12.870093, 55.440625], - [12.879738, 55.419038], - [12.910534, 55.41358], - [12.93291, 55.411726], - [12.944868, 55.423509], - [12.957595, 55.446415], - [12.960098, 55.470269], - [12.95056, 55.487093], - [12.936791, 55.504941], - [12.915426, 55.531145], - [12.908531, 55.555954], - [12.907326, 55.574455], - [12.925854, 55.586331], - [12.976143, 55.6049], - [13.005933, 55.617409], - [13.046103, 55.624197], - [13.054254, 55.636142], - [13.052877, 55.646705], - [13.051403, 55.653888], - [13.065254, 55.674685], - [13.064222, 55.682614], - [13.050888, 55.702587], - [13.03394, 55.708226], - [12.997595, 55.724795], - [12.972754, 55.723955], - [12.955803, 55.726941], - [12.966938, 55.73871], - [12.95454, 55.752333], - [12.926462, 55.744605], - [12.909361, 55.758688], - [12.924224, 55.769983], - [12.936385, 55.775416], - [12.926168, 55.826351], - [12.904456, 55.863222], - [12.835021, 55.871475], - [12.776238, 55.961439], - [12.755568, 56.010514], - [12.713062, 56.051815], - [12.662877, 56.084406], - [12.619252, 56.118513], - [12.585542, 56.139008], - [12.572806, 56.156307], - [12.551969, 56.218332], - [12.536479, 56.247741], - [12.501946, 56.279642], - [12.459082, 56.297443], - [12.504727, 56.301149], - [12.597509, 56.270647], - [12.678047, 56.245949], - [12.704247, 56.225124], - [12.733341, 56.225788], - [12.76797, 56.219922], - [12.790147, 56.217239], - [12.82775, 56.232861], - [12.847986, 56.262693], - [12.820131, 56.294435], - [12.769041, 56.322269], - [12.744681, 56.356866], - [12.692902, 56.380484], - [12.63893, 56.387958], - [12.631311, 56.427886], - [12.679777, 56.45125], - [12.726867, 56.463849], - [12.796072, 56.448529], - [12.845413, 56.430363], - [12.90351, 56.444262], - [12.970531, 56.421723], - [12.946641, 56.367426], - [12.991069, 56.361417], - [13.151296, 56.351128], - [13.201848, 56.328545], - [13.245562, 56.354316], - [13.30239, 56.38791], - [13.377822, 56.415257], - [13.419671, 56.413411], - [13.456948, 56.430976], - [13.496908, 56.40995], - [13.576733, 56.409336], - [13.704803, 56.427904] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5952", - "properties": { - "name": "Södermanland", - "ISOCODE": "SE-D", - "density": 0, - "path": "/world/Sweden/Södermanland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [15.957998, 58.964954], - [15.861152, 58.998543], - [15.842913, 59.024969], - [15.793686, 59.038744], - [15.741645, 58.980315], - [15.632189, 59.003186], - [15.60572, 59.024738], - [15.626191, 59.068818], - [15.67838, 59.112848], - [15.77157, 59.120034], - [15.76967, 59.150025], - [15.836473, 59.146553], - [15.88547, 59.17077], - [15.8928, 59.206528], - [16.003208, 59.227019], - [16.071096, 59.240992], - [16.18053, 59.246935], - [16.262136, 59.263578], - [16.298367, 59.295709], - [16.256686, 59.29831], - [16.065614, 59.266667], - [15.994806, 59.294491], - [15.854282, 59.299654], - [15.926026, 59.342651], - [15.997484, 59.374585], - [16.051708, 59.364027], - [16.135169, 59.357093], - [16.259268, 59.37112], - [16.272445, 59.395678], - [16.223928, 59.415025], - [16.230719, 59.442687], - [16.418483, 59.449285], - [16.516766, 59.459317], - [16.606516, 59.449902], - [16.704018, 59.465472], - [16.785448, 59.467688], - [16.838723, 59.480475], - [16.952543, 59.452837], - [16.969108, 59.487998], - [17.015002, 59.499396], - [17.073235, 59.477254], - [17.042047, 59.441275], - [17.078064, 59.377072], - [17.153305, 59.379127], - [17.119961, 59.439536], - [17.147294, 59.461235], - [17.28126, 59.442797], - [17.324243, 59.39254], - [17.272472, 59.359868], - [17.303352, 59.355882], - [17.312383, 59.324364], - [17.257208, 59.304654], - [17.284619, 59.267922], - [17.2402, 59.242159], - [17.254024, 59.1904], - [17.303785, 59.141533], - [17.288877, 59.050081], - [17.363874, 58.992116], - [17.521423, 58.991624], - [17.525158, 58.967763], - [17.599992, 58.947757], - [17.618799, 58.904807], - [17.568235, 58.878021], - [17.590801, 58.850163], - [17.557265, 58.83938], - [17.492754, 58.867787], - [17.474671, 58.804702], - [17.500854, 58.788054], - [17.44982, 58.785626], - [17.430488, 58.787918], - [17.403733, 58.791341], - [17.388204, 58.746566], - [17.322767, 58.754499], - [17.281343, 58.729444], - [17.179821, 58.742193], - [17.127679, 58.742245], - [17.07932, 58.769217], - [17.013081, 58.755686], - [17.082624, 58.721222], - [17.132711, 58.696555], - [17.088578, 58.661573], - [17.028652, 58.683893], - [16.969577, 58.687986], - [16.926079, 58.676485], - [17.009309, 58.663478], - [17.010452, 58.641641], - [16.901324, 58.622002], - [16.81966, 58.627582], - [16.748196, 58.632426], - [16.687673, 58.679989], - [16.545128, 58.705745], - [16.369292, 58.709946], - [16.252765, 58.829031], - [16.226436, 58.849408], - [16.166874, 58.857371], - [16.098733, 58.897205], - [16.053636, 58.941628], - [15.957998, 58.964954] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5945", - "properties": { - "name": "Stockholm", - "ISOCODE": "SE-AB", - "density": 0, - "path": "/world/Sweden/Stockholm" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [18.220655, 58.91485], - [18.193831, 58.916893], - [18.193392, 58.924624], - [18.188053, 58.9288], - [18.171758, 58.921151], - [18.156478, 58.916832], - [18.147338, 58.915713], - [18.14697, 58.924135], - [18.171306, 58.934603], - [18.199549, 58.94531], - [18.210995, 58.949723], - [18.271648, 58.967647], - [18.289367, 58.964497], - [18.3221, 58.974382], - [18.333256, 58.981825], - [18.345373, 58.986205], - [18.352715, 58.982648], - [18.35147, 58.971913], - [18.341859, 58.966802], - [18.289962, 58.952703], - [18.282019, 58.945194], - [18.296826, 58.939423], - [18.307072, 58.933091], - [18.274589, 58.924878], - [18.254858, 58.927076], - [18.242295, 58.924044], - [18.233213, 58.917884], - [18.220655, 58.91485] - ] - ], - [ - [ - [18.073404, 58.971003], - [18.058293, 58.968357], - [18.051991, 58.969859], - [18.057964, 58.977442], - [18.055924, 58.988577], - [18.058954, 58.99288], - [18.081424, 59.003757], - [18.08333, 59.009417], - [18.080998, 59.017882], - [18.081178, 59.019549], - [18.090344, 59.026725], - [18.101561, 59.028798], - [18.133728, 59.027659], - [18.16169, 59.035352], - [18.193524, 59.030845], - [18.20579, 59.03087], - [18.201266, 59.024937], - [18.187286, 59.021261], - [18.172392, 59.020968], - [18.163148, 59.013135], - [18.164196, 59.005033], - [18.157301, 59.001189], - [18.146015, 59.00416], - [18.136424, 58.999025], - [18.138763, 58.990892], - [18.15031, 58.978497], - [18.138839, 58.973747], - [18.121254, 58.972176], - [18.111361, 58.976125], - [18.108356, 58.984261], - [18.100404, 58.988156], - [18.090424, 58.985378], - [18.082916, 58.975479], - [18.073404, 58.971003] - ] - ], - [ - [ - [18.405631, 59.010462], - [18.394058, 59.010774], - [18.387944, 59.019348], - [18.363574, 59.015296], - [18.344953, 59.02185], - [18.341099, 59.033376], - [18.350188, 59.039189], - [18.359754, 59.043635], - [18.36469, 59.047202], - [18.361842, 59.050635], - [18.348775, 59.049311], - [18.345434, 59.05411], - [18.374735, 59.072483], - [18.373862, 59.0762], - [18.365665, 59.078105], - [18.370564, 59.081331], - [18.411055, 59.08999], - [18.465161, 59.120444], - [18.466625, 59.121752], - [18.484829, 59.100738], - [18.477913, 59.091513], - [18.454017, 59.081081], - [18.452444, 59.067677], - [18.425671, 59.054623], - [18.416893, 59.01822], - [18.405631, 59.010462] - ] - ], - [ - [ - [18.675986, 59.205234], - [18.683414, 59.212749], - [18.69393, 59.21883], - [18.704637, 59.216167], - [18.698645, 59.20457], - [18.724723, 59.210535], - [18.738223, 59.209449], - [18.731892, 59.200565], - [18.720341, 59.196531], - [18.70259, 59.194709], - [18.682536, 59.190251], - [18.666427, 59.186016], - [18.650039, 59.179433], - [18.652813, 59.186064], - [18.675986, 59.205234] - ] - ], - [ - [ - [18.736569, 59.28818], - [18.765911, 59.298744], - [18.779756, 59.300019], - [18.799998, 59.29033], - [18.77699, 59.278578], - [18.771376, 59.265295], - [18.756347, 59.259691], - [18.741868, 59.263485], - [18.724618, 59.260972], - [18.714259, 59.261276], - [18.714149, 59.270692], - [18.724202, 59.283177], - [18.736569, 59.28818] - ] - ], - [ - [ - [17.777515, 59.096603], - [17.772393, 59.110159], - [17.774107, 59.120881], - [17.737907, 59.108235], - [17.732073, 59.101641], - [17.737399, 59.083378], - [17.735588, 59.071319], - [17.70533, 59.065929], - [17.691281, 59.067921], - [17.688868, 59.083095], - [17.689553, 59.096859], - [17.700994, 59.11475], - [17.691577, 59.142624], - [17.685497, 59.149033], - [17.679416, 59.159923], - [17.673725, 59.168104], - [17.666902, 59.171281], - [17.656725, 59.166785], - [17.659099, 59.157664], - [17.675791, 59.14252], - [17.680758, 59.126618], - [17.679825, 59.116889], - [17.673517, 59.111988], - [17.663695, 59.110853], - [17.654787, 59.11239], - [17.648393, 59.106474], - [17.653092, 59.101343], - [17.624976, 59.091513], - [17.618176, 59.087963], - [17.617977, 59.078897], - [17.631718, 59.073901], - [17.633104, 59.06782], - [17.614822, 59.052076], - [17.614916, 59.01175], - [17.621373, 58.998173], - [17.632729, 59.002305], - [17.647988, 59.02046], - [17.653125, 59.033784], - [17.656744, 59.05152], - [17.672165, 59.057243], - [17.685853, 59.051568], - [17.68848, 59.038735], - [17.692862, 58.990255], - [17.695064, 58.959289], - [17.686853, 58.940651], - [17.675993, 58.935169], - [17.657837, 58.940602], - [17.636825, 58.943065], - [17.618799, 58.904807], - [17.599992, 58.947757], - [17.525158, 58.967763], - [17.521423, 58.991624], - [17.363874, 58.992116], - [17.288877, 59.050081], - [17.303785, 59.141533], - [17.254024, 59.1904], - [17.2402, 59.242159], - [17.284619, 59.267922], - [17.302205, 59.251821], - [17.331237, 59.256997], - [17.3618, 59.257084], - [17.384659, 59.250946], - [17.417677, 59.242236], - [17.414503, 59.250365], - [17.380602, 59.2789], - [17.376652, 59.285699], - [17.378265, 59.311546], - [17.368368, 59.317447], - [17.366441, 59.325209], - [17.38364, 59.328243], - [17.389559, 59.321402], - [17.399751, 59.318853], - [17.424974, 59.309627], - [17.438008, 59.309716], - [17.465699, 59.292029], - [17.544274, 59.268943], - [17.566333, 59.268494], - [17.577899, 59.260194], - [17.590315, 59.2401], - [17.607179, 59.218912], - [17.6148, 59.210357], - [17.628912, 59.208373], - [17.632192, 59.215699], - [17.61965, 59.23411], - [17.614148, 59.256292], - [17.610602, 59.262187], - [17.60323, 59.266715], - [17.597923, 59.272535], - [17.603938, 59.281152], - [17.623836, 59.285105], - [17.634541, 59.281516], - [17.65475, 59.281761], - [17.656026, 59.288459], - [17.683696, 59.285172], - [17.70826, 59.276914], - [17.716297, 59.265985], - [17.73654, 59.256115], - [17.759106, 59.264703], - [17.780778, 59.260363], - [17.804356, 59.262023], - [17.84083, 59.262545], - [17.858383, 59.2561], - [17.867073, 59.245816], - [17.872041, 59.236955], - [17.882334, 59.244559], - [17.882449, 59.273237], - [17.875727, 59.279558], - [17.880688, 59.289859], - [17.904724, 59.295688], - [17.921752, 59.303018], - [17.941049, 59.306942], - [17.96163, 59.310823], - [17.985302, 59.312961], - [17.992951, 59.317476], - [18.015761, 59.317603], - [18.038322, 59.32143], - [18.06328, 59.323173], - [18.079809, 59.31941], - [18.102331, 59.317058], - [18.120399, 59.315382], - [18.142848, 59.318187], - [18.17829, 59.326365], - [18.197818, 59.331926], - [18.204894, 59.331077], - [18.2042, 59.318985], - [18.20694, 59.302788], - [18.213466, 59.297234], - [18.25186, 59.296923], - [18.271522, 59.298097], - [18.286801, 59.295004], - [18.294806, 59.285386], - [18.298548, 59.278229], - [18.324226, 59.275202], - [18.337613, 59.272823], - [18.341387, 59.265996], - [18.330617, 59.262927], - [18.310779, 59.265807], - [18.276253, 59.271083], - [18.258616, 59.270527], - [18.254389, 59.267617], - [18.257288, 59.264509], - [18.264573, 59.259953], - [18.288465, 59.258323], - [18.340149, 59.238476], - [18.357032, 59.227261], - [18.371625, 59.22418], - [18.386973, 59.222089], - [18.403837, 59.205165], - [18.395962, 59.198982], - [18.375102, 59.192822], - [18.365331, 59.181321], - [18.378747, 59.173791], - [18.410412, 59.167331], - [18.424923, 59.169294], - [18.440839, 59.172214], - [18.448855, 59.168629], - [18.426532, 59.144365], - [18.412307, 59.139371], - [18.400255, 59.136001], - [18.38993, 59.136279], - [18.38594, 59.141092], - [18.376303, 59.141696], - [18.351502, 59.129252], - [18.34309, 59.129138], - [18.328316, 59.130199], - [18.315009, 59.127187], - [18.284406, 59.120258], - [18.269238, 59.106546], - [18.315364, 59.107683], - [18.317801, 59.1009], - [18.30075, 59.093281], - [18.251947, 59.085149], - [18.22796, 59.079043], - [18.213435, 59.070674], - [18.201612, 59.068962], - [18.198869, 59.073405], - [18.198947, 59.079788], - [18.215243, 59.08677], - [18.225326, 59.090201], - [18.228298, 59.093487], - [18.220423, 59.098402], - [18.227598, 59.1046], - [18.23831, 59.107686], - [18.248089, 59.108437], - [18.257727, 59.113563], - [18.25694, 59.117951], - [18.247708, 59.122229], - [18.224864, 59.120807], - [18.211546, 59.117453], - [18.202871, 59.109271], - [18.210798, 59.105038], - [18.206304, 59.099437], - [18.188721, 59.092828], - [18.14244, 59.083908], - [18.136792, 59.079349], - [18.108524, 59.075355], - [18.100771, 59.069484], - [18.09449, 59.059223], - [18.082598, 59.056837], - [18.059217, 59.055728], - [18.042097, 59.052782], - [18.035332, 59.043874], - [18.033758, 59.035172], - [18.026067, 59.029647], - [18.014742, 59.032606], - [18.012449, 59.041401], - [17.999881, 59.04271], - [17.997778, 59.037052], - [18.005442, 59.011652], - [18.00711, 59.002877], - [18.002179, 58.998965], - [17.993743, 58.998497], - [17.990164, 59.007654], - [17.983616, 59.012856], - [17.976055, 59.002279], - [17.973796, 58.992924], - [17.955776, 58.968475], - [17.963382, 58.936038], - [17.952026, 58.913445], - [17.929321, 58.905576], - [17.906789, 58.892663], - [17.890775, 58.868164], - [17.875194, 58.860135], - [17.848452, 58.811342], - [17.785316, 58.802358], - [17.785629, 58.812097], - [17.803528, 58.824464], - [17.817414, 58.834908], - [17.821548, 58.850612], - [17.800399, 58.877296], - [17.77638, 58.90137], - [17.7538, 58.91397], - [17.747066, 58.9242], - [17.753442, 58.930111], - [17.757107, 58.967671], - [17.745773, 58.976992], - [17.747199, 58.985034], - [17.756615, 58.995569], - [17.747848, 59.024668], - [17.736451, 59.040391], - [17.737396, 59.050101], - [17.748961, 59.062625], - [17.760793, 59.071095], - [17.757327, 59.081931], - [17.764286, 59.093535], - [17.777515, 59.096603] - ] - ], - [ - [ - [17.890465, 59.33434], - [17.891071, 59.327605], - [17.884921, 59.324722], - [17.88216, 59.320069], - [17.876937, 59.310446], - [17.860547, 59.3031], - [17.846482, 59.305431], - [17.833841, 59.315802], - [17.808198, 59.332855], - [17.806219, 59.338937], - [17.814378, 59.348833], - [17.820697, 59.353404], - [17.841715, 59.354946], - [17.856314, 59.35091], - [17.869974, 59.337836], - [17.879311, 59.333584], - [17.890465, 59.33434] - ] - ], - [ - [ - [18.359343, 59.35865], - [18.394719, 59.360054], - [18.415789, 59.356113], - [18.447141, 59.340133], - [18.446963, 59.333087], - [18.433452, 59.329076], - [18.439498, 59.325218], - [18.437021, 59.320912], - [18.41845, 59.30697], - [18.412182, 59.298051], - [18.421268, 59.292436], - [18.451539, 59.294968], - [18.476409, 59.29058], - [18.498906, 59.282904], - [18.507831, 59.27593], - [18.538854, 59.268671], - [18.547159, 59.267437], - [18.551749, 59.273025], - [18.539372, 59.278415], - [18.540722, 59.284089], - [18.610263, 59.288502], - [18.680398, 59.297238], - [18.684966, 59.292063], - [18.635734, 59.262891], - [18.638963, 59.257423], - [18.619898, 59.255941], - [18.603326, 59.253398], - [18.592168, 59.247332], - [18.566288, 59.243016], - [18.564939, 59.231961], - [18.548293, 59.228729], - [18.535195, 59.222718], - [18.524279, 59.218312], - [18.482125, 59.224531], - [18.47095, 59.239633], - [18.449153, 59.242251], - [18.424151, 59.250661], - [18.414091, 59.26472], - [18.397782, 59.269878], - [18.378112, 59.285195], - [18.346343, 59.286375], - [18.333188, 59.290762], - [18.339624, 59.295631], - [18.349807, 59.299393], - [18.342981, 59.313365], - [18.34681, 59.318302], - [18.363029, 59.323247], - [18.370979, 59.330096], - [18.360834, 59.332388], - [18.343113, 59.331396], - [18.329838, 59.334887], - [18.304681, 59.337231], - [18.298922, 59.321248], - [18.293567, 59.314327], - [18.279915, 59.308974], - [18.25846, 59.30348], - [18.234552, 59.305104], - [18.22322, 59.308755], - [18.222384, 59.312811], - [18.221967, 59.320551], - [18.226567, 59.343968], - [18.250748, 59.350404], - [18.259633, 59.353874], - [18.264337, 59.3608], - [18.306833, 59.361716], - [18.324256, 59.359916], - [18.345229, 59.36092], - [18.359343, 59.35865] - ] - ], - [ - [ - [18.904417, 59.355742], - [18.906362, 59.350639], - [18.893995, 59.345974], - [18.893105, 59.339276], - [18.881154, 59.327872], - [18.883053, 59.322437], - [18.893662, 59.314048], - [18.884647, 59.30995], - [18.85174, 59.312304], - [18.85901, 59.318135], - [18.863244, 59.33044], - [18.868286, 59.344074], - [18.874364, 59.350615], - [18.887698, 59.357612], - [18.895631, 59.358367], - [18.904417, 59.355742] - ] - ], - [ - [ - [18.105711, 59.3897], - [18.113187, 59.392199], - [18.128691, 59.39081], - [18.148454, 59.386614], - [18.175089, 59.379559], - [18.203472, 59.37649], - [18.214391, 59.374861], - [18.229028, 59.377517], - [18.242522, 59.375488], - [18.244413, 59.36922], - [18.238427, 59.368191], - [18.222749, 59.367926], - [18.216546, 59.365059], - [18.218117, 59.361654], - [18.223543, 59.357818], - [18.217673, 59.351927], - [18.20548, 59.347869], - [18.188079, 59.34394], - [18.165982, 59.344495], - [18.143589, 59.348419], - [18.129928, 59.360526], - [18.126038, 59.366674], - [18.12615, 59.373722], - [18.119513, 59.37859], - [18.10741, 59.381256], - [18.10459, 59.385355], - [18.105711, 59.3897] - ] - ], - [ - [ - [18.720766, 59.363635], - [18.729915, 59.353612], - [18.73177, 59.342469], - [18.731305, 59.328692], - [18.724229, 59.31915], - [18.708442, 59.312883], - [18.682707, 59.305235], - [18.672031, 59.303189], - [18.664491, 59.30543], - [18.670659, 59.323411], - [18.671399, 59.334487], - [18.664652, 59.348126], - [18.637027, 59.372459], - [18.668394, 59.377945], - [18.684242, 59.369081], - [18.69529, 59.373795], - [18.720766, 59.363635] - ] - ], - [ - [ - [17.487842, 59.377946], - [17.469742, 59.38704], - [17.467512, 59.391117], - [17.469938, 59.396447], - [17.470617, 59.403818], - [17.469105, 59.408892], - [17.471086, 59.416247], - [17.491784, 59.421216], - [17.505323, 59.419263], - [17.509211, 59.411796], - [17.521593, 59.404487], - [17.534659, 59.383386], - [17.542681, 59.378521], - [17.544554, 59.370415], - [17.538113, 59.364494], - [17.534959, 59.358512], - [17.539753, 59.347], - [17.530719, 59.340799], - [17.519076, 59.341698], - [17.502919, 59.35043], - [17.492809, 59.361048], - [17.496246, 59.370044], - [17.487842, 59.377946] - ] - ], - [ - [ - [17.613013, 59.363289], - [17.599256, 59.362573], - [17.588012, 59.367835], - [17.572366, 59.389004], - [17.563821, 59.388168], - [17.553906, 59.387026], - [17.543827, 59.390932], - [17.540547, 59.397718], - [17.535539, 59.406889], - [17.532551, 59.417038], - [17.548257, 59.424443], - [17.562865, 59.426833], - [17.580748, 59.429482], - [17.593141, 59.429224], - [17.636342, 59.361788], - [17.653553, 59.32379], - [17.681326, 59.321184], - [17.700001, 59.312375], - [17.735407, 59.301521], - [17.759524, 59.29528], - [17.773016, 59.29364], - [17.797593, 59.298475], - [17.809842, 59.297191], - [17.808818, 59.293517], - [17.83923, 59.285431], - [17.843067, 59.278286], - [17.839523, 59.275343], - [17.812957, 59.2699], - [17.784051, 59.273566], - [17.775996, 59.277774], - [17.763808, 59.279394], - [17.726705, 59.279202], - [17.685412, 59.296227], - [17.647958, 59.3061], - [17.632197, 59.311475], - [17.626205, 59.316982], - [17.624336, 59.324748], - [17.628258, 59.331715], - [17.624395, 59.34591], - [17.611613, 59.348539], - [17.617539, 59.356143], - [17.613013, 59.363289] - ] - ], - [ - [ - [18.46251, 59.397542], - [18.456057, 59.403763], - [18.444578, 59.406097], - [18.438069, 59.411653], - [18.436007, 59.416419], - [18.44477, 59.418532], - [18.454389, 59.416918], - [18.465202, 59.419985], - [18.478839, 59.419276], - [18.499447, 59.416696], - [18.504982, 59.413843], - [18.519049, 59.389921], - [18.584156, 59.367255], - [18.602381, 59.372111], - [18.615346, 59.37141], - [18.622485, 59.365813], - [18.621694, 59.359453], - [18.612022, 59.355027], - [18.601497, 59.354319], - [18.589927, 59.355654], - [18.568978, 59.355237], - [18.549203, 59.353446], - [18.554224, 59.346577], - [18.575987, 59.348649], - [18.605278, 59.342778], - [18.626663, 59.336451], - [18.634508, 59.326141], - [18.633459, 59.317757], - [18.62489, 59.30658], - [18.611601, 59.299215], - [18.58714, 59.296219], - [18.537813, 59.292243], - [18.517969, 59.289766], - [18.483568, 59.30148], - [18.469329, 59.302203], - [18.456141, 59.306271], - [18.457144, 59.314648], - [18.468641, 59.339884], - [18.469026, 59.348615], - [18.464374, 59.353452], - [18.45844, 59.358315], - [18.455752, 59.363094], - [18.459936, 59.370714], - [18.466906, 59.37994], - [18.467308, 59.38867], - [18.46251, 59.397542] - ] - ], - [ - [ - [18.934964, 59.393809], - [18.93918, 59.376524], - [18.931314, 59.371395], - [18.914443, 59.372247], - [18.910567, 59.377406], - [18.912476, 59.39653], - [18.906058, 59.402432], - [18.920349, 59.406699], - [18.923945, 59.413988], - [18.934294, 59.418043], - [18.951642, 59.415821], - [18.955161, 59.407975], - [18.934964, 59.393809] - ] - ], - [ - [ - [17.786655, 59.325938], - [17.789765, 59.317801], - [17.781194, 59.310254], - [17.760709, 59.307357], - [17.733154, 59.311655], - [17.71992, 59.323038], - [17.713198, 59.327555], - [17.696928, 59.327567], - [17.678913, 59.343414], - [17.654215, 59.364436], - [17.636785, 59.386985], - [17.630513, 59.403252], - [17.604408, 59.431008], - [17.60151, 59.441831], - [17.598077, 59.446933], - [17.599664, 59.449928], - [17.613759, 59.453667], - [17.628562, 59.444285], - [17.643226, 59.440623], - [17.6629, 59.427765], - [17.679342, 59.422035], - [17.690812, 59.42583], - [17.709329, 59.421395], - [17.730435, 59.410177], - [17.724953, 59.407617], - [17.713888, 59.407851], - [17.703816, 59.405044], - [17.70193, 59.399038], - [17.713049, 59.386027], - [17.723235, 59.383454], - [17.731315, 59.385966], - [17.730676, 59.3927], - [17.734892, 59.395637], - [17.762032, 59.379915], - [17.764819, 59.37515], - [17.775646, 59.365837], - [17.780858, 59.352613], - [17.778181, 59.338898], - [17.776119, 59.331207], - [17.786655, 59.325938] - ] - ], - [ - [ - [18.312451, 59.432833], - [18.313948, 59.440195], - [18.323623, 59.444634], - [18.332217, 59.44542], - [18.344474, 59.438375], - [18.358464, 59.434977], - [18.359981, 59.431238], - [18.336789, 59.428493], - [18.317294, 59.418254], - [18.305452, 59.423268], - [18.312451, 59.432833] - ] - ], - [ - [ - [18.851129, 59.407148], - [18.853964, 59.413792], - [18.851215, 59.422614], - [18.850798, 59.429352], - [18.858237, 59.436193], - [18.873584, 59.443451], - [18.891161, 59.447618], - [18.904926, 59.447875], - [18.919184, 59.446764], - [18.922318, 59.440949], - [18.922689, 59.43387], - [18.91289, 59.429128], - [18.903084, 59.429091], - [18.900949, 59.418066], - [18.884783, 59.409484], - [18.869622, 59.403553], - [18.864312, 59.39801], - [18.859778, 59.393427], - [18.845327, 59.387818], - [18.835925, 59.390795], - [18.840197, 59.398393], - [18.851129, 59.407148] - ] - ], - [ - [ - [18.578819, 59.45616], - [18.573637, 59.451267], - [18.57214, 59.439201], - [18.560556, 59.430114], - [18.544714, 59.428876], - [18.543513, 59.434964], - [18.54624, 59.446654], - [18.539295, 59.453913], - [18.526332, 59.460327], - [18.523199, 59.466795], - [18.525127, 59.477165], - [18.522351, 59.481282], - [18.513617, 59.484876], - [18.519902, 59.493448], - [18.53205, 59.496465], - [18.54434, 59.495121], - [18.546792, 59.488334], - [18.559461, 59.484951], - [18.570249, 59.492716], - [18.575762, 59.500288], - [18.568841, 59.5025], - [18.552564, 59.503292], - [18.552353, 59.506997], - [18.562169, 59.512098], - [18.561604, 59.518173], - [18.568707, 59.522675], - [18.584658, 59.529621], - [18.590435, 59.539207], - [18.634702, 59.552062], - [18.644499, 59.556834], - [18.660933, 59.562414], - [18.672375, 59.559388], - [18.661773, 59.553315], - [18.662653, 59.549919], - [18.676459, 59.5502], - [18.676271, 59.538429], - [18.687704, 59.535412], - [18.688443, 59.531021], - [18.67252, 59.529467], - [18.662516, 59.52303], - [18.646422, 59.509711], - [18.636613, 59.499568], - [18.620406, 59.495661], - [18.608743, 59.496666], - [18.599179, 59.493574], - [18.592992, 59.486018], - [18.599884, 59.473045], - [18.598276, 59.459985], - [18.591861, 59.455784], - [18.578819, 59.45616] - ] - ], - [ - [ - [18.972064, 59.641328], - [18.970129, 59.620786], - [18.913901, 59.619438], - [18.90537, 59.594597], - [18.857532, 59.599277], - [18.772293, 59.569008], - [18.754338, 59.577462], - [18.807577, 59.598636], - [18.856431, 59.638718], - [18.91721, 59.655182], - [18.972064, 59.641328] - ] - ], - [ - [ - [18.06328, 59.323173], - [18.067536, 59.332483], - [18.045794, 59.330317], - [18.028819, 59.33006], - [18.0111, 59.33486], - [17.993153, 59.346046], - [17.988285, 59.347169], - [17.983937, 59.343237], - [17.9822, 59.332858], - [17.975216, 59.322271], - [17.960566, 59.319264], - [17.948118, 59.318544], - [17.931588, 59.328674], - [17.912879, 59.33046], - [17.902344, 59.335748], - [17.894751, 59.344319], - [17.856849, 59.35628], - [17.830902, 59.370316], - [17.79688, 59.388995], - [17.786621, 59.397187], - [17.776716, 59.402779], - [17.773612, 59.410907], - [17.775569, 59.423977], - [17.795687, 59.455117], - [17.799954, 59.458383], - [17.803439, 59.460655], - [17.806687, 59.466963], - [17.79833, 59.472756], - [17.782548, 59.46751], - [17.772269, 59.482516], - [17.759711, 59.481456], - [17.750884, 59.464842], - [17.752121, 59.444316], - [17.739471, 59.435525], - [17.72916, 59.437087], - [17.729767, 59.443121], - [17.716196, 59.444766], - [17.699566, 59.448483], - [17.697969, 59.465664], - [17.688699, 59.47123], - [17.68769, 59.481004], - [17.669336, 59.487445], - [17.646568, 59.49565], - [17.625758, 59.4971], - [17.611816, 59.488324], - [17.61516, 59.482208], - [17.621675, 59.475007], - [17.617174, 59.469053], - [17.600872, 59.469395], - [17.595747, 59.477564], - [17.596354, 59.497712], - [17.588947, 59.502572], - [17.576439, 59.501817], - [17.570619, 59.495557], - [17.57586, 59.488734], - [17.567889, 59.48754], - [17.531971, 59.50945], - [17.527268, 59.515258], - [17.531089, 59.521224], - [17.54552, 59.528323], - [17.560348, 59.532731], - [17.571732, 59.549295], - [17.568373, 59.555419], - [17.566803, 59.56194], - [17.572272, 59.575828], - [17.534039, 59.595093], - [17.531076, 59.612622], - [17.54506, 59.628804], - [17.560992, 59.637211], - [17.575552, 59.638263], - [17.590883, 59.649817], - [17.582479, 59.655929], - [17.611378, 59.669109], - [17.639668, 59.675908], - [17.635471, 59.694983], - [17.664943, 59.692181], - [17.69249, 59.690917], - [17.705425, 59.681913], - [17.730847, 59.679352], - [17.736142, 59.666462], - [17.755084, 59.665033], - [17.768353, 59.679201], - [17.791375, 59.685409], - [17.813047, 59.684935], - [17.823724, 59.679986], - [17.843324, 59.684927], - [17.838109, 59.69176], - [17.917439, 59.707092], - [17.937252, 59.707643], - [17.954933, 59.712607], - [17.987989, 59.725944], - [18.009106, 59.726121], - [18.036655, 59.736889], - [18.046224, 59.733969], - [18.067611, 59.736476], - [18.089003, 59.736124], - [18.139746, 59.814136], - [18.297296, 59.832933], - [18.373688, 59.868859], - [18.402974, 59.995796], - [18.441823, 60.003674], - [18.381651, 60.045272], - [18.462378, 60.056678], - [18.488981, 60.105569], - [18.510938, 60.154819], - [18.610063, 60.141523], - [18.675926, 60.130825], - [18.708345, 60.162836], - [18.721155, 60.212805], - [18.799047, 60.171928], - [18.781452, 60.107765], - [18.81998, 60.091902], - [18.859702, 60.003048], - [18.928683, 59.937247], - [19.021565, 59.900412], - [19.084355, 59.871483], - [19.041212, 59.818581], - [18.969619, 59.820898], - [18.969519, 59.777155], - [19.068498, 59.759795], - [19.075275, 59.715475], - [19.014947, 59.696824], - [18.859398, 59.706079], - [18.741369, 59.675656], - [18.724113, 59.62242], - [18.667136, 59.577313], - [18.629752, 59.564985], - [18.608078, 59.55955], - [18.577278, 59.549339], - [18.545009, 59.537795], - [18.536261, 59.530649], - [18.517806, 59.529821], - [18.476439, 59.507761], - [18.466927, 59.505001], - [18.453728, 59.493252], - [18.436535, 59.486334], - [18.41661, 59.484174], - [18.410274, 59.480313], - [18.410849, 59.474257], - [18.389919, 59.457663], - [18.375981, 59.456016], - [18.363784, 59.458034], - [18.347309, 59.457125], - [18.341511, 59.463327], - [18.328444, 59.463669], - [18.316411, 59.461297], - [18.30888, 59.464189], - [18.299687, 59.469466], - [18.285248, 59.469175], - [18.277332, 59.462994], - [18.289384, 59.459649], - [18.302238, 59.457635], - [18.307409, 59.451447], - [18.300644, 59.443898], - [18.290971, 59.43944], - [18.269098, 59.436648], - [18.252583, 59.441108], - [18.235486, 59.440206], - [18.228678, 59.435007], - [18.234342, 59.430151], - [18.245385, 59.429532], - [18.263128, 59.430421], - [18.271573, 59.424146], - [18.285444, 59.41404], - [18.280962, 59.409114], - [18.268851, 59.406075], - [18.272344, 59.402282], - [18.294603, 59.402712], - [18.302561, 59.398133], - [18.294075, 59.392637], - [18.271564, 59.389859], - [18.214588, 59.388301], - [18.200684, 59.392355], - [18.185124, 59.393421], - [18.163352, 59.397337], - [18.165165, 59.407703], - [18.168427, 59.41939], - [18.175035, 59.425942], - [18.194913, 59.422419], - [18.202912, 59.423898], - [18.203025, 59.433469], - [18.202744, 59.439706], - [18.197178, 59.442529], - [18.172905, 59.436084], - [18.161167, 59.436377], - [18.157147, 59.441191], - [18.15369, 59.451355], - [18.142053, 59.448843], - [18.109527, 59.436319], - [18.116217, 59.431783], - [18.101139, 59.42544], - [18.096731, 59.41915], - [18.09564, 59.405071], - [18.087816, 59.393238], - [18.060215, 59.377949], - [18.097385, 59.355282], - [18.124142, 59.343522], - [18.137335, 59.333112], - [18.137244, 59.326396], - [18.124358, 59.321678], - [18.108299, 59.32375], - [18.091086, 59.333258], - [18.068623, 59.332698], - [18.077417, 59.327534], - [18.06328, 59.323173] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5951", - "properties": { - "name": "Uppsala", - "ISOCODE": "SE-C", - "density": 0, - "path": "/world/Sweden/Uppsala" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [17.365944, 59.612204], - [17.354637, 59.602885], - [17.422739, 59.527204], - [17.425629, 59.474315], - [17.340654, 59.47674], - [17.216958, 59.532646], - [17.10309, 59.560514], - [17.043533, 59.551906], - [16.973619, 59.531246], - [16.904703, 59.567374], - [16.868926, 59.674413], - [16.794534, 59.731978], - [16.744107, 59.781261], - [16.79965, 59.818725], - [16.831155, 59.860189], - [16.77806, 59.899971], - [16.79845, 59.922215], - [16.789547, 59.969982], - [16.691831, 60.010815], - [16.721706, 60.041525], - [16.692888, 60.110514], - [16.735034, 60.118663], - [16.720361, 60.199881], - [16.797354, 60.20168], - [16.881085, 60.241555], - [16.864918, 60.262563], - [16.905685, 60.287104], - [17.100329, 60.268682], - [17.199449, 60.30916], - [17.204033, 60.428678], - [17.300719, 60.471103], - [17.350723, 60.652299], - [17.607619, 60.649564], - [17.6027, 60.59601], - [17.65509, 60.524456], - [17.731006, 60.531741], - [17.789452, 60.578432], - [17.907688, 60.60258], - [17.987809, 60.574883], - [17.997374, 60.510549], - [18.101741, 60.43807], - [18.270508, 60.360885], - [18.368631, 60.346091], - [18.404703, 60.36697], - [18.366341, 60.45364], - [18.37286, 60.496823], - [18.408685, 60.504992], - [18.442838, 60.416812], - [18.511639, 60.356836], - [18.580964, 60.344128], - [18.566944, 60.312458], - [18.48179, 60.310016], - [18.561962, 60.27461], - [18.600384, 60.235163], - [18.569724, 60.208441], - [18.507949, 60.20967], - [18.510938, 60.154819], - [18.488981, 60.105569], - [18.462378, 60.056678], - [18.381651, 60.045272], - [18.441823, 60.003674], - [18.402974, 59.995796], - [18.373688, 59.868859], - [18.297296, 59.832933], - [18.139746, 59.814136], - [18.089003, 59.736124], - [18.067611, 59.736476], - [18.046224, 59.733969], - [18.036655, 59.736889], - [18.009106, 59.726121], - [17.987989, 59.725944], - [17.954933, 59.712607], - [17.937252, 59.707643], - [17.917439, 59.707092], - [17.838109, 59.69176], - [17.843324, 59.684927], - [17.823724, 59.679986], - [17.813047, 59.684935], - [17.791375, 59.685409], - [17.768353, 59.679201], - [17.755084, 59.665033], - [17.736142, 59.666462], - [17.730847, 59.679352], - [17.705425, 59.681913], - [17.69249, 59.690917], - [17.664943, 59.692181], - [17.635471, 59.694983], - [17.639668, 59.675908], - [17.611378, 59.669109], - [17.582479, 59.655929], - [17.590883, 59.649817], - [17.575552, 59.638263], - [17.560992, 59.637211], - [17.54506, 59.628804], - [17.531076, 59.612622], - [17.534039, 59.595093], - [17.572272, 59.575828], - [17.566803, 59.56194], - [17.552448, 59.560436], - [17.539902, 59.545573], - [17.52639, 59.534088], - [17.507355, 59.533799], - [17.473833, 59.546898], - [17.441631, 59.568035], - [17.414038, 59.589403], - [17.404097, 59.603027], - [17.398345, 59.619598], - [17.365944, 59.612204] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5947", - "properties": { - "name": "Värmland", - "ISOCODE": "SE-S", - "density": 0, - "path": "/world/Sweden/Värmland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [13.100279, 59.250401], - [13.165903, 59.17391], - [13.223856, 59.072411], - [13.259445, 58.919466], - [13.214266, 58.897811], - [13.107242, 58.927272], - [13.07675, 59.025836], - [13.02433, 59.02605], - [12.995154, 59.065022], - [12.906321, 59.055735], - [12.898145, 59.095703], - [12.772443, 59.070446], - [12.766164, 59.152815], - [12.710107, 59.178242], - [12.638742, 59.195179], - [12.574241, 59.134316], - [12.464286, 59.144925], - [12.421316, 59.19716], - [12.346281, 59.187016], - [12.267497, 59.20217], - [12.230906, 59.273605], - [12.061838, 59.271632], - [12.084338, 59.197095], - [11.948192, 59.262415], - [11.820183, 59.235573], - [11.816902, 59.343649], - [11.779473, 59.386129], - [11.745303, 59.489708], - [11.696134, 59.588281], - [11.744468, 59.639175], - [11.856385, 59.654057], - [11.885405, 59.689248], - [11.941949, 59.725443], - [11.932417, 59.785153], - [11.864665, 59.846509], - [11.971592, 59.902875], - [12.055739, 59.887814], - [12.160815, 59.897271], - [12.222985, 59.935006], - [12.34922, 59.967109], - [12.380461, 60.012959], - [12.447545, 60.039019], - [12.506083, 60.133227], - [12.541099, 60.18615], - [12.49888, 60.32626], - [12.609446, 60.414559], - [12.602919, 60.522898], - [12.50815, 60.603461], - [12.511253, 60.652016], - [12.391956, 60.74586], - [12.33584, 60.848471], - [12.341859, 60.893326], - [12.232791, 61.019088], - [12.48608, 61.052799], - [12.615224, 61.046888], - [12.67632, 61.058109], - [12.702387, 61.007994], - [13.175439, 60.766119], - [13.204982, 60.69829], - [13.260102, 60.698038], - [13.305194, 60.636806], - [13.437233, 60.527082], - [13.496855, 60.447148], - [13.567866, 60.421451], - [13.692454, 60.41757], - [13.848025, 60.268447], - [13.967804, 60.188652], - [13.949398, 60.266798], - [14.018711, 60.268288], - [14.038642, 60.238516], - [14.137722, 60.244332], - [14.186498, 60.175911], - [14.215313, 60.098742], - [14.438386, 60.025714], - [14.462839, 59.978774], - [14.343046, 59.955533], - [14.375701, 59.919678], - [14.431005, 59.908021], - [14.415991, 59.831038], - [14.437498, 59.775802], - [14.384006, 59.758474], - [14.438439, 59.707092], - [14.42087, 59.671788], - [14.459988, 59.591606], - [14.463339, 59.532416], - [14.417155, 59.541872], - [14.397898, 59.515694], - [14.462847, 59.447502], - [14.375271, 59.397526], - [14.318646, 59.322986], - [14.319132, 59.312658], - [14.283942, 59.23205], - [14.299317, 59.182535], - [14.280654, 59.15813], - [14.329118, 59.097997], - [14.267813, 58.999752], - [14.21002, 59.042257], - [14.116709, 59.041012], - [14.147732, 59.084914], - [14.095629, 59.107214], - [14.023722, 59.078008], - [13.981626, 59.03839], - [13.947853, 59.045336], - [13.946891, 59.099556], - [14.003327, 59.160206], - [14.068541, 59.229468], - [14.032265, 59.321422], - [13.946915, 59.31806], - [13.886883, 59.338182], - [13.814243, 59.367262], - [13.745212, 59.335964], - [13.692335, 59.377949], - [13.604938, 59.355787], - [13.578262, 59.308783], - [13.504902, 59.27033], - [13.43751, 59.339867], - [13.380725, 59.374654], - [13.283936, 59.365894], - [13.255685, 59.343565], - [13.282733, 59.313629], - [13.222018, 59.308811], - [13.183029, 59.330169], - [13.148929, 59.353144], - [13.153958, 59.27899], - [13.100279, 59.250401] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5964", - "properties": { - "name": "Västerbotten", - "ISOCODE": "SE-AC", - "density": 0, - "path": "/world/Sweden/Västerbotten" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [19.747503, 63.542902], - [19.715459, 63.521124], - [19.746751, 63.467513], - [19.663447, 63.443113], - [19.577247, 63.522927], - [19.462651, 63.573854], - [19.414282, 63.544766], - [19.474985, 63.48167], - [19.386767, 63.464802], - [19.278277, 63.479233], - [19.177499, 63.566526], - [19.181385, 63.608157], - [18.964029, 63.768351], - [18.902779, 63.801993], - [18.800519, 63.796672], - [18.751064, 63.825746], - [18.6326, 63.839684], - [18.487956, 63.849883], - [18.424754, 63.925266], - [18.473282, 63.967387], - [18.381942, 64.00829], - [17.707624, 63.893245], - [17.260747, 63.929773], - [16.845236, 63.967878], - [16.724291, 64.026835], - [16.205936, 64.284373], - [16.033083, 64.277145], - [16.028569, 64.3498], - [15.757897, 64.428699], - [15.749737, 64.490632], - [15.703184, 64.550821], - [15.626895, 64.532844], - [15.639758, 64.456239], - [15.573138, 64.457665], - [15.542991, 64.533292], - [15.424268, 64.576922], - [15.422533, 64.602329], - [15.361526, 64.594345], - [15.335205, 64.622689], - [15.264455, 64.642234], - [15.332943, 64.66257], - [15.231793, 64.728705], - [15.046683, 64.765941], - [15.031683, 64.824446], - [14.950443, 64.873165], - [14.865919, 64.875005], - [14.786702, 64.91632], - [14.791616, 64.954046], - [14.720448, 64.988942], - [14.674495, 65.016749], - [14.620805, 65.024379], - [14.330409, 65.131043], - [14.371274, 65.260035], - [14.500314, 65.314538], - [14.50226, 65.457702], - [14.543711, 65.699209], - [14.638823, 65.820032], - [14.534875, 66.138284], - [14.980546, 66.149332], - [15.037858, 66.152371], - [15.483404, 66.29219], - [15.465048, 66.354476], - [15.822678, 66.300218], - [16.579049, 66.054594], - [16.779193, 66.053085], - [17.661291, 65.670906], - [17.793266, 65.646552], - [18.073337, 65.607358], - [18.180348, 65.592085], - [18.230943, 65.548221], - [18.293836, 65.52537], - [18.426727, 65.510038], - [18.514454, 65.487862], - [18.580069, 65.454381], - [18.701512, 65.451675], - [18.750524, 65.442875], - [18.766815, 65.418096], - [18.822811, 65.405167], - [18.852481, 65.381267], - [18.943659, 65.358563], - [19.041098, 65.340811], - [19.044366, 65.316895], - [19.08963, 65.320997], - [19.285443, 65.257795], - [19.250513, 65.2366], - [19.253559, 65.212672], - [19.334676, 65.188571], - [19.413849, 65.149967], - [19.599065, 65.191012], - [19.653998, 65.214296], - [19.881292, 65.394348], - [20.755287, 65.213666], - [21.29237, 65.170224], - [21.312535, 65.131809], - [21.501578, 65.080467], - [21.357536, 64.968373], - [21.236689, 64.95136], - [21.26735, 64.899197], - [21.13049, 64.830395], - [21.016441, 64.843818], - [21.070464, 64.786069], - [21.253581, 64.773912], - [21.24312, 64.690488], - [21.191743, 64.663803], - [21.251692, 64.610913], - [21.365504, 64.599068], - [21.450557, 64.554831], - [21.486995, 64.472682], - [21.568673, 64.474526], - [21.568534, 64.439671], - [21.436043, 64.350693], - [21.224596, 64.285776], - [21.079606, 64.213613], - [20.957981, 64.150933], - [20.914119, 64.055838], - [20.822494, 63.946577], - [20.739672, 63.870727], - [20.663084, 63.813853], - [20.514855, 63.806338], - [20.429416, 63.762345], - [20.397913, 63.690009], - [20.312154, 63.691708], - [20.286565, 63.660925], - [20.117641, 63.660281], - [20.014995, 63.670496], - [19.995018, 63.622792], - [19.910152, 63.626026], - [19.747503, 63.542902] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5957", - "properties": { - "name": "Västernorrland", - "ISOCODE": "SE-Y", - "density": 0, - "path": "/world/Sweden/Västernorrland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [16.240344, 62.253612], - [16.060189, 62.250909], - [16.021537, 62.270777], - [15.620056, 62.358247], - [15.478617, 62.352934], - [15.324458, 62.289022], - [15.273172, 62.307283], - [15.159058, 62.26774], - [14.947128, 62.325005], - [14.868697, 62.408254], - [14.805508, 62.416016], - [14.780401, 62.466586], - [14.835259, 62.46766], - [14.801025, 62.541527], - [14.794852, 62.601458], - [14.916465, 62.613257], - [15.077826, 62.604382], - [15.141298, 62.574191], - [15.256146, 62.611961], - [15.595481, 62.634596], - [15.963469, 62.718241], - [16.128164, 62.70015], - [16.252958, 62.723953], - [16.368134, 62.707739], - [16.397626, 62.77552], - [16.472705, 62.821948], - [16.660556, 62.932433], - [17.011966, 62.954213], - [16.602047, 63.184227], - [16.126467, 63.379445], - [16.135344, 63.440536], - [16.05556, 63.459322], - [15.983423, 63.446879], - [15.972622, 63.516247], - [15.991134, 63.564156], - [15.797167, 63.673845], - [15.878331, 63.68775], - [15.988516, 63.658453], - [16.097767, 63.699727], - [16.251437, 63.666061], - [16.302706, 63.688617], - [16.371423, 63.672135], - [16.613574, 63.718331], - [16.574807, 63.822034], - [16.587966, 63.893795], - [16.724291, 64.026835], - [16.845236, 63.967878], - [17.260747, 63.929773], - [17.707624, 63.893245], - [18.381942, 64.00829], - [18.473282, 63.967387], - [18.424754, 63.925266], - [18.487956, 63.849883], - [18.6326, 63.839684], - [18.751064, 63.825746], - [18.800519, 63.796672], - [18.902779, 63.801993], - [18.964029, 63.768351], - [19.181385, 63.608157], - [19.177499, 63.566526], - [19.278277, 63.479233], - [19.228351, 63.340229], - [19.114491, 63.328837], - [19.099144, 63.246162], - [19.018195, 63.20307], - [18.935877, 63.231118], - [18.719234, 63.168825], - [18.608069, 63.173271], - [18.501343, 63.081461], - [18.485984, 63.034639], - [18.401437, 63.033415], - [18.379081, 63.004073], - [18.542346, 62.990531], - [18.489797, 62.921514], - [18.382678, 62.843678], - [18.26945, 62.884483], - [18.218713, 62.864419], - [18.276776, 62.836662], - [18.135396, 62.772037], - [18.007748, 62.785754], - [18.021163, 62.750897], - [18.157089, 62.754154], - [18.048175, 62.678104], - [17.976248, 62.652173], - [18.062627, 62.615273], - [17.906459, 62.560644], - [17.846163, 62.484796], - [17.74874, 62.511415], - [17.676342, 62.48178], - [17.696044, 62.43321], - [17.548662, 62.450342], - [17.477133, 62.522269], - [17.388714, 62.507458], - [17.389571, 62.480786], - [17.493282, 62.461272], - [17.511441, 62.381976], - [17.434163, 62.372535], - [17.414353, 62.333888], - [17.492703, 62.272416], - [17.641981, 62.251532], - [17.612077, 62.206312], - [17.52385, 62.197695], - [17.479641, 62.147357], - [17.328438, 62.168828], - [17.237118, 62.162065], - [17.142944, 62.184445], - [17.092458, 62.171327], - [16.969356, 62.188173], - [16.905774, 62.183075], - [16.794786, 62.215318], - [16.512874, 62.248643], - [16.240344, 62.253612] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5946", - "properties": { - "name": "Västmanland", - "ISOCODE": "SE-U", - "density": 0, - "path": "/world/Sweden/Västmanland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [15.534653, 59.708315], - [15.481595, 59.795765], - [15.407201, 59.816187], - [15.401702, 59.86114], - [15.481482, 59.906177], - [15.530114, 59.96139], - [15.608909, 59.958767], - [15.67789, 59.945182], - [15.709452, 60.018217], - [15.662605, 60.049858], - [15.71848, 60.1028], - [15.715352, 60.135576], - [15.754954, 60.149599], - [15.779051, 60.182169], - [15.893911, 60.168725], - [15.966668, 60.198868], - [16.019263, 60.190922], - [16.052881, 60.150286], - [16.10659, 60.14707], - [16.170559, 60.126903], - [16.153167, 60.086272], - [16.191697, 60.076077], - [16.377732, 60.08517], - [16.420431, 60.124212], - [16.515507, 60.154497], - [16.516243, 60.185271], - [16.5701, 60.196362], - [16.720361, 60.199881], - [16.735034, 60.118663], - [16.692888, 60.110514], - [16.721706, 60.041525], - [16.691831, 60.010815], - [16.789547, 59.969982], - [16.79845, 59.922215], - [16.77806, 59.899971], - [16.831155, 59.860189], - [16.79965, 59.818725], - [16.744107, 59.781261], - [16.794534, 59.731978], - [16.868926, 59.674413], - [16.904703, 59.567374], - [16.820251, 59.572426], - [16.792578, 59.548867], - [16.713236, 59.532349], - [16.655816, 59.572393], - [16.58404, 59.598827], - [16.515234, 59.581506], - [16.550512, 59.55202], - [16.484775, 59.518176], - [16.445956, 59.491649], - [16.324828, 59.47758], - [16.240879, 59.498236], - [16.1753, 59.477846], - [16.058245, 59.479587], - [16.086893, 59.436163], - [16.230719, 59.442687], - [16.223928, 59.415025], - [16.272445, 59.395678], - [16.259268, 59.37112], - [16.135169, 59.357093], - [16.051708, 59.364027], - [15.997484, 59.374585], - [15.926026, 59.342651], - [15.854282, 59.299654], - [15.7957, 59.285219], - [15.757756, 59.320058], - [15.616753, 59.322846], - [15.641542, 59.354002], - [15.579321, 59.428799], - [15.707383, 59.424426], - [15.705742, 59.478839], - [15.673484, 59.493379], - [15.709248, 59.529935], - [15.613282, 59.525825], - [15.610412, 59.591168], - [15.598662, 59.633482], - [15.533532, 59.629934], - [15.489794, 59.657742], - [15.534653, 59.708315] - ] - ] - ] - } - }, - { - "type": "Feature", - "id": "5962", - "properties": { - "name": "Västra Götaland", - "ISOCODE": "SE-O", - "density": 0, - "path": "/world/Sweden/Västra Götaland" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [12.28382, 57.604219], - [12.205408, 57.576467], - [12.138047, 57.562313], - [12.038235, 57.549647], - [12.01304, 57.56284], - [11.947128, 57.561146], - [11.951252, 57.585063], - [11.95174, 57.628488], - [11.941955, 57.637779], - [11.925858, 57.622177], - [11.91307, 57.622241], - [11.881982, 57.666102], - [11.880221, 57.673543], - [11.887225, 57.68184], - [11.957646, 57.70588], - [11.938011, 57.705164], - [11.90815, 57.698692], - [11.893788, 57.704055], - [11.849106, 57.698098], - [11.830715, 57.713484], - [11.814672, 57.716106], - [11.801218, 57.712922], - [11.7967, 57.69988], - [11.785194, 57.696755], - [11.772456, 57.696278], - [11.755433, 57.698834], - [11.739093, 57.71323], - [11.73149, 57.719898], - [11.731252, 57.728735], - [11.748637, 57.743613], - [11.783166, 57.752958], - [11.818884, 57.760209], - [11.828031, 57.792001], - [11.80768, 57.791413], - [11.778343, 57.788695], - [11.766144, 57.791982], - [11.759913, 57.813185], - [11.751147, 57.820895], - [11.729207, 57.83184], - [11.716338, 57.840998], - [11.72179, 57.854611], - [11.740914, 57.869815], - [11.752337, 57.883115], - [11.760183, 57.902169], - [11.790193, 57.936541], - [11.776086, 57.947796], - [11.77563, 57.961183], - [11.78147, 57.971228], - [11.830825, 58.001778], - [11.841445, 58.026188], - [11.841733, 58.048047], - [11.833854, 58.070136], - [11.828889, 58.092019], - [11.845925, 58.104755], - [11.865616, 58.11954], - [11.880358, 58.137126], - [11.883465, 58.162459], - [11.876274, 58.185686], - [11.89552, 58.189405], - [11.918856, 58.204301], - [11.919807, 58.220669], - [11.88959, 58.219897], - [11.886804, 58.241741], - [11.865851, 58.262657], - [11.833171, 58.289326], - [11.839332, 58.302118], - [11.878747, 58.326946], - [11.816703, 58.324593], - [11.771208, 58.331774], - [11.733538, 58.328575], - [11.753517, 58.317058], - [11.743979, 58.30685], - [11.70483, 58.306642], - [11.68391, 58.283048], - [11.658211, 58.267582], - [11.634091, 58.257438], - [11.60329, 58.253569], - [11.589573, 58.233988], - [11.565505, 58.216902], - [11.530363, 58.207701], - [11.481945, 58.200979], - [11.438972, 58.198714], - [11.431412, 58.204792], - [11.455638, 58.229183], - [11.470954, 58.241913], - [11.499673, 58.24632], - [11.525143, 58.256499], - [11.54892, 58.272091], - [11.563354, 58.28477], - [11.559542, 58.311565], - [11.53676, 58.301771], - [11.512772, 58.28119], - [11.493368, 58.269695], - [11.453017, 58.265547], - [11.448132, 58.273219], - [11.464362, 58.282942], - [11.471228, 58.300606], - [11.446979, 58.302828], - [11.42899, 58.308676], - [11.437189, 58.326235], - [11.445232, 58.347608], - [11.414529, 58.342601], - [11.413625, 58.373927], - [11.384347, 58.35794], - [11.359483, 58.361959], - [11.349293, 58.371259], - [11.334611, 58.372616], - [11.326014, 58.360808], - [11.293368, 58.349212], - [11.25874, 58.348263], - [11.253238, 58.357912], - [11.279146, 58.375573], - [11.273666, 58.387318], - [11.269261, 58.401061], - [11.265779, 58.418775], - [11.272819, 58.432241], - [11.2919, 58.435433], - [11.299707, 58.421054], - [11.312036, 58.420319], - [11.332528, 58.427618], - [11.336929, 58.439935], - [11.330107, 58.453398], - [11.326823, 58.46773], - [11.270949, 58.562789], - [11.309444, 58.5957], - [11.254891, 58.683206], - [11.177406, 58.747358], - [11.17934, 58.834801], - [11.171769, 58.858076], - [11.131452, 58.90947], - [11.131539, 58.924489], - [11.136189, 58.927903], - [11.160145, 58.924083], - [11.173121, 58.926239], - [11.170864, 58.935797], - [11.141765, 58.955482], - [11.134045, 58.967494], - [11.131293, 59.011891], - [11.211269, 59.089757], - [11.252596, 59.095218], - [11.278303, 59.102718], - [11.315514, 59.116563], - [11.359249, 59.111365], - [11.454773, 59.018137], - [11.444851, 58.923398], - [11.451974, 58.898477], - [11.504781, 58.881173], - [11.649788, 58.918813], - [11.676187, 58.960799], - [11.673254, 58.994994], - [11.7063, 59.045551], - [11.776201, 59.106587], - [11.754602, 59.125083], - [11.758427, 59.208831], - [11.820183, 59.235573], - [11.948192, 59.262415], - [12.084338, 59.197095], - [12.061838, 59.271632], - [12.230906, 59.273605], - [12.267497, 59.20217], - [12.346281, 59.187016], - [12.421316, 59.19716], - [12.464286, 59.144925], - [12.574241, 59.134316], - [12.638742, 59.195179], - [12.710107, 59.178242], - [12.766164, 59.152815], - [12.772443, 59.070446], - [12.688351, 58.986802], - [12.652686, 58.955636], - [12.63839, 58.878711], - [12.558393, 58.809461], - [12.492763, 58.750499], - [12.49869, 58.692684], - [12.546692, 58.665834], - [12.649465, 58.662252], - [12.67118, 58.645274], - [12.623171, 58.621761], - [12.566165, 58.582334], - [12.525799, 58.538121], - [12.465242, 58.495786], - [12.386182, 58.467852], - [12.328986, 58.42295], - [12.328423, 58.392375], - [12.41974, 58.385714], - [12.455889, 58.400691], - [12.513214, 58.395125], - [12.594494, 58.464311], - [12.652406, 58.462264], - [12.63377, 58.40215], - [12.704497, 58.418985], - [12.700731, 58.440733], - [12.772562, 58.488557], - [12.890811, 58.5004], - [12.950172, 58.554006], - [12.945991, 58.572184], - [13.009982, 58.609379], - [13.113446, 58.700888], - [13.181431, 58.694621], - [13.223476, 58.676736], - [13.18945, 58.613221], - [13.136942, 58.517982], - [13.175926, 58.503833], - [13.255062, 58.498272], - [13.301454, 58.516826], - [13.319078, 58.562966], - [13.344444, 58.614199], - [13.432596, 58.648431], - [13.528538, 58.666052], - [13.612691, 58.694932], - [13.702671, 58.69646], - [13.769925, 58.706144], - [13.860304, 58.749028], - [13.888718, 58.773007], - [13.852538, 58.783644], - [13.780747, 58.768788], - [13.736479, 58.752693], - [13.725446, 58.789244], - [13.664751, 58.818909], - [13.684298, 58.852333], - [13.855077, 58.837632], - [13.907244, 58.819077], - [13.964893, 58.850748], - [14.004635, 58.898252], - [14.021771, 58.954591], - [14.002573, 59.002372], - [14.116709, 59.041012], - [14.21002, 59.042257], - [14.267813, 58.999752], - [14.308242, 58.893022], - [14.370254, 58.87013], - [14.326612, 58.834155], - [14.402287, 58.799166], - [14.457483, 58.797169], - [14.467983, 58.724364], - [14.537479, 58.724502], - [14.546088, 58.696942], - [14.596271, 58.705252], - [14.624916, 58.745372], - [14.684126, 58.745955], - [14.721309, 58.701787], - [14.671165, 58.668719], - [14.587619, 58.647682], - [14.541718, 58.624721], - [14.540202, 58.581456], - [14.532587, 58.542127], - [14.490209, 58.482861], - [14.450056, 58.470421], - [14.397493, 58.404415], - [14.351322, 58.347124], - [14.281005, 58.300016], - [14.253929, 58.227334], - [14.219037, 58.185715], - [14.212836, 58.145696], - [14.113049, 58.151675], - [14.114025, 58.075251], - [14.071584, 58.046581], - [14.068404, 58.028694], - [13.959974, 58.009422], - [13.950773, 58.0342], - [13.875628, 58.050289], - [13.846553, 58.038987], - [13.798256, 58.053807], - [13.776144, 58.049999], - [13.757648, 58.014156], - [13.70825, 57.982097], - [13.70867, 57.937584], - [13.748984, 57.882884], - [13.74124, 57.843556], - [13.742481, 57.764137], - [13.710713, 57.734912], - [13.707236, 57.707407], - [13.736587, 57.668812], - [13.721829, 57.64062], - [13.676211, 57.628246], - [13.672666, 57.606756], - [13.681863, 57.561258], - [13.667189, 57.533059], - [13.62086, 57.515298], - [13.508062, 57.415684], - [13.485828, 57.380595], - [13.429862, 57.363185], - [13.429498, 57.339761], - [13.385212, 57.332655], - [13.36894, 57.313522], - [13.293275, 57.303508], - [13.272494, 57.247305], - [13.227497, 57.256397], - [13.197654, 57.234212], - [13.180235, 57.184467], - [13.133071, 57.149162], - [13.100658, 57.160712], - [13.072537, 57.14924], - [13.047313, 57.157465], - [13.057045, 57.178701], - [13.011819, 57.185922], - [12.940984, 57.176131], - [12.932, 57.228743], - [12.953051, 57.236923], - [12.930822, 57.266621], - [12.858092, 57.267657], - [12.798433, 57.289108], - [12.705254, 57.332145], - [12.652677, 57.337719], - [12.527399, 57.32251], - [12.505214, 57.280047], - [12.427689, 57.272028], - [12.430555, 57.320584], - [12.395482, 57.341994], - [12.411514, 57.410946], - [12.396931, 57.443134], - [12.381394, 57.452795], - [12.355498, 57.457821], - [12.344697, 57.469243], - [12.354384, 57.492073], - [12.343708, 57.512618], - [12.326534, 57.529183], - [12.342632, 57.567772], - [12.28382, 57.604219] - ] - ], - [ - [ - [11.844999, 58.11997], - [11.809487, 58.117035], - [11.780832, 58.114344], - [11.770611, 58.112816], - [11.750718, 58.10555], - [11.732959, 58.089775], - [11.709945, 58.092434], - [11.71233, 58.105373], - [11.695684, 58.113079], - [11.665568, 58.123491], - [11.64218, 58.129551], - [11.609345, 58.11791], - [11.596711, 58.106077], - [11.590482, 58.090536], - [11.575295, 58.075182], - [11.554368, 58.062699], - [11.535709, 58.05988], - [11.519786, 58.063533], - [11.507649, 58.071214], - [11.489341, 58.060705], - [11.473464, 58.068688], - [11.483028, 58.07349], - [11.497958, 58.086429], - [11.502493, 58.099626], - [11.487112, 58.112509], - [11.464124, 58.125525], - [11.444324, 58.13569], - [11.439298, 58.147016], - [11.41694, 58.148252], - [11.404107, 58.136661], - [11.391393, 58.132409], - [11.408135, 58.15772], - [11.435355, 58.178291], - [11.461684, 58.174643], - [11.486499, 58.173608], - [11.504662, 58.181558], - [11.520868, 58.18872], - [11.55077, 58.195017], - [11.569862, 58.202376], - [11.595374, 58.211815], - [11.614843, 58.225508], - [11.636272, 58.239335], - [11.658098, 58.242752], - [11.682266, 58.240587], - [11.696251, 58.241101], - [11.701307, 58.253093], - [11.696757, 58.267777], - [11.701232, 58.282303], - [11.732905, 58.292979], - [11.752692, 58.295191], - [11.790159, 58.293553], - [11.791156, 58.275132], - [11.800474, 58.257898], - [11.819922, 58.2504], - [11.839386, 58.242666], - [11.858521, 58.230318], - [11.866836, 58.217264], - [11.856102, 58.19999], - [11.849304, 58.183224], - [11.855803, 58.163015], - [11.853121, 58.136939], - [11.844999, 58.11997] - ] - ], - [ - [ - [11.700389, 57.977603], - [11.702143, 57.970702], - [11.685853, 57.965258], - [11.663598, 57.960102], - [11.652347, 57.954305], - [11.642678, 57.943202], - [11.634797, 57.933784], - [11.602306, 57.931704], - [11.595448, 57.939747], - [11.594191, 57.959535], - [11.574808, 57.964131], - [11.567607, 57.966525], - [11.561003, 57.972156], - [11.557375, 57.98649], - [11.560245, 57.996258], - [11.571919, 57.998329], - [11.598505, 58.000444], - [11.60069, 58.007501], - [11.596753, 58.015919], - [11.556253, 58.013779], - [11.539173, 58.015248], - [11.530342, 58.022951], - [11.529293, 58.032013], - [11.540511, 58.046935], - [11.551916, 58.051677], - [11.567382, 58.05551], - [11.6236, 58.051278], - [11.643104, 58.054722], - [11.654277, 58.061587], - [11.672186, 58.088552], - [11.680631, 58.093167], - [11.698723, 58.091712], - [11.720487, 58.083973], - [11.717584, 58.074208], - [11.705914, 58.062516], - [11.724278, 58.058388], - [11.753907, 58.069708], - [11.77198, 58.059128], - [11.775797, 58.042127], - [11.775955, 58.017873], - [11.768207, 58.002176], - [11.753146, 57.994632], - [11.740208, 57.994677], - [11.733985, 58.006234], - [11.714901, 58.008174], - [11.707991, 57.989686], - [11.700389, 57.977603] - ] - ], - [ - [ - [11.686709, 57.753961], - [11.705887, 57.75862], - [11.72054, 57.741755], - [11.707912, 57.729041], - [11.697599, 57.710208], - [11.698828, 57.692854], - [11.694375, 57.681501], - [11.68379, 57.677335], - [11.632745, 57.696155], - [11.630851, 57.705162], - [11.654804, 57.704513], - [11.65721, 57.7143], - [11.650139, 57.718248], - [11.649799, 57.727935], - [11.667385, 57.727254], - [11.66768, 57.745394], - [11.686709, 57.753961] - ] - ], - [ - [ - [11.669868, 57.903525], - [11.713516, 57.903062], - [11.701016, 57.881679], - [11.629152, 57.860122], - [11.598142, 57.871771], - [11.630896, 57.897717], - [11.669868, 57.903525] - ] - ], - [ - [ - [11.601305, 57.743411], - [11.622553, 57.79397], - [11.658865, 57.770948], - [11.618078, 57.740103], - [11.601305, 57.743411] - ] - ], - [ - [ - [11.77996, 58.078454], - [11.783196, 58.092038], - [11.785502, 58.105764], - [11.802585, 58.101215], - [11.803077, 58.08987], - [11.791213, 58.080526], - [11.77996, 58.078454] - ] - ], - [ - [ - [11.751343, 58.08363], - [11.765787, 58.101284], - [11.772146, 58.082889], - [11.751343, 58.08363] - ] - ] - ] - } - } - ], - "style": { - "stroke": "#000000", - "fill": "#3498DB", - "stroke-width": 1, - "fill-opacity": 0.8 - } -} diff --git a/backend/server/static/data/us.json b/backend/server/static/data/us.json deleted file mode 100644 index 9480fd0..0000000 --- a/backend/server/static/data/us.json +++ /dev/null @@ -1,15270 +0,0 @@ -{ - "type": "FeatureCollection", - "bbox": [-179.174265, 17.913769, 179.773922, 71.352561], - "features": [ - { - "type": "Feature", - "properties": { - "STATEFP": "22", - "STATENS": "01629543", - "AFFGEOID": "0400000US22", - "GEOID": "22", - "ISOCODE": "US-LA", - "name": "Louisiana", - "LSAD": "00", - "ALAND": 111915258185, - "AWATER": 23736382213 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-94.0430515276176, 32.6930299766656], - [-94.043026, 32.797476], - [-94.0430026215633, 32.881088978924], - [-94.042964, 33.019219], - [-93.8145980610549, 33.0193890113342], - [-93.8071252110518, 33.0193945746385], - [-93.723273, 33.019457], - [-93.5209925078522, 33.0187422898925], - [-93.4905581209888, 33.0186347572102], - [-93.377134, 33.018234], - [-93.2386468140122, 33.0180159427056], - [-93.197402, 33.017951], - [-92.9887760560898, 33.0172511697504], - [-92.971137, 33.017192], - [-92.7247431731793, 33.0143417676748], - [-92.723553, 33.014328], - [-92.501383, 33.01216], - [-92.222825, 33.00908], - [-92.0690147239268, 33.0084819174935], - [-92.0689280885167, 33.0084815806166], - [-91.875128, 33.007728], - [-91.489176, 33.006182], - [-91.4603762339211, 33.0059969558674], - [-91.4359307415474, 33.0058398887954], - [-91.2645640502205, 33.0047388242705], - [-91.166073, 33.004106], - [-91.134414, 32.980533], - [-91.072075, 32.937832], - [-91.070602, 32.888659], - [-91.13789, 32.848975], - [-91.161669, 32.812465], - [-91.157614, 32.776033], - [-91.113652, 32.73997], - [-91.056999, 32.72558], - [-91.098762, 32.685291], - [-91.079506, 32.60068], - [-91.0554092828289, 32.5790876048294], - [-91.049312, 32.573624], - [-91.0487604277637, 32.5727970404214], - [-91.011275, 32.516596], - [-91.060516, 32.512361], - [-91.052907, 32.438442], - [-90.965986, 32.424806], - [-90.986672, 32.35176], - [-90.92117, 32.342073], - [-90.947834, 32.283486], - [-90.991227, 32.214662], - [-91.108509, 32.20815], - [-91.039472318907, 32.1079681426653], - [-91.034707, 32.101053], - [-91.079108, 32.050255], - [-91.080808, 32.023456], - [-91.117409, 31.987057], - [-91.17741, 31.973257], - [-91.18111, 31.920059], - [-91.234899, 31.876863], - [-91.2440151613247, 31.8697324375039], - [-91.290135, 31.833658], - [-91.345714, 31.842861], - [-91.359514, 31.799362], - [-91.3204587332816, 31.7478006144822], - [-91.318576, 31.745315], - [-91.3801245299835, 31.73262695305], - [-91.380915, 31.732464], - [-91.395715, 31.644165], - [-91.463817, 31.620365], - [-91.457517, 31.587566], - [-91.437616, 31.546166], - [-91.489618, 31.534266], - [-91.51714, 31.498394], - [-91.510356, 31.438928], - [-91.532336, 31.390275], - [-91.536061, 31.338355], - [-91.508858, 31.291644], - [-91.564192, 31.261633], - [-91.621358, 31.267811], - [-91.644356, 31.234414], - [-91.590051, 31.193693], - [-91.5909938930645, 31.1919985656988], - [-91.621671, 31.13687], - [-91.594693, 31.091444], - [-91.560365, 31.049508], - [-91.6282572982088, 31.0050970018952], - [-91.636942, 30.999416], - [-91.224068, 30.999183], - [-91.1761401239669, 30.9992242023186], - [-91.0601274679966, 30.9993239353092], - [-90.8258291412919, 30.9995253553406], - [-90.758775, 30.999583], - [-90.5671954006585, 30.9999450243999], - [-90.5475744252331, 30.9999821017916], - [-90.3473046214524, 31.0003605479089], - [-90.346007, 31.000363], - [-90.2595549404913, 31.0006617812291], - [-89.897516, 31.001913], - [-89.8359078243282, 31.0021014231176], - [-89.728147, 31.002431], - [-89.7281756901606, 31.0023138879841], - [-89.750073, 30.91293], - [-89.791745, 30.820387], - [-89.836331, 30.727197], - [-89.8261803591152, 30.6688232701852], - [-89.821868, 30.644024], - [-89.791664, 30.551524], - [-89.712493, 30.47751], - [-89.6999320828408, 30.454036880786], - [-89.678514, 30.414012], - [-89.634208, 30.308256], - [-89.607655, 30.217096], - [-89.524504, 30.180753], - [-89.6050884565546, 30.1428141575593], - [-89.656986, 30.118381], - [-89.683712, 30.076018], - [-89.782534, 30.045372], - [-89.845065, 30.01841], - [-89.8452971195724, 30.0163818405701], - [-89.852583, 29.952721], - [-89.795969, 29.934003], - [-89.744272, 29.917647], - [-89.701725, 29.874085], - [-89.647064, 29.863602], - [-89.598129, 29.881409], - [-89.574425, 29.983738], - [-89.494064, 30.040972], - [-89.444618, 30.060959], - [-89.342163, 30.059172], - [-89.303026, 30.09157], - [-89.233168, 30.134957], - [-89.183256, 30.149344], - [-89.185799, 30.063934], - [-89.215675, 29.993523], - [-89.231178, 29.925484], - [-89.236298, 29.877081], - [-89.293251, 29.803053], - [-89.271034, 29.756355], - [-89.399162, 29.770592], - [-89.403956, 29.681808], - [-89.465562, 29.651738], - [-89.5009667531337, 29.6334554250588], - [-89.504738, 29.631508], - [-89.535202, 29.648567], - [-89.602109, 29.610295], - [-89.564615, 29.543786], - [-89.569607, 29.494044], - [-89.53215, 29.434567], - [-89.482318, 29.406222], - [-89.380001, 29.391785], - [-89.312085, 29.388038], - [-89.257852, 29.336872], - [-89.200389, 29.344418], - [-89.134337, 29.27934], - [-89.116653, 29.219532], - [-89.025974, 29.215153], - [-89.01428, 29.166913], - [-89.066617, 29.090714], - [-89.11653, 29.074097], - [-89.148792, 29.02967], - [-89.142866, 28.991623], - [-89.218673, 29.022515], - [-89.259354, 29.058358], - [-89.322011, 29.010251], - [-89.400966, 28.933812], - [-89.40353, 29.016964], - [-89.361098, 29.071848], - [-89.390515, 29.123576], - [-89.432932, 29.149023], - [-89.482844, 29.215053], - [-89.564551, 29.242527], - [-89.606651, 29.252023], - [-89.639663, 29.290531], - [-89.726162, 29.304026], - [-89.842641, 29.318823], - [-89.883463, 29.307103], - [-89.9027063240243, 29.293036606496], - [-89.95646, 29.253744], - [-90.058512, 29.183687], - [-90.0898354481942, 29.1644753566211], - [-90.122753, 29.144286], - [-90.223587, 29.085075], - [-90.334935, 29.063803], - [-90.4096172499074, 29.0584338645091], - [-90.442734, 29.056053], - [-90.488117, 29.05876], - [-90.652116, 29.057721], - [-90.748377, 29.04006], - [-90.81255, 29.042138], - [-90.867853, 29.056064], - [-90.877583, 29.104891], - [-90.941877, 29.162373], - [-91.000096, 29.169481], - [-91.094015, 29.187711], - [-91.158148, 29.2181], - [-91.278792, 29.247776], - [-91.334885, 29.298775], - [-91.276647, 29.329825], - [-91.265452, 29.360976], - [-91.2663226707192, 29.361363733346], - [-91.334051, 29.391525], - [-91.363967, 29.420664], - [-91.347514, 29.444438], - [-91.394307, 29.497115], - [-91.460963, 29.469961], - [-91.48559, 29.499116], - [-91.531021, 29.531543], - [-91.537445, 29.565888], - [-91.541974, 29.594353], - [-91.600179, 29.631156], - [-91.643832, 29.630625], - [-91.623829, 29.69924], - [-91.667128, 29.745822], - [-91.737253, 29.74937], - [-91.808142, 29.725097], - [-91.85307, 29.702936], - [-91.8625569965226, 29.6673954637599], - [-91.873266, 29.627277], - [-91.80373, 29.595952], - [-91.711081, 29.569328], - [-91.768263, 29.490362], - [-91.821579, 29.473925], - [-91.915321, 29.518513], - [-92.030186, 29.572669], - [-92.0428943038274, 29.577480288972], - [-92.064513, 29.585665], - [-92.158624, 29.581616], - [-92.25186, 29.539354], - [-92.323465, 29.531497], - [-92.40986, 29.547477], - [-92.473585, 29.561081], - [-92.568038, 29.577397], - [-92.6160814772774, 29.5887857069487], - [-92.684486, 29.605001], - [-92.879992, 29.680285], - [-92.993128, 29.723846], - [-93.088182, 29.749125], - [-93.17693, 29.770487], - [-93.295573, 29.775071], - [-93.411087, 29.767357], - [-93.538462, 29.763299], - [-93.741948, 29.736343], - [-93.79925, 29.71526], - [-93.837971, 29.690619], - [-93.863204, 29.724059], - [-93.890821, 29.761673], - [-93.929208, 29.802952], - [-93.872446, 29.85165], - [-93.8523098709223, 29.8720910043919], - [-93.830374, 29.894359], - [-93.807815, 29.954549], - [-93.741078, 30.021571], - [-93.7061835663174, 30.0523143321691], - [-93.70394, 30.054291], - [-93.702436, 30.112721], - [-93.703764, 30.173936], - [-93.713359, 30.225261], - [-93.7110621713009, 30.2439707156403], - [-93.70719, 30.275513], - [-93.760328, 30.329924], - [-93.745333, 30.397022], - [-93.7381729998702, 30.4025470540047], - [-93.702665, 30.429947], - [-93.710117, 30.5064], - [-93.729195, 30.544842], - [-93.684329, 30.592586], - [-93.685121, 30.625201], - [-93.629904, 30.67994], - [-93.617688, 30.738479], - [-93.569303, 30.802969], - [-93.558617, 30.869424], - [-93.5545758543455, 30.8774695018611], - [-93.530936, 30.924534], - [-93.549841, 30.967118], - [-93.539526, 31.008498], - [-93.531219, 31.051678], - [-93.540278, 31.128868], - [-93.535097, 31.185614], - [-93.5524973075023, 31.1848200234468], - [-93.6006030873629, 31.1826249552688], - [-93.602443, 31.182541], - [-93.613942, 31.259375], - [-93.67544, 31.30104], - [-93.668146, 31.375103], - [-93.697603, 31.428409], - [-93.749476, 31.46869], - [-93.725925, 31.504092], - [-93.787687, 31.527344], - [-93.834924, 31.586211], - [-93.816838, 31.622509], - [-93.803419, 31.700686], - [-93.85339, 31.805467], - [-93.8782518953866, 31.8442765572456], - [-93.909557, 31.893144], - [-93.977461, 31.926419], - [-94.029428406596, 31.979686964168], - [-94.041833, 31.992402], - [-94.042681, 32.137956], - [-94.0426959391654, 32.1960649748209], - [-94.042739, 32.363559], - [-94.0427882328053, 32.3922831932812], - [-94.043083, 32.564261], - [-94.0430515276176, 32.6930299766656] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "02", - "STATENS": "01785533", - "AFFGEOID": "0400000US02", - "GEOID": "02", - "ISOCODE": "US-AK", - "name": "Alaska", - "LSAD": "00", - "ALAND": 1478942847588, - "AWATER": 245378425142 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [179.481318, 51.975301], - [179.582857, 52.016841], - [179.636846, 52.025712], - [179.773922, 51.970693], - [179.743012, 51.911749], - [179.649484, 51.87367], - [179.543516, 51.890926], - [179.484634, 51.921268], - [179.481318, 51.975301] - ] - ], - [ - [ - [178.600493, 51.655256], - [178.6606, 51.683065], - [178.92533, 51.623904], - [179.195247, 51.477871], - [179.295785, 51.419232], - [179.41824, 51.416195], - [179.480418, 51.36386], - [179.253271, 51.337239], - [179.031533, 51.449884], - [178.930219, 51.530089], - [178.869249, 51.556986], - [178.7724, 51.554119], - [178.604866, 51.616015], - [178.600493, 51.655256] - ] - ], - [ - [ - [178.463385, 51.987849], - [178.552612, 51.973968], - [178.591597, 51.952652], - [178.539395, 51.903246], - [178.502493, 51.899644], - [178.432461, 51.965533], - [178.463385, 51.987849] - ] - ], - [ - [ - [178.204442, 51.83089], - [178.329699, 51.836792], - [178.378009, 51.792626], - [178.374074, 51.747856], - [178.270955, 51.765186], - [178.204442, 51.83089] - ] - ], - [ - [ - [178.093673, 52.055141], - [178.154769, 52.061421], - [178.201313, 52.031502], - [178.2009, 51.991156], - [178.120941, 51.977012], - [178.079214, 52.01896], - [178.093673, 52.055141] - ] - ], - [ - [ - [177.213086, 51.920358], - [177.310827, 51.933273], - [177.367363, 51.968375], - [177.460539, 51.999751], - [177.521006, 52.063062], - [177.581271, 52.144927], - [177.648654, 52.1309], - [177.675952, 52.092167], - [177.609087, 52.028518], - [177.572068, 52.001812], - [177.611553, 51.950829], - [177.601005, 51.922254], - [177.49928, 51.922033], - [177.409536, 51.930821], - [177.371263, 51.901945], - [177.334229, 51.866769], - [177.311768, 51.825971], - [177.262195, 51.861891], - [177.178789, 51.879219], - [177.213086, 51.920358] - ] - ], - [ - [ - [173.863992, 52.792483], - [174.067293, 52.757637], - [174.140115, 52.750737], - [174.158146, 52.706059], - [173.975116, 52.707459], - [173.819039, 52.759805], - [173.863992, 52.792483] - ] - ], - [ - [ - [173.439026, 52.470528], - [173.555739, 52.479472], - [173.638061, 52.524209], - [173.772799, 52.509905], - [173.702252, 52.434804], - [173.748301, 52.392346], - [173.725696, 52.356579], - [173.651293, 52.35637], - [173.543778, 52.392666], - [173.48638, 52.368613], - [173.319948, 52.412058], - [173.439026, 52.470528] - ] - ], - [ - [ - [172.458911, 52.954548], - [172.643266, 53.004979], - [172.792872, 53.008568], - [173.121988, 52.990352], - [173.251326, 52.944362], - [173.425362, 52.868345], - [173.423819, 52.828799], - [173.284417, 52.827933], - [173.204948, 52.848911], - [173.166899, 52.795229], - [173.096237, 52.786782], - [172.9826, 52.79108], - [172.903628, 52.761667], - [172.809387, 52.78929], - [172.763366, 52.823656], - [172.754236, 52.87749], - [172.669943, 52.913011], - [172.585075, 52.921327], - [172.472857, 52.890234], - [172.458911, 52.954548] - ] - ], - [ - [ - [-133.935016, 55.920689], - [-133.816363, 55.964025], - [-133.7314, 56.028857], - [-133.659241, 56.083818], - [-133.643817, 56.127739], - [-133.6721, 56.222734], - [-133.656889, 56.281228], - [-133.656415, 56.326909], - [-133.582116, 56.352506], - [-133.41837, 56.332132], - [-133.197009, 56.333016], - [-133.158233, 56.314768], - [-133.07823, 56.246802], - [-133.039877412399, 56.2390403800957], - [-132.966922, 56.224276], - [-132.887585, 56.172938], - [-132.833864, 56.103904], - [-132.896433, 56.099744], - [-132.85978295117, 56.0527693270234], - [-132.837592, 56.024327], - [-132.618464, 55.911476], - [-132.470697, 55.782162], - [-132.462531, 55.673854], - [-132.382505, 55.665336], - [-132.301119, 55.55096], - [-132.142945, 55.457941], - [-132.258056, 55.416142], - [-132.126398, 55.288418], - [-132.037122, 55.275144], - [-131.977397, 55.180949], - [-132.027513, 55.104675], - [-131.984592, 55.027978], - [-131.983324, 54.897813], - [-131.957914, 54.791239], - [-131.999591, 54.731975], - [-132.029747, 54.701189], - [-132.165182, 54.69405], - [-132.228223, 54.72517], - [-132.307943, 54.718714], - [-132.366389, 54.751197], - [-132.403533, 54.784596], - [-132.509371, 54.781258], - [-132.639032, 54.753251], - [-132.674324, 54.674652], - [-132.753019, 54.673244], - [-132.866355, 54.700386], - [-132.87721, 54.753772], - [-132.918751, 54.783253], - [-132.990589, 54.820994], - [-133.099047, 54.919007], - [-133.164788, 54.976909], - [-133.197719, 55.033404], - [-133.239695, 55.092415], - [-133.215086, 55.136876], - [-133.232491, 55.198828], - [-133.281979, 55.217117], - [-133.341259, 55.205701], - [-133.404497, 55.214992], - [-133.471938, 55.247527], - [-133.468217, 55.281678], - [-133.586605, 55.3088], - [-133.596762, 55.218233], - [-133.658359, 55.232674], - [-133.690174, 55.304409], - [-133.633006, 55.361299], - [-133.630945, 55.416114], - [-133.697898, 55.454759], - [-133.789055, 55.457892], - [-133.75287, 55.544282], - [-133.728549, 55.593128], - [-133.716665, 55.660223], - [-133.643324, 55.729037], - [-133.701152, 55.78516], - [-133.700468, 55.837421], - [-133.861039, 55.848844], - [-133.92025, 55.860295], - [-133.935016, 55.920689] - ] - ], - [ - [ - [-134.392983, 56.864284], - [-134.270459, 56.93558], - [-134.193751, 56.933598], - [-134.147103, 56.95697], - [-134.047753, 56.923], - [-134.006635, 56.851587], - [-133.942936, 56.805551], - [-133.86904, 56.845938], - [-133.921451, 56.961511], - [-134.049218, 57.029203], - [-134.008856, 57.074578], - [-133.887957, 57.097744], - [-133.739433, 57.072184], - [-133.536258, 57.0387], - [-133.334272, 57.002442], - [-133.317871026437, 57.0026747376997], - [-133.104611, 57.005701], - [-132.98137, 56.92738], - [-132.903211, 56.80361], - [-132.796602, 56.776932], - [-132.743207, 56.71372], - [-132.619258, 56.660778], - [-132.611326, 56.599913], - [-132.671154, 56.543071], - [-132.806838, 56.505492], - [-132.933042, 56.5222], - [-133.041726, 56.518356], - [-133.183493, 56.454241], - [-133.300571, 56.462343], - [-133.415378891775, 56.4564449142833], - [-133.460634, 56.45412], - [-133.655468, 56.442279], - [-133.821628, 56.391602], - [-133.834555, 56.319801], - [-133.876624, 56.275884], - [-133.88114, 56.223197], - [-133.941986, 56.180095], - [-133.927725, 56.145949], - [-133.960525, 56.091359], - [-134.018043, 56.088176], - [-134.087446, 56.094939], - [-134.121868, 56.029895], - [-134.099805, 55.98414], - [-134.118062, 55.914642], - [-134.208251, 55.876709], - [-134.255096, 55.844614], - [-134.311763, 55.812285], - [-134.344652, 55.846312], - [-134.374965, 55.928492], - [-134.291804, 55.926219], - [-134.202178, 56.035175], - [-134.259749, 56.13444], - [-134.282212, 56.254789], - [-134.294679, 56.335888], - [-134.243126, 56.395778], - [-134.25192, 56.44455], - [-134.197967, 56.531028], - [-134.241938, 56.555531], - [-134.320134, 56.554484], - [-134.30112, 56.620317], - [-134.376274, 56.668608], - [-134.418534, 56.822333], - [-134.392983, 56.864284] - ] - ], - [ - [ - [-134.960502, 58.403758], - [-134.865084, 58.357276], - [-134.788441, 58.28909], - [-134.735829, 58.234597], - [-134.724477838091, 58.2114652856451], - [-134.699956, 58.161494], - [-134.608911, 58.171637], - [-134.46176, 58.159289], - [-134.329872, 58.13499], - [-134.256223, 58.144793], - [-134.254386050804, 58.1443552742868], - [-134.174352, 58.125284], - [-134.183983, 58.077295], - [-134.138231, 58.047103], - [-134.087572, 57.996475], - [-133.999948, 57.91481], - [-133.904874, 57.807406], - [-133.896846, 57.685524], - [-133.808285, 57.609604], - [-133.8176, 57.568353], - [-133.871581, 57.484158], - [-133.866931, 57.367869], - [-133.786398, 57.311528], - [-133.840895, 57.271074], - [-133.875673, 57.267613], - [-133.983501, 57.302838], - [-134.100118, 57.266285], - [-134.193629, 57.184879], - [-134.302721, 57.136562], - [-134.378359, 57.115016], - [-134.386052, 57.087392], - [-134.443786, 57.062292], - [-134.497718, 57.031194], - [-134.565687, 57.023737], - [-134.634565, 57.109863], - [-134.640169, 57.239852], - [-134.55554, 57.407428], - [-134.607557, 57.513042], - [-134.695428, 57.685335], - [-134.709024, 57.780498], - [-134.752398, 57.938956], - [-134.783772, 58.082292], - [-134.864299, 58.180489], - [-134.958171, 58.322057], - [-134.960502, 58.403758] - ] - ], - [ - [ - [-136.563223, 58.035052], - [-136.538708, 58.093482], - [-136.446286, 58.11334], - [-136.365544, 58.148854], - [-136.387113, 58.252414], - [-136.290349, 58.251761], - [-136.176442, 58.265111], - [-136.033678, 58.276728], - [-135.877468, 58.259852], - [-135.78338, 58.286709], - [-135.712398, 58.231892], - [-135.497911, 58.168882], - [-135.275797, 58.097024], - [-135.108896, 58.08827], - [-134.950844, 58.036993], - [-134.926395, 57.921919], - [-135.004952, 57.884338], - [-134.94942955753, 57.7812592894496], - [-134.939924, 57.763612], - [-134.824891, 57.500067], - [-134.825579, 57.372143], - [-134.854948, 57.264766], - [-134.738223, 56.975741], - [-134.695735, 56.900791], - [-134.663434, 56.804687], - [-134.62967, 56.709596], - [-134.615955, 56.637289], - [-134.626943, 56.553868], - [-134.669778, 56.524129], - [-134.64177, 56.445479], - [-134.634828, 56.345297], - [-134.634668, 56.265832], - [-134.653827, 56.198385], - [-134.674028, 56.166925], - [-134.763535, 56.210363], - [-134.810171, 56.244987], - [-134.839411, 56.309403], - [-134.915911, 56.360555], - [-134.977082, 56.437294], - [-135.058238, 56.529453], - [-135.123389, 56.602823], - [-135.175826, 56.677876], - [-135.21583, 56.66534], - [-135.305077, 56.726382], - [-135.362241, 56.758742], - [-135.467177, 56.77141], - [-135.550718, 56.841228], - [-135.506869, 56.865978], - [-135.476817, 56.891232], - [-135.442339, 56.942355], - [-135.353447, 57.020905], - [-135.457907, 57.070165], - [-135.571504, 57.105697], - [-135.604555, 57.045834], - [-135.63688, 57.009874], - [-135.825598, 56.989032], - [-135.856021, 56.995636], - [-135.844612, 57.083568], - [-135.755007, 57.123972], - [-135.753581, 57.167168], - [-135.832253, 57.170647], - [-135.870519, 57.221639], - [-135.837719, 57.282068], - [-135.85816, 57.321358], - [-135.892131, 57.408048], - [-135.943766, 57.45878], - [-136.047547, 57.513762], - [-136.088071, 57.555291], - [-136.163059, 57.558861], - [-136.238166, 57.625991], - [-136.250818, 57.684831], - [-136.304684, 57.771051], - [-136.371986492161, 57.8322320107049], - [-136.372377, 57.832587], - [-136.458829, 57.853901], - [-136.484259, 57.89646], - [-136.573288, 57.926844], - [-136.563223, 58.035052] - ] - ], - [ - [ - [-152.064099, 60.417137], - [-151.952456, 60.510609], - [-151.839194, 60.485862], - [-151.891542, 60.440177], - [-151.956263, 60.367841], - [-152.079995, 60.341191], - [-152.064099, 60.417137] - ] - ], - [ - [ - [-153.597411, 59.386827], - [-153.489005, 59.41523], - [-153.412493, 59.415105], - [-153.347772, 59.377985], - [-153.386898, 59.33075], - [-153.515286, 59.320878], - [-153.546695, 59.331348], - [-153.597411, 59.386827] - ] - ], - [ - [ - [-154.779663, 57.366335], - [-154.69331, 57.446085], - [-154.618704, 57.514972], - [-154.52206, 57.577786], - [-154.411385, 57.598452], - [-154.292471, 57.644223], - [-154.196959, 57.664639], - [-153.994572, 57.656905], - [-153.930279, 57.696791], - [-153.93522, 57.813047], - [-153.781408, 57.876417], - [-153.721176, 57.890615], - [-153.648798, 57.880103], - [-153.512024, 57.909156], - [-153.533204, 57.941117], - [-153.484603, 57.9765], - [-153.386422, 57.936526], - [-153.299009, 57.985626], - [-153.365574, 58.039052], - [-153.419783, 58.059638], - [-153.362281, 58.106786], - [-153.316127, 58.14039], - [-153.223709, 58.16212], - [-153.202801, 58.20808], - [-153.101841, 58.257938], - [-153.044316, 58.306336], - [-152.925586, 58.339686], - [-152.883107, 58.400443], - [-152.787776, 58.411313], - [-152.733845, 58.460662], - [-152.640313, 58.469868], - [-152.66622, 58.544087], - [-152.61613, 58.601852], - [-152.560171, 58.61968], - [-152.453817, 58.618515], - [-152.354709, 58.63828], - [-152.337212, 58.589095], - [-152.38761, 58.52287], - [-152.467197, 58.476609], - [-152.512483, 58.427349], - [-152.49848, 58.372351], - [-152.432235, 58.355221], - [-152.387343, 58.359499], - [-152.34486, 58.39163], - [-152.35609, 58.42347], - [-152.301713, 58.428697], - [-152.227835, 58.376424], - [-152.129257, 58.396414], - [-152.08925, 58.367644], - [-151.981781, 58.347971], - [-151.817111, 58.263444], - [-151.795696, 58.211096], - [-151.862321, 58.168265], - [-152.03412, 58.183737], - [-152.112205, 58.148559], - [-152.265111, 58.135732], - [-152.374399, 58.120014], - [-152.482674, 58.129813], - [-152.529036, 58.093779], - [-152.656801, 58.061049], - [-152.766673, 58.029887], - [-152.722524, 57.987364], - [-152.751978, 57.933466], - [-152.804807, 57.899175], - [-152.790211, 57.858058], - [-152.753437, 57.834452], - [-152.681204, 57.875675], - [-152.635378, 57.91861], - [-152.526283, 57.913266], - [-152.432608, 57.976029], - [-152.422573, 57.948662], - [-152.324103, 57.916604], - [-152.351152, 57.834768], - [-152.212247, 57.791433], - [-152.298762, 57.745925], - [-152.440182, 57.72664], - [-152.386805, 57.667923], - [-152.313974, 57.63642], - [-152.161617, 57.623287], - [-152.159677, 57.593614], - [-152.259641, 57.527156], - [-152.323683, 57.467861], - [-152.253603, 57.384019], - [-152.323687, 57.34266], - [-152.474883, 57.434204], - [-152.570527, 57.448909], - [-152.601148, 57.382165], - [-152.630441, 57.322668], - [-152.695698, 57.281318], - [-152.818187, 57.265368], - [-152.943463, 57.256956], - [-152.949333, 57.187346], - [-152.880321, 57.164798], - [-152.90054, 57.132076], - [-153.06433, 57.10379], - [-153.200217, 57.042039], - [-153.266822, 56.999643], - [-153.342018, 56.982825], - [-153.404263, 57.080511], - [-153.48652, 57.085915], - [-153.580831, 57.049048], - [-153.543429, 56.995245], - [-153.541492, 56.887875], - [-153.603624, 56.887336], - [-153.699409, 56.855382], - [-153.776468, 56.830315], - [-153.83964, 56.822099], - [-153.90215, 56.771208], - [-153.97178, 56.744861], - [-154.017042, 56.689311], - [-154.153147, 56.681697], - [-154.129017, 56.742168], - [-154.305713, 56.846871], - [-154.312888, 56.918673], - [-154.40749, 56.968334], - [-154.528538, 57.001892], - [-154.523432, 57.129106], - [-154.594977, 57.257161], - [-154.691855, 57.28411], - [-154.79384, 57.288862], - [-154.779663, 57.366335] - ] - ], - [ - [ - [-154.840415, 56.42032], - [-154.70614, 56.521273], - [-154.514078, 56.604059], - [-154.210336, 56.609684], - [-154.095833, 56.617786], - [-154.025041, 56.572517], - [-153.878764, 56.565925], - [-153.887678, 56.533637], - [-154.02093, 56.482025], - [-154.266332, 56.496366], - [-154.529507, 56.502655], - [-154.624282, 56.475181], - [-154.742887, 56.401678], - [-154.840415, 56.42032] - ] - ], - [ - [ - [-155.750002, 55.821849], - [-155.688098, 55.864886], - [-155.605373, 55.928826], - [-155.530591, 55.912213], - [-155.554245, 55.84646], - [-155.566307, 55.789488], - [-155.591002, 55.761725], - [-155.718593, 55.772356], - [-155.750002, 55.821849] - ] - ], - [ - [ - [-156.733628, 56.077593], - [-156.683003, 56.09881], - [-156.614757, 56.065178], - [-156.618202, 56.017802], - [-156.681814, 55.994337], - [-156.735292, 56.02264], - [-156.733628, 56.077593] - ] - ], - [ - [ - [-157.288702, 56.566039], - [-157.172027, 56.598039], - [-157.091146, 56.581134], - [-156.975549, 56.540446], - [-157.047173, 56.519931], - [-157.168777, 56.53021], - [-157.326059, 56.525169], - [-157.288702, 56.566039] - ] - ], - [ - [ - [-160.252749, 54.913251], - [-160.192058, 55.038157], - [-160.187261, 55.118376], - [-160.137102, 55.171565], - [-160.025257, 55.203914], - [-159.870591, 55.284889], - [-159.843859, 55.249367], - [-159.816419, 55.178051], - [-159.670305, 55.182337], - [-159.521096, 55.253393], - [-159.488766, 55.188812], - [-159.33847, 55.046683], - [-159.203228, 54.914842], - [-159.272354, 54.864204], - [-159.309681, 54.865813], - [-159.447982, 54.941374], - [-159.504434, 55.027316], - [-159.635226, 55.037294], - [-159.752779, 55.066139], - [-159.813625, 55.027467], - [-160.027035, 55.02091], - [-160.099295, 54.962853], - [-160.226967, 54.864075], - [-160.252749, 54.913251] - ] - ], - [ - [ - [-160.856621, 55.318488], - [-160.808929, 55.370122], - [-160.687442, 55.402198], - [-160.517513, 55.379378], - [-160.333421, 55.436928], - [-160.260565, 55.463674], - [-160.137032, 55.450709], - [-160.154038, 55.377518], - [-160.30655, 55.303275], - [-160.341217, 55.251799], - [-160.468262, 55.288925], - [-160.527617, 55.256374], - [-160.486511, 55.181951], - [-160.525226, 55.129871], - [-160.655577, 55.160261], - [-160.734942, 55.151311], - [-160.821381, 55.117851], - [-160.841917, 55.20444], - [-160.856621, 55.318488] - ] - ], - [ - [ - [-161.078486, 58.635577], - [-161.056595, 58.702202], - [-160.918586, 58.746935], - [-160.700627, 58.817368], - [-160.679309, 58.780226], - [-160.880515, 58.581325], - [-160.961416, 58.553723], - [-161.07563, 58.549916], - [-161.078486, 58.635577] - ] - ], - [ - [ - [-161.426005, 55.216563], - [-161.356726, 55.221262], - [-161.329875, 55.219418], - [-161.344152, 55.158504], - [-161.451286, 55.178027], - [-161.426005, 55.216563] - ] - ], - [ - [ - [-161.697129, 55.249148], - [-161.523434, 55.271659], - [-161.560207, 55.207045], - [-161.691553, 55.198479], - [-161.697129, 55.249148] - ] - ], - [ - [ - [-162.844362, 54.510428], - [-162.585315, 54.447995], - [-162.34484, 54.401336], - [-162.388754, 54.367623], - [-162.46695, 54.342692], - [-162.608608, 54.369147], - [-162.760247, 54.372193], - [-162.861736, 54.424771], - [-162.844362, 54.510428] - ] - ], - [ - [ - [-165.602225, 54.045267], - [-165.468221, 54.079641], - [-165.28077, 54.115625], - [-165.140978, 54.131079], - [-165.00791, 54.134934], - [-164.883134, 54.196187], - [-164.824183, 54.225527], - [-164.7637, 54.223153], - [-164.816166, 54.158754], - [-164.956139, 54.060988], - [-165.088283, 54.072491], - [-165.287665, 54.038349], - [-165.555768, 54.023551], - [-165.602225, 54.045267] - ] - ], - [ - [ - [-166.06155, 54.185092], - [-165.959751, 54.220982], - [-165.868192, 54.214884], - [-165.62555, 54.298964], - [-165.478452, 54.295333], - [-165.383719, 54.196731], - [-165.549217, 54.112196], - [-165.784434, 54.069435], - [-165.875129, 54.03642], - [-165.901649, 54.06287], - [-166.046438, 54.044186], - [-166.112242, 54.122528], - [-166.06155, 54.185092] - ] - ], - [ - [ - [-167.430619, 60.197006], - [-167.317602, 60.231541], - [-167.112841, 60.231482], - [-166.93866, 60.214704], - [-166.842599, 60.21047], - [-166.813127, 60.249768], - [-166.835825, 60.268751], - [-166.713539, 60.327341], - [-166.616566, 60.319221], - [-166.548589, 60.361856], - [-166.490358, 60.389466], - [-166.371874, 60.355156], - [-166.241032, 60.38882], - [-166.149763, 60.4367], - [-166.103296, 60.367321], - [-166.03734, 60.319456], - [-165.883086, 60.343368], - [-165.67987, 60.292435], - [-165.722533, 60.236468], - [-165.683554, 60.198335], - [-165.723484, 60.163824], - [-165.666679, 60.124304], - [-165.709223, 60.066003], - [-165.633879, 60.019597], - [-165.532633, 59.953425], - [-165.582302, 59.908242], - [-165.706609, 59.883564], - [-165.769832, 59.900495], - [-165.856822, 59.869728], - [-165.982317, 59.871637], - [-166.084995, 59.839649], - [-166.084282, 59.776059], - [-166.190406, 59.750206], - [-166.272168, 59.811455], - [-166.36213, 59.838604], - [-166.512819, 59.846425], - [-166.665528, 59.878168], - [-166.795194, 59.913185], - [-166.939572, 59.965483], - [-167.06578, 59.98796], - [-167.225739, 60.04088], - [-167.333289, 60.066626], - [-167.343509, 60.126287], - [-167.430619, 60.197006] - ] - ], - [ - [ - [-167.790928, 53.33552], - [-167.694484, 53.388034], - [-167.591219, 53.393346], - [-167.457366, 53.442793], - [-167.369791, 53.450646], - [-167.278827, 53.478565], - [-167.188033, 53.524073], - [-167.135695, 53.551227], - [-167.16164, 53.605909], - [-167.107836, 53.633056], - [-167.071823, 53.66556], - [-167.041245, 53.707929], - [-167.005778, 53.755446], - [-167.098135, 53.799987], - [-167.141966, 53.826932], - [-167.140992, 53.866774], - [-167.031252, 53.945204], - [-166.879488, 53.988716], - [-166.742587, 54.015501], - [-166.644627, 54.014495], - [-166.587393, 53.959831], - [-166.508388, 53.923949], - [-166.437083, 53.955644], - [-166.357117, 54.002343], - [-166.264519, 53.97755], - [-166.225644, 53.986229105085], - [-166.172365, 53.998124], - [-166.075283, 53.969571], - [-166.160924652199, 53.9356380521939], - [-166.210685, 53.915922], - [-166.250935, 53.876851], - [-166.320004, 53.869527], - [-166.404896, 53.809345], - [-166.336768, 53.78709], - [-166.198751, 53.8361], - [-166.113037, 53.853716], - [-166.09753, 53.826933], - [-166.138657, 53.731082], - [-166.244056, 53.710708], - [-166.320262, 53.674276], - [-166.444909, 53.640646], - [-166.508982, 53.5838], - [-166.581011, 53.530449], - [-166.656234, 53.487119], - [-166.749158, 53.440944], - [-166.878087, 53.429884], - [-166.994329, 53.429201], - [-167.075386, 53.424979], - [-167.166348, 53.412793], - [-167.291831, 53.364102], - [-167.308126, 53.33433], - [-167.417713, 53.329856], - [-167.488215, 53.269121], - [-167.539247, 53.277864], - [-167.622173, 53.250362], - [-167.747754, 53.273564], - [-167.851511, 53.308668], - [-167.790928, 53.33552] - ] - ], - [ - [ - [-168.12893, 65.655744], - [-167.979889, 65.727972], - [-167.650051, 65.795703], - [-167.282753, 65.897386], - [-166.768944, 66.068582], - [-166.038082, 66.269512], - [-165.407204, 66.420441], - [-164.816093, 66.525025], - [-164.400724, 66.58111], - [-164.395943591522, 66.5811976389151], - [-163.824166, 66.59168], - [-163.603956, 66.558089], - [-163.728308, 66.498552], - [-163.798687, 66.436875], - [-163.873106, 66.389015], - [-163.849163, 66.307639], - [-163.843108, 66.259869], - [-163.925152, 66.225078], - [-163.916551, 66.190494], - [-163.80358, 66.100059], - [-163.695394, 66.059552], - [-163.495845, 66.085388], - [-163.372072, 66.085029], - [-163.146726, 66.059487], - [-162.997473, 66.076845], - [-162.750705, 66.09016], - [-162.622284, 66.039526], - [-162.423726, 66.048984], - [-162.331284, 66.031403], - [-162.137424, 66.078547], - [-161.838018, 66.022582], - [-161.775537, 66.073732], - [-161.613943, 66.176693], - [-161.548429, 66.239912], - [-161.484539, 66.262426], - [-161.341189, 66.2551], - [-161.320778, 66.223591], - [-161.198971, 66.210949], - [-160.993965, 66.234444], - [-161.089161, 66.31514], - [-161.322126, 66.368554], - [-161.575413, 66.396806], - [-161.694404, 66.396174], - [-161.916309, 66.349481], - [-161.86369, 66.459487], - [-161.87488, 66.511446], - [-162.105641, 66.622584], - [-162.175398, 66.687789], - [-162.349774, 66.726713], - [-162.501415, 66.742503], - [-162.626696, 66.859572], - [-162.582856, 66.904292], - [-162.466702, 66.950998], - [-162.468441, 66.980604], - [-162.63547, 66.998434], - [-162.842979, 66.991177], - [-163.011676, 67.029538], - [-163.299266, 67.060748], - [-163.591216, 67.092373], - [-163.702045, 67.109375], - [-163.74082, 67.20996], - [-163.878781, 67.416125], - [-164.051288, 67.566351], - [-164.256634, 67.651651], - [-164.533937, 67.725606], - [-165.094228, 67.931963], - [-165.35005, 68.02586], - [-165.396520296503, 68.0347305186982], - [-165.688137, 68.090396], - [-165.872088, 68.110047], - [-165.97497, 68.14091], - [-166.089453, 68.221299], - [-166.313138, 68.289164], - [-166.60089, 68.333637], - [-166.838969, 68.337186], - [-166.591802, 68.405551], - [-166.328459, 68.442261], - [-166.28312, 68.521247], - [-166.229761, 68.613771], - [-166.193421, 68.726649], - [-166.224187, 68.873175], - [-165.923734, 68.868432], - [-165.522358, 68.855839], - [-164.967542, 68.88303], - [-164.526887, 68.917909], - [-164.253157, 68.930938], - [-163.926999, 69.000802], - [-163.574034, 69.124077], - [-163.244656, 69.306081], - [-163.151351, 69.430262], - [-163.151261, 69.61263], - [-163.071903, 69.737605], - [-162.989084, 69.82525], - [-162.78808, 69.929097], - [-162.503572, 70.100393], - [-162.302314, 70.204227], - [-161.879266, 70.329269], - [-161.581911, 70.302877], - [-161.288197, 70.296772], - [-160.81279, 70.376696], - [-160.214828, 70.559087], - [-159.869172, 70.706397], - [-159.648383, 70.794368], - [-159.17181, 70.875103], - [-159.114972, 70.817402], - [-158.85342, 70.792352], - [-158.573913, 70.79495], - [-158.366302, 70.819712], - [-158.032397, 70.832263], - [-157.768452, 70.875842], - [-157.421001, 70.976805], - [-157.176077, 71.095549], - [-156.906165, 71.239616], - [-156.809653, 71.286886], - [-156.56865, 71.352561], - [-156.531124, 71.296338], - [-156.309908, 71.259881], - [-156.074411, 71.242489], - [-156.044615, 71.184701], - [-155.895105, 71.193899], - [-155.587702, 71.17256], - [-155.520737, 71.102476], - [-155.533347, 71.067683], - [-155.705487, 71.020153], - [-155.762068, 70.985644], - [-155.95205, 70.964831], - [-155.979264, 70.918524], - [-155.924955, 70.85272], - [-155.731842, 70.83116], - [-155.543031, 70.847175], - [-155.485915, 70.885905], - [-155.513293, 70.940579], - [-155.36416, 70.994195], - [-155.262602, 71.079149], - [-155.060764, 71.145422], - [-154.942864, 71.126264], - [-154.581129, 71.007321], - [-154.608314, 70.942405], - [-154.572458, 70.82594], - [-154.430229, 70.831258], - [-154.290317, 70.821495], - [-154.127487, 70.778133], - [-153.89048, 70.885719], - [-153.666363, 70.883448], - [-153.426265, 70.890131], - [-153.23848, 70.922467], - [-153.049207, 70.913102], - [-152.904243, 70.883877], - [-152.696868, 70.882086], - [-152.423534, 70.858708], - [-152.223053, 70.824594], - [-152.19246, 70.795294], - [-152.348417, 70.744382], - [-152.352196, 70.697802], - [-152.473348, 70.683669], - [-152.433781, 70.616926], - [-152.29669, 70.602287], - [-152.078663, 70.584504], - [-151.975785, 70.563215], - [-151.697258, 70.547741], - [-151.734287, 70.503492], - [-151.739862, 70.436207], - [-151.504417, 70.431103], - [-151.297598, 70.400748], - [-151.175187, 70.375558], - [-151.020441, 70.433841], - [-150.903765, 70.46091], - [-150.786327, 70.463271], - [-150.557415, 70.481643], - [-150.414358, 70.459694], - [-150.301516, 70.418392], - [-150.074461, 70.439333], - [-149.866698, 70.510769], - [-149.740188, 70.498151], - [-149.461755, 70.518271], - [-149.179148, 70.4857], - [-148.928979, 70.426835], - [-148.667017, 70.430084], - [-148.477044, 70.359068], - [-148.46615, 70.313609], - [-148.351437, 70.304453], - [-148.203477, 70.348188], - [-147.9615, 70.314201], - [-147.863719, 70.293317], - [-147.765104, 70.219806], - [-147.431532, 70.188826], - [-147.233327, 70.207553], - [-147.161601, 70.155612], - [-146.991109, 70.14761], - [-146.885771, 70.185917], - [-146.508133, 70.186044], - [-146.129579, 70.158948], - [-146.006411, 70.140402], - [-145.858297, 70.165996], - [-145.623306, 70.084375], - [-145.43483, 70.036994], - [-145.175073, 69.991707], - [-144.902304, 69.96451], - [-144.792614, 69.979796], - [-144.672305, 69.966876], - [-144.455421, 70.035244], - [-144.274904, 70.048711], - [-143.914244, 70.115696], - [-143.5173, 70.138418], - [-143.425199, 70.124928], - [-143.281878, 70.151052], - [-142.99979, 70.088305], - [-142.746807, 70.042531], - [-142.452927, 69.958125], - [-142.404366, 69.916511], - [-142.239873, 69.896598], - [-142.015641, 69.837976], - [-141.713369, 69.789497], - [-141.43084, 69.695144], - [-141.210456, 69.68419], - [-141.002672, 69.645609], - [-141.002609596218, 68.4983640045911], - [-141.002465, 65.840075], - [-141.002464926138, 65.8394210007989], - [-141.002020469675, 61.9040470278428], - [-141.001849665644, 60.3916880118963], - [-141.00184, 60.306105], - [-140.53509, 60.224224], - [-140.472292, 60.31059], - [-139.989142, 60.18524], - [-139.698361, 60.340421], - [-139.086669, 60.357654], - [-139.082246, 60.323825], - [-139.200346, 60.090701], - [-139.046426, 59.998235], - [-138.702053, 59.910245], - [-138.643422, 59.792502], - [-138.584819, 59.752453], - [-137.604277, 59.243057], - [-137.498558, 58.986694], - [-137.525677105313, 58.9089744941401], - [-137.526424, 58.906834], - [-137.447383, 58.909513], - [-137.264752, 59.002352], - [-136.863896, 59.138472], - [-136.826633, 59.158389], - [-136.581521, 59.164909], - [-136.489652189994, 59.2604916146191], - [-136.466815, 59.284252], - [-136.474326, 59.464194], - [-136.358141, 59.449799], - [-136.234229, 59.524731], - [-136.23734, 59.558734], - [-136.350622, 59.599326], - [-136.190352, 59.639854], - [-135.945905, 59.663802], - [-135.717316842187, 59.7300769465744], - [-135.477436, 59.799626], - [-135.231148, 59.697176], - [-135.214344, 59.664343], - [-135.114588, 59.623415], - [-135.027456, 59.563692], - [-135.026328, 59.474658], - [-135.067356, 59.421855], - [-135.010033, 59.381288], - [-135.029120466615, 59.3455968616136], - [-135.029245, 59.345364], - [-134.961972, 59.280376], - [-134.702383, 59.247836], - [-134.66407, 59.181172], - [-134.566689, 59.128278], - [-134.481241, 59.128071], - [-134.379771, 59.034961], - [-134.401042, 58.976221], - [-134.327982, 58.963431], - [-134.327992277918, 58.9629721778136], - [-134.328964, 58.919593], - [-134.250526, 58.858046], - [-133.840392, 58.727991], - [-133.699835, 58.60729], - [-133.379908, 58.427909], - [-133.461475, 58.385526], - [-133.343725, 58.270915], - [-133.176979642158, 58.1505376923889], - [-133.176444, 58.150151], - [-133.076421, 57.999762], - [-132.869318, 57.842941], - [-132.756813, 57.705093], - [-132.655278650447, 57.6017446104835], - [-132.559178, 57.503927], - [-132.367984, 57.348685], - [-132.252187, 57.215655], - [-132.371312, 57.095229], - [-132.051044, 57.051155], - [-132.118917923363, 56.8912293905089], - [-132.125934, 56.874698], - [-131.871725, 56.804965], - [-131.90176, 56.753158], - [-131.835133, 56.601849], - [-131.581221, 56.613275], - [-131.461806, 56.547904], - [-131.167925, 56.448361], - [-131.086794696282, 56.4070947732236], - [-131.085704, 56.40654], - [-130.810707, 56.371063], - [-130.740619, 56.342953], - [-130.622482, 56.267939], - [-130.466874, 56.239789], - [-130.425575, 56.140676], - [-130.343716, 56.127162], - [-130.246577284174, 56.0971959884747], - [-130.24554, 56.096876], - [-130.102761, 56.116696], - [-130.00426, 55.993379], - [-130.013198, 55.916382], - [-130.08451, 55.823997], - [-130.12372, 55.80704], - [-130.138222339589, 55.7630275658063], - [-130.150061, 55.727099], - [-130.111677, 55.682051], - [-130.120132, 55.563919], - [-130.085413, 55.491517], - [-130.039928, 55.429422], - [-130.023558, 55.338259], - [-129.982348, 55.302079], - [-130.001735, 55.264557], - [-130.104749, 55.188975], - [-130.169294, 55.105424], - [-130.221512, 55.02599], - [-130.339504, 54.921376], - [-130.529228, 54.8109], - [-130.636745, 54.778456], - [-130.62807, 54.739341], - [-130.686192, 54.71691], - [-130.737423, 54.753545], - [-130.792122, 54.784784], - [-130.844145, 54.765801], - [-130.866866, 54.769068], - [-130.932454, 54.806938], - [-130.947338, 54.886733], - [-130.9604, 54.933685], - [-130.97503, 54.974853], - [-131.012061, 54.996238], - [-130.997057, 55.044256], - [-131.013215, 55.090069], - [-131.052298, 55.11816], - [-131.087497, 55.163036], - [-131.093806, 55.191335], - [-131.160492, 55.197481], - [-131.190628, 55.108013], - [-131.190033, 55.043173], - [-131.246018, 54.989555], - [-131.245988, 54.940491], - [-131.195197, 54.919767], - [-131.253671, 54.866779], - [-131.327624, 54.859122], - [-131.433473, 54.896535], - [-131.491504, 54.930392], - [-131.594567, 54.93113], - [-131.621948, 54.946531], - [-131.611889743272, 54.9822706348831], - [-131.605661, 55.004403], - [-131.646276, 55.035579], - [-131.589387, 55.08894], - [-131.605302, 55.107436], - [-131.68413198565, 55.1190936140756], - [-131.748334, 55.128588], - [-131.828395, 55.198482], - [-131.862162, 55.289284], - [-131.854297, 55.421074], - [-131.844157, 55.456742], - [-131.971792, 55.498279], - [-132.114654, 55.550623], - [-132.183207, 55.588128], - [-132.199681399057, 55.633834], - [-132.224167, 55.701766], - [-132.265071, 55.762174], - [-132.130413, 55.811419], - [-132.067412, 55.875078], - [-132.170198, 55.919231], - [-132.279962, 55.924839], - [-132.323242, 55.851878], - [-132.397304, 55.878867], - [-132.449834, 55.956186], - [-132.492795, 56.066436], - [-132.594235, 56.021858], - [-132.708697, 56.112124], - [-132.718342, 56.217704], - [-132.843716, 56.238933], - [-132.877582, 56.240322], - [-132.926759, 56.266188], - [-132.961082, 56.296167], - [-133.029712, 56.3157], - [-133.070056, 56.330951], - [-133.0696, 56.346323], - [-133.060361, 56.358378], - [-132.977163, 56.439673], - [-132.896342, 56.457978], - [-132.791872, 56.449169], - [-132.627544, 56.46287], - [-132.528637, 56.529269], - [-132.45079, 56.564098], - [-132.529037, 56.63797], - [-132.542885, 56.701905], - [-132.54582226332, 56.7136212358796], - [-132.556758, 56.757242], - [-132.792089, 56.856152], - [-132.892388, 56.993016], - [-132.93752, 57.048321], - [-133.161448, 57.086264], - [-133.247414, 57.136802], - [-133.322359, 57.112727], - [-133.466932, 57.159356], - [-133.544817, 57.24257], - [-133.489738, 57.305192], - [-133.472039, 57.368651], - [-133.514964, 57.473345], - [-133.519598, 57.530705], - [-133.62076, 57.578919], - [-133.676449, 57.625192], - [-133.65453, 57.713689], - [-133.703025360283, 57.7920362615953], - [-133.703097, 57.792152], - [-133.848776, 57.93544], - [-134.049603, 58.062027], - [-134.078155, 58.152046], - [-134.146685, 58.199084], - [-134.234572, 58.197234], - [-134.375579, 58.208705], - [-134.464635, 58.227388], - [-134.631203, 58.247446], - [-134.750586, 58.391533], - [-134.936897, 58.457474], - [-135.061769077114, 58.4513532436234], - [-135.104413, 58.449263], - [-135.068437, 58.374157], - [-135.049062, 58.309295], - [-135.10121, 58.292607], - [-135.087872, 58.200073], - [-135.227736, 58.2369], - [-135.306507, 58.242916], - [-135.408059, 58.342999], - [-135.449966172855, 58.3390681826569], - [-135.544213, 58.330228], - [-135.649861, 58.324517], - [-135.728054, 58.397067], - [-135.917917, 58.381237], - [-136.041818, 58.380161], - [-136.11193, 58.34253], - [-136.265906, 58.314499], - [-136.437152, 58.302417], - [-136.544776, 58.316665], - [-136.576799, 58.277951], - [-136.567956, 58.245153], - [-136.591924, 58.217886], - [-136.70125, 58.219416], - [-136.717093, 58.273508], - [-136.857605, 58.31636], - [-136.911713, 58.370252], - [-136.986384, 58.404043], - [-137.078109, 58.397474], - [-137.239366, 58.453159], - [-137.355328, 58.492374], - [-137.568216, 58.587989], - [-137.653709, 58.608324], - [-137.681633, 58.656452], - [-137.836448, 58.741563], - [-137.941828, 58.794322], - [-137.936159895178, 58.8106502234505], - [-137.924608, 58.843928], - [-137.951995, 58.886029], - [-138.066332, 58.957126], - [-138.224323, 59.032216], - [-138.357909, 59.069394], - [-138.636702, 59.130585], - [-138.807186, 59.208772], - [-138.919749, 59.248531], - [-139.07148, 59.28715], - [-139.271031, 59.337421], - [-139.420168, 59.37976], - [-139.632896, 59.459906], - [-139.861306, 59.546678], - [-139.74266, 59.623871], - [-139.585789, 59.642765], - [-139.588777, 59.708968], - [-139.608545, 59.821961], - [-139.776836, 59.833835], - [-139.871222, 59.802611], - [-140.080423, 59.756299], - [-140.176224, 59.735965], - [-140.242577, 59.687888], - [-140.4119, 59.699649], - [-140.792511, 59.728573], - [-140.922635, 59.751687], - [-141.156497, 59.813582], - [-141.392811, 59.870028], - [-141.485207, 59.925024], - [-141.595376, 59.961905], - [-141.73624, 59.961905], - [-141.912218, 60.009779], - [-142.062454, 60.023781], - [-142.426572, 60.071066], - [-142.744868, 60.09413], - [-142.908859, 60.090328], - [-143.0687, 60.068603], - [-143.267818, 60.058655], - [-143.624152, 60.037257], - [-143.781649, 60.010354], - [-143.893326, 59.9867216058936], - [-143.897029, 59.985938], - [-144.005879, 60.012981], - [-144.052539, 60.041759], - [-144.1103, 60.098939], - [-144.186745, 60.116967], - [-144.348913, 60.091184], - [-144.429249, 60.14802], - [-144.555093, 60.178485], - [-144.654899, 60.204882], - [-144.929327, 60.228253], - [-144.957848, 60.288152], - [-145.089139, 60.320014], - [-145.136728, 60.296219], - [-145.254749, 60.311448], - [-145.380064, 60.352829], - [-145.51081, 60.318296], - [-145.639204, 60.301971], - [-145.831202, 60.350293], - [-145.988546, 60.387427], - [-146.088134, 60.364987], - [-146.197229, 60.348294], - [-146.232681, 60.338851], - [-146.393256, 60.327476], - [-146.490804, 60.294939], - [-146.607692, 60.241182], - [-146.650852, 60.242982], - [-146.694034, 60.279608], - [-146.916487, 60.290973], - [-146.993353, 60.24008], - [-147.145205, 60.171321], - [-147.257795, 60.107883], - [-147.376397, 60.016192], - [-147.339794, 59.962102], - [-147.452217, 59.954011], - [-147.470281, 59.906732], - [-147.391846, 59.87776], - [-147.508309, 59.841957], - [-147.646045, 59.817828], - [-147.765122, 59.795954], - [-147.876475, 59.763893], - [-147.92924, 59.783875], - [-147.913316, 59.837181], - [-147.855084, 59.871915], - [-147.956775, 59.9594], - [-148.101239, 59.952794], - [-148.25406, 59.932357], - [-148.220554, 59.97635], - [-148.313962, 60.033859], - [-148.401666, 59.977836], - [-148.478881, 59.935806], - [-148.634777, 59.915747], - [-148.649529585787, 59.9235531800999], - [-148.689496, 59.944701], - [-148.801325, 59.952794], - [-148.859556, 59.924398], - [-148.936406, 59.953429], - [-149.036467, 59.942137], - [-149.123262, 59.968559], - [-149.221067, 59.938748], - [-149.270623, 59.872067], - [-149.376593, 59.835879], - [-149.472227, 59.903693], - [-149.572714, 59.852317], - [-149.595531, 59.79772], - [-149.506758, 59.770927], - [-149.527793, 59.706846], - [-149.626311, 59.73441], - [-149.731966, 59.706783], - [-149.74622, 59.637585], - [-149.842672, 59.7013], - [-149.919444, 59.691836], - [-150.002337, 59.630563], - [-150.133747, 59.556786], - [-150.280838, 59.466833], - [-150.297108, 59.424747], - [-150.358992, 59.399684], - [-150.385341, 59.341963], - [-150.430144, 59.343357], - [-150.477717, 59.422111], - [-150.4989, 59.456298], - [-150.581182, 59.445233], - [-150.609488, 59.386314], - [-150.680872, 59.305412], - [-150.721799, 59.292087], - [-150.822768, 59.330763], - [-150.912817, 59.305214], - [-150.887821, 59.26792], - [-150.942212, 59.233136], - [-151.001196, 59.224149], - [-151.126247, 59.209923], - [-151.287771, 59.219417], - [-151.341601, 59.222231], - [-151.470623, 59.242621], - [-151.43339, 59.135517], - [-151.662368, 59.089735], - [-151.858124, 59.144234], - [-151.915684, 59.227522], - [-151.984101, 59.278696], - [-151.96313, 59.344958], - [-151.886513, 59.421033], - [-151.742915, 59.468286], - [-151.516339, 59.52352], - [-151.327803, 59.573047], - [-151.205459, 59.630284], - [-151.296895, 59.696861], - [-151.448669, 59.648171], - [-151.643061, 59.646966], - [-151.746815, 59.686234], - [-151.869468, 59.769159], - [-151.813619, 59.844297], - [-151.757693, 59.917637], - [-151.71801, 60.009473], - [-151.606881, 60.099558], - [-151.421702, 60.212931], - [-151.381959, 60.296951], - [-151.366874, 60.372655], - [-151.30609, 60.387257], - [-151.28181, 60.496034], - [-151.303125, 60.561326], - [-151.350154, 60.63466], - [-151.410273, 60.711023], - [-151.370515, 60.733572], - [-151.261319, 60.769801], - [-151.062558, 60.787429], - [-150.895508, 60.853166], - [-150.705812, 60.937792], - [-150.501923, 61.007957], - [-150.401859, 61.036227], - [-150.341709, 61.024201], - [-150.194128, 60.90134], - [-150.109276, 60.890357], - [-149.985374, 60.879033], - [-149.900135, 60.940043], - [-149.853693, 60.967395], - [-149.748463763199, 61.0012376770684], - [-149.717167, 61.011303], - [-149.831922, 61.076197], - [-150.005041, 61.138556], - [-150.065646, 61.151079], - [-150.265894, 61.127365], - [-150.228774, 61.162581], - [-150.220991045748, 61.1941844223187], - [-150.204894, 61.259548], - [-150.425, 61.245552], - [-150.535997, 61.269724], - [-150.679902, 61.265888], - [-150.827295, 61.22839], - [-150.939251, 61.210299], - [-150.974011916343, 61.1944672986995], - [-151.047736, 61.16089], - [-151.121692, 61.083574], - [-151.166606, 61.046404], - [-151.252384, 61.039968], - [-151.349004, 61.010004], - [-151.4803, 61.010902], - [-151.600126, 60.965589], - [-151.720815, 60.904257], - [-151.800264, 60.853672], - [-151.77731, 60.810461], - [-151.703802, 60.732376], - [-151.716379, 60.710415], - [-151.89792, 60.72175], - [-152.039381, 60.660517], - [-152.13616, 60.578475], - [-152.261497, 60.538237], - [-152.331365, 60.473525], - [-152.30195, 60.414328], - [-152.234199, 60.393888], - [-152.376743, 60.345613], - [-152.411281, 60.287864], - [-152.539843, 60.241644], - [-152.574938, 60.206451], - [-152.57873, 60.16987], - [-152.550177, 60.113715], - [-152.575153, 60.04826], - [-152.679402, 59.968054], - [-152.700822, 59.920309], - [-152.860867, 59.875033], - [-152.967267, 59.881494], - [-153.009084, 59.830643], - [-153.016353, 59.751127], - [-153.051559, 59.691562], - [-153.155019, 59.654344], - [-153.240018, 59.632426], - [-153.308837, 59.625706], - [-153.409422, 59.636328], - [-153.542466, 59.630236], - [-153.553163, 59.597046], - [-153.577828, 59.555991], - [-153.684925, 59.552865], - [-153.76148, 59.543411], - [-153.699025, 59.463603], - [-153.747201, 59.429657], - [-153.862199, 59.424124], - [-153.925307, 59.405254], - [-153.998506, 59.384723], - [-154.030807, 59.32704], - [-154.122681, 59.287622], - [-154.141192, 59.216598], - [-154.172944, 59.172496], - [-154.180691, 59.123235], - [-154.063489, 59.07214], - [-153.932824, 59.062677], - [-153.793972, 59.071416], - [-153.695664, 59.073994], - [-153.596489, 59.000192], - [-153.479939, 58.995286], - [-153.393101, 58.951097], - [-153.322843, 58.907849], - [-153.267407, 58.867218], - [-153.294436234906, 58.855036], - [-153.369389, 58.821255], - [-153.402472, 58.742607], - [-153.445002, 58.70931], - [-153.55265, 58.687176], - [-153.591635, 58.640084], - [-153.731019, 58.608224], - [-153.851432, 58.611872], - [-153.909994, 58.561213], - [-153.930473, 58.497482], - [-154.001918, 58.492346], - [-154.07066, 58.440018], - [-153.985416, 58.390877], - [-154.074145, 58.352661], - [-154.103412, 58.280161], - [-154.145277, 58.210931], - [-154.222465, 58.132566], - [-154.340449, 58.090921], - [-154.477979, 58.052379], - [-154.581547, 58.019285], - [-154.765287, 58.00371], - [-154.876559, 58.027722], - [-155.026275, 57.999302], - [-155.118648, 57.953925], - [-155.061806, 57.90433], - [-155.097095, 57.865356], - [-155.272917, 57.823981], - [-155.285339, 57.758726], - [-155.354011, 57.715261], - [-155.506533, 57.76097], - [-155.609353, 57.777699], - [-155.615203, 57.688074], - [-155.629912, 57.656376], - [-155.724167, 57.633445], - [-155.732779, 57.549732], - [-155.915261, 57.535331], - [-156.046804, 57.525724], - [-156.012841, 57.451394], - [-156.091668, 57.439829], - [-156.220105, 57.445295], - [-156.362039, 57.400474], - [-156.336427, 57.336081], - [-156.342943, 57.248056], - [-156.334404, 57.1823], - [-156.342103143093, 57.1778504105251], - [-156.44301, 57.119533], - [-156.479111, 57.068395], - [-156.55052, 56.98461], - [-156.63784, 56.993905], - [-156.704216, 56.987079], - [-156.825982, 56.897667], - [-156.935629, 56.920087], - [-157.034624, 56.884487], - [-157.073453, 56.838345], - [-157.183636, 56.769079], - [-157.290511, 56.804713], - [-157.411488, 56.778351], - [-157.530765, 56.753775], - [-157.563802, 56.703426], - [-157.45216, 56.64322], - [-157.496523, 56.616897], - [-157.605231, 56.621315], - [-157.674587, 56.609507], - [-157.719048, 56.653084], - [-157.791844, 56.670692], - [-157.918541, 56.643137], - [-157.869897, 56.566837], - [-157.817826, 56.51421], - [-157.869124, 56.456612], - [-157.971711, 56.476737], - [-158.12744, 56.460805], - [-158.246144, 56.466124], - [-158.284699, 56.481089], - [-158.371953, 56.467334], - [-158.438414, 56.427471], - [-158.489546, 56.341865], - [-158.415095, 56.336228], - [-158.288369, 56.316089], - [-158.207387, 56.294354], - [-158.117797, 56.230742], - [-158.283191, 56.173212], - [-158.374324, 56.134522], - [-158.394922, 56.064721], - [-158.431471, 55.994452], - [-158.50984, 55.979617], - [-158.638211, 55.994743], - [-158.653214, 55.958615], - [-158.74856, 55.959365], - [-158.898116, 55.951041], - [-159.096187, 55.91475], - [-159.086217, 55.834869], - [-159.394595, 55.714944], - [-159.532754, 55.676424], - [-159.561438320694, 55.6409137566581], - [-159.572125, 55.627684], - [-159.696713, 55.573306], - [-159.733899, 55.569985], - [-159.760365, 55.615203], - [-159.679201, 55.655895], - [-159.673191, 55.750961], - [-159.627482, 55.803248], - [-159.679792, 55.838765], - [-159.770298, 55.852357], - [-159.847359, 55.80253], - [-159.937089, 55.803306], - [-160.026282, 55.792295], - [-160.058443, 55.721734], - [-160.130445, 55.681419], - [-160.279827, 55.641384], - [-160.392587, 55.602771], - [-160.464301, 55.533243], - [-160.462745, 55.506654], - [-160.521335, 55.47442], - [-160.654117, 55.512596], - [-160.666917, 55.459776], - [-160.781401, 55.45178], - [-160.836725, 55.473135], - [-160.976551, 55.472736], - [-161.080549, 55.408498], - [-161.253977, 55.355896], - [-161.486114, 55.359322], - [-161.514211, 55.385254], - [-161.478303, 55.4406], - [-161.469271, 55.49683], - [-161.376102, 55.569794], - [-161.392613, 55.628221], - [-161.482064, 55.633979], - [-161.587047, 55.62006], - [-161.658262, 55.560447], - [-161.700069, 55.51439], - [-161.686495, 55.408041], - [-161.777414, 55.329377], - [-161.863339, 55.266989], - [-161.817232, 55.176529], - [-161.718614, 55.154166], - [-161.576643, 55.103831], - [-161.550357, 55.065734], - [-161.690346, 55.0785], - [-161.792297, 55.052278], - [-161.906434, 55.10032], - [-161.956595, 55.112174], - [-162.053281, 55.074212], - [-162.11874, 55.102911], - [-162.190348, 55.066981], - [-162.219326, 55.028975], - [-162.235675, 54.962601], - [-162.236806, 54.88163], - [-162.282944, 54.841216], - [-162.349315, 54.836049], - [-162.428237, 54.895434], - [-162.435473, 54.929249], - [-162.41351, 55.03656], - [-162.471364, 55.051932], - [-162.569291, 55.004599], - [-162.587967, 54.97201], - [-162.708453, 54.95848], - [-162.834245, 54.926851], - [-162.913684, 54.950273], - [-162.962205, 54.993538], - [-163.065602, 54.926172], - [-163.14958, 54.885906], - [-163.254588, 54.838907], - [-163.352997, 54.810174], - [-163.281379, 54.77673], - [-163.184295, 54.774912], - [-163.068952, 54.712605], - [-163.037788, 54.646995], - [-163.223179, 54.676895], - [-163.392198, 54.658496], - [-163.572383, 54.623211], - [-163.80359, 54.636498], - [-164.03827, 54.624688], - [-164.257585, 54.572722], - [-164.337538, 54.524259], - [-164.352704, 54.465023], - [-164.456554, 54.419856], - [-164.640457, 54.391166], - [-164.743977, 54.394216], - [-164.861475, 54.431353], - [-164.904077, 54.499195], - [-164.944636, 54.532903], - [-164.948789, 54.579877], - [-164.864333, 54.620188], - [-164.741815, 54.645441], - [-164.674836, 54.702596], - [-164.576896, 54.824564], - [-164.57626, 54.895342], - [-164.43528, 54.933126], - [-164.343534, 54.894139], - [-164.204897, 54.93124], - [-164.119196, 54.969416], - [-163.994179, 54.983315], - [-163.894695, 55.039115], - [-163.774093, 55.05578], - [-163.527109, 55.040871], - [-163.429548, 54.954759], - [-163.343768, 54.974439], - [-163.280771, 55.032959], - [-163.314652, 55.126312], - [-163.132007, 55.179629], - [-163.032256, 55.172147], - [-162.86152, 55.198339], - [-162.900027, 55.252466], - [-162.813255, 55.299458], - [-162.64165, 55.392576], - [-162.565411, 55.466849], - [-162.365467, 55.604586], - [-162.219551, 55.710867], - [-162.120886, 55.749089], - [-162.05063, 55.790897], - [-161.898956, 55.833464], - [-161.807833, 55.891954], - [-161.712283, 55.904232], - [-161.450442, 55.954485], - [-161.15687, 56.012216], - [-160.964744, 56.023754], - [-160.807119, 56.02398], - [-160.811041, 55.94723], - [-160.793215, 55.88596], - [-160.564014, 55.863719], - [-160.508433, 55.869379], - [-160.457194, 55.917233], - [-160.533685, 55.95995], - [-160.589569, 55.983048], - [-160.488708, 56.077214], - [-160.405869, 56.207938], - [-160.385922, 56.279706], - [-160.222878, 56.346868], - [-160.146252, 56.400176], - [-159.985615, 56.449743], - [-159.828049, 56.543935], - [-159.534961, 56.626529], - [-159.219956, 56.73953], - [-158.972735, 56.842138], - [-158.893547986565, 56.8093085483772], - [-158.853294, 56.79262], - [-158.744534, 56.795112], - [-158.656355, 56.810012], - [-158.646812, 56.846992], - [-158.686184, 56.911555], - [-158.679293, 56.988625], - [-158.531328, 57.132156], - [-158.32018, 57.281558], - [-158.229883, 57.321534], - [-158.083785, 57.357181], - [-157.931624, 57.476208], - [-157.772496, 57.547055], - [-157.678891, 57.563888], - [-157.684282, 57.609974], - [-157.709179, 57.657459], - [-157.683349, 57.753695], - [-157.642226, 57.868777], - [-157.596601, 58.08867], - [-157.556556, 58.148445], - [-157.48013, 58.217354], - [-157.547209, 58.277535], - [-157.541041, 58.377302], - [-157.481487, 58.480771], - [-157.313572, 58.565043], - [-157.234300636678, 58.616667], - [-157.135927, 58.680731], - [-157.06223, 58.740187], - [-156.993548, 58.836798], - [-157.016088, 58.86349], - [-157.095372270939, 58.866670717095], - [-157.116866, 58.867533], - [-157.196292140099, 58.8493595416621], - [-157.388651, 58.805346], - [-157.572524, 58.750839], - [-157.777937, 58.703288], - [-158.140307, 58.61502], - [-158.232276, 58.619902], - [-158.332093, 58.665313], - [-158.376873, 58.748043], - [-158.423828, 58.769847], - [-158.564833, 58.802715], - [-158.520327, 58.857105], - [-158.619684, 58.911048], - [-158.767748, 58.864264], - [-158.790378, 58.804712], - [-158.780136, 58.75379], - [-158.861207, 58.69558], - [-158.827852, 58.626432], - [-158.704052, 58.482759], - [-158.795316, 58.408032], - [-158.880927, 58.39067], - [-159.063346, 58.423139], - [-159.228398, 58.603047], - [-159.409779, 58.773611], - [-159.532347, 58.833609], - [-159.643549, 58.845063], - [-159.601899, 58.884671], - [-159.61612, 58.931601], - [-159.712114, 58.929468], - [-159.748183, 58.875827], - [-159.792923, 58.823971], - [-159.908386, 58.779903], - [-159.979344, 58.835535], - [-160.150528, 58.866062], - [-160.232788, 58.901127], - [-160.322922, 58.953953], - [-160.256592, 58.99448], - [-160.31778, 59.070477], - [-160.516426, 59.01124], - [-160.730971, 58.921186], - [-160.823489, 58.829136], - [-160.872003, 58.878472], - [-161.001101, 58.849693], - [-161.031441005292, 58.8398079512056], - [-161.073748442441, 58.8260238046127], - [-161.221942, 58.777741], - [-161.337982, 58.742912], - [-161.339580659244, 58.739338625003], - [-161.372314, 58.666172], - [-161.550537, 58.61116], - [-161.751999, 58.551842], - [-161.802156, 58.612318], - [-162.027363, 58.60705], - [-162.171722, 58.648441], - [-161.994644, 58.688828], - [-161.824107, 58.734549], - [-161.764791, 58.846235], - [-161.804034, 58.991717], - [-161.910267, 59.093503], - [-161.996859, 59.174126], - [-162.048584, 59.254177], - [-161.992903, 59.338385], - [-161.848988, 59.432494], - [-161.790375, 59.468197], - [-161.70253, 59.490906], - [-161.772979, 59.566243], - [-161.873944, 59.649487], - [-161.88552, 59.69839], - [-162.046547, 59.849688], - [-162.108772, 59.920107], - [-162.143049, 59.967506], - [-162.228371, 60.056313], - [-162.37224, 60.167009], - [-162.45128, 60.174367], - [-162.49418, 60.130271], - [-162.495608, 60.078949], - [-162.487649, 60.028082], - [-162.515276, 59.976183], - [-162.622569, 59.971809], - [-162.737447, 59.972254], - [-162.808513, 59.933933], - [-162.929135, 59.908054], - [-163.172633, 59.845058], - [-163.458092, 59.809958], - [-163.772229, 59.795624], - [-163.930798, 59.803853], - [-164.133393, 59.845612], - [-164.208475, 59.934461], - [-164.178705, 59.96181], - [-164.13181, 59.991177], - [-164.272808, 60.046194], - [-164.411016, 60.097675], - [-164.517647, 60.199493], - [-164.619501, 60.234938], - [-164.698889, 60.296298], - [-164.777233, 60.293833], - [-164.984527, 60.349929], - [-165.129403, 60.433707], - [-165.069693, 60.460893], - [-165.015155, 60.471414], - [-164.956788, 60.527837], - [-164.986952, 60.542406], - [-165.093939, 60.531862], - [-165.190449, 60.498001], - [-165.274867, 60.499021], - [-165.362975, 60.506866], - [-165.420349, 60.550692], - [-165.367676, 60.581158], - [-165.206433, 60.610227], - [-165.073091, 60.684217], - [-164.991665, 60.69884], - [-165.010452, 60.744789], - [-165.040843, 60.77266], - [-165.030183, 60.83805], - [-165.08509, 60.913763], - [-165.108494992779, 60.9265753986229], - [-165.194945, 60.9739], - [-165.133937, 61.01125], - [-165.057842, 61.059746], - [-165.139403, 61.092946], - [-165.203757, 61.150341], - [-165.325552, 61.169306], - [-165.385437, 61.079574], - [-165.459236, 61.083424], - [-165.55514, 61.092674], - [-165.640289, 61.138066], - [-165.63288, 61.227965], - [-165.623317, 61.278431], - [-165.787442, 61.310063], - [-165.831365, 61.306719], - [-165.921194, 61.40308], - [-165.877104, 61.431149], - [-165.791085, 61.449852], - [-165.746352, 61.489304], - [-165.865668, 61.535046], - [-165.912496, 61.5562], - [-165.999535, 61.53972], - [-166.075398, 61.49298], - [-166.149577, 61.513288], - [-166.211787, 61.608373], - [-166.143757, 61.724352], - [-166.050997, 61.766689], - [-166.094312, 61.813859], - [-165.940864, 61.84908], - [-165.803979, 61.825685], - [-165.639516, 61.847006], - [-165.650103, 61.874153], - [-165.743528, 61.962533], - [-165.754295, 62.055955], - [-165.672037, 62.13989], - [-165.458499, 62.282847], - [-165.26927, 62.427352], - [-165.096155, 62.522452], - [-165.052202, 62.598217], - [-164.962432, 62.658246], - [-164.837703, 62.685267], - [-164.864367, 62.752042], - [-164.87564, 62.806254], - [-164.813007, 62.903919], - [-164.685213, 63.022191], - [-164.607425, 63.112899], - [-164.442368, 63.202672], - [-164.209475, 63.251472], - [-164.066991, 63.262276], - [-163.885059, 63.222308], - [-163.73265, 63.213257], - [-163.616272, 63.141213], - [-163.529938, 63.1354], - [-163.316203, 63.037763], - [-163.053996, 63.058334], - [-162.919727, 63.120153], - [-162.844559, 63.154191], - [-162.821122, 63.205596], - [-162.72408, 63.214615], - [-162.602860986157, 63.277182503469], - [-162.526588, 63.316551], - [-162.42153, 63.409014], - [-162.352274, 63.454069], - [-162.562007, 63.537105], - [-162.707559, 63.577607], - [-162.587527, 63.625115], - [-162.401203, 63.634367], - [-162.252411, 63.541753], - [-162.073156, 63.513768], - [-161.982168, 63.446313], - [-161.676526, 63.465003], - [-161.421085, 63.46015], - [-161.191163, 63.490072], - [-161.073573, 63.5617], - [-160.783304, 63.752893], - [-160.76562, 63.828714], - [-160.900464, 63.99834], - [-160.941096, 64.066319], - [-160.962007, 64.220575], - [-161.177712, 64.343541], - [-161.263519, 64.398166], - [-161.504903, 64.423074], - [-161.469046, 64.506575], - [-161.389879, 64.547833], - [-161.198029, 64.496626], - [-160.992894, 64.541295], - [-160.793356, 64.619317], - [-160.783398, 64.71716], - [-160.935974, 64.82237], - [-161.079718, 64.869549], - [-161.133062, 64.898219], - [-161.213756, 64.883324], - [-161.327848, 64.829836], - [-161.376985, 64.773036], - [-161.518211, 64.75325], - [-161.64552, 64.776452], - [-161.772978, 64.749258], - [-161.878363, 64.709476], - [-162.060291, 64.692872], - [-162.188146, 64.672395], - [-162.234477, 64.619336], - [-162.539996, 64.530931], - [-162.603236, 64.479904], - [-162.632242, 64.385734], - [-162.768424, 64.333516], - [-162.83654, 64.436702], - [-162.857562, 64.49978], - [-162.940776, 64.542417], - [-163.033231, 64.519314], - [-163.027158, 64.477945], - [-163.091486, 64.437736], - [-163.133172, 64.381844], - [-163.249092, 64.456223], - [-163.4129, 64.524986], - [-163.686337, 64.568798], - [-163.829739, 64.574965], - [-163.974352, 64.55137], - [-164.147059, 64.564552], - [-164.307273, 64.561488], - [-164.548298, 64.516738], - [-164.807747, 64.449432], - [-165.001961, 64.433917], - [-165.291644, 64.480731], - [-165.819595, 64.540171], - [-166.236939, 64.583558], - [-166.413926, 64.651229], - [-166.482682, 64.755101], - [-166.478978, 64.797036], - [-166.407315, 64.852281], - [-166.432246, 64.88316], - [-166.586066, 64.955712], - [-166.697808, 64.991201], - [-166.73725, 65.027526], - [-166.911922, 65.125965], - [-166.886677, 65.138763], - [-166.634449, 65.125873], - [-166.479913, 65.167249], - [-166.451711, 65.236178], - [-166.347189, 65.276341], - [-166.439404, 65.319058], - [-166.596964, 65.336246], - [-166.750702, 65.333172], - [-166.899681, 65.360642], - [-167.067707, 65.385117], - [-167.348739, 65.397891], - [-167.474024, 65.412744], - [-167.684378, 65.489079], - [-167.851234, 65.538181], - [-168.04762, 65.569149], - [-168.12893, 65.655744] - ] - ], - [ - [ - [-169.28652, 52.784747], - [-169.044466, 52.893927], - [-168.95946, 52.936739], - [-168.861061, 53.016384], - [-168.785236, 53.045038], - [-168.804901, 53.120015], - [-168.763331, 53.182812], - [-168.581891, 53.286521], - [-168.445083, 53.26533], - [-168.420521, 53.322743], - [-168.395355, 53.397776], - [-168.342127, 53.475992], - [-168.238321, 53.521902], - [-168.027006, 53.562755], - [-167.914669, 53.522716], - [-167.789164, 53.519329], - [-167.808117, 53.473861], - [-167.856837, 53.428609], - [-167.842328, 53.386489], - [-167.959096, 53.341788], - [-168.092011, 53.28827], - [-168.296229, 53.227235], - [-168.343075, 53.170553], - [-168.412522, 53.110683], - [-168.457103, 53.055839], - [-168.613964, 53.008776], - [-168.688468, 52.9664], - [-168.755531, 52.907507], - [-168.851017, 52.90804], - [-169.005038, 52.829992], - [-169.170371, 52.776663], - [-169.261765, 52.754897], - [-169.28652, 52.784747] - ] - ], - [ - [ - [-169.81831, 56.633612], - [-169.613691, 56.622761], - [-169.474322, 56.625183], - [-169.453786, 56.583786], - [-169.582624, 56.536939], - [-169.685825, 56.539717], - [-169.81831, 56.633612] - ] - ], - [ - [ - [-170.170683, 52.784918], - [-170.092221, 52.919387], - [-170.026342, 52.944912], - [-169.857567, 52.908533], - [-169.76274, 52.97805], - [-169.820198, 53.06679], - [-169.747457, 53.0932], - [-169.680033, 53.035075], - [-169.662385, 52.951752], - [-169.666512, 52.864349], - [-169.703873, 52.777117], - [-169.818548, 52.791577], - [-169.951498, 52.788615], - [-170.077734, 52.720416], - [-170.207887, 52.708899], - [-170.170683, 52.784918] - ] - ], - [ - [ - [-170.420047, 57.212917], - [-170.303091, 57.238029], - [-170.143996, 57.242804], - [-170.133884, 57.181329], - [-170.286318, 57.128169], - [-170.421867, 57.161202], - [-170.420047, 57.212917] - ] - ], - [ - [ - [-170.817943, 52.636275], - [-170.671545, 52.698082], - [-170.532144, 52.679971], - [-170.58496, 52.587186], - [-170.685914, 52.581228], - [-170.788495, 52.54024], - [-170.841936, 52.558171], - [-170.817943, 52.636275] - ] - ], - [ - [ - [-171.312658, 52.493502], - [-171.256768, 52.52858], - [-171.196013, 52.500106], - [-171.226729, 52.434269], - [-171.30417, 52.449952], - [-171.312658, 52.493502] - ] - ], - [ - [ - [-171.83683, 63.564883], - [-171.791881, 63.620625], - [-171.802824, 63.716391], - [-171.743398, 63.782971], - [-171.613182, 63.785065], - [-171.58305, 63.715557], - [-171.552856, 63.666251], - [-171.309333, 63.621085], - [-170.950817, 63.570127], - [-170.859032, 63.587503], - [-170.606282, 63.672732], - [-170.488192, 63.696723], - [-170.344855, 63.694225], - [-170.26748, 63.675816], - [-170.176413, 63.625489], - [-170.095833, 63.612701], - [-170.048963, 63.537958], - [-170.007943, 63.475428], - [-169.857078, 63.441975], - [-169.656474, 63.429929], - [-169.566562, 63.388725], - [-169.462733, 63.360458], - [-169.087914, 63.340937], - [-168.937385, 63.333789], - [-168.685145, 63.296427], - [-168.751537, 63.217962], - [-168.841654, 63.153844], - [-168.93915, 63.137653], - [-169.07503, 63.177689], - [-169.230523, 63.172948], - [-169.436748, 63.113579], - [-169.534984, 63.074355], - [-169.576965, 63.027025], - [-169.568016, 62.976879], - [-169.638309, 62.937527], - [-169.757249, 62.960087], - [-169.788466, 63.043015], - [-169.88123, 63.105848], - [-170.049622, 63.163377], - [-170.186485, 63.181618], - [-170.263032, 63.179147], - [-170.30363, 63.238692], - [-170.430656, 63.314284], - [-170.663536, 63.376109], - [-170.896167, 63.417745], - [-171.067663, 63.424579], - [-171.226326, 63.395108], - [-171.285411, 63.366464], - [-171.433319, 63.307578], - [-171.528084, 63.324933], - [-171.667115, 63.356166], - [-171.760112, 63.381633], - [-171.849984, 63.485039], - [-171.83683, 63.564883] - ] - ], - [ - [ - [-172.612274, 52.306828], - [-172.545116, 52.357863], - [-172.448182, 52.391439], - [-172.326444, 52.366472], - [-172.301445, 52.329951], - [-172.414419, 52.27674], - [-172.528095, 52.254336], - [-172.639992, 52.244765], - [-172.612274, 52.306828] - ] - ], - [ - [ - [-173.074642, 60.704657], - [-172.912636, 60.604129], - [-172.847344, 60.516742], - [-172.545912, 60.412225], - [-172.380946, 60.382764], - [-172.238862, 60.336642], - [-172.254263, 60.297375], - [-172.416534, 60.314347], - [-172.630272, 60.334922], - [-172.895998, 60.450587], - [-173.0638, 60.502589], - [-173.115569, 60.658971], - [-173.074642, 60.704657] - ] - ], - [ - [ - [-175.301556, 52.055602], - [-175.031213, 52.092109], - [-174.887242, 52.128602], - [-174.715205, 52.127375], - [-174.55467, 52.160405], - [-174.462962, 52.213031], - [-174.455979, 52.31369], - [-174.329818, 52.373548], - [-174.185347, 52.417788], - [-174.068248, 52.390331], - [-173.985203, 52.3176], - [-174.046994, 52.236262], - [-174.022638, 52.133713], - [-173.899966, 52.139949], - [-173.654404, 52.146192], - [-173.529923, 52.159364], - [-173.375229, 52.108228], - [-173.174403, 52.126278], - [-172.947811, 52.107371], - [-172.980222, 52.064049], - [-173.169557, 52.04385], - [-173.39397, 52.028674], - [-173.513047, 52.02531], - [-173.695316, 52.055319], - [-173.820692, 52.043312], - [-173.901075, 52.049435], - [-174.099836, 52.072078], - [-174.278279, 52.089489], - [-174.382661, 52.081658], - [-174.408693, 52.012811], - [-174.556278, 52.036733], - [-174.736592, 52.007308], - [-174.892306, 52.019687], - [-175.014807, 52.007], - [-175.155673, 52.011512], - [-175.323322, 52.007488], - [-175.301556, 52.055602] - ] - ], - [ - [ - [-176.950128, 51.686719], - [-176.917088, 51.797016], - [-176.781889, 51.832373], - [-176.762478, 51.867878], - [-176.810433, 51.927089], - [-176.774023, 51.965895], - [-176.698771, 51.964454], - [-176.579975, 52.003238], - [-176.549119, 51.955561], - [-176.554661, 51.909834], - [-176.576381, 51.842275], - [-176.431673, 51.861169], - [-176.311573, 51.872463], - [-176.173871, 51.882449], - [-176.168643, 51.948025], - [-176.183023, 51.998904], - [-176.211188, 52.064706], - [-176.14951, 52.11757], - [-176.055983, 52.109469], - [-176.007589, 52.066228], - [-175.887514, 51.995142], - [-175.807848, 51.989665], - [-175.664274, 51.993862], - [-175.45047, 52.012742], - [-175.424859, 51.972332], - [-175.639739, 51.933645], - [-175.789118, 51.919323], - [-175.963041, 51.846253], - [-175.998464, 51.801542], - [-176.158185, 51.768901], - [-176.289921, 51.741678], - [-176.46705, 51.726668], - [-176.543948, 51.698719], - [-176.656005, 51.658306], - [-176.715424, 51.620422], - [-176.809, 51.616235], - [-176.938917, 51.590982], - [-176.987383, 51.606872], - [-176.950128, 51.686719] - ] - ], - [ - [ - [-177.670119, 51.743381], - [-177.492124, 51.770306], - [-177.313149, 51.778223], - [-177.228177, 51.803783], - [-177.199539, 51.910239], - [-177.181271, 51.943167], - [-177.099266, 51.936119], - [-177.04509, 51.898605], - [-177.098661, 51.829647], - [-177.105188, 51.719333], - [-177.18994, 51.697217], - [-177.275121, 51.68051], - [-177.34801, 51.696513], - [-177.483959, 51.682278], - [-177.651386, 51.653604], - [-177.707802, 51.703268], - [-177.670119, 51.743381] - ] - ], - [ - [ - [-178.19709, 51.905464], - [-178.090632, 51.919399], - [-177.952094, 51.915348], - [-177.887423, 51.85089], - [-177.757429, 51.847042], - [-177.615311, 51.85508], - [-177.649278, 51.801851], - [-177.755022, 51.772834], - [-177.827524, 51.712086], - [-177.86796, 51.679374], - [-177.909185, 51.596671], - [-178.04566, 51.630062], - [-178.117864, 51.677831], - [-178.054798, 51.704768], - [-177.98163, 51.715617], - [-177.995272, 51.781535], - [-178.086074, 51.808047], - [-178.224129, 51.864881], - [-178.19709, 51.905464] - ] - ], - [ - [ - [-178.889347, 51.570352], - [-178.678149, 51.62601], - [-178.551475, 51.610175], - [-178.584789, 51.56386], - [-178.734585, 51.542326], - [-178.825956, 51.547085], - [-178.889347, 51.570352] - ] - ], - [ - [ - [-178.876843, 51.837917], - [-178.779657, 51.851547], - [-178.733355, 51.783947], - [-178.792409, 51.746071], - [-178.895958, 51.779219], - [-178.876843, 51.837917] - ] - ], - [ - [ - [-179.174265, 51.279057], - [-178.995591, 51.414484], - [-178.926874, 51.38364], - [-178.908883, 51.340582], - [-179.07232, 51.250963], - [-179.126856, 51.219862], - [-179.174265, 51.279057] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "24", - "STATENS": "01714934", - "AFFGEOID": "0400000US24", - "GEOID": "24", - "ISOCODE": "US-MD", - "name": "Maryland", - "LSAD": "00", - "ALAND": 25151992308, - "AWATER": 6979074857 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-76.046213, 38.025533], - [-76.007337, 38.036706], - [-75.980089, 38.004891], - [-75.984648, 37.938121], - [-76.04653, 37.953586], - [-76.046213, 38.025533] - ] - ], - [ - [ - [-79.484372, 39.3443], - [-79.482366, 39.531689], - [-79.476662, 39.721078], - [-79.3924584050224, 39.7214393586401], - [-79.045576, 39.722928], - [-78.9284161298889, 39.7229985874409], - [-78.8082995296216, 39.7230709562769], - [-78.723578, 39.723122], - [-78.380477064564, 39.72270413884], - [-78.3428335185744, 39.7226582929265], - [-78.342593, 39.722658], - [-78.0989706961667, 39.7224661944281], - [-78.075861, 39.722448], - [-77.768644, 39.721538], - [-77.469274, 39.720229], - [-77.4691450036804, 39.72022900225], - [-77.4591384979573, 39.7202291767892], - [-77.23995, 39.720233], - [-77.2170237552374, 39.7202172483854], - [-76.9993180263332, 39.7200676723526], - [-76.991062, 39.720062], - [-76.7870971997576, 39.7210481461113], - [-76.715771, 39.721393], - [-76.5694491257313, 39.7214585707527], - [-76.41898, 39.721526], - [-76.2396837411146, 39.7216419899246], - [-76.233485, 39.721646], - [-76.2332793471166, 39.7216462556279], - [-76.1356974269902, 39.7217675506067], - [-75.788596, 39.722199], - [-75.7669046067092, 39.3776515935512], - [-75.766895, 39.377499], - [-75.7604414164505, 39.2967896211001], - [-75.7564352155685, 39.2466875371253], - [-75.7481548142541, 39.1431317309597], - [-75.7231026933327, 38.8298265565277], - [-75.707555026429, 38.6353853550599], - [-75.707551, 38.635335], - [-75.701777515245, 38.5607669290786], - [-75.700382, 38.542743], - [-75.693721, 38.460128], - [-75.479283, 38.453698], - [-75.3412873203482, 38.4524365259555], - [-75.185455, 38.451012], - [-75.048939, 38.451263], - [-75.085518, 38.32427], - [-75.102947, 38.311525], - [-75.143229, 38.220475], - [-75.177394, 38.130014], - [-75.193796, 38.096013], - [-75.242266, 38.027209], - [-75.624341, 37.994211], - [-75.669711, 37.950796], - [-75.722662, 37.97131], - [-75.783815, 37.972594], - [-75.860727, 37.91831], - [-75.892686, 37.916848], - [-75.898956, 37.974514], - [-75.857507, 38.038778], - [-75.858881, 38.060135], - [-75.86381, 38.100968], - [-75.937089, 38.124209], - [-75.942375, 38.187066], - [-75.864104, 38.200858], - [-75.8754473114647, 38.219709301961], - [-75.888513, 38.241423], - [-75.9237660824283, 38.246285277002], - [-75.9445, 38.249145], - [-76.038935, 38.254932], - [-76.031988, 38.18742], - [-76.011916, 38.122214], - [-76.005904, 38.07717], - [-76.048692, 38.086728], - [-76.095548, 38.125123], - [-76.088639, 38.192649], - [-76.135513, 38.232185], - [-76.217613, 38.305683], - [-76.257667, 38.324855], - [-76.25, 38.362304], - [-76.280551, 38.403143], - [-76.33636, 38.492235], - [-76.277461, 38.541851], - [-76.290043, 38.569158], - [-76.279589, 38.60952], - [-76.231187, 38.61401], - [-76.203065, 38.610741], - [-76.165435, 38.6102], - [-76.1701618745873, 38.6408420471501], - [-76.175159, 38.673236], - [-76.200334, 38.670774], - [-76.238725, 38.712845], - [-76.275015, 38.712714], - [-76.322418, 38.679304], - [-76.347998, 38.686234], - [-76.340543, 38.730338], - [-76.39035, 38.757004], - [-76.379739, 38.788314], - [-76.310081, 38.796846], - [-76.271575, 38.851771], - [-76.219328, 38.812371], - [-76.19109, 38.82966], - [-76.196868759948, 38.8557419634208], - [-76.205063, 38.892726], - [-76.203638, 38.928382], - [-76.250868, 38.92825], - [-76.317947, 38.911312], - [-76.334019, 38.860238], - [-76.376202, 38.850461], - [-76.361727, 38.939175], - [-76.322296, 39.006375], - [-76.301847, 39.039651], - [-76.2650366404087, 39.0285509553488], - [-76.231765, 39.018518], - [-76.233457, 39.091385], - [-76.246481, 39.119588], - [-76.278527, 39.145764], - [-76.243166, 39.213362], - [-76.211253, 39.269812], - [-76.177704, 39.298701], - [-76.159673, 39.335909], - [-76.110527, 39.372257], - [-76.0614988219557, 39.3877481141151], - [-76.040962, 39.394237], - [-76.00688, 39.414527], - [-76.012312, 39.453115], - [-76.0376462883158, 39.4526423823093], - [-76.060931, 39.452208], - [-76.146373, 39.40531], - [-76.224161, 39.35278], - [-76.296609, 39.301137], - [-76.3254183419569, 39.2729050860827], - [-76.349994, 39.248822], - [-76.395509, 39.231702], - [-76.425281, 39.205708], - [-76.463483, 39.205908], - [-76.498384, 39.204808], - [-76.5040085909181, 39.199286249126], - [-76.525785, 39.177908], - [-76.428681, 39.131709], - [-76.42186, 39.081442], - [-76.420394, 39.04207], - [-76.39408, 39.011311], - [-76.448981, 38.982811], - [-76.471281, 38.956512], - [-76.45028, 38.941113], - [-76.46938, 38.907613], - [-76.4739761636555, 38.9026933786299], - [-76.49068, 38.884814], - [-76.516944, 38.851157], - [-76.489878, 38.838715], - [-76.526979, 38.787016], - [-76.558743, 38.756352], - [-76.526655, 38.72443], - [-76.5270925473942, 38.7127503012383], - [-76.528923, 38.663889], - [-76.511278, 38.615745], - [-76.517506, 38.539149], - [-76.492699, 38.482849], - [-76.450937, 38.442422], - [-76.393378, 38.389477], - [-76.387002, 38.361267], - [-76.400194624698, 38.3198719439614], - [-76.402894, 38.311402], - [-76.374481, 38.296348], - [-76.392668, 38.239663], - [-76.353516, 38.178135], - [-76.320136, 38.138339], - [-76.330794, 38.099331], - [-76.322093, 38.036503], - [-76.37179, 38.079565], - [-76.430425, 38.119383], - [-76.481036, 38.115873], - [-76.54038, 38.152991], - [-76.590637, 38.214212], - [-76.673462, 38.234401], - [-76.740055, 38.235227], - [-76.805949, 38.252275], - [-76.8270361292819, 38.2583001006141], - [-76.864292, 38.268945], - [-76.922177, 38.311339], - [-76.975492, 38.347327], - [-77.001638, 38.421952], - [-77.016371, 38.445572], - [-77.075489, 38.42471], - [-77.123325, 38.410646], - [-77.211188, 38.380662], - [-77.259962, 38.435821], - [-77.246584, 38.538341], - [-77.183767, 38.600699], - [-77.129084, 38.614364], - [-77.1302, 38.635017], - [-77.132501, 38.673816], - [-77.0857847651564, 38.7052812818324], - [-77.079499, 38.709515], - [-77.053199, 38.709915], - [-77.040998, 38.737914], - [-77.0406725707781, 38.7466919304829], - [-77.0392398850823, 38.7853363256236], - [-77.039006, 38.791645], - [-76.979497, 38.837812], - [-76.909393, 38.892852], - [-77.002546244247, 38.9655317004459], - [-77.041018, 38.995548], - [-77.119759, 38.934343], - [-77.1197891567342, 38.9343765552932], - [-77.146601, 38.96421], - [-77.202502, 38.96791], - [-77.249803, 38.985909], - [-77.2484037049754, 39.0268883542923], - [-77.248403, 39.026909], - [-77.310705, 39.052008], - [-77.3300377059541, 39.055952113491], - [-77.359702, 39.062004], - [-77.462617, 39.076248], - [-77.481279, 39.105658], - [-77.519929, 39.120925], - [-77.521222, 39.161057], - [-77.485971, 39.185665], - [-77.459883, 39.218682], - [-77.4600656264978, 39.2188429438594], - [-77.496606, 39.251045], - [-77.553114, 39.279268], - [-77.588235, 39.301955], - [-77.66613, 39.317008], - [-77.6776957620787, 39.317940817088], - [-77.719519, 39.321314], - [-77.74593, 39.353221], - [-77.740012, 39.401694], - [-77.798201, 39.475719], - [-77.8109438962622, 39.5007391665665], - [-77.823762, 39.525907], - [-77.829814, 39.587288], - [-77.925988, 39.607642], - [-78.006734, 39.601337], - [-78.0276291001732, 39.6206559623441], - [-78.08226, 39.671166], - [-78.225075, 39.658878], - [-78.313033, 39.631001], - [-78.3327880214991, 39.6285275964988], - [-78.382959, 39.622246], - [-78.438179, 39.563524], - [-78.460951, 39.525987], - [-78.4682695950029, 39.5262242704717], - [-78.590654, 39.530192], - [-78.6550361715467, 39.5443822410837], - [-78.707098, 39.555857], - [-78.73905, 39.609697], - [-78.77114, 39.638387], - [-78.851016, 39.554044], - [-78.942618, 39.479614], - [-78.956751, 39.440264], - [-79.035623, 39.473344], - [-79.0674474080724, 39.4728086991282], - [-79.091329, 39.472407], - [-79.166497, 39.400888], - [-79.2623921171761, 39.3262438284674], - [-79.283723, 39.30964], - [-79.35375, 39.278039], - [-79.424413, 39.228171], - [-79.486873, 39.205961], - [-79.484372, 39.3443] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "55", - "STATENS": "01779806", - "AFFGEOID": "0400000US55", - "GEOID": "55", - "ISOCODE": "US-WI", - "name": "Wisconsin", - "LSAD": "00", - "ALAND": 140292321657, - "AWATER": 29343646672 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-86.934276, 45.421149], - [-86.835749, 45.450188], - [-86.805868, 45.412903], - [-86.867743, 45.353065], - [-86.899891, 45.295185], - [-86.956198, 45.352006], - [-86.934276, 45.421149] - ] - ], - [ - [ - [-90.776921, 47.024324], - [-90.74018, 47.036105], - [-90.650422, 47.054678], - [-90.560936, 47.037013], - [-90.544875, 47.017383], - [-90.511623, 46.961407], - [-90.524056, 46.935664], - [-90.549104, 46.915461], - [-90.637124, 46.906724], - [-90.679446, 46.956032], - [-90.712032, 46.98526], - [-90.767985, 47.002327], - [-90.776921, 47.024324] - ] - ], - [ - [ - [-92.886697124409, 45.644148], - [-92.869689, 45.715142], - [-92.8407421066255, 45.7293967344697], - [-92.826013, 45.73665], - [-92.776496, 45.790014], - [-92.759458, 45.835341], - [-92.721128, 45.883805], - [-92.656125, 45.924442], - [-92.580565, 45.94625], - [-92.545682, 45.970118], - [-92.472761, 45.972952], - [-92.44963, 46.002252], - [-92.392681, 46.01954], - [-92.35176, 46.015685], - [-92.338239, 46.052149], - [-92.294033, 46.074377], - [-92.2938306085787, 46.157321306496], - [-92.293619, 46.244043], - [-92.2927598024283, 46.41721950288], - [-92.292371, 46.495585], - [-92.292192, 46.663242], - [-92.205492, 46.664741], - [-92.183091, 46.695241], - [-92.143338, 46.731596], - [-92.100255, 46.734446], - [-92.050819, 46.710517], - [-92.01529, 46.706469], - [-91.961889, 46.682539], - [-91.886963, 46.690211], - [-91.820027, 46.690176], - [-91.645502, 46.734733], - [-91.574291, 46.757488], - [-91.5513415356564, 46.7574752934595], - [-91.511077, 46.757453], - [-91.411799, 46.78964], - [-91.360804, 46.798136], - [-91.314815, 46.826825], - [-91.256705, 46.836887], - [-91.211647, 46.866824], - [-91.167601, 46.84476], - [-91.130475, 46.870008], - [-91.087357, 46.879471], - [-91.034518, 46.903053], - [-90.984617, 46.925602], - [-90.989375, 46.982274], - [-90.924128, 47.001888], - [-90.85284, 46.962558], - [-90.80628, 46.938738], - [-90.745305, 46.894254], - [-90.798936, 46.823143], - [-90.861046, 46.765631], - [-90.880841, 46.739957], - [-90.852704, 46.699582], - [-90.915152, 46.65841], - [-90.932626, 46.617296], - [-90.95565, 46.592503], - [-90.9252293953426, 46.5874880724456], - [-90.898308, 46.58305], - [-90.829031, 46.616066], - [-90.794775, 46.624941], - [-90.755287, 46.646289], - [-90.73726, 46.692267], - [-90.663273, 46.645326], - [-90.56556, 46.584892], - [-90.5485785559661, 46.5862362587505], - [-90.505909, 46.589614], - [-90.437596, 46.561492], - [-90.418136, 46.566094], - [-90.387228, 46.533663], - [-90.331887, 46.553278], - [-90.285707, 46.518846], - [-90.214866, 46.499947], - [-90.158241, 46.420485], - [-90.120489, 46.336852], - [-89.9291256256648, 46.2999157284081], - [-89.638416, 46.243804], - [-89.09163, 46.138505], - [-88.991217028396, 46.096536354436], - [-88.9327684510096, 46.072107163776], - [-88.811948, 46.021609], - [-88.739994, 46.027308], - [-88.6832322084994, 46.0144656703203], - [-88.679132, 46.013538], - [-88.65776, 45.989287], - [-88.613063, 45.990627], - [-88.59386, 46.015132], - [-88.526673, 46.020822], - [-88.409864, 45.979688], - [-88.380183, 45.991654], - [-88.30952, 45.959369], - [-88.246307, 45.962983], - [-88.178008, 45.947111], - [-88.1168565373761, 45.9228112422627], - [-88.115346, 45.922211], - [-88.073944, 45.875593], - [-88.135067, 45.821694], - [-88.105518, 45.798839], - [-88.057010465949, 45.7849770301437], - [-88.048514, 45.782549], - [-87.995876, 45.795435], - [-87.96697, 45.764021], - [-87.879812, 45.754843], - [-87.8330494680353, 45.7227525753469], - [-87.805076, 45.703556], - [-87.781007, 45.673934], - [-87.824676, 45.653211], - [-87.777671, 45.609204], - [-87.787292, 45.574906], - [-87.804203, 45.524676], - [-87.805773, 45.473139], - [-87.847429, 45.444177], - [-87.85683, 45.393106], - [-87.863489, 45.35302], - [-87.800464, 45.353608], - [-87.750928, 45.355037], - [-87.706767, 45.383827], - [-87.657349, 45.368752], - [-87.667423, 45.31636], - [-87.71148, 45.245224], - [-87.741805, 45.197051], - [-87.695055, 45.150522], - [-87.648191, 45.106368], - [-87.590208, 45.095264], - [-87.625748, 45.045157], - [-87.630298, 44.976865], - [-87.696492, 44.974233], - [-87.7626384909711, 44.9627521717603], - [-87.812989, 44.954013], - [-87.843433, 44.924355], - [-87.838359, 44.873987], - [-87.854681, 44.857771], - [-87.904484, 44.818723], - [-87.941453, 44.75608], - [-87.983494, 44.720196], - [-87.9975734064425, 44.6776639390448], - [-88.002085, 44.664035], - [-87.998716, 44.609288], - [-88.041202, 44.572581], - [-88.005518, 44.539216], - [-87.943801, 44.529693], - [-87.898888, 44.574135], - [-87.866884, 44.608434], - [-87.77516, 44.639281], - [-87.7613076788851, 44.6536977497349], - [-87.748409, 44.667122], - [-87.7375708608663, 44.6770118161559], - [-87.71978, 44.693246], - [-87.720889, 44.724548], - [-87.6463, 44.798739], - [-87.581306, 44.851791], - [-87.530999, 44.857437], - [-87.515142, 44.869596], - [-87.446477, 44.886109], - [-87.393405, 44.934393], - [-87.336457, 45.01353], - [-87.264877, 45.081361], - [-87.238224, 45.167259], - [-87.175068, 45.17305], - [-87.121609, 45.209783], - [-87.108743, 45.257003], - [-87.057627, 45.292838], - [-87.017036, 45.299254], - [-86.97778, 45.290684], - [-86.978759, 45.227333], - [-87.04417, 45.186946], - [-87.045748, 45.134987], - [-87.063157, 45.079316], - [-87.139384, 45.012565], - [-87.188375, 44.948077], - [-87.206285, 44.885928], - [-87.27603, 44.83318], - [-87.318982, 44.771335], - [-87.3754915502194, 44.675512109805], - [-87.401629, 44.631191], - [-87.446963, 44.586274], - [-87.498662, 44.460686], - [-87.5433267854761, 44.3275128561299], - [-87.545382, 44.321385], - [-87.521755, 44.259957], - [-87.507419, 44.210803], - [-87.53994, 44.15969], - [-87.600882, 44.131695], - [-87.655183, 44.081894], - [-87.69892, 43.965936], - [-87.7285795423089, 43.8922088874568], - [-87.736017, 43.873721], - [-87.726407, 43.810445], - [-87.700251, 43.76735], - [-87.708185, 43.722895], - [-87.706204, 43.679542], - [-87.790135, 43.563054], - [-87.7910201400285, 43.543015444928], - [-87.793239, 43.492783], - [-87.840955, 43.420677], - [-87.889207, 43.307652], - [-87.896286, 43.197108], - [-87.8965793111888, 43.1921346325265], - [-87.900485, 43.12591], - [-87.870184, 43.064412], - [-87.895784, 43.015814], - [-87.842681, 42.944116], - [-87.834879, 42.856717], - [-87.8274775244631, 42.8489230088186], - [-87.821162938034, 42.8422735467354], - [-87.766675, 42.784896], - [-87.785074, 42.700819], - [-87.8020150551096, 42.6683110611767], - [-87.814674, 42.64402], - [-87.813273, 42.57922], - [-87.800477, 42.49192], - [-87.8979987705435, 42.4928574593802], - [-88.1993830245505, 42.4957546124404], - [-88.2169, 42.495923], - [-88.304692, 42.4956081727515], - [-88.506912, 42.494883], - [-88.70738, 42.493587], - [-88.7074208350474, 42.4935873247155], - [-88.7765924457953, 42.4941373692957], - [-88.940384860378, 42.4954398274712], - [-88.9925602268173, 42.4958547198992], - [-89.042898, 42.496255], - [-89.3657986076635, 42.5000259669515], - [-89.4014168110406, 42.5004419310737], - [-89.493216, 42.501514], - [-89.8375948863256, 42.5049103527915], - [-89.9264658538311, 42.5057868210378], - [-89.926484, 42.505787], - [-90.22319, 42.507765], - [-90.4263769607361, 42.5071777352237], - [-90.437011, 42.507147], - [-90.642843, 42.508481], - [-90.672727, 42.576599], - [-90.700856, 42.626445], - [-90.743677, 42.64556], - [-90.852497, 42.664822], - [-90.8969620271584, 42.6743180564343], - [-90.941567, 42.683844], - [-91.017239, 42.719566], - [-91.070716, 42.775502], - [-91.09882, 42.864421], - [-91.138, 42.903772], - [-91.155519, 42.975774], - [-91.1590843059475, 42.9874777913228], - [-91.174692, 43.038713], - [-91.1749349139112, 43.0802603718452], - [-91.175253, 43.134665], - [-91.134173, 43.174405], - [-91.087456, 43.221891], - [-91.05791, 43.253968], - [-91.107237, 43.313645], - [-91.154806, 43.334826], - [-91.207367, 43.373659], - [-91.199408, 43.403032], - [-91.2106633577727, 43.4194417829033], - [-91.232276, 43.450952], - [-91.217706, 43.50055], - [-91.232812, 43.564842], - [-91.252926, 43.600363], - [-91.273252, 43.666623], - [-91.2570001560057, 43.7256587372224], - [-91.243955, 43.773046], - [-91.2876556273671, 43.847065], - [-91.291002, 43.852733], - [-91.357426, 43.917231], - [-91.4235686998173, 43.9842968803226], - [-91.440536, 44.001501], - [-91.5592155630397, 44.0242093165812], - [-91.573283, 44.026901], - [-91.647873, 44.064109], - [-91.719097, 44.128853], - [-91.817302, 44.164235], - [-91.8544999752977, 44.1972265195522], - [-91.892698, 44.231105], - [-91.916191, 44.318094], - [-91.9636, 44.362112], - [-92.0845285804928, 44.404614314801], - [-92.111085, 44.413948], - [-92.232472, 44.445434], - [-92.2453646490054, 44.4542511243518], - [-92.291005, 44.485464], - [-92.314071, 44.538014], - [-92.3169331334058, 44.5392760122027], - [-92.361518, 44.558935], - [-92.399281, 44.558292], - [-92.54928, 44.577704], - [-92.618025, 44.61287], - [-92.696491, 44.689436], - [-92.7316238513032, 44.7149227852596], - [-92.7923607996705, 44.7589838136971], - [-92.805287, 44.768361], - [-92.768574, 44.854368], - [-92.7671173343572, 44.8615151858759], - [-92.7670232657519, 44.8619767370977], - [-92.750802, 44.941567], - [-92.761904, 45.022467], - [-92.802911, 45.065403], - [-92.740509, 45.113396], - [-92.743829979395, 45.1236663641246], - [-92.766932, 45.195111], - [-92.7660914086737, 45.2100217024227], - [-92.761868, 45.284938], - [-92.7482676746859, 45.2960593865098], - [-92.698967, 45.336374], - [-92.658486, 45.396058], - [-92.646768, 45.437929], - [-92.686793, 45.472271], - [-92.728023, 45.525652], - [-92.756906, 45.557499], - [-92.801503, 45.562854], - [-92.881136, 45.573409], - [-92.887929, 45.639006], - [-92.886697124409, 45.644148] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "12", - "STATENS": "00294478", - "AFFGEOID": "0400000US12", - "GEOID": "12", - "ISOCODE": "US-FL", - "name": "Florida", - "LSAD": "00", - "ALAND": 138961722096, - "AWATER": 45972570361 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-81.811693, 24.568745], - [-81.751266, 24.653517], - [-81.672338, 24.699514], - [-81.584599, 24.736696], - [-81.571151, 24.756354], - [-81.44351, 24.813364], - [-81.305054, 24.755185], - [-81.243232, 24.673998], - [-81.342192, 24.637774], - [-81.401889, 24.623544], - [-81.443915, 24.642677], - [-81.517404, 24.621239], - [-81.595334, 24.593107], - [-81.685243, 24.558676], - [-81.812536, 24.545469], - [-81.811693, 24.568745] - ] - ], - [ - [ - [-82.01491, 24.543071], - [-81.983908, 24.580682], - [-81.868711, 24.58412], - [-81.918855, 24.498131], - [-82.028091, 24.498716], - [-82.01491, 24.543071] - ] - ], - [ - [ - [-82.188031, 24.574699], - [-82.144099, 24.622481], - [-82.086643, 24.590071], - [-82.100757, 24.533288], - [-82.179454, 24.52947], - [-82.188031, 24.574699] - ] - ], - [ - [ - [-87.592064, 30.95146], - [-87.598937, 30.997422], - [-87.5988289462621, 30.9974221769053], - [-87.519533, 30.997552], - [-87.425791, 30.998058], - [-87.312206, 30.998404], - [-87.163645308459, 30.999021835748], - [-87.162644, 30.999026], - [-86.927851, 30.997678], - [-86.831979, 30.997354], - [-86.7856919760059, 30.9969829935168], - [-86.6882409642461, 30.9962018900015], - [-86.563494, 30.995202], - [-86.3886446620004, 30.9945282152752], - [-86.364974, 30.994437], - [-86.1872480489813, 30.9940667234622], - [-86.0350381049506, 30.9937496073023], - [-85.893632, 30.993455], - [-85.749715, 30.995282], - [-85.5794975763383, 30.9970287484109], - [-85.4980015850895, 30.9978650493614], - [-85.4882982889391, 30.9979646232873], - [-85.333319, 30.999555], - [-85.145959, 31.000693], - [-85.031285, 31.000647], - [-85.002499, 31.000682], - [-85.006062, 30.977039], - [-84.983757, 30.936984], - [-84.935698, 30.878703], - [-84.934283, 30.834033], - [-84.91815, 30.772082], - [-84.864693, 30.711542], - [-84.8634638443825, 30.7114970146544], - [-84.812997, 30.70965], - [-84.474519, 30.692783], - [-84.3807541835525, 30.6888271970459], - [-84.2855145090395, 30.684809171948], - [-84.124993, 30.678037], - [-84.0837530823, 30.675943397968], - [-84.007454, 30.6720699684692], - [-83.820973, 30.662603], - [-83.743729, 30.6585269137505], - [-83.6117040588264, 30.6515600937086], - [-83.499951, 30.645663], - [-83.3577163136281, 30.6371378731342], - [-83.3093471215958, 30.6342387666716], - [-83.1366188582036, 30.6238859448931], - [-83.131431, 30.623575], - [-82.877311, 30.609016], - [-82.6895297984728, 30.5978892906418], - [-82.5840051864195, 30.5916365790876], - [-82.4597924354137, 30.5842765283062], - [-82.459581, 30.584264], - [-82.4189841121785, 30.5809166697315], - [-82.218607, 30.564395], - [-82.229427, 30.520814], - [-82.200965, 30.474427], - [-82.210318, 30.424577], - [-82.180043, 30.36861], - [-82.143306, 30.363378], - [-82.094709, 30.360766], - [-82.0509829816809, 30.3683677759449], - [-82.040766, 30.370144], - [-82.042011, 30.403253], - [-82.028232, 30.447385], - [-82.018381, 30.531176], - [-82.015728, 30.601698], - [-82.049529, 30.655544], - [-82.041834, 30.692374], - [-82.032667, 30.750674], - [-81.994992, 30.786074], - [-81.943187, 30.827437], - [-81.9059784394064, 30.821407341502], - [-81.902354, 30.82082], - [-81.868624, 30.792756], - [-81.808543, 30.790016], - [-81.763384, 30.773821], - [-81.732238, 30.749635], - [-81.668283, 30.744644], - [-81.633273, 30.729603], - [-81.56171, 30.715597], - [-81.528281, 30.723359], - [-81.507218, 30.722936], - [-81.444124, 30.709714], - [-81.42742, 30.69802], - [-81.443099, 30.600938], - [-81.434064, 30.522569], - [-81.4289547376433, 30.5061830741652], - [-81.42601, 30.496739], - [-81.410809, 30.482039], - [-81.396407, 30.34004], - [-81.3743761280233, 30.252931], - [-81.288955, 29.91518], - [-81.270442, 29.883106], - [-81.2619334605748, 29.8221234866761], - [-81.256711, 29.784693], - [-81.2104095965538, 29.6706408057043], - [-81.163581, 29.55529], - [-81.1029673517454, 29.426996650452], - [-81.046678, 29.307856], - [-80.966176, 29.14796], - [-80.907275, 29.064262], - [-80.787021, 28.875266], - [-80.7275056700737, 28.7911928713227], - [-80.647288, 28.677875], - [-80.583884, 28.597705], - [-80.525094, 28.459454], - [-80.587813, 28.410856], - [-80.606874, 28.336484], - [-80.604214, 28.257733], - [-80.589975, 28.17799], - [-80.547675, 28.048795], - [-80.4476769492176, 27.860513513361], - [-80.383695, 27.740045], - [-80.330956, 27.597541], - [-80.3166866116204, 27.5573400246076], - [-80.253665, 27.37979], - [-80.1980213526587, 27.2630088036725], - [-80.153375, 27.169308], - [-80.138605, 27.111517], - [-80.116772, 27.072397], - [-80.0830776297553, 26.970534], - [-80.046263, 26.859238], - [-80.0375222775318, 26.8050322949699], - [-80.033785231012, 26.7818569519624], - [-80.03212, 26.77153], - [-80.035763, 26.676043], - [-80.0355674560264, 26.6449040887889], - [-80.035363, 26.612346], - [-80.038863, 26.569347], - [-80.050363, 26.509549], - [-80.061607857332, 26.4264024766503], - [-80.0758744394432, 26.3209127698802], - [-80.085565, 26.249259], - [-80.1086585055892, 26.0932938862554], - [-80.109566, 26.087165], - [-80.1129782512854, 26.017023960834], - [-80.1150067836063, 25.9753261627924], - [-80.1151289238901, 25.9728154900106], - [-80.117904, 25.915772], - [-80.1145142441078, 25.8741996346921], - [-80.1143854517086, 25.8726201095467], - [-80.109953, 25.81826], - [-80.123806, 25.762767], - [-80.154972, 25.66549], - [-80.176916, 25.685062], - [-80.229107, 25.732509], - [-80.265879, 25.658373], - [-80.301464, 25.613299], - [-80.313918, 25.539164], - [-80.3159759814327, 25.5326208272661], - [-80.337049, 25.465621], - [-80.31036, 25.389707], - [-80.234849, 25.42196], - [-80.176024, 25.521154], - [-80.163156, 25.452184], - [-80.2293537849126, 25.3421186263507], - [-80.238555, 25.32682], - [-80.358183, 25.153228], - [-80.496761, 24.999324], - [-80.651189, 24.866131], - [-80.966245, 24.707852], - [-81.103373, 24.669463], - [-81.148718, 24.710477], - [-81.038908, 24.772596], - [-80.847471, 24.851753], - [-80.610869, 25.006995], - [-80.516571, 25.095457], - [-80.500513, 25.156674], - [-80.495394, 25.199808], - [-80.542391, 25.206379], - [-80.650532, 25.189097], - [-80.710607, 25.15253], - [-80.747746, 25.147441], - [-80.812133, 25.186039], - [-80.8581700400306, 25.1775203265261], - [-80.87546, 25.174321], - [-80.915924, 25.141301], - [-81.009598, 25.125403], - [-81.079859, 25.118797], - [-81.142278, 25.183], - [-81.170907, 25.245857], - [-81.148103, 25.332793], - [-81.146765, 25.407577], - [-81.208201, 25.504937], - [-81.240519, 25.599041], - [-81.289901, 25.673554], - [-81.355986, 25.703526], - [-81.38381, 25.776751], - [-81.4423076374621, 25.8033302508746], - [-81.472239, 25.81693], - [-81.614735, 25.893977], - [-81.6402369580568, 25.8775375792851], - [-81.672633, 25.856654], - [-81.727086, 25.907207], - [-81.757463, 26.000374], - [-81.808833, 26.152246], - [-81.844555, 26.327712], - [-81.8464852479618, 26.3303720485028], - [-81.923611, 26.436658], - [-81.956611, 26.452358], - [-82.013913, 26.452058], - [-82.075015, 26.422059], - [-82.126671, 26.436279], - [-82.180717, 26.476257], - [-82.245395, 26.601094], - [-82.264351, 26.698496], - [-82.264682, 26.756836], - [-82.2805412776288, 26.7893085864431], - [-82.314277, 26.858384], - [-82.3692013921691, 26.9460810256335], - [-82.452673, 27.079359], - [-82.5165854231874, 27.2078263040441], - [-82.539719, 27.254326], - [-82.610581, 27.348817], - [-82.6481706168595, 27.38972], - [-82.691821, 27.437218], - [-82.743017, 27.531086], - [-82.719852, 27.528933], - [-82.65072, 27.523115], - [-82.584629, 27.596021], - [-82.5528872070636, 27.6454475963655], - [-82.514265, 27.705588], - [-82.477638, 27.723004], - [-82.43198, 27.768092], - [-82.448786, 27.810036], - [-82.4734467487892, 27.8175856255273], - [-82.489849, 27.822607], - [-82.553946, 27.848462], - [-82.5663805212513, 27.8363382177134], - [-82.586519, 27.816703], - [-82.622723, 27.779868], - [-82.62502, 27.732706], - [-82.652521, 27.700307], - [-82.705017, 27.62531], - [-82.733076, 27.612972], - [-82.738467, 27.678504], - [-82.746223, 27.731306], - [-82.790224, 27.791603], - [-82.846526, 27.854301], - [-82.840882, 27.937162], - [-82.8283313947752, 28.0190315348922], - [-82.828163, 28.02013], - [-82.850881, 28.102451], - [-82.8593849560329, 28.1721750746045], - [-82.859624, 28.174135], - [-82.764103, 28.244345], - [-82.73146, 28.325075], - [-82.697433, 28.420166], - [-82.6908136882946, 28.4333048573934], - [-82.665055, 28.484434], - [-82.656694, 28.544814], - [-82.668149, 28.622411], - [-82.6687096341287, 28.6940772618211], - [-82.668722, 28.695658], - [-82.712373, 28.720921], - [-82.713121, 28.800283], - [-82.730245, 28.850155], - [-82.688864, 28.905609], - [-82.723861, 28.953506], - [-82.7555738086957, 29.0009301182604], - [-82.759378, 29.006619], - [-82.759704, 29.054192], - [-82.823659, 29.098902], - [-82.798876, 29.114504], - [-82.827073, 29.158425], - [-82.927107, 29.168907], - [-82.996144, 29.178074], - [-83.016248, 29.125371], - [-83.053207, 29.130839], - [-83.078986, 29.196944], - [-83.074734, 29.247975], - [-83.107477, 29.268889], - [-83.1655541262812, 29.288964743454], - [-83.169576, 29.290355], - [-83.175518, 29.34469], - [-83.202446, 29.394422], - [-83.240509, 29.433178], - [-83.294747, 29.437923], - [-83.307828, 29.468861], - [-83.401552, 29.523291], - [-83.405068, 29.59557], - [-83.4141422518799, 29.6661877064703], - [-83.414701, 29.670536], - [-83.483567, 29.698542], - [-83.537645, 29.72306], - [-83.583045, 29.787307], - [-83.625026, 29.856892], - [-83.679219, 29.918513], - [-83.788729, 29.976982], - [-83.93151, 30.039068], - [-83.992310340478, 30.0892687377287], - [-84.000716, 30.096209], - [-84.06299, 30.101378], - [-84.0761320719114, 30.0990898837301], - [-84.124889, 30.090601], - [-84.179149, 30.073187], - [-84.20801, 30.084776], - [-84.289727, 30.057197], - [-84.366115, 30.008662], - [-84.3454463222869, 29.9697520164336], - [-84.341439, 29.962208], - [-84.333746, 29.923721], - [-84.349066, 29.896812], - [-84.423834, 29.902996], - [-84.470323, 29.924524], - [-84.535873, 29.910092], - [-84.57744, 29.887828], - [-84.564976, 29.81018], - [-84.604003, 29.786021], - [-84.692619, 29.763039], - [-84.776954, 29.692191], - [-84.876731, 29.655758], - [-85.045074, 29.586991], - [-85.15731, 29.64289], - [-85.2201422739545, 29.666453713282], - [-85.259719, 29.681296], - [-85.352615, 29.659787], - [-85.40283, 29.758782], - [-85.416548, 29.842628], - [-85.38473, 29.920949], - [-85.3891608928388, 29.924059309219], - [-85.425956, 29.949888], - [-85.487764, 29.961227], - [-85.571907, 30.02644], - [-85.601178, 30.056342], - [-85.69681, 30.09689], - [-85.811219, 30.17832], - [-85.9959431575134, 30.2688232673284], - [-85.999937, 30.27078], - [-86.089963, 30.303569], - [-86.222561, 30.343585], - [-86.3973810669074, 30.3774955636999], - [-86.412076, 30.380346], - [-86.632953, 30.396299], - [-86.7995592762003, 30.3845638782264], - [-86.850625, 30.380967], - [-86.9188732979657, 30.3690493508797], - [-87.155392, 30.327748], - [-87.2288564841704, 30.3197321482474], - [-87.267827, 30.31548], - [-87.319518, 30.317814], - [-87.419859, 30.297128], - [-87.518324, 30.280435], - [-87.452282, 30.344097], - [-87.431784, 30.403193], - [-87.366601, 30.436643], - [-87.414685, 30.457289], - [-87.444722, 30.507484], - [-87.43145, 30.550252], - [-87.401189, 30.604383], - [-87.400189, 30.657201], - [-87.442291, 30.692661], - [-87.523621, 30.738285], - [-87.542268, 30.767481], - [-87.634943, 30.865857], - [-87.592064, 30.95146] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "13", - "STATENS": "01705317", - "AFFGEOID": "0400000US13", - "GEOID": "13", - "ISOCODE": "US-GA", - "name": "Georgia", - "LSAD": "00", - "ALAND": 149486624386, - "AWATER": 4418360134 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-85.605165, 34.984678], - [-85.4743388431343, 34.9836733267911], - [-85.384967, 34.982987], - [-85.3639190289311, 34.9833765631405], - [-85.277556, 34.984975], - [-85.2650550217158, 34.9850776447417], - [-85.045183, 34.986883], - [-84.9798540252315, 34.9872056139756], - [-84.9769738065923, 34.9872198373549], - [-84.861314, 34.987791], - [-84.8104774668864, 34.9878779552292], - [-84.7758376712973, 34.9879372061493], - [-84.727434, 34.98802], - [-84.621483, 34.988329], - [-84.509052, 34.988033], - [-84.321869, 34.988408], - [-84.1294469626359, 34.9879469539553], - [-84.0053367334383, 34.9876495840123], - [-83.936646, 34.987485], - [-83.936427344252, 34.9874843833797], - [-83.619985, 34.986592], - [-83.5491807535047, 34.988803195914], - [-83.4828732042907, 34.9908739612868], - [-83.322768, 34.995874], - [-83.108606, 35.000659], - [-83.124378, 34.95524], - [-83.140621, 34.924915], - [-83.201183, 34.884653], - [-83.252582, 34.853483], - [-83.284812, 34.823043], - [-83.323866, 34.789712], - [-83.320062, 34.759616], - [-83.353238, 34.728648], - [-83.3496085109133, 34.7170105826273], - [-83.3400391067846, 34.6863277104121], - [-83.33869, 34.682002], - [-83.27796, 34.644853], - [-83.221402, 34.609947], - [-83.154577, 34.588198], - [-83.1028738260357, 34.5374309097654], - [-83.096858, 34.531524], - [-83.0505729641024, 34.4950536521691], - [-83.048289, 34.493254], - [-82.99509, 34.472483], - [-82.9913881531823, 34.4729806272358], - [-82.925766, 34.481802], - [-82.873831, 34.471508], - [-82.841997, 34.399766], - [-82.82342, 34.358872], - [-82.780308, 34.296701], - [-82.7746287310121, 34.2883668182547], - [-82.744982, 34.244861], - [-82.7359800166139, 34.215462648637], - [-82.715373, 34.148165], - [-82.642797, 34.081312], - [-82.5950257926073, 34.0135178092096], - [-82.591855, 34.009018], - [-82.5629967985809, 33.9565549105269], - [-82.556835, 33.945353], - [-82.51295, 33.936969], - [-82.43115, 33.867051], - [-82.32448, 33.820033], - [-82.239098, 33.730872], - [-82.2159383647475, 33.6877549753187], - [-82.199747, 33.657611], - [-82.161908, 33.610643], - [-82.1424564745009, 33.6053995999921], - [-82.1146538385848, 33.59790505457], - [-82.10624, 33.595637], - [-82.028238, 33.544934], - [-82.016581923059, 33.5290907977257], - [-81.990938, 33.494235], - [-81.926336, 33.462937], - [-81.920121, 33.410753], - [-81.932737, 33.343541], - [-81.846136, 33.303843], - [-81.8465005323579, 33.2472520854299], - [-81.846536, 33.241746], - [-81.763535, 33.203648], - [-81.7625059827958, 33.1972658882973], - [-81.755135, 33.15155], - [-81.658433, 33.103152], - [-81.6159557107891, 33.089338539364], - [-81.601655, 33.084688], - [-81.5439662243139, 33.0443999541444], - [-81.50203, 33.015113], - [-81.499566, 32.943722], - [-81.464069, 32.897814], - [-81.42062, 32.831223], - [-81.4131167951736, 32.7442613279615], - [-81.41267, 32.739083], - [-81.393818, 32.653491], - [-81.397106, 32.605587], - [-81.3869019026942, 32.5989648538998], - [-81.328753, 32.561228], - [-81.2842383817656, 32.547110946285], - [-81.274927, 32.544158], - [-81.194829, 32.465086], - [-81.194931, 32.411489], - [-81.1734737944861, 32.3849027808867], - [-81.133032, 32.334794], - [-81.128034, 32.276297], - [-81.153531, 32.237687], - [-81.1475951704554, 32.2271694465971], - [-81.119361, 32.177142], - [-81.113334, 32.113205], - [-81.038265, 32.084469], - [-81.006745, 32.101152], - [-80.943226, 32.057824], - [-80.885517, 32.0346], - [-80.84313, 32.024226], - [-80.848441, 31.988279], - [-80.911207, 31.943769], - [-80.941359, 31.912984], - [-81.000317, 31.856744], - [-81.036873, 31.812721], - [-81.077057, 31.761256], - [-81.130634, 31.722692], - [-81.1352985902005, 31.7105645979661], - [-81.139394, 31.699917], - [-81.133493, 31.623348], - [-81.173079, 31.555908], - [-81.1748326365906, 31.5395964494948], - [-81.177254, 31.517074], - [-81.213493, 31.462818], - [-81.258616, 31.404425], - [-81.279338, 31.351127], - [-81.260958, 31.30391], - [-81.2643779480884, 31.2945990647455], - [-81.282842, 31.24433], - [-81.304957, 31.206173], - [-81.368241, 31.136534], - [-81.402096, 31.125383], - [-81.401267, 31.072781], - [-81.420474, 31.016703], - [-81.4125180355795, 30.9908345035084], - [-81.408484, 30.977718], - [-81.405153, 30.908203], - [-81.44013, 30.821369], - [-81.460061, 30.769912], - [-81.444124, 30.709714], - [-81.507218, 30.722936], - [-81.528281, 30.723359], - [-81.56171, 30.715597], - [-81.633273, 30.729603], - [-81.668283, 30.744644], - [-81.732238, 30.749635], - [-81.763384, 30.773821], - [-81.808543, 30.790016], - [-81.868624, 30.792756], - [-81.902354, 30.82082], - [-81.9059784394064, 30.821407341502], - [-81.943187, 30.827437], - [-81.994992, 30.786074], - [-82.032667, 30.750674], - [-82.041834, 30.692374], - [-82.049529, 30.655544], - [-82.015728, 30.601698], - [-82.018381, 30.531176], - [-82.028232, 30.447385], - [-82.042011, 30.403253], - [-82.040766, 30.370144], - [-82.0509829816809, 30.3683677759449], - [-82.094709, 30.360766], - [-82.143306, 30.363378], - [-82.180043, 30.36861], - [-82.210318, 30.424577], - [-82.200965, 30.474427], - [-82.229427, 30.520814], - [-82.218607, 30.564395], - [-82.4189841121785, 30.5809166697315], - [-82.459581, 30.584264], - [-82.4597924354137, 30.5842765283062], - [-82.5840051864195, 30.5916365790876], - [-82.6895297984728, 30.5978892906418], - [-82.877311, 30.609016], - [-83.131431, 30.623575], - [-83.1366188582036, 30.6238859448931], - [-83.3093471215958, 30.6342387666716], - [-83.3577163136281, 30.6371378731342], - [-83.499951, 30.645663], - [-83.6117040588264, 30.6515600937086], - [-83.743729, 30.6585269137505], - [-83.820973, 30.662603], - [-84.007454, 30.6720699684692], - [-84.0837530823, 30.675943397968], - [-84.124993, 30.678037], - [-84.2855145090395, 30.684809171948], - [-84.3807541835525, 30.6888271970459], - [-84.474519, 30.692783], - [-84.812997, 30.70965], - [-84.8634638443825, 30.7114970146544], - [-84.864693, 30.711542], - [-84.91815, 30.772082], - [-84.934283, 30.834033], - [-84.935698, 30.878703], - [-84.983757, 30.936984], - [-85.006062, 30.977039], - [-85.002499, 31.000682], - [-85.011392, 31.053546], - [-85.0211075623628, 31.0754638723064], - [-85.035615, 31.108192], - [-85.107516, 31.186451], - [-85.108192, 31.258591], - [-85.089774, 31.295026], - [-85.0888299635305, 31.3086477554966], - [-85.087929, 31.321648], - [-85.092487, 31.362881], - [-85.066005, 31.431363], - [-85.071621, 31.468384], - [-85.0516814295062, 31.5195403291417], - [-85.041881, 31.544684], - [-85.05796, 31.57084], - [-85.058169, 31.620227], - [-85.12553, 31.694965], - [-85.11893, 31.732664], - [-85.1254405773425, 31.7629687034183], - [-85.1291593155832, 31.7802782680766], - [-85.141831, 31.839261], - [-85.114031, 31.89336], - [-85.067829, 31.967358], - [-85.0635905429847, 31.991857], - [-85.0514111279128, 32.062256083622], - [-85.047063, 32.087389], - [-85.058749, 32.136018], - [-84.997765, 32.185445], - [-84.930127, 32.219051], - [-84.9199421479259, 32.2308482009333], - [-84.891841, 32.263398], - [-84.955704, 32.30591], - [-85.008096, 32.336677], - [-84.983466, 32.363186], - [-84.9811502941337, 32.3790400766818], - [-84.971831, 32.442843], - [-84.9997867563101, 32.5070669687837], - [-85.0011308391237, 32.5101547883978], - [-85.0071, 32.523868], - [-85.069848, 32.583146], - [-85.0760723726048, 32.6080674751571], - [-85.088533, 32.657958], - [-85.11425, 32.730447], - [-85.1245332227506, 32.7516296067514], - [-85.160963, 32.826672], - [-85.1844, 32.861317], - [-85.1861174017892, 32.8701382699716], - [-85.232441, 33.108075], - [-85.2365953712528, 33.1295440282507], - [-85.2943468643453, 33.4279931463646], - [-85.3049438332249, 33.4827563368455], - [-85.314048, 33.529805], - [-85.3381162999059, 33.6531143916014], - [-85.360532, 33.767957], - [-85.3866705737728, 33.9017014940033], - [-85.398871, 33.964128], - [-85.4210731752288, 34.0808126526072], - [-85.429499, 34.125095], - [-85.4631408247758, 34.2861909885055], - [-85.4751472811043, 34.3436846578762], - [-85.502471, 34.474526], - [-85.5130442292733, 34.5239464713237], - [-85.526894818161, 34.5886856927335], - [-85.5344052578154, 34.6237903384358], - [-85.561424, 34.750079], - [-85.5828123337853, 34.8604354744776], - [-85.595165, 34.924171], - [-85.605165, 34.984678] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "47", - "STATENS": "01325873", - "AFFGEOID": "0400000US47", - "GEOID": "47", - "ISOCODE": "US-TN", - "name": "Tennessee", - "LSAD": "00", - "ALAND": 106791957894, - "AWATER": 2322601737 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-90.300697, 35.028793], - [-90.265296, 35.040293], - [-90.197146, 35.050731], - [-90.181387, 35.091401], - [-90.160058, 35.12883], - [-90.09061, 35.118287], - [-90.099777, 35.164474], - [-90.093285, 35.203282], - [-90.097947, 35.249983], - [-90.166594, 35.274588], - [-90.121864, 35.304535], - [-90.087903, 35.36327], - [-90.112504, 35.410153], - [-90.070549, 35.423291], - [-90.045306, 35.415435], - [-90.022064, 35.457375], - [-90.045805, 35.496533], - [-90.037615, 35.550329], - [-89.958498, 35.541703], - [-89.944754, 35.560308], - [-89.9325, 35.607865], - [-89.876548, 35.626653], - [-89.898916, 35.650904], - [-89.956589, 35.695486], - [-89.915491, 35.754917], - [-89.863874, 35.747592], - [-89.797053, 35.782648], - [-89.723426, 35.809382], - [-89.729517, 35.847632], - [-89.722634, 35.873718], - [-89.64727, 35.89492], - [-89.6491186188564, 35.9047155762998], - [-89.652279, 35.921462], - [-89.686924, 35.947716], - [-89.733095, 36.000608], - [-89.692437, 36.020507], - [-89.680029, 36.082494], - [-89.64302, 36.10362], - [-89.592102, 36.135637], - [-89.623804, 36.183128], - [-89.6276414416754, 36.185460316606], - [-89.69263, 36.224959], - [-89.678046, 36.248284], - [-89.602374, 36.238106], - [-89.554289, 36.277751], - [-89.611819, 36.309088], - [-89.600544, 36.342985], - [-89.5450313339691, 36.344271398663], - [-89.522695, 36.344789], - [-89.51038, 36.378356], - [-89.542337, 36.420103], - [-89.521021, 36.461934], - [-89.539232, 36.497934], - [-89.417293, 36.499033], - [-89.3451943195388, 36.5013432086369], - [-89.211409, 36.50563], - [-88.964471, 36.502191], - [-88.8345890228743, 36.5019803422593], - [-88.8271780363405, 36.5019683222569], - [-88.8167641573481, 36.5019514318132], - [-88.5163580599794, 36.5014641981633], - [-88.51192, 36.501457], - [-88.4890767387132, 36.5012837190757], - [-88.127378, 36.49854], - [-88.0533508007759, 36.4999962506816], - [-88.050466, 36.500053], - [-88.033802, 36.551733], - [-88.055738, 36.630475], - [-88.070532, 36.678118], - [-88.011792, 36.677025], - [-87.849567, 36.663701], - [-87.853204, 36.633247], - [-87.6941859078643, 36.6368382439437], - [-87.64115, 36.638036], - [-87.347796, 36.64144], - [-87.3359790500808, 36.6415771604931], - [-87.1150035566884, 36.6441420446512], - [-87.0608263443929, 36.6447708848516], - [-86.813037, 36.647647], - [-86.7632909641085, 36.6487206745018], - [-86.606394, 36.652107], - [-86.5620676518653, 36.6407466739073], - [-86.551292, 36.637985], - [-86.507771, 36.652445], - [-86.4114961989664, 36.6482404228482], - [-86.205565269856, 36.6392468703288], - [-86.081944, 36.633848], - [-85.975713174144, 36.6286377186817], - [-85.873857, 36.623642], - [-85.7885565436139, 36.6217118590347], - [-85.731862, 36.620429], - [-85.488353, 36.614994], - [-85.4364042728859, 36.618003845027], - [-85.2958124857275, 36.6261495593675], - [-85.290627, 36.62645], - [-85.2762879474994, 36.6261575408034], - [-85.096128, 36.622483], - [-84.9748684358374, 36.6145833593172], - [-84.943948, 36.612569], - [-84.7853999785503, 36.6033754199356], - [-84.785341, 36.603372], - [-84.7784558643505, 36.6032105122159], - [-84.499938, 36.596678], - [-84.2613212015047, 36.592741697267], - [-84.227332, 36.592181], - [-84.2271939619983, 36.5921795123551], - [-83.987842, 36.5896], - [-83.9876109506828, 36.5895922860725], - [-83.9307607839439, 36.5876942581124], - [-83.894421, 36.586481], - [-83.690714, 36.582581], - [-83.675413, 36.600814], - [-83.4720935738096, 36.5994757320593], - [-83.2763, 36.598187], - [-82.9844584955724, 36.59528996905], - [-82.830433, 36.593761], - [-82.609181949399, 36.5950896860685], - [-82.487238, 36.595822], - [-82.2941364201291, 36.5950730329585], - [-82.2433850052002, 36.5948761876654], - [-82.173982, 36.594607], - [-82.1455732705145, 36.5945603308341], - [-81.934144, 36.594213], - [-81.922644, 36.616213], - [-81.8267341480526, 36.6147191041614], - [-81.6469, 36.611918], - [-81.677535, 36.588117], - [-81.699962, 36.536829], - [-81.695311, 36.467912], - [-81.734312, 36.413342], - [-81.7253728028917, 36.3897385587113], - [-81.705966, 36.338496], - [-81.768977, 36.341042], - [-81.833202, 36.347339], - [-81.908137, 36.302013], - [-81.9184444729048, 36.2873579173821], - [-81.9343692444926, 36.2647162043798], - [-81.960101, 36.228131], - [-82.02874, 36.124322], - [-82.080143, 36.10572], - [-82.0811489171324, 36.1056921143326], - [-82.127146, 36.104417], - [-82.140847, 36.136216], - [-82.211251, 36.159012], - [-82.2202530102866, 36.1538200398431], - [-82.26569, 36.127614], - [-82.297655, 36.13351], - [-82.346857, 36.115209], - [-82.409458, 36.083409], - [-82.4169375946732, 36.0729700107085], - [-82.464558, 36.006508], - [-82.5080076597225, 35.9820132054415], - [-82.557874, 35.953901], - [-82.610885, 35.974442], - [-82.595525, 36.026012], - [-82.6057036107936, 36.0371988635619], - [-82.628365, 36.062105], - [-82.725065, 36.018204], - [-82.779397, 35.992511], - [-82.787465, 35.952163], - [-82.81613, 35.923986], - [-82.860724, 35.94743], - [-82.8937514184314, 35.9338572697089], - [-82.910608, 35.92693], - [-82.899718, 35.874602], - [-82.937437, 35.82732], - [-82.9666497428986, 35.795445979574], - [-82.978414, 35.78261], - [-83.04853, 35.787706], - [-83.097193, 35.776067], - [-83.161537, 35.763363], - [-83.198267, 35.725494], - [-83.255351, 35.71623], - [-83.2561415523036, 35.7151240626578], - [-83.26474416829, 35.7030894961701], - [-83.297154, 35.65775], - [-83.347262, 35.660474], - [-83.421576, 35.611186], - [-83.452431, 35.602918], - [-83.498335, 35.562981], - [-83.587827, 35.566963], - [-83.653159, 35.568309], - [-83.6629119015893, 35.5677997932083], - [-83.771736, 35.562118], - [-83.848502, 35.519259], - [-83.916801, 35.473612], - [-83.9532313801504, 35.4600208895767], - [-83.9589178345639, 35.4578994395799], - [-83.973171, 35.452582], - [-84.021782, 35.407418], - [-84.007586, 35.371661], - [-84.038081, 35.348363], - [-84.02351, 35.295783], - [-84.0291044137725, 35.2921237764939], - [-84.097508, 35.247382], - [-84.178516, 35.240679], - [-84.223718, 35.269078], - [-84.28322, 35.226577], - [-84.2865983787409, 35.2057582184959], - [-84.321869, 34.988408], - [-84.509052, 34.988033], - [-84.621483, 34.988329], - [-84.727434, 34.98802], - [-84.7758376712973, 34.9879372061493], - [-84.8104774668864, 34.9878779552292], - [-84.861314, 34.987791], - [-84.9769738065923, 34.9872198373549], - [-84.9798540252315, 34.9872056139756], - [-85.045183, 34.986883], - [-85.2650550217158, 34.9850776447417], - [-85.277556, 34.984975], - [-85.3639190289311, 34.9833765631405], - [-85.384967, 34.982987], - [-85.4743388431343, 34.9836733267911], - [-85.605165, 34.984678], - [-85.8639461118069, 34.9870308587481], - [-86.311274, 34.991098], - [-86.3187607654651, 34.9910785804428], - [-86.467798, 34.990692], - [-86.783628017169, 34.991924921992], - [-86.783648, 34.991925], - [-86.8362863159495, 34.992803004217], - [-87.2107585799823, 34.9990491809997], - [-87.216683, 34.999148], - [-87.2240536418757, 34.9992307419721], - [-87.6060978676533, 35.0035195262043], - [-87.625025, 35.003732], - [-87.851886, 35.005656], - [-87.9849160436989, 35.0059101243258], - [-88.000032, 35.005939], - [-88.202959, 35.008028], - [-88.200064, 34.995634], - [-88.258111, 34.995463], - [-88.3635302685392, 34.9957467517971], - [-88.3804925115221, 34.9957924082221], - [-88.469877, 34.996033], - [-88.786612, 34.995252], - [-88.823050501632, 34.995207045695], - [-89.0171270115524, 34.9949676128363], - [-89.02654, 34.994956], - [-89.198287901495, 34.9944505301151], - [-89.3526793918484, 34.9939961417459], - [-89.434954, 34.993754], - [-89.644051831619, 34.9940668634279], - [-89.7243158379686, 34.9941869587535], - [-89.7596126422344, 34.9942397717315], - [-89.795187, 34.994293], - [-90.309297, 34.995694], - [-90.300697, 35.028793] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "27", - "STATENS": "00662849", - "AFFGEOID": "0400000US27", - "GEOID": "27", - "ISOCODE": "US-MN", - "name": "Minnesota", - "LSAD": "00", - "ALAND": 206232627084, - "AWATER": 18949394733 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-97.229039, 49.000687], - [-96.93096, 48.999984], - [-96.405411, 48.999984], - [-95.97539, 48.999984], - [-95.340962, 48.99874], - [-95.3198870199139, 48.9987583455455], - [-95.153711, 48.998903], - [-95.153309, 49.18488], - [-95.15333, 49.309287], - [-95.153314, 49.384358], - [-95.058404, 49.35317], - [-94.988908, 49.368897], - [-94.952111, 49.368679], - [-94.878454, 49.333193], - [-94.816222, 49.320987], - [-94.797244, 49.214284], - [-94.774228, 49.124994], - [-94.750221, 49.099763], - [-94.718932, 48.999991], - [-94.683069, 48.883929], - [-94.685681, 48.840119], - [-94.694312, 48.789352], - [-94.61901, 48.737374], - [-94.508862, 48.700362], - [-94.446604, 48.6929], - [-94.4302012792341, 48.6983087855285], - [-94.388848, 48.711945], - [-94.281797, 48.705255], - [-94.251169, 48.683514], - [-94.250191, 48.656323], - [-94.091244, 48.643669], - [-93.927004, 48.63122], - [-93.844008, 48.629395], - [-93.80527, 48.570299], - [-93.815178, 48.526508], - [-93.674568, 48.516297], - [-93.562062, 48.528897], - [-93.467504, 48.545664], - [-93.464308, 48.591792], - [-93.371156, 48.605085], - [-93.347528, 48.62662], - [-93.207398, 48.642474], - [-93.14242, 48.624924], - [-93.088548716516, 48.6268109196626], - [-92.954876, 48.631493], - [-92.894687, 48.594915], - [-92.728046, 48.53929], - [-92.634931, 48.542873], - [-92.631117, 48.508252], - [-92.657101, 48.466915], - [-92.575636, 48.440827], - [-92.51491, 48.448313], - [-92.456325, 48.414204], - [-92.469948, 48.351836], - [-92.416285, 48.295463], - [-92.369174, 48.220268], - [-92.314665, 48.240527], - [-92.295668, 48.278118], - [-92.295412, 48.323957], - [-92.26228, 48.354933], - [-92.162161, 48.363279], - [-92.055228, 48.359213], - [-92.000133, 48.321355], - [-91.980772, 48.247801], - [-91.89347, 48.237699], - [-91.7973140618676, 48.2057860320392], - [-91.781182, 48.200432], - [-91.714931, 48.19913], - [-91.692366, 48.11933], - [-91.559272, 48.108268], - [-91.542512, 48.053268], - [-91.465499, 48.06677], - [-91.336578, 48.069627], - [-91.250112, 48.084087], - [-91.156107, 48.140475], - [-91.03555, 48.189459], - [-91.0326551809553, 48.1905357779605], - [-90.906829, 48.237339], - [-90.843624, 48.243576], - [-90.804207, 48.177833], - [-90.775962, 48.122229], - [-90.703702, 48.096009], - [-90.566113, 48.12262], - [-90.471019, 48.106076], - [-90.31723, 48.103793], - [-90.136191, 48.112136], - [-90.029626, 48.087588], - [-89.973433, 48.02035], - [-89.868153, 47.989898], - [-89.749314, 48.023325], - [-89.625087, 48.011517], - [-89.489226, 48.014528], - [-89.555015, 47.974849], - [-89.660616, 47.951216], - [-89.737539, 47.918183], - [-89.793539, 47.891358], - [-89.923649, 47.862062], - [-89.974296, 47.830514], - [-90.072025, 47.811105], - [-90.187636, 47.77813], - [-90.323446, 47.753771], - [-90.42139, 47.73515], - [-90.537105, 47.703055], - [-90.647837, 47.656176], - [-90.735927, 47.624343], - [-90.86827, 47.5569], - [-91.023124, 47.464964], - [-91.146958, 47.381464], - [-91.262512, 47.27929], - [-91.387021, 47.187293], - [-91.456965, 47.139156], - [-91.573817, 47.089917], - [-91.644564, 47.026491], - [-91.737098, 46.982853], - [-91.7943601058784, 46.9425241508697], - [-91.806851, 46.933727], - [-91.906483, 46.891236], - [-92.013405, 46.833727], - [-92.062088, 46.804038], - [-92.01529, 46.706469], - [-92.050819, 46.710517], - [-92.100255, 46.734446], - [-92.143338, 46.731596], - [-92.183091, 46.695241], - [-92.205492, 46.664741], - [-92.292192, 46.663242], - [-92.292371, 46.495585], - [-92.2927598024283, 46.41721950288], - [-92.293619, 46.244043], - [-92.2938306085787, 46.157321306496], - [-92.294033, 46.074377], - [-92.338239, 46.052149], - [-92.35176, 46.015685], - [-92.392681, 46.01954], - [-92.44963, 46.002252], - [-92.472761, 45.972952], - [-92.545682, 45.970118], - [-92.580565, 45.94625], - [-92.656125, 45.924442], - [-92.721128, 45.883805], - [-92.759458, 45.835341], - [-92.776496, 45.790014], - [-92.826013, 45.73665], - [-92.8407421066255, 45.7293967344697], - [-92.869689, 45.715142], - [-92.886697124409, 45.644148], - [-92.887929, 45.639006], - [-92.881136, 45.573409], - [-92.801503, 45.562854], - [-92.756906, 45.557499], - [-92.728023, 45.525652], - [-92.686793, 45.472271], - [-92.646768, 45.437929], - [-92.658486, 45.396058], - [-92.698967, 45.336374], - [-92.7482676746859, 45.2960593865098], - [-92.761868, 45.284938], - [-92.7660914086737, 45.2100217024227], - [-92.766932, 45.195111], - [-92.743829979395, 45.1236663641246], - [-92.740509, 45.113396], - [-92.802911, 45.065403], - [-92.761904, 45.022467], - [-92.750802, 44.941567], - [-92.7670232657519, 44.8619767370977], - [-92.7671173343572, 44.8615151858759], - [-92.768574, 44.854368], - [-92.805287, 44.768361], - [-92.7923607996705, 44.7589838136971], - [-92.7316238513032, 44.7149227852596], - [-92.696491, 44.689436], - [-92.618025, 44.61287], - [-92.54928, 44.577704], - [-92.399281, 44.558292], - [-92.361518, 44.558935], - [-92.3169331334058, 44.5392760122027], - [-92.314071, 44.538014], - [-92.291005, 44.485464], - [-92.2453646490054, 44.4542511243518], - [-92.232472, 44.445434], - [-92.111085, 44.413948], - [-92.0845285804928, 44.404614314801], - [-91.9636, 44.362112], - [-91.916191, 44.318094], - [-91.892698, 44.231105], - [-91.8544999752977, 44.1972265195522], - [-91.817302, 44.164235], - [-91.719097, 44.128853], - [-91.647873, 44.064109], - [-91.573283, 44.026901], - [-91.5592155630397, 44.0242093165812], - [-91.440536, 44.001501], - [-91.4235686998173, 43.9842968803226], - [-91.357426, 43.917231], - [-91.291002, 43.852733], - [-91.2876556273671, 43.847065], - [-91.243955, 43.773046], - [-91.2570001560057, 43.7256587372224], - [-91.273252, 43.666623], - [-91.252926, 43.600363], - [-91.232812, 43.564842], - [-91.217706, 43.50055], - [-91.491042, 43.50069], - [-91.6108350005544, 43.5006878467793], - [-91.7302169978377, 43.5006857009461], - [-91.824848, 43.500684], - [-92.0798019931283, 43.5007048851766], - [-92.178863, 43.500713], - [-92.4489479514378, 43.5004149885627], - [-92.5531280905188, 43.5003000363123], - [-92.553161, 43.5003], - [-92.870277, 43.499548], - [-93.0243479005419, 43.49955616363], - [-93.0491920078165, 43.4995574800246], - [-93.228861, 43.499567], - [-93.4973513252204, 43.4995307245117], - [-93.576728, 43.49952], - [-93.6485330311736, 43.4995354896751], - [-93.97076, 43.499605], - [-94.2479674415552, 43.5001754767076], - [-94.390597, 43.500469], - [-94.4428499897182, 43.5004785076547], - [-94.8545550676107, 43.5005534191522], - [-94.874235, 43.500557], - [-94.9146134847136, 43.5005958729861], - [-95.214938, 43.500885], - [-95.3877875940219, 43.5004787289074], - [-95.4544322386606, 43.50032208525], - [-95.486803, 43.500246], - [-95.834421, 43.499966], - [-95.8609462015723, 43.4999928849056], - [-96.05316283451, 43.5001877081575], - [-96.198484, 43.500335], - [-96.45326, 43.50039], - [-96.453315, 43.552299], - [-96.4529095743663, 43.8495068930184], - [-96.4529095716932, 43.8495088526372], - [-96.4524358546695, 44.1967795400951], - [-96.4524358245955, 44.196801586665], - [-96.452213, 44.360149], - [-96.4532913135987, 44.543636801818], - [-96.4538066996671, 44.631335831948], - [-96.4548305155538, 44.8055502040458], - [-96.4558401136336, 44.97734524828], - [-96.457553498485, 45.2688979287184], - [-96.457781, 45.30761], - [-96.4700776030493, 45.3267996493923], - [-96.482556, 45.346273], - [-96.521787, 45.375645], - [-96.562142, 45.38609], - [-96.617726, 45.408092], - [-96.675447, 45.410216], - [-96.710786, 45.43693], - [-96.742509, 45.478723], - [-96.781036, 45.535972], - [-96.8354191619781, 45.5861286928808], - [-96.843957, 45.594003], - [-96.851621, 45.619412], - [-96.82616, 45.654164], - [-96.745086, 45.701576], - [-96.672665, 45.732336], - [-96.630512, 45.781157], - [-96.587093, 45.816445], - [-96.571871, 45.871846], - [-96.563672, 45.935245], - [-96.574264, 46.016545], - [-96.572697494194, 46.0218916713577], - [-96.554507, 46.083978], - [-96.59567, 46.21985], - [-96.60104, 46.319554], - [-96.647296, 46.358499], - [-96.709095, 46.435294], - [-96.744436, 46.56596], - [-96.7857861825985, 46.6295908492609], - [-96.7897865130498, 46.6357466727167], - [-96.790523, 46.63688], - [-96.786845, 46.692805], - [-96.788803, 46.777575], - [-96.763973, 46.912507], - [-96.833504, 47.01011], - [-96.819078, 47.081152], - [-96.8265691272283, 47.150539], - [-96.8360095945419, 47.2379818754871], - [-96.84022, 47.276981], - [-96.85748, 47.440457], - [-96.8559593490532, 47.499173229529], - [-96.854073, 47.57201], - [-96.882376, 47.649025], - [-96.8934933013399, 47.6721269594437], - [-96.928506, 47.744884], - [-96.996364, 47.844398], - [-97.037354, 47.933279], - [-97.068987, 48.026267], - [-97.105616, 48.091362], - [-97.146745, 48.168556], - [-97.1458449594749, 48.1732234829905], - [-97.1418970728279, 48.193696665318], - [-97.129533, 48.257815], - [-97.137904, 48.344585], - [-97.139173, 48.430528], - [-97.149122, 48.532305], - [-97.1481034661336, 48.5407440461867], - [-97.1477235683009, 48.5438916836506], - [-97.142915, 48.583733], - [-97.100009, 48.667926], - [-97.121253, 48.713593], - [-97.152588, 48.772602], - [-97.187362, 48.867598], - [-97.227854, 48.945864], - [-97.229039, 49.000687] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "19", - "STATENS": "01779785", - "AFFGEOID": "0400000US19", - "GEOID": "19", - "ISOCODE": "US-IA", - "name": "Iowa", - "LSAD": "00", - "ALAND": 144659721012, - "AWATER": 1085964740 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-96.621875, 42.779255], - [-96.577937, 42.827645], - [-96.537851, 42.878475], - [-96.5404723291933, 42.908595697956], - [-96.541689, 42.922576], - [-96.500308, 42.959391], - [-96.520246, 42.977643], - [-96.492693, 43.005089], - [-96.511605, 43.039927], - [-96.458201, 43.067554], - [-96.4520975160537, 43.0825529251945], - [-96.439335, 43.113916], - [-96.458854, 43.143356], - [-96.475571, 43.221054], - [-96.522084, 43.22096], - [-96.552963, 43.247281], - [-96.5590273427097, 43.257555675618], - [-96.578823, 43.291095], - [-96.530392, 43.300034], - [-96.524289, 43.347214], - [-96.521572, 43.38564], - [-96.594254, 43.434153], - [-96.584603, 43.46961], - [-96.598928, 43.500457], - [-96.45326, 43.50039], - [-96.198484, 43.500335], - [-96.05316283451, 43.5001877081575], - [-95.8609462015723, 43.4999928849056], - [-95.834421, 43.499966], - [-95.486803, 43.500246], - [-95.4544322386606, 43.50032208525], - [-95.3877875940219, 43.5004787289074], - [-95.214938, 43.500885], - [-94.9146134847136, 43.5005958729861], - [-94.874235, 43.500557], - [-94.8545550676107, 43.5005534191522], - [-94.4428499897182, 43.5004785076547], - [-94.390597, 43.500469], - [-94.2479674415552, 43.5001754767076], - [-93.97076, 43.499605], - [-93.6485330311736, 43.4995354896751], - [-93.576728, 43.49952], - [-93.4973513252204, 43.4995307245117], - [-93.228861, 43.499567], - [-93.0491920078165, 43.4995574800246], - [-93.0243479005419, 43.49955616363], - [-92.870277, 43.499548], - [-92.553161, 43.5003], - [-92.5531280905188, 43.5003000363123], - [-92.4489479514378, 43.5004149885627], - [-92.178863, 43.500713], - [-92.0798019931283, 43.5007048851766], - [-91.824848, 43.500684], - [-91.7302169978377, 43.5006857009461], - [-91.6108350005544, 43.5006878467793], - [-91.491042, 43.50069], - [-91.217706, 43.50055], - [-91.232276, 43.450952], - [-91.2106633577727, 43.4194417829033], - [-91.199408, 43.403032], - [-91.207367, 43.373659], - [-91.154806, 43.334826], - [-91.107237, 43.313645], - [-91.05791, 43.253968], - [-91.087456, 43.221891], - [-91.134173, 43.174405], - [-91.175253, 43.134665], - [-91.1749349139112, 43.0802603718452], - [-91.174692, 43.038713], - [-91.1590843059475, 42.9874777913228], - [-91.155519, 42.975774], - [-91.138, 42.903772], - [-91.09882, 42.864421], - [-91.070716, 42.775502], - [-91.017239, 42.719566], - [-90.941567, 42.683844], - [-90.8969620271584, 42.6743180564343], - [-90.852497, 42.664822], - [-90.743677, 42.64556], - [-90.700856, 42.626445], - [-90.672727, 42.576599], - [-90.642843, 42.508481], - [-90.646727, 42.471904], - [-90.590416, 42.447493], - [-90.565248, 42.438742], - [-90.517516, 42.403019], - [-90.4843456727163, 42.3815977781919], - [-90.44632, 42.357041], - [-90.417125, 42.319943], - [-90.430884, 42.27823], - [-90.400653, 42.239293], - [-90.338169, 42.203321], - [-90.3151462239686, 42.1937168744807], - [-90.26908, 42.1745], - [-90.207421, 42.149109], - [-90.161159, 42.106372], - [-90.163446, 42.040407], - [-90.1596824511227, 42.0330872575859], - [-90.140613, 41.995999], - [-90.156902, 41.938181], - [-90.1581530337095, 41.9298432273761], - [-90.165065, 41.883777], - [-90.181401, 41.844647], - [-90.180643, 41.811979], - [-90.2423682473972, 41.7827687259846], - [-90.248631, 41.779805], - [-90.310708, 41.742214], - [-90.3118568504162, 41.7285328921536], - [-90.314687, 41.69483], - [-90.336729, 41.664532], - [-90.339528, 41.598633], - [-90.364128, 41.579633], - [-90.41583, 41.562933], - [-90.461432, 41.523533], - [-90.513134, 41.519533], - [-90.571136, 41.516332], - [-90.618537, 41.485032], - [-90.701159, 41.454743], - [-90.786282, 41.452888], - [-90.867282, 41.448215], - [-90.924343, 41.42286], - [-90.966662, 41.430051], - [-91.027787, 41.423603], - [-91.065058, 41.369101], - [-91.071552, 41.339651], - [-91.0740876236741, 41.3343208019205], - [-91.0744154980196, 41.3336315690407], - [-91.114186, 41.250029], - [-91.081445, 41.214429], - [-91.041536, 41.166138], - [-90.997906, 41.162564], - [-90.957246, 41.111085], - [-90.9522654164822, 41.07273174967], - [-90.9518941426813, 41.0698727358664], - [-90.945324, 41.019279], - [-90.952233, 40.954047], - [-90.985462, 40.912141], - [-91.044653, 40.868356], - [-91.092993, 40.821079], - [-91.091703, 40.779708], - [-91.115735, 40.725168], - [-91.1182229383975, 40.6995346508191], - [-91.12082, 40.672777], - [-91.1854606087043, 40.6381118126235], - [-91.18698, 40.637297], - [-91.247851, 40.63839], - [-91.339719, 40.613488], - [-91.374252, 40.58259], - [-91.394475, 40.534543], - [-91.367876, 40.510479], - [-91.379907, 40.45211], - [-91.372921, 40.399108], - [-91.419422, 40.378264], - [-91.498093, 40.401926], - [-91.519134, 40.432822], - [-91.563844, 40.460988], - [-91.608347, 40.50004], - [-91.618999, 40.539084], - [-91.670993, 40.550937], - [-91.685381, 40.578892], - [-91.7166549876819, 40.603740139296], - [-91.729115, 40.61364], - [-91.939292, 40.60615], - [-91.9431174596857, 40.606060586354], - [-92.17978, 40.600529], - [-92.3508041867264, 40.5972572763761], - [-92.453745, 40.595288], - [-92.6379032935995, 40.5909565470979], - [-92.686693, 40.589809], - [-92.714597263045, 40.5895828338363], - [-92.941595, 40.587743], - [-93.0972912037498, 40.5838234773251], - [-93.135802, 40.582854], - [-93.345442, 40.580514], - [-93.3743862587638, 40.5803970326092], - [-93.5568966742717, 40.5796594850605], - [-93.597352, 40.579496], - [-93.7743442040303, 40.5775304533911], - [-93.84093, 40.576791], - [-94.015492, 40.5740737070096], - [-94.091085, 40.572897], - [-94.2322407102083, 40.5720146121266], - [-94.310724, 40.571524], - [-94.4712077271232, 40.570959458357], - [-94.533878, 40.570739], - [-94.6320259176948, 40.5717595874], - [-94.819978, 40.573714], - [-94.9148978673616, 40.5749211691113], - [-95.068921, 40.57688], - [-95.2022660008303, 40.578375628996], - [-95.335588, 40.579871], - [-95.3739250533987, 40.5803323779415], - [-95.533182, 40.582249], - [-95.765645, 40.585208], - [-95.748626, 40.603355], - [-95.781909, 40.653272], - [-95.846034, 40.682605], - [-95.888697, 40.736292], - [-95.834156, 40.783016], - [-95.8342438167144, 40.7837843870431], - [-95.841309, 40.845604], - [-95.810709, 40.886681], - [-95.8187272785699, 40.8979480664065], - [-95.837774, 40.924712], - [-95.828329, 40.972378], - [-95.865878, 41.017403], - [-95.8647847640853, 41.0528455046135], - [-95.863839, 41.083507], - [-95.868688, 41.124698], - [-95.8618980682094, 41.1603023482127], - [-95.856788, 41.187098], - [-95.90969, 41.184398], - [-95.9099128702696, 41.1914208374192], - [-95.911391, 41.237998], - [-95.890152, 41.278308], - [-95.92569, 41.322197], - [-95.92879, 41.370096], - [-95.9273362423201, 41.3899879374596], - [-95.922529, 41.455766], - [-95.982962, 41.469778], - [-95.9940203930119, 41.5068906409415], - [-96.005079, 41.544004], - [-96.080493, 41.528199], - [-96.09182, 41.561086], - [-96.118105, 41.613495], - [-96.111483, 41.668548], - [-96.1079378717465, 41.6765089897621], - [-96.0876, 41.72218], - [-96.064537, 41.793002], - [-96.107911, 41.840339], - [-96.1268212534654, 41.8660952477016], - [-96.159098, 41.910057], - [-96.132537, 41.974625], - [-96.223611, 42.022652], - [-96.272877, 42.047238], - [-96.2689, 42.11359], - [-96.347752, 42.166806], - [-96.3372160947059, 42.2148495068956], - [-96.336323, 42.218922], - [-96.336003, 42.264806], - [-96.351957192496, 42.2808947045433], - [-96.407998, 42.337408], - [-96.411808, 42.410894], - [-96.381307, 42.461694], - [-96.445508, 42.49063], - [-96.477454, 42.509589], - [-96.49297, 42.517282], - [-96.476952, 42.556079], - [-96.48002247898, 42.5613247765607], - [-96.526766, 42.641184], - [-96.591602, 42.688081], - [-96.624704, 42.725497], - [-96.621875, 42.779255] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "29", - "STATENS": "01779791", - "AFFGEOID": "0400000US29", - "GEOID": "29", - "ISOCODE": "US-MO", - "name": "Missouri", - "LSAD": "00", - "ALAND": 178052333716, - "AWATER": 2487445715 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.765645, 40.585208], - [-95.533182, 40.582249], - [-95.3739250533987, 40.5803323779415], - [-95.335588, 40.579871], - [-95.2022660008303, 40.578375628996], - [-95.068921, 40.57688], - [-94.9148978673616, 40.5749211691113], - [-94.819978, 40.573714], - [-94.6320259176948, 40.5717595874], - [-94.533878, 40.570739], - [-94.4712077271232, 40.570959458357], - [-94.310724, 40.571524], - [-94.2322407102083, 40.5720146121266], - [-94.091085, 40.572897], - [-94.015492, 40.5740737070096], - [-93.84093, 40.576791], - [-93.7743442040303, 40.5775304533911], - [-93.597352, 40.579496], - [-93.5568966742717, 40.5796594850605], - [-93.3743862587638, 40.5803970326092], - [-93.345442, 40.580514], - [-93.135802, 40.582854], - [-93.0972912037498, 40.5838234773251], - [-92.941595, 40.587743], - [-92.714597263045, 40.5895828338363], - [-92.686693, 40.589809], - [-92.6379032935995, 40.5909565470979], - [-92.453745, 40.595288], - [-92.3508041867264, 40.5972572763761], - [-92.17978, 40.600529], - [-91.9431174596857, 40.606060586354], - [-91.939292, 40.60615], - [-91.729115, 40.61364], - [-91.7166549876819, 40.603740139296], - [-91.685381, 40.578892], - [-91.670993, 40.550937], - [-91.618999, 40.539084], - [-91.608347, 40.50004], - [-91.563844, 40.460988], - [-91.519134, 40.432822], - [-91.498093, 40.401926], - [-91.419422, 40.378264], - [-91.469656, 40.322409], - [-91.492891, 40.269923], - [-91.4969574903395, 40.2487038763728], - [-91.5062615151283, 40.2001550699717], - [-91.511956, 40.170441], - [-91.497663, 40.078257], - [-91.484064, 40.019332], - [-91.43709, 39.946417], - [-91.4368432685991, 39.9452434636785], - [-91.428956, 39.907729], - [-91.436051, 39.84551], - [-91.397853, 39.821122], - [-91.361571, 39.787548], - [-91.3646166033233, 39.7587182263223], - [-91.367753, 39.729029], - [-91.3057603349652, 39.6862154700779], - [-91.27614, 39.665759], - [-91.1828755008197, 39.5982331157954], - [-91.174232, 39.591975], - [-91.148275, 39.545798], - [-91.100307, 39.538695], - [-91.064305, 39.494643], - [-91.03827, 39.448436], - [-90.937419, 39.400803], - [-90.9352871462396, 39.3994805728603], - [-90.840106, 39.340438], - [-90.72996, 39.255894], - [-90.7232836234127, 39.2241029700576], - [-90.707902, 39.15086], - [-90.681086, 39.10059], - [-90.713629, 39.053977], - [-90.676397, 38.984096], - [-90.6615829068768, 38.9347033077532], - [-90.657254, 38.92027], - [-90.595354, 38.87505], - [-90.555693, 38.870785], - [-90.500117, 38.910408], - [-90.467784, 38.961809], - [-90.4509699408919, 38.9613950033245], - [-90.395816, 38.960037], - [-90.298711, 38.923395], - [-90.2764739288339, 38.9193183391288], - [-90.230336, 38.91086], - [-90.2072823011856, 38.8987323228399], - [-90.113327, 38.849306], - [-90.117707, 38.805748], - [-90.1662859507468, 38.7727326271043], - [-90.166409, 38.772649], - [-90.20991, 38.72605], - [-90.19521, 38.68755], - [-90.1813411498458, 38.6600090209705], - [-90.18111, 38.65955], - [-90.18451, 38.611551], - [-90.248913, 38.544752], - [-90.2552985826054, 38.5308696789927], - [-90.2610973860555, 38.518263021789], - [-90.271314, 38.496052], - [-90.288815, 38.438453], - [-90.3402442817043, 38.3870946226363], - [-90.3429152667372, 38.3844273200276], - [-90.349743, 38.377609], - [-90.372519, 38.323354], - [-90.363926, 38.236355], - [-90.3511641450603, 38.2195444570945], - [-90.322353, 38.181593], - [-90.2527463239757, 38.1277738262293], - [-90.252484, 38.127571], - [-90.218708, 38.094365], - [-90.2038911808417, 38.0873651230282], - [-90.126006, 38.05057], - [-90.080959, 38.015428], - [-90.008353, 37.970179], - [-89.95491, 37.966647], - [-89.974221, 37.919217], - [-89.933095790915, 37.8800990582524], - [-89.923185, 37.870672], - [-89.851048, 37.90398], - [-89.782035, 37.855092], - [-89.696559, 37.814337], - [-89.6872324838884, 37.7964280387079], - [-89.667993, 37.759484], - [-89.591289, 37.723599], - [-89.521948, 37.696475], - [-89.506563, 37.62505], - [-89.494051, 37.580116], - [-89.4977459260392, 37.5699859139282], - [-89.5017910494998, 37.5588957193232], - [-89.5124, 37.52981], - [-89.471201, 37.466473], - [-89.42594, 37.407471], - [-89.428185, 37.356158], - [-89.4744347243599, 37.334500215676], - [-89.49516, 37.324795], - [-89.517032, 37.28192], - [-89.482889284644, 37.2609507184141], - [-89.470525, 37.253357], - [-89.456105, 37.18812], - [-89.384175, 37.103267], - [-89.359456, 37.042606], - [-89.3081469138122, 37.0289484973829], - [-89.257608, 37.015496], - [-89.195039, 36.989768], - [-89.132915, 36.982057], - [-89.098843, 36.95785], - [-89.1031354483266, 36.9447609003223], - [-89.120472, 36.891896], - [-89.147674, 36.847148], - [-89.155891, 36.789126], - [-89.1559849090704, 36.7862926633714], - [-89.15699, 36.755968], - [-89.202511, 36.716618], - [-89.165488, 36.662426], - [-89.1756497723469, 36.6513192625535], - [-89.199136, 36.625649], - [-89.227319, 36.569375], - [-89.278935, 36.577699], - [-89.324658, 36.624032], - [-89.327319777009, 36.6239462887705], - [-89.378694, 36.622292], - [-89.407906, 36.562345], - [-89.479346, 36.566253], - [-89.544434, 36.57451], - [-89.571481, 36.538087], - [-89.539232, 36.497934], - [-89.521021, 36.461934], - [-89.542337, 36.420103], - [-89.51038, 36.378356], - [-89.522695, 36.344789], - [-89.5450313339691, 36.344271398663], - [-89.600544, 36.342985], - [-89.611819, 36.309088], - [-89.554289, 36.277751], - [-89.602374, 36.238106], - [-89.678046, 36.248284], - [-89.69263, 36.224959], - [-89.6276414416754, 36.185460316606], - [-89.623804, 36.183128], - [-89.592102, 36.135637], - [-89.64302, 36.10362], - [-89.680029, 36.082494], - [-89.692437, 36.020507], - [-89.733095, 36.000608], - [-89.901183, 35.999365], - [-89.9593746319162, 35.9990141141563], - [-90.103842, 35.998143], - [-90.2890769140827, 35.9965128689775], - [-90.368718, 35.995812], - [-90.339343, 36.047112], - [-90.294492, 36.112949], - [-90.235585, 36.139474], - [-90.220425, 36.184764], - [-90.1891019136628, 36.1989984552544], - [-90.155928, 36.214074], - [-90.114922, 36.265595], - [-90.06398, 36.303038], - [-90.063526, 36.356911], - [-90.066136, 36.386272], - [-90.131038, 36.415069], - [-90.141399, 36.459874], - [-90.153871, 36.495344], - [-90.2207490539154, 36.4959375921945], - [-90.494575, 36.498368], - [-90.5761790655673, 36.498405927798], - [-90.765672, 36.498494], - [-90.784029207405, 36.4984625681699], - [-91.017974, 36.498062], - [-91.1265376607175, 36.4977977039745], - [-91.404915, 36.49712], - [-91.4068712895641, 36.4971382315405], - [-91.450023110521, 36.4975403827277], - [-91.64259, 36.499335], - [-91.6723336435146, 36.4992566570116], - [-91.985802, 36.498431], - [-92.120391964917, 36.4981931896223], - [-92.150306261007, 36.4981403333038], - [-92.350277, 36.497787], - [-92.5291361751611, 36.498165682126], - [-92.564238, 36.49824], - [-92.7723338933721, 36.4980831540794], - [-92.838876, 36.498033], - [-92.8540081073941, 36.4980234071379], - [-93.125969, 36.497851], - [-93.2930675065906, 36.4982584490195], - [-93.3153233371857, 36.4983127171069], - [-93.426989, 36.498585], - [-93.5842625342512, 36.4989016403491], - [-93.700171, 36.499135], - [-93.8666892118508, 36.4988662760355], - [-93.95919, 36.498717], - [-94.0770881248555, 36.49897595691], - [-94.361203, 36.4996], - [-94.617919, 36.499414], - [-94.617815, 36.612604], - [-94.6179917784172, 36.6679212723442], - [-94.618307, 36.76656], - [-94.617964, 36.998905], - [-94.618102891103, 37.0567963908729], - [-94.618351, 37.160211], - [-94.6177538916066, 37.338418], - [-94.6176676047008, 37.3641703270387], - [-94.617511, 37.410909], - [-94.6178455243542, 37.6535777966344], - [-94.6178724508981, 37.6731107003321], - [-94.617885, 37.682214], - [-94.614465, 37.987799], - [-94.6141002487054, 38.0370565833813], - [-94.6139299610557, 38.0600529598965], - [-94.612614, 38.237766], - [-94.6127726289929, 38.3887184827318], - [-94.612866, 38.477571], - [-94.6128655959221, 38.4776021802351], - [-94.6119580183223, 38.5476344342717], - [-94.6094896723458, 38.7381017094732], - [-94.609456, 38.7407], - [-94.6089603437495, 38.847211315445], - [-94.608334, 38.981806], - [-94.607870353374, 39.0440850964785], - [-94.607354, 39.113444], - [-94.591933, 39.155003], - [-94.6019379819211, 39.1555032334638], - [-94.623934, 39.156603], - [-94.680336, 39.184303], - [-94.741938, 39.170203], - [-94.7919946737433, 39.2012602502402], - [-94.799663, 39.206018], - [-94.825663, 39.241729], - [-94.857072, 39.273825], - [-94.908065, 39.323663], - [-94.888972, 39.392432], - [-94.946662, 39.399717], - [-94.9657474186335, 39.4216817446564], - [-94.982144, 39.440552], - [-95.049845, 39.494415], - [-95.091419402824, 39.53325788521], - [-95.113557, 39.553941], - [-95.076688, 39.576764], - [-95.047165, 39.595117], - [-95.0440507525704, 39.6136682968209], - [-95.037464, 39.652905], - [-94.971317, 39.68641], - [-94.971078, 39.723146], - [-94.899316, 39.724042], - [-94.860371, 39.74953], - [-94.871144, 39.772994], - [-94.8778576828861, 39.8207000955167], - [-94.878677, 39.826522], - [-94.928466, 39.876344], - [-94.95154, 39.900533], - [-94.9933742397144, 39.8985652599923], - [-95.018743, 39.897372], - [-95.081534, 39.861718], - [-95.142445, 39.89542], - [-95.231114, 39.943784], - [-95.30829, 39.999998], - [-95.348777, 40.029297], - [-95.382957, 40.027112], - [-95.414734, 40.06982], - [-95.394216, 40.108263], - [-95.432165, 40.141025], - [-95.48102, 40.188524], - [-95.472548, 40.236078], - [-95.54716, 40.259066], - [-95.5478703162703, 40.2627834608198], - [-95.5481820011801, 40.2644146728427], - [-95.553292, 40.291158], - [-95.598657, 40.309809], - [-95.653729, 40.322582], - [-95.641027, 40.366399], - [-95.649418, 40.396149], - [-95.684363, 40.463366], - [-95.694726, 40.493602], - [-95.7122803718011, 40.5237544262074], - [-95.714291, 40.527208], - [-95.75711, 40.52599], - [-95.765645, 40.585208] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "26", - "STATENS": "01779789", - "AFFGEOID": "0400000US26", - "GEOID": "26", - "ISOCODE": "US-MI", - "name": "Michigan", - "LSAD": "00", - "ALAND": 146614937132, - "AWATER": 103871870536 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-84.61622, 45.89447], - [-84.517895, 45.828543], - [-84.419696, 45.799823], - [-84.35602, 45.771895], - [-84.394038, 45.727623], - [-84.484128, 45.73071], - [-84.587572, 45.8067], - [-84.650783, 45.85921], - [-84.61622, 45.89447] - ] - ], - [ - [ - [-85.701809, 45.736129], - [-85.651866, 45.743139], - [-85.524448, 45.829794], - [-85.360952, 45.817554], - [-85.377132, 45.769013], - [-85.509276, 45.596475], - [-85.561634, 45.572213], - [-85.622741, 45.586028], - [-85.696872, 45.69725], - [-85.701809, 45.736129] - ] - ], - [ - [ - [-86.138095, 45.043038], - [-86.04443, 45.159582], - [-85.989412, 45.151069], - [-85.954021, 45.119281], - [-85.976883, 45.06266], - [-86.081487, 44.990096], - [-86.154824, 45.002394], - [-86.138095, 45.043038] - ] - ], - [ - [ - [-86.693267, 41.835403], - [-86.597899, 41.918291], - [-86.501322, 42.08454], - [-86.466262, 42.134406], - [-86.3663791270383, 42.2431077271809], - [-86.356218, 42.254166], - [-86.284448, 42.394563], - [-86.2769940445315, 42.4193103159263], - [-86.240642, 42.54], - [-86.2286948010023, 42.6295118547012], - [-86.226638, 42.644922], - [-86.208309, 42.762789], - [-86.2085385029097, 42.7675438719157], - [-86.214138, 42.883555], - [-86.226305, 42.988284], - [-86.254646, 43.083409], - [-86.2739282786714, 43.1183679687078], - [-86.316259, 43.195114], - [-86.407832, 43.338436], - [-86.448743, 43.432013], - [-86.4635168866811, 43.4723296995067], - [-86.479276, 43.515335], - [-86.529507, 43.593462], - [-86.540787, 43.644593], - [-86.510319, 43.698625], - [-86.445123, 43.771564], - [-86.4354850382583, 43.8194291980042], - [-86.431198, 43.84072], - [-86.447915, 43.918089], - [-86.463136, 43.970976], - [-86.4632031152485, 43.9710645597197], - [-86.501738, 44.021912], - [-86.514702, 44.058119], - [-86.4580652757377, 44.0992877982953], - [-86.429871, 44.119782], - [-86.3913991469087, 44.173701998925], - [-86.3878373602652, 44.178694], - [-86.351638, 44.229429], - [-86.26871, 44.345324], - [-86.251926, 44.400984], - [-86.248914, 44.483004], - [-86.2370208650165, 44.5182985861447], - [-86.220697, 44.566742], - [-86.25395, 44.64808], - [-86.248474, 44.699046], - [-86.160268, 44.728189], - [-86.089186, 44.741496], - [-86.0784981880303, 44.7783307476609], - [-86.065966, 44.821522], - [-86.058862, 44.911012], - [-85.980219, 44.906136], - [-85.9316, 44.968788], - [-85.854304, 44.938147], - [-85.780439, 44.977932], - [-85.746444, 45.051229], - [-85.681096, 45.092693], - [-85.633124, 45.170899], - [-85.551072, 45.210742], - [-85.531461, 45.177247], - [-85.56613, 45.043633], - [-85.5551427027088, 45.0270345441369], - [-85.520034, 44.973996], - [-85.475204, 44.991053], - [-85.4314154750083, 45.0166494527177], - [-85.380659, 45.046319], - [-85.366749, 45.101591], - [-85.380464, 45.180876], - [-85.377824295933, 45.2076444024869], - [-85.371593, 45.270834], - [-85.294848, 45.316408], - [-85.196704, 45.360641], - [-85.096056872271, 45.3630880404348], - [-85.054805, 45.364091], - [-84.959119, 45.375973], - [-84.912956, 45.409776], - [-84.980953, 45.429382], - [-85.040936, 45.436701], - [-85.109252, 45.521626], - [-85.119737, 45.569026], - [-85.061488, 45.639505], - [-84.97095, 45.686334], - [-85.014509, 45.760329], - [-84.866976, 45.752066], - [-84.772765, 45.789301], - [-84.732242, 45.780496853289], - [-84.718904, 45.777599], - [-84.553311, 45.698566], - [-84.46168, 45.652404], - [-84.413642, 45.669427], - [-84.329537, 45.66438], - [-84.2108933451565, 45.6262310177199], - [-84.196043, 45.621456], - [-84.126532, 45.556616], - [-84.095905, 45.497298], - [-83.99835, 45.491158], - [-83.909472, 45.485784], - [-83.841543, 45.435287], - [-83.697316, 45.396239], - [-83.599273, 45.352561], - [-83.488826, 45.355872], - [-83.385104, 45.274195], - [-83.405914, 45.227157], - [-83.3852110792565, 45.207103993148], - [-83.315924, 45.139992], - [-83.265896, 45.026844], - [-83.340257, 45.041545], - [-83.399255, 45.070364], - [-83.442052, 45.051056], - [-83.435822, 45.000012], - [-83.438856, 44.940843], - [-83.352815, 44.886164], - [-83.320503, 44.880571], - [-83.3162661085766, 44.8585914505609], - [-83.296971, 44.758495], - [-83.276836, 44.689354], - [-83.314517, 44.608725], - [-83.3169638754402, 44.5116830117597], - [-83.31761, 44.486058], - [-83.336988, 44.332919], - [-83.401822, 44.301831], - [-83.442731, 44.265361], - [-83.524817, 44.261558], - [-83.5646457924967, 44.163524818403], - [-83.567744, 44.155899], - [-83.58409, 44.056748], - [-83.679654, 44.036365], - [-83.693214, 43.98877], - [-83.787863, 43.985279], - [-83.869406, 43.960719], - [-83.901329352181, 43.9084270508442], - [-83.910613, 43.89322], - [-83.929375, 43.777091], - [-83.94774, 43.735165], - [-83.909479, 43.672622], - [-83.817894, 43.673789], - [-83.731005, 43.623369], - [-83.6994170918811, 43.6016371502565], - [-83.683351, 43.590584], - [-83.529640471734, 43.7192449191049], - [-83.51234, 43.733726], - [-83.5060855525428, 43.7451572131399], - [-83.479567, 43.793625], - [-83.43261, 43.885273], - [-83.407146, 43.919807], - [-83.28231, 43.938031], - [-83.26153, 43.973525], - [-83.134881, 43.993147], - [-83.046577, 44.01571], - [-83.024604, 44.045174], - [-82.928884, 44.069389], - [-82.793205, 44.023247], - [-82.709839, 43.948226], - [-82.633641, 43.831224], - [-82.612224, 43.739771], - [-82.6064790828381, 43.6904492707095], - [-82.593785, 43.581467], - [-82.53993, 43.422378], - [-82.523086, 43.225361], - [-82.5060424049551, 43.1688273713115], - [-82.486042, 43.102486], - [-82.415937, 43.005555], - [-82.428603, 42.952001], - [-82.469912, 42.887459], - [-82.467483, 42.76191], - [-82.509935, 42.637294], - [-82.583996, 42.554041], - [-82.679059, 42.52221], - [-82.706371, 42.621107], - [-82.639701, 42.661233], - [-82.707885, 42.675497], - [-82.801022, 42.629545], - [-82.766004, 42.600051], - [-82.755927, 42.564415], - [-82.859316, 42.541935], - [-82.8594470293087, 42.540853518224], - [-82.860210200131, 42.5345545050925], - [-82.8675319449814, 42.4741227306931], - [-82.8703322691976, 42.4510095842051], - [-82.870347, 42.450888], - [-82.92397, 42.352068], - [-82.9496720986456, 42.3442642212205], - [-82.988619, 42.332439], - [-83.096521, 42.290138], - [-83.0978584962561, 42.2860113652487], - [-83.1156828414025, 42.2310171461909], - [-83.133923, 42.17474], - [-83.133511, 42.088143], - [-83.185526, 42.052243], - [-83.1949523116895, 42.033107926811], - [-83.216897, 41.988561], - [-83.269521, 41.939042], - [-83.326024, 41.924961], - [-83.341557, 41.879956], - [-83.39622, 41.852965], - [-83.441668, 41.808646], - [-83.424076, 41.740738], - [-83.453832, 41.732647], - [-83.5855418421088, 41.7287720285128], - [-83.763038, 41.72355], - [-83.7631498513652, 41.7235468017856], - [-83.8803904653533, 41.7201944903196], - [-84.134417, 41.712931], - [-84.3604190413973, 41.7069558826335], - [-84.3995487854742, 41.7059213574056], - [-84.438067, 41.704903], - [-84.806082, 41.696089], - [-84.805883, 41.760216], - [-84.8251282838768, 41.7601990063519], - [-85.196774200302, 41.759870841803], - [-85.232835, 41.759839], - [-85.2921788113335, 41.7597552747018], - [-85.6597502379909, 41.759236686047], - [-85.7913349619628, 41.7590510395575], - [-85.791363, 41.759051], - [-86.0625630290106, 41.759653033158], - [-86.22607, 41.760016], - [-86.2260943449874, 41.7600159591164], - [-86.501773, 41.759553], - [-86.5242197424429, 41.7595721559735], - [-86.640044, 41.759671], - [-86.6413229205208, 41.7596749381428], - [-86.824828, 41.76024], - [-86.693267, 41.835403] - ] - ], - [ - [ - [-89.221332, 47.908069], - [-89.179154, 47.93503], - [-89.018303, 47.992525], - [-88.940886, 48.01959], - [-88.893701, 48.03477], - [-88.816084, 48.057006], - [-88.728198, 48.101914], - [-88.631908, 48.148307], - [-88.547033, 48.174891], - [-88.425162, 48.21065], - [-88.427373, 48.166764], - [-88.55044, 48.102111], - [-88.579172, 48.040758], - [-88.718555, 47.995134], - [-88.852923, 47.965322], - [-88.898986, 47.900685], - [-89.044463, 47.85575], - [-89.157738, 47.824015], - [-89.201812, 47.850243], - [-89.255202, 47.876102], - [-89.221332, 47.908069] - ] - ], - [ - [ - [-90.418136, 46.566094], - [-90.327626, 46.607744], - [-90.237609, 46.624485], - [-90.04542, 46.668272], - [-89.918466, 46.740324], - [-89.8843295804115, 46.765471149277], - [-89.831956, 46.804053], - [-89.720277, 46.830413], - [-89.642255, 46.82534], - [-89.569808, 46.831859], - [-89.49908, 46.841621], - [-89.415154, 46.843983], - [-89.227914, 46.912954], - [-89.142595, 46.984859], - [-89.02893, 47.00114], - [-88.959409, 47.008496], - [-88.9333684513417, 47.033599097856], - [-88.924492, 47.042156], - [-88.88914, 47.100575], - [-88.814834, 47.141399], - [-88.69966, 47.204831], - [-88.584912, 47.242361], - [-88.5129465056361, 47.286107247715], - [-88.50078, 47.293503], - [-88.418673, 47.371188], - [-88.285195, 47.422392], - [-88.217822, 47.448738], - [-88.085252, 47.468961], - [-87.929269, 47.478737], - [-87.801184, 47.473301], - [-87.680067, 47.455685], - [-87.591498, 47.424113], - [-87.604704, 47.388625], - [-87.800294, 47.392148], - [-87.941613, 47.390073], - [-87.94336, 47.335899], - [-88.016478, 47.306275], - [-88.096851, 47.261351], - [-88.194218, 47.209242], - [-88.2004506759337, 47.199716895982], - [-88.239895, 47.139436], - [-88.340052, 47.080494], - [-88.385606, 47.004522], - [-88.4393631859438, 46.9419824250004], - [-88.455404, 46.923321], - [-88.477935, 46.85056], - [-88.372681, 46.872277], - [-88.244437, 46.929612], - [-88.143688, 46.966665], - [-88.065192, 46.918563], - [-88.0445216822815, 46.9174499452762], - [-87.900339, 46.909686], - [-87.77693, 46.876726], - [-87.687164, 46.841742], - [-87.595307, 46.78295], - [-87.573203, 46.720471], - [-87.503025, 46.647497], - [-87.381649, 46.580059], - [-87.366767, 46.507303], - [-87.175065, 46.497548], - [-87.1163595894707, 46.5061514021205], - [-86.976958, 46.526581], - [-86.903742, 46.466138], - [-86.810967, 46.449663], - [-86.750157, 46.479109], - [-86.695645, 46.555026], - [-86.62738, 46.53371], - [-86.557731, 46.487434], - [-86.45993, 46.551928], - [-86.188024, 46.654008], - [-86.138295, 46.672935], - [-85.995044, 46.673676], - [-85.8646071413292, 46.6865683155134], - [-85.841057, 46.688896], - [-85.482096, 46.680432], - [-85.25686, 46.75338], - [-85.2378731773596, 46.7557027812565], - [-85.173042, 46.763634], - [-84.964652, 46.772845], - [-85.028291, 46.675125], - [-85.027374, 46.553756], - [-84.969464, 46.47629], - [-84.849767, 46.460245], - [-84.678423, 46.487694], - [-84.607945, 46.456747], - [-84.493401, 46.440313], - [-84.461827, 46.466566], - [-84.420274, 46.501077], - [-84.293016, 46.492803], - [-84.193729, 46.53992], - [-84.117925, 46.517619], - [-84.125026, 46.470143], - [-84.138906, 46.372221], - [-84.097766, 46.256512], - [-84.108089, 46.241238], - [-84.114941, 46.174114], - [-84.026536, 46.131648], - [-83.974012, 46.081552], - [-83.882303, 46.042065], - [-83.815826, 46.108529], - [-83.719791, 46.101031], - [-83.598612, 46.090085], - [-83.480639, 45.996164], - [-83.526347, 45.918636], - [-83.583052, 45.915919], - [-83.65766, 45.945463], - [-83.80104, 45.937582], - [-83.910838, 45.965613], - [-84.080071, 45.970822], - [-84.1146065625188, 45.9679083747954], - [-84.254952, 45.956068], - [-84.376429, 45.931962], - [-84.480436, 45.977764], - [-84.567493, 45.947702], - [-84.632855, 45.951007], - [-84.734002, 45.907026], - [-84.706383, 45.848658], - [-84.792763, 45.858691], - [-84.917484, 45.93067], - [-85.003597, 46.00613], - [-85.152027, 46.050725], - [-85.266385, 46.065779], - [-85.381394, 46.082044], - [-85.540858, 46.079581], - [-85.648581, 45.983695], - [-85.697203, 45.960158], - [-85.810442, 45.980087], - [-85.8658399219427, 45.9475710731853], - [-85.913769, 45.919439], - [-86.072067, 45.965313], - [-86.278007, 45.942057], - [-86.349134, 45.83416], - [-86.439661, 45.760669], - [-86.4598805177494, 45.750226550596], - [-86.54143, 45.70811], - [-86.616972, 45.620581], - [-86.636895, 45.542053], - [-86.712328, 45.610939], - [-86.705184, 45.690901], - [-86.647319, 45.732618], - [-86.773279, 45.811385], - [-86.838746, 45.722307], - [-86.964275, 45.672761], - [-87.070442, 45.718779], - [-87.172241, 45.661788], - [-87.2534496287802, 45.5501155908891], - [-87.288726, 45.501606], - [-87.350852, 45.407743], - [-87.465201, 45.273351], - [-87.548964, 45.191591], - [-87.590208, 45.095264], - [-87.648191, 45.106368], - [-87.695055, 45.150522], - [-87.741805, 45.197051], - [-87.71148, 45.245224], - [-87.667423, 45.31636], - [-87.657349, 45.368752], - [-87.706767, 45.383827], - [-87.750928, 45.355037], - [-87.800464, 45.353608], - [-87.863489, 45.35302], - [-87.85683, 45.393106], - [-87.847429, 45.444177], - [-87.805773, 45.473139], - [-87.804203, 45.524676], - [-87.787292, 45.574906], - [-87.777671, 45.609204], - [-87.824676, 45.653211], - [-87.781007, 45.673934], - [-87.805076, 45.703556], - [-87.8330494680353, 45.7227525753469], - [-87.879812, 45.754843], - [-87.96697, 45.764021], - [-87.995876, 45.795435], - [-88.048514, 45.782549], - [-88.057010465949, 45.7849770301437], - [-88.105518, 45.798839], - [-88.135067, 45.821694], - [-88.073944, 45.875593], - [-88.115346, 45.922211], - [-88.1168565373761, 45.9228112422627], - [-88.178008, 45.947111], - [-88.246307, 45.962983], - [-88.30952, 45.959369], - [-88.380183, 45.991654], - [-88.409864, 45.979688], - [-88.526673, 46.020822], - [-88.59386, 46.015132], - [-88.613063, 45.990627], - [-88.65776, 45.989287], - [-88.679132, 46.013538], - [-88.6832322084994, 46.0144656703203], - [-88.739994, 46.027308], - [-88.811948, 46.021609], - [-88.9327684510096, 46.072107163776], - [-88.991217028396, 46.096536354436], - [-89.09163, 46.138505], - [-89.638416, 46.243804], - [-89.9291256256648, 46.2999157284081], - [-90.120489, 46.336852], - [-90.158241, 46.420485], - [-90.214866, 46.499947], - [-90.285707, 46.518846], - [-90.331887, 46.553278], - [-90.387228, 46.533663], - [-90.418136, 46.566094] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "16", - "STATENS": "01779783", - "AFFGEOID": "0400000US16", - "GEOID": "16", - "ISOCODE": "US-ID", - "name": "Idaho", - "LSAD": "00", - "ALAND": 214049931578, - "AWATER": 2391569647 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-117.243027, 44.390974], - [-117.215072, 44.427162], - [-117.225932, 44.479389], - [-117.167187, 44.523431], - [-117.14293, 44.557236], - [-117.094968, 44.652011], - [-117.062273, 44.727143], - [-117.013802, 44.756841], - [-116.9318, 44.787181], - [-116.889295186967, 44.8405297781533], - [-116.865338, 44.870599], - [-116.833632, 44.928976], - [-116.858313, 44.978761], - [-116.841314, 45.030907], - [-116.78371, 45.076972], - [-116.783128263267, 45.07771250501], - [-116.754643, 45.113972], - [-116.696047, 45.254679], - [-116.690916254858, 45.2689841379699], - [-116.674648, 45.314342], - [-116.588195, 45.44292], - [-116.502756, 45.566608], - [-116.463504, 45.615785], - [-116.528272, 45.681473], - [-116.535698, 45.734231], - [-116.593004, 45.778541], - [-116.665344, 45.781998], - [-116.736268, 45.826179], - [-116.78752, 45.840204], - [-116.799204532501, 45.8510454354829], - [-116.859795, 45.907264], - [-116.886843, 45.958617], - [-116.915989, 45.995413], - [-116.942656, 46.061], - [-116.981962, 46.084915], - [-116.935473, 46.142448], - [-116.923958, 46.17092], - [-116.962966, 46.19968], - [-116.964379, 46.253282], - [-116.99726, 46.303151], - [-117.062748, 46.353624], - [-117.035545, 46.410012], - [-117.036645748421, 46.4261004826554], - [-117.039771, 46.471779], - [-117.039777655562, 46.5417089920381], - [-117.039833386028, 47.1272689922541], - [-117.039836, 47.154734], - [-117.040159751863, 47.259272], - [-117.040490375568, 47.366028886698], - [-117.041634, 47.7353], - [-117.041306446459, 47.9774559200268], - [-117.041214453461, 48.0454651038028], - [-117.041107, 48.124904], - [-117.035289, 48.422732], - [-117.033671, 48.656902], - [-117.032939182117, 48.8466679212015], - [-117.032351, 48.999188], - [-116.757234, 48.999943], - [-116.417503, 49.000099], - [-116.049193, 49.000912], - [-116.049156520649, 48.5020424817581], - [-116.049155, 48.481247], - [-116.048948, 48.309847], - [-116.048929247776, 48.2161279479271], - [-116.048911, 48.12493], - [-116.049153, 47.999923], - [-116.038565829873, 47.9846342564417], - [-116.030751, 47.973349], - [-115.959946, 47.898142], - [-115.900934, 47.843064], - [-115.845474, 47.814967], - [-115.835365, 47.760957], - [-115.72377, 47.696671], - [-115.73627, 47.654762], - [-115.694284, 47.62346], - [-115.721207, 47.576323], - [-115.717024, 47.532693], - [-115.634684, 47.48176], - [-115.69293, 47.457237], - [-115.71034, 47.417784], - [-115.578619, 47.367007], - [-115.531971, 47.314121], - [-115.470959, 47.284873], - [-115.371825, 47.265213], - [-115.326903, 47.255912], - [-115.29211, 47.209861], - [-115.255786, 47.174725], - [-115.189451, 47.131032], - [-115.120917, 47.061237], - [-115.071254, 47.022083], - [-115.031651, 46.971548], - [-114.961422906068, 46.9328938759708], - [-114.927432, 46.914185], - [-114.943281, 46.867971], - [-114.880588, 46.811791], - [-114.79004, 46.778729], - [-114.76718, 46.738828], - [-114.699008, 46.740223], - [-114.676827162695, 46.7318387398131], - [-114.626695, 46.712889], - [-114.621483, 46.658143], - [-114.591116003227, 46.6525504803548], - [-114.547321, 46.644485], - [-114.453239, 46.649266], - [-114.360709, 46.669059], - [-114.335724935405, 46.6552729673536], - [-114.320665, 46.646963], - [-114.331338, 46.577781], - [-114.351655, 46.508119], - [-114.403019, 46.498675], - [-114.384756, 46.411784], - [-114.422458, 46.387097], - [-114.431708, 46.310744], - [-114.441326, 46.2738], - [-114.449819, 46.237119], - [-114.445928, 46.173933], - [-114.514706, 46.167726], - [-114.5213, 46.125287], - [-114.460049, 46.097104], - [-114.480241, 46.030325], - [-114.441185, 45.988453], - [-114.402261, 45.961489], - [-114.413168, 45.911479], - [-114.388243, 45.88234], - [-114.422963, 45.855381], - [-114.517143, 45.835993], - [-114.562509, 45.779927], - [-114.504869, 45.722176], - [-114.499637, 45.669035], - [-114.53577, 45.650613], - [-114.538132, 45.606834], - [-114.523773044931, 45.5853265066066], - [-114.506341, 45.559216], - [-114.456764, 45.543983], - [-114.36852, 45.492716], - [-114.279217, 45.480616], - [-114.251836, 45.537812], - [-114.18647, 45.545539], - [-114.083149, 45.603996], - [-114.014973, 45.654008], - [-114.015633, 45.696127], - [-113.971565, 45.700636], - [-113.94832148257, 45.6825773584415], - [-113.898883, 45.644167], - [-113.861404, 45.62366], - [-113.806729, 45.602146], - [-113.802849, 45.523159], - [-113.759986, 45.480735], - [-113.763368, 45.427732], - [-113.73239, 45.385058], - [-113.735601, 45.325265], - [-113.650064, 45.23471], - [-113.57467, 45.128411], - [-113.510819, 45.099902], - [-113.45197, 45.059247], - [-113.437726, 45.006967], - [-113.448958, 44.953544], - [-113.474573, 44.910846], - [-113.422376, 44.842595], - [-113.377153, 44.834858], - [-113.301508, 44.798985], - [-113.247166, 44.82295], - [-113.131387, 44.764738], - [-113.101154, 44.708578], - [-113.049349, 44.62938], - [-113.061071, 44.577329], - [-113.006828, 44.518439], - [-113.006846, 44.471715], - [-112.951146, 44.416699], - [-112.881769, 44.380315], - [-112.826826881265, 44.4052024317675], - [-112.821896, 44.407436], - [-112.828191, 44.442472], - [-112.735084, 44.499159], - [-112.707815, 44.503023], - [-112.601863, 44.491015], - [-112.473207, 44.480027], - [-112.387389, 44.448058], - [-112.358917, 44.528847], - [-112.286187, 44.568472], - [-112.221698, 44.543519], - [-112.125101, 44.528527], - [-112.034133, 44.537716], - [-111.870504, 44.564033], - [-111.807914, 44.511716], - [-111.704218, 44.560205], - [-111.617107034305, 44.5571272484186], - [-111.562814, 44.555209], - [-111.519126, 44.582916], - [-111.468833, 44.679335], - [-111.456947232494, 44.6956407378395], - [-111.438793, 44.720546], - [-111.385005, 44.755128], - [-111.377138236735, 44.7511964139636], - [-111.323669, 44.724474], - [-111.26875, 44.668279], - [-111.224161, 44.623402], - [-111.201459, 44.575696], - [-111.143557, 44.535732], - [-111.122654, 44.493659], - [-111.048974, 44.474072], - [-111.049148, 44.374925], - [-111.048452, 44.114831], - [-111.047219183002, 43.9834312926077], - [-111.046515, 43.908376], - [-111.04611, 43.687848], - [-111.04536056097, 43.5010514511122], - [-111.044617, 43.31572], - [-111.044143, 43.072364], - [-111.044052705118, 43.019407032899], - [-111.043959, 42.96445], - [-111.043564, 42.722624], - [-111.045530292713, 42.5139128777751], - [-111.04708, 42.34942], - [-111.046689, 42.001567], - [-111.374129, 42.000893], - [-111.471381, 41.999739], - [-111.507806195687, 41.9996856783643], - [-111.507813035176, 41.9996856683522], - [-111.750778, 41.99933], - [-112.10944305582, 41.9975984294066], - [-112.109532, 41.997598], - [-112.15917745151, 41.9986819297378], - [-112.264936, 42.000991], - [-112.648019, 42.000307], - [-113.000040139624, 41.9982276125391], - [-113.000821, 41.998223], - [-113.249159, 41.996203], - [-113.496548, 41.993305], - [-113.817964, 41.98858], - [-114.041723, 41.99372], - [-114.28179946722, 41.9942138857579], - [-114.281855, 41.994214], - [-114.598267, 41.994511], - [-114.89921, 41.999909], - [-115.038109752434, 41.9986341156765], - [-115.313877, 41.996103], - [-115.625914, 41.997415], - [-115.870181, 41.996766], - [-116.332763, 41.997283], - [-116.625947, 41.997379], - [-117.018203216741, 41.9998398503691], - [-117.026197, 41.99989], - [-117.026551, 42.378557], - [-117.026253, 42.807447], - [-117.026652, 43.025128], - [-117.026889, 43.596033], - [-117.025663810446, 43.680293635954], - [-117.023577, 43.823811], - [-116.98554503849, 43.8811848528138], - [-116.976024, 43.895548], - [-116.959871, 43.982925], - [-116.937342, 44.029376], - [-116.977351, 44.085364], - [-116.897854677115, 44.1526663953914], - [-116.895931, 44.154295], - [-116.902752, 44.179467], - [-116.965498, 44.194126], - [-116.971958, 44.235677], - [-117.059352, 44.237244], - [-117.121037, 44.277585], - [-117.170342, 44.25889], - [-117.216974, 44.288357], - [-117.211995506953, 44.2964510959383], - [-117.192203, 44.32863], - [-117.216911, 44.360163], - [-117.243027, 44.390974] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "06", - "STATENS": "01779778", - "AFFGEOID": "0400000US06", - "GEOID": "06", - "ISOCODE": "US-CA", - "name": "California", - "LSAD": "00", - "ALAND": 403671756816, - "AWATER": 20293573058 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-118.593969, 33.467198], - [-118.484785, 33.487483], - [-118.370323, 33.409285], - [-118.286261, 33.351463], - [-118.325244, 33.299075], - [-118.374768, 33.320065], - [-118.465368, 33.326056], - [-118.482609, 33.369914], - [-118.563442, 33.434381], - [-118.593969, 33.467198] - ] - ], - [ - [ - [-118.594033, 33.035951], - [-118.540069, 32.980933], - [-118.446771, 32.895424], - [-118.353504, 32.821962], - [-118.425634, 32.800595], - [-118.487908, 32.84459], - [-118.581513, 32.931672], - [-118.641578, 33.017129], - [-118.594033, 33.035951] - ] - ], - [ - [ - [-119.578942, 33.278628], - [-119.510489, 33.307269], - [-119.427171, 33.266023], - [-119.429559, 33.228167], - [-119.464725, 33.215432], - [-119.545872, 33.233406], - [-119.578942, 33.278628] - ] - ], - [ - [ - [-119.916216, 34.058351], - [-119.857304, 34.071298], - [-119.739472, 34.049299], - [-119.5667, 34.053452], - [-119.470736656944, 34.053996622104], - [-119.442654, 34.054156], - [-119.364214, 34.050794], - [-119.363065, 34.000548], - [-119.391587, 33.994636], - [-119.487719557382, 33.9965151543893], - [-119.554472, 33.99782], - [-119.662825, 33.985889], - [-119.721206, 33.959583], - [-119.795938, 33.962929], - [-119.873358, 33.980375], - [-119.876916, 34.023527], - [-119.916216, 34.058351] - ] - ], - [ - [ - [-120.368278, 34.076465], - [-120.24248, 34.057172], - [-120.135853, 34.026087], - [-120.055107, 34.037729], - [-119.984316, 33.983948], - [-119.973691, 33.942481], - [-120.049682, 33.914563], - [-120.121817, 33.895712], - [-120.179049, 33.927994], - [-120.200085, 33.956904], - [-120.36484, 33.991781], - [-120.454134, 34.028081], - [-120.368278, 34.076465] - ] - ], - [ - [ - [-124.387023, 40.504954], - [-124.301355, 40.659643], - [-124.176715, 40.843618], - [-124.118147, 40.989263], - [-124.125448, 41.048504], - [-124.154513, 41.087159], - [-124.163988, 41.138675], - [-124.122677, 41.189726], - [-124.092284, 41.287695], - [-124.063076, 41.439579], - [-124.067473659422, 41.4647361884909], - [-124.081987, 41.547761], - [-124.116037, 41.628849], - [-124.143479, 41.709284], - [-124.154246, 41.728801], - [-124.19104, 41.736079], - [-124.245027, 41.7923], - [-124.219592, 41.846432], - [-124.203402, 41.940964], - [-124.211605, 41.99846], - [-124.001188, 41.996146], - [-123.822037598588, 41.995620816947], - [-123.656998, 41.995137], - [-123.519112836804, 41.9991725180329], - [-123.43477, 42.001641], - [-123.347562, 41.999108], - [-123.231001260578, 42.004970062256], - [-123.145959, 42.009247], - [-123.045254, 42.003049], - [-122.80008, 42.004071], - [-122.501135, 42.00846], - [-122.289749096157, 42.0077647304966], - [-122.289527, 42.007764], - [-122.101922, 42.005766], - [-121.846712, 42.00307], - [-121.675348, 42.000351], - [-121.447539998048, 41.9971900332726], - [-121.43961, 41.99708], - [-121.251099, 41.99757], - [-121.035195, 41.993323], - [-120.879925710236, 41.9934832599849], - [-120.692219, 41.993677], - [-120.501069, 41.993785], - [-120.181563, 41.994588], - [-119.999168, 41.99454], - [-119.999276, 41.874891], - [-119.99828, 41.618765], - [-119.999866, 41.183974], - [-119.999231, 40.865899], - [-119.997533, 40.720992], - [-119.996155, 40.32125], - [-119.997124, 40.126363], - [-119.997634, 39.956505], - [-119.999935448085, 39.7224069247242], - [-120.00174, 39.538852], - [-120.003028919657, 39.4450457761605], - [-120.004795512304, 39.3164750119585], - [-120.005142, 39.291258], - [-120.003364028833, 39.1656267640688], - [-120.002614842913, 39.1126893740958], - [-120.001975250867, 39.0674958744683], - [-120.001014, 38.999574], - [-119.904315, 38.933324], - [-119.587679, 38.714734], - [-119.585406144839, 38.7131509006712], - [-119.330366469799, 38.5355095158185], - [-119.279262, 38.499914], - [-119.155815824409, 38.4134036584505], - [-118.949673, 38.26894], - [-118.500958, 37.949019], - [-118.427995325157, 37.8962242809098], - [-118.022181, 37.602583], - [-117.833504044144, 37.4649387662445], - [-117.68061, 37.353399], - [-117.244917, 37.030244], - [-117.166000564031, 36.9712075385903], - [-117.000895, 36.847694], - [-116.488233, 36.459097], - [-116.375875, 36.372562], - [-116.093601, 36.155805], - [-115.892975, 35.999967], - [-115.846113922762, 35.9635526731109], - [-115.648032019625, 35.8096292126029], - [-115.647683, 35.809358], - [-115.404537, 35.617605], - [-115.303743, 35.538207], - [-115.160068, 35.424129], - [-115.043812, 35.332012], - [-114.804249, 35.139689], - [-114.633487, 35.001857], - [-114.629769, 34.94304], - [-114.634382, 34.87289], - [-114.576452, 34.8153], - [-114.490971, 34.724848], - [-114.465246, 34.691202], - [-114.422382, 34.580711], - [-114.378223, 34.516521], - [-114.378852, 34.450376], - [-114.335372, 34.450038], - [-114.264317, 34.401329], - [-114.172845, 34.344979], - [-114.14093, 34.305919], - [-114.14081715128, 34.3031275138817], - [-114.139055, 34.259538], - [-114.17805, 34.239969], - [-114.229715, 34.186928], - [-114.292806, 34.166725], - [-114.348052, 34.134458], - [-114.405941, 34.11154], - [-114.428026, 34.092787], - [-114.43009113852, 34.0789314062795], - [-114.435504, 34.042615], - [-114.454807, 34.010968], - [-114.509568, 33.957264], - [-114.534987, 33.928499], - [-114.508708, 33.90064], - [-114.505638, 33.864276], - [-114.520465, 33.827778], - [-114.504863, 33.760465], - [-114.496565, 33.719155], - [-114.504993, 33.693022], - [-114.525201, 33.661583], - [-114.529186, 33.60665], - [-114.524599, 33.552231], - [-114.597283, 33.490653], - [-114.629146518189, 33.4335449999998], - [-114.635183, 33.422726], - [-114.673901, 33.418299], - [-114.725282, 33.405048], - [-114.707348, 33.376628], - [-114.707962, 33.323421], - [-114.723259, 33.288079], - [-114.674491, 33.255597], - [-114.678097, 33.2303], - [-114.679359, 33.159519], - [-114.706175, 33.105335], - [-114.670803, 33.037984], - [-114.628293, 33.031052], - [-114.575161, 33.036542], - [-114.517492069319, 33.0247159744928], - [-114.511343, 33.023455], - [-114.481315, 32.972064], - [-114.47664, 32.923628], - [-114.463127, 32.901884], - [-114.468971, 32.845155], - [-114.531746, 32.782503], - [-114.570675, 32.747417], - [-114.617386523962, 32.7410527731766], - [-114.667493, 32.734226], - [-114.705717, 32.741581], - [-114.719633, 32.718763], - [-115.000802, 32.699676], - [-115.465164, 32.6671], - [-116.04662, 32.623353], - [-116.106171526176, 32.6185787329199], - [-116.540643, 32.583747], - [-116.62705, 32.576261], - [-116.857154, 32.557459], - [-117.124862, 32.534156], - [-117.132038955738, 32.5856011873821], - [-117.136664, 32.618754], - [-117.168866, 32.671952], - [-117.177325778289, 32.6770758949612], - [-117.196767, 32.688851], - [-117.246069, 32.669352], - [-117.255169, 32.700051], - [-117.25497, 32.786948], - [-117.280971, 32.822247], - [-117.28217, 32.839547], - [-117.27387, 32.851447], - [-117.262905, 32.849349], - [-117.25617, 32.859447], - [-117.256160535149, 32.8596735941017], - [-117.25447, 32.900146], - [-117.272139427178, 32.9755245825488], - [-117.28077, 33.012343], - [-117.315278, 33.093504], - [-117.362572, 33.168437], - [-117.445583, 33.268517], - [-117.547693, 33.365491], - [-117.59588, 33.386629], - [-117.596188685737, 33.3869649943199], - [-117.645582, 33.440728], - [-117.715349, 33.460556], - [-117.726486, 33.483427], - [-117.732258297614, 33.4879550239786], - [-117.814188, 33.552224], - [-117.840289, 33.573523], - [-117.927091, 33.605521], - [-118.000593, 33.654319], - [-118.088896, 33.729817], - [-118.115076722882, 33.743803322895], - [-118.132698, 33.753217], - [-118.1837, 33.736118], - [-118.231926185034, 33.7152954681899], - [-118.258687, 33.703741], - [-118.317205, 33.712818], - [-118.333295024316, 33.721184383577], - [-118.354705, 33.732317], - [-118.396606, 33.735917], - [-118.428407, 33.774715], - [-118.394307, 33.804315], - [-118.412708, 33.883913], - [-118.460611, 33.969111], - [-118.519514, 34.027509], - [-118.603572, 34.039048], - [-118.679366, 34.033255], - [-118.744952, 34.032103], - [-118.805114, 34.001239], - [-118.854653, 34.034215], - [-118.944479511459, 34.046738953351], - [-118.954722, 34.048167], - [-119.069959, 34.09047], - [-119.109784, 34.094566], - [-119.227743, 34.161728], - [-119.257043, 34.213304], - [-119.270144, 34.252903], - [-119.276614251859, 34.2563404250143], - [-119.313034, 34.275689], - [-119.37578, 34.321118], - [-119.461036, 34.374064], - [-119.477946706724, 34.3788375587756], - [-119.536957, 34.395495], - [-119.616862, 34.420995], - [-119.684666, 34.408297], - [-119.709067, 34.395397], - [-119.785871, 34.415997], - [-119.835771, 34.415796], - [-119.873971, 34.408795], - [-119.971951, 34.444641], - [-120.050682, 34.461651], - [-120.141165, 34.473405], - [-120.295051, 34.470623], - [-120.451425, 34.447094], - [-120.511421, 34.522953], - [-120.550092, 34.542794], - [-120.581293, 34.556959], - [-120.622575, 34.554017], - [-120.645739, 34.581035], - [-120.60197, 34.692095], - [-120.614852, 34.730709], - [-120.62632, 34.738072], - [-120.610266, 34.85818], - [-120.670835, 34.904115], - [-120.65030521184, 34.9751663022687], - [-120.63357, 35.033085], - [-120.629583, 35.078362], - [-120.635787, 35.123805], - [-120.675074, 35.153061], - [-120.714185, 35.175998], - [-120.756086, 35.160459], - [-120.846674, 35.204429], - [-120.89679, 35.247877], - [-120.87957, 35.294184], - [-120.862133, 35.360763], - [-120.884757, 35.430196], - [-120.955863, 35.453743], - [-121.003359, 35.46071], - [-121.11424, 35.57172], - [-121.166712, 35.635399], - [-121.272322, 35.666711], - [-121.314632, 35.71331], - [-121.332449, 35.783106], - [-121.347053956004, 35.7951862038146], - [-121.406823, 35.844623], - [-121.462264, 35.885618], - [-121.4862, 35.970348], - [-121.531876, 36.014368], - [-121.574602, 36.025156], - [-121.622009, 36.099695], - [-121.680145, 36.165818], - [-121.779851, 36.227407], - [-121.826425, 36.24186], - [-121.888491, 36.30281], - [-121.903195, 36.393603], - [-121.9416, 36.485602], - [-121.970427, 36.582754], - [-121.923866, 36.634559], - [-121.860604, 36.611136], - [-121.814462, 36.682858], - [-121.796826, 36.777543], - [-121.791544, 36.815186], - [-121.812732426762, 36.8500494437455], - [-121.862266, 36.931552], - [-121.906468, 36.96895], - [-121.95167, 36.97145], - [-122.027174, 36.95115], - [-122.06731672906, 36.9535956897314], - [-122.105976, 36.955951], - [-122.20618, 37.013949], - [-122.260481, 37.072548], - [-122.284882, 37.101747], - [-122.294310191913, 37.1051413867181], - [-122.322971, 37.11546], - [-122.344029, 37.144099], - [-122.397065, 37.187249], - [-122.418452, 37.248521], - [-122.405590143901, 37.3149650377439], - [-122.401323, 37.337009], - [-122.409258, 37.374805], - [-122.443687, 37.435941], - [-122.445987, 37.461541], - [-122.493789, 37.492341], - [-122.516689, 37.52134], - [-122.518088, 37.576138], - [-122.496786, 37.612136], - [-122.496784, 37.686433], - [-122.500678019083, 37.7081325680179], - [-122.505601251345, 37.7355674652407], - [-122.511983, 37.77113], - [-122.465396, 37.800879], - [-122.398139, 37.80563], - [-122.385323, 37.790724], - [-122.376462, 37.738558], - [-122.356784, 37.729505], - [-122.361749, 37.71501], - [-122.389826876588, 37.708331], - [-122.39319, 37.707531], - [-122.360219, 37.592501], - [-122.244372, 37.55814], - [-122.168449, 37.504143], - [-122.129199702224, 37.5213219985908], - [-122.111998, 37.528851], - [-122.144396, 37.581866], - [-122.152905, 37.640771], - [-122.162802507492, 37.6672729813177], - [-122.163049, 37.667933], - [-122.213774, 37.698695], - [-122.24981, 37.726406], - [-122.252452, 37.755129], - [-122.312974, 37.777244], - [-122.333711, 37.809797], - [-122.303931, 37.830087], - [-122.328714287407, 37.8938323463208], - [-122.33453, 37.908791], - [-122.378709, 37.905191], - [-122.425258, 37.955672], - [-122.367582, 37.978168], - [-122.368891, 38.007948], - [-122.342803852188, 38.0092538777817], - [-122.321706, 38.01031], - [-122.262861, 38.051473], - [-122.269320054917, 38.0603744975312], - [-122.301804, 38.105142], - [-122.393588, 38.143449], - [-122.397581230624, 38.1420035972533], - [-122.488499639259, 38.1090944743082], - [-122.491283, 38.108087], - [-122.499465, 38.032165], - [-122.452995, 37.996167], - [-122.488665, 37.966714], - [-122.486375, 37.921881], - [-122.448413, 37.89341], - [-122.41847, 37.852721], - [-122.483483, 37.826728], - [-122.537285, 37.830328], - [-122.60129, 37.875126], - [-122.678474, 37.906604], - [-122.70264, 37.89382], - [-122.754606, 37.935527], - [-122.797405, 37.976657], - [-122.856573, 38.016717], - [-122.939711, 38.031908], - [-122.97439, 37.992429], - [-123.011533, 38.003438], - [-122.960889, 38.112962], - [-122.953629, 38.17567], - [-122.987149, 38.237538], - [-122.986319, 38.273164], - [-123.003146477056, 38.2957052387145], - [-123.004122, 38.297012], - [-123.053504, 38.299385], - [-123.068437, 38.33521], - [-123.085572, 38.390525], - [-123.166428, 38.474947], - [-123.249797, 38.511045], - [-123.331899, 38.565542], - [-123.349612, 38.596805], - [-123.441774, 38.699744], - [-123.514784, 38.741966], - [-123.540922011634, 38.7676562160393], - [-123.571987, 38.798189], - [-123.638637, 38.843865], - [-123.659846, 38.872529], - [-123.71054, 38.91323], - [-123.732892, 38.954994], - [-123.69074, 39.021293], - [-123.721505, 39.125327], - [-123.765891, 39.193657], - [-123.798991, 39.271355], - [-123.825331, 39.360814], - [-123.81469, 39.446538], - [-123.766475, 39.552803], - [-123.782322, 39.621486], - [-123.792659, 39.684122], - [-123.829545, 39.723071], - [-123.851714, 39.832041], - [-123.907664, 39.863028], - [-123.954952, 39.922373], - [-124.02520517453, 40.001299341669], - [-124.035904, 40.013319], - [-124.068908, 40.021307], - [-124.087086, 40.078442], - [-124.139952, 40.11635], - [-124.187874, 40.130542], - [-124.258405, 40.184277], - [-124.34307, 40.243979], - [-124.363414, 40.260974], - [-124.353124, 40.331425], - [-124.365357, 40.374855], - [-124.409591, 40.438076], - [-124.387023, 40.504954] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "09", - "STATENS": "01779780", - "AFFGEOID": "0400000US09", - "GEOID": "09", - "ISOCODE": "US-CT", - "name": "Connecticut", - "LSAD": "00", - "ALAND": 12541690473, - "AWATER": 1816424193 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-73.6959358021696, 41.1152554569041], - [-73.482709, 41.21276], - [-73.550961, 41.295422], - [-73.5441352908263, 41.3664850865317], - [-73.5433065806917, 41.3751128640277], - [-73.5431832079963, 41.3763973085168], - [-73.5431473462655, 41.3767706682974], - [-73.536969, 41.441094], - [-73.5296777143013, 41.5271610211283], - [-73.520017, 41.641197], - [-73.5179187906382, 41.66672053071], - [-73.505008, 41.823773], - [-73.487314, 42.049638], - [-73.231056, 42.044945], - [-73.1272291708784, 42.0421231483548], - [-73.053397149764, 42.0401165089147], - [-73.0087627816307, 42.0389034162467], - [-72.999549, 42.038653], - [-72.847142, 42.036894], - [-72.810078, 41.998316], - [-72.7747593160786, 42.0021291041803], - [-72.766739, 42.002995], - [-72.735496, 42.036399], - [-72.607933, 42.030795], - [-72.528131, 42.034295], - [-72.5091793362983, 42.0340804965901], - [-72.3974762551959, 42.0328161911358], - [-72.317148, 42.031907], - [-72.198845978132, 42.030103893282], - [-72.1357314619467, 42.0291419299416], - [-72.1021594345268, 42.0286302400548], - [-71.987326, 42.02688], - [-71.8846768359037, 42.0250593514843], - [-71.80065, 42.023569], - [-71.799242, 42.008065], - [-71.792767, 41.807001], - [-71.7896954316824, 41.7251982448091], - [-71.789678, 41.724734], - [-71.789464590839, 41.6400171907069], - [-71.789356, 41.59691], - [-71.7893586727423, 41.5968521603427], - [-71.7976736925498, 41.4169104184967], - [-71.797683, 41.416709], - [-71.839649, 41.412119], - [-71.835951, 41.353935], - [-71.860513, 41.320248], - [-71.886302, 41.33641], - [-71.956747, 41.329871], - [-72.021898, 41.316838], - [-72.094443, 41.314164], - [-72.134221, 41.299398], - [-72.201422, 41.315697], - [-72.235531, 41.300413], - [-72.293044, 41.280044], - [-72.3400129087019, 41.2778492622384], - [-72.348643, 41.277446], - [-72.386629, 41.261798], - [-72.40593, 41.278398], - [-72.472539, 41.270103], - [-72.5345648971681, 41.2538242743911], - [-72.547235, 41.250499], - [-72.598036, 41.268698], - [-72.653838, 41.265897], - [-72.6543540201512, 41.2656263083002], - [-72.690439, 41.246697], - [-72.760341, 41.241235], - [-72.786142, 41.264796], - [-72.881445, 41.242597], - [-72.9039337600629, 41.2491941344625], - [-72.935646, 41.258497], - [-72.9705054154992, 41.2412743089963], - [-72.9848408127547, 41.234191742814], - [-72.986247, 41.233497], - [-73.020449, 41.206397], - [-73.07945, 41.194015], - [-73.1011738216445, 41.1637262711643], - [-73.108352, 41.153718], - [-73.130253, 41.146797], - [-73.1728353651274, 41.1534422791124], - [-73.202656, 41.158096], - [-73.262358, 41.117496], - [-73.2698175797685, 41.1166768900433], - [-73.297214389349, 41.1136685437012], - [-73.33066, 41.109996], - [-73.372296, 41.10402], - [-73.354231, 41.085639], - [-73.387227, 41.058247], - [-73.422165, 41.047562], - [-73.468239, 41.051347], - [-73.516903, 41.038738], - [-73.561968, 41.016797], - [-73.595699, 41.015995], - [-73.657336, 40.985171], - [-73.6573740092614, 40.9855248838592], - [-73.659362, 41.004034], - [-73.659533, 41.017857], - [-73.727775, 41.100696], - [-73.6959358021696, 41.1152554569041] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "48", - "STATENS": "01779801", - "AFFGEOID": "0400000US48", - "GEOID": "48", - "ISOCODE": "US-TX", - "name": "Texas", - "LSAD": "00", - "ALAND": 676681550479, - "AWATER": 18978390713 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-106.623445, 31.914034], - [-106.630114, 31.971258], - [-106.618486, 32.000495], - [-106.377173188247, 32.0012401010375], - [-106.200699, 32.001785], - [-105.997971151664, 32.001974590699], - [-105.750527, 32.002206], - [-105.153994, 32.000497], - [-104.91835699428, 32.0004720730735], - [-104.84774, 32.000464602835], - [-104.643526, 32.000443], - [-104.024521, 32.00001], - [-103.980213477381, 32.0000328513626], - [-103.722881979148, 32.0001655686764], - [-103.326501, 32.00037], - [-103.064423, 32.000518], - [-103.064422401106, 32.087051], - [-103.064422, 32.145006], - [-103.064696, 32.522193], - [-103.064761, 32.587983], - [-103.064889, 32.849359], - [-103.063468888475, 32.9591063818305], - [-103.060103, 33.219225], - [-103.056495064338, 33.3884142146206], - [-103.052610516564, 33.5705747764422], - [-103.05261, 33.570599], - [-103.047346, 33.824675], - [-103.043516, 34.079382], - [-103.043563920791, 34.1128343897554], - [-103.043835830165, 34.302648], - [-103.043850301172, 34.3127498735079], - [-103.043946, 34.379555], - [-103.043072, 34.619782], - [-103.042769, 34.747361], - [-103.042738818608, 34.9541420403614], - [-103.042711, 35.144735], - [-103.042617950565, 35.1831572590084], - [-103.041554, 35.622487], - [-103.041356721818, 35.7394335063487], - [-103.040824, 36.055231], - [-103.041924, 36.500439], - [-103.002434, 36.500397], - [-102.162463, 36.500326], - [-102.032339018963, 36.5000656730101], - [-101.826565, 36.499654], - [-101.623915, 36.499528], - [-101.085156, 36.499244], - [-100.954152157693, 36.4995294966262], - [-100.884174, 36.499682], - [-100.592614, 36.499469], - [-100.546145126097, 36.4995051393038], - [-100.311018, 36.499688], - [-100.003761993368, 36.4997018487376], - [-100.000406, 36.499702], - [-100.000399, 36.055677], - [-100.000396202899, 35.8812329999967], - [-100.000392, 35.619115], - [-100.000388844143, 35.4223639883094], - [-100.000385, 35.182702], - [-100.000384017848, 35.0299299999999], - [-100.000382194816, 34.7463605525616], - [-100.000381, 34.560509], - [-99.997629328163, 34.5611366245601], - [-99.929334, 34.576714], - [-99.8420638841464, 34.5069327688814], - [-99.818186, 34.48784], - [-99.764882, 34.435266], - [-99.696462, 34.381036], - [-99.600026, 34.374688], - [-99.58448, 34.407673], - [-99.4750221370384, 34.3968709897905], - [-99.470969, 34.396471], - [-99.420432, 34.380464], - [-99.394956, 34.442099], - [-99.350407, 34.437083], - [-99.27534, 34.386599], - [-99.2216079008455, 34.3253735743726], - [-99.2116, 34.31397], - [-99.189511, 34.214312], - [-99.131553, 34.209352], - [-99.0588, 34.201256], - [-99.002916, 34.208782], - [-98.9523248875282, 34.2046698986035], - [-98.94022, 34.203686], - [-98.872229, 34.160446], - [-98.80681, 34.155901], - [-98.737232, 34.130992], - [-98.690072, 34.133155], - [-98.648073, 34.164441], - [-98.6102002179226, 34.1561768671247], - [-98.577136, 34.148962], - [-98.5282, 34.094961], - [-98.475066, 34.064269], - [-98.423533, 34.0819494760059], - [-98.414426, 34.085074], - [-98.398441, 34.128456], - [-98.364023, 34.157109], - [-98.31875, 34.146421], - [-98.225282, 34.127245], - [-98.16912, 34.114171], - [-98.1384860257464, 34.1412060197111], - [-98.123377, 34.15454], - [-98.099328, 34.104295], - [-98.099096, 34.048639], - [-98.082839, 34.002412], - [-98.005667, 33.995964], - [-97.947572, 33.991053], - [-97.953695, 33.924373], - [-97.9519059508552, 33.8912258148573], - [-97.951215, 33.878424], - [-97.865765, 33.849393], - [-97.803473, 33.88019], - [-97.759834, 33.92521], - [-97.671772, 33.99137], - [-97.609091, 33.968093], - [-97.596155, 33.922106], - [-97.5612431502211, 33.899061506733], - [-97.55827, 33.897099], - [-97.486505, 33.916994], - [-97.4841434385876, 33.9138891088909], - [-97.451469, 33.87093], - [-97.444193, 33.823773], - [-97.372941, 33.819454], - [-97.318243, 33.865121], - [-97.24618, 33.900344], - [-97.206141, 33.91428], - [-97.166629, 33.847311], - [-97.205652, 33.809824], - [-97.149394, 33.721967], - [-97.091072, 33.735115], - [-97.087852, 33.774099], - [-97.07859, 33.812756], - [-97.055838, 33.855741], - [-96.985567, 33.886522], - [-96.988745, 33.918468], - [-96.952313, 33.944582], - [-96.9446168883705, 33.945013250454], - [-96.934343303133, 33.9455889292528], - [-96.905253, 33.947219], - [-96.897194, 33.902954], - [-96.850593, 33.847211], - [-96.794276, 33.868886], - [-96.776766, 33.841976], - [-96.712422, 33.831633], - [-96.682103, 33.876645], - [-96.659896, 33.916666], - [-96.5946743073771, 33.8830186573983], - [-96.590112, 33.880665], - [-96.592926, 33.830916], - [-96.572937, 33.819098], - [-96.523863, 33.818114], - [-96.502286, 33.77346], - [-96.436455, 33.78005], - [-96.403507, 33.746289], - [-96.3796608259521, 33.715530908566], - [-96.363135, 33.694215], - [-96.307389, 33.735005], - [-96.277269, 33.769735], - [-96.229023, 33.748021], - [-96.173025, 33.80056], - [-96.15163, 33.831946], - [-96.063924, 33.841523], - [-95.935325, 33.875099], - [-95.887491, 33.863856], - [-95.8448785340707, 33.860421904719], - [-95.820596, 33.858465], - [-95.7896393177523, 33.8724373846723], - [-95.737508, 33.895967], - [-95.669978, 33.905844], - [-95.603657, 33.927195], - [-95.556915, 33.92702], - [-95.525322, 33.885487], - [-95.44737, 33.86885], - [-95.352338, 33.867789], - [-95.3104497954491, 33.8738430381855], - [-95.283445, 33.877746], - [-95.253623, 33.92971], - [-95.226393, 33.961954], - [-95.1559076171075, 33.9384823885698], - [-95.149462, 33.936336], - [-95.095002, 33.904816], - [-95.046568, 33.862565], - [-94.98165, 33.852284], - [-94.93956, 33.810503], - [-94.902276, 33.776289], - [-94.841634, 33.739431], - [-94.766146, 33.748031], - [-94.7319329019959, 33.7208305162803], - [-94.714865, 33.707261], - [-94.630586, 33.673401], - [-94.572872, 33.669886], - [-94.528928, 33.62184], - [-94.485875, 33.637867], - [-94.419057, 33.577217], - [-94.388052, 33.565511], - [-94.354165, 33.556452], - [-94.338422, 33.567082], - [-94.303742, 33.564486], - [-94.238868, 33.576722], - [-94.213605, 33.570622], - [-94.183395, 33.592212], - [-94.143024, 33.577725], - [-94.07267, 33.572234], - [-94.043428, 33.551425], - [-94.042988, 33.435824], - [-94.043067, 33.330498], - [-94.0429458450603, 33.2712410493864], - [-94.042719, 33.160291], - [-94.042964, 33.019219], - [-94.0430026215633, 32.881088978924], - [-94.043026, 32.797476], - [-94.0430515276176, 32.6930299766656], - [-94.043083, 32.564261], - [-94.0427882328053, 32.3922831932812], - [-94.042739, 32.363559], - [-94.0426959391654, 32.1960649748209], - [-94.042681, 32.137956], - [-94.041833, 31.992402], - [-94.029428406596, 31.979686964168], - [-93.977461, 31.926419], - [-93.909557, 31.893144], - [-93.8782518953866, 31.8442765572456], - [-93.85339, 31.805467], - [-93.803419, 31.700686], - [-93.816838, 31.622509], - [-93.834924, 31.586211], - [-93.787687, 31.527344], - [-93.725925, 31.504092], - [-93.749476, 31.46869], - [-93.697603, 31.428409], - [-93.668146, 31.375103], - [-93.67544, 31.30104], - [-93.613942, 31.259375], - [-93.602443, 31.182541], - [-93.6006030873629, 31.1826249552688], - [-93.5524973075023, 31.1848200234468], - [-93.535097, 31.185614], - [-93.540278, 31.128868], - [-93.531219, 31.051678], - [-93.539526, 31.008498], - [-93.549841, 30.967118], - [-93.530936, 30.924534], - [-93.5545758543455, 30.8774695018611], - [-93.558617, 30.869424], - [-93.569303, 30.802969], - [-93.617688, 30.738479], - [-93.629904, 30.67994], - [-93.685121, 30.625201], - [-93.684329, 30.592586], - [-93.729195, 30.544842], - [-93.710117, 30.5064], - [-93.702665, 30.429947], - [-93.7381729998702, 30.4025470540047], - [-93.745333, 30.397022], - [-93.760328, 30.329924], - [-93.70719, 30.275513], - [-93.7110621713009, 30.2439707156403], - [-93.713359, 30.225261], - [-93.703764, 30.173936], - [-93.702436, 30.112721], - [-93.70394, 30.054291], - [-93.7061835663174, 30.0523143321691], - [-93.741078, 30.021571], - [-93.807815, 29.954549], - [-93.830374, 29.894359], - [-93.8523098709223, 29.8720910043919], - [-93.872446, 29.85165], - [-93.929208, 29.802952], - [-93.890821, 29.761673], - [-93.863204, 29.724059], - [-93.837971, 29.690619], - [-93.861291, 29.679007], - [-93.961867, 29.682213], - [-94.056506, 29.671163], - [-94.161549, 29.636588], - [-94.3541225449137, 29.5621028201748], - [-94.370816, 29.555645988295], - [-94.500807, 29.505367], - [-94.594853, 29.467903], - [-94.670389, 29.43078], - [-94.731047, 29.369141], - [-94.72253, 29.331446], - [-94.803695, 29.279237], - [-95.026219, 29.148064], - [-95.1150505055983, 29.0755520224787], - [-95.125134, 29.067321], - [-95.191391, 29.02309], - [-95.297147, 28.934073], - [-95.38239, 28.866348], - [-95.439594, 28.859022], - [-95.507037396917, 28.8247355121921], - [-95.588801, 28.783169], - [-95.684089, 28.734041], - [-95.812504, 28.664942], - [-96.000682, 28.588238], - [-96.194412, 28.502224], - [-96.328817, 28.423659], - [-96.3785331592868, 28.3898650304879], - [-96.390376, 28.381815], - [-96.442849, 28.317666], - [-96.63201, 28.222821], - [-96.719627, 28.164594], - [-96.792158, 28.110497], - [-96.8520706227301, 28.0598208616046], - [-96.886459, 28.030734], - [-97.003325, 27.908307], - [-97.0436840836865, 27.8365323534718], - [-97.044846, 27.834466], - [-97.090735, 27.785888], - [-97.140854, 27.716688], - [-97.212679, 27.59642], - [-97.2229914075318, 27.5766073164796], - [-97.257325, 27.510644], - [-97.296057, 27.427175], - [-97.336122, 27.317818], - [-97.3468508769557, 27.2779588322095], - [-97.358469, 27.234796], - [-97.378697, 27.060044], - [-97.366872, 26.885581], - [-97.32275, 26.701746], - [-97.2875411166858, 26.6003398814733], - [-97.253801, 26.503164], - [-97.2272884780129, 26.4111776799575], - [-97.196935, 26.305865], - [-97.158798, 26.08266], - [-97.151922, 26.017653], - [-97.145567, 25.971132], - [-97.156608, 25.949022], - [-97.206945, 25.960899], - [-97.277163, 25.935438], - [-97.338346, 25.923125], - [-97.365976, 25.902447], - [-97.360082, 25.868874], - [-97.372864, 25.840117], - [-97.422636, 25.840378], - [-97.454727, 25.879337], - [-97.496861, 25.880058], - [-97.542957, 25.920035], - [-97.582565, 25.937857], - [-97.644011, 26.006614], - [-97.697069, 26.023455], - [-97.758838, 26.032131], - [-97.795291, 26.055218], - [-97.8622815631063, 26.0577468284402], - [-97.871187, 26.058083], - [-97.944345, 26.059621], - [-98.010971, 26.063863], - [-98.039239, 26.041275], - [-98.091038, 26.059169], - [-98.149463, 26.055813], - [-98.197046, 26.056153], - [-98.2049539555924, 26.0587423360004], - [-98.248806, 26.073101], - [-98.302979, 26.11005], - [-98.3082001170459, 26.1130325510287], - [-98.386694, 26.157872], - [-98.442536, 26.199151], - [-98.503492, 26.214798], - [-98.576188, 26.235221], - [-98.5933002182792, 26.2429363486766], - [-98.613465, 26.252028], - [-98.654221, 26.23596], - [-98.698856, 26.265619], - [-98.779912, 26.326542], - [-98.807348, 26.369421], - [-98.890965, 26.357569], - [-98.958325, 26.394056], - [-99.032316, 26.412082], - [-99.082002, 26.39651], - [-99.110855, 26.426278], - [-99.091635, 26.476977], - [-99.105031, 26.500335], - [-99.171404, 26.549848], - [-99.1768160923811, 26.5696605553736], - [-99.200522, 26.656443], - [-99.208907, 26.724761], - [-99.242444, 26.788262], - [-99.268613, 26.843213], - [-99.3289, 26.879761], - [-99.361144, 26.928921], - [-99.387367, 26.982399], - [-99.44697, 27.026026], - [-99.442123, 27.106839], - [-99.429984, 27.159149], - [-99.445238, 27.223341], - [-99.4608257991343, 27.2622401970428], - [-99.463309, 27.268437], - [-99.487937, 27.294941], - [-99.529654, 27.306051], - [-99.487521, 27.412396], - [-99.495104, 27.451518], - [-99.497519, 27.500496], - [-99.52832, 27.498896], - [-99.530138, 27.580207], - [-99.556812, 27.614336], - [-99.624515, 27.634515], - [-99.704601, 27.654954], - [-99.758534, 27.717071], - [-99.801651, 27.741771], - [-99.844737, 27.778809], - [-99.87784, 27.824376], - [-99.904385, 27.875284], - [-99.917461, 27.917973], - [-99.932161, 27.96771], - [-99.984923, 27.990729], - [-100.028725, 28.073118], - [-100.075474, 28.124882], - [-100.174413, 28.179448], - [-100.197510055501, 28.1970007311399], - [-100.267604, 28.250269], - [-100.287554, 28.301093], - [-100.320393, 28.362117], - [-100.337059, 28.427151], - [-100.368288, 28.477196], - [-100.38886, 28.515748], - [-100.39727, 28.575637], - [-100.448648, 28.616774], - [-100.500354, 28.66196], - [-100.506701, 28.716745], - [-100.533017, 28.76328], - [-100.53583, 28.805888], - [-100.576846, 28.836168], - [-100.627206, 28.903734], - [-100.646993, 28.957079], - [-100.660208, 29.031497], - [-100.671215189194, 29.0835160253445], - [-100.674656, 29.099777], - [-100.727462, 29.129123], - [-100.772649, 29.168492], - [-100.795681, 29.22773], - [-100.801867546029, 29.232831568098], - [-100.848664, 29.271421], - [-100.886842, 29.307848], - [-100.995607, 29.363403], - [-101.060151, 29.458661], - [-101.137503, 29.473542], - [-101.19272, 29.520285], - [-101.254895, 29.520342], - [-101.305533, 29.577925], - [-101.307332, 29.640716], - [-101.367198, 29.664041], - [-101.400636, 29.738079], - [-101.453499, 29.759671], - [-101.503223, 29.764582], - [-101.561569, 29.794658], - [-101.654578, 29.765163], - [-101.714224, 29.76766], - [-101.761619209528, 29.7788600967222], - [-101.809441, 29.790161], - [-101.8754, 29.794023], - [-101.966167, 29.807343], - [-102.021919, 29.802491], - [-102.073646, 29.786926], - [-102.115682, 29.79239], - [-102.161674, 29.819487], - [-102.227553, 29.843534], - [-102.301381, 29.877674], - [-102.318683954588, 29.8721929465015], - [-102.349861, 29.862317], - [-102.369522, 29.820395], - [-102.392906, 29.765569], - [-102.468946, 29.779817], - [-102.512687, 29.780303], - [-102.551081, 29.752358], - [-102.612879, 29.748182], - [-102.677192, 29.738261], - [-102.693466, 29.676507], - [-102.738428, 29.621929], - [-102.777531, 29.556497], - [-102.808692, 29.522319], - [-102.83097, 29.444267], - [-102.824564, 29.399558], - [-102.871857, 29.352093], - [-102.891022, 29.287113], - [-102.871347, 29.241625], - [-102.917805, 29.190697], - [-102.995688, 29.161219], - [-103.035683, 29.103029], - [-103.076355, 29.085722], - [-103.100368, 29.026877], - [-103.126748, 28.982124], - [-103.227801, 28.991532], - [-103.28119, 28.982138], - [-103.361998, 29.018914], - [-103.463196, 29.066822], - [-103.524613, 29.120998], - [-103.59236, 29.15026], - [-103.660203, 29.170934], - [-103.724743, 29.19147], - [-103.789034, 29.257502], - [-103.793873010934, 29.2592383933486], - [-103.856893, 29.281852], - [-103.975235, 29.296017], - [-104.055596, 29.33091], - [-104.143692, 29.383278], - [-104.181273, 29.426265], - [-104.229081, 29.48105], - [-104.308813, 29.524337], - [-104.371175, 29.543063], - [-104.452301, 29.60366], - [-104.539761, 29.676074], - [-104.565688, 29.770462], - [-104.619039, 29.844445], - [-104.672327, 29.911112], - [-104.685479, 29.989943], - [-104.703998, 30.02421], - [-104.692094, 30.107304], - [-104.702788, 30.211736], - [-104.740448, 30.259454], - [-104.761634, 30.301148], - [-104.824314, 30.370466], - [-104.859521, 30.390413], - [-104.869872, 30.458645], - [-104.889376, 30.535144], - [-104.924796, 30.604832], - [-104.972071, 30.61026], - [-104.980753891325, 30.6288120187883], - [-105.00124, 30.672583], - [-105.062334, 30.686303], - [-105.098282, 30.718914], - [-105.160153, 30.757059], - [-105.21866, 30.801567], - [-105.314863, 30.816961], - [-105.394242, 30.852979], - [-105.399609, 30.888941], - [-105.488027, 30.943278], - [-105.55743, 30.990229], - [-105.579542, 31.035396], - [-105.627349, 31.098545], - [-105.709491, 31.136375], - [-105.773257, 31.166897], - [-105.794386, 31.20224], - [-105.869353, 31.288634], - [-105.938452, 31.318735], - [-105.953943, 31.364749], - [-105.996429378287, 31.3878401295126], - [-106.004926, 31.392458], - [-106.080258, 31.398702], - [-106.175675, 31.456279], - [-106.236804, 31.513376], - [-106.280811, 31.562062], - [-106.303536, 31.620413], - [-106.352610998498, 31.6869464165036], - [-106.370139, 31.71071], - [-106.41794, 31.752009], - [-106.467642, 31.759608], - [-106.484642, 31.747809], - [-106.528242, 31.783148], - [-106.581344, 31.813906], - [-106.63588, 31.871514], - [-106.623445, 31.914034] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "51", - "STATENS": "01779803", - "AFFGEOID": "0400000US51", - "GEOID": "51", - "ISOCODE": "US-VA", - "name": "Virginia", - "LSAD": "00", - "ALAND": 102258210137, - "AWATER": 8528040726 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-76.023475, 37.289067], - [-75.987122, 37.368548], - [-75.976491, 37.444878], - [-75.9455743189307, 37.5490406581517], - [-75.941182, 37.563839], - [-75.898665, 37.635425], - [-75.859262, 37.703111], - [-75.812155, 37.749502], - [-75.818125, 37.791698], - [-75.73588, 37.816561], - [-75.702914, 37.849659], - [-75.757694, 37.903912], - [-75.669711, 37.950796], - [-75.624341, 37.994211], - [-75.242266, 38.027209], - [-75.338623, 37.894986], - [-75.380638, 37.851702], - [-75.439001, 37.869335], - [-75.48927, 37.832457], - [-75.551898, 37.748122], - [-75.591953, 37.663178], - [-75.614527, 37.609296], - [-75.607824, 37.560706], - [-75.672877, 37.483696], - [-75.6654179108751, 37.4672935154925], - [-75.658379, 37.451815], - [-75.720739, 37.373129], - [-75.735829, 37.335426], - [-75.778817, 37.297176], - [-75.795164, 37.247095], - [-75.817387, 37.193437], - [-75.897298, 37.118037], - [-75.942399, 37.089607], - [-75.979608, 37.100448], - [-75.998647, 37.188739], - [-76.023475, 37.289067] - ] - ], - [ - [ - [-83.614513, 36.633983], - [-83.527112, 36.665985], - [-83.4609546474638, 36.6661310362733], - [-83.436508, 36.666185], - [-83.386099, 36.686589], - [-83.236399, 36.726887], - [-83.136395, 36.743088], - [-83.114693, 36.796088], - [-83.07559, 36.850589], - [-83.012587, 36.847289], - [-82.895445, 36.882145], - [-82.8837542129764, 36.8971301366542], - [-82.865192, 36.920923], - [-82.869183, 36.974182], - [-82.815748, 37.007196], - [-82.750715, 37.024107], - [-82.722254, 37.057948], - [-82.726294, 37.111852], - [-82.565275702797, 37.1959011068831], - [-82.558178, 37.199606], - [-82.5536395449037, 37.2014503744627], - [-82.449164, 37.243908], - [-82.355343, 37.26522], - [-82.3143704529296, 37.2963062518554], - [-82.309415, 37.300066], - [-82.201745, 37.375108], - [-81.968297, 37.537798], - [-81.932279, 37.511961], - [-81.984891, 37.454315], - [-81.93695, 37.41992], - [-81.933601, 37.389217], - [-81.896001, 37.331967], - [-81.849949, 37.285227], - [-81.774747, 37.274847], - [-81.744003, 37.242528], - [-81.7390550304855, 37.2394971038728], - [-81.678603, 37.202467], - [-81.560625, 37.206663], - [-81.53307, 37.223414], - [-81.483559, 37.250604], - [-81.427946, 37.271015], - [-81.362156, 37.337687], - [-81.225104, 37.234874], - [-81.112596, 37.278497], - [-80.996013, 37.299545], - [-80.9808452568928, 37.3008528161905], - [-80.919259, 37.306163], - [-80.835479, 37.334824], - [-80.883248, 37.383933], - [-80.865148, 37.419927], - [-80.8581481168198, 37.4210069067215], - [-80.8573585701898, 37.421128713999], - [-80.836446, 37.424355], - [-80.770082, 37.372363], - [-80.664971, 37.414215], - [-80.544836, 37.474695], - [-80.4695688905042, 37.4290254659927], - [-80.46482, 37.426144], - [-80.39988, 37.462314], - [-80.291644, 37.536505], - [-80.28244, 37.585481], - [-80.223386, 37.623185], - [-80.2243032443768, 37.6239913711709], - [-80.292258, 37.683732], - [-80.290033810255, 37.686136458971], - [-80.258143, 37.720612], - [-80.218616, 37.783291], - [-80.199633, 37.827507], - [-80.131931, 37.8895], - [-80.0558115945897, 37.9518782200979], - [-80.036236, 37.96792], - [-79.971231, 38.044326], - [-79.9619822726354, 38.0636070994933], - [-79.938952, 38.111619], - [-79.916174, 38.184386], - [-79.850324, 38.233329], - [-79.7970135368069, 38.2672681211392], - [-79.787542, 38.273298], - [-79.804093, 38.313922], - [-79.7346, 38.356728], - [-79.689675, 38.431439], - [-79.691088, 38.463744], - [-79.669128, 38.510883], - [-79.649075, 38.591515], - [-79.54257, 38.553217], - [-79.476638, 38.457228], - [-79.370302, 38.427244], - [-79.3112960655144, 38.418454601455], - [-79.297758, 38.416438], - [-79.23162, 38.474041], - [-79.2284230027078, 38.4797415574873], - [-79.201459, 38.527821], - [-79.154357, 38.606518], - [-79.092955, 38.659517], - [-79.088055, 38.690115], - [-79.057253, 38.761413], - [-79.023053, 38.798613], - [-78.999014, 38.840074], - [-78.869276, 38.762991], - [-78.821167, 38.830982], - [-78.772793, 38.893742], - [-78.681617, 38.92584], - [-78.620453, 38.982601], - [-78.561711, 39.009007], - [-78.532266186557, 39.0527645240444], - [-78.508132, 39.08863], - [-78.413943, 39.158415], - [-78.428697, 39.187217], - [-78.40498, 39.238006], - [-78.401813, 39.276754], - [-78.34048, 39.353492], - [-78.337133, 39.409169], - [-78.347087, 39.466012], - [-78.2291295342185, 39.3906638872041], - [-78.18737, 39.363989], - [-78.0331852353666, 39.2646248420052], - [-78.0331834609342, 39.2646236984747], - [-78.032841, 39.264403], - [-77.8283018332673, 39.1324224548325], - [-77.828157, 39.132329], - [-77.809125, 39.168567], - [-77.778068, 39.229305], - [-77.719519, 39.321314], - [-77.6776957620787, 39.317940817088], - [-77.66613, 39.317008], - [-77.588235, 39.301955], - [-77.553114, 39.279268], - [-77.496606, 39.251045], - [-77.4600656264978, 39.2188429438594], - [-77.459883, 39.218682], - [-77.485971, 39.185665], - [-77.521222, 39.161057], - [-77.519929, 39.120925], - [-77.481279, 39.105658], - [-77.462617, 39.076248], - [-77.359702, 39.062004], - [-77.3300377059541, 39.055952113491], - [-77.310705, 39.052008], - [-77.248403, 39.026909], - [-77.2484037049754, 39.0268883542923], - [-77.249803, 38.985909], - [-77.202502, 38.96791], - [-77.146601, 38.96421], - [-77.1197891567342, 38.9343765552932], - [-77.119759, 38.934343], - [-77.0902, 38.904211], - [-77.039099, 38.868112], - [-77.0390663567647, 38.8412718895186], - [-77.039006, 38.791645], - [-77.0392398850823, 38.7853363256236], - [-77.0406725707781, 38.7466919304829], - [-77.040998, 38.737914], - [-77.053199, 38.709915], - [-77.079499, 38.709515], - [-77.0857847651564, 38.7052812818324], - [-77.132501, 38.673816], - [-77.1302, 38.635017], - [-77.2241458553015, 38.6351782749009], - [-77.246704, 38.635217], - [-77.295274, 38.562125], - [-77.2992320126661, 38.5483767385109], - [-77.3126042841193, 38.5019278005841], - [-77.322622, 38.467131], - [-77.317288, 38.383576], - [-77.2843464997922, 38.3516368165143], - [-77.265295, 38.333165], - [-77.162692, 38.345994], - [-77.093713, 38.352801], - [-77.048137, 38.360145], - [-77.020947, 38.329273], - [-77.026304, 38.302685], - [-76.9967912592049, 38.2791478339799], - [-76.990255, 38.273935], - [-76.957796, 38.243183], - [-76.962311, 38.214075], - [-76.910832, 38.197073], - [-76.838795, 38.163476], - [-76.749685, 38.162114], - [-76.684892, 38.156497], - [-76.613939, 38.148587], - [-76.600937, 38.110084], - [-76.535919, 38.069532], - [-76.5106939613177, 38.0394889278142], - [-76.491998, 38.017222], - [-76.427487, 37.977038], - [-76.316952, 37.934929], - [-76.236725, 37.889174], - [-76.251358, 37.833072], - [-76.310307, 37.794849], - [-76.312858, 37.720338], - [-76.3252991496906, 37.6825738854367], - [-76.32912, 37.670976], - [-76.279447, 37.618225], - [-76.2888778367019, 37.587359934104], - [-76.29796, 37.557636], - [-76.2894927971781, 37.5360752880088], - [-76.273488, 37.495321], - [-76.250454, 37.421886], - [-76.24846, 37.375135], - [-76.275552, 37.309964], - [-76.366751, 37.374495], - [-76.393958, 37.39594], - [-76.4029458753529, 37.3926000017912], - [-76.437525, 37.37975], - [-76.38777, 37.30767], - [-76.36229, 37.270226], - [-76.3769368097175, 37.2494917623633], - [-76.394132, 37.22515], - [-76.3471899289676, 37.1896444936553], - [-76.3431, 37.186551], - [-76.311088, 37.138495], - [-76.293126918301, 37.1141637008803], - [-76.271262, 37.084544], - [-76.2838279531207, 37.0528851070211], - [-76.304272, 37.001378], - [-76.2967922902952, 36.9937909664517], - [-76.2809720508166, 36.977743727668], - [-76.267962, 36.964547], - [-76.189959, 36.931447], - [-76.1769475851987, 36.928538680155], - [-76.087955, 36.908647], - [-76.043054, 36.927547], - [-75.996252, 36.922047], - [-75.961589, 36.799995], - [-75.921748, 36.692051], - [-75.890946, 36.630753], - [-75.867044, 36.550754], - [-76.02675, 36.550553], - [-76.1223499470101, 36.5505523325541], - [-76.313215, 36.550551], - [-76.3133029682603, 36.550551089807], - [-76.4914825754723, 36.5507329938364], - [-76.5419658657183, 36.5507845323601], - [-76.738329, 36.550985], - [-76.9157318023497, 36.5460897693389], - [-76.9160376328562, 36.5460813302903], - [-76.917318, 36.546046], - [-77.1643226037182, 36.5461528198479], - [-77.190175, 36.546164], - [-77.2987701888118, 36.5460390108545], - [-77.749706, 36.54552], - [-77.7671039699267, 36.5454424093355], - [-77.8997741360467, 36.5448507330424], - [-78.0462083043603, 36.5441976726866], - [-78.132911, 36.543811], - [-78.323718509559, 36.5424213915586], - [-78.4572778962559, 36.5414487083995], - [-78.509965, 36.541065], - [-78.7341228011172, 36.5416087348408], - [-78.7962739551405, 36.5417594935816], - [-78.942009, 36.542113], - [-79.1383358988714, 36.5416382700559], - [-79.2184554959223, 36.5414445361761], - [-79.3431159193695, 36.5411430999685], - [-79.4700566739243, 36.5408361497866], - [-79.510647, 36.540738], - [-79.5136476625086, 36.5407482050707], - [-79.714850811052, 36.5414324847413], - [-79.8916701669539, 36.5420338366162], - [-80.027269, 36.542495], - [-80.0273389151412, 36.5424953856142], - [-80.0534550433501, 36.5426394280866], - [-80.295243, 36.543973], - [-80.431605, 36.550219], - [-80.4403427430004, 36.5506059569159], - [-80.6121887881246, 36.5582162763804], - [-80.704831, 36.562319], - [-80.840213077246, 36.5619284516373], - [-80.901661118921, 36.561751187168], - [-80.901726, 36.561751], - [-81.061866, 36.56702], - [-81.176712, 36.571926], - [-81.3532212246022, 36.5762382311564], - [-81.499831, 36.57982], - [-81.677535, 36.588117], - [-81.6469, 36.611918], - [-81.8267341480526, 36.6147191041614], - [-81.922644, 36.616213], - [-81.934144, 36.594213], - [-82.1455732705145, 36.5945603308341], - [-82.173982, 36.594607], - [-82.2433850052002, 36.5948761876654], - [-82.2941364201291, 36.5950730329585], - [-82.487238, 36.595822], - [-82.609181949399, 36.5950896860685], - [-82.830433, 36.593761], - [-82.9844584955724, 36.59528996905], - [-83.2763, 36.598187], - [-83.4720935738096, 36.5994757320593], - [-83.675413, 36.600814], - [-83.614513, 36.633983] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "36", - "STATENS": "01779796", - "AFFGEOID": "0400000US36", - "GEOID": "36", - "ISOCODE": "US-NY", - "name": "New York", - "LSAD": "00", - "ALAND": 122049142543, - "AWATER": 19257128505 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-72.018926, 41.274114], - [-71.926802, 41.290122], - [-71.917281, 41.251333], - [-72.034754, 41.234818], - [-72.018926, 41.274114] - ] - ], - [ - [ - [-79.761951, 42.26986], - [-79.627484, 42.324686], - [-79.453533, 42.411157], - [-79.381943, 42.466491], - [-79.283364, 42.511228], - [-79.193232, 42.545881], - [-79.138569, 42.564462], - [-79.1359444040215, 42.5691787099736], - [-79.111361, 42.613358], - [-79.06376, 42.644758], - [-79.04886, 42.689158], - [-78.972378, 42.715991], - [-78.904843, 42.746121], - [-78.851355, 42.791758], - [-78.8568849923499, 42.8052919998773], - [-78.865656, 42.826758], - [-78.882557, 42.867258], - [-78.912458, 42.886557], - [-78.909159, 42.933257], - [-78.927957, 42.952922], - [-78.961761, 42.957756], - [-79.019964, 42.994756], - [-79.00545, 43.057231], - [-79.018246, 43.066016], - [-79.0195778848943, 43.0662964678904], - [-79.074467, 43.077855], - [-79.060206, 43.124799], - [-79.0552524409396, 43.133812266617], - [-79.044567, 43.153255], - [-79.052868, 43.222054], - [-79.070469, 43.262454], - [-78.834061, 43.317555], - [-78.547395, 43.369541], - [-78.4655511875961, 43.3708954221664], - [-78.329374, 43.373149], - [-78.145195, 43.37551], - [-77.9955897949384, 43.3653102556776], - [-77.994838, 43.365259], - [-77.816533, 43.34356], - [-77.8082634096072, 43.3432076368983], - [-77.760231, 43.341161], - [-77.660359, 43.282998], - [-77.551022, 43.235763], - [-77.50092, 43.250363], - [-77.3760519959534, 43.274033763487], - [-77.341092, 43.280661], - [-77.264177, 43.277363], - [-77.130429, 43.285635], - [-76.999691, 43.271456], - [-76.952174, 43.270692], - [-76.841675, 43.305399], - [-76.769025, 43.318452], - [-76.7220025657128, 43.3375801959814], - [-76.684856, 43.352691], - [-76.630774, 43.413356], - [-76.6172137325776, 43.4201755544656], - [-76.515882, 43.471136], - [-76.417581, 43.521285], - [-76.370942837669, 43.5256270615303], - [-76.368849, 43.525822], - [-76.319701, 43.512275], - [-76.235834, 43.529256], - [-76.203473, 43.574978], - [-76.196596, 43.649761], - [-76.2014825473857, 43.6802859602237], - [-76.213205, 43.753513], - [-76.229268, 43.804135], - [-76.296758, 43.857079], - [-76.361037, 43.872585], - [-76.441848, 43.882864], - [-76.412138, 43.925676], - [-76.279314, 43.972462], - [-76.307674, 44.025277], - [-76.37556, 44.031536], - [-76.361836, 44.072721], - [-76.370706, 44.100499], - [-76.355679, 44.133258], - [-76.334584, 44.164945], - [-76.286547, 44.203773], - [-76.206777, 44.214543], - [-76.164265, 44.239603], - [-76.161833, 44.280777], - [-76.097351, 44.299547], - [-76.000998, 44.347534], - [-75.94954, 44.349129], - [-75.8612711928347, 44.4051920135031], - [-75.834126, 44.422433], - [-75.807778, 44.471644], - [-75.76623, 44.515851], - [-75.567413, 44.658709], - [-75.423943, 44.756329], - [-75.333744, 44.806378], - [-75.255517, 44.857651], - [-75.142958, 44.900237], - [-75.066245, 44.930174], - [-75.005155, 44.958402], - [-74.992756, 44.977449], - [-74.907956, 44.983359], - [-74.834669, 45.014683], - [-74.74464, 44.990577], - [-74.725813431619, 44.9917926265259], - [-74.6447393198257, 44.9970275604167], - [-74.611048, 44.999203], - [-74.436934, 44.996177], - [-74.234136, 44.992148], - [-74.0274312115718, 44.9973653643332], - [-73.874597, 45.001223], - [-73.639718, 45.003464], - [-73.343124, 45.01084], - [-73.34474, 44.970468], - [-73.338979, 44.917681], - [-73.379822, 44.857037], - [-73.365678, 44.826451], - [-73.33443, 44.802188], - [-73.3358066361073, 44.7991570430872], - [-73.357671, 44.751018], - [-73.36556, 44.700297], - [-73.389966, 44.61962], - [-73.367275, 44.567545], - [-73.3636601533155, 44.5635384629765], - [-73.3479832324265, 44.546162853597], - [-73.312871, 44.507246], - [-73.293613, 44.440559], - [-73.320954, 44.382669], - [-73.334637, 44.356877], - [-73.324229, 44.310023], - [-73.3174559746651, 44.2635221898768], - [-73.316618, 44.257769], - [-73.349889, 44.230356], - [-73.395399, 44.166903], - [-73.3997678505892, 44.1528105331449], - [-73.416319, 44.099422], - [-73.43688, 44.042578], - [-73.405977, 44.011485], - [-73.411248, 43.975596], - [-73.407742, 43.929887], - [-73.374051, 43.875563], - [-73.390302, 43.817371], - [-73.3825261495399, 43.8081589885495], - [-73.350707, 43.770463], - [-73.3611071516843, 43.7532334572839], - [-73.393723, 43.6992], - [-73.414546, 43.658209], - [-73.424977, 43.598775], - [-73.395767, 43.568087], - [-73.327702, 43.625913], - [-73.292113, 43.584509], - [-73.242042, 43.534925], - [-73.252832, 43.363493], - [-73.2553649410914, 43.3145364556694], - [-73.26978, 43.035923], - [-73.2700383015528, 43.0300409104512], - [-73.273832807021, 42.9436317475265], - [-73.278673, 42.83341], - [-73.290944, 42.80192], - [-73.264957, 42.74594], - [-73.3070040761806, 42.6326534514115], - [-73.352527, 42.510002], - [-73.4106444074273, 42.3517462996479], - [-73.508142, 42.086257], - [-73.4896799420321, 42.0537977095867], - [-73.487314, 42.049638], - [-73.505008, 41.823773], - [-73.5179187906382, 41.66672053071], - [-73.520017, 41.641197], - [-73.5296777143013, 41.5271610211283], - [-73.536969, 41.441094], - [-73.5431473462655, 41.3767706682974], - [-73.5431832079963, 41.3763973085168], - [-73.5433065806917, 41.3751128640277], - [-73.5441352908263, 41.3664850865317], - [-73.550961, 41.295422], - [-73.482709, 41.21276], - [-73.6959358021696, 41.1152554569041], - [-73.727775, 41.100696], - [-73.659533, 41.017857], - [-73.659362, 41.004034], - [-73.6573740092614, 40.9855248838592], - [-73.657336, 40.985171], - [-73.697974, 40.939598], - [-73.756776, 40.912599], - [-73.766276, 40.881099], - [-73.7411972449486, 40.8758545928374], - [-73.713674, 40.870099], - [-73.654372, 40.878199], - [-73.617571, 40.897898], - [-73.499941, 40.918166], - [-73.4973510386263, 40.9231822732944], - [-73.485365, 40.946397], - [-73.436664, 40.934897], - [-73.392862, 40.955297], - [-73.33136, 40.929597], - [-73.2358274066785, 40.9066897675323], - [-73.229285, 40.905121], - [-73.148994, 40.928898], - [-73.144673, 40.955842], - [-73.110368, 40.971938], - [-73.040445, 40.964498], - [-72.859831, 40.966088], - [-72.708069, 40.977851], - [-72.585327, 40.997587], - [-72.504305, 41.043329], - [-72.445242, 41.086116], - [-72.389809, 41.108304], - [-72.354123, 41.139952], - [-72.291109, 41.155874], - [-72.189163, 41.193549], - [-72.182033, 41.178345], - [-72.254704, 41.110852], - [-72.283093, 41.067874], - [-72.217476, 41.040611], - [-72.162898, 41.053187], - [-72.126704, 41.115139], - [-72.084207, 41.101524], - [-72.095711, 41.05402], - [-72.051928, 41.020506], - [-71.959595, 41.071237], - [-71.919385, 41.080517], - [-71.856214, 41.070598], - [-71.936977, 41.006137], - [-72.097369, 40.95888], - [-72.298727, 40.903151], - [-72.39585, 40.86666], - [-72.757176, 40.764371], - [-72.923214, 40.713282], - [-73.012545, 40.679651], - [-73.1460808692108, 40.6464079681013], - [-73.20844, 40.630884], - [-73.306396, 40.620756], - [-73.351465, 40.6305], - [-73.4241151206597, 40.6132119188686], - [-73.4848683943471, 40.5987548537602], - [-73.507325, 40.593411], - [-73.640902, 40.582823], - [-73.7506217216563, 40.5893197671277], - [-73.774928, 40.590759], - [-73.8254940011311, 40.5761495789939], - [-73.940591, 40.542896], - [-73.9737917702446, 40.5608547025179], - [-73.991346, 40.57035], - [-74.0365576544541, 40.5889884137416], - [-74.0379705239158, 40.5895708663395], - [-74.057316, 40.597546], - [-74.112585, 40.547603], - [-74.199923, 40.511729], - [-74.260611, 40.502436], - [-74.249211, 40.545064], - [-74.216839, 40.558618], - [-74.203688, 40.592691], - [-74.202247, 40.630903], - [-74.2001860628537, 40.6318401804838], - [-74.170611, 40.645289], - [-74.1601467831532, 40.6460765164448], - [-74.086806, 40.651596], - [-74.0710905992629, 40.6670634911162], - [-74.067720330319, 40.6703805942446], - [-74.047313, 40.690466], - [-74.0470400238482, 40.6910044377047], - [-74.0411562443035, 40.7026100257088], - [-74.0309270856838, 40.7227867504936], - [-74.0256355295408, 40.733224194662], - [-74.0234915337322, 40.7374531654873], - [-74.013784, 40.756601], - [-73.9845857755727, 40.7975527523865], - [-73.9712111786194, 40.8163111938137], - [-73.968082, 40.8207], - [-73.9658345170463, 40.8247452595586], - [-73.9474845690832, 40.8577734532874], - [-73.938081, 40.874699], - [-73.9348922281485, 40.8826498616415], - [-73.9220308521501, 40.914718327448], - [-73.9204843942222, 40.9185742549309], - [-73.90728, 40.951498], - [-73.893979, 40.997197], - [-74.041054, 41.059088], - [-74.2116176431986, 41.1329813635363], - [-74.234473, 41.142883], - [-74.2344924405545, 41.1428915543507], - [-74.301994, 41.172594], - [-74.3670382614474, 41.2042114724438], - [-74.457584, 41.248225], - [-74.694914, 41.357423], - [-74.734893, 41.425818], - [-74.7562718347252, 41.4276274285434], - [-74.799546, 41.43129], - [-74.890358, 41.455324], - [-74.982463, 41.496467], - [-75.043879, 41.575094], - [-75.0461986059117, 41.6037640199027], - [-75.049281, 41.641862], - [-75.053431, 41.752538], - [-75.074412, 41.802191], - [-75.113369, 41.840698], - [-75.1452931756179, 41.8497375185041], - [-75.190203, 41.862454], - [-75.263005, 41.885109], - [-75.291762, 41.947092], - [-75.341125, 41.992772], - [-75.3599310768702, 41.9936893594868], - [-75.477144, 41.999407], - [-75.4831402165408, 41.9993981778443], - [-75.5531194388128, 41.999295218322], - [-75.870677, 41.998828], - [-76.10584, 41.998858], - [-76.1455189947821, 41.998866463308], - [-76.462155, 41.998934], - [-76.473030885808, 41.999072381007], - [-76.5576987221493, 42.0001496652537], - [-76.558118, 42.000155], - [-76.9269253205306, 42.0007235735426], - [-76.9657915095295, 42.0007834917859], - [-77.007635, 42.000848], - [-77.610020114476, 41.9991498540796], - [-77.749932223724, 41.9987554366682], - [-77.83203, 41.998524], - [-78.031177, 41.999415], - [-78.2063790981571, 41.9990887227984], - [-78.271204, 41.998968], - [-78.3081443402607, 41.9990711776986], - [-78.59665, 41.999877], - [-78.9188983633788, 41.9991031002259], - [-78.983065, 41.998949], - [-79.0612581876299, 41.9988381187249], - [-79.472472, 41.998255], - [-79.6108357749867, 41.9985199041084], - [-79.761313, 41.998808], - [-79.762122, 42.131246], - [-79.761951, 42.26986] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "17", - "STATENS": "01779784", - "AFFGEOID": "0400000US17", - "GEOID": "17", - "ISOCODE": "US-IL", - "name": "Illinois", - "LSAD": "00", - "ALAND": 143778561906, - "AWATER": 6216493488 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-91.5062615151283, 40.2001550699717], - [-91.4969574903395, 40.2487038763728], - [-91.492891, 40.269923], - [-91.469656, 40.322409], - [-91.419422, 40.378264], - [-91.372921, 40.399108], - [-91.379907, 40.45211], - [-91.367876, 40.510479], - [-91.394475, 40.534543], - [-91.374252, 40.58259], - [-91.339719, 40.613488], - [-91.247851, 40.63839], - [-91.18698, 40.637297], - [-91.1854606087043, 40.6381118126235], - [-91.12082, 40.672777], - [-91.1182229383975, 40.6995346508191], - [-91.115735, 40.725168], - [-91.091703, 40.779708], - [-91.092993, 40.821079], - [-91.044653, 40.868356], - [-90.985462, 40.912141], - [-90.952233, 40.954047], - [-90.945324, 41.019279], - [-90.9518941426813, 41.0698727358664], - [-90.9522654164822, 41.07273174967], - [-90.957246, 41.111085], - [-90.997906, 41.162564], - [-91.041536, 41.166138], - [-91.081445, 41.214429], - [-91.114186, 41.250029], - [-91.0744154980196, 41.3336315690407], - [-91.0740876236741, 41.3343208019205], - [-91.071552, 41.339651], - [-91.065058, 41.369101], - [-91.027787, 41.423603], - [-90.966662, 41.430051], - [-90.924343, 41.42286], - [-90.867282, 41.448215], - [-90.786282, 41.452888], - [-90.701159, 41.454743], - [-90.618537, 41.485032], - [-90.571136, 41.516332], - [-90.513134, 41.519533], - [-90.461432, 41.523533], - [-90.41583, 41.562933], - [-90.364128, 41.579633], - [-90.339528, 41.598633], - [-90.336729, 41.664532], - [-90.314687, 41.69483], - [-90.3118568504162, 41.7285328921536], - [-90.310708, 41.742214], - [-90.248631, 41.779805], - [-90.2423682473972, 41.7827687259846], - [-90.180643, 41.811979], - [-90.181401, 41.844647], - [-90.165065, 41.883777], - [-90.1581530337095, 41.9298432273761], - [-90.156902, 41.938181], - [-90.140613, 41.995999], - [-90.1596824511227, 42.0330872575859], - [-90.163446, 42.040407], - [-90.161159, 42.106372], - [-90.207421, 42.149109], - [-90.26908, 42.1745], - [-90.3151462239686, 42.1937168744807], - [-90.338169, 42.203321], - [-90.400653, 42.239293], - [-90.430884, 42.27823], - [-90.417125, 42.319943], - [-90.44632, 42.357041], - [-90.4843456727163, 42.3815977781919], - [-90.517516, 42.403019], - [-90.565248, 42.438742], - [-90.590416, 42.447493], - [-90.646727, 42.471904], - [-90.642843, 42.508481], - [-90.437011, 42.507147], - [-90.4263769607361, 42.5071777352237], - [-90.22319, 42.507765], - [-89.926484, 42.505787], - [-89.9264658538311, 42.5057868210378], - [-89.8375948863256, 42.5049103527915], - [-89.493216, 42.501514], - [-89.4014168110406, 42.5004419310737], - [-89.3657986076635, 42.5000259669515], - [-89.042898, 42.496255], - [-88.9925602268173, 42.4958547198992], - [-88.940384860378, 42.4954398274712], - [-88.7765924457953, 42.4941373692957], - [-88.7074208350474, 42.4935873247155], - [-88.70738, 42.493587], - [-88.506912, 42.494883], - [-88.304692, 42.4956081727515], - [-88.2169, 42.495923], - [-88.1993830245505, 42.4957546124404], - [-87.8979987705435, 42.4928574593802], - [-87.800477, 42.49192], - [-87.80337, 42.420621], - [-87.820858, 42.361584], - [-87.834769, 42.301522], - [-87.833377771567, 42.2977737051545], - [-87.8006461090443, 42.209586949469], - [-87.800066, 42.208024], - [-87.7592491186898, 42.1522561642711], - [-87.7416899291898, 42.1282651594679], - [-87.741662, 42.128227], - [-87.7413552334043, 42.1279554347716], - [-87.6892756203283, 42.0818519403908], - [-87.682359, 42.075729], - [-87.668982, 42.029142], - [-87.634367533887, 41.9329102403255], - [-87.624982113481, 41.9068178107036], - [-87.624052, 41.904232], - [-87.612291, 41.893335], - [-87.613556, 41.88448], - [-87.616293, 41.870929], - [-87.60945, 41.845233], - [-87.5883759425147, 41.8110340761664], - [-87.5816026607332, 41.8000424127], - [-87.560646, 41.766034], - [-87.530745, 41.748235], - [-87.524141, 41.72399], - [-87.524044, 41.708335], - [-87.52494, 41.529735], - [-87.5254093533475, 41.4702806660617], - [-87.526768, 41.298177], - [-87.5267678862275, 41.2980516024792], - [-87.5266481580824, 41.1660899445116], - [-87.52652, 41.024837], - [-87.526463234368, 41.0103365222041], - [-87.526014, 40.895582], - [-87.5261364904237, 40.7368850814229], - [-87.526292, 40.535409], - [-87.5268757732538, 40.4912244096904], - [-87.5270652633992, 40.4768822924615], - [-87.530054, 40.250671], - [-87.531021612428, 40.1480353967457], - [-87.532308, 40.011587], - [-87.5324544938843, 39.8829991187823], - [-87.532703, 39.664868], - [-87.532385282791, 39.6073049442215], - [-87.5316666819743, 39.4771109927429], - [-87.531624, 39.469378], - [-87.531646, 39.347888], - [-87.578331, 39.340343], - [-87.600397, 39.312904], - [-87.594745845406, 39.259383616483], - [-87.593486, 39.247452], - [-87.577029, 39.211123], - [-87.640435, 39.166727], - [-87.6383674685664, 39.1578118692748], - [-87.625379, 39.101806], - [-87.572588, 39.057286], - [-87.579117, 39.001607], - [-87.529496, 38.971925], - [-87.527645, 38.907688], - [-87.5287176636979, 38.9059437862892], - [-87.54737, 38.875614], - [-87.5352570508085, 38.8524914649674], - [-87.521681, 38.826576], - [-87.498948, 38.757774], - [-87.545538, 38.677613], - [-87.62012, 38.639489], - [-87.637752, 38.588512], - [-87.6483567630745, 38.5666287160576], - [-87.660732, 38.541092], - [-87.654166, 38.511911], - [-87.714047, 38.47988], - [-87.74104, 38.435576], - [-87.7511059451205, 38.4188492084548], - [-87.779996, 38.370842], - [-87.831972, 38.307241], - [-87.908542, 38.268581], - [-87.968968, 38.237389], - [-87.9702008408039, 38.2302710583858], - [-87.975819, 38.197834], - [-87.927468, 38.151946], - [-87.96221, 38.100054], - [-87.98877, 38.055591], - [-88.030884, 38.030713], - [-88.016311, 37.961574], - [-88.040861, 37.891767], - [-88.0594711307875, 37.8666875964907], - [-88.067364, 37.856051], - [-88.02803, 37.799224], - [-88.059588, 37.742608], - [-88.132341, 37.697142], - [-88.160062, 37.654332], - [-88.1324310565063, 37.5752826298727], - [-88.131622, 37.572968], - [-88.072242, 37.528826], - [-88.0662484288003, 37.5041305345896], - [-88.062294, 37.487837], - [-88.157061, 37.466937], - [-88.281667, 37.452596], - [-88.358436, 37.40486], - [-88.358476490182, 37.4048715275665], - [-88.4161335687515, 37.4212865145119], - [-88.418594, 37.421987], - [-88.465861, 37.400547], - [-88.486947, 37.339596], - [-88.514661, 37.290948], - [-88.471753, 37.220155], - [-88.424776, 37.149901], - [-88.444605, 37.098601], - [-88.476127, 37.068223], - [-88.48380327698, 37.0680802698954], - [-88.4904810043425, 37.0679561064856], - [-88.531576, 37.067192], - [-88.5610581316174, 37.0840080816083], - [-88.61144, 37.112745], - [-88.693983, 37.141155], - [-88.753068, 37.154701], - [-88.835051, 37.196486], - [-88.9278935494308, 37.226353966835], - [-88.931745, 37.227593], - [-88.9335100599741, 37.2275116098343], - [-89.000968, 37.224401], - [-89.058036, 37.188767], - [-89.099047, 37.140967], - [-89.168087, 37.074218], - [-89.1666202120197, 37.0721103437999], - [-89.128899, 37.017908], - [-89.132915, 36.982057], - [-89.195039, 36.989768], - [-89.257608, 37.015496], - [-89.3081469138122, 37.0289484973829], - [-89.359456, 37.042606], - [-89.384175, 37.103267], - [-89.456105, 37.18812], - [-89.470525, 37.253357], - [-89.482889284644, 37.2609507184141], - [-89.517032, 37.28192], - [-89.49516, 37.324795], - [-89.4744347243599, 37.334500215676], - [-89.428185, 37.356158], - [-89.42594, 37.407471], - [-89.471201, 37.466473], - [-89.5124, 37.52981], - [-89.5017910494998, 37.5588957193232], - [-89.4977459260392, 37.5699859139282], - [-89.494051, 37.580116], - [-89.506563, 37.62505], - [-89.521948, 37.696475], - [-89.591289, 37.723599], - [-89.667993, 37.759484], - [-89.6872324838884, 37.7964280387079], - [-89.696559, 37.814337], - [-89.782035, 37.855092], - [-89.851048, 37.90398], - [-89.923185, 37.870672], - [-89.933095790915, 37.8800990582524], - [-89.974221, 37.919217], - [-89.95491, 37.966647], - [-90.008353, 37.970179], - [-90.080959, 38.015428], - [-90.126006, 38.05057], - [-90.2038911808417, 38.0873651230282], - [-90.218708, 38.094365], - [-90.252484, 38.127571], - [-90.2527463239757, 38.1277738262293], - [-90.322353, 38.181593], - [-90.3511641450603, 38.2195444570945], - [-90.363926, 38.236355], - [-90.372519, 38.323354], - [-90.349743, 38.377609], - [-90.3429152667372, 38.3844273200276], - [-90.3402442817043, 38.3870946226363], - [-90.288815, 38.438453], - [-90.271314, 38.496052], - [-90.2610973860555, 38.518263021789], - [-90.2552985826054, 38.5308696789927], - [-90.248913, 38.544752], - [-90.18451, 38.611551], - [-90.18111, 38.65955], - [-90.1813411498458, 38.6600090209705], - [-90.19521, 38.68755], - [-90.20991, 38.72605], - [-90.166409, 38.772649], - [-90.1662859507468, 38.7727326271043], - [-90.117707, 38.805748], - [-90.113327, 38.849306], - [-90.2072823011856, 38.8987323228399], - [-90.230336, 38.91086], - [-90.2764739288339, 38.9193183391288], - [-90.298711, 38.923395], - [-90.395816, 38.960037], - [-90.4509699408919, 38.9613950033245], - [-90.467784, 38.961809], - [-90.500117, 38.910408], - [-90.555693, 38.870785], - [-90.595354, 38.87505], - [-90.657254, 38.92027], - [-90.6615829068768, 38.9347033077532], - [-90.676397, 38.984096], - [-90.713629, 39.053977], - [-90.681086, 39.10059], - [-90.707902, 39.15086], - [-90.7232836234127, 39.2241029700576], - [-90.72996, 39.255894], - [-90.840106, 39.340438], - [-90.9352871462396, 39.3994805728603], - [-90.937419, 39.400803], - [-91.03827, 39.448436], - [-91.064305, 39.494643], - [-91.100307, 39.538695], - [-91.148275, 39.545798], - [-91.174232, 39.591975], - [-91.1828755008197, 39.5982331157954], - [-91.27614, 39.665759], - [-91.3057603349652, 39.6862154700779], - [-91.367753, 39.729029], - [-91.3646166033233, 39.7587182263223], - [-91.361571, 39.787548], - [-91.397853, 39.821122], - [-91.436051, 39.84551], - [-91.428956, 39.907729], - [-91.4368432685991, 39.9452434636785], - [-91.43709, 39.946417], - [-91.484064, 40.019332], - [-91.497663, 40.078257], - [-91.511956, 40.170441], - [-91.5062615151283, 40.2001550699717] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "30", - "STATENS": "00767982", - "AFFGEOID": "0400000US30", - "GEOID": "30", - "ISOCODE": "US-MT", - "name": "Montana", - "LSAD": "00", - "ALAND": 376973729130, - "AWATER": 3866634365 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-116.049193, 49.000912], - [-115.501016, 49.000694], - [-115.207912, 48.999228], - [-114.72705020628, 49.0005869898058], - [-114.678217, 49.000725], - [-114.375977, 49.00139], - [-114.180211, 48.999703], - [-114.068177472879, 48.999355878623], - [-113.907487, 48.998858], - [-113.692982, 48.997632], - [-113.375925, 48.998562], - [-113.116356, 48.998462], - [-112.193409099075, 48.9988937771468], - [-112.143769, 48.998917], - [-111.854088, 48.998067], - [-111.500812, 48.996963], - [-111.269864027259, 48.9972297844707], - [-111.003916, 48.997537], - [-110.743064, 48.9980081121848], - [-110.531615, 48.99839], - [-110.438151, 48.999188], - [-110.171595, 48.999262], - [-109.500737, 49.00044], - [-109.489548844193, 49.0004208022765], - [-109.250722, 49.000011], - [-109.000708, 48.999234], - [-108.543194, 48.999377], - [-108.236361659295, 48.9995581358031], - [-107.704696, 48.999872], - [-107.441017, 48.999363], - [-107.363582, 49.000019], - [-107.179812010645, 48.9999116017463], - [-106.617539, 48.999583], - [-106.233987, 48.999423], - [-106.1120637647, 48.9992794389196], - [-106.050543, 48.999207], - [-105.775808, 48.999637], - [-105.355888, 48.999357], - [-105.265192, 48.9995], - [-105.057634998852, 48.9992288786173], - [-104.875527, 48.998991], - [-104.543636, 48.999541], - [-104.048736, 48.999877], - [-104.0489, 48.847387], - [-104.048087180484, 48.6339103786847], - [-104.047555, 48.49414], - [-104.046782142047, 48.3892980643109], - [-104.045692, 48.241415], - [-104.044093214262, 47.9960981889019], - [-104.044093106669, 47.9960816799606], - [-104.043933, 47.971515], - [-104.042384, 47.803256], - [-104.043912, 47.603229], - [-104.044976739577, 47.3970647144107], - [-104.045313, 47.331955], - [-104.045308341358, 47.3301401263698], - [-104.044788, 47.12743], - [-104.045542, 46.933887], - [-104.045572, 46.713881], - [-104.045385111108, 46.6415039321916], - [-104.045125235308, 46.5408609881557], - [-104.045045, 46.509788], - [-104.045469, 46.324545], - [-104.045465951587, 46.2800809626881], - [-104.045443, 45.94531], - [-104.044133156107, 45.8819762583498], - [-104.043776, 45.864707], - [-104.042597, 45.749998], - [-104.041937, 45.557915], - [-104.041764, 45.490789], - [-104.040358, 45.335946], - [-104.040135756493, 45.2128907620416], - [-104.039977, 45.124988], - [-104.039138, 44.99852], - [-104.057698, 44.997431], - [-105.025266, 45.00029], - [-105.038252188274, 45.0002916729918], - [-105.076600952254, 45.0002966134074], - [-105.848065, 45.000396], - [-106.024880029032, 44.9975841235561], - [-106.263586, 44.993788], - [-106.263715092465, 44.9937884330015], - [-106.888773, 44.995885], - [-107.351441, 45.001407], - [-107.911522788162, 45.0015440046114], - [-107.997353, 45.001565], - [-108.248525185308, 45.0006298274175], - [-108.500679, 44.999691], - [-108.62149349473, 44.9996763710215], - [-109.062262, 44.999623], - [-109.103445, 45.005904], - [-109.574321, 45.002631], - [-109.798483772435, 45.002920308285], - [-109.99505, 45.003174], - [-110.324441, 44.999156], - [-110.705272, 44.992324], - [-110.785008, 45.002952], - [-111.044275, 45.001345], - [-111.04431854543, 45.0008800033077], - [-111.056888, 44.866658], - [-111.055511, 44.725343], - [-111.055332727124, 44.6662623099175], - [-111.055208, 44.624927], - [-111.048974, 44.474072], - [-111.122654, 44.493659], - [-111.143557, 44.535732], - [-111.201459, 44.575696], - [-111.224161, 44.623402], - [-111.26875, 44.668279], - [-111.323669, 44.724474], - [-111.377138236735, 44.7511964139636], - [-111.385005, 44.755128], - [-111.438793, 44.720546], - [-111.456947232494, 44.6956407378395], - [-111.468833, 44.679335], - [-111.519126, 44.582916], - [-111.562814, 44.555209], - [-111.617107034305, 44.5571272484186], - [-111.704218, 44.560205], - [-111.807914, 44.511716], - [-111.870504, 44.564033], - [-112.034133, 44.537716], - [-112.125101, 44.528527], - [-112.221698, 44.543519], - [-112.286187, 44.568472], - [-112.358917, 44.528847], - [-112.387389, 44.448058], - [-112.473207, 44.480027], - [-112.601863, 44.491015], - [-112.707815, 44.503023], - [-112.735084, 44.499159], - [-112.828191, 44.442472], - [-112.821896, 44.407436], - [-112.826826881265, 44.4052024317675], - [-112.881769, 44.380315], - [-112.951146, 44.416699], - [-113.006846, 44.471715], - [-113.006828, 44.518439], - [-113.061071, 44.577329], - [-113.049349, 44.62938], - [-113.101154, 44.708578], - [-113.131387, 44.764738], - [-113.247166, 44.82295], - [-113.301508, 44.798985], - [-113.377153, 44.834858], - [-113.422376, 44.842595], - [-113.474573, 44.910846], - [-113.448958, 44.953544], - [-113.437726, 45.006967], - [-113.45197, 45.059247], - [-113.510819, 45.099902], - [-113.57467, 45.128411], - [-113.650064, 45.23471], - [-113.735601, 45.325265], - [-113.73239, 45.385058], - [-113.763368, 45.427732], - [-113.759986, 45.480735], - [-113.802849, 45.523159], - [-113.806729, 45.602146], - [-113.861404, 45.62366], - [-113.898883, 45.644167], - [-113.94832148257, 45.6825773584415], - [-113.971565, 45.700636], - [-114.015633, 45.696127], - [-114.014973, 45.654008], - [-114.083149, 45.603996], - [-114.18647, 45.545539], - [-114.251836, 45.537812], - [-114.279217, 45.480616], - [-114.36852, 45.492716], - [-114.456764, 45.543983], - [-114.506341, 45.559216], - [-114.523773044931, 45.5853265066066], - [-114.538132, 45.606834], - [-114.53577, 45.650613], - [-114.499637, 45.669035], - [-114.504869, 45.722176], - [-114.562509, 45.779927], - [-114.517143, 45.835993], - [-114.422963, 45.855381], - [-114.388243, 45.88234], - [-114.413168, 45.911479], - [-114.402261, 45.961489], - [-114.441185, 45.988453], - [-114.480241, 46.030325], - [-114.460049, 46.097104], - [-114.5213, 46.125287], - [-114.514706, 46.167726], - [-114.445928, 46.173933], - [-114.449819, 46.237119], - [-114.441326, 46.2738], - [-114.431708, 46.310744], - [-114.422458, 46.387097], - [-114.384756, 46.411784], - [-114.403019, 46.498675], - [-114.351655, 46.508119], - [-114.331338, 46.577781], - [-114.320665, 46.646963], - [-114.335724935405, 46.6552729673536], - [-114.360709, 46.669059], - [-114.453239, 46.649266], - [-114.547321, 46.644485], - [-114.591116003227, 46.6525504803548], - [-114.621483, 46.658143], - [-114.626695, 46.712889], - [-114.676827162695, 46.7318387398131], - [-114.699008, 46.740223], - [-114.76718, 46.738828], - [-114.79004, 46.778729], - [-114.880588, 46.811791], - [-114.943281, 46.867971], - [-114.927432, 46.914185], - [-114.961422906068, 46.9328938759708], - [-115.031651, 46.971548], - [-115.071254, 47.022083], - [-115.120917, 47.061237], - [-115.189451, 47.131032], - [-115.255786, 47.174725], - [-115.29211, 47.209861], - [-115.326903, 47.255912], - [-115.371825, 47.265213], - [-115.470959, 47.284873], - [-115.531971, 47.314121], - [-115.578619, 47.367007], - [-115.71034, 47.417784], - [-115.69293, 47.457237], - [-115.634684, 47.48176], - [-115.717024, 47.532693], - [-115.721207, 47.576323], - [-115.694284, 47.62346], - [-115.73627, 47.654762], - [-115.72377, 47.696671], - [-115.835365, 47.760957], - [-115.845474, 47.814967], - [-115.900934, 47.843064], - [-115.959946, 47.898142], - [-116.030751, 47.973349], - [-116.038565829873, 47.9846342564417], - [-116.049153, 47.999923], - [-116.048911, 48.12493], - [-116.048929247776, 48.2161279479271], - [-116.048948, 48.309847], - [-116.049155, 48.481247], - [-116.049156520649, 48.5020424817581], - [-116.049193, 49.000912] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "21", - "STATENS": "01779786", - "AFFGEOID": "0400000US21", - "GEOID": "21", - "ISOCODE": "US-KY", - "name": "Kentucky", - "LSAD": "00", - "ALAND": 102283004821, - "AWATER": 2367816964 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-89.544434, 36.57451], - [-89.479346, 36.566253], - [-89.407906, 36.562345], - [-89.378694, 36.622292], - [-89.327319777009, 36.6239462887705], - [-89.324658, 36.624032], - [-89.278935, 36.577699], - [-89.227319, 36.569375], - [-89.199136, 36.625649], - [-89.1756497723469, 36.6513192625535], - [-89.165488, 36.662426], - [-89.202511, 36.716618], - [-89.15699, 36.755968], - [-89.1559849090704, 36.7862926633714], - [-89.155891, 36.789126], - [-89.147674, 36.847148], - [-89.120472, 36.891896], - [-89.1031354483266, 36.9447609003223], - [-89.098843, 36.95785], - [-89.132915, 36.982057], - [-89.128899, 37.017908], - [-89.1666202120197, 37.0721103437999], - [-89.168087, 37.074218], - [-89.099047, 37.140967], - [-89.058036, 37.188767], - [-89.000968, 37.224401], - [-88.9335100599741, 37.2275116098343], - [-88.931745, 37.227593], - [-88.9278935494308, 37.226353966835], - [-88.835051, 37.196486], - [-88.753068, 37.154701], - [-88.693983, 37.141155], - [-88.61144, 37.112745], - [-88.5610581316174, 37.0840080816083], - [-88.531576, 37.067192], - [-88.4904810043425, 37.0679561064856], - [-88.48380327698, 37.0680802698954], - [-88.476127, 37.068223], - [-88.444605, 37.098601], - [-88.424776, 37.149901], - [-88.471753, 37.220155], - [-88.514661, 37.290948], - [-88.486947, 37.339596], - [-88.465861, 37.400547], - [-88.418594, 37.421987], - [-88.4161335687515, 37.4212865145119], - [-88.358476490182, 37.4048715275665], - [-88.358436, 37.40486], - [-88.281667, 37.452596], - [-88.157061, 37.466937], - [-88.062294, 37.487837], - [-88.0662484288003, 37.5041305345896], - [-88.072242, 37.528826], - [-88.131622, 37.572968], - [-88.1324310565063, 37.5752826298727], - [-88.160062, 37.654332], - [-88.132341, 37.697142], - [-88.059588, 37.742608], - [-88.02803, 37.799224], - [-87.970262, 37.781856], - [-87.935861, 37.789703], - [-87.903804, 37.817762], - [-87.938128, 37.870651], - [-87.9253933817098, 37.8995914771373], - [-87.921744, 37.907885], - [-87.87254, 37.920999], - [-87.808013, 37.875191], - [-87.723635, 37.892058], - [-87.7131573360969, 37.8830423995257], - [-87.681633, 37.855917], - [-87.625851, 37.851919], - [-87.608479, 37.898794], - [-87.551277, 37.925418], - [-87.486347, 37.920218], - [-87.4487002885408, 37.9338545298067], - [-87.418585, 37.944763], - [-87.331765, 37.908253], - [-87.304057452442, 37.8934325491223], - [-87.270387407739, 37.87542282659], - [-87.25525, 37.867326], - [-87.180063, 37.841375], - [-87.137502, 37.807264], - [-87.105614, 37.767631], - [-87.057836, 37.827457], - [-87.043049, 37.875049], - [-87.010315, 37.919668], - [-86.9777414251102, 37.9256992083727], - [-86.927747, 37.934956], - [-86.875874, 37.97077], - [-86.8135795707459, 37.9960671327985], - [-86.810913, 37.99715], - [-86.779993, 37.956522], - [-86.722247, 37.892648], - [-86.658374, 37.869376], - [-86.6467093891411, 37.8649113991803], - [-86.615215, 37.852857], - [-86.599848, 37.906754], - [-86.509368, 37.902887], - [-86.525174, 37.968228], - [-86.521825, 38.038327], - [-86.4880524671283, 38.0436653088997], - [-86.471903, 38.046218], - [-86.434046, 38.086763], - [-86.4335700794087, 38.0871478523782], - [-86.387216, 38.124632], - [-86.3564090219089, 38.1352772306995], - [-86.321274, 38.147418], - [-86.278656, 38.098509], - [-86.206439, 38.021876], - [-86.095766, 38.00893], - [-86.033386, 37.970382], - [-85.9973516597543, 37.9912256022991], - [-85.976028, 38.00356], - [-85.9517264381006, 38.0149416294697], - [-85.922395, 38.028679], - [-85.905164, 38.11107], - [-85.8959128763279, 38.1799188193363], - [-85.894764, 38.188469], - [-85.839664, 38.23977], - [-85.816164, 38.282969], - [-85.794501505519, 38.2779525587226], - [-85.750962, 38.26787], - [-85.683561, 38.295469], - [-85.646201, 38.342916], - [-85.6344441449773, 38.3783994475748], - [-85.621625, 38.417089], - [-85.587758, 38.450495], - [-85.498866, 38.468242], - [-85.474354, 38.504074], - [-85.433136, 38.523914], - [-85.432981047742, 38.5241121702949], - [-85.4156, 38.546341], - [-85.4314160707522, 38.5862856131089], - [-85.43617, 38.598292], - [-85.438742, 38.659319], - [-85.448862, 38.713368], - [-85.400481, 38.73598], - [-85.340953, 38.733893], - [-85.3326407337514, 38.7348167543477], - [-85.275454, 38.741172], - [-85.238665, 38.722494], - [-85.2017606225486, 38.6974407918463], - [-85.187278, 38.687609], - [-85.146861, 38.695427], - [-85.071928, 38.741567], - [-85.0210522365665, 38.7585272930799], - [-84.962535, 38.778035], - [-84.856904, 38.790224], - [-84.812877, 38.786087], - [-84.803247, 38.850723], - [-84.7987011365099, 38.8592249335163], - [-84.786406, 38.88222], - [-84.830472, 38.897256], - [-84.8643271879881, 38.9137941412077], - [-84.877762, 38.920357], - [-84.832617, 38.96146], - [-84.849445, 39.000923], - [-84.8775702820623, 39.0312628990423], - [-84.897171, 39.052407], - [-84.860689, 39.07814], - [-84.820157, 39.10548], - [-84.750749, 39.147358], - [-84.714048, 39.132659], - [-84.677247, 39.09826], - [-84.6220474364107, 39.0783346767822], - [-84.607928, 39.073238], - [-84.550844, 39.09936], - [-84.5065187374369, 39.101766408188], - [-84.499187871331, 39.1021643992027], - [-84.493743, 39.10246], - [-84.480943, 39.11676], - [-84.462042, 39.12176], - [-84.445242, 39.114461], - [-84.432941, 39.083961], - [-84.40094, 39.046362], - [-84.326539, 39.027463], - [-84.3212072268568, 39.0205863526894], - [-84.297255, 38.989694], - [-84.288164, 38.955789], - [-84.232132, 38.880483], - [-84.2323050454035, 38.8747078960317], - [-84.233265, 38.842671], - [-84.226155212983, 38.8297636689604], - [-84.212904, 38.805707], - [-84.135088, 38.789485], - [-84.0526095475065, 38.7716067284387], - [-84.051642, 38.771397], - [-83.978814, 38.787104], - [-83.928454, 38.774583], - [-83.9043750861048, 38.7672838752678], - [-83.852085, 38.751433], - [-83.834015, 38.716008], - [-83.78362, 38.695641], - [-83.77216, 38.65815], - [-83.7058575510284, 38.6380366259831], - [-83.679484, 38.630036], - [-83.6469615501443, 38.6418337437309], - [-83.642994, 38.643273], - [-83.626922, 38.679387], - [-83.533339, 38.702105], - [-83.440404, 38.669361], - [-83.376302, 38.661473], - [-83.320531, 38.622713], - [-83.286514, 38.599241], - [-83.2642676908446, 38.6131319856547], - [-83.239515, 38.628588], - [-83.172647, 38.620252], - [-83.128973, 38.640231], - [-83.112372, 38.671685], - [-83.042338, 38.708319], - [-83.0303349312311, 38.7168676766561], - [-83.011816, 38.730057], - [-82.943147, 38.74328], - [-82.889193, 38.756076], - [-82.8822845498777, 38.741607822612], - [-82.871192, 38.718377], - [-82.869592, 38.678177], - [-82.851314, 38.604334], - [-82.8115423846504, 38.5723695895619], - [-82.800112, 38.563183], - [-82.724846, 38.5576], - [-82.675724, 38.515504], - [-82.6641207909684, 38.5077181960708], - [-82.618474, 38.477089], - [-82.593673, 38.421809], - [-82.5959642645, 38.3808897617155], - [-82.597979, 38.344909], - [-82.571877, 38.315781], - [-82.581796, 38.248592], - [-82.5846938141256, 38.2405129933697], - [-82.598864, 38.201007], - [-82.626182, 38.134835], - [-82.549407, 38.063063], - [-82.464987, 37.976859], - [-82.479420123223, 37.9385625246981], - [-82.487556, 37.916975], - [-82.41869, 37.872375], - [-82.3984648162589, 37.8430541504629], - [-82.369973, 37.801749], - [-82.327356, 37.762233], - [-82.3206749571778, 37.7459658434594], - [-82.296118, 37.686174], - [-82.226111, 37.653092], - [-82.141555, 37.595166], - [-82.064418, 37.544516], - [-81.968297, 37.537798], - [-82.201745, 37.375108], - [-82.309415, 37.300066], - [-82.3143704529296, 37.2963062518554], - [-82.355343, 37.26522], - [-82.449164, 37.243908], - [-82.5536395449037, 37.2014503744627], - [-82.558178, 37.199606], - [-82.565275702797, 37.1959011068831], - [-82.726294, 37.111852], - [-82.722254, 37.057948], - [-82.750715, 37.024107], - [-82.815748, 37.007196], - [-82.869183, 36.974182], - [-82.865192, 36.920923], - [-82.8837542129764, 36.8971301366542], - [-82.895445, 36.882145], - [-83.012587, 36.847289], - [-83.07559, 36.850589], - [-83.114693, 36.796088], - [-83.136395, 36.743088], - [-83.236399, 36.726887], - [-83.386099, 36.686589], - [-83.436508, 36.666185], - [-83.4609546474638, 36.6661310362733], - [-83.527112, 36.665985], - [-83.614513, 36.633983], - [-83.675413, 36.600814], - [-83.690714, 36.582581], - [-83.894421, 36.586481], - [-83.9307607839439, 36.5876942581124], - [-83.9876109506828, 36.5895922860725], - [-83.987842, 36.5896], - [-84.2271939619983, 36.5921795123551], - [-84.227332, 36.592181], - [-84.2613212015047, 36.592741697267], - [-84.499938, 36.596678], - [-84.7784558643505, 36.6032105122159], - [-84.785341, 36.603372], - [-84.7853999785503, 36.6033754199356], - [-84.943948, 36.612569], - [-84.9748684358374, 36.6145833593172], - [-85.096128, 36.622483], - [-85.2762879474994, 36.6261575408034], - [-85.290627, 36.62645], - [-85.2958124857275, 36.6261495593675], - [-85.4364042728859, 36.618003845027], - [-85.488353, 36.614994], - [-85.731862, 36.620429], - [-85.7885565436139, 36.6217118590347], - [-85.873857, 36.623642], - [-85.975713174144, 36.6286377186817], - [-86.081944, 36.633848], - [-86.205565269856, 36.6392468703288], - [-86.4114961989664, 36.6482404228482], - [-86.507771, 36.652445], - [-86.551292, 36.637985], - [-86.5620676518653, 36.6407466739073], - [-86.606394, 36.652107], - [-86.7632909641085, 36.6487206745018], - [-86.813037, 36.647647], - [-87.0608263443929, 36.6447708848516], - [-87.1150035566884, 36.6441420446512], - [-87.3359790500808, 36.6415771604931], - [-87.347796, 36.64144], - [-87.64115, 36.638036], - [-87.6941859078643, 36.6368382439437], - [-87.853204, 36.633247], - [-87.849567, 36.663701], - [-88.011792, 36.677025], - [-88.070532, 36.678118], - [-88.055738, 36.630475], - [-88.033802, 36.551733], - [-88.050466, 36.500053], - [-88.0533508007759, 36.4999962506816], - [-88.127378, 36.49854], - [-88.4890767387132, 36.5012837190757], - [-88.51192, 36.501457], - [-88.5163580599794, 36.5014641981633], - [-88.8167641573481, 36.5019514318132], - [-88.8271780363405, 36.5019683222569], - [-88.8345890228743, 36.5019803422593], - [-88.964471, 36.502191], - [-89.211409, 36.50563], - [-89.3451943195388, 36.5013432086369], - [-89.417293, 36.499033], - [-89.539232, 36.497934], - [-89.571481, 36.538087], - [-89.544434, 36.57451] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "41", - "STATENS": "01155107", - "AFFGEOID": "0400000US41", - "GEOID": "41", - "ISOCODE": "US-OR", - "name": "Oregon", - "LSAD": "00", - "ALAND": 248628414476, - "AWATER": 6170965739 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-124.552441, 42.840568], - [-124.480938, 42.951495], - [-124.479882226932, 42.9543224376774], - [-124.436198, 43.071312], - [-124.41139, 43.159853], - [-124.395607, 43.223908], - [-124.38246, 43.270167], - [-124.400404, 43.302121], - [-124.353332, 43.342667], - [-124.286896, 43.436296], - [-124.233534, 43.55713], - [-124.219057676906, 43.610931759189], - [-124.193455, 43.706085], - [-124.160207315876, 43.8637205015216], - [-124.150267, 43.91085], - [-124.122406, 44.104442], - [-124.111054, 44.235071], - [-124.114370074258, 44.276194], - [-124.1152, 44.286486], - [-124.084401, 44.415611], - [-124.083601, 44.501123], - [-124.065008, 44.632504], - [-124.063406, 44.703177], - [-124.074066, 44.798107], - [-124.063155, 44.835333], - [-124.023834, 44.949825], - [-124.010097209885, 45.0449989594412], - [-124.00977, 45.047266], - [-123.975425, 45.145476], - [-123.972919, 45.216784], - [-123.962887, 45.280218], - [-123.979715, 45.347724], - [-123.960557, 45.430778], - [-123.976544, 45.489733], - [-123.947556, 45.564878], - [-123.939005, 45.661923], - [-123.939448, 45.708795], - [-123.968563, 45.757019], - [-123.966278384519, 45.7830849035453], - [-123.961544, 45.837101], - [-123.96763, 45.907807], - [-123.993703, 45.946431], - [-123.937471, 45.977306], - [-123.92933, 46.041978], - [-123.95919, 46.141675], - [-124.041128, 46.197672], - [-123.998052, 46.235327], - [-123.912405, 46.17945], - [-123.838801, 46.192211], - [-123.757589, 46.213001], - [-123.718149, 46.188989], - [-123.660868, 46.216296], - [-123.586205, 46.228654], - [-123.547659, 46.259109], - [-123.479644, 46.269131], - [-123.427629, 46.229348], - [-123.430847, 46.181827], - [-123.371433, 46.146372], - [-123.363744507266, 46.1462431943485], - [-123.280166, 46.144843], - [-123.212493591209, 46.1710964584003], - [-123.166414, 46.188973], - [-123.115904, 46.185268], - [-123.004233, 46.133823], - [-122.962681, 46.104817], - [-122.904119, 46.083734], - [-122.856158, 46.014469], - [-122.813998, 45.960984], - [-122.81151, 45.912725], - [-122.785026, 45.867699], - [-122.788086362595, 45.8510074543561], - [-122.795605, 45.81], - [-122.761451, 45.759163], - [-122.76651077133, 45.7286625744452], - [-122.774511, 45.680437], - [-122.756443903971, 45.6624210250876], - [-122.738109, 45.644138], - [-122.643907, 45.609739], - [-122.492259, 45.583281], - [-122.438674, 45.563585], - [-122.380302, 45.575941], - [-122.331502, 45.548241], - [-122.262625, 45.544321], - [-122.249197008052, 45.5499989327412], - [-122.183695, 45.577696], - [-122.101675, 45.583516], - [-122.00369, 45.61593], - [-121.951838, 45.644951], - [-121.923749361985, 45.6543495089694], - [-121.900858, 45.662009], - [-121.867167, 45.693277], - [-121.811304, 45.706761], - [-121.735104, 45.694039], - [-121.668362, 45.705082], - [-121.533106, 45.726541], - [-121.52400610422, 45.7238362251992], - [-121.440695827861, 45.6990737947724], - [-121.423592, 45.69399], - [-121.33777, 45.704949], - [-121.215779, 45.671238], - [-121.183841, 45.606441], - [-121.1222, 45.616067], - [-121.084933, 45.647893], - [-120.943977, 45.656445], - [-120.913935013084, 45.6480658664235], - [-120.895575, 45.642945], - [-120.855674, 45.671545], - [-120.68937, 45.715847], - [-120.652516760194, 45.7361697306749], - [-120.634968, 45.745847], - [-120.591166, 45.746547], - [-120.505863, 45.700048], - [-120.488546820704, 45.6999122274785], - [-120.40396, 45.699249], - [-120.282156, 45.72125], - [-120.210754, 45.725951], - [-120.141352, 45.773152], - [-120.07015, 45.785152], - [-119.999505153462, 45.8116849230819], - [-119.965744, 45.824365], - [-119.868153889391, 45.8382266026357], - [-119.802655, 45.84753], - [-119.669877, 45.856867], - [-119.600549, 45.919581], - [-119.571584, 45.925456], - [-119.487829, 45.906307], - [-119.432138558816, 45.9132091442339], - [-119.364396, 45.921605], - [-119.25715, 45.939926], - [-119.12612, 45.932859], - [-119.061462, 45.958527], - [-118.987227539565, 45.9998002135237], - [-118.987129, 45.999855], - [-118.67787, 46.000935], - [-118.606789154189, 46.0008632497912], - [-118.36779, 46.000622], - [-117.996970429603, 46.0001906671726], - [-117.977657306532, 46.000168202382], - [-117.717852, 45.999866], - [-117.603425834504, 45.9987601734427], - [-117.479937263654, 45.9975667668422], - [-117.353928, 45.996349], - [-116.915989, 45.995413], - [-116.886843, 45.958617], - [-116.859795, 45.907264], - [-116.799204532501, 45.8510454354829], - [-116.78752, 45.840204], - [-116.736268, 45.826179], - [-116.665344, 45.781998], - [-116.593004, 45.778541], - [-116.535698, 45.734231], - [-116.528272, 45.681473], - [-116.463504, 45.615785], - [-116.502756, 45.566608], - [-116.588195, 45.44292], - [-116.674648, 45.314342], - [-116.690916254858, 45.2689841379699], - [-116.696047, 45.254679], - [-116.754643, 45.113972], - [-116.783128263267, 45.07771250501], - [-116.78371, 45.076972], - [-116.841314, 45.030907], - [-116.858313, 44.978761], - [-116.833632, 44.928976], - [-116.865338, 44.870599], - [-116.889295186967, 44.8405297781533], - [-116.9318, 44.787181], - [-117.013802, 44.756841], - [-117.062273, 44.727143], - [-117.094968, 44.652011], - [-117.14293, 44.557236], - [-117.167187, 44.523431], - [-117.225932, 44.479389], - [-117.215072, 44.427162], - [-117.243027, 44.390974], - [-117.216911, 44.360163], - [-117.192203, 44.32863], - [-117.211995506953, 44.2964510959383], - [-117.216974, 44.288357], - [-117.170342, 44.25889], - [-117.121037, 44.277585], - [-117.059352, 44.237244], - [-116.971958, 44.235677], - [-116.965498, 44.194126], - [-116.902752, 44.179467], - [-116.895931, 44.154295], - [-116.897854677115, 44.1526663953914], - [-116.977351, 44.085364], - [-116.937342, 44.029376], - [-116.959871, 43.982925], - [-116.976024, 43.895548], - [-116.98554503849, 43.8811848528138], - [-117.023577, 43.823811], - [-117.025663810446, 43.680293635954], - [-117.026889, 43.596033], - [-117.026652, 43.025128], - [-117.026253, 42.807447], - [-117.026551, 42.378557], - [-117.026197, 41.99989], - [-117.197798, 42.00038], - [-117.403613, 41.99929], - [-117.623731, 41.998467], - [-117.873467, 41.998335], - [-118.197189, 41.996995], - [-118.197369215928, 41.9969940811635], - [-118.501002, 41.995446], - [-118.775869, 41.992692], - [-119.001022, 41.993793], - [-119.20828, 41.993177], - [-119.324184120439, 41.9938756277933], - [-119.360123119603, 41.9940922549812], - [-119.72573, 41.996296], - [-119.999168, 41.99454], - [-120.181563, 41.994588], - [-120.501069, 41.993785], - [-120.692219, 41.993677], - [-120.879925710236, 41.9934832599849], - [-121.035195, 41.993323], - [-121.251099, 41.99757], - [-121.43961, 41.99708], - [-121.447539998048, 41.9971900332726], - [-121.675348, 42.000351], - [-121.846712, 42.00307], - [-122.101922, 42.005766], - [-122.289527, 42.007764], - [-122.289749096157, 42.0077647304966], - [-122.501135, 42.00846], - [-122.80008, 42.004071], - [-123.045254, 42.003049], - [-123.145959, 42.009247], - [-123.231001260578, 42.004970062256], - [-123.347562, 41.999108], - [-123.43477, 42.001641], - [-123.519112836804, 41.9991725180329], - [-123.656998, 41.995137], - [-123.822037598588, 41.995620816947], - [-124.001188, 41.996146], - [-124.211605, 41.99846], - [-124.270464, 42.045553], - [-124.314289, 42.067864], - [-124.351535, 42.129796], - [-124.361009, 42.180752], - [-124.383633, 42.22716], - [-124.410982, 42.250547], - [-124.410556, 42.307431], - [-124.425554, 42.351874], - [-124.435105, 42.440163], - [-124.399065, 42.539928], - [-124.400918, 42.597518], - [-124.413119, 42.657934], - [-124.45074, 42.675798], - [-124.448418, 42.689909], - [-124.510017, 42.734746], - [-124.552441, 42.840568] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "11", - "STATENS": "01702382", - "AFFGEOID": "0400000US11", - "GEOID": "11", - "ISOCODE": "US-DC", - "name": "District of Columbia", - "LSAD": "00", - "ALAND": 158316124, - "AWATER": 18709762 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.119759, 38.934343], - [-77.041018, 38.995548], - [-77.002546244247, 38.9655317004459], - [-76.909393, 38.892852], - [-76.979497, 38.837812], - [-77.039006, 38.791645], - [-77.0390663567647, 38.8412718895186], - [-77.039099, 38.868112], - [-77.0902, 38.904211], - [-77.119759, 38.934343] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "39", - "STATENS": "01085497", - "AFFGEOID": "0400000US39", - "GEOID": "39", - "ISOCODE": "US-OH", - "name": "Ohio", - "LSAD": "00", - "ALAND": 105823653399, - "AWATER": 10274702852 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-82.863342, 41.693693], - [-82.82572, 41.72281], - [-82.782719, 41.694003], - [-82.788876, 41.643047], - [-82.842099, 41.628323], - [-82.863342, 41.693693] - ] - ], - [ - [ - [-84.820159, 39.227225], - [-84.8188774692751, 39.3051435835594], - [-84.8188770978104, 39.3051661690523], - [-84.817453, 39.391753], - [-84.8161601949108, 39.5219681089929], - [-84.8157059432555, 39.5677216640274], - [-84.814129, 39.726556], - [-84.8141281379328, 39.7266165116193], - [-84.8114171063805, 39.9169136295798], - [-84.8101612384745, 40.0050675438482], - [-84.808706, 40.107216], - [-84.8049173025784, 40.3100959150341], - [-84.8041205270149, 40.3527622302971], - [-84.804119, 40.352844], - [-84.8029313665713, 40.4653866217198], - [-84.802547, 40.50181], - [-84.8024138785794, 40.5722128806467], - [-84.8021190322638, 40.7281459368726], - [-84.802119, 40.728163], - [-84.8026702061534, 40.922568713921], - [-84.8028596219514, 40.9893740520086], - [-84.803234, 41.121414], - [-84.8036449822556, 41.2525616835482], - [-84.8037035726169, 41.2712583305706], - [-84.804133, 41.408292], - [-84.8042532576115, 41.4260497115499], - [-84.8049581562396, 41.5301378133882], - [-84.806082, 41.696089], - [-84.438067, 41.704903], - [-84.3995487854742, 41.7059213574056], - [-84.3604190413973, 41.7069558826335], - [-84.134417, 41.712931], - [-83.8803904653533, 41.7201944903196], - [-83.7631498513652, 41.7235468017856], - [-83.763038, 41.72355], - [-83.5855418421088, 41.7287720285128], - [-83.453832, 41.732647], - [-83.409531, 41.691247], - [-83.326825, 41.701562], - [-83.23166, 41.644218], - [-83.1638214175228, 41.624130312974], - [-83.066593, 41.59534], - [-83.028072, 41.555656], - [-82.934369, 41.514353], - [-82.859531, 41.576371], - [-82.834101, 41.587587], - [-82.717878, 41.54193], - [-82.6905671606649, 41.4967057954382], - [-82.687921, 41.492324], - [-82.616952, 41.428425], - [-82.533208, 41.391157], - [-82.460599, 41.386316], - [-82.361784, 41.426644], - [-82.3480192068912, 41.4272633087345], - [-82.268479, 41.430842], - [-82.181598, 41.471634], - [-82.0711504528736, 41.4969119867847], - [-81.994565, 41.51444], - [-81.968480702529, 41.5038610079018], - [-81.9603249700039, 41.5005532925978], - [-81.937862, 41.491443], - [-81.8225035796994, 41.4952594192894], - [-81.810758, 41.495648], - [-81.7685751416216, 41.4914896464763], - [-81.738755, 41.48855], - [-81.633652, 41.540458], - [-81.488682733409, 41.6344639278209], - [-81.466038, 41.649148], - [-81.388632, 41.707144], - [-81.286925, 41.760243], - [-81.184368, 41.786671], - [-81.05192, 41.839557], - [-81.0022694065175, 41.8491724664376], - [-80.900342, 41.868912], - [-80.800794, 41.909635], - [-80.581882, 41.95761], - [-80.519425, 41.977523], - [-80.5193967266905, 41.8495629905593], - [-80.519357, 41.669767], - [-80.5191767503534, 41.499924051206], - [-80.5191652733637, 41.4891096844823], - [-80.5190001313643, 41.3335021441936], - [-80.518893, 41.232556], - [-80.519196690325, 41.1333865025489], - [-80.5192220860809, 41.1250935667958], - [-80.5196437725473, 40.9873926540058], - [-80.519891, 40.906661], - [-80.5198697076862, 40.9003239342489], - [-80.5197051125992, 40.8513367786854], - [-80.518991, 40.638801], - [-80.583633, 40.61552], - [-80.627171, 40.619936], - [-80.667957, 40.582496], - [-80.622195, 40.520497], - [-80.604895, 40.446667], - [-80.6273626299369, 40.3951709330172], - [-80.631596, 40.385468], - [-80.606596, 40.303869], - [-80.644598, 40.25127], - [-80.684173210708, 40.1870179733507], - [-80.7025753036226, 40.1571413980097], - [-80.705994, 40.151591], - [-80.736804, 40.080072], - [-80.7382184399836, 40.0335432260784], - [-80.740126, 39.970793], - [-80.764479, 39.95025], - [-80.803394, 39.918762], - [-80.8234381047859, 39.8500320873964], - [-80.824276, 39.847159], - [-80.824969, 39.801092], - [-80.869933, 39.763555], - [-80.8355216930075, 39.7192518022001], - [-80.829764, 39.711839], - [-80.865575, 39.662751], - [-80.943782, 39.606926], - [-81.0373650419871, 39.5380557124726], - [-81.07595, 39.50966], - [-81.1212738561078, 39.4576974138893], - [-81.128533, 39.449375], - [-81.185946, 39.430731], - [-81.249088, 39.389992], - [-81.347567, 39.34577], - [-81.3703898088263, 39.3487006724034], - [-81.393794, 39.351706], - [-81.412706, 39.394618], - [-81.456143, 39.409274], - [-81.503189, 39.373242], - [-81.559647, 39.330774], - [-81.565247, 39.276175], - [-81.613896, 39.275339], - [-81.678331, 39.273755], - [-81.711628, 39.219228], - [-81.7214681391725, 39.2109608092037], - [-81.752754, 39.184676], - [-81.7522970367401, 39.1810347474059], - [-81.742953, 39.106578], - [-81.7502668434263, 39.1040311930998], - [-81.807855, 39.083978], - [-81.793304, 39.040353], - [-81.775734, 38.980737], - [-81.827354, 38.945898], - [-81.89847, 38.929603], - [-81.941829, 38.993295], - [-82.007062, 39.029578], - [-82.041563, 39.017878], - [-82.089065, 38.975978], - [-82.0988666505543, 38.9608792844933], - [-82.134766, 38.905579], - [-82.16157, 38.824632], - [-82.20929, 38.802672], - [-82.201537, 38.760372], - [-82.185567, 38.659583], - [-82.175167, 38.608484], - [-82.218967, 38.591683], - [-82.27427, 38.593683], - [-82.2821333440281, 38.5798607964035], - [-82.293271, 38.560283], - [-82.304223, 38.496308], - [-82.323999, 38.449268], - [-82.381773, 38.434783], - [-82.447076, 38.426982], - [-82.5089669497313, 38.4146439126517], - [-82.560664, 38.404338], - [-82.593673, 38.421809], - [-82.618474, 38.477089], - [-82.6641207909684, 38.5077181960708], - [-82.675724, 38.515504], - [-82.724846, 38.5576], - [-82.800112, 38.563183], - [-82.8115423846504, 38.5723695895619], - [-82.851314, 38.604334], - [-82.869592, 38.678177], - [-82.871192, 38.718377], - [-82.8822845498777, 38.741607822612], - [-82.889193, 38.756076], - [-82.943147, 38.74328], - [-83.011816, 38.730057], - [-83.0303349312311, 38.7168676766561], - [-83.042338, 38.708319], - [-83.112372, 38.671685], - [-83.128973, 38.640231], - [-83.172647, 38.620252], - [-83.239515, 38.628588], - [-83.2642676908446, 38.6131319856547], - [-83.286514, 38.599241], - [-83.320531, 38.622713], - [-83.376302, 38.661473], - [-83.440404, 38.669361], - [-83.533339, 38.702105], - [-83.626922, 38.679387], - [-83.642994, 38.643273], - [-83.6469615501443, 38.6418337437309], - [-83.679484, 38.630036], - [-83.7058575510284, 38.6380366259831], - [-83.77216, 38.65815], - [-83.78362, 38.695641], - [-83.834015, 38.716008], - [-83.852085, 38.751433], - [-83.9043750861048, 38.7672838752678], - [-83.928454, 38.774583], - [-83.978814, 38.787104], - [-84.051642, 38.771397], - [-84.0526095475065, 38.7716067284387], - [-84.135088, 38.789485], - [-84.212904, 38.805707], - [-84.226155212983, 38.8297636689604], - [-84.233265, 38.842671], - [-84.2323050454035, 38.8747078960317], - [-84.232132, 38.880483], - [-84.288164, 38.955789], - [-84.297255, 38.989694], - [-84.3212072268568, 39.0205863526894], - [-84.326539, 39.027463], - [-84.40094, 39.046362], - [-84.432941, 39.083961], - [-84.445242, 39.114461], - [-84.462042, 39.12176], - [-84.480943, 39.11676], - [-84.493743, 39.10246], - [-84.499187871331, 39.1021643992027], - [-84.5065187374369, 39.101766408188], - [-84.550844, 39.09936], - [-84.607928, 39.073238], - [-84.6220474364107, 39.0783346767822], - [-84.677247, 39.09826], - [-84.714048, 39.132659], - [-84.750749, 39.147358], - [-84.820157, 39.10548], - [-84.820159, 39.227225] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "05", - "STATENS": "00068085", - "AFFGEOID": "0400000US05", - "GEOID": "05", - "ISOCODE": "US-AR", - "name": "Arkansas", - "LSAD": "00", - "ALAND": 134660767709, - "AWATER": 3121950081 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-94.617919, 36.499414], - [-94.361203, 36.4996], - [-94.0770881248555, 36.49897595691], - [-93.95919, 36.498717], - [-93.8666892118508, 36.4988662760355], - [-93.700171, 36.499135], - [-93.5842625342512, 36.4989016403491], - [-93.426989, 36.498585], - [-93.3153233371857, 36.4983127171069], - [-93.2930675065906, 36.4982584490195], - [-93.125969, 36.497851], - [-92.8540081073941, 36.4980234071379], - [-92.838876, 36.498033], - [-92.7723338933721, 36.4980831540794], - [-92.564238, 36.49824], - [-92.5291361751611, 36.498165682126], - [-92.350277, 36.497787], - [-92.150306261007, 36.4981403333038], - [-92.120391964917, 36.4981931896223], - [-91.985802, 36.498431], - [-91.6723336435146, 36.4992566570116], - [-91.64259, 36.499335], - [-91.450023110521, 36.4975403827277], - [-91.4068712895641, 36.4971382315405], - [-91.404915, 36.49712], - [-91.1265376607175, 36.4977977039745], - [-91.017974, 36.498062], - [-90.784029207405, 36.4984625681699], - [-90.765672, 36.498494], - [-90.5761790655673, 36.498405927798], - [-90.494575, 36.498368], - [-90.2207490539154, 36.4959375921945], - [-90.153871, 36.495344], - [-90.141399, 36.459874], - [-90.131038, 36.415069], - [-90.066136, 36.386272], - [-90.063526, 36.356911], - [-90.06398, 36.303038], - [-90.114922, 36.265595], - [-90.155928, 36.214074], - [-90.1891019136628, 36.1989984552544], - [-90.220425, 36.184764], - [-90.235585, 36.139474], - [-90.294492, 36.112949], - [-90.339343, 36.047112], - [-90.368718, 35.995812], - [-90.2890769140827, 35.9965128689775], - [-90.103842, 35.998143], - [-89.9593746319162, 35.9990141141563], - [-89.901183, 35.999365], - [-89.733095, 36.000608], - [-89.686924, 35.947716], - [-89.652279, 35.921462], - [-89.6491186188564, 35.9047155762998], - [-89.64727, 35.89492], - [-89.722634, 35.873718], - [-89.729517, 35.847632], - [-89.723426, 35.809382], - [-89.797053, 35.782648], - [-89.863874, 35.747592], - [-89.915491, 35.754917], - [-89.956589, 35.695486], - [-89.898916, 35.650904], - [-89.876548, 35.626653], - [-89.9325, 35.607865], - [-89.944754, 35.560308], - [-89.958498, 35.541703], - [-90.037615, 35.550329], - [-90.045805, 35.496533], - [-90.022064, 35.457375], - [-90.045306, 35.415435], - [-90.070549, 35.423291], - [-90.112504, 35.410153], - [-90.087903, 35.36327], - [-90.121864, 35.304535], - [-90.166594, 35.274588], - [-90.097947, 35.249983], - [-90.093285, 35.203282], - [-90.099777, 35.164474], - [-90.09061, 35.118287], - [-90.160058, 35.12883], - [-90.181387, 35.091401], - [-90.197146, 35.050731], - [-90.265296, 35.040293], - [-90.300697, 35.028793], - [-90.309297, 34.995694], - [-90.244476, 34.937596], - [-90.250095, 34.90732], - [-90.3114467159881, 34.872838517743], - [-90.313476, 34.871698], - [-90.401633, 34.835305], - [-90.4079823819208, 34.835265981566], - [-90.463795, 34.834923], - [-90.473527, 34.788835], - [-90.505494, 34.764568], - [-90.546053, 34.702076], - [-90.550158, 34.663445], - [-90.5748549582232, 34.6316539794501], - [-90.587224, 34.615732], - [-90.549244, 34.568101], - [-90.569347, 34.524867], - [-90.5694607451505, 34.5243442788972], - [-90.583717, 34.458829], - [-90.575336, 34.415152], - [-90.641398, 34.383869], - [-90.660404, 34.33576], - [-90.729131, 34.364206], - [-90.765174, 34.342818], - [-90.752681, 34.289266], - [-90.812829, 34.279438], - [-90.839981, 34.236114], - [-90.89456, 34.22438], - [-90.882701, 34.184364], - [-90.894385, 34.160953], - [-90.938064, 34.148754], - [-90.9440807601938, 34.1200652947774], - [-90.9448449522363, 34.1164215264479], - [-90.946323, 34.109374], - [-90.90113, 34.094667], - [-90.874541, 34.072041], - [-90.89242, 34.02686], - [-90.942662, 34.01805], - [-90.979945, 34.000106], - [-91.004981, 33.977011], - [-91.048367, 33.985078], - [-91.088696, 33.961334], - [-91.035961, 33.943758], - [-91.026382, 33.90798], - [-91.061247, 33.877505], - [-91.052819, 33.824181], - [-91.025173, 33.805953], - [-91.026782, 33.763642], - [-91.08551, 33.77641], - [-91.111494, 33.774568], - [-91.143287, 33.747141], - [-91.075389, 33.714403], - [-91.10098, 33.660551], - [-91.178311, 33.651109], - [-91.130902, 33.610919], - [-91.188942, 33.576225], - [-91.206415960587, 33.5456284081563], - [-91.215671, 33.529423], - [-91.2156615141091, 33.5294098627481], - [-91.189375, 33.493005], - [-91.171799, 33.462342], - [-91.147663, 33.427172], - [-91.113764, 33.393124], - [-91.142219, 33.348989], - [-91.125539, 33.280255], - [-91.086137, 33.273652], - [-91.068708, 33.232936], - [-91.084366, 33.180856], - [-91.104317, 33.131598], - [-91.153015, 33.135093], - [-91.180836, 33.098364], - [-91.120379, 33.05453], - [-91.1596060796211, 33.0112423416025], - [-91.166073, 33.004106], - [-91.2645640502205, 33.0047388242705], - [-91.4359307415474, 33.0058398887954], - [-91.4603762339211, 33.0059969558674], - [-91.489176, 33.006182], - [-91.875128, 33.007728], - [-92.0689280885167, 33.0084815806166], - [-92.0690147239268, 33.0084819174935], - [-92.222825, 33.00908], - [-92.501383, 33.01216], - [-92.723553, 33.014328], - [-92.7247431731793, 33.0143417676748], - [-92.971137, 33.017192], - [-92.9887760560898, 33.0172511697504], - [-93.197402, 33.017951], - [-93.2386468140122, 33.0180159427056], - [-93.377134, 33.018234], - [-93.4905581209888, 33.0186347572102], - [-93.5209925078522, 33.0187422898925], - [-93.723273, 33.019457], - [-93.8071252110518, 33.0193945746385], - [-93.8145980610549, 33.0193890113342], - [-94.042964, 33.019219], - [-94.042719, 33.160291], - [-94.0429458450603, 33.2712410493864], - [-94.043067, 33.330498], - [-94.042988, 33.435824], - [-94.043428, 33.551425], - [-94.07267, 33.572234], - [-94.143024, 33.577725], - [-94.183395, 33.592212], - [-94.213605, 33.570622], - [-94.238868, 33.576722], - [-94.303742, 33.564486], - [-94.338422, 33.567082], - [-94.354165, 33.556452], - [-94.388052, 33.565511], - [-94.419057, 33.577217], - [-94.485875, 33.637867], - [-94.481842, 33.789008], - [-94.4772691832212, 33.9408298614626], - [-94.474895, 34.019655], - [-94.470143947319, 34.1901776556377], - [-94.465425, 34.359548], - [-94.4611686861559, 34.5074566515725], - [-94.4575, 34.634945], - [-94.4543955288439, 34.7289436942281], - [-94.449058, 34.890556], - [-94.4475060874703, 34.9340729057232], - [-94.4429265938001, 35.0624856806022], - [-94.435316, 35.275893], - [-94.431515, 35.369591], - [-94.4340725641195, 35.387474395379], - [-94.4348090628047, 35.3926242553894], - [-94.449696, 35.496719], - [-94.4731193906467, 35.6385471525294], - [-94.4930532906959, 35.7592465106763], - [-94.494549, 35.768303], - [-94.532071, 35.987852], - [-94.5518886566514, 36.1021239714216], - [-94.5622679285528, 36.1619726146264], - [-94.5862, 36.299969], - [-94.617919, 36.499414] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "53", - "STATENS": "01779804", - "AFFGEOID": "0400000US53", - "GEOID": "53", - "ISOCODE": "US-WA", - "name": "Washington", - "LSAD": "00", - "ALAND": 172118963546, - "AWATER": 12548738684 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-123.237148, 48.683466], - [-123.070427, 48.699971], - [-123.019699, 48.721312], - [-122.979519, 48.781702], - [-122.937925, 48.790315], - [-122.818436, 48.744629], - [-122.743049, 48.661991], - [-122.79901, 48.604683], - [-122.771206, 48.562426], - [-122.779124, 48.508911], - [-122.817912, 48.483888], - [-122.803521, 48.428748], - [-122.874135, 48.418196], - [-122.928004, 48.439966], - [-123.039156, 48.460003], - [-123.141478, 48.505291], - [-123.20268, 48.590214], - [-123.237148, 48.683466] - ] - ], - [ - [ - [-124.725839, 48.386012], - [-124.653243, 48.390691], - [-124.546259, 48.353594], - [-124.380874, 48.284699], - [-124.250882, 48.264773], - [-124.101773, 48.216883], - [-124.050734, 48.177747], - [-123.880068, 48.160621], - [-123.728736, 48.1628], - [-123.672445, 48.162715], - [-123.551131, 48.151382], - [-123.441972, 48.124259], - [-123.314578, 48.113725], - [-123.239129, 48.118217], - [-123.144783, 48.175943], - [-123.06621, 48.120469], - [-123.004128, 48.090516], - [-122.946119, 48.098552], - [-122.910686755725, 48.1097997439328], - [-122.833173, 48.134406], - [-122.760448, 48.14324], - [-122.698465, 48.103102], - [-122.70184, 48.016106], - [-122.701294, 47.972979], - [-122.651063, 47.920985], - [-122.63410286528, 47.9230352997388], - [-122.616701, 47.925139], - [-122.573745864315, 47.9510041672091], - [-122.546824, 47.967215], - [-122.542924, 47.996404], - [-122.607342, 48.030992], - [-122.598301, 48.110616], - [-122.633167, 48.163281], - [-122.711508, 48.193573], - [-122.752563, 48.260061], - [-122.707077, 48.315286], - [-122.666982528216, 48.4124669920443], - [-122.665338, 48.416453], - [-122.689121, 48.476849], - [-122.650307, 48.530156], - [-122.642597, 48.588339], - [-122.671345425667, 48.6452989985202], - [-122.710177, 48.722237], - [-122.720045, 48.789195], - [-122.732506, 48.838097], - [-122.794018, 48.88313], - [-122.821631, 48.941369], - [-122.75802, 49.002357], - [-122.251063, 49.002494], - [-122.098357, 49.002146], - [-121.751252, 48.997399], - [-121.395543, 48.999851], - [-121.12624, 49.001412], - [-120.851527133018, 49.0005911528352], - [-120.716604, 49.000188], - [-120.376216, 49.000705], - [-120.001199, 48.999418], - [-119.4577, 49.000261], - [-119.132102, 49.000262], - [-118.836614034806, 49.0003077591428], - [-118.197375052459, 49.0004067514245], - [-118.002046, 49.000437], - [-117.607323, 49.000843], - [-117.429968, 49.0003068698256], - [-117.268247, 48.999818], - [-117.032351, 48.999188], - [-117.032939182117, 48.8466679212015], - [-117.033671, 48.656902], - [-117.035289, 48.422732], - [-117.041107, 48.124904], - [-117.041214453461, 48.0454651038028], - [-117.041306446459, 47.9774559200268], - [-117.041634, 47.7353], - [-117.040490375568, 47.366028886698], - [-117.040159751863, 47.259272], - [-117.039836, 47.154734], - [-117.039833386028, 47.1272689922541], - [-117.039777655562, 46.5417089920381], - [-117.039771, 46.471779], - [-117.036645748421, 46.4261004826554], - [-117.035545, 46.410012], - [-117.062748, 46.353624], - [-116.99726, 46.303151], - [-116.964379, 46.253282], - [-116.962966, 46.19968], - [-116.923958, 46.17092], - [-116.935473, 46.142448], - [-116.981962, 46.084915], - [-116.942656, 46.061], - [-116.915989, 45.995413], - [-117.353928, 45.996349], - [-117.479937263654, 45.9975667668422], - [-117.603425834504, 45.9987601734427], - [-117.717852, 45.999866], - [-117.977657306532, 46.000168202382], - [-117.996970429603, 46.0001906671726], - [-118.36779, 46.000622], - [-118.606789154189, 46.0008632497912], - [-118.67787, 46.000935], - [-118.987129, 45.999855], - [-118.987227539565, 45.9998002135237], - [-119.061462, 45.958527], - [-119.12612, 45.932859], - [-119.25715, 45.939926], - [-119.364396, 45.921605], - [-119.432138558816, 45.9132091442339], - [-119.487829, 45.906307], - [-119.571584, 45.925456], - [-119.600549, 45.919581], - [-119.669877, 45.856867], - [-119.802655, 45.84753], - [-119.868153889391, 45.8382266026357], - [-119.965744, 45.824365], - [-119.999505153462, 45.8116849230819], - [-120.07015, 45.785152], - [-120.141352, 45.773152], - [-120.210754, 45.725951], - [-120.282156, 45.72125], - [-120.40396, 45.699249], - [-120.488546820704, 45.6999122274785], - [-120.505863, 45.700048], - [-120.591166, 45.746547], - [-120.634968, 45.745847], - [-120.652516760194, 45.7361697306749], - [-120.68937, 45.715847], - [-120.855674, 45.671545], - [-120.895575, 45.642945], - [-120.913935013084, 45.6480658664235], - [-120.943977, 45.656445], - [-121.084933, 45.647893], - [-121.1222, 45.616067], - [-121.183841, 45.606441], - [-121.215779, 45.671238], - [-121.33777, 45.704949], - [-121.423592, 45.69399], - [-121.440695827861, 45.6990737947724], - [-121.52400610422, 45.7238362251992], - [-121.533106, 45.726541], - [-121.668362, 45.705082], - [-121.735104, 45.694039], - [-121.811304, 45.706761], - [-121.867167, 45.693277], - [-121.900858, 45.662009], - [-121.923749361985, 45.6543495089694], - [-121.951838, 45.644951], - [-122.00369, 45.61593], - [-122.101675, 45.583516], - [-122.183695, 45.577696], - [-122.249197008052, 45.5499989327412], - [-122.262625, 45.544321], - [-122.331502, 45.548241], - [-122.380302, 45.575941], - [-122.438674, 45.563585], - [-122.492259, 45.583281], - [-122.643907, 45.609739], - [-122.738109, 45.644138], - [-122.756443903971, 45.6624210250876], - [-122.774511, 45.680437], - [-122.76651077133, 45.7286625744452], - [-122.761451, 45.759163], - [-122.795605, 45.81], - [-122.788086362595, 45.8510074543561], - [-122.785026, 45.867699], - [-122.81151, 45.912725], - [-122.813998, 45.960984], - [-122.856158, 46.014469], - [-122.904119, 46.083734], - [-122.962681, 46.104817], - [-123.004233, 46.133823], - [-123.115904, 46.185268], - [-123.166414, 46.188973], - [-123.212493591209, 46.1710964584003], - [-123.280166, 46.144843], - [-123.363744507266, 46.1462431943485], - [-123.371433, 46.146372], - [-123.430847, 46.181827], - [-123.427629, 46.229348], - [-123.479644, 46.269131], - [-123.547659, 46.259109], - [-123.669501, 46.266832], - [-123.700764, 46.305278], - [-123.727903817597, 46.2913355857112], - [-123.75956, 46.275073], - [-123.806139, 46.283588], - [-123.875525, 46.239787], - [-123.909306, 46.245491], - [-123.954353, 46.277001], - [-123.969427, 46.291398], - [-124.080671, 46.267239], - [-124.064624, 46.326899], - [-124.057024, 46.493338], - [-124.069583, 46.630651], - [-123.960642, 46.636364], - [-123.923269, 46.672708], - [-123.975157, 46.713971], - [-124.080983, 46.735003], - [-124.096796667905, 46.794085], - [-124.101232, 46.810656], - [-124.138225, 46.905534], - [-124.180111, 46.926357], - [-124.169113, 46.994508], - [-124.188544, 47.157859], - [-124.195893, 47.174], - [-124.236349, 47.287287], - [-124.319379, 47.355559], - [-124.353615670887, 47.5335370830521], - [-124.355955, 47.545698], - [-124.412106, 47.691199], - [-124.471687, 47.766907], - [-124.539927, 47.836967], - [-124.613108656052, 47.8805724417486], - [-124.625512, 47.887963], - [-124.672427, 47.964414], - [-124.685393, 48.049238], - [-124.687101, 48.098657], - [-124.721725, 48.153185], - [-124.690389, 48.219745], - [-124.669265, 48.296353], - [-124.725839, 48.386012] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "72", - "STATENS": "01779808", - "AFFGEOID": "0400000US72", - "GEOID": "72", - "ISOCODE": "US-PR", - "name": "Puerto Rico", - "LSAD": "00", - "ALAND": 8869135605, - "AWATER": 4922143005 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-65.342068, 18.34529], - [-65.255933, 18.342117], - [-65.221568, 18.320959], - [-65.241257, 18.301078], - [-65.283269, 18.280214], - [-65.337451, 18.308308], - [-65.342068, 18.34529] - ] - ], - [ - [ - [-65.57686, 18.103224], - [-65.50592, 18.152605], - [-65.398166, 18.161723], - [-65.287962, 18.148097], - [-65.291235, 18.103469], - [-65.374419, 18.108041], - [-65.45138, 18.086096], - [-65.542087, 18.081177], - [-65.57686, 18.103224] - ] - ], - [ - [ - [-67.2391283574046, 18.373827545192], - [-67.226744, 18.378247], - [-67.1601698778747, 18.4155997471433], - [-67.159608, 18.415915], - [-67.169011, 18.466352], - [-67.125655, 18.511706], - [-67.0973034258565, 18.5116679163542], - [-67.042276, 18.511594], - [-66.95631595186, 18.4939004288703], - [-66.924089, 18.487267], - [-66.9015667585517, 18.4882612574349], - [-66.836591129039, 18.4911296443528], - [-66.79932, 18.492775], - [-66.7655707778363, 18.4827960078403], - [-66.733986, 18.473457], - [-66.624618, 18.494199], - [-66.5862547756768, 18.4879522919662], - [-66.5342564453186, 18.4794853710095], - [-66.470292, 18.46907], - [-66.4389500073989, 18.4814929092627], - [-66.420921, 18.488639], - [-66.3495033226913, 18.4792143103093], - [-66.315477, 18.474724], - [-66.3150242736902, 18.4747411913405], - [-66.258015, 18.476906], - [-66.1958822114694, 18.4706537645082], - [-66.186722, 18.469732], - [-66.137959, 18.473892], - [-66.1292603454387, 18.4721745898571], - [-66.03944, 18.454441], - [-66.0343218474795, 18.4550699067989], - [-65.9928037546563, 18.4601715544638], - [-65.99079, 18.460419], - [-65.904988, 18.450926], - [-65.831476, 18.426849], - [-65.827737477559, 18.4255624895091], - [-65.771695, 18.406277], - [-65.7417964652894, 18.3981817451377], - [-65.718618, 18.391906], - [-65.6613516940984, 18.3890389313634], - [-65.624022, 18.38717], - [-65.586232, 18.393383], - [-65.565949, 18.358333], - [-65.564931, 18.325042], - [-65.624871, 18.31067], - [-65.613949666955, 18.2938153422042], - [-65.588317, 18.254257], - [-65.599065, 18.212961], - [-65.635281, 18.199975], - [-65.6599257449176, 18.1915732067306], - [-65.695856, 18.179324], - [-65.7333570957557, 18.1657704722157], - [-65.758728, 18.156601], - [-65.777584, 18.129239], - [-65.8029066863755, 18.071186], - [-65.809174, 18.056818], - [-65.833142, 18.024218], - [-65.8509185557852, 18.0119664368788], - [-65.884937, 17.988521], - [-65.9149360834884, 17.9827659029197], - [-65.98455, 17.969411], - [-66.0179548341394, 17.9749022636095], - [-66.024, 17.975896], - [-66.041704, 17.934941], - [-66.0681034015261, 17.9456048296446], - [-66.098628, 17.957935], - [-66.155387, 17.929406], - [-66.22053069398, 17.9178103809448], - [-66.243235, 17.913769], - [-66.297679, 17.959148], - [-66.3381394256891, 17.9763514577553], - [-66.33839, 17.976458], - [-66.385059, 17.939004], - [-66.445481, 17.979379], - [-66.4532967534793, 17.9801331134818], - [-66.510143, 17.985618], - [-66.5405373162362, 17.9754758878275], - [-66.583233, 17.961229], - [-66.645651, 17.98026], - [-66.664391, 17.968259], - [-66.6970344469585, 17.9819737685972], - [-66.716957, 17.990344], - [-66.746248, 17.990349], - [-66.758467, 17.995181], - [-66.7753589020879, 17.9844314338257], - [-66.784953, 17.978326], - [-66.838584, 17.949931], - [-66.8579139400858, 17.951049271681], - [-66.8583208621404, 17.9510728128512], - [-66.88344, 17.952526], - [-66.927261, 17.926875], - [-66.955577, 17.931557], - [-66.9787006424388, 17.9572909420809], - [-66.982206, 17.961192], - [-67.014744, 17.968468], - [-67.054455, 17.973165], - [-67.089827, 17.951418], - [-67.1078094342763, 17.9516231929024], - [-67.133733, 17.951919], - [-67.183457, 17.931135], - [-67.211973, 17.992993], - [-67.209887, 18.035439], - [-67.199314, 18.091135], - [-67.180822, 18.168055], - [-67.180754718857, 18.1681984717822], - [-67.158001, 18.216719], - [-67.1912212777205, 18.2667488840118], - [-67.209963, 18.294974], - [-67.2252402484797, 18.297984662974], - [-67.235137, 18.299935], - [-67.27135, 18.362329], - [-67.2391283574046, 18.373827545192] - ] - ], - [ - [ - [-67.941222, 18.126927], - [-67.896293, 18.136802], - [-67.846219, 18.127576], - [-67.820915, 18.084711], - [-67.850633, 18.046268], - [-67.885547, 18.036472], - [-67.955811, 18.074232], - [-67.941222, 18.126927] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "56", - "STATENS": "01779807", - "AFFGEOID": "0400000US56", - "GEOID": "56", - "ISOCODE": "US-WY", - "name": "Wyoming", - "LSAD": "00", - "ALAND": 251458712294, - "AWATER": 1867503716 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-111.056888, 44.866658], - [-111.04431854543, 45.0008800033077], - [-111.044275, 45.001345], - [-110.785008, 45.002952], - [-110.705272, 44.992324], - [-110.324441, 44.999156], - [-109.99505, 45.003174], - [-109.798483772435, 45.002920308285], - [-109.574321, 45.002631], - [-109.103445, 45.005904], - [-109.062262, 44.999623], - [-108.62149349473, 44.9996763710215], - [-108.500679, 44.999691], - [-108.248525185308, 45.0006298274175], - [-107.997353, 45.001565], - [-107.911522788162, 45.0015440046114], - [-107.351441, 45.001407], - [-106.888773, 44.995885], - [-106.263715092465, 44.9937884330015], - [-106.263586, 44.993788], - [-106.024880029032, 44.9975841235561], - [-105.848065, 45.000396], - [-105.076600952254, 45.0002966134074], - [-105.038252188274, 45.0002916729918], - [-105.025266, 45.00029], - [-104.057698, 44.997431], - [-104.05581, 44.691343], - [-104.055695199261, 44.5709903771422], - [-104.055389, 44.249983], - [-104.055406377827, 44.1803828740957], - [-104.055416190705, 44.1410812067834], - [-104.055488, 43.853477], - [-104.055032, 43.558603], - [-104.054794284348, 43.503327530406], - [-104.054684568427, 43.477815541711], - [-104.053876, 43.289801], - [-104.053127, 43.000585], - [-104.052586, 42.630917], - [-104.052662191568, 42.6117663005415], - [-104.053107, 42.499964], - [-104.052793, 42.249962], - [-104.052729, 42.016318], - [-104.052762005445, 42.0017762678376], - [-104.053026, 41.885464], - [-104.052825094979, 41.6978228532141], - [-104.052735, 41.613676], - [-104.052634571633, 41.5642757795737], - [-104.052287, 41.393307], - [-104.052287134121, 41.3932140001934], - [-104.052453, 41.278202], - [-104.053142, 41.114457], - [-104.053249, 41.001406], - [-104.497058, 41.001805], - [-104.855273, 40.998048], - [-104.943371, 40.9980741037298], - [-105.276859994035, 40.9981729176259], - [-105.277138, 40.998173], - [-106.190554078709, 40.9977466125744], - [-106.217573, 40.997734], - [-106.321169215914, 40.998215011068], - [-106.860377948665, 41.0007186292371], - [-107.31779575979, 41.0028424812322], - [-107.367443, 41.003073], - [-107.918418289849, 41.0012270706441], - [-108.250649, 41.000114], - [-109.050076, 41.000659], - [-109.250735, 41.001009], - [-109.715409, 40.998191], - [-110.000716736441, 40.9974254597082], - [-110.048482995685, 40.9972972928506], - [-110.121639, 40.997101], - [-110.539819, 40.996346], - [-111.046723, 40.997959], - [-111.046636983126, 41.2516269562514], - [-111.0466, 41.360692], - [-111.045789, 41.565571], - [-111.045818464842, 41.5798449482258], - [-111.046689, 42.001567], - [-111.04708, 42.34942], - [-111.045530292713, 42.5139128777751], - [-111.043564, 42.722624], - [-111.043959, 42.96445], - [-111.044052705118, 43.019407032899], - [-111.044143, 43.072364], - [-111.044617, 43.31572], - [-111.04536056097, 43.5010514511122], - [-111.04611, 43.687848], - [-111.046515, 43.908376], - [-111.047219183002, 43.9834312926077], - [-111.048452, 44.114831], - [-111.049148, 44.374925], - [-111.048974, 44.474072], - [-111.055208, 44.624927], - [-111.055332727124, 44.6662623099175], - [-111.055511, 44.725343], - [-111.056888, 44.866658] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "23", - "STATENS": "01779787", - "AFFGEOID": "0400000US23", - "GEOID": "23", - "ISOCODE": "US-ME", - "name": "Maine", - "LSAD": "00", - "ALAND": 79888263364, - "AWATER": 11745102727 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-68.92401, 43.885407], - [-68.874784, 43.904715], - [-68.849009, 43.849841], - [-68.888483, 43.803781], - [-68.944433, 43.835326], - [-68.92401, 43.885407] - ] - ], - [ - [ - [-71.083924, 45.305451], - [-71.03821, 45.311922], - [-71.012757, 45.34476], - [-70.949365, 45.331536], - [-70.912111, 45.296197], - [-70.892822, 45.239172], - [-70.84443, 45.234513], - [-70.8340195374401, 45.2717944023968], - [-70.82979, 45.286941], - [-70.808613, 45.311606], - [-70.819471, 45.341435], - [-70.806244, 45.376558], - [-70.825612, 45.400305], - [-70.781471, 45.431159], - [-70.755567, 45.428361], - [-70.729972, 45.399359], - [-70.677995, 45.394362], - [-70.634661, 45.383608], - [-70.635498, 45.427817], - [-70.674903, 45.452399], - [-70.723396, 45.510394], - [-70.688214, 45.563981], - [-70.649578, 45.598147], - [-70.591275, 45.630551], - [-70.5528239160963, 45.6678060455628], - [-70.552793, 45.667836], - [-70.446903, 45.704044], - [-70.383552, 45.734869], - [-70.415684, 45.786158], - [-70.39662, 45.808486], - [-70.329748, 45.853795], - [-70.259117, 45.890755], - [-70.252526, 45.933176], - [-70.26541, 45.962692], - [-70.31297, 45.961856], - [-70.303034, 45.998976], - [-70.317629, 46.01908], - [-70.306734, 46.061344], - [-70.266349, 46.100993], - [-70.239566, 46.142762], - [-70.290896, 46.185838], - [-70.255492, 46.246444], - [-70.232682, 46.284428], - [-70.205719, 46.299865], - [-70.207415, 46.331316], - [-70.161337, 46.360984], - [-70.118597, 46.384233], - [-70.080292, 46.410531], - [-70.053748, 46.429236], - [-70.0230197674623, 46.5734865644986], - [-69.997086, 46.69523], - [-69.818552, 46.87503], - [-69.566383, 47.125032], - [-69.439198, 47.250033], - [-69.219996, 47.457159], - [-69.156074, 47.451035], - [-69.108215, 47.435831], - [-69.039301, 47.42217], - [-69.053885, 47.377878], - [-69.0402, 47.2451], - [-68.966433, 47.212712], - [-68.900985, 47.178519], - [-68.803537, 47.216033], - [-68.675913, 47.242626], - [-68.604819, 47.249418], - [-68.588725, 47.281721], - [-68.507432, 47.296636], - [-68.460064, 47.286065], - [-68.375615, 47.292268], - [-68.384281, 47.326943], - [-68.361559, 47.355605], - [-68.26971, 47.353733], - [-68.204263, 47.33973], - [-68.153509, 47.314038], - [-68.082896, 47.271921], - [-67.998171, 47.217842], - [-67.952269, 47.196142], - [-67.889155, 47.118772], - [-67.789761, 47.065744], - [-67.789799, 46.794868], - [-67.788406, 46.601795], - [-67.782114, 46.279381], - [-67.780438, 46.038452], - [-67.779984, 45.938163], - [-67.750422, 45.917898], - [-67.803678, 45.869379], - [-67.763955, 45.829983], - [-67.803626, 45.781624], - [-67.781892, 45.731189], - [-67.8028942950771, 45.6789278854632], - [-67.803313, 45.677886], - [-67.710464, 45.679372], - [-67.675417, 45.630959], - [-67.631762, 45.621409], - [-67.534919, 45.595428], - [-67.455406, 45.604665], - [-67.423646, 45.572153], - [-67.417417, 45.501985], - [-67.476855, 45.49724], - [-67.484328, 45.451955], - [-67.427243, 45.37369], - [-67.460554, 45.300379], - [-67.480256, 45.268185], - [-67.453473, 45.241127], - [-67.390579, 45.154114], - [-67.339869, 45.125594], - [-67.298209, 45.146672], - [-67.271076, 45.191081], - [-67.203933, 45.171407], - [-67.161247, 45.162879], - [-67.112414, 45.112323], - [-67.090786, 45.068721], - [-67.082074, 45.029608], - [-67.033474, 44.939923], - [-66.983558, 44.903277], - [-66.99296, 44.849181], - [-66.949895, 44.817419], - [-67.02615, 44.768199], - [-67.073439, 44.741957], - [-67.116745, 44.706106], - [-67.169857, 44.662105], - [-67.234275, 44.637201], - [-67.293403, 44.599265], - [-67.368269, 44.624672], - [-67.398987, 44.602631], - [-67.448513, 44.600322], - [-67.491751, 44.556123], - [-67.521168, 44.50991], - [-67.503208, 44.476918], - [-67.579726, 44.429131], - [-67.634806, 44.487054], - [-67.653123, 44.525823], - [-67.70668, 44.501975], - [-67.793589, 44.494779], - [-67.837938, 44.46467], - [-67.855108, 44.419434], - [-67.899571, 44.394078], - [-67.936531, 44.411187], - [-67.9438439570552, 44.407015790843], - [-67.978876, 44.387034], - [-68.01399, 44.390255], - [-68.049334, 44.33073], - [-68.103757, 44.364362], - [-68.125624, 44.387127], - [-68.189155, 44.373833], - [-68.173608, 44.328397], - [-68.191924, 44.306675], - [-68.22949, 44.266918], - [-68.17433, 44.225908], - [-68.306519, 44.234829], - [-68.314789, 44.197157], - [-68.331032, 44.10758], - [-68.438518, 44.11618], - [-68.502942, 44.099722], - [-68.5314142023518, 44.0898523802565], - [-68.584101, 44.071589], - [-68.617085, 44.010097], - [-68.657031, 44.003823], - [-68.669383, 44.076359], - [-68.77965, 44.057754], - [-68.874139, 44.025359], - [-68.905098, 44.077344], - [-68.935327, 44.13038], - [-68.888597, 44.15955], - [-68.9349764317618, 44.2029074739373], - [-68.95189, 44.218719], - [-69.0210745450046, 44.2304353141229], - [-69.040193, 44.233673], - [-69.054546, 44.171542], - [-69.075667, 44.129991], - [-69.031878, 44.079036], - [-69.068112, 44.039768], - [-69.043912, 44.006336], - [-69.077028, 43.973654], - [-69.131536, 43.976089], - [-69.17498, 43.976949], - [-69.212939, 43.921404], - [-69.242812, 43.918818], - [-69.279918, 43.879579], - [-69.321031, 43.856708], - [-69.354577, 43.917765], - [-69.3804897193431, 43.9436402335565], - [-69.393288, 43.95642], - [-69.422048, 43.923047], - [-69.438066, 43.909539], - [-69.50329, 43.837673], - [-69.552606, 43.841347], - [-69.578527, 43.823316], - [-69.650818, 43.803785], - [-69.6958154562599, 43.7960549672913], - [-69.717074, 43.792403], - [-69.754091, 43.743866], - [-69.807359, 43.728081], - [-69.833471, 43.701281], - [-69.855081, 43.704746], - [-69.862155, 43.758962], - [-69.8874061241577, 43.7665933794518], - [-69.915593, 43.775112], - [-69.983685, 43.744395], - [-70.001273, 43.710388], - [-70.0627766602365, 43.7133599465128], - [-70.071304, 43.713772], - [-70.0884503900385, 43.6850068251045], - [-70.096039, 43.672276], - [-70.168227, 43.675136], - [-70.190704, 43.645582], - [-70.217087, 43.596717], - [-70.206123, 43.557627], - [-70.245499, 43.539635], - [-70.321116, 43.527262], - [-70.3387374772484, 43.5281092793689], - [-70.361214, 43.52919], - [-70.385615, 43.487031], - [-70.327303, 43.458521], - [-70.383981, 43.41294], - [-70.3978722622715, 43.390648240708], - [-70.416311, 43.361059], - [-70.465975, 43.340246], - [-70.4755551171812, 43.3409482085119], - [-70.517695, 43.344037], - [-70.5341490659506, 43.3339572407458], - [-70.553854, 43.321886], - [-70.585184, 43.270113], - [-70.576986634166, 43.2280191731452], - [-70.575787, 43.221859], - [-70.596185, 43.163466], - [-70.62251, 43.134573], - [-70.665958, 43.076234], - [-70.703818, 43.059825], - [-70.756397, 43.079988], - [-70.819549285713, 43.1232309734312], - [-70.8281, 43.129086], - [-70.824801, 43.179685], - [-70.8247767120681, 43.1797631051822], - [-70.813119, 43.217252], - [-70.872585, 43.270152], - [-70.923949, 43.324768], - [-70.984335, 43.376128], - [-70.968359, 43.429283], - [-70.960788896047, 43.4740887336216], - [-70.954755, 43.509802], - [-70.9637926798064, 43.5402209553665], - [-70.972716, 43.570255], - [-70.9758307355675, 43.6143624227896], - [-70.981946, 43.70096], - [-70.987258046746, 43.7929735928842], - [-70.989929, 43.839239], - [-71.001367, 44.092931], - [-71.008736, 44.258825], - [-71.0102711678683, 44.284888321572], - [-71.01127, 44.301846], - [-71.0135759038146, 44.3408374525595], - [-71.0194617294855, 44.4403632397875], - [-71.022992, 44.500058], - [-71.036705, 44.736498], - [-71.057861, 45.000049], - [-71.083924, 45.305451] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "35", - "STATENS": "00897535", - "AFFGEOID": "0400000US35", - "GEOID": "35", - "ISOCODE": "US-NM", - "name": "New Mexico", - "LSAD": "00", - "ALAND": 314198560947, - "AWATER": 726482113 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-109.049195, 31.796551], - [-109.048296, 32.084093], - [-109.047612, 32.426377], - [-109.047117, 32.77757], - [-109.04711706231, 32.7777940009477], - [-109.047236980528, 33.2088950007083], - [-109.047237, 33.208965], - [-109.047298, 33.409783], - [-109.046609005136, 33.7774067975977], - [-109.046426, 33.875052], - [-109.046182, 34.522393], - [-109.046138935363, 34.5792910128179], - [-109.045851, 34.959718], - [-109.045851235183, 34.9598185158367], - [-109.046355894384, 35.1755071883512], - [-109.046796, 35.363606], - [-109.046296, 35.614251], - [-109.046024, 35.8798], - [-109.045871168205, 36.002701630519], - [-109.045729, 36.117028], - [-109.045433, 36.874589], - [-109.045223, 36.999084], - [-108.620309, 36.999287], - [-108.379302950094, 36.9995646863115], - [-108.000623, 37.000001], - [-107.481736999155, 37.0000045803143], - [-107.420913, 37.000005], - [-106.877292, 37.000139], - [-106.869796, 36.992426], - [-106.476233588828, 36.9937741005469], - [-106.343139, 36.99423], - [-106.006316410798, 36.9953866288173], - [-105.997472, 36.995417], - [-105.718469683991, 36.995845927301], - [-105.716471, 36.995849], - [-105.533922, 36.995875], - [-105.41931, 36.995856], - [-105.251296, 36.995605], - [-105.220505200781, 36.9955632364865], - [-105.155042748048, 36.9954744456106], - [-105.1208, 36.995428], - [-104.732031, 36.993447], - [-104.338833, 36.993535], - [-104.007849409613, 36.9959840947091], - [-103.733247, 36.998016], - [-103.086101075631, 36.9998643611064], - [-103.002199, 37.000104], - [-103.001964, 36.909573], - [-103.002518, 36.675186], - [-103.002188, 36.602716], - [-103.002434, 36.500397], - [-103.041924, 36.500439], - [-103.040824, 36.055231], - [-103.041356721818, 35.7394335063487], - [-103.041554, 35.622487], - [-103.042617950565, 35.1831572590084], - [-103.042711, 35.144735], - [-103.042738818608, 34.9541420403614], - [-103.042769, 34.747361], - [-103.043072, 34.619782], - [-103.043946, 34.379555], - [-103.043850301172, 34.3127498735079], - [-103.043835830165, 34.302648], - [-103.043563920791, 34.1128343897554], - [-103.043516, 34.079382], - [-103.047346, 33.824675], - [-103.05261, 33.570599], - [-103.052610516564, 33.5705747764422], - [-103.056495064338, 33.3884142146206], - [-103.060103, 33.219225], - [-103.063468888475, 32.9591063818305], - [-103.064889, 32.849359], - [-103.064761, 32.587983], - [-103.064696, 32.522193], - [-103.064422, 32.145006], - [-103.064422401106, 32.087051], - [-103.064423, 32.000518], - [-103.326501, 32.00037], - [-103.722881979148, 32.0001655686764], - [-103.980213477381, 32.0000328513626], - [-104.024521, 32.00001], - [-104.643526, 32.000443], - [-104.84774, 32.000464602835], - [-104.91835699428, 32.0004720730735], - [-105.153994, 32.000497], - [-105.750527, 32.002206], - [-105.997971151664, 32.001974590699], - [-106.200699, 32.001785], - [-106.377173188247, 32.0012401010375], - [-106.618486, 32.000495], - [-106.630114, 31.971258], - [-106.623445, 31.914034], - [-106.63588, 31.871514], - [-106.581344, 31.813906], - [-106.528242, 31.783148], - [-106.531731, 31.78391], - [-106.993544, 31.783689], - [-107.296792996712, 31.7836253371067], - [-107.422246, 31.783599], - [-108.208394, 31.783599], - [-108.208572, 31.499742], - [-108.208573, 31.333395], - [-108.707657, 31.333191], - [-108.861028, 31.332315], - [-109.050044, 31.332502], - [-109.049195, 31.796551] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "49", - "STATENS": "01455989", - "AFFGEOID": "0400000US49", - "GEOID": "49", - "ISOCODE": "US-UT", - "name": "Utah", - "LSAD": "00", - "ALAND": 213355072799, - "AWATER": 6529973239 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-114.052472, 37.604776], - [-114.051728, 37.745997], - [-114.049658, 37.881368], - [-114.049903, 38.148601], - [-114.049903375658, 38.1487630266706], - [-114.050138, 38.24996], - [-114.05012, 38.404536], - [-114.050154, 38.57292], - [-114.050153620806, 38.5729752130034], - [-114.049436705931, 38.6773624568796], - [-114.048054, 38.878693], - [-114.049104, 39.005509], - [-114.047079, 39.499943], - [-114.047181412926, 39.5427436022297], - [-114.047783, 39.79416], - [-114.047268153077, 39.9060981137562], - [-114.046386, 40.097896], - [-114.046372817373, 40.1169358330122], - [-114.046178, 40.398313], - [-114.045577, 40.495801], - [-114.043505, 40.726292], - [-114.042145146235, 40.9998965772633], - [-114.042145, 40.999926], - [-114.041447, 41.207752], - [-114.040231, 41.49169], - [-114.039901, 41.753781], - [-114.041723, 41.99372], - [-113.817964, 41.98858], - [-113.496548, 41.993305], - [-113.249159, 41.996203], - [-113.000821, 41.998223], - [-113.000040139624, 41.9982276125391], - [-112.648019, 42.000307], - [-112.264936, 42.000991], - [-112.15917745151, 41.9986819297378], - [-112.109532, 41.997598], - [-112.10944305582, 41.9975984294066], - [-111.750778, 41.99933], - [-111.507813035176, 41.9996856683522], - [-111.507806195687, 41.9996856783643], - [-111.471381, 41.999739], - [-111.374129, 42.000893], - [-111.046689, 42.001567], - [-111.045818464842, 41.5798449482258], - [-111.045789, 41.565571], - [-111.0466, 41.360692], - [-111.046636983126, 41.2516269562514], - [-111.046723, 40.997959], - [-110.539819, 40.996346], - [-110.121639, 40.997101], - [-110.048482995685, 40.9972972928506], - [-110.000716736441, 40.9974254597082], - [-109.715409, 40.998191], - [-109.250735, 41.001009], - [-109.050076, 41.000659], - [-109.048455, 40.826081], - [-109.048259750048, 40.662601817228], - [-109.048249, 40.653601], - [-109.050732112077, 40.2226552582576], - [-109.050973, 40.180849], - [-109.050615, 39.87497], - [-109.050871925262, 39.6604717771594], - [-109.051066846273, 39.4977388093662], - [-109.051223831017, 39.3666775495863], - [-109.051512, 39.126095], - [-109.059962, 38.499987], - [-109.060062, 38.275489], - [-109.041762, 38.16469], - [-109.041796614855, 38.1530323049685], - [-109.042604100621, 37.8810848174926], - [-109.043780720502, 37.4848192314175], - [-109.045223, 36.999084], - [-109.495338, 36.999105], - [-110.000677, 36.997968], - [-110.47019, 36.997997], - [-110.75069, 37.003197], - [-111.066496, 37.002389], - [-111.278286, 37.000465], - [-111.405869, 37.001481], - [-111.412783987873, 37.001477687156], - [-112.35769, 37.001025], - [-112.538571, 37.000744128882], - [-112.545094, 37.000734], - [-112.829501944372, 37.0003864013144], - [-112.899190897616, 37.0003012286284], - [-112.966471, 37.000219], - [-113.965907, 37.000025], - [-114.0506, 37.000396], - [-114.051749, 37.088434], - [-114.051974, 37.284511], - [-114.052701, 37.492014], - [-114.052472, 37.604776] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "54", - "STATENS": "01779805", - "AFFGEOID": "0400000US54", - "GEOID": "54", - "ISOCODE": "US-WV", - "name": "West Virginia", - "LSAD": "00", - "ALAND": 62266298634, - "AWATER": 489204185 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-82.598864, 38.201007], - [-82.5846938141256, 38.2405129933697], - [-82.581796, 38.248592], - [-82.571877, 38.315781], - [-82.597979, 38.344909], - [-82.5959642645, 38.3808897617155], - [-82.593673, 38.421809], - [-82.560664, 38.404338], - [-82.5089669497313, 38.4146439126517], - [-82.447076, 38.426982], - [-82.381773, 38.434783], - [-82.323999, 38.449268], - [-82.304223, 38.496308], - [-82.293271, 38.560283], - [-82.2821333440281, 38.5798607964035], - [-82.27427, 38.593683], - [-82.218967, 38.591683], - [-82.175167, 38.608484], - [-82.185567, 38.659583], - [-82.201537, 38.760372], - [-82.20929, 38.802672], - [-82.16157, 38.824632], - [-82.134766, 38.905579], - [-82.0988666505543, 38.9608792844933], - [-82.089065, 38.975978], - [-82.041563, 39.017878], - [-82.007062, 39.029578], - [-81.941829, 38.993295], - [-81.89847, 38.929603], - [-81.827354, 38.945898], - [-81.775734, 38.980737], - [-81.793304, 39.040353], - [-81.807855, 39.083978], - [-81.7502668434263, 39.1040311930998], - [-81.742953, 39.106578], - [-81.7522970367401, 39.1810347474059], - [-81.752754, 39.184676], - [-81.7214681391725, 39.2109608092037], - [-81.711628, 39.219228], - [-81.678331, 39.273755], - [-81.613896, 39.275339], - [-81.565247, 39.276175], - [-81.559647, 39.330774], - [-81.503189, 39.373242], - [-81.456143, 39.409274], - [-81.412706, 39.394618], - [-81.393794, 39.351706], - [-81.3703898088263, 39.3487006724034], - [-81.347567, 39.34577], - [-81.249088, 39.389992], - [-81.185946, 39.430731], - [-81.128533, 39.449375], - [-81.1212738561078, 39.4576974138893], - [-81.07595, 39.50966], - [-81.0373650419871, 39.5380557124726], - [-80.943782, 39.606926], - [-80.865575, 39.662751], - [-80.829764, 39.711839], - [-80.8355216930075, 39.7192518022001], - [-80.869933, 39.763555], - [-80.824969, 39.801092], - [-80.824276, 39.847159], - [-80.8234381047859, 39.8500320873964], - [-80.803394, 39.918762], - [-80.764479, 39.95025], - [-80.740126, 39.970793], - [-80.7382184399836, 40.0335432260784], - [-80.736804, 40.080072], - [-80.705994, 40.151591], - [-80.7025753036226, 40.1571413980097], - [-80.684173210708, 40.1870179733507], - [-80.644598, 40.25127], - [-80.606596, 40.303869], - [-80.631596, 40.385468], - [-80.6273626299369, 40.3951709330172], - [-80.604895, 40.446667], - [-80.622195, 40.520497], - [-80.667957, 40.582496], - [-80.627171, 40.619936], - [-80.583633, 40.61552], - [-80.518991, 40.638801], - [-80.5190171173474, 40.4773631462371], - [-80.5190296911941, 40.3996410563407], - [-80.519039, 40.342101], - [-80.5190843704566, 40.1596719951181], - [-80.51912, 40.01641], - [-80.5191607943145, 39.9622000525219], - [-80.519342, 39.721403], - [-80.421388, 39.721189], - [-80.075947, 39.72135], - [-79.9160173560378, 39.7210559335188], - [-79.763774, 39.720776], - [-79.476662, 39.721078], - [-79.482366, 39.531689], - [-79.484372, 39.3443], - [-79.486873, 39.205961], - [-79.424413, 39.228171], - [-79.35375, 39.278039], - [-79.283723, 39.30964], - [-79.2623921171761, 39.3262438284674], - [-79.166497, 39.400888], - [-79.091329, 39.472407], - [-79.0674474080724, 39.4728086991282], - [-79.035623, 39.473344], - [-78.956751, 39.440264], - [-78.942618, 39.479614], - [-78.851016, 39.554044], - [-78.77114, 39.638387], - [-78.73905, 39.609697], - [-78.707098, 39.555857], - [-78.6550361715467, 39.5443822410837], - [-78.590654, 39.530192], - [-78.4682695950029, 39.5262242704717], - [-78.460951, 39.525987], - [-78.438179, 39.563524], - [-78.382959, 39.622246], - [-78.3327880214991, 39.6285275964988], - [-78.313033, 39.631001], - [-78.225075, 39.658878], - [-78.08226, 39.671166], - [-78.0276291001732, 39.6206559623441], - [-78.006734, 39.601337], - [-77.925988, 39.607642], - [-77.829814, 39.587288], - [-77.823762, 39.525907], - [-77.8109438962622, 39.5007391665665], - [-77.798201, 39.475719], - [-77.740012, 39.401694], - [-77.74593, 39.353221], - [-77.719519, 39.321314], - [-77.778068, 39.229305], - [-77.809125, 39.168567], - [-77.828157, 39.132329], - [-77.8283018332673, 39.1324224548325], - [-78.032841, 39.264403], - [-78.0331834609342, 39.2646236984747], - [-78.0331852353666, 39.2646248420052], - [-78.18737, 39.363989], - [-78.2291295342185, 39.3906638872041], - [-78.347087, 39.466012], - [-78.337133, 39.409169], - [-78.34048, 39.353492], - [-78.401813, 39.276754], - [-78.40498, 39.238006], - [-78.428697, 39.187217], - [-78.413943, 39.158415], - [-78.508132, 39.08863], - [-78.532266186557, 39.0527645240444], - [-78.561711, 39.009007], - [-78.620453, 38.982601], - [-78.681617, 38.92584], - [-78.772793, 38.893742], - [-78.821167, 38.830982], - [-78.869276, 38.762991], - [-78.999014, 38.840074], - [-79.023053, 38.798613], - [-79.057253, 38.761413], - [-79.088055, 38.690115], - [-79.092955, 38.659517], - [-79.154357, 38.606518], - [-79.201459, 38.527821], - [-79.2284230027078, 38.4797415574873], - [-79.23162, 38.474041], - [-79.297758, 38.416438], - [-79.3112960655144, 38.418454601455], - [-79.370302, 38.427244], - [-79.476638, 38.457228], - [-79.54257, 38.553217], - [-79.649075, 38.591515], - [-79.669128, 38.510883], - [-79.691088, 38.463744], - [-79.689675, 38.431439], - [-79.7346, 38.356728], - [-79.804093, 38.313922], - [-79.787542, 38.273298], - [-79.7970135368069, 38.2672681211392], - [-79.850324, 38.233329], - [-79.916174, 38.184386], - [-79.938952, 38.111619], - [-79.9619822726354, 38.0636070994933], - [-79.971231, 38.044326], - [-80.036236, 37.96792], - [-80.0558115945897, 37.9518782200979], - [-80.131931, 37.8895], - [-80.199633, 37.827507], - [-80.218616, 37.783291], - [-80.258143, 37.720612], - [-80.290033810255, 37.686136458971], - [-80.292258, 37.683732], - [-80.2243032443768, 37.6239913711709], - [-80.223386, 37.623185], - [-80.28244, 37.585481], - [-80.291644, 37.536505], - [-80.39988, 37.462314], - [-80.46482, 37.426144], - [-80.4695688905042, 37.4290254659927], - [-80.544836, 37.474695], - [-80.664971, 37.414215], - [-80.770082, 37.372363], - [-80.836446, 37.424355], - [-80.8573585701898, 37.421128713999], - [-80.8581481168198, 37.4210069067215], - [-80.865148, 37.419927], - [-80.883248, 37.383933], - [-80.835479, 37.334824], - [-80.919259, 37.306163], - [-80.9808452568928, 37.3008528161905], - [-80.996013, 37.299545], - [-81.112596, 37.278497], - [-81.225104, 37.234874], - [-81.362156, 37.337687], - [-81.427946, 37.271015], - [-81.483559, 37.250604], - [-81.53307, 37.223414], - [-81.560625, 37.206663], - [-81.678603, 37.202467], - [-81.7390550304855, 37.2394971038728], - [-81.744003, 37.242528], - [-81.774747, 37.274847], - [-81.849949, 37.285227], - [-81.896001, 37.331967], - [-81.933601, 37.389217], - [-81.93695, 37.41992], - [-81.984891, 37.454315], - [-81.932279, 37.511961], - [-81.968297, 37.537798], - [-82.064418, 37.544516], - [-82.141555, 37.595166], - [-82.226111, 37.653092], - [-82.296118, 37.686174], - [-82.3206749571778, 37.7459658434594], - [-82.327356, 37.762233], - [-82.369973, 37.801749], - [-82.3984648162589, 37.8430541504629], - [-82.41869, 37.872375], - [-82.487556, 37.916975], - [-82.479420123223, 37.9385625246981], - [-82.464987, 37.976859], - [-82.549407, 38.063063], - [-82.626182, 38.134835], - [-82.598864, 38.201007] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "20", - "STATENS": "00481813", - "AFFGEOID": "0400000US20", - "GEOID": "20", - "ISOCODE": "US-KS", - "name": "Kansas", - "LSAD": "00", - "ALAND": 211753717642, - "AWATER": 1345767737 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-102.051744, 40.003078], - [-101.832161, 40.002933], - [-101.542273, 40.002609], - [-101.411028987802, 40.0025825695676], - [-101.324036026572, 40.0025650505849], - [-101.293991, 40.002559], - [-101.060317, 40.002307], - [-100.75883, 40.002302], - [-100.738824713191, 40.0022629565677], - [-100.477018, 40.001752], - [-100.19359, 40.001573], - [-100.177797545879, 40.0015658138516], - [-99.813401, 40.0014], - [-99.6282538492245, 40.0017719472684], - [-99.6253267263996, 40.001777827647], - [-99.501792, 40.002026], - [-99.1791331508611, 40.0021089526949], - [-99.085597, 40.002133], - [-99.0670183498981, 40.0021435130522], - [-98.726372963939, 40.0023362731669], - [-98.613755, 40.0024], - [-98.5044549836368, 40.002379876736], - [-98.2740170597529, 40.0023374507299], - [-98.076034, 40.002301], - [-97.9318249263172, 40.0022363450196], - [-97.8215008122752, 40.0021868820889], - [-97.777155, 40.002167], - [-97.415833, 40.002001], - [-97.369199035315, 40.0019393057605], - [-97.009165, 40.001463], - [-96.9164070054658, 40.0014540910439], - [-96.873812, 40.00145], - [-96.805768, 40.0013684550954], - [-96.469945, 40.000966], - [-96.4637120767748, 40.0009585725545], - [-96.2392078784111, 40.0006910427544], - [-96.239172, 40.000691], - [-96.154365, 40.000495], - [-96.02409, 40.000719], - [-96.0106788179345, 40.000704665772], - [-95.7881109948917, 40.0004667793653], - [-95.784575, 40.000463], - [-95.3398959708503, 40.0000288571054], - [-95.30829, 39.999998], - [-95.231114, 39.943784], - [-95.142445, 39.89542], - [-95.081534, 39.861718], - [-95.018743, 39.897372], - [-94.9933742397144, 39.8985652599923], - [-94.95154, 39.900533], - [-94.928466, 39.876344], - [-94.878677, 39.826522], - [-94.8778576828861, 39.8207000955167], - [-94.871144, 39.772994], - [-94.860371, 39.74953], - [-94.899316, 39.724042], - [-94.971078, 39.723146], - [-94.971317, 39.68641], - [-95.037464, 39.652905], - [-95.0440507525704, 39.6136682968209], - [-95.047165, 39.595117], - [-95.076688, 39.576764], - [-95.113557, 39.553941], - [-95.091419402824, 39.53325788521], - [-95.049845, 39.494415], - [-94.982144, 39.440552], - [-94.9657474186335, 39.4216817446564], - [-94.946662, 39.399717], - [-94.888972, 39.392432], - [-94.908065, 39.323663], - [-94.857072, 39.273825], - [-94.825663, 39.241729], - [-94.799663, 39.206018], - [-94.7919946737433, 39.2012602502402], - [-94.741938, 39.170203], - [-94.680336, 39.184303], - [-94.623934, 39.156603], - [-94.6019379819211, 39.1555032334638], - [-94.591933, 39.155003], - [-94.607354, 39.113444], - [-94.607870353374, 39.0440850964785], - [-94.608334, 38.981806], - [-94.6089603437495, 38.847211315445], - [-94.609456, 38.7407], - [-94.6094896723458, 38.7381017094732], - [-94.6119580183223, 38.5476344342717], - [-94.6128655959221, 38.4776021802351], - [-94.612866, 38.477571], - [-94.6127726289929, 38.3887184827318], - [-94.612614, 38.237766], - [-94.6139299610557, 38.0600529598965], - [-94.6141002487054, 38.0370565833813], - [-94.614465, 37.987799], - [-94.617885, 37.682214], - [-94.6178724508981, 37.6731107003321], - [-94.6178455243542, 37.6535777966344], - [-94.617511, 37.410909], - [-94.6176676047008, 37.3641703270387], - [-94.6177538916066, 37.338418], - [-94.618351, 37.160211], - [-94.618102891103, 37.0567963908729], - [-94.617964, 36.998905], - [-94.71277, 36.998794], - [-94.995293, 36.999529], - [-95.0076200044721, 36.9995225591258], - [-95.0735039666303, 36.9994881346791], - [-95.322565, 36.999358], - [-95.407733005873, 36.9993417150323], - [-95.5224145523987, 36.9993197867829], - [-95.573598, 36.99931], - [-95.7867618707782, 36.999270917592], - [-95.928122, 36.999245], - [-95.9642712321022, 36.9992231442824], - [-96.0008102061996, 36.9992010529279], - [-96.217571, 36.99907], - [-96.500288, 36.998643], - [-96.5255820442829, 36.9986779687248], - [-96.749838, 36.998988], - [-97.100652, 36.998998], - [-97.1477209669227, 36.9989723356215], - [-97.384925, 36.998843], - [-97.4623460298641, 36.9988242387969], - [-97.768704, 36.99875], - [-97.8023129703503, 36.998698609394], - [-98.045342, 36.998327], - [-98.1119851837458, 36.9982479946353], - [-98.3471487797447, 36.9979692086496], - [-98.354073, 36.997961], - [-98.5446619733489, 36.9985242404006], - [-98.791936, 36.999255], - [-99.0003010538842, 36.9993580981444], - [-99.129449, 36.999422], - [-99.407015, 36.999579], - [-99.4562024346753, 36.9997002794079], - [-99.5411149123609, 36.9999096445655], - [-99.657658, 37.000197], - [-99.995201, 37.001631], - [-100.002571514322, 37.001619153912], - [-100.089481743903, 37.0014794694635], - [-100.552683, 37.000735], - [-100.633324986158, 37.0001736090529], - [-100.855634, 36.998626], - [-100.945466793078, 36.9982468287288], - [-101.06645021566, 36.9977361751404], - [-101.211486, 36.997124], - [-101.485326, 36.995611], - [-101.555258848691, 36.9952909392776], - [-101.90244, 36.993702], - [-102.028204191045, 36.9931451471083], - [-102.04224, 36.993083], - [-102.04192, 37.035083], - [-102.041983, 37.106551], - [-102.041963, 37.258164], - [-102.041938522874, 37.3891900553938], - [-102.041890869665, 37.6442776852918], - [-102.041876, 37.723875], - [-102.041965658628, 37.7385405736382], - [-102.044255, 38.113011], - [-102.044634270291, 38.2624115677495], - [-102.044650359147, 38.2687492225031], - [-102.044944, 38.384419], - [-102.04551057457, 38.6151645901775], - [-102.045712903087, 38.6975657700785], - [-102.046571, 39.047038], - [-102.047200721701, 39.1331467095112], - [-102.04896, 39.373712], - [-102.049961857828, 39.5681789806731], - [-102.049992135644, 39.574056097421], - [-102.051254, 39.818992], - [-102.051744, 40.003078] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "32", - "STATENS": "01779793", - "AFFGEOID": "0400000US32", - "GEOID": "32", - "ISOCODE": "US-NV", - "name": "Nevada", - "LSAD": "00", - "ALAND": 284537290201, - "AWATER": 1839636284 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-120.004795512304, 39.3164750119585], - [-120.003028919657, 39.4450457761605], - [-120.00174, 39.538852], - [-119.999935448085, 39.7224069247242], - [-119.997634, 39.956505], - [-119.997124, 40.126363], - [-119.996155, 40.32125], - [-119.997533, 40.720992], - [-119.999231, 40.865899], - [-119.999866, 41.183974], - [-119.99828, 41.618765], - [-119.999276, 41.874891], - [-119.999168, 41.99454], - [-119.72573, 41.996296], - [-119.360123119603, 41.9940922549812], - [-119.324184120439, 41.9938756277933], - [-119.20828, 41.993177], - [-119.001022, 41.993793], - [-118.775869, 41.992692], - [-118.501002, 41.995446], - [-118.197369215928, 41.9969940811635], - [-118.197189, 41.996995], - [-117.873467, 41.998335], - [-117.623731, 41.998467], - [-117.403613, 41.99929], - [-117.197798, 42.00038], - [-117.026197, 41.99989], - [-117.018203216741, 41.9998398503691], - [-116.625947, 41.997379], - [-116.332763, 41.997283], - [-115.870181, 41.996766], - [-115.625914, 41.997415], - [-115.313877, 41.996103], - [-115.038109752434, 41.9986341156765], - [-114.89921, 41.999909], - [-114.598267, 41.994511], - [-114.281855, 41.994214], - [-114.28179946722, 41.9942138857579], - [-114.041723, 41.99372], - [-114.039901, 41.753781], - [-114.040231, 41.49169], - [-114.041447, 41.207752], - [-114.042145, 40.999926], - [-114.042145146235, 40.9998965772633], - [-114.043505, 40.726292], - [-114.045577, 40.495801], - [-114.046178, 40.398313], - [-114.046372817373, 40.1169358330122], - [-114.046386, 40.097896], - [-114.047268153077, 39.9060981137562], - [-114.047783, 39.79416], - [-114.047181412926, 39.5427436022297], - [-114.047079, 39.499943], - [-114.049104, 39.005509], - [-114.048054, 38.878693], - [-114.049436705931, 38.6773624568796], - [-114.050153620806, 38.5729752130034], - [-114.050154, 38.57292], - [-114.05012, 38.404536], - [-114.050138, 38.24996], - [-114.049903375658, 38.1487630266706], - [-114.049903, 38.148601], - [-114.049658, 37.881368], - [-114.051728, 37.745997], - [-114.052472, 37.604776], - [-114.052701, 37.492014], - [-114.051974, 37.284511], - [-114.051749, 37.088434], - [-114.0506, 37.000396], - [-114.050160776088, 36.8431415396894], - [-114.049493, 36.604059], - [-114.047584, 36.325573], - [-114.048226, 36.268874], - [-114.046838, 36.194069], - [-114.09987, 36.121654], - [-114.138203, 36.053161], - [-114.151725, 36.024563], - [-114.21369, 36.015613], - [-114.270645, 36.03572], - [-114.316109, 36.063109], - [-114.337273, 36.10802], - [-114.372106, 36.143114], - [-114.41695, 36.145761], - [-114.448654, 36.12641], - [-114.487034, 36.129396], - [-114.511721, 36.150956], - [-114.572031, 36.15161], - [-114.627855, 36.141012], - [-114.666538, 36.117343], - [-114.736165, 36.104367], - [-114.743342, 36.070535], - [-114.743299245886, 36.0659351737601], - [-114.742779, 36.009963], - [-114.731159, 35.943916], - [-114.700271, 35.901772], - [-114.669687, 35.865084], - [-114.70371, 35.814585], - [-114.697309, 35.733686], - [-114.689407, 35.651412], - [-114.653406, 35.610789], - [-114.663105, 35.524491], - [-114.6645, 35.449497], - [-114.627137, 35.409504], - [-114.587129, 35.262376], - [-114.572747, 35.138725], - [-114.59912, 35.12105], - [-114.619905, 35.121632], - [-114.625069, 35.068478], - [-114.633487, 35.001857], - [-114.804249, 35.139689], - [-115.043812, 35.332012], - [-115.160068, 35.424129], - [-115.303743, 35.538207], - [-115.404537, 35.617605], - [-115.647683, 35.809358], - [-115.648032019625, 35.8096292126029], - [-115.846113922762, 35.9635526731109], - [-115.892975, 35.999967], - [-116.093601, 36.155805], - [-116.375875, 36.372562], - [-116.488233, 36.459097], - [-117.000895, 36.847694], - [-117.166000564031, 36.9712075385903], - [-117.244917, 37.030244], - [-117.68061, 37.353399], - [-117.833504044144, 37.4649387662445], - [-118.022181, 37.602583], - [-118.427995325157, 37.8962242809098], - [-118.500958, 37.949019], - [-118.949673, 38.26894], - [-119.155815824409, 38.4134036584505], - [-119.279262, 38.499914], - [-119.330366469799, 38.5355095158185], - [-119.585406144839, 38.7131509006712], - [-119.587679, 38.714734], - [-119.904315, 38.933324], - [-120.001014, 38.999574], - [-120.001975250867, 39.0674958744683], - [-120.002614842913, 39.1126893740958], - [-120.003364028833, 39.1656267640688], - [-120.005142, 39.291258], - [-120.004795512304, 39.3164750119585] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "28", - "STATENS": "01779790", - "AFFGEOID": "0400000US28", - "GEOID": "28", - "ISOCODE": "US-MS", - "name": "Mississippi", - "LSAD": "00", - "ALAND": 121533935354, - "AWATER": 3914344129 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-91.621358, 31.267811], - [-91.564192, 31.261633], - [-91.508858, 31.291644], - [-91.536061, 31.338355], - [-91.532336, 31.390275], - [-91.510356, 31.438928], - [-91.51714, 31.498394], - [-91.489618, 31.534266], - [-91.437616, 31.546166], - [-91.457517, 31.587566], - [-91.463817, 31.620365], - [-91.395715, 31.644165], - [-91.380915, 31.732464], - [-91.3801245299835, 31.73262695305], - [-91.318576, 31.745315], - [-91.3204587332816, 31.7478006144822], - [-91.359514, 31.799362], - [-91.345714, 31.842861], - [-91.290135, 31.833658], - [-91.2440151613247, 31.8697324375039], - [-91.234899, 31.876863], - [-91.18111, 31.920059], - [-91.17741, 31.973257], - [-91.117409, 31.987057], - [-91.080808, 32.023456], - [-91.079108, 32.050255], - [-91.034707, 32.101053], - [-91.039472318907, 32.1079681426653], - [-91.108509, 32.20815], - [-90.991227, 32.214662], - [-90.947834, 32.283486], - [-90.92117, 32.342073], - [-90.986672, 32.35176], - [-90.965986, 32.424806], - [-91.052907, 32.438442], - [-91.060516, 32.512361], - [-91.011275, 32.516596], - [-91.0487604277637, 32.5727970404214], - [-91.049312, 32.573624], - [-91.0554092828289, 32.5790876048294], - [-91.079506, 32.60068], - [-91.098762, 32.685291], - [-91.056999, 32.72558], - [-91.113652, 32.73997], - [-91.157614, 32.776033], - [-91.161669, 32.812465], - [-91.13789, 32.848975], - [-91.070602, 32.888659], - [-91.072075, 32.937832], - [-91.134414, 32.980533], - [-91.166073, 33.004106], - [-91.1596060796211, 33.0112423416025], - [-91.120379, 33.05453], - [-91.180836, 33.098364], - [-91.153015, 33.135093], - [-91.104317, 33.131598], - [-91.084366, 33.180856], - [-91.068708, 33.232936], - [-91.086137, 33.273652], - [-91.125539, 33.280255], - [-91.142219, 33.348989], - [-91.113764, 33.393124], - [-91.147663, 33.427172], - [-91.171799, 33.462342], - [-91.189375, 33.493005], - [-91.2156615141091, 33.5294098627481], - [-91.215671, 33.529423], - [-91.206415960587, 33.5456284081563], - [-91.188942, 33.576225], - [-91.130902, 33.610919], - [-91.178311, 33.651109], - [-91.10098, 33.660551], - [-91.075389, 33.714403], - [-91.143287, 33.747141], - [-91.111494, 33.774568], - [-91.08551, 33.77641], - [-91.026782, 33.763642], - [-91.025173, 33.805953], - [-91.052819, 33.824181], - [-91.061247, 33.877505], - [-91.026382, 33.90798], - [-91.035961, 33.943758], - [-91.088696, 33.961334], - [-91.048367, 33.985078], - [-91.004981, 33.977011], - [-90.979945, 34.000106], - [-90.942662, 34.01805], - [-90.89242, 34.02686], - [-90.874541, 34.072041], - [-90.90113, 34.094667], - [-90.946323, 34.109374], - [-90.9448449522363, 34.1164215264479], - [-90.9440807601938, 34.1200652947774], - [-90.938064, 34.148754], - [-90.894385, 34.160953], - [-90.882701, 34.184364], - [-90.89456, 34.22438], - [-90.839981, 34.236114], - [-90.812829, 34.279438], - [-90.752681, 34.289266], - [-90.765174, 34.342818], - [-90.729131, 34.364206], - [-90.660404, 34.33576], - [-90.641398, 34.383869], - [-90.575336, 34.415152], - [-90.583717, 34.458829], - [-90.5694607451505, 34.5243442788972], - [-90.569347, 34.524867], - [-90.549244, 34.568101], - [-90.587224, 34.615732], - [-90.5748549582232, 34.6316539794501], - [-90.550158, 34.663445], - [-90.546053, 34.702076], - [-90.505494, 34.764568], - [-90.473527, 34.788835], - [-90.463795, 34.834923], - [-90.4079823819208, 34.835265981566], - [-90.401633, 34.835305], - [-90.313476, 34.871698], - [-90.3114467159881, 34.872838517743], - [-90.250095, 34.90732], - [-90.244476, 34.937596], - [-90.309297, 34.995694], - [-89.795187, 34.994293], - [-89.7596126422344, 34.9942397717315], - [-89.7243158379686, 34.9941869587535], - [-89.644051831619, 34.9940668634279], - [-89.434954, 34.993754], - [-89.3526793918484, 34.9939961417459], - [-89.198287901495, 34.9944505301151], - [-89.02654, 34.994956], - [-89.0171270115524, 34.9949676128363], - [-88.823050501632, 34.995207045695], - [-88.786612, 34.995252], - [-88.469877, 34.996033], - [-88.3804925115221, 34.9957924082221], - [-88.3635302685392, 34.9957467517971], - [-88.258111, 34.995463], - [-88.200064, 34.995634], - [-88.154617, 34.922392], - [-88.097888, 34.892202], - [-88.134263, 34.62266], - [-88.1395594412474, 34.5816967458839], - [-88.1549021840087, 34.46303430044], - [-88.1732617345949, 34.3210395343343], - [-88.2035834952194, 34.0865277314681], - [-88.207229, 34.058333], - [-88.2483874739095, 33.7449075948817], - [-88.254445, 33.698779], - [-88.2745164707837, 33.5340014777852], - [-88.3044428135104, 33.28832], - [-88.317135, 33.184123], - [-88.3400849921393, 32.991264337875], - [-88.3474902478349, 32.9290347868805], - [-88.373338, 32.711825], - [-88.3892485641243, 32.5781223959586], - [-88.4213122213943, 32.3086791230113], - [-88.428278, 32.250143], - [-88.4311453634628, 32.2276362346889], - [-88.4533877631093, 32.0530492054197], - [-88.46866, 31.933173], - [-88.4686624840513, 31.8938557116156], - [-88.468669, 31.790722], - [-88.4636253046849, 31.6979423713502], - [-88.459478, 31.621652], - [-88.4494460690171, 31.4358368612776], - [-88.44866, 31.421277], - [-88.432007, 31.114298], - [-88.4260209637871, 30.9982813574303], - [-88.4124674313592, 30.7355974592153], - [-88.41227, 30.731771], - [-88.403931, 30.543359], - [-88.395023, 30.369425], - [-88.409927, 30.342115], - [-88.446495, 30.347753], - [-88.471875, 30.32002], - [-88.522494, 30.340092], - [-88.581929, 30.331063], - [-88.613006, 30.353964], - [-88.66382, 30.362099], - [-88.700587, 30.343689], - [-88.746945, 30.347622], - [-88.8003435152035, 30.3572641730949], - [-88.818762, 30.36059], - [-88.89393, 30.393398], - [-88.971233, 30.390798], - [-89.083237, 30.368097], - [-89.18684, 30.331197], - [-89.294444, 30.307596], - [-89.3070237608445, 30.3039947802441], - [-89.344746, 30.293196], - [-89.424624, 30.245391], - [-89.447465, 30.205098], - [-89.475824, 30.191561], - [-89.524504, 30.180753], - [-89.607655, 30.217096], - [-89.634208, 30.308256], - [-89.678514, 30.414012], - [-89.6999320828408, 30.454036880786], - [-89.712493, 30.47751], - [-89.791664, 30.551524], - [-89.821868, 30.644024], - [-89.8261803591152, 30.6688232701852], - [-89.836331, 30.727197], - [-89.791745, 30.820387], - [-89.750073, 30.91293], - [-89.7281756901606, 31.0023138879841], - [-89.728147, 31.002431], - [-89.8359078243282, 31.0021014231176], - [-89.897516, 31.001913], - [-90.2595549404913, 31.0006617812291], - [-90.346007, 31.000363], - [-90.3473046214524, 31.0003605479089], - [-90.5475744252331, 30.9999821017916], - [-90.5671954006585, 30.9999450243999], - [-90.758775, 30.999583], - [-90.8258291412919, 30.9995253553406], - [-91.0601274679966, 30.9993239353092], - [-91.1761401239669, 30.9992242023186], - [-91.224068, 30.999183], - [-91.636942, 30.999416], - [-91.6282572982088, 31.0050970018952], - [-91.560365, 31.049508], - [-91.594693, 31.091444], - [-91.621671, 31.13687], - [-91.5909938930645, 31.1919985656988], - [-91.590051, 31.193693], - [-91.644356, 31.234414], - [-91.621358, 31.267811] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "33", - "STATENS": "01779794", - "AFFGEOID": "0400000US33", - "GEOID": "33", - "ISOCODE": "US-NH", - "name": "New Hampshire", - "LSAD": "00", - "ALAND": 23190115212, - "AWATER": 1025971768 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-72.556112, 42.866252], - [-72.531469, 42.89795], - [-72.532186, 42.954945], - [-72.492597, 42.967648], - [-72.444977, 43.004416], - [-72.4519547090682, 43.0204949106303], - [-72.462248, 43.044214], - [-72.435191, 43.086622], - [-72.451802, 43.153486], - [-72.4503959392159, 43.1612135169064], - [-72.440563, 43.215254], - [-72.4336262531276, 43.2328655889508], - [-72.421583, 43.263442], - [-72.402532, 43.32038], - [-72.4069018580317, 43.3374488387348], - [-72.413377, 43.362741], - [-72.3969619996363, 43.4287653525078], - [-72.3968907962909, 43.4290517463351], - [-72.380894, 43.493394], - [-72.37944, 43.574069], - [-72.3335965013563, 43.6055913415891], - [-72.329522, 43.608393], - [-72.284805, 43.72036], - [-72.222069, 43.759831], - [-72.2114826490853, 43.7730437148214], - [-72.183333, 43.808177], - [-72.16978, 43.873425], - [-72.105875, 43.94937], - [-72.116706, 43.991954], - [-72.0799442240026, 44.0300000301807], - [-72.0796962728478, 44.0302566433846], - [-72.075486, 44.034614], - [-72.036883, 44.103119], - [-72.053859587702, 44.1599265291283], - [-72.061338, 44.184951], - [-72.05399, 44.246926], - [-72.046302, 44.291983], - [-72.002314, 44.324871], - [-71.945163, 44.337744], - [-71.875863, 44.33737], - [-71.8378392792652, 44.3477512592393], - [-71.818838, 44.352939], - [-71.778613, 44.399799], - [-71.7631925213134, 44.4035682627764], - [-71.69092, 44.421234], - [-71.646551, 44.468869], - [-71.579974, 44.501778], - [-71.588076, 44.54785], - [-71.544922, 44.579278], - [-71.551722, 44.627598], - [-71.584574, 44.665351], - [-71.626909, 44.747224], - [-71.570402, 44.805276], - [-71.522393, 44.880811], - [-71.494403, 44.911837], - [-71.531605, 44.976023], - [-71.501088, 45.013377], - [-71.498399, 45.069629], - [-71.448678, 45.109001], - [-71.419058, 45.170488], - [-71.405636, 45.198139], - [-71.438546, 45.239004], - [-71.360664, 45.269835], - [-71.283684, 45.301977], - [-71.244499, 45.268139], - [-71.182587, 45.241069], - [-71.13943, 45.242958], - [-71.109349, 45.282222], - [-71.083924, 45.305451], - [-71.057861, 45.000049], - [-71.036705, 44.736498], - [-71.022992, 44.500058], - [-71.0194617294855, 44.4403632397875], - [-71.0135759038146, 44.3408374525595], - [-71.01127, 44.301846], - [-71.0102711678683, 44.284888321572], - [-71.008736, 44.258825], - [-71.001367, 44.092931], - [-70.989929, 43.839239], - [-70.987258046746, 43.7929735928842], - [-70.981946, 43.70096], - [-70.9758307355675, 43.6143624227896], - [-70.972716, 43.570255], - [-70.9637926798064, 43.5402209553665], - [-70.954755, 43.509802], - [-70.960788896047, 43.4740887336216], - [-70.968359, 43.429283], - [-70.984335, 43.376128], - [-70.923949, 43.324768], - [-70.872585, 43.270152], - [-70.813119, 43.217252], - [-70.8247767120681, 43.1797631051822], - [-70.824801, 43.179685], - [-70.8281, 43.129086], - [-70.819549285713, 43.1232309734312], - [-70.756397, 43.079988], - [-70.703818, 43.059825], - [-70.735477, 43.012201], - [-70.765222, 42.975349], - [-70.798636, 42.924288], - [-70.8114391267743, 42.8886107767412], - [-70.817296, 42.87229], - [-70.86475, 42.870258], - [-70.930799, 42.884589], - [-70.9665, 42.868989], - [-71.031201, 42.859089], - [-71.0487164136986, 42.8310643380822], - [-71.064201, 42.806289], - [-71.1163750121775, 42.8119029144351], - [-71.149703, 42.815489], - [-71.1643502304564, 42.8055098424131], - [-71.1815598288267, 42.7937849436581], - [-71.186104, 42.790689], - [-71.181803, 42.73759], - [-71.2453840329207, 42.7365553285746], - [-71.2551101218106, 42.7363970532872], - [-71.255605, 42.736389], - [-71.294205, 42.69699], - [-71.351874, 42.698154], - [-71.386943174292, 42.6989845402676], - [-71.5425377992987, 42.7026694745181], - [-71.636214, 42.704888], - [-71.745817, 42.707287], - [-71.7725564843125, 42.7080177112404], - [-71.8053896027383, 42.7089149435285], - [-71.8987687719366, 42.7114667208088], - [-71.9290300590535, 42.7122936725326], - [-72.081365050188, 42.7164565385412], - [-72.1110573073528, 42.7172679403547], - [-72.124526, 42.717636], - [-72.2036134798068, 42.7198185286799], - [-72.2830340925109, 42.722010250624], - [-72.4120300647523, 42.7255700733633], - [-72.4511950518227, 42.7266508854936], - [-72.458519, 42.726853], - [-72.477615, 42.761245], - [-72.5396, 42.804832], - [-72.5539020508486, 42.8580316101697], - [-72.556112, 42.866252] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "01", - "STATENS": "01779775", - "AFFGEOID": "0400000US01", - "GEOID": "01", - "ISOCODE": "US-AL", - "name": "Alabama", - "LSAD": "00", - "ALAND": 131175477769, - "AWATER": 4591897964 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-88.4686624840513, 31.8938557116156], - [-88.46866, 31.933173], - [-88.4533877631093, 32.0530492054197], - [-88.4311453634628, 32.2276362346889], - [-88.428278, 32.250143], - [-88.4213122213943, 32.3086791230113], - [-88.3892485641243, 32.5781223959586], - [-88.373338, 32.711825], - [-88.3474902478349, 32.9290347868805], - [-88.3400849921393, 32.991264337875], - [-88.317135, 33.184123], - [-88.3044428135104, 33.28832], - [-88.2745164707837, 33.5340014777852], - [-88.254445, 33.698779], - [-88.2483874739095, 33.7449075948817], - [-88.207229, 34.058333], - [-88.2035834952194, 34.0865277314681], - [-88.1732617345949, 34.3210395343343], - [-88.1549021840087, 34.46303430044], - [-88.1395594412474, 34.5816967458839], - [-88.134263, 34.62266], - [-88.097888, 34.892202], - [-88.154617, 34.922392], - [-88.200064, 34.995634], - [-88.202959, 35.008028], - [-88.000032, 35.005939], - [-87.9849160436989, 35.0059101243258], - [-87.851886, 35.005656], - [-87.625025, 35.003732], - [-87.6060978676533, 35.0035195262043], - [-87.2240536418757, 34.9992307419721], - [-87.216683, 34.999148], - [-87.2107585799823, 34.9990491809997], - [-86.8362863159495, 34.992803004217], - [-86.783648, 34.991925], - [-86.783628017169, 34.991924921992], - [-86.467798, 34.990692], - [-86.3187607654651, 34.9910785804428], - [-86.311274, 34.991098], - [-85.8639461118069, 34.9870308587481], - [-85.605165, 34.984678], - [-85.595165, 34.924171], - [-85.5828123337853, 34.8604354744776], - [-85.561424, 34.750079], - [-85.5344052578154, 34.6237903384358], - [-85.526894818161, 34.5886856927335], - [-85.5130442292733, 34.5239464713237], - [-85.502471, 34.474526], - [-85.4751472811043, 34.3436846578762], - [-85.4631408247758, 34.2861909885055], - [-85.429499, 34.125095], - [-85.4210731752288, 34.0808126526072], - [-85.398871, 33.964128], - [-85.3866705737728, 33.9017014940033], - [-85.360532, 33.767957], - [-85.3381162999059, 33.6531143916014], - [-85.314048, 33.529805], - [-85.3049438332249, 33.4827563368455], - [-85.2943468643453, 33.4279931463646], - [-85.2365953712528, 33.1295440282507], - [-85.232441, 33.108075], - [-85.1861174017892, 32.8701382699716], - [-85.1844, 32.861317], - [-85.160963, 32.826672], - [-85.1245332227506, 32.7516296067514], - [-85.11425, 32.730447], - [-85.088533, 32.657958], - [-85.0760723726048, 32.6080674751571], - [-85.069848, 32.583146], - [-85.0071, 32.523868], - [-85.0011308391237, 32.5101547883978], - [-84.9997867563101, 32.5070669687837], - [-84.971831, 32.442843], - [-84.9811502941337, 32.3790400766818], - [-84.983466, 32.363186], - [-85.008096, 32.336677], - [-84.955704, 32.30591], - [-84.891841, 32.263398], - [-84.9199421479259, 32.2308482009333], - [-84.930127, 32.219051], - [-84.997765, 32.185445], - [-85.058749, 32.136018], - [-85.047063, 32.087389], - [-85.0514111279128, 32.062256083622], - [-85.0635905429847, 31.991857], - [-85.067829, 31.967358], - [-85.114031, 31.89336], - [-85.141831, 31.839261], - [-85.1291593155832, 31.7802782680766], - [-85.1254405773425, 31.7629687034183], - [-85.11893, 31.732664], - [-85.12553, 31.694965], - [-85.058169, 31.620227], - [-85.05796, 31.57084], - [-85.041881, 31.544684], - [-85.0516814295062, 31.5195403291417], - [-85.071621, 31.468384], - [-85.066005, 31.431363], - [-85.092487, 31.362881], - [-85.087929, 31.321648], - [-85.0888299635305, 31.3086477554966], - [-85.089774, 31.295026], - [-85.108192, 31.258591], - [-85.107516, 31.186451], - [-85.035615, 31.108192], - [-85.0211075623628, 31.0754638723064], - [-85.011392, 31.053546], - [-85.002499, 31.000682], - [-85.031285, 31.000647], - [-85.145959, 31.000693], - [-85.333319, 30.999555], - [-85.4882982889391, 30.9979646232873], - [-85.4980015850895, 30.9978650493614], - [-85.5794975763383, 30.9970287484109], - [-85.749715, 30.995282], - [-85.893632, 30.993455], - [-86.0350381049506, 30.9937496073023], - [-86.1872480489813, 30.9940667234622], - [-86.364974, 30.994437], - [-86.3886446620004, 30.9945282152752], - [-86.563494, 30.995202], - [-86.6882409642461, 30.9962018900015], - [-86.7856919760059, 30.9969829935168], - [-86.831979, 30.997354], - [-86.927851, 30.997678], - [-87.162644, 30.999026], - [-87.163645308459, 30.999021835748], - [-87.312206, 30.998404], - [-87.425791, 30.998058], - [-87.519533, 30.997552], - [-87.5988289462621, 30.9974221769053], - [-87.598937, 30.997422], - [-87.592064, 30.95146], - [-87.634943, 30.865857], - [-87.542268, 30.767481], - [-87.523621, 30.738285], - [-87.442291, 30.692661], - [-87.400189, 30.657201], - [-87.401189, 30.604383], - [-87.43145, 30.550252], - [-87.444722, 30.507484], - [-87.414685, 30.457289], - [-87.366601, 30.436643], - [-87.431784, 30.403193], - [-87.452282, 30.344097], - [-87.518324, 30.280435], - [-87.656888, 30.249709], - [-87.818867, 30.228314], - [-87.893201, 30.239237], - [-87.806466, 30.279798], - [-87.796717, 30.324198], - [-87.865017, 30.38345], - [-87.914136, 30.446144], - [-87.933355, 30.487357], - [-87.901711, 30.550879], - [-87.914956, 30.585893], - [-87.93107, 30.652694], - [-88.008396, 30.684956], - [-88.061998, 30.644891], - [-88.064898, 30.588292], - [-88.081617, 30.546317], - [-88.103768, 30.500903], - [-88.105699, 30.401865], - [-88.136173, 30.320729], - [-88.195664, 30.321242], - [-88.257764, 30.318933], - [-88.311608, 30.368908], - [-88.364022, 30.388006], - [-88.395023, 30.369425], - [-88.403931, 30.543359], - [-88.41227, 30.731771], - [-88.4124674313592, 30.7355974592153], - [-88.4260209637871, 30.9982813574303], - [-88.432007, 31.114298], - [-88.44866, 31.421277], - [-88.4494460690171, 31.4358368612776], - [-88.459478, 31.621652], - [-88.4636253046849, 31.6979423713502], - [-88.468669, 31.790722], - [-88.4686624840513, 31.8938557116156] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "46", - "STATENS": "01785534", - "AFFGEOID": "0400000US46", - "GEOID": "46", - "ISOCODE": "US-SD", - "name": "South Dakota", - "LSAD": "00", - "ALAND": 196342918877, - "AWATER": 3386737669 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-104.057698, 44.997431], - [-104.039138, 44.99852], - [-104.039977, 45.124988], - [-104.040135756493, 45.2128907620416], - [-104.040358, 45.335946], - [-104.041764, 45.490789], - [-104.041937, 45.557915], - [-104.042597, 45.749998], - [-104.043776, 45.864707], - [-104.044133156107, 45.8819762583498], - [-104.045443, 45.94531], - [-103.660779, 45.945241], - [-103.434851, 45.945291], - [-103.218396, 45.945208], - [-102.995248020853, 45.9451162711238], - [-102.942069961191, 45.9450944113531], - [-102.880252, 45.945069], - [-102.704871, 45.945072], - [-102.550947, 45.945015], - [-102.32823, 45.944806], - [-102.087555, 45.944598], - [-102.000679921018, 45.9445383927274], - [-101.998733079552, 45.9445370569484], - [-101.794606, 45.944397], - [-101.557276, 45.9441], - [-101.365283, 45.944092], - [-101.106826, 45.943984], - [-100.76211, 45.943767], - [-100.511949026151, 45.9436540704345], - [-100.511793, 45.943654], - [-100.499354215384, 45.9436319988143], - [-100.294126, 45.943269], - [-100.152084, 45.942486], - [-99.880292, 45.941672], - [-99.8800619701871, 45.9416709152146], - [-99.718073, 45.940907], - [-99.61116, 45.941098], - [-99.490254, 45.940362], - [-99.34496, 45.940299], - [-99.092868, 45.940184], - [-99.0057543501525, 45.9399443091284], - [-99.005642, 45.939944], - [-98.7243744138881, 45.9386747332615], - [-98.625379, 45.938228], - [-98.414518, 45.936504], - [-98.070515, 45.93618], - [-98.0081017982778, 45.9360126290493], - [-97.9787778096234, 45.9359339920987], - [-97.77704, 45.935393], - [-97.542598, 45.935258], - [-97.228291, 45.9356565956461], - [-97.082093, 45.935842], - [-96.563672, 45.935245], - [-96.571871, 45.871846], - [-96.587093, 45.816445], - [-96.630512, 45.781157], - [-96.672665, 45.732336], - [-96.745086, 45.701576], - [-96.82616, 45.654164], - [-96.851621, 45.619412], - [-96.843957, 45.594003], - [-96.8354191619781, 45.5861286928808], - [-96.781036, 45.535972], - [-96.742509, 45.478723], - [-96.710786, 45.43693], - [-96.675447, 45.410216], - [-96.617726, 45.408092], - [-96.562142, 45.38609], - [-96.521787, 45.375645], - [-96.482556, 45.346273], - [-96.4700776030493, 45.3267996493923], - [-96.457781, 45.30761], - [-96.457553498485, 45.2688979287184], - [-96.4558401136336, 44.97734524828], - [-96.4548305155538, 44.8055502040458], - [-96.4538066996671, 44.631335831948], - [-96.4532913135987, 44.543636801818], - [-96.452213, 44.360149], - [-96.4524358245955, 44.196801586665], - [-96.4524358546695, 44.1967795400951], - [-96.4529095716932, 43.8495088526372], - [-96.4529095743663, 43.8495068930184], - [-96.453315, 43.552299], - [-96.45326, 43.50039], - [-96.598928, 43.500457], - [-96.584603, 43.46961], - [-96.594254, 43.434153], - [-96.521572, 43.38564], - [-96.524289, 43.347214], - [-96.530392, 43.300034], - [-96.578823, 43.291095], - [-96.5590273427097, 43.257555675618], - [-96.552963, 43.247281], - [-96.522084, 43.22096], - [-96.475571, 43.221054], - [-96.458854, 43.143356], - [-96.439335, 43.113916], - [-96.4520975160537, 43.0825529251945], - [-96.458201, 43.067554], - [-96.511605, 43.039927], - [-96.492693, 43.005089], - [-96.520246, 42.977643], - [-96.500308, 42.959391], - [-96.541689, 42.922576], - [-96.5404723291933, 42.908595697956], - [-96.537851, 42.878475], - [-96.577937, 42.827645], - [-96.621875, 42.779255], - [-96.624704, 42.725497], - [-96.591602, 42.688081], - [-96.526766, 42.641184], - [-96.48002247898, 42.5613247765607], - [-96.476952, 42.556079], - [-96.49297, 42.517282], - [-96.477454, 42.509589], - [-96.445508, 42.49063], - [-96.501321, 42.482749], - [-96.525142, 42.510234], - [-96.611489, 42.506088], - [-96.6279454569017, 42.5270961391418], - [-96.658754, 42.566426], - [-96.7093, 42.603753], - [-96.697639, 42.659143], - [-96.778182, 42.662993], - [-96.801652, 42.698774], - [-96.8073706000982, 42.700678985373], - [-96.906797, 42.7338], - [-96.965679, 42.724532], - [-97.0156311127472, 42.7565254624882], - [-97.02485, 42.76243], - [-97.131331, 42.771929], - [-97.1650703923738, 42.7916166414677], - [-97.213957, 42.820143], - [-97.237868, 42.853139], - [-97.302075, 42.86566], - [-97.341181, 42.855882], - [-97.417066, 42.865918], - [-97.452177, 42.846048], - [-97.484916876342, 42.8500032148679], - [-97.515948, 42.853752], - [-97.59926, 42.856229], - [-97.6354420904415, 42.8518090751855], - [-97.70103, 42.843797], - [-97.801344, 42.858003], - [-97.857957, 42.865093], - [-97.876887, 42.852663], - [-97.905001, 42.798872], - [-97.950147, 42.769619], - [-98.035034, 42.764205], - [-98.1047, 42.808475], - [-98.14806, 42.840013], - [-98.1525866548382, 42.8411533810637], - [-98.231922, 42.86114], - [-98.280007, 42.874996], - [-98.3081868164513, 42.8864892074256], - [-98.386445, 42.918407], - [-98.434503, 42.929227], - [-98.478919, 42.963539], - [-98.49855, 42.99856], - [-98.847992, 42.998255], - [-99.2544550123166, 42.9982209267867], - [-99.534055014809, 42.9981974883181], - [-99.850037, 42.998171], - [-100.198412611566, 42.9979768846315], - [-100.198413799775, 42.9979768839694], - [-101.000429, 42.99753], - [-101.228013397794, 42.9978687396475], - [-102.082486319192, 42.9991405485193], - [-102.082548043072, 42.99914064039], - [-102.40864, 42.999626], - [-102.792110939839, 43.0000362357704], - [-103.000609526033, 43.0002592867744], - [-103.476133, 43.000768], - [-103.505099916029, 43.0007588128236], - [-104.053127, 43.000585], - [-104.053876, 43.289801], - [-104.054684568427, 43.477815541711], - [-104.054794284348, 43.503327530406], - [-104.055032, 43.558603], - [-104.055488, 43.853477], - [-104.055416190705, 44.1410812067834], - [-104.055406377827, 44.1803828740957], - [-104.055389, 44.249983], - [-104.055695199261, 44.5709903771422], - [-104.05581, 44.691343], - [-104.057698, 44.997431] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "42", - "STATENS": "01779798", - "AFFGEOID": "0400000US42", - "GEOID": "42", - "ISOCODE": "US-PA", - "name": "Pennsylvania", - "LSAD": "00", - "ALAND": 115881784866, - "AWATER": 3397909903 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-80.519891, 40.906661], - [-80.5196437725473, 40.9873926540058], - [-80.5192220860809, 41.1250935667958], - [-80.519196690325, 41.1333865025489], - [-80.518893, 41.232556], - [-80.5190001313643, 41.3335021441936], - [-80.5191652733637, 41.4891096844823], - [-80.5191767503534, 41.499924051206], - [-80.519357, 41.669767], - [-80.5193967266905, 41.8495629905593], - [-80.519425, 41.977523], - [-80.329976, 42.036168], - [-80.154084, 42.114757], - [-80.136213, 42.149937], - [-80.088512, 42.173184], - [-80.020323, 42.163116], - [-79.923924, 42.207546], - [-79.844661, 42.235486], - [-79.761951, 42.26986], - [-79.762122, 42.131246], - [-79.761313, 41.998808], - [-79.6108357749867, 41.9985199041084], - [-79.472472, 41.998255], - [-79.0612581876299, 41.9988381187249], - [-78.983065, 41.998949], - [-78.9188983633788, 41.9991031002259], - [-78.59665, 41.999877], - [-78.3081443402607, 41.9990711776986], - [-78.271204, 41.998968], - [-78.2063790981571, 41.9990887227984], - [-78.031177, 41.999415], - [-77.83203, 41.998524], - [-77.749932223724, 41.9987554366682], - [-77.610020114476, 41.9991498540796], - [-77.007635, 42.000848], - [-76.9657915095295, 42.0007834917859], - [-76.9269253205306, 42.0007235735426], - [-76.558118, 42.000155], - [-76.5576987221493, 42.0001496652537], - [-76.473030885808, 41.999072381007], - [-76.462155, 41.998934], - [-76.1455189947821, 41.998866463308], - [-76.10584, 41.998858], - [-75.870677, 41.998828], - [-75.5531194388128, 41.999295218322], - [-75.4831402165408, 41.9993981778443], - [-75.477144, 41.999407], - [-75.3599310768702, 41.9936893594868], - [-75.341125, 41.992772], - [-75.291762, 41.947092], - [-75.263005, 41.885109], - [-75.190203, 41.862454], - [-75.1452931756179, 41.8497375185041], - [-75.113369, 41.840698], - [-75.074412, 41.802191], - [-75.053431, 41.752538], - [-75.049281, 41.641862], - [-75.0461986059117, 41.6037640199027], - [-75.043879, 41.575094], - [-74.982463, 41.496467], - [-74.890358, 41.455324], - [-74.799546, 41.43129], - [-74.7562718347252, 41.4276274285434], - [-74.734893, 41.425818], - [-74.694914, 41.357423], - [-74.760325, 41.340325], - [-74.815703, 41.296151], - [-74.867405, 41.22777], - [-74.905256, 41.155668], - [-74.979873, 41.110423], - [-74.9830420742478, 41.1060175588568], - [-74.9923859951822, 41.0930282469934], - [-75.015271, 41.061215], - [-75.0523586008006, 41.0326279973019], - [-75.070532, 41.01862], - [-75.133086, 40.980179], - [-75.1232539442085, 40.9653055343877], - [-75.09772, 40.926679], - [-75.065438, 40.885682], - [-75.090962, 40.849187], - [-75.108505, 40.791094], - [-75.1113587316723, 40.7899822892144], - [-75.177477, 40.764225], - [-75.192612, 40.715874], - [-75.191059, 40.637971], - [-75.1892364013559, 40.6090569611221], - [-75.1881998781252, 40.5926133666486], - [-75.186737, 40.569406], - [-75.136748, 40.575731], - [-75.078503, 40.548296], - [-75.062227, 40.481391], - [-75.070568, 40.455165], - [-75.056102, 40.416066], - [-75.024775, 40.403455], - [-74.969597, 40.39977], - [-74.946006, 40.357306], - [-74.9281105690914, 40.3398284476893], - [-74.90331, 40.315607], - [-74.856508, 40.277407], - [-74.823907, 40.241508], - [-74.760605, 40.198909], - [-74.7484976572578, 40.184908614104], - [-74.721604, 40.15381], - [-74.7233792971515, 40.1528955462317], - [-74.769488, 40.129145], - [-74.825907, 40.12391], - [-74.863809, 40.08221], - [-74.932211, 40.068411], - [-74.9728547564456, 40.0465053655363], - [-74.989914, 40.037311], - [-75.059017, 39.992512], - [-75.0601299707226, 39.9920110032626], - [-75.11922, 39.965412], - [-75.1322646449748, 39.9509443028461], - [-75.13572, 39.947112], - [-75.134588222414, 39.9220657620218], - [-75.13342, 39.896213], - [-75.1414355217473, 39.8939183724813], - [-75.183023, 39.882013], - [-75.2111960614745, 39.8665186316821], - [-75.221025, 39.861113], - [-75.293376, 39.848782], - [-75.341765, 39.846082], - [-75.4104924776371, 39.8046722343221], - [-75.415062, 39.801919], - [-75.481207, 39.829191], - [-75.570433, 39.839185], - [-75.5796477422344, 39.8374141038914], - [-75.5925626443241, 39.8349321082726], - [-75.5943169052201, 39.8345949730913], - [-75.662846, 39.821425], - [-75.717059, 39.792325], - [-75.753228, 39.757989], - [-75.773786, 39.7222], - [-75.788596, 39.722199], - [-76.1356974269902, 39.7217675506067], - [-76.2332793471166, 39.7216462556279], - [-76.233485, 39.721646], - [-76.2396837411146, 39.7216419899246], - [-76.41898, 39.721526], - [-76.5694491257313, 39.7214585707527], - [-76.715771, 39.721393], - [-76.7870971997576, 39.7210481461113], - [-76.991062, 39.720062], - [-76.9993180263332, 39.7200676723526], - [-77.2170237552374, 39.7202172483854], - [-77.23995, 39.720233], - [-77.4591384979573, 39.7202291767892], - [-77.4691450036804, 39.72022900225], - [-77.469274, 39.720229], - [-77.768644, 39.721538], - [-78.075861, 39.722448], - [-78.0989706961667, 39.7224661944281], - [-78.342593, 39.722658], - [-78.3428335185744, 39.7226582929265], - [-78.380477064564, 39.72270413884], - [-78.723578, 39.723122], - [-78.8082995296216, 39.7230709562769], - [-78.9284161298889, 39.7229985874409], - [-79.045576, 39.722928], - [-79.3924584050224, 39.7214393586401], - [-79.476662, 39.721078], - [-79.763774, 39.720776], - [-79.9160173560378, 39.7210559335188], - [-80.075947, 39.72135], - [-80.421388, 39.721189], - [-80.519342, 39.721403], - [-80.5191607943145, 39.9622000525219], - [-80.51912, 40.01641], - [-80.5190843704566, 40.1596719951181], - [-80.519039, 40.342101], - [-80.5190296911941, 40.3996410563407], - [-80.5190171173474, 40.4773631462371], - [-80.518991, 40.638801], - [-80.5197051125992, 40.8513367786854], - [-80.5198697076862, 40.9003239342489], - [-80.519891, 40.906661] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "40", - "STATENS": "01102857", - "AFFGEOID": "0400000US40", - "GEOID": "40", - "ISOCODE": "US-OK", - "name": "Oklahoma", - "LSAD": "00", - "ALAND": 177664154114, - "AWATER": 3373725677 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-103.002518, 36.675186], - [-103.001964, 36.909573], - [-103.002199, 37.000104], - [-102.841989, 36.999598], - [-102.698142, 36.995149], - [-102.355288, 36.994506], - [-102.04224, 36.993083], - [-102.028204191045, 36.9931451471083], - [-101.90244, 36.993702], - [-101.555258848691, 36.9952909392776], - [-101.485326, 36.995611], - [-101.211486, 36.997124], - [-101.06645021566, 36.9977361751404], - [-100.945466793078, 36.9982468287288], - [-100.855634, 36.998626], - [-100.633324986158, 37.0001736090529], - [-100.552683, 37.000735], - [-100.089481743903, 37.0014794694635], - [-100.002571514322, 37.001619153912], - [-99.995201, 37.001631], - [-99.657658, 37.000197], - [-99.5411149123609, 36.9999096445655], - [-99.4562024346753, 36.9997002794079], - [-99.407015, 36.999579], - [-99.129449, 36.999422], - [-99.0003010538842, 36.9993580981444], - [-98.791936, 36.999255], - [-98.5446619733489, 36.9985242404006], - [-98.354073, 36.997961], - [-98.3471487797447, 36.9979692086496], - [-98.1119851837458, 36.9982479946353], - [-98.045342, 36.998327], - [-97.8023129703503, 36.998698609394], - [-97.768704, 36.99875], - [-97.4623460298641, 36.9988242387969], - [-97.384925, 36.998843], - [-97.1477209669227, 36.9989723356215], - [-97.100652, 36.998998], - [-96.749838, 36.998988], - [-96.5255820442829, 36.9986779687248], - [-96.500288, 36.998643], - [-96.217571, 36.99907], - [-96.0008102061996, 36.9992010529279], - [-95.9642712321022, 36.9992231442824], - [-95.928122, 36.999245], - [-95.7867618707782, 36.999270917592], - [-95.573598, 36.99931], - [-95.5224145523987, 36.9993197867829], - [-95.407733005873, 36.9993417150323], - [-95.322565, 36.999358], - [-95.0735039666303, 36.9994881346791], - [-95.0076200044721, 36.9995225591258], - [-94.995293, 36.999529], - [-94.71277, 36.998794], - [-94.617964, 36.998905], - [-94.618307, 36.76656], - [-94.6179917784172, 36.6679212723442], - [-94.617815, 36.612604], - [-94.617919, 36.499414], - [-94.5862, 36.299969], - [-94.5622679285528, 36.1619726146264], - [-94.5518886566514, 36.1021239714216], - [-94.532071, 35.987852], - [-94.494549, 35.768303], - [-94.4930532906959, 35.7592465106763], - [-94.4731193906467, 35.6385471525294], - [-94.449696, 35.496719], - [-94.4348090628047, 35.3926242553894], - [-94.4340725641195, 35.387474395379], - [-94.431515, 35.369591], - [-94.435316, 35.275893], - [-94.4429265938001, 35.0624856806022], - [-94.4475060874703, 34.9340729057232], - [-94.449058, 34.890556], - [-94.4543955288439, 34.7289436942281], - [-94.4575, 34.634945], - [-94.4611686861559, 34.5074566515725], - [-94.465425, 34.359548], - [-94.470143947319, 34.1901776556377], - [-94.474895, 34.019655], - [-94.4772691832212, 33.9408298614626], - [-94.481842, 33.789008], - [-94.485875, 33.637867], - [-94.528928, 33.62184], - [-94.572872, 33.669886], - [-94.630586, 33.673401], - [-94.714865, 33.707261], - [-94.7319329019959, 33.7208305162803], - [-94.766146, 33.748031], - [-94.841634, 33.739431], - [-94.902276, 33.776289], - [-94.93956, 33.810503], - [-94.98165, 33.852284], - [-95.046568, 33.862565], - [-95.095002, 33.904816], - [-95.149462, 33.936336], - [-95.1559076171075, 33.9384823885698], - [-95.226393, 33.961954], - [-95.253623, 33.92971], - [-95.283445, 33.877746], - [-95.3104497954491, 33.8738430381855], - [-95.352338, 33.867789], - [-95.44737, 33.86885], - [-95.525322, 33.885487], - [-95.556915, 33.92702], - [-95.603657, 33.927195], - [-95.669978, 33.905844], - [-95.737508, 33.895967], - [-95.7896393177523, 33.8724373846723], - [-95.820596, 33.858465], - [-95.8448785340707, 33.860421904719], - [-95.887491, 33.863856], - [-95.935325, 33.875099], - [-96.063924, 33.841523], - [-96.15163, 33.831946], - [-96.173025, 33.80056], - [-96.229023, 33.748021], - [-96.277269, 33.769735], - [-96.307389, 33.735005], - [-96.363135, 33.694215], - [-96.3796608259521, 33.715530908566], - [-96.403507, 33.746289], - [-96.436455, 33.78005], - [-96.502286, 33.77346], - [-96.523863, 33.818114], - [-96.572937, 33.819098], - [-96.592926, 33.830916], - [-96.590112, 33.880665], - [-96.5946743073771, 33.8830186573983], - [-96.659896, 33.916666], - [-96.682103, 33.876645], - [-96.712422, 33.831633], - [-96.776766, 33.841976], - [-96.794276, 33.868886], - [-96.850593, 33.847211], - [-96.897194, 33.902954], - [-96.905253, 33.947219], - [-96.934343303133, 33.9455889292528], - [-96.9446168883705, 33.945013250454], - [-96.952313, 33.944582], - [-96.988745, 33.918468], - [-96.985567, 33.886522], - [-97.055838, 33.855741], - [-97.07859, 33.812756], - [-97.087852, 33.774099], - [-97.091072, 33.735115], - [-97.149394, 33.721967], - [-97.205652, 33.809824], - [-97.166629, 33.847311], - [-97.206141, 33.91428], - [-97.24618, 33.900344], - [-97.318243, 33.865121], - [-97.372941, 33.819454], - [-97.444193, 33.823773], - [-97.451469, 33.87093], - [-97.4841434385876, 33.9138891088909], - [-97.486505, 33.916994], - [-97.55827, 33.897099], - [-97.5612431502211, 33.899061506733], - [-97.596155, 33.922106], - [-97.609091, 33.968093], - [-97.671772, 33.99137], - [-97.759834, 33.92521], - [-97.803473, 33.88019], - [-97.865765, 33.849393], - [-97.951215, 33.878424], - [-97.9519059508552, 33.8912258148573], - [-97.953695, 33.924373], - [-97.947572, 33.991053], - [-98.005667, 33.995964], - [-98.082839, 34.002412], - [-98.099096, 34.048639], - [-98.099328, 34.104295], - [-98.123377, 34.15454], - [-98.1384860257464, 34.1412060197111], - [-98.16912, 34.114171], - [-98.225282, 34.127245], - [-98.31875, 34.146421], - [-98.364023, 34.157109], - [-98.398441, 34.128456], - [-98.414426, 34.085074], - [-98.423533, 34.0819494760059], - [-98.475066, 34.064269], - [-98.5282, 34.094961], - [-98.577136, 34.148962], - [-98.6102002179226, 34.1561768671247], - [-98.648073, 34.164441], - [-98.690072, 34.133155], - [-98.737232, 34.130992], - [-98.80681, 34.155901], - [-98.872229, 34.160446], - [-98.94022, 34.203686], - [-98.9523248875282, 34.2046698986035], - [-99.002916, 34.208782], - [-99.0588, 34.201256], - [-99.131553, 34.209352], - [-99.189511, 34.214312], - [-99.2116, 34.31397], - [-99.2216079008455, 34.3253735743726], - [-99.27534, 34.386599], - [-99.350407, 34.437083], - [-99.394956, 34.442099], - [-99.420432, 34.380464], - [-99.470969, 34.396471], - [-99.4750221370384, 34.3968709897905], - [-99.58448, 34.407673], - [-99.600026, 34.374688], - [-99.696462, 34.381036], - [-99.764882, 34.435266], - [-99.818186, 34.48784], - [-99.8420638841464, 34.5069327688814], - [-99.929334, 34.576714], - [-99.997629328163, 34.5611366245601], - [-100.000381, 34.560509], - [-100.000382194816, 34.7463605525616], - [-100.000384017848, 35.0299299999999], - [-100.000385, 35.182702], - [-100.000388844143, 35.4223639883094], - [-100.000392, 35.619115], - [-100.000396202899, 35.8812329999967], - [-100.000399, 36.055677], - [-100.000406, 36.499702], - [-100.003761993368, 36.4997018487376], - [-100.311018, 36.499688], - [-100.546145126097, 36.4995051393038], - [-100.592614, 36.499469], - [-100.884174, 36.499682], - [-100.954152157693, 36.4995294966262], - [-101.085156, 36.499244], - [-101.623915, 36.499528], - [-101.826565, 36.499654], - [-102.032339018963, 36.5000656730101], - [-102.162463, 36.500326], - [-103.002434, 36.500397], - [-103.002188, 36.602716], - [-103.002518, 36.675186] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "37", - "STATENS": "01027616", - "AFFGEOID": "0400000US37", - "GEOID": "37", - "ISOCODE": "US-NC", - "name": "North Carolina", - "LSAD": "00", - "ALAND": 125933327733, - "AWATER": 13456093195 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-84.2865983787409, 35.2057582184959], - [-84.28322, 35.226577], - [-84.223718, 35.269078], - [-84.178516, 35.240679], - [-84.097508, 35.247382], - [-84.0291044137725, 35.2921237764939], - [-84.02351, 35.295783], - [-84.038081, 35.348363], - [-84.007586, 35.371661], - [-84.021782, 35.407418], - [-83.973171, 35.452582], - [-83.9589178345639, 35.4578994395799], - [-83.9532313801504, 35.4600208895767], - [-83.916801, 35.473612], - [-83.848502, 35.519259], - [-83.771736, 35.562118], - [-83.6629119015893, 35.5677997932083], - [-83.653159, 35.568309], - [-83.587827, 35.566963], - [-83.498335, 35.562981], - [-83.452431, 35.602918], - [-83.421576, 35.611186], - [-83.347262, 35.660474], - [-83.297154, 35.65775], - [-83.26474416829, 35.7030894961701], - [-83.2561415523036, 35.7151240626578], - [-83.255351, 35.71623], - [-83.198267, 35.725494], - [-83.161537, 35.763363], - [-83.097193, 35.776067], - [-83.04853, 35.787706], - [-82.978414, 35.78261], - [-82.9666497428986, 35.795445979574], - [-82.937437, 35.82732], - [-82.899718, 35.874602], - [-82.910608, 35.92693], - [-82.8937514184314, 35.9338572697089], - [-82.860724, 35.94743], - [-82.81613, 35.923986], - [-82.787465, 35.952163], - [-82.779397, 35.992511], - [-82.725065, 36.018204], - [-82.628365, 36.062105], - [-82.6057036107936, 36.0371988635619], - [-82.595525, 36.026012], - [-82.610885, 35.974442], - [-82.557874, 35.953901], - [-82.5080076597225, 35.9820132054415], - [-82.464558, 36.006508], - [-82.4169375946732, 36.0729700107085], - [-82.409458, 36.083409], - [-82.346857, 36.115209], - [-82.297655, 36.13351], - [-82.26569, 36.127614], - [-82.2202530102866, 36.1538200398431], - [-82.211251, 36.159012], - [-82.140847, 36.136216], - [-82.127146, 36.104417], - [-82.0811489171324, 36.1056921143326], - [-82.080143, 36.10572], - [-82.02874, 36.124322], - [-81.960101, 36.228131], - [-81.9343692444926, 36.2647162043798], - [-81.9184444729048, 36.2873579173821], - [-81.908137, 36.302013], - [-81.833202, 36.347339], - [-81.768977, 36.341042], - [-81.705966, 36.338496], - [-81.7253728028917, 36.3897385587113], - [-81.734312, 36.413342], - [-81.695311, 36.467912], - [-81.699962, 36.536829], - [-81.677535, 36.588117], - [-81.499831, 36.57982], - [-81.3532212246022, 36.5762382311564], - [-81.176712, 36.571926], - [-81.061866, 36.56702], - [-80.901726, 36.561751], - [-80.901661118921, 36.561751187168], - [-80.840213077246, 36.5619284516373], - [-80.704831, 36.562319], - [-80.6121887881246, 36.5582162763804], - [-80.4403427430004, 36.5506059569159], - [-80.431605, 36.550219], - [-80.295243, 36.543973], - [-80.0534550433501, 36.5426394280866], - [-80.0273389151412, 36.5424953856142], - [-80.027269, 36.542495], - [-79.8916701669539, 36.5420338366162], - [-79.714850811052, 36.5414324847413], - [-79.5136476625086, 36.5407482050707], - [-79.510647, 36.540738], - [-79.4700566739243, 36.5408361497866], - [-79.3431159193695, 36.5411430999685], - [-79.2184554959223, 36.5414445361761], - [-79.1383358988714, 36.5416382700559], - [-78.942009, 36.542113], - [-78.7962739551405, 36.5417594935816], - [-78.7341228011172, 36.5416087348408], - [-78.509965, 36.541065], - [-78.4572778962559, 36.5414487083995], - [-78.323718509559, 36.5424213915586], - [-78.132911, 36.543811], - [-78.0462083043603, 36.5441976726866], - [-77.8997741360467, 36.5448507330424], - [-77.7671039699267, 36.5454424093355], - [-77.749706, 36.54552], - [-77.2987701888118, 36.5460390108545], - [-77.190175, 36.546164], - [-77.1643226037182, 36.5461528198479], - [-76.917318, 36.546046], - [-76.9160376328562, 36.5460813302903], - [-76.9157318023497, 36.5460897693389], - [-76.738329, 36.550985], - [-76.5419658657183, 36.5507845323601], - [-76.4914825754723, 36.5507329938364], - [-76.3133029682603, 36.550551089807], - [-76.313215, 36.550551], - [-76.1223499470101, 36.5505523325541], - [-76.02675, 36.550553], - [-75.867044, 36.550754], - [-75.838437, 36.434897], - [-75.79641, 36.290351], - [-75.7706514625597, 36.2320803070508], - [-75.71831, 36.113674], - [-75.658537, 36.02043], - [-75.569794, 35.863301], - [-75.51901, 35.769087], - [-75.496086, 35.728515], - [-75.458659, 35.596597], - [-75.486771, 35.391652], - [-75.533627, 35.225825], - [-75.635493, 35.22026], - [-75.7495614239622, 35.1856163621922], - [-75.757916, 35.183079], - [-75.912985, 35.1196], - [-76.013145, 35.061855], - [-76.137269, 34.987858], - [-76.233088, 34.905477], - [-76.31021, 34.852309], - [-76.386804, 34.784579], - [-76.450454, 34.71445], - [-76.535946, 34.588577], - [-76.553806, 34.628252], - [-76.618719, 34.67255], - [-76.726969, 34.69669], - [-76.906257, 34.68282], - [-77.1129643930768, 34.6380928323915], - [-77.136843, 34.632926], - [-77.240991, 34.587507], - [-77.322524, 34.535574], - [-77.462922, 34.471354], - [-77.5152165445848, 34.4373849694266], - [-77.635034, 34.359555], - [-77.7135131704588, 34.2902471866868], - [-77.764022, 34.245641], - [-77.829209, 34.162618], - [-77.8854550755211, 34.038240984853], - [-77.915536, 33.971723], - [-77.9348271350857, 33.9205485057973], - [-77.960172, 33.853315], - [-78.006765, 33.858704], - [-78.018689, 33.888289], - [-78.136952, 33.912178], - [-78.276147, 33.912364], - [-78.383964, 33.901946], - [-78.541087, 33.851112], - [-78.615932, 33.915523], - [-78.6508712805333, 33.9450557205328], - [-78.81171, 34.081006], - [-79.071169, 34.29924], - [-79.0712436122253, 34.2993039510346], - [-79.0712542010482, 34.2993130268419], - [-79.358317, 34.545358], - [-79.4502772890434, 34.6206089970087], - [-79.4617910310013, 34.6300306785915], - [-79.675299, 34.804744], - [-79.6929463837093, 34.8049623069232], - [-79.9246842531364, 34.8078290197515], - [-79.927398038772, 34.807862590631], - [-80.077223, 34.809716], - [-80.3208325711298, 34.813620821544], - [-80.561657, 34.817481], - [-80.5617085493824, 34.8174824003365], - [-80.796997, 34.823874], - [-80.782042, 34.935782], - [-80.8405485676148, 35.0014509426323], - [-80.9034811867122, 35.0720877740461], - [-80.9062399540825, 35.0751842697656], - [-80.93495, 35.107409], - [-81.041489, 35.044703], - [-81.058029, 35.07319], - [-81.036759, 35.122552], - [-81.0423024501386, 35.1467686494682], - [-81.04287, 35.149248], - [-81.3280909892918, 35.1622859155574], - [-81.3676041320777, 35.1640921256134], - [-81.494265, 35.169882], - [-81.7681344077739, 35.1797077063839], - [-81.8744102050921, 35.183520599502], - [-81.9693584012576, 35.1869270884005], - [-82.039651, 35.189449], - [-82.0483912296479, 35.1896375433755], - [-82.215996376597, 35.1932531051427], - [-82.295354, 35.194965], - [-82.3531752729195, 35.1987141296007], - [-82.411301, 35.202483], - [-82.455609, 35.177425], - [-82.53256, 35.155617], - [-82.5777151484413, 35.1464753478475], - [-82.68604, 35.124545], - [-82.746431, 35.079131], - [-82.7617976610408, 35.0818284636457], - [-82.783283, 35.0856], - [-82.897499, 35.056021], - [-82.897559231248, 35.0560052045865], - [-83.0084105925124, 35.0269348608162], - [-83.108399912205, 35.0007130457328], - [-83.108606, 35.000659], - [-83.322768, 34.995874], - [-83.4828732042907, 34.9908739612868], - [-83.5491807535047, 34.988803195914], - [-83.619985, 34.986592], - [-83.936427344252, 34.9874843833797], - [-83.936646, 34.987485], - [-84.0053367334383, 34.9876495840123], - [-84.1294469626359, 34.9879469539553], - [-84.321869, 34.988408], - [-84.2865983787409, 35.2057582184959] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "25", - "STATENS": "00606926", - "AFFGEOID": "0400000US25", - "GEOID": "25", - "ISOCODE": "US-MA", - "name": "Massachusetts", - "LSAD": "00", - "ALAND": 20204390225, - "AWATER": 7130660432 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-70.275526, 41.310464], - [-70.193712, 41.313787], - [-70.079133, 41.319504], - [-70.049053, 41.391702], - [-69.984869, 41.358818], - [-69.960181, 41.264546], - [-70.015225, 41.237964], - [-70.096967, 41.24085], - [-70.211479, 41.248765], - [-70.275526, 41.310464] - ] - ], - [ - [ - [-70.833802, 41.353386], - [-70.757797, 41.365702], - [-70.686881, 41.441334], - [-70.603555, 41.482384], - [-70.553277, 41.452955], - [-70.496197, 41.424908], - [-70.463833, 41.419145], - [-70.448262, 41.353651], - [-70.577454, 41.349163], - [-70.693635, 41.342833], - [-70.768687, 41.303702], - [-70.821284, 41.251014], - [-70.833397, 41.316778], - [-70.833802, 41.353386] - ] - ], - [ - [ - [-73.508142, 42.086257], - [-73.4106444074273, 42.3517462996479], - [-73.352527, 42.510002], - [-73.3070040761806, 42.6326534514115], - [-73.264957, 42.74594], - [-73.1426721280253, 42.743429351364], - [-73.0230178932901, 42.7409727127269], - [-73.0186486133504, 42.7408830063998], - [-72.9489339463746, 42.7394516843506], - [-72.9301066166812, 42.7390651376842], - [-72.9272134553146, 42.739005737764], - [-72.8642918548454, 42.7377138851592], - [-72.809113, 42.736581], - [-72.5167111827822, 42.7284676698292], - [-72.458519, 42.726853], - [-72.4511950518227, 42.7266508854936], - [-72.4120300647523, 42.7255700733633], - [-72.2830340925109, 42.722010250624], - [-72.2036134798068, 42.7198185286799], - [-72.124526, 42.717636], - [-72.1110573073528, 42.7172679403547], - [-72.081365050188, 42.7164565385412], - [-71.9290300590535, 42.7122936725326], - [-71.8987687719366, 42.7114667208088], - [-71.8053896027383, 42.7089149435285], - [-71.7725564843125, 42.7080177112404], - [-71.745817, 42.707287], - [-71.636214, 42.704888], - [-71.5425377992987, 42.7026694745181], - [-71.386943174292, 42.6989845402676], - [-71.351874, 42.698154], - [-71.294205, 42.69699], - [-71.255605, 42.736389], - [-71.2551101218106, 42.7363970532872], - [-71.2453840329207, 42.7365553285746], - [-71.181803, 42.73759], - [-71.186104, 42.790689], - [-71.1815598288267, 42.7937849436581], - [-71.1643502304564, 42.8055098424131], - [-71.149703, 42.815489], - [-71.1163750121775, 42.8119029144351], - [-71.064201, 42.806289], - [-71.0487164136986, 42.8310643380822], - [-71.031201, 42.859089], - [-70.9665, 42.868989], - [-70.930799, 42.884589], - [-70.86475, 42.870258], - [-70.817296, 42.87229], - [-70.80522, 42.781798], - [-70.7857977672424, 42.7401079501753], - [-70.772267, 42.711064], - [-70.72982, 42.669602], - [-70.681594, 42.662342], - [-70.645101, 42.689423], - [-70.602506, 42.677702], - [-70.594014, 42.63503], - [-70.654727, 42.582234], - [-70.698574, 42.577393], - [-70.804091, 42.561595], - [-70.848492, 42.550195], - [-70.8460490136975, 42.538528426184], - [-70.835991, 42.490496], - [-70.886493, 42.470197], - [-70.8992339791018, 42.4499156556865], - [-70.905993, 42.4391565115922], - [-70.913192, 42.427697], - [-70.9552110614633, 42.4254690903917], - [-70.9675557644072, 42.4248145569171], - [-70.982994, 42.423996], - [-70.9825456015879, 42.420221800052], - [-70.974897, 42.355843], - [-70.9758929421261, 42.3543392537219], - [-70.9830935859472, 42.3434671949331], - [-70.997838, 42.321205], - [-70.9930596399482, 42.3128922804124], - [-70.967351, 42.268168], - [-70.9484970435343, 42.2823546937823], - [-70.91749, 42.305686], - [-70.881242, 42.300663], - [-70.851093, 42.26827], - [-70.8358517753944, 42.2647632647134], - [-70.788724, 42.25392], - [-70.7815745455685, 42.2486369460239], - [-70.73056, 42.21094], - [-70.685315, 42.133025], - [-70.6792377745025, 42.1263494594225], - [-70.63848, 42.081579], - [-70.6395682630454, 42.0749487151251], - [-70.644337, 42.045895], - [-70.678798, 42.00551], - [-70.662476, 41.960592], - [-70.608166, 41.940701], - [-70.583572, 41.950007], - [-70.546386, 41.916751], - [-70.525567, 41.85873], - [-70.54103, 41.815754], - [-70.5364072541248, 41.8116341457464], - [-70.494048, 41.773883], - [-70.441718, 41.752898], - [-70.323819, 41.736058], - [-70.272289, 41.721346], - [-70.216073, 41.742981], - [-70.121978, 41.758841], - [-70.024734, 41.787364], - [-70.003842, 41.80852], - [-70.006111, 41.852396], - [-70.06901, 41.884924], - [-70.074006, 41.93865], - [-70.083775, 42.012041], - [-70.15076, 42.026569], - [-70.190834, 42.020028], - [-70.245385, 42.063733], - [-70.189305, 42.082337], - [-70.1772584572585, 42.0848652837952], - [-70.138942, 42.092907], - [-70.049382, 42.064689], - [-69.994136, 41.999258], - [-69.9802313615877, 41.9459864602333], - [-69.974781, 41.925105], - [-69.935952, 41.809422], - [-69.928261, 41.6917], - [-69.931129, 41.622659], - [-69.964982, 41.55111], - [-70.011229, 41.543931], - [-70.011961, 41.619797], - [-70.007011, 41.671579], - [-70.055523, 41.664843], - [-70.158621, 41.650438], - [-70.269687, 41.617775], - [-70.321588, 41.630508], - [-70.400581, 41.606382], - [-70.445289, 41.591815], - [-70.476256, 41.558502], - [-70.559689, 41.54833], - [-70.654104, 41.519025], - [-70.6690583666005, 41.5129296626746], - [-70.734306, 41.486335], - [-70.79027, 41.446339], - [-70.857528, 41.425767], - [-70.948431, 41.409193], - [-70.934986, 41.454699], - [-70.806861, 41.497583], - [-70.726088944807, 41.5432369319176], - [-70.698197, 41.559002], - [-70.695392, 41.602546], - [-70.7159798446688, 41.6140132687642], - [-70.7617700797884, 41.6395180722704], - [-70.765463, 41.641575], - [-70.8039626132079, 41.6015155410003], - [-70.82191, 41.582841], - [-70.853121, 41.587321], - [-70.8576236660334, 41.5865120924635], - [-70.9090917764468, 41.5772658054655], - [-70.910165, 41.577073], - [-70.941785, 41.540121], - [-70.981708, 41.51007], - [-71.0203212322244, 41.502159475917], - [-71.035514, 41.499047], - [-71.085663, 41.509292], - [-71.12057, 41.497448], - [-71.137492, 41.602561], - [-71.132888, 41.660102], - [-71.19564, 41.67509], - [-71.2013271875249, 41.6817683282027], - [-71.2086005328951, 41.6903092436027], - [-71.261392, 41.752301], - [-71.3174020079312, 41.7772561089687], - [-71.329396, 41.7826], - [-71.339597, 41.832], - [-71.339298, 41.893399], - [-71.3817, 41.893199], - [-71.381461, 41.952141], - [-71.3814313468931, 41.9850841191295], - [-71.381401, 42.018798], - [-71.4580809945561, 42.0168788251287], - [-71.4982240131247, 42.0158741110185], - [-71.559439, 42.014342], - [-71.591096527631, 42.0135133435572], - [-71.6066944190753, 42.0131050585708], - [-71.799242, 42.008065], - [-71.80065, 42.023569], - [-71.8846768359037, 42.0250593514843], - [-71.987326, 42.02688], - [-72.1021594345268, 42.0286302400548], - [-72.1357314619467, 42.0291419299416], - [-72.198845978132, 42.030103893282], - [-72.317148, 42.031907], - [-72.3974762551959, 42.0328161911358], - [-72.5091793362983, 42.0340804965901], - [-72.528131, 42.034295], - [-72.607933, 42.030795], - [-72.735496, 42.036399], - [-72.766739, 42.002995], - [-72.7747593160786, 42.0021291041803], - [-72.810078, 41.998316], - [-72.847142, 42.036894], - [-72.999549, 42.038653], - [-73.0087627816307, 42.0389034162467], - [-73.053397149764, 42.0401165089147], - [-73.1272291708784, 42.0421231483548], - [-73.231056, 42.044945], - [-73.487314, 42.049638], - [-73.4896799420321, 42.0537977095867], - [-73.508142, 42.086257] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "38", - "STATENS": "01779797", - "AFFGEOID": "0400000US38", - "GEOID": "38", - "ISOCODE": "US-ND", - "name": "North Dakota", - "LSAD": "00", - "ALAND": 178694310772, - "AWATER": 4414779956 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-104.048736, 48.999877], - [-103.375467, 48.998951], - [-102.938957018364, 48.9993500857184], - [-102.850455, 48.999431], - [-102.216993, 48.998553], - [-102.021217638045, 48.998756534494], - [-101.625438, 48.999168], - [-101.496550279613, 48.9991448003959], - [-101.125434, 48.999078], - [-100.431676, 48.999398], - [-100.182606092555, 48.9992301566536], - [-99.91378, 48.999049], - [-99.5257738863997, 48.9992712488674], - [-99.376068, 48.999357], - [-98.9998170456132, 48.9999862727847], - [-98.869037, 49.000205], - [-97.9500120193004, 49.000515184076], - [-97.77575, 49.000574], - [-97.229039, 49.000687], - [-97.227854, 48.945864], - [-97.187362, 48.867598], - [-97.152588, 48.772602], - [-97.121253, 48.713593], - [-97.100009, 48.667926], - [-97.142915, 48.583733], - [-97.1477235683009, 48.5438916836506], - [-97.1481034661336, 48.5407440461867], - [-97.149122, 48.532305], - [-97.139173, 48.430528], - [-97.137904, 48.344585], - [-97.129533, 48.257815], - [-97.1418970728279, 48.193696665318], - [-97.1458449594749, 48.1732234829905], - [-97.146745, 48.168556], - [-97.105616, 48.091362], - [-97.068987, 48.026267], - [-97.037354, 47.933279], - [-96.996364, 47.844398], - [-96.928506, 47.744884], - [-96.8934933013399, 47.6721269594437], - [-96.882376, 47.649025], - [-96.854073, 47.57201], - [-96.8559593490532, 47.499173229529], - [-96.85748, 47.440457], - [-96.84022, 47.276981], - [-96.8360095945419, 47.2379818754871], - [-96.8265691272283, 47.150539], - [-96.819078, 47.081152], - [-96.833504, 47.01011], - [-96.763973, 46.912507], - [-96.788803, 46.777575], - [-96.786845, 46.692805], - [-96.790523, 46.63688], - [-96.7897865130498, 46.6357466727167], - [-96.7857861825985, 46.6295908492609], - [-96.744436, 46.56596], - [-96.709095, 46.435294], - [-96.647296, 46.358499], - [-96.60104, 46.319554], - [-96.59567, 46.21985], - [-96.554507, 46.083978], - [-96.572697494194, 46.0218916713577], - [-96.574264, 46.016545], - [-96.563672, 45.935245], - [-97.082093, 45.935842], - [-97.228291, 45.9356565956461], - [-97.542598, 45.935258], - [-97.77704, 45.935393], - [-97.9787778096234, 45.9359339920987], - [-98.0081017982778, 45.9360126290493], - [-98.070515, 45.93618], - [-98.414518, 45.936504], - [-98.625379, 45.938228], - [-98.7243744138881, 45.9386747332615], - [-99.005642, 45.939944], - [-99.0057543501525, 45.9399443091284], - [-99.092868, 45.940184], - [-99.34496, 45.940299], - [-99.490254, 45.940362], - [-99.61116, 45.941098], - [-99.718073, 45.940907], - [-99.8800619701871, 45.9416709152146], - [-99.880292, 45.941672], - [-100.152084, 45.942486], - [-100.294126, 45.943269], - [-100.499354215384, 45.9436319988143], - [-100.511793, 45.943654], - [-100.511949026151, 45.9436540704345], - [-100.76211, 45.943767], - [-101.106826, 45.943984], - [-101.365283, 45.944092], - [-101.557276, 45.9441], - [-101.794606, 45.944397], - [-101.998733079552, 45.9445370569484], - [-102.000679921018, 45.9445383927274], - [-102.087555, 45.944598], - [-102.32823, 45.944806], - [-102.550947, 45.945015], - [-102.704871, 45.945072], - [-102.880252, 45.945069], - [-102.942069961191, 45.9450944113531], - [-102.995248020853, 45.9451162711238], - [-103.218396, 45.945208], - [-103.434851, 45.945291], - [-103.660779, 45.945241], - [-104.045443, 45.94531], - [-104.045465951587, 46.2800809626881], - [-104.045469, 46.324545], - [-104.045045, 46.509788], - [-104.045125235308, 46.5408609881557], - [-104.045385111108, 46.6415039321916], - [-104.045572, 46.713881], - [-104.045542, 46.933887], - [-104.044788, 47.12743], - [-104.045308341358, 47.3301401263698], - [-104.045313, 47.331955], - [-104.044976739577, 47.3970647144107], - [-104.043912, 47.603229], - [-104.042384, 47.803256], - [-104.043933, 47.971515], - [-104.044093106669, 47.9960816799606], - [-104.044093214262, 47.9960981889019], - [-104.045692, 48.241415], - [-104.046782142047, 48.3892980643109], - [-104.047555, 48.49414], - [-104.048087180484, 48.6339103786847], - [-104.0489, 48.847387], - [-104.048736, 48.999877] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "10", - "STATENS": "01779781", - "AFFGEOID": "0400000US10", - "GEOID": "10", - "ISOCODE": "US-DE", - "name": "Delaware", - "LSAD": "00", - "ALAND": 5046731559, - "AWATER": 1399179670 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.773786, 39.7222], - [-75.753228, 39.757989], - [-75.717059, 39.792325], - [-75.662846, 39.821425], - [-75.5943169052201, 39.8345949730913], - [-75.5925626443241, 39.8349321082726], - [-75.5796477422344, 39.8374141038914], - [-75.570433, 39.839185], - [-75.481207, 39.829191], - [-75.415062, 39.801919], - [-75.459439, 39.765813], - [-75.47764, 39.715013], - [-75.509742, 39.686113], - [-75.535144, 39.647212], - [-75.559446, 39.629812], - [-75.543965, 39.596], - [-75.512732, 39.578], - [-75.527676, 39.535278], - [-75.528088, 39.498114], - [-75.593068, 39.479186], - [-75.57183, 39.438897], - [-75.521682, 39.387871], - [-75.5056428576184, 39.3703942225828], - [-75.469324, 39.33082], - [-75.408376, 39.264698], - [-75.39479, 39.188354], - [-75.407473, 39.133706], - [-75.396277, 39.057884], - [-75.34089, 39.01996], - [-75.3066521095097, 38.9476601633284], - [-75.302552, 38.939002], - [-75.304078, 38.91316], - [-75.232029, 38.844254], - [-75.159022, 38.790193], - [-75.113331, 38.782998], - [-75.089473, 38.797198], - [-75.071805, 38.696497], - [-75.053973, 38.536273], - [-75.048939, 38.451263], - [-75.185455, 38.451012], - [-75.3412873203482, 38.4524365259555], - [-75.479283, 38.453698], - [-75.693721, 38.460128], - [-75.700382, 38.542743], - [-75.701777515245, 38.5607669290786], - [-75.707551, 38.635335], - [-75.707555026429, 38.6353853550599], - [-75.7231026933327, 38.8298265565277], - [-75.7481548142541, 39.1431317309597], - [-75.7564352155685, 39.2466875371253], - [-75.7604414164505, 39.2967896211001], - [-75.766895, 39.377499], - [-75.7669046067092, 39.3776515935512], - [-75.788596, 39.722199], - [-75.773786, 39.7222] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "08", - "STATENS": "01779779", - "AFFGEOID": "0400000US08", - "GEOID": "08", - "ISOCODE": "US-CO", - "name": "Colorado", - "LSAD": "00", - "ALAND": 268418796417, - "AWATER": 1185716938 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-109.059962, 38.499987], - [-109.051512, 39.126095], - [-109.051223831017, 39.3666775495863], - [-109.051066846273, 39.4977388093662], - [-109.050871925262, 39.6604717771594], - [-109.050615, 39.87497], - [-109.050973, 40.180849], - [-109.050732112077, 40.2226552582576], - [-109.048249, 40.653601], - [-109.048259750048, 40.662601817228], - [-109.048455, 40.826081], - [-109.050076, 41.000659], - [-108.250649, 41.000114], - [-107.918418289849, 41.0012270706441], - [-107.367443, 41.003073], - [-107.31779575979, 41.0028424812322], - [-106.860377948665, 41.0007186292371], - [-106.321169215914, 40.998215011068], - [-106.217573, 40.997734], - [-106.190554078709, 40.9977466125744], - [-105.277138, 40.998173], - [-105.276859994035, 40.9981729176259], - [-104.943371, 40.9980741037298], - [-104.855273, 40.998048], - [-104.497058, 41.001805], - [-104.053249, 41.001406], - [-103.574522, 41.001721], - [-103.573774006195, 41.0017217990841], - [-103.38249165189, 41.001926146621], - [-103.076536, 41.002253], - [-102.653464137269, 41.0022253241436], - [-102.621033024452, 41.0022232026156], - [-102.556789, 41.002219], - [-102.051717521832, 41.0023769676222], - [-102.051614, 41.002377], - [-102.051292, 40.749591], - [-102.051294151579, 40.697546832389], - [-102.051304798597, 40.440007993377], - [-102.051308551844, 40.3492213568722], - [-102.051309, 40.338381], - [-102.051744, 40.003078], - [-102.051254, 39.818992], - [-102.049992135644, 39.574056097421], - [-102.049961857828, 39.5681789806731], - [-102.04896, 39.373712], - [-102.047200721701, 39.1331467095112], - [-102.046571, 39.047038], - [-102.045712903087, 38.6975657700785], - [-102.04551057457, 38.6151645901775], - [-102.044944, 38.384419], - [-102.044650359147, 38.2687492225031], - [-102.044634270291, 38.2624115677495], - [-102.044255, 38.113011], - [-102.041965658628, 37.7385405736382], - [-102.041876, 37.723875], - [-102.041890869665, 37.6442776852918], - [-102.041938522874, 37.3891900553938], - [-102.041963, 37.258164], - [-102.041983, 37.106551], - [-102.04192, 37.035083], - [-102.04224, 36.993083], - [-102.355288, 36.994506], - [-102.698142, 36.995149], - [-102.841989, 36.999598], - [-103.002199, 37.000104], - [-103.086101075631, 36.9998643611064], - [-103.733247, 36.998016], - [-104.007849409613, 36.9959840947091], - [-104.338833, 36.993535], - [-104.732031, 36.993447], - [-105.1208, 36.995428], - [-105.155042748048, 36.9954744456106], - [-105.220505200781, 36.9955632364865], - [-105.251296, 36.995605], - [-105.41931, 36.995856], - [-105.533922, 36.995875], - [-105.716471, 36.995849], - [-105.718469683991, 36.995845927301], - [-105.997472, 36.995417], - [-106.006316410798, 36.9953866288173], - [-106.343139, 36.99423], - [-106.476233588828, 36.9937741005469], - [-106.869796, 36.992426], - [-106.877292, 37.000139], - [-107.420913, 37.000005], - [-107.481736999155, 37.0000045803143], - [-108.000623, 37.000001], - [-108.379302950094, 36.9995646863115], - [-108.620309, 36.999287], - [-109.045223, 36.999084], - [-109.043780720502, 37.4848192314175], - [-109.042604100621, 37.8810848174926], - [-109.041796614855, 38.1530323049685], - [-109.041762, 38.16469], - [-109.060062, 38.275489], - [-109.059962, 38.499987] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "45", - "STATENS": "01779799", - "AFFGEOID": "0400000US45", - "GEOID": "45", - "ISOCODE": "US-SC", - "name": "South Carolina", - "LSAD": "00", - "ALAND": 77866200776, - "AWATER": 5074243221 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-83.353238, 34.728648], - [-83.320062, 34.759616], - [-83.323866, 34.789712], - [-83.284812, 34.823043], - [-83.252582, 34.853483], - [-83.201183, 34.884653], - [-83.140621, 34.924915], - [-83.124378, 34.95524], - [-83.108606, 35.000659], - [-83.108399912205, 35.0007130457328], - [-83.0084105925124, 35.0269348608162], - [-82.897559231248, 35.0560052045865], - [-82.897499, 35.056021], - [-82.783283, 35.0856], - [-82.7617976610408, 35.0818284636457], - [-82.746431, 35.079131], - [-82.68604, 35.124545], - [-82.5777151484413, 35.1464753478475], - [-82.53256, 35.155617], - [-82.455609, 35.177425], - [-82.411301, 35.202483], - [-82.3531752729195, 35.1987141296007], - [-82.295354, 35.194965], - [-82.215996376597, 35.1932531051427], - [-82.0483912296479, 35.1896375433755], - [-82.039651, 35.189449], - [-81.9693584012576, 35.1869270884005], - [-81.8744102050921, 35.183520599502], - [-81.7681344077739, 35.1797077063839], - [-81.494265, 35.169882], - [-81.3676041320777, 35.1640921256134], - [-81.3280909892918, 35.1622859155574], - [-81.04287, 35.149248], - [-81.0423024501386, 35.1467686494682], - [-81.036759, 35.122552], - [-81.058029, 35.07319], - [-81.041489, 35.044703], - [-80.93495, 35.107409], - [-80.9062399540825, 35.0751842697656], - [-80.9034811867122, 35.0720877740461], - [-80.8405485676148, 35.0014509426323], - [-80.782042, 34.935782], - [-80.796997, 34.823874], - [-80.5617085493824, 34.8174824003365], - [-80.561657, 34.817481], - [-80.3208325711298, 34.813620821544], - [-80.077223, 34.809716], - [-79.927398038772, 34.807862590631], - [-79.9246842531364, 34.8078290197515], - [-79.6929463837093, 34.8049623069232], - [-79.675299, 34.804744], - [-79.4617910310013, 34.6300306785915], - [-79.4502772890434, 34.6206089970087], - [-79.358317, 34.545358], - [-79.0712542010482, 34.2993130268419], - [-79.0712436122253, 34.2993039510346], - [-79.071169, 34.29924], - [-78.81171, 34.081006], - [-78.6508712805333, 33.9450557205328], - [-78.615932, 33.915523], - [-78.541087, 33.851112], - [-78.67226, 33.817587], - [-78.772737, 33.768511], - [-78.862931, 33.705654], - [-78.938076, 33.639826], - [-78.9951309899024, 33.572664], - [-79.028516, 33.533365], - [-79.084588, 33.483669], - [-79.135441, 33.403867], - [-79.162332, 33.327246], - [-79.180563, 33.237955], - [-79.172394, 33.206577], - [-79.215453, 33.155569], - [-79.2744945846428, 33.1200562677204], - [-79.291591, 33.109773], - [-79.329909, 33.089986], - [-79.339313, 33.050336], - [-79.359961, 33.006672], - [-79.423447, 33.015085], - [-79.483499, 33.001265], - [-79.522449, 33.03535], - [-79.580725, 33.006447], - [-79.606615, 32.972248], - [-79.569762, 32.926692], - [-79.601309, 32.89815], - [-79.695141, 32.850398], - [-79.726389, 32.805996], - [-79.818237, 32.766352], - [-79.868352, 32.734849], - [-79.884961, 32.684402], - [-79.968468, 32.639732], - [-80.000801, 32.605892], - [-80.077039, 32.603319], - [-80.148406, 32.578479], - [-80.190108, 32.546841], - [-80.246361, 32.531114], - [-80.2494423292999, 32.5293593843875], - [-80.338354, 32.47873], - [-80.4032765927714, 32.4722024074067], - [-80.413505, 32.471174], - [-80.46571, 32.4953], - [-80.4691107737594, 32.4891261935517], - [-80.4713620677876, 32.4850391667245], - [-80.4722931246951, 32.4833489145801], - [-80.484617, 32.460976], - [-80.457502, 32.410264], - [-80.434303, 32.375193], - [-80.455192, 32.326458], - [-80.539429, 32.287024], - [-80.596394, 32.273549], - [-80.644794, 32.291497], - [-80.714601, 32.325656], - [-80.766038, 32.292608], - [-80.726967, 32.265706], - [-80.669166, 32.216783], - [-80.721463, 32.160427], - [-80.812503, 32.109746], - [-80.858735, 32.099581], - [-80.8674276818916, 32.07849], - [-80.885517, 32.0346], - [-80.943226, 32.057824], - [-81.006745, 32.101152], - [-81.038265, 32.084469], - [-81.113334, 32.113205], - [-81.119361, 32.177142], - [-81.1475951704554, 32.2271694465971], - [-81.153531, 32.237687], - [-81.128034, 32.276297], - [-81.133032, 32.334794], - [-81.1734737944861, 32.3849027808867], - [-81.194931, 32.411489], - [-81.194829, 32.465086], - [-81.274927, 32.544158], - [-81.2842383817656, 32.547110946285], - [-81.328753, 32.561228], - [-81.3869019026942, 32.5989648538998], - [-81.397106, 32.605587], - [-81.393818, 32.653491], - [-81.41267, 32.739083], - [-81.4131167951736, 32.7442613279615], - [-81.42062, 32.831223], - [-81.464069, 32.897814], - [-81.499566, 32.943722], - [-81.50203, 33.015113], - [-81.5439662243139, 33.0443999541444], - [-81.601655, 33.084688], - [-81.6159557107891, 33.089338539364], - [-81.658433, 33.103152], - [-81.755135, 33.15155], - [-81.7625059827958, 33.1972658882973], - [-81.763535, 33.203648], - [-81.846536, 33.241746], - [-81.8465005323579, 33.2472520854299], - [-81.846136, 33.303843], - [-81.932737, 33.343541], - [-81.920121, 33.410753], - [-81.926336, 33.462937], - [-81.990938, 33.494235], - [-82.016581923059, 33.5290907977257], - [-82.028238, 33.544934], - [-82.10624, 33.595637], - [-82.1146538385848, 33.59790505457], - [-82.1424564745009, 33.6053995999921], - [-82.161908, 33.610643], - [-82.199747, 33.657611], - [-82.2159383647475, 33.6877549753187], - [-82.239098, 33.730872], - [-82.32448, 33.820033], - [-82.43115, 33.867051], - [-82.51295, 33.936969], - [-82.556835, 33.945353], - [-82.5629967985809, 33.9565549105269], - [-82.591855, 34.009018], - [-82.5950257926073, 34.0135178092096], - [-82.642797, 34.081312], - [-82.715373, 34.148165], - [-82.7359800166139, 34.215462648637], - [-82.744982, 34.244861], - [-82.7746287310121, 34.2883668182547], - [-82.780308, 34.296701], - [-82.82342, 34.358872], - [-82.841997, 34.399766], - [-82.873831, 34.471508], - [-82.925766, 34.481802], - [-82.9913881531823, 34.4729806272358], - [-82.99509, 34.472483], - [-83.048289, 34.493254], - [-83.0505729641024, 34.4950536521691], - [-83.096858, 34.531524], - [-83.1028738260357, 34.5374309097654], - [-83.154577, 34.588198], - [-83.221402, 34.609947], - [-83.27796, 34.644853], - [-83.33869, 34.682002], - [-83.3400391067846, 34.6863277104121], - [-83.3496085109133, 34.7170105826273], - [-83.353238, 34.728648] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "15", - "STATENS": "01779782", - "AFFGEOID": "0400000US15", - "GEOID": "15", - "ISOCODE": "US-HI", - "name": "Hawaii", - "LSAD": "00", - "ALAND": 16634147169, - "AWATER": 11777652105 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-156.049651, 19.780452], - [-156.006267, 19.81758], - [-155.976651, 19.85053], - [-155.949251, 19.857034], - [-155.915662, 19.887126], - [-155.892533, 19.932162], - [-155.856588, 19.968885], - [-155.831948, 19.982775], - [-155.825473, 20.025944], - [-155.850385, 20.062506], - [-155.890646, 20.123576], - [-155.90278, 20.177073], - [-155.890663, 20.25524], - [-155.853293, 20.271548], - [-155.798884, 20.254115], - [-155.737004, 20.222773], - [-155.704331, 20.191695], - [-155.637459, 20.153051], - [-155.598033, 20.124539], - [-155.558933, 20.13157], - [-155.502561, 20.114155], - [-155.387578, 20.067119], - [-155.270316, 20.014525], - [-155.166625, 19.93789], - [-155.124618, 19.897288], - [-155.086341, 19.855399], - [-155.091216, 19.776368], - [-155.087118, 19.728013], - [-155.045382, 19.739824], - [-155.006423, 19.739286], - [-154.981102, 19.690687], - [-154.974342, 19.633201], - [-154.947106, 19.604856], - [-154.852618, 19.549172], - [-154.814417, 19.53009], - [-154.816009, 19.500648], - [-154.876618, 19.433223], - [-154.944185, 19.381852], - [-155.020537, 19.331317], - [-155.113272, 19.290613], - [-155.159635, 19.268375], - [-155.205892, 19.260907], - [-155.264619, 19.274213], - [-155.31337, 19.250698], - [-155.360631, 19.20893], - [-155.390701, 19.201171], - [-155.453516, 19.151952], - [-155.505281, 19.137908], - [-155.555326, 19.069377], - [-155.590697, 19.007673], - [-155.613966, 18.970399], - [-155.638054, 18.941723], - [-155.672005, 18.917466], - [-155.726043, 18.969437], - [-155.806109, 19.013967], - [-155.88155, 19.036644], - [-155.914216, 19.099147], - [-155.912069, 19.179114], - [-155.902565, 19.258427], - [-155.890842, 19.298905], - [-155.888701, 19.348031], - [-155.909087, 19.415455], - [-155.924732, 19.45391], - [-155.95149, 19.486649], - [-155.96935, 19.555963], - [-155.978206, 19.608159], - [-155.997728, 19.642816], - [-156.028982, 19.650098], - [-156.033326, 19.66923], - [-156.064364, 19.730766], - [-156.049651, 19.780452] - ] - ], - [ - [ - [-156.69989, 20.920629], - [-156.680905, 20.980262], - [-156.619581, 21.027793], - [-156.562773, 21.016167], - [-156.518707, 20.954662], - [-156.481055, 20.898199], - [-156.403304, 20.915826], - [-156.332817, 20.94645], - [-156.242555, 20.937838], - [-156.19471, 20.891975], - [-156.132669, 20.861369], - [-156.059788, 20.81054], - [-156.003532, 20.795545], - [-155.985413, 20.744245], - [-156.00187, 20.698064], - [-156.043786, 20.664902], - [-156.129898, 20.627523], - [-156.210258, 20.628518], - [-156.284391, 20.596488], - [-156.377633, 20.578427], - [-156.431872, 20.598143], - [-156.443673, 20.656018], - [-156.458438, 20.736676], - [-156.462242, 20.753952], - [-156.473562, 20.790756], - [-156.506026, 20.799463], - [-156.537752, 20.778408], - [-156.554617, 20.786096], - [-156.631794, 20.82124], - [-156.687804, 20.89072], - [-156.69989, 20.920629] - ] - ], - [ - [ - [-156.670469, 20.559909], - [-156.610734, 20.59377], - [-156.56714, 20.604895], - [-156.543034, 20.580115], - [-156.539643, 20.527644], - [-156.586238, 20.511711], - [-156.668809, 20.504738], - [-156.702265, 20.532451], - [-156.670469, 20.559909] - ] - ], - [ - [ - [-157.05913, 20.913407], - [-157.010001, 20.929757], - [-156.937529, 20.925274], - [-156.873125, 20.894679], - [-156.837047, 20.863575], - [-156.808469, 20.820396], - [-156.838321, 20.764575], - [-156.890295, 20.744855], - [-156.909081, 20.739533], - [-156.96789, 20.73508], - [-156.990678, 20.775902], - [-156.991834, 20.826603], - [-157.010911, 20.854476], - [-157.059663, 20.884634], - [-157.05913, 20.913407] - ] - ], - [ - [ - [-157.27722, 21.158431], - [-157.249695, 21.184401], - [-157.26069, 21.225684], - [-157.202125, 21.219298], - [-157.128207, 21.201488], - [-157.039987, 21.190909], - [-157.014267869299, 21.2006942662583], - [-156.984032, 21.212198], - [-156.962847, 21.212131], - [-156.921108, 21.169068], - [-156.917859561199, 21.1690213462811], - [-156.841592, 21.167926], - [-156.742231, 21.176214], - [-156.709106, 21.158655], - [-156.739342, 21.111336], - [-156.8022, 21.067095], - [-156.877137, 21.0493], - [-156.953872, 21.066128], - [-157.02617, 21.089015], - [-157.08066, 21.101976], - [-157.171606, 21.090701], - [-157.252534, 21.08767], - [-157.310748, 21.101627], - [-157.27722, 21.158431] - ] - ], - [ - [ - [-158.232192, 21.583806], - [-158.12561, 21.586739], - [-158.079895, 21.628101], - [-158.050692, 21.671215], - [-157.9923, 21.708], - [-157.968628, 21.712704], - [-157.924591, 21.651183], - [-157.87735, 21.575277], - [-157.836945, 21.529945], - [-157.84549, 21.466747], - [-157.8139, 21.4403], - [-157.764572, 21.461335], - [-157.722506, 21.459225], - [-157.724324, 21.403311], - [-157.7106, 21.3585], - [-157.6518, 21.3139], - [-157.655030363263, 21.3093885180138], - [-157.673069, 21.284196], - [-157.7001, 21.264], - [-157.7572, 21.278], - [-157.779944, 21.265252], - [-157.8096, 21.2577], - [-157.851048, 21.28453], - [-157.89, 21.3065], - [-157.950736, 21.312509], - [-157.981525, 21.315898], - [-158.0245, 21.3093], - [-158.0883, 21.2988], - [-158.1033, 21.2979], - [-158.129371, 21.344818], - [-158.13093136646, 21.3489558479967], - [-158.1403, 21.3738], - [-158.1792, 21.4043], - [-158.182648, 21.430073], - [-158.233, 21.4876], - [-158.231171, 21.523857], - [-158.277679, 21.578789], - [-158.232192, 21.583806] - ] - ], - [ - [ - [-159.783746, 22.064897], - [-159.745247, 22.097508], - [-159.730544, 22.139953], - [-159.705531, 22.159321], - [-159.61165, 22.201388], - [-159.581058, 22.223488], - [-159.543924, 22.221695], - [-159.510756, 22.203548], - [-159.487939, 22.229512], - [-159.431707, 22.220015], - [-159.402466, 22.232603], - [-159.361507, 22.214092], - [-159.312293, 22.183082], - [-159.293013, 22.12296], - [-159.31828, 22.061417], - [-159.334489, 22.041698], - [-159.332564, 21.999352], - [-159.33768, 21.951173], - [-159.385271, 21.912439], - [-159.444868, 21.868627], - [-159.526918, 21.883886], - [-159.574521, 21.892806], - [-159.603279, 21.892248], - [-159.649766, 21.933848], - [-159.707795, 21.961229], - [-159.754795, 21.977772], - [-159.786702, 22.018801], - [-159.783746, 22.064897] - ] - ], - [ - [ - [-160.24961, 21.815145], - [-160.228965, 21.889117], - [-160.193959, 21.922386], - [-160.13705, 21.948632], - [-160.122262, 21.962881], - [-160.112746, 21.995245], - [-160.072123, 22.003334], - [-160.058543, 21.99638], - [-160.051128, 21.98106], - [-160.070292, 21.963951], - [-160.085787, 21.927295], - [-160.079065, 21.89608], - [-160.124283, 21.876789], - [-160.156092, 21.86793], - [-160.174796, 21.846923], - [-160.189782, 21.82245], - [-160.205851, 21.779518], - [-160.230373, 21.789675], - [-160.24961, 21.815145] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "50", - "STATENS": "01779802", - "AFFGEOID": "0400000US50", - "GEOID": "50", - "ISOCODE": "US-VT", - "name": "Vermont", - "LSAD": "00", - "ALAND": 23872569964, - "AWATER": 1030754609 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-73.416319, 44.099422], - [-73.3997678505892, 44.1528105331449], - [-73.395399, 44.166903], - [-73.349889, 44.230356], - [-73.316618, 44.257769], - [-73.3174559746651, 44.2635221898768], - [-73.324229, 44.310023], - [-73.334637, 44.356877], - [-73.320954, 44.382669], - [-73.293613, 44.440559], - [-73.312871, 44.507246], - [-73.3479832324265, 44.546162853597], - [-73.3636601533155, 44.5635384629765], - [-73.367275, 44.567545], - [-73.389966, 44.61962], - [-73.36556, 44.700297], - [-73.357671, 44.751018], - [-73.3358066361073, 44.7991570430872], - [-73.33443, 44.802188], - [-73.365678, 44.826451], - [-73.379822, 44.857037], - [-73.338979, 44.917681], - [-73.34474, 44.970468], - [-73.343124, 45.01084], - [-73.1925747582411, 45.0128576207511], - [-73.1702286644526, 45.0131570971351], - [-73.048386, 45.01479], - [-72.93644, 45.014267], - [-72.582371, 45.011543], - [-72.5537800215062, 45.0094314139369], - [-72.532503, 45.00786], - [-72.348583, 45.005625], - [-72.023292, 45.006792], - [-71.915009, 45.007791], - [-71.8993149383163, 45.0080462005763], - [-71.691898, 45.011419], - [-71.60984, 45.012709], - [-71.501088, 45.013377], - [-71.531605, 44.976023], - [-71.494403, 44.911837], - [-71.522393, 44.880811], - [-71.570402, 44.805276], - [-71.626909, 44.747224], - [-71.584574, 44.665351], - [-71.551722, 44.627598], - [-71.544922, 44.579278], - [-71.588076, 44.54785], - [-71.579974, 44.501778], - [-71.646551, 44.468869], - [-71.69092, 44.421234], - [-71.7631925213134, 44.4035682627764], - [-71.778613, 44.399799], - [-71.818838, 44.352939], - [-71.8378392792652, 44.3477512592393], - [-71.875863, 44.33737], - [-71.945163, 44.337744], - [-72.002314, 44.324871], - [-72.046302, 44.291983], - [-72.05399, 44.246926], - [-72.061338, 44.184951], - [-72.053859587702, 44.1599265291283], - [-72.036883, 44.103119], - [-72.075486, 44.034614], - [-72.0796962728478, 44.0302566433846], - [-72.0799442240026, 44.0300000301807], - [-72.116706, 43.991954], - [-72.105875, 43.94937], - [-72.16978, 43.873425], - [-72.183333, 43.808177], - [-72.2114826490853, 43.7730437148214], - [-72.222069, 43.759831], - [-72.284805, 43.72036], - [-72.329522, 43.608393], - [-72.3335965013563, 43.6055913415891], - [-72.37944, 43.574069], - [-72.380894, 43.493394], - [-72.3968907962909, 43.4290517463351], - [-72.3969619996363, 43.4287653525078], - [-72.413377, 43.362741], - [-72.4069018580317, 43.3374488387348], - [-72.402532, 43.32038], - [-72.421583, 43.263442], - [-72.4336262531276, 43.2328655889508], - [-72.440563, 43.215254], - [-72.4503959392159, 43.1612135169064], - [-72.451802, 43.153486], - [-72.435191, 43.086622], - [-72.462248, 43.044214], - [-72.4519547090682, 43.0204949106303], - [-72.444977, 43.004416], - [-72.492597, 42.967648], - [-72.532186, 42.954945], - [-72.531469, 42.89795], - [-72.556112, 42.866252], - [-72.5539020508486, 42.8580316101697], - [-72.5396, 42.804832], - [-72.477615, 42.761245], - [-72.458519, 42.726853], - [-72.5167111827822, 42.7284676698292], - [-72.809113, 42.736581], - [-72.8642918548454, 42.7377138851592], - [-72.9272134553146, 42.739005737764], - [-72.9301066166812, 42.7390651376842], - [-72.9489339463746, 42.7394516843506], - [-73.0186486133504, 42.7408830063998], - [-73.0230178932901, 42.7409727127269], - [-73.1426721280253, 42.743429351364], - [-73.264957, 42.74594], - [-73.290944, 42.80192], - [-73.278673, 42.83341], - [-73.273832807021, 42.9436317475265], - [-73.2700383015528, 43.0300409104512], - [-73.26978, 43.035923], - [-73.2553649410914, 43.3145364556694], - [-73.252832, 43.363493], - [-73.242042, 43.534925], - [-73.292113, 43.584509], - [-73.327702, 43.625913], - [-73.395767, 43.568087], - [-73.424977, 43.598775], - [-73.414546, 43.658209], - [-73.393723, 43.6992], - [-73.3611071516843, 43.7532334572839], - [-73.350707, 43.770463], - [-73.3825261495399, 43.8081589885495], - [-73.390302, 43.817371], - [-73.374051, 43.875563], - [-73.407742, 43.929887], - [-73.411248, 43.975596], - [-73.405977, 44.011485], - [-73.43688, 44.042578], - [-73.416319, 44.099422] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "44", - "STATENS": "01219835", - "AFFGEOID": "0400000US44", - "GEOID": "44", - "ISOCODE": "US-RI", - "name": "Rhode Island", - "LSAD": "00", - "ALAND": 2677763359, - "AWATER": 1323686988 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-71.631472, 41.166678], - [-71.593342, 41.237428], - [-71.54541, 41.24273], - [-71.534084, 41.181862], - [-71.51921, 41.149624], - [-71.5937, 41.146339], - [-71.631472, 41.166678] - ] - ], - [ - [ - [-71.860513, 41.320248], - [-71.835951, 41.353935], - [-71.839649, 41.412119], - [-71.797683, 41.416709], - [-71.7976736925498, 41.4169104184967], - [-71.7893586727423, 41.5968521603427], - [-71.789356, 41.59691], - [-71.789464590839, 41.6400171907069], - [-71.789678, 41.724734], - [-71.7896954316824, 41.7251982448091], - [-71.792767, 41.807001], - [-71.799242, 42.008065], - [-71.6066944190753, 42.0131050585708], - [-71.591096527631, 42.0135133435572], - [-71.559439, 42.014342], - [-71.4982240131247, 42.0158741110185], - [-71.4580809945561, 42.0168788251287], - [-71.381401, 42.018798], - [-71.3814313468931, 41.9850841191295], - [-71.381461, 41.952141], - [-71.3817, 41.893199], - [-71.339298, 41.893399], - [-71.339597, 41.832], - [-71.329396, 41.7826], - [-71.3174020079312, 41.7772561089687], - [-71.261392, 41.752301], - [-71.2086005328951, 41.6903092436027], - [-71.2013271875249, 41.6817683282027], - [-71.19564, 41.67509], - [-71.132888, 41.660102], - [-71.137492, 41.602561], - [-71.12057, 41.497448], - [-71.140224, 41.485855], - [-71.19302, 41.457931], - [-71.2126727591074, 41.4666017059031], - [-71.2398044238189, 41.4785720701705], - [-71.245992, 41.481302], - [-71.285639, 41.487805], - [-71.312694, 41.451402], - [-71.351096, 41.450802], - [-71.389284, 41.460605], - [-71.4172127867938, 41.4560313135425], - [-71.428652, 41.454158], - [-71.455371, 41.407962], - [-71.483295, 41.371722], - [-71.555381, 41.373316], - [-71.624505, 41.36087], - [-71.701631, 41.336968], - [-71.7299497041705, 41.3331970310328], - [-71.785957, 41.325739], - [-71.862772, 41.309791], - [-71.860513, 41.320248] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "18", - "STATENS": "00448508", - "AFFGEOID": "0400000US18", - "GEOID": "18", - "ISOCODE": "US-IN", - "name": "Indiana", - "LSAD": "00", - "ALAND": 92789363558, - "AWATER": 1541248299 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-88.0594711307875, 37.8666875964907], - [-88.040861, 37.891767], - [-88.016311, 37.961574], - [-88.030884, 38.030713], - [-87.98877, 38.055591], - [-87.96221, 38.100054], - [-87.927468, 38.151946], - [-87.975819, 38.197834], - [-87.9702008408039, 38.2302710583858], - [-87.968968, 38.237389], - [-87.908542, 38.268581], - [-87.831972, 38.307241], - [-87.779996, 38.370842], - [-87.7511059451205, 38.4188492084548], - [-87.74104, 38.435576], - [-87.714047, 38.47988], - [-87.654166, 38.511911], - [-87.660732, 38.541092], - [-87.6483567630745, 38.5666287160576], - [-87.637752, 38.588512], - [-87.62012, 38.639489], - [-87.545538, 38.677613], - [-87.498948, 38.757774], - [-87.521681, 38.826576], - [-87.5352570508085, 38.8524914649674], - [-87.54737, 38.875614], - [-87.5287176636979, 38.9059437862892], - [-87.527645, 38.907688], - [-87.529496, 38.971925], - [-87.579117, 39.001607], - [-87.572588, 39.057286], - [-87.625379, 39.101806], - [-87.6383674685664, 39.1578118692748], - [-87.640435, 39.166727], - [-87.577029, 39.211123], - [-87.593486, 39.247452], - [-87.594745845406, 39.259383616483], - [-87.600397, 39.312904], - [-87.578331, 39.340343], - [-87.531646, 39.347888], - [-87.531624, 39.469378], - [-87.5316666819743, 39.4771109927429], - [-87.532385282791, 39.6073049442215], - [-87.532703, 39.664868], - [-87.5324544938843, 39.8829991187823], - [-87.532308, 40.011587], - [-87.531021612428, 40.1480353967457], - [-87.530054, 40.250671], - [-87.5270652633992, 40.4768822924615], - [-87.5268757732538, 40.4912244096904], - [-87.526292, 40.535409], - [-87.5261364904237, 40.7368850814229], - [-87.526014, 40.895582], - [-87.526463234368, 41.0103365222041], - [-87.52652, 41.024837], - [-87.5266481580824, 41.1660899445116], - [-87.5267678862275, 41.2980516024792], - [-87.526768, 41.298177], - [-87.5254093533475, 41.4702806660617], - [-87.52494, 41.529735], - [-87.524044, 41.708335], - [-87.470742, 41.672835], - [-87.415816, 41.688183], - [-87.365439, 41.629536], - [-87.261536, 41.620336], - [-87.2227999491184, 41.62888983896], - [-87.125835, 41.650302], - [-87.027888, 41.674661], - [-86.9328490284944, 41.7164969379022], - [-86.90913, 41.726938], - [-86.824828, 41.76024], - [-86.6413229205208, 41.7596749381428], - [-86.640044, 41.759671], - [-86.5242197424429, 41.7595721559735], - [-86.501773, 41.759553], - [-86.2260943449874, 41.7600159591164], - [-86.22607, 41.760016], - [-86.0625630290106, 41.759653033158], - [-85.791363, 41.759051], - [-85.7913349619628, 41.7590510395575], - [-85.6597502379909, 41.759236686047], - [-85.2921788113335, 41.7597552747018], - [-85.232835, 41.759839], - [-85.196774200302, 41.759870841803], - [-84.8251282838768, 41.7601990063519], - [-84.805883, 41.760216], - [-84.806082, 41.696089], - [-84.8049581562396, 41.5301378133882], - [-84.8042532576115, 41.4260497115499], - [-84.804133, 41.408292], - [-84.8037035726169, 41.2712583305706], - [-84.8036449822556, 41.2525616835482], - [-84.803234, 41.121414], - [-84.8028596219514, 40.9893740520086], - [-84.8026702061534, 40.922568713921], - [-84.802119, 40.728163], - [-84.8021190322638, 40.7281459368726], - [-84.8024138785794, 40.5722128806467], - [-84.802547, 40.50181], - [-84.8029313665713, 40.4653866217198], - [-84.804119, 40.352844], - [-84.8041205270149, 40.3527622302971], - [-84.8049173025784, 40.3100959150341], - [-84.808706, 40.107216], - [-84.8101612384745, 40.0050675438482], - [-84.8114171063805, 39.9169136295798], - [-84.8141281379328, 39.7266165116193], - [-84.814129, 39.726556], - [-84.8157059432555, 39.5677216640274], - [-84.8161601949108, 39.5219681089929], - [-84.817453, 39.391753], - [-84.8188770978104, 39.3051661690523], - [-84.8188774692751, 39.3051435835594], - [-84.820159, 39.227225], - [-84.820157, 39.10548], - [-84.860689, 39.07814], - [-84.897171, 39.052407], - [-84.8775702820623, 39.0312628990423], - [-84.849445, 39.000923], - [-84.832617, 38.96146], - [-84.877762, 38.920357], - [-84.8643271879881, 38.9137941412077], - [-84.830472, 38.897256], - [-84.786406, 38.88222], - [-84.7987011365099, 38.8592249335163], - [-84.803247, 38.850723], - [-84.812877, 38.786087], - [-84.856904, 38.790224], - [-84.962535, 38.778035], - [-85.0210522365665, 38.7585272930799], - [-85.071928, 38.741567], - [-85.146861, 38.695427], - [-85.187278, 38.687609], - [-85.2017606225486, 38.6974407918463], - [-85.238665, 38.722494], - [-85.275454, 38.741172], - [-85.3326407337514, 38.7348167543477], - [-85.340953, 38.733893], - [-85.400481, 38.73598], - [-85.448862, 38.713368], - [-85.438742, 38.659319], - [-85.43617, 38.598292], - [-85.4314160707522, 38.5862856131089], - [-85.4156, 38.546341], - [-85.432981047742, 38.5241121702949], - [-85.433136, 38.523914], - [-85.474354, 38.504074], - [-85.498866, 38.468242], - [-85.587758, 38.450495], - [-85.621625, 38.417089], - [-85.6344441449773, 38.3783994475748], - [-85.646201, 38.342916], - [-85.683561, 38.295469], - [-85.750962, 38.26787], - [-85.794501505519, 38.2779525587226], - [-85.816164, 38.282969], - [-85.839664, 38.23977], - [-85.894764, 38.188469], - [-85.8959128763279, 38.1799188193363], - [-85.905164, 38.11107], - [-85.922395, 38.028679], - [-85.9517264381006, 38.0149416294697], - [-85.976028, 38.00356], - [-85.9973516597543, 37.9912256022991], - [-86.033386, 37.970382], - [-86.095766, 38.00893], - [-86.206439, 38.021876], - [-86.278656, 38.098509], - [-86.321274, 38.147418], - [-86.3564090219089, 38.1352772306995], - [-86.387216, 38.124632], - [-86.4335700794087, 38.0871478523782], - [-86.434046, 38.086763], - [-86.471903, 38.046218], - [-86.4880524671283, 38.0436653088997], - [-86.521825, 38.038327], - [-86.525174, 37.968228], - [-86.509368, 37.902887], - [-86.599848, 37.906754], - [-86.615215, 37.852857], - [-86.6467093891411, 37.8649113991803], - [-86.658374, 37.869376], - [-86.722247, 37.892648], - [-86.779993, 37.956522], - [-86.810913, 37.99715], - [-86.8135795707459, 37.9960671327985], - [-86.875874, 37.97077], - [-86.927747, 37.934956], - [-86.9777414251102, 37.9256992083727], - [-87.010315, 37.919668], - [-87.043049, 37.875049], - [-87.057836, 37.827457], - [-87.105614, 37.767631], - [-87.137502, 37.807264], - [-87.180063, 37.841375], - [-87.25525, 37.867326], - [-87.270387407739, 37.87542282659], - [-87.304057452442, 37.8934325491223], - [-87.331765, 37.908253], - [-87.418585, 37.944763], - [-87.4487002885408, 37.9338545298067], - [-87.486347, 37.920218], - [-87.551277, 37.925418], - [-87.608479, 37.898794], - [-87.625851, 37.851919], - [-87.681633, 37.855917], - [-87.7131573360969, 37.8830423995257], - [-87.723635, 37.892058], - [-87.808013, 37.875191], - [-87.87254, 37.920999], - [-87.921744, 37.907885], - [-87.9253933817098, 37.8995914771373], - [-87.938128, 37.870651], - [-87.903804, 37.817762], - [-87.935861, 37.789703], - [-87.970262, 37.781856], - [-88.02803, 37.799224], - [-88.067364, 37.856051], - [-88.0594711307875, 37.8666875964907] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "34", - "STATENS": "01779795", - "AFFGEOID": "0400000US34", - "GEOID": "34", - "ISOCODE": "US-NJ", - "name": "New Jersey", - "LSAD": "00", - "ALAND": 19048916230, - "AWATER": 3533083369 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.559446, 39.629812], - [-75.535144, 39.647212], - [-75.509742, 39.686113], - [-75.47764, 39.715013], - [-75.459439, 39.765813], - [-75.415062, 39.801919], - [-75.4104924776371, 39.8046722343221], - [-75.341765, 39.846082], - [-75.293376, 39.848782], - [-75.221025, 39.861113], - [-75.2111960614745, 39.8665186316821], - [-75.183023, 39.882013], - [-75.1414355217473, 39.8939183724813], - [-75.13342, 39.896213], - [-75.134588222414, 39.9220657620218], - [-75.13572, 39.947112], - [-75.1322646449748, 39.9509443028461], - [-75.11922, 39.965412], - [-75.0601299707226, 39.9920110032626], - [-75.059017, 39.992512], - [-74.989914, 40.037311], - [-74.9728547564456, 40.0465053655363], - [-74.932211, 40.068411], - [-74.863809, 40.08221], - [-74.825907, 40.12391], - [-74.769488, 40.129145], - [-74.7233792971515, 40.1528955462317], - [-74.721604, 40.15381], - [-74.7484976572578, 40.184908614104], - [-74.760605, 40.198909], - [-74.823907, 40.241508], - [-74.856508, 40.277407], - [-74.90331, 40.315607], - [-74.9281105690914, 40.3398284476893], - [-74.946006, 40.357306], - [-74.969597, 40.39977], - [-75.024775, 40.403455], - [-75.056102, 40.416066], - [-75.070568, 40.455165], - [-75.062227, 40.481391], - [-75.078503, 40.548296], - [-75.136748, 40.575731], - [-75.186737, 40.569406], - [-75.1881998781252, 40.5926133666486], - [-75.1892364013559, 40.6090569611221], - [-75.191059, 40.637971], - [-75.192612, 40.715874], - [-75.177477, 40.764225], - [-75.1113587316723, 40.7899822892144], - [-75.108505, 40.791094], - [-75.090962, 40.849187], - [-75.065438, 40.885682], - [-75.09772, 40.926679], - [-75.1232539442085, 40.9653055343877], - [-75.133086, 40.980179], - [-75.070532, 41.01862], - [-75.0523586008006, 41.0326279973019], - [-75.015271, 41.061215], - [-74.9923859951822, 41.0930282469934], - [-74.9830420742478, 41.1060175588568], - [-74.979873, 41.110423], - [-74.905256, 41.155668], - [-74.867405, 41.22777], - [-74.815703, 41.296151], - [-74.760325, 41.340325], - [-74.694914, 41.357423], - [-74.457584, 41.248225], - [-74.3670382614474, 41.2042114724438], - [-74.301994, 41.172594], - [-74.2344924405545, 41.1428915543507], - [-74.234473, 41.142883], - [-74.2116176431986, 41.1329813635363], - [-74.041054, 41.059088], - [-73.893979, 40.997197], - [-73.90728, 40.951498], - [-73.9204843942222, 40.9185742549309], - [-73.9220308521501, 40.914718327448], - [-73.9348922281485, 40.8826498616415], - [-73.938081, 40.874699], - [-73.9474845690832, 40.8577734532874], - [-73.9658345170463, 40.8247452595586], - [-73.968082, 40.8207], - [-73.9712111786194, 40.8163111938137], - [-73.9845857755727, 40.7975527523865], - [-74.013784, 40.756601], - [-74.0234915337322, 40.7374531654873], - [-74.0256355295408, 40.733224194662], - [-74.0309270856838, 40.7227867504936], - [-74.0411562443035, 40.7026100257088], - [-74.0470400238482, 40.6910044377047], - [-74.047313, 40.690466], - [-74.067720330319, 40.6703805942446], - [-74.0710905992629, 40.6670634911162], - [-74.086806, 40.651596], - [-74.1601467831532, 40.6460765164448], - [-74.170611, 40.645289], - [-74.2001860628537, 40.6318401804838], - [-74.202247, 40.630903], - [-74.203688, 40.592691], - [-74.216839, 40.558618], - [-74.249211, 40.545064], - [-74.260611, 40.502436], - [-74.261889, 40.464706], - [-74.2246524660147, 40.4486624894865], - [-74.206188, 40.440707], - [-74.157094, 40.447571], - [-74.108295, 40.443788], - [-74.047884, 40.418908], - [-74.019334, 40.471244], - [-73.997943, 40.476668], - [-73.976982, 40.408508], - [-73.971381, 40.34801], - [-73.981681, 40.279411], - [-74.0010207944346, 40.2169665919779], - [-74.030181, 40.122814], - [-74.0349623822635, 40.1025843059482], - [-74.064135, 39.979157], - [-74.077247, 39.910991], - [-74.090945, 39.799978], - [-74.0996189143252, 39.7637843614958], - [-74.101443, 39.756173], - [-74.190974, 39.625118], - [-74.2910153361548, 39.5083697974978], - [-74.291585, 39.507705], - [-74.304343, 39.471445], - [-74.36699, 39.402017], - [-74.412692, 39.360816], - [-74.521797, 39.313816], - [-74.5407878555825, 39.3000254911844], - [-74.581008, 39.270819], - [-74.646595, 39.212002], - [-74.67143, 39.179802], - [-74.714341, 39.119804], - [-74.705876, 39.102937], - [-74.778777, 39.023073], - [-74.807917, 38.985948], - [-74.864458, 38.94041], - [-74.933571, 38.928519], - [-74.967274, 38.933413], - [-74.955363, 39.001262], - [-74.903664, 39.087437], - [-74.885914, 39.143627], - [-74.905181, 39.174945], - [-74.9151558055627, 39.1766975035188], - [-74.998002, 39.191253], - [-75.048487, 39.215222], - [-75.090794, 39.210802], - [-75.136667, 39.181883], - [-75.166667, 39.222577], - [-75.21251, 39.262755], - [-75.244357, 39.2857], - [-75.285333, 39.292212], - [-75.326754, 39.332473], - [-75.355558, 39.347823], - [-75.399304, 39.37949], - [-75.4171070774881, 39.3889106867137], - [-75.442393, 39.402291], - [-75.465212, 39.43893], - [-75.536431, 39.460559], - [-75.528088, 39.498114], - [-75.527676, 39.535278], - [-75.512732, 39.578], - [-75.543965, 39.596], - [-75.559446, 39.629812] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "04", - "STATENS": "01779777", - "AFFGEOID": "0400000US04", - "GEOID": "04", - "ISOCODE": "US-AZ", - "name": "Arizona", - "LSAD": "00", - "ALAND": 294363973043, - "AWATER": 855871553 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-114.799683, 32.593621], - [-114.809393, 32.617119], - [-114.76495, 32.649391], - [-114.719633, 32.718763], - [-114.705717, 32.741581], - [-114.667493, 32.734226], - [-114.617386523962, 32.7410527731766], - [-114.570675, 32.747417], - [-114.531746, 32.782503], - [-114.468971, 32.845155], - [-114.463127, 32.901884], - [-114.47664, 32.923628], - [-114.481315, 32.972064], - [-114.511343, 33.023455], - [-114.517492069319, 33.0247159744928], - [-114.575161, 33.036542], - [-114.628293, 33.031052], - [-114.670803, 33.037984], - [-114.706175, 33.105335], - [-114.679359, 33.159519], - [-114.678097, 33.2303], - [-114.674491, 33.255597], - [-114.723259, 33.288079], - [-114.707962, 33.323421], - [-114.707348, 33.376628], - [-114.725282, 33.405048], - [-114.673901, 33.418299], - [-114.635183, 33.422726], - [-114.629146518189, 33.4335449999998], - [-114.597283, 33.490653], - [-114.524599, 33.552231], - [-114.529186, 33.60665], - [-114.525201, 33.661583], - [-114.504993, 33.693022], - [-114.496565, 33.719155], - [-114.504863, 33.760465], - [-114.520465, 33.827778], - [-114.505638, 33.864276], - [-114.508708, 33.90064], - [-114.534987, 33.928499], - [-114.509568, 33.957264], - [-114.454807, 34.010968], - [-114.435504, 34.042615], - [-114.43009113852, 34.0789314062795], - [-114.428026, 34.092787], - [-114.405941, 34.11154], - [-114.348052, 34.134458], - [-114.292806, 34.166725], - [-114.229715, 34.186928], - [-114.17805, 34.239969], - [-114.139055, 34.259538], - [-114.14081715128, 34.3031275138817], - [-114.14093, 34.305919], - [-114.172845, 34.344979], - [-114.264317, 34.401329], - [-114.335372, 34.450038], - [-114.378852, 34.450376], - [-114.378223, 34.516521], - [-114.422382, 34.580711], - [-114.465246, 34.691202], - [-114.490971, 34.724848], - [-114.576452, 34.8153], - [-114.634382, 34.87289], - [-114.629769, 34.94304], - [-114.633487, 35.001857], - [-114.625069, 35.068478], - [-114.619905, 35.121632], - [-114.59912, 35.12105], - [-114.572747, 35.138725], - [-114.587129, 35.262376], - [-114.627137, 35.409504], - [-114.6645, 35.449497], - [-114.663105, 35.524491], - [-114.653406, 35.610789], - [-114.689407, 35.651412], - [-114.697309, 35.733686], - [-114.70371, 35.814585], - [-114.669687, 35.865084], - [-114.700271, 35.901772], - [-114.731159, 35.943916], - [-114.742779, 36.009963], - [-114.743299245886, 36.0659351737601], - [-114.743342, 36.070535], - [-114.736165, 36.104367], - [-114.666538, 36.117343], - [-114.627855, 36.141012], - [-114.572031, 36.15161], - [-114.511721, 36.150956], - [-114.487034, 36.129396], - [-114.448654, 36.12641], - [-114.41695, 36.145761], - [-114.372106, 36.143114], - [-114.337273, 36.10802], - [-114.316109, 36.063109], - [-114.270645, 36.03572], - [-114.21369, 36.015613], - [-114.151725, 36.024563], - [-114.138203, 36.053161], - [-114.09987, 36.121654], - [-114.046838, 36.194069], - [-114.048226, 36.268874], - [-114.047584, 36.325573], - [-114.049493, 36.604059], - [-114.050160776088, 36.8431415396894], - [-114.0506, 37.000396], - [-113.965907, 37.000025], - [-112.966471, 37.000219], - [-112.899190897616, 37.0003012286284], - [-112.829501944372, 37.0003864013144], - [-112.545094, 37.000734], - [-112.538571, 37.000744128882], - [-112.35769, 37.001025], - [-111.412783987873, 37.001477687156], - [-111.405869, 37.001481], - [-111.278286, 37.000465], - [-111.066496, 37.002389], - [-110.75069, 37.003197], - [-110.47019, 36.997997], - [-110.000677, 36.997968], - [-109.495338, 36.999105], - [-109.045223, 36.999084], - [-109.045433, 36.874589], - [-109.045729, 36.117028], - [-109.045871168205, 36.002701630519], - [-109.046024, 35.8798], - [-109.046296, 35.614251], - [-109.046796, 35.363606], - [-109.046355894384, 35.1755071883512], - [-109.045851235183, 34.9598185158367], - [-109.045851, 34.959718], - [-109.046138935363, 34.5792910128179], - [-109.046182, 34.522393], - [-109.046426, 33.875052], - [-109.046609005136, 33.7774067975977], - [-109.047298, 33.409783], - [-109.047237, 33.208965], - [-109.047236980528, 33.2088950007083], - [-109.04711706231, 32.7777940009477], - [-109.047117, 32.77757], - [-109.047612, 32.426377], - [-109.048296, 32.084093], - [-109.049195, 31.796551], - [-109.050044, 31.332502], - [-109.829689, 31.334067], - [-110.459751627493, 31.333141997042], - [-111.074825, 31.332239], - [-111.366782684389, 31.4247651231261], - [-112.365043, 31.74113], - [-113.333767973058, 32.0402490801033], - [-113.750756, 32.169005], - [-114.813613, 32.494277], - [-114.811536, 32.522834], - [-114.795635, 32.550956], - [-114.814185, 32.564788], - [-114.799683, 32.593621] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "31", - "STATENS": "01779792", - "AFFGEOID": "0400000US31", - "GEOID": "31", - "ISOCODE": "US-NE", - "name": "Nebraska", - "LSAD": "00", - "ALAND": 198957385713, - "AWATER": 1371105730 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-104.053142, 41.114457], - [-104.052453, 41.278202], - [-104.052287134121, 41.3932140001934], - [-104.052287, 41.393307], - [-104.052634571633, 41.5642757795737], - [-104.052735, 41.613676], - [-104.052825094979, 41.6978228532141], - [-104.053026, 41.885464], - [-104.052762005445, 42.0017762678376], - [-104.052729, 42.016318], - [-104.052793, 42.249962], - [-104.053107, 42.499964], - [-104.052662191568, 42.6117663005415], - [-104.052586, 42.630917], - [-104.053127, 43.000585], - [-103.505099916029, 43.0007588128236], - [-103.476133, 43.000768], - [-103.000609526033, 43.0002592867744], - [-102.792110939839, 43.0000362357704], - [-102.40864, 42.999626], - [-102.082548043072, 42.99914064039], - [-102.082486319192, 42.9991405485193], - [-101.228013397794, 42.9978687396475], - [-101.000429, 42.99753], - [-100.198413799775, 42.9979768839694], - [-100.198412611566, 42.9979768846315], - [-99.850037, 42.998171], - [-99.534055014809, 42.9981974883181], - [-99.2544550123166, 42.9982209267867], - [-98.847992, 42.998255], - [-98.49855, 42.99856], - [-98.478919, 42.963539], - [-98.434503, 42.929227], - [-98.386445, 42.918407], - [-98.3081868164513, 42.8864892074256], - [-98.280007, 42.874996], - [-98.231922, 42.86114], - [-98.1525866548382, 42.8411533810637], - [-98.14806, 42.840013], - [-98.1047, 42.808475], - [-98.035034, 42.764205], - [-97.950147, 42.769619], - [-97.905001, 42.798872], - [-97.876887, 42.852663], - [-97.857957, 42.865093], - [-97.801344, 42.858003], - [-97.70103, 42.843797], - [-97.6354420904415, 42.8518090751855], - [-97.59926, 42.856229], - [-97.515948, 42.853752], - [-97.484916876342, 42.8500032148679], - [-97.452177, 42.846048], - [-97.417066, 42.865918], - [-97.341181, 42.855882], - [-97.302075, 42.86566], - [-97.237868, 42.853139], - [-97.213957, 42.820143], - [-97.1650703923738, 42.7916166414677], - [-97.131331, 42.771929], - [-97.02485, 42.76243], - [-97.0156311127472, 42.7565254624882], - [-96.965679, 42.724532], - [-96.906797, 42.7338], - [-96.8073706000982, 42.700678985373], - [-96.801652, 42.698774], - [-96.778182, 42.662993], - [-96.697639, 42.659143], - [-96.7093, 42.603753], - [-96.658754, 42.566426], - [-96.6279454569017, 42.5270961391418], - [-96.611489, 42.506088], - [-96.525142, 42.510234], - [-96.501321, 42.482749], - [-96.445508, 42.49063], - [-96.381307, 42.461694], - [-96.411808, 42.410894], - [-96.407998, 42.337408], - [-96.351957192496, 42.2808947045433], - [-96.336003, 42.264806], - [-96.336323, 42.218922], - [-96.3372160947059, 42.2148495068956], - [-96.347752, 42.166806], - [-96.2689, 42.11359], - [-96.272877, 42.047238], - [-96.223611, 42.022652], - [-96.132537, 41.974625], - [-96.159098, 41.910057], - [-96.1268212534654, 41.8660952477016], - [-96.107911, 41.840339], - [-96.064537, 41.793002], - [-96.0876, 41.72218], - [-96.1079378717465, 41.6765089897621], - [-96.111483, 41.668548], - [-96.118105, 41.613495], - [-96.09182, 41.561086], - [-96.080493, 41.528199], - [-96.005079, 41.544004], - [-95.9940203930119, 41.5068906409415], - [-95.982962, 41.469778], - [-95.922529, 41.455766], - [-95.9273362423201, 41.3899879374596], - [-95.92879, 41.370096], - [-95.92569, 41.322197], - [-95.890152, 41.278308], - [-95.911391, 41.237998], - [-95.9099128702696, 41.1914208374192], - [-95.90969, 41.184398], - [-95.856788, 41.187098], - [-95.8618980682094, 41.1603023482127], - [-95.868688, 41.124698], - [-95.863839, 41.083507], - [-95.8647847640853, 41.0528455046135], - [-95.865878, 41.017403], - [-95.828329, 40.972378], - [-95.837774, 40.924712], - [-95.8187272785699, 40.8979480664065], - [-95.810709, 40.886681], - [-95.841309, 40.845604], - [-95.8342438167144, 40.7837843870431], - [-95.834156, 40.783016], - [-95.888697, 40.736292], - [-95.846034, 40.682605], - [-95.781909, 40.653272], - [-95.748626, 40.603355], - [-95.765645, 40.585208], - [-95.75711, 40.52599], - [-95.714291, 40.527208], - [-95.7122803718011, 40.5237544262074], - [-95.694726, 40.493602], - [-95.684363, 40.463366], - [-95.649418, 40.396149], - [-95.641027, 40.366399], - [-95.653729, 40.322582], - [-95.598657, 40.309809], - [-95.553292, 40.291158], - [-95.5481820011801, 40.2644146728427], - [-95.5478703162703, 40.2627834608198], - [-95.54716, 40.259066], - [-95.472548, 40.236078], - [-95.48102, 40.188524], - [-95.432165, 40.141025], - [-95.394216, 40.108263], - [-95.414734, 40.06982], - [-95.382957, 40.027112], - [-95.348777, 40.029297], - [-95.30829, 39.999998], - [-95.3398959708503, 40.0000288571054], - [-95.784575, 40.000463], - [-95.7881109948917, 40.0004667793653], - [-96.0106788179345, 40.000704665772], - [-96.02409, 40.000719], - [-96.154365, 40.000495], - [-96.239172, 40.000691], - [-96.2392078784111, 40.0006910427544], - [-96.4637120767748, 40.0009585725545], - [-96.469945, 40.000966], - [-96.805768, 40.0013684550954], - [-96.873812, 40.00145], - [-96.9164070054658, 40.0014540910439], - [-97.009165, 40.001463], - [-97.369199035315, 40.0019393057605], - [-97.415833, 40.002001], - [-97.777155, 40.002167], - [-97.8215008122752, 40.0021868820889], - [-97.9318249263172, 40.0022363450196], - [-98.076034, 40.002301], - [-98.2740170597529, 40.0023374507299], - [-98.5044549836368, 40.002379876736], - [-98.613755, 40.0024], - [-98.726372963939, 40.0023362731669], - [-99.0670183498981, 40.0021435130522], - [-99.085597, 40.002133], - [-99.1791331508611, 40.0021089526949], - [-99.501792, 40.002026], - [-99.6253267263996, 40.001777827647], - [-99.6282538492245, 40.0017719472684], - [-99.813401, 40.0014], - [-100.177797545879, 40.0015658138516], - [-100.19359, 40.001573], - [-100.477018, 40.001752], - [-100.738824713191, 40.0022629565677], - [-100.75883, 40.002302], - [-101.060317, 40.002307], - [-101.293991, 40.002559], - [-101.324036026572, 40.0025650505849], - [-101.411028987802, 40.0025825695676], - [-101.542273, 40.002609], - [-101.832161, 40.002933], - [-102.051744, 40.003078], - [-102.051309, 40.338381], - [-102.051308551844, 40.3492213568722], - [-102.051304798597, 40.440007993377], - [-102.051294151579, 40.697546832389], - [-102.051292, 40.749591], - [-102.051614, 41.002377], - [-102.051717521832, 41.0023769676222], - [-102.556789, 41.002219], - [-102.621033024452, 41.0022232026156], - [-102.653464137269, 41.0022253241436], - [-103.076536, 41.002253], - [-103.38249165189, 41.001926146621], - [-103.573774006195, 41.0017217990841], - [-103.574522, 41.001721], - [-104.053249, 41.001406], - [-104.053142, 41.114457] - ] - ] - } - } - ] -} diff --git a/backend/server/templates/account/email/password_reset_key_message.txt b/backend/server/templates/account/email/password_reset_key_message.txt deleted file mode 100644 index 42473bf..0000000 --- a/backend/server/templates/account/email/password_reset_key_message.txt +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "account/email/base_message.txt" %} -{% load i18n %} - -{% block content %}{% autoescape off %}{% blocktrans %}You're receiving this email because you or someone else has requested a password reset for your user account. - -It can be safely ignored if you did not request a password reset. Click the link below to reset your password.{% endblocktrans %} - -{{ frontend_url }}/settings/forgot-password/confirm?token={{ temp_key }}&uid={{ user_pk }} - -{% if username %} - - -{% blocktrans %}In case you forgot, your username is {{ username }}.{% endblocktrans %}{% endif %}{% endautoescape %}{% endblock content %} \ No newline at end of file diff --git a/backend/server/templates/base.html b/backend/server/templates/base.html index f8a7bd5..9e1d48c 100644 --- a/backend/server/templates/base.html +++ b/backend/server/templates/base.html @@ -4,8 +4,8 @@ - - + + AdventureLog API Server @@ -31,39 +31,6 @@ + + diff --git a/frontend/src/lib/components/AdventureLink.svelte b/frontend/src/lib/components/AdventureLink.svelte index b1bb85f..d967093 100644 --- a/frontend/src/lib/components/AdventureLink.svelte +++ b/frontend/src/lib/components/AdventureLink.svelte @@ -1,33 +1,89 @@ - + - diff --git a/frontend/src/lib/components/AdventureModal.svelte b/frontend/src/lib/components/AdventureModal.svelte new file mode 100644 index 0000000..504a360 --- /dev/null +++ b/frontend/src/lib/components/AdventureModal.svelte @@ -0,0 +1,940 @@ + + + + + + + + diff --git a/frontend/src/lib/components/AttachmentCard.svelte b/frontend/src/lib/components/AttachmentCard.svelte new file mode 100644 index 0000000..72f8a2f --- /dev/null +++ b/frontend/src/lib/components/AttachmentCard.svelte @@ -0,0 +1,101 @@ + + +
+ + +
window.open(attachment.file, '_blank')} + role="button" + tabindex="0" + aria-label={attachment.file.split('/').pop()} + > + {#if !['.jpg', '.jpeg', '.png', '.gif', '.webp'].some((ext) => attachment.file.endsWith(ext))} +
+

+ {attachment.name}
+ {attachment.extension.toUpperCase()} +

+
+ + {/if} +
+ + +
+ {$t('adventures.attachment')} +
+
+ {attachment.extension} +
+ + +
+ + {attachment.name} + +
+ {#if !allowEdit} + + {/if} + {#if allowEdit} + + + {/if} +
+
+
diff --git a/frontend/src/lib/components/Avatar.svelte b/frontend/src/lib/components/Avatar.svelte index 84b3141..28cb952 100644 --- a/frontend/src/lib/components/Avatar.svelte +++ b/frontend/src/lib/components/Avatar.svelte @@ -1,40 +1,173 @@ -
diff --git a/frontend/src/lib/components/PointSelectionModal.svelte b/frontend/src/lib/components/PointSelectionModal.svelte index 4b5860a..dfd56ef 100644 --- a/frontend/src/lib/components/PointSelectionModal.svelte +++ b/frontend/src/lib/components/PointSelectionModal.svelte @@ -1,6 +1,6 @@
-
-

{region.name}

-

{region.id}

-
- - {#if !visited} - +
+ +

{region.name}

+ + +
+
{region.country_name}
+
+ {region.num_cities} + {$t('worldtravel.cities')} +
+
ID: {region.id}
+
+ + +
+ {#if visited === false} + {/if} - {#if visited} - + {#if visited === true} + + {/if} + {#if region.num_cities > 0} + {/if}
+ + diff --git a/frontend/src/lib/components/ShareModal.svelte b/frontend/src/lib/components/ShareModal.svelte new file mode 100644 index 0000000..80f995e --- /dev/null +++ b/frontend/src/lib/components/ShareModal.svelte @@ -0,0 +1,161 @@ + + + + + + diff --git a/frontend/src/lib/components/TOTPModal.svelte b/frontend/src/lib/components/TOTPModal.svelte new file mode 100644 index 0000000..6f7a67e --- /dev/null +++ b/frontend/src/lib/components/TOTPModal.svelte @@ -0,0 +1,184 @@ + + + + + + + diff --git a/frontend/src/lib/components/TimezoneSelector.svelte b/frontend/src/lib/components/TimezoneSelector.svelte new file mode 100644 index 0000000..5603555 --- /dev/null +++ b/frontend/src/lib/components/TimezoneSelector.svelte @@ -0,0 +1,126 @@ + + +
+ + + +
(dropdownOpen = !dropdownOpen)} + on:keydown={handleKeydown} + > + {selectedTimezone} + +
+ + + {#if dropdownOpen} +
+ +
+ +
+ + + {#if filteredTimezones.length > 0} + + {:else} +
No timezones found
+ {/if} +
+ {/if} +
diff --git a/frontend/src/lib/components/Toast.svelte b/frontend/src/lib/components/Toast.svelte index 6b92848..10b563c 100644 --- a/frontend/src/lib/components/Toast.svelte +++ b/frontend/src/lib/components/Toast.svelte @@ -9,10 +9,27 @@ }); -
+
{#each toastList as { type, message, id, duration }} -
- {message} -
+ {#if type == 'success'} +
+ {message} +
+ {/if} + {#if type == 'error'} +
+ {message} +
+ {/if} + {#if type == 'info'} +
+ {message} +
+ {/if} + {#if type == 'warning'} +
+ {message} +
+ {/if} {/each}
diff --git a/frontend/src/lib/components/TransportationCard.svelte b/frontend/src/lib/components/TransportationCard.svelte index a27ea9a..f419e34 100644 --- a/frontend/src/lib/components/TransportationCard.svelte +++ b/frontend/src/lib/components/TransportationCard.svelte @@ -1,26 +1,86 @@ +{#if isWarningModalOpen} + (isWarningModalOpen = false)} + on:confirm={deleteTransportation} + /> +{/if} +
-
-

{transportation.name}

-
{transportation.type}
- {#if transportation.from_location && transportation.to_location} -

- {transportation.from_location} to {transportation.to_location} -

- {/if} - {#if transportation.date} - {new Date(transportation.date).toLocaleString()} - {/if} - {#if user?.pk === transportation.user_id} -
- + +
+

{transportation.name}

+
+
+ {$t(`transportation.modes.${transportation.type}`)} + {getTransportationIcon(transportation.type)} +
+ {#if transportation.type === 'plane' && transportation.flight_number} +
{transportation.flight_number}
+ {/if} + {#if unlinked} +
{$t('adventures.out_of_range')}
+ {/if} +
+
+ + +
+ {#if transportation.from_location} +
+ {$t('adventures.from')}: + {transportation.from_location} +
+ {/if} + + {#if transportation.to_location} +
+ {$t('adventures.to')}: + {transportation.to_location} +
+ {/if} + + {#if transportation.distance && !isNaN(+transportation.distance)} +
+ {$t('adventures.distance')}: + + {(+transportation.distance).toFixed(1)} km / {toMiles(transportation.distance)} mi + +
+ {/if} +
+ + +
+ {#if transportation.date} +
+ {$t('adventures.start')}: + + {#if isAllDay(transportation.date) && (!transportation.end_date || isAllDay(transportation.end_date))} + {formatAllDayDate(transportation.date)} + {:else} + {formatDateInTimezone(transportation.date, transportation.start_timezone)} + {#if transportation.start_timezone} + ({transportation.start_timezone}) + {/if} + {/if} + +
+ {/if} + + {#if transportation.end_date} +
+ {$t('adventures.end')}: + + {#if isAllDay(transportation.end_date) && (!transportation.date || isAllDay(transportation.date))} + {formatAllDayDate(transportation.end_date)} + {:else} + {formatDateInTimezone(transportation.end_date, transportation.end_timezone)} + {#if transportation.end_timezone} + ({transportation.end_timezone}) + {/if} + {/if} + +
+ {/if} +
+ + + {#if transportation.user_id === user?.uuid || (collection && user && collection.shared_with?.includes(user.uuid))} +
+ +
{/if} diff --git a/frontend/src/lib/components/TransportationModal.svelte b/frontend/src/lib/components/TransportationModal.svelte new file mode 100644 index 0000000..5dfdb7c --- /dev/null +++ b/frontend/src/lib/components/TransportationModal.svelte @@ -0,0 +1,533 @@ + + + + + + + diff --git a/frontend/src/lib/components/UserCard.svelte b/frontend/src/lib/components/UserCard.svelte new file mode 100644 index 0000000..c167baf --- /dev/null +++ b/frontend/src/lib/components/UserCard.svelte @@ -0,0 +1,79 @@ + + +
+
+ +
+
+ {#if user.profile_pic} + {user.username} + {:else} +
+ {user.first_name?.[0] || user.username?.[0]}{user.last_name?.[0] || user.username?.[1]} +
+ {/if} +
+
+ + +
+

+ {user.first_name} + {user.last_name} +

+

@{user.username}

+ + {#if user.is_staff} +
{$t('settings.admin')}
+ {/if} +
+ + +
+ + + {user.date_joined + ? `${$t('adventures.joined')} ` + new Date(user.date_joined).toLocaleDateString() + : ''} + +
+ + +
+ {#if !sharing} + + {:else if shared_with && !shared_with.includes(user.uuid)} + + {:else} + + {/if} +
+
+
diff --git a/frontend/src/lib/config.ts b/frontend/src/lib/config.ts index eb32388..6772b0a 100644 --- a/frontend/src/lib/config.ts +++ b/frontend/src/lib/config.ts @@ -1,4 +1,4 @@ -export let appVersion = 'Web v0.5.0'; -export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.5.0'; +export let appVersion = 'v0.10.0-main-06192025'; +export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.10.0'; export let appTitle = 'AdventureLog'; -export let copyrightYear = '2024'; +export let copyrightYear = '2023-2025'; diff --git a/frontend/src/lib/dateUtils.ts b/frontend/src/lib/dateUtils.ts new file mode 100644 index 0000000..a844f76 --- /dev/null +++ b/frontend/src/lib/dateUtils.ts @@ -0,0 +1,587 @@ +// @ts-ignore +import { DateTime } from 'luxon'; + +/** + * Convert a UTC ISO date to a datetime-local value in the specified timezone + * @param utcDate - UTC date in ISO format or null + * @param timezone - Target timezone (defaults to browser timezone) + * @returns Formatted local datetime string for input fields (YYYY-MM-DDTHH:MM) + */ +export function toLocalDatetime( + utcDate: string | null, + timezone: string = Intl.DateTimeFormat().resolvedOptions().timeZone +): string { + if (!utcDate) return ''; + + const dt = DateTime.fromISO(utcDate, { zone: 'UTC' }); + if (!dt.isValid) return ''; + + const isoString = dt.setZone(timezone).toISO({ + suppressSeconds: true, + includeOffset: false + }); + + return isoString ? isoString.slice(0, 16) : ''; +} + +/** + * Convert a local datetime to UTC + * @param localDate - Local datetime string in ISO format + * @param timezone - Source timezone (defaults to browser timezone) + * @returns UTC datetime in ISO format or null + */ +export function toUTCDatetime( + localDate: string, + timezone: string = Intl.DateTimeFormat().resolvedOptions().timeZone, + allDay: boolean = false +): string | null { + if (!localDate) return null; + + if (allDay) { + // Treat input as date-only, set UTC midnight manually + return DateTime.fromISO(localDate, { zone: 'UTC' }) + .startOf('day') + .toISO({ suppressMilliseconds: true }); + } + + // Normal timezone conversion for datetime-local input + return DateTime.fromISO(localDate, { zone: timezone }) + .toUTC() + .toISO({ suppressMilliseconds: true }); +} + +/** + * Updates local datetime values based on UTC date and timezone + * @param params Object containing UTC date and timezone + * @returns Object with updated local datetime string + */ +export function updateLocalDate({ + utcDate, + timezone +}: { + utcDate: string | null; + timezone: string; +}) { + return { + localDate: toLocalDatetime(utcDate, timezone) + }; +} + +/** + * Updates UTC datetime values based on local datetime and timezone + * @param params Object containing local date and timezone + * @returns Object with updated UTC datetime string + */ +export function updateUTCDate({ + localDate, + timezone, + allDay = false +}: { + localDate: string; + timezone: string; + allDay?: boolean; +}) { + return { + utcDate: toUTCDatetime(localDate, timezone, allDay) + }; +} + +/** + * Validate date ranges using UTC comparison + * @param startDate - Start date string in UTC (ISO format) + * @param endDate - End date string in UTC (ISO format) + * @returns Object with validation result and optional error message + */ +export function validateDateRange( + startDate: string, + endDate: string +): { valid: boolean; error?: string } { + if (endDate && !startDate) { + return { + valid: false, + error: 'Start date is required when end date is provided' + }; + } + + if ( + startDate && + endDate && + DateTime.fromISO(startDate, { zone: 'utc' }).toMillis() > + DateTime.fromISO(endDate, { zone: 'utc' }).toMillis() + ) { + return { + valid: false, + error: 'Start date must be before end date (based on UTC)' + }; + } + + return { valid: true }; +} + +export function formatDateInTimezone(utcDate: string, timezone: string | null): string { + if (!utcDate) return ''; + try { + return new Intl.DateTimeFormat(undefined, { + timeZone: timezone || undefined, + year: 'numeric', + month: 'short', + day: 'numeric', + hour: '2-digit', + minute: '2-digit', + hour12: true + }).format(new Date(utcDate)); + } catch { + return new Date(utcDate).toLocaleString(); + } +} + +/** + * Format UTC date for display + * @param utcDate - UTC date in ISO format + * @returns Formatted date string without seconds (YYYY-MM-DD HH:MM) + */ +export function formatUTCDate(utcDate: string | null): string { + if (!utcDate) return ''; + const dateTime = DateTime.fromISO(utcDate); + if (!dateTime.isValid) return ''; + return dateTime.toISO()?.slice(0, 16).replace('T', ' ') || ''; +} + +/** + * Format all-day date for display without timezone conversion + * @param dateString - Date string in ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS) + * @returns Formatted date string (e.g., "Jun 1, 2025") + */ +export function formatAllDayDate(dateString: string): string { + if (!dateString) return ''; + + // Extract just the date part and add midday time to avoid timezone issues + const datePart = dateString.split('T')[0]; + const dateWithMidday = `${datePart}T12:00:00`; + + return new Intl.DateTimeFormat('en-US', { + year: 'numeric', + month: 'short', + day: 'numeric' + }).format(new Date(dateWithMidday)); +} + +export const VALID_TIMEZONES = [ + 'Africa/Abidjan', + 'Africa/Accra', + 'Africa/Addis_Ababa', + 'Africa/Algiers', + 'Africa/Asmera', + 'Africa/Bamako', + 'Africa/Bangui', + 'Africa/Banjul', + 'Africa/Bissau', + 'Africa/Blantyre', + 'Africa/Brazzaville', + 'Africa/Bujumbura', + 'Africa/Cairo', + 'Africa/Casablanca', + 'Africa/Ceuta', + 'Africa/Conakry', + 'Africa/Dakar', + 'Africa/Dar_es_Salaam', + 'Africa/Djibouti', + 'Africa/Douala', + 'Africa/El_Aaiun', + 'Africa/Freetown', + 'Africa/Gaborone', + 'Africa/Harare', + 'Africa/Johannesburg', + 'Africa/Juba', + 'Africa/Kampala', + 'Africa/Khartoum', + 'Africa/Kigali', + 'Africa/Kinshasa', + 'Africa/Lagos', + 'Africa/Libreville', + 'Africa/Lome', + 'Africa/Luanda', + 'Africa/Lubumbashi', + 'Africa/Lusaka', + 'Africa/Malabo', + 'Africa/Maputo', + 'Africa/Maseru', + 'Africa/Mbabane', + 'Africa/Mogadishu', + 'Africa/Monrovia', + 'Africa/Nairobi', + 'Africa/Ndjamena', + 'Africa/Niamey', + 'Africa/Nouakchott', + 'Africa/Ouagadougou', + 'Africa/Porto-Novo', + 'Africa/Sao_Tome', + 'Africa/Tripoli', + 'Africa/Tunis', + 'Africa/Windhoek', + 'America/Adak', + 'America/Anchorage', + 'America/Anguilla', + 'America/Antigua', + 'America/Araguaina', + 'America/Argentina/La_Rioja', + 'America/Argentina/Rio_Gallegos', + 'America/Argentina/Salta', + 'America/Argentina/San_Juan', + 'America/Argentina/San_Luis', + 'America/Argentina/Tucuman', + 'America/Argentina/Ushuaia', + 'America/Aruba', + 'America/Asuncion', + 'America/Bahia', + 'America/Bahia_Banderas', + 'America/Barbados', + 'America/Belem', + 'America/Belize', + 'America/Blanc-Sablon', + 'America/Boa_Vista', + 'America/Bogota', + 'America/Boise', + 'America/Buenos_Aires', + 'America/Cambridge_Bay', + 'America/Campo_Grande', + 'America/Cancun', + 'America/Caracas', + 'America/Catamarca', + 'America/Cayenne', + 'America/Cayman', + 'America/Chicago', + 'America/Chihuahua', + 'America/Ciudad_Juarez', + 'America/Coral_Harbour', + 'America/Cordoba', + 'America/Costa_Rica', + 'America/Creston', + 'America/Cuiaba', + 'America/Curacao', + 'America/Danmarkshavn', + 'America/Dawson', + 'America/Dawson_Creek', + 'America/Denver', + 'America/Detroit', + 'America/Dominica', + 'America/Edmonton', + 'America/Eirunepe', + 'America/El_Salvador', + 'America/Fort_Nelson', + 'America/Fortaleza', + 'America/Glace_Bay', + 'America/Godthab', + 'America/Goose_Bay', + 'America/Grand_Turk', + 'America/Grenada', + 'America/Guadeloupe', + 'America/Guatemala', + 'America/Guayaquil', + 'America/Guyana', + 'America/Halifax', + 'America/Havana', + 'America/Hermosillo', + 'America/Indiana/Knox', + 'America/Indiana/Marengo', + 'America/Indiana/Petersburg', + 'America/Indiana/Tell_City', + 'America/Indiana/Vevay', + 'America/Indiana/Vincennes', + 'America/Indiana/Winamac', + 'America/Indianapolis', + 'America/Inuvik', + 'America/Iqaluit', + 'America/Jamaica', + 'America/Jujuy', + 'America/Juneau', + 'America/Kentucky/Monticello', + 'America/Kralendijk', + 'America/La_Paz', + 'America/Lima', + 'America/Los_Angeles', + 'America/Louisville', + 'America/Lower_Princes', + 'America/Maceio', + 'America/Managua', + 'America/Manaus', + 'America/Marigot', + 'America/Martinique', + 'America/Matamoros', + 'America/Mazatlan', + 'America/Mendoza', + 'America/Menominee', + 'America/Merida', + 'America/Metlakatla', + 'America/Mexico_City', + 'America/Miquelon', + 'America/Moncton', + 'America/Monterrey', + 'America/Montevideo', + 'America/Montserrat', + 'America/Nassau', + 'America/New_York', + 'America/Nome', + 'America/Noronha', + 'America/North_Dakota/Beulah', + 'America/North_Dakota/Center', + 'America/North_Dakota/New_Salem', + 'America/Ojinaga', + 'America/Panama', + 'America/Paramaribo', + 'America/Phoenix', + 'America/Port-au-Prince', + 'America/Port_of_Spain', + 'America/Porto_Velho', + 'America/Puerto_Rico', + 'America/Punta_Arenas', + 'America/Rankin_Inlet', + 'America/Recife', + 'America/Regina', + 'America/Resolute', + 'America/Rio_Branco', + 'America/Santarem', + 'America/Santiago', + 'America/Santo_Domingo', + 'America/Sao_Paulo', + 'America/Scoresbysund', + 'America/Sitka', + 'America/St_Barthelemy', + 'America/St_Johns', + 'America/St_Kitts', + 'America/St_Lucia', + 'America/St_Thomas', + 'America/St_Vincent', + 'America/Swift_Current', + 'America/Tegucigalpa', + 'America/Thule', + 'America/Tijuana', + 'America/Toronto', + 'America/Tortola', + 'America/Vancouver', + 'America/Whitehorse', + 'America/Winnipeg', + 'America/Yakutat', + 'Antarctica/Casey', + 'Antarctica/Davis', + 'Antarctica/DumontDUrville', + 'Antarctica/Macquarie', + 'Antarctica/Mawson', + 'Antarctica/McMurdo', + 'Antarctica/Palmer', + 'Antarctica/Rothera', + 'Antarctica/Syowa', + 'Antarctica/Troll', + 'Antarctica/Vostok', + 'Arctic/Longyearbyen', + 'Asia/Aden', + 'Asia/Almaty', + 'Asia/Amman', + 'Asia/Anadyr', + 'Asia/Aqtau', + 'Asia/Aqtobe', + 'Asia/Ashgabat', + 'Asia/Atyrau', + 'Asia/Baghdad', + 'Asia/Bahrain', + 'Asia/Baku', + 'Asia/Bangkok', + 'Asia/Barnaul', + 'Asia/Beirut', + 'Asia/Bishkek', + 'Asia/Brunei', + 'Asia/Calcutta', + 'Asia/Chita', + 'Asia/Colombo', + 'Asia/Damascus', + 'Asia/Dhaka', + 'Asia/Dili', + 'Asia/Dubai', + 'Asia/Dushanbe', + 'Asia/Famagusta', + 'Asia/Gaza', + 'Asia/Hebron', + 'Asia/Hong_Kong', + 'Asia/Hovd', + 'Asia/Irkutsk', + 'Asia/Jakarta', + 'Asia/Jayapura', + 'Asia/Jerusalem', + 'Asia/Kabul', + 'Asia/Kamchatka', + 'Asia/Karachi', + 'Asia/Katmandu', + 'Asia/Khandyga', + 'Asia/Krasnoyarsk', + 'Asia/Kuala_Lumpur', + 'Asia/Kuching', + 'Asia/Kuwait', + 'Asia/Macau', + 'Asia/Magadan', + 'Asia/Makassar', + 'Asia/Manila', + 'Asia/Muscat', + 'Asia/Nicosia', + 'Asia/Novokuznetsk', + 'Asia/Novosibirsk', + 'Asia/Omsk', + 'Asia/Oral', + 'Asia/Phnom_Penh', + 'Asia/Pontianak', + 'Asia/Pyongyang', + 'Asia/Qatar', + 'Asia/Qostanay', + 'Asia/Qyzylorda', + 'Asia/Rangoon', + 'Asia/Riyadh', + 'Asia/Saigon', + 'Asia/Sakhalin', + 'Asia/Samarkand', + 'Asia/Seoul', + 'Asia/Shanghai', + 'Asia/Singapore', + 'Asia/Srednekolymsk', + 'Asia/Taipei', + 'Asia/Tashkent', + 'Asia/Tbilisi', + 'Asia/Tehran', + 'Asia/Thimphu', + 'Asia/Tokyo', + 'Asia/Tomsk', + 'Asia/Ulaanbaatar', + 'Asia/Urumqi', + 'Asia/Ust-Nera', + 'Asia/Vientiane', + 'Asia/Vladivostok', + 'Asia/Yakutsk', + 'Asia/Yekaterinburg', + 'Asia/Yerevan', + 'Atlantic/Azores', + 'Atlantic/Bermuda', + 'Atlantic/Canary', + 'Atlantic/Cape_Verde', + 'Atlantic/Faeroe', + 'Atlantic/Madeira', + 'Atlantic/Reykjavik', + 'Atlantic/South_Georgia', + 'Atlantic/St_Helena', + 'Atlantic/Stanley', + 'Australia/Adelaide', + 'Australia/Brisbane', + 'Australia/Broken_Hill', + 'Australia/Darwin', + 'Australia/Eucla', + 'Australia/Hobart', + 'Australia/Lindeman', + 'Australia/Lord_Howe', + 'Australia/Melbourne', + 'Australia/Perth', + 'Australia/Sydney', + 'Europe/Amsterdam', + 'Europe/Andorra', + 'Europe/Astrakhan', + 'Europe/Athens', + 'Europe/Belgrade', + 'Europe/Berlin', + 'Europe/Bratislava', + 'Europe/Brussels', + 'Europe/Bucharest', + 'Europe/Budapest', + 'Europe/Busingen', + 'Europe/Chisinau', + 'Europe/Copenhagen', + 'Europe/Dublin', + 'Europe/Gibraltar', + 'Europe/Guernsey', + 'Europe/Helsinki', + 'Europe/Isle_of_Man', + 'Europe/Istanbul', + 'Europe/Jersey', + 'Europe/Kaliningrad', + 'Europe/Kiev', + 'Europe/Kirov', + 'Europe/Lisbon', + 'Europe/Ljubljana', + 'Europe/London', + 'Europe/Luxembourg', + 'Europe/Madrid', + 'Europe/Malta', + 'Europe/Mariehamn', + 'Europe/Minsk', + 'Europe/Monaco', + 'Europe/Moscow', + 'Europe/Oslo', + 'Europe/Paris', + 'Europe/Podgorica', + 'Europe/Prague', + 'Europe/Riga', + 'Europe/Rome', + 'Europe/Samara', + 'Europe/San_Marino', + 'Europe/Sarajevo', + 'Europe/Saratov', + 'Europe/Simferopol', + 'Europe/Skopje', + 'Europe/Sofia', + 'Europe/Stockholm', + 'Europe/Tallinn', + 'Europe/Tirane', + 'Europe/Ulyanovsk', + 'Europe/Vaduz', + 'Europe/Vatican', + 'Europe/Vienna', + 'Europe/Vilnius', + 'Europe/Volgograd', + 'Europe/Warsaw', + 'Europe/Zagreb', + 'Europe/Zurich', + 'Indian/Antananarivo', + 'Indian/Chagos', + 'Indian/Christmas', + 'Indian/Cocos', + 'Indian/Comoro', + 'Indian/Kerguelen', + 'Indian/Mahe', + 'Indian/Maldives', + 'Indian/Mauritius', + 'Indian/Mayotte', + 'Indian/Reunion', + 'Pacific/Apia', + 'Pacific/Auckland', + 'Pacific/Bougainville', + 'Pacific/Chatham', + 'Pacific/Easter', + 'Pacific/Efate', + 'Pacific/Enderbury', + 'Pacific/Fakaofo', + 'Pacific/Fiji', + 'Pacific/Funafuti', + 'Pacific/Galapagos', + 'Pacific/Gambier', + 'Pacific/Guadalcanal', + 'Pacific/Guam', + 'Pacific/Honolulu', + 'Pacific/Kiritimati', + 'Pacific/Kosrae', + 'Pacific/Kwajalein', + 'Pacific/Majuro', + 'Pacific/Marquesas', + 'Pacific/Midway', + 'Pacific/Nauru', + 'Pacific/Niue', + 'Pacific/Norfolk', + 'Pacific/Noumea', + 'Pacific/Pago_Pago', + 'Pacific/Palau', + 'Pacific/Pitcairn', + 'Pacific/Ponape', + 'Pacific/Port_Moresby', + 'Pacific/Rarotonga', + 'Pacific/Saipan', + 'Pacific/Tahiti', + 'Pacific/Tarawa', + 'Pacific/Tongatapu', + 'Pacific/Truk', + 'Pacific/Wake', + 'Pacific/Wallis' +]; diff --git a/frontend/src/lib/index.server.ts b/frontend/src/lib/index.server.ts index 3ff2206..12f9885 100644 --- a/frontend/src/lib/index.server.ts +++ b/frontend/src/lib/index.server.ts @@ -10,27 +10,3 @@ export const fetchCSRFToken = async () => { return null; } }; - -export const tryRefreshToken = async (refreshToken: string) => { - const csrfToken = await fetchCSRFToken(); - const refreshFetch = await fetch(`${serverEndpoint}/auth/token/refresh/`, { - method: 'POST', - headers: { - 'X-CSRFToken': csrfToken, - 'Content-Type': 'application/json' // Corrected header name - }, - body: JSON.stringify({ refresh: refreshToken }) - }); - - if (refreshFetch.ok) { - const refresh = await refreshFetch.json(); - const token = `auth=${refresh.access}`; - return token; - // event.cookies.set('auth', `auth=${refresh.access}`, { - // httpOnly: true, - // sameSite: 'lax', - // expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - // path: '/' - // }); - } -}; diff --git a/frontend/src/lib/index.ts b/frontend/src/lib/index.ts index 39196a9..18549a6 100644 --- a/frontend/src/lib/index.ts +++ b/frontend/src/lib/index.ts @@ -1,12 +1,25 @@ import inspirationalQuotes from './json/quotes.json'; -import type { Adventure, Checklist, Collection, Note, Transportation } from './types'; +import randomBackgrounds from './json/backgrounds.json'; + +// @ts-ignore +import { DateTime } from 'luxon'; +import type { + Adventure, + Background, + Checklist, + Collection, + Lodging, + Note, + Transportation, + User +} from './types'; export function getRandomQuote() { const quotes = inspirationalQuotes.quotes; const randomIndex = Math.floor(Math.random() * quotes.length); let quoteString = quotes[randomIndex].quote; let authorString = quotes[randomIndex].author; - return '"' + quoteString + '" - ' + authorString; + return { quote: quoteString, author: authorString }; } export function getFlag(size: number, country: string) { @@ -37,31 +50,6 @@ export async function exportData() { visitedRegions }; - async function convertImages() { - const promises = data.adventures.map(async (adventure, i) => { - if (adventure.image) { - const res = await fetch(adventure.image); - const blob = await res.blob(); - const base64 = await blobToBase64(blob); - adventure.image = base64; - data.adventures[i].image = adventure.image; - } - }); - - await Promise.all(promises); - } - - function blobToBase64(blob: Blob): Promise { - return new Promise((resolve, reject) => { - const reader = new FileReader(); - reader.readAsDataURL(blob); - reader.onloadend = () => resolve(reader.result as string); - reader.onerror = (error) => reject(error); - }); - } - - await convertImages(); - const blob = new Blob([JSON.stringify(data)], { type: 'application/json' }); return URL.createObjectURL(blob); } @@ -82,25 +70,72 @@ export function groupAdventuresByDate( ): Record { const groupedAdventures: Record = {}; + // Initialize all days in the range using DateTime for (let i = 0; i < numberOfDays; i++) { - const currentDate = new Date(startDate); - currentDate.setDate(startDate.getDate() + i); - const dateString = currentDate.toISOString().split('T')[0]; + const currentDate = DateTime.fromJSDate(startDate).plus({ days: i }); + const dateString = currentDate.toISODate(); // 'YYYY-MM-DD' groupedAdventures[dateString] = []; } adventures.forEach((adventure) => { - if (adventure.date) { - const adventureDate = new Date(adventure.date).toISOString().split('T')[0]; - if (groupedAdventures[adventureDate]) { - groupedAdventures[adventureDate].push(adventure); + adventure.visits.forEach((visit) => { + if (visit.start_date) { + // Check if it's all-day: start has 00:00:00 AND (no end OR end also has 00:00:00) + const startHasZeros = isAllDay(visit.start_date); + const endHasZeros = visit.end_date ? isAllDay(visit.end_date) : true; + const isAllDayEvent = startHasZeros && endHasZeros; + + let startDT: DateTime; + let endDT: DateTime; + + if (isAllDayEvent) { + // For all-day events, extract just the date part and ignore timezone + const dateOnly = visit.start_date.split('T')[0]; // Get 'YYYY-MM-DD' + startDT = DateTime.fromISO(dateOnly); // This creates a date without time/timezone + + endDT = visit.end_date ? DateTime.fromISO(visit.end_date.split('T')[0]) : startDT; + } else { + // For timed events, use timezone conversion + startDT = DateTime.fromISO(visit.start_date, { + zone: visit.timezone ?? 'UTC' + }); + + endDT = visit.end_date + ? DateTime.fromISO(visit.end_date, { + zone: visit.timezone ?? 'UTC' + }) + : startDT; + } + + const startDateStr = startDT.toISODate(); + const endDateStr = endDT.toISODate(); + + // Loop through all days in range + for (let i = 0; i < numberOfDays; i++) { + const currentDate = DateTime.fromJSDate(startDate).plus({ days: i }); + const currentDateStr = currentDate.toISODate(); + + // Include the current day if it falls within the adventure date range + if (currentDateStr >= startDateStr && currentDateStr <= endDateStr) { + if (groupedAdventures[currentDateStr]) { + groupedAdventures[currentDateStr].push(adventure); + } + } + } } - } + }); }); return groupedAdventures; } +function getLocalDateString(date: Date): string { + const year = date.getFullYear(); + const month = String(date.getMonth() + 1).padStart(2, '0'); // Months are 0-indexed + const day = String(date.getDate()).padStart(2, '0'); + return `${year}-${month}-${day}`; +} + export function groupTransportationsByDate( transportations: Transportation[], startDate: Date, @@ -108,24 +143,128 @@ export function groupTransportationsByDate( ): Record { const groupedTransportations: Record = {}; + // Initialize days for (let i = 0; i < numberOfDays; i++) { - const currentDate = new Date(startDate); - currentDate.setDate(startDate.getDate() + i); - const dateString = currentDate.toISOString().split('T')[0]; + const currentDate = DateTime.fromJSDate(startDate).plus({ days: i }); + const dateString = currentDate.toISODate(); // 'YYYY-MM-DD' groupedTransportations[dateString] = []; } transportations.forEach((transportation) => { if (transportation.date) { - const transportationDate = new Date(transportation.date).toISOString().split('T')[0]; - if (groupedTransportations[transportationDate]) { - groupedTransportations[transportationDate].push(transportation); + // Check if it's all-day: start has 00:00:00 AND (no end OR end also has 00:00:00) + const startHasZeros = transportation.date.includes('T00:00:00'); + const endHasZeros = transportation.end_date + ? transportation.end_date.includes('T00:00:00') + : true; + const isTranspoAllDay = startHasZeros && endHasZeros; + + let startDT: DateTime; + let endDT: DateTime; + + if (isTranspoAllDay) { + // For all-day events, extract just the date part and ignore timezone + const dateOnly = transportation.date.split('T')[0]; // Get 'YYYY-MM-DD' + startDT = DateTime.fromISO(dateOnly); // This creates a date without time/timezone + + endDT = transportation.end_date + ? DateTime.fromISO(transportation.end_date.split('T')[0]) + : startDT; + } else { + // For timed events, use timezone conversion + startDT = DateTime.fromISO(transportation.date, { + zone: transportation.start_timezone ?? 'UTC' + }); + + endDT = transportation.end_date + ? DateTime.fromISO(transportation.end_date, { + zone: transportation.end_timezone ?? transportation.start_timezone ?? 'UTC' + }) + : startDT; + } + + const startDateStr = startDT.toISODate(); + const endDateStr = endDT.toISODate(); + + // Loop through all days in range + for (let i = 0; i < numberOfDays; i++) { + const currentDate = DateTime.fromJSDate(startDate).plus({ days: i }); + const currentDateStr = currentDate.toISODate(); + + if (currentDateStr >= startDateStr && currentDateStr <= endDateStr) { + groupedTransportations[currentDateStr]?.push(transportation); + } } } }); return groupedTransportations; } +export function groupLodgingByDate( + lodging: Lodging[], + startDate: Date, + numberOfDays: number +): Record { + const groupedLodging: Record = {}; + + // Initialize days (excluding last day for lodging) + // If trip is 7/1 to 7/4 (4 days), show lodging only on 7/1, 7/2, 7/3 + const lodgingDays = numberOfDays - 1; + + for (let i = 0; i < lodgingDays; i++) { + const currentDate = DateTime.fromJSDate(startDate).plus({ days: i }); + const dateString = currentDate.toISODate(); // 'YYYY-MM-DD' + groupedLodging[dateString] = []; + } + + lodging.forEach((hotel) => { + if (hotel.check_in) { + // Check if it's all-day: start has 00:00:00 AND (no end OR end also has 00:00:00) + const startHasZeros = hotel.check_in.includes('T00:00:00'); + const endHasZeros = hotel.check_out ? hotel.check_out.includes('T00:00:00') : true; + const isAllDay = startHasZeros && endHasZeros; + + let startDT: DateTime; + let endDT: DateTime; + + if (isAllDay) { + // For all-day events, extract just the date part and ignore timezone + const dateOnly = hotel.check_in.split('T')[0]; // Get 'YYYY-MM-DD' + startDT = DateTime.fromISO(dateOnly); // This creates a date without time/timezone + + endDT = hotel.check_out ? DateTime.fromISO(hotel.check_out.split('T')[0]) : startDT; + } else { + // For timed events, use timezone conversion + startDT = DateTime.fromISO(hotel.check_in, { + zone: hotel.timezone ?? 'UTC' + }); + + endDT = hotel.check_out + ? DateTime.fromISO(hotel.check_out, { + zone: hotel.timezone ?? 'UTC' + }) + : startDT; + } + + const startDateStr = startDT.toISODate(); + const endDateStr = endDT.toISODate(); + + // Loop through lodging days only (excluding last day) + for (let i = 0; i < lodgingDays; i++) { + const currentDate = DateTime.fromJSDate(startDate).plus({ days: i }); + const currentDateStr = currentDate.toISODate(); + + // Show lodging on days where check-in occurs through the day before check-out + // For lodging, we typically want to show it on the nights you're staying + if (currentDateStr >= startDateStr && currentDateStr < endDateStr) { + groupedLodging[currentDateStr]?.push(hotel); + } + } + } + }); + + return groupedLodging; +} export function groupNotesByDate( notes: Note[], @@ -134,16 +273,18 @@ export function groupNotesByDate( ): Record { const groupedNotes: Record = {}; + // Initialize all days in the range using local dates for (let i = 0; i < numberOfDays; i++) { const currentDate = new Date(startDate); currentDate.setDate(startDate.getDate() + i); - const dateString = currentDate.toISOString().split('T')[0]; + const dateString = getLocalDateString(currentDate); groupedNotes[dateString] = []; } notes.forEach((note) => { if (note.date) { - const noteDate = new Date(note.date).toISOString().split('T')[0]; + // Use the date string as is since it's already in "YYYY-MM-DD" format. + const noteDate = note.date; if (groupedNotes[noteDate]) { groupedNotes[noteDate].push(note); } @@ -160,21 +301,354 @@ export function groupChecklistsByDate( ): Record { const groupedChecklists: Record = {}; + // Initialize all days in the range using local dates for (let i = 0; i < numberOfDays; i++) { const currentDate = new Date(startDate); currentDate.setDate(startDate.getDate() + i); - const dateString = currentDate.toISOString().split('T')[0]; + const dateString = getLocalDateString(currentDate); groupedChecklists[dateString] = []; } checklists.forEach((checklist) => { if (checklist.date) { - const noteDate = new Date(checklist.date).toISOString().split('T')[0]; - if (groupedChecklists[noteDate]) { - groupedChecklists[noteDate].push(checklist); + // Use the date string as is since it's already in "YYYY-MM-DD" format. + const checklistDate = checklist.date; + if (groupedChecklists[checklistDate]) { + groupedChecklists[checklistDate].push(checklist); } } }); return groupedChecklists; } + +// Helper to check if a given date string represents midnight (all-day) +// Improved isAllDay function to handle different ISO date formats +export function isAllDay(dateStr: string): boolean { + // Check for various midnight formats in UTC + return dateStr.endsWith('T00:00:00Z') || dateStr.endsWith('T00:00:00.000Z'); +} + +export function continentCodeToString(code: string) { + switch (code) { + case 'AF': + return 'Africa'; + case 'AN': + return 'Antarctica'; + case 'AS': + return 'Asia'; + case 'EU': + return 'Europe'; + case 'NA': + return 'North America'; + case 'OC': + return 'Oceania'; + case 'SA': + return 'South America'; + default: + return 'Unknown'; + } +} + +export let ADVENTURE_TYPES = [ + { type: 'general', label: 'General 🌍' }, + { type: 'outdoor', label: 'Outdoor 🏞️' }, + { type: 'lodging', label: 'Lodging 🛌' }, + { type: 'dining', label: 'Dining 🍽️' }, + { type: 'activity', label: 'Activity 🏄' }, + { type: 'attraction', label: 'Attraction 🎢' }, + { type: 'shopping', label: 'Shopping 🛍️' }, + { type: 'nightlife', label: 'Nightlife 🌃' }, + { type: 'event', label: 'Event 🎉' }, + { type: 'transportation', label: 'Transportation 🚗' }, + { type: 'culture', label: 'Culture 🎭' }, + { type: 'water_sports', label: 'Water Sports 🚤' }, + { type: 'hiking', label: 'Hiking 🥾' }, + { type: 'wildlife', label: 'Wildlife 🦒' }, + { type: 'historical_sites', label: 'Historical Sites 🏛️' }, + { type: 'music_concerts', label: 'Music & Concerts 🎶' }, + { type: 'fitness', label: 'Fitness 🏋️' }, + { type: 'art_museums', label: 'Art & Museums 🎨' }, + { type: 'festivals', label: 'Festivals 🎪' }, + { type: 'spiritual_journeys', label: 'Spiritual Journeys 🧘‍♀️' }, + { type: 'volunteer_work', label: 'Volunteer Work 🤝' }, + { type: 'other', label: 'Other' } +]; + +// adventure type to icon mapping +export let ADVENTURE_TYPE_ICONS = { + general: '🌍', + outdoor: '🏞️', + lodging: '🛌', + dining: '🍽️', + activity: '🏄', + attraction: '🎢', + shopping: '🛍️', + nightlife: '🌃', + event: '🎉', + transportation: '🚗', + culture: '🎭', + water_sports: '🚤', + hiking: '🥾', + wildlife: '🦒', + historical_sites: '🏛️', + music_concerts: '🎶', + fitness: '🏋️', + art_museums: '🎨', + festivals: '🎪', + spiritual_journeys: '🧘‍♀️', + volunteer_work: '🤝', + other: '❓' +}; + +export let LODGING_TYPES_ICONS = { + hotel: '🏨', + hostel: '🛏️', + resort: '🏝️', + bnb: '🍳', + campground: '🏕️', + cabin: '🏚️', + apartment: '🏢', + house: '🏠', + villa: '🏡', + motel: '🚗🏨', + other: '❓' +}; + +export let TRANSPORTATION_TYPES_ICONS = { + car: '🚗', + plane: '✈️', + train: '🚆', + bus: '🚌', + boat: '⛵', + bike: '🚲', + walking: '🚶', + other: '❓' +}; + +export function getAdventureTypeLabel(type: string) { + // return the emoji ADVENTURE_TYPE_ICONS label for the given type if not found return ? emoji + if (type in ADVENTURE_TYPE_ICONS) { + return ADVENTURE_TYPE_ICONS[type as keyof typeof ADVENTURE_TYPE_ICONS]; + } else { + return '❓'; + } +} + +export function getRandomBackground() { + const today = new Date(); + + // Special dates for specific backgrounds + // New Years week + + const newYearsStart = new Date(today.getFullYear() - 1, 11, 31); + newYearsStart.setHours(0, 0, 0, 0); + const newYearsEnd = new Date(today.getFullYear(), 0, 2); + newYearsEnd.setHours(23, 59, 59, 999); + if (today >= newYearsStart && today <= newYearsEnd) { + return { + url: 'backgrounds/adventurelog_new_year.webp', + author: 'Roven Images', + location: "Happy New Year's from the AdventureLog team!" + } as Background; + } + + // Christmas 12/24 - 12/25 + const christmasStart = new Date(today.getFullYear(), 11, 24); + christmasStart.setHours(0, 0, 0, 0); + const christmasEnd = new Date(today.getFullYear(), 11, 25); + christmasEnd.setHours(23, 59, 59, 999); + + if (today >= christmasStart && today <= christmasEnd) { + return { + url: 'backgrounds/adventurelog_christmas.webp', + author: 'Annie Spratt', + location: 'Merry Christmas from the AdventureLog team!' + } as Background; + } + + const randomIndex = Math.floor(Math.random() * randomBackgrounds.backgrounds.length); + return randomBackgrounds.backgrounds[randomIndex] as Background; +} + +export function findFirstValue(obj: any): any { + for (const key in obj) { + if (typeof obj[key] === 'object' && obj[key] !== null) { + const value = findFirstValue(obj[key]); + if (value !== undefined) { + return value; + } + } else { + return obj[key]; + } + } +} + +export let themes = [ + { name: 'light', label: 'Light' }, + { name: 'dark', label: 'Dark' }, + { name: 'dim', label: 'Dim' }, + { name: 'night', label: 'Night' }, + { name: 'forest', label: 'Forest' }, + { name: 'aqua', label: 'Aqua' }, + { name: 'aestheticLight', label: 'Aesthetic Light' }, + { name: 'aestheticDark', label: 'Aesthetic Dark' }, + { name: 'northernLights', label: 'Northern Lights' } +]; + +export function osmTagToEmoji(tag: string) { + switch (tag) { + case 'camp_site': + return '🏕️'; + case 'slipway': + return '🛳️'; + case 'playground': + return '🛝'; + case 'viewpoint': + return '👀'; + case 'cape': + return '🏞️'; + case 'beach': + return '🏖️'; + case 'park': + return '🌳'; + case 'museum': + return '🏛️'; + case 'theme_park': + return '🎢'; + case 'nature_reserve': + return '🌲'; + case 'memorial': + return '🕊️'; + case 'monument': + return '🗿'; + case 'wood': + return '🌲'; + case 'zoo': + return '🦁'; + case 'attraction': + return '🎡'; + case 'ruins': + return '🏚️'; + case 'bay': + return '🌊'; + case 'hotel': + return '🏨'; + case 'motel': + return '🏩'; + case 'pub': + return '🍺'; + case 'restaurant': + return '🍽️'; + case 'cafe': + return '☕'; + case 'bakery': + return '🥐'; + case 'archaeological_site': + return '🏺'; + case 'lighthouse': + return '🗼'; + case 'tree': + return '🌳'; + case 'cliff': + return '⛰️'; + case 'water': + return '💧'; + case 'fishing': + return '🎣'; + case 'golf_course': + return '⛳'; + case 'swimming_pool': + return '🏊'; + case 'stadium': + return '🏟️'; + case 'cave_entrance': + return '🕳️'; + case 'anchor': + return '⚓'; + case 'garden': + return '🌼'; + case 'disc_golf_course': + return '🥏'; + case 'natural': + return '🌿'; + case 'ice_rink': + return '⛸️'; + case 'horse_riding': + return '🐎'; + case 'wreck': + return '🚢'; + case 'water_park': + return '💦'; + case 'picnic_site': + return '🧺'; + case 'axe_throwing': + return '🪓'; + case 'fort': + return '🏰'; + case 'amusement_arcade': + return '🕹️'; + case 'tepee': + return '🏕️'; + case 'track': + return '🏃'; + case 'trampoline_park': + return '🤸'; + case 'dojo': + return '🥋'; + case 'tree_stump': + return '🪵'; + case 'peak': + return '🏔️'; + case 'fitness_centre': + return '🏋️'; + case 'artwork': + return '🎨'; + case 'fast_food': + return '🍔'; + case 'ice_cream': + return '🍦'; + default: + return '📍'; // Default placeholder emoji for unknown tags + } +} + +export function debounce(func: Function, timeout: number) { + let timer: number | NodeJS.Timeout; + return (...args: any) => { + clearTimeout(timer); + timer = setTimeout(() => { + func(...args); + }, timeout); + }; +} + +export function getIsDarkMode() { + const theme = document.documentElement.getAttribute('data-theme'); + + if (theme) { + const isDark = + theme === 'dark' || + theme === 'night' || + theme === 'aestheticDark' || + theme === 'northernLights' || + theme === 'forest' || + theme === 'dim'; + return isDark; + } + + // Fallback to browser preference if no theme cookie is set + if (typeof window !== 'undefined' && window.matchMedia) { + const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches; + return prefersDark; + } + + return false; +} + +export function getBasemapUrl() { + if (getIsDarkMode()) { + return 'https://basemaps.cartocdn.com/gl/dark-matter-gl-style/style.json'; + } + return 'https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json'; +} diff --git a/frontend/src/lib/json/backgrounds.json b/frontend/src/lib/json/backgrounds.json new file mode 100644 index 0000000..7b1b896 --- /dev/null +++ b/frontend/src/lib/json/backgrounds.json @@ -0,0 +1,34 @@ +{ + "backgrounds": [ + { + "url": "backgrounds/adventurelog_showcase_1.webp", + "author": "Sean Morley", + "location": "Franconia Notch State Park, New Hampshire, USA" + }, + { + "url": "backgrounds/adventurelog_showcase_2.webp", + "author": "Sean Morley", + "location": "Tumbledown Mountain, Maine, USA" + }, + { + "url": "backgrounds/adventurelog_showcase_3.webp", + "author": "Sean Morley", + "location": "Philmont Scout Ranch, New Mexico, USA" + }, + { + "url": "backgrounds/adventurelog_showcase_4.webp", + "author": "Sean Morley", + "location": "Great Sand Dunes National Park, Colorado, USA" + }, + { + "url": "backgrounds/adventurelog_showcase_5.webp", + "author": "Sean Morley", + "location": "Hoboken, New Jersey, USA" + }, + { + "url": "backgrounds/adventurelog_showcase_6.webp", + "author": "Sean Morley", + "location": "Smugglers' Notch Resort, Vermont, USA" + } + ] +} diff --git a/frontend/src/lib/types.ts b/frontend/src/lib/types.ts index fa951d5..44e4dc0 100644 --- a/frontend/src/lib/types.ts +++ b/frontend/src/lib/types.ts @@ -1,52 +1,114 @@ +import { VALID_TIMEZONES } from './dateUtils'; + export type User = { pk: number; username: string; - email: string | null; first_name: string | null; last_name: string | null; date_joined: string | null; is_staff: boolean; profile_pic: string | null; + uuid: string; + public_profile: boolean; + has_password: boolean; + disable_password: boolean; }; export type Adventure = { id: string; - user_id: number; - type: string; + user_id: string | null; name: string; location?: string | null; activity_types?: string[] | null; description?: string | null; rating?: number | null; link?: string | null; - image?: string | null; - date?: string | null; // Assuming date is a string in 'YYYY-MM-DD' format - collection?: number | null; + images: { + id: string; + image: string; + is_primary: boolean; + immich_id: string | null; + }[]; + visits: { + id: string; + start_date: string; + end_date: string; + timezone: string | null; + notes: string; + }[]; + collections?: string[] | null; latitude: number | null; longitude: number | null; is_public: boolean; created_at?: string | null; updated_at?: string | null; + is_visited?: boolean; + category: Category | null; + attachments: Attachment[]; + user?: User | null; + city?: City | null; + region?: Region | null; + country?: Country | null; +}; + +export type AdditionalAdventure = Adventure & { + sun_times: { + date: string; + visit_id: string; + sunrise: string; + sunset: string; + }[]; }; export type Country = { id: number; name: string; country_code: string; - continent: string; + subregion: string; flag_url: string; + capital: string; + num_regions: number; + num_visits: number; + longitude: number | null; + latitude: number | null; }; export type Region = { - id: number; + id: string; name: string; - country: number; + country: string; + latitude: number; + longitude: number; + num_cities: number; + country_name: string; +}; + +export type City = { + id: string; + name: string; + latitude: number | null; + longitude: number | null; + region: string; + region_name: string; + country_name: string; }; export type VisitedRegion = { id: number; - region: number; - user_id: number; + region: string; + user_id: string; + longitude: number; + latitude: number; + name: string; +}; + +export type VisitedCity = { + id: number; + city: string; + user_id: string; + longitude: number; + latitude: number; + name: string; }; export type Point = { @@ -55,62 +117,69 @@ export type Point = { lng: number; }; name: string; + location: string; + activity_type: string; }; export type Collection = { id: string; - user_id: number; + user_id: string; name: string; description: string; is_public: boolean; adventures: Adventure[]; - created_at?: string; - start_date?: string; - end_date?: string; + created_at?: string | null; + start_date: string | null; + end_date: string | null; transportations?: Transportation[]; notes?: Note[]; + lodging?: Lodging[]; checklists?: Checklist[]; is_archived?: boolean; + shared_with: string[] | undefined; + link?: string | null; }; -export type OpenStreetMapPlace = { - place_id: number; - licence: string; - osm_type: string; - osm_id: number; - lat: string; - lon: string; - category: string; - type: string; - place_rank: number; - importance: number; - addresstype: string; - name: string; - display_name: string; - boundingbox: string[]; +export type GeocodeSearchResult = { + lat?: string; + lon?: string; + category?: string; + type?: string; + importance?: number; + addresstype?: string; + name?: string; + display_name?: string; }; export type Transportation = { id: string; - user_id: number; + user_id: string; type: string; name: string; description: string | null; rating: number | null; link: string | null; date: string | null; // ISO 8601 date string + end_date: string | null; // ISO 8601 date string + start_timezone: string | null; + end_timezone: string | null; flight_number: string | null; from_location: string | null; to_location: string | null; + origin_latitude: number | null; + origin_longitude: number | null; + destination_latitude: number | null; + destination_longitude: number | null; is_public: boolean; - collection: Collection | null; + distance: number | null; // in kilometers + collection: Collection | null | string; created_at: string; // ISO 8601 date string updated_at: string; // ISO 8601 date string }; export type Note = { id: string; - user_id: number; + user_id: string; name: string; content: string | null; links: string[] | null; @@ -123,7 +192,7 @@ export type Note = { export type Checklist = { id: string; - user_id: number; + user_id: string; name: string; items: ChecklistItem[]; date: string | null; // ISO 8601 date string @@ -135,10 +204,103 @@ export type Checklist = { export type ChecklistItem = { id: string; - user_id: number; + user_id: string; name: string; is_checked: boolean; checklist: number; created_at: string; // ISO 8601 date string updated_at: string; // ISO 8601 date string }; + +export type Background = { + url: string; + author?: string; + location?: string; +}; + +export type ReverseGeocode = { + region_id: string; + region: string; + country: string; + region_visited: boolean; + city_visited: boolean; + display_name: string; + city: string; + city_id: string; + location_name: string; +}; + +export type Category = { + id: string; + name: string; + display_name: string; + icon: string; + user_id: string; + num_adventures?: number | null; +}; + +export type ImmichIntegration = { + id: string; + server_url: string; + api_key: string; + copy_locally: boolean; +}; + +export type ImmichAlbum = { + albumName: string; + description: string; + albumThumbnailAssetId: string; + createdAt: string; + updatedAt: string; + id: string; + ownerId: string; + owner: { + id: string; + email: string; + name: string; + profileImagePath: string; + avatarColor: string; + profileChangedAt: string; + }; + albumUsers: any[]; + shared: boolean; + hasSharedLink: boolean; + startDate: string; + endDate: string; + assets: any[]; + assetCount: number; + isActivityEnabled: boolean; + order: string; + lastModifiedAssetTimestamp: string; +}; + +export type Attachment = { + id: string; + file: string; + adventure: string; + extension: string; + user_id: string; + name: string; +}; + +export type Lodging = { + id: string; + user_id: string; + name: string; + type: string; + description: string | null; + rating: number | null; + link: string | null; + check_in: string | null; // ISO 8601 date string + check_out: string | null; // ISO 8601 date string + timezone: string | null; + reservation_number: string | null; + price: number | null; + latitude: number | null; + longitude: number | null; + location: string | null; + is_public: boolean; + collection: string | null; + created_at: string; // ISO 8601 date string + updated_at: string; // ISO 8601 date string +}; diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json new file mode 100644 index 0000000..c007da1 --- /dev/null +++ b/frontend/src/locales/de.json @@ -0,0 +1,711 @@ +{ + "about": { + "about": "Über", + "close": "Schließen", + "license": "Lizenziert unter der GPL-3.0-Lizenz.", + "message": "Hergestellt mit ❤️ in den Vereinigten Staaten.", + "nominatim_1": "Standortsuche und Geokodierung werden bereitgestellt von", + "nominatim_2": "Deren Daten sind unter der ODbL-Lizenz lizenziert.", + "oss_attributions": "Open Source Quellenangaben", + "other_attributions": "Weitere Hinweise finden Sie in der README-Datei.", + "source_code": "Quellcode", + "generic_attributions": "Melden Sie sich bei Adventurelog an, um Zuschreibungen für aktivierte Integrationen und Dienste anzuzeigen." + }, + "adventures": { + "activities": {}, + "add_to_collection": "Zur Sammlung hinzufügen", + "adventure_delete_confirm": "Sind Sie sicher, dass Sie dieses Abenteuer löschen möchten? \nDiese Aktion kann nicht rückgängig gemacht werden.", + "collection_link_error": "Fehler beim Verknüpfen des Abenteuers mit der Sammlung", + "collection_link_success": "Abenteuer erfolgreich mit Sammlung verknüpft!", + "collection_remove_error": "Beim Entfernen des Abenteuers aus der Sammlung ist ein Fehler aufgetreten", + "collection_remove_success": "Abenteuer erfolgreich aus der Sammlung entfernt!", + "delete": "Löschen", + "edit_adventure": "Abenteuer bearbeiten", + "no_image_found": "Kein Bild gefunden", + "open_details": "Details", + "remove_from_collection": "Aus Sammlung entfernen", + "adventure": "Abenteuer", + "adventure_delete_success": "Abenteuer erfolgreich gelöscht!", + "archive": "Archiv", + "archived": "Archiviert", + "archived_collection_message": "Sammlung erfolgreich archiviert!", + "archived_collections": "Archivierte Sammlungen", + "ascending": "Aufsteigend", + "cancel": "Abbrechen", + "category_filter": "Kategoriefilter", + "clear": "zurücksetzen", + "collection": "Sammlung", + "collection_adventures": "Abenteuer aus Sammlung berücksichtigen", + "count_txt": "Suchergebnisse", + "date": "Datum", + "dates": "Termine", + "delete_adventure": "Abenteuer löschen", + "delete_collection": "Sammlung löschen", + "delete_collection_success": "Sammlung erfolgreich gelöscht!", + "descending": "Absteigend", + "duration": "Dauer", + "edit_collection": "Sammlung bearbeiten", + "filter": "Filter", + "homepage": "Homepage", + "image_removed_error": "Fehler beim Entfernen des Bildes", + "image_removed_success": "Bild erfolgreich entfernt!", + "image_upload_error": "Fehler beim Hochladen des Bildes", + "image_upload_success": "Bild erfolgreich hochgeladen!", + "latitude": "Breitengrad", + "longitude": "Längengrad", + "my_collections": "Meine Sammlungen", + "name": "Name", + "no_image_url": "Unter dieser URL wurde kein Bild gefunden.", + "not_found": "Abenteuer nicht gefunden", + "not_found_desc": "Das von Ihnen gesuchte Abenteuer konnte nicht gefunden werden. \nBitte versuchen Sie ein anderes Abenteuer aus oder schauen Sie später noch mal vorbei.", + "open_filters": "Filter öffnen", + "order_by": "Sortieren nach", + "order_direction": "Sortierreihenfolge", + "planned": "Geplant", + "private": "Privat", + "public": "Öffentlich", + "rating": "Bewertung", + "share": "Teilen", + "sort": "Sortieren", + "sources": "Quellen", + "start_before_end_error": "Das Start- muss vor dem Enddatum liegen", + "unarchive": "Dearchivieren", + "unarchived_collection_message": "Sammlung erfolgreich dearchiviert!", + "updated": "Aktualisiert", + "visit": "Besuchen", + "visited": "Besucht", + "visits": "Besuche", + "wiki_image_error": "Fehler beim Abrufen des Bildes aus Wikipedia", + "actions": "Aktionen", + "activity_types": "Aktivitätstypen", + "add": "Hinzufügen", + "add_notes": "Notizen hinzufügen", + "adventure_create_error": "Das Abenteuer konnte nicht erstellt werden", + "adventure_created": "Abenteuer erstellt", + "adventure_update_error": "Das Abenteuer konnte nicht aktualisiert werden", + "adventure_updated": "Abenteuer aktualisiert", + "basic_information": "Basisdaten", + "category": "Kategorie", + "clear_map": "Karte leeren", + "copy_link": "Link kopieren", + "create_new": "Neu erstellen...", + "date_constrain": "Beschränke auf Sammlungstermine", + "description": "Beschreibung", + "end_date": "Enddatum", + "fetch_image": "Bild abrufen", + "generate_desc": "Beschreibung generieren", + "image": "Bild", + "image_fetch_failed": "Bild konnte nicht abgerufen werden", + "link": "Link", + "location": "Standort", + "location_information": "Standortinformationen", + "my_images": "Meine Bilder", + "new_adventure": "Neues Abenteuer", + "no_description_found": "Keine Beschreibung gefunden", + "no_images": "Keine Bilder", + "no_location": "Bitte geben Sie einen Ort ein", + "no_results": "Keine Ergebnisse gefunden", + "public_adventure": "Öffentliches Abenteuer", + "remove": "Entfernen", + "save_next": "Speichern & weiter", + "search_for_location": "Nach einem Ort suchen", + "search_results": "Suchergebnisse", + "see_adventures": "Siehe Abenteuer", + "share_adventure": "Teilen Sie dieses Abenteuer!", + "start_date": "Startdatum", + "upload_image": "Bild hochladen", + "url": "URL", + "warning": "Warnung", + "wiki_desc": "Ruft einen Auszug aus einem Wikipedia-Artikel ab, der zum Namen des Abenteuers passt.", + "wikipedia": "Wikipedia", + "adventure_not_found": "Keine Abenteuer vorhanden. \nFügen Sie welche über die Plus-Schaltfläche unten rechts hinzu oder versuchen Sie, die Filter zu ändern!", + "all": "Alle", + "error_updating_regions": "Fehler beim Aktualisieren der Regionen", + "mark_visited": "als besucht markieren", + "my_adventures": "Meine Abenteuer", + "no_adventures_found": "Keine Abenteuer gefunden", + "no_collections_found": "Es wurden keine Sammlungen gefunden, die zu diesem Abenteuer hinzugefügt werden können.", + "no_linkable_adventures": "Es wurden keine Abenteuer gefunden, die mit dieser Sammlung verknüpft werden können.", + "not_visited": "Nicht besucht", + "regions_updated": "Regionen aktualisiert", + "update_visited_regions": "Besuchte Regionen aktualisieren", + "update_visited_regions_disclaimer": "Dies kann je nach Anzahl der Abenteuer, die Sie besucht haben, eine Weile dauern.", + "visited_region_check": "Überprüfung der besuchten Region", + "visited_region_check_desc": "Wenn Sie diese Option auswählen, überprüft der Server alle von Ihnen besuchten Abenteuer und markiert die Regionen, in denen sie sich befinden, im Bereich Weltreisen als besucht.", + "add_new": "Neu...", + "checklist": "Checkliste", + "checklists": "Checklisten", + "collection_completed": "Du hast die Sammlung vervollständigt!", + "collection_stats": "Sammlungsstatistiken", + "days": "Tage", + "itineary_by_date": "Reiseroute nach Datum", + "keep_exploring": "Weiter erkunden!", + "link_new": "Neuer Link...", + "linked_adventures": "Verknüpfte Abenteuer", + "links": "Links", + "note": "Notiz", + "notes": "Notizen", + "nothing_planned": "Für heute ist nichts geplant. \nGenieße die Reise!", + "transportation": "Transport", + "transportations": "Transporte", + "visit_link": "Besuche Link", + "collection_archived": "Die Sammlung wurde archiviert.", + "day": "Tag", + "add_a_tag": "Fügen Sie ein Schlagwort hinzu", + "tags": "Schlagworte", + "set_to_pin": "Auf „Anpinnen“ setzen", + "category_fetch_error": "Fehler beim Abrufen der Kategorien", + "copied_to_clipboard": "In die Zwischenablage kopiert!", + "copy_failed": "Das Kopieren ist fehlgeschlagen", + "adventure_calendar": "Abenteuerkalender", + "emoji_picker": "Emoji-Wähler", + "hide": "Verstecken", + "show": "Zeigen", + "download_calendar": "Kalender herunterladen", + "md_instructions": "Hier den Markdowntext schreiben...", + "preview": "Vorschau", + "checklist_delete_confirm": "Sind Sie sicher, dass Sie diese Checkliste löschen möchten? \nDies kann nicht rückgängig gemacht werden.", + "clear_location": "Standort löschen", + "date_information": "Datumsinformationen", + "delete_checklist": "Checkliste löschen", + "delete_note": "Notiz löschen", + "delete_transportation": "Transport löschen", + "end": "Ende", + "ending_airport": "Zielflughafen", + "flight_information": "Fluginformationen", + "from": "Von", + "no_location_found": "Keinen Standort gefunden", + "note_delete_confirm": "Sind Sie sicher, dass Sie diese Notiz löschen möchten? \nDies kann nicht rückgängig gemacht werden!", + "out_of_range": "Außerhalb des geplanten Reisezeitraums", + "start": "Start", + "starting_airport": "Startflughafen", + "to": "Nach", + "transportation_delete_confirm": "Sind Sie sicher, dass Sie diesen Transport löschen möchten? \nDies lässt sich nicht rückgängig machen.", + "will_be_marked": "wird als besucht markiert, sobald das Abenteuer gespeichert wird.", + "cities_updated": "Städte aktualisiert", + "create_adventure": "Erstelle Abenteuer", + "no_adventures_to_recommendations": "Keine Abenteuer gefunden. \nFügen Sie mindestens ein Abenteuer hinzu, um Empfehlungen zu erhalten.", + "finding_recommendations": "Entdecken Sie verborgene Schätze für Ihr nächstes Abenteuer", + "attachment": "Anhang", + "attachment_delete_success": "Anhang gelöscht!", + "attachment_name": "Anhangsname", + "attachment_update_error": "Fehler beim Aktualisieren des Anhangs", + "attachment_update_success": "Anhang erfolgreich aktualisiert!", + "attachment_upload_error": "Fehler beim Hochladen des Anhangs", + "attachment_upload_success": "Anhang erfolgreich hochgeladen!", + "attachments": "Anhänge", + "gpx_tip": "Laden Sie GPX-Dateien als Anhänge hoch, um sie auf der Karte anzuzeigen!", + "images": "Bilder", + "upload": "Hochladen", + "city": "Stadt", + "display_name": "Anzeigename", + "location_details": "Standortdetails", + "lodging": "Unterkunft", + "region": "Region", + "delete_lodging": "Unterkunft löschen", + "lodging_delete_confirm": "Sind Sie sicher, dass Sie diese Unterkunft löschen möchten? \nDies lässt sich nicht rückgängig machen!", + "lodging_information": "Informationen zur Unterkunft", + "price": "Preis", + "reservation_number": "Reservierungsnummer", + "open_in_maps": "In Karten öffnen", + "all_day": "Den ganzen Tag", + "collection_no_start_end_date": "Durch das Hinzufügen eines Start- und Enddatums zur Sammlung werden Reiseroutenplanungsfunktionen auf der Sammlungsseite freigegeben.", + "date_itinerary": "Datumstrecke", + "no_ordered_items": "Fügen Sie der Sammlung Elemente mit Daten hinzu, um sie hier zu sehen.", + "ordered_itinerary": "Reiseroute bestellt", + "invalid_date_range": "Ungültiger Datumsbereich", + "timezone": "Zeitzone", + "no_visits": "Keine Besuche", + "arrival_timezone": "Ankunftszeitzone", + "departure_timezone": "Abfahrtszeit", + "arrival_date": "Ankunftsdatum", + "departure_date": "Abflugdatum", + "coordinates": "Koordinaten", + "copy_coordinates": "Koordinaten kopieren", + "sun_times": "Sonnenzeiten", + "sunrise": "Sonnenaufgang", + "sunset": "Sonnenuntergang", + "timed": "Zeitlich abgestimmt", + "distance": "Distanz", + "all_linked_items": "Alle verknüpften Elemente", + "itinerary": "Route", + "joined": "Verbunden", + "view_profile": "Profil anzeigen", + "share_collection": "Teilen Sie diese Sammlung!", + "filters_and_sort": "Filter", + "filters_and_stats": "Filter", + "no_adventures_message": "Dokumentieren Sie Ihre Abenteuer und planen Sie neue. \nJede Reise hat eine Geschichte, die es wert ist, erzählt zu werden.", + "travel_progress": "Reisefortschritt", + "adventures_available": "Abenteuer verfügbar", + "all_adventures_already_linked": "Alle Abenteuer sind bereits mit dieser Sammlung verknüpft.", + "collections_linked": "Kollektionen verknüpft", + "create_collection_first": "Erstellen Sie zuerst eine Sammlung, um Ihre Abenteuer und Erinnerungen zu organisieren.", + "delete_collection_warning": "Sind Sie sicher, dass Sie diese Sammlung löschen möchten? \nDiese Aktion kann nicht rückgängig gemacht werden.", + "done": "Erledigt", + "loading_adventures": "Ladeabenteuer ...", + "name_location": "Name, Ort", + "collection_contents": "Sammelinhalt", + "check_in": "Einchecken", + "check_out": "Kasse" + }, + "home": { + "desc_1": "Entdecken, planen und erkunden Sie mühelos", + "desc_2": "AdventureLog wurde entwickelt, um Ihre Reise zu vereinfachen und stellt Ihnen alle nötigen Werkzeuge und Ressourcen zur Verfügung, mit denen Sie Ihr nächstes unvergessliches Abenteuer planen, packen und erleben können.", + "feature_1": "Reisetagebuch", + "feature_1_desc": "Dokumentieren Sie Ihre Abenteuer mit einem persönlichen Reisetagebuch und teilen Sie Ihre Erlebnisse mit Freunden und Familie.", + "feature_2": "Reiseplanung", + "feature_3": "Reisekarte", + "feature_3_desc": "Betrachten Sie Ihre Reisen rund um die Welt auf einer interaktiven Karte und entdecken Sie neue Ziele.", + "go_to": "AdventureLog öffnen", + "hero_1": "Entdecken Sie die aufregendsten Abenteuer der Welt", + "hero_2": "Entdecken und planen Sie Ihr nächstes Abenteuer mit AdventureLog. Erkunden Sie atemberaubende Reiseziele, erstellen Sie individuelle Reisepläne und bleiben Sie unterwegs stets verbunden.", + "key_features": "Hauptmerkmale", + "feature_2_desc": "Erstellen Sie mühelos individuelle Reisepläne und erhalten Sie eine detaillierte Tagesübersicht Ihrer Reise.", + "explore_world": "Welt erkunden", + "latest_travel_experiences": "Ihre neuesten Reiseerlebnisse", + "of_world": "der Welt", + "start_your_journey": "Beginnen Sie Ihre Reise" + }, + "navbar": { + "about": "Über AdventureLog", + "adventures": "Abenteuer", + "collections": "Sammlungen", + "documentation": "Dokumentation", + "greeting": "Hallo", + "logout": "Abmelden", + "map": "Karte", + "my_adventures": "Meine Abenteuer", + "profile": "Profil", + "search": "Suchen", + "settings": "Einstellungen", + "shared_with_me": "Mit mir geteilt", + "theme_selection": "Design", + "themes": { + "aestheticDark": "Ästhetische Dunkelheit", + "aestheticLight": "Ästhetisches Licht", + "aqua": "Aqua", + "dark": "Dunkel", + "dim": "Düster", + "forest": "Wald", + "light": "Licht", + "night": "Nacht", + "northernLights": "Nordlicht" + }, + "users": "Benutzer", + "worldtravel": "Weltreisen", + "my_tags": "Meine Schlagworte", + "tag": "Schlagwort", + "language_selection": "Sprachauswahl", + "support": "Unterstützung", + "calendar": "Kalender", + "admin_panel": "Administration" + }, + "auth": { + "confirm_password": "Passwort bestätigen", + "email": "E-Mail", + "first_name": "Vorname", + "forgot_password": "Passwort vergessen?", + "last_name": "Nachname", + "login": "Login", + "login_error": "Die Anmeldung ist mit den angegebenen Anmeldeinformationen nicht möglich.", + "password": "Passwort", + "registration_disabled": "Die Registrierung ist derzeit deaktiviert.", + "signup": "Melden Sie sich an", + "username": "Benutzername", + "profile_picture": "Profilbild", + "public_profile": "Öffentliches Profil", + "public_tooltip": "Mit einem öffentlichen Profil können Benutzer Sammlungen mit Ihnen teilen und Ihr Profil auf der Benutzerseite anzeigen.", + "new_password": "Neues Passwort", + "or_3rd_party": "Oder melden Sie sich bei einem Drittanbieter an", + "no_public_adventures": "Keine öffentlichen Abenteuer gefunden", + "no_public_collections": "Keine öffentlichen Sammlungen gefunden", + "user_adventures": "Benutzerabenteuer", + "user_collections": "Benutzersammlungen" + }, + "users": { + "no_users_found": "Keine Benutzer mit öffentlichem Profil gefunden." + }, + "worldtravel": { + "all": "Alle", + "all_subregions": "Alle Unterregionen", + "clear_search": "Suche löschen", + "completely_visited": "Vollständig besucht", + "country_list": "Länderliste", + "no_countries_found": "Keine Länder gefunden", + "not_visited": "Nicht besucht", + "num_countries": "Länder gefunden", + "partially_visited": "Teilweise besucht", + "cities": "Städte", + "failed_to_mark_visit": "Fehler beim Markieren des Besuchs von", + "failed_to_remove_visit": "Fehler beim Entfernen des Besuchs", + "marked_visited": "als besucht markiert", + "no_cities_found": "Keine Städte gefunden", + "region_failed_visited": "Die Region konnte nicht als besucht markiert werden", + "regions_in": "Regionen in", + "removed": "entfernt", + "view_cities": "Städte anzeigen", + "visit_remove_failed": "Der Besuch konnte nicht entfernt werden", + "visit_to": "Besuch von", + "all_regions": "Alle Regionen", + "available_to_explore": "Verfügbar zum Erkunden", + "cities_in": "Städte in", + "clear_all": "Alle klar", + "clear_all_filters": "Alle Filter löschen", + "clear_filters": "Klare Filter", + "complete": "Vollständig", + "countries": "Länder", + "country_completed": "Land abgeschlossen", + "filter_by": "Filter von", + "filter_by_region": "Filter nach Region", + "hide_map": "Karte verbergen", + "hide_map_labels": "Kartenbezeichnungen ausblenden", + "interactive_map": "Interaktive Karte", + "no_countries_found_desc": "Stellen Sie Ihre Suchbegriffe oder -filter an, um die Länder zu finden, nach denen Sie suchen.", + "no_country_data_available": "Keine Länderdaten verfügbar", + "no_country_data_available_desc": "Bitte überprüfen Sie die Dokumentation zur Aktualisierung der Region Daten.", + "no_regions_found": "Keine Regionen gefunden", + "of": "von", + "partial": "Teilweise", + "progress": "Fortschritt", + "progress_and_stats": "Fortschritt", + "region_completed": "Region abgeschlossen", + "remaining": "Übrig", + "show_map": "Karte anzeigen", + "show_map_labels": "Kartenbezeichnungen anzeigen", + "total_cities": "Gesamtstädte", + "total_countries": "Gesamtländer", + "total_regions": "Gesamtregionen", + "newest_first": "Neuester zuerst", + "oldest_first": "Älteste zuerst", + "unvisited_first": "Zuerst nicht besucht", + "visited_first": "Zuerst besucht", + "total_items": "Gesamtartikel" + }, + "settings": { + "account_settings": "Benutzerkonto", + "email_change": "E-Mail ändern", + "new_email": "Neue E-Mail", + "new_password": "Neues Passwort", + "no_email_set": "Keine E-Mail-Adresse festgelegt", + "password_change": "Kennwort ändern", + "settings_page": "Einstellungen", + "update": "Aktualisieren", + "update_error": "Fehler beim Aktualisieren der Einstellungen", + "update_success": "Einstellungen erfolgreich aktualisiert!", + "change_password": "Kennwort ändern", + "confirm_new_password": "Bestätigen Sie das neue Passwort", + "possible_reset": "Wenn die von Ihnen angegebene E-Mail-Adresse mit einem Konto verknüpft ist, erhalten Sie eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts!", + "reset_password": "Passwort zurücksetzen", + "about_this_background": "Über diesen Hintergrund", + "join_discord": "Treten Sie dem Discord bei", + "join_discord_desc": "um Ihre eigenen Fotos zu teilen. \nVeröffentlichen Sie sie im", + "photo_by": "Foto aufgenommen von", + "current_password": "Aktuelles Passwort", + "password_change_lopout_warning": "Nach der Passwortänderung werden Sie abgemeldet.", + "authenticator_code": "Authentifizierungscode", + "copy": "Kopie", + "disable_mfa": "Deaktivieren Sie MFA", + "email_added": "E-Mail hinzugefügt!", + "email_removed": "E-Mail entfernt!", + "email_removed_error": "Fehler beim Entfernen der E-Mail", + "email_set_primary": "E-Mail als primäre E-Mail-Adresse festgelegt!", + "email_set_primary_error": "Die E-Mail-Adresse konnte nicht als primäre Adresse festgelegt werden", + "email_verified": "E-Mail bestätigt!", + "email_verified_erorr_desc": "Ihre E-Mail-Adresse konnte nicht bestätigt werden. \nBitte versuchen Sie es erneut.", + "email_verified_error": "Fehler bei der Verifizierung der E-Mail-Adresse", + "email_verified_success": "Ihre E-Mail-Adresse wurde bestätigt. \nSie können sich jetzt anmelden.", + "enable_mfa": "Aktivieren Sie MFA", + "generic_error": "Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten.", + "make_primary": "Als primär festlegen", + "mfa_disabled": "MFA-Authentifizierung deaktiviert!", + "mfa_enabled": "MFA-Authentifizierung aktiviert!", + "mfa_not_enabled": "MFA nicht aktiviert", + "mfa_page_title": "Multi-Faktor-Authentifizierung (MFA)", + "no_emai_set": "Keine E-Mail-Adresse festgelegt", + "not_verified": "Nicht verifiziert", + "primary": "Primär", + "recovery_codes": "Wiederherstellungscodes", + "recovery_codes_desc": "Dies sind Ihre Wiederherstellungscodes. \nBewahren Sie sie sicher auf. \nSie werden nicht erneut angezeigt.", + "reset_session_error": "Bitte melden Sie sich ab und wieder an, um Ihre Sitzung zu aktualisieren, und versuchen Sie es erneut.", + "verified": "Verifiziert", + "verify": "Verifizieren", + "verify_email_error": "Fehler bei der E-Mail-Bestätigung. \nVersuchen Sie es in ein paar Minuten noch einmal.", + "verify_email_success": "E-Mail-Bestätigung gesendet!", + "documentation_link": "Dokumentation", + "launch_account_connections": "Kontoverbindungen starten", + "launch_administration_panel": "Administrationseinstellungen öffnen", + "no_verified_email_warning": "Sie müssen über eine verifizierte E-Mail-Adresse verfügen, um die Zwei-Faktor-Authentifizierung zu aktivieren.", + "social_auth_desc": "Aktivieren oder deaktivieren Sie soziale und OIDC-Authentifizierungsanbieter für Ihr Konto. \nMit diesen Verbindungen können Sie sich bei selbst gehosteten Authentifizierungsidentitätsanbietern wie Authentik oder Drittanbietern wie GitHub anmelden.", + "social_auth_desc_2": "Diese Einstellungen werden auf dem AdventureLog-Server verwaltet und müssen vom Administrator manuell aktiviert werden.", + "add_email": "E-Mail hinzufügen", + "password_disable_warning": "Derzeit ist die Kennwortauthentifizierung deaktiviert. \nAnmelden Sie über einen sozialen oder OIDC -Anbieter erforderlich.", + "password_disabled": "Kennwortauthentifizierung deaktiviert", + "password_disabled_error": "Fehler beim Deaktivieren der Kennwortauthentifizierung. \nStellen Sie sicher, dass ein sozialer oder OIDC -Anbieter mit Ihrem Konto verknüpft ist.", + "password_enabled": "Kennwortauthentifizierung aktiviert", + "password_enabled_error": "Fehler zur Kennwortauthentifizierung.", + "access_restricted": "Zugang eingeschränkt", + "access_restricted_desc": "Yadministrative Funktionen stehen den Mitarbeitern nur zur Verfügung.", + "add_new_email": "Neue E -Mail hinzufügen", + "add_new_email_address": "Neue E -Mail -Adresse hinzufügen", + "admin": "Administrator", + "admin_panel_desc": "Greifen Sie auf die vollständige Verwaltungsschnittstelle zu", + "administration": "Verwaltung", + "administration_desc": "Verwaltungswerkzeuge und Einstellungen", + "advanced": "Fortschrittlich", + "advanced_settings": "Erweiterte Einstellungen", + "advanced_settings_desc": "Erweiterte Konfigurations- und Entwicklungstools", + "all_rights_reserved": "Alle Rechte vorbehalten.", + "app_version": "App -Version", + "connected": "Verbunden", + "debug_information": "Informationen debuggen", + "disabled": "Deaktiviert", + "disconnected": "Getrennt", + "email_management": "E -Mail -Management", + "email_management_desc": "Verwalten Sie Ihre E -Mail -Adressen und den Überprüfungsstatus", + "emails": "E -Mails", + "enabled": "Ermöglicht", + "enter_current_password": "Geben Sie das aktuelle Passwort ein", + "enter_first_name": "Geben Sie Ihren Vornamen ein", + "enter_last_name": "Geben Sie Ihren Nachnamen ein", + "enter_new_email": "Geben Sie eine neue E -Mail -Adresse ein", + "enter_new_password": "Geben Sie ein neues Passwort ein", + "enter_username": "Geben Sie Ihren Benutzernamen ein", + "integrations": "Integrationen", + "integrations_desc": "Verbinden Sie externe Dienste, um Ihre Erfahrung zu verbessern", + "license": "Lizenz", + "mfa_desc": "Fügen Sie Ihrem Konto eine zusätzliche Sicherheitsebene hinzu", + "mfa_is_enabled": "MFA ist aktiviert", + "pass_change_desc": "Aktualisieren Sie Ihr Kontokennwort für eine bessere Sicherheit", + "password_auth": "Passwortauthentifizierung", + "password_login_disabled": "Passwort Login deaktiviert", + "password_login_enabled": "Passwort Login aktiviert", + "profile_info": "Profilinformationen", + "public_profile_desc": "Machen Sie Ihr Profil für andere Benutzer sichtbar", + "quick_actions": "Schnelle Aktionen", + "region_updates": "Regionen Updates", + "region_updates_desc": "Update besuchte Regionen und Städte", + "regular_user": "Regulärer Benutzer", + "security": "Sicherheit", + "settings_menu": "Einstellungsmenü", + "social_auth": "Sozialauthentifizierung", + "social_auth_desc_1": "Verwalten Sie die Optionen für soziale Anmeldungen und Kennworteinstellungen", + "social_auth_setup": "Social Authentication Setup", + "staff_status": "Personalstatus", + "staff_user": "Personalbenutzer", + "profile_info_desc": "Aktualisieren Sie Ihre persönlichen Daten und Ihr Profilbild", + "invalid_credentials": "Ungültige Anmeldeinformationen" + }, + "checklist": { + "checklist_delete_error": "Fehler beim Löschen der Checkliste", + "checklist_deleted": "Checkliste gelöscht!", + "checklist_editor": "Checklisten-Editor", + "checklist_public": "Diese Checkliste ist öffentlich, da sie sich in einer öffentlichen Sammlung befindet.", + "item": "Eintrag", + "item_already_exists": "Dieser Eintrag existiert bereits", + "item_cannot_be_empty": "Der Eintrag darf nicht leer sein", + "items": "Einträge", + "new_item": "Neuer Eintrag", + "new_checklist": "Neue Checkliste" + }, + "collection": { + "collection_created": "Sammlung erfolgreich erstellt!", + "collection_edit_success": "Sammlung erfolgreich bearbeitet!", + "create": "Erstellen", + "error_creating_collection": "Fehler beim Erstellen der Sammlung", + "error_editing_collection": "Fehler beim Bearbeiten der Sammlung", + "new_collection": "Neue Sammlung", + "public_collection": "Öffentliche Sammlung", + "manage_collections": "Sammlungen verwalten", + "archived_appear_here": "Archivierte Sammlungen werden hier erscheinen.", + "create_first": "Erstellen Sie Ihre erste Sammlung, um Ihre Abenteuer und Erinnerungen zu organisieren.", + "make_sure_public": "Stellen Sie sicher, dass Ihr Profil öffentlich ist, damit andere mit Ihnen teilen können.", + "no_archived_collections": "Keine archivierten Sammlungen.", + "no_collections_yet": "Noch keine Sammlungen", + "no_shared_collections": "Keine gemeinsamen Sammlungen.", + "shared_collections": "Gemeinsame Sammlungen", + "available": "Verfügbar", + "linked": "Verknüpft", + "try_different_search": "Versuchen Sie eine andere Suche oder Filter." + }, + "notes": { + "add_a_link": "Fügen Sie einen Link hinzu", + "content": "Inhalt", + "editing_note": "Bearbeitungsnotiz", + "failed_to_save": "Notiz konnte nicht gespeichert werden", + "note_delete_error": "Fehler beim Löschen der Notiz", + "note_deleted": "Notiz erfolgreich gelöscht!", + "note_editor": "Notizeditor", + "note_public": "Diese Notiz ist öffentlich, da sie sich in einer öffentlichen Sammlung befindet.", + "open": "Öffnen", + "save": "Speichern", + "invalid_url": "Ungültige URL", + "note_viewer": "Notizenbetrachter" + }, + "transportation": { + "edit": "Bearbeiten", + "edit_transportation": "Verkehrsmittel bearbeiten", + "flight_number": "Flugnummer", + "from_location": "Vom Standort", + "modes": { + "bike": "Fahrrad", + "boat": "Boot", + "bus": "Bus", + "walking": "Gehen", + "car": "Auto", + "other": "Andere", + "plane": "Flugzeug", + "train": "Zug" + }, + "transportation_delete_error": "Fehler beim Löschen des Verkehrsmittels", + "transportation_deleted": "Verkehrsmittel erfolgreich gelöscht!", + "type": "Typ", + "new_transportation": "Neues Verkehrsmittel", + "to_location": "Zum Standort", + "ending_airport_desc": "Geben Sie den Flughafencode des Zielflughafens ein (z. B. LAX)", + "fetch_location_information": "Standortinformationen abrufen", + "starting_airport_desc": "Geben Sie den Flughafencode des Startflughafens ein (z. B. JFK)" + }, + "search": { + "adventurelog_results": "AdventureLog-Ergebnisse", + "online_results": "Online-Ergebnisse", + "public_adventures": "Öffentliche Abenteuer" + }, + "map": { + "add_adventure": "Neues Abenteuer hinzufügen", + "add_adventure_at_marker": "Neues Abenteuer bei Marker hinzufügen", + "adventure_map": "Abenteuerkarte", + "clear_marker": "Markierung löschen", + "map_options": "Kartenoptionen", + "show_visited_regions": "Besuchte Regionen anzeigen", + "view_details": "Details anzeigen", + "adventure_stats": "Abenteuerstatistiken", + "adventures_shown": "Abenteuer gezeigt", + "completion": "Fertigstellung", + "display_options": "Anzeigenoptionen", + "map_controls": "Kartensteuerungen", + "marker_placed_on_map": "Marker auf der Karte platziert", + "place_marker_desc": "Klicken Sie auf die Karte, um einen Marker zu platzieren, oder fügen Sie ein Abenteuer ohne Ort hinzu.", + "regions": "Regionen" + }, + "languages": {}, + "share": { + "no_users_shared": "Keine Benutzer geteilt mit", + "not_shared_with": "Nicht geteilt mit", + "share_desc": "Sammlung mit anderen Benutzern teilen.", + "shared": "Geteilt", + "shared_with": "Geteilt mit", + "unshared": "Nicht geteilt", + "with": "mit", + "go_to_settings": "Gehe zu Einstellungen", + "no_shared_found": "Es wurden keine Sammlungen gefunden, die mit Ihnen geteilt wurden.", + "set_public": "Damit Benutzer Inhalte mit Ihnen teilen können, muss Ihr Profil auf „Öffentlich“ gesetzt sein." + }, + "profile": { + "member_since": "Mitglied seit", + "user_stats": "Benutzerstatistiken", + "visited_countries": "Besuchte Länder", + "visited_regions": "Besuchte Regionen", + "visited_cities": "Besuchte Städte", + "discovered": "entdeckt", + "explored": "erkundet", + "no_shared_adventures": "Dieser Benutzer hat noch keine öffentlichen Abenteuer geteilt.", + "no_shared_collections": "Dieser Benutzer hat noch keine öffentlichen Sammlungen geteilt.", + "planned_trips": "Geplante Reisen", + "public_adventure_experiences": "Öffentliche Abenteuererlebnisse", + "travel_statistics": "Reisestatistik", + "your_journey_at_a_glance": "Ihre Abenteuerreise auf einen Blick" + }, + "categories": { + "category_name": "Kategoriename", + "edit_category": "Kategorie bearbeiten", + "icon": "Symbol", + "manage_categories": "Kategorien verwalten", + "no_categories_found": "Keine Kategorien gefunden.", + "select_category": "Kategorie wählen", + "update_after_refresh": "Die Abenteuerkarten werden aktualisiert, sobald Sie die Seite aktualisieren.", + "add_new_category": "Neue Kategorie hinzufügen", + "name_required": "Der Kategorienname ist erforderlich" + }, + "dashboard": { + "add_some": "Warum nicht gleich Ihr nächstes Abenteuer planen? Sie können ein neues Abenteuer hinzufügen, indem Sie auf den Button unten klicken.", + "countries_visited": "Besuchte Länder", + "no_recent_adventures": "Keine aktuellen Abenteuer?", + "recent_adventures": "Aktuelle Abenteuer", + "total_adventures": "Abenteuer insgesamt", + "total_visited_regions": "Insgesamt besuchte Regionen", + "welcome_back": "Willkommen zurück", + "total_visited_cities": "Insgesamt besuchte Städte", + "document_some_adventures": "Dokumentieren Sie Ihre Reisen und bauen Sie Ihre persönliche Abenteuerkarte auf!", + "view_all": "Alle anzeigen", + "welcome_text_1": "Du warst dran", + "welcome_text_2": "Abenteuer bisher", + "welcome_text_3": "Erkunden und dokumentieren Sie Ihre Reisen!" + }, + "immich": { + "api_key": "Immich-API-Schlüssel", + "api_note": "Hinweis: Dies muss die URL zum Immich-API-Server sein, daher endet sie wahrscheinlich mit /api, es sei denn, Sie haben eine benutzerdefinierte Konfiguration.", + "disable": "Deaktivieren", + "immich": "Immich", + "immich_disabled": "Immich-Integration deaktiviert!", + "immich_error": "Fehler beim aktualisieren der Immich-Integration", + "integration_fetch_error": "Fehler beim Abrufen der Daten aus der Immich-Integration", + "load_more": "Mehr laden", + "no_items_found": "Keine Artikel gefunden", + "server_url": "Immich-Server-URL", + "update_integration": "Integration updaten", + "localhost_note": "Hinweis: localhost wird höchstwahrscheinlich nicht funktionieren, es sei denn, Sie haben Docker-Netzwerke entsprechend eingerichtet. \nEs wird empfohlen, die IP-Adresse des Servers oder den Domänennamen zu verwenden.", + "api_key_placeholder": "Geben Sie Ihren Immich -API -Schlüssel ein", + "enable_integration": "Integration aktivieren", + "immich_integration_desc": "Schließen Sie Ihren Immich -Photo -Management -Server an", + "need_help": "Benötigen Sie Hilfe bei der Einrichtung? \nSchauen Sie sich das an", + "connection_error": "Fehler, die eine Verbindung zum Immich -Server herstellen", + "copy_locally": "Kopieren Sie Bilder lokal", + "copy_locally_desc": "Kopieren Sie Bilder auf den Server für den Offline -Zugriff. \nNutzt mehr Speicherplatz.", + "error_saving_image": "Fehler speichern Bild", + "integration_already_exists": "Es gibt bereits eine Immichintegration. \nSie können jeweils nur eine Integration haben.", + "integration_not_found": "Immich -Integration nicht gefunden. \nBitte erstellen Sie eine neue Integration.", + "network_error": "Netzwerkfehler beim Verbindung mit dem Immich -Server. \nBitte überprüfen Sie Ihre Verbindung und versuchen Sie es erneut.", + "validation_error": "Bei der Validierung der Immichintegration trat ein Fehler auf. \nBitte überprüfen Sie Ihre Server -URL- und API -Schlüssel." + }, + "recomendations": { + "recommendation": "Empfehlung", + "recommendations": "Empfehlungen", + "adventure_recommendations": "Abenteuerempfehlungen", + "food": "Essen", + "tourism": "Tourismus" + }, + "lodging": { + "apartment": "Wohnung", + "bnb": "Bed & Breakfast", + "cabin": "Hütte", + "campground": "Campingplatz", + "edit": "Bearbeiten", + "edit_lodging": "Unterkunft bearbeiten", + "hostel": "Hostel", + "hotel": "Hotel", + "house": "Haus", + "motel": "Motel", + "new_lodging": "Neue Unterkunft", + "other": "Sonstige", + "reservation_number": "Reservierungsnummer", + "resort": "Ferienanlage", + "villa": "Villa" + }, + "google_maps": { + "google_maps_integration_desc": "Verbinden Sie Ihr Google Maps-Konto, um hochwertige Suchergebnisse und Empfehlungen für Standort zu erhalten." + }, + "calendar": { + "all_categories": "Alle Kategorien", + "all_day_event": "Ganztägige Veranstaltung", + "calendar_overview": "Kalenderübersicht", + "categories": "Kategorien", + "day": "Tag", + "events_scheduled": "Veranstaltungen geplant", + "filter_by_category": "Filter nach Kategorie", + "filtered_results": "Gefilterte Ergebnisse", + "month": "Monat", + "today": "Heute", + "total_events": "Gesamtereignisse", + "week": "Woche" + } +} diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json new file mode 100644 index 0000000..31c0614 --- /dev/null +++ b/frontend/src/locales/en.json @@ -0,0 +1,711 @@ +{ + "navbar": { + "adventures": "Adventures", + "collections": "Collections", + "worldtravel": "World Travel", + "map": "Map", + "users": "Users", + "search": "Search", + "profile": "Profile", + "greeting": "Hi", + "my_adventures": "My Adventures", + "my_tags": "My Tags", + "tag": "Tag", + "shared_with_me": "Shared With Me", + "settings": "Settings", + "logout": "Logout", + "about": "About AdventureLog", + "documentation": "Documentation", + "language_selection": "Language", + "support": "Support", + "calendar": "Calendar", + "theme_selection": "Theme Selection", + "admin_panel": "Admin Panel", + "themes": { + "light": "Light", + "dark": "Dark", + "night": "Night", + "forest": "Forest", + "aestheticLight": "Aesthetic Light", + "aestheticDark": "Aesthetic Dark", + "aqua": "Aqua", + "northernLights": "Northern Lights", + "dim": "Dim" + } + }, + "about": { + "about": "About", + "license": "Licensed under the GPL-3.0 License.", + "source_code": "Source Code", + "message": "Made with ❤️ in the United States.", + "oss_attributions": "Open Source Attributions", + "nominatim_1": "Location Search and Geocoding is provided by", + "nominatim_2": "Their data is liscensed under the ODbL license.", + "other_attributions": "Additional attributions can be found in the README file.", + "generic_attributions": "Login to AdventureLog to view attributions for enabled integrations and services.", + "close": "Close" + }, + "home": { + "hero_1": "Discover the World's Most Thrilling Adventures", + "hero_2": "Discover and plan your next adventure with AdventureLog. Explore breathtaking destinations, create custom itineraries, and stay connected on the go.", + "go_to": "Go To AdventureLog", + "key_features": "Key Features", + "desc_1": "Discover, Plan, and Explore with Ease", + "desc_2": "AdventureLog is designed to simplify your journey, providing you with the tools and resources to plan, pack, and navigate your next unforgettable adventure.", + "feature_1": "Travel Log", + "feature_1_desc": "Keep track of your adventures with a personalized travel log and share your experiences with friends and family.", + "feature_2": "Trip Planning", + "feature_2_desc": "Easily create custom itineraries and get a day-by-day breakdown of your trip.", + "feature_3": "Travel Map", + "feature_3_desc": "View your travels throughout the world with an interactive map and explore new destinations.", + "start_your_journey": "Start Your Journey", + "of_world": "of the world", + "explore_world": "Explore World", + "latest_travel_experiences": "Your latest travel experiences" + }, + "adventures": { + "collection_remove_success": "Adventure removed from collection successfully!", + "collection_remove_error": "Error removing adventure from collection", + "collection_link_success": "Adventure linked to collection successfully!", + "invalid_date_range": "Invalid date range", + "timezone": "Timezone", + "no_visits": "No visits", + "departure_timezone": "Departure Timezone", + "arrival_timezone": "Arrival Timezone", + "departure_date": "Departure Date", + "arrival_date": "Arrival Date", + "no_image_found": "No image found", + "collection_link_error": "Error linking adventure to collection", + "adventure_delete_confirm": "Are you sure you want to delete this adventure? This action cannot be undone.", + "checklist_delete_confirm": "Are you sure you want to delete this checklist? This action cannot be undone.", + "note_delete_confirm": "Are you sure you want to delete this note? This action cannot be undone.", + "transportation_delete_confirm": "Are you sure you want to delete this transportation? This action cannot be undone.", + "lodging_delete_confirm": "Are you sure you want to delete this lodging location? This action cannot be undone.", + "delete_checklist": "Delete Checklist", + "delete_note": "Delete Note", + "delete_transportation": "Delete Transportation", + "delete_lodging": "Delete Lodging", + "open_details": "Open Details", + "edit_adventure": "Edit Adventure", + "remove_from_collection": "Remove from Collection", + "add_to_collection": "Add to Collection", + "delete": "Delete", + "not_found": "Adventure not found", + "not_found_desc": "The adventure you were looking for could not be found. Please try a different adventure or check back later.", + "homepage": "Homepage", + "collection": "Collection", + "longitude": "Longitude", + "latitude": "Latitude", + "visit": "Visit", + "timed": "Timed", + "check_in": "Check In", + "check_out": "Check Out", + "coordinates": "Coordinates", + "copy_coordinates": "Copy Coordinates", + "visits": "Visits", + "create_new": "Create New...", + "adventure": "Adventure", + "count_txt": "results matching your search", + "sort": "Sort", + "order_by": "Order By", + "order_direction": "Order Direction", + "ascending": "Ascending", + "descending": "Descending", + "updated": "Updated", + "name": "Name", + "date": "Date", + "activity_types": "Activity Types", + "tags": "Tags", + "add_a_tag": "Add a tag", + "date_constrain": "Constrain to collection dates", + "rating": "Rating", + "my_images": "My Images", + "no_images": "No Images", + "distance": "Distance", + "share_adventure": "Share this Adventure!", + "share_collection": "Share this Collection!", + "copy_link": "Copy Link", + "sun_times": "Sun Times", + "sunrise": "Sunrise", + "sunset": "Sunset", + "image": "Image", + "upload_image": "Upload Image", + "open_in_maps": "Open in Maps", + "url": "URL", + "fetch_image": "Fetch Image", + "wikipedia": "Wikipedia", + "add_notes": "Add notes", + "warning": "Warning", + "my_adventures": "My Adventures", + "no_linkable_adventures": "No adventures found that can be linked to this collection.", + "add": "Add", + "save_next": "Save & Next", + "end_date": "End Date", + "start_date": "Start Date", + "remove": "Remove", + "location": "Location", + "search_for_location": "Search for a location", + "clear_map": "Clear map", + "search_results": "Search results", + "collection_no_start_end_date": "Adding a start and end date to the collection will unlock itinerary planning features in the collection page.", + "no_results": "No results found", + "wiki_desc": "Pulls excerpt from Wikipedia article matching the name of the adventure.", + "attachments": "Attachments", + "attachment": "Attachment", + "images": "Images", + "generate_desc": "Generate Description", + "public_adventure": "Public Adventure", + "location_information": "Location Information", + "link": "Link", + "links": "Links", + "description": "Description", + "sources": "Sources", + "collection_adventures": "Include Collection Adventures", + "filter": "Filter", + "category_filter": "Category Filter", + "category": "Category", + "clear": "Clear", + "my_collections": "My Collections", + "open_filters": "Open Filters", + "archived_collections": "Archived Collections", + "share": "Share", + "private": "Private", + "public": "Public", + "archived": "Archived", + "name_location": "name, location", + "loading_adventures": "Loading adventures...", + "all_adventures_already_linked": "All adventures are already linked to this collection.", + "edit_collection": "Edit Collection", + "unarchive": "Unarchive", + "archive": "Archive", + "no_collections_found": "No collections found to add this adventure to.", + "create_collection_first": "Create a collection first to organize your adventures and memories.", + "done": "Done", + "adventures_available": "Adventures Available", + "collections_linked": "Collections Linked", + "not_visited": "Not Visited", + "archived_collection_message": "Collection archived successfully!", + "unarchived_collection_message": "Collection unarchived successfully!", + "delete_collection_success": "Collection deleted successfully!", + "cancel": "Cancel", + "delete_collection_warning": "Are you sure you want to delete this collection? This action cannot be undone.", + "delete_collection": "Delete Collection", + "delete_adventure": "Delete Adventure", + "adventure_delete_success": "Adventure deleted successfully!", + "visited": "Visited", + "planned": "Planned", + "duration": "Duration", + "all": "All", + "image_removed_success": "Image removed successfully!", + "image_removed_error": "Error removing image", + "no_image_url": "No image found at that URL.", + "image_upload_success": "Image uploaded successfully!", + "image_upload_error": "Error uploading image", + "dates": "Dates", + "wiki_image_error": "Error fetching image from Wikipedia", + "start_before_end_error": "Start date must be before end date", + "actions": "Actions", + "see_adventures": "See Adventures", + "image_fetch_failed": "Failed to fetch image", + "no_location": "Please enter a location", + "no_description_found": "No description found", + "adventure_created": "Adventure created", + "adventure_create_error": "Failed to create adventure", + "lodging": "Lodging", + "create_adventure": "Create Adventure", + "adventure_updated": "Adventure updated", + "adventure_update_error": "Failed to update adventure", + "set_to_pin": "Set to Pin", + "category_fetch_error": "Error fetching categories", + "new_adventure": "New Adventure", + "basic_information": "Basic Information", + "no_adventures_to_recommendations": "No adventures found. Add at least one adventure to get recommendations.", + "display_name": "Display Name", + "adventure_not_found": "There are no adventures to display. Add some using the plus button at the bottom right or try changing filters!", + "collection_contents": "Collection Contents", + "no_adventures_found": "No adventures found", + "no_adventures_message": "Start documenting your adventures and planning new ones. Every journey has a story worth telling.", + "mark_visited": "Mark Visited", + "error_updating_regions": "Error updating regions", + "regions_updated": "regions updated", + "cities_updated": "cities updated", + "visited_region_check": "Visited Region Check", + "visited_region_check_desc": "By selecting this, the server will check all of your visited adventures and mark the regions they are located in as visited in world travel.", + "update_visited_regions": "Update Visited Regions", + "update_visited_regions_disclaimer": "This may take a while depending on the number of adventures you have visited.", + "link_new": "Link New...", + "add_new": "Add New...", + "transportation": "Transportation", + "note": "Note", + "checklist": "Checklist", + "collection_archived": "This collection has been archived.", + "visit_link": "Visit Link", + "collection_completed": "You've completed this collection!", + "collection_stats": "Collection Stats", + "keep_exploring": "Keep Exploring!", + "linked_adventures": "Linked Adventures", + "notes": "Notes", + "checklists": "Checklists", + "transportations": "Transportations", + "adventure_calendar": "Adventure Calendar", + "day": "Day", + "itineary_by_date": "Itinerary by Date", + "nothing_planned": "Nothing planned for this day. Enjoy the journey!", + "copied_to_clipboard": "Copied to clipboard!", + "copy_failed": "Copy failed", + "show": "Show", + "hide": "Hide", + "clear_location": "Clear Location", + "starting_airport": "Starting Airport", + "view_profile": "View Profile", + "joined": "Joined", + "ending_airport": "Ending Airport", + "no_location_found": "No location found", + "from": "From", + "to": "To", + "will_be_marked": "will be marked as visited once the adventure is saved.", + "start": "Start", + "end": "End", + "emoji_picker": "Emoji Picker", + "download_calendar": "Download Calendar", + "all_day": "All Day", + "ordered_itinerary": "Ordered Itinerary", + "itinerary": "Itinerary", + "all_linked_items": "All Linked Items", + "date_itinerary": "Date Itinerary", + "no_ordered_items": "Add items with dates to the collection to see them here.", + "date_information": "Date Information", + "flight_information": "Flight Information", + "out_of_range": "Not in itinerary date range", + "preview": "Preview", + "finding_recommendations": "Discovering hidden gems for your next adventure", + "location_details": "Location Details", + "city": "City", + "region": "Region", + "md_instructions": "Write your markdown here...", + "days": "days", + "attachment_upload_success": "Attachment uploaded successfully!", + "attachment_upload_error": "Error uploading attachment", + "upload": "Upload", + "attachment_delete_success": "Attachment deleted successfully!", + "attachment_update_success": "Attachment updated successfully!", + "attachment_name": "Attachment Name", + "gpx_tip": "Upload GPX files to attachments to view them on the map!", + "attachment_update_error": "Error updating attachment", + "activities": {}, + "lodging_information": "Lodging Information", + "price": "Price", + "reservation_number": "Reservation Number", + "filters_and_sort": "Filters & Sort", + "filters_and_stats": "Filters & Stats", + "travel_progress": "Travel Progress" + }, + "worldtravel": { + "country_list": "Country List", + "num_countries": "countries found", + "cities_in": "Cities in", + "all": "All", + "partially_visited": "Partially Visited", + "not_visited": "Not Visited", + "completely_visited": "Completely Visited", + "all_subregions": "All Subregions", + "clear_search": "Clear Search", + "no_countries_found": "No countries found", + "no_countries_found_desc": "Try adjusting your search terms or filters to find the countries you're looking for.", + "clear_filters": "Clear Filters", + "view_cities": "View Cities", + "no_cities_found": "No cities found", + "visit_to": "Visit to", + "region_failed_visited": "Failed to mark region as visited", + "failed_to_mark_visit": "Failed to mark visit to", + "visit_remove_failed": "Failed to remove visit", + "removed": "removed", + "failed_to_remove_visit": "Failed to remove visit to", + "marked_visited": "marked as visited", + "regions_in": "Regions in", + "cities": "cities", + "remaining": "Remaining", + "of": "of", + "countries": "countries", + "show_map": "Show Map", + "hide_map": "Hide Map", + "complete": "Complete", + "partial": "Partial", + "clear_all": "Clear All", + "no_country_data_available": "No country data available", + "no_country_data_available_desc": "Please check the documentation for updating region data.", + "total_countries": "Total Countries", + "available_to_explore": "Available to Explore", + "progress": "Progress", + "filter_by_region": "Filter by Region", + "all_regions": "All Regions", + "clear_all_filters": "Clear All Filters", + "total_items": "Total Items", + "filter_by": "Filter by", + "interactive_map": "Interactive Map", + "no_regions_found": "No regions found", + "progress_and_stats": "Progress & Stats", + "total_regions": "Total Regions", + "country_completed": "Country completed", + "show_map_labels": "Show Map Labels", + "hide_map_labels": "Hide Map Labels", + "total_cities": "Total Cities", + "region_completed": "Region completed", + "newest_first": "Newest First", + "oldest_first": "Oldest First", + "visited_first": "Visited First", + "unvisited_first": "Unvisited First" + }, + "auth": { + "username": "Username", + "password": "Password", + "forgot_password": "Forgot Password?", + "signup": "Signup", + "login_error": "Unable to login with the provided credentials.", + "login": "Login", + "email": "Email", + "first_name": "First Name", + "last_name": "Last Name", + "confirm_password": "Confirm Password", + "registration_disabled": "Registration is currently disabled.", + "profile_picture": "Profile Picture", + "public_profile": "Public Profile", + "public_tooltip": "With a public profile, users can share collections with you and view your profile on the users page.", + "new_password": "New Password (6+ characters)", + "or_3rd_party": "Or login with a third-party service", + "no_public_adventures": "No public adventures found", + "no_public_collections": "No public collections found", + "user_adventures": "User Adventures", + "user_collections": "User Collections" + }, + "users": { + "no_users_found": "No users found with public profiles." + }, + "settings": { + "update_error": "Error updating settings", + "update_success": "Settings updated successfully!", + "settings_page": "Settings Page", + "account_settings": "User Account Settings", + "update": "Update", + "no_verified_email_warning": "You must have a verified email address to enable two-factor authentication.", + "social_auth": "Social Authentication", + "social_auth_desc_1": "Manage social login options and password settings", + "password_auth": "Password Authentication", + "password_login_enabled": "Password login enabled", + "password_login_disabled": "Password login disabled", + "password_change": "Change Password", + "new_password": "New Password", + "confirm_new_password": "Confirm New Password", + "email_change": "Change Email", + "no_email_set": "No email set", + "email_management": "Email Management", + "email_management_desc": "Manage your email addresses and verification status", + "add_new_email": "Add New Email", + "add_new_email_address": "Add New Email Address", + "enter_new_email": "Enter new email address", + "new_email": "New Email", + "change_password": "Change Password", + "reset_password": "Reset Password", + "possible_reset": "If the email address you provided is associated with an account, you will receive an email with instructions to reset your password!", + "about_this_background": "About this background", + "photo_by": "Photo by", + "join_discord": "Join the Discord", + "join_discord_desc": "to share your own photos. Post them in the #travel-share channel.", + "current_password": "Current Password", + "password_change_lopout_warning": "You will be logged out after changing your password.", + "generic_error": "An error occurred while processing your request.", + "email_removed": "Email removed successfully!", + "email_removed_error": "Error removing email", + "verify_email_success": "Email verification sent successfully!", + "verify_email_error": "Error verifying email. Try again in a few minutes.", + "email_added": "Email added successfully!", + "email_set_primary": "Email set as primary successfully!", + "email_set_primary_error": "Error setting email as primary", + "verified": "Verified", + "primary": "Primary", + "not_verified": "Not Verified", + "make_primary": "Make Primary", + "verify": "Verify", + "no_emai_set": "No email set", + "mfa_disabled": "Multi-factor authentication disabled successfully!", + "mfa_page_title": "Multi-Factor Authentication", + "mfa_desc": "Add an extra layer of security to your account", + "enable_mfa": "Enable MFA", + "disable_mfa": "Disable MFA", + "enabled": "Enabled", + "disabled": "Disabled", + "mfa_not_enabled": "MFA is not enabled", + "mfa_is_enabled": "MFA is enabled", + "mfa_enabled": "Multi-factor authentication enabled successfully!", + "copy": "Copy", + "recovery_codes": "Recovery Codes", + "recovery_codes_desc": "These are your recovery codes. Keep them safe. You will not be able to see them again.", + "reset_session_error": "Please logout and back in to refresh your session and try again.", + "authenticator_code": "Authenticator Code", + "email_verified": "Email verified successfully!", + "email_verified_success": "Your email has been verified. You can now log in.", + "email_verified_error": "Error verifying email", + "email_verified_erorr_desc": "Your email could not be verified. Please try again.", + "launch_administration_panel": "Launch Administration Panel", + "administration": "Administration", + "admin_panel_desc": "Access the full administration interface", + "region_updates": "Region Updates", + "debug_information": "Debug Information", + "staff_status": "Staff Status", + "staff_user": "Staff User", + "regular_user": "Regular User", + "app_version": "App Version", + "quick_actions": "Quick Actions", + "license": "License", + "all_rights_reserved": "All rights reserved.", + "region_updates_desc": "Update visited regions and cities", + "access_restricted": "Access Restricted", + "access_restricted_desc": "Administrative features are only available to staff members.", + "advanced_settings": "Advanced Settings", + "advanced_settings_desc": "Advanced configuration and development tools", + "social_auth_setup": "Social Authentication Setup", + "administration_desc": "Administrative tools and settings", + "social_auth_desc": "Enable or disable social and OIDC authentication providers for your account. These connections allow you to sign in with self hosted authentication identity providers like Authentik or 3rd party providers like GitHub.", + "social_auth_desc_2": "These settings are managed in the AdventureLog server and must be manually enabled by the administrator.", + "documentation_link": "Documentation Link", + "launch_account_connections": "Launch Account Connections", + "add_email": "Add Email", + "password_enabled": "Password authentication enabled", + "password_disabled": "Password authentication disabled", + "password_disable_warning": "Currently, password authentication is disabled. Login via a social or OIDC provider is required.", + "password_disabled_error": "Error disabling password authentication. Make sure a social or OIDC provider is linked to your account.", + "password_enabled_error": "Error enabling password authentication.", + "settings_menu": "Settings Menu", + "security": "Security", + "emails": "Emails", + "integrations": "Integrations", + "integrations_desc": "Connect external services to enhance your experience", + "admin": "Admin", + "advanced": "Advanced", + "profile_info": "Profile Information", + "profile_info_desc": "Update your personal details and profile picture", + "public_profile_desc": "Make your profile visible to other users", + "pass_change_desc": "Update your account password for better security", + "enter_first_name": "Enter your first name", + "enter_last_name": "Enter your last name", + "enter_username": "Enter your username", + "enter_current_password": "Enter current password", + "enter_new_password": "Enter new password", + "connected": "Connected", + "disconnected": "Disconnected", + "invalid_credentials": "Invalid credentials" + }, + "collection": { + "collection_created": "Collection created successfully!", + "error_creating_collection": "Error creating collection", + "new_collection": "New Collection", + "create": "Create", + "collection_edit_success": "Collection edited successfully!", + "error_editing_collection": "Error editing collection", + "public_collection": "Public Collection", + "manage_collections": "Manage Collections", + "no_collections_yet": "No collections yet", + "no_shared_collections": "No shared collections.", + "shared_collections": "Shared Collections", + "no_archived_collections": "No archived collections.", + "create_first": "Create your first collection to organize your adventures and memories.", + "make_sure_public": "Make sure your profile is public so others can share with you.", + "archived_appear_here": "Archived collections will appear here.", + "linked": "Linked", + "available": "Available", + "try_different_search": "Try a different search or filter." + }, + "notes": { + "note_deleted": "Note deleted successfully!", + "note_delete_error": "Error deleting note", + "open": "Open", + "failed_to_save": "Failed to save note", + "note_editor": "Note Editor", + "note_viewer": "Note Viewer", + "editing_note": "Editing note", + "content": "Content", + "save": "Save", + "note_public": "This note is public because it is in a public collection.", + "add_a_link": "Add a link", + "invalid_url": "Invalid URL" + }, + "checklist": { + "checklist_deleted": "Checklist deleted successfully!", + "checklist_delete_error": "Error deleting checklist", + "checklist_editor": "Checklist Editor", + "new_checklist": "New Checklist", + "item": "Item", + "items": "Items", + "new_item": "New Item", + "checklist_public": "This checklist is public because it is in a public collection.", + "item_cannot_be_empty": "Item cannot be empty", + "item_already_exists": "Item already exists" + }, + "transportation": { + "transportation_deleted": "Transportation deleted successfully!", + "transportation_delete_error": "Error deleting transportation", + "type": "Type", + "new_transportation": "New Transportation", + "flight_number": "Flight Number", + "from_location": "From Location", + "to_location": "To Location", + "fetch_location_information": "Fetch Location Information", + "starting_airport_desc": "Enter starting airport code (e.g., JFK)", + "ending_airport_desc": "Enter ending airport code (e.g., LAX)", + "edit": "Edit", + "modes": { + "car": "Car", + "plane": "Plane", + "train": "Train", + "bus": "Bus", + "boat": "Boat", + "bike": "Bike", + "walking": "Walking", + "other": "Other" + }, + "edit_transportation": "Edit Transportation" + }, + "lodging": { + "new_lodging": "New Lodging", + "edit": "Edit", + "edit_lodging": "Edit Lodging", + "hotel": "Hotel", + "hostel": "Hostel", + "resort": "Resort", + "bnb": "Bed and Breakfast", + "campground": "Campground", + "cabin": "Cabin", + "apartment": "Apartment", + "house": "House", + "villa": "Villa", + "motel": "Motel", + "other": "Other", + "reservation_number": "Reservation Number" + }, + "search": { + "adventurelog_results": "AdventureLog Results", + "public_adventures": "Public Adventures", + "online_results": "Online Results" + }, + "map": { + "view_details": "View Details", + "adventure_map": "Adventure Map", + "map_options": "Map Options", + "show_visited_regions": "Show Visited Regions", + "add_adventure_at_marker": "Add New Adventure at Marker", + "clear_marker": "Clear Marker", + "add_adventure": "Add New Adventure", + "adventure_stats": "Adventure Stats", + "map_controls": "Map Controls", + "regions": "Regions", + "completion": "Completion", + "display_options": "Display Options", + "marker_placed_on_map": "Marker placed on map", + "place_marker_desc": "Click on the map to place a marker, or add an adventure without location.", + "adventures_shown": "adventures shown" + }, + "share": { + "shared": "Shared", + "with": "with", + "unshared": "Unshared", + "share_desc": "Share this collection with other users.", + "shared_with": "Shared With", + "no_users_shared": "No users shared with", + "not_shared_with": "Not Shared With", + "no_shared_found": "No collections found that are shared with you.", + "set_public": "In order to allow users to share with you, you need your profile set to public.", + "go_to_settings": "Go to settings" + }, + "languages": {}, + "profile": { + "member_since": "Member since", + "user_stats": "User Stats", + "visited_countries": "Visited Countries", + "visited_regions": "Visited Regions", + "visited_cities": "Visited Cities", + "travel_statistics": "Travel Statistics", + "your_journey_at_a_glance": "Your adventure journey at a glance", + "planned_trips": "Planned trips", + "discovered": "discovered", + "explored": "explored", + "public_adventure_experiences": "Public adventure experiences", + "no_shared_adventures": "This user hasn't shared any public adventures yet.", + "no_shared_collections": "This user hasn't shared any public collections yet." + }, + "categories": { + "manage_categories": "Manage Categories", + "no_categories_found": "No categories found.", + "edit_category": "Edit Category", + "icon": "Icon", + "update_after_refresh": "The adventure cards will be updated once you refresh the page.", + "select_category": "Select Category", + "category_name": "Category Name", + "add_new_category": "Add New Category", + "name_required": "Category name is required" + }, + "dashboard": { + "welcome_back": "Welcome back", + "countries_visited": "Countries Visited", + "total_adventures": "Total Adventures", + "total_visited_regions": "Total Visited Regions", + "total_visited_cities": "Total Visited Cities", + "recent_adventures": "Recent Adventures", + "no_recent_adventures": "No recent adventures?", + "add_some": "Why not start planning your next adventure? You can add a new adventure by clicking the button below.", + "document_some_adventures": "Start documenting your travels and build your personal adventure map!", + "view_all": "View All", + "welcome_text_1": "You've been on", + "welcome_text_2": "adventures so far", + "welcome_text_3": "Keep exploring and documenting your travels!" + }, + "immich": { + "immich": "Immich", + "integration_fetch_error": "Error fetching data from the Immich integration", + "no_items_found": "No items found", + "load_more": "Load More", + "immich_error": "Error updating Immich integration", + "immich_disabled": "Immich integration disabled successfully!", + "disable": "Disable", + "server_url": "Immich Server URL", + "api_note": "Note: this must be the URL to the Immich API server so it likely ends with /api unless you have a custom config.", + "api_key": "Immich API Key", + "enable_integration": "Enable Integration", + "update_integration": "Update Integration", + "immich_integration_desc": "Connect your Immich photo management server", + "localhost_note": "Note: localhost will most likely not work unless you have setup docker networks accordingly. It is recommended to use the IP address of the server or the domain name.", + "api_key_placeholder": "Enter your Immich API key", + "need_help": "Need help setting this up? Check out the", + "copy_locally": "Copy Images Locally", + "copy_locally_desc": "Copy images to the server for offline access. Uses more disk space.", + "error_saving_image": "Error saving image", + "connection_error": "Error connecting to Immich server", + "integration_already_exists": "An Immich integration already exists. You can only have one integration at a time.", + "integration_not_found": "Immich integration not found. Please create a new integration.", + "validation_error": "An error occurred while validating the Immich integration. Please check your server URL and API key.", + "network_error": "Network error while connecting to the Immich server. Please check your connection and try again." + }, + "google_maps": { + "google_maps_integration_desc": "Connect your Google Maps account to get high-quality location search results and recommendations." + }, + "recomendations": { + "recommendation": "Recommendation", + "recommendations": "Recommendations", + "adventure_recommendations": "Adventure Recommendations", + "food": "Food", + "tourism": "Tourism" + }, + "calendar": { + "today": "Today", + "month": "Month", + "week": "Week", + "day": "Day", + "events_scheduled": "events scheduled", + "total_events": "Total Events", + "all_categories": "All Categories", + "calendar_overview": "Calendar Overview", + "categories": "Categories", + "filtered_results": "Filtered Results", + "filter_by_category": "Filter by Category", + "all_day_event": "All Day Event" + } +} diff --git a/frontend/src/locales/es.json b/frontend/src/locales/es.json new file mode 100644 index 0000000..fcf8502 --- /dev/null +++ b/frontend/src/locales/es.json @@ -0,0 +1,711 @@ +{ + "navbar": { + "adventures": "Aventuras", + "collections": "Colecciones", + "worldtravel": "Viajar por el Mundo", + "map": "Mapa", + "users": "Usuarios", + "search": "Buscar", + "profile": "Perfil", + "greeting": "Hola", + "my_adventures": "Mis Aventuras", + "shared_with_me": "Compartido Conmigo", + "settings": "Ajustes", + "logout": "Cerrar Sesión", + "about": "Acerca de AdventureLog", + "documentation": "Documentación", + "theme_selection": "Selección de Tema", + "themes": { + "aestheticDark": "Oscuro estético", + "aestheticLight": "Luz estética", + "aqua": "Agua", + "dark": "Oscuro", + "dim": "Oscuro", + "forest": "Bosque", + "light": "Luz", + "night": "Noche", + "northernLights": "Aurora del norte" + }, + "my_tags": "Mis etiquetas", + "tag": "Etiqueta", + "language_selection": "Idioma", + "support": "Soporte", + "calendar": "Calendario", + "admin_panel": "Panel de administración" + }, + "about": { + "about": "Acerca de", + "license": "Licenciado bajo la Licencia GPL-3.0.", + "source_code": "Código Fuente", + "message": "Hecho con ❤️ en los Estados Unidos.", + "oss_attributions": "Atribuciones de Código Abierto", + "nominatim_1": "La búsqueda de ubicaciones y geocodificación es proporcionada por", + "nominatim_2": "Sus datos están licenciados bajo la licencia ODbL.", + "other_attributions": "Atribuciones adicionales se pueden encontrar en el archivo README.", + "close": "Cerrar", + "generic_attributions": "Inicie sesión en AdventureLog para ver las atribuciones para integraciones y servicios habilitados." + }, + "home": { + "hero_1": "Descubre las Aventuras Más Emocionantes del Mundo", + "hero_2": "Descubre y planifica tu próxima aventura con AdventureLog. Explora destinos impresionantes, crea itinerarios personalizados y mantente conectado en todo momento.", + "go_to": "Ir a AdventureLog", + "key_features": "Características Clave", + "desc_1": "Descubre, Planifica y Explora Fácilmente", + "desc_2": "AdventureLog está diseñado para simplificar tu viaje, brindándote las herramientas y recursos para planificar, hacer la maleta y recorrer tu próxima aventura inolvidable.", + "feature_1": "Registro de Viajes", + "feature_1_desc": "Mantén un registro de tus aventuras con un diario de viaje personalizado y comparte tus experiencias con amigos y familiares.", + "feature_2": "Planificación de Viajes", + "feature_2_desc": "Crea fácilmente itinerarios personalizados y obtén un desglose diario de tu viaje.", + "feature_3": "Mapa de Viaje", + "feature_3_desc": "Visualiza tus viajes por el mundo con un mapa interactivo y explora nuevos destinos.", + "start_your_journey": "Empiece tu viaje", + "explore_world": "Explorar el mundo", + "latest_travel_experiences": "Tus últimas experiencias de viaje", + "of_world": "del mundo" + }, + "adventures": { + "collection_remove_success": "¡Aventura eliminada de la colección con éxito!", + "collection_remove_error": "Error al eliminar la aventura de la colección", + "collection_link_success": "¡Aventura vinculada a la colección con éxito!", + "collection_link_error": "Error al vincular la aventura a la colección", + "adventure_delete_confirm": "¿Estás seguro de que quieres eliminar esta aventura? Esta acción no se puede deshacer.", + "open_details": "Abrir Detalles", + "edit_adventure": "Editar Aventura", + "remove_from_collection": "Eliminar de la Colección", + "add_to_collection": "Añadir a la Colección", + "delete": "Eliminar", + "activities": {}, + "no_image_found": "No se encontró ninguna imagen", + "collection": "Colección", + "homepage": "Página principal", + "latitude": "Latitud", + "longitude": "Longitud", + "not_found": "Aventura no encontrada", + "not_found_desc": "La aventura que buscabas no se pudo encontrar. \nPruebe una aventura diferente o vuelva a consultar más tarde.", + "visit": "Visita", + "visits": "Visitas", + "adventure": "Aventura", + "count_txt": "resultados que coinciden con su búsqueda", + "create_new": "Crear nuevo...", + "ascending": "Ascendente", + "collection_adventures": "Incluir aventuras de colección", + "date": "Fecha", + "descending": "Descendente", + "filter": "Filtrar", + "name": "Nombre", + "order_by": "Ordenar por", + "order_direction": "Dirección del pedido", + "rating": "Clasificación", + "sort": "Ordenar", + "sources": "Fuentes", + "updated": "Actualizado", + "category_filter": "Filtro de categoría", + "clear": "Limpiar", + "archived_collections": "Colecciones archivadas", + "my_collections": "Mis colecciones", + "open_filters": "Abrir filtros", + "private": "Privado", + "public": "Público", + "archived_collection_message": "¡Colección archivada exitosamente!", + "delete_collection": "Eliminar colección", + "delete_collection_success": "¡Colección eliminada exitosamente!", + "unarchived_collection_message": "¡Colección desarchivada exitosamente!", + "archive": "Archivo", + "archived": "Archivado", + "edit_collection": "Editar colección", + "share": "Compartir", + "unarchive": "Desarchivar", + "cancel": "Cancelar", + "adventure_delete_success": "¡Aventura eliminada con éxito!", + "delete_adventure": "Eliminar aventura", + "planned": "Planificado", + "visited": "Visitado", + "dates": "Fechas", + "duration": "Duración", + "image_removed_error": "Error al eliminar la imagen", + "image_removed_success": "¡Imagen eliminada exitosamente!", + "image_upload_error": "Error al subir la imagen", + "image_upload_success": "¡Imagen cargada exitosamente!", + "no_image_url": "No se encontró ninguna imagen en esa URL.", + "start_before_end_error": "La fecha de inicio debe ser anterior a la fecha de finalización.", + "wiki_image_error": "Error al obtener la imagen de Wikipedia", + "actions": "Acciones", + "see_adventures": "Ver Aventuras", + "activity_types": "Tipos de actividad", + "add": "Agregar", + "add_notes": "Agregar notas", + "adventure_create_error": "No se pudo crear la aventura", + "adventure_created": "Aventura creada", + "adventure_update_error": "No se pudo actualizar la aventura", + "adventure_updated": "Aventura actualizada", + "basic_information": "Información básica", + "category": "Categoría", + "clear_map": "Limpiar mapa", + "copy_link": "Copiar enlace", + "date_constrain": "Restringir a las fechas de la colección", + "description": "Descripción", + "end_date": "Fecha de finalización", + "fetch_image": "Buscar imagen", + "generate_desc": "Generar descripción", + "image": "Imagen", + "image_fetch_failed": "No se pudo recuperar la imagen", + "link": "Enlace", + "location": "Ubicación", + "location_information": "Información de ubicación", + "my_images": "Mis imágenes", + "new_adventure": "Nueva aventura", + "no_description_found": "No se encontró ninguna descripción", + "no_images": "Sin imágenes", + "no_location": "Por favor ingresa una ubicación", + "no_results": "No se encontraron resultados", + "public_adventure": "Aventura pública", + "remove": "Eliminar", + "save_next": "Guardar y Siguiente", + "search_for_location": "Buscar una ubicación", + "search_results": "Resultados de búsqueda", + "share_adventure": "¡Comparte esta aventura!", + "start_date": "Fecha de inicio", + "upload_image": "Subir imagen", + "url": "URL", + "warning": "Advertencia", + "wiki_desc": "Extrae un extracto de un artículo de Wikipedia que coincide con el nombre de la aventura.", + "wikipedia": "Wikipedia", + "adventure_not_found": "No hay aventuras que mostrar. \n¡Agregue algunas usando el botón más en la parte inferior derecha o intente cambiar los filtros!", + "no_adventures_found": "No se encontraron aventuras", + "no_collections_found": "No se encontraron colecciones para agregar esta aventura.", + "my_adventures": "Mis aventuras", + "no_linkable_adventures": "No se encontraron aventuras que puedan vincularse a esta colección.", + "mark_visited": "Marcar como visitado", + "not_visited": "No visitado", + "all": "Todo", + "error_updating_regions": "Error al actualizar regiones", + "regions_updated": "regiones actualizadas", + "update_visited_regions": "Actualizar regiones visitadas", + "update_visited_regions_disclaimer": "Esto puede llevar un tiempo dependiendo de la cantidad de aventuras que hayas visitado.", + "visited_region_check": "Verificación de región visitada", + "visited_region_check_desc": "Al seleccionar esto, el servidor verificará todas sus aventuras visitadas y marcará las regiones en las que se encuentran como visitadas en viajes mundiales.", + "add_new": "Agregar nuevo...", + "checklist": "Lista de tareas", + "checklists": "Listas de tareas", + "collection_archived": "Esta colección ha sido archivada.", + "collection_completed": "¡Has completado esta colección!", + "collection_stats": "Estadísticas de colección", + "days": "días", + "itineary_by_date": "Itinerario por fecha", + "keep_exploring": "¡Sigue explorando!", + "link_new": "Vincula una Nueva...", + "linked_adventures": "Aventuras vinculadas", + "links": "Enlaces", + "note": "Nota", + "notes": "Notas", + "nothing_planned": "Nada planeado para este día. \n¡Disfruta el viaje!", + "transportation": "Transporte", + "transportations": "Transportes", + "visit_link": "Visitar enlace", + "day": "Día", + "add_a_tag": "Agregar una etiqueta", + "tags": "Etiquetas", + "set_to_pin": "Establecer en Marcador", + "category_fetch_error": "Error al buscar categorías", + "copied_to_clipboard": "¡Copiado al portapapeles!", + "copy_failed": "Copia fallida", + "adventure_calendar": "Calendario de aventuras", + "emoji_picker": "Selector de emojis", + "hide": "Ocultar", + "show": "Mostrar", + "download_calendar": "Descargar Calendario", + "md_instructions": "Escriba aquí con markdown...", + "preview": "Vista Previa", + "checklist_delete_confirm": "¿Está seguro de que desea eliminar esta lista de tareas? \nEsta acción no se puede deshacer.", + "clear_location": "Borrar ubicación", + "date_information": "Información de fecha", + "delete_checklist": "Eliminar lista de tareas", + "delete_note": "Eliminar nota", + "delete_transportation": "Eliminar transporte", + "end": "Fin", + "ending_airport": "Aeropuerto final", + "flight_information": "Información de vuelo", + "from": "De", + "no_location_found": "No se encontró ninguna ubicación", + "note_delete_confirm": "¿Estás seguro de que deseas eliminar esta nota? \nEsta acción no se puede deshacer.", + "out_of_range": "No en el rango de fechas del itinerario", + "start": "Comenzar", + "starting_airport": "Aeropuerto de inicio", + "to": "A", + "transportation_delete_confirm": "¿Está seguro de que desea eliminar este transporte? \nEsta acción no se puede deshacer.", + "will_be_marked": "se marcará como visitado una vez guardada la aventura.", + "cities_updated": "ciudades actualizadas", + "create_adventure": "Crear aventura", + "no_adventures_to_recommendations": "No se encontraron aventuras. \nAñade al menos una aventura para obtener recomendaciones.", + "finding_recommendations": "Descubriendo gemas ocultas para tu próxima aventura", + "attachment": "Adjunto", + "attachment_delete_success": "¡El archivo adjunto se eliminó exitosamente!", + "attachment_update_error": "Error al actualizar el archivo adjunto", + "attachment_update_success": "¡Adjunto actualizado exitosamente!", + "attachment_upload_error": "Error al cargar el archivo adjunto", + "attachment_upload_success": "¡El archivo adjunto se cargó exitosamente!", + "attachments": "Adjuntos", + "gpx_tip": "¡Sube archivos GPX a archivos adjuntos para verlos en el mapa!", + "images": "Imágenes", + "upload": "Subir", + "attachment_name": "Nombre del archivo adjunto", + "city": "Ciudad", + "delete_lodging": "Eliminar alojamiento", + "display_name": "Nombre para mostrar", + "location_details": "Detalles de la ubicación", + "lodging": "Alojamiento", + "lodging_delete_confirm": "¿Estás seguro de que quieres eliminar este lugar de alojamiento? \nEsta acción no se puede deshacer.", + "lodging_information": "Información de alojamiento", + "price": "Precio", + "region": "Región", + "reservation_number": "Número de reserva", + "open_in_maps": "Abrir en mapas", + "all_day": "Todo el día", + "collection_no_start_end_date": "Agregar una fecha de inicio y finalización a la colección desbloqueará las funciones de planificación del itinerario en la página de colección.", + "date_itinerary": "Itinerario de fecha", + "no_ordered_items": "Agregue elementos con fechas a la colección para verlos aquí.", + "ordered_itinerary": "Itinerario ordenado", + "invalid_date_range": "Rango de fechas no válido", + "timezone": "Zona horaria", + "no_visits": "No hay visitas", + "arrival_timezone": "Zona horaria de llegada", + "departure_timezone": "Zona horaria de salida", + "arrival_date": "Fecha de llegada", + "departure_date": "Fecha de salida", + "coordinates": "Coordenadas", + "copy_coordinates": "Coordenadas de copia", + "sun_times": "Horarios del Sol", + "sunrise": "Amanecer", + "sunset": "Atardecer", + "timed": "Cronometrado", + "distance": "Distancia", + "all_linked_items": "Todos los artículos vinculados", + "itinerary": "Itinerario", + "joined": "Unido", + "view_profile": "Ver perfil", + "share_collection": "¡Comparte esta colección!", + "filters_and_sort": "Filtros", + "no_adventures_message": "Comience a documentar sus aventuras y planificar nuevas. \nCada viaje tiene una historia que vale la pena contar.", + "filters_and_stats": "Filtros", + "travel_progress": "Progreso del viaje", + "adventures_available": "Aventuras disponibles", + "all_adventures_already_linked": "Todas las aventuras ya están vinculadas a esta colección.", + "collections_linked": "Colecciones vinculadas", + "create_collection_first": "Cree una colección primero para organizar sus aventuras y recuerdos.", + "delete_collection_warning": "¿Estás seguro de que quieres eliminar esta colección? \nEsta acción no se puede deshacer.", + "done": "Hecho", + "loading_adventures": "Cargando aventuras ...", + "name_location": "Nombre, ubicación", + "collection_contents": "Contenido de la colección", + "check_in": "Registrarse", + "check_out": "Verificar" + }, + "worldtravel": { + "all": "Todo", + "all_subregions": "Todas las subregiones", + "clear_search": "Borrar búsqueda", + "completely_visited": "Visitado completamente", + "no_countries_found": "No se encontraron países", + "not_visited": "No visitado", + "num_countries": "países encontrados", + "partially_visited": "Parcialmente visitado", + "country_list": "Lista de países", + "cities": "ciudades", + "failed_to_mark_visit": "No se pudo marcar la visita a", + "failed_to_remove_visit": "No se pudo eliminar la visita a", + "marked_visited": "marcado como visitado", + "no_cities_found": "No se encontraron ciudades", + "region_failed_visited": "No se pudo marcar la región como visitada", + "regions_in": "Regiones en", + "removed": "eliminado", + "view_cities": "Ver ciudades", + "visit_remove_failed": "No se pudo eliminar la visita", + "visit_to": "Visita a", + "cities_in": "Ciudades en", + "clear_all": "Despejar todo", + "clear_filters": "Filtros claros", + "complete": "Completo", + "countries": "países", + "hide_map": "Cerrar mapa", + "no_countries_found_desc": "Intente ajustar sus términos de búsqueda o filtros para encontrar los países que está buscando.", + "no_country_data_available": "No hay datos de país disponibles", + "no_country_data_available_desc": "Consulte la documentación para actualizar los datos de la región.", + "of": "de", + "partial": "Parcial", + "remaining": "Restante", + "show_map": "Abrir mapa", + "all_regions": "Todas las regiones", + "available_to_explore": "Disponible para explorar", + "clear_all_filters": "Borrar todos los filtros", + "filter_by_region": "Filtrar por región", + "progress": "Progreso", + "total_countries": "Total de países", + "country_completed": "País completado", + "filter_by": "Filtrar", + "hide_map_labels": "Ocultar etiquetas de mapa", + "interactive_map": "Mapa interactivo", + "no_regions_found": "No se encontraron regiones", + "progress_and_stats": "Progreso", + "show_map_labels": "Mostrar etiquetas de mapa", + "total_regions": "Total de regiones", + "region_completed": "Región completada", + "total_cities": "Ciudades totales", + "newest_first": "El primero primero", + "oldest_first": "El más antiguo primero", + "unvisited_first": "Primero no visitado", + "visited_first": "Visitado primero", + "total_items": "Total de artículos" + }, + "auth": { + "forgot_password": "¿Has olvidado tu contraseña?", + "login": "Acceso", + "login_error": "No se puede iniciar sesión con las credenciales proporcionadas.", + "password": "Contraseña", + "signup": "Inscribirse", + "username": "Nombre de usuario", + "confirm_password": "Confirmar Contraseña", + "email": "Correo electrónico", + "first_name": "Nombre", + "last_name": "Apellidos", + "registration_disabled": "El registro está actualmente deshabilitado.", + "profile_picture": "Foto de perfil", + "public_profile": "Perfil público", + "public_tooltip": "Con un perfil público, los usuarios pueden compartir colecciones con usted y ver su perfil en la página de usuarios.", + "new_password": "Nueva contraseña", + "or_3rd_party": "O inicie sesión con un servicio de terceros", + "no_public_adventures": "No se encontraron aventuras públicas", + "no_public_collections": "No se encontraron colecciones públicas", + "user_adventures": "Aventuras de usuario", + "user_collections": "Colecciones de usuarios" + }, + "users": { + "no_users_found": "No se encontraron usuarios con perfiles públicos." + }, + "settings": { + "account_settings": "Configuración de cuenta de usuario", + "confirm_new_password": "Confirmar nueva contraseña", + "email_change": "Cambiar correo electrónico", + "new_email": "Nuevo correo electrónico", + "new_password": "Nueva contraseña", + "no_email_set": "No hay correo electrónico configurado", + "password_change": "Cambiar la contraseña", + "settings_page": "Página de configuración", + "update": "Actualizar", + "update_error": "Error al actualizar la configuración", + "update_success": "¡La configuración se actualizó correctamente!", + "change_password": "Cambiar la contraseña", + "possible_reset": "Si la dirección de correo electrónico que proporcionó está asociada con una cuenta, recibirá un correo electrónico con instrucciones para restablecer su contraseña.", + "reset_password": "Restablecer contraseña", + "about_this_background": "Sobre este fondo", + "join_discord": "Únete a Discord", + "join_discord_desc": "para compartir tus propias fotos. Publícalos en el canal de #travel-share", + "photo_by": "Foto por", + "current_password": "Contraseña actual", + "password_change_lopout_warning": "Se cerrará su sesión después de cambiar su contraseña.", + "generic_error": "Se produjo un error al procesar su solicitud.", + "email_added": "¡Correo electrónico añadido exitosamente!", + "email_removed": "¡El correo electrónico se eliminó correctamente!", + "email_removed_error": "Error al eliminar el correo electrónico", + "email_set_primary": "¡El correo electrónico se configuró como principal correctamente!", + "email_set_primary_error": "Error al configurar el correo electrónico como principal", + "make_primary": "Hacer primario", + "not_verified": "No verificado", + "primary": "Principal", + "verified": "Verificado", + "verify": "Verificar", + "verify_email_error": "Error al verificar el correo electrónico. \nInténtalo de nuevo en unos minutos.", + "verify_email_success": "¡La verificación por correo electrónico se envió correctamente!", + "disable_mfa": "Deshabilitar MFA", + "enable_mfa": "Habilitar MFA", + "mfa_disabled": "¡La autenticación multifactor se deshabilitó correctamente!", + "mfa_not_enabled": "MFA no está habilitado", + "mfa_page_title": "Autenticación multifactor", + "copy": "Copiar", + "mfa_enabled": "¡La autenticación multifactor se habilitó correctamente!", + "recovery_codes": "Códigos de recuperación", + "recovery_codes_desc": "Estos son tus códigos de recuperación. \nMantenlos a salvo. \nNo podrás volver a verlos.", + "reset_session_error": "Por favor cierre sesión y vuelva a iniciarla para actualizar su sesión e inténtelo nuevamente.", + "authenticator_code": "Código de autenticación", + "email_verified": "¡Correo electrónico verificado exitosamente!", + "email_verified_error": "Error al verificar el correo electrónico", + "email_verified_success": "Su correo electrónico ha sido verificado. \nAhora puedes iniciar sesión.", + "documentation_link": "Enlace de documentación", + "launch_account_connections": "Iniciar conexiones de cuenta", + "launch_administration_panel": "Iniciar el panel de administración", + "no_verified_email_warning": "Debe tener una dirección de correo electrónico verificada para habilitar la autenticación de dos factores.", + "social_auth_desc": "Habilite o deshabilite los proveedores de autenticación social y OIDC para su cuenta. \nEstas conexiones le permiten iniciar sesión con proveedores de identidad de autenticación autohospedados como Authentik o proveedores externos como GitHub.", + "social_auth_desc_2": "Estas configuraciones se administran en el servidor AdventureLog y el administrador debe habilitarlas manualmente.", + "add_email": "Agregar correo electrónico", + "password_disable_warning": "Actualmente, la autenticación de contraseña está deshabilitada. \nIniciar sesión a través de un proveedor social o OIDC se requiere.", + "password_disabled": "Autenticación de contraseña deshabilitada", + "password_disabled_error": "Error al deshabilitar la autenticación de contraseña. \nAsegúrese de que un proveedor social o OIDC esté vinculado a su cuenta.", + "password_enabled": "Autenticación de contraseña habilitada", + "password_enabled_error": "Error al habilitar la autenticación de contraseña.", + "admin": "Administración", + "advanced": "Avanzado", + "disabled": "Desactivado", + "emails": "Correos electrónicos", + "enabled": "Activado", + "enter_current_password": "Ingrese la contraseña actual", + "enter_first_name": "Ingrese su primer nombre", + "enter_last_name": "Ingrese su apellido", + "enter_new_password": "Ingrese una nueva contraseña", + "enter_username": "Ingrese su nombre de usuario", + "integrations": "Integración", + "mfa_desc": "Agregue una capa adicional de seguridad a su cuenta", + "mfa_is_enabled": "MFA está habilitado", + "pass_change_desc": "Actualice la contraseña de su cuenta para una mejor seguridad", + "password_auth": "Autenticación de contraseña", + "password_login_disabled": "Inicio de sesión de contraseña deshabilitado", + "password_login_enabled": "Inicio de sesión de contraseña habilitado", + "profile_info": "Información de perfil", + "profile_info_desc": "Actualice sus datos personales y su foto de perfil", + "public_profile_desc": "Haga que su perfil sea visible para otros usuarios", + "security": "Seguridad", + "settings_menu": "Menú Configuración", + "social_auth": "Autenticación social", + "social_auth_desc_1": "Administrar opciones de inicio de sesión sociales y configuración de contraseña", + "add_new_email": "Agregar nuevo correo electrónico", + "add_new_email_address": "Agregar nueva dirección de correo electrónico", + "email_management": "Administración de correo electrónico", + "email_management_desc": "Administre sus direcciones de correo electrónico y estado de verificación", + "enter_new_email": "Ingrese una nueva dirección de correo electrónico", + "access_restricted": "Acceso restringido", + "access_restricted_desc": "Las características administrativas solo están disponibles para los miembros del personal.", + "admin_panel_desc": "Acceder a la interfaz de administración completa", + "administration": "Administración", + "administration_desc": "Herramientas y configuraciones administrativas", + "advanced_settings": "Configuración avanzada", + "advanced_settings_desc": "Herramientas avanzadas de configuración y desarrollo", + "app_version": "Versión de la aplicación", + "connected": "Conectado", + "debug_information": "Información de depuración", + "disconnected": "Desconectado", + "integrations_desc": "Conecte los servicios externos para mejorar su experiencia", + "quick_actions": "Acciones rápidas", + "region_updates": "Actualizaciones de región", + "region_updates_desc": "Actualizar regiones y ciudades visitadas", + "regular_user": "Usuario básico", + "social_auth_setup": "Configuración de autenticación social", + "staff_status": "Estado del personal", + "staff_user": "Usuario de personal", + "license": "Licencia", + "all_rights_reserved": "Reservados todos los derechos.", + "email_verified_erorr_desc": "Su correo electrónico no pudo ser verificado. \nPor favor intente de nuevo.", + "no_emai_set": "Sin conjunto de correo electrónico", + "invalid_credentials": "Credenciales no válidas" + }, + "checklist": { + "checklist_delete_error": "Error al eliminar la lista de tareas", + "checklist_deleted": "¡Lista de tareas eliminada exitosamente!", + "checklist_editor": "Editor de lista de tareas", + "checklist_public": "Esta lista de tareas es pública porque se encuentra en una colección pública.", + "item": "Elemento", + "item_already_exists": "El elemento ya existe", + "item_cannot_be_empty": "El elemento no puede estar vacío", + "items": "Elementos", + "new_item": "Nuevo artículo", + "new_checklist": "Nueva lista de verificación" + }, + "collection": { + "collection_created": "¡Colección creada con éxito!", + "collection_edit_success": "¡Colección editada con éxito!", + "create": "Crear", + "error_creating_collection": "Error al crear la colección", + "error_editing_collection": "Error al editar la colección", + "new_collection": "Nueva colección", + "public_collection": "Colección pública", + "manage_collections": "Gestionar colecciones", + "archived_appear_here": "Las colecciones archivadas aparecerán aquí.", + "create_first": "Cree su primera colección para organizar sus aventuras y recuerdos.", + "make_sure_public": "Asegúrese de que su perfil sea público para que otros puedan compartir con usted.", + "no_archived_collections": "No hay colecciones archivadas.", + "no_collections_yet": "Todavía no hay colecciones", + "no_shared_collections": "No hay colecciones compartidas.", + "shared_collections": "Colecciones compartidas", + "available": "Disponible", + "linked": "Vinculado", + "try_different_search": "Pruebe una búsqueda o filtro diferente." + }, + "notes": { + "add_a_link": "Agregar un enlace", + "content": "Contenido", + "editing_note": "Editando nota", + "failed_to_save": "No se pudo guardar la nota", + "note_delete_error": "Error al eliminar la nota", + "note_deleted": "¡Nota eliminada exitosamente!", + "note_editor": "Editor de notas", + "note_public": "Esta nota es pública porque está en una colección pública.", + "open": "Abrir", + "save": "Guardar", + "invalid_url": "URL no válida", + "note_viewer": "Visor de notas" + }, + "transportation": { + "modes": { + "bus": "Autobús", + "bike": "Bicicleta", + "boat": "Barco", + "car": "Coche", + "other": "Otro", + "plane": "Avión", + "train": "Tren", + "walking": "Caminando" + }, + "new_transportation": "Nuevo transporte", + "to_location": "A la ubicación", + "transportation_deleted": "¡Transporte eliminado exitosamente!", + "type": "Tipo", + "edit": "Editar", + "edit_transportation": "Editar Transporte", + "flight_number": "Número de vuelo", + "from_location": "Desde la ubicación", + "transportation_delete_error": "Error al eliminar el transporte", + "ending_airport_desc": "Ingrese el código de aeropuerto final (por ejemplo, LAX)", + "fetch_location_information": "Información de ubicación para obtener", + "starting_airport_desc": "Ingrese el código de aeropuerto inicial (por ejemplo, JFK)" + }, + "search": { + "adventurelog_results": "Resultados del registro de aventuras", + "online_results": "Resultados en línea", + "public_adventures": "Aventuras públicas" + }, + "map": { + "add_adventure": "Agregar nueva aventura", + "add_adventure_at_marker": "Agregar nueva aventura en Marker", + "adventure_map": "Mapa de aventuras", + "clear_marker": "Borrar marcador", + "map_options": "Opciones de mapa", + "show_visited_regions": "Mostrar regiones visitadas", + "view_details": "Ver detalles", + "adventure_stats": "Estadísticas de aventura", + "completion": "Terminación", + "display_options": "Opciones de visualización", + "map_controls": "Controles de mapa", + "marker_placed_on_map": "Marcador colocado en el mapa", + "place_marker_desc": "Haga clic en el mapa para colocar un marcador o agregar una aventura sin ubicación.", + "regions": "Regiones", + "adventures_shown": "aventuras mostradas" + }, + "share": { + "no_users_shared": "Ningún usuario compartió con", + "not_shared_with": "No compartido con", + "share_desc": "Comparte esta colección con otros usuarios.", + "shared": "Compartido", + "shared_with": "Compartido con", + "unshared": "Incompartible", + "with": "con", + "go_to_settings": "Ir a configuración", + "no_shared_found": "No se encontraron colecciones que se compartan contigo.", + "set_public": "Para permitir que los usuarios compartan contenido con usted, necesita que su perfil esté configurado como público." + }, + "languages": {}, + "profile": { + "member_since": "Miembro desde", + "user_stats": "Estadísticas de usuario", + "visited_countries": "Países visitados", + "visited_regions": "Regiones visitadas", + "visited_cities": "Ciudades Visitadas", + "discovered": "descubierto", + "explored": "explorado", + "no_shared_adventures": "Este usuario aún no ha compartido ninguna aventura pública.", + "no_shared_collections": "Este usuario aún no ha compartido ninguna colección pública.", + "planned_trips": "Viajes planificados", + "public_adventure_experiences": "Experiencias de aventura pública", + "travel_statistics": "Estadísticas de viaje", + "your_journey_at_a_glance": "Tu viaje de aventura a un vistazo" + }, + "categories": { + "category_name": "Nombre de categoría", + "edit_category": "Editar categoría", + "icon": "Icono", + "manage_categories": "Administrar categorías", + "no_categories_found": "No se encontraron categorías.", + "select_category": "Seleccionar categoría", + "update_after_refresh": "Las tarjetas de aventuras se actualizarán una vez que actualices la página.", + "add_new_category": "Agregar nueva categoría", + "name_required": "Se requiere el nombre de la categoría" + }, + "dashboard": { + "add_some": "¿Por qué no empezar a planificar tu próxima aventura? \nPuedes agregar una nueva aventura haciendo clic en el botón de abajo.", + "countries_visited": "Países visitados", + "no_recent_adventures": "¿Sin aventuras recientes?", + "recent_adventures": "Aventuras recientes", + "total_adventures": "Aventuras totales", + "total_visited_regions": "Total de regiones visitadas", + "welcome_back": "Bienvenido de nuevo", + "total_visited_cities": "Total de ciudades visitadas", + "document_some_adventures": "¡Comience a documentar sus viajes y construya su mapa de aventura personal!", + "view_all": "Ver todo", + "welcome_text_1": "Has estado en", + "welcome_text_2": "Aventuras hasta ahora", + "welcome_text_3": "¡Sigue explorando y documentando tus viajes!" + }, + "immich": { + "api_key": "Clave API de Immich", + "api_note": "Nota: esta debe ser la URL del servidor API de Immich, por lo que probablemente termine con /api a menos que tenga una configuración personalizada.", + "disable": "Desactivar", + "immich": "Immich", + "immich_disabled": "¡La integración de Immich se deshabilitó exitosamente!", + "immich_error": "Error al actualizar la integración de Immich", + "integration_fetch_error": "Error al obtener datos de la integración de Immich", + "load_more": "Cargar más", + "no_items_found": "No se encontraron elementos", + "server_url": "URL del servidor Immich", + "update_integration": "Integración de actualización", + "localhost_note": "Nota: lo más probable es que localhost no funcione a menos que haya configurado las redes acoplables en consecuencia. \nSe recomienda utilizar la dirección IP del servidor o el nombre de dominio.", + "api_key_placeholder": "Ingrese su clave de API Immich", + "enable_integration": "Habilitar la integración", + "immich_integration_desc": "Conecte su servidor de administración de fotos de Immich", + "need_help": "¿Necesita ayuda para configurar esto? \nMira el", + "connection_error": "Error al conectarse al servidor Immich", + "copy_locally": "Copiar imágenes localmente", + "copy_locally_desc": "Copie imágenes al servidor para obtener acceso fuera de línea. \nUtiliza más espacio en disco.", + "error_saving_image": "Error al guardar la imagen", + "integration_already_exists": "Ya existe una integración Immich. \nSolo puedes tener una integración a la vez.", + "integration_not_found": "Integración Immich no encontrada. \nPor favor cree una nueva integración.", + "network_error": "Error de red mientras se conecta al servidor Immich. \nVerifique su conexión y vuelva a intentarlo.", + "validation_error": "Se produjo un error al validar la integración de Immich. \nVerifique la URL y la tecla API de su servidor." + }, + "recomendations": { + "recommendation": "Recomendación", + "recommendations": "Recomendaciones", + "adventure_recommendations": "Recomendaciones de aventura", + "food": "Comida", + "tourism": "Turismo" + }, + "lodging": { + "apartment": "Apartamento", + "bnb": "Cama y desayuno", + "cabin": "Cabina", + "campground": "Terreno de camping", + "edit": "Editar", + "hostel": "Albergue", + "hotel": "Hotel", + "house": "Casa", + "motel": "Motel", + "new_lodging": "Nuevo alojamiento", + "other": "Otro", + "reservation_number": "Número de reserva", + "resort": "Complejo", + "villa": "Villa", + "edit_lodging": "Editar alojamiento" + }, + "google_maps": { + "google_maps_integration_desc": "Conecte su cuenta de Google Maps para obtener resultados y recomendaciones de búsqueda de ubicación de alta calidad." + }, + "calendar": { + "all_categories": "Todas las categorías", + "all_day_event": "Evento todo el día", + "calendar_overview": "Descripción general del calendario", + "categories": "Categorías", + "day": "Día", + "events_scheduled": "Eventos programados", + "filter_by_category": "Filtrar por categoría", + "filtered_results": "Resultados filtrados", + "month": "Mes", + "today": "Hoy", + "total_events": "Total de eventos", + "week": "Semana" + } +} diff --git a/frontend/src/locales/fr.json b/frontend/src/locales/fr.json new file mode 100644 index 0000000..9e61eb8 --- /dev/null +++ b/frontend/src/locales/fr.json @@ -0,0 +1,711 @@ +{ + "about": { + "about": "À propos", + "close": "Fermer", + "license": "Sous licence GPL-3.0.", + "message": "Fabriqué avec ❤️ aux États-Unis.", + "nominatim_1": "La recherche de localisation et le géocodage sont fournis par", + "nominatim_2": "Leurs données sont sous licence ODbL.", + "oss_attributions": "Attributions Open Source", + "other_attributions": "Des attributions supplémentaires peuvent être trouvées dans le fichier README.", + "source_code": "Code source", + "generic_attributions": "Connectez-vous à AdventureLog pour afficher les attributions pour les intégrations et services activés." + }, + "adventures": { + "activities": {}, + "add_to_collection": "Ajouter à la collection", + "adventure_delete_confirm": "Êtes-vous sûr de vouloir supprimer cette aventure ? \nCette action ne peut pas être annulée.", + "collection_link_error": "Erreur lors de la liaison de l'aventure à la collection", + "collection_link_success": "Aventure liée à la collection avec succès !", + "collection_remove_error": "Erreur lors de la suppression de l'aventure de la collection", + "collection_remove_success": "Aventure supprimée de la collection avec succès !", + "delete": "Supprimer", + "edit_adventure": "Modifier l'aventure", + "no_image_found": "Aucune image trouvée", + "open_details": "Ouvrir les détails", + "remove_from_collection": "Supprimer de la collection", + "adventure": "Aventure", + "adventure_delete_success": "Aventure supprimée avec succès !", + "archive": "Archiver", + "archived": "Archivée", + "archived_collection_message": "Collection archivée avec succès !", + "archived_collections": "Collections archivées", + "ascending": "Ascendant", + "cancel": "Annuler", + "category_filter": "Filtres de catégorie", + "clear": "Réinitialiser", + "collection": "Collection", + "collection_adventures": "Inclure les aventures liées à une collection", + "count_txt": "résultats correspondant à votre recherche", + "create_new": "Créer une nouvelle aventure...", + "date": "Date", + "dates": "Dates", + "delete_adventure": "Supprimer l'aventure", + "delete_collection": "Supprimer la collection", + "delete_collection_success": "Collection supprimée avec succès !", + "descending": "Descendant", + "duration": "Durée", + "edit_collection": "Modifier la collection", + "filter": "Filtrer", + "homepage": "Page d'accueil", + "image_removed_error": "Erreur lors de la suppression de l'image", + "image_removed_success": "Image supprimée avec succès !", + "image_upload_error": "Erreur lors du téléchargement de l'image", + "image_upload_success": "Image téléchargée avec succès !", + "latitude": "Latitude", + "longitude": "Longitude", + "my_collections": "Mes collections", + "name": "Nom", + "no_image_url": "Aucune image trouvée à cette URL.", + "not_found": "Aventure introuvable", + "not_found_desc": "L'aventure que vous cherchez est introuvable. \nVeuillez essayer une autre aventure ou revenez plus tard.", + "open_filters": "Ouvrir les filtres", + "order_by": "Trier par", + "order_direction": "Direction du tri", + "planned": "Prévue", + "private": "Privée", + "public": "Publique", + "rating": "Notation", + "share": "Partager", + "sort": "Trier", + "sources": "Sources", + "start_before_end_error": "La date de début doit être antérieure à la date de fin", + "unarchive": "Désarchiver", + "unarchived_collection_message": "Collection désarchivée avec succès !", + "updated": "Mise à jour", + "visit": "Visite", + "visited": "Visitée", + "visits": "Visites", + "wiki_image_error": "Erreur lors de la récupération de l'image depuis Wikipédia", + "actions": "Actions", + "activity_types": "Types d'activités", + "add": "Ajouter", + "add_notes": "Ajouter des notes", + "adventure_create_error": "Échec de la création de l'aventure", + "adventure_created": "Aventure créée", + "adventure_update_error": "Échec de la mise à jour de l'aventure", + "adventure_updated": "Aventure mise à jour", + "basic_information": "Informations de base", + "category": "Catégorie", + "clear_map": "Effacer la carte", + "copy_link": "Copier le lien", + "date_constrain": "Limiter aux dates de la collection", + "description": "Description", + "end_date": "Date de fin", + "fetch_image": "Récupérer une image", + "generate_desc": "Générer une description", + "image": "Image", + "image_fetch_failed": "Échec de la récupération de l'image", + "link": "Lien", + "location": "Lieu", + "location_information": "Informations de localisation", + "my_images": "Mes images", + "new_adventure": "Nouvelle aventure", + "no_description_found": "Aucune description trouvée", + "no_images": "Aucune image", + "no_location": "Veuillez entrer un emplacement", + "no_results": "Aucun résultat trouvé", + "public_adventure": "Aventure publique", + "remove": "Retirer", + "save_next": "Sauvegarder", + "search_for_location": "Rechercher un lieu", + "search_results": "Résultats de la recherche", + "see_adventures": "Voir les aventures", + "share_adventure": "Partagez cette aventure !", + "start_date": "Date de début", + "upload_image": "Télécharger une image", + "url": "URL", + "warning": "Avertissement", + "wiki_desc": "Obtient un extrait de l'article Wikipédia correspondant au nom de l'aventure.", + "wikipedia": "Wikipédia", + "adventure_not_found": "Il n'y a aucune aventure à afficher. \nAjoutez-en en utilisant le bouton '+' en bas à droite ou essayez de changer les filtres !", + "all": "Tous", + "error_updating_regions": "Erreur lors de la mise à jour des régions", + "mark_visited": "Marquer comme visité", + "my_adventures": "Mes aventures", + "no_adventures_found": "Aucune aventure trouvée", + "no_collections_found": "Aucune collection trouvée pour ajouter cette aventure.", + "no_linkable_adventures": "Aucune aventure trouvée pouvant être liée à cette collection.", + "not_visited": "Non visitée", + "regions_updated": "régions mises à jour", + "update_visited_regions": "Mettre à jour les régions visitées", + "update_visited_regions_disclaimer": "Cela peut prendre un certain temps en fonction du nombre d'aventures que vous avez visitées.", + "visited_region_check": "Vérification de la région visitée", + "visited_region_check_desc": "En sélectionnant cette option, le serveur vérifiera toutes vos aventures visitées et marquera les régions correspondantes comme visitées dans la section 'Voyage dans le monde'.", + "add_new": "Ajouter un nouveau...", + "checklists": "Listes de contrôle", + "collection_archived": "Cette collection a été archivée.", + "collection_completed": "Vous avez terminé cette collection !", + "collection_stats": "Statistiques de la collection", + "days": "jours", + "itineary_by_date": "Itinéraire trié par date", + "keep_exploring": "Continuez à explorer !", + "link_new": "Ajouter un lien vers...", + "linked_adventures": "Aventures liées", + "links": "Liens", + "note": "Note", + "notes": "Notes", + "nothing_planned": "Rien de prévu pour cette journée. \nBon voyage !", + "transportation": "Déplacement", + "transportations": "Déplacements", + "visit_link": "Visiter le lien", + "checklist": "Liste de contrôle", + "day": "Jour", + "add_a_tag": "Ajouter une balise", + "tags": "Balises", + "set_to_pin": "Épingler", + "category_fetch_error": "Erreur lors de la récupération des catégories", + "copied_to_clipboard": "Copié dans le presse-papier !", + "copy_failed": "Échec de la copie", + "adventure_calendar": "Calendrier des aventures", + "emoji_picker": "Sélecteur d'émoticônes", + "hide": "Cacher", + "show": "Montrer", + "download_calendar": "Télécharger le calendrier", + "md_instructions": "Écrivez ici au format Markdown...", + "preview": "Aperçu", + "checklist_delete_confirm": "Êtes-vous sûr de vouloir supprimer cette liste de contrôle ? \nCette action ne peut pas être annulée.", + "clear_location": "Effacer le lieu", + "date_information": "Dates", + "delete_checklist": "Supprimer la liste de contrôle", + "delete_note": "Supprimer la note", + "delete_transportation": "Supprimer le déplacement", + "end": "Arrivée", + "ending_airport": "Aéroport d'arrivée", + "flight_information": "Informations sur le vol", + "from": "Depuis", + "no_location_found": "Aucun lieu trouvé", + "note_delete_confirm": "Êtes-vous sûr de vouloir supprimer cette note ? \nCette action ne peut pas être annulée.", + "out_of_range": "Pas dans la plage de dates de l'itinéraire", + "start": "Départ", + "starting_airport": "Aéroport de départ", + "to": "Vers", + "transportation_delete_confirm": "Etes-vous sûr de vouloir supprimer ce transport ? \nCette action ne peut pas être annulée.", + "will_be_marked": "sera marqué comme visité une fois l’aventure sauvegardée.", + "cities_updated": "villes mises à jour", + "create_adventure": "Créer une aventure", + "no_adventures_to_recommendations": "Aucune aventure trouvée. \nAjoutez au moins une aventure pour obtenir des recommandations.", + "finding_recommendations": "Découvrir des trésors cachés pour votre prochaine aventure", + "attachment": "Pièce jointe", + "attachment_delete_success": "Pièce jointe supprimée avec succès !", + "attachment_name": "Nom de la pièce jointe", + "attachment_update_error": "Erreur lors de la mise à jour de la pièce jointe", + "attachment_update_success": "Pièce jointe mise à jour avec succès !", + "attachment_upload_error": "Erreur lors du téléchargement de la pièce jointe", + "attachment_upload_success": "Pièce jointe téléchargée avec succès !", + "attachments": "Pièces jointes", + "gpx_tip": "Téléchargez des fichiers GPX en pièces jointes pour les afficher sur la carte !", + "images": "Images", + "upload": "Télécharger", + "city": "Ville", + "delete_lodging": "Supprimer l'hébergement", + "display_name": "Nom d'affichage", + "location_details": "Détails du lieu", + "lodging": "Hébergement", + "lodging_delete_confirm": "Êtes-vous sûr de vouloir supprimer cet hébergement? \nCette action ne peut pas être annulée.", + "lodging_information": "Informations sur l'hébergement", + "price": "Prix", + "region": "Région", + "reservation_number": "Numéro de réservation", + "open_in_maps": "Ouvert dans les cartes", + "all_day": "Journée complète", + "collection_no_start_end_date": "L'ajout d'une date de début et de fin à la collection débloquera les fonctionnalités de planification de l'itinéraire dans la page de collection.", + "date_itinerary": "Itinéraire trié par date", + "no_ordered_items": "Ajoutez des éléments avec des dates de visite à la collection pour les voir ici.", + "ordered_itinerary": "Itinéraire trié par activité", + "invalid_date_range": "Plage de dates non valide", + "timezone": "Fuseau horaire", + "no_visits": "Pas de visites", + "arrival_timezone": "Fuseau horaire d'arrivée", + "departure_timezone": "Fuseau horaire de départ", + "arrival_date": "Date d'arrivée", + "departure_date": "Date de départ", + "coordinates": "Coordonnées", + "copy_coordinates": "Coordonnées de copie", + "sun_times": "Temps du soleil", + "sunrise": "Lever du soleil", + "sunset": "Coucher de soleil", + "timed": "Chronométré", + "distance": "Distance", + "all_linked_items": "Tous les éléments liés", + "itinerary": "Itinéraire", + "joined": "Joint", + "view_profile": "Afficher le profil", + "share_collection": "Partagez cette collection!", + "filters_and_sort": "Filtres", + "filters_and_stats": "Filtres", + "no_adventures_message": "Commencez à documenter vos aventures et à planifier de nouvelles. \nChaque voyage a une histoire qui mérite d'être racontée.", + "travel_progress": "Progrès du voyage", + "adventures_available": "Aventures disponibles", + "all_adventures_already_linked": "Toutes les aventures sont déjà liées à cette collection.", + "collections_linked": "Collections liées", + "create_collection_first": "Créez d'abord une collection pour organiser vos aventures et vos souvenirs.", + "delete_collection_warning": "Êtes-vous sûr de vouloir supprimer cette collection? \nCette action ne peut pas être annulée.", + "done": "Fait", + "loading_adventures": "Chargement des aventures ...", + "name_location": "nom, emplacement", + "collection_contents": "Contenu de la collection", + "check_in": "Enregistrement", + "check_out": "Vérifier" + }, + "home": { + "desc_1": "Découvrez, planifiez et explorez en toute simplicité", + "desc_2": "AdventureLog est conçu pour simplifier votre voyage, en vous fournissant les outils et les ressources nécessaires pour planifier, préparer et naviguer dans votre prochaine aventure inoubliable.", + "feature_1": "Carnet de voyage", + "feature_1_desc": "Gardez une trace de vos aventures avec un carnet de voyage personnalisé et partagez vos expériences avec vos amis et votre famille.", + "feature_2": "Planification du voyage", + "feature_2_desc": "Créez facilement des itinéraires personnalisés et obtenez un aperçu quotidien de votre voyage.", + "feature_3": "Carte de voyage", + "feature_3_desc": "Visualisez vos voyages à travers le monde avec une carte interactive et explorez de nouvelles destinations.", + "go_to": "Aller au journal d'aventure", + "hero_1": "Découvrez les aventures les plus palpitantes du monde", + "hero_2": "Découvrez et planifiez votre prochaine aventure avec AdventureLog. \nExplorez des destinations à couper le souffle, créez des itinéraires personnalisés et restez connecté lors de vos déplacements.", + "key_features": "Principales fonctionnalités", + "explore_world": "Explorer le monde", + "latest_travel_experiences": "Vos dernières expériences de voyage", + "of_world": "du monde", + "start_your_journey": "Commencez votre voyage" + }, + "navbar": { + "about": "À propos de AdventureLog", + "adventures": "Aventures", + "collections": "Collections", + "documentation": "Documentation", + "greeting": "Salut", + "logout": "Déconnexion", + "map": "Carte", + "my_adventures": "Mes aventures", + "profile": "Profil", + "search": "Recherche", + "settings": "Paramètres", + "shared_with_me": "Partagé avec moi", + "theme_selection": "Sélection de thèmes", + "themes": { + "aestheticDark": "Esthétique sombre", + "aestheticLight": "Lumière esthétique", + "aqua": "Aqua", + "dark": "Sombre", + "dim": "Faible", + "forest": "Forêt", + "light": "Lumière", + "night": "Nuit", + "northernLights": "Lumières du Nord" + }, + "users": "Utilisateurs", + "worldtravel": "Voyage dans le monde", + "my_tags": "Mes balises", + "tag": "Étiqueter", + "language_selection": "Langue", + "support": "Soutien", + "calendar": "Calendrier", + "admin_panel": "Panneau d'administration" + }, + "auth": { + "confirm_password": "Confirmer le mot de passe", + "email": "E-mail", + "first_name": "Prénom", + "forgot_password": "Mot de passe oublié ?", + "last_name": "Nom de famille", + "login": "Se connecter", + "login_error": "Impossible de se connecter avec les identifiants fournis.", + "password": "Mot de passe", + "registration_disabled": "L'inscription est actuellement désactivée.", + "signup": "S'inscrire", + "username": "Nom d'utilisateur", + "profile_picture": "Photo de profil", + "public_profile": "Profil public", + "public_tooltip": "Avec un profil public, les utilisateurs peuvent partager des collections avec vous et afficher votre profil sur la page des utilisateurs.", + "new_password": "Nouveau mot de passe", + "or_3rd_party": "Ou connectez-vous avec un service tiers", + "no_public_adventures": "Aucune aventure publique trouvée", + "no_public_collections": "Aucune collection publique trouvée", + "user_adventures": "Aventures de l'utilisateur", + "user_collections": "Collections de l'utilisateur" + }, + "users": { + "no_users_found": "Aucun utilisateur trouvé avec un profil public." + }, + "worldtravel": { + "all": "Tous", + "all_subregions": "Toutes les sous-régions", + "clear_search": "Effacer la recherche", + "completely_visited": "Entièrement visité", + "country_list": "Liste des pays", + "no_countries_found": "Aucun pays trouvé", + "not_visited": "Non visité", + "num_countries": "pays trouvés", + "partially_visited": "Partiellement visité", + "cities": "villes", + "failed_to_mark_visit": "Échec de la notation de la visite à", + "failed_to_remove_visit": "Échec de la suppression de la visite à", + "marked_visited": "marqué comme visité", + "no_cities_found": "Aucune ville trouvée", + "region_failed_visited": "Échec du marquage de la région comme visitée", + "regions_in": "Régions dans", + "removed": "supprimé", + "view_cities": "Voir les villes", + "visit_remove_failed": "Échec de la suppression de la visite", + "visit_to": "Visite à", + "all_regions": "Toutes les régions", + "available_to_explore": "Disponible pour explorer", + "cities_in": "Villes", + "clear_all": "Effacer tout", + "clear_all_filters": "Effacer tous les filtres", + "clear_filters": "Filtres à claire", + "complete": "Complet", + "countries": "pays", + "country_completed": "Pays achevé", + "filter_by": "Filtrer", + "filter_by_region": "Filtre par région", + "hide_map": "Carte de cachette", + "hide_map_labels": "Masquer les étiquettes de la carte", + "interactive_map": "Carte interactive", + "no_countries_found_desc": "Essayez d'ajuster vos termes de recherche ou vos filtres pour trouver les pays que vous recherchez.", + "no_country_data_available": "Aucune donnée de pays disponible", + "no_country_data_available_desc": "Veuillez vérifier la documentation pour la mise à jour des données régionales.", + "no_regions_found": "Aucune région trouvée", + "of": "de", + "partial": "Partiel", + "progress": "Progrès", + "progress_and_stats": "Progrès", + "region_completed": "Région terminée", + "remaining": "Restant", + "show_map": "Mapar de spectacle", + "show_map_labels": "Afficher les étiquettes de carte", + "total_cities": "Total des villes", + "total_countries": "Total des pays", + "total_regions": "Régions totales", + "newest_first": "Le plus récent premier", + "oldest_first": "Le plus ancien premier", + "unvisited_first": "Sans visité d'abord", + "visited_first": "Visité en premier", + "total_items": "Total des articles" + }, + "settings": { + "account_settings": "Paramètres du compte utilisateur", + "confirm_new_password": "Confirmer le nouveau mot de passe", + "email_change": "Changer l'adresse de courriel", + "new_email": "Nouvelle adresse de courriel", + "new_password": "Nouveau mot de passe", + "no_email_set": "Aucune adresse de courriel définie", + "password_change": "Changer le mot de passe", + "settings_page": "Page de paramétrage", + "update": "Mise à jour", + "update_error": "Erreur lors de la mise à jour des paramètres", + "update_success": "Paramètres mis à jour avec succès !", + "change_password": "Changer le mot de passe", + "possible_reset": "Si l'adresse de courriel que vous avez fournie est associée à un compte, vous recevrez un courriel avec des instructions pour réinitialiser votre mot de passe !", + "reset_password": "Réinitialiser le mot de passe", + "about_this_background": "À propos de cette photo", + "join_discord": "Rejoignez le Discord", + "join_discord_desc": "pour partager vos propres photos. \nPostez-les dans le", + "photo_by": "Photo par", + "current_password": "Mot de passe actuel", + "password_change_lopout_warning": "Vous serez déconnecté après avoir modifié votre mot de passe.", + "authenticator_code": "Code d'authentification", + "copy": "Copier", + "disable_mfa": "Désactiver l'authentification multi-facteurs", + "email_added": "Adresse de courriel ajoutée avec succès !", + "email_removed": "Adresse de courriel supprimée avec succès !", + "email_removed_error": "Erreur lors de la suppression de l'adresse de courriel", + "email_set_primary": "Adresse de courriel principale définie avec succès !", + "email_set_primary_error": "Erreur lors de la définition de l'adresse de courriel principale", + "email_verified": "Adresse de courriel vérifiée avec succès !", + "email_verified_erorr_desc": "Votre adresse de courriel n'a pas pu être vérifiée. \nVeuillez réessayer.", + "email_verified_error": "Erreur lors de la vérification de l'adresse de courriel", + "email_verified_success": "Votre adresse de courriel a été vérifiée. \nVous pouvez maintenant vous connecter.", + "enable_mfa": "Activer l'authentification multi-facteurs", + "generic_error": "Une erreur s'est produite lors du traitement de votre demande.", + "make_primary": "Définir comme adresse de courriel principale", + "mfa_disabled": "Authentification multi-facteurs désactivée avec succès !", + "mfa_enabled": "Authentification multi-facteurs activée avec succès !", + "mfa_not_enabled": "L'authentification multi-facteurs n'est pas activée", + "mfa_page_title": "Authentification multi-facteurs", + "no_emai_set": "Aucune adresse de courriel définie", + "not_verified": "Non vérifiée", + "primary": "Principale", + "recovery_codes": "Codes de récupération", + "recovery_codes_desc": "Ce sont vos codes de récupération. \nGardez-les en sécurité. \nIls ne pourront plus vous être affichés.", + "reset_session_error": "Veuillez vous déconnecter, puis vous reconnecter pour actualiser votre session et réessayer.", + "verified": "Vérifiée", + "verify": "Vérifier", + "verify_email_error": "Erreur lors de la vérification de l'adresse de courriel. \nRéessayez dans quelques minutes.", + "verify_email_success": "Vérification par courriel envoyée avec succès !", + "documentation_link": "Lien vers la documentation", + "launch_account_connections": "Lancer les connexions au compte", + "launch_administration_panel": "Lancer le panneau d'administration", + "no_verified_email_warning": "Vous devez disposer d'une adresse de courriel vérifiée pour activer l'authentification multi-facteurs.", + "social_auth_desc": "Activez ou désactivez les fournisseurs d'authentification sociale et OIDC pour votre compte. \nCes connexions vous permettent de vous connecter avec des fournisseurs d'identité auto-hébergés comme Authentik ou des fournisseurs tiers comme GitHub.", + "social_auth_desc_2": "Ces paramètres sont gérés sur le serveur AdventureLog et doivent être activés manuellement par l'administrateur.", + "add_email": "Ajouter une adresse de courriel", + "password_disable_warning": "Actuellement, l'authentification par mot de passe est désactivée. \nLa connexion via un fournisseur social ou OIDC est requise.", + "password_disabled": "Authentification par mot de passe désactivée", + "password_disabled_error": "Erreur de désactivation de l'authentification par mot de passe. \nAssurez-vous qu'un fournisseur social ou OIDC est lié à votre compte.", + "password_enabled": "Authentification par mot de passe activée", + "password_enabled_error": "Erreur permettant l'authentification par mot de passe.", + "admin_panel_desc": "Accéder à l'interface d'administration complète", + "administration": "Administration", + "advanced_settings": "Paramètres avancés", + "app_version": "Version de l'application", + "connected": "Connecté", + "email_management_desc": "Gérez vos adresses e-mail et votre statut de vérification", + "emails": "E-mails", + "enabled": "Activé", + "enter_current_password": "Entrez le mot de passe actuel", + "enter_first_name": "Entrez votre prénom", + "enter_new_email": "Entrez la nouvelle adresse e-mail", + "enter_new_password": "Entrez un nouveau mot de passe", + "enter_username": "Entrez votre nom d'utilisateur", + "integrations": "Intégrations", + "integrations_desc": "Connectez les services externes pour améliorer votre expérience", + "license": "Licence", + "mfa_desc": "Ajoutez une couche supplémentaire de sécurité à votre compte", + "mfa_is_enabled": "MFA est activé", + "pass_change_desc": "Mettez à jour le mot de passe de votre compte pour une meilleure sécurité", + "password_auth": "Authentification du mot de passe", + "password_login_disabled": "Login de mot de passe désactivé", + "password_login_enabled": "Connexion du mot de passe activé", + "profile_info": "Informations sur le profil", + "profile_info_desc": "Mettez à jour vos coordonnées personnelles et votre photo de profil", + "public_profile_desc": "Rendre votre profil visible pour les autres utilisateurs", + "quick_actions": "Actions rapides", + "region_updates": "Mises à jour de la région", + "region_updates_desc": "Mettre à jour les régions et les villes visitées", + "regular_user": "Utilisateur régulier", + "security": "Sécurité", + "settings_menu": "Menu des paramètres", + "social_auth": "Authentification sociale", + "social_auth_desc_1": "Gérer les options de connexion sociales et les paramètres de mot de passe", + "social_auth_setup": "Configuration d'authentification sociale", + "staff_status": "Statut du personnel", + "staff_user": "Utilisateur du personnel", + "access_restricted": "Accès restreint", + "access_restricted_desc": "Les fonctionnalités yadministratives ne sont disponibles que pour les membres du personnel.", + "add_new_email": "Ajouter un nouvel e-mail", + "add_new_email_address": "Ajouter une nouvelle adresse e-mail", + "admin": "Administrer", + "administration_desc": "Outils et paramètres administratifs", + "advanced": "Avancé", + "advanced_settings_desc": "Outils avancés de configuration et de développement", + "all_rights_reserved": "Tous droits réservés.", + "debug_information": "Débogage des informations", + "disabled": "Désactivé", + "disconnected": "Déconnecté", + "email_management": "Gestion des e-mails", + "enter_last_name": "Entrez votre nom de famille", + "invalid_credentials": "Des références non valides" + }, + "checklist": { + "checklist_delete_error": "Erreur lors de la suppression de la liste de contrôle", + "checklist_deleted": "Liste de contrôle supprimée avec succès !", + "checklist_editor": "Éditeur de liste de contrôle", + "checklist_public": "Cette liste de contrôle est publique car elle fait partie d’une collection publique.", + "item": "Élément", + "item_already_exists": "L'élément existe déjà", + "item_cannot_be_empty": "L'élément ne peut pas être vide", + "items": "Éléments", + "new_item": "Nouvel élément", + "new_checklist": "Nouvelle liste de contrôle" + }, + "collection": { + "collection_created": "Collection créée avec succès !", + "collection_edit_success": "Collection modifiée avec succès !", + "create": "Créer", + "error_creating_collection": "Erreur lors de la création de la collection", + "error_editing_collection": "Erreur lors de la modification de la collection", + "new_collection": "Nouvelle collection", + "public_collection": "Collection publique", + "manage_collections": "Gérer les collections", + "archived_appear_here": "Les collections archivées apparaîtront ici.", + "create_first": "Créez votre première collection pour organiser vos aventures et vos souvenirs.", + "make_sure_public": "Assurez-vous que votre profil est public afin que les autres puissent partager avec vous.", + "no_archived_collections": "Aucune collection archivée.", + "no_collections_yet": "Pas encore de collections", + "no_shared_collections": "Pas de collections partagées.", + "shared_collections": "Collections partagées", + "available": "Disponible", + "linked": "Lié", + "try_different_search": "Essayez une recherche ou un filtre différent." + }, + "notes": { + "add_a_link": "Ajouter un lien", + "content": "Contenu", + "editing_note": "Modification de la note", + "failed_to_save": "Échec de l'enregistrement de la note", + "note_delete_error": "Erreur lors de la suppression de la note", + "note_deleted": "Note supprimée avec succès !", + "note_editor": "Éditeur de notes", + "note_public": "Cette note est publique car elle fait partie d'une collection publique.", + "open": "Ouvrir", + "save": "Sauvegarder", + "invalid_url": "URL invalide", + "note_viewer": "Visionneuse de notes" + }, + "transportation": { + "edit": "Modifier", + "edit_transportation": "Modifier le déplacement", + "flight_number": "Numéro du vol", + "from_location": "Du lieu", + "modes": { + "bike": "Vélo", + "boat": "Bateau", + "bus": "Bus", + "car": "Voiture", + "other": "Autre", + "plane": "Avion", + "train": "Train", + "walking": "Marche" + }, + "new_transportation": "Nouveau déplacement", + "to_location": "Vers le lieu", + "type": "Type", + "transportation_delete_error": "Erreur lors de la suppression du déplacement", + "transportation_deleted": "Déplacement supprimé avec succès !", + "ending_airport_desc": "Entrez le code de l'aéroport de départ (par exemple, CDG)", + "fetch_location_information": "Récupérer les informations sur les lieux", + "starting_airport_desc": "Entrez le code de l'aéroport d'arrivée (par exemple, ORY)" + }, + "search": { + "adventurelog_results": "Résultats dans AdventureLog", + "online_results": "Résultats en ligne", + "public_adventures": "Aventures publiques" + }, + "map": { + "add_adventure": "Ajouter une nouvelle aventure", + "add_adventure_at_marker": "Ajouter une nouvelle aventure au marqueur", + "adventure_map": "Carte des aventures", + "clear_marker": "Effacer le marqueur", + "map_options": "Options de la carte", + "show_visited_regions": "Afficher les régions visitées", + "view_details": "Afficher les détails", + "adventure_stats": "Statistiques d'aventure", + "adventures_shown": "aventures montrées", + "completion": "Achèvement", + "display_options": "Options d'affichage", + "map_controls": "Contrôles de cartes", + "marker_placed_on_map": "Marqueur placé sur la carte", + "place_marker_desc": "Cliquez sur la carte pour placer un marqueur ou ajouter une aventure sans emplacement.", + "regions": "Régions" + }, + "languages": {}, + "share": { + "no_users_shared": "Aucun utilisateur", + "not_shared_with": "Pas encore partagé avec", + "share_desc": "Partager cette collection avec d'autres utilisateurs.", + "shared": "Partagé", + "shared_with": "Déjà partagé avec", + "unshared": "Partage désactivé pour", + "with": "avec", + "go_to_settings": "Allez dans les paramètres", + "no_shared_found": "Aucune collection ne semble encore avoir été partagée avec vous.", + "set_public": "Afin de permettre aux utilisateurs de partager avec vous, vous devez rendre votre profil public." + }, + "profile": { + "member_since": "Membre depuis", + "user_stats": "Statistiques de l'utilisateur", + "visited_countries": "Pays visités", + "visited_regions": "Régions visitées", + "visited_cities": "Villes visitées", + "discovered": "découvert", + "explored": "exploré", + "no_shared_adventures": "Cet utilisateur n'a encore partagé aucune aventure publique.", + "no_shared_collections": "Cet utilisateur n'a pas encore partagé de collections publiques.", + "planned_trips": "Voyages prévus", + "public_adventure_experiences": "Expériences d'aventure publique", + "travel_statistics": "Statistiques de voyage", + "your_journey_at_a_glance": "Votre voyage d'aventure en un coup d'œil" + }, + "categories": { + "category_name": "Nom de la catégorie", + "edit_category": "Modifier la catégorie", + "icon": "Icône", + "manage_categories": "Gérer les catégories", + "no_categories_found": "Aucune catégorie trouvée.", + "select_category": "Sélectionnez une catégorie", + "update_after_refresh": "Les cartes d'aventure seront mises à jour une fois que vous aurez actualisé la page.", + "add_new_category": "Ajouter une nouvelle catégorie", + "name_required": "Le nom de catégorie est requis" + }, + "dashboard": { + "add_some": "Pourquoi ne pas commencer à planifier votre prochaine aventure ? \nVous pouvez ajouter une nouvelle aventure en cliquant sur le bouton ci-dessous.", + "countries_visited": "Pays visités", + "no_recent_adventures": "Pas d'aventure récente ?", + "recent_adventures": "Aventures récentes", + "total_adventures": "Aventures totales", + "total_visited_regions": "Total des régions visitées", + "welcome_back": "Content de te revoir", + "total_visited_cities": "Total des villes visitées", + "document_some_adventures": "Commencez à documenter vos voyages et construisez votre carte d'aventure personnelle!", + "view_all": "Afficher tous", + "welcome_text_1": "Tu as été sur", + "welcome_text_2": "Aventures jusqu'à présent", + "welcome_text_3": "Continuez à explorer et à documenter vos voyages!" + }, + "immich": { + "api_key": "Clé d'API Immich", + "api_note": "Remarque : il doit s'agir de l'URL de base de l'API Immich, elle se termine donc généralement par /api, sauf si vous disposez d'une configuration personnalisée.", + "disable": "Désactiver", + "immich": "Immich", + "immich_disabled": "Intégration Immich désactivée avec succès !", + "immich_error": "Erreur lors de la mise à jour de l'intégration Immich", + "integration_fetch_error": "Erreur lors de la récupération des données de l'intégration Immich", + "load_more": "Charger plus", + "no_items_found": "Aucun article trouvé", + "server_url": "URL du serveur Immich", + "update_integration": "Intégration des mises à jour", + "localhost_note": "Remarque : localhost ne fonctionnera probablement pas à moins que vous n'ayez configuré les réseaux Docker en conséquence. \nIl est recommandé d'utiliser l'adresse IP du serveur ou le nom de domaine.", + "api_key_placeholder": "Entrez votre clé API Immich", + "enable_integration": "Activer l'intégration", + "immich_integration_desc": "Connectez votre serveur de gestion de photos Immich", + "need_help": "Besoin d'aide pour la configurer? \nDécouvrez le", + "connection_error": "Erreur de connexion à Immich Server", + "copy_locally": "Copier les images localement", + "copy_locally_desc": "Copiez des images sur le serveur pour un accès hors ligne. \nUtilise plus d'espace disque.", + "error_saving_image": "Image d'enregistrement d'erreur", + "integration_already_exists": "Une intégration Immich existe déjà. \nVous ne pouvez avoir qu'une seule intégration à la fois.", + "integration_not_found": "L'intégration d'immich n'est pas trouvée. \nVeuillez créer une nouvelle intégration.", + "network_error": "Erreur réseau lors de la connexion au serveur Immich. \nVeuillez vérifier votre connexion et réessayer.", + "validation_error": "Une erreur s'est produite lors de la validation de l'intégration d'Immich. \nVeuillez vérifier l'URL et la clé API de votre serveur." + }, + "recomendations": { + "recommendation": "Recommandation", + "recommendations": "Recommandations", + "adventure_recommendations": "Recommandations d'aventure", + "food": "Nourriture", + "tourism": "Tourisme" + }, + "lodging": { + "apartment": "Appartement", + "bnb": "Bed and Breakfast", + "cabin": "Châlet", + "campground": "Camping", + "edit": "Modifier", + "edit_lodging": "Modifier l'hébergement", + "hostel": "Auberge", + "hotel": "Hôtel", + "house": "Maison", + "motel": "Motel", + "new_lodging": "Nouvel hébergement", + "other": "Autre", + "reservation_number": "Numéro de réservation", + "resort": "Complexe touristique", + "villa": "Villa" + }, + "google_maps": { + "google_maps_integration_desc": "Connectez votre compte Google Maps pour obtenir des résultats de recherche et recommandations de recherche de haute qualité." + }, + "calendar": { + "all_categories": "Toutes les catégories", + "all_day_event": "Événement toute la journée", + "calendar_overview": "Aperçu du calendrier", + "categories": "Catégories", + "day": "Jour", + "events_scheduled": "événements prévus", + "filter_by_category": "Filtre par catégorie", + "filtered_results": "Résultats filtrés", + "month": "Mois", + "today": "Aujourd'hui", + "total_events": "Événements totaux", + "week": "Semaine" + } +} diff --git a/frontend/src/locales/it.json b/frontend/src/locales/it.json new file mode 100644 index 0000000..ce522e0 --- /dev/null +++ b/frontend/src/locales/it.json @@ -0,0 +1,711 @@ +{ + "about": { + "about": "Di", + "close": "Chiudi", + "license": "Concesso in licenza con la licenza GPL-3.0.", + "message": "Realizzato con ❤️ negli Stati Uniti.", + "nominatim_1": "La ricerca della posizione e la geocodifica sono fornite da", + "nominatim_2": "I loro dati sono concessi in licenza con la licenza ODbL.", + "oss_attributions": "Attribuzioni Open Source", + "other_attributions": "Ulteriori attribuzioni possono essere trovate nel file README.", + "source_code": "Codice sorgente", + "generic_attributions": "Accedi a AdventureLog per visualizzare le attribuzioni per integrazioni e servizi abilitati." + }, + "adventures": { + "activities": {}, + "add_to_collection": "Aggiungi alla collezione", + "adventure": "Avventura", + "adventure_delete_confirm": "Sei sicuro di voler eliminare questa avventura? \nQuesta azione non può essere annullata.", + "archive": "Archivio", + "archived": "Archiviato", + "archived_collection_message": "Collezione archiviata con successo!", + "archived_collections": "Collezioni archiviate", + "ascending": "Ascendente", + "cancel": "Cancellare", + "category_filter": "Filtro categoria", + "clear": "Rimuovere", + "collection": "Collezione", + "collection_link_error": "Errore nel collegamento dell'avventura alla collezione", + "collection_remove_error": "Errore durante la rimozione dell'avventura dalla collezione", + "collection_remove_success": "Avventura rimossa con successo dalla collezione!", + "count_txt": "risultati corrispondenti alla tua ricerca", + "create_new": "Crea nuovo...", + "date": "Data", + "delete": "Eliminare", + "delete_collection": "Elimina collezione", + "delete_collection_success": "Collezione eliminata con successo!", + "descending": "Discendente", + "edit_adventure": "Modifica Avventura", + "edit_collection": "Modifica collezione", + "filter": "Filtro", + "homepage": "Home page", + "latitude": "Latitudine", + "longitude": "Longitudine", + "my_collections": "Le mie collezioni", + "name": "Nome", + "no_image_found": "Nessuna immagine trovata", + "not_found": "Avventura non trovata", + "not_found_desc": "L'avventura che stavi cercando non è stata trovata. \nProva un'avventura diversa o riprova più tardi.", + "open_details": "Apri Dettagli", + "open_filters": "Apri filtri", + "order_by": "Ordina per", + "order_direction": "Direzione dell'ordine", + "private": "Privato", + "public": "Pubblico", + "rating": "Valutazione", + "remove_from_collection": "Rimuovi dalla collezione", + "share": "Condividere", + "sort": "Ordinare", + "sources": "Fonti", + "unarchive": "Annulla l'archiviazione", + "unarchived_collection_message": "Collezione disarchiviata con successo!", + "updated": "Aggiornato", + "visit": "Visita", + "visits": "Visite", + "adventure_delete_success": "Avventura eliminata con successo!", + "collection_adventures": "Includi avventure dalle raccolte", + "collection_link_success": "Avventura collegata alla collezione con successo!", + "dates": "Date", + "delete_adventure": "Elimina avventura", + "duration": "Durata", + "image_removed_error": "Errore durante la rimozione dell'immagine", + "image_removed_success": "Immagine rimossa con successo!", + "image_upload_error": "Errore durante il caricamento dell'immagine", + "image_upload_success": "Immagine caricata con successo!", + "no_image_url": "Nessuna immagine trovata a quell'URL.", + "planned": "Pianificato", + "start_before_end_error": "La data di inizio deve essere antecedente alla data di fine", + "visited": "Visitato", + "actions": "Azioni", + "activity_types": "Tipi di attività", + "add": "Aggiungere", + "add_notes": "Aggiungi note", + "adventure_create_error": "Impossibile creare l'avventura", + "adventure_created": "Avventura creata", + "adventure_update_error": "Impossibile aggiornare l'avventura", + "adventure_updated": "Avventura aggiornata", + "basic_information": "Informazioni di base", + "category": "Categoria", + "clear_map": "Libera mappa", + "copy_link": "Copia collegamento", + "date_constrain": "Vincolare alle date di collezione", + "description": "Descrizione", + "end_date": "Data di fine", + "fetch_image": "Recupera immagine", + "generate_desc": "Genera descrizione", + "image": "Immagine", + "image_fetch_failed": "Impossibile recuperare l'immagine", + "link": "Collegamento", + "location": "Posizione", + "location_information": "Informazioni sulla posizione", + "my_images": "Le mie immagini", + "new_adventure": "Nuova avventura", + "no_description_found": "Nessuna descrizione trovata", + "no_images": "Nessuna immagine", + "no_location": "Inserisci una località", + "no_results": "Nessun risultato trovato", + "public_adventure": "Avventura pubblica", + "remove": "Rimuovere", + "save_next": "Salva", + "search_for_location": "Cerca una posizione", + "search_results": "Risultati della ricerca", + "see_adventures": "Vedi Avventure", + "share_adventure": "Condividi questa avventura!", + "start_date": "Data di inizio", + "upload_image": "Carica immagine", + "url": "URL", + "warning": "Avvertimento", + "wiki_desc": "Estrae un estratto dall'articolo di Wikipedia corrispondente al nome dell'avventura.", + "wiki_image_error": "Errore durante il recupero dell'immagine da Wikipedia", + "wikipedia": "Wikipedia", + "adventure_not_found": "Non ci sono avventure da visualizzare. \nAggiungine alcuni utilizzando il pulsante più in basso a destra o prova a cambiare i filtri!", + "all": "Tutto", + "error_updating_regions": "Errore durante l'aggiornamento delle regioni", + "mark_visited": "Segna come visitato", + "my_adventures": "Le mie avventure", + "no_adventures_found": "Nessuna avventura trovata", + "no_collections_found": "Nessuna collezione trovata a cui aggiungere questa avventura.", + "no_linkable_adventures": "Non è stata trovata alcuna avventura che possa essere collegata a questa collezione.", + "not_visited": "Non visitato", + "regions_updated": "regioni aggiornate", + "update_visited_regions": "Aggiorna le regioni visitate", + "update_visited_regions_disclaimer": "L'operazione potrebbe richiedere del tempo a seconda del numero di avventure che hai visitato.", + "visited_region_check": "Controllo della regione visitata", + "visited_region_check_desc": "Selezionando questa opzione, il server controllerà tutte le avventure che hai visitato e contrassegnerà le regioni in cui si trovano come visitate nei viaggi per il mondo.", + "add_new": "Aggiungi nuovo...", + "checklist": "Lista di controllo", + "checklists": "Liste di controllo", + "collection_archived": "Questa collezione è stata archiviata.", + "collection_completed": "Hai completato questa collezione!", + "collection_stats": "Statistiche della collezione", + "days": "giorni", + "itineary_by_date": "Itinerario per data", + "keep_exploring": "Continua a esplorare!", + "link_new": "Collega Nuovo...", + "linked_adventures": "Avventure collegate", + "links": "Collegamenti", + "note": "Nota", + "notes": "Note", + "nothing_planned": "Niente in programma per questa giornata. \nBuon viaggio!", + "transportation": "Trasporto", + "transportations": "Trasporti", + "visit_link": "Visita il collegamento", + "day": "Giorno", + "add_a_tag": "Aggiungi un'etichetta", + "tags": "Tag", + "set_to_pin": "Imposta su Blocca", + "category_fetch_error": "Errore durante il recupero delle categorie", + "copied_to_clipboard": "Copiato negli appunti!", + "copy_failed": "Copia non riuscita", + "adventure_calendar": "Calendario delle avventure", + "emoji_picker": "Selettore di emoji", + "hide": "Nascondere", + "show": "Mostrare", + "download_calendar": "Scarica Calendario", + "md_instructions": "Scrivi qui in markdown...", + "preview": "Anteprima", + "checklist_delete_confirm": "Sei sicuro di voler eliminare questa lista di controllo? \nQuesta azione non può essere annullata.", + "clear_location": "Cancella posizione", + "date_information": "Informazioni sulla data", + "delete_checklist": "Elimina lista di controllo", + "delete_note": "Elimina nota", + "delete_transportation": "Elimina trasporto", + "end": "FINE", + "ending_airport": "Aeroporto di arrivo", + "flight_information": "Informazioni sul volo", + "from": "Da", + "no_location_found": "Nessuna posizione trovata", + "note_delete_confirm": "Sei sicuro di voler eliminare questa nota? \nQuesta azione non può essere annullata.", + "out_of_range": "Non nell'intervallo di date dell'itinerario", + "start": "Inizio", + "starting_airport": "Aeroporto di partenza", + "to": "A", + "transportation_delete_confirm": "Sei sicuro di voler eliminare questo trasporto? \nQuesta azione non può essere annullata.", + "will_be_marked": "verrà contrassegnato come visitato una volta salvata l'avventura.", + "cities_updated": "città aggiornate", + "create_adventure": "Crea Avventura", + "no_adventures_to_recommendations": "Nessuna avventura trovata. \nAggiungi almeno un'avventura per ricevere consigli.", + "finding_recommendations": "Alla scoperta di tesori nascosti per la tua prossima avventura", + "attachment": "Allegato", + "attachment_delete_success": "Allegato eliminato con successo!", + "attachment_name": "Nome dell'allegato", + "attachment_update_error": "Errore durante l'aggiornamento dell'allegato", + "attachment_update_success": "Allegato aggiornato con successo!", + "attachment_upload_error": "Errore durante il caricamento dell'allegato", + "attachment_upload_success": "Allegato caricato con successo!", + "attachments": "Allegati", + "gpx_tip": "Carica i file GPX negli allegati per visualizzarli sulla mappa!", + "images": "Immagini", + "upload": "Caricamento", + "city": "Città", + "delete_lodging": "Elimina alloggio", + "display_name": "Nome da visualizzare", + "location_details": "Dettagli della posizione", + "lodging": "Alloggio", + "lodging_delete_confirm": "Sei sicuro di voler eliminare questa posizione di alloggio? \nQuesta azione non può essere annullata.", + "lodging_information": "Informazioni di alloggio", + "price": "Prezzo", + "region": "Regione", + "reservation_number": "Numero di prenotazione", + "open_in_maps": "Aprire in Mappe", + "all_day": "Tutto il giorno", + "collection_no_start_end_date": "L'aggiunta di una data di inizio e fine alla collezione sbloccherà le funzionalità di pianificazione dell'itinerario nella pagina della collezione.", + "date_itinerary": "Data dell'itinerario", + "no_ordered_items": "Aggiungi elementi con date alla collezione per vederli qui.", + "ordered_itinerary": "Itinerario ordinato", + "invalid_date_range": "Intervallo di date non valido", + "timezone": "Fuso orario", + "no_visits": "Nessuna visita", + "arrival_timezone": "Fuso orario di arrivo", + "departure_timezone": "Fuso orario di partenza", + "arrival_date": "Data di arrivo", + "departure_date": "Data di partenza", + "coordinates": "Coordinate", + "copy_coordinates": "Copia coordinate", + "sun_times": "Sun Times", + "sunrise": "Alba", + "sunset": "Tramonto", + "timed": "A tempo", + "distance": "Distanza", + "all_linked_items": "Tutti gli elementi collegati", + "itinerary": "Itinerario", + "joined": "Partecipato", + "view_profile": "Visualizza il profilo", + "share_collection": "Condividi questa collezione!", + "filters_and_sort": "Filtri", + "filters_and_stats": "Filtri", + "no_adventures_message": "Inizia a documentare le tue avventure e pianificarne di nuove. \nOgni viaggio ha una storia che vale la pena raccontare.", + "travel_progress": "Progresso di viaggio", + "adventures_available": "Avventure disponibili", + "all_adventures_already_linked": "Tutte le avventure sono già legate a questa collezione.", + "collections_linked": "Collezioni collegate", + "create_collection_first": "Crea prima una collezione per organizzare le tue avventure e i tuoi ricordi.", + "delete_collection_warning": "Sei sicuro di voler eliminare questa collezione? \nQuesta azione non può essere annullata.", + "done": "Fatto", + "loading_adventures": "Caricamento di avventure ...", + "name_location": "Nome, posizione", + "collection_contents": "Contenuto di raccolta", + "check_in": "Check -in", + "check_out": "Guardare" + }, + "home": { + "desc_1": "Scopri, pianifica ed esplora con facilità", + "desc_2": "AdventureLog è progettato per semplificare il tuo viaggio, fornendoti gli strumenti e le risorse per pianificare, preparare le valigie e affrontare la tua prossima avventura indimenticabile.", + "feature_1": "Diario di viaggio", + "feature_1_desc": "Tieni traccia delle tue avventure con un diario di viaggio personalizzato e condividi le tue esperienze con amici e familiari.", + "feature_2": "Pianificazione del viaggio", + "feature_2_desc": "Crea facilmente itinerari personalizzati e ottieni un riepilogo giorno per giorno del tuo viaggio.", + "feature_3": "Mappa di viaggio", + "feature_3_desc": "Visualizza i tuoi viaggi in tutto il mondo con una mappa interattiva ed esplora nuove destinazioni.", + "go_to": "Vai a AdventureLog", + "hero_1": "Scopri le avventure più emozionanti del mondo", + "hero_2": "Scopri e pianifica la tua prossima avventura con AdventureLog. \nEsplora destinazioni mozzafiato, crea itinerari personalizzati e rimani connesso mentre sei in movimento.", + "key_features": "Caratteristiche principali", + "explore_world": "Esplora il mondo", + "latest_travel_experiences": "Le tue ultime esperienze di viaggio", + "of_world": "del mondo", + "start_your_journey": "Inizia il tuo viaggio" + }, + "navbar": { + "about": "Informazioni su AdventureLog", + "adventures": "Avventure", + "collections": "Collezioni", + "documentation": "Documentazione", + "greeting": "Ciao", + "logout": "Esci", + "map": "Mappa", + "my_adventures": "Le mie avventure", + "profile": "Profilo", + "search": "Ricerca", + "settings": "Impostazioni", + "shared_with_me": "Condiviso con me", + "theme_selection": "Selezione del tema", + "themes": { + "aestheticDark": "Oscuro estetico", + "aestheticLight": "Luce estetica", + "aqua": "Aqua", + "dark": "Buio", + "dim": "Fioco", + "forest": "Foresta", + "light": "Leggero", + "night": "Notte", + "northernLights": "Northern Lights" + }, + "users": "Utenti", + "worldtravel": "Viaggio nel mondo", + "my_tags": "Le mie tag", + "tag": "Etichetta", + "language_selection": "Lingua", + "support": "Supporto", + "calendar": "Calendario", + "admin_panel": "Pannello di amministrazione" + }, + "auth": { + "confirm_password": "Conferma password", + "email": "E-mail", + "first_name": "Nome di battesimo", + "forgot_password": "Ha dimenticato la password?", + "last_name": "Cognome", + "login": "Login", + "login_error": "Impossibile accedere con le credenziali fornite.", + "password": "Password", + "registration_disabled": "La registrazione è attualmente disabilitata.", + "signup": "Iscrizione", + "username": "Nome utente", + "profile_picture": "Immagine del profilo", + "public_profile": "Profilo pubblico", + "public_tooltip": "Con un profilo pubblico, gli utenti possono condividere raccolte con te e visualizzare il tuo profilo nella pagina degli utenti.", + "new_password": "Nuova password", + "or_3rd_party": "Oppure accedi con un servizio di terze parti", + "no_public_adventures": "Nessuna avventura pubblica trovata", + "no_public_collections": "Nessuna collezione pubblica trovata", + "user_adventures": "Avventure utente", + "user_collections": "Collezioni utente" + }, + "users": { + "no_users_found": "Nessun utente trovato con profili pubblici." + }, + "worldtravel": { + "all": "Tutto", + "all_subregions": "Tutte le sottoregioni", + "clear_search": "Cancella ricerca", + "completely_visited": "Completamente visitato", + "country_list": "Elenco dei paesi", + "no_countries_found": "Nessun paese trovato", + "not_visited": "Non visitato", + "num_countries": "paesi trovati", + "partially_visited": "Parzialmente visitato", + "cities": "città", + "failed_to_mark_visit": "Impossibile contrassegnare la visita a", + "failed_to_remove_visit": "Impossibile rimuovere la visita a", + "marked_visited": "contrassegnato come visitato", + "no_cities_found": "Nessuna città trovata", + "region_failed_visited": "Impossibile contrassegnare la regione come visitata", + "regions_in": "Regioni dentro", + "removed": "Rimosso", + "view_cities": "Visualizza città", + "visit_remove_failed": "Impossibile rimuovere la visita", + "visit_to": "Visita a", + "all_regions": "Tutte le regioni", + "available_to_explore": "Disponibile per esplorare", + "cities_in": "Città in", + "clear_all": "Cancella tutto", + "clear_all_filters": "Cancella tutti i filtri", + "clear_filters": "Filtri chiari", + "complete": "Completare", + "countries": "Paesi", + "country_completed": "Paese completato", + "filter_by": "Filtro di", + "filter_by_region": "Filtro per regione", + "hide_map": "Nascondi la mappa", + "hide_map_labels": "Nascondere le etichette delle mappe", + "interactive_map": "Mappa interattiva", + "no_countries_found_desc": "Prova a regolare i termini di ricerca o i filtri per trovare i paesi che stai cercando.", + "no_country_data_available": "Nessun dati di paese disponibile", + "no_country_data_available_desc": "Si prega di controllare la documentazione per l'aggiornamento dei dati della regione.", + "no_regions_found": "Nessuna regione trovata", + "of": "Di", + "partial": "Parziale", + "progress": "Progressi", + "progress_and_stats": "Progressi", + "region_completed": "Regione completata", + "remaining": "Rimanente", + "show_map": "Mostra mappa", + "show_map_labels": "Mostra etichette mappe", + "total_cities": "Città totali", + "total_countries": "Paesi totali", + "total_regions": "Regioni totali", + "newest_first": "Primo il più recente", + "oldest_first": "Prima più antico", + "unvisited_first": "Non visitato per primo", + "visited_first": "Visitato per primo", + "total_items": "Articoli totali" + }, + "settings": { + "account_settings": "Impostazioni dell'account utente", + "confirm_new_password": "Conferma nuova password", + "email_change": "Cambia e-mail", + "new_email": "Nuova e-mail", + "new_password": "Nuova password", + "no_email_set": "Nessuna e-mail impostata", + "password_change": "Cambiare la password", + "settings_page": "Pagina Impostazioni", + "update": "Aggiornamento", + "update_error": "Errore durante l'aggiornamento delle impostazioni", + "update_success": "Impostazioni aggiornate con successo!", + "change_password": "Cambiare la password", + "possible_reset": "Se l'indirizzo email che hai fornito è associato a un account, riceverai un'email con le istruzioni per reimpostare la password!", + "reset_password": "Reimposta password", + "about_this_background": "A proposito di questo contesto", + "join_discord": "Unisciti a Discord", + "join_discord_desc": "per condividere le tue foto. \nPubblicateli in", + "photo_by": "Foto di", + "current_password": "password attuale", + "password_change_lopout_warning": "Verrai disconnesso dopo aver modificato la password.", + "authenticator_code": "Codice Autenticatore", + "copy": "Copia", + "disable_mfa": "Disabilita MFA", + "email_added": "Email aggiunta con successo!", + "email_removed": "Email rimossa con successo!", + "email_removed_error": "Errore durante la rimozione dell'e-mail", + "email_set_primary": "Email impostata come primaria con successo!", + "email_set_primary_error": "Errore durante l'impostazione dell'e-mail come principale", + "email_verified": "Email verificata con successo!", + "email_verified_erorr_desc": "Non è stato possibile verificare la tua email. \nPer favore riprova.", + "email_verified_error": "Errore durante la verifica dell'e-mail", + "email_verified_success": "La tua email è stata verificata. \nOra puoi accedere.", + "enable_mfa": "Abilita MFA", + "generic_error": "Si è verificato un errore durante l'elaborazione della tua richiesta.", + "make_primary": "Rendi primario", + "mfa_disabled": "Autenticazione a più fattori disabilitata correttamente!", + "mfa_enabled": "Autenticazione a più fattori abilitata correttamente!", + "mfa_not_enabled": "L'MFA non è abilitata", + "mfa_page_title": "Autenticazione a più fattori", + "no_emai_set": "Nessuna e-mail impostata", + "not_verified": "Non verificato", + "primary": "Primario", + "recovery_codes": "Codici di ripristino", + "recovery_codes_desc": "Questi sono i tuoi codici di ripristino. \nTienili al sicuro. \nNon potrai vederli più.", + "reset_session_error": "Esci, effettua nuovamente l'accesso per aggiornare la sessione e riprova.", + "verified": "Verificato", + "verify_email_success": "Verifica email inviata con successo!", + "verify": "Verificare", + "verify_email_error": "Errore durante la verifica dell'e-mail. \nRiprova tra qualche minuto.", + "documentation_link": "Collegamento alla documentazione", + "launch_account_connections": "Avvia Connessioni account", + "launch_administration_panel": "Avvia il pannello di amministrazione", + "no_verified_email_warning": "È necessario disporre di un indirizzo e-mail verificato per abilitare l'autenticazione a due fattori.", + "social_auth_desc": "Abilita o disabilita i provider di autenticazione social e OIDC per il tuo account. \nQueste connessioni ti consentono di accedere con provider di identità di autenticazione self-hosted come Authentik o provider di terze parti come GitHub.", + "social_auth_desc_2": "Queste impostazioni sono gestite nel server AdventureLog e devono essere abilitate manualmente dall'amministratore.", + "add_email": "Aggiungi e-mail", + "password_disable_warning": "Attualmente, l'autenticazione della password è disabilitata. \nÈ richiesto l'accesso tramite un fornitore sociale o OIDC.", + "password_disabled": "Autenticazione password disabilitata", + "password_disabled_error": "Errore di disabilitazione dell'autenticazione della password. \nAssicurati che un fornitore sociale o OIDC sia collegato al tuo account.", + "password_enabled": "Autenticazione password abilitata", + "password_enabled_error": "Errore che abilita l'autenticazione della password.", + "access_restricted": "Accesso limitato", + "access_restricted_desc": "Le funzionalità YAdministrative sono disponibili solo per i membri del personale.", + "add_new_email": "Aggiungi nuova e -mail", + "add_new_email_address": "Aggiungi nuovo indirizzo email", + "admin": "Amministratore", + "admin_panel_desc": "Accedi all'interfaccia di amministrazione completa", + "administration": "Amministrazione", + "administration_desc": "Strumenti e impostazioni amministrative", + "advanced": "Avanzato", + "advanced_settings": "Impostazioni avanzate", + "advanced_settings_desc": "Strumenti avanzati di configurazione e sviluppo", + "all_rights_reserved": "Tutti i diritti riservati.", + "app_version": "Versione app", + "connected": "Collegato", + "debug_information": "Informazioni sul debug", + "disabled": "Disabile", + "disconnected": "Disconnesso", + "email_management": "Gestione e -mail", + "email_management_desc": "Gestisci i tuoi indirizzi e -mail e lo stato di verifica", + "emails": "E -mail", + "enabled": "Abilitato", + "enter_current_password": "Immettere la password corrente", + "enter_first_name": "Inserisci il tuo nome", + "enter_last_name": "Inserisci il tuo cognome", + "enter_new_email": "Inserisci un nuovo indirizzo email", + "enter_new_password": "Immettere nuova password", + "enter_username": "Inserisci il tuo nome utente", + "integrations": "Integrazioni", + "integrations_desc": "Collega i servizi esterni per migliorare la tua esperienza", + "license": "Licenza", + "mfa_desc": "Aggiungi un ulteriore livello di sicurezza al tuo account", + "mfa_is_enabled": "MFA è abilitato", + "pass_change_desc": "Aggiorna la password del tuo account per una migliore sicurezza", + "password_login_disabled": "Accesso della password disabilitata", + "password_login_enabled": "Accesso alla password abilitata", + "profile_info": "Informazioni sul profilo", + "profile_info_desc": "Aggiorna i tuoi dettagli personali e l'immagine del profilo", + "public_profile_desc": "Rendi il tuo profilo visibile ad altri utenti", + "quick_actions": "Azioni rapide", + "region_updates": "Aggiornamenti della regione", + "region_updates_desc": "Aggiorna le regioni e le città visitate", + "regular_user": "Utente normale", + "security": "Sicurezza", + "settings_menu": "Menu Impostazioni", + "social_auth": "Autenticazione sociale", + "social_auth_desc_1": "Gestisci le opzioni di accesso social e le impostazioni della password", + "social_auth_setup": "Setup di autenticazione sociale", + "staff_status": "Stato del personale", + "staff_user": "Utente del personale", + "password_auth": "Autenticazione della password", + "invalid_credentials": "Credenziali non valide" + }, + "checklist": { + "checklist_delete_error": "Errore durante l'eliminazione della lista di controllo", + "checklist_deleted": "Lista di controllo eliminata con successo!", + "checklist_editor": "Redattore della lista di controllo", + "checklist_public": "Questa lista di controllo è pubblica perché è in una collezione pubblica.", + "item": "Elemento", + "item_already_exists": "L'elemento esiste già", + "item_cannot_be_empty": "L'elemento non può essere vuoto", + "items": "Elementi", + "new_item": "Nuovo elemento", + "new_checklist": "Nuova lista di controllo" + }, + "collection": { + "error_creating_collection": "Errore durante la creazione della collezione", + "error_editing_collection": "Errore durante la modifica della collezione", + "new_collection": "Nuova collezione", + "collection_created": "Collezione creata con successo!", + "collection_edit_success": "Collezione modificata con successo!", + "create": "Creare", + "public_collection": "Collezione pubblica", + "manage_collections": "Gestisci collezioni", + "archived_appear_here": "Le collezioni archiviate appariranno qui.", + "create_first": "Crea la tua prima collezione per organizzare le tue avventure e i tuoi ricordi.", + "make_sure_public": "Assicurati che il tuo profilo sia pubblico in modo che gli altri possano condividere con te.", + "no_archived_collections": "Nessuna collezione archiviata.", + "no_collections_yet": "Nessuna collezione ancora", + "no_shared_collections": "Nessuna collezione condivisa.", + "shared_collections": "Collezioni condivise", + "available": "Disponibile", + "linked": "Collegato", + "try_different_search": "Prova una ricerca o un filtro diverso." + }, + "notes": { + "add_a_link": "Aggiungi un collegamento", + "content": "Contenuto", + "editing_note": "Editor di modifica nota", + "failed_to_save": "Impossibile salvare la nota", + "note_delete_error": "Errore durante l'eliminazione della nota", + "note_deleted": "Nota eliminata con successo!", + "note_editor": "Editor della nota", + "note_public": "Questa nota è pubblica perché è in una collezione pubblica.", + "open": "Aprire", + "save": "Salva", + "invalid_url": "URL non valido", + "note_viewer": "Visualizzatore di note" + }, + "transportation": { + "edit": "Modificare", + "edit_transportation": "Modifica Trasporti", + "flight_number": "Numero del volo", + "from_location": "Dalla posizione", + "modes": { + "bike": "Bicicletta", + "boat": "Barca", + "bus": "Autobus", + "car": "Auto", + "other": "Altro", + "plane": "Aereo", + "train": "Treno", + "walking": "A piedi" + }, + "new_transportation": "Nuovi trasporti", + "to_location": "Alla posizione", + "transportation_delete_error": "Errore durante l'eliminazione del trasporto", + "transportation_deleted": "Trasporto eliminato con successo!", + "type": "Tipo", + "ending_airport_desc": "Immettere il codice dell'aroporto di arrivo (ad es. LAX)", + "fetch_location_information": "Informazioni sulla posizione di recupero", + "starting_airport_desc": "Immettere il codice dell'aeroporto di partenza (ad es. JFK)" + }, + "search": { + "adventurelog_results": "Risultati di AdventureLog", + "online_results": "Risultati in linea", + "public_adventures": "Avventure pubbliche" + }, + "map": { + "add_adventure": "Aggiungi nuova avventura", + "add_adventure_at_marker": "Aggiungi nuova avventura a Marker", + "adventure_map": "Mappa dell'avventura", + "clear_marker": "Cancella indicatore", + "map_options": "Opzioni della mappa", + "show_visited_regions": "Mostra regioni visitate", + "view_details": "Visualizza dettagli", + "adventure_stats": "Statistiche di avventura", + "adventures_shown": "Avventure mostrate", + "completion": "Completamento", + "display_options": "Opzioni di visualizzazione", + "map_controls": "Controlli della mappa", + "marker_placed_on_map": "Marcatore posizionato sulla mappa", + "place_marker_desc": "Fai clic sulla mappa per posizionare un indicatore o aggiungi un'avventura senza posizione.", + "regions": "Regioni" + }, + "languages": {}, + "share": { + "no_users_shared": "Nessun utente condiviso con", + "not_shared_with": "Non condiviso con", + "share_desc": "Condividi questa collezione con altri utenti.", + "shared": "Condiviso", + "shared_with": "Condiviso con", + "unshared": "Non condiviso", + "with": "con", + "go_to_settings": "Vai alle impostazioni", + "no_shared_found": "Nessuna collezione trovata condivisa con te.", + "set_public": "Per consentire agli utenti di condividere con te, è necessario che il tuo profilo sia impostato su pubblico." + }, + "profile": { + "member_since": "Membro da", + "user_stats": "Statistiche utente", + "visited_countries": "Paesi visitati", + "visited_regions": "Regioni visitate", + "visited_cities": "Città visitate", + "discovered": "scoperto", + "explored": "esplorato", + "no_shared_adventures": "Questo utente non ha ancora condiviso avventure pubbliche.", + "no_shared_collections": "Questo utente non ha ancora condiviso alcuna collezione pubblica.", + "planned_trips": "Viaggi pianificati", + "public_adventure_experiences": "Esperienze di avventura pubblica", + "travel_statistics": "Statistiche di viaggio", + "your_journey_at_a_glance": "Il tuo viaggio d'avventura a colpo d'occhio" + }, + "categories": { + "category_name": "Nome della categoria", + "edit_category": "Modifica categoria", + "icon": "Icona", + "manage_categories": "Gestisci categorie", + "no_categories_found": "Nessuna categoria trovata.", + "select_category": "Seleziona Categoria", + "update_after_refresh": "Le carte avventura verranno aggiornate una volta aggiornata la pagina.", + "add_new_category": "Aggiungi nuova categoria", + "name_required": "È richiesto il nome della categoria" + }, + "dashboard": { + "add_some": "Perché non iniziare a pianificare la tua prossima avventura? \nPuoi aggiungere una nuova avventura facendo clic sul pulsante in basso.", + "countries_visited": "Paesi visitati", + "no_recent_adventures": "Nessuna avventura recente?", + "recent_adventures": "Avventure recenti", + "total_adventures": "Avventure totali", + "total_visited_regions": "Totale regioni visitate", + "welcome_back": "Bentornato", + "total_visited_cities": "Totale città visitate", + "document_some_adventures": "Inizia a documentare i tuoi viaggi e costruisci la tua mappa di avventura personale!", + "view_all": "Visualizza tutto", + "welcome_text_1": "Sei stato acceso", + "welcome_text_2": "Avventure finora", + "welcome_text_3": "Continua a esplorare e documentare i tuoi viaggi!" + }, + "immich": { + "api_key": "Chiave API Immich", + "api_note": "Nota: questo deve essere l'URL del server API Immich, quindi probabilmente termina con /api a meno che tu non abbia una configurazione personalizzata.", + "disable": "Disabilita", + "immich": "Immich", + "immich_disabled": "Integrazione Immich disabilitata con successo!", + "immich_error": "Errore durante l'aggiornamento dell'integrazione Immich", + "integration_fetch_error": "Errore durante il recupero dei dati dall'integrazione Immich", + "load_more": "Carica altro", + "no_items_found": "Nessun articolo trovato", + "server_url": "URL del server Immich", + "update_integration": "Aggiorna integrazione", + "localhost_note": "Nota: molto probabilmente localhost non funzionerà a meno che tu non abbia configurato le reti docker di conseguenza. \nSi consiglia di utilizzare l'indirizzo IP del server o il nome del dominio.", + "api_key_placeholder": "Inserisci la tua chiave API immich", + "enable_integration": "Abilita l'integrazione", + "immich_integration_desc": "Collega il tuo server di gestione delle foto immich", + "need_help": "Hai bisogno di aiuto per impostare questo? \nDai un'occhiata al", + "connection_error": "Errore che si collega al server immich", + "copy_locally": "Copia immagini localmente", + "error_saving_image": "Errore salvare l'immagine", + "integration_already_exists": "Esiste già un'integrazione immich. \nPuoi avere solo un'integrazione alla volta.", + "integration_not_found": "Integrazione immich non trovata. \nSi prega di creare una nuova integrazione.", + "network_error": "Errore di rete durante la connessione al server immich. \nControlla la tua connessione e riprova.", + "validation_error": "Si è verificato un errore durante la convalida dell'integrazione immich. \nControlla l'URL e la chiave API del server.", + "copy_locally_desc": "Copia le immagini sul server per l'accesso offline. \nUtilizza più spazio su disco." + }, + "recomendations": { + "recommendation": "Raccomandazione", + "recommendations": "Raccomandazioni", + "adventure_recommendations": "Consigli di avventura", + "food": "Cibo", + "tourism": "Turismo" + }, + "lodging": { + "apartment": "Appartamento", + "bnb": "Bed and Breakfast", + "cabin": "Cabina", + "campground": "Campeggio", + "edit": "Modificare", + "edit_lodging": "Modifica alloggio", + "hostel": "Ostello", + "hotel": "Hotel", + "house": "Casa", + "new_lodging": "Nuovo alloggio", + "other": "Altro", + "reservation_number": "Numero di prenotazione", + "resort": "Resort", + "villa": "Villa", + "motel": "Motel" + }, + "google_maps": { + "google_maps_integration_desc": "Collega il tuo account Google Maps per ottenere risultati e consigli di ricerca sulla posizione di alta qualità." + }, + "calendar": { + "all_categories": "Tutte le categorie", + "all_day_event": "Evento per tutto il giorno", + "calendar_overview": "Panoramica del calendario", + "categories": "Categorie", + "day": "Giorno", + "events_scheduled": "eventi programmati", + "filter_by_category": "Filtro per categoria", + "filtered_results": "Risultati filtrati", + "month": "Mese", + "today": "Oggi", + "total_events": "Eventi totali", + "week": "Settimana" + } +} diff --git a/frontend/src/locales/ko.json b/frontend/src/locales/ko.json new file mode 100644 index 0000000..f23fc7b --- /dev/null +++ b/frontend/src/locales/ko.json @@ -0,0 +1,710 @@ +{ + "about": { + "about": "소개", + "close": "닫기", + "license": "GPL-3.0 라이선스 적용.", + "message": "미국에서 ❤️로 제작되었습니다.", + "nominatim_1": "위치 검색 및 지오코딩 제공", + "nominatim_2": "데이터는 ODbL 라이선스가 적용됩니다.", + "oss_attributions": "오픈 소스 속성", + "other_attributions": "추가 속성은 README 파일에서 찾을 수 있습니다.", + "source_code": "소스 코드", + "generic_attributions": "Adventurelog에 로그인하여 활성화 된 통합 및 서비스에 대한 속성을보십시오." + }, + "adventures": { + "actions": "행동", + "activities": {}, + "activity_types": "활동 유형", + "add": "추가", + "add_a_tag": "태그를 추가하세요", + "add_new": "새로 추가...", + "add_notes": "메모 추가", + "add_to_collection": "컬렉션에 추가하세요", + "adventure": "모험", + "adventure_calendar": "모험 달력", + "adventure_create_error": "모험을 만들지 못했습니다", + "adventure_created": "모험 생성됨", + "adventure_delete_confirm": "이 모험을 삭제 하시겠습니까? 이 행동은 취소 할 수 없습니다.", + "adventure_delete_success": "모험이 성공적으로 삭제되었습니다!", + "adventure_not_found": "표시할 모험이 없습니다. 오른쪽 하단의 플러스 버튼을 사용하여 추가하거나 필터를 변경하세요!", + "adventure_update_error": "모험을 업데이트하지 못했습니다", + "adventure_updated": "모험 업데이트됨", + "all": "모두", + "archive": "보관", + "archived": "보관됨", + "archived_collection_message": "컬렉션이 성공적으로 보관되었습니다!", + "archived_collections": "보관된 컬렉션", + "ascending": "오름차순", + "attachment": "첨부 파일", + "attachment_delete_success": "첨부 파일이 성공적으로 삭제되었습니다!", + "attachment_name": "첨부 파일 이름", + "attachment_update_error": "첨부 파일 업데이트 실패", + "attachment_update_success": "첨부 파일이 성공적으로 업데이트되었습니다!", + "attachment_upload_error": "첨부 파일 업로드 실패", + "attachment_upload_success": "첨부 파일이 성공적으로 업로드되었습니다!", + "attachments": "첨부 파일", + "basic_information": "기본 정보", + "cancel": "취소", + "category": "카테고리", + "category_fetch_error": "카테고리 불러오기 실패", + "category_filter": "카테고리 필터", + "checklist": "체크리스트", + "checklist_delete_confirm": "이 체크리스트를 삭제 하시겠습니까? 이 행동은 취소할 수 없습니다.", + "clear_location": "장소 초기화", + "clear_map": "지도 초기화", + "collection": "컬렉션", + "collection_adventures": "컬렉션 모험을 추가하세요", + "collection_archived": "이 컬렉션은 보관되었습니다.", + "collection_completed": "이 컬렉션을 완성했습니다!", + "collection_link_error": "컬렉션에 모험 연결 중 오류", + "collection_link_success": "컬렉션에 모험이 성공적으로 연결되었습니다!", + "collection_remove_error": "컬렉션에서 모험을 제거 중 오류", + "collection_remove_success": "컬렉션에서 모험이 제거되었습니다!", + "collection_stats": "컬렉션 통계", + "copied_to_clipboard": "클립 보드에 복사됨!", + "copy_failed": "복사 실패", + "copy_link": "링크 복사", + "count_txt": "검색과 일치하는 결과", + "create_adventure": "모험 생성", + "create_new": "새로 만들기...", + "date": "일자", + "date_constrain": "컬렉션 일자로 제한", + "date_information": "일자 정보", + "dates": "일자", + "day": "일", + "days": "일", + "delete": "삭제", + "delete_adventure": "모험 삭제", + "delete_checklist": "체크리스트 삭제", + "delete_collection": "컬렉션 삭제", + "delete_collection_success": "컬렉션이 성공적으로 삭제되었습니다!", + "delete_note": "노트 삭제", + "delete_transportation": "교통수단 삭제", + "descending": "내림차순", + "description": "설명", + "download_calendar": "캘린더 다운로드", + "duration": "기간", + "edit_adventure": "모험 편집", + "edit_collection": "컬렉션 편집", + "emoji_picker": "이모티콘 선택", + "end": "끝", + "end_date": "종료일", + "ending_airport": "도착 공항", + "error_updating_regions": "지역 업데이트 오류", + "fetch_image": "이미지 가져오기", + "filter": "필터", + "finding_recommendations": "다음 모험을 위해 숨겨진 보물을 찾아보세요", + "flight_information": "항공편 정보", + "from": "출발", + "generate_desc": "설명을 적으세요", + "gpx_tip": "GPX 파일을 첨부 파일에 업로드하면 지도에서 볼 수 있습니다!", + "hide": "숨기기", + "homepage": "홈페이지", + "image": "이미지", + "image_fetch_failed": "이미지를 가져오지 못했습니다", + "image_removed_error": "이미지 삭제 오류", + "image_removed_success": "이미지가 성공적으로 삭제되었습니다!", + "image_upload_error": "이미지 업로드 오류", + "image_upload_success": "이미지가 성공적으로 업로드되었습니다!", + "images": "이미지", + "itineary_by_date": "날짜 순 일정표", + "keep_exploring": "계속 탐험하세요!", + "latitude": "위도", + "link": "링크", + "link_new": "새로운 링크...", + "linked_adventures": "링크된 모험", + "links": "링크", + "location": "위치", + "location_information": "위치 정보", + "longitude": "경도", + "mark_visited": "방문함으로 표시", + "md_instructions": "여기에 마크다운으로 작성할 수 있습니다...", + "my_adventures": "내 모험", + "my_collections": "내 컬렉션", + "my_images": "내 이미지", + "name": "이름", + "new_adventure": "새로운 모험", + "no_adventures_found": "모험이 없습니다", + "no_adventures_to_recommendations": "모험이 없습니다. 장소를 추천받으려면 최소 하나 이상의 모험을 등록해야 합니다.", + "no_collections_found": "이 모험을 추가할 수 있는 컬렉션이 없습니다.", + "no_description_found": "설명이 없습니다", + "no_image_found": "이미지가 없습니다", + "no_image_url": "해당 URL에 이미지가 없습니다.", + "no_images": "이미지가 없습니다", + "no_linkable_adventures": "이 컬렉션에 연결할 수 있는 모험이 없습니다.", + "no_location": "위치를 입력하세요", + "no_location_found": "위치가 없습니다", + "no_results": "결과가 없습니다", + "not_found": "모험이 없습니다", + "not_found_desc": "당신이 찾고 있던 모험을 찾을 수 없었습니다. 다른 모험을 찾아보거나 나중에 다시 해 보세요.", + "not_visited": "방문하지 않음", + "note": "노트", + "note_delete_confirm": "이 노트를 삭제 하시겠습니까? 이 행동은 취소 할 수 없습니다.", + "notes": "노트", + "nothing_planned": "이 날에 계획된 것이 없습니다. 즐거운 여행 되세요!", + "open_details": "상세 내용 보기", + "open_filters": "필터 열기", + "order_by": "정렬 기준", + "order_direction": "정렬 순서", + "out_of_range": "여정 날짜 범위 내에 없습니다", + "planned": "계획", + "preview": "미리보기", + "private": "비공개", + "public": "공개", + "public_adventure": "공개 모험", + "rating": "평가", + "regions_updated": "지역이 업데이트되었습니다", + "remove": "제거", + "remove_from_collection": "컬렉션에서 제거", + "save_next": "저장 & 다음", + "search_for_location": "위치 검색", + "search_results": "검색 결과", + "see_adventures": "모험 보기", + "set_to_pin": "고정하기", + "share": "공유", + "share_adventure": "이 모험을 공유하세요!", + "show": "보기", + "sort": "정렬", + "sources": "출처", + "start": "시작", + "start_before_end_error": "시작일은 종료일 이전이어야 합니다", + "start_date": "시작일", + "starting_airport": "출발 공항", + "tags": "태그", + "to": "도착", + "transportation": "교통수단", + "transportation_delete_confirm": "이 교통수단을 삭제 하시겠습니까? 이 행동은 취소 할 수 없습니다.", + "transportations": "교통수단", + "unarchive": "보관 취소", + "unarchived_collection_message": "컬렉션이 성공적으로 보관 취소되었습니다!", + "update_visited_regions": "방문 지역 업데이트", + "update_visited_regions_disclaimer": "방문한 모험의 수에 따라 시간이 걸릴 수 있습니다.", + "updated": "업데이트됨", + "upload": "업로드", + "upload_image": "이미지 업로드", + "url": "URL", + "visit": "방문", + "visit_link": "링크 방문", + "visited": "방문함", + "visited_region_check": "방문 지역 확인", + "visited_region_check_desc": "이것을 선택하면 서버는 방문한 모든 모험을 확인하고 그 모험의 지역을 표시하여 세계 여행에서 방문 여부를 표시합니다.", + "visits": "방문", + "warning": "경고", + "wiki_desc": "모험의 이름과 일치하는 글을 위키백과에서 가져옵니다.", + "wiki_image_error": "위키백과 이미지 가져오기 오류", + "wikipedia": "위키백과", + "will_be_marked": "모험이 저장되면 방문했다고 표시합니다.", + "checklists": "체크리스트", + "cities_updated": "도시 업데이트됨", + "clear": "초기화", + "city": "도시", + "delete_lodging": "숙박을 삭제하십시오", + "display_name": "표시 이름", + "location_details": "위치 세부 사항", + "lodging": "하숙", + "lodging_delete_confirm": "이 숙소 위치를 삭제 하시겠습니까? \n이 조치는 취소 할 수 없습니다.", + "lodging_information": "숙박 정보", + "price": "가격", + "region": "지역", + "reservation_number": "예약 번호", + "open_in_maps": "지도에서 열립니다", + "all_day": "하루 종일", + "collection_no_start_end_date": "컬렉션에 시작 및 종료 날짜를 추가하면 컬렉션 페이지에서 여정 계획 기능이 잠금 해제됩니다.", + "date_itinerary": "날짜 일정", + "no_ordered_items": "컬렉션에 날짜가있는 항목을 추가하여 여기에서 확인하십시오.", + "ordered_itinerary": "주문한 여정", + "invalid_date_range": "잘못된 날짜 범위", + "timezone": "시간대", + "no_visits": "방문 없음", + "arrival_timezone": "도착 시간대", + "departure_timezone": "출발 시간대", + "arrival_date": "도착 날짜", + "departure_date": "출발 날짜", + "coordinates": "좌표", + "copy_coordinates": "좌표를 복사하십시오", + "sun_times": "태양 시간", + "sunrise": "해돋이", + "sunset": "일몰", + "timed": "시간이 정해졌습니다", + "distance": "거리", + "all_linked_items": "모든 링크 된 항목", + "itinerary": "여정", + "joined": "가입", + "view_profile": "프로필을 봅니다", + "share_collection": "이 컬렉션을 공유하십시오!", + "filters_and_sort": "필터", + "filters_and_stats": "필터", + "no_adventures_message": "모험을 문서화하고 새로운 모험을 계획하십시오. \n모든 여정에는 말할 가치가있는 이야기가 있습니다.", + "travel_progress": "여행 진행", + "adventures_available": "이용 가능", + "all_adventures_already_linked": "모든 모험은 이미이 컬렉션과 연결되어 있습니다.", + "collections_linked": "컬렉션 링크", + "create_collection_first": "먼저 모험과 추억을 조직하기 위해 먼저 컬렉션을 만드십시오.", + "delete_collection_warning": "이 컬렉션을 삭제 하시겠습니까? \n이 조치는 취소 할 수 없습니다.", + "done": "완료", + "loading_adventures": "적재 모험 ...", + "name_location": "이름, 위치", + "collection_contents": "수집 내용", + "check_in": "체크인", + "check_out": "체크 아웃" + }, + "auth": { + "confirm_password": "비밀번호 확인", + "email": "이메일", + "first_name": "이름", + "forgot_password": "비밀번호를 잊으셨나요?", + "last_name": "성", + "login": "로그인", + "login_error": "제공한 자격 증명으로 로그인 할 수 없습니다.", + "new_password": "새 비밀번호 (6자 이상)", + "or_3rd_party": "또는 서드 파티 서비스로 로그인하세요", + "password": "비밀번호", + "profile_picture": "프로필 사진", + "public_profile": "공개 프로필", + "public_tooltip": "공개 프로필을 사용하면 당신에게 다른 사용자가 컬렉션을 공유할 수 있으며, 사용자 페이지에서 프로필이 노출됩니다.", + "registration_disabled": "현재 등록할 수 없습니다.", + "signup": "가입", + "username": "사용자 이름", + "no_public_adventures": "공개 모험이 발견되지 않았습니다", + "no_public_collections": "공개 컬렉션이 발견되지 않았습니다", + "user_adventures": "사용자 모험", + "user_collections": "사용자 수집" + }, + "categories": { + "category_name": "카테고리 이름", + "edit_category": "카테고리 편집", + "icon": "아이콘", + "manage_categories": "카테고리 관리", + "no_categories_found": "카테고리가 없습니다.", + "select_category": "카테고리 선택", + "update_after_refresh": "페이지를 새로고침해야 모험 카드가 업데이트됩니다.", + "add_new_category": "새 카테고리를 추가하십시오", + "name_required": "카테고리 이름이 필요합니다" + }, + "checklist": { + "checklist_delete_error": "체크리스트 삭제 오류", + "checklist_deleted": "체크리스트가 성공적으로 삭제되었습니다!", + "checklist_editor": "체크리스트 편집기", + "checklist_public": "이 체크리스트는 공개 컬렉션에 있기 때문에 공개되었습니다.", + "item": "항목", + "item_already_exists": "항목이 이미 존재합니다", + "item_cannot_be_empty": "항목은 비어있을 수 없습니다", + "items": "항목", + "new_checklist": "새 체크리스트", + "new_item": "새 항목" + }, + "collection": { + "collection_created": "컬렉션이 성공적으로 생성되었습니다!", + "collection_edit_success": "컬렉션이 성공적으로 편집되었습니다!", + "create": "생성", + "error_creating_collection": "컬렉션 생성 오류", + "error_editing_collection": "컬렉션 편집 오류", + "new_collection": "새로운 컬렉션", + "public_collection": "공개 컬렉션", + "manage_collections": "컬렉션을 관리합니다", + "archived_appear_here": "보관 된 컬렉션이 여기에 나타납니다.", + "create_first": "모험과 추억을 조직하기 위해 첫 번째 컬렉션을 만드십시오.", + "make_sure_public": "다른 사람들이 귀하와 공유 할 수 있도록 프로필이 공개되어 있는지 확인하십시오.", + "no_archived_collections": "보관 된 컬렉션이 없습니다.", + "no_collections_yet": "아직 컬렉션이 없습니다", + "no_shared_collections": "공유 컬렉션이 없습니다.", + "shared_collections": "공유 컬렉션", + "available": "사용 가능", + "linked": "연결되어 있습니다", + "try_different_search": "다른 검색 또는 필터를 사용해보십시오." + }, + "dashboard": { + "add_some": "다음 모험을 계획해 보는게 어떨까요? 아래 버튼을 클릭하여 새로운 모험을 추가할 수 있습니다.", + "countries_visited": "방문한 국가", + "no_recent_adventures": "최근 모험이 없나요?", + "recent_adventures": "최근 모험", + "total_adventures": "모든 모험", + "total_visited_cities": "방문한 모든 도시", + "total_visited_regions": "방문한 모든 지역", + "welcome_back": "다시 오신 것을 환영합니다", + "document_some_adventures": "여행을 문서화하고 개인 모험지도를 구축하십시오!", + "view_all": "모두보기", + "welcome_text_1": "당신은있었습니다", + "welcome_text_2": "지금까지 모험", + "welcome_text_3": "여행을 계속 탐색하고 문서화하십시오!" + }, + "home": { + "desc_1": "쉽고 편리하게 발견하고, 계획하고, 탐험하세요", + "desc_2": "AdventureLog는 여러분의 여정을 더 편리하게 만들어 드립니다. 추억에 남을 다음 모험을 계획하고, 준비하고, 안내하는 데 필요한 모든 도구와 리소스를 제공할 수 있도록 설계되었습니다.", + "feature_1": "여행 로그", + "feature_1_desc": "나만의 여행 기록을 만들어 기록하고 친구나 가족들에게 경험을 공유하세요.", + "feature_2": "일정 계획", + "feature_2_desc": "손쉽게 맞춤형 일정을 만들고 하루 단위 일정표를 받아 보세요.", + "feature_3": "여행 지도", + "feature_3_desc": "세계 각지의 방문지를 인터랙티브 지도로 확인하고 새로운 여행지를 찾아 보세요.", + "go_to": "Adventurelog로 이동", + "hero_1": "세상에서 가장 짜릿한 모험을 발견하세요", + "hero_2": "Adventurelog로 다음 모험을 발견하고 계획해 보세요. 환상적인 여행지를 탐색하고, 나만의 일정을 만드세요. 어디서든 접속할 수 있습니다.", + "key_features": "주요 기능", + "explore_world": "세상을 탐험하십시오", + "latest_travel_experiences": "최신 여행 경험", + "of_world": "세계의", + "start_your_journey": "여행을 시작하십시오" + }, + "immich": { + "api_key": "Immich API 키", + "api_note": "참고 : 이것은 Immich API 서버의 URL이어야 합니다. 사용자 정의 구성을 하지 않았다면 끝이 /api 입니다.", + "disable": "사용 불가", + "immich": "Immich", + "immich_disabled": "Immich 통합이 성공적으로 비활성화되었습니다!", + "immich_error": "Immich 통합 업데이트 오류", + "integration_fetch_error": "Immich 통합에서 데이터 가져오기 오류", + "load_more": "더 가져오기", + "localhost_note": "참고 : docker 네트워크를 적절하게 설정하지 않으면 localhost는 올바르게 작동하지 않을 수 있습니다. IP 주소나 서버의 도메인 주소를 사용하는 것이 좋습니다.", + "no_items_found": "항목 없음", + "server_url": "Immich 서버 URL", + "update_integration": "통합 업데이트", + "api_key_placeholder": "Immich API 키를 입력하십시오", + "enable_integration": "통합을 활성화합니다", + "immich_integration_desc": "Immich Photo Management Server를 연결하십시오", + "need_help": "이것을 설정하는 데 도움이 필요하십니까? \n확인하십시오", + "connection_error": "Immich 서버에 연결하는 오류", + "copy_locally": "로컬에서 이미지를 복사하십시오", + "copy_locally_desc": "오프라인 액세스를 위해 이미지를 서버에 복사하십시오. \n더 많은 디스크 공간을 사용합니다.", + "error_saving_image": "오류 저장 이미지", + "integration_already_exists": "면역 통합이 이미 존재합니다. \n한 번에 하나만 통합 할 수 있습니다.", + "integration_not_found": "Immich 통합을 찾을 수 없습니다. \n새로운 통합을 작성하십시오.", + "network_error": "Immich 서버에 연결하는 동안 네트워크 오류. \n연결을 확인하고 다시 시도하십시오.", + "validation_error": "면역 통합을 검증하는 동안 오류가 발생했습니다. \n서버 URL 및 API 키를 확인하십시오." + }, + "map": { + "add_adventure": "새로운 모험 추가", + "add_adventure_at_marker": "마커에 새로운 모험 추가", + "adventure_map": "모험 지도", + "clear_marker": "마커 초기화", + "map_options": "지도 옵션", + "show_visited_regions": "방문한 지역 보기", + "view_details": "상세 보기", + "adventure_stats": "모험 통계", + "adventures_shown": "모험 쇼", + "completion": "완성", + "display_options": "디스플레이 옵션", + "map_controls": "맵 컨트롤", + "marker_placed_on_map": "마커가지도에 배치되었습니다", + "place_marker_desc": "지도를 클릭하여 마커를 배치하거나 위치없이 모험을 추가하십시오.", + "regions": "지역" + }, + "navbar": { + "about": "Adventurelog 소개", + "adventures": "모험", + "calendar": "달력", + "collections": "컬렉션", + "documentation": "문서", + "greeting": "안녕하세요", + "language_selection": "언어", + "logout": "로그아웃", + "map": "지도", + "my_adventures": "내 모험", + "my_tags": "내 태그", + "profile": "프로필", + "search": "검색", + "settings": "설정", + "shared_with_me": "나와 공유함", + "support": "지원", + "tag": "태그", + "theme_selection": "테마 선택", + "themes": { + "aestheticDark": "미적 어둠", + "aestheticLight": "미적 빛", + "aqua": "아쿠아", + "dark": "어두운", + "dim": "어둑한", + "forest": "숲", + "light": "빛", + "night": "밤", + "northernLights": "북극광" + }, + "users": "사용자", + "worldtravel": "세계 여행", + "admin_panel": "관리자 패널" + }, + "notes": { + "add_a_link": "링크 추가", + "content": "콘텐츠", + "editing_note": "노트 편집", + "failed_to_save": "메모 저장 실패", + "invalid_url": "잘못된 URL", + "note_delete_error": "노트 삭제 오류", + "note_deleted": "노트가 성공적으로 삭제되었습니다!", + "note_editor": "노트 편집기", + "note_public": "이 노트는 공개 컬렉션에 있기 때문에 공개되었습니다.", + "note_viewer": "노트 뷰어", + "open": "열기", + "save": "저장" + }, + "profile": { + "member_since": "가입 시점", + "user_stats": "사용자 통계", + "visited_cities": "방문한 도시", + "visited_countries": "방문한 국가", + "visited_regions": "방문한 지역", + "discovered": "발견", + "explored": "탐험", + "no_shared_adventures": "이 사용자는 아직 공개 모험을 공유하지 않았습니다.", + "no_shared_collections": "이 사용자는 아직 공개 컬렉션을 공유하지 않았습니다.", + "planned_trips": "계획된 여행", + "public_adventure_experiences": "공개 모험 경험", + "your_journey_at_a_glance": "당신의 모험 여행", + "travel_statistics": "여행 통계" + }, + "recomendations": { + "recommendation": "추천", + "recommendations": "권장 사항", + "adventure_recommendations": "모험 추천", + "food": "음식", + "tourism": "관광 여행" + }, + "search": { + "adventurelog_results": "Adventurelog 결과", + "online_results": "온라인 결과", + "public_adventures": "공개 모험" + }, + "settings": { + "about_this_background": "이 배경에 대해", + "account_settings": "사용자 계정 설정", + "add_email": "이메일 추가", + "authenticator_code": "인증 코드", + "change_password": "비밀번호 변경", + "confirm_new_password": "새 비밀번호 확인", + "copy": "복사", + "current_password": "현재 비밀번호", + "disable_mfa": "MFA 비활성화", + "email_added": "이메일이 성공적으로 추가되었습니다!", + "email_change": "이메일 변경", + "email_removed": "이메일이 성공적으로 제거되었습니다!", + "email_removed_error": "이메일 제거 오류", + "email_verified": "이메일을 성공적으로 인증했습니다!", + "email_verified_erorr_desc": "이메일이 인증되지 않았습니다. 다시 시도하세요.", + "email_verified_error": "이메일 인증 오류", + "email_verified_success": "이메일이 인증되었습니다. 이제 로그인 할 수 있습니다.", + "enable_mfa": "MFA 활성화", + "generic_error": "요청 처리 중 오류가 발생했습니다.", + "join_discord": "디스코드 참여", + "join_discord_desc": "#travel-share 채널에 자신의 사진을 공유하세요.", + "launch_account_connections": "계정 연결 시작", + "launch_administration_panel": "관리자 패널 열기", + "make_primary": "기본 이메일로 설정", + "mfa_disabled": "다중 인증이 성공적으로 비활성화되었습니다!", + "mfa_enabled": "다중 인증이 성공적으로 활성화되었습니다!", + "mfa_not_enabled": "MFA가 활성화되지 않았습니다", + "mfa_page_title": "다중 인증", + "new_email": "새 이메일", + "new_password": "새 비밀번호", + "no_emai_set": "이메일 세트가 없습니다", + "no_email_set": "이메일 세트가 없습니다", + "no_verified_email_warning": "2단계 인증을 활성화하려면 인증된 이메일 주소가 필요합니다.", + "not_verified": "인증되지 않음", + "password_change": "비밀번호 변경", + "password_change_lopout_warning": "비밀번호를 변경한 후 로그아웃됩니다.", + "photo_by": "사진 제공", + "possible_reset": "입력한 이메일 주소가 계정과 일치하면, 비밀번호를 재설정하기 위한 이메일을 받게 됩니다!", + "primary": "기본", + "recovery_codes": "복구 코드", + "recovery_codes_desc": "이것은 복구 코드입니다. 안전하게 보관하세요. 재확인이 불가능합니다.", + "reset_password": "비밀번호 재설정", + "reset_session_error": "로그아웃 후 재접속하여 세션을 초기화하고 다시 시도하세요.", + "settings_page": "설정 페이지", + "social_auth_desc": "소셜 및 OIDC 인증 제공자를 활성화 또는 비활성화합니다. 활성화하면 Authentik 같은 자체 호스팅 인증 제공자나 Github 같은 서드 파티 인증 제공자로 로그인할 수 있습니다.", + "social_auth_desc_2": "관련 설정은 Adventurelog 서버에서 관리되며 관리자가 직접 활성화해야 합니다.", + "update": "업데이트", + "update_error": "설정 업데이트 오류", + "update_success": "설정이 성공적으로 업데이트되었습니다!", + "verified": "인증됨", + "verify": "인증", + "verify_email_error": "이메일 인증 오류. 몇 분 후 다시 시도하세요.", + "verify_email_success": "인증 이메일이 성공적으로 발송되었습니다!", + "documentation_link": "문서화 링크", + "email_set_primary": "기본 이메일 세트로 설정했습니다!", + "email_set_primary_error": "기본 이메일 설정 오류", + "password_disable_warning": "현재 비밀번호 인증이 비활성화되어 있습니다. \n소셜 또는 OIDC 제공 업체를 통해 로그인해야합니다.", + "password_disabled": "비밀번호 인증 비활성화", + "password_disabled_error": "비밀번호 인증 오류. \n소셜 또는 OIDC 제공 업체가 귀하의 계정에 연결되어 있는지 확인하십시오.", + "password_enabled": "비밀번호 인증 활성화", + "password_enabled_error": "비밀번호 인증을 활성화하는 오류.", + "access_restricted": "액세스 제한", + "access_restricted_desc": "Yadministrative 기능은 직원에게만 사용할 수 있습니다.", + "add_new_email": "새 이메일을 추가하십시오", + "add_new_email_address": "새 이메일 주소를 추가하십시오", + "admin": "관리자", + "admin_panel_desc": "전체 관리 인터페이스에 액세스하십시오", + "administration": "관리", + "administration_desc": "관리 도구 및 설정", + "advanced": "고급의", + "advanced_settings": "고급 설정", + "advanced_settings_desc": "고급 구성 및 개발 도구", + "all_rights_reserved": "모든 권리 보유.", + "app_version": "앱 버전", + "connected": "연결", + "debug_information": "디버그 정보", + "disabled": "장애가 있는", + "disconnected": "연결이 끊어졌습니다", + "email_management": "이메일 관리", + "email_management_desc": "이메일 주소 및 확인 상태를 관리하십시오", + "emails": "이메일", + "enabled": "활성화", + "enter_current_password": "현재 비밀번호를 입력하십시오", + "enter_first_name": "이름을 입력하십시오", + "enter_last_name": "성을 입력하십시오", + "enter_new_email": "새 이메일 주소를 입력하십시오", + "enter_new_password": "새 비밀번호를 입력하십시오", + "enter_username": "사용자 이름을 입력하십시오", + "integrations": "통합", + "integrations_desc": "경험을 향상시키기 위해 외부 서비스를 연결하십시오", + "license": "특허", + "mfa_desc": "계정에 추가 보안 계층을 추가하십시오", + "mfa_is_enabled": "MFA가 활성화되었습니다", + "pass_change_desc": "더 나은 보안을 위해 계정 비밀번호를 업데이트하십시오", + "password_auth": "비밀번호 인증", + "password_login_disabled": "암호 로그인이 비활성화되었습니다", + "password_login_enabled": "암호 로그인이 활성화되었습니다", + "profile_info": "프로필 정보", + "profile_info_desc": "개인 정보 및 프로필 사진을 업데이트하십시오", + "public_profile_desc": "프로필을 다른 사용자에게 보이게하십시오", + "quick_actions": "빠른 행동", + "region_updates": "지역 업데이트", + "region_updates_desc": "업데이트 방문 지역 및 도시", + "regular_user": "일반 사용자", + "security": "보안", + "settings_menu": "설정 메뉴", + "social_auth": "사회적 인증", + "social_auth_desc_1": "소셜 로그인 옵션 및 비밀번호 설정을 관리합니다", + "social_auth_setup": "소셜 인증 설정", + "staff_status": "직원 상태", + "staff_user": "직원 사용자", + "invalid_credentials": "잘못된 자격 증명" + }, + "share": { + "go_to_settings": "설정으로 이동", + "no_shared_found": "공유받은 컬렉션이 없습니다.", + "no_users_shared": "공유한 사용자가 없습니다", + "not_shared_with": "공유하지 않음", + "set_public": "다른 사람에게 공유하려면, 프로필을 공개해야 합니다.", + "share_desc": "이 컬렉션을 다른 사용자와 공유하세요.", + "shared": "공유됨", + "shared_with": "공유한 사용자", + "unshared": "공유되지 않음", + "with": "함께 하는 사용자" + }, + "transportation": { + "edit": "편집", + "edit_transportation": "교통수단 편집", + "flight_number": "항공편 번호", + "from_location": "출발지", + "modes": { + "bike": "자전거", + "boat": "보트", + "bus": "버스", + "car": "자동차", + "other": "기타", + "plane": "비행기", + "train": "기차", + "walking": "도보" + }, + "new_transportation": "새 교통수단", + "to_location": "도착지", + "transportation_delete_error": "교통수단 삭제 오류", + "transportation_deleted": "교통수단이 성공적으로 삭제되었습니다!", + "type": "유형", + "ending_airport_desc": "엔드 공항 코드 입력 (예 : LAX)", + "fetch_location_information": "위치 정보를 가져 오십시오", + "starting_airport_desc": "공항 시작 코드 입력 (예 : JFK)" + }, + "users": { + "no_users_found": "공개 프로필인 사용자가 없습니다." + }, + "worldtravel": { + "all": "모두", + "all_subregions": "모든 하위 지역", + "cities": "도시", + "clear_search": "검색 초기화", + "completely_visited": "모두 방문함", + "country_list": "국가 목록", + "failed_to_mark_visit": "방문함으로 표시 중 오류", + "failed_to_remove_visit": "방문함으로 표시 제거 중 오류", + "marked_visited": "방문으로 표시", + "no_cities_found": "도시가 없습니다", + "no_countries_found": "국가가 없습니다", + "not_visited": "방문하지 않음", + "num_countries": "개 국가 검색", + "partially_visited": "일부 방문함", + "region_failed_visited": "지역을 방문함으로 표시 중 실패", + "regions_in": "소속 지역", + "removed": "제거됨", + "view_cities": "도시 보기", + "visit_remove_failed": "방문 표시 제거 실패", + "visit_to": "방문함", + "all_regions": "모든 지역", + "available_to_explore": "탐색 할 수 있습니다", + "cities_in": "도시", + "clear_all": "모든 것을 지우십시오", + "clear_all_filters": "모든 필터를 지우십시오", + "clear_filters": "클리어 필터", + "complete": "완벽한", + "countries": "국가", + "country_completed": "국가 완료", + "filter_by": "필터", + "filter_by_region": "지역별 필터", + "hide_map": "지도를 숨 깁니다", + "hide_map_labels": "지도 레이블을 숨 깁니다", + "interactive_map": "대화식지도", + "no_countries_found_desc": "원하는 국가를 찾으려면 검색어 또는 필터를 조정해보십시오.", + "no_country_data_available": "국가 데이터를 사용할 수 없습니다", + "no_country_data_available_desc": "지역 데이터 업데이트는 문서를 확인하십시오.", + "no_regions_found": "발견되지 않았습니다", + "of": "~의", + "partial": "부분적", + "progress": "진전", + "progress_and_stats": "진전", + "region_completed": "지역 완료", + "remaining": "남아 있습니다", + "show_map": "지도 표시", + "show_map_labels": "지도 레이블 표시", + "total_cities": "총 도시", + "total_countries": "총 국가", + "total_regions": "총 지역", + "newest_first": "최신 첫 번째", + "oldest_first": "가장 오래된 첫 번째", + "unvisited_first": "먼저 방문하지 않습니다", + "visited_first": "먼저 방문했습니다", + "total_items": "총 항목" + }, + "lodging": { + "apartment": "아파트", + "bnb": "숙박 및 아침 식사", + "cabin": "선실", + "campground": "캠프장", + "edit": "편집하다", + "edit_lodging": "숙박 편집", + "hostel": "숙박소", + "hotel": "호텔", + "house": "집", + "motel": "모텔", + "new_lodging": "새로운 숙박", + "other": "다른", + "reservation_number": "예약 번호", + "resort": "의지", + "villa": "별장" + }, + "google_maps": { + "google_maps_integration_desc": "Google지도 계정을 연결하여 고품질 위치 검색 결과 및 권장 사항을 얻으십시오." + }, + "calendar": { + "all_categories": "모든 카테고리", + "all_day_event": "하루 종일 이벤트", + "calendar_overview": "캘린더 개요", + "categories": "카테고리", + "day": "낮", + "events_scheduled": "예약 된 이벤트", + "filter_by_category": "카테고리 별 필터", + "filtered_results": "필터링 된 결과", + "month": "월", + "today": "오늘", + "total_events": "총 이벤트", + "week": "주" + } +} diff --git a/frontend/src/locales/nl.json b/frontend/src/locales/nl.json new file mode 100644 index 0000000..ec06221 --- /dev/null +++ b/frontend/src/locales/nl.json @@ -0,0 +1,711 @@ +{ + "about": { + "about": "Over", + "close": "Sluiten", + "license": "Gelicentieerd onder de GPL-3.0-licentie.", + "message": "Met ❤️ gemaakt in de Verenigde Staten.", + "nominatim_1": "Locatie zoeken en geocodering wordt verzorgd door", + "nominatim_2": "Hun gegevens zijn in licentie gegeven onder de ODbL-licentie.", + "oss_attributions": "Open source gebruik", + "other_attributions": "Aanvullende vermeldingen zijn te vinden in het README-bestand.", + "source_code": "Broncode", + "generic_attributions": "Log in op AdventUrelog om attributies te bekijken voor ingeschakelde integraties en services." + }, + "adventures": { + "activities": {}, + "add_to_collection": "Toevoegen aan collectie", + "adventure": "Avontuur", + "adventure_delete_confirm": "Weet je zeker dat je dit avontuur wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.", + "archive": "Archiveer", + "archived": "Gearchiveerd", + "archived_collection_message": "Collectie succesvol gearchiveerd!", + "archived_collections": "Gearchiveerde collecties", + "ascending": "Oplopend", + "cancel": "Annuleren", + "category_filter": "Categoriefilter", + "clear": "Leeg maken", + "collection": "Collectie", + "collection_adventures": "Inclusief collectie-avonturen", + "collection_link_error": "Fout bij het koppelen van dit avontuur aan de collectie", + "collection_link_success": "Avontuur succesvol gekoppeld aan collectie!", + "collection_remove_error": "Fout bij verwijderen van dit avontuur uit de collectie", + "collection_remove_success": "Avontuur is succesvol uit de collectie verwijderd!", + "count_txt": "resultaten die overeenkomen met uw zoekopdracht", + "create_new": "Maak nieuwe...", + "date": "Datum", + "delete": "Verwijderen", + "delete_collection": "Collectie verwijderen", + "delete_collection_success": "Collectie succesvol verwijderd!", + "descending": "Aflopend", + "edit_adventure": "Avontuur bewerken", + "edit_collection": "Collectie bewerken", + "filter": "Filter", + "homepage": "Startpagina", + "latitude": "Breedte", + "longitude": "Lengte", + "my_collections": "Mijn collecties", + "name": "Naam", + "no_image_found": "Geen afbeelding gevonden", + "not_found": "Avontuur niet gevonden", + "not_found_desc": "Het avontuur waar je naar op zoek was, kon niet worden gevonden. \nProbeer een ander avontuur of kom later nog eens terug.", + "open_details": "Details openen", + "open_filters": "Filters openen", + "order_by": "Sorteer op", + "order_direction": "Sorteervolgorde", + "private": "Privé", + "public": "Openbaar", + "rating": "Beoordeling", + "remove_from_collection": "Verwijderen uit collectie", + "share": "Deel", + "sort": "Sorteer", + "sources": "Bronnen", + "unarchive": "Uit het archief halen", + "unarchived_collection_message": "Collectie is succesvol gedearchiveerd!", + "updated": "Gewijzigd", + "visit": "Bezoek", + "visits": "Bezoeken", + "adventure_delete_success": "Avontuur succesvol verwijderd!", + "dates": "Datums", + "delete_adventure": "Avontuur verwijderen", + "duration": "Duur", + "image_removed_error": "Fout bij het verwijderen van de afbeelding", + "image_removed_success": "Afbeelding succesvol verwijderd!", + "image_upload_error": "Fout bij het uploaden van de afbeelding", + "image_upload_success": "Afbeelding succesvol geüpload!", + "no_image_url": "Er is geen afbeelding gevonden op die URL.", + "planned": "Gepland", + "start_before_end_error": "De startdatum moet vóór de einddatum liggen", + "visited": "Bezocht", + "wiki_image_error": "Fout bij het ophalen van afbeelding van Wikipedia", + "actions": "Acties", + "activity_types": "Activiteitstypen", + "add": "Toevoegen", + "add_notes": "Voeg opmerkingen toe", + "adventure_create_error": "Kan geen avontuur aanmaken", + "adventure_created": "Avontuur aangemaakt", + "adventure_update_error": "Kan avontuur niet wijzigen", + "adventure_updated": "Avontuur gewijzigd", + "basic_information": "Basisinformatie", + "category": "Categorie", + "clear_map": "Kaart leegmaken", + "copy_link": "Kopieer link", + "date_constrain": "Beperk tot de datums van de collectie", + "description": "Beschrijving", + "end_date": "Einddatum", + "fetch_image": "Afbeelding ophalen", + "generate_desc": "Beschrijving genereren", + "image": "Afbeelding", + "image_fetch_failed": "Kan afbeelding niet ophalen", + "link": "Link", + "location": "Locatie", + "location_information": "Informatie over de locatie", + "my_images": "Mijn afbeeldingen", + "new_adventure": "Nieuw avontuur", + "no_description_found": "Geen beschrijving gevonden", + "no_images": "Geen afbeeldingen", + "no_location": "Voer een locatie in", + "no_results": "Geen resultaten gevonden", + "public_adventure": "Openbaar avontuur", + "remove": "Verwijderen", + "save_next": "Opslaan & Volgende", + "search_for_location": "Zoek een locatie", + "search_results": "Zoekresultaten", + "see_adventures": "Zie Avonturen", + "share_adventure": "Deel dit avontuur!", + "start_date": "Startdatum", + "upload_image": "Afbeelding uploaden", + "url": "URL", + "warning": "Waarschuwing", + "wiki_desc": "Haalt een fragment uit een Wikipedia-artikel dat overeenkomt met de naam van het avontuur.", + "wikipedia": "Wikipedia", + "adventure_not_found": "Er zijn geen avonturen om weer te geven. \nVoeg er een paar toe via de plusknop rechtsonder of probeer de filters te wijzigen!", + "all": "Alle", + "error_updating_regions": "Fout bij het wijzigen van regio's", + "mark_visited": "Markeer als bezocht", + "my_adventures": "Mijn avonturen", + "no_adventures_found": "Geen avonturen gevonden", + "no_collections_found": "Er zijn geen collecties gevonden waar dit avontuur aan kan worden toegevoegd.", + "no_linkable_adventures": "Er zijn geen avonturen gevonden die aan deze collectie kunnen worden gekoppeld.", + "not_visited": "Niet bezocht", + "regions_updated": "regio's bijgewerkt", + "update_visited_regions": "Werk bezochte regio's bij", + "update_visited_regions_disclaimer": "Dit kan even duren, afhankelijk van het aantal avondturen dat je hebt beleefd.", + "visited_region_check": "Controleer bezochte regio's", + "visited_region_check_desc": "Door dit te selecteren, controleert de server alle avonturen die je beleefde en markeert hun regio's als bezocht in de wereldreizen.", + "add_new": "Nieuw toevoegen...", + "checklist": "Controlelijst", + "checklists": "Controlelijsten", + "collection_archived": "Deze collectie is gearchiveerd.", + "collection_completed": "Je hebt deze collectie voltooid!", + "collection_stats": "Collectiestatistieken", + "days": "dagen", + "itineary_by_date": "Reisplan op datum", + "keep_exploring": "Blijf ontdekken!", + "link_new": "Nieuwe link...", + "linked_adventures": "Gekoppelde avonturen", + "links": "Koppelingen", + "note": "Opmerking", + "notes": "Opmerkingen", + "nothing_planned": "Niets gepland voor deze dag. \nGeniet van de reis!", + "transportation": "Vervoer", + "transportations": "Vervoer", + "visit_link": "Bezoek Link", + "day": "Dag", + "add_a_tag": "Voeg een label toe", + "tags": "Labels", + "set_to_pin": "Stel in op pin", + "category_fetch_error": "Fout bij ophalen van categorieën", + "copied_to_clipboard": "Gekopieerd naar klembord!", + "copy_failed": "Kopiëren mislukt", + "adventure_calendar": "Avonturenkalender", + "emoji_picker": "Emoji-kiezer", + "hide": "Verbergen", + "show": "Toon", + "download_calendar": "Agenda downloaden", + "md_instructions": "Schrijf hier in markdown...", + "preview": "Voorbeeld", + "checklist_delete_confirm": "Weet u zeker dat u deze checklist wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.", + "clear_location": "Locatie wissen", + "date_information": "Datuminformatie", + "delete_checklist": "Controlelijst verwijderen", + "delete_note": "Notitie verwijderen", + "delete_transportation": "Transport verwijderen", + "end": "Einde", + "flight_information": "Vluchtinformatie", + "from": "Van", + "no_location_found": "Geen locatie gevonden", + "note_delete_confirm": "Weet u zeker dat u deze notitie wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.", + "out_of_range": "Niet binnen het datumbereik van het reisplan", + "start": "Begin", + "starting_airport": "Luchthaven van vertrek", + "to": "Naar", + "transportation_delete_confirm": "Weet u zeker dat u dit transport wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.", + "ending_airport": "Luchthaven van aankomst", + "will_be_marked": "wordt gemarkeerd als bezocht zodra het avontuur is opgeslagen.", + "cities_updated": "steden bijgewerkt", + "create_adventure": "Creëer avontuur", + "no_adventures_to_recommendations": "Geen avonturen gevonden. \nVoeg ten minste één avontuur toe om aanbevelingen te krijgen.", + "finding_recommendations": "Ontdek verborgen juweeltjes voor je volgende avontuur", + "attachment": "Bijlage", + "attachment_delete_success": "Bijlage succesvol verwijderd!", + "attachment_name": "Naam van bijlage", + "attachment_update_error": "Fout bij het bijwerken van de bijlage", + "attachment_update_success": "Bijlage succesvol bijgewerkt!", + "attachment_upload_error": "Fout bij het uploaden van de bijlage", + "attachment_upload_success": "Bijlage succesvol geüpload!", + "attachments": "Bijlagen", + "gpx_tip": "Upload GPX-bestanden naar bijlagen om ze op de kaart te bekijken!", + "images": "Afbeeldingen", + "upload": "Uploaden", + "city": "Stad", + "delete_lodging": "Verwijder accommodatie", + "display_name": "Weergavenaam", + "location_details": "Locatiegegevens", + "lodging": "Onderdak", + "reservation_number": "Reserveringsnummer", + "lodging_delete_confirm": "Weet u zeker dat u deze accommodatielocatie wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.", + "lodging_information": "Informatie overliggen", + "price": "Prijs", + "region": "Regio", + "open_in_maps": "Open in kaarten", + "all_day": "De hele dag", + "collection_no_start_end_date": "Als u een start- en einddatum aan de collectie toevoegt, ontgrendelt u de functies van de planning van de route ontgrendelen in de verzamelpagina.", + "date_itinerary": "Datumroute", + "no_ordered_items": "Voeg items toe met datums aan de collectie om ze hier te zien.", + "ordered_itinerary": "Besteld reisschema", + "invalid_date_range": "Ongeldige datumbereik", + "timezone": "Tijdzone", + "no_visits": "Geen bezoeken", + "arrival_timezone": "Aankomsttijdzone", + "departure_timezone": "Vertrektijdzone", + "arrival_date": "Aankomstdatum", + "departure_date": "Vertrekdatum", + "coordinates": "Coördineert", + "copy_coordinates": "Kopieer coördinaten", + "sun_times": "Zonnetijden", + "sunrise": "Zonsopgang", + "sunset": "Zonsondergang", + "timed": "Getimed", + "distance": "Afstand", + "all_linked_items": "Alle gekoppelde items", + "itinerary": "Routebeschrijving", + "joined": "Samengevoegd", + "view_profile": "Bekijk profiel", + "share_collection": "Deel deze collectie!", + "filters_and_sort": "Filters", + "filters_and_stats": "Filters", + "no_adventures_message": "Begin met het documenteren van uw avonturen en het plannen van nieuwe. \nElke reis heeft een verhaal dat het vertellen waard is.", + "travel_progress": "Reisvoortgang", + "adventures_available": "Avonturen beschikbaar", + "all_adventures_already_linked": "Alle avonturen zijn al gekoppeld aan deze collectie.", + "collections_linked": "Collecties gekoppeld", + "create_collection_first": "Maak eerst een collectie om je avonturen en herinneringen te organiseren.", + "delete_collection_warning": "Weet u zeker dat u deze collectie wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.", + "done": "Klaar", + "loading_adventures": "Adventuren laden ...", + "name_location": "naam, locatie", + "collection_contents": "Verzamelingsinhoud", + "check_in": "Inchecken", + "check_out": "Uitchecken" + }, + "home": { + "desc_1": "Ontdek, plan en verken met gemak", + "desc_2": "AdventureLog is ontworpen om uw reis te vereenvoudigen en u de tools en middelen te bieden om uw volgende onvergetelijke avontuur te plannen, in te pakken en te navigeren.", + "feature_1": "Reislogboek", + "feature_1_desc": "Houd uw avonturen bij met een persoonlijk reislogboek en deel uw ervaringen met vrienden en familie.", + "feature_2": "Reisplanning", + "feature_2_desc": "Maak eenvoudig aangepaste reisroutes en krijg een overzicht van uw reis van dag tot dag.", + "feature_3": "Reiskaart", + "feature_3_desc": "Bekijk uw reizen over de hele wereld met een interactieve kaart en ontdek nieuwe bestemmingen.", + "go_to": "Ga naar AdventureLog", + "hero_2": "Ontdek en plan je volgende avontuur met AdventureLog. \nOntdek adembenemende bestemmingen, maak aangepaste reisroutes en blijf onderweg verbonden.", + "hero_1": "ontdek 's werelds meest opwindende avonturen", + "key_features": "Belangrijkste kenmerken", + "explore_world": "Verken de wereld", + "latest_travel_experiences": "Uw nieuwste reiservaringen", + "of_world": "van de wereld", + "start_your_journey": "Begin uw reis" + }, + "navbar": { + "about": "Over AdventureLog", + "adventures": "Avonturen", + "collections": "Collecties", + "documentation": "Documentatie", + "greeting": "Hoi", + "logout": "Uitloggen", + "map": "Kaart", + "my_adventures": "Mijn avonturen", + "profile": "Profiel", + "search": "Zoekopdracht", + "settings": "Instellingen", + "shared_with_me": "Gedeeld met mij", + "theme_selection": "Thema selectie", + "themes": { + "aestheticDark": "Esthetisch donker", + "aestheticLight": "Esthetisch licht", + "aqua": "Aqua", + "dark": "Donker", + "dim": "Vaag", + "forest": "Woud", + "light": "Licht", + "night": "Nacht", + "northernLights": "Noorderlicht" + }, + "users": "Gebruikers", + "worldtravel": "Wereldreizen", + "my_tags": "Mijn labels", + "tag": "Label", + "language_selection": "Taal", + "support": "Steun", + "calendar": "Kalender", + "admin_panel": "Admin -paneel" + }, + "auth": { + "confirm_password": "Bevestig wachtwoord", + "email": "E-mail", + "first_name": "Voornaam", + "forgot_password": "Wachtwoord vergeten?", + "last_name": "Achternaam", + "login": "Login", + "login_error": "Kan niet inloggen met de opgegeven inloggegevens.", + "password": "Wachtwoord", + "registration_disabled": "Registratie is momenteel uitgeschakeld.", + "signup": "Aanmelden", + "username": "Gebruikersnaam", + "profile_picture": "Profielfoto", + "public_profile": "Openbaar profiel", + "public_tooltip": "Met een openbaar profiel kunnen gebruikers collecties met u delen en uw profiel bekijken op de gebruikerspagina.", + "new_password": "Nieuw wachtwoord", + "or_3rd_party": "Of log in met een service van derden", + "no_public_adventures": "Geen openbare avonturen gevonden", + "no_public_collections": "Geen openbare collecties gevonden", + "user_adventures": "Gebruikersavonturen", + "user_collections": "Gebruikerscollecties" + }, + "users": { + "no_users_found": "Er zijn geen gebruikers gevonden met openbare profielen." + }, + "worldtravel": { + "all": "Alle", + "all_subregions": "Alle subregio's", + "clear_search": "Zoekopdracht wissen", + "completely_visited": "Volledig bezocht", + "country_list": "Landenlijst", + "no_countries_found": "Geen landen gevonden", + "not_visited": "Niet bezocht", + "num_countries": "landen gevonden", + "partially_visited": "Gedeeltelijk bezocht", + "cities": "steden", + "failed_to_mark_visit": "Kan bezoek aan niet markeren", + "failed_to_remove_visit": "Kan bezoek aan niet verwijderen", + "marked_visited": "gemarkeerd als bezocht", + "no_cities_found": "Geen steden gevonden", + "region_failed_visited": "Kan de regio niet als bezocht markeren", + "regions_in": "Regio's in", + "removed": "verwijderd", + "view_cities": "Steden bekijken", + "visit_remove_failed": "Kan bezoek niet verwijderen", + "visit_to": "Bezoek aan", + "all_regions": "Alle regio's", + "available_to_explore": "Beschikbaar om te verkennen", + "cities_in": "Steden in", + "clear_all": "Duidelijk alles duidelijk", + "clear_all_filters": "Wis alle filters", + "clear_filters": "Duidelijke filters duiden", + "complete": "Compleet", + "countries": "landen", + "country_completed": "Voltooid land", + "filter_by": "Filteren door", + "filter_by_region": "Filter per regio", + "hide_map": "Verberg kaart", + "hide_map_labels": "Verberg kaartenlabels", + "interactive_map": "Interactieve kaart", + "no_countries_found_desc": "Probeer uw zoektermen of filters aan te passen om de landen te vinden die u zoekt.", + "no_country_data_available": "Geen landengegevens beschikbaar", + "no_country_data_available_desc": "Controleer de documentatie voor het bijwerken van regiogegevens.", + "no_regions_found": "Geen regio's gevonden", + "of": "van", + "partial": "Gedeeltelijk", + "progress": "Voortgang", + "progress_and_stats": "Voortgang", + "region_completed": "Regio voltooid", + "remaining": "Overig", + "show_map": "Toon kaart", + "show_map_labels": "Toon kaartlabels", + "total_cities": "Totale steden", + "total_countries": "Totale landen", + "total_regions": "Totaal aantal regio's", + "newest_first": "Nieuwste eerste", + "oldest_first": "Oudste eerste", + "unvisited_first": "Eerst niet bezocht", + "visited_first": "Eerst bezocht", + "total_items": "Totale items" + }, + "settings": { + "account_settings": "Gebruikersaccount instellingen", + "confirm_new_password": "Bevestig nieuw wachtwoord", + "email_change": "Wijzig e-mailadres", + "new_email": "Nieuw e-mailadres", + "new_password": "Nieuw wachtwoord", + "no_email_set": "Geen e-mailadres ingesteld", + "password_change": "Wachtwoord wijzigen", + "settings_page": "Instellingenpagina", + "update": "Wijzig", + "update_error": "Fout bij wijzigen van instellingen", + "update_success": "Instellingen succesvol gewijzigd!", + "change_password": "Wachtwoord wijzigen", + "possible_reset": "Als het door u opgegeven e-mailadres aan een account is gekoppeld, ontvangt u een e-mail met instructies om uw wachtwoord opnieuw in te stellen!", + "reset_password": "Wachtwoord opnieuw instellen", + "about_this_background": "Over deze achtergrond", + "join_discord": "Sluit je aan bij Discord", + "join_discord_desc": "om uw eigen foto's te delen. \nPlaats ze in de", + "photo_by": "Foto door", + "current_password": "Huidig wachtwoord", + "password_change_lopout_warning": "Na het wijzigen van uw wachtwoord wordt u uitgelogd.", + "authenticator_code": "Authenticatiecode", + "copy": "Kopiëren", + "disable_mfa": "Schakel MFA uit", + "email_added": "E-mailadres succesvol toegevoegd!", + "email_removed": "E-mail succesvol verwijderd!", + "email_removed_error": "Fout bij verwijderen van e-mail", + "email_set_primary": "E-mailadres is succesvol ingesteld als primair!", + "email_set_primary_error": "Fout bij het instellen van dit e-mail als primair", + "email_verified": "E-mail succesvol geverifieerd!", + "email_verified_erorr_desc": "Uw e-mailadres kan niet worden geverifieerd. \nProbeer het opnieuw.", + "email_verified_error": "Fout bij het verifiëren van e-mailadres", + "email_verified_success": "Uw e-mailadres is geverifieerd. \nU kunt nu inloggen.", + "enable_mfa": "Schakel MFA in", + "generic_error": "Er is een fout opgetreden tijdens het verwerken van uw verzoek.", + "make_primary": "Maak primair", + "mfa_disabled": "Multi-factor authenticatie is succesvol uitgeschakeld!", + "mfa_enabled": "Multi-factor authenticatie succesvol ingeschakeld!", + "mfa_not_enabled": "MFA is niet ingeschakeld", + "mfa_page_title": "Authenticatie met meerdere factoren", + "no_emai_set": "Geen e-mailadres ingesteld", + "not_verified": "Niet geverifieerd", + "primary": "Primair", + "recovery_codes": "Herstelcodes", + "recovery_codes_desc": "Dit zijn uw herstelcodes. \nBewaar ze veilig. \nJe zult ze niet meer kunnen zien.", + "reset_session_error": "Meld u af en weer aan om uw sessie te vernieuwen en het opnieuw te proberen.", + "verified": "Geverifieerd", + "verify": "Verifiëren", + "verify_email_error": "Fout bij het verifiëren van e-mailadres. \nProbeer het over een paar minuten opnieuw.", + "verify_email_success": "E-mailverificatie succesvol verzonden!", + "documentation_link": "Documentatielink", + "launch_account_connections": "Start accountverbindingen", + "launch_administration_panel": "Start het beheerpaneel", + "no_verified_email_warning": "U moet een geverifieerd e-mailadres hebben om tweefactorauthenticatie in te schakelen.", + "social_auth_desc": "Schakel sociale en OIDC-authenticatieproviders in of uit voor uw account. \nMet deze verbindingen kunt u inloggen met zelfgehoste authenticatie-identiteitsproviders zoals Authentik of externe providers zoals GitHub.", + "social_auth_desc_2": "Deze instellingen worden beheerd op de AdventureLog-server en moeten handmatig worden ingeschakeld door de beheerder.", + "add_email": "E-mail toevoegen", + "password_disable_warning": "Momenteel is wachtwoordverificatie uitgeschakeld. \nLogin via een sociale of OIDC -provider is vereist.", + "password_disabled": "Wachtwoordverificatie uitgeschakeld", + "password_disabled_error": "Fout het uitschakelen van wachtwoordverificatie. \nZorg ervoor dat een sociale of OIDC -provider is gekoppeld aan uw account.", + "password_enabled": "Wachtwoordverificatie ingeschakeld", + "password_enabled_error": "Fout bij het inschakelen van wachtwoordverificatie.", + "access_restricted": "Toegang beperkt", + "access_restricted_desc": "Yadministratieve functies zijn alleen beschikbaar voor personeelsleden.", + "add_new_email": "Voeg nieuwe e -mail toe", + "add_new_email_address": "Voeg nieuw e -mailadres toe", + "admin": "Beheersing", + "admin_panel_desc": "Toegang tot de volledige beheerinterface", + "administration": "Administratie", + "administration_desc": "Administratieve tools en instellingen", + "advanced": "Geavanceerd", + "advanced_settings": "Geavanceerde instellingen", + "advanced_settings_desc": "Geavanceerde configuratie- en ontwikkelingstools", + "all_rights_reserved": "Alle rechten voorbehouden.", + "app_version": "App -versie", + "debug_information": "Debug -informatie", + "disabled": "Gehandicapt", + "disconnected": "Losgekoppeld", + "email_management": "E -mailbeheer", + "email_management_desc": "Beheer uw e -mailadressen en verificatiestatus", + "emails": "E -mails", + "enabled": "Ingeschakeld", + "enter_current_password": "Voer het huidige wachtwoord in", + "enter_first_name": "Voer uw voornaam in", + "enter_last_name": "Voer uw achternaam in", + "enter_new_email": "Voer een nieuw e -mailadres in", + "enter_new_password": "Voer een nieuw wachtwoord in", + "enter_username": "Voer uw gebruikersnaam in", + "integrations": "Integratie", + "integrations_desc": "Verbind externe services om uw ervaring te verbeteren", + "license": "Licentie", + "mfa_desc": "Voeg een extra beveiligingslaag toe aan uw account", + "mfa_is_enabled": "MFA is ingeschakeld", + "pass_change_desc": "Werk uw accountwachtwoord bij voor een betere beveiliging", + "password_auth": "Wachtwoordverificatie", + "password_login_disabled": "Wachtwoord Aanmelding Uitgeschakeld", + "password_login_enabled": "Wachtwoordaanmelding ingeschakeld", + "profile_info": "Profielinformatie", + "profile_info_desc": "Werk uw persoonlijke gegevens en profielfoto bij", + "public_profile_desc": "Maak uw profiel zichtbaar voor andere gebruikers", + "quick_actions": "Snelle acties", + "region_updates": "Regio -updates", + "region_updates_desc": "Update bezochte regio's en steden", + "regular_user": "Gewone gebruiker", + "security": "Beveiliging", + "settings_menu": "Instellingenmenu", + "social_auth": "Sociale authenticatie", + "social_auth_desc_1": "Beheer sociale inlogopties en wachtwoordinstellingen", + "social_auth_setup": "Sociale authenticatie -opstelling", + "staff_status": "Status", + "staff_user": "Personeelsgebruiker", + "connected": "Aangesloten", + "invalid_credentials": "Ongeldige referenties" + }, + "checklist": { + "checklist_delete_error": "Fout bij het verwijderen van de controlelijst", + "checklist_deleted": "Controlelijst succesvol verwijderd!", + "checklist_editor": "Controlelijsten bewerken", + "checklist_public": "Deze controlelijst is openbaar omdat deze zich in een openbare collectie bevindt.", + "item": "Artikel", + "item_already_exists": "Artikel bestaat al", + "item_cannot_be_empty": "Artikel mag niet leeg zijn", + "items": "Artikelen", + "new_item": "Nieuw artikel", + "new_checklist": "Nieuwe controlelijst" + }, + "collection": { + "collection_created": "Collectie succesvol aangemaakt!", + "collection_edit_success": "Collectie succesvol bewerkt!", + "create": "Aanmaken", + "error_creating_collection": "Fout bij aanmaken collectie", + "error_editing_collection": "Fout bij het bewerken van de collectie", + "new_collection": "Nieuwe collectie", + "public_collection": "Openbare collectie", + "manage_collections": "Beheer collecties", + "archived_appear_here": "Gearchiveerde collecties zullen hier verschijnen.", + "create_first": "Maak je eerste collectie om je avonturen en herinneringen te organiseren.", + "make_sure_public": "Zorg ervoor dat uw profiel openbaar is, zodat anderen met u kunnen delen.", + "no_archived_collections": "Geen gearchiveerde collecties.", + "no_collections_yet": "Nog geen collecties", + "no_shared_collections": "Geen gedeelde collecties.", + "shared_collections": "Gedeelde collecties", + "available": "Beschikbaar", + "linked": "Gekoppeld", + "try_different_search": "Probeer een ander zoek of filter." + }, + "notes": { + "add_a_link": "Voeg een link toe", + "content": "Inhoud", + "editing_note": "Opmerking bewerken", + "failed_to_save": "Kan opmerking niet opslaan", + "note_delete_error": "Fout bij verwijderen van opmerking", + "note_deleted": "Opmerking succesvol verwijderd!", + "note_editor": "Opmerkingen bewerken", + "note_public": "Deze opmerking is openbaar omdat deze zich in een openbare collectie bevindt.", + "open": "Open", + "save": "Opslaan", + "invalid_url": "Ongeldige URL", + "note_viewer": "Bekijk notities" + }, + "transportation": { + "edit": "Bewerk", + "edit_transportation": "Vervoer bewerken", + "flight_number": "Vluchtnummer", + "from_location": "Vertreklocatie", + "modes": { + "bike": "Fiets", + "boat": "Boot", + "train": "Trein", + "bus": "Bus", + "car": "Auto", + "other": "Ander", + "plane": "Vliegtuig", + "walking": "Wandelen" + }, + "to_location": "Aankomstlocatie", + "type": "Type", + "new_transportation": "Nieuw vervoer", + "transportation_delete_error": "Fout bij verwijderen vervoer", + "transportation_deleted": "Vervoer succesvol verwijderd!", + "ending_airport_desc": "Voer eindigende luchthavencode in (bijv. LAX)", + "fetch_location_information": "Locatie -informatie ophalen", + "starting_airport_desc": "Voer de startende luchthavencode in (bijv. JFK)" + }, + "search": { + "adventurelog_results": "AdventureLog-resultaten", + "online_results": "Online resultaten", + "public_adventures": "Openbare avonturen" + }, + "map": { + "add_adventure": "Voeg nieuw avontuur toe", + "add_adventure_at_marker": "Voeg een nieuw avontuur toe bij het markeerpunt", + "adventure_map": "Avonturenkaart", + "clear_marker": "Verwijder markeerpunt", + "map_options": "Kaartopties", + "show_visited_regions": "Toon bezochte regio's", + "view_details": "Details bekijken", + "adventure_stats": "Avontuurstatistieken", + "adventures_shown": "Avonturen getoond", + "completion": "Voltooiing", + "display_options": "Display -opties", + "map_controls": "Kaartbesturing", + "marker_placed_on_map": "Marker geplaatst op kaart", + "place_marker_desc": "Klik op de kaart om een ​​marker te plaatsen of voeg een avontuur toe zonder locatie.", + "regions": "Gebieden" + }, + "languages": {}, + "share": { + "no_users_shared": "Er zijn geen gebruikers gedeeld", + "not_shared_with": "Niet gedeeld met", + "share_desc": "Deel deze collectie met andere gebruikers.", + "shared": "Gedeeld", + "shared_with": "Gedeeld met", + "unshared": "Niet gedeeld", + "with": "met", + "go_to_settings": "Ga naar instellingen", + "no_shared_found": "Er zijn geen collecties gevonden die met u zijn gedeeld.", + "set_public": "Om ervoor te zorgen dat gebruikers met u kunnen delen, moet uw profiel op openbaar zijn ingesteld." + }, + "profile": { + "member_since": "Lid sinds", + "user_stats": "Gebruikersstatistieken", + "visited_countries": "Bezochte landen", + "visited_regions": "Bezochte regio's", + "visited_cities": "Steden bezocht", + "discovered": "ontdekt", + "explored": "onderzocht", + "no_shared_adventures": "Deze gebruiker heeft nog geen openbare avonturen gedeeld.", + "no_shared_collections": "Deze gebruiker heeft nog geen openbare collecties gedeeld.", + "planned_trips": "Geplande reizen", + "public_adventure_experiences": "Publieke avontuurlijke ervaringen", + "travel_statistics": "Reisstatistieken", + "your_journey_at_a_glance": "Je avontuurlijke reis in één oogopslag" + }, + "categories": { + "category_name": "Categorienaam", + "edit_category": "Categorie bewerken", + "icon": "Icoon", + "manage_categories": "Beheer categorieën", + "no_categories_found": "Geen categorieën gevonden.", + "select_category": "Selecteer een categorie", + "update_after_refresh": "De avonturenkaarten worden bijgewerkt zodra u de pagina vernieuwt.", + "add_new_category": "Voeg een nieuwe categorie toe", + "name_required": "Categorienaam is vereist" + }, + "dashboard": { + "add_some": "Waarom begint u niet met het plannen van uw volgende avontuur? \nJe kunt een nieuw avontuur toevoegen door op de onderstaande knop te klikken.", + "countries_visited": "Bezochte landen", + "no_recent_adventures": "Geen recente avonturen?", + "recent_adventures": "Recente avonturen", + "total_adventures": "Totale avonturen", + "total_visited_regions": "Totaal bezochte regio's", + "welcome_back": "Welkom terug", + "total_visited_cities": "Totaal bezochte steden", + "document_some_adventures": "Begin met het documenteren van uw reizen en bouw uw persoonlijke avontuurlijke kaart!", + "view_all": "Bekijk alles", + "welcome_text_1": "Je bent op", + "welcome_text_2": "Avonturen tot nu toe", + "welcome_text_3": "Blijf je reizen verkennen en documenteren!" + }, + "immich": { + "api_key": "Immich API-sleutel", + "api_note": "Let op: dit moet de URL naar de Immich API-server zijn, deze eindigt dus waarschijnlijk op /api, tenzij je een aangepaste configuratie hebt.", + "disable": "Uitzetten", + "immich": "Immich", + "immich_disabled": "Immich-integratie succesvol uitgeschakeld!", + "immich_error": "Fout bij updaten van Immich-integratie", + "integration_fetch_error": "Fout bij het ophalen van gegevens uit de Immich-integratie", + "load_more": "Laad meer", + "no_items_found": "Geen artikelen gevonden", + "server_url": "Immich-server-URL", + "update_integration": "Integratie bijwerken", + "localhost_note": "Opmerking: localhost zal hoogstwaarschijnlijk niet werken tenzij dit bewust zo geconfigureerd is in het docker-netwerk. \nHet is aanbevolen om het IP-adres van de server of de domeinnaam te gebruiken.", + "api_key_placeholder": "Voer uw Immich API -sleutel in", + "enable_integration": "Integratie inschakelen", + "immich_integration_desc": "Verbind uw Immich Photo Management Server", + "need_help": "Hulp nodig bij het opzetten van dit? \nBekijk de", + "connection_error": "Error verbinding maken met Immich Server", + "copy_locally": "Kopieer afbeeldingen lokaal", + "copy_locally_desc": "Kopieer afbeeldingen naar de server voor offline toegang. \nGebruikt meer schijfruimte.", + "error_saving_image": "Foutopslagafbeelding", + "integration_already_exists": "Er bestaat al een Immich -integratie. \nU kunt maar één integratie tegelijk hebben.", + "integration_not_found": "Immich -integratie niet gevonden. \nMaak een nieuwe integratie.", + "network_error": "Netwerkfout terwijl u verbinding maakt met de Immich -server. \nControleer uw verbinding en probeer het opnieuw.", + "validation_error": "Er is een fout opgetreden bij het valideren van de Immich -integratie. \nControleer uw server -URL en API -toets." + }, + "recomendations": { + "recommendation": "Aanbeveling", + "recommendations": "Aanbevelingen", + "adventure_recommendations": "Avontuuraanbevelingen", + "food": "Voedsel", + "tourism": "Toerisme" + }, + "lodging": { + "apartment": "Appartement", + "bnb": "Bed and breakfast", + "cabin": "Cabine", + "campground": "Camping", + "edit": "Bewerking", + "edit_lodging": "Bewerkingen bewerken", + "hostel": "Hostel", + "hotel": "Hotel", + "house": "Huis", + "motel": "Motel", + "new_lodging": "Nieuwe accommodatie", + "other": "Ander", + "reservation_number": "Reserveringsnummer", + "resort": "Toevlucht", + "villa": "Villa" + }, + "google_maps": { + "google_maps_integration_desc": "Sluit uw Google Maps-account aan om zoekresultaten en aanbevelingen van hoge kwaliteit te krijgen." + }, + "calendar": { + "all_categories": "Alle categorieën", + "all_day_event": "De hele dag evenement", + "calendar_overview": "Kalenderoverzicht", + "categories": "Categorieën", + "day": "Dag", + "events_scheduled": "geplande evenementen", + "filter_by_category": "Filter per categorie", + "filtered_results": "Gefilterde resultaten", + "month": "Maand", + "today": "Vandaag", + "total_events": "Totale gebeurtenissen", + "week": "Week" + } +} diff --git a/frontend/src/locales/no.json b/frontend/src/locales/no.json new file mode 100644 index 0000000..b3b3539 --- /dev/null +++ b/frontend/src/locales/no.json @@ -0,0 +1,711 @@ +{ + "navbar": { + "adventures": "Eventyr", + "collections": "Samlinger", + "worldtravel": "Verdensreiser", + "map": "Kart", + "users": "Brukere", + "search": "Søk", + "profile": "Profil", + "greeting": "Hei", + "my_adventures": "Mine Eventyr", + "my_tags": "Mine Tags", + "tag": "Tag", + "shared_with_me": "Delt med meg", + "settings": "Innstillinger", + "logout": "Logg ut", + "about": "Om AdventureLog", + "documentation": "Dokumentasjon", + "language_selection": "Språk", + "support": "Støtte", + "calendar": "Kalender", + "theme_selection": "Tema-valg", + "admin_panel": "Admin Panel", + "themes": { + "aestheticDark": "Estetisk mørke", + "aestheticLight": "Estetisk lys", + "aqua": "Aqua", + "dark": "Mørk", + "dim": "Svak", + "forest": "Skog", + "light": "Lys", + "night": "Natt", + "northernLights": "Nordlys" + } + }, + "about": { + "about": "Om", + "license": "Lisensiert under GPL-3.0-lisensen.", + "source_code": "Kildekode", + "message": "Laget med ❤️ i USA.", + "oss_attributions": "Open Source-attribusjoner", + "nominatim_1": "Stedsøk og geokoding leveres av", + "nominatim_2": "Deres data er lisensiert under ODbL-lisensen.", + "other_attributions": "Ytterligere attribusjoner finnes i README-filen.", + "close": "Lukk", + "generic_attributions": "Logg inn på Adventurelog for å se attribusjoner for aktiverte integrasjoner og tjenester." + }, + "home": { + "hero_1": "Oppdag verdens mest spennende eventyr", + "hero_2": "Oppdag og planlegg ditt neste eventyr med AdventureLog. Utforsk fantastiske destinasjoner, lag tilpassede reiseplaner, og hold kontakten på farten.", + "go_to": "Gå til AdventureLog", + "key_features": "Nøkkelfunksjoner", + "desc_1": "Oppdag, planlegg og utforsk med letthet", + "desc_2": "AdventureLog er designet for å forenkle reisen din, og gir deg verktøy og ressurser til å planlegge, pakke og navigere ditt neste uforglemmelige eventyr.", + "feature_1": "Reiselogg", + "feature_1_desc": "Før en personlig reiselogg for eventyrene dine og del opplevelsene dine med venner og familie.", + "feature_2": "Reiseplanlegging", + "feature_2_desc": "Lag enkelt tilpassede reiseplaner og få en dag-for-dag oversikt over turen din.", + "feature_3": "Reisekart", + "feature_3_desc": "Se reisene dine over hele verden med et interaktivt kart og utforsk nye destinasjoner.", + "explore_world": "Utforsk verden", + "latest_travel_experiences": "Dine siste reiseopplevelser", + "of_world": "av verden", + "start_your_journey": "Start reisen" + }, + "adventures": { + "collection_remove_success": "Eventyret ble fjernet fra samlingen!", + "collection_remove_error": "Feil ved fjerning av eventyr fra samling", + "collection_link_success": "Eventyret ble lagt til samlingen!", + "no_image_found": "Ingen bilde funnet", + "collection_link_error": "Feil ved lenking av eventyr til samling", + "adventure_delete_confirm": "Er du sikker på at du vil slette dette eventyret? Denne handlingen kan ikke angres.", + "checklist_delete_confirm": "Er du sikker på at du vil slette denne sjekklisten? Denne handlingen kan ikke angres.", + "note_delete_confirm": "Er du sikker på at du vil slette dette notatet? Denne handlingen kan ikke angres.", + "transportation_delete_confirm": "Er du sikker på at du vil slette dette transportmiddelet? Denne handlingen kan ikke angres.", + "lodging_delete_confirm": "Er du sikker på at du vil slette dette overnattingsstedet? Denne handlingen kan ikke angres.", + "delete_checklist": "Slett sjekkliste", + "delete_note": "Slett notat", + "delete_transportation": "Slett transport", + "delete_lodging": "Slett overnatting", + "open_details": "Åpne detaljer", + "edit_adventure": "Rediger eventyr", + "remove_from_collection": "Fjern fra samling", + "add_to_collection": "Legg til i samling", + "delete": "Slett", + "not_found": "Fant ikke eventyret", + "not_found_desc": "Eventyret du leter etter, ble ikke funnet. Vennligst prøv et annet eventyr eller kom tilbake senere.", + "homepage": "Hjemmeside", + "collection": "Samling", + "longitude": "Lengdegrad", + "latitude": "Breddegrad", + "visit": "Besøk", + "visits": "Besøk", + "create_new": "Opprett nytt...", + "adventure": "Eventyr", + "count_txt": "resultater som samsvarer med søket ditt", + "sort": "Sorter", + "order_by": "Sorter etter", + "order_direction": "Sorteringsretning", + "ascending": "Stigende", + "descending": "Synkende", + "updated": "Oppdatert", + "name": "Navn", + "date": "Dato", + "activity_types": "Aktivitetstyper", + "tags": "Tags", + "add_a_tag": "Legg til en tag", + "date_constrain": "Begrens til samlingsdatoer", + "rating": "Vurdering", + "my_images": "Mine bilder", + "no_images": "Ingen bilder", + "share_adventure": "Del dette eventyret!", + "copy_link": "Kopier lenke", + "image": "Bilde", + "upload_image": "Last opp bilde", + "open_in_maps": "Åpne i kart", + "url": "URL", + "fetch_image": "Hent bilde", + "wikipedia": "Wikipedia", + "add_notes": "Legg til notater", + "warning": "Advarsel", + "my_adventures": "Mine eventyr", + "no_linkable_adventures": "Ingen eventyr funnet som kan legges til denne samlingen.", + "add": "Legg til", + "save_next": "Lagre og fortsett", + "end_date": "Sluttdato", + "start_date": "Startdato", + "remove": "Fjern", + "location": "Plassering", + "search_for_location": "Søk etter sted", + "clear_map": "Tøm kart", + "search_results": "Søkeresultater", + "no_results": "Ingen resultater funnet", + "wiki_desc": "Henter utdrag fra Wikipedia-artikkelen som samsvarer med navnet på eventyret.", + "attachments": "Vedlegg", + "attachment": "Vedlegg", + "images": "Bilder", + "generate_desc": "Generer beskrivelse", + "public_adventure": "Offentlig eventyr", + "location_information": "Plasseringsinformasjon", + "link": "Lenke", + "links": "Lenker", + "description": "Beskrivelse", + "sources": "Kilder", + "collection_adventures": "Inkluder eventyr i samlinger", + "filter": "Filter", + "category_filter": "Kategorifilter", + "category": "Kategori", + "clear": "Tøm", + "my_collections": "Mine samlinger", + "open_filters": "Åpne filtre", + "archived_collections": "Arkiverte samlinger", + "share": "Del", + "private": "Privat", + "public": "Offentlig", + "archived": "Arkivert", + "edit_collection": "Rediger samling", + "unarchive": "Fjern fra arkiv", + "archive": "Arkiver", + "no_collections_found": "Ingen samlinger funnet for å legge dette eventyret til.", + "not_visited": "Ikke besøkt", + "archived_collection_message": "Samlingen ble arkivert!", + "unarchived_collection_message": "Samlingen ble fjernet fra arkivet!", + "delete_collection_success": "Samlingen ble slettet!", + "cancel": "Avbryt", + "delete_collection": "Slett samling", + "delete_adventure": "Slett eventyr", + "adventure_delete_success": "Eventyret ble slettet!", + "visited": "Besøkt", + "planned": "Planlagt", + "duration": "Varighet", + "all": "Alle", + "image_removed_success": "Bilde ble fjernet!", + "image_removed_error": "Feil ved fjerning av bilde", + "no_image_url": "Finner ikke bilde på den oppgitte URL-en.", + "image_upload_success": "Bilde opplastet!", + "image_upload_error": "Feil ved opplasting av bilde", + "dates": "Datoer", + "wiki_image_error": "Feil ved henting av bilde fra Wikipedia", + "start_before_end_error": "Startdato må være før sluttdato", + "actions": "Handlinger", + "see_adventures": "Se eventyr", + "image_fetch_failed": "Kunne ikke hente bilde", + "no_location": "Vennligst angi et sted", + "no_description_found": "Fant ingen beskrivelse", + "adventure_created": "Eventyr opprettet", + "adventure_create_error": "Kunne ikke opprette eventyr", + "lodging": "Overnatting", + "create_adventure": "Opprett eventyr", + "adventure_updated": "Eventyr oppdatert", + "adventure_update_error": "Kunne ikke oppdatere eventyr", + "set_to_pin": "Fest", + "category_fetch_error": "Feil ved henting av kategorier", + "new_adventure": "Nytt eventyr", + "basic_information": "Grunnleggende informasjon", + "no_adventures_to_recommendations": "Ingen eventyr funnet. Legg til minst ett eventyr for å få anbefalinger.", + "display_name": "Visningsnavn", + "adventure_not_found": "Det finnes ingen eventyr å vise. Legg til noen ved å trykke på plusstegnet nederst til høyre, eller prøv å endre filtre!", + "no_adventures_found": "Ingen eventyr funnet", + "mark_visited": "Merk som besøkt", + "error_updating_regions": "Feil ved oppdatering av regioner", + "regions_updated": "regioner oppdatert", + "cities_updated": "byer oppdatert", + "visited_region_check": "Sjekk besøkte regioner", + "visited_region_check_desc": "Ved å markere denne, vil serveren sjekke alle dine besøkte eventyr og markere regionene de befinner seg i som besøkt i verdensreiser.", + "update_visited_regions": "Oppdater besøkte regioner", + "update_visited_regions_disclaimer": "Dette kan ta litt tid avhengig av hvor mange eventyr du har besøkt.", + "link_new": "Lenk ny...", + "add_new": "Legg til ny...", + "transportation": "Transport", + "note": "Notat", + "checklist": "Sjekkliste", + "collection_archived": "Denne samlingen er arkivert.", + "visit_link": "Besøk lenke", + "collection_completed": "Du har fullført denne samlingen!", + "collection_stats": "Samlingsstatistikk", + "keep_exploring": "Fortsett å utforske!", + "linked_adventures": "Lenkede eventyr", + "notes": "Notater", + "checklists": "Sjekklister", + "transportations": "Transportmidler", + "adventure_calendar": "Eventyrkalender", + "day": "Dag", + "itineary_by_date": "Reiseplan etter dato", + "nothing_planned": "Ingenting planlagt denne dagen. Nyt reisen!", + "copied_to_clipboard": "Kopiert til utklippstavlen!", + "copy_failed": "Kopiering mislyktes", + "show": "Vis", + "hide": "Skjul", + "clear_location": "Fjern sted", + "starting_airport": "Avreiseflyplass", + "ending_airport": "Ankomsflyplass", + "no_location_found": "Ingen sted funnet", + "from": "Fra", + "to": "Til", + "will_be_marked": "vil bli markert som besøkt når eventyret er lagret.", + "start": "Start", + "end": "Slutt", + "emoji_picker": "Emoji-velger", + "download_calendar": "Last ned kalender", + "date_information": "Dato-informasjon", + "flight_information": "Flyinformasjon", + "out_of_range": "Ikke i reiseplandatoer", + "preview": "Forhåndsvisning", + "finding_recommendations": "Oppdager skjulte perler for ditt neste eventyr", + "location_details": "Stedsdetaljer", + "city": "By", + "region": "Region", + "md_instructions": "Skriv markdown her...", + "days": "dager", + "attachment_upload_success": "Vedlegg lastet opp!", + "attachment_upload_error": "Feil ved opplasting av vedlegg", + "upload": "Last opp", + "attachment_delete_success": "Vedlegg slettet!", + "attachment_update_success": "Vedlegg oppdatert!", + "attachment_name": "Vedleggsnavn", + "gpx_tip": "Last opp GPX-filer i vedlegg for å se dem på kartet!", + "attachment_update_error": "Feil ved oppdatering av vedlegg", + "activities": {}, + "lodging_information": "Overnattingsinformasjon", + "price": "Pris", + "reservation_number": "Reservasjonsnummer", + "all_day": "Hele dagen", + "collection_no_start_end_date": "Å legge til en start- og sluttdato til samlingen vil låse opp reiseruteplanleggingsfunksjoner på innsamlingssiden.", + "date_itinerary": "Dato reiserute", + "invalid_date_range": "Ugyldig datoområde", + "no_ordered_items": "Legg til varer med datoer i samlingen for å se dem her.", + "ordered_itinerary": "Bestilt reiserute", + "timezone": "Tidssone", + "no_visits": "Ingen besøk", + "arrival_timezone": "Ankomst tidssone", + "departure_timezone": "Avgangstidssone", + "arrival_date": "Ankomstdato", + "departure_date": "Avgangsdato", + "coordinates": "Koordinater", + "copy_coordinates": "Kopier koordinater", + "sun_times": "Soltider", + "sunrise": "Soloppgang", + "sunset": "Solnedgang", + "timed": "Tidsbestemt", + "distance": "Avstand", + "all_linked_items": "Alle koblede varer", + "itinerary": "Reiserute", + "joined": "Ble med", + "view_profile": "Vis profil", + "share_collection": "Del denne samlingen!", + "filters_and_sort": "Filtre", + "filters_and_stats": "Filtre", + "no_adventures_message": "Begynn å dokumentere eventyrene dine og planlegge nye. \nHver reise har en historie som er verdt å fortelle.", + "travel_progress": "Reisefremgang", + "adventures_available": "Eventyr tilgjengelig", + "all_adventures_already_linked": "Alle eventyr er allerede knyttet til denne samlingen.", + "collections_linked": "Samlinger koblet", + "create_collection_first": "Lag en samling først for å organisere dine eventyr og minner.", + "delete_collection_warning": "Er du sikker på at du vil slette denne samlingen? \nDenne handlingen kan ikke angres.", + "done": "Ferdig", + "loading_adventures": "Laster opp eventyr ...", + "name_location": "Navn, plassering", + "collection_contents": "Samlingsinnhold", + "check_in": "Sjekk inn", + "check_out": "Sjekk ut" + }, + "worldtravel": { + "country_list": "Liste over land", + "num_countries": "land funnet", + "all": "Alle", + "partially_visited": "Delvis besøkt", + "not_visited": "Ikke besøkt", + "completely_visited": "Fullstendig besøkt", + "all_subregions": "Alle underregioner", + "clear_search": "Tøm søk", + "no_countries_found": "Ingen land funnet", + "view_cities": "Vis byer", + "no_cities_found": "Ingen byer funnet", + "visit_to": "Besøk i", + "region_failed_visited": "Kunne ikke markere region som besøkt", + "failed_to_mark_visit": "Kunne ikke markere besøk i", + "visit_remove_failed": "Kunne ikke fjerne besøk", + "removed": "fjernet", + "failed_to_remove_visit": "Kunne ikke fjerne besøk i", + "marked_visited": "markert som besøkt", + "regions_in": "Regioner i", + "cities": "byer", + "all_regions": "Alle regioner", + "available_to_explore": "Tilgjengelig for å utforske", + "cities_in": "Byer i", + "clear_all": "Fjern alle", + "clear_all_filters": "Fjern alle filtre", + "clear_filters": "Klare filtre", + "complete": "Fullstendig", + "countries": "land", + "country_completed": "Land fullført", + "filter_by": "Filter av", + "filter_by_region": "Filter etter region", + "hide_map": "Skjul kart", + "hide_map_labels": "Skjul kartetiketter", + "interactive_map": "Interaktivt kart", + "no_countries_found_desc": "Prøv å justere søkeordene eller filtrene dine for å finne landene du leter etter.", + "no_country_data_available": "Ingen landsdata tilgjengelig", + "no_country_data_available_desc": "Vennligst sjekk dokumentasjonen for oppdatering av regiondata.", + "no_regions_found": "Ingen regioner funnet", + "of": "av", + "partial": "Delvis", + "progress": "Framgang", + "progress_and_stats": "Framgang", + "region_completed": "Region fullført", + "remaining": "Gjenværende", + "show_map": "Vis kart", + "show_map_labels": "Vis kartetiketter", + "total_cities": "Totalt byer", + "total_countries": "Totalt land", + "total_regions": "Totale regioner", + "newest_first": "Nyeste først", + "oldest_first": "Eldste først", + "unvisited_first": "Uvisitert først", + "visited_first": "Besøkte først", + "total_items": "Totalt gjenstander" + }, + "auth": { + "username": "Brukernavn", + "password": "Passord", + "forgot_password": "Glemt passord?", + "signup": "Registrer deg", + "login_error": "Kan ikke logge inn med oppgitte legitimasjon.", + "login": "Logg inn", + "email": "E-post", + "first_name": "Fornavn", + "last_name": "Etternavn", + "confirm_password": "Bekreft passord", + "registration_disabled": "Registrering er for øyeblikket deaktivert.", + "profile_picture": "Profilbilde", + "public_profile": "Offentlig profil", + "public_tooltip": "Med en offentlig profil kan brukere dele samlinger med deg og se profilen din på brukersiden.", + "new_password": "Nytt passord (6+ tegn)", + "or_3rd_party": "Eller logg inn med en tredjepartstjeneste", + "no_public_adventures": "Ingen offentlige eventyr funnet", + "no_public_collections": "Ingen offentlige samlinger funnet", + "user_adventures": "Brukerens eventyr", + "user_collections": "Brukerens samlinger" + }, + "users": { + "no_users_found": "Ingen brukere med offentlig profil funnet." + }, + "settings": { + "update_error": "Feil ved oppdatering av innstillinger", + "update_success": "Innstillinger oppdatert!", + "settings_page": "Innstillingsside", + "account_settings": "Brukerkontoinnstillinger", + "update": "Oppdater", + "no_verified_email_warning": "Du må ha en verifisert e-postadresse for å aktivere tofaktorautentisering.", + "password_change": "Bytt passord", + "new_password": "Nytt passord", + "confirm_new_password": "Bekreft nytt passord", + "email_change": "Bytt e-post", + "no_email_set": "Ingen e-post angitt", + "new_email": "Ny e-post", + "change_password": "Bytt passord", + "reset_password": "Tilbakestill passord", + "possible_reset": "Hvis e-postadressen du oppga er knyttet til en konto, vil du motta en e-post med instruksjoner om å tilbakestille passordet ditt!", + "about_this_background": "Om denne bakgrunnen", + "photo_by": "Foto av", + "join_discord": "Bli med på Discord", + "join_discord_desc": "for å dele dine egne bilder. Legg dem ut i #travel-share-kanalen.", + "current_password": "Nåværende passord", + "password_change_lopout_warning": "Du vil bli logget ut etter å ha endret passordet.", + "generic_error": "En feil oppsto under behandlingen av forespørselen din.", + "email_removed": "E-post fjernet!", + "email_removed_error": "Feil ved fjerning av e-post", + "verify_email_success": "E-postbekreftelse sendt!", + "verify_email_error": "Feil ved e-postbekreftelse. Prøv igjen om noen minutter.", + "email_added": "E-post lagt til!", + "email_set_primary": "E-post satt som primær!", + "email_set_primary_error": "Feil ved innstilling av primær e-post", + "verified": "Verifisert", + "primary": "Primær", + "not_verified": "Ikke verifisert", + "make_primary": "Gjør til primær", + "verify": "Verifiser", + "no_emai_set": "Ingen e-post angitt", + "mfa_disabled": "Tofaktorautentisering er deaktivert!", + "mfa_page_title": "Tofaktorautentisering", + "enable_mfa": "Aktiver MFA", + "disable_mfa": "Deaktiver MFA", + "mfa_not_enabled": "MFA er ikke aktivert", + "mfa_enabled": "Tofaktorautentisering er aktivert!", + "copy": "Kopier", + "recovery_codes": "Gjenopprettingskoder", + "recovery_codes_desc": "Dette er dine gjenopprettingskoder. Oppbevar dem trygt. Du vil ikke kunne se dem igjen.", + "reset_session_error": "Logg ut og logg inn igjen for å oppdatere økten din, og prøv igjen.", + "authenticator_code": "Autentiseringskode", + "email_verified": "E-post verifisert!", + "email_verified_success": "E-posten din er verifisert. Du kan nå logge inn.", + "email_verified_error": "Feil ved verifisering av e-post", + "email_verified_erorr_desc": "E-posten din kunne ikke verifiseres. Vennligst prøv igjen.", + "launch_administration_panel": "Åpne administrasjonspanelet", + "social_auth_desc": "Aktiver eller deaktiver sosiale og OIDC-autentiseringsleverandører for kontoen din. Disse koblingene lar deg logge inn med selvhostede autentiseringstjenester som Authentik eller tredjepartsleverandører som GitHub.", + "social_auth_desc_2": "Disse innstillingene administreres på AdventureLog-serveren og må aktiveres manuelt av administratoren.", + "documentation_link": "Dokumentasjonslenke", + "launch_account_connections": "Åpne kontotilkoblinger", + "add_email": "Legg til e-post", + "password_enabled": "Passordautentisering er aktivert", + "password_disabled": "Passordautentisering er deaktivert", + "password_disable_warning": "Akkurat nå er passordautentisering deaktivert. Innlogging via en sosial eller OIDC-leverandør er påkrevd.", + "password_disabled_error": "Feil ved deaktivering av passordautentisering. Sørg for at en sosial eller OIDC-leverandør er koblet til kontoen din.", + "password_enabled_error": "Feil ved aktivering av passordautentisering.", + "access_restricted": "Tilgang begrenset", + "access_restricted_desc": "Yadministative funksjoner er bare tilgjengelige for ansatte.", + "add_new_email": "Legg til ny e -post", + "add_new_email_address": "Legg til ny e -postadresse", + "admin": "Admin", + "admin_panel_desc": "Få tilgang til hele administrasjonsgrensesnittet", + "administration": "Administrasjon", + "administration_desc": "Administrative verktøy og innstillinger", + "advanced": "Avansert", + "advanced_settings": "Avanserte innstillinger", + "advanced_settings_desc": "Avanserte konfigurasjons- og utviklingsverktøy", + "all_rights_reserved": "Alle rettigheter forbeholdt.", + "app_version": "Appversjon", + "connected": "Tilkoblet", + "debug_information": "Feilsøkingsinformasjon", + "disabled": "Funksjonshemmet", + "disconnected": "Koblet fra", + "email_management": "E -postadministrasjon", + "email_management_desc": "Administrer e -postadressene og bekreftelsesstatusen", + "emails": "E -post", + "enabled": "Aktivert", + "enter_current_password": "Skriv inn gjeldende passord", + "enter_first_name": "Skriv inn fornavnet ditt", + "enter_last_name": "Skriv inn etternavnet ditt", + "enter_new_email": "Skriv inn ny e -postadresse", + "enter_new_password": "Skriv inn nytt passord", + "enter_username": "Skriv inn brukernavnet ditt", + "integrations": "Integrasjoner", + "integrations_desc": "Koble eksterne tjenester for å forbedre opplevelsen din", + "license": "Tillatelse", + "mfa_desc": "Legg til et ekstra lag med sikkerhet til kontoen din", + "mfa_is_enabled": "MFA er aktivert", + "pass_change_desc": "Oppdater kontopassordet ditt for bedre sikkerhet", + "password_auth": "Passordautentisering", + "password_login_disabled": "Passordinnloggingsaktivert", + "password_login_enabled": "Passordinnlogging er aktivert", + "profile_info": "Profilinformasjon", + "profile_info_desc": "Oppdater dine personlige detaljer og profilbilde", + "public_profile_desc": "Gjør profilen din synlig for andre brukere", + "quick_actions": "Raske handlinger", + "region_updates": "Regionoppdateringer", + "region_updates_desc": "Oppdatering besøkte regioner og byer", + "regular_user": "Vanlig bruker", + "security": "Sikkerhet", + "settings_menu": "Innstillingsmenyen", + "social_auth": "Sosial godkjenning", + "social_auth_desc_1": "Administrer sosiale påloggingsalternativer og passordinnstillinger", + "social_auth_setup": "Sosial autentiseringsoppsett", + "staff_status": "Personalstatus", + "staff_user": "Personalbruker", + "invalid_credentials": "Ugyldig legitimasjon" + }, + "collection": { + "collection_created": "Samling opprettet!", + "error_creating_collection": "Feil ved oppretting av samling", + "new_collection": "Ny samling", + "create": "Opprett", + "collection_edit_success": "Samling redigert!", + "error_editing_collection": "Feil ved redigering av samling", + "public_collection": "Offentlig samling", + "manage_collections": "Administrer samlinger", + "archived_appear_here": "Arkiverte samlinger vises her.", + "create_first": "Lag din første samling for å organisere eventyrene og minnene dine.", + "make_sure_public": "Forsikre deg om at profilen din er offentlig, slik at andre kan dele med deg.", + "no_archived_collections": "Ingen arkiverte samlinger.", + "no_collections_yet": "Ingen samlinger ennå", + "no_shared_collections": "Ingen delte samlinger.", + "shared_collections": "Delte samlinger", + "available": "Tilgjengelig", + "linked": "Koblet", + "try_different_search": "Prøv et annet søk eller filter." + }, + "notes": { + "note_deleted": "Notat slettet!", + "note_delete_error": "Feil ved sletting av notat", + "open": "Åpne", + "failed_to_save": "Kunne ikke lagre notat", + "note_editor": "Notatredigerer", + "note_viewer": "Notatviser", + "editing_note": "Redigerer notat", + "content": "Innhold", + "save": "Lagre", + "note_public": "Dette notatet er offentlig fordi det er i en offentlig samling.", + "add_a_link": "Legg til en lenke", + "invalid_url": "Ugyldig URL" + }, + "checklist": { + "checklist_deleted": "Sjekkliste slettet!", + "checklist_delete_error": "Feil ved sletting av sjekkliste", + "checklist_editor": "Sjekklisteredigerer", + "new_checklist": "Ny sjekkliste", + "item": "Punkt", + "items": "Punkter", + "new_item": "Nytt punkt", + "checklist_public": "Denne sjekklisten er offentlig fordi den er i en offentlig samling.", + "item_cannot_be_empty": "Punktet kan ikke være tomt", + "item_already_exists": "Punktet finnes allerede" + }, + "transportation": { + "transportation_deleted": "Transport slettet!", + "transportation_delete_error": "Feil ved sletting av transport", + "type": "Type", + "new_transportation": "Ny transport", + "flight_number": "Flynummer", + "from_location": "Fra sted", + "to_location": "Til sted", + "fetch_location_information": "Hent stedsinformasjon", + "starting_airport_desc": "Skriv inn avreiseflyplasskode (f.eks. JFK)", + "ending_airport_desc": "Skriv inn ankomsflyplasskode (f.eks. LAX)", + "edit": "Rediger", + "modes": { + "car": "Bil", + "plane": "Fly", + "train": "Tog", + "bus": "Buss", + "boat": "Båt", + "bike": "Sykkel", + "walking": "Går", + "other": "Annet" + }, + "edit_transportation": "Rediger transport" + }, + "lodging": { + "new_lodging": "Ny overnatting", + "edit": "Rediger", + "edit_lodging": "Rediger overnatting", + "hotel": "Hotell", + "hostel": "Hostell", + "resort": "Resort", + "bnb": "Bed & Breakfast", + "campground": "Campingplass", + "cabin": "Hytte", + "apartment": "Leilighet", + "house": "Hus", + "villa": "Villa", + "motel": "Motell", + "other": "Annet", + "reservation_number": "Reservasjonsnummer" + }, + "search": { + "adventurelog_results": "AdventureLog-resultater", + "public_adventures": "Offentlige eventyr", + "online_results": "Nettresultater" + }, + "map": { + "view_details": "Vis detaljer", + "adventure_map": "Eventyrkart", + "map_options": "Kartalternativer", + "show_visited_regions": "Vis besøkte regioner", + "add_adventure_at_marker": "Legg til nytt eventyr ved markøren", + "clear_marker": "Fjern markør", + "add_adventure": "Legg til nytt eventyr", + "adventure_stats": "Eventyrstatistikk", + "adventures_shown": "Eventyr vist", + "completion": "Fullføring", + "display_options": "Vis alternativer", + "map_controls": "Kartkontroller", + "marker_placed_on_map": "Markør plassert på kart", + "place_marker_desc": "Klikk på kartet for å plassere en markør, eller legg til et eventyr uten beliggenhet.", + "regions": "Regioner" + }, + "share": { + "shared": "Delt", + "with": "med", + "unshared": "Udelt", + "share_desc": "Del denne samlingen med andre brukere.", + "shared_with": "Delt med", + "no_users_shared": "Ingen brukere delt med", + "not_shared_with": "Ikke delt med", + "no_shared_found": "Ingen samlinger funnet som er delt med deg.", + "set_public": "For å la brukere dele med deg, må profilen din være offentlig.", + "go_to_settings": "Gå til innstillinger" + }, + "languages": {}, + "profile": { + "member_since": "Medlem siden", + "user_stats": "Brukerstatistikk", + "visited_countries": "Besøkte land", + "visited_regions": "Besøkte regioner", + "visited_cities": "Besøkte byer", + "discovered": "oppdaget", + "explored": "utforsket", + "no_shared_adventures": "Denne brukeren har ikke delt noen offentlige eventyr ennå.", + "no_shared_collections": "Denne brukeren har ikke delt noen offentlige samlinger ennå.", + "planned_trips": "Planlagte turer", + "public_adventure_experiences": "Offentlige eventyropplevelser", + "travel_statistics": "Reisestatistikk", + "your_journey_at_a_glance": "Din eventyrreise på et øyeblikk" + }, + "categories": { + "manage_categories": "Administrer kategorier", + "no_categories_found": "Ingen kategorier funnet.", + "edit_category": "Rediger kategori", + "icon": "Ikon", + "update_after_refresh": "Eventyrkortene vil oppdateres når du oppdaterer siden.", + "select_category": "Velg kategori", + "category_name": "Kategorinavn", + "add_new_category": "Legg til ny kategori", + "name_required": "Kategorinavnet er påkrevd" + }, + "dashboard": { + "welcome_back": "Velkommen tilbake", + "countries_visited": "Land besøkt", + "total_adventures": "Totalt antall eventyr", + "total_visited_regions": "Totalt antall besøkte regioner", + "total_visited_cities": "Totalt antall besøkte byer", + "recent_adventures": "Nylige eventyr", + "no_recent_adventures": "Ingen nylige eventyr?", + "add_some": "Hvorfor ikke begynne å planlegge ditt neste eventyr? Du kan legge til et nytt eventyr ved å klikke på knappen nedenfor.", + "document_some_adventures": "Begynn å dokumentere dine reiser og bygg ditt personlige eventyrkart!", + "view_all": "Se alle", + "welcome_text_1": "Du har vært på", + "welcome_text_2": "Eventyr så langt", + "welcome_text_3": "Fortsett å utforske og dokumentere dine reiser!" + }, + "immich": { + "immich": "Immich", + "integration_fetch_error": "Feil ved henting av data fra Immich-integrasjonen", + "no_items_found": "Ingen elementer funnet", + "load_more": "Last mer", + "immich_error": "Feil ved oppdatering av Immich-integrasjon", + "immich_disabled": "Immich-integrasjon deaktivert!", + "disable": "Deaktiver", + "server_url": "Immich-server-URL", + "api_note": "Merk: dette må være URL-en til Immich API-serveren, så den slutter sannsynligvis med /api, med mindre du har en tilpasset konfig.", + "api_key": "Immich API-nøkkel", + "update_integration": "Oppdater integrasjon", + "localhost_note": "Merk: localhost vil sannsynligvis ikke fungere med mindre du har satt opp docker-nettverk. Det anbefales å bruke serverens IP-adresse eller domenenavn.", + "api_key_placeholder": "Skriv inn Immich API -tasten", + "enable_integration": "Aktiver integrasjon", + "immich_integration_desc": "Koble til Immich Photo Management Server", + "need_help": "Trenger du hjelp til å sette opp dette? \nSjekk ut", + "connection_error": "Feil tilkobling til Immich Server", + "copy_locally": "Kopier bilder lokalt", + "copy_locally_desc": "Kopier bilder til serveren for offline tilgang. \nBruker mer diskplass.", + "error_saving_image": "Feil å lagre bilde", + "integration_already_exists": "En Immich -integrasjon eksisterer allerede. \nDu kan bare ha en integrasjon om gangen.", + "integration_not_found": "Immich -integrasjon ikke funnet. \nOpprett en ny integrasjon.", + "network_error": "Nettverksfeil mens du kobler til Immich -serveren. \nVennligst sjekk tilkoblingen din og prøv igjen.", + "validation_error": "Det oppstod en feil under validering av Immich -integrasjonen. \nVennligst sjekk server -URL -en og API -tasten." + }, + "recomendations": { + "recommendation": "Anbefaling", + "recommendations": "Anbefalinger", + "adventure_recommendations": "Eventyranbefalinger", + "food": "Mat", + "tourism": "Turisme" + }, + "google_maps": { + "google_maps_integration_desc": "Koble til Google Maps-kontoen din for å få søkeresultater og anbefalinger av høy kvalitet." + }, + "calendar": { + "all_categories": "Alle kategorier", + "all_day_event": "Hele dagens arrangement", + "calendar_overview": "Kalenderoversikt", + "categories": "Kategorier", + "day": "Dag", + "events_scheduled": "hendelser planlagt", + "filter_by_category": "Filter etter kategori", + "filtered_results": "Filtrerte resultater", + "month": "Måned", + "today": "I dag", + "total_events": "Total hendelser", + "week": "Uke" + } +} diff --git a/frontend/src/locales/pl.json b/frontend/src/locales/pl.json new file mode 100644 index 0000000..af72437 --- /dev/null +++ b/frontend/src/locales/pl.json @@ -0,0 +1,711 @@ +{ + "navbar": { + "adventures": "Podróże", + "collections": "Kolekcje", + "worldtravel": "Podróże po świecie", + "map": "Mapa", + "users": "Użytkownicy", + "search": "Szukaj", + "profile": "Profil", + "greeting": "Cześć", + "my_adventures": "Moje podróże", + "my_tags": "Moje tagi", + "tag": "Tag", + "shared_with_me": "Udostępnione ze mną", + "settings": "Ustawienia", + "logout": "Wyloguj się", + "about": "O AdventureLog", + "documentation": "Dokumentacja", + "language_selection": "Wybór języka", + "support": "Wsparcie", + "theme_selection": "Wybór motywu", + "themes": { + "aestheticDark": "Estetyczna ciemność", + "aestheticLight": "Światło estetyczne", + "aqua": "Aqua", + "dark": "Ciemny", + "dim": "Ciemny", + "forest": "Las", + "light": "Światło", + "night": "Noc", + "northernLights": "Północne światła" + }, + "calendar": "Kalendarz", + "admin_panel": "Panel administracyjny" + }, + "about": { + "about": "O aplikacji", + "license": "Licencjonowane na licencji GPL-3.0.", + "source_code": "Kod źródłowy", + "message": "Stworzone z ❤️ w Stanach Zjednoczonych.", + "oss_attributions": "Atrybucje Open Source", + "nominatim_1": "Wyszukiwanie lokalizacji i geokodowanie zapewnia", + "nominatim_2": "Ich dane są licencjonowane na licencji ODbL.", + "other_attributions": "Dodatkowe atrybucje można znaleźć w pliku README.", + "close": "Zamknij", + "generic_attributions": "Zaloguj się do Adventurelog, aby wyświetlić atrybucje dla włączonych integracji i usług." + }, + "home": { + "hero_1": "Odkryj najbardziej ekscytujące podróże na świecie", + "hero_2": "Odkrywaj i planuj swoją kolejną podróż z AdventureLog. Poznaj zapierające dech w piersiach miejsca, twórz spersonalizowane plany podróży i bądź w kontakcie w trakcie podróży.", + "go_to": "Przejdź do AdventureLog", + "key_features": "Najważniejsze funkcje", + "desc_1": "Odkrywaj, planuj i eksploruj z łatwością", + "desc_2": "AdventureLog został zaprojektowany, aby uprościć Twoją podróż, oferując narzędzia i zasoby do planowania, pakowania i poruszania się po niezapomnianej podróży.", + "feature_1": "Dziennik podróży", + "feature_1_desc": "Śledź swoje podróże dzięki spersonalizowanemu dziennikowi podróży i dziel się swoimi doświadczeniami z przyjaciółmi i rodziną.", + "feature_2": "Planowanie podróży", + "feature_2_desc": "Łatwo twórz spersonalizowane plany podróży i uzyskaj szczegółowy rozkład swojego wyjazdu na każdy dzień.", + "feature_3": "Mapa podróży", + "feature_3_desc": "Zobacz swoje podróże na całym świecie dzięki interaktywnej mapie i odkrywaj nowe miejsca.", + "explore_world": "Poznaj świat", + "latest_travel_experiences": "Twoje najnowsze wrażenia z podróży", + "of_world": "świata", + "start_your_journey": "Rozpocznij swoją podróż" + }, + "adventures": { + "collection_remove_success": "Podróż została pomyślnie usunięta z kolekcji!", + "collection_remove_error": "Błąd podczas usuwania podróży z kolekcji", + "collection_link_success": "Podróż została pomyślnie dodana do kolekcji!", + "no_image_found": "Nie znaleziono obrazu", + "collection_link_error": "Błąd podczas dodawania podróży do kolekcji", + "adventure_delete_confirm": "Czy na pewno chcesz usunąć tę podróż? Ta operacja jest nieodwracalna.", + "open_details": "Otwórz szczegóły", + "edit_adventure": "Edytuj podróż", + "remove_from_collection": "Usuń z kolekcji", + "add_to_collection": "Dodaj do kolekcji", + "delete": "Usuń", + "not_found": "Podróż nie znaleziona", + "not_found_desc": "Podróży, której szukasz, nie można znaleźć. Spróbuj poszukać innej podróży lub sprawdź później.", + "homepage": "Strona główna", + "collection": "Kolekcja", + "longitude": "Długość geograficzna", + "latitude": "Szerokość geograficzna", + "visit": "Odwiedź", + "visits": "Odwiedziny", + "create_new": "Utwórz nową...", + "adventure": "Podróż", + "count_txt": "wyniki pasujące do Twojego wyszukiwania", + "sort": "Sortuj", + "order_by": "Sortuj według", + "order_direction": "Kierunek sortowania", + "ascending": "Rosnąco", + "descending": "Malejąco", + "updated": "Zaktualizowano", + "name": "Nazwa", + "date": "Data", + "activity_types": "Rodzaje aktywności", + "tags": "Tagi", + "add_a_tag": "Dodaj tag", + "date_constrain": "Ogranicz do dat kolekcji", + "rating": "Ocena", + "my_images": "Moje obrazy", + "no_images": "Brak obrazów", + "share_adventure": "Podziel się tą podróżą!", + "copy_link": "Kopiuj link", + "image": "Obraz", + "upload_image": "Prześlij obraz", + "url": "URL", + "fetch_image": "Pobierz obraz", + "wikipedia": "Wikipedia", + "add_notes": "Dodaj notatki", + "warning": "Ostrzeżenie", + "my_adventures": "Moje podróże", + "no_linkable_adventures": "Nie znaleziono podróży, które można połączyć z tą kolekcją.", + "add": "Dodaj", + "save_next": "Zapisz i następny", + "end_date": "Data zakończenia", + "start_date": "Data rozpoczęcia", + "remove": "Usuń", + "location": "Lokalizacja", + "search_for_location": "Szukaj lokalizacji", + "clear_map": "Wyczyść mapę", + "search_results": "Wyniki wyszukiwania", + "no_results": "Nie znaleziono wyników", + "wiki_desc": "Pobiera fragment artykułu z Wikipedii pasującego do nazwy podróży.", + "generate_desc": "Generuj opis", + "public_adventure": "Publiczna podróż", + "location_information": "Informacje o lokalizacji", + "link": "Link", + "links": "Linki", + "description": "Opis", + "sources": "Źródła", + "collection_adventures": "Uwzględnij podróże z kolekcji", + "filter": "Filtr", + "category_filter": "Filtr kategorii", + "category": "Kategoria", + "clear": "Wyczyść", + "my_collections": "Moje kolekcje", + "open_filters": "Otwórz filtry", + "archived_collections": "Zarchiwizowane kolekcje", + "share": "Podziel się", + "private": "Prywatne", + "public": "Publiczne", + "archived": "Zarchiwizowane", + "edit_collection": "Edytuj kolekcję", + "unarchive": "Przywróć z archiwum", + "archive": "Archiwizuj", + "no_collections_found": "Nie znaleziono kolekcji, do których można dodać tę podróż.", + "not_visited": "Nie odwiedzone", + "archived_collection_message": "Kolekcja została pomyślnie zarchiwizowana!", + "unarchived_collection_message": "Kolekcja została pomyślnie przywrócona z archiwum!", + "delete_collection_success": "Kolekcja została pomyślnie usunięta!", + "cancel": "Anuluj", + "delete_collection": "Usuń kolekcję", + "delete_adventure": "Usuń wyprawę", + "adventure_delete_success": "Podróż została pomyślnie usunięta!", + "visited": "Odwiedzona", + "planned": "Planowana", + "duration": "Czas trwania", + "all": "Wszystkie", + "image_removed_success": "Obraz został pomyślnie usunięty!", + "image_removed_error": "Błąd podczas usuwania obrazu", + "no_image_url": "Nie znaleziono obrazu pod tym URL.", + "image_upload_success": "Obraz został pomyślnie przesłany!", + "image_upload_error": "Błąd podczas przesyłania obrazu", + "dates": "Daty", + "wiki_image_error": "Błąd podczas pobierania obrazu z Wikipedii", + "start_before_end_error": "Data rozpoczęcia musi być przed datą zakończenia", + "actions": "Akcje", + "see_adventures": "Zobacz podróże", + "image_fetch_failed": "Nie udało się pobrać obrazu", + "no_location": "Proszę podać lokalizację", + "no_description_found": "Nie znaleziono opisu", + "adventure_created": "Podróż została utworzona", + "adventure_create_error": "Nie udało się stworzyć podróży", + "adventure_updated": "Podróż została zaktualizowana", + "adventure_update_error": "Nie udało się zaktualizować podróży", + "set_to_pin": "Ustaw jako przypiętą", + "category_fetch_error": "Błąd podczas pobierania kategorii", + "new_adventure": "Nowa podróż", + "basic_information": "Podstawowe informacje", + "adventure_not_found": "Brak podróży do wyświetlenia. Dodaj je za pomocą przycisku plus w prawym dolnym rogu lub spróbuj zmienić filtry!", + "no_adventures_found": "Brak podróży", + "mark_visited": "Oznacz jako odwiedzone", + "error_updating_regions": "Błąd podczas aktualizacji regionów", + "regions_updated": "Regiony zaktualizowane", + "visited_region_check": "Sprawdzenie odwiedzonych regionów", + "visited_region_check_desc": "Wybierając tę opcję, serwer sprawdzi wszystkie Twoje odwiedzone miejsca i oznaczy regiony, w których się znajdują, jako odwiedzone w podróży po świecie.", + "update_visited_regions": "Aktualizuj odwiedzone regiony", + "update_visited_regions_disclaimer": "Może to potrwać, w zależności od liczby odwiedzonych miejsc.", + "link_new": "Powiąż nową...", + "add_new": "Dodaj nową...", + "transportation": "Transport", + "note": "Notatka", + "checklist": "Lista kontrolna", + "collection_archived": "Ta kolekcja została zarchiwizowana.", + "visit_link": "Link do podróży", + "collection_completed": "Zakończyłeś tę kolekcję!", + "collection_stats": "Statystyki kolekcji", + "keep_exploring": "Kontynuuj odkrywanie!", + "linked_adventures": "Powiązane podróże", + "notes": "Notatki", + "checklists": "Listy kontrolne", + "transportations": "Transport", + "day": "Dzień", + "itineary_by_date": "Plan podróży według daty", + "nothing_planned": "Nic nie zaplanowane na ten dzień. Ciesz się podróżą!", + "days": "dni", + "activities": {}, + "copied_to_clipboard": "Skopiowano do schowka!", + "copy_failed": "Kopiowanie nie powiodło się", + "adventure_calendar": "Kalendarz przygód", + "emoji_picker": "Wybór emoji", + "hide": "Ukrywać", + "show": "Pokazywać", + "download_calendar": "Pobierz Kalendarz", + "md_instructions": "Napisz tutaj swoją przecenę...", + "preview": "Zapowiedź", + "checklist_delete_confirm": "Czy na pewno chcesz usunąć tę listę kontrolną? \nTej akcji nie można cofnąć.", + "clear_location": "Wyczyść lokalizację", + "date_information": "Informacje o dacie", + "delete_checklist": "Usuń listę kontrolną", + "delete_note": "Usuń notatkę", + "delete_transportation": "Usuń transport", + "end": "Koniec", + "ending_airport": "Kończy się lotnisko", + "flight_information": "Informacje o locie", + "from": "Z", + "no_location_found": "Nie znaleziono lokalizacji", + "note_delete_confirm": "Czy na pewno chcesz usunąć tę notatkę? \nTej akcji nie można cofnąć.", + "out_of_range": "Nie mieści się w zakresie dat planu podróży", + "start": "Start", + "starting_airport": "Początkowe lotnisko", + "to": "Do", + "transportation_delete_confirm": "Czy na pewno chcesz usunąć ten transport? \nTej akcji nie można cofnąć.", + "will_be_marked": "zostanie oznaczona jako odwiedzona po zapisaniu przygody.", + "cities_updated": "miasta zaktualizowane", + "create_adventure": "Stwórz przygodę", + "no_adventures_to_recommendations": "Nie znaleziono żadnych przygód. \nDodaj co najmniej jedną przygodę, aby uzyskać rekomendacje.", + "finding_recommendations": "Odkrywanie ukrytych klejnotów na następną przygodę", + "attachment": "Załącznik", + "attachment_delete_success": "Załącznik został pomyślnie usunięty!", + "attachment_name": "Nazwa załącznika", + "attachment_update_error": "Błąd podczas aktualizacji załącznika", + "attachment_update_success": "Załącznik został pomyślnie zaktualizowany!", + "attachment_upload_error": "Błąd podczas przesyłania załącznika", + "attachment_upload_success": "Załącznik przesłany pomyślnie!", + "attachments": "Załączniki", + "gpx_tip": "Przesyłaj pliki GPX do załączników, aby wyświetlić je na mapie!", + "images": "Obrazy", + "upload": "Wgrywać", + "city": "Miasto", + "delete_lodging": "Usunąć zakwaterowanie", + "display_name": "Nazwa wyświetlania", + "location_details": "Szczegóły lokalizacji", + "lodging": "Kwatera", + "lodging_delete_confirm": "Czy na pewno chcesz usunąć tę lokalizację zakwaterowania? \nTego działania nie można cofnąć.", + "lodging_information": "Informacje o zakwaterowaniu", + "price": "Cena", + "region": "Region", + "reservation_number": "Numer rezerwacji", + "open_in_maps": "Otwarte w mapach", + "all_day": "Cały dzień", + "collection_no_start_end_date": "Dodanie daty rozpoczęcia i końca do kolekcji odblokuje funkcje planowania planu podróży na stronie kolekcji.", + "date_itinerary": "Trasa daty", + "no_ordered_items": "Dodaj przedmioty z datami do kolekcji, aby je zobaczyć tutaj.", + "ordered_itinerary": "Zamówiono trasę", + "invalid_date_range": "Niepoprawny zakres dat", + "timezone": "Strefa czasowa", + "no_visits": "Brak wizyt", + "arrival_timezone": "Strefa czasowa przyjazdu", + "departure_timezone": "Strefa czasowa odlotu", + "arrival_date": "Data przyjazdu", + "departure_date": "Data wyjazdu", + "coordinates": "Współrzędne", + "copy_coordinates": "Kopiuj współrzędne", + "sun_times": "Czasy słońca", + "sunrise": "Wschód słońca", + "sunset": "Zachód słońca", + "timed": "Czas", + "distance": "Dystans", + "all_linked_items": "Wszystkie połączone elementy", + "itinerary": "Trasa", + "joined": "Dołączył", + "view_profile": "Zobacz profil", + "share_collection": "Udostępnij tę kolekcję!", + "filters_and_sort": "Filtry", + "filters_and_stats": "Filtry", + "no_adventures_message": "Zacznij dokumentować swoje przygody i planować nowe. \nKażda podróż ma historię, którą warto opowiedzieć.", + "travel_progress": "Postęp podróży", + "adventures_available": "Dostępne przygody", + "all_adventures_already_linked": "Wszystkie przygody są już powiązane z tą kolekcją.", + "collections_linked": "Połączone kolekcje", + "create_collection_first": "Utwórz kolekcję najpierw, aby zorganizować swoje przygody i wspomnienia.", + "done": "Zrobione", + "loading_adventures": "Ładowanie przygód ...", + "name_location": "Nazwa, lokalizacja", + "delete_collection_warning": "Czy na pewno chcesz usunąć tę kolekcję? \nTego działania nie można cofnąć.", + "collection_contents": "Zawartość kolekcji", + "check_in": "Zameldować się", + "check_out": "Wymeldować się" + }, + "worldtravel": { + "country_list": "Lista krajów", + "num_countries": "znalezione kraje", + "all": "Wszystkie", + "partially_visited": "Częściowo odwiedzone", + "not_visited": "Nieodwiedzone", + "completely_visited": "Całkowicie odwiedzone", + "all_subregions": "Wszystkie podregiony", + "clear_search": "Wyczyść wyszukiwanie", + "no_countries_found": "Nie znaleziono krajów", + "cities": "miasta", + "failed_to_mark_visit": "Nie udało się oznaczyć wizyty w", + "failed_to_remove_visit": "Nie udało się usunąć wizyty w", + "marked_visited": "oznaczone jako odwiedzone", + "no_cities_found": "Nie znaleziono żadnych miast", + "region_failed_visited": "Nie udało się oznaczyć regionu jako odwiedzony", + "regions_in": "Regiony w", + "removed": "REMOVED", + "view_cities": "Zobacz Miasta", + "visit_remove_failed": "Nie udało się usunąć wizyty", + "visit_to": "Wizyta w", + "available_to_explore": "Dostępne do odkrycia", + "clear_all": "Wyczyść wszystko", + "clear_all_filters": "Wyczyść wszystkie filtry", + "clear_filters": "Jasne filtry", + "complete": "Kompletny", + "countries": "kraje", + "country_completed": "Kraj zakończony", + "filter_by": "Filtr przez", + "filter_by_region": "Filtr według regionu", + "hide_map": "Ukryj mapę", + "hide_map_labels": "Ukryj etykiety mapy", + "interactive_map": "Interaktywna mapa", + "no_countries_found_desc": "Spróbuj dostosować wyszukiwane warunki lub filtry, aby znaleźć kraje, których szukasz.", + "no_country_data_available": "Brak danych krajowych", + "no_country_data_available_desc": "Sprawdź dokumentację aktualizacji danych regionu.", + "no_regions_found": "Nie znaleziono żadnych regionów", + "of": "z", + "partial": "Częściowy", + "progress": "Postęp", + "progress_and_stats": "Postęp", + "region_completed": "Region ukończony", + "remaining": "Pozostały", + "show_map": "Pokaż mapę", + "show_map_labels": "Pokaż etykiety mapy", + "total_cities": "Całkowite miasta", + "total_countries": "Kraje ogółem", + "total_regions": "Regiony ogółem", + "all_regions": "Wszystkie regiony", + "cities_in": "Miasta w", + "newest_first": "Najnowszy pierwszy", + "oldest_first": "Najstarszy pierwszy", + "unvisited_first": "Najpierw niewidziane", + "visited_first": "Odwiedziłem pierwszy", + "total_items": "Całkowite przedmioty" + }, + "auth": { + "username": "Nazwa użytkownika", + "password": "Hasło", + "forgot_password": "Zapomniałeś hasła?", + "signup": "Zarejestruj się", + "login_error": "Nie udało się zalogować przy użyciu podanych danych.", + "login": "Zaloguj się", + "email": "Email", + "first_name": "Imię", + "last_name": "Nazwisko", + "confirm_password": "Potwierdź hasło", + "registration_disabled": "Rejestracja jest obecnie wyłączona.", + "profile_picture": "Zdjęcie profilowe", + "public_profile": "Publiczny profil", + "public_tooltip": "Dzięki publicznemu profilowi użytkownicy mogą dzielić się z Tobą kolekcjami i oglądać Twój profil na stronie użytkowników.", + "new_password": "Nowe hasło", + "or_3rd_party": "Lub zaloguj się za pomocą usługi strony trzeciej", + "no_public_adventures": "Nie znaleziono publicznych przygód", + "no_public_collections": "Nie znaleziono publicznych kolekcji", + "user_adventures": "Przygody użytkowników", + "user_collections": "Kolekcje użytkowników" + }, + "users": { + "no_users_found": "Nie znaleziono użytkowników z publicznymi profilami." + }, + "settings": { + "update_error": "Błąd podczas aktualizacji ustawień", + "update_success": "Ustawienia zostały pomyślnie zaktualizowane!", + "settings_page": "Strona ustawień", + "account_settings": "Ustawienia konta użytkownika", + "update": "Aktualizuj", + "password_change": "Zmień hasło", + "new_password": "Nowe hasło", + "confirm_new_password": "Potwierdź nowe hasło", + "email_change": "Zmień adres e-mail", + "no_email_set": "Brak ustawionego adresu e-mail", + "new_email": "Nowy adres e-mail", + "change_password": "Zmień hasło", + "reset_password": "Resetuj hasło", + "possible_reset": "Jeśli podany adres e-mail jest powiązany z kontem, otrzymasz wiadomość e-mail z instrukcjami resetowania hasła!", + "about_this_background": "O tym tle", + "photo_by": "Zdjęcie autorstwa", + "join_discord": "Dołącz do Discorda", + "join_discord_desc": "aby podzielić się swoimi zdjęciami. Zamieść je w kanale #travel-share.", + "current_password": "Aktualne hasło", + "password_change_lopout_warning": "Po zmianie hasła nastąpi wylogowanie.", + "authenticator_code": "Kod uwierzytelniający", + "copy": "Kopia", + "disable_mfa": "Wyłącz usługę MFA", + "email_added": "Adres e-mail został pomyślnie dodany!", + "email_removed": "E-mail został pomyślnie usunięty!", + "email_removed_error": "Błąd podczas usuwania wiadomości e-mail", + "email_set_primary": "Adres e-mail został pomyślnie ustawiony jako podstawowy!", + "email_set_primary_error": "Błąd podczas ustawiania adresu e-mail jako głównego", + "email_verified": "E-mail zweryfikowany pomyślnie!", + "email_verified_erorr_desc": "Nie udało się zweryfikować Twojego adresu e-mail. \nSpróbuj ponownie.", + "email_verified_error": "Błąd podczas weryfikacji adresu e-mail", + "email_verified_success": "Twój e-mail został zweryfikowany. \nMożesz się teraz zalogować.", + "enable_mfa": "Włącz usługę MFA", + "generic_error": "Wystąpił błąd podczas przetwarzania Twojego żądania.", + "make_primary": "Ustaw jako podstawowy", + "mfa_disabled": "Uwierzytelnianie wieloskładnikowe zostało pomyślnie wyłączone!", + "mfa_enabled": "Uwierzytelnianie wieloskładnikowe zostało pomyślnie włączone!", + "mfa_not_enabled": "Usługa MFA nie jest włączona", + "mfa_page_title": "Uwierzytelnianie wieloskładnikowe", + "no_emai_set": "Nie ustawiono adresu e-mail", + "not_verified": "Nie zweryfikowano", + "primary": "Podstawowy", + "recovery_codes": "Kody odzyskiwania", + "recovery_codes_desc": "To są Twoje kody odzyskiwania. \nZapewnij im bezpieczeństwo. \nNie będziesz mógł ich ponownie zobaczyć.", + "reset_session_error": "Wyloguj się i zaloguj ponownie, aby odświeżyć sesję i spróbuj ponownie.", + "verified": "Zweryfikowano", + "verify": "Zweryfikować", + "verify_email_error": "Błąd podczas weryfikacji adresu e-mail. \nSpróbuj ponownie za kilka minut.", + "verify_email_success": "Weryfikacja e-mailowa została wysłana pomyślnie!", + "documentation_link": "Link do dokumentacji", + "launch_account_connections": "Uruchom Połączenia kont", + "launch_administration_panel": "Uruchom Panel administracyjny", + "no_verified_email_warning": "Aby włączyć uwierzytelnianie dwuskładnikowe, musisz mieć zweryfikowany adres e-mail.", + "social_auth_desc": "Włącz lub wyłącz dostawców uwierzytelniania społecznościowego i OIDC dla swojego konta. \nPołączenia te umożliwiają logowanie się za pośrednictwem dostawców tożsamości uwierzytelniających, takich jak Authentik, lub dostawców zewnętrznych, takich jak GitHub.", + "social_auth_desc_2": "Ustawienia te są zarządzane na serwerze AdventureLog i muszą zostać włączone ręcznie przez administratora.", + "add_email": "Dodaj e-mail", + "password_disable_warning": "Obecnie uwierzytelnianie hasła jest wyłączone. \nWymagane jest zalogowanie się za pośrednictwem dostawcy społeczności lub OIDC.", + "password_disabled": "Uwierzytelnianie hasła wyłączone", + "password_disabled_error": "Błąd wyłączający uwierzytelnianie hasła. \nUpewnij się, że dostawca społecznościowy lub OIDC jest powiązany z Twoim kontem.", + "password_enabled": "Włączone uwierzytelnianie hasła", + "password_enabled_error": "Błąd umożliwiający uwierzytelnianie hasła.", + "access_restricted": "Dostęp do ograniczenia", + "access_restricted_desc": "Funkcje jadminarne są dostępne tylko dla pracowników.", + "add_new_email": "Dodaj nowy e -mail", + "add_new_email_address": "Dodaj nowy adres e -mail", + "admin": "Admin", + "admin_panel_desc": "Uzyskaj dostęp do pełnego interfejsu administracyjnego", + "administration": "Administracja", + "administration_desc": "Narzędzia administracyjne i ustawienia", + "advanced": "Zaawansowany", + "advanced_settings": "Zaawansowane ustawienia", + "advanced_settings_desc": "Zaawansowane narzędzia konfiguracyjne i programistyczne", + "all_rights_reserved": "Wszelkie prawa zastrzeżone.", + "app_version": "Wersja aplikacji", + "connected": "Połączony", + "debug_information": "Informacje o debugowaniu", + "disabled": "Wyłączony", + "disconnected": "Bezładny", + "email_management": "Zarządzanie e -mail", + "email_management_desc": "Zarządzaj adresami e -mail i statusem weryfikacji", + "emails": "E -maile", + "enabled": "Włączony", + "enter_current_password": "Wprowadź bieżące hasło", + "enter_first_name": "Wprowadź swoje imię", + "enter_last_name": "Wprowadź swoje nazwisko", + "enter_new_email": "Wprowadź nowy adres e -mail", + "enter_new_password": "Wprowadź nowe hasło", + "enter_username": "Wprowadź swoją nazwę użytkownika", + "integrations": "Integracje", + "integrations_desc": "Połącz usługi zewnętrzne, aby ulepszyć swoje wrażenia", + "license": "Licencja", + "mfa_desc": "Dodaj dodatkową warstwę bezpieczeństwa na swoje konto", + "mfa_is_enabled": "MFA jest włączona", + "pass_change_desc": "Zaktualizuj hasło konta, aby uzyskać lepsze bezpieczeństwo", + "password_auth": "Uwierzytelnianie hasła", + "password_login_disabled": "Wyłączanie logowania hasła", + "password_login_enabled": "Włączone logowanie hasła", + "profile_info": "Informacje o profilu", + "profile_info_desc": "Zaktualizuj swoje dane osobowe i zdjęcie profilowe", + "public_profile_desc": "Spraw, aby Twój profil był widoczny dla innych użytkowników", + "quick_actions": "Szybkie działania", + "region_updates": "Aktualizacje regionu", + "region_updates_desc": "Aktualizacja odwiedzonych regionów i miast", + "regular_user": "Zwykły użytkownik", + "security": "Bezpieczeństwo", + "settings_menu": "Menu Ustawienia", + "social_auth": "Uwierzytelnianie społeczne", + "social_auth_desc_1": "Zarządzaj opcjami logowania społecznościowego i ustawieniami haseł", + "social_auth_setup": "Konfiguracja uwierzytelniania społecznego", + "staff_status": "Status personelu", + "staff_user": "Użytkownik personelu", + "invalid_credentials": "Nieprawidłowe poświadczenia" + }, + "collection": { + "collection_created": "Kolekcja została pomyślnie utworzona!", + "error_creating_collection": "Błąd podczas tworzenia kolekcji", + "new_collection": "Nowa kolekcja", + "create": "Utwórz", + "collection_edit_success": "Kolekcja została pomyślnie edytowana!", + "error_editing_collection": "Błąd podczas edytowania kolekcji", + "public_collection": "Kolekcja publiczna", + "manage_collections": "Zarządzaj kolekcjami", + "archived_appear_here": "Zarchiwizowane kolekcje pojawią się tutaj.", + "create_first": "Stwórz swoją pierwszą kolekcję, aby zorganizować swoje przygody i wspomnienia.", + "make_sure_public": "Upewnij się, że Twój profil jest publiczny, aby inni mogli się z tobą podzielić.", + "no_archived_collections": "Brak zarchiwizowanych kolekcji.", + "no_collections_yet": "Brak kolekcji", + "no_shared_collections": "Brak wspólnych kolekcji.", + "shared_collections": "Wspólne kolekcje", + "available": "Dostępny", + "linked": "Połączony", + "try_different_search": "Wypróbuj inne wyszukiwanie lub filtr." + }, + "notes": { + "note_deleted": "Notatka została pomyślnie usunięta!", + "note_delete_error": "Błąd podczas usuwania notatki", + "open": "Otwórz", + "failed_to_save": "Nie udało się zapisać notatki", + "note_editor": "Edytor notatek", + "editing_note": "Edytowanie notatki", + "content": "Treść", + "save": "Zapisz", + "note_public": "Ta notatka jest publiczna, ponieważ znajduje się w publicznej kolekcji.", + "add_a_link": "Dodaj link", + "invalid_url": "Nieprawidłowy URL", + "note_viewer": "Przeglądarka notatek" + }, + "checklist": { + "checklist_deleted": "Lista kontrolna została pomyślnie usunięta!", + "checklist_delete_error": "Błąd podczas usuwania listy kontrolnej", + "checklist_editor": "Edytor listy kontrolnej", + "item": "Element", + "items": "Elementy", + "new_item": "Nowy element", + "checklist_public": "Ta lista kontrolna jest publiczna, ponieważ znajduje się w publicznej kolekcji.", + "item_cannot_be_empty": "Element nie może być pusty", + "item_already_exists": "Element już istnieje", + "new_checklist": "Nowa lista kontrolna" + }, + "transportation": { + "transportation_deleted": "Transport został pomyślnie usunięty!", + "transportation_delete_error": "Błąd podczas usuwania transportu", + "type": "Typ", + "new_transportation": "Nowy transport", + "flight_number": "Numer lotu", + "from_location": "Miejsce początkowe", + "to_location": "Miejsce docelowe", + "edit": "Edytuj", + "modes": { + "car": "Samochód", + "plane": "Samolot", + "train": "Pociąg", + "bus": "Autobus", + "boat": "Łódź", + "bike": "Rower", + "walking": "Pieszo", + "other": "Inne" + }, + "edit_transportation": "Edytuj transport", + "ending_airport_desc": "Wprowadź końcowe kod lotniska (np. LAX)", + "fetch_location_information": "Pobierać informacje o lokalizacji", + "starting_airport_desc": "Wprowadź początkowy kod lotniska (np. JFK)" + }, + "search": { + "adventurelog_results": "Wyniki AdventureLog", + "public_adventures": "Publiczne podróże", + "online_results": "Wyniki online" + }, + "map": { + "view_details": "Zobacz szczegóły", + "adventure_map": "Mapa podróży", + "map_options": "Opcje mapy", + "show_visited_regions": "Pokaż odwiedzone regiony", + "add_adventure_at_marker": "Dodaj nową podróż w miejscu zaznaczenia", + "clear_marker": "Usuń znacznik", + "add_adventure": "Dodaj nową podróż", + "adventure_stats": "Statystyki przygodowe", + "adventures_shown": "Pokazane przygody", + "completion": "Ukończenie", + "display_options": "Opcje wyświetlania", + "map_controls": "Sterowanie mapą", + "marker_placed_on_map": "Marker umieszczony na mapie", + "place_marker_desc": "Kliknij mapę, aby umieścić znacznik lub dodać przygodę bez lokalizacji.", + "regions": "Regiony" + }, + "share": { + "shared": "Udostępnione", + "with": "z", + "unshared": "Nieudostępnione", + "share_desc": "Udostępnij tę kolekcję innym użytkownikom.", + "shared_with": "Współdzielone z", + "no_users_shared": "Brak użytkowników, którym udostępniono", + "not_shared_with": "Brak udostępnionych", + "no_shared_found": "Brak kolekcji udostępnionych Tobie.", + "set_public": "Aby umożliwić użytkownikom udostępnianie Tobie, musisz ustawić swój profil jako publiczny.", + "go_to_settings": "Przejdź do ustawień" + }, + "languages": {}, + "profile": { + "member_since": "Użytkownik od", + "user_stats": "Statystyki użytkownika", + "visited_countries": "Odwiedzone kraje", + "visited_regions": "Odwiedzone regiony", + "visited_cities": "Odwiedzone miasta", + "discovered": "odkryty", + "explored": "zbadane", + "no_shared_adventures": "Ten użytkownik nie podzielił się jeszcze żadnymi publicznymi przygodami.", + "no_shared_collections": "Ten użytkownik nie udostępnił jeszcze żadnych publicznych kolekcji.", + "planned_trips": "Planowane wycieczki", + "public_adventure_experiences": "Public Adventure Doświadczenia", + "travel_statistics": "Statystyka podróży", + "your_journey_at_a_glance": "Twoja przygodowa podróż na pierwszy rzut oka" + }, + "categories": { + "manage_categories": "Zarządzaj kategoriami", + "no_categories_found": "Brak kategorii.", + "edit_category": "Edytuj kategorię", + "icon": "Ikona", + "update_after_refresh": "Karty podróży zostaną zaktualizowane po odświeżeniu strony.", + "select_category": "Wybierz kategorię", + "category_name": "Nazwa kategorii", + "add_new_category": "Dodaj nową kategorię", + "name_required": "Nazwa kategorii jest wymagana" + }, + "dashboard": { + "add_some": "Dlaczego nie zacząć planować kolejnej przygody? \nMożesz dodać nową przygodę, klikając przycisk poniżej.", + "countries_visited": "Odwiedzone kraje", + "no_recent_adventures": "Brak nowych przygód?", + "recent_adventures": "Ostatnie przygody", + "total_adventures": "Totalne przygody", + "total_visited_regions": "Łączna liczba odwiedzonych regionów", + "welcome_back": "Witamy z powrotem", + "total_visited_cities": "Łączna liczba odwiedzonych miast", + "document_some_adventures": "Zacznij dokumentować swoje podróże i zbuduj osobistą mapę przygodową!", + "view_all": "Zobacz wszystkie", + "welcome_text_1": "Byłeś włączony", + "welcome_text_2": "Jak dotąd przygody", + "welcome_text_3": "Badaj i dokumentuj swoje podróże!" + }, + "immich": { + "api_key": "Klucz API Immicha", + "api_note": "Uwaga: musi to być adres URL serwera API Immich, więc prawdopodobnie kończy się na /api, chyba że masz niestandardową konfigurację.", + "disable": "Wyłączyć", + "immich": "Immich", + "immich_error": "Błąd podczas aktualizacji integracji Immich", + "integration_fetch_error": "Błąd podczas pobierania danych z integracji Immich", + "load_more": "Załaduj więcej", + "no_items_found": "Nie znaleziono żadnych elementów", + "server_url": "Adres URL serwera Immich", + "update_integration": "Zaktualizuj integrację", + "immich_disabled": "Integracja z Immich została pomyślnie wyłączona!", + "localhost_note": "Uwaga: localhost najprawdopodobniej nie będzie działać, jeśli nie skonfigurujesz odpowiednio sieci dokerów. \nZalecane jest użycie adresu IP serwera lub nazwy domeny.", + "api_key_placeholder": "Wprowadź swój klucz API IMMICH", + "enable_integration": "Włącz integrację", + "immich_integration_desc": "Połącz swój serwer zarządzania zdjęciami Immich", + "need_help": "Potrzebujesz pomocy w konfiguracji? \nSprawdź", + "connection_error": "Błąd łączący się z serwerem Immich", + "copy_locally": "Kopiuj obrazy lokalnie", + "copy_locally_desc": "Skopiuj obrazy na serwer, aby uzyskać dostęp offline. \nWykorzystuje więcej miejsca na dysku.", + "error_saving_image": "Obraz zapisujący błąd", + "integration_already_exists": "Immichu jest już integracja i immich. \nMożesz mieć tylko jedną integrację na raz.", + "integration_not_found": "Nie znaleziono integracji imich. \nUtwórz nową integrację.", + "network_error": "Błąd sieci podczas łączenia się z serwerem IMMICH. \nSprawdź połączenie i spróbuj ponownie.", + "validation_error": "Wystąpił błąd podczas walidacji integracji immicha. \nSprawdź swój adres URL serwera i klawisz API." + }, + "recomendations": { + "recommendation": "Zalecenie", + "recommendations": "Zalecenia", + "adventure_recommendations": "Zalecenia przygodowe", + "food": "Żywność", + "tourism": "Turystyka" + }, + "lodging": { + "apartment": "Apartament", + "bnb": "Nocleg i śniadanie", + "cabin": "Kabina", + "campground": "Obozowisko", + "motel": "Motel", + "villa": "Willa", + "edit": "Redagować", + "edit_lodging": "Edytuj zakwaterowanie", + "hostel": "Schronisko", + "hotel": "Hotel", + "house": "Dom", + "new_lodging": "Nowe zakwaterowanie", + "other": "Inny", + "reservation_number": "Numer rezerwacji", + "resort": "Uciec" + }, + "google_maps": { + "google_maps_integration_desc": "Połącz swoje konto Google Maps, aby uzyskać wysokiej jakości wyniki wyszukiwania i zalecenia dotyczące lokalizacji." + }, + "calendar": { + "all_categories": "Wszystkie kategorie", + "all_day_event": "Wydarzenie przez cały dzień", + "calendar_overview": "Przegląd kalendarza", + "categories": "Kategorie", + "day": "Dzień", + "events_scheduled": "Zaplanowane wydarzenia", + "filter_by_category": "Filtr według kategorii", + "filtered_results": "Przefiltrowane wyniki", + "month": "Miesiąc", + "today": "Dzisiaj", + "total_events": "Całkowite zdarzenia", + "week": "Tydzień" + } +} diff --git a/frontend/src/locales/ru.json b/frontend/src/locales/ru.json new file mode 100644 index 0000000..7d063fe --- /dev/null +++ b/frontend/src/locales/ru.json @@ -0,0 +1,711 @@ +{ + "navbar": { + "adventures": "Приключения", + "collections": "Коллекции", + "worldtravel": "Мировые путешествия", + "map": "Карта", + "users": "Пользователи", + "search": "Поиск", + "profile": "Профиль", + "greeting": "Привет", + "my_adventures": "Мои приключения", + "my_tags": "Мои теги", + "tag": "Тег", + "shared_with_me": "Поделились со мной", + "settings": "Настройки", + "logout": "Выйти", + "about": "О AdventureLog", + "documentation": "Документация", + "language_selection": "Язык", + "support": "Поддержка", + "calendar": "Календарь", + "theme_selection": "Выбор темы", + "admin_panel": "Панель администратора", + "themes": { + "aestheticDark": "Эстетическая темнота", + "aestheticLight": "Эстетический свет", + "aqua": "Аква", + "dark": "Темный", + "dim": "Тусклый", + "forest": "Лес", + "light": "Свет", + "night": "Ночь", + "northernLights": "Северное сияние" + } + }, + "about": { + "about": "О программе", + "license": "Лицензировано под лицензией GPL-3.0.", + "source_code": "Исходный код", + "message": "Сделано с ❤️ в США.", + "oss_attributions": "Атрибуции открытого исходного кода", + "nominatim_1": "Поиск местоположений и геокодирование предоставляется", + "nominatim_2": "Их данные лицензированы под лицензией ODbL.", + "other_attributions": "Дополнительные атрибуции можно найти в файле README.", + "generic_attributions": "Войдите в AdventureLog, чтобы просмотреть атрибуции для включённых интеграций и сервисов.", + "close": "Закрыть" + }, + "home": { + "hero_1": "Откройте для себя самые захватывающие приключения мира", + "hero_2": "Открывайте и планируйте своё следующее приключение с AdventureLog. Исследуйте захватывающие дух места, создавайте персональные маршруты и оставайтесь на связи в пути.", + "go_to": "Перейти к AdventureLog", + "key_features": "Ключевые особенности", + "desc_1": "Открывайте, планируйте и исследуйте с лёгкостью", + "desc_2": "AdventureLog создан для упрощения вашего путешествия, предоставляя вам инструменты и ресурсы для планирования, сборов и навигации в вашем следующем незабываемом приключении.", + "feature_1": "Журнал путешествий", + "feature_1_desc": "Ведите учёт своих приключений с персональным журналом путешествий и делитесь своими впечатлениями с друзьями и семьёй.", + "feature_2": "Планирование поездок", + "feature_2_desc": "Легко создавайте персональные маршруты и получайте подробную разбивку поездки по дням.", + "feature_3": "Карта путешествий", + "feature_3_desc": "Просматривайте свои путешествия по всему миру с интерактивной картой и открывайте новые направления.", + "explore_world": "Исследуйте мир", + "latest_travel_experiences": "Ваш последний опыт путешествий", + "of_world": "мира", + "start_your_journey": "Начните свое путешествие" + }, + "adventures": { + "collection_remove_success": "Приключение успешно удалено из коллекции!", + "collection_remove_error": "Ошибка удаления приключения из коллекции", + "collection_link_success": "Приключение успешно связано с коллекцией!", + "invalid_date_range": "Недопустимый диапазон дат", + "timezone": "Часовой пояс", + "no_visits": "Нет посещений", + "departure_timezone": "Часовой пояс отправления", + "arrival_timezone": "Часовой пояс прибытия", + "departure_date": "Дата отправления", + "arrival_date": "Дата прибытия", + "no_image_found": "Изображение не найдено", + "collection_link_error": "Ошибка связывания приключения с коллекцией", + "adventure_delete_confirm": "Вы уверены, что хотите удалить это приключение? Это действие нельзя отменить.", + "checklist_delete_confirm": "Вы уверены, что хотите удалить этот контрольный список? Это действие нельзя отменить.", + "note_delete_confirm": "Вы уверены, что хотите удалить эту заметку? Это действие нельзя отменить.", + "transportation_delete_confirm": "Вы уверены, что хотите удалить этот транспорт? Это действие нельзя отменить.", + "lodging_delete_confirm": "Вы уверены, что хотите удалить это место проживания? Это действие нельзя отменить.", + "delete_checklist": "Удалить контрольный список", + "delete_note": "Удалить заметку", + "delete_transportation": "Удалить транспорт", + "delete_lodging": "Удалить жильё", + "open_details": "Открыть детали", + "edit_adventure": "Редактировать приключение", + "remove_from_collection": "Убрать из коллекции", + "add_to_collection": "Добавить в коллекцию", + "delete": "Удалить", + "not_found": "Приключение не найдено", + "not_found_desc": "Приключение, которое вы искали, не найдено. Попробуйте другое приключение или проверьте позже.", + "homepage": "Главная страница", + "collection": "Коллекция", + "longitude": "Долгота", + "latitude": "Широта", + "visit": "Посещение", + "timed": "По времени", + "coordinates": "Координаты", + "copy_coordinates": "Копировать координаты", + "visits": "Посещения", + "create_new": "Создать новое...", + "adventure": "Приключение", + "count_txt": "результатов соответствуют вашему поиску", + "sort": "Сортировка", + "order_by": "Сортировать по", + "order_direction": "Направление сортировки", + "ascending": "По возрастанию", + "descending": "По убыванию", + "updated": "Обновлено", + "name": "Название", + "date": "Дата", + "activity_types": "Типы активности", + "tags": "Теги", + "add_a_tag": "Добавить тег", + "date_constrain": "Ограничить датами коллекции", + "rating": "Рейтинг", + "my_images": "Мои изображения", + "no_images": "Нет изображений", + "distance": "Расстояние", + "share_adventure": "Поделиться этим приключением!", + "copy_link": "Копировать ссылку", + "sun_times": "Время солнца", + "sunrise": "Восход", + "sunset": "Закат", + "image": "Изображение", + "upload_image": "Загрузить изображение", + "open_in_maps": "Открыть в картах", + "url": "URL", + "fetch_image": "Получить изображение", + "wikipedia": "Википедия", + "add_notes": "Добавить заметки", + "warning": "Предупреждение", + "my_adventures": "Мои приключения", + "no_linkable_adventures": "Не найдено приключений, которые можно связать с этой коллекцией.", + "add": "Добавить", + "save_next": "Сохранить и далее", + "end_date": "Дата окончания", + "start_date": "Дата начала", + "remove": "Удалить", + "location": "Местоположение", + "search_for_location": "Поиск местоположения", + "clear_map": "Очистить карту", + "search_results": "Результаты поиска", + "collection_no_start_end_date": "Добавление дат начала и окончания коллекции разблокирует функции планирования маршрута на странице коллекции.", + "no_results": "Результаты не найдены", + "wiki_desc": "Извлекает отрывок из статьи Википедии, соответствующей названию приключения.", + "attachments": "Вложения", + "attachment": "Вложение", + "images": "Изображения", + "generate_desc": "Сгенерировать описание", + "public_adventure": "Публичное приключение", + "location_information": "Информация о местоположении", + "link": "Ссылка", + "links": "Ссылки", + "description": "Описание", + "sources": "Источники", + "collection_adventures": "Включить приключения коллекции", + "filter": "Фильтр", + "category_filter": "Фильтр категории", + "category": "Категория", + "clear": "Очистить", + "my_collections": "Мои коллекции", + "open_filters": "Открыть фильтры", + "archived_collections": "Архивные коллекции", + "share": "Поделиться", + "private": "Приватное", + "public": "Публичное", + "archived": "Архивное", + "edit_collection": "Редактировать коллекцию", + "unarchive": "Разархивировать", + "archive": "Архивировать", + "no_collections_found": "Не найдено коллекций для добавления этого приключения.", + "not_visited": "Не посещено", + "archived_collection_message": "Коллекция успешно архивирована!", + "unarchived_collection_message": "Коллекция успешно разархивирована!", + "delete_collection_success": "Коллекция успешно удалена!", + "cancel": "Отмена", + "delete_collection": "Удалить коллекцию", + "delete_adventure": "Удалить приключение", + "adventure_delete_success": "Приключение успешно удалено!", + "visited": "Посещено", + "planned": "Запланировано", + "duration": "Продолжительность", + "all": "Все", + "image_removed_success": "Изображение успешно удалено!", + "image_removed_error": "Ошибка удаления изображения", + "no_image_url": "Изображение по этому URL не найдено.", + "image_upload_success": "Изображение успешно загружено!", + "image_upload_error": "Ошибка загрузки изображения", + "dates": "Даты", + "wiki_image_error": "Ошибка получения изображения из Википедии", + "start_before_end_error": "Дата начала должна быть раньше даты окончания", + "actions": "Действия", + "see_adventures": "Посмотреть приключения", + "image_fetch_failed": "Не удалось получить изображение", + "no_location": "Пожалуйста, введите местоположение", + "no_description_found": "Описание не найдено", + "adventure_created": "Приключение создано", + "adventure_create_error": "Не удалось создать приключение", + "lodging": "Жильё", + "create_adventure": "Создать приключение", + "adventure_updated": "Приключение обновлено", + "adventure_update_error": "Не удалось обновить приключение", + "set_to_pin": "Установить как булавку", + "category_fetch_error": "Ошибка получения категорий", + "new_adventure": "Новое приключение", + "basic_information": "Основная информация", + "no_adventures_to_recommendations": "Приключения не найдены. Добавьте хотя бы одно приключение, чтобы получить рекомендации.", + "display_name": "Отображаемое имя", + "adventure_not_found": "Нет приключений для отображения. Добавьте их, используя кнопку плюс в правом нижнем углу, или попробуйте изменить фильтры!", + "no_adventures_found": "Приключения не найдены", + "mark_visited": "Отметить как посещённое", + "error_updating_regions": "Ошибка обновления регионов", + "regions_updated": "регионов обновлено", + "cities_updated": "городов обновлено", + "visited_region_check": "Проверка посещённых регионов", + "visited_region_check_desc": "Выбрав это, сервер проверит все ваши посещённые приключения и отметит регионы, в которых они находятся, как посещённые в мировых путешествиях.", + "update_visited_regions": "Обновить посещённые регионы", + "update_visited_regions_disclaimer": "Это может занять некоторое время в зависимости от количества ваших посещённых приключений.", + "link_new": "Связать новое...", + "add_new": "Добавить новое...", + "transportation": "Транспорт", + "note": "Заметка", + "checklist": "Контрольный список", + "collection_archived": "Эта коллекция была архивирована.", + "visit_link": "Перейти по ссылке", + "collection_completed": "Вы завершили эту коллекцию!", + "collection_stats": "Статистика коллекции", + "keep_exploring": "Продолжайте исследовать!", + "linked_adventures": "Связанные приключения", + "notes": "Заметки", + "checklists": "Контрольные списки", + "transportations": "Транспорт", + "adventure_calendar": "Календарь приключений", + "day": "День", + "itineary_by_date": "Маршрут по дате", + "nothing_planned": "На этот день ничего не запланировано. Наслаждайтесь путешествием!", + "copied_to_clipboard": "Скопировано в буфер обмена!", + "copy_failed": "Копирование не удалось", + "show": "Показать", + "hide": "Скрыть", + "clear_location": "Очистить местоположение", + "starting_airport": "Аэропорт отправления", + "view_profile": "Просмотреть профиль", + "joined": "Присоединился", + "ending_airport": "Аэропорт прибытия", + "no_location_found": "Местоположение не найдено", + "from": "От", + "to": "До", + "will_be_marked": "будет отмечено как посещённое после сохранения приключения.", + "start": "Начало", + "end": "Конец", + "emoji_picker": "Выбор эмодзи", + "download_calendar": "Скачать календарь", + "all_day": "Весь день", + "ordered_itinerary": "Упорядоченный маршрут", + "itinerary": "Маршрут", + "all_linked_items": "Все связанные элементы", + "date_itinerary": "Маршрут по дате", + "no_ordered_items": "Добавьте элементы с датами в коллекцию, чтобы увидеть их здесь.", + "date_information": "Информация о дате", + "flight_information": "Информация о рейсе", + "out_of_range": "Не в диапазоне дат маршрута", + "preview": "Предварительный просмотр", + "finding_recommendations": "Поиск скрытых жемчужин для вашего следующего приключения", + "location_details": "Детали местоположения", + "city": "Город", + "region": "Регион", + "md_instructions": "Напишите ваш markdown здесь...", + "days": "дней", + "attachment_upload_success": "Вложение успешно загружено!", + "attachment_upload_error": "Ошибка загрузки вложения", + "upload": "Загрузить", + "attachment_delete_success": "Вложение успешно удалено!", + "attachment_update_success": "Вложение успешно обновлено!", + "attachment_name": "Название вложения", + "gpx_tip": "Загрузите GPX-файлы во вложения, чтобы просматривать их на карте!", + "attachment_update_error": "Ошибка обновления вложения", + "activities": {}, + "lodging_information": "Информация о жилье", + "price": "Цена", + "reservation_number": "Номер бронирования", + "share_collection": "Поделитесь этой коллекцией!", + "filters_and_sort": "Фильтры", + "filters_and_stats": "Фильтры", + "no_adventures_message": "Начните документировать ваши приключения и планировать новые. \nУ каждого путешествия есть история, которую стоит рассказать.", + "travel_progress": "Прогресс путешествий", + "adventures_available": "Приключения доступны", + "all_adventures_already_linked": "Все приключения уже связаны с этой коллекцией.", + "collections_linked": "Коллекции связаны", + "create_collection_first": "Сначала создайте коллекцию, чтобы организовать ваши приключения и воспоминания.", + "delete_collection_warning": "Вы уверены, что хотите удалить эту коллекцию? \nЭто действие не может быть отменено.", + "done": "Сделанный", + "loading_adventures": "Загрузка приключений ...", + "name_location": "имя, местоположение", + "collection_contents": "Содержание коллекции", + "check_in": "Регистрироваться", + "check_out": "Проверить" + }, + "worldtravel": { + "country_list": "Список стран", + "num_countries": "стран найдено", + "all": "Все", + "partially_visited": "Частично посещённые", + "not_visited": "Не посещённые", + "completely_visited": "Полностью посещённые", + "all_subregions": "Все субрегионы", + "clear_search": "Очистить поиск", + "no_countries_found": "Страны не найдены", + "view_cities": "Просмотреть города", + "no_cities_found": "Города не найдены", + "visit_to": "Посещение", + "region_failed_visited": "Не удалось отметить регион как посещённый", + "failed_to_mark_visit": "Не удалось отметить посещение", + "visit_remove_failed": "Не удалось удалить посещение", + "removed": "удалено", + "failed_to_remove_visit": "Не удалось удалить посещение", + "marked_visited": "отмечено как посещённое", + "regions_in": "Регионы в", + "cities": "городов", + "all_regions": "Все регионы", + "available_to_explore": "Доступно для изучения", + "cities_in": "Города в", + "clear_all": "Очистить все", + "clear_all_filters": "Очистить все фильтры", + "clear_filters": "Четкие фильтры", + "complete": "Полный", + "countries": "страны", + "country_completed": "Страна завершена", + "filter_by": "Фильтр за", + "filter_by_region": "Фильтр по региону", + "hide_map": "Скрыть карту", + "hide_map_labels": "Скрыть этикетки карты", + "interactive_map": "Интерактивная карта", + "no_countries_found_desc": "Попробуйте настройки ваших поисковых терминов или фильтров, чтобы найти страны, которые вы ищете.", + "no_country_data_available": "Данные о стране не доступны", + "no_country_data_available_desc": "Пожалуйста, проверьте документацию для обновления данных региона.", + "no_regions_found": "Не было найдено регионов", + "of": "из", + "partial": "Частично", + "progress": "Прогресс", + "progress_and_stats": "Прогресс", + "region_completed": "Регион завершен", + "remaining": "Оставшийся", + "show_map": "Показать карту", + "show_map_labels": "Показать этикетки карты", + "total_cities": "Общие города", + "total_countries": "Всего стран", + "total_regions": "Общие регионы", + "newest_first": "Новейший первый", + "oldest_first": "Сначала старейший", + "unvisited_first": "Не заселяется первым", + "visited_first": "Посетил первым", + "total_items": "Общие предметы" + }, + "auth": { + "username": "Имя пользователя", + "password": "Пароль", + "forgot_password": "Забыли пароль?", + "signup": "Регистрация", + "login_error": "Не удалось войти с предоставленными учётными данными.", + "login": "Вход", + "email": "Email", + "first_name": "Имя", + "last_name": "Фамилия", + "confirm_password": "Подтвердите пароль", + "registration_disabled": "Регистрация в настоящее время отключена.", + "profile_picture": "Фото профиля", + "public_profile": "Публичный профиль", + "public_tooltip": "С публичным профилем пользователи могут делиться с вами коллекциями и просматривать ваш профиль на странице пользователей.", + "new_password": "Новый пароль (6+ символов)", + "or_3rd_party": "Или войти через сторонний сервис", + "no_public_adventures": "Публичные приключения не найдены", + "no_public_collections": "Публичные коллекции не найдены", + "user_adventures": "Приключения пользователя", + "user_collections": "Коллекции пользователя" + }, + "users": { + "no_users_found": "Пользователи с публичными профилями не найдены." + }, + "settings": { + "update_error": "Ошибка обновления настроек", + "update_success": "Настройки успешно обновлены!", + "settings_page": "Страница настроек", + "account_settings": "Настройки учётной записи пользователя", + "update": "Обновить", + "no_verified_email_warning": "У вас должен быть подтверждённый адрес электронной почты для включения двухфакторной аутентификации.", + "social_auth": "Социальная аутентификация", + "social_auth_desc_1": "Управление опциями социального входа и настройками пароля", + "password_auth": "Аутентификация по паролю", + "password_login_enabled": "Вход по паролю включён", + "password_login_disabled": "Вход по паролю отключён", + "password_change": "Изменить пароль", + "new_password": "Новый пароль", + "confirm_new_password": "Подтвердите новый пароль", + "email_change": "Изменить email", + "no_email_set": "Email не установлен", + "email_management": "Управление email", + "email_management_desc": "Управление вашими адресами электронной почты и статусом подтверждения", + "add_new_email": "Добавить новый email", + "add_new_email_address": "Добавить новый адрес электронной почты", + "enter_new_email": "Введите новый адрес электронной почты", + "new_email": "Новый email", + "change_password": "Изменить пароль", + "reset_password": "Сбросить пароль", + "possible_reset": "Если адрес электронной почты, который вы указали, связан с учётной записью, вы получите письмо с инструкциями по сбросу пароля!", + "about_this_background": "Об этом фоне", + "photo_by": "Фото", + "join_discord": "Присоединиться к Discord", + "join_discord_desc": "чтобы поделиться своими фотографиями. Размещайте их в канале #travel-share.", + "current_password": "Текущий пароль", + "password_change_lopout_warning": "Вы будете вылогинены после изменения пароля.", + "generic_error": "Произошла ошибка при обработке вашего запроса.", + "email_removed": "Email успешно удалён!", + "email_removed_error": "Ошибка удаления email", + "verify_email_success": "Подтверждение email успешно отправлено!", + "verify_email_error": "Ошибка подтверждения email. Попробуйте снова через несколько минут.", + "email_added": "Email успешно добавлен!", + "email_set_primary": "Email успешно установлен как основной!", + "email_set_primary_error": "Ошибка установки email как основного", + "verified": "Подтверждён", + "primary": "Основной", + "not_verified": "Не подтверждён", + "make_primary": "Сделать основным", + "verify": "Подтвердить", + "no_emai_set": "Email не установлен", + "mfa_disabled": "Многофакторная аутентификация успешно отключена!", + "mfa_page_title": "Многофакторная аутентификация", + "mfa_desc": "Добавьте дополнительный уровень безопасности к вашему аккаунту", + "enable_mfa": "Включить MFA", + "disable_mfa": "Отключить MFA", + "enabled": "Включено", + "disabled": "Отключено", + "mfa_not_enabled": "MFA не включен", + "mfa_is_enabled": "MFA включен", + "mfa_enabled": "Многофакторная аутентификация успешно включена!", + "copy": "Копировать", + "recovery_codes": "Коды восстановления", + "recovery_codes_desc": "Это ваши коды восстановления. Сохраните их в безопасном месте. Вы не сможете увидеть их снова.", + "reset_session_error": "Пожалуйста, выйдите из системы и войдите снова, чтобы обновить сессию и повторите попытку.", + "authenticator_code": "Код аутентификатора", + "email_verified": "Email успешно подтвержден!", + "email_verified_success": "Ваш email был подтвержден. Теперь вы можете войти в систему.", + "email_verified_error": "Ошибка подтверждения email", + "email_verified_erorr_desc": "Ваш email не может быть подтвержден. Пожалуйста, попробуйте еще раз.", + "launch_administration_panel": "Запустить панель администрирования", + "administration": "Администрирование", + "admin_panel_desc": "Доступ к полному интерфейсу администрирования", + "region_updates": "Обновления регионов", + "debug_information": "Отладочная информация", + "staff_status": "Статус персонала", + "staff_user": "Сотрудник", + "regular_user": "Обычный пользователь", + "app_version": "Версия приложения", + "quick_actions": "Быстрые действия", + "license": "Лицензия", + "all_rights_reserved": "Все права защищены.", + "region_updates_desc": "Обновить посещенные регионы и города", + "access_restricted": "Доступ ограничен", + "access_restricted_desc": "Административные функции доступны только сотрудникам.", + "advanced_settings": "Расширенные настройки", + "advanced_settings_desc": "Расширенная конфигурация и инструменты разработчика", + "social_auth_setup": "Настройка социальной аутентификации", + "administration_desc": "Административные инструменты и настройки", + "social_auth_desc": "Включите или отключите социальные и OIDC провайдеры аутентификации для вашего аккаунта. Эти подключения позволяют вам входить в систему с помощью самостоятельно размещенных провайдеров идентификации, таких как Authentik, или сторонних провайдеров, таких как GitHub.", + "social_auth_desc_2": "Эти настройки управляются на сервере AdventureLog и должны быть вручную включены администратором.", + "documentation_link": "Ссылка на документацию", + "launch_account_connections": "Запустить подключения аккаунта", + "add_email": "Добавить Email", + "password_enabled": "Аутентификация по паролю включена", + "password_disabled": "Аутентификация по паролю отключена", + "password_disable_warning": "В настоящее время аутентификация по паролю отключена. Требуется вход через социального или OIDC провайдера.", + "password_disabled_error": "Ошибка отключения аутентификации по паролю. Убедитесь, что к вашему аккаунту привязан социальный или OIDC провайдер.", + "password_enabled_error": "Ошибка включения аутентификации по паролю.", + "settings_menu": "Меню настроек", + "security": "Безопасность", + "emails": "Email адреса", + "integrations": "Интеграции", + "integrations_desc": "Подключите внешние сервисы для улучшения вашего опыта", + "admin": "Админ", + "advanced": "Расширенные", + "profile_info": "Информация профиля", + "profile_info_desc": "Обновите ваши личные данные и фотографию профиля", + "public_profile_desc": "Сделать ваш профиль видимым для других пользователей", + "pass_change_desc": "Обновите пароль вашего аккаунта для лучшей безопасности", + "enter_first_name": "Введите ваше имя", + "enter_last_name": "Введите вашу фамилию", + "enter_username": "Введите ваше имя пользователя", + "enter_current_password": "Введите текущий пароль", + "enter_new_password": "Введите новый пароль", + "connected": "Подключено", + "disconnected": "Отключено", + "invalid_credentials": "Неверные полномочия" + }, + "collection": { + "collection_created": "Коллекция успешно создана!", + "error_creating_collection": "Ошибка создания коллекции", + "new_collection": "Новая коллекция", + "create": "Создать", + "collection_edit_success": "Коллекция успешно отредактирована!", + "error_editing_collection": "Ошибка редактирования коллекции", + "public_collection": "Публичная коллекция", + "manage_collections": "Управлять коллекциями", + "archived_appear_here": "Архивные коллекции появятся здесь.", + "create_first": "Создайте свою первую коллекцию, чтобы организовать свои приключения и воспоминания.", + "make_sure_public": "Убедитесь, что ваш профиль публично, чтобы другие могли поделиться с вами.", + "no_archived_collections": "Нет архивированных коллекций.", + "no_collections_yet": "Пока нет коллекций", + "no_shared_collections": "Нет общих коллекций.", + "shared_collections": "Общие коллекции", + "available": "Доступный", + "linked": "Связанный", + "try_different_search": "Попробуйте другой поиск или фильтр." + }, + "notes": { + "note_deleted": "Заметка успешно удалена!", + "note_delete_error": "Ошибка удаления заметки", + "open": "Открыть", + "failed_to_save": "Не удалось сохранить заметку", + "note_editor": "Редактор заметок", + "note_viewer": "Просмотр заметки", + "editing_note": "Редактирование заметки", + "content": "Содержание", + "save": "Сохранить", + "note_public": "Эта заметка публична, потому что находится в публичной коллекции.", + "add_a_link": "Добавить ссылку", + "invalid_url": "Неверный URL" + }, + "checklist": { + "checklist_deleted": "Чек-лист успешно удален!", + "checklist_delete_error": "Ошибка удаления чек-листа", + "checklist_editor": "Редактор чек-листа", + "new_checklist": "Новый чек-лист", + "item": "Элемент", + "items": "Элементы", + "new_item": "Новый элемент", + "checklist_public": "Этот чек-лист публичен, потому что находится в публичной коллекции.", + "item_cannot_be_empty": "Элемент не может быть пустым", + "item_already_exists": "Элемент уже существует" + }, + "transportation": { + "transportation_deleted": "Транспорт успешно удален!", + "transportation_delete_error": "Ошибка удаления транспорта", + "type": "Тип", + "new_transportation": "Новый транспорт", + "flight_number": "Номер рейса", + "from_location": "Откуда", + "to_location": "Куда", + "fetch_location_information": "Получить информацию о местоположении", + "starting_airport_desc": "Введите код аэропорта отправления (например, SVO)", + "ending_airport_desc": "Введите код аэропорта прибытия (например, LED)", + "edit": "Редактировать", + "modes": { + "car": "Автомобиль", + "plane": "Самолет", + "train": "Поезд", + "bus": "Автобус", + "boat": "Лодка", + "bike": "Велосипед", + "walking": "Пешком", + "other": "Другое" + }, + "edit_transportation": "Редактировать транспорт" + }, + "lodging": { + "new_lodging": "Новое жилье", + "edit": "Редактировать", + "edit_lodging": "Редактировать жилье", + "hotel": "Отель", + "hostel": "Хостел", + "resort": "Курорт", + "bnb": "Гостевой дом", + "campground": "Кемпинг", + "cabin": "Домик", + "apartment": "Квартира", + "house": "Дом", + "villa": "Вилла", + "motel": "Мотель", + "other": "Другое", + "reservation_number": "Номер бронирования" + }, + "search": { + "adventurelog_results": "Результаты AdventureLog", + "public_adventures": "Публичные приключения", + "online_results": "Онлайн результаты" + }, + "map": { + "view_details": "Подробности", + "adventure_map": "Карта приключений", + "map_options": "Настройки карты", + "show_visited_regions": "Показать посещенные регионы", + "add_adventure_at_marker": "Добавить новое приключение в отмеченном месте", + "clear_marker": "Очистить маркер", + "add_adventure": "Добавить новое приключение", + "adventure_stats": "Приключенческая статистика", + "adventures_shown": "Приключения показаны", + "completion": "Завершение", + "display_options": "Параметры отображения", + "map_controls": "Карта управления", + "marker_placed_on_map": "Маркер размещен на карте", + "place_marker_desc": "Нажмите на карту, чтобы разместить маркер, или добавить приключение без местоположения.", + "regions": "Регионы" + }, + "share": { + "shared": "Поделено", + "with": "с", + "unshared": "Не поделено", + "share_desc": "Поделитесь этой коллекцией с другими пользователями.", + "shared_with": "Поделено с", + "no_users_shared": "Ни с кем не поделено", + "not_shared_with": "Не поделено с", + "no_shared_found": "Не найдено коллекций, которыми с вами поделились.", + "set_public": "Чтобы пользователи могли делиться с вами, вам нужно сделать ваш профиль публичным.", + "go_to_settings": "Перейти к настройкам" + }, + "languages": {}, + "profile": { + "member_since": "Участник с", + "user_stats": "Статистика пользователя", + "visited_countries": "Посещенные страны", + "visited_regions": "Посещенные регионы", + "visited_cities": "Посещенные города", + "discovered": "обнаруженный", + "explored": "исследован", + "no_shared_adventures": "Этот пользователь еще не поделился публичными приключениями.", + "no_shared_collections": "Этот пользователь еще не поделился публичными коллекциями.", + "planned_trips": "Запланированные поездки", + "public_adventure_experiences": "Общественные приключения", + "travel_statistics": "Статистика путешествий", + "your_journey_at_a_glance": "Ваше приключенческое путешествие с первого взгляда" + }, + "categories": { + "manage_categories": "Управление категориями", + "no_categories_found": "Категории не найдены.", + "edit_category": "Редактировать категорию", + "icon": "Иконка", + "update_after_refresh": "Карточки приключений будут обновлены после обновления страницы.", + "select_category": "Выбрать категорию", + "category_name": "Название категории", + "add_new_category": "Добавить новую категорию", + "name_required": "Требуется название категории" + }, + "dashboard": { + "welcome_back": "Добро пожаловать обратно", + "countries_visited": "Посещенные страны", + "total_adventures": "Всего приключений", + "total_visited_regions": "Всего посещенных регионов", + "total_visited_cities": "Всего посещенных городов", + "recent_adventures": "Недавние приключения", + "no_recent_adventures": "Нет недавних приключений?", + "add_some": "Почему бы не начать планировать ваше следующее приключение? Вы можете добавить новое приключение, нажав на кнопку ниже.", + "document_some_adventures": "Начните документировать свои путешествия и создать свою личную карту приключений!", + "view_all": "Просмотреть все", + "welcome_text_1": "Вы были на", + "welcome_text_2": "Приключения пока", + "welcome_text_3": "Продолжайте исследовать и документировать ваши путешествия!" + }, + "immich": { + "immich": "Immich", + "integration_fetch_error": "Ошибка получения данных из интеграции Immich", + "no_items_found": "Элементы не найдены", + "load_more": "Загрузить еще", + "immich_error": "Ошибка обновления интеграции Immich", + "immich_disabled": "Интеграция Immich успешно отключена!", + "disable": "Отключить", + "server_url": "URL сервера Immich", + "api_note": "Примечание: это должен быть URL к API серверу Immich, поэтому он, вероятно, заканчивается на /api, если у вас нет пользовательской конфигурации.", + "api_key": "API ключ Immich", + "enable_integration": "Включить интеграцию", + "update_integration": "Обновить интеграцию", + "immich_integration_desc": "Подключите ваш сервер управления фотографиями Immich", + "localhost_note": "Примечание: localhost, скорее всего, не будет работать, если вы не настроили сети Docker соответствующим образом. Рекомендуется использовать IP-адрес сервера или доменное имя.", + "api_key_placeholder": "Введите ваш API ключ Immich", + "need_help": "Нужна помощь с настройкой? Посмотрите", + "copy_locally": "Копировать изображения локально", + "copy_locally_desc": "Копировать изображения на сервер для офлайн доступа. Использует больше дискового пространства.", + "error_saving_image": "Ошибка сохранения изображения", + "connection_error": "Ошибка подключения к серверу Immich", + "integration_already_exists": "Интеграция Immich уже существует. Вы можете иметь только одну интеграцию одновременно.", + "integration_not_found": "Интеграция Immich не найдена. Пожалуйста, создайте новую интеграцию.", + "validation_error": "Произошла ошибка при проверке интеграции Immich. Пожалуйста, проверьте URL сервера и API ключ.", + "network_error": "Сетевая ошибка при подключении к серверу Immich. Пожалуйста, проверьте ваше соединение и попробуйте еще раз." + }, + "google_maps": { + "google_maps_integration_desc": "Подключите ваш аккаунт Google Maps для получения высококачественных результатов поиска местоположений и рекомендаций." + }, + "recomendations": { + "recommendation": "Рекомендация", + "recommendations": "Рекомендации", + "adventure_recommendations": "Рекомендации приключений", + "food": "Еда", + "tourism": "Туризм" + }, + "calendar": { + "all_categories": "Все категории", + "all_day_event": "Событие на весь день", + "calendar_overview": "Обзор календаря", + "categories": "Категории", + "day": "День", + "events_scheduled": "События запланированы", + "filter_by_category": "Фильтр по категории", + "filtered_results": "Отфильтрованные результаты", + "month": "Месяц", + "today": "Сегодня", + "total_events": "Общее количество событий", + "week": "Неделя" + } +} diff --git a/frontend/src/locales/sv.json b/frontend/src/locales/sv.json new file mode 100644 index 0000000..87d747c --- /dev/null +++ b/frontend/src/locales/sv.json @@ -0,0 +1,711 @@ +{ + "about": { + "about": "Om", + "close": "Stäng", + "license": "Licensierad under GPL-3.0-licensen.", + "message": "Skapat med ❤️ i USA.", + "nominatim_1": "Platssökning och geokodning tillhandahålls av", + "nominatim_2": "Deras data är licensierad under ODbL-licensen.", + "oss_attributions": "Tillskrivningar med öppen källkod", + "other_attributions": "Ytterligare attributioner finns i README-filen.", + "source_code": "Källkod", + "generic_attributions": "Logga in på AdventureLog för att visa attribut för aktiverade integrationer och tjänster." + }, + "adventures": { + "activities": {}, + "add_to_collection": "Lägg till i samlingen", + "adventure": "Äventyr", + "adventure_delete_confirm": "Är du säker på att du vill ta bort det här äventyret? \nDenna åtgärd kan inte ångras.", + "adventure_delete_success": "Äventyret har raderats!", + "archive": "Arkiv", + "archived": "Arkiverad", + "archived_collection_message": "Samlingen har arkiverats!", + "archived_collections": "Arkiverade samlingar", + "ascending": "Stigande", + "cancel": "Avboka", + "category_filter": "Kategorifilter", + "clear": "Rensa", + "collection": "Samling", + "collection_adventures": "Inkludera samlingsäventyr", + "collection_link_error": "Det gick inte att länka äventyr till samling", + "collection_link_success": "Äventyr kopplat till samling framgångsrikt!", + "collection_remove_error": "Det gick inte att ta bort äventyr från samlingen", + "collection_remove_success": "Äventyret har tagits bort från samlingen!", + "count_txt": "resultat som matchar din sökning", + "create_new": "Skapa nytt...", + "date": "Datum", + "dates": "Datum", + "delete": "Radera", + "delete_adventure": "Ta bort äventyr", + "delete_collection": "Ta bort samling", + "delete_collection_success": "Samlingen har raderats!", + "descending": "Fallande", + "duration": "Varaktighet", + "edit_adventure": "Redigera äventyr", + "edit_collection": "Redigera samling", + "filter": "Filtrera", + "homepage": "Hemsida", + "latitude": "Latitud", + "longitude": "Longitud", + "my_collections": "Mina samlingar", + "name": "Namn", + "no_image_found": "Ingen bild hittades", + "not_found": "Äventyret hittades inte", + "not_found_desc": "Äventyret du letade efter kunde inte hittas. \nProva ett annat äventyr eller kom tillbaka senare.", + "open_details": "Öppna Detaljer", + "open_filters": "Öppna filter", + "order_by": "Sortera efter", + "order_direction": "Sorteringsriktning", + "planned": "Planerade", + "private": "Privat", + "public": "Offentlig", + "rating": "Betyg", + "remove_from_collection": "Ta bort från samlingen", + "share": "Dela", + "sort": "Sortera", + "sources": "Källor", + "unarchive": "Avarkivera", + "unarchived_collection_message": "Samlingen har tagits bort från arkivet!", + "visit": "Besök", + "visited": "Besökta", + "visits": "Besök", + "image_removed_error": "Det gick inte att ta bort bilden", + "image_removed_success": "Bilden har tagits bort!", + "image_upload_error": "Det gick inte att ladda upp bilden", + "image_upload_success": "Bilden har laddats upp!", + "no_image_url": "Ingen bild hittades på den webbadressen.", + "start_before_end_error": "Startdatumet måste vara före slutdatumet", + "updated": "Uppdaterad", + "wiki_image_error": "Det gick inte att hämta bilden från Wikipedia", + "actions": "Åtgärder", + "activity_types": "Aktivitetstyper", + "add": "Tillägga", + "add_notes": "Lägg till anteckningar", + "adventure_create_error": "Det gick inte att skapa äventyr", + "adventure_created": "Äventyr skapat", + "adventure_update_error": "Det gick inte att uppdatera äventyret", + "adventure_updated": "Äventyr uppdaterat", + "basic_information": "Grundläggande information", + "category": "Kategori", + "clear_map": "Rensa karta", + "copy_link": "Kopiera länk", + "date_constrain": "Begränsa till insamlingsdatum", + "description": "Beskrivning", + "end_date": "Slutdatum", + "fetch_image": "Hämta bild", + "generate_desc": "Skapa beskrivning", + "image": "Bild", + "image_fetch_failed": "Det gick inte att hämta bilden", + "link": "Länk", + "location": "Plats", + "location_information": "Platsinformation", + "my_images": "Mina bilder", + "new_adventure": "Nytt äventyr", + "no_description_found": "Ingen beskrivning hittades", + "no_images": "Inga bilder", + "no_location": "Vänligen ange en plats", + "no_results": "Inga resultat hittades", + "public_adventure": "Offentligt äventyr", + "remove": "Ta bort", + "save_next": "Spara", + "search_for_location": "Sök efter en plats", + "search_results": "Sökresultat", + "see_adventures": "Se äventyr", + "share_adventure": "Dela detta äventyr!", + "start_date": "Startdatum", + "upload_image": "Ladda upp bild", + "url": "URL", + "warning": "Varning", + "wiki_desc": "Hämtar utdrag från Wikipedia-artikeln som matchar äventyrets namn.", + "adventure_not_found": "Det finns inga äventyr att visa upp. \nLägg till några med hjälp av plusknappen längst ner till höger eller prova att byta filter!", + "all": "Alla", + "error_updating_regions": "Fel vid uppdatering av regioner", + "mark_visited": "Markera som besökt", + "my_adventures": "Mina äventyr", + "no_adventures_found": "Inga äventyr hittades", + "no_collections_found": "Inga samlingar hittades att lägga till detta äventyr till.", + "no_linkable_adventures": "Inga äventyr hittades som kan kopplas till denna samling.", + "not_visited": "Ej besökta", + "regions_updated": "regioner uppdaterade", + "update_visited_regions": "Uppdatera besökta regioner", + "update_visited_regions_disclaimer": "Detta kan ta ett tag beroende på antalet äventyr du har besökt.", + "visited_region_check": "Besökte Region Check", + "visited_region_check_desc": "Genom att välja detta kommer servern att kontrollera alla dina besökta äventyr och markera de regioner de befinner sig i som besökta i världsresor.", + "wikipedia": "Wikipedia", + "add_new": "Lägg till ny...", + "checklist": "Checklista", + "checklists": "Checklistor", + "collection_archived": "Denna samling har arkiverats.", + "collection_completed": "Du har slutfört den här samlingen!", + "collection_stats": "Insamlingsstatistik", + "days": "dagar", + "itineary_by_date": "Resplan efter datum", + "keep_exploring": "Fortsätt utforska!", + "link_new": "Länk Ny...", + "linked_adventures": "Länkade äventyr", + "links": "Länkar", + "note": "Notera", + "notes": "Anteckningar", + "nothing_planned": "Inget planerat för denna dag. \nNjut av resan!", + "transportation": "Transport", + "transportations": "Transporter", + "visit_link": "Besök länken", + "day": "Dag", + "add_a_tag": "Lägg till en tagg", + "tags": "Taggar", + "set_to_pin": "Ställ in på Pin", + "category_fetch_error": "Det gick inte att hämta kategorier", + "copied_to_clipboard": "Kopierat till urklipp!", + "copy_failed": "Kopieringen misslyckades", + "adventure_calendar": "Äventyrskalender", + "emoji_picker": "Emoji-väljare", + "hide": "Dölja", + "show": "Visa", + "download_calendar": "Ladda ner kalender", + "md_instructions": "Skriv din avskrivning här...", + "preview": "Förhandsvisning", + "checklist_delete_confirm": "Är du säker på att du vill ta bort den här checklistan? \nDenna åtgärd kan inte ångras.", + "clear_location": "Rensa plats", + "date_information": "Datuminformation", + "delete_checklist": "Ta bort checklista", + "delete_note": "Ta bort anteckning", + "delete_transportation": "Ta bort Transport", + "end": "Avsluta", + "ending_airport": "Slutar flygplats", + "flight_information": "Flyginformation", + "from": "Från", + "no_location_found": "Ingen plats hittades", + "note_delete_confirm": "Är du säker på att du vill ta bort den här anteckningen? \nDenna åtgärd kan inte ångras.", + "out_of_range": "Inte inom resplanens datumintervall", + "start": "Start", + "starting_airport": "Startar flygplats", + "to": "Till", + "transportation_delete_confirm": "Är du säker på att du vill ta bort denna transport? \nDenna åtgärd kan inte ångras.", + "will_be_marked": "kommer att markeras som besökt när äventyret har sparats.", + "cities_updated": "städer uppdaterade", + "create_adventure": "Skapa äventyr", + "no_adventures_to_recommendations": "Inga äventyr hittades. \nLägg till minst ett äventyr för att få rekommendationer.", + "finding_recommendations": "Upptäck dolda pärlor för ditt nästa äventyr", + "attachment": "Fastsättning", + "attachment_delete_success": "Bilagan har raderats!", + "attachment_name": "Bilagans namn", + "attachment_update_error": "Fel vid uppdatering av bilaga", + "attachment_update_success": "Bilagan har uppdaterats!", + "attachment_upload_error": "Det gick inte att ladda upp bilagan", + "attachment_upload_success": "Bilagan har laddats upp!", + "attachments": "Bilagor", + "gpx_tip": "Ladda upp GPX-filer till bilagor för att se dem på kartan!", + "images": "Bilder", + "upload": "Ladda upp", + "city": "Stad", + "delete_lodging": "Ta bort logi", + "display_name": "Visningsnamn", + "location_details": "Platsinformation", + "lodging": "Logi", + "lodging_delete_confirm": "Är du säker på att du vill ta bort den här logiplatsen? \nDenna åtgärd kan inte ångras.", + "lodging_information": "Logi information", + "price": "Pris", + "region": "Område", + "reservation_number": "Bokningsnummer", + "open_in_maps": "Kappas in", + "all_day": "Hela dagen", + "collection_no_start_end_date": "Att lägga till ett start- och slutdatum till samlingen kommer att låsa upp planeringsfunktioner för resplan på insamlingssidan.", + "date_itinerary": "Datum resplan", + "no_ordered_items": "Lägg till objekt med datum i samlingen för att se dem här.", + "ordered_itinerary": "Beställd resplan", + "invalid_date_range": "Ogiltigt datumintervall", + "timezone": "Tidszon", + "no_visits": "Inga besök", + "arrival_timezone": "Ankomsttidszon", + "departure_timezone": "Avgångstidszon", + "arrival_date": "Ankomstdatum", + "departure_date": "Avgångsdatum", + "coordinates": "Koordinater", + "copy_coordinates": "Kopieringskoordinater", + "sun_times": "Soltider", + "sunrise": "Soluppgång", + "sunset": "Solnedgång", + "timed": "Tidsinställd", + "distance": "Avstånd", + "all_linked_items": "Alla länkade objekt", + "itinerary": "Resväg", + "joined": "Gick med i", + "view_profile": "Visa profil", + "share_collection": "Dela denna samling!", + "filters_and_sort": "Filter", + "filters_and_stats": "Filter", + "no_adventures_message": "Börja dokumentera dina äventyr och planera nya. \nVarje resa har en historia som är värd att berätta.", + "travel_progress": "Reseframsteg", + "adventures_available": "Äventyr tillgängliga", + "all_adventures_already_linked": "Alla äventyr är redan kopplade till denna samling.", + "collections_linked": "Samlingar kopplade", + "create_collection_first": "Skapa en samling först för att organisera dina äventyr och minnen.", + "delete_collection_warning": "Är du säker på att du vill ta bort den här samlingen? \nDenna åtgärd kan inte ångras.", + "done": "Gjort", + "loading_adventures": "Laddar äventyr ...", + "name_location": "namn, plats", + "collection_contents": "Insamlingsinnehåll", + "check_in": "Checka in", + "check_out": "Checka ut" + }, + "home": { + "desc_1": "Upptäck, planera och utforska med lätthet", + "desc_2": "AdventureLog är designad för att förenkla din resa och förse dig med verktyg och resurser för att planera, packa och navigera i ditt nästa oförglömliga äventyr.", + "feature_1": "Reselogg", + "feature_1_desc": "Håll koll på dina äventyr med en personlig reselogg och dela dina upplevelser med vänner och familj.", + "feature_2": "Reseplanering", + "feature_2_desc": "Skapa enkelt skräddarsydda resplaner och få en översikt över din resa, dag för dag.", + "feature_3": "Resekarta", + "feature_3_desc": "Se dina resor över hela världen med en interaktiv karta och utforska nya destinationer.", + "go_to": "Gå till AdventureLog", + "hero_1": "Upptäck världens mest spännande äventyr", + "hero_2": "Upptäck och planera ditt nästa äventyr med AdventureLog. \nUtforska hisnande destinationer, skapa anpassade resplaner och håll kontakten när du är på språng.", + "key_features": "Viktiga funktioner", + "explore_world": "Utforska världen", + "latest_travel_experiences": "Dina senaste reseupplevelser", + "of_world": "av världen", + "start_your_journey": "Börja din resa" + }, + "navbar": { + "about": "Om AdventureLog", + "adventures": "Äventyr", + "collections": "Samlingar", + "documentation": "Dokumentation", + "greeting": "Hej", + "logout": "Logga ut", + "map": "Karta", + "my_adventures": "Mina äventyr", + "profile": "Profil", + "search": "Sök", + "settings": "Inställningar", + "shared_with_me": "Delade med mig", + "theme_selection": "Tema", + "themes": { + "aestheticDark": "Estetisk mörk", + "aestheticLight": "Estetisk ljus", + "aqua": "Vatten", + "dark": "Mörk", + "dim": "Dämpa", + "forest": "Skog", + "light": "Ljus", + "night": "Natt", + "northernLights": "Norrsken" + }, + "users": "Användare", + "worldtravel": "Världsresor", + "my_tags": "Mina taggar", + "tag": "Tagg", + "language_selection": "Språk", + "support": "Support", + "calendar": "Kalender", + "admin_panel": "Administratör" + }, + "worldtravel": { + "all": "Alla", + "all_subregions": "Alla underregioner", + "clear_search": "Rensa sökning", + "completely_visited": "Fullständigt besökta", + "country_list": "Lista över länder", + "no_countries_found": "Inga länder hittades", + "not_visited": "Ej besökta", + "num_countries": "länder hittades", + "partially_visited": "Delvis besökta", + "cities": "städer", + "failed_to_mark_visit": "Det gick inte att markera besök till", + "failed_to_remove_visit": "Det gick inte att ta bort besök på", + "marked_visited": "markerad som besökt", + "no_cities_found": "Inga städer hittades", + "region_failed_visited": "Det gick inte att markera regionen som besökt", + "regions_in": "Regioner i", + "removed": "tas bort", + "view_cities": "Visa städer", + "visit_remove_failed": "Det gick inte att ta bort besöket", + "visit_to": "Besök till", + "all_regions": "Alla regioner", + "available_to_explore": "Finns att utforska", + "cities_in": "Städer i", + "clear_all": "Rensar alla", + "clear_all_filters": "Rensa alla filter", + "clear_filters": "Tydliga filter", + "complete": "Komplett", + "countries": "länder", + "country_completed": "Landets slutfört", + "filter_by": "Filtrera förbi", + "filter_by_region": "Filtrera efter region", + "hide_map": "Dölj karta", + "hide_map_labels": "Dölj kartetiketter", + "interactive_map": "Interaktiv karta", + "no_countries_found_desc": "Försök att justera dina söktermer eller filter för att hitta de länder du letar efter.", + "no_country_data_available": "Inga landsdata tillgängliga", + "no_country_data_available_desc": "Kontrollera dokumentationen för att uppdatera regiondata.", + "no_regions_found": "Inga regioner hittades", + "of": "av", + "partial": "Partiell", + "progress": "Framsteg", + "progress_and_stats": "Framsteg", + "region_completed": "Region slutförd", + "remaining": "Återstående", + "show_map": "Showkarta", + "show_map_labels": "Visa kartetiketter", + "total_cities": "Totala städer", + "total_countries": "Totala länder", + "total_regions": "Totala regioner", + "newest_first": "Nyaste första", + "oldest_first": "Äldsta först", + "unvisited_first": "Oöverträffad först", + "visited_first": "Besökt först", + "total_items": "Totala artiklar" + }, + "auth": { + "confirm_password": "Bekräfta lösenord", + "email": "E-post", + "first_name": "Förnamn", + "forgot_password": "Glömt lösenordet?", + "last_name": "Efternamn", + "login": "Logga in", + "login_error": "Det går inte att logga in med de angivna uppgifterna.", + "password": "Lösenord", + "registration_disabled": "Registreringen är för närvarande inaktiverad.", + "signup": "Registrera dig", + "username": "Användarnamn", + "public_tooltip": "Med en offentlig profil kan användare dela samlingar med dig och se din profil på användarsidan.", + "profile_picture": "Profilbild", + "public_profile": "Offentlig profil", + "new_password": "Nytt lösenord", + "or_3rd_party": "Eller logga in med en tredjepartstjänst", + "no_public_adventures": "Inga offentliga äventyr hittades", + "no_public_collections": "Inga offentliga samlingar hittades", + "user_adventures": "Användaräventyr", + "user_collections": "Användarsamlingar" + }, + "users": { + "no_users_found": "Inga användare hittades med offentliga profiler." + }, + "settings": { + "account_settings": "Användarkontoinställningar", + "confirm_new_password": "Bekräfta nytt lösenord", + "email_change": "Ändra e-post", + "new_email": "Ny e-post", + "new_password": "Nytt lösenord", + "no_email_set": "Ingen e-post inställd", + "password_change": "Ändra lösenord", + "settings_page": "Inställningar", + "update": "Uppdatera", + "update_error": "Ett fel uppstod vid uppdatering av inställningar", + "update_success": "Inställningarna har uppdaterats!", + "change_password": "Ändra lösenord", + "possible_reset": "Om e-postadressen du angav är kopplad till ett konto kommer du att få ett e-postmeddelande med instruktioner för att återställa ditt lösenord!", + "reset_password": "Återställ lösenord", + "about_this_background": "Om denna bakgrund", + "join_discord": "Gå med i Discord", + "join_discord_desc": "för att dela dina egna foton. \nLägg upp dem i", + "photo_by": "Foto av", + "current_password": "Aktuellt lösenord", + "password_change_lopout_warning": "Du kommer att loggas ut efter att du har ändrat ditt lösenord.", + "authenticator_code": "Autentiseringskod", + "copy": "Kopiera", + "disable_mfa": "Inaktivera MFA", + "email_added": "E-post har lagts till!", + "email_removed": "E-post har tagits bort!", + "email_removed_error": "Det gick inte att ta bort e-post", + "email_set_primary": "E-post har angetts som primärt!", + "email_set_primary_error": "Det gick inte att ställa in e-post som primär", + "email_verified": "E-post har verifierats!", + "email_verified_erorr_desc": "Din e-postadress kunde inte verifieras. \nFörsök igen.", + "email_verified_error": "Fel vid verifiering av e-post", + "email_verified_success": "Din e-postadress har verifierats. \nDu kan nu logga in.", + "enable_mfa": "Aktivera MFA", + "generic_error": "Ett fel uppstod när din begäran bearbetades.", + "make_primary": "Gör Primär", + "mfa_disabled": "Multifaktorautentisering har inaktiverats!", + "mfa_enabled": "Multifaktorautentisering har aktiverats!", + "mfa_not_enabled": "MFA är inte aktiverat", + "mfa_page_title": "Multifaktorautentisering", + "no_emai_set": "Ingen e-post inställd", + "not_verified": "Ej verifierad", + "primary": "Primär", + "recovery_codes": "Återställningskoder", + "recovery_codes_desc": "Det här är dina återställningskoder. \nHåll dem säkra. \nDu kommer inte att kunna se dem igen.", + "reset_session_error": "Logga ut och in igen för att uppdatera din session och försök igen.", + "verified": "Verifierad", + "verify": "Kontrollera", + "verify_email_error": "Fel vid verifiering av e-post. \nFörsök igen om några minuter.", + "verify_email_success": "E-postverifiering har skickats!", + "documentation_link": "Dokumentationslänk", + "launch_account_connections": "Starta kontoanslutningar", + "launch_administration_panel": "Starta administrationspanelen", + "no_verified_email_warning": "Du måste ha en verifierad e-postadress för att aktivera tvåfaktorsautentisering.", + "social_auth_desc": "Aktivera eller inaktivera sociala och OIDC-autentiseringsleverantörer för ditt konto. \nDessa anslutningar gör att du kan logga in med leverantörer av autentiseringsidentitetsidentitet som är värd för dig som Authentik eller tredjepartsleverantörer som GitHub.", + "social_auth_desc_2": "Dessa inställningar hanteras i AdventureLog-servern och måste aktiveras manuellt av administratören.", + "add_email": "Lägg till e-post", + "password_disable_warning": "För närvarande är lösenordsautentisering inaktiverad. \nLogga in via en social eller OIDC -leverantör krävs.", + "password_disabled": "Lösenordsautentisering inaktiverad", + "password_disabled_error": "Fel Inaktivera lösenordsautentisering. \nSe till att en social eller OIDC -leverantör är länkad till ditt konto.", + "password_enabled": "Lösenordsautentisering aktiverad", + "password_enabled_error": "Fel som aktiverar lösenordsautentisering.", + "access_restricted": "Tillgång begränsad", + "access_restricted_desc": "Yadministrativa funktioner är endast tillgängliga för personal.", + "add_new_email": "Lägg till nytt e -postmeddelande", + "add_new_email_address": "Lägg till ny e -postadress", + "admin": "Administration", + "admin_panel_desc": "Åtkomst till hela administrationsgränssnittet", + "administration": "Administration", + "administration_desc": "Administrativa verktyg och inställningar", + "advanced": "Avancerad", + "advanced_settings": "Avancerade inställningar", + "advanced_settings_desc": "Avancerade konfigurations- och utvecklingsverktyg", + "all_rights_reserved": "Alla rättigheter reserverade.", + "app_version": "Appversion", + "connected": "Ansluten", + "debug_information": "Felsökningsinformation", + "disabled": "Funktionshindrad", + "disconnected": "Osammanhängande", + "email_management": "E -posthantering", + "email_management_desc": "Hantera dina e -postadresser och verifieringsstatus", + "emails": "E -postmeddelanden", + "enabled": "Aktiverad", + "enter_current_password": "Ange aktuellt lösenord", + "enter_first_name": "Ange ditt förnamn", + "enter_last_name": "Ange ditt efternamn", + "enter_new_email": "Ange en ny e -postadress", + "enter_new_password": "Ange ett nytt lösenord", + "enter_username": "Ange ditt användarnamn", + "integrations": "Integrationer", + "integrations_desc": "Anslut externa tjänster för att förbättra din upplevelse", + "license": "Licens", + "mfa_desc": "Lägg till ett extra lager av säkerhet till ditt konto", + "mfa_is_enabled": "MFA är aktiverad", + "pass_change_desc": "Uppdatera ditt kontolösenord för bättre säkerhet", + "password_auth": "Lösenordsautentisering", + "password_login_disabled": "Lösenordsinloggning inaktiverad", + "password_login_enabled": "Lösenordsinloggning aktiverad", + "profile_info": "Profilinformation", + "profile_info_desc": "Uppdatera dina personliga uppgifter och profilbild", + "public_profile_desc": "Gör din profil synlig för andra användare", + "quick_actions": "Snabbåtgärder", + "region_updates": "Regionuppdateringar", + "region_updates_desc": "Uppdatera besökta regioner och städer", + "regular_user": "Vanlig användare", + "security": "Säkerhet", + "settings_menu": "Inställningsmeny", + "social_auth": "Social autentisering", + "social_auth_desc_1": "Hantera sociala inloggningsalternativ och lösenordsinställningar", + "social_auth_setup": "Social autentiseringsinställning", + "staff_status": "Personalstatus", + "staff_user": "Personalanvändare", + "invalid_credentials": "Ogiltiga referenser" + }, + "checklist": { + "checklist_delete_error": "Ett fel uppstod vid borttagning av checklista", + "checklist_deleted": "Checklistan har raderats!", + "checklist_editor": "Redigerare för checklistor", + "checklist_public": "Den här checklistan är offentlig eftersom den finns i en offentlig samling.", + "item": "Punkt", + "item_already_exists": "Listobjektet finns redan", + "item_cannot_be_empty": "Listobjektet får inte vara tomt", + "items": "Punkter", + "new_item": "Nytt föremål", + "new_checklist": "Ny checklista" + }, + "collection": { + "collection_created": "Samlingen har skapats!", + "collection_edit_success": "Samlingen har redigerats!", + "create": "Skapa", + "error_creating_collection": "Det gick inte att skapa samlingen", + "error_editing_collection": "Ett fel uppstod vid redigering av samling", + "new_collection": "Ny samling", + "public_collection": "Offentlig samling", + "manage_collections": "Hantera samlingar", + "archived_appear_here": "Arkiverade samlingar kommer att visas här.", + "create_first": "Skapa din första samling för att organisera dina äventyr och minnen.", + "make_sure_public": "Se till att din profil är offentlig så att andra kan dela med dig.", + "no_archived_collections": "Inga arkiverade samlingar.", + "no_collections_yet": "Inga samlingar än", + "no_shared_collections": "Inga delade samlingar.", + "shared_collections": "Delade samlingar", + "available": "Tillgänglig", + "linked": "I samband med", + "try_different_search": "Prova en annan sökning eller filter." + }, + "notes": { + "add_a_link": "Lägg till en länk", + "content": "Innehåll", + "editing_note": "Redigerar anteckning", + "failed_to_save": "Det gick inte att spara anteckningen", + "note_delete_error": "Det gick inte att ta bort anteckningen", + "note_deleted": "Anteckningen har raderats!", + "note_editor": "Redigerare för anteckningar", + "note_public": "Den här anteckningen är offentlig eftersom den finns i en offentlig samling.", + "open": "Öppna", + "save": "Spara", + "invalid_url": "Ogiltig URL", + "note_viewer": "Note Viewer" + }, + "transportation": { + "edit": "Redigera", + "edit_transportation": "Redigera transport", + "flight_number": "Flygnummer", + "from_location": "Från plats", + "modes": { + "bike": "Cykel", + "boat": "Båt", + "bus": "Buss", + "car": "Bil", + "other": "Andra", + "plane": "Flygplan", + "train": "Tåg", + "walking": "Gående" + }, + "new_transportation": "Nya transporter", + "to_location": "Till Plats", + "transportation_delete_error": "Det gick inte att ta bort transport", + "transportation_deleted": "Transporten har raderats!", + "type": "Typ", + "ending_airport_desc": "Ange slut på flygplatskoden (t.ex. LAX)", + "fetch_location_information": "Hämta platsinformation", + "starting_airport_desc": "Ange start av flygplatskoden (t.ex. JFK)" + }, + "search": { + "adventurelog_results": "AdventureLog-resultat", + "online_results": "Online resultat", + "public_adventures": "Offentliga äventyr" + }, + "map": { + "add_adventure": "Lägg till nytt äventyr", + "add_adventure_at_marker": "Lägg till nytt äventyr vid Marker", + "adventure_map": "Äventyrskarta", + "clear_marker": "Rensa markör", + "map_options": "Kartalternativ", + "show_visited_regions": "Visa besökta regioner", + "view_details": "Visa detaljer", + "adventure_stats": "Äventyrsstatistik", + "adventures_shown": "Äventyr visas", + "completion": "Komplettering", + "display_options": "Visningsalternativ", + "map_controls": "Kartkontroller", + "marker_placed_on_map": "Markör placerad på kartan", + "place_marker_desc": "Klicka på kartan för att placera en markör, eller lägg till ett äventyr utan plats.", + "regions": "Regioner" + }, + "languages": {}, + "share": { + "no_users_shared": "Inga användare delas med", + "not_shared_with": "Inte delad med", + "share_desc": "Dela den här samlingen med andra användare.", + "shared": "Delad", + "shared_with": "Delas med", + "unshared": "Odelat", + "with": "med", + "go_to_settings": "Gå till inställningar", + "no_shared_found": "Inga samlingar hittades som delas med dig.", + "set_public": "För att tillåta användare att dela med dig måste du ha en offentlig profil." + }, + "profile": { + "member_since": "Medlem sedan", + "user_stats": "Användarstatistik", + "visited_countries": "Besökta länder", + "visited_regions": "Besökta regioner", + "visited_cities": "Besökte städer", + "discovered": "upptäckt", + "explored": "utforskad", + "no_shared_adventures": "Den här användaren har inte delat några offentliga äventyr än.", + "no_shared_collections": "Den här användaren har inte delat några offentliga samlingar än.", + "planned_trips": "Planerade resor", + "public_adventure_experiences": "Allmänt äventyrsupplevelser", + "travel_statistics": "Resestatistik", + "your_journey_at_a_glance": "Din äventyrsresa med en överblick" + }, + "categories": { + "category_name": "Kategorinamn", + "edit_category": "Redigera kategori", + "icon": "Ikon", + "manage_categories": "Hantera kategorier", + "no_categories_found": "Inga kategorier hittades.", + "select_category": "Välj Kategori", + "update_after_refresh": "Äventyrskorten kommer att uppdateras när du uppdaterar sidan.", + "add_new_category": "Lägg till en ny kategori", + "name_required": "Kategorinamn krävs" + }, + "dashboard": { + "add_some": "Varför inte börja planera ditt nästa äventyr? \nDu kan lägga till ett nytt äventyr genom att klicka på knappen nedan.", + "countries_visited": "Besökta länder", + "no_recent_adventures": "Inga nya äventyr?", + "recent_adventures": "Senaste äventyr", + "total_adventures": "Totala äventyr", + "total_visited_regions": "Totalt antal besökta regioner", + "welcome_back": "Välkommen tillbaka", + "total_visited_cities": "Totalt antal besökta städer", + "document_some_adventures": "Börja dokumentera dina resor och bygga din personliga äventyrskarta!", + "view_all": "Se alla", + "welcome_text_1": "Du har varit på", + "welcome_text_2": "Äventyr hittills", + "welcome_text_3": "Fortsätt utforska och dokumentera dina resor!" + }, + "immich": { + "api_key": "Immich API-nyckel", + "api_note": "Obs: detta måste vara URL:en till Immich API-servern så den slutar troligen med /api om du inte har en anpassad konfiguration.", + "disable": "Inaktivera", + "immich": "Immich", + "immich_disabled": "Immich-integrationen inaktiverades framgångsrikt!", + "immich_error": "Fel vid uppdatering av Immich-integration", + "integration_fetch_error": "Fel vid hämtning av data från Immich-integrationen", + "load_more": "Ladda mer", + "no_items_found": "Inga föremål hittades", + "server_url": "Immich Server URL", + "update_integration": "Uppdatera integration", + "localhost_note": "Obs: localhost kommer sannolikt inte att fungera om du inte har konfigurerat docker-nätverk i enlighet med detta. \nDet rekommenderas att använda serverns IP-adress eller domännamnet.", + "api_key_placeholder": "Ange din immich API -nyckel", + "enable_integration": "Aktivera integration", + "immich_integration_desc": "Anslut din immich fotohanteringsserver", + "need_help": "Behöver du hjälp med att ställa in detta? \nKolla in", + "connection_error": "Fel som ansluter till Imchich Server", + "copy_locally": "Kopiera bilder lokalt", + "copy_locally_desc": "Kopiera bilder till servern för offlineåtkomst. \nAnvänder mer diskutrymme.", + "error_saving_image": "Felbesparande bild", + "integration_already_exists": "En immich integration finns redan. \nDu kan bara ha en integration åt gången.", + "integration_not_found": "Imkik integration hittades inte. \nSkapa en ny integration.", + "network_error": "Nätverksfel vid anslutning till den immich servern. \nKontrollera din anslutning och försök igen.", + "validation_error": "Ett fel inträffade vid validering av den immich integrationen. \nKontrollera din server -URL- och API -nyckel." + }, + "recomendations": { + "recommendation": "Rekommendation", + "recommendations": "Rekommendationer", + "adventure_recommendations": "Äventyrsrekommendationer", + "food": "Mat", + "tourism": "Turism" + }, + "lodging": { + "apartment": "Lägenhet", + "bnb": "Säng och frukost", + "cabin": "Stuga", + "campground": "Campingplats", + "hostel": "Vandrarhem", + "hotel": "Hotell", + "house": "Hus", + "motel": "Motell", + "new_lodging": "Inställning", + "other": "Andra", + "reservation_number": "Bokningsnummer", + "resort": "Tillflykt", + "villa": "Villa", + "edit": "Redigera", + "edit_lodging": "Redigera logi" + }, + "google_maps": { + "google_maps_integration_desc": "Anslut ditt Google Maps-konto för att få sökresultat och rekommendationer av hög kvalitet." + }, + "calendar": { + "all_categories": "Alla kategorier", + "all_day_event": "Hela dagen", + "calendar_overview": "Kalenderöversikt", + "categories": "Kategorier", + "day": "Dag", + "events_scheduled": "Händelser planerade", + "filter_by_category": "Filter efter kategori", + "filtered_results": "Filtrerade resultat", + "month": "Månad", + "today": "I dag", + "total_events": "Totala evenemang", + "week": "Vecka" + } +} diff --git a/frontend/src/locales/zh.json b/frontend/src/locales/zh.json new file mode 100644 index 0000000..55a98ce --- /dev/null +++ b/frontend/src/locales/zh.json @@ -0,0 +1,711 @@ +{ + "navbar": { + "about": "关于冒险日志", + "adventures": "冒险", + "collections": "收藏", + "documentation": "文档", + "greeting": "你好", + "logout": "退出", + "map": "地图", + "my_adventures": "我的冒险", + "profile": "轮廓", + "search": "搜索", + "settings": "设置", + "shared_with_me": "与我分享", + "theme_selection": "主题选择", + "themes": { + "aestheticDark": "美学黑暗", + "aestheticLight": "美学之光", + "aqua": "水", + "dark": "黑暗的", + "dim": "暗淡", + "forest": "森林", + "light": "光", + "night": "夜晚", + "northernLights": "北极光" + }, + "users": "用户", + "worldtravel": "环球旅行", + "my_tags": "我的标签", + "tag": "标签", + "language_selection": "语言", + "support": "支持", + "calendar": "日历", + "admin_panel": "管理面板" + }, + "about": { + "about": "关于", + "license": "根据 GPL-3.0 许可证授权。", + "message": "在美国用 ❤️ 制作。", + "nominatim_1": "位置搜索和地理编码由", + "nominatim_2": "提供。他们的数据根据ODbL许可证授权。", + "oss_attributions": "开源声明", + "other_attributions": "其他声明可以在 README 文件中找到。", + "source_code": "源代码", + "close": "关闭", + "generic_attributions": "登录到AdventureLog以查看启用集成和服务的归因。" + }, + "home": { + "desc_1": "轻松发现、规划和探索", + "desc_2": "AdventureLog 旨在简化您的旅程,为您提供工具和资源来计划、打包和导航您的下一次难忘的冒险。", + "feature_1": "旅行日志", + "feature_1_desc": "通过个性化的旅行日志记录您的冒险经历,并与朋友和家人分享您的经历。", + "feature_2": "旅行计划", + "feature_2_desc": "轻松创建自定义行程并获取行程的每日详细信息。", + "feature_3": "旅游地图", + "feature_3_desc": "使用交互式地图查看您在世界各地的旅行并探索新的目的地。", + "go_to": "前往冒险日志", + "hero_1": "探索世界上最惊险的冒险", + "hero_2": "使用 AdventureLog 发现并计划您的下一次冒险。\n探索令人惊叹的目的地、创建定制行程并随时随地保持联系。", + "key_features": "主要特点", + "explore_world": "探索世界", + "latest_travel_experiences": "您的最新旅行经历", + "of_world": "世界", + "start_your_journey": "开始您的旅程" + }, + "adventures": { + "collection_remove_success": "成功从合集中移除冒险!", + "collection_remove_error": "从合集中移除冒险时出错", + "collection_link_success": "成功将冒险链接到合集!", + "no_image_found": "未找到图片", + "collection_link_error": "链接冒险到合集时出错", + "adventure_delete_confirm": "您确定要删除此冒险吗?此操作无法撤销。", + "checklist_delete_confirm": "您确定要删除此检查清单吗?此操作无法撤销。", + "note_delete_confirm": "您确定要删除此笔记吗?此操作无法撤销。", + "transportation_delete_confirm": "您确定要删除此交通工具吗?此操作无法撤销。", + "lodging_delete_confirm": "您确定要删除此住宿地点吗?此操作无法撤销。", + "delete_checklist": "删除检查清单", + "delete_note": "删除笔记", + "delete_transportation": "删除交通工具", + "delete_lodging": "删除住宿", + "open_details": "打开详情", + "edit_adventure": "编辑冒险", + "remove_from_collection": "从合集中移除", + "add_to_collection": "添加到合集", + "delete": "删除", + "not_found": "未找到冒险", + "not_found_desc": "未找到你要查找的冒险。请尝试其他冒险或稍后再试。", + "homepage": "主页", + "collection": "合集", + "longitude": "经度", + "latitude": "纬度", + "visit": "访问", + "visits": "访问次数", + "create_new": "创建新的...", + "adventure": "冒险", + "count_txt": "与您的搜索匹配的结果", + "sort": "排序", + "order_by": "排序依据", + "order_direction": "排序方向", + "ascending": "升序", + "descending": "降序", + "updated": "更新", + "name": "名称", + "date": "日期", + "activity_types": "活动类型", + "tags": "标签", + "add_a_tag": "添加标签", + "date_constrain": "限制在合集日期内", + "rating": "评分", + "my_images": "我的图片", + "no_images": "没有图片", + "share_adventure": "分享此冒险!", + "copy_link": "复制链接", + "image": "图片", + "upload_image": "上传图片", + "url": "网址", + "fetch_image": "获取图片", + "wikipedia": "维基百科", + "add_notes": "添加笔记", + "warning": "警告", + "my_adventures": "我的冒险", + "no_linkable_adventures": "未找到可以链接到此合集的冒险。", + "add": "添加", + "save_next": "保存并继续", + "end_date": "结束日期", + "start_date": "开始日期", + "remove": "移除", + "location": "位置", + "search_for_location": "搜索位置", + "clear_map": "清除地图", + "search_results": "搜索结果", + "no_results": "未找到结果", + "wiki_desc": "从与冒险名称匹配的维基百科文章中提取摘录。", + "attachments": "附件", + "attachment": "附件", + "images": "图片", + "generate_desc": "生成描述", + "public_adventure": "公开冒险", + "location_information": "位置信息", + "link": "链接", + "links": "链接", + "description": "描述", + "sources": "来源", + "collection_adventures": "包含合集中的冒险", + "filter": "过滤", + "category_filter": "类别过滤器", + "category": "类别", + "clear": "清除", + "my_collections": "我的合集", + "open_filters": "打开过滤器", + "archived_collections": "已归档合集", + "share": "分享", + "private": "私密", + "public": "公开", + "archived": "已归档", + "edit_collection": "编辑合集", + "unarchive": "取消归档", + "archive": "归档", + "no_collections_found": "未找到可添加此冒险的合集。", + "not_visited": "未访问", + "archived_collection_message": "成功归档合集!", + "unarchived_collection_message": "成功取消归档合集!", + "delete_collection_success": "成功删除合集!", + "cancel": "取消", + "delete_collection": "删除合集", + "delete_adventure": "删除冒险", + "adventure_delete_success": "成功删除冒险!", + "visited": "已访问", + "planned": "计划中", + "duration": "持续时间", + "all": "全部", + "image_removed_success": "成功移除图片!", + "image_removed_error": "移除图片时出错", + "no_image_url": "在该网址找不到图片。", + "image_upload_success": "图片上传成功!", + "image_upload_error": "上传图片时出错", + "dates": "日期", + "wiki_image_error": "从维基百科获取图片时出错", + "start_before_end_error": "开始日期必须在结束日期之前", + "actions": "操作", + "see_adventures": "查看冒险", + "image_fetch_failed": "获取图片失败", + "no_location": "请输入位置", + "no_description_found": "未找到描述", + "adventure_created": "冒险已创建", + "adventure_create_error": "创建冒险失败", + "lodging": "住宿", + "create_adventure": "创建冒险", + "adventure_updated": "冒险已更新", + "adventure_update_error": "更新冒险失败", + "set_to_pin": "设置为图钉", + "category_fetch_error": "获取类别时出错", + "new_adventure": "新冒险", + "basic_information": "基本信息", + "no_adventures_to_recommendations": "未找到冒险。添加至少一个冒险以获得推荐。", + "display_name": "显示名称", + "adventure_not_found": "没找到任何冒险。使用右下角的加号按钮添加一些,或尝试更改筛选条件!", + "no_adventures_found": "未找到冒险", + "mark_visited": "标记为已访问", + "error_updating_regions": "更新地区时出错", + "regions_updated": "地区已更新", + "cities_updated": "城市已更新", + "visited_region_check": "已访问地区检查", + "visited_region_check_desc": "通过选择此项,服务器将检查您所有已访问的冒险,并将它们所在的地区标记为已访问。", + "update_visited_regions": "更新已访问地区", + "update_visited_regions_disclaimer": "根据您访问的冒险数量,这可能需要一些时间。", + "link_new": "链接新...", + "add_new": "添加新...", + "transportation": "交通", + "note": "笔记", + "checklist": "检查清单", + "collection_archived": "此合集已归档。", + "visit_link": "访问链接", + "collection_completed": "您已完成此合集!", + "collection_stats": "合集统计", + "keep_exploring": "继续探索!", + "linked_adventures": "链接的冒险", + "notes": "笔记", + "checklists": "检查清单", + "transportations": "交通方式", + "adventure_calendar": "冒险日历", + "day": "天", + "itineary_by_date": "行程(按日期", + "nothing_planned": "这一天没有计划。享受旅程!", + "copied_to_clipboard": "已复制到剪贴板!", + "copy_failed": "复制失败", + "show": "显示", + "hide": "隐藏", + "clear_location": "清除位置", + "starting_airport": "起始机场", + "ending_airport": "目的地机场", + "no_location_found": "未找到位置", + "from": "从", + "to": "到", + "will_be_marked": "将在冒险保存后标记为已访问。", + "start": "开始", + "end": "结束", + "emoji_picker": "表情符号选择器", + "download_calendar": "下载日历", + "date_information": "日期信息", + "flight_information": "航班信息", + "out_of_range": "不在行程日期范围内", + "preview": "预览", + "finding_recommendations": "发现你下一次冒险的隐藏宝藏", + "location_details": "位置详情", + "city": "城市", + "region": "地区", + "md_instructions": "可以使用 Markdown 在此输入您的笔记。", + "days": "天", + "attachment_upload_success": "附件上传成功!", + "attachment_upload_error": "上传附件时出错", + "upload": "上传", + "attachment_delete_success": "附件删除成功!", + "attachment_update_success": "附件更新成功!", + "attachment_name": "附件名称", + "gpx_tip": "上传 GPX 文件到附件以便在地图上查看它们!", + "attachment_update_error": "更新附件时出错", + "activities": {}, + "lodging_information": "住宿信息", + "price": "价格", + "reservation_number": "预订号", + "open_in_maps": "在地图上打开", + "all_day": "整天", + "collection_no_start_end_date": "在集合页面中添加开始日期和结束日期将在“收集”页面中解锁行程计划功能。", + "date_itinerary": "日期行程", + "no_ordered_items": "将带有日期的项目添加到集合中,以便在此处查看它们。", + "ordered_itinerary": "订购了行程", + "invalid_date_range": "无效的日期范围", + "timezone": "时区", + "no_visits": "没有访问", + "arrival_timezone": "到达时区", + "departure_timezone": "离开时区", + "arrival_date": "到达日期", + "departure_date": "出发日期", + "coordinates": "坐标", + "copy_coordinates": "复制坐标", + "sun_times": "阳光时代", + "sunrise": "日出", + "sunset": "日落", + "timed": "时间", + "distance": "距离", + "all_linked_items": "所有链接的项目", + "itinerary": "行程", + "joined": "加入", + "view_profile": "查看个人资料", + "share_collection": "分享这个收藏!", + "filters_and_sort": "过滤器", + "filters_and_stats": "过滤器", + "no_adventures_message": "开始记录您的冒险经历,并计划新的冒险。\n每个旅程都有一个值得讲述的故事。", + "travel_progress": "旅行进度", + "adventures_available": "冒险可用", + "all_adventures_already_linked": "所有冒险已经链接到此集合。", + "collections_linked": "链接的集合", + "create_collection_first": "首先创建一个集合来组织您的冒险和回忆。", + "delete_collection_warning": "您确定要删除此系列吗?\n该动作不能撤消。", + "done": "完毕", + "loading_adventures": "加载冒险...", + "name_location": "名称,位置", + "collection_contents": "收集内容", + "check_in": "报到", + "check_out": "查看" + }, + "auth": { + "forgot_password": "忘记密码?", + "login": "登录", + "login_error": "无法使用提供的凭据登录。", + "password": "密码", + "signup": "注册", + "username": "用户名", + "confirm_password": "确认密码", + "email": "电子邮件", + "first_name": "名", + "last_name": "姓", + "registration_disabled": "注册当前已禁用。", + "profile_picture": "头像", + "public_profile": "公开资料", + "public_tooltip": "通过公开个人资料,用户可以与您共享合集,并在用户页面查看您的资料。", + "new_password": "新密码(6个字符以上)", + "or_3rd_party": "或使用第三方服务登录", + "no_public_adventures": "未找到公开冒险", + "no_public_collections": "未找到公开合集", + "user_adventures": "用户冒险", + "user_collections": "用户合集" + }, + "worldtravel": { + "all": "全部", + "all_subregions": "所有次区域", + "clear_search": "清除搜索", + "completely_visited": "已完全访问", + "country_list": "国家列表", + "no_countries_found": "没有找到国家", + "not_visited": "未访问过", + "num_countries": "找到的国家", + "partially_visited": "部分访问", + "cities": "城市", + "failed_to_mark_visit": "无法标记访问", + "failed_to_remove_visit": "无法删除对的访问", + "marked_visited": "标记为已访问", + "no_cities_found": "没有找到城市", + "region_failed_visited": "无法将区域标记为已访问", + "regions_in": "地区位于", + "removed": "已删除", + "view_cities": "查看城市", + "visit_remove_failed": "删除访问失败", + "visit_to": "参观", + "all_regions": "所有地区", + "available_to_explore": "可供探索", + "cities_in": "城市", + "clear_all": "清除全部", + "clear_all_filters": "清除所有过滤器", + "clear_filters": "清除过滤器", + "complete": "完全的", + "countries": "国家", + "country_completed": "国家完成", + "filter_by": "过滤", + "filter_by_region": "按区域过滤", + "hide_map": "隐藏地图", + "hide_map_labels": "隐藏地图标签", + "interactive_map": "交互式地图", + "no_countries_found_desc": "尝试调整搜索词或过滤器,以找到所需的国家。", + "no_country_data_available": "没有国家数据可用", + "no_country_data_available_desc": "请检查文档以获取更新区域数据。", + "no_regions_found": "找不到地区", + "of": "的", + "partial": "部分的", + "progress": "进步", + "progress_and_stats": "进步", + "region_completed": "区域完成", + "remaining": "其余的", + "total_regions": "总区域", + "show_map": "显示地图", + "show_map_labels": "显示地图标签", + "total_cities": "总城市", + "total_countries": "总国家", + "newest_first": "最新的第一", + "oldest_first": "最古老的第一", + "unvisited_first": "首先未访问", + "visited_first": "首先访问", + "total_items": "总项目" + }, + "users": { + "no_users_found": "未找到已公开个人资料的用户。" + }, + "settings": { + "account_settings": "用户账户设置", + "confirm_new_password": "确认新密码", + "email_change": "更改邮箱", + "new_email": "新邮箱", + "new_password": "新密码", + "no_email_set": "没有设置邮箱", + "password_change": "更改密码", + "settings_page": "设置页面", + "update": "更新", + "update_error": "更新设置时出错", + "update_success": "设置更新成功!", + "change_password": "更改密码", + "possible_reset": "若提供的邮箱与账户关联,您将收到包含重置说明的邮件!", + "reset_password": "重置密码", + "about_this_background": "关于此背景", + "join_discord": "加入 Discord", + "join_discord_desc": "分享您的照片,请发布到 #travel-share 频道。", + "photo_by": "摄影師:", + "current_password": "当前密码", + "password_change_lopout_warning": "修改密码后需重新登录。", + "authenticator_code": "验证码", + "copy": "复制", + "disable_mfa": "禁用 MFA", + "email_added": "邮箱添加成功!", + "email_removed": "邮箱删除成功!", + "email_removed_error": "删除邮箱时出错", + "email_set_primary": "已设为主邮箱", + "email_set_primary_error": "设置主邮箱时出错", + "email_verified": "邮箱验证成功!", + "email_verified_erorr_desc": "无法验证您的邮箱。\n请再试一次。", + "email_verified_error": "验证邮箱时出错", + "email_verified_success": "您的邮箱已被验证。\n您现在可以登录了。", + "enable_mfa": "启用 MFA", + "generic_error": "处理请求时发生错误。", + "make_primary": "设为主邮箱", + "mfa_disabled": "多重身份验证已成功禁用!", + "mfa_enabled": "多重身份验证启用成功!", + "mfa_not_enabled": "MFA 未启用", + "mfa_page_title": "多重身份验证", + "no_emai_set": "没有设置邮箱", + "not_verified": "未验证", + "primary": "主邮箱", + "recovery_codes": "恢复代码", + "recovery_codes_desc": "请妥善保存这些恢复码,后续将无法再次查看。", + "reset_session_error": "请重新登录以刷新会话后重试。", + "verified": "已验证", + "verify": "验证", + "verify_email_error": "验证邮箱时出错。\n几分钟后重试。", + "verify_email_success": "邮箱验证发送成功!", + "documentation_link": "文档链接", + "launch_account_connections": "管理账户连接", + "launch_administration_panel": "进入管理面板", + "no_verified_email_warning": "您必须拥有已验证的邮箱地址才能启用多重身份验证。", + "social_auth_desc": "为您的帐户启用或禁用社交和 OIDC 身份验证提供商。\n这些连接允许您使用自托管身份验证身份提供商(如 Authentik)或第三方提供商(如 GitHub)登录。", + "social_auth_desc_2": "这些设置在 AdventureLog 服务器中进行管理,并且必须由管理员手动启用。", + "add_email": "添加邮箱", + "password_disable_warning": "当前,密码身份验证已禁用。\n需要通过社交或OIDC提供商登录。", + "password_disabled": "密码身份验证禁用", + "password_disabled_error": "错误禁用密码身份验证。\n确保将社交或OIDC提供商链接到您的帐户。", + "password_enabled": "启用密码身份验证", + "password_enabled_error": "启用密码身份验证的错误。", + "access_restricted": "访问受限制", + "access_restricted_desc": "Yadministrative功能仅适用于工作人员。", + "add_new_email": "添加新电子邮件", + "add_new_email_address": "添加新的电子邮件地址", + "admin": "行政", + "admin_panel_desc": "访问完整的管理接口", + "administration": "行政", + "administration_desc": "管理工具和设置", + "advanced": "先进的", + "advanced_settings": "高级设置", + "advanced_settings_desc": "高级配置和开发工具", + "all_rights_reserved": "版权所有。", + "app_version": "应用版本", + "connected": "连接", + "debug_information": "调试信息", + "disabled": "禁用", + "disconnected": "断开连接", + "email_management": "电子邮件管理", + "email_management_desc": "管理您的电子邮件地址和验证状态", + "emails": "电子邮件", + "enabled": "启用", + "enter_current_password": "输入当前密码", + "enter_first_name": "输入您的名字", + "enter_last_name": "输入您的姓氏", + "enter_new_email": "输入新的电子邮件地址", + "enter_new_password": "输入新密码", + "enter_username": "输入您的用户名", + "integrations": "集成", + "integrations_desc": "连接外部服务以增强您的体验", + "license": "执照", + "mfa_desc": "在您的帐户中添加额外的安全性", + "mfa_is_enabled": "MFA已启用", + "pass_change_desc": "更新您的帐户密码以获得更好的安全性", + "password_auth": "密码身份验证", + "password_login_disabled": "密码登录禁用", + "password_login_enabled": "启用密码登录", + "profile_info": "个人资料信息", + "profile_info_desc": "更新您的个人详细信息和个人资料图片", + "public_profile_desc": "让其他用户可以看到您的个人资料", + "regular_user": "常规用户", + "security": "安全", + "settings_menu": "设置菜单", + "social_auth": "社会身份验证", + "social_auth_desc_1": "管理社交登录选项和密码设置", + "social_auth_setup": "社会身份验证设置", + "staff_status": "员工身份", + "staff_user": "员工用户", + "quick_actions": "快速动作", + "region_updates": "区域更新", + "region_updates_desc": "更新访问了地区和城市", + "invalid_credentials": "无效的凭据" + }, + "checklist": { + "checklist_delete_error": "删除清单时出错", + "checklist_deleted": "清单删除成功!", + "checklist_editor": "清单编辑器", + "checklist_public": "此清单因位于公开合集中而自动公开。", + "item": "项目", + "item_already_exists": "项目已存在", + "item_cannot_be_empty": "项目内容不能为空", + "items": "项目", + "new_item": "新项目", + "new_checklist": "新建清单" + }, + "collection": { + "collection_created": "合集创建成功!", + "collection_edit_success": "合集编辑成功!", + "create": "创建", + "error_creating_collection": "创建合集时出错", + "error_editing_collection": "编辑合集时出错", + "new_collection": "新建合集", + "public_collection": "公开合集", + "manage_collections": "管理收藏", + "archived_appear_here": "存档的收藏将出现在这里。", + "create_first": "创建您的第一个集合来组织您的冒险和回忆。", + "make_sure_public": "确保您的个人资料是公开的,以便其他人可以与您分享。", + "no_archived_collections": "没有存档的收藏。", + "no_collections_yet": "还没有收藏", + "no_shared_collections": "没有共享的收藏。", + "shared_collections": "共享收藏", + "available": "可用的", + "linked": "链接", + "try_different_search": "尝试其他搜索或过滤器。" + }, + "notes": { + "add_a_link": "添加链接", + "content": "内容", + "editing_note": "编辑注释", + "failed_to_save": "保存笔记失败", + "note_delete_error": "删除笔记时出错", + "note_deleted": "备注删除成功!", + "note_editor": "笔记编辑器", + "note_public": "此笔记因位于公开合集中而自动公开。", + "open": "打开", + "save": "保存", + "invalid_url": "无效网址", + "note_viewer": "笔记查看器" + }, + "transportation": { + "edit": "编辑", + "edit_transportation": "编辑交通信息", + "flight_number": "航班号", + "from_location": "出发地", + "modes": { + "bike": "自行车", + "boat": "船", + "bus": "巴士/公车", + "car": "汽车", + "other": "其他", + "plane": "飞机", + "train": "火车/动车/高铁", + "walking": "步行" + }, + "new_transportation": "新交通信息", + "to_location": "目的地", + "transportation_delete_error": "删除交通信息时出错", + "transportation_deleted": "交通信息删除成功!", + "type": "类型", + "ending_airport_desc": "输入到达机场代码(如:LAX)", + "fetch_location_information": "获取位置信息", + "starting_airport_desc": "输入出发机场代码(如:JFK)" + }, + "search": { + "adventurelog_results": "AdventureLog 结果", + "online_results": "在线结果", + "public_adventures": "已公开的冒险" + }, + "map": { + "add_adventure": "添加新冒险", + "add_adventure_at_marker": "在标记处添加新冒险", + "adventure_map": "冒险地图", + "clear_marker": "清除标记", + "map_options": "地图选项", + "show_visited_regions": "显示访问过的地区", + "view_details": "查看详情", + "adventure_stats": "冒险统计", + "adventures_shown": "展示的冒险", + "completion": "完成", + "display_options": "显示选项", + "map_controls": "地图控件", + "marker_placed_on_map": "放置在地图上的标记", + "place_marker_desc": "单击地图以放置标记,或在没有位置的情况下添加冒险。", + "regions": "地区" + }, + "languages": {}, + "share": { + "no_users_shared": "没有与之共享的用户", + "not_shared_with": "不与共享", + "share_desc": "与其他用户分享此合集。", + "shared": "共享", + "shared_with": "共享对象", + "unshared": "未共享", + "with": "和", + "go_to_settings": "前往设置", + "no_shared_found": "未找到与您共享的合集。", + "set_public": "为了允许用户与您共享,您需要将您的个人资料设置为公开。" + }, + "profile": { + "member_since": "会员自", + "user_stats": "用户统计", + "visited_countries": "访问过的国家", + "visited_regions": "访问过的地区", + "visited_cities": "访问过的城市", + "discovered": "发现", + "explored": "探索", + "no_shared_adventures": "该用户尚未分享任何公共冒险。", + "no_shared_collections": "该用户尚未共享任何公共收藏。", + "planned_trips": "计划的旅行", + "public_adventure_experiences": "公共冒险经验", + "travel_statistics": "旅行统计", + "your_journey_at_a_glance": "您一眼的冒险之旅" + }, + "categories": { + "category_name": "类别名称", + "edit_category": "编辑类别", + "icon": "图标", + "manage_categories": "管理类别", + "no_categories_found": "未找到类别。", + "select_category": "选择类别", + "update_after_refresh": "刷新页面后,冒险卡将更新。", + "add_new_category": "添加新类别", + "name_required": "需要类别名称" + }, + "dashboard": { + "add_some": "为什么不开始计划你的下一次冒险呢?\n您可以通过单击下面的按钮添加新的冒险。", + "countries_visited": "已访问国家数量", + "no_recent_adventures": "最近不去冒险吗?", + "recent_adventures": "最近的冒险", + "total_adventures": "冒险总数", + "total_visited_regions": "已访问地区数量", + "welcome_back": "欢迎回来", + "total_visited_cities": "已访问城市数量", + "document_some_adventures": "开始记录您的旅行并构建您的个人冒险地图!", + "view_all": "查看全部", + "welcome_text_1": "你去过", + "welcome_text_2": "到目前为止的冒险", + "welcome_text_3": "继续探索和记录您的旅行!" + }, + "immich": { + "api_key": "Immich API 密钥", + "api_note": "注意:这必须是 Immich API 服务器的 URL,因此它可能以 /api 结尾,除非您有自定义配置。", + "disable": "禁用", + "immich": "Immich", + "immich_disabled": "Immich 集成成功禁用!", + "immich_error": "更新 Immich 集成时出错", + "integration_fetch_error": "从 Immich 集成获取数据时出错", + "load_more": "加载更多", + "no_items_found": "未找到物品", + "server_url": "Immich 服务器网址", + "update_integration": "更新集成", + "localhost_note": "注意:除非您相应地设置了 docker 网络,否则 localhost 很可能无法工作。\n建议使用服务器的IP地址或域名。", + "api_key_placeholder": "输入您的Immich API密钥", + "enable_integration": "启用集成", + "immich_integration_desc": "连接您的Immich照片管理服务器", + "need_help": "需要帮助设置吗?\n查看", + "connection_error": "连接到Immich服务器的错误", + "copy_locally": "在本地复制图像", + "copy_locally_desc": "将图像复制到服务器以进行离线访问。\n使用更多的磁盘空间。", + "error_saving_image": "保存错误的图像", + "integration_already_exists": "Immich整合已经存在。\n您一次只能进行一个集成。", + "integration_not_found": "没有找到Immich整合。\n请创建一个新的集成。", + "network_error": "连接到Immich服务器时的网络错误。\n请检查您的连接,然后重试。", + "validation_error": "在验证IMMICH集成时发生了错误。\n请检查您的服务器URL和API键。" + }, + "recomendations": { + "recommendation": "推荐", + "recommendations": "建议", + "adventure_recommendations": "冒险建议", + "food": "食物", + "tourism": "旅游" + }, + "lodging": { + "campground": "露营地", + "edit": "编辑", + "edit_lodging": "编辑住宿", + "hostel": "旅馆", + "hotel": "酒店", + "house": "房子", + "motel": "汽车旅馆", + "villa": "别墅", + "apartment": "公寓", + "bnb": "民宿", + "cabin": "仓房", + "new_lodging": "新住宿", + "other": "其他", + "reservation_number": "预订号", + "resort": "度假村" + }, + "google_maps": { + "google_maps_integration_desc": "连接您的Google Maps帐户以获取高质量的位置搜索结果和建议。" + }, + "calendar": { + "all_categories": "所有类别", + "all_day_event": "全天活动", + "calendar_overview": "日历概述", + "categories": "类别", + "day": "天", + "events_scheduled": "预定事件", + "filter_by_category": "按类别过滤", + "filtered_results": "过滤结果", + "month": "月", + "today": "今天", + "total_events": "总事件", + "week": "星期" + } +} diff --git a/frontend/src/routes/+error.svelte b/frontend/src/routes/+error.svelte index f0fe4c9..20fa13e 100644 --- a/frontend/src/routes/+error.svelte +++ b/frontend/src/routes/+error.svelte @@ -2,23 +2,72 @@ import { goto } from '$app/navigation'; import { page } from '$app/stores'; import Lost from '$lib/assets/undraw_lost.svg'; + import ServerError from '$lib/assets/undraw_server_error.svg'; -

{$page.status}: {$page.error?.message}

- {#if $page.status === 404}
Lost in the forest -

+

+ {$page.status}: {$page.error?.message} +

+

Oops, looks like you've wandered off the beaten path.

-

- We couldn't find the page you were looking for. Don't worry, we can help you find your way - back.ry, we can -

+ +

We couldn't find the page you were looking for.

+
+ +
+
+
+{/if} + +{#if $page.status === 500} +
+
+ Lost in the forest +

+ {$page.status}: {$page.error?.message} +

+

+ Oops, looks like something went wrong. +

+ +

+ AdventureLog server encountered an error while processing your request. +
+ Please check the server logs for more information. +

+ +
+

+ Administrators: Please check your setup using the + documentation. +

+
+ + + {#if $page.url.pathname === '/login' || $page.url.pathname === '/signup'} +
+

+ Hint: If you are an administrator, please check your PUBLIC_SERVER_URL + in the frontend config to make sure it can reach the backend. +
+

+
+ {/if} +
diff --git a/frontend/src/routes/+layout.server.ts b/frontend/src/routes/+layout.server.ts index 494ede4..6db2df7 100644 --- a/frontend/src/routes/+layout.server.ts +++ b/frontend/src/routes/+layout.server.ts @@ -1,12 +1,15 @@ +import { locale } from 'svelte-i18n'; import type { LayoutServerLoad } from './$types'; export const load: LayoutServerLoad = async (event) => { if (event.locals.user) { return { - user: event.locals.user + user: event.locals.user, + locale: event.locals.locale }; } return { - user: null + user: null, + locale: event.locals.locale }; }; diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index 390d3c5..963dfcf 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -1,11 +1,64 @@ - - - +{#await localeLoaded} + +{:then} + + + +{/await} - + + + + AdventureLog + + diff --git a/frontend/src/routes/+page.server.ts b/frontend/src/routes/+page.server.ts index 8cb9577..6d5b21d 100644 --- a/frontend/src/routes/+page.server.ts +++ b/frontend/src/routes/+page.server.ts @@ -1,44 +1,96 @@ const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; import { redirect, type Actions } from '@sveltejs/kit'; +// @ts-ignore +import psl from 'psl'; +import { getRandomBackground, themes } from '$lib'; +import { fetchCSRFToken } from '$lib/index.server'; +import type { PageServerLoad } from './$types'; const serverEndpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; +export const load = (async (event) => { + if (event.locals.user) { + return redirect(302, '/dashboard'); + } else { + const background = getRandomBackground(); + return { + props: { + background + } + }; + } +}) satisfies PageServerLoad; + export const actions: Actions = { setTheme: async ({ url, cookies }) => { const theme = url.searchParams.get('theme'); // change the theme only if it is one of the allowed themes - if ( - theme && - ['light', 'dark', 'night', 'retro', 'forest', 'aqua', 'forest', 'garden', 'emerald'].includes( - theme - ) - ) { + if (theme && themes.find((t) => t.name === theme)) { cookies.set('colortheme', theme, { path: '/', - maxAge: 60 * 60 * 24 * 365 + maxAge: 60 * 60 * 24 * 365, // 1 year + sameSite: 'lax' }); } }, - logout: async ({ cookies }: { cookies: any }) => { - const cookie = cookies.get('auth') || null; + logout: async (event) => { + let sessionId = event.cookies.get('sessionid'); + let csrfToken = await fetchCSRFToken(); - if (!cookie) { + if (!sessionId) { return; } - const res = await fetch(`${serverEndpoint}/auth/logout/`, { - method: 'POST', + const res = await fetch(`${serverEndpoint}/auth/browser/v1/auth/session`, { + method: 'DELETE', headers: { 'Content-Type': 'application/json', - Cookie: cookies.get('auth') - } + 'X-CSRFToken': csrfToken, // Ensure CSRF token is in header + Referer: event.url.origin, // Include Referer header + Cookie: `sessionid=${sessionId}; csrftoken=${csrfToken}` + }, + credentials: 'include' }); - if (res.ok) { - cookies.delete('auth', { path: '/', secure: false }); - cookies.delete('refresh', { path: '/', secure: false }); + + // Get the proper cookie domain using psl + const hostname = event.url.hostname; + let cookieDomain; + + // Check if hostname is an IP address + const isIPAddress = /^\d{1,3}(\.\d{1,3}){3}$/.test(hostname); + const isLocalhost = hostname === 'localhost'; + const isSingleLabel = hostname.split('.').length === 1; + + if (!isIPAddress && !isSingleLabel && !isLocalhost) { + const parsed = psl.parse(hostname); + + if (parsed && parsed.domain) { + // Use the parsed domain (e.g., mydomain.com) + cookieDomain = `.${parsed.domain}`; + } + } + + // Delete the session cookie + event.cookies.delete('sessionid', { + path: '/', + secure: event.url.protocol === 'https:', + domain: cookieDomain // Undefined for IP addresses, used for domain names + }); + + if (res.status === 401) { return redirect(302, '/login'); } else { return redirect(302, '/'); } + }, + setLocale: async ({ url, cookies }) => { + const locale = url.searchParams.get('locale'); + // change the locale only if it is one of the allowed locales + if (locale) { + cookies.set('locale', locale, { + path: '/', + maxAge: 60 * 60 * 24 * 365 // 1 year + }); + } } }; diff --git a/frontend/src/routes/+page.svelte b/frontend/src/routes/+page.svelte index ad1a655..e8b4a86 100644 --- a/frontend/src/routes/+page.svelte +++ b/frontend/src/routes/+page.svelte @@ -1,131 +1,235 @@ -
-
-
-
-
- {#if data.user} - {#if data.user.first_name && data.user.first_name !== null} -

- {data.user.first_name.charAt(0).toUpperCase() + data.user.first_name.slice(1)}, - Discover the World's Most Thrilling Adventures -

- {:else} -

- Discover the World's Most Thrilling Adventures -

- {/if} - {:else} -

+ +
+ +
+
+ + + + + + + + +
+ +
+
+ +
+
+
- Discover the World's Most Thrilling Adventures + + {$t('home.start_your_journey')} +
+

+ + {$t('home.hero_1')} +

- {/if} -

- Discover and plan your next adventure with AdventureLog. Explore breathtaking - destinations, create custom itineraries, and stay connected on the go. +

+ +

+ {$t('home.hero_2')}

+ + +
+ {#if data.user} + + {:else} + + + {/if} +
-
- {#if data.user} - - {:else} - - - {/if} + + +
+
+ +
+
+ + +
+ {background.location} + + +
+
+
+ {background.location || 'Adventure Awaits'} +
+
+
+
- Hero
-
-
-
-
-
-
+ + +
+
+
+
+
+
+ + +
+
+ +
- Key Features + + {$t('home.key_features')}
-

- Discover, Plan, and Explore with Ease +

+ + {$t('home.desc_1')} +

-

- AdventureLog is designed to simplify your journey, providing you with the tools and - resources to plan, pack, and navigate your next unforgettable adventure. +

+ {$t('home.desc_2')}

-
-
- - Image -
-
    -
  • -
    -

    Travel Log

    -

    - Keep track of your adventures with a personalized travel log and share your - experiences with friends and family. -

    + +
    + +
    + {#each features as feature, index} +
    +
    +
    + +
    +
    +

    + {feature.title} +

    +

    + {feature.description} +

    +
    +
    -
  • -
  • -
    -

    Trip Planning

    -

    - Easily create custom itineraries and get a day-by-day breakdown of your trip. -

    -
    -
  • -
  • -
    -

    Travel Map

    -

    - View your travels throughout the world with an interactive map and explore new - destinations. -

    -
    -
  • -
+ {/each} +
+ + +
+
+ World map with pins +
+

-
-
+ +
Home | AdventureLog @@ -134,3 +238,63 @@ content="AdventureLog is a platform to log your adventures and plan your travel." /> + + diff --git a/frontend/src/routes/activities/+page.server.ts b/frontend/src/routes/activities/+page.server.ts deleted file mode 100644 index 106df86..0000000 --- a/frontend/src/routes/activities/+page.server.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { redirect } from '@sveltejs/kit'; -import type { PageServerLoad } from './$types'; -const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; -const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; - -export const load = (async (event) => { - if (!event.locals.user) { - return redirect(302, '/login'); - } - let allActivities: string[] = []; - let res = await fetch(`${endpoint}/api/activity-types/types/`, { - headers: { - 'Content-Type': 'application/json', - Cookie: `${event.cookies.get('auth')}` - } - }); - let data = await res.json(); - if (data) { - allActivities = data; - } - return { - props: { - activities: allActivities - } - }; -}) satisfies PageServerLoad; diff --git a/frontend/src/routes/activities/+page.svelte b/frontend/src/routes/activities/+page.svelte deleted file mode 100644 index f0f6bd4..0000000 --- a/frontend/src/routes/activities/+page.svelte +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - {#each activities as activity} - - - - - {/each} - -
ActivityActions
{activity} - -
- - - My Activities - - diff --git a/frontend/src/routes/activities/+server.ts b/frontend/src/routes/activities/+server.ts new file mode 100644 index 0000000..c5143dc --- /dev/null +++ b/frontend/src/routes/activities/+server.ts @@ -0,0 +1,23 @@ +import { json } from '@sveltejs/kit'; +import type { RequestHandler } from '@sveltejs/kit'; +import { fetchCSRFToken } from '$lib/index.server'; +const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; +const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; + +export const POST: RequestHandler = async (event) => { + let allActivities: string[] = []; + let csrfToken = await fetchCSRFToken(); + let sessionId = event.cookies.get('sessionid'); + let res = await event.fetch(`${endpoint}/api/activity-types/types/`, { + headers: { + 'X-CSRFToken': csrfToken, + Cookie: `csrftoken=${csrfToken}; sessionid=${sessionId}` + }, + credentials: 'include' + }); + let data = await res.json(); + if (data) { + allActivities = data; + } + return json({ activities: allActivities }); +}; diff --git a/frontend/src/routes/admin/+page.server.ts b/frontend/src/routes/admin/+page.server.ts new file mode 100644 index 0000000..c32b3ba --- /dev/null +++ b/frontend/src/routes/admin/+page.server.ts @@ -0,0 +1,17 @@ +import { redirect } from '@sveltejs/kit'; +import type { PageServerLoad } from '../$types'; +const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; +const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; + +export const load: PageServerLoad = async (event) => { + let publicUrlFetch = await fetch(`${endpoint}/public-url/`); + let publicUrl = ''; + if (!publicUrlFetch.ok) { + return redirect(302, '/'); + } else { + let publicUrlJson = await publicUrlFetch.json(); + publicUrl = publicUrlJson.PUBLIC_URL; + } + + return redirect(302, publicUrl + '/admin/'); +}; diff --git a/frontend/src/routes/adventures/+page.server.ts b/frontend/src/routes/adventures/+page.server.ts index 1b0edcf..9875399 100644 --- a/frontend/src/routes/adventures/+page.server.ts +++ b/frontend/src/routes/adventures/+page.server.ts @@ -3,9 +3,8 @@ import type { PageServerLoad } from './$types'; const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; import type { Adventure } from '$lib/types'; -import type { Actions, RequestEvent } from '@sveltejs/kit'; -import { fetchCSRFToken, tryRefreshToken } from '$lib/index.server'; -import { checkLink } from '$lib'; +import type { Actions } from '@sveltejs/kit'; +import { fetchCSRFToken } from '$lib/index.server'; const serverEndpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; @@ -16,37 +15,32 @@ export const load = (async (event) => { let count = 0; let adventures: Adventure[] = []; - const visited = event.url.searchParams.get('visited'); - const planned = event.url.searchParams.get('planned'); + let typeString = event.url.searchParams.get('types'); - let typeString: string = ''; - - if (visited == 'on') { - typeString += 'visited'; - } - if (planned == 'on') { - if (typeString) { - typeString += ','; - } - typeString += 'planned'; - } else if (!visited && !planned) { - typeString = 'visited,planned'; + // If no type is specified, default to 'all' + if (!typeString) { + typeString = 'all'; } const include_collections = event.url.searchParams.get('include_collections') || 'false'; const order_by = event.url.searchParams.get('order_by') || 'updated_at'; const order_direction = event.url.searchParams.get('order_direction') || 'asc'; const page = event.url.searchParams.get('page') || '1'; + const is_visited = event.url.searchParams.get('is_visited') || 'all'; - let initialFetch = await fetch( - `${serverEndpoint}/api/adventures/filtered?types=${typeString}&order_by=${order_by}&order_direction=${order_direction}&include_collections=${include_collections}&page=${page}`, + let initialFetch = await event.fetch( + `${serverEndpoint}/api/adventures/filtered?types=${typeString}&order_by=${order_by}&order_direction=${order_direction}&include_collections=${include_collections}&page=${page}&is_visited=${is_visited}`, { headers: { - Cookie: `${event.cookies.get('auth')}` - } + Cookie: `sessionid=${event.cookies.get('sessionid')}` + }, + credentials: 'include' } ); + if (!initialFetch.ok) { + let error_message = await initialFetch.json(); + console.error(error_message); console.error('Failed to fetch visited adventures'); return redirect(302, '/login'); } else { @@ -67,340 +61,39 @@ export const load = (async (event) => { }) satisfies PageServerLoad; export const actions: Actions = { - create: async (event) => { - const formData = await event.request.formData(); - - const type = formData.get('type') as string; - const name = formData.get('name') as string; - const location = formData.get('location') as string | null; - let date = (formData.get('date') as string | null) ?? null; - const description = formData.get('description') as string | null; - const activity_types = formData.get('activity_types') - ? (formData.get('activity_types') as string).split(',') - : null; - const rating = formData.get('rating') ? Number(formData.get('rating')) : null; - let link = formData.get('link') as string | null; - let latitude = formData.get('latitude') as string | null; - let longitude = formData.get('longitude') as string | null; - let collection = formData.get('collection') as string | null; - - // check if latitude and longitude are valid - if (latitude && longitude) { - if (isNaN(Number(latitude)) || isNaN(Number(longitude))) { - return { - status: 400, - body: { error: 'Invalid latitude or longitude' } - }; - } - } - - // round latitude and longitude to 6 decimal places - if (latitude) { - latitude = Number(latitude).toFixed(6); - } - if (longitude) { - longitude = Number(longitude).toFixed(6); - } - - const image = formData.get('image') as File; - - if (!type || !name) { - return { - status: 400, - body: { error: 'Missing required fields' } - }; - } - - if (date == null || date == '') { - date = null; - } - - if (link) { - link = checkLink(link); - } - - const formDataToSend = new FormData(); - formDataToSend.append('type', type); - formDataToSend.append('name', name); - formDataToSend.append('location', location || ''); - formDataToSend.append('date', date || ''); - formDataToSend.append('description', description || ''); - formDataToSend.append('latitude', latitude || ''); - formDataToSend.append('longitude', longitude || ''); - - if (!isNaN(Number(collection))) { - if (collection !== null) { - formDataToSend.append('collection', collection); - } - } - - if (activity_types) { - // Filter out empty and duplicate activity types, then trim each activity type - const cleanedActivityTypes = Array.from( - new Set( - activity_types - .map((activity_type) => activity_type.trim()) - .filter((activity_type) => activity_type !== '' && activity_type !== ',') - ) - ); - - // Append each cleaned activity type to formDataToSend - cleanedActivityTypes.forEach((activity_type) => { - formDataToSend.append('activity_types', activity_type); - }); - } - formDataToSend.append('rating', rating ? rating.toString() : ''); - formDataToSend.append('link', link || ''); - formDataToSend.append('image', image); - - // log each key-value pair in the FormData - for (let pair of formDataToSend.entries()) { - console.log(pair[0] + ', ' + pair[1]); - } - - let auth = event.cookies.get('auth'); - - if (!auth) { - const refresh = event.cookies.get('refresh'); - if (!refresh) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - let res = await tryRefreshToken(refresh); - if (res) { - auth = res; - event.cookies.set('auth', auth, { - httpOnly: true, - sameSite: 'lax', - expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - path: '/' - }); - } else { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - } - - if (!auth) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - - const csrfToken = await fetchCSRFToken(); - - if (!csrfToken) { - return { - status: 500, - body: { message: 'Failed to fetch CSRF token' } - }; - } - - const res = await fetch(`${serverEndpoint}/api/adventures/`, { + image: async (event) => { + let formData = await event.request.formData(); + let csrfToken = await fetchCSRFToken(); + let sessionId = event.cookies.get('sessionid'); + let res = await fetch(`${serverEndpoint}/api/images/`, { method: 'POST', headers: { + Cookie: `csrftoken=${csrfToken}; sessionid=${sessionId}`, 'X-CSRFToken': csrfToken, - Cookie: auth + Referer: event.url.origin // Include Referer header }, - body: formDataToSend + body: formData }); - - let new_id = await res.json(); - - if (!res.ok) { - const errorBody = await res.json(); - return { - status: res.status, - body: { error: errorBody } - }; - } - - let id = new_id.id; - let user_id = new_id.user_id; - let image_url = new_id.image; - let link_url = new_id.link; - - return { id, user_id, image_url, link }; + let data = await res.json(); + return data; }, - edit: async (event) => { - const formData = await event.request.formData(); - - const adventureId = formData.get('adventureId') as string; - const type = formData.get('type') as string; - const name = formData.get('name') as string; - const location = formData.get('location') as string | null; - let date = (formData.get('date') as string | null) ?? null; - const description = formData.get('description') as string | null; - let activity_types = formData.get('activity_types') - ? (formData.get('activity_types') as string).split(',') - : null; - const rating = formData.get('rating') ? Number(formData.get('rating')) : null; - let link = formData.get('link') as string | null; - let latitude = formData.get('latitude') as string | null; - let longitude = formData.get('longitude') as string | null; - let is_public = formData.get('is_public') as string | null | boolean; - - if (is_public) { - is_public = true; - } else { - is_public = false; - } - - // check if latitude and longitude are valid - if (latitude && longitude) { - if (isNaN(Number(latitude)) || isNaN(Number(longitude))) { - return { - status: 400, - body: { error: 'Invalid latitude or longitude' } - }; - } - } - - // round latitude and longitude to 6 decimal places - if (latitude) { - latitude = Number(latitude).toFixed(6); - } - if (longitude) { - longitude = Number(longitude).toFixed(6); - } - - const image = formData.get('image') as File; - - // console.log(activity_types); - - if (!type || !name) { - return { - status: 400, - body: { error: 'Missing required fields' } - }; - } - - if (date == null || date == '') { - date = null; - } - - if (link) { - link = checkLink(link); - } - - const formDataToSend = new FormData(); - formDataToSend.append('type', type); - formDataToSend.append('name', name); - formDataToSend.append('location', location || ''); - formDataToSend.append('date', date || ''); - formDataToSend.append('description', description || ''); - formDataToSend.append('latitude', latitude || ''); - formDataToSend.append('longitude', longitude || ''); - formDataToSend.append('is_public', is_public.toString()); - + attachment: async (event) => { + let formData = await event.request.formData(); let csrfToken = await fetchCSRFToken(); - - if (activity_types) { - // Filter out empty and duplicate activity types, then trim each activity type - const cleanedActivityTypes = Array.from( - new Set( - activity_types - .map((activity_type) => activity_type.trim()) - .filter((activity_type) => activity_type !== '' && activity_type !== ',') - ) - ); - - // Append each cleaned activity type to formDataToSend - cleanedActivityTypes.forEach((activity_type) => { - formDataToSend.append('activity_types', activity_type); - }); - } else { - let res = await fetch(`${serverEndpoint}/api/adventures/${adventureId}/`, { - method: 'PATCH', - headers: { - Cookie: `${event.cookies.get('auth')}`, - 'X-CSRFToken': csrfToken, - 'Content-Type': 'application/json' - }, - body: JSON.stringify({ activity_types: [] }) - }); - if (!res.ok) { - const errorBody = await res.json(); - return { - status: res.status, - body: { error: errorBody } - }; - } - } - formDataToSend.append('rating', rating ? rating.toString() : ''); - formDataToSend.append('link', link || ''); - - if (image && image.size > 0) { - formDataToSend.append('image', image); - } - - let auth = event.cookies.get('auth'); - - if (!auth) { - const refresh = event.cookies.get('refresh'); - if (!refresh) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - let res = await tryRefreshToken(refresh); - if (res) { - auth = res; - event.cookies.set('auth', auth, { - httpOnly: true, - sameSite: 'lax', - expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - path: '/' - }); - } else { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - } - - if (!auth) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - - if (!csrfToken) { - return { - status: 500, - body: { message: 'Failed to fetch CSRF token' } - }; - } - - const res = await fetch(`${serverEndpoint}/api/adventures/${adventureId}/`, { - method: 'PATCH', + let sessionId = event.cookies.get('sessionid'); + let res = await fetch(`${serverEndpoint}/api/attachments/`, { + method: 'POST', headers: { + Cookie: `csrftoken=${csrfToken}; sessionid=${sessionId}`, 'X-CSRFToken': csrfToken, - Cookie: auth + Referer: event.url.origin // Include Referer header }, - body: formDataToSend + body: formData }); + let data = await res.json(); - if (!res.ok) { - const errorBody = await res.json(); - return { - status: res.status, - body: { error: errorBody } - }; - } - - let adventure = await res.json(); - - let image_url = adventure.image; - let link_url = adventure.link; - return { image_url, link_url }; + console.log(res); + console.log(data); + return data; } }; diff --git a/frontend/src/routes/adventures/+page.svelte b/frontend/src/routes/adventures/+page.svelte index 2984dc9..2813573 100644 --- a/frontend/src/routes/adventures/+page.svelte +++ b/frontend/src/routes/adventures/+page.svelte @@ -3,15 +3,25 @@ import { goto } from '$app/navigation'; import { page } from '$app/stores'; import AdventureCard from '$lib/components/AdventureCard.svelte'; - import EditAdventure from '$lib/components/EditAdventure.svelte'; - import NewAdventure from '$lib/components/NewAdventure.svelte'; + import AdventureModal from '$lib/components/AdventureModal.svelte'; + import CategoryFilterDropdown from '$lib/components/CategoryFilterDropdown.svelte'; + import CategoryModal from '$lib/components/CategoryModal.svelte'; import NotFound from '$lib/components/NotFound.svelte'; - import type { Adventure } from '$lib/types'; + import type { Adventure, Category } from '$lib/types'; + import { t } from 'svelte-i18n'; import Plus from '~icons/mdi/plus'; + import Filter from '~icons/mdi/filter-variant'; + import Sort from '~icons/mdi/sort'; + import MapMarker from '~icons/mdi/map-marker'; + import Eye from '~icons/mdi/eye'; + import EyeOff from '~icons/mdi/eye-off'; + import Calendar from '~icons/mdi/calendar'; + import Star from '~icons/mdi/star'; + import Tag from '~icons/mdi/tag'; + import Compass from '~icons/mdi/compass'; export let data: any; - console.log(data); let adventures: Adventure[] = data.props.adventures || []; @@ -20,34 +30,42 @@ order: '', visited: true, planned: true, - includeCollections: true + includeCollections: true, + is_visited: 'all' }; - let isShowingCreateModal: boolean = false; - let newType: string = ''; - let resultsPerPage: number = 25; - let count = data.props.count || 0; let totalPages = Math.ceil(count / resultsPerPage); let currentPage: number = 1; - function handleChangePage(pageNumber: number) { - // let query = new URLSearchParams($page.url.searchParams.toString()); + let is_category_modal_open: boolean = false; + let typeString: string = ''; + let adventureToEdit: Adventure | null = null; + let isAdventureModalOpen: boolean = false; + let sidebarOpen = false; - // query.set('page', pageNumber.toString()); + // Reactive statements + $: { + if (typeof window !== 'undefined') { + let url = new URL(window.location.href); + if (typeString) { + url.searchParams.set('types', typeString); + } else { + url.searchParams.delete('types'); + } + goto(url.toString(), { invalidateAll: true, replaceState: true }); + } + } - // console.log(query.toString()); - currentPage = pageNumber; - - let url = new URL(window.location.href); - url.searchParams.set('page', pageNumber.toString()); - adventures = []; - adventures = data.props.adventures; - - goto(url.toString(), { invalidateAll: true, replaceState: true }); - - // goto(`?${query.toString()}`, { invalidateAll: true }); + $: { + if (typeof window !== 'undefined') { + let url = new URL(window.location.href); + let types = url.searchParams.get('types'); + if (types) { + typeString = types; + } + } } $: { @@ -93,255 +111,406 @@ currentSort.visited = true; currentSort.planned = true; } + + if (url.searchParams.get('is_visited')) { + currentSort.is_visited = url.searchParams.get('is_visited') || 'all'; + } } - let adventureToEdit: Adventure; - let isEditModalOpen: boolean = false; + function handleChangePage(pageNumber: number) { + currentPage = pageNumber; + let url = new URL(window.location.href); + url.searchParams.set('page', pageNumber.toString()); + adventures = []; + adventures = data.props.adventures; + goto(url.toString(), { invalidateAll: true, replaceState: true }); + } - function deleteAdventure(event: CustomEvent) { + function deleteAdventure(event: CustomEvent) { adventures = adventures.filter((adventure) => adventure.id !== event.detail); } - function createAdventure(event: CustomEvent) { - adventures = [event.detail, ...adventures]; - isShowingCreateModal = false; + function saveOrCreate(event: CustomEvent) { + if (adventures.find((adventure) => adventure.id === event.detail.id)) { + adventures = adventures.map((adventure) => { + if (adventure.id === event.detail.id) { + return event.detail; + } + return adventure; + }); + } else { + adventures = [event.detail, ...adventures]; + } + isAdventureModalOpen = false; } function editAdventure(event: CustomEvent) { adventureToEdit = event.detail; - isEditModalOpen = true; + isAdventureModalOpen = true; } - function saveEdit(event: CustomEvent) { - adventures = adventures.map((adventure) => { - if (adventure.id === event.detail.id) { - return event.detail; - } - return adventure; - }); - isEditModalOpen = false; - } - - let sidebarOpen = false; - function toggleSidebar() { sidebarOpen = !sidebarOpen; } + + function getVisitedCount() { + return adventures.filter((a) => a.is_visited).length; + } + + function getPlannedCount() { + return adventures.filter((a) => !a.is_visited).length; + } -{#if isShowingCreateModal} - (isShowingCreateModal = false)} - /> -{/if} + + {$t('navbar.adventures')} + + -{#if isEditModalOpen} - (isEditModalOpen = false)} - on:saveEdit={saveEdit} + on:close={() => (isAdventureModalOpen = false)} + on:save={saveOrCreate} /> {/if} -
-
+{#if is_category_modal_open} + (is_category_modal_open = false)} /> +{/if} + +
+
+ + +
+ +
+
+
+
+ +
+
+ +
+
+

+ {$t('navbar.my_adventures')} +

+

+ {count} + {$t('navbar.adventures')} • {getVisitedCount()} + {$t('adventures.visited')} • {getPlannedCount()} + {$t('adventures.planned')} +

+
+
+
+ + + +
+
+
+ + +
+ {#if adventures.length === 0} +
+
+ +
+

+ {$t('adventures.no_adventures_found')} +

+

+ {$t('adventures.no_adventures_message')} +

+ +
+ {:else} + +
+ {#each adventures as adventure} + + {/each} +
+ + + {#if totalPages > 1} +
+
+ {#each Array.from({ length: totalPages }, (_, i) => i + 1) as page} + + {/each} +
+
+ {/if} + {/if} +
+
+ + +
+ +
+
+ +
+
+ +
+

{$t('adventures.filters_and_sort')}

+
+ + +
+ +
+

+ + Categories +

+ + +
+ + +
+

+ + {$t('adventures.sort')} +

+ +
+
+ + +
+ + +
+
+ +
+ + +
+ + + + +
+
+
+
+ + +
+

+ + {$t('adventures.visited')} +

+
+ + + +
+
+ + +
+

+ + {$t('adventures.sources')} +

+ +
+ + +
+
+
+
+
+ + +
- -
- -
- -

My Adventures

-

This search returned {count} results.

- {#if adventures.length === 0} - - {/if} -
- - -
- {#each adventures as adventure} - - {/each} -
- -
- {#if totalPages > 1} -
- {#each Array.from({ length: totalPages }, (_, i) => i + 1) as page} - {#if currentPage != page} - - {:else} - - {/if} - {/each} -
- {/if} -
-
-
-
- - - -
-
- - - Adventures - - diff --git a/frontend/src/routes/adventures/[id]/+page.server.ts b/frontend/src/routes/adventures/[id]/+page.server.ts index aa253fb..4e851da 100644 --- a/frontend/src/routes/adventures/[id]/+page.server.ts +++ b/frontend/src/routes/adventures/[id]/+page.server.ts @@ -1,14 +1,15 @@ import type { PageServerLoad } from './$types'; const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; -import type { Adventure, Collection } from '$lib/types'; +import type { AdditionalAdventure, Adventure, Collection } from '$lib/types'; const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; export const load = (async (event) => { const id = event.params as { id: string }; - let request = await fetch(`${endpoint}/api/adventures/${id.id}/`, { + let request = await fetch(`${endpoint}/api/adventures/${id.id}/additional-info/`, { headers: { - Cookie: `${event.cookies.get('auth')}` - } + Cookie: `sessionid=${event.cookies.get('sessionid')}` + }, + credentials: 'include' }); if (!request.ok) { console.error('Failed to fetch adventure ' + id.id); @@ -18,29 +19,18 @@ export const load = (async (event) => { } }; } else { - let adventure = (await request.json()) as Adventure; - let collection: Collection | null = null; - - if (adventure.collection) { - let res2 = await fetch(`${endpoint}/api/collections/${adventure.collection}/`, { - headers: { - Cookie: `${event.cookies.get('auth')}` - } - }); - collection = await res2.json(); - } + let adventure = (await request.json()) as AdditionalAdventure; return { props: { - adventure, - collection + adventure } }; } }) satisfies PageServerLoad; -import type { Actions } from '@sveltejs/kit'; -import { tryRefreshToken } from '$lib/index.server'; +import { redirect, type Actions } from '@sveltejs/kit'; +import { fetchCSRFToken } from '$lib/index.server'; const serverEndpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; @@ -50,29 +40,7 @@ export const actions: Actions = { const adventureId = id.id; if (!event.locals.user) { - const refresh = event.cookies.get('refresh'); - let auth = event.cookies.get('auth'); - if (!refresh) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - let res = await tryRefreshToken(refresh); - if (res) { - auth = res; - event.cookies.set('auth', auth, { - httpOnly: true, - sameSite: 'lax', - expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - path: '/' - }); - } else { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } + return redirect(302, '/login'); } if (!adventureId) { return { @@ -81,12 +49,17 @@ export const actions: Actions = { }; } + let csrfToken = await fetchCSRFToken(); + let res = await fetch(`${serverEndpoint}/api/adventures/${event.params.id}`, { method: 'DELETE', headers: { - Cookie: `${event.cookies.get('auth')}`, - 'Content-Type': 'application/json' - } + Referer: event.url.origin, // Include Referer header + Cookie: `sessionid=${event.cookies.get('sessionid')}; + csrftoken=${csrfToken}`, + 'X-CSRFToken': csrfToken + }, + credentials: 'include' }); console.log(res); if (!res.ok) { @@ -99,72 +72,5 @@ export const actions: Actions = { status: 204 }; } - }, - addToCollection: async (event) => { - const id = event.params as { id: string }; - const adventureId = id.id; - - const formData = await event.request.formData(); - const trip_id = formData.get('collection_id'); - - if (!trip_id) { - return { - status: 400, - error: { message: 'Missing collection id' } - }; - } - - if (!event.locals.user) { - const refresh = event.cookies.get('refresh'); - let auth = event.cookies.get('auth'); - if (!refresh) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - let res = await tryRefreshToken(refresh); - if (res) { - auth = res; - event.cookies.set('auth', auth, { - httpOnly: true, - sameSite: 'lax', - expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - path: '/' - }); - } else { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - } - if (!adventureId) { - return { - status: 400, - error: new Error('Bad request') - }; - } - - let res = await fetch(`${serverEndpoint}/api/adventures/${event.params.id}/`, { - method: 'PATCH', - headers: { - Cookie: `${event.cookies.get('auth')}`, - 'Content-Type': 'application/json' - }, - body: JSON.stringify({ collection: trip_id }) - }); - let res2 = await res.json(); - console.log(res2); - if (!res.ok) { - return { - status: res.status, - error: new Error('Failed to delete adventure') - }; - } else { - return { - status: 204 - }; - } } }; diff --git a/frontend/src/routes/adventures/[id]/+page.svelte b/frontend/src/routes/adventures/[id]/+page.svelte index 0640383..3977b9c 100644 --- a/frontend/src/routes/adventures/[id]/+page.svelte +++ b/frontend/src/routes/adventures/[id]/+page.svelte @@ -1,314 +1,762 @@ - - {#if notFound} -
-
-
- Lost -
-

- Adventure not Found -

-

- The adventure you were looking for could not be found. Please try a different adventure or - check back later. -

-
- +
+
+
+ Lost +

{$t('adventures.not_found')}

+

{$t('adventures.not_found_desc')}

+
{/if} +{#if isEditModalOpen} + (isEditModalOpen = false)} + on:save={saveEdit} + /> +{/if} + +{#if image_url} + (image_url = null)} {adventure} /> +{/if} + {#if !adventure && !notFound} -
- +
+
+ +
{/if} {#if adventure} -
-
-
-
- {#if adventure.image} -
- {adventure.name} -
- {/if} -
-
-
-

{adventure.name}

-
+ {#if data.user && data.user.uuid == adventure.user_id} +
+ +
+ {/if} -
- {#if adventure.rating !== undefined && adventure.rating !== null} -
-
- {#each Array.from({ length: 5 }, (_, i) => i + 1) as star} - - {/each} -
+ +
+ {#if adventure.images && adventure.images.length > 0} +
+
+ {#each adventure.images as image, i} +
+ +
+ {/each} + +
+
+

{adventure.name}

+ + + {#if adventure.rating !== undefined && adventure.rating !== null} +
+
+ {#each Array.from({ length: 5 }, (_, i) => i + 1) as star} + + {/each} +
+
+ {/if} + + +
+
+ {adventure.category?.display_name} + {adventure.category?.icon} +
+ {#if adventure.location} +
+ 📍 {adventure.location} +
+ {/if} + {#if adventure.visits.length > 0} +
+ 🎯 {adventure.visits.length} + {adventure.visits.length === 1 ? $t('adventures.visit') : $t('adventures.visits')} +
+ {/if} +
+ + + {#if adventure.images.length > 1} +
+ +
+ + +
+ {currentSlide + 1} / {adventure.images.length} +
+ + +
+ + + {#if adventure.images.length <= 12} + +
+ {#each adventure.images as _, i} + + {/each} +
+ {:else} + +
+
+
{/if}
-
-
-
- - - - - {adventure.is_public ? 'Public' : 'Private'} -
- {#if adventure.date} -
- - - - - - - {new Date(adventure.date).toLocaleDateString()} -
- {/if} - {#if adventure.location} -
- - - - - {adventure.location} -
- {/if} - {#if adventure.activity_types && adventure.activity_types?.length > 0} -
- - - - {adventure.activity_types.join(', ')} -
- {/if} - {#if adventure.link} - - {/if} -
- {#if adventure.description} -
-

- {adventure.description} -

-
{/if}
-
-
-
-

Trip Details

-
-
-
-

Trip Type

-

- {adventure.type[0].toLocaleUpperCase() + adventure.type.slice(1)} -

+
+ {:else} + +
+
+
+

{adventure.name}

+ {#if adventure.rating !== undefined && adventure.rating !== null} +
+
+ {#each Array.from({ length: 5 }, (_, i) => i + 1) as star} + + {/each}
- {#if data.props.collection} -
-

Collection

- {data.props.collection.name} + {/if} +
+
+
+ {/if} +
+ + +
+
+ +
+ + {#if adventure.user} +
+
+
+ {#if adventure.user.profile_pic} +
+
+ {adventure.user.username} +
+
+ {:else} +
+
+ + {adventure.user.first_name + ? adventure.user.first_name.charAt(0) + : adventure.user.username.charAt(0)}{adventure.user.last_name + ? adventure.user.last_name.charAt(0) + : ''} + +
{/if} -
- {#if adventure.longitude && adventure.latitude} -
-
-

Latitude

-

{adventure.latitude}° N

+
+
+ {#if adventure.user.public_profile} + + {adventure.user.first_name || adventure.user.username} + {adventure.user.last_name || ''} + + {:else} + {adventure.user.first_name || adventure.user.username} + {adventure.user.last_name || ''} + {/if}
-
-

Longitude

-

{adventure.longitude}° W

+
+
+ {adventure.is_public + ? `🌍 ${$t('adventures.public')}` + : `🔒 ${$t('adventures.private')}`} +
+ + {#if adventure.collections && adventure.collections.length > 0} +
+ 📚 +

{adventure.collections.length} {$t('navbar.collections')}

+
+ {/if}
- - - +
+
+
+ {/if} - - -
{adventure.name}
-

- {adventure.type.charAt(0).toUpperCase() + adventure.type.slice(1)} -

-

- {adventure.date - ? new Date(adventure.date).toLocaleDateString('en-US', { - timeZone: 'UTC' - }) - : ''} -

-
-
+ + {#if adventure.description} +
+
+

📝 {$t('adventures.description')}

+
+ {@html DOMPurify.sanitize(renderMarkdown(adventure.description))} +
+
+
+ {/if} + + + {#if adventure.visits.length > 0} +
+
+

🎯 {$t('adventures.visits')}

+
+ {#each adventure.visits as visit, index} +
+
+
+ {#if index < adventure.visits.length - 1} +
+ {/if} +
+
+
+
+ {#if isAllDay(visit.start_date)} +
+ All Day + + {visit.start_date ? visit.start_date.split('T')[0] : ''} – {visit.end_date + ? visit.end_date.split('T')[0] + : ''} + +
+ {:else} +
+
+ 🕓 {$t('adventures.timed')} + {#if visit.timezone} + {visit.timezone} + {/if} +
+
+ {#if visit.timezone} + {$t('adventures.start')}: + {DateTime.fromISO(visit.start_date, { zone: 'utc' }) + .setZone(visit.timezone) + .toLocaleString(DateTime.DATETIME_MED)}
+ {$t('adventures.end')}: + {DateTime.fromISO(visit.end_date, { zone: 'utc' }) + .setZone(visit.timezone) + .toLocaleString(DateTime.DATETIME_MED)} + {:else} + Start: + {DateTime.fromISO(visit.start_date).toLocaleString( + DateTime.DATETIME_MED + )}
+ End: + {DateTime.fromISO(visit.end_date).toLocaleString( + DateTime.DATETIME_MED + )} + {/if} +
+
+ {/if} + {#if visit.notes} +
+

"{visit.notes}"

+
+ {/if} +
+
+
+
+ {/each} +
+
+
+ {/if} + + + {#if (adventure.longitude && adventure.latitude) || geojson} +
+
+

🗺️ {$t('adventures.location')}

+ + {#if adventure.longitude && adventure.latitude} + +
+
+
+

+ 🎯 {$t('adventures.coordinates')} +

+
+ +
+
+
+ {$t('adventures.latitude')} +
+
{adventure.latitude}°
+
+
+
+ {$t('adventures.longitude')} +
+
{adventure.longitude}°
+
+
+ + + {#if adventure.city || adventure.region || adventure.country} +
+ {#if adventure.city} + + {/if} + {#if adventure.region} + + {/if} + {#if adventure.country} + + {/if} +
+ {/if} + + + + + +
+ + +
+
+
+ {/if} + +
+ + {#if geojson} + + + + {/if} + + {#if adventure.longitude && adventure.latitude} + + +
+
{adventure.name}
+

+ {adventure.category?.display_name + ' ' + adventure.category?.icon} +

+ {#if adventure.visits.length > 0} +
+ {adventure.visits.length} + {$t('adventures.visit')}{adventure.visits.length !== 1 ? 's' : ''} +
+ {/if} +
+
+
+ {/if}
+
+
+
+ {/if} +
+ + +
+ +
+
+

ℹ️ {$t('adventures.basic_information')}

+
+ {#if adventure.activity_types && adventure.activity_types?.length > 0} +
+
{$t('adventures.tags')}
+
+ {#each adventure.activity_types as activity} + {activity} + {/each} +
+
+ {/if} + {#if adventure.link} + {/if}
+ + + {#if adventure.sun_times && adventure.sun_times.length > 0} +
+
+

+ 🌅 {$t('adventures.sun_times')} + +

+
+ {#each adventure.sun_times as sun_time} +
+
+ {new Date(sun_time.date).toLocaleDateString()} +
+
+ {$t('adventures.sunrise')}: {sun_time.sunrise} • {$t('adventures.sunset')}: {sun_time.sunset} +
+
+ {/each} +
+
+
+ {/if} + + + {#if adventure.attachments && adventure.attachments.length > 0} +
+
+

+ 📎 {$t('adventures.attachments')} +
+ +
+

+
+ {#each adventure.attachments as attachment} + + {/each} +
+
+
+ {/if} + + + {#if adventure.images && adventure.images.length > 1} +
+
+

🖼️ {$t('adventures.images')}

+
+ {#each adventure.images as image} +
+
(image_url = image.image)} + on:keydown={(e) => e.key === 'Enter' && (image_url = image.image)} + role="button" + tabindex="0" + >
+ {#if image.is_primary} +
+ {$t('settings.primary')} +
+ {/if} +
+ {/each} +
+
+
+ {/if}
-
+
{/if} - {data.props.adventure && data.props.adventure.name + <title> + {data.props.adventure && data.props.adventure.name ? `${data.props.adventure.name}` - : 'Adventure'} + : 'Adventure'} + diff --git a/frontend/src/routes/api/[...path]/+server.ts b/frontend/src/routes/api/[...path]/+server.ts index 981debb..b7fcdbf 100644 --- a/frontend/src/routes/api/[...path]/+server.ts +++ b/frontend/src/routes/api/[...path]/+server.ts @@ -1,80 +1,98 @@ const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; +import { fetchCSRFToken } from '$lib/index.server'; import { json } from '@sveltejs/kit'; /** @type {import('./$types').RequestHandler} */ -export async function GET({ url, params, request, fetch, cookies }) { - // add the param format = json to the url or add additional if anothre param is already present - if (url.search) { - url.search = url.search + '&format=json'; - } else { - url.search = '?format=json'; - } - return handleRequest(url, params, request, fetch, cookies); +export async function GET(event) { + const { url, params, request, fetch, cookies } = event; + const searchParam = url.search ? `${url.search}&format=json` : '?format=json'; + return handleRequest(url, params, request, fetch, cookies, searchParam); } /** @type {import('./$types').RequestHandler} */ export async function POST({ url, params, request, fetch, cookies }) { - return handleRequest(url, params, request, fetch, cookies, true); + const searchParam = url.search ? `${url.search}` : ''; + return handleRequest(url, params, request, fetch, cookies, searchParam, true); } export async function PATCH({ url, params, request, fetch, cookies }) { - return handleRequest(url, params, request, fetch, cookies, true); + const searchParam = url.search ? `${url.search}&format=json` : '?format=json'; + return handleRequest(url, params, request, fetch, cookies, searchParam, true); } export async function PUT({ url, params, request, fetch, cookies }) { - return handleRequest(url, params, request, fetch, cookies, true); + const searchParam = url.search ? `${url.search}&format=json` : '?format=json'; + return handleRequest(url, params, request, fetch, cookies, searchParam, true); } export async function DELETE({ url, params, request, fetch, cookies }) { - return handleRequest(url, params, request, fetch, cookies, true); + const searchParam = url.search ? `${url.search}&format=json` : '?format=json'; + return handleRequest(url, params, request, fetch, cookies, searchParam, true); } -// Implement other HTTP methods as needed (PUT, DELETE, etc.) - async function handleRequest( url: any, params: any, request: any, fetch: any, cookies: any, + searchParam: string, requreTrailingSlash: boolean | undefined = false ) { const path = params.path; - let targetUrl = `${endpoint}/api/${path}${url.search}`; + let targetUrl = `${endpoint}/api/${path}`; + // Ensure the path ends with a trailing slash if (requreTrailingSlash && !targetUrl.endsWith('/')) { targetUrl += '/'; } + // Append query parameters to the path correctly + targetUrl += searchParam; // This will add ?format=json or &format=json to the URL + const headers = new Headers(request.headers); - const authCookie = cookies.get('auth'); + // Delete existing csrf cookie by setting an expired date + cookies.delete('csrftoken', { path: '/' }); - if (authCookie) { - headers.set('Cookie', `${authCookie}`); + // Generate a new csrf token (using your existing fetchCSRFToken function) + const csrfToken = await fetchCSRFToken(); + if (!csrfToken) { + return json({ error: 'CSRF token is missing or invalid' }, { status: 400 }); } + // Set the new csrf token in both headers and cookies + const cookieHeader = `csrftoken=${csrfToken}; Path=/; HttpOnly; SameSite=Lax`; + try { const response = await fetch(targetUrl, { method: request.method, - headers: headers, - body: request.method !== 'GET' && request.method !== 'HEAD' ? await request.text() : undefined + headers: { + ...Object.fromEntries(headers), + 'X-CSRFToken': csrfToken, + Cookie: cookieHeader + }, + body: + request.method !== 'GET' && request.method !== 'HEAD' ? await request.text() : undefined, + credentials: 'include' // This line ensures cookies are sent with the request }); if (response.status === 204) { - // For 204 No Content, return a response with no body return new Response(null, { status: 204, headers: response.headers }); } - const responseData = await response.text(); + const responseData = await response.bytes(); + // Create a new Headers object without the 'set-cookie' header + const cleanHeaders = new Headers(response.headers); + cleanHeaders.delete('set-cookie'); return new Response(responseData, { status: response.status, - headers: response.headers + headers: cleanHeaders }); } catch (error) { console.error('Error forwarding request:', error); diff --git a/frontend/src/routes/auth/[...path]/+server.ts b/frontend/src/routes/auth/[...path]/+server.ts new file mode 100644 index 0000000..dc608a1 --- /dev/null +++ b/frontend/src/routes/auth/[...path]/+server.ts @@ -0,0 +1,103 @@ +const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; +const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; +import { fetchCSRFToken } from '$lib/index.server'; +import { json } from '@sveltejs/kit'; + +/** @type {import('./$types').RequestHandler} */ +export async function GET(event) { + const { url, params, request, fetch, cookies } = event; + const searchParam = url.search ? `${url.search}` : ''; + return handleRequest(url, params, request, fetch, cookies, searchParam); +} + +/** @type {import('./$types').RequestHandler} */ +export async function POST({ url, params, request, fetch, cookies }) { + const searchParam = url.search ? `${url.search}` : ''; + return handleRequest(url, params, request, fetch, cookies, searchParam, false); +} + +export async function PATCH({ url, params, request, fetch, cookies }) { + const searchParam = url.search ? `${url.search}` : ''; + return handleRequest(url, params, request, fetch, cookies, searchParam, false); +} + +export async function PUT({ url, params, request, fetch, cookies }) { + const searchParam = url.search ? `${url.search}` : ''; + return handleRequest(url, params, request, fetch, cookies, searchParam, false); +} + +export async function DELETE({ url, params, request, fetch, cookies }) { + const searchParam = url.search ? `${url.search}` : ''; + return handleRequest(url, params, request, fetch, cookies, searchParam, false); +} + +async function handleRequest( + url: any, + params: any, + request: any, + fetch: any, + cookies: any, + searchParam: string, + requreTrailingSlash: boolean | undefined = false +) { + const path = params.path; + let targetUrl = `${endpoint}/auth/${path}`; + + const add_trailing_slash_list = ['disable-password']; + + // Ensure the path ends with a trailing slash + if ((requreTrailingSlash && !targetUrl.endsWith('/')) || add_trailing_slash_list.includes(path)) { + targetUrl += '/'; + } + + // Append query parameters to the path correctly + targetUrl += searchParam; // This will add or to the URL + + const headers = new Headers(request.headers); + + // Delete existing csrf cookie by setting an expired date + cookies.delete('csrftoken', { path: '/' }); + + // Generate a new csrf token (using your existing fetchCSRFToken function) + const csrfToken = await fetchCSRFToken(); + if (!csrfToken) { + return json({ error: 'CSRF token is missing or invalid' }, { status: 400 }); + } + + // Set the new csrf token in both headers and cookies + const cookieHeader = `csrftoken=${csrfToken}; Path=/; HttpOnly; SameSite=Lax`; + + try { + const response = await fetch(targetUrl, { + method: request.method, + headers: { + ...Object.fromEntries(headers), + 'X-CSRFToken': csrfToken, + Cookie: cookieHeader + }, + body: + request.method !== 'GET' && request.method !== 'HEAD' ? await request.text() : undefined, + credentials: 'include' // This line ensures cookies are sent with the request + }); + + if (response.status === 204) { + return new Response(null, { + status: 204, + headers: response.headers + }); + } + + const responseData = await response.text(); + // Create a new Headers object without the 'set-cookie' header + const cleanHeaders = new Headers(response.headers); + cleanHeaders.delete('set-cookie'); + + return new Response(responseData, { + status: response.status, + headers: cleanHeaders + }); + } catch (error) { + console.error('Error forwarding request:', error); + return json({ error: 'Internal Server Error' }, { status: 500 }); + } +} diff --git a/frontend/src/routes/calendar/+page.server.ts b/frontend/src/routes/calendar/+page.server.ts new file mode 100644 index 0000000..383bd0a --- /dev/null +++ b/frontend/src/routes/calendar/+page.server.ts @@ -0,0 +1,145 @@ +import type { Adventure } from '$lib/types'; +import type { PageServerLoad } from './$types'; +import { formatDateInTimezone, formatAllDayDate } from '$lib/dateUtils'; +import { isAllDay } from '$lib'; + +const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; +const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; + +export const load = (async (event) => { + let sessionId = event.cookies.get('sessionid'); + let visitedFetch = await fetch(`${endpoint}/api/adventures/all/?include_collections=true`, { + headers: { + Cookie: `sessionid=${sessionId}` + } + }); + let adventures = (await visitedFetch.json()) as Adventure[]; + + // Get user's local timezone as fallback + const userTimezone = Intl.DateTimeFormat().resolvedOptions().timeZone; + + let dates: Array<{ + id: string; + start: string; + end: string; + title: string; + backgroundColor?: string; + extendedProps?: { + adventureName: string; + category: string; + icon: string; + timezone: string; + isAllDay: boolean; + formattedStart: string; + formattedEnd: string; + location?: string; + description?: string; + adventureId?: string; + }; + }> = []; + + adventures.forEach((adventure) => { + adventure.visits.forEach((visit) => { + if (visit.start_date) { + let startDate = visit.start_date; + let endDate = visit.end_date || visit.start_date; + const targetTimezone = visit.timezone || userTimezone; + const allDay = isAllDay(visit.start_date); + + // Handle timezone conversion for non-all-day events + if (!allDay) { + // Convert UTC dates to target timezone + const startDateTime = new Date(visit.start_date); + const endDateTime = new Date(visit.end_date || visit.start_date); + + // Format for calendar (ISO string in target timezone) + startDate = new Intl.DateTimeFormat('sv-SE', { + timeZone: targetTimezone, + year: 'numeric', + month: '2-digit', + day: '2-digit', + hour: '2-digit', + minute: '2-digit', + hourCycle: 'h23' + }) + .format(startDateTime) + .replace(' ', 'T'); + + endDate = new Intl.DateTimeFormat('sv-SE', { + timeZone: targetTimezone, + year: 'numeric', + month: '2-digit', + day: '2-digit', + hour: '2-digit', + minute: '2-digit', + hourCycle: 'h23' + }) + .format(endDateTime) + .replace(' ', 'T'); + } else { + // For all-day events, use just the date part + startDate = visit.start_date.split('T')[0]; + + // For all-day events, add one day to end date to make it inclusive + const endDateObj = new Date(visit.end_date || visit.start_date); + endDateObj.setDate(endDateObj.getDate() + 1); + endDate = endDateObj.toISOString().split('T')[0]; + } + + // Create detailed title with timezone info + let detailedTitle = adventure.name; + if (adventure.category?.icon) { + detailedTitle = `${adventure.category.icon} ${detailedTitle}`; + } + + // Add time info to title for non-all-day events + if (!allDay) { + const startTime = formatDateInTimezone(visit.start_date, targetTimezone); + detailedTitle += ` (${startTime.split(' ').slice(-2).join(' ')})`; + if (targetTimezone !== userTimezone) { + detailedTitle += ` ${targetTimezone}`; + } + } + + dates.push({ + id: adventure.id, + start: startDate, + end: endDate, + title: detailedTitle, + backgroundColor: '#3b82f6', + extendedProps: { + adventureName: adventure.name, + category: adventure.category?.name || 'Adventure', + icon: adventure.category?.icon || '🗺️', + timezone: targetTimezone, + isAllDay: allDay, + formattedStart: allDay + ? formatAllDayDate(visit.start_date) + : formatDateInTimezone(visit.start_date, targetTimezone), + formattedEnd: allDay + ? formatAllDayDate(visit.end_date || visit.start_date) + : formatDateInTimezone(visit.end_date || visit.start_date, targetTimezone), + location: adventure.location || '', + description: adventure.description || '', + adventureId: adventure.id + } + }); + } + }); + }); + + let icsFetch = await fetch(`${endpoint}/api/ics-calendar/generate`, { + headers: { + Cookie: `sessionid=${sessionId}` + } + }); + let ics_calendar = await icsFetch.text(); + + return { + props: { + adventures, + dates, + ics_calendar + } + }; +}) satisfies PageServerLoad; diff --git a/frontend/src/routes/calendar/+page.svelte b/frontend/src/routes/calendar/+page.svelte new file mode 100644 index 0000000..130b895 --- /dev/null +++ b/frontend/src/routes/calendar/+page.svelte @@ -0,0 +1,437 @@ + + + + {$t('adventures.adventure_calendar')} - AdventureLog + + +
+
+ + +
+ +
+
+
+
+ +
+
+ +
+
+

+ {$t('adventures.adventure_calendar')} +

+

+ {filteredDates.length} + {$t('calendar.events_scheduled')} +

+
+
+
+ + + +
+ + +
+
+ + + {#if searchFilter.length > 0} + + {/if} +
+
+ + +
+ {$t('worldtravel.filter_by')}: + {#if searchFilter} + + {/if} +
+
+
+ + +
+ +
+
+ +
+
+
+
+ + +
+ +
+
+ +
+
+ +
+

{$t('adventures.filters_and_stats')}

+
+ + +
+

+ + {$t('calendar.calendar_overview')} +

+ +
+
+
{$t('calendar.total_events')}
+
{allDates.length}
+
+ +
+
+
{$t('navbar.adventures')}
+
{adventures.length}
+
+
+ + {#if filteredDates.length !== allDates.length} +
+
+ {$t('calendar.filtered_results')} + {filteredDates.length} {$t('worldtravel.of')} {allDates.length} +
+ +
+ {/if} +
+
+ + +
+ + + {$t('adventures.download_calendar')} + + + +
+
+
+
+
+
+ + +{#if showEventModal && selectedEvent} + + +{/if} diff --git a/frontend/src/routes/collections/+page.server.ts b/frontend/src/routes/collections/+page.server.ts index 90bce78..1894c7b 100644 --- a/frontend/src/routes/collections/+page.server.ts +++ b/frontend/src/routes/collections/+page.server.ts @@ -3,8 +3,8 @@ import type { PageServerLoad } from './$types'; const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL']; import type { Adventure, Collection } from '$lib/types'; -import type { Actions, RequestEvent } from '@sveltejs/kit'; -import { fetchCSRFToken, tryRefreshToken } from '$lib/index.server'; +import type { Actions } from '@sveltejs/kit'; +import { fetchCSRFToken } from '$lib/index.server'; import { checkLink } from '$lib'; const serverEndpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; @@ -16,14 +16,25 @@ export const load = (async (event) => { let next = null; let previous = null; let count = 0; - let adventures: Adventure[] = []; - let initialFetch = await fetch(`${serverEndpoint}/api/collections/?order_by=updated_at`, { + let collections: Adventure[] = []; + let sessionId = event.cookies.get('sessionid'); + + // Get sorting parameters from URL + const order_by = event.url.searchParams.get('order_by') || 'updated_at'; + const order_direction = event.url.searchParams.get('order_direction') || 'desc'; + const page = event.url.searchParams.get('page') || '1'; + + // Build API URL with parameters + let apiUrl = `${serverEndpoint}/api/collections/?order_by=${order_by}&order_direction=${order_direction}&page=${page}`; + + let initialFetch = await fetch(apiUrl, { headers: { - Cookie: `${event.cookies.get('auth')}` - } + Cookie: `sessionid=${sessionId}` + }, + credentials: 'include' }); if (!initialFetch.ok) { - console.error('Failed to fetch visited adventures'); + console.error('Failed to fetch collections'); return redirect(302, '/login'); } else { let res = await initialFetch.json(); @@ -31,331 +42,46 @@ export const load = (async (event) => { next = res.next; previous = res.previous; count = res.count; - adventures = [...adventures, ...visited]; + collections = [...collections, ...visited]; } + let sharedRes = await fetch(`${serverEndpoint}/api/collections/shared/`, { + headers: { + Cookie: `sessionid=${sessionId}` + } + }); + if (!sharedRes.ok) { + console.error('Failed to fetch shared collections'); + return redirect(302, '/login'); + } + let sharedCollections = (await sharedRes.json()) as Collection[]; + + let archivedRes = await fetch(`${serverEndpoint}/api/collections/archived/`, { + headers: { + Cookie: `sessionid=${sessionId}` + } + }); + if (!archivedRes.ok) { + console.error('Failed to fetch archived collections'); + return redirect(302, '/login'); + } + let archivedCollections = (await archivedRes.json()) as Collection[]; + + // Calculate current page from URL + const currentPage = parseInt(page); + return { props: { - adventures, + adventures: collections, next, previous, - count + count, + sharedCollections, + currentPage, + order_by, + order_direction, + archivedCollections } }; } }) satisfies PageServerLoad; - -export const actions: Actions = { - create: async (event) => { - const formData = await event.request.formData(); - - const name = formData.get('name') as string; - const description = formData.get('description') as string | null; - const start_date = formData.get('start_date') as string | null; - const end_date = formData.get('end_date') as string | null; - - if (!name) { - return { - status: 400, - body: { error: 'Missing required fields' } - }; - } - - const formDataToSend = new FormData(); - formDataToSend.append('name', name); - formDataToSend.append('description', description || ''); - formDataToSend.append('start_date', start_date || ''); - formDataToSend.append('end_date', end_date || ''); - let auth = event.cookies.get('auth'); - - if (!auth) { - const refresh = event.cookies.get('refresh'); - if (!refresh) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - let res = await tryRefreshToken(refresh); - if (res) { - auth = res; - event.cookies.set('auth', auth, { - httpOnly: true, - sameSite: 'lax', - expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - path: '/' - }); - } else { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - } - - if (!auth) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - - const csrfToken = await fetchCSRFToken(); - - if (!csrfToken) { - return { - status: 500, - body: { message: 'Failed to fetch CSRF token' } - }; - } - - const res = await fetch(`${serverEndpoint}/api/collections/`, { - method: 'POST', - headers: { - 'X-CSRFToken': csrfToken, - Cookie: auth - }, - body: formDataToSend - }); - - let new_id = await res.json(); - - if (!res.ok) { - const errorBody = await res.json(); - return { - status: res.status, - body: { error: errorBody } - }; - } - - let id = new_id.id; - let user_id = new_id.user_id; - - return { id, user_id }; - }, - edit: async (event) => { - const formData = await event.request.formData(); - - const collectionId = formData.get('adventureId') as string; - const name = formData.get('name') as string; - const description = formData.get('description') as string | null; - let is_public = formData.get('is_public') as string | null | boolean; - const start_date = formData.get('start_date') as string | null; - const end_date = formData.get('end_date') as string | null; - - if (is_public) { - is_public = true; - } else { - is_public = false; - } - - if (!name) { - return { - status: 400, - body: { error: 'Missing name.' } - }; - } - - const formDataToSend = new FormData(); - formDataToSend.append('name', name); - formDataToSend.append('description', description || ''); - formDataToSend.append('is_public', is_public.toString()); - formDataToSend.append('start_date', start_date || ''); - formDataToSend.append('end_date', end_date || ''); - - let auth = event.cookies.get('auth'); - - if (!auth) { - const refresh = event.cookies.get('refresh'); - if (!refresh) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - let res = await tryRefreshToken(refresh); - if (res) { - auth = res; - event.cookies.set('auth', auth, { - httpOnly: true, - sameSite: 'lax', - expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - path: '/' - }); - } else { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - } - - if (!auth) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - - const csrfToken = await fetchCSRFToken(); - - if (!csrfToken) { - return { - status: 500, - body: { message: 'Failed to fetch CSRF token' } - }; - } - - const res = await fetch(`${serverEndpoint}/api/collections/${collectionId}/`, { - method: 'PATCH', - headers: { - 'X-CSRFToken': csrfToken, - Cookie: auth - }, - body: formDataToSend - }); - - if (!res.ok) { - const errorBody = await res.json(); - return { - status: res.status, - body: { error: errorBody } - }; - } - - return { - status: 200 - }; - }, - get: async (event) => { - if (!event.locals.user) { - } - - const formData = await event.request.formData(); - - const order_direction = formData.get('order_direction') as string; - const order_by = formData.get('order_by') as string; - - console.log(order_direction, order_by); - - let adventures: Adventure[] = []; - - if (!event.locals.user) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - - let next = null; - let previous = null; - let count = 0; - - let visitedFetch = await fetch( - `${serverEndpoint}/api/collections/?order_by=${order_by}&order_direction=${order_direction}`, - { - headers: { - Cookie: `${event.cookies.get('auth')}` - } - } - ); - if (!visitedFetch.ok) { - console.error('Failed to fetch visited adventures'); - return redirect(302, '/login'); - } else { - let res = await visitedFetch.json(); - let visited = res.results as Adventure[]; - next = res.next; - previous = res.previous; - count = res.count; - adventures = [...adventures, ...visited]; - console.log(next, previous, count); - } - - return { - adventures, - next, - previous, - count - }; - }, - changePage: async (event) => { - const formData = await event.request.formData(); - const next = formData.get('next') as string; - const previous = formData.get('previous') as string; - const page = formData.get('page') as string; - - if (!event.locals.user) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - - if (!page) { - return { - status: 400, - body: { error: 'Missing required fields' } - }; - } - - // Start with the provided URL or default to the filtered adventures endpoint - let url: string = next || previous || '/api/collections/'; - - // Extract the path starting from '/api/adventures' - const apiIndex = url.indexOf('/api/collections'); - if (apiIndex !== -1) { - url = url.slice(apiIndex); - } else { - url = '/api/collections/'; - } - - // Replace or add the page number in the URL - if (url.includes('page=')) { - url = url.replace(/page=\d+/, `page=${page}`); - } else { - // If 'page=' is not in the URL, add it - url += url.includes('?') ? '&' : '?'; - url += `page=${page}`; - } - - const fullUrl = `${serverEndpoint}${url}`; - console.log(fullUrl); - console.log(serverEndpoint); - - try { - const response = await fetch(fullUrl, { - headers: { - 'Content-Type': 'application/json', - Cookie: `${event.cookies.get('auth')}` - } - }); - - if (!response.ok) { - throw new Error(`HTTP error! status: ${response.status}`); - } - const data = await response.json(); - let adventures = data.results as Adventure[]; - let next = data.next; - let previous = data.previous; - let count = data.count; - - return { - status: 200, - body: { - adventures, - next, - previous, - count, - page - } - }; - } catch (error) { - console.error('Error fetching data:', error); - return { - status: 500, - body: { error: 'Failed to fetch data' } - }; - } - } -}; diff --git a/frontend/src/routes/collections/+page.svelte b/frontend/src/routes/collections/+page.svelte index df06848..1a2c6c1 100644 --- a/frontend/src/routes/collections/+page.svelte +++ b/frontend/src/routes/collections/+page.svelte @@ -1,102 +1,155 @@ -{#if isShowingCreateModal} - (isShowingCreateModal = false)} /> -{/if} - -{#if isEditModalOpen} - (isEditModalOpen = false)} - on:saveEdit={saveEdit} - /> -{/if} - -
-
- -
-
- -
- -
- -

My Collections

-

This search returned {count} results.

- {#if collections.length === 0} - - {/if} -
- - -
- {#each collections as collection} - - {/each} -
- -
- {#if next || previous} -
- {#each Array.from({ length: totalPages }, (_, i) => i + 1) as page} -
- - - - {#if currentPage != page} - - {:else} - - {/if} -
- {/each} -
- {/if} -
-
-
-
- - -
-
- Collections + +{#if isShowingCollectionModal} + (isShowingCollectionModal = false)} + on:saveEdit={saveEdit} + on:save={saveOrCreate} + /> +{/if} + +
+
+ + +
+ +
+
+
+
+ +
+
+ +
+
+

+ {$t(`adventures.my_collections`)} +

+

+ {currentCount} + {activeView === 'owned' + ? $t('navbar.collections') + : activeView === 'shared' + ? $t('collection.shared_collections') + : $t('adventures.archived_collections')} +

+
+
+
+ + +
+ + + +
+
+
+
+ + +
+ {#if currentCollections.length === 0} +
+
+ {#if activeView === 'owned'} + + {:else if activeView === 'shared'} + + {:else} + + {/if} +
+

+ {activeView === 'owned' + ? $t('collection.no_collections_yet') + : activeView === 'shared' + ? $t('collection.no_shared_collections') + : $t('collection.no_archived_collections')} +

+

+ {activeView === 'owned' + ? $t('collection.create_first') + : activeView === 'shared' + ? $t('collection.make_sure_public') + : $t('collection.archived_appear_here')} +

+ {#if activeView === 'owned'} + + {/if} +
+ {:else} + +
+ {#each currentCollections as collection} + + {/each} +
+ + + {#if activeView === 'owned' && (next || previous)} +
+
+ {#each Array.from({ length: totalPages }, (_, i) => i + 1) as page} + + {/each} +
+
+ {/if} + {/if} +
+
+ + +
+ +
+
+ +
+
+ +
+

{$t('adventures.filters_and_sort')}

+
+ + +
+

+ + {$t(`adventures.sort`)} +

+ +
+
+ + +
+ + +
+
+ +
+ + +
+ + + +
+
+
+
+
+
+
+
+ + + {#if activeView === 'owned'} +
+ +
+ {/if} +
diff --git a/frontend/src/routes/collections/[id]/+page.server.ts b/frontend/src/routes/collections/[id]/+page.server.ts index 80d7ef9..f672eed 100644 --- a/frontend/src/routes/collections/[id]/+page.server.ts +++ b/frontend/src/routes/collections/[id]/+page.server.ts @@ -6,9 +6,10 @@ const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; export const load = (async (event) => { const id = event.params as { id: string }; + let sessionid = event.cookies.get('sessionid'); let request = await fetch(`${endpoint}/api/collections/${id.id}/`, { headers: { - Cookie: `${event.cookies.get('auth')}` + Cookie: `sessionid=${sessionid}` } }); if (!request.ok) { @@ -30,7 +31,7 @@ export const load = (async (event) => { }) satisfies PageServerLoad; import type { Actions } from '@sveltejs/kit'; -import { tryRefreshToken } from '$lib/index.server'; +import { fetchCSRFToken } from '$lib/index.server'; const serverEndpoint = PUBLIC_SERVER_URL || 'http://localhost:8000'; @@ -39,31 +40,6 @@ export const actions: Actions = { const id = event.params as { id: string }; const adventureId = id.id; - if (!event.locals.user) { - const refresh = event.cookies.get('refresh'); - let auth = event.cookies.get('auth'); - if (!refresh) { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - let res = await tryRefreshToken(refresh); - if (res) { - auth = res; - event.cookies.set('auth', auth, { - httpOnly: true, - sameSite: 'lax', - expires: new Date(Date.now() + 60 * 60 * 1000), // 60 minutes - path: '/' - }); - } else { - return { - status: 401, - body: { message: 'Unauthorized' } - }; - } - } if (!adventureId) { return { status: 400, @@ -71,15 +47,28 @@ export const actions: Actions = { }; } + let sessionId = event.cookies.get('sessionid'); + + if (!sessionId) { + return { + status: 401, + error: new Error('Unauthorized') + }; + } + + let csrfToken = await fetchCSRFToken(); + let res = await fetch(`${serverEndpoint}/api/collections/${event.params.id}`, { method: 'DELETE', headers: { - Cookie: `${event.cookies.get('auth')}`, - 'Content-Type': 'application/json' - } + Cookie: `sessionid=${sessionId}; csrftoken=${csrfToken}`, + 'Content-Type': 'application/json', + 'X-CSRFToken': csrfToken, + Referer: event.url.origin // Include Referer header + }, + credentials: 'include' }); - console.log(res); if (!res.ok) { return { status: res.status, diff --git a/frontend/src/routes/collections/[id]/+page.svelte b/frontend/src/routes/collections/[id]/+page.svelte index 41b1e90..cd75934 100644 --- a/frontend/src/routes/collections/[id]/+page.svelte +++ b/frontend/src/routes/collections/[id]/+page.svelte @@ -1,59 +1,419 @@ @@ -166,27 +665,35 @@ on:close={() => { isShowingLinkModal = false; }} + collectionId={collection.id} on:add={addAdventure} /> {/if} -{#if isTransportationEditModalOpen} - (isTransportationEditModalOpen = false)} - on:saveEdit={saveNewTransportation} - startDate={collection.start_date} - endDate={collection.end_date} + on:close={() => (isShowingTransportationModal = false)} + on:save={saveOrCreateTransportation} + {collection} /> {/if} -{#if isEditModalOpen} - (isShowingLodgingModal = false)} + on:save={saveOrCreateLodging} + {collection} + /> +{/if} + +{#if isAdventureModalOpen} + (isEditModalOpen = false)} - on:saveEdit={saveEdit} - startDate={collection.start_date} - endDate={collection.end_date} + on:close={() => (isAdventureModalOpen = false)} + on:save={saveOrCreateAdventure} + {collection} /> {/if} @@ -235,62 +742,16 @@ /> {/if} -{#if isShowingCreateModal} - (isShowingCreateModal = false)} - startDate={collection.start_date} - endDate={collection.end_date} - /> -{/if} - -{#if isShowingTransportationModal} - (isShowingTransportationModal = false)} - on:add={(event) => { - transportations = [event.detail, ...transportations]; - isShowingTransportationModal = false; - }} - {collection} - startDate={collection.start_date} - endDate={collection.end_date} - /> -{/if} - -{#if notFound} -
-
-
- Lost -
-

- Adventure not Found -

-

- The adventure you were looking for could not be found. Please try a different adventure or - check back later. -

-
- -
-
-
-{/if} - {#if !collection && !notFound}
{/if} -{#if collection} - {#if data.user && !collection.is_archived} +{#if collection && collection.id} + {#if data.user && data.user.uuid && (data.user.uuid == collection.user_id || (collection.shared_with && collection.shared_with.includes(data.user.uuid))) && !collection.is_archived}
-